diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 7d87488c..00000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index f061e976..00000000 --- a/.gitattributes +++ /dev/null @@ -1,3 +0,0 @@ -*.ipynb linguist-detectable=true -*.ipynb linguist-language=python -*.ipynb text diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 463de054..00000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,23 +0,0 @@ -# Description - - - -## Type of issue - -- [ ] Feature (New Script) -- [ ] Bug -- [ ] Documentation - -## Checklist: - -- [ ] I have read the project guidelines. -- [ ] I have checked previous issues to avoid duplicates. -- [ ] This issue will be meaningful for the project. - - - - diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 2798e6b6..00000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,37 +0,0 @@ -# Description - -A short summary of what is included in your Pull Request. - -Fixes #(issue_no) - - -- [ ] Issue_no: `````` -- [ ] Not applicable - - -## Type of change - -Choosing one or more options from the following as per the nature of your Pull request. - -- [ ] New project insert -- [ ] Bug fix (non-breaking change which fixes an issue) -- [ ] New feature (non-breaking change which adds functionality) -- [ ] Documentation Update - -## Project - - -- #### **Your Project Name:** - -- #### **Short Description:** Provide a short desctiption of your Python project - -# Checklist: -Please tick all the boxes that are fulfilled by your Pull Request. - -- [ ] I have named my files and folder, according to this project's guidelines. -- [ ] My code follows the style guidelines of this project. -- [ ] I have commented on my code, particularly in hard-to-understand areas. -- [ ] I have created a helpful and easy to understand `README.md`, according to the given [`README_TEMPLATE.`](https://github.com/nduongthucanh/python-mini-project/blob/master/README_TEMPLATE.md) -- [ ] My changes do not produce any warnings. diff --git a/.gitignore b/.gitignore deleted file mode 100644 index eb674d3e..00000000 --- a/.gitignore +++ /dev/null @@ -1,10 +0,0 @@ -.ipynb_checkpoints -*/.ipynb_checkpoints/* -.idea -/.vs/PythonSettings.json -/.vs/VSWorkspaceState.json -/.vs/python-mini-project/v17 -/.vs/python-mini-project/FileContentIndex -/.vs -/Tic_Tac_Toe/tic_tac_toe -OOP.py -/.vscode diff --git a/Address Validator/AddressValidator.py b/Address Validator/AddressValidator.py deleted file mode 100644 index 0dc49be1..00000000 --- a/Address Validator/AddressValidator.py +++ /dev/null @@ -1,16 +0,0 @@ -def addressVal(address): - dot = address.find(".") - at = address.find("@") - if (dot == -1): - print("Invalid") - elif (at == -1): - print("Invalid") - else: - print("Valid") - -print("This program will decide if your input is a valid email address") -while(True): - print("A valid email address needs an '@' symbol and a '.'") - x = input("Input your email address:") - - addressVal(x) diff --git a/Address Validator/README.md b/Address Validator/README.md deleted file mode 100644 index 49dd8006..00000000 --- a/Address Validator/README.md +++ /dev/null @@ -1,21 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Address Validator - - - -## 🛠️ Description - -This program checks if your email adress is valid by looking for an '@' symbol and a '.' - -## ⚙️ Languages or Frameworks Used -Python - -## 🌟 How to run -Open the file AddressValidator.py file with the python IDE and hit run. - - -## 🤖 Author -tommcgurn10 diff --git a/Animalese_translator/README.md b/Animalese_translator/README.md deleted file mode 100644 index f4072203..00000000 --- a/Animalese_translator/README.md +++ /dev/null @@ -1,45 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Script Title - -Add a jpeg/png/gif file here if applicable - - - -## 🛠️ Description - -This is a simple code that I wanted to make for quite a while, which is converting strings into cute Animal Crossing language, known as Animalese. - -Animalese consists on basically spelling every letter of the phrase very quickly, creating an interesting distortion. - -That said, it also means that different languages may create different sounds. If you are comfortable on sharing your voice, this mini project could become somewhat even cooler. - -## ⚙️ Languages or Frameworks Used - -Modules required to be able to use the script successfully -and how to install them. -(If there are a lot of them, including a `requirements.txt` file will work better.) - -[pprint](https://docs.python.org/3/library/pprint.html) - - - -## 🌟 How to run - -Steps on how to run the script along with suitable examples. - -## 📺 Demo -Add a Screenshot/GIF showing the sample use of the script (jpeg/png/gif). - -## 🤖 Author - -Adapted from [vegalious](https://github.com/wegfawefgawefg) - -[Yurner0](https://github.com/Yurnero-cyber) \ No newline at end of file diff --git a/Animalese_translator/main.py b/Animalese_translator/main.py deleted file mode 100644 index 7a53a0ba..00000000 --- a/Animalese_translator/main.py +++ /dev/null @@ -1,111 +0,0 @@ -import os -#it lets the user interact with the native OS Python is currently running on. - -from pprint import pprint -#pprint enables printing in situations where errors wouldn't let them print... or something like that - -from playsound import playsound -#playsound needs 1 argument in order to work: the sound file path. - -from scipy.io import wavfile -#scipy.io (Input/Output) - -from scipy.io.wavfile import write -#import the function of writing a soundfile from a 1D or 2D Numpy array of either integer or float data-type. - -import numpy as np -# if you pip install scipy numpy will come too - -voice_path = "/home/wilson/Documentos/git_repo/python-mini-project/Animalese_translator/voices/guy3" -files = os.listdir(voice_path) -# lists the containing names of the entries of the specified directory - -files.sort() -# lists voices from A to Z - -sounds = {} -for file in files: - print(file) - raw_name = file.split(".")[0] - # will return 'a' from 'a.wav' - - fp = os.path.join(voice_path, file) - # will do 'pathname/a' to find the file - - rate, data = wavfile.read(fp) - # x = 48000 - # [[-38 24] - # [-21 20] - # [-30 23] - # ... - # [ 40 71] - # [ 26 108] - # [ 57 226]] - - channel_one = data[:, 0] - #[-38 -21 -30 ... 40 26 57] - - sounds[raw_name] = channel_one -# pprint(sounds) - -sample_rate = 48000 -speed_multiplier = 2.2 -advance = 0.15 * sample_rate -space_skip = 0.4 * advance - -# say_this = "This is a test of the animal crossing style talking machine" -# say_this = "mestr lokee i mess yu bro" -# say_this = "ha" -# say_this = "pastee luuk at des" -# say_this = "kil haw es yor de goeng" -# say_this = "weleam haw was yor de" -say_this = "i med somteng kul" -# say_this = "ame i lov yuu vere alat" -# say_this = "ef yu wurk hard yu wel hav a gud lif" - -say = say_this.lower().strip() -#lowercased, removes leading/trailing whitespaces. - -cursor = 0 -notes = [] -for char in say: - notes.append((char, cursor)) - if char == " ": - cursor += space_skip - else: - cursor += advance -# advance the cursor by the length of the last note -last_char = say[-1] -last_note = sounds[last_char] -last_note_length = last_note.shape[0] -cursor += last_note_length - -end_pad = sample_rate * 1.0 -buffer_length = int(cursor + end_pad) -base = np.zeros(buffer_length, dtype=np.int16) - -for note in notes: - char = note[0] - cursor = note[1] - if char not in sounds: - continue - sound = sounds[char] - start = int(cursor) - end = int(start + sound.shape[0]) - print(f"Adding {char} from {start} to {end}") - selection = base[start:end] - print(selection.shape) - print(sound.shape) - base[start:end] += sound - -output_dir = "output" -if not os.path.exists(output_dir): - os.makedirs(output_dir) - -name = say_this.replace(" ", "_") -file_path = os.path.join(output_dir, name + '.wav') -write_rate = int(sample_rate*speed_multiplier) -write(file_path, write_rate, base.astype(np.int16)) -playsound(file_path) -# for file in files: -# playsound(voice_path + "/" + file) diff --git a/Animalese_translator/voices/guy3/a.wav b/Animalese_translator/voices/guy3/a.wav deleted file mode 100644 index 7158da83..00000000 Binary files a/Animalese_translator/voices/guy3/a.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/b.wav b/Animalese_translator/voices/guy3/b.wav deleted file mode 100644 index 1ab2f375..00000000 Binary files a/Animalese_translator/voices/guy3/b.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/c.wav b/Animalese_translator/voices/guy3/c.wav deleted file mode 100644 index d4d88c74..00000000 Binary files a/Animalese_translator/voices/guy3/c.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/d.wav b/Animalese_translator/voices/guy3/d.wav deleted file mode 100644 index 2758e466..00000000 Binary files a/Animalese_translator/voices/guy3/d.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/e.wav b/Animalese_translator/voices/guy3/e.wav deleted file mode 100644 index 3bc857e9..00000000 Binary files a/Animalese_translator/voices/guy3/e.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/f.wav b/Animalese_translator/voices/guy3/f.wav deleted file mode 100644 index 2997f6a2..00000000 Binary files a/Animalese_translator/voices/guy3/f.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/g.wav b/Animalese_translator/voices/guy3/g.wav deleted file mode 100644 index 94248301..00000000 Binary files a/Animalese_translator/voices/guy3/g.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/h.wav b/Animalese_translator/voices/guy3/h.wav deleted file mode 100644 index dd64a192..00000000 Binary files a/Animalese_translator/voices/guy3/h.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/i.wav b/Animalese_translator/voices/guy3/i.wav deleted file mode 100644 index fbaa9430..00000000 Binary files a/Animalese_translator/voices/guy3/i.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/j.wav b/Animalese_translator/voices/guy3/j.wav deleted file mode 100644 index 1f426421..00000000 Binary files a/Animalese_translator/voices/guy3/j.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/k.wav b/Animalese_translator/voices/guy3/k.wav deleted file mode 100644 index 0508841c..00000000 Binary files a/Animalese_translator/voices/guy3/k.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/l.wav b/Animalese_translator/voices/guy3/l.wav deleted file mode 100644 index 52c141b9..00000000 Binary files a/Animalese_translator/voices/guy3/l.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/m.wav b/Animalese_translator/voices/guy3/m.wav deleted file mode 100644 index 99238965..00000000 Binary files a/Animalese_translator/voices/guy3/m.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/n.wav b/Animalese_translator/voices/guy3/n.wav deleted file mode 100644 index 02924efc..00000000 Binary files a/Animalese_translator/voices/guy3/n.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/o.wav b/Animalese_translator/voices/guy3/o.wav deleted file mode 100644 index 2effa2d7..00000000 Binary files a/Animalese_translator/voices/guy3/o.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/p.wav b/Animalese_translator/voices/guy3/p.wav deleted file mode 100644 index 8ed337fe..00000000 Binary files a/Animalese_translator/voices/guy3/p.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/q.wav b/Animalese_translator/voices/guy3/q.wav deleted file mode 100644 index f23f54ba..00000000 Binary files a/Animalese_translator/voices/guy3/q.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/r.wav b/Animalese_translator/voices/guy3/r.wav deleted file mode 100644 index d9d7ac01..00000000 Binary files a/Animalese_translator/voices/guy3/r.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/s.wav b/Animalese_translator/voices/guy3/s.wav deleted file mode 100644 index 2b3b6f68..00000000 Binary files a/Animalese_translator/voices/guy3/s.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/t.wav b/Animalese_translator/voices/guy3/t.wav deleted file mode 100644 index c8d4b6af..00000000 Binary files a/Animalese_translator/voices/guy3/t.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/u.wav b/Animalese_translator/voices/guy3/u.wav deleted file mode 100644 index f47c047e..00000000 Binary files a/Animalese_translator/voices/guy3/u.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/v.wav b/Animalese_translator/voices/guy3/v.wav deleted file mode 100644 index 838a8386..00000000 Binary files a/Animalese_translator/voices/guy3/v.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/w.wav b/Animalese_translator/voices/guy3/w.wav deleted file mode 100644 index 62bf9a0a..00000000 Binary files a/Animalese_translator/voices/guy3/w.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/x.wav b/Animalese_translator/voices/guy3/x.wav deleted file mode 100644 index 59606ef3..00000000 Binary files a/Animalese_translator/voices/guy3/x.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/y.wav b/Animalese_translator/voices/guy3/y.wav deleted file mode 100644 index 2fc57a17..00000000 Binary files a/Animalese_translator/voices/guy3/y.wav and /dev/null differ diff --git a/Animalese_translator/voices/guy3/z.wav b/Animalese_translator/voices/guy3/z.wav deleted file mode 100644 index a5d0d008..00000000 Binary files a/Animalese_translator/voices/guy3/z.wav and /dev/null differ diff --git a/Automated_Mailing/README.md b/Automated_Mailing/README.md deleted file mode 100644 index e100c19c..00000000 --- a/Automated_Mailing/README.md +++ /dev/null @@ -1,27 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Automated Mailing - -## 🛠️ Description - -This code helps automate the process of sending mail to large audience.It takes email addresses stored in the CSV file. - -## ⚙️ Languages or Frameworks Used - -Modules required are `os` , `email.mime` , `smtplib` , `pandas`. - -These are listed in `requirements.txt` . USe the below command to install these dependencies. - -```pip install requirements.txt``` - -## 🌟 How to run - -- Update the `from_addr` and `pd.read_csv("filepath")` -- Assign `email` with your email-id & `password` with your e-mail password. -- Run script - - -## 🤖 Author - -[Pradhyuman Arora](https://github.com/pradhyumanarora) diff --git a/Automated_Mailing/mail.py b/Automated_Mailing/mail.py deleted file mode 100644 index 9038b77e..00000000 --- a/Automated_Mailing/mail.py +++ /dev/null @@ -1,33 +0,0 @@ -import pandas as pd -import smtplib -from email.mime.multipart import MIMEMultipart -from email.mime.text import MIMEText - - -from_addr='ENTER_SENDERS_MAILID' - -data=pd.read_csv("abc.csv") # Enter path of CSV files containing emails -to_addr=data['email'].tolist() # Change'email' to column name containg emailids -name = data['name'].tolist() - -l=len(name) -email="" #Enter Your email id here -password="" #Enter your Password - -for i in range (l): - msg=MIMEMultipart() - msg['From']=from_addr - msg['To']=to_addr[i] - msg['Subject']='Just to Check' - - body=name[i]+'Enter your content here' - - msg.attach(MIMEText(body,'plain')) - - mail=smtplib.SMTP('smtp.gmail.com',587) - mail.ehlo() - mail.starttls() - mail.login(email,password) - text=msg.as_string() - mail.sendmail(from_addr,to_addr[i],text) - mail.quit() \ No newline at end of file diff --git a/Automated_Mailing/requirements.txt b/Automated_Mailing/requirements.txt deleted file mode 100644 index 6a72dded..00000000 Binary files a/Automated_Mailing/requirements.txt and /dev/null differ diff --git a/Binary_Search_Tree/README.md b/Binary_Search_Tree/README.md deleted file mode 100644 index 46a7bbf6..00000000 --- a/Binary_Search_Tree/README.md +++ /dev/null @@ -1,23 +0,0 @@ -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Binary Search Tree -- Differ from a regular Binary Tree because of one key property: Nodes must be arranged in order - - the node's left subtree must have values less than the node - - the node's right subtree must have values greater than the node - - this is going based on that every value in the BST must be unique - -# Functions Implemented -- Init - - tree = BST(1,None,None) _creates a tree with one node_ - - A basic constructor that creates a BST with three parameters - - BST(value,left_subtree,right_subtree) -- Add - - tree.add(4) _adds 4 to our previous tree created, giving a right child_ - - Maintains BST properties by adding to either subtree depending on the value - - returns a string telling if insertion was or wasn't successful -- Remove - - tree.remove(1) _removes 1 from our current tree, resulting 4 to be the sole node_ - - Maintains BST properties by restructuring the tree when we remove the value - - returns a string telling if deletion was or wasn't successful -# Author -[Tomas Urdinola](https://github.com/tomurdi) diff --git a/Binary_Search_Tree/bst.py b/Binary_Search_Tree/bst.py deleted file mode 100644 index 78acfbb3..00000000 --- a/Binary_Search_Tree/bst.py +++ /dev/null @@ -1,90 +0,0 @@ -class BST: - - def __init__(self,val,left,right): - self.val = val - self.left = left - self.right = right - - def addHelper(self,root,data): - - # case for reaching current leafs, base cases - if root.val < data and root.right == None: - root.right = BST(data,None,None) - return "insertion completed" - elif root.val > data and root.left == None: - root.left = BST(data,None,None) - return "insertion completed" - - # else we continue tracing downwards - if root.val < data: - return self.add(root.right,data) - elif root.val > data: - return self.add(root.left,data) - else: - return "insertion failed: duplicate value" - - def add(self,root,data): - if root == None: - return "insertion failed: empty root" - return self.addHelper(root,data) - - def restructdata(self,root): - # base case: we reach a leaf - if root == None or (root.left == None and root.right == None): - root = None - return "restructure finished" - - # need dummy nodes to compare target value to children value - v1 = float('-inf') - v2 = float('inf') - if root.left != None: - v1 = root.left.val - if root.right != None: - v2 = root.right.val - - temp = root.val - if v1 > v2 or v2 == float('inf'): - root.val = root.left.val - root.left.val = temp - return self.restructdata(root.left) - else: - root.val = root.right.val - root.right.val = temp - return self.restructdata(root.right) - - - def removeHelper(self,root,data): - if root == None: - return "deletion failed: could not find value" - - # adhering to typical bst properties - if root.val < data: - return self.removeHelper(root.right,data) - elif root.val > data: - return self.removeHelper(root.left,data) - else: - temp = root.val - v1 = float('-inf') - v2 = float('inf') - if root.left != None: - v1 = root.left.val - elif root.right != None: - v2 = root.right.val - - if v1 > v2 or v2 == float('inf'): - root.val = root.left.val - root.left.val = temp - return self.restructdata(root.left) - else: - root.val = root.right.val - root.right.val = temp - return self.restructdata(root.right) - - def remove(self,root,data): - if root == None: - return "deletion failed: deleting from an empty tree" - return self.removeHelper(root,data) - - - - \ No newline at end of file diff --git a/Binary_tree/README.md b/Binary_tree/README.md deleted file mode 100644 index 5a59e73d..00000000 --- a/Binary_tree/README.md +++ /dev/null @@ -1,53 +0,0 @@ - - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Binary Tree - - - -## 🛠️ Description - - - -Implementation of a binary tree in python. -It allows the creation, modification, and printing of a binary tree data structure. - -## ⚙️ Languages or Frameworks Used - - - -The program was created with Python3. - - - -## 🌟 How to run - - - -`python ./main.py` to execute a test case of the code. - -**Methods:**\ - _getRoot()_ - Return root of the binary tree\ - _add(data)_ - Add data's value onto the binary tree as a node\ - _find(data)_ - Find the node that contains data in the binary tree\ - _deleteTree()_ - Delete the binary tree\ - _printTree()_ - Prints all node values in the binary tree onto console - - - - - -## 🤖 Author - - - -[Alexander Monterrosa](https://github.com/Alex108-lab) diff --git a/Binary_tree/__pycache__/node.cpython-312.pyc b/Binary_tree/__pycache__/node.cpython-312.pyc deleted file mode 100644 index 63ab9534..00000000 Binary files a/Binary_tree/__pycache__/node.cpython-312.pyc and /dev/null differ diff --git a/Binary_tree/__pycache__/node.cpython-39.pyc b/Binary_tree/__pycache__/node.cpython-39.pyc deleted file mode 100644 index 78df13b1..00000000 Binary files a/Binary_tree/__pycache__/node.cpython-39.pyc and /dev/null differ diff --git a/Binary_tree/__pycache__/tree.cpython-312.pyc b/Binary_tree/__pycache__/tree.cpython-312.pyc deleted file mode 100644 index f5cd3095..00000000 Binary files a/Binary_tree/__pycache__/tree.cpython-312.pyc and /dev/null differ diff --git a/Binary_tree/__pycache__/tree.cpython-39.pyc b/Binary_tree/__pycache__/tree.cpython-39.pyc deleted file mode 100644 index ccc7e615..00000000 Binary files a/Binary_tree/__pycache__/tree.cpython-39.pyc and /dev/null differ diff --git a/Binary_tree/main.py b/Binary_tree/main.py deleted file mode 100644 index c546e3e8..00000000 --- a/Binary_tree/main.py +++ /dev/null @@ -1,13 +0,0 @@ -from tree import Tree -from node import Node - - -# Start the program - -tree = Tree() -tree.add(3) -tree.add(4) -tree.add(0) -tree.add(8) -tree.add(2) -tree.printTree() diff --git a/Binary_tree/node.py b/Binary_tree/node.py deleted file mode 100644 index 505ea71b..00000000 --- a/Binary_tree/node.py +++ /dev/null @@ -1,9 +0,0 @@ - -# Class of the nodes - -class Node: - def __init__(self, data): - self.left = None - self.right = None - self.data = data - diff --git a/Binary_tree/tree.py b/Binary_tree/tree.py deleted file mode 100644 index 8981a30f..00000000 --- a/Binary_tree/tree.py +++ /dev/null @@ -1,60 +0,0 @@ -from node import Node - -# Class of tree -class Tree: - def __init__(self): - self.root = None - - # Method to obtain the data - def getRoot(self): - return self.root - - # Method to add the data - def add(self, data): - if self.root is None: - self.root = Node(data) - else: - self._add(data, self.root) - - def _add(self, data, node): - if data < node.data: - if node.left is not None: - self._add(data, node.left) - else: - node.left = Node(data) - else: - if node.right is not None: - self._add(data, node.right) - else: - node.right = Node(data) - - # Method for find the data - def find(self, data): - if self.root is not None: - return self._find(data, self.root) - else: - return None - - def _find(self, data, node): - if data == node.data: - return node - elif (data < node.data and node.left is not None): - return self._find(data, node.left) - elif (data > node.data and node.right is not None): - return self._find(data, node.right) - - # Method for delete tree - def deleteTree(self): - self.root = None - - # Method for print tree in terminal - def printTree(self): - if self.root is not None: - self._printTree(self.root) - - def _printTree(self, node): - if node is not None: - self._printTree(node.left) - print(str(node.data) + ' ') - self._printTree(node.right) - diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index a51c5aa4..00000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,113 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -We as members, contributors, and leaders pledge to make participation in our -community a harassment-free experience for everyone, regardless of age, body -size, visible or invisible disability, ethnicity, sex characteristics, gender -identity and expression, level of experience, education, socio-economic status, -nationality, personal appearance, race, religion, or sexual identity -and orientation. - -We pledge to act and interact in ways that contribute to an open, welcoming, -diverse, inclusive, and healthy community. - -## Our Standards - -Examples of behavior that contributes to a positive environment for our -community include: - -* Demonstrating empathy and kindness toward other people -* Being respectful of differing opinions, viewpoints, and experiences -* Giving and gracefully accepting constructive feedback -* Accepting responsibility and apologizing to those affected by our mistakes, - and learning from the experience -* Focusing on what is best not just for us as individuals, but for the - overall community - -Examples of unacceptable behavior include: - -* The use of sexualized language or imagery, and sexual attention or - advances of any kind -* Trolling, insulting or derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or email - address, without their explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Enforcement Responsibilities - -Community leaders are responsible for clarifying and enforcing our standards of -acceptable behavior and will take appropriate and fair corrective action in -response to any behavior that they deem inappropriate, threatening, offensive, -or harmful. - -Community leaders have the right and responsibility to remove, edit, or reject -comments, commits, code, wiki edits, issues, and other contributions that are -not aligned to this Code of Conduct, and will communicate reasons for moderation -decisions when appropriate. - -## Scope - -This Code of Conduct applies within all community spaces, and also applies when -an individual is officially representing the community in public spaces. -Examples of representing our community include using an official e-mail address, -posting via an official social media account, or acting as an appointed -representative at an online or offline event. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the community leaders responsible for enforcement at -nduongthucanh@gmail.com. -All complaints will be reviewed and investigated promptly and fairly. - -All community leaders are obligated to respect the privacy and security of the -reporter of any incident. - -## Enforcement Guidelines - -Community leaders will follow these Community Impact Guidelines in determining -the consequences for any action they deem in violation of this Code of Conduct: - -### 1. Correction - -**Community Impact**: Use of inappropriate language or other behavior deemed -unprofessional or unwelcome in the community. - -**Consequence**: A private, written warning from community leaders, providing -clarity around the nature of the violation and an explanation of why the -behavior was inappropriate. A public apology may be requested. - -### 2. Warning - -**Community Impact**: A violation through a single incident or series -of actions. - -**Consequence**: A warning with consequences for continued behavior. No -interaction with the people involved, including unsolicited interaction with -those enforcing the Code of Conduct, for a specified period of time. This -includes avoiding interactions in community spaces as well as external channels -like social media. Violating these terms may lead to a temporary or -permanent ban. - -### 3. Temporary Ban - -**Community Impact**: A serious violation of community standards, including -sustained inappropriate behavior. - -**Consequence**: A temporary ban from any sort of interaction or public -communication with the community for a specified period of time. No public or -private interaction with the people involved, including unsolicited interaction -with those enforcing the Code of Conduct, is allowed during this period. -Violating these terms may lead to a permanent ban. - -### 4. Permanent Ban - -**Community Impact**: Demonstrating a pattern of violation of community -standards, including sustained inappropriate behavior, harassment of an -individual, or aggression toward or disparagement of classes of individuals. - -**Consequence**: A permanent ban from any sort of public interaction within -the community. diff --git a/Caesar_Cipher/Caesar_cipher.py b/Caesar_Cipher/Caesar_cipher.py deleted file mode 100644 index ac514ef3..00000000 --- a/Caesar_Cipher/Caesar_cipher.py +++ /dev/null @@ -1,45 +0,0 @@ -class main: - def __init__(self,key:dict) -> None: - self.key = key - - def get_input(self) -> None: - while True: - blank_string = str(input("Enter string to decrypt: ")) - if blank_string.isalpha(): - blank_string = blank_string.lower() - self.blank_string = blank_string - break - else: - print("Input is not valid") - continue - - def encrypt_string(self) -> str: - output = "" - for c in self.blank_string: - for k,v in self.key.items(): - if k == c: - output += v - else: - continue - self.decrypted_string = output - return(output) - - def decrypt_string(self, string: str) -> str: - output = "" - string = string.lower() - string = string.strip() - if string == "": - return(self.blank_string) - else: - for c in string: - for k,v in self.key.items(): - if v == c: - output += k - - return(output) - -if __name__ == "__main__": - key ={"a": "d", "b": "e", "c": "f", "d": "g", "e": "h", "f": "i", "g": "j", "h": "k", "i": "l", "j": "m", "k": "n", "l": "o", "m": "p", "n": "q", "o": "r", "p": "s", "q": "t", "r": "u", "s": "v", "t": "w", "u": "x", "v": "y", "w": "z", "x": "a", "y": "b", "z": "c"} - main = main(key=key) - main.get_input() - print(main.encrypt_string()) diff --git a/Caesar_Cipher/README.md b/Caesar_Cipher/README.md deleted file mode 100644 index e6e8e0f5..00000000 --- a/Caesar_Cipher/README.md +++ /dev/null @@ -1,39 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/FH089) - -# Caesar Cipher - -

- - - - -## 🛠️ Description - -Simple Caesar Cipher encryptor and decryptor built with python - -## ⚙️ Languages or Frameworks Used - -The script was created with Python3 and the built-in functions in it -## 🌟 How to run - -```bash -python3 caesarcypher.py -Enter string to decrypt: hello -khoor -``` -## 📺 Demo -

- - -## 🤖 Author - -[GitHub](https://github.com/FH089) - diff --git a/Cat_command/README.md b/Cat_command/README.md deleted file mode 100644 index 1496c0ec..00000000 --- a/Cat_command/README.md +++ /dev/null @@ -1,28 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Cat Command - -## 🛠️ Description -Linux's "cat" command implemented using Python. -It opens the file specified in the command argument and prints it onto console. - -## Requirements -- argparse -- pathlib - -## 🌟 How to run -On linux you can use -``` ./cat.py [path] ``` -Or -```python ./cat.py [path]``` -Example -```.cat.py ./test_cat.txt``` -

- -## Author Name - -[Alexander Monterrosa](https://github.com/Alex108-lab) - diff --git a/Cat_command/cat.py b/Cat_command/cat.py deleted file mode 100755 index d405a814..00000000 --- a/Cat_command/cat.py +++ /dev/null @@ -1,79 +0,0 @@ -#!/usr/bin/python - -import argparse -from pathlib import Path -from sys import stderr, stdout -import os - -class CatError(Exception): - pass - -class Logger: - def __init__(self, verbosity=False): - self.verbose = verbosity - - def error(self, message): - print(f'ERROR: {message}') - -logger = Logger() - -''' - Read the selected text file - - Example: - your/path/file.txt -''' -def readFile(src: Path): - - ''' - if the given path is a directory - ERROR the path is a directory - ''' - if src.is_dir(): - - logger.error(f'The path {src}: is a directory') - - else: - - with open(src, 'r') as f: - for lines in f: - print(lines, end='') - -def cli() -> argparse.Namespace: - parser = argparse.ArgumentParser( - prog='cat', - description='cat command implementation in python', - epilog='Example: your/path/file.txt' - ) - - parser.add_argument( - 'source', - type=Path, - help='Source file' - ) - - return parser.parse_args() - -def main(): - - args = cli() - - try: - - readFile(args.source) - - except CatError as e: - - logger.error(e) - - exit(1) - - except KeyboardInterrupt: - - logger.error('\nInterrupt') - -''' - Start the program -''' -if __name__ == '__main__': - main() diff --git a/Cat_command/test_cat.txt b/Cat_command/test_cat.txt deleted file mode 100644 index c2c3c784..00000000 --- a/Cat_command/test_cat.txt +++ /dev/null @@ -1 +0,0 @@ -Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam consequat elit vel pretium pellentesque. Vivamus commodo leo sed lorem auctor elementum. Maecenas ut erat ut velit maximus luctus. Vestibulum varius justo et mauris tristique pharetra rutrum porta nulla. Nam porttitor lobortis posuere. Aenean erat nisl, aliquam id molestie in, luctus quis mauris. Donec fermentum vel quam in consectetur. Aliquam nec mauris quis tellus faucibus fermentum. Suspendisse ac maximus sem. Fusce feugiat non dui non gravida. Ut ac eleifend tellus. Vivamus consectetur finibus nisi. Etiam id odio vitae arcu aliquam tincidunt nec sit amet quam. diff --git a/Caterpillar_Game/Caterpillar.py b/Caterpillar_Game/Caterpillar.py deleted file mode 100644 index 12dc9849..00000000 --- a/Caterpillar_Game/Caterpillar.py +++ /dev/null @@ -1,136 +0,0 @@ -import turtle as t -import random as rd - -t.bgcolor('yellow') - -caterpillar = t.Turtle() -caterpillar.shape('square') -caterpillar.speed(0) -caterpillar.penup() -caterpillar.hideturtle() - -leaf = t.Turtle() -leaf_shape = ((0,0),(14,2),(18,6),(20,20),(6,18),(2,14)) -t.register_shape('leaf', leaf_shape) -leaf.shape('leaf') -leaf.color('green') -leaf.penup() -leaf.hideturtle() -leaf.speed() - -game_started = False -text_turtle = False -text_turtle = t.Turtle() -text_turtle.write('Press SPACE to start', align='center', font=('Arial', 18, 'bold')) -text_turtle.hideturtle() - -score_turtle = t.Turtle() -score_turtle.hideturtle() -score_turtle.speed(0) - -obstacle = t.Turtle() -obstacle.shape('circle') # You can choose any shape -obstacle.color('red') # Choose a distinct color for obstacles -obstacle.penup() -obstacle.hideturtle() - -num_obstacles = 5 # Number of obstacles -obstacles = [] - -for _ in range(num_obstacles): - new_obstacle = t.Turtle() - new_obstacle.shape('circle') - new_obstacle.color('red') - new_obstacle.penup() - new_obstacle.setposition(rd.randint(-200, 200), rd.randint(-200, 200)) - new_obstacle.showturtle() - obstacles.append(new_obstacle) - - -def outside_window(): - left_wall = -t.window_width()/2 - right_Wall = t.window_width()/2 - top_wall = t.window_height()/2 - bottom_wall = -t.window_height()/2 - (x,y) = caterpillar.pos() - outside = x < left_wall or x > right_Wall or y > top_wall or y < bottom_wall - return outside - -def game_over(): - caterpillar.color('yellow') - leaf.color('yellow') - t.penup() - t.hideturtle() - t.write('GAME OVER !', align='center', font=('Arial', 30, 'normal') ) - t.onkey(start_game,'space') - -def display_score(current_score): - score_turtle.clear() - score_turtle.penup() - x = (t.window_width()/2) - 70 - y = (t.window_height()/2) - 70 - score_turtle.setpos(x,y) - score_turtle.write(str(current_score), align='right', font=('Arial', 40, 'bold')) - -def place_leaf(): - leaf.hideturtle() - leaf.setx(rd.randint(-200,200)) - leaf.sety(rd.randint(-200,200)) - leaf.showturtle() - -def start_game(): - global game_started - if game_started: - return - game_started = True - - score = 0 - text_turtle.clear() - - caterpillar_speed = 2 - caterpillar_length = 3 - caterpillar.shapesize(1,caterpillar_length,1) - caterpillar.showturtle() - display_score(score) - place_leaf() - - while True: - caterpillar.forward(caterpillar_speed) - for obstacle in obstacles: - if caterpillar.distance(leaf) < 20: - place_leaf() - caterpillar_length = caterpillar_length + 1 - caterpillar.shapesize(1,caterpillar_length,1) - caterpillar_speed = caterpillar_speed + 1 - score = score + 10 - display_score(score) - game_over() - break - if outside_window(): - game_over() - break - - -def move_up(): - caterpillar.setheading(90) - -def move_down(): - caterpillar.setheading(270) - -def move_left(): - caterpillar.setheading(180) - -def move_right(): - caterpillar.setheading(0) - -def restart_game(): - start_game() - -t.onkey(start_game,'space') -t.onkey(restart_game,'Up') -t.onkey(move_up,'Up') -t.onkey(move_right,'Right') -t.onkey(move_down,'Down') -t.onkey(move_left,'Left') -t.listen() -t.mainloop() diff --git a/Caterpillar_Game/README.md b/Caterpillar_Game/README.md deleted file mode 100644 index 9d6cc298..00000000 --- a/Caterpillar_Game/README.md +++ /dev/null @@ -1,30 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Caterpillar -

- - -## 🛠️ Description - -A simple Caterpillar game built in python. - -## ⚙️ Languages or Frameworks Used -```bash -pip install turtle -``` - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python Caterpillar.py -``` -## 📺 Demo -

- - -## 🤖 Author -[Leah Nguyen](https://github.com/ndleah) \ No newline at end of file diff --git a/Chess_Game/ChessEngine.py b/Chess_Game/ChessEngine.py deleted file mode 100644 index 3355cc86..00000000 --- a/Chess_Game/ChessEngine.py +++ /dev/null @@ -1,222 +0,0 @@ - -class GameState: - - def __init__(self): - self.board = [ - ["bR", "bN", "bB", "bQ", "bK", "bB", "bN", "bR"], - ["bp", "bp", "bp", "bp", "bp", "bp", "bp", "bp"], - ["--", "--", "--", "--", "--", "--", "--", "--"], - ["--", "--", "--", "--", "--", "--", "--", "--"], - ["--", "--", "--", "--", "--", "--", "--", "--"], - ["--", "--", "--", "--", "--", "--", "--", "--"], - ["wp", "wp", "wp", "wp", "wp", "wp", "wp", "wp"], - ["wR", "wN", "wB", "wQ", "wK", "wB", "wN", "wR"]] - self.moveFunctions = {'p': self.getPawnMoves, 'R': self.getRookMoves, 'N': self.getKnightMoves, - 'B': self.getBishopMoves, 'Q': self.getQueenMoves, 'K': self.getKingMoves} - self.whiteToMove = True, - self.moveLog = [] - self.whiteKingLocation = (7, 4) - self.blackKingLocation = (0, 4) - self.checkMate = False - self.staleMate = False - - def makeMove(self, move): - self.board[move.startRow][move.startCol] = "--" - self.board[move.endRow][move.endCol] = move.pieceMoved - self.moveLog.append(move) - self.whiteToMove = not self.whiteToMove - if move.pieceMoved == "wK": - self.whiteKingLocation = (move.endRow, move.endCol) - elif move.pieceMoved == "bK": - self.blackKingLocation = (move.endRow, move.endCol) - - if move.isPawnPromotion: - self.board[move.endRow][move.endCol] = move.pieceMoved[0] + "Q" - - - def undoMove(self): - if len(self.moveLog) != 0: - move = self.moveLog.pop() - self.board[move.startRow][move.startCol] = move.pieceMoved - self.board[move.endRow][move.endCol] = move.pieceCaptured - self.whiteToMove = not self.whiteToMove - if move.pieceMoved == "wK": - self.whiteKingLocation = (move.startRow, move.startCol) - if move.pieceMoved == "bK": - self.blackKingLocation = (move.startRow, move.startCol) - """ - All move considering checks - """ - def getValidMoves(self): - moves = self.getAllPossibleMoves() - for i in range(len(moves)-1, -1, -1): - self.makeMove(moves[i]) - self.whiteToMove = not self.whiteToMove - if self.inCheck(): - moves.remove(moves[i]) - self.whiteToMove = not self.whiteToMove - self.undoMove() - if len(moves) == 0: - if self.inCheck(): - self.checkMate = True - else: - self.staleMate = True - else: - self.checkMate = False - self.staleMate = False - - return moves - - def inCheck(self): - if self.whiteToMove: - return self.squareUnderAttack(self.whiteKingLocation[0], self.whiteKingLocation[1]) - else: - return self.squareUnderAttack(self.blackKingLocation[0], self.blackKingLocation[1]) - - def squareUnderAttack(self, r, c): - self.whiteToMove = not self.whiteToMove - oppMoves = self.getAllPossibleMoves() - self.whiteToMove = not self.whiteToMove - for move in oppMoves: - if move.endRow == r and move.endCol == c: - return True - return False - - - - - """ - All move without considering checks - """ - def getAllPossibleMoves(self): - moves = [] - for r in range(len(self.board)): - for c in range(len(self.board[r])): - turn = self.board[r][c][0] # b or w based on turn - if(turn == 'w' and self.whiteToMove) or (turn == 'b' and not self.whiteToMove): - piece = self.board[r][c][1] - self.moveFunctions[piece](r,c, moves) - return moves - - - def getPawnMoves(self, r, c, moves): - if self.whiteToMove: - if self.board[r-1][c] == "--": - moves.append(Move((r, c),(r-1, c), self.board)) - if r == 6 and self.board[r-2][c] == "--": - moves.append(Move((r, c),(r-2, c), self.board)) - if c-1 >= 0: - if self.board[r-1][c-1][0] == 'b': - moves.append(Move((r, c),(r-1, c-1), self.board)) - if c+1 <= 7: - if self.board[r-1][c+1][0] == 'b': - moves.append(Move((r, c),(r-1, c+1), self.board)) - - else: - if self.board[r+1][c] == "--": - moves.append(Move((r, c),(r+1, c), self.board)) - if r == 1 and self.board[r+2][c] == "--": - moves.append(Move((r, c),(r+2, c), self.board)) - if c-1 >= 0: - if self.board[r+1][c-1][0] == 'w': - moves.append(Move((r, c),(r+1, c-1), self.board)) - if c+1 <= 7: - if self.board[r+1][c+1][0] == 'w': - moves.append(Move((r, c),(r+1, c+1), self.board)) - - def getRookMoves(self, r, c, moves): - directions = ((-1, 0), (0, -1), (1, 0), (0, 1)) - enemyColor = "b" if self.whiteToMove else "w" - for d in directions: - for i in range(1, 8): - endRow = r + d[0] * i - endCol = c + d[1] * i - if 0 <= endRow < 8 and 0 <= endCol < 8: - endPiece = self.board[endRow][endCol] - if endPiece == "--": - moves.append(Move((r,c), (endRow, endCol), self.board)) - elif endPiece[0] == enemyColor: - moves.append(Move((r,c), (endRow, endCol), self.board)) - break - else: - break - else: - break - - def getKnightMoves(self, r,c,moves): - knightMoves = ((-2, -1), (-2, 1), (-1, -2), (-1, 2), (1, -2), (1, 2), (2, -1), (2,1)) - allyColor = "w" if self.whiteToMove else "b" - for m in knightMoves: - endRow = r + m[0] - endCol = c + m[1] - if 0 <= endRow < 8 and 0 <= endCol < 8: - endPiece = self.board[endRow][endCol] - if endPiece[0] != allyColor: - moves.append(Move((r,c), (endRow, endCol), self.board)) - - def getBishopMoves(self, r,c,moves): - directions = ((-1, -1), (-1, 1), (1, -1), (1, 1)) - enemyColor = "b" if self.whiteToMove else "w" - for d in directions: - for i in range(1, 8): - endRow = r + d[0] * i - endCol = c + d[1] * i - if 0 <= endRow < 8 and 0 <= endCol < 8: - endPiece = self.board[endRow][endCol] - if endPiece == "--": - moves.append(Move((r,c), (endRow, endCol), self.board)) - elif endPiece[0] == enemyColor: - moves.append(Move((r,c), (endRow, endCol), self.board)) - break - else: - break - else: - break - - def getQueenMoves(self, r,c,moves): - self.getRookMoves(r, c, moves) - self.getBishopMoves(r, c, moves) - - def getKingMoves(self, r,c,moves): - kingMoves = ((-1, -1), (-1, 0), (-1, 1), (0, -1), (0, 1), (1, -1), (1, 0), (1,1) ) - allyColor = "w" if self.whiteToMove else "b" - for i in range(8): - endRow = r + kingMoves[i][0] - endCol = c + kingMoves[i][1] - if 0 <= endRow < 8 and 0 <= endCol < 8: - endPiece = self.board[endRow][endCol] - if endPiece[0] != allyColor: - moves.append(Move((r,c), (endRow, endCol), self.board)) -class Move(): - - ranksToRow = {"1": 7, "2": 6, "3": 5, "4": 4, - "5": 3, "6": 2, "7": 1, "8": 0} - rowsToRanks = {v: k for k, v in ranksToRow.items()} - filesToCols = {"a": 0, "b": 1, "c": 2, "d": 3, - "e": 4, "f": 5, "g": 6, "h": 7} - colsToFiles = {v: k for k, v in filesToCols.items()} - - def __init__(self, startSq, endSq, board): - self.startRow = startSq[0] - self.startCol = startSq[1] - self.endRow = endSq[0] - self.endCol = endSq[1] - self.pieceMoved = board[self.startRow][self.startCol] - self.pieceCaptured = board[self.endRow][self.endCol] - self.isPawnPromotion = False - if (self.pieceMoved == 'wp' and self.endRow == 0) or (self.pieceMoved == 'bp' and self.endRow == 7): - self.isPawnPromotion = True - self.moveID = self.startRow * 1000 + self.startCol * 100 + self.endRow * 10 + self.endCol - - def __eq__(self, other): - if isinstance(other, Move): - return self.moveID == other.moveID - return False - - - def getChessNotation(self): - return self.getRankFile(self.startRow, self.startCol) + self.getRankFile(self.endRow, self.endCol) - - def getRankFile(self, r, c): - return self.colsToFiles[c] + self.rowsToRanks[r] - diff --git a/Chess_Game/ChessGame.py b/Chess_Game/ChessGame.py deleted file mode 100644 index d221caf9..00000000 --- a/Chess_Game/ChessGame.py +++ /dev/null @@ -1,158 +0,0 @@ -import pygame as p -import ChessEngine - -WIDTH = HEIGHT = 512 -DIMENSIONS = 8 -SQ_SIZE = HEIGHT// DIMENSIONS -MAX_FPS = 15 -IMAGES = {} - - -icon = p.image.load("images\icon.ico") -p.display.set_icon(icon) - -p.display.set_caption("Chess Game") - -def loadImages(): - pieces = ['wp', 'wR', 'wN', 'wB', 'wQ', 'wK', 'bp', 'bR', 'bN', 'bB', 'bQ', 'bK' ] - for piece in pieces: - IMAGES[piece] = p.transform.scale(p.image.load("images/" + piece + ".png"), (SQ_SIZE, SQ_SIZE)) - -def main(): - p.init() - screen = p.display.set_mode((WIDTH, HEIGHT)) - clock = p.time.Clock() - screen.fill(p.Color("white")) - gs = ChessEngine.GameState() - validMoves = gs.getValidMoves() - moveMade = False - animate = False - loadImages() - running = True - sqSelected = () - playerClicks = [] - gameOver = False - while running: - for e in p.event.get(): - if e.type == p.QUIT: - running = False - elif e.type == p.MOUSEBUTTONDOWN: - if not gameOver: - location = p.mouse.get_pos() - col = location[0]//SQ_SIZE - row = location[1]//SQ_SIZE - if sqSelected == (row, col): - sqSelected = () - playerClicks = [] - else: - sqSelected = (row, col) - playerClicks.append(sqSelected) - if len(playerClicks) == 1 and (gs.board[row][col] == "--"): - sqSelected = () - playerClicks = [] - if len(playerClicks) == 2: - move = ChessEngine.Move(playerClicks[0], playerClicks[1], gs.board) - for i in range(len(validMoves)): - if move == validMoves[i]: - gs.makeMove(move) - moveMade = True - animate = True - sqSelected = () - playerClicks = [] - if not moveMade: - playerClicks = [sqSelected] - elif e.type == p.KEYDOWN: - if e.key == p.K_z: - gs.undoMove() - moveMade = True - animate = False - if e.key == p.K_r: - gs = ChessEngine.GameState() - validMoves = gs.getValidMoves() - sqSelected = () - playerClicks = [] - moveMade = False - animate = False - if moveMade: - if animate: - animatedMoves(gs.moveLog[-1], screen, gs.board,clock) - validMoves = gs.getValidMoves() - moveMade = False - animate = False - drawGameState(screen, gs, validMoves, sqSelected) - if gs.checkMate: - gameOver = True - if gs.whiteToMove: - drawText(screen, 'Black wins by checkmate') - else: - drawText(screen, 'White wins by checkmate') - elif gs.staleMate: - gameOver =True - drawText(screen, 'Stalemate'); - clock.tick(MAX_FPS) - p.display.flip() - -def highlightSquares(screen, gs, validMoves, sqSelected): - if sqSelected != (): - r, c = sqSelected - if gs.board[r][c][0] == ('w' if gs.whiteToMove else 'b'): - s = p.Surface((SQ_SIZE, SQ_SIZE)) - s.set_alpha(100) - s.fill(p.Color('blue')) - screen.blit(s, (c*SQ_SIZE, r*SQ_SIZE)) - s.fill(p.Color("yellow")) - for moves in validMoves: - if moves.startRow == r and moves.startCol == c: - screen.blit(s, (SQ_SIZE*moves.endCol, SQ_SIZE*moves.endRow)) - -def drawGameState(screen, gs, validMoves, sqSelected): - drawBoard(screen) - highlightSquares(screen, gs, validMoves, sqSelected) - drawPieces(screen, gs.board) - -def drawBoard(screen): - global colors - colors = [p.Color("white"), p.Color("grey")] - for r in range(DIMENSIONS): - for c in range(DIMENSIONS): - color = colors[(r+c) % 2] - p.draw.rect(screen, color, p.Rect(c*SQ_SIZE, r*SQ_SIZE, SQ_SIZE, SQ_SIZE)) - -def drawPieces(screen, board): - for r in range(DIMENSIONS): - for c in range(DIMENSIONS): - piece = board[r][c] - if piece != "--": - screen.blit(IMAGES[piece], p.Rect(c*SQ_SIZE, r*SQ_SIZE, SQ_SIZE, SQ_SIZE)) - -def animatedMoves(move, screen,board, clock): - global colors - dR = move.endRow - move.startRow - dC = move.endCol - move.startCol - framesPerSquare = 5 - frameCount = (abs(dR) + abs(dC)) * framesPerSquare - for frame in range(frameCount + 1): - r,c =((move.startRow + dR*frame/frameCount, move.startCol + dC*frame/frameCount)) - drawBoard(screen) - drawPieces(screen, board) - color = colors[(move.endRow + move.endCol)%2] - endSquare = p.Rect(move.endCol*SQ_SIZE, move.endRow*SQ_SIZE, SQ_SIZE, SQ_SIZE) - p.draw.rect(screen, color, endSquare) - if move.pieceCaptured != "--": - screen.blit(IMAGES[move.pieceCaptured], endSquare) - - screen.blit(IMAGES[move.pieceMoved], p.Rect(c*SQ_SIZE, r*SQ_SIZE, SQ_SIZE, SQ_SIZE)) - p.display.flip() - clock.tick(60) - -def drawText(screen, text): - font = p.font.SysFont("Helvitca", 32, True, False) - textObject = font.render(text, True, p.Color('Gray')) - textLocation = p.Rect(0, 0, WIDTH, HEIGHT).move(WIDTH/2 - textObject.get_width()/2, HEIGHT/2 - textObject.get_height()/2) - screen.blit(textObject, textLocation) - textObject = font.render(text, True, p.Color("Black")) - screen.blit(textObject, textLocation.move(2,2)) - - -if __name__ == "__main__": - main() diff --git a/Chess_Game/README.md b/Chess_Game/README.md deleted file mode 100644 index 9a91ca05..00000000 --- a/Chess_Game/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# Chess Game - -## 🛠️ Description -A simple chess game that you can play with your friend. - -## ⚙️ Languages or Frameworks Used -This game is created in python programming language. -Modules : pygame - -## 🌟 How to runHow to run the script -Running this game is pretty straight forward. - -```sh -pip install -r requirements.txt -``` - -```sh -python ChessGame.py -``` - -## 📺 Demo -

-![alt text] - -## *Author Name* -[Abhi Bhullar](https://github.com/userabhibhullar) \ No newline at end of file diff --git a/Chess_Game/__pycache__/ChessEngine.cpython-38.pyc b/Chess_Game/__pycache__/ChessEngine.cpython-38.pyc deleted file mode 100644 index 9480bb05..00000000 Binary files a/Chess_Game/__pycache__/ChessEngine.cpython-38.pyc and /dev/null differ diff --git a/Chess_Game/images/bB.png b/Chess_Game/images/bB.png deleted file mode 100644 index 453cb323..00000000 Binary files a/Chess_Game/images/bB.png and /dev/null differ diff --git a/Chess_Game/images/bK.png b/Chess_Game/images/bK.png deleted file mode 100644 index 225f869e..00000000 Binary files a/Chess_Game/images/bK.png and /dev/null differ diff --git a/Chess_Game/images/bN.png b/Chess_Game/images/bN.png deleted file mode 100644 index 8e3d04e6..00000000 Binary files a/Chess_Game/images/bN.png and /dev/null differ diff --git a/Chess_Game/images/bQ.png b/Chess_Game/images/bQ.png deleted file mode 100644 index 0d94a1c2..00000000 Binary files a/Chess_Game/images/bQ.png and /dev/null differ diff --git a/Chess_Game/images/bR.png b/Chess_Game/images/bR.png deleted file mode 100644 index b9748e87..00000000 Binary files a/Chess_Game/images/bR.png and /dev/null differ diff --git a/Chess_Game/images/bp.png b/Chess_Game/images/bp.png deleted file mode 100644 index c432d38a..00000000 Binary files a/Chess_Game/images/bp.png and /dev/null differ diff --git a/Chess_Game/images/icon.ico b/Chess_Game/images/icon.ico deleted file mode 100644 index 06a63623..00000000 Binary files a/Chess_Game/images/icon.ico and /dev/null differ diff --git a/Chess_Game/images/wB.png b/Chess_Game/images/wB.png deleted file mode 100644 index 26dae01c..00000000 Binary files a/Chess_Game/images/wB.png and /dev/null differ diff --git a/Chess_Game/images/wK.png b/Chess_Game/images/wK.png deleted file mode 100644 index d7341649..00000000 Binary files a/Chess_Game/images/wK.png and /dev/null differ diff --git a/Chess_Game/images/wN.png b/Chess_Game/images/wN.png deleted file mode 100644 index 2d716b15..00000000 Binary files a/Chess_Game/images/wN.png and /dev/null differ diff --git a/Chess_Game/images/wQ.png b/Chess_Game/images/wQ.png deleted file mode 100644 index a4fe68c8..00000000 Binary files a/Chess_Game/images/wQ.png and /dev/null differ diff --git a/Chess_Game/images/wR.png b/Chess_Game/images/wR.png deleted file mode 100644 index a805de49..00000000 Binary files a/Chess_Game/images/wR.png and /dev/null differ diff --git a/Chess_Game/images/wp.png b/Chess_Game/images/wp.png deleted file mode 100644 index e98fae2b..00000000 Binary files a/Chess_Game/images/wp.png and /dev/null differ diff --git a/Chess_Game/requirements.txt b/Chess_Game/requirements.txt deleted file mode 100644 index 247ea346..00000000 --- a/Chess_Game/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -pygame==2.4.0 diff --git a/Chinese_FlashCard/README.md b/Chinese_FlashCard/README.md deleted file mode 100644 index 459d8035..00000000 --- a/Chinese_FlashCard/README.md +++ /dev/null @@ -1,53 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Chinese Flashcards - -![Dragon](dragon.png) -*Designed by Freepik* - - - -## 🛠️ Description - -A tkinter application which displays chinese characters. - -+ click on the characters from the list. -+ click on one or more button (pinyin, role, definition) - -The characters come from the HSK1 list (non official). - -More informations on [pinyin](https://en.wikipedia.org/wiki/Pinyin). - -More informations on [HSK](https://en.wikipedia.org/wiki/Hanyu_Shuiping_Kaoshi). - -## ⚙️ Languages or Frameworks Used - -+ beautifulsoup4==4.11.1 -+ requests==2.28.1 -+ python 3.10.6 - -## 🌟 How to run - -Move to the app folder. -```sh -cd app -``` -Run the main file. -```sh -python main.py -``` - -## 📺 Demo - -![app](myapp.png) - -## 🤖 Author - -[CMagnac](https://github.com/CMagnac) \ No newline at end of file diff --git a/Chinese_FlashCard/app/app.py b/Chinese_FlashCard/app/app.py deleted file mode 100644 index b40d9ba5..00000000 --- a/Chinese_FlashCard/app/app.py +++ /dev/null @@ -1,75 +0,0 @@ -import tkinter as tk - -class MainApp(tk.Tk): - def __init__(self,keys_list,dictionary): - super().__init__() - self.geometry("350x350") - self.title("@MyApp") - self.configure(bg="#C2FCEE") - self.resizable(False,False) - self.scrollbar = tk.Scrollbar(orient='vertical',relief='groove') - self.keyslist = keys_list - self.dictionary = dictionary - self.setup() - - def setup(self): - self.widgets() - self.layouts() - self.show_keys(select_id=self.lists) - - def widgets(self): - self.lists = tk.Listbox(bg='#83FCE3',border=1,width=8,height=12,yscrollcommand=self.scrollbar.set) - for n,line in enumerate(self.keyslist): - self.lists.insert(n,line) - self.lists.bind("<>",self.show_keys) - self.scrollbar.config(command = self.lists.yview) - - self.canvas = tk.Canvas(bg='#83FCE3',border=1,width=190,height=190,relief='groove') - - self.quit_btn = tk.Button(cursor='target',bg="#C2FCEE",text='quit',command=self.quit) - - # create a frame to align with the canvas widget - self.frame = tk.Frame(bg="#C2FCEE",width=180,height=180) - - self.btn1 = tk.Button(self.frame,cursor='target',bg="#C2FCEE",text='Pinyin',command=self.show_pinyin) - self.btn2 = tk.Button(self.frame,cursor='target',bg="#C2FCEE",text='Role',command=self.show_role) - self.btn3 = tk.Button(self.frame,cursor='target',bg="#C2FCEE",text='Definition',command=self.show_definition) - - self.label1 = tk.Label(self.frame,bg="#C2FCEE",text='',font=('Roboto','15')) - self.label2 = tk.Label(self.frame,bg="#C2FCEE",text='',font=('Roboto','15')) - self.label3 = tk.Label(self.frame,bg="#C2FCEE",text='',font=('Roboto','15')) - - def layouts(self): - - self.lists.grid(column=0,row=0,padx=15,pady=8) - self.scrollbar.grid(column=1,row=0,sticky="NS",pady=10) - self.canvas.grid(column=2,row=0,padx=15,pady=15,sticky='N') - self.quit_btn.grid(columnspan=1,row=1,pady=5,sticky='S') - self.frame.grid(column=2,row=1) - self.btn1.grid(column=2,row=1,pady=5,padx=5,ipadx=10) - self.btn2.grid(column=2,row=2,pady=5,padx=1,ipadx=14) - self.btn3.grid(column=2,row=3,pady=5,padx=5,ipadx=4) - self.label1.grid(column=3,row=1,pady=5,padx=20) - self.label2.grid(column=3,row=2,pady=5,padx=20) - self.label3.grid(column=3,row=3,pady=5,padx=20) - - def show_keys(self,select_id): - global select_keys - # get the indices from our sinographs list - select_id = self.lists.curselection() - keyslists = self.lists - # get selected items - select_keys = ",".join(keyslists.get(i) for i in select_id) - # delete the previous sinograph - self.canvas.delete('all') - # create a new sinograph - self.canvas.create_text(100,100,text=select_keys,font=('Roboto','45')) - - def show_pinyin(self): - self.label1['text'] = self.dictionary[select_keys][0] - - def show_role(self): - self.label2['text'] = self.dictionary[select_keys][1] - - def show_definition(self): - self.label3['text'] = self.dictionary[select_keys][2] \ No newline at end of file diff --git a/Chinese_FlashCard/app/config.json b/Chinese_FlashCard/app/config.json deleted file mode 100644 index 0e3767ea..00000000 --- a/Chinese_FlashCard/app/config.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "html_tag":"td", - "url":"https://blog.lingodeer.com/chinese-hsk-1-vocabulary-list" -} \ No newline at end of file diff --git a/Chinese_FlashCard/app/main.py b/Chinese_FlashCard/app/main.py deleted file mode 100644 index 1bc9d186..00000000 --- a/Chinese_FlashCard/app/main.py +++ /dev/null @@ -1,13 +0,0 @@ -from random import shuffle -from app import MainApp -from models import create_dictionary - -def main(): - dct = create_dictionary() - keyslist = list(dct.keys()) - shuffle(keyslist) - app = MainApp(keyslist,dct) - app.mainloop() - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/Chinese_FlashCard/app/models.py b/Chinese_FlashCard/app/models.py deleted file mode 100644 index 32de5586..00000000 --- a/Chinese_FlashCard/app/models.py +++ /dev/null @@ -1,38 +0,0 @@ -import json -import requests -from bs4 import BeautifulSoup as bs - - - -with open("config.json") as f: - cfg = json.load(f) - -def extract_data(url=cfg['url']) -> str: - """ make a get request on url - return :: html document - """ - return requests.get(url).text - -def transform_data(): - """ parse html document - return :: tree of Python object - """ - return bs(extract_data(),"html.parser") - - -def data_list(soup=transform_data()) -> list: - """ match tag with find_all method - return :: string list - """ - new_char = soup.find_all(cfg['html_tag']) - return [sino.get_text() for sino in new_char ] - -def create_dictionary(datalist=data_list()) -> dict: - """ slice every 4 items - return :: dict with sinograms as key - """ - sino_list = datalist[0::4] - pinyin_list = datalist[1::4] - role_list = datalist[2::4] - def_list = datalist[3::4] - return dict(zip(sino_list,zip(pinyin_list,role_list,def_list))) \ No newline at end of file diff --git a/Chinese_FlashCard/dragon.png b/Chinese_FlashCard/dragon.png deleted file mode 100644 index 3d17298b..00000000 Binary files a/Chinese_FlashCard/dragon.png and /dev/null differ diff --git a/Chinese_FlashCard/myapp.png b/Chinese_FlashCard/myapp.png deleted file mode 100644 index 79758471..00000000 Binary files a/Chinese_FlashCard/myapp.png and /dev/null differ diff --git a/Clip_Organizer/README_TEMPLATE.md b/Clip_Organizer/README_TEMPLATE.md deleted file mode 100644 index 3ddd3962..00000000 --- a/Clip_Organizer/README_TEMPLATE.md +++ /dev/null @@ -1,35 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Clip Organizer - - - -## 🛠️ Description - -This script takes in a directory of video clips, and outputs one video clip featuring all of the input clips. However, it plays them back in real time. For example, if you filmed a one minute clip from 5:01am to 5:02am, and another one minute clip from 5:05am to 5:06am, the output clip would be 5 minutes in length. The first minute of the output clip would be the first input clip (the 5:01am clip), then there would be 3 minutes of just a black screen. Finally, the last minute of hte output clip would be the second input clip (the 5:05am clip). This is useful for syncing up b-roll and organizing clips. - -## ⚙️ Languages or Frameworks Used - -At a minimum, you need to install MoviePy with pip/pip3. You may also need to install some audio codecs, but that varies greatly from machine to machine. It shouldn't be too difficult ot debug. - -## 🌟 How to run - -1. Copy all of the clips you want to use into the clips folder. -2. Run the script. -3. Done! - -Note- make sure you don't have a .DS_store file in the clips directory. This can cause issues. - -## 📺 Demo -![Screenshot of terminal output](demo.png "Screenshot of terminal output") - -## 🤖 Author - -Seth Treiman diff --git a/Clip_Organizer/clips/.DS_Store b/Clip_Organizer/clips/.DS_Store deleted file mode 100644 index 5008ddfc..00000000 Binary files a/Clip_Organizer/clips/.DS_Store and /dev/null differ diff --git a/Clip_Organizer/demo.png b/Clip_Organizer/demo.png deleted file mode 100644 index 938a4665..00000000 Binary files a/Clip_Organizer/demo.png and /dev/null differ diff --git a/Clip_Organizer/main.py b/Clip_Organizer/main.py deleted file mode 100644 index 5d03f0f5..00000000 --- a/Clip_Organizer/main.py +++ /dev/null @@ -1,42 +0,0 @@ -import os -from moviepy.editor import * - -# Create array for clips -videos = [] -# Assign directory -directory = 'clips' - -# Iterate over files in -# that directory and add them -# to the array -for filename in sorted(os.listdir(directory)): - f = os.path.join(directory, filename) - # checking if it is a file - if os.path.isfile(f): - print(f) - videos.append(f) - -# Print list of clips for debugging purposes -print(videos) - -# Setup first clip and initialize array -# for updated clips to be put in -start = os.path.getmtime(videos[0]) -concated = [] - -# For each clip, update its start and end time so that -# they play relative to the time they were recoreded -for path in videos: - print(path) - print(os.path.getmtime(path) - start) - concated.append(VideoFileClip(path, audio=True).set_start( - os.path.getmtime(path) - start)) - -# Combine clips into one video -output = CompositeVideoClip(concated) - -# Output -output.write_videofile("output.mp4", codec='libx264', - audio_codec='aac', - temp_audiofile='temp-audio.m4a', - remove_temp=True) diff --git a/Color_Game/README.md b/Color_Game/README.md deleted file mode 100644 index ae4e1a56..00000000 --- a/Color_Game/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# COLOR GAME -_**Mechanics:**_ -* You must enter the color of the word, not the text itself. -* You have 30 seconds to play every round. -* The highest score will be recorded in the .txt file. \ No newline at end of file diff --git a/Color_Game/highest_score.txt b/Color_Game/highest_score.txt deleted file mode 100644 index 7813681f..00000000 --- a/Color_Game/highest_score.txt +++ /dev/null @@ -1 +0,0 @@ -5 \ No newline at end of file diff --git a/Color_Game/main.py b/Color_Game/main.py deleted file mode 100644 index 4d1e68d9..00000000 --- a/Color_Game/main.py +++ /dev/null @@ -1,99 +0,0 @@ -import random -import tkinter as tk -from tkinter import messagebox - -colours = ['Red', 'Blue', 'Green', 'Yellow', 'Orange', 'Purple', 'Pink', 'Black', 'White'] -score = 0 -timeleft = 30 - -def next_colour(): - global score, timeleft - - if timeleft > 0: - user_input = e.get().lower() - correct_color = colours[1].lower() - - if user_input == correct_color: - score += 1 - - e.delete(0, tk.END) - random.shuffle(colours) - label.config(fg=colours[1], text=colours[0]) - score_label.config(text=f"Score: {score}") - - -def countdown(): - global timeleft - if timeleft > 0: - timeleft -= 1 - time_label.config(text=f"Time left: {timeleft}") - time_label.after(1000, countdown) - else: - # messagebox.showwarning ('Attention', 'Your time is out!!') - scoreshow() - - -def record_highest_score(): - highest_score = load_highest_score() - if score > highest_score: - with open("highest_score.txt", "w") as file: - file.write(str(score)) - - - -def load_highest_score(): - try: - with open("highest_score.txt", "r") as file: - data = file.read() - if data: - return int(data) - else: - return 0 - except FileNotFoundError: - return 0 - - -def scoreshow(): - record_highest_score() - window2 = tk.Tk() - window2.title("HIGH SCORE") - window2.geometry("300x200") - - label = tk.Label(window2, text=f"Highest Score: {load_highest_score()}",font=(font, 12)) - - label.pack() - - window2.mainloop() - -def start_game(event): - global timeleft - if timeleft == 30: - countdown() - next_colour() - -window = tk.Tk() -font = 'Helvetica' -window.title("Color Game") -window.iconbitmap("color_game_icon.ico") -window.geometry("375x250") -window.resizable(False, False) - -instructions = tk.Label(window, text="Enter the color of the text, not the word!", font=(font, 12)) -instructions.pack(pady=10) - -score_label = tk.Label(window, text="Press Enter to start", font=(font, 12)) -score_label.pack() - -time_label = tk.Label(window, text=f"Time left: {timeleft}", font=(font, 12)) -time_label.pack() - -label = tk.Label(window, font=(font, 60)) -label.pack(pady=20) - -e = tk.Entry(window) -window.bind('', start_game) -e.pack() - -e.focus_set() - -window.mainloop() \ No newline at end of file diff --git a/Connect-Four/README.md b/Connect-Four/README.md deleted file mode 100644 index eaa7dee1..00000000 --- a/Connect-Four/README.md +++ /dev/null @@ -1,27 +0,0 @@ -# Connect 4 Game in Tkinter - -This script implements a simple Connect 4 game using Tkinter in Python. - -## Prerequisites - -Make sure you have Python installed on your system. No additional modules are required as Tkinter is included in the standard library. - -## How to Run the Script - -1. Navigate to the project directory: - - ```bash - cd Connect-Four - ``` - -2. Run the script: - - ```bash - python main.py - ``` - -3. The game window will open, and you can start playing by clicking on the buttons at the bottom to drop your pieces. - -## Author - -Guerro diff --git a/Connect-Four/main.py b/Connect-Four/main.py deleted file mode 100644 index 06913701..00000000 --- a/Connect-Four/main.py +++ /dev/null @@ -1,86 +0,0 @@ -import tkinter as tk - -# Constants -ROWS = 6 -COLS = 7 -EMPTY = 0 -PLAYER_1 = 1 -PLAYER_2 = 2 - -# Initialize board -board = [[EMPTY] * COLS for _ in range(ROWS)] -current_player = PLAYER_1 - -def drop_piece(col): - global current_player - row = get_next_open_row(col) - if row is not None: - board[row][col] = current_player - draw_board() - if check_winner(row, col): - print(f"Player {current_player} wins!") - reset_board() - else: - current_player = 3 - current_player # Switch player - -def get_next_open_row(col): - for row in range(ROWS - 1, -1, -1): - if board[row][col] == EMPTY: - return row - return None - -def check_winner(row, col): - directions = [(0, 1), (1, 0), (1, 1), (-1, 1)] - for dr, dc in directions: - count = 1 + check_line(row, col, dr, dc) + check_line(row, col, -dr, -dc) - if count >= 4: - return True - return False - -def check_line(row, col, delta_row, delta_col): - count = 0 - while 0 <= row + delta_row < ROWS and 0 <= col + delta_col < COLS and \ - board[row][col] == board[row + delta_row][col + delta_col]: - count += 1 - row += delta_row - col += delta_col - return count - -def draw_board(): - canvas.delete("all") # Clear previous drawings - - cell_size = 50 - for row in range(ROWS): - for col in range(COLS): - x1, y1 = col * cell_size, row * cell_size - x2, y2 = x1 + cell_size, y1 + cell_size - - color = "white" if board[row][col] == EMPTY else ("red" if board[row][col] == PLAYER_1 else "yellow") - canvas.create_oval(x1, y1, x2, y2, fill=color) - -def reset_board(): - global board, current_player - board = [[EMPTY] * COLS for _ in range(ROWS)] - current_player = PLAYER_1 - draw_board() - -# Create the main window -root = tk.Tk() -root.title("Connect 4") - -# Create buttons at the bottom -buttons = [] -for col in range(COLS): - button = tk.Button(root, text=str(col + 1), command=lambda col=col: drop_piece(col)) - button.grid(row=ROWS, column=col) - buttons.append(button) - -# Create the game board -canvas = tk.Canvas(root, width=350, height=300) -canvas.grid(row=0, column=0, rowspan=ROWS, columnspan=COLS) - -# Initial drawing of the board -draw_board() - -# Run the main loop -root.mainloop() diff --git a/Converter/README.md b/Converter/README.md deleted file mode 100644 index 7181917e..00000000 --- a/Converter/README.md +++ /dev/null @@ -1,29 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Converter - -

- - - -## 🛠️ Description -A simple converter app built in python. - -## ⚙️ Languages or Frameworks Used -You only need Python to run this script. You can visit here to download Python. - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python converter.py -``` - -## 📺 Demo -

- - -## 🤖 Author -[Alen Senson](https://github.com/AlenSenson) diff --git a/Converter/Screenshot 2023-05-31 180831.png b/Converter/Screenshot 2023-05-31 180831.png deleted file mode 100644 index 64d51659..00000000 Binary files a/Converter/Screenshot 2023-05-31 180831.png and /dev/null differ diff --git a/Converter/converter.py b/Converter/converter.py deleted file mode 100644 index c21fb90b..00000000 --- a/Converter/converter.py +++ /dev/null @@ -1,36 +0,0 @@ -from converter_values import * # import required files - -def main(): - print(options["help"]) # prints help menu - res = input("Response: ") - - while res.lower() != "q": # program loop - try: - res = res.strip().split(" ") - - if len(res) == 1: - display_help(res[0]) # display help menu - elif len(res) == 4: - perform_conversion(res) # perform unit conversion - else: - print("Invalid command") - - except Exception as e: - print("Error:", e) - - res = input("\nResponse: ") - -def display_help(command): - """Display help menu.""" - print(options[command]) - -def perform_conversion(res): - """Perform unit conversion.""" - for i in res[3].split(','): - value = round(eval("{} * {}['{}'] / {}['{}']".format(res[2], res[0], i, res[0], res[1])), 6) # calculating - print("{} \t : {}".format(i, value)) # displaying - -if __name__ == "__main__": - main() - - diff --git a/Converter/converter_values.py b/Converter/converter_values.py deleted file mode 100644 index 3cc9c104..00000000 --- a/Converter/converter_values.py +++ /dev/null @@ -1,117 +0,0 @@ -#dict with help menu options -options = { -"symbols":''' -LENGTH : L ---------------------------------------------------------------- -centimeter : cm -foot : ft -inch : in -kilometer : km -meter : m -micrometer ; um -mile : mi -millimeter : mm -nanometer : nm -nautical mile : nmi -yard : yd - -AREA : A ---------------------------------------------------------------- -acre : ac -hectare : ha -sq ft : ft2 -sq inch : in2 -sq km : km2 -sq m : m2 -sq mile : mi -sq yard : yd2 - -VOLUME : V ---------------------------------------------------------------- -cubic cm : cm3 -cubic foot : ft3 -cubic inch : in3 -cubic m : m3 -litre: l -milliliter : ml - -MASS : M ---------------------------------------------------------------- -gram : g -kilogram : kg -milligram : mg -ounce : oz -pound : lb -quintal : q -tonne : t - -TIME : T ---------------------------------------------------------------- -day : d -hour : hr -minute : min -second : sec -week : w -year : y - -''', - -"help":''' -Welcome To Converter! - -Enter your calculation in the following format: -Unit category Unit Value Units to be coverted to - -Unit category : L for length, A for area etc... -Unit : m for meter, mi for mile etc... - -Eg :L m 60 km,mi,yd -Eg :A ha 60 ac - -Type "symbols" for symbols of units -Type "help" for help -Type "q" to quit -''' -} - - - -#convertion table dictionarys -L= {"m":1 , - "km":10**(-3) , - "cm":10**(2) , - "mm":10**(3) , - "um":10**(6) , - "nm":10**(9) , - "mi":0.000621 , - "ft":3.28084 , - "in":39.3701 , - "yd":1.09361 , - "nmi":0.0005399} - -A= {"ha":10**(-4) , - "ac":0.000247 , - "km2":10**(-6) , - "m2":1, - "mi2":3.86*(10**-7) , - "ft2":10.7639 , - "in2":1550.0031 , - "yd2":1.19599 } - -V= {"m3":1 , - "cm3":10**(6) , - "ml":10**(6) , - "l":10**(3) , - "in3":61023.7441 , - "ft3":35.31467} - -M= {"g":1 , - "kg":10**(-3) , - "mg":10**(3), - "t":10**(-6) , - "q":10**(-5) , - "lb":0.0022046 , - "oz":0.03527} - -T= {"y":0.0027397 , - "w":0.142857 , - "d":1 , - "hr":24 , - "min":1440 , - "sec":86400 } - diff --git a/Converter/images.png b/Converter/images.png deleted file mode 100644 index a3d9db91..00000000 Binary files a/Converter/images.png and /dev/null differ diff --git a/Converting_Roman_to_Integer/Converting_Roman_to_Integer.py b/Converting_Roman_to_Integer/Converting_Roman_to_Integer.py deleted file mode 100644 index 5ad1ef3b..00000000 --- a/Converting_Roman_to_Integer/Converting_Roman_to_Integer.py +++ /dev/null @@ -1,28 +0,0 @@ -import sys - - -romanStr = sys.argv[1] -romanStr = str(romanStr) -dict = { - 'I':1, - 'V':5, - 'X':10, - 'L':50, - 'C':100, - 'D':500, - 'M':1000 -} - -num = 0 - -romanStr = romanStr.replace("IV","IIII") -romanStr = romanStr.replace("IX","VIIII") -romanStr = romanStr.replace("XL","XXXX") -romanStr = romanStr.replace("XC","LXXXX") -romanStr = romanStr.replace("CD","CCCC") -romanStr = romanStr.replace("CM","DCCCC") -myStr = list(romanStr) -for char in myStr: - num = num + dict[char] - -print(num) \ No newline at end of file diff --git a/Converting_Roman_to_Integer/README.md b/Converting_Roman_to_Integer/README.md deleted file mode 100644 index 0fbaa13b..00000000 --- a/Converting_Roman_to_Integer/README.md +++ /dev/null @@ -1,2 +0,0 @@ -Fixed issue #73, Convert Roman to Integer. -CLI python 3.10 script to convert the Roman to Integer. diff --git a/Convoys_GameofLife/ConwayGif.gif b/Convoys_GameofLife/ConwayGif.gif deleted file mode 100644 index c1101577..00000000 Binary files a/Convoys_GameofLife/ConwayGif.gif and /dev/null differ diff --git a/Convoys_GameofLife/GameOfLife.py b/Convoys_GameofLife/GameOfLife.py deleted file mode 100644 index de7a2f5d..00000000 --- a/Convoys_GameofLife/GameOfLife.py +++ /dev/null @@ -1,147 +0,0 @@ -#!/usr/bin/python3 - -import curses -import random -import time -import copy - - -def GameOfLife(stdscr): - k = 0 - cursor_x, cursor_y = 0, 0 - generations = 0 - grid = [] - height, width = stdscr.getmaxyx() - rows, cols = int(height-2), width - speed = .2 - pause = False - - stdscr.clear() - stdscr.refresh() - - # colors in curses - curses.start_color() - curses.init_pair(1, curses.COLOR_BLUE, curses.COLOR_BLACK) - curses.init_pair(2, curses.COLOR_GREEN, curses.COLOR_BLACK) - curses.init_pair(3, curses.COLOR_YELLOW, curses.COLOR_BLACK) - - def initialize(): - return [[False for _ in range(cols)] for _ in range(rows)] - - def seed(): - grid = initialize() - for i in range(rows): - for j in range(cols): - if int(random.random() * 4) == 0: - grid[i][j] = True - return grid - - def play(grid): - noOfCellsAlive = 0 - nGrid = copy.deepcopy(grid) - dR = [1, 1, 1, -1, -1, -1, 0, 0] - dC = [1, 0, -1, -1, 0, 1, 1, -1] - - def isValid(r, c) -> bool: - return (r >= 0 and r < rows and c >= 0 and c < cols) - - for i in range(rows): - for j in range(cols): - count = 0 - for r1, c1 in zip(dR, dC): - r = r1+i - c = c1+j - - if isValid(r, c) and grid[r][c]: - count += 1 - - if grid[i][j] and (count < 2 or count > 3): - nGrid[i][j] = False - if grid[i][j] == False and count == 3: - nGrid[i][j] = True - - noOfCellsAlive += nGrid[i][j] - - return [nGrid, noOfCellsAlive] - - # Inception - grid = seed() - - while True: - # Initialization - stdscr.clear() - stdscr.nodelay(1) - nHeight, nWidth = stdscr.getmaxyx() - - generations += 1 - - # If windows dimension changes #responsive :) - if ((nHeight != height) or (nWidth != width)): - height, width = nHeight, nWidth - rows, cols = int(height-3), width - grid = seed() - - # Simulating Generations - grid, noOfCellsAlive = play(grid) - - # Menu Cmds - if k == ord('q'): - break - elif k == ord('r'): - grid = seed() - generations = 0 - elif k == ord('f'): - speed = 0.1 - elif k == ord('s'): - speed = 1 - - # Displaying grid - stdscr.attron(curses.color_pair(1)) - stdscr.attron(curses.A_BOLD) - for i in range(rows): - for j in range(cols): - stdscr.addstr(i, j, chr(0x2B1A) if grid[i][j] else ' ') - - stdscr.attroff(curses.color_pair(1)) - stdscr.attroff(curses.A_BOLD) - - # Declaration of strings - title = 'Game Of Life' - credits = 'By @zeal2end' - statusbarstr = "Exit: 'q' | Seed: 'r' | Fast: 'f' | Slow: 's' | Genration: {} | Alive Cells: {}".format( - generations, noOfCellsAlive) - - # calculations - start_x_title = 0 - start_x_credit = width - len(credits) - 1 - start_y = int(height - 2) - - # Render status bar - stdscr.attron(curses.color_pair(3)) - stdscr.addstr(height-1, 0, statusbarstr) - stdscr.attroff(curses.color_pair(3)) - - # Turning on attributes for title - stdscr.attron(curses.color_pair(2)) - - # Rendering title - stdscr.addstr(start_y, start_x_title, title) - stdscr.addstr(start_y, start_x_credit, credits) - - # Turning off attributes for title - stdscr.attroff(curses.color_pair(2)) - - # Refresh the screen - stdscr.refresh() - time.sleep(speed) - - # Wait for next input - k = stdscr.getch() - - -def main(): - curses.wrapper(GameOfLife) - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/Convoys_GameofLife/README.md b/Convoys_GameofLife/README.md deleted file mode 100644 index 90323e4c..00000000 --- a/Convoys_GameofLife/README.md +++ /dev/null @@ -1,40 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/zeal2end) - -# Script Title - - -

- - -## 🛠️ Description - -A simple Command line UI project for Visualizing Convoy's Game Of Life developed using python and curses(its a python library for cmd line UI). If you haven't heard about Convoy's Game of Life, definately checkout this [video](https://www.youtube.com/watch?v=6avJHaC3C2U) on youtube by Dylan Beattie. Thanks me later!! - -## ⚙️ Languages or Frameworks Used - -If you are on linux, you are good to go just head toward your terminal. - -On Windows, -```sh -pip install curses -``` - -## 🌟 How to run - -Running the Script is really simple just head over to the directory of the code into your terminal and run this line: -```sh -python GameOfLife.py -``` - -## 📺 Demo -

-Convoy's Game of line in CommandLine - -## 🤖 Author - -[Vivek Kumar](https://github.com/zeal2end) \ No newline at end of file diff --git a/Convoys_GameofLife/demo.png b/Convoys_GameofLife/demo.png deleted file mode 100644 index dacdbd07..00000000 Binary files a/Convoys_GameofLife/demo.png and /dev/null differ diff --git a/Crud_in_flask/README.Md b/Crud_in_flask/README.Md deleted file mode 100644 index 90ca65f2..00000000 --- a/Crud_in_flask/README.Md +++ /dev/null @@ -1,54 +0,0 @@ - - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Flask Crud - - - -## 🛠️ Description - - - -Implementation of sql CRUD functions using flask and sqlite3 - -## ⚙️ Languages or Frameworks Used - - - -The program was created with Python3 and Flask. - -install the framework used in this project with -`pip install flask` - - - -## 🌟 How to run - - - -Run `python ./create_db.py` to create a database - -**Methods**\ -_create()_ - Create a new product entry and insert it into the databse\ -_edit(id)_ - Get the product entry with matching id from the database, modify it, then re-insert it into the database\ -_delete(id)_ - Delete the product entry with matching id from the database\ -_index()_ - Display the list of all product entries in the database - - - - - -## 🤖 Author - - - -[Alexander Monterrosa](https://github.com/Alex108-lab) diff --git a/Crud_in_flask/__pycache__/main.cpython-310.pyc b/Crud_in_flask/__pycache__/main.cpython-310.pyc deleted file mode 100644 index 4d3e5b94..00000000 Binary files a/Crud_in_flask/__pycache__/main.cpython-310.pyc and /dev/null differ diff --git a/Crud_in_flask/create_db.py b/Crud_in_flask/create_db.py deleted file mode 100644 index 33d93f33..00000000 --- a/Crud_in_flask/create_db.py +++ /dev/null @@ -1,20 +0,0 @@ -import sqlite3 - -connection = sqlite3.connect('database.db') - - -with open('database.sql') as f: - connection.executescript(f.read()) - -cur = connection.cursor() - -cur.execute("INSERT INTO products (title, price) VALUES (?, ?)", - ('Keyboard', 120) - ) - -cur.execute("INSERT INTO products (title, price) VALUES (?, ?)", - ('Monitor 4k', 111) - ) - -connection.commit() -connection.close() diff --git a/Crud_in_flask/database.sql b/Crud_in_flask/database.sql deleted file mode 100644 index 37bff89e..00000000 --- a/Crud_in_flask/database.sql +++ /dev/null @@ -1,8 +0,0 @@ -DROP TABLE IF EXISTS products; - -CREATE TABLE products ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, - title TEXT NOT NULL, - price FLOAT NOT NULL -); \ No newline at end of file diff --git a/Crud_in_flask/main.py b/Crud_in_flask/main.py deleted file mode 100644 index 76c199af..00000000 --- a/Crud_in_flask/main.py +++ /dev/null @@ -1,86 +0,0 @@ -import sqlite3 -from flask import Flask, render_template, request, url_for, flash, redirect, abort - -app = Flask(__name__) -app.config['SECRET_KEY'] = 'sqlite' - - -def get_db_connection(): - conn = sqlite3.connect('database.db') - conn.row_factory = sqlite3.Row - return conn - - -def get_products(products_id): - conn = get_db_connection() - products = conn.execute('SELECT * FROM products WHERE id = ?', - (products_id,)).fetchone() - conn.close() - if products is None: - abort(404) - return products - - -@app.route('/create/', methods=('GET', 'POST')) -def create(): - if request.method == 'POST': - title = request.form['title'] - price = request.form['price'] - - if not title: - flash('Title is required!') - elif not price: - flash('Content is required!') - else: - conn = get_db_connection() - conn.execute( - 'INSERT INTO products (title, price) VALUES (?, ?)', (title, price)) - conn.commit() - conn.close() - return redirect(url_for('index')) - return render_template('create.html') - - -@app.route('//edit/', methods=('GET', 'POST')) -def edit(id): - products = get_products(id) - - if request.method == 'POST': - title = request.form['title'] - price = request.form['price'] - - if not title: - flash('Title is required!') - - elif not price: - flash('Content is required!') - - else: - conn = get_db_connection() - conn.execute('UPDATE products SET title = ?, price = ?' - ' WHERE id = ?', - (title, price, id)) - conn.commit() - conn.close() - return redirect(url_for('index')) - - return render_template('edit.html', products=products) - - -@app.route('//delete/', methods=('POST',)) -def delete(id): - products = get_products(id) - conn = get_db_connection() - conn.execute('DELETE FROM products WHERE id = ?', (id,)) - conn.commit() - conn.close() - flash('"{}" was successfully deleted!'.format(products['title'])) - return redirect(url_for('index')) - - -@app.route('/') -def index(): - conn = get_db_connection() - products = conn.execute('SELECT * FROM products').fetchall() - conn.close() - return render_template('index.html', products=products) diff --git a/Crud_in_flask/static/styles/style.css b/Crud_in_flask/static/styles/style.css deleted file mode 100644 index 30397733..00000000 --- a/Crud_in_flask/static/styles/style.css +++ /dev/null @@ -1,25 +0,0 @@ -.products { - padding: 10px; - margin: 5px; - background-color: #f3f3f3; -} - -nav a { - color: #2d95eb; - font-size: 3em; - margin-left: 50px; - text-decoration: none; -} - -.create { - font-size: 2em; - text-align: center; - color: rgb(28, 162, 185); -} - -.alert { - padding: 20px; - margin: 5px; - color: #970020; - background-color: #ffd5de; -} diff --git a/Crud_in_flask/templates/base.html b/Crud_in_flask/templates/base.html deleted file mode 100644 index 65be91dc..00000000 --- a/Crud_in_flask/templates/base.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - SQLite using Flask - - - -

-
- Create - -
- {% for message in get_flashed_messages() %} -
{{ message }}
- {% endfor %} {% block price %} {% endblock %} -
- - diff --git a/Crud_in_flask/templates/create.html b/Crud_in_flask/templates/create.html deleted file mode 100644 index 97d10c01..00000000 --- a/Crud_in_flask/templates/create.html +++ /dev/null @@ -1,21 +0,0 @@ -{% extends 'base.html' %} - -{% block content %} -

{% block title %} Add a New Product {% endblock %}

-
- -
- -
- - -
- -
- -
-{% endblock %} \ No newline at end of file diff --git a/Crud_in_flask/templates/edit.html b/Crud_in_flask/templates/edit.html deleted file mode 100644 index 1cdfa2aa..00000000 --- a/Crud_in_flask/templates/edit.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends 'base.html' %} - -{% block content %} -

{% block title %} Edit "{{ products['title'] }}" {% endblock %}

-
- -
- -
- - -
- -
- -
- -
- -{% endblock %} \ No newline at end of file diff --git a/Crud_in_flask/templates/index.html b/Crud_in_flask/templates/index.html deleted file mode 100644 index 4266ff40..00000000 --- a/Crud_in_flask/templates/index.html +++ /dev/null @@ -1,17 +0,0 @@ -{% extends 'base.html' %} {% block price %} {% for products in products %} -
- -

{{ products['created'] }}

-

{{ products['title'] }}

-

{{ products['price'] }}$

- -
- -
-
- -{% endfor %} {% endblock %} diff --git a/Currency_Converter/README.md b/Currency_Converter/README.md deleted file mode 100644 index 443dec7a..00000000 --- a/Currency_Converter/README.md +++ /dev/null @@ -1,36 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/YehudaElyasaf) - -# Currency Converter - -## 🛠️ Description - -A program that converts currencies using CLI - -## ⚙️ Languages or Frameworks Used - -``` -pip install forex-python -pip install requests -``` - -## 🌟 How to run - -``` -python currency-converter.py <[amount]> to -``` -example: -``` -python currency-converter.py 1.5 USD to GBP -``` - -## 📺 Demo - -

- - -## 🤖 Author - -[Yehuda Elyasaf](https://github.com/YehudaElyasaf) \ No newline at end of file diff --git a/Currency_Converter/currency-converter.py b/Currency_Converter/currency-converter.py deleted file mode 100644 index 9103214f..00000000 --- a/Currency_Converter/currency-converter.py +++ /dev/null @@ -1,62 +0,0 @@ -from forex_python.converter import CurrencyRates, CurrencyCodes -from requests.exceptions import ConnectionError -from sys import argv - -converter = CurrencyRates() -codes = CurrencyCodes() - -def parse_arguments(): - amount = 1 - try: - amount = float(argv[1]) - del argv[1] - - except ValueError: - #no amount entered - #default amount - pass - - #argv: - #[0] - program name - #[1] - SRC - #[2] - 'to' - #[3] - DST - if len(argv) != 4 or argv[2] != 'to': - raise Exception - - return amount, argv[1].upper(), argv[3].upper() - - -#main -#parse arguments -usage = '[] to ' -try: - amount, base, dest = parse_arguments() -except: - print('usage:') - print(usage) - exit(1) - -#convert -try: - base_symbol = codes.get_symbol(base) - dest_symbol = codes.get_symbol(dest) - - #validate currencies - if base_symbol is None: - raise Exception(f'Currency {base} is invalid') - if dest_symbol is None: - raise Exception(f'Currency {dest} is invalid') - - result = converter.convert(base_cur=base, dest_cur=dest, amount=amount) - result = round(result, 3) - - print(f'{amount}{base_symbol} equals to {result}{dest_symbol}') - -except ConnectionError as e: - print('Connection error') - exit(1) - -except Exception as e: - print(e.args[0]) - exit(1) diff --git a/Demerge_pdfs/.DS_Store b/Demerge_pdfs/.DS_Store deleted file mode 100644 index 8d7bb867..00000000 Binary files a/Demerge_pdfs/.DS_Store and /dev/null differ diff --git a/Demerge_pdfs/Python.pdf b/Demerge_pdfs/Python.pdf deleted file mode 100644 index e69de29b..00000000 diff --git a/Demerge_pdfs/Python1(270 pages).pdf b/Demerge_pdfs/Python1(270 pages).pdf deleted file mode 100644 index 46d99f77..00000000 Binary files a/Demerge_pdfs/Python1(270 pages).pdf and /dev/null differ diff --git a/Demerge_pdfs/Python2(270 pages).pdf b/Demerge_pdfs/Python2(270 pages).pdf deleted file mode 100644 index 66e0043a..00000000 Binary files a/Demerge_pdfs/Python2(270 pages).pdf and /dev/null differ diff --git a/Demerge_pdfs/Python3(90 pages).pdf b/Demerge_pdfs/Python3(90 pages).pdf deleted file mode 100644 index 94f19d57..00000000 Binary files a/Demerge_pdfs/Python3(90 pages).pdf and /dev/null differ diff --git a/Demerge_pdfs/Python4(180 pages).pdf b/Demerge_pdfs/Python4(180 pages).pdf deleted file mode 100644 index ef1a89df..00000000 Binary files a/Demerge_pdfs/Python4(180 pages).pdf and /dev/null differ diff --git a/Demerge_pdfs/README.md b/Demerge_pdfs/README.md deleted file mode 100644 index 3f0b0101..00000000 --- a/Demerge_pdfs/README.md +++ /dev/null @@ -1,25 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Demerging_pdfs - -## 🛠️ Description - -Python program to convert a large pdf file to number of different sized pdf files without any change in the large file. - -## ⚙️ Languages or Frameworks Used -PyPDF2, it can be installed by typing `pip3 install PyPDF2` on your command line - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where this script is located and run the following command: -```sh -python demerging_pdf.py -``` -Screenshot 2021-12-18 at 6 52 30 PM - -## 🤖 Author -[Darpan Balar] - - - - diff --git a/Demerge_pdfs/demerging_pdfs.py b/Demerge_pdfs/demerging_pdfs.py deleted file mode 100644 index 46247a70..00000000 --- a/Demerge_pdfs/demerging_pdfs.py +++ /dev/null @@ -1,63 +0,0 @@ -import PyPDF2 -import re -def check_valid_filename(filename): - invalid_chars = r'[/\\:*?"<>|]' - if re.search(invalid_chars, filename): - print('A file name cannot contain any of these characters / \\ : * ? " < > |') - return False - else: - return True - -# Note: here instead of Python.pdf you should give the whole path to the pdf if the pdf is not present in the same directory where python program is present -merged_pdf = open('Python.pdf', mode='rb') - - -pdf = PyPDF2.PdfFileReader(merged_pdf) - -(u, ctr, x) = tuple([0]*3) -for i in range(1, pdf.numPages+1): - - if u >= pdf.numPages: - print("Successfully done!") - exit(0) - - while True: - name = input("Enter the name of the pdf: ") - if check_valid_filename(name) == True: - break - - while True: - ctr = input(f"Enter the number of pages for {name}: ") - try: - ctr = int(ctr) - if ctr > 0: - break - else: - raise ValueError - except ValueError: - print("Page number must be a positive integer") - - u += ctr - if u > pdf.numPages: - print('Limit exceeded! ') - break - - # Note: In the braces you should give the desired path of where new files should be stored - base_path = '{}.pdf' - # If you want to store the new pdfs in the same directory, then leave the braces empty - path = base_path.format(name) - f = open(path, mode='wb') - pdf_writer = PyPDF2.PdfFileWriter() - - for j in range(x, x+ctr): - page = pdf.getPage(j) - pdf_writer.addPage(page) - - x += ctr - - pdf_writer.write(f) - f.close() - - -merged_pdf.close() -print("Successfully done!") diff --git a/Demerge_pdfs/explanation.txt b/Demerge_pdfs/explanation.txt deleted file mode 100644 index a25f825d..00000000 --- a/Demerge_pdfs/explanation.txt +++ /dev/null @@ -1,17 +0,0 @@ -yay,we have successfully demerged a "Python" book pdf containing 810 pages🥳. -Python book was demerged into 4 books: Python1,Python2,Python3,Python4 -Bookname No.of pages -Python1 270 -Python2 270 -Python3 90 -Python4 180 -Total 810(270+270+90+180) - -This python script was a interactive program. -It means the program when executed asks user to input and runs accordingly. -Note: -1. We should be careful while giving no.of pages as input. If the given input exceeds the limit it will yell "Limit Exceeded!". -2. We can always come out of the program if we need only some part of pdf. - Example: If we have a pdf of 400 pages and we need only first 200 pages of it in 2 different pages - then we can input for those 2 pdfs and then PRESS CMD+C(Mac) or CTRL+C(windows) - diff --git a/Dice_Rolling_Stimulator/README.md b/Dice_Rolling_Stimulator/README.md deleted file mode 100644 index b624ea66..00000000 --- a/Dice_Rolling_Stimulator/README.md +++ /dev/null @@ -1,33 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/nduongthucanh) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/nduongthucanh?tab=repositories) - - -# Dice Rolling Stimulator -

- - -## 🛠️ Description - -This is a simple dice stimulator made using Python. - - -## ⚙️ Languages or Frameworks Used -You only need Python to run this script. You can visit [here](https://www.python.org/downloads/) to download Python. - -## 🌟 How to run - -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python dice_stimulator.py -``` - -## 📺 Demo -

- - -## 🤖 Author -[Leah Nguyen](https://github.com/ndleah) - diff --git a/Dice_Rolling_Stimulator/dice_stimulator.py b/Dice_Rolling_Stimulator/dice_stimulator.py deleted file mode 100644 index 1263bb6e..00000000 --- a/Dice_Rolling_Stimulator/dice_stimulator.py +++ /dev/null @@ -1,71 +0,0 @@ -import random -#CATEGORIZING OUTCOME INTO A LIST - -one = """ - ("===========") - ("| |") - ("| O |") - ("| |") - ("===========")\n - - """ - -two = """ - ("===========") - ("| |") - ("| O O |") - ("| |") - ("===========")\n - - """ - - - -three = """ - ("===========") - ("| O |") - ("| O |") - ("| O |") - ("===========")\n - - """ - -four = """ - ("===========") - ("| O O |") - ("| 0 |") - ("| O O |") - ("===========")\n - - """ - -five = """ - ("===========") - ("| O O |") - ("| 0 |") - ("| O O |") - ("===========")\n - - """ - -six = """ - ("===========") - ("| O O |") - ("| O O |") - ("| O O |") - ("===========") \n - """ - - - -outcomes_list = [one, two, three, four, five, six] - - -print("This is a dice stimulator") -x = "y" -while x == "y": - randon_outcome = random.sample(outcomes_list, 2) - for outcome in randon_outcome: - print(outcome) - - x = input("Press y to roll again ") \ No newline at end of file diff --git a/Dictionary/README.md b/Dictionary/README.md deleted file mode 100644 index 699949b8..00000000 --- a/Dictionary/README.md +++ /dev/null @@ -1,42 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Dictionary -

- - -## 🛠️ Description - -A dictionary stimulator by Python in which you can enter any words and you will get the definition of it as the output. - -## ⚙️ Languages or Frameworks Used -You only need Python to run this script. You can visit [here](https://www.python.org/downloads/) to download Python. - -## 🌟 How to run - -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python dictionary.py -``` -## 🌟 Changes or Improvement Suggested by Vishwas Yadav - -1. Added improved access to data.json file by introducing 'file_path' variable where you can add your current directory in which you json file resides: - benefits: - - you can now run the script from any directory just mention the path in the source code -2. For further code enhancement: -- added 'try' and 'except' block to handle exceptions -- added tkinter module for GUI Interface which makes it user friendly and intereactive -- introduced main method, so that each method can execute from main which can reduced fuzz in the code and calling each method becomes easy -- introduced logic where translate function will return values in tuple such as it will always return word and suggestion from the dictionary or data.json so that on the output screen user can see multiple defination of single word. - - - -## 📺 Demo -

- - -## 🤖 Author -[Leah Nguyen](https://github.com/ndleah) \ No newline at end of file diff --git a/Dictionary/data.json b/Dictionary/data.json deleted file mode 100644 index b9e1aaf7..00000000 --- a/Dictionary/data.json +++ /dev/null @@ -1 +0,0 @@ -{"abandoned industrial site": ["Site that cannot be used for any purpose, being contaminated by pollutants."], "abandoned vehicle": ["A vehicle that has been discarded in the environment, urban or otherwise, often found wrecked, destroyed, damaged or with a major component part stolen or missing."], "abiotic factor": ["Physical, chemical and other non-living environmental factor."], "access road": ["Any street or narrow stretch of paved surface that leads to a specific destination, such as a main highway."], "access to the sea": ["The ability to bring goods to and from a port that is able to harbor sea faring vessels."], "accident": ["An unexpected, unfortunate mishap, failure or loss with the potential for harming human life, property or the environment.", "An event that happens suddenly or by chance without an apparent cause."], "accumulator": ["A rechargeable device for storing electrical energy in the form of chemical energy, consisting of one or more separate secondary cells.\\n(Source: CED)"], "acidification": ["Addition of an acid to a solution until the pH falls below 7."], "acidity": ["The state of being acid that is of being capable of transferring a hydrogen ion in solution."], "acidity degree": ["The amount of acid present in a solution, often expressed in terms of pH."], "acid rain": ["Rain having a pH less than 5.6."], "acid": ["A compound capable of transferring a hydrogen ion in solution.", "Being harsh or corrosive in tone.", "Having an acid, sharp or tangy taste.", "A powerful hallucinogenic drug manufactured from lysergic acid.", "Having a pH less than 7, or being sour, or having the strength to neutralize alkalis, or turning a litmus paper red."], "acoustic filter": ["A device employed to reject sound in a particular range of frequencies while passing sound in another range of frequencies."], "acoustic insulation": ["The process of preventing the transmission of sound by surrounding with a nonconducting material."], "acoustic level": ["Physical quantity of sound measured, usually expressed in decibels.\\n(Source: KORENa)"], "acoustic property": ["The characteristics found within a structure that determine the quality of sound in its relevance to hearing.\\n(Source: KOREN)"], "acoustics": ["The science of the production, transmission and effects of sound."], "actinide": ["An element member of the actinide group of 15 radioactive elements."], "actinium": ["A radioactive element of the actinide series, occurring as a decay product of uranium. It is used as an alpha particle source and in neutron production.\\n(Source: CED)"], "action group": ["A collection of persons united to address specific sociopolitical or socioeconomic concerns."], "activated carbon": ["A powdered, granular or pelleted form of amorphous carbon characterized by a very large surface area per unit volume because of an enormous number of fine pores.\\n(Source: LANDY)"], "activated sludge": ["Sludge that has been aerated and subjected to bacterial action; used to speed breakdown of organism matter in raw sewage during secondary waste treatment.\\n(Source: LANDY)"], "act": ["Something done voluntarily by a person, and of such a nature that certain legal consequences attach to it.", "Legal documents, decrees, edicts, laws, judgments, etc.", "To do something.", "To perform a theatrical role."], "adaptable species": ["Species capable of adapting to changing circumstances."], "chemical addition": ["Chemical reaction in which one or more of the double bonds or triple bonds in an unsaturated compound is converted to a single bond by the addition of other atoms or groups."], "additional packaging": ["Additional packaging around the normal sales packaging, for example as protection against theft or for the purpose of advertising."], "addition polymer": ["A polymer formed by the chain addition of unsaturated monomer molecules, such as olefins, with one another without the formation of a by-product, as water; examples are polyethylene, polypropylene and polystyrene."], "additive": ["A substance mixed in small quantities with another product to modify its chemical or physical state, for example to make food look visually more attractive.", "Proper to be added."], "adhesive": ["Substance used for sticking objects together."], "acceptable daily intake": ["The measurement of the amount of any chemical substance that can be safely consumed by a human being in a day. Calculations are usually based on the maximum level of a substance that can be fed to animals without producing any harmful effects. This is divided by a \"safety factor\" to allow for the differences between animals and humans and to take account of the variation in human diets."], "administration": ["The management or direction of the affairs of a public or private office, business or organization."], "administrative body": ["Any governmental agency or organization charged with managing and implementing regulations, laws and government policies.\\n(Source: BLD)", "All representatives in a company that have the assignment to administrate the company itself."], "administrative competence": ["The power of an administrative organ to exercise control over a certain field."], "administrative fiat": ["An authoritative decree, sanction or order issued from an office with executive or managerial authority, without necessarily having the force of law or its equivalent.\\n(Source: RHW / BLD)"], "administrative jurisdiction": ["The extent, power or territory in which an office with executive or managerial authority administers justice or declares judgments.\\n(Source: RHW / BLD)"], "administrative law": ["Body of law created by administrative agencies in the form of rules, regulations, orders and decisions to carry out regulatory powers and duties of such agencies.\\n(Source: BLACK)"], "administrative sanction": ["Any formal official imposition of penalty or fine, e.g.: destruction, taking, seizure, or withholding of property; assessment of damages, reimbursement, restitution, compensation, costs, charges or fees; requirement, revocation or suspension of license; or any other compulsory or restrictive action taken by an organization, agency or its representative."], "adsorption": ["The physical or chemical bonding of molecules of gas, liquid or a dissolved substance to the external surface of a solid or the internal surface, if the material is porous, in a very thin layer."], "adult": ["A person who is fully grown, developed or of a specified age.", "(of animals) fully developed."], "adult education": ["Any instruction or training, informal or formal, which is geared to persons of mature age, regardless of previous education, and typically offered by university extension programs, employers, correspondence courses or community groups."], "advertisement": ["The action of drawing public attention to goods, services or events, often through paid announcements in newspapers, magazines, television or radio.\\n(Source: C / RHW)"], "product advertising": ["The creation and dissemination of paid announcements or public notices to draw attention to goods, services or events offered by some entity, usually for purchase.\\n(Source: RHW)"], "advice": ["Official notice, opinion, counsel or recommendation that is optional or at the receiver's discretion."], "aeration": ["Exposition to the action of air."], "aerial photograph": ["An image of the ground surface made on a light-sensitive material and taken at a high altitude from an aircraft, spacecraft or rocket.\\n(Source: MHD)"], "aerobic process": ["A process requiring the presence of oxygen."], "aerobiology": ["The study of the atmospheric dispersal of airborne fungus spores, pollen grains, and microorganisms; and, more broadly, of airborne propagules of algae and protozoans, minute insects such as aphids, and pollution gases and particles which exert specific biologic effects."], "aerodynamic noise": ["Acoustic noise caused by turbulent airflow over the surface of a body."], "aerosol": ["A gaseous suspension of ultramicroscopic particles of a liquid or a solid.\\n(Source: MGH)", "An aerosol can for applying paint, deodorant, etc., as a fine spray."], "afforestation": ["Establishment of a new forest by seeding or planting of nonforested land.", "The planting of trees on land which was previously used for other uses than forestry.", "The planting of trees in an area, or the management of an area to allow trees to regenerate or colonize naturally, in order to produce a forest."], "Africa": ["The second largest of the continents, on the Mediterranean in the north, the Atlantic in the west, and the Red Sea, Gulf of Aden, and Indian Ocean in the east."], "afterburning": ["The incineration of polluting gases and particles resulting from incompletely combusted fuel, and the breakdown of other molecules associated with combustion into inert chemicals."], "age": ["The period of time that a person, animal or plant has lived or is expected to live.", "To begin to look older; to get older.", "To make older.", "A period of history having some distinctive feature.", "How long something has existed."], "agricultural biotechnology": ["An advanced technology that allows plant breeders to make precise genetic changes to impart beneficial traits to crop plants."], "agricultural building": ["The buildings and adjacent service areas of a farm.\\n(Source: WEBSTE)"], "agricultural ecology": ["Study of the ecology of agricultural systems and the natural resources required to sustain them."], "agricultural economics": ["An applied social science that deals with the production, distribution, and consumption of agricultural or farming goods and services."], "agricultural engineering": ["A discipline concerned with developing and improving the means for providing food and fiber for mankind's needs.\\n(Source: MGH)"], "agricultural equipment": ["Machines utilized for tillage, planting, cultivation and harvesting of crops. Despite its benefits in increasing yields, mechanisation has clearly had some adverse environmental effects: deep ploughing exposes more soil to wind and water erosion; crop residues can be removed as opposed to ploughing back into the soil; removal of residues can lead to a serious loss of organic content in the soil, which may increase the risk of soil erosion.\\n(Source: MGH / DOBRIS)"], "agricultural machinery": ["Machines utilized for tillage, planting, cultivation and harvesting of crops. Despite its benefits in increasing yields, mechanisation has clearly had some adverse environmental effects: deep ploughing exposes more soil to wind and water erosion; crop residues can be removed as opposed to ploughing back into the soil; removal of residues can lead to a serious loss of organic content in the soil, which may increase the risk of soil erosion.\\n(Source: MGH / DOBRIS)"], "agricultural management": ["The administration or handling of soil, crops and livestock."], "agricultural pest": ["Insects and mites that damage crops, weeds that compete with field crops for nutrients and water, plants that choke irrigation channels or drainage systems, rodents that eat young plants and grain, and birds that eat seedlings or stored foodstuffs.\\n(Source: WRIGHT)"], "agricultural policy": ["A course of action adopted by government or some other organization that determines how to deal with matters involving the cultivation of land; raising crops; feeding, breeding and raising livestock or poultry; and other farming issues.\\n(Source: RHW)"], "agricultural production": ["The amount of grown crops and breeded livestock per year in a given area."], "agriculture": ["The production of plants and animals useful to man, involving soil cultivation and the breeding and management of crops and livestock."], "agrochemical": ["Any substance or mixture of substances used or intended to be used for preventing, destroying, repelling, attracting, inhibiting, or controlling any insects, rodents, birds, nematodes, bacteria, fungi, weeds or other forms of plant, animal or microbial life regarded as pests."], "agroforestry": ["The interplanting of farm crops and trees, especially leguminous species. In semiarid regions and on denuded hillsides, agroforestry helps control erosion and restores soil fertility, as well as supplying valuable food and commodities at the same time.\\n(Source: ALL)"], "agroindustry": ["Industry dealing with the supply, processing and distribution of farm products.\\n(Source: PHC)"], "agrometeorology": ["The study of the interaction between meteorological and hydrological factors, on the one hand, and agriculture in the widest sense, including horticulture, animal husbandry and forestry, on the other.\\n(Source: EURMET)"], "AIDS": ["A disease of the human immune system caused by the human immunodeficiency virus (HIV)."], "air": ["A predominantly mechanical mixture of a variety of individual gases forming the earth's enveloping atmosphere.", "To expose to fresh air.", "To send data over the airwaves, as in radio or television.", "An expression or appearance indicating a certain state of mind.", "A succession of notes forming a distinctive sequence.", "The space above the earth's surface where planes fly.", "To expose to cool or cold air so as to cool or freshen."], "air conditioning": ["A system or process for controlling the temperature and sometimes the humidity and purity of the air in a house, etc."], "aircraft": ["A vehicle, designed to be supported by the air, either by the dynamic action of the air upon the surfaces of the structure or object or by its own buoyancy.\\n(Source: MGH)"], "aircraft noise": ["Noise caused by various sources associated with aircraft operation, such as propeller and engine exhaust, jet noise, and sonic boom."], "air movement": ["Air movements within the Earth's atmospheric circulation; also called planetary winds. Two main components are recognized: first, the latitudinal meridional component due to the Coriolis force (a deflecting motion or force discussed by G.G. de Coriolis in 1835. The rotation of the Earth causes a body moving across its surface to be deflected to the right in the N hemisphere and to the left in the S hemisphere); and secondly, the longitudinal component and the vertical movement, resulting largely from varying pressure distributions due to differential heating and cooling of the Earth's surface.\\n(Source: WHIT)"], "air pollutant": ["Any pollutant agent or combination of such agents, including any physical, chemical, biological, radioactive substance or matter which is emitted into or otherwise enters the ambient air and can, in high enough concentrations, harm humans, animals, vegetation or material.\\n(Source: LEE / TOE)"], "air pollution": ["Presence in the atmosphere of large quantities of gases, solids and radiation produced by the burning of natural and artificial fuels, chemical and other industrial processes and nuclear explosions."], "airport": ["A landing and taking-off area for civil aircraft, usually with surfaced runways and aircraft maintenance and passenger facilities."], "air quality": ["The degree to which air is polluted; the type and maximum concentration of man-produced pollutants that should be permitted in the atmosphere.\\n(Source: ALL / WRIGHT)"], "air quality control": ["The measurement of ambient air-pollution concentrations in order to determine whether there is a problem in a given region.\\n(Source: CONFERa)"], "air safety": ["Any measure, technique or design intended to reduce the risk of harm posed by either moving vehicles or projectiles above the earth's surface or pollutants to the earth's atmosphere."], "air temperature": ["The temperature of the atmosphere which represents the average kinetic energy of the molecular motion in a small region and is defined in terms of a standard or calibrated thermometer in thermal equilibrium with the air."], "air traffic": ["Aircraft moving in flight or on airport runways."], "air traffic law": ["International rules and conventions relating to air transportation."], "air traffic regulation": ["Rules and regulations that govern civil and military air traffic."], "air transportation": ["The use of aircraft, predominantly airplanes, to move passengers and cargo."], "alarm": ["The act of signalling an impending danger in order to call attention to some event or condition.", "A signal given to call attention to some event or condition which may be an impending danger."], "alcohol": ["A group of organic chemical compounds composed of carbon, hydrogen, and oxygen. The molecules in the series vary in chain length and are composed of a hydrocarbon plus a hydroxyl group. Alcohol includes methanol and ethanol.\\n(Source: EIADOE)", "A flammable, colorless liquid which is used amongst others as solvent, disinfectant and intoxicant.", "A drink (a liquor or brew) containing ethanol, commonly known as alcohol."], "alga": ["Simple, green, aquatic plants without stems, roots or leaves. They are found floating in the sea and fresh water, but they also grow on the surface of damp walls, rocks, the bark of trees and on soil.\\n(Source: WRIGHT)"], "algal bloom": ["Excessive and rapid growth of algae and other aquatic plants. It takes place when there are too many nutrients in the water through pollution from agricultural areas, i.e. higher levels of nitrogen and phosphates."], "algicide": ["Any substance or chemical applied to kill or control algal growth."], "alicyclic compound": ["Any substance composed of two or more unlike atoms held together by chemical bonds characterized by straight-chained, branched or cyclic properties."], "alicyclic hydrocarbon": ["A class of organic compounds containing only carbon and hydrogen atoms joined to form one or more rings and having the properties of both aliphatic and cyclic substances.\\n(Source: MGH / RRDA)"], "aliphatic compound": ["Any organic compound of hydrogen and carbon characterized by a straight chain of the carbon atoms.\\n(Source: MGH)"], "aliphatic hydrocarbon": ["Hydrocarbons having an open chain of carbon atoms, whether normal or forked, saturated or unsaturated.\\n(Source: MGH)"], "alkali land": ["Any geomorphic area, often a level lake-like plain, with soil containing a high percentage of mineral salts, located especially in arid regions.\\n(Source: MHD / RHW)"], "alkali soil": ["Soil that contains sufficient exchangeable sodium to interfere with water penetration and crop growth, either with or without appreciable quantities of soluble salts.\\n(Source: LANDY)"], "alkane": ["Paraffins. A homologous series of saturated hydrocarbons having the general formula CnH2n+2. Their systematic names end in -ane. They are chemically inert, stable, and flammable. The first four members of the series (methane, ethane, propane, butane) are gases at ordinary temperatures; the next eleven are liquids, and form the main constituents of paraffin oil; the higher members are solids. Paraffin waxs consists mainly of higher alkanes.\\n(Source: UVAROV)", "Member of the homologous series of saturated hydrocarbons having the general formula CnH2n+2."], "alkyl compound": ["Compound containing one or more alkyl radicals."], "allergen": ["Any antigen, such as pollen, a drug, or food, that induces an allergic state in humans or animals.\\n(Source: MGH)"], "allergy": ["A condition of abnormal sensitivity in certain individuals to contact with substances such as proteins, pollens, bacteria, and certain foods. This contact may result in exaggerated physiologic responses such as hay fever, asthma, and in severe enough situations, anaphylactic shock.\\n(Source: KOREN)"], "allocation": ["The assignment or allotment of resources to various uses in accord with a stated goal or policy.\\n(Source: ODE)"], "alloy": ["Any of a large number of substances having metallic properties and consisting of two or more elements; with few exceptions, the components are usually metallic elements."], "alluvion": ["An overflowing; an inundation or flood, especially when the water is charged with much suspended material.\\n(Source: BJGEO)"], "alpha radiation": ["A stream of alpha particles which are ejected from many radioactive substances having a penetrating power of a few cm in air but can be stopped by a thin piece of paper."], "alternative technology": ["Technology that aims to utilize resources sparingly, with minimum damage to the environment."], "alumina": ["A natural or synthetic oxide of aluminum widely distributed in nature, often found as a constituent part of clays, feldspars, micas and other minerals, and as a major component of bauxite."], "alveolus": ["A tiny, thin-walled, capillary-rich sac in the lungs where the exchange of oxygen and carbon dioxide takes place."], "amalgam": ["A solution of a metal in mercury."], "Americas": ["Continent which extends on a great part of the Occidental Hemisphere of the Earth, from the Artic Ocean in the North, to the Cape Horn in the South at the confluence of the Atlantic and Pacific Oceans, which delimits the continent on the East and West respectively."], "Ames test": ["A bioassay developed by Bruce N. Ames in 1974, performed on bacteria to assess the capability of environmental chemicals to cause mutations."], "amine": ["One of a class of organic compounds which can be considered to be derived from ammonia by replacement of one or more hydrogens by organic radicals.\\n(Source: MGH)"], "amino acid": ["Organic compounds containing a carboxyl group (-COOH) and an amino group (-NH2). About 30 amino acids are known. They are fundamental constituents of living matter because protein molecules are made up of many amino acid molecules combined together. Amino acids are synthesized by green plants and some bacteria, but some (arginine, histidine, lysine. threonine, methionine, isoleucine, leucine, valine, phenylalanine, tryptophane) cannot be synthesized by animals and therefore are essential constituents of their diet. Proteins from specific plants may lack certain amino acids, so a vegetarian diet must include a wide range of plant products.\\n(Source: ALL)"], "ammonia": ["A colorless gaseous alkaline compound that is very soluble in water, has a characteristic pungent odour, is lighter than air, and is formed as a result of the decomposition of most nitrogenous organic material."], "ammonification": ["Addition of ammonia or ammonia compounds, especially to the soil."], "ammonium": ["A positively charged polyatomic cation of the chemical formula NH4+ formed by protonation of ammonia (NH3)."], "amphibian": ["A class of vertebrate animals characterized by a moist, glandular skin, gills at some stage of development, and no amnion during the embryonic stage.\\n(Source: MGH)"], "amusement park": ["An open-air entertainment area consisting of stalls, side shows etc.\\n(Source: CED)"], "analysis": ["The mathematical study of functions, sequences, series, limits, derivatives and integrals."], "analytical chemistry": ["The branch of chemistry dealing with techniques which yield any type of information about chemical systems.\\n(Source: MGH)"], "analytical method": ["Method to analyse the performance of a process or system."], "anatomy": ["The science concerned with the physical structure of animals and plants."], "angiosperm": ["The division of seed plants that includes all the flowering plants, characterized by the possession of flowers. The ovules, which become seeds after fertilization, are enclosed in ovaries. The xylem contains true vessels. The angiospermae are divided into two subclasses: Monocotyledoneae and Dycotiledoneae.\\n(Source: ALL)"], "angling": ["The art or sport of catching fish with a rod and line and a baited hook or other lure, such as a fly."], "animal disease": ["A disease that is mainly found in certain animals (and not in plants or humans)."], "animal ecology": ["A study of the relationships of animals to their environment.\\n(Source: MGH)"], "animal experiment": ["Investigation carried out in animals for research purposes."], "animal genetics": ["The scientific study of the hereditary material of animals for theoretical and practical applications such as increased population, conservation and disease research.\\n(Source: EEN)"], "animal housing": ["Any kind of shelter, refuge affording protection to animals."], "animal husbandry": ["A branch of agriculture concerned with the breeding and feeding of domestic animals.\\n(Source: MGH)"], "animal manure": ["Animal excreta collected from stables and barnyards with or without litter; used to enrich the soil.\\n(Source: MGH)"], "animal noise": ["Noise caused by animals such as dogs kept in kennels or in private homes as pets."], "animal nutrition": ["Ingestion, digestion and/or assimilation of food by animals."], "animal physiology": ["Study of the normal processes and metabolic functions of animal organisms.\\n(Source: LBC)"], "animal protection": ["Precautionary actions or procedures taken to prevent or reduce the harm to sentient, non-human species, posed, in most cases, by humans."], "animal for slaughter": ["Animals bred and killed for the production of food."], "animal shelter": ["A protection providing housing for animals in bad weather. (Source: RRDA)", "A facility that houses homeless, lost or abandoned animals; primarily a large variety of dogs and cats and other animals used as pets."], "animal": ["Any living organism characterized by voluntary movement, the possession of cells with noncellulose cell walls and specialized sense organs enabling rapid response to stimuli, and the ingestion of complex organic substances such as plants and other animals.", "Any living organism of the Animalia reign except human", "Of or relating to animals."], "animal trade": ["The process or act of exchanging, buying or selling animals, especially livestock."], "anion": ["An ion that is negatively charged."], "annelid": ["An animal member of the phylum Annelida."], "antagonism": ["The situation in which two chemicals upon interaction interfere in such a way that the action of one partially or completely inhibits the effects of the other."], "Antarctica": ["A continent lying chiefly within the Antarctic Circle and asymmetrically centered on the South Pole."], "Antarctic ecosystem": ["The ecosystem of the antarctic region of planet Earth."], "Antarctic Ocean": ["The waters, including ice shelves, that surround the continent of Antarctica, which comprise the southernmost parts of the Pacific, Atlantic and Indian oceans, and also the Ross, Amundsen, Bellingshausen and Weddell seas."], "Antarctic region": ["An area within the Antarctic Circle that includes the fifth largest continent and its surrounding waters, consisting mostly of thick ice shelves.\\n(Source: INP / CIA)"], "anthropic activity": ["Action resulting from or influenced by human activity or intervention."], "anthropologic reserve": ["Area of protection of the life style of societies where traditional human activities are still maintained and the exploitation of natural resources is still carried out without compromising the future availability."], "antibiotic": ["A chemical substance, produced by microorganisms and synthetically, that has the capacity to inhibit the growth of, and even to destroy, bacteria and other microorganisms."], "antibody": ["A complex protein that is produced in response to the introduction of a specific antigen into an animal. Antibodies belong to a class of proteins called immunoglobins, which are formed by plasma cells in the blood as a defence mechanism against invasion by parasites, notably bacteria and viruses, either by killing them or rendering them harmless.\\n(Source: ALL2)"], "anticipation of danger": ["The act of foreseeing, expecting and taking measures against possible future exposure to harm, death or a thing that causes these.\\n(Source: ISEP)"], "apartment block": ["An apartment building in which each apartment is individually wholly owned and the common areas are jointly owned."], "apiculture": ["The agricultural practice of intentional maintenance of honey bee colonies."], "appeal": ["Resort to a superior court to review the decision of an inferior court or administrative agency.", "Request turned to an administrative or judicial organ in order to obtain the review or revocation of an action or provision.", "To take a court case to a higher court for review."], "appeal procedure": ["Procedure through which it is possible to resort to a superior court to review the decision of an inferior court."], "applied ecology": ["The application of ecological principles to the solution of human problems."], "applied science": ["Science whose results are employed in technical applications."], "aquaculture": ["The cultivation and harvest of freshwater or marine animals and plants, in ponds, tanks, cages or on protected beds."], "aquatic animal": ["Animal having a water habitat."], "aquatic ecology": ["The study of the relationships among aquatic living organisms and between those organisms and their environment.\\n(Source: ALLa)"], "aquatic mammal": ["A diverse group of roughly 120 species of mammal that are primarily ocean-dwelling or depend on the ocean for food."], "aquatic organism": ["Organisms which live in water.\\n(Source: PHC)"], "aquatic plant": ["Plant adapted for a partially or completely submerged life."], "aqueduct": ["A channel for supplying water; often underground, but treated architecturally on high arches when crossing valleys or low ground.", "Duct for conveying water to a given place.", "Canal or passage in the body in which liquids flow."], "aquifer": ["Layers of rock, sand or gravel that can absorb water and allow it to flow."], "arable farming": ["Growing crops as opposed to dairy farming, cattle farming, etc."], "arboriculture": ["The planting and care of woody plants, especially trees."], "archaeological site": ["Any location containing significant relics and artifacts of past culture.\\n(Source: LANDY)"], "archaeology": ["The scientific study of the material remains of the cultures of historical or prehistorical peoples.\\n(Source: MGH)"], "archipelago": ["A group of many islands including the waters that surround them.\\n(Source: DOE)", "A cluster of several islands."], "architecture": ["The art and science of designing and building structures, or large groups of structures, in keeping with aesthetic and functional criteria.", "A specification that identifies components and their associated functionality, describes connectivity of components, and describes the mapping of functionality onto components."], "Arctic Ocean": ["The smallest and most poorly studied of the oceans on earth. It covers an area of 14 million square km that is divided by three submarine ridges, i.e. the Alpha Ridge, the Lomonosov Ridge, and an extension of the mid-Atlantic ridge. It is also nearly landlocked, covered\\nyear-round by pack ice, and the third of its area is continental shelf.\\n(Source: OCEAN)"], "Arctic region": ["The northernmost area of the earth, centered on the North Pole, that includes the Arctic Ocean, the northern reaches of Canada, Alaska, Russia, Norway and most of Greenland, Iceland and Svalbard.\\n(Source: INP)"], "distribution area": ["The overall geographical distribution of a talon."], "armament": ["The weapons, ammunition and equipment held by a military unit or state.", "The total force held by a military unit or state."], "armed forces": ["The military units of a state, typically divided by their differing contexts of operations, such as the army, navy, air force and marines."], "aromatic compound": ["Compound characterized by the presence of at least one benzene ring."], "aromatic hydrocarbon": ["Hydrocarbon having an unsaturated ring containing alternating double and single bonds, especially containing a benzene ring."], "aromatic substance": ["Substance having a distinctive, usually fragrant smell."], "arsenic": ["A toxic metalloid element with symbol As and atomic number 33, existing in several allotropic forms, that occurs principally in realgar and orpiment and as the free element. It is used in semiconductors, lead-based alloys, and high temperature brasses."], "art": ["The creation of works of beauty or other special significance.", "The products of human creativity; works of art collectively.", "A superior skill that one can learn by study, practice, and observation.", "Photographs or other visual representations in a printed publication."], "arthropod": ["The largest phylum in the animal kingdom; adults typically have segmented body, a sclerotized integument, and many-jointed segmental limbs.\\n(Source: MGH)", "Animal member of the phylum Arthropoda."], "Articulata": ["Animals characterized by the repetition of similar segments (metameres), exhibited especially by arthropods, annelids, and vertebrates in early embryonic stages and in certain specialized adult structures."], "artificial lake": ["Lake created behind manmade barriers."], "asbestos": ["Generic name for a group of fibrous mineral silicates."], "asbestos cement": ["A hardened mixture of asbestos fibers, Portland cement and water used in relatively thin slabs for shingles, wallboard and siding."], "ASEAN": ["Association of Southeast Asian Nations. Regional organization of states of Southeast Asia created on august 8th, 1967."], "ash": ["The incombustible matter remaining after a substance has been incinerated.", "Any of the trees belonging to the genus Fraxinus.", "Wood of the ash tree."], "Asia": ["The world's largest continent. It occupies the eastern part of the Eurasian landmass and its adjacent islands and is separated from Europe by the Ural Mountains. Asia borders on the Arctic Ocean, the Pacific Ocean, the Indian Ocean, and the Mediterranean and Red Seas in the west. It includes the largest peninsulas of Asia Minor, India, Arabia, and Indochina and the island groups of Japan, Indonesia, the Philippines, and Ceylon."], "assimilation": ["Conversion of nutritive material to living tissue.\\n(Source: KOREN)"], "association": ["A formal association of people with similar interests."], "astronautics": ["The science of space flight."], "astronomy": ["The science concerned with celestial bodies and the observation and interpretation of the radiation received in the vicinity of the earth from the component parts of the universe."], "atlas": ["A bound collection of maps or charts, plates, engravings or tables illustrating any subject.", "The most superior (first) cervical vertebra of the spine."], "atmosphere": ["The gaseous envelope surrounding the Earth in a several kilometers-thick layer.", "Gaseous envelope of a celestial body.", "A store's physical characteristics that are used to develop an image and draw customers."], "atmospheric chemistry": ["The study of the production, transport, modification, and removal of atmospheric constituents in the troposphere and stratosphere."], "atmospheric circulation": ["The general movement and circulation of air, which transfers energy between different levels of the atmosphere."], "atmospheric humidity": ["A measurable quantity of the moisture content found in the earth's atmosphere.\\n(Source: RHW)"], "atmospheric model": ["A simulation, pattern or plan designed to demonstrate the structure or workings of the atmosphere surrounding any object, including the Earth.\\n(Source: APD)"], "atmospheric ozone": ["A triatomic molecule of oxygen; a natural constituent of the atmosphere, with the highest concentrations in the ozone layer or stratosphere; it is found at a level between 15 and 30 km above the Earth, which prevents harmful ultraviolet B radiation, which causes skin cancer and threatens plant life, from reaching the ground. The fragile shield is being damaged by chemicals released on Earth. The main chemicals that are depleting stratospheric ozone are chlorofluorocarbons (CFCs), which are used in refrigerators, aerosols and as cleaners in many industries and halons, which are used in fire extinguishers. The damage is caused when these chemicals release highly reactive forms of chlorine and bromine.\\n(Source: GILP96 / WRIGHT)"], "atmospheric physics": ["The study of the physical phenomena of the atmosphere."], "atmospheric precipitation": ["The settling out of water from cloud in the form of rain, hail, snow, etc."], "atmospheric science": ["The sciences that study the dynamics, physics and chemistry of atmospheric phenomena and processes."], "attribution": ["Under certain circumstances, the tax law applies attribution rules to assign to one taxpayer the ownership interest of another taxpayer.\\n(Source: WESTS)", "Act of accrediting an author or an artist for creating a specific work or idea."], "audiovisual media": ["Any means of communication transmitted to both the sense of hearing and the sense of sight, especially technologies directed to large audiences."], "autoecology": ["That part of ecology which deals with individual species and their reactions to environmental factors.\\n(Source: UNUN)"], "automobile industry": ["Branch of industry that manufactures automobiles."], "avalanche": ["A fall or slide of a large mass, as of snow or rock, down a mountainside.", "Great quantity of ice or snow that falls down suddenly from a mountain slope while increasing in volume and speed."], "avalanche protection": ["The total of measures and devices implemented to protect people, property or natural resources from avalanche conditions, including avalanche forecasting and warning, avalanche zoning, ski testing and the use of explosives and other equipment to stabilize an avalanche area."], "aviation law": ["International rules regulating air transportation."], "avifauna": ["All the birds in a particular region."], "background level": ["Term used in a variety of situations, always as the constant or natural amount of a given substance, radiation, noise, etc."], "background radiation": ["Radiation resulting from natural sources, as opposed to man-made sources, and to which people are exposed in everyday, normal life; for example from rocks and soil."], "bacterial bed": ["A device that removes some suspended solids from sewage."], "bactericide": ["An agent that destroys bacteria."], "bacteriology": ["The science and study of bacteria."], "banking": ["Transactional business between any bank and that bank's clients or customers."], "barium": ["A soft silvery-white metallic element of the alkaline earth group. It has the symbol Ba, and atomic number 56. It is used in bearing alloys and compounds are used as pigments.\\n(Source: CED)"], "baseline monitoring": ["Monitoring of long-term changes in atmospheric compositions of particular significance to the weather and the climate.\\n(Source: YOUNG)"], "basic food requirement": ["The minimum nutriments deemed necessary for a person of a particular age, gender, physiological condition and activity level to sustain life, health and growth."], "basicity": ["The state of a solution of containing an excess of hydroxyl ions."], "basidiomycete": ["Any of various fungi of the subdivision Basidiomycota."], "bathing water": ["A body of water where bathing is permitted."], "battery": ["A cell or several cells connected together, each cell containing the essentials for producing voltaic electricity."], "bay": ["(Laurus nobilis) A shrub of the family Lauraceae.", "An open, curving indentation made by the sea or a lake into a coastline.", "To produce a loud, short, explosive sound similar to that of a dog.", "A herb made from a leaf of several of the shrubs of the family Lauraceae.", "A compartment in an aircraft used for some specific purpose."], "beach": ["A lat, narrow strip of sand, gravel or pebbles along the shoreline of a body of water (ocean, river, lake).", "To land on a beach; (of animals) to become stranded out of the water."], "beaching": ["The washing ashore of whales or other cetaceans that have died for natural causes, or because of highly polluted sea water or after being trapped in drift nets."], "bee conservation": ["The care, preservation and husbandry of hymenopterous insects valued for their ability to pollinate crops and other flora or for their production of honey."], "beef cattle": ["Cattle bred for the production of meat."], "bee": ["Any of the membranous-winged insects which compose the superfamily Apoidea in the order Hymenoptera characterized by a hairy body and by sucking and chewing mouthparts.", "The second letter of the Roman alphabet."], "beetle": ["Any insect of the order Coleoptera, having biting mouthparts and forewings modified to form shell-like protective elytra."], "beneficial organism": ["Any pollinating insect, or any pest predator, parasite, pathogen or other biological control agent which functions naturally or as part of an integrated pest management program to control another pest.\\n(Source: LEE)"], "benthic division": ["The bottom of a body of water often occupied by benthos.\\n(Source: GILP96)"], "benthic ecosystem": ["The interacting system of the biological communities located at the bottom of bodies of freshwater and saltwater and their non-living environmental surroundings.\\n(Source: TOE / DOE)"], "benthos": ["Those organisms attached to, living on, in or near the bottom of the sea, river bed or lake floor."], "benzene": ["A colorless, liquid, flammable, aromatic hydrocarbon used to manufacture styrene and phenol. Also known as benzol.\\n(Source: MGH)"], "benzopyrene": ["A five-ring aromatic hydrocarbon found in coal tar, in cigarette smoke, and as a product of incomplete combustion."], "beryllium": ["A corrosion-resistant, toxic silvery-white metallic element that occurs chiefly in beryl and is used mainly in x-ray windows and in the manufacture of alloys. Symbol: Be, atomic number: 4."], "beta radiation": ["Ionizing radiation which is produced as a stream of high speed electrons emitted by certain types of radioactive substance when they decay."], "beverage industry": ["Industry sector which produces beverages."], "beverage": ["Any one of various liquids for drinking."], "bibliography": ["A complete or selective listing of documents by a given subject, author or publisher, often including the description and identification of the editions, dates of issue, titles, authorship, publishers or other written materials.\\n(Source: RHW / ISEP)"], "bicycle": ["A vehicle with two wheels in tandem, pedals connected to the rear wheel by a chain, handlebars for steering, and a saddlelike seat."], "bilateral convention": ["An international agreement, especially one dealing with a specific matter, involving two or both sides, factions, or the like."], "bilge oil": ["Waste oil that accumulates, usually in small quantities, inside the lower spaces of a ship, just inside the shell plating, and usually mixed with larger quantities of water."], "bilge water": ["Water that builds up in the bottom of a ship's bilge."], "bioaccumulation": ["The accumulation of pollutants in living organisms by direct adsorption or through food chains."], "bio-availability": ["The extent to which a drug or other substance is taken up by a specific tissue or organ after administration.\\n(Source: ZINZAN / CEDa)"], "biochemistry": ["The study of chemical substances occurring in living organisms and the reactions and methods for identifying these substances."], "biocide": ["A diverse group of poisonous substance including preservatives, insecticides, disinfectants and pesticides used for the control of organisms that are harmful to human or animal health or that cause damage to natural or manufactured products.\\n(Source: GRAHAW)"], "bioclimatology": ["The study of climate in relation to fauna and flora."], "biocoenosis": ["A community or natural assemblage of organisms; often used as an alternative to ecosystem but strictly is the fauna/flora association excluding physical aspects of the environment."], "bioconcentration factor": ["The quotient of the concentration of a chemical in aquatic organisms at a specific time or during a discrete time period of exposure, divided by the concentration in the surrounding water at the same time or during the same period.\\n(Source: KOREN)"], "biodegradability": ["The extent to which a substance can be decomposed - or rotted - by bacteria and fungi."], "biodegradation": ["Breaking down of a substance by microorganisms."], "biodiversity": ["Number and variety of living organisms; includes genetic diversity, species diversity, and ecological diversity."], "bioethics": ["The study of ethical problems arising from biological research and its applications in such fields as organ transplantation, genetic engineering, or artificial insemination."], "biogas": ["Gas, rich in methane, which is produced by the fermentation of animal dung, human sewage or crop residues in an air-tight container."], "biogeochemical cycle": ["Movement of chemical elements in a circular pathway, from organisms to physical environment, back to organisms."], "biogeochemistry": ["The study of the chemical, physical, geological, and biological processes and reactions that govern the composition of the natural environment and its energy transportation cycles."], "biogeographical region": ["Area of the Earth's surface defined by the species of fauna and flora it contains."], "biogeography": ["The science concerned with the geographical distribution of animal and plant life."], "biological engineering": ["The application of engineering principles and techniques to biology and medicine. It is largely concerned with the design of replacement body parts, such as limbs, heart valves, etc."], "biological indicator": ["A species or organism that is used to grade environmental quality or change."], "biological monitoring": ["The direct measurement of changes in the biological status of a habitat, based on evaluations of the number and distribution of individuals or species before and after a change.\\n(Source: ALL)"], "biological nitrogen fixation": ["A process in which atmospheric nitrogen is converted to ammonia by a pair of bacterial enzymes called nitrogenase."], "biological pest control": ["Any living organism applied to or introduced into the environment that is intended to function as a pesticide against another organism declared to be a pest."], "biological weapon": ["Living organisms (or infective material derived from them) which are intended to cause disease or death in animals, plants, or man, and which depend for their effects on their ability to multiply in the person, animal or plant attacked. Various living organisms (for example, rickettsiae, viruses and fungi), as well as bacteria, can be used as weapons."], "biology": ["A division of the natural sciences concerned with the study of life and living organisms."], "bioluminescence": ["The production of light of various colors by living organisms, e.g. some bacteria and fungi, glow-worms and many marine animals)."], "biomass": ["Biomass refers strictly speaking to the total weight of all the living things in an ecosystem. However, it has come to refer to the amount of plant and crop material that could be produced in an ecosystem for making biofuels and other raw materials used in industry, for example.\\n(Source: WRIGHT)"], "biophysics": ["The science involving the application of physical principles and methods to study and explain the structures of living organisms and the mechanics of life processes."], "bioreactor": ["A container, such as a large fermentation chamber, for growing living organisms that are used in the industrial production of substances such as pharmaceuticals, antibodies, or vaccines."], "biorhythm": ["A cyclically recurring pattern of physiological states in an organism or organ, such as alpha rhythm or circadian rhythm; believed by some to affect physical and mental states and behaviour."], "biosafety": ["The combination of knowledge, techniques and equipment used to manage or contain potentially infectious materials or biohazards in the laboratory environment, to reduce or prevent harm to laboratory workers, other persons and the environment."], "biosphere": ["That part of the Earth and atmosphere capable of supporting living organisms."], "biosphere reserve": ["Protected land and coastal areas that are approved under the Man and Biosphere programme (MAB) in conjunction with the Convention on International Trade in Endangered Species (CITES). Each reserve has to have an ecosystem that is recognized for its diversity and usefulness as a conservation unit. The reserves have at least one core area where there can be no interference with the natural ecosystem. A transition zone surrounds this and within it scientific research is allowed. Beyond this is a buffer zone which protects the whole reserve from agricultural, industrial and urban development. Biosphere reserves and buffer zones were regarded as examples of a new generation of conservation techniques.\\n(Source: WRIGHT)"], "biosynthesis": ["Production, by synthesis or degradation, of a chemical compound by a living organism.\\n(Source: MGH)"], "biotechnology": ["A combination of biology and technology. It is used to describe developments in the application of biological organisms for commercial and scientific purposes."], "biotic factor": ["The influence upon the environment of organisms owing to the presence and activities of other organisms, as distinct from a physical, abiotic, environmental factor."], "biotope": ["A region of relatively uniform environmental conditions, occupied by a given plant community and its associated animal community."], "biotope network": ["Intersection of corridors connecting patchy ecological communities. Species survival tends to be higher in patches that have higher connectivity."], "biotope protection": ["Measures taken to ensure that the biological and physical components of a biotope are in equilibrium by maintaining constant their relative numbers and features."], "bird": ["Any of the bipedal, warm-blooded vertebrates that lay eggs having wings which, for most species, enables them to fly.", "A powered heavier-than-air aircraft with fixed wings that obtains lift by the Bernoulli effect and is used for transportation.", "Badminton equipment consisting of a ball of cork or rubber with a crown of feathers."], "bird sanctuary": ["Special area where birds are protected."], "bird of prey": ["Any of various carnivorous bird of the orders Falconiformes and Strigiformes which feed on meat taken by hunting."], "bird species": ["Any species of the warm-blooded vertebrates which make up the class Aves."], "birth control": ["Limitation of the number of children born by preventing or reducing the frequency of impregnation.", "The intentional prevention of pregnancy through the use of various devices, practices, surgical procedures or medication."], "bitumen": ["A generic term applied to natural inflammable substances of variable colour, hardness, and volatility, composed principally of a mixture of hydrocarbons substantially free from oxygenated bodies."], "black coal": ["A natural black graphitelike material used as a fuel, formed from fossilized plants and consisting of amorphous carbon with various organic and some inorganic compounds."], "blast furnace": ["A tall, cylindrical smelting furnace for reducing iron ore to pig iron; the blast of air blown through solid fuel increases the combustion rate."], "bleaching agent": ["A chemical that removes colors or whitens."], "bleaching clay": ["Clay capable of chemically adsorbing oils, insecticides, alkaloids, vitamins, carbohydrates and other materials; it is used for refining and decolorizing mineral and vegetable oils."], "bleaching process": ["The process of removing colored components from a textile."], "blue-green alga": ["Microorganisms, formerly classified as algae but now regarded as bacteria, including nostoc, which contain a blue pigment in addition to chlorophyll.\\n(Source: CED)"], "boating": ["To travel or go in a boat as a form of recreation."], "boiler": ["An enclosed vessel in which water is heated and circulated, either as hot water or as steam, for heating or power."], "boiling point": ["The temperature at which the transition from the liquid to the gaseous phase occurs in a pure substance at fixed pressure."], "book": ["A collection of sheets of paper bound together to hinge at one edge, containing printed or written material, pictures, etc.", "Part of a larger published work.", "To record in a register.", "To arrange for (something for someone else) in advance.", "To engage for a performance."], "bookkeeping": ["The art or science of recording business accounts and transactions."], "border": ["The dividing line or frontier between political or geographic regions.", "The boundary line or the area immediately inside the boundary.", "The boundary of a surface.", "To have its boundary touch something; to share a border."], "boron": ["A very hard almost colourless crystalline metalloid element that in impure form exists as a brown amorphous powder. It occurs principally in borax and is used in hardening steel."], "botanical garden": ["A place in which plants are grown, studied and exhibited."], "botany": ["A branch of the biological sciences which embraces the study of plants and plant life."], "boundary layer": ["The layer of fluid adjacent to a physical boundary in which the fluid motion is significantly affected by the boundary and has a mean velocity less than the free stream value.\\n(Source: LBC)"], "bovid": ["Any animal belonging to the Bovidae family."], "brackish water": ["Water, salty between the concentrations of fresh water and sea water; usually 5-10 parts x thousand."], "bradyseism": ["The gradual uplift or descent of part of the Earth's surface caused by the filling or emptying of an underground magma chamber and/or hydrothermal activity."], "breast milk": ["Milk from the breast for feeding babies."], "breeding": ["The application of genetic principles to the improvement of farm animals and cultivated plants."], "breeding bird": ["Individual in a bird population that are involved in reproduction during a particular period in a given place."], "brewing industry": ["A sector of the economy in which an aggregate of commercial enterprises is engaged in the manufacture and marketing of beverages made from malt and hops by steeping, boiling and fermentation, such as beer, ale and other related beverages."], "brick": ["A building material usually made from clay, molded as a rectangular block, and baked or burned in a kiln."], "bridge": ["A structure that spans and provides a passage over a road, railway, river, or some other obstacle.", "A system which connects two or more local area networks at layer 2.", "To be or make bridge over something.", "The ridge of the nose running from the root of the nose down to the tip.", "An elevated platform above the upper deck of a mechanically propelled ship from which it is navigated.", "A wrestling move performed from a supine position, lying down face-up."], "bromine": ["A pungent dark red volatile liquid element (symbol Br, atomic number 35) of the halogen series that occurs in brine and is used in the production of chemicals."], "brooding": ["Incubating eggs by sitting on them."], "brook": ["A small stream or rivulet, commonly swiftly flowing in rugged terrain, of lesser length and volume than a creek; especially a stream that issues directly from the ground, as from a spring or seep, or that is produced by heavy rainfall or melting snow.", "To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly."], "bryophyte": ["Any plant of the division Bryophyta, having stems and leaves but lacking true vascular tissue and roots and reproducing by spores: includes the mosses and liverworts."], "budget": ["A balance sheet or statement of estimated receipts and expenditures."], "bug": ["Any of the suborder Heteroptera, having piercing and sucking mouthparts, specialized as a beak.\\n(Source: CED)", "A problem in computer software or hardware or in electronic hardware in general.", "To make someone rather angry or impatient; to cause annoyance.", "Any insect, arachnid, or other terrestrial arthropod that is a pest."], "building": ["Structure with a roof and walls, such as a house or factory.", "The process of constructing."], "building area": ["Land and other places on, under, in or through which the temporary and permanent works are to be executed and any other lands or places needed for the purposes of construction.\\n(Source: ECHO1)"], "building component": ["A building element which uses industrial products that are manufactured as independent until capable of being joined with other elements."], "building land": ["Area of land suitable for building on."], "building material": ["Any material used in construction, such as steel, concrete, brick, masonry, glass, wood, etc."], "building planning": ["The activity of designing, organizing or preparing for future construction or reconstruction of edifices and facilities.\\n(Source: RHW)"], "building site": ["A piece of land on which a house or other building is being built."], "building technology": ["The application of engineering principles and technology to building design and construction."], "built environment": ["That part of the physical surroundings which are people-made or people-organized, such as buildings and other major structures, roads, bridges and the like, down to lesser objects such as traffic lights, telephone and pillar boxes."], "built-up area": ["Area which is full of houses, shops, offices and other buildings, with very little open space.", "The area within a city or town, as indicated by appropriate traffic signs (or, in the United Kingdom, by the presence of street lights), where different traffic rules are in effect, such as a reduction of the speed limit."], "bulb cultivation": ["The cultivation of flower bulb is divided into two sectors: for forcing (flower bulbs used by professional growers for the production of cut flowers and potted plants) and for dry sales (flower bulbs for garden planting, flower pots, landscaping and parks).\\n(Source: BULB)"], "bus": ["A large, long-bodied motor vehicle equipped with seating for passengers, usually operating as part of a scheduled service."], "business": ["The activity, position or site associated with commerce or the earning of a livelihood.", "Commercial, industrial or financial activity."], "butterfly": ["A lepidopteran that is active at day."], "button-cell battery": ["A tiny, circular battery made for a watch or for other microelectric applications."], "by-catch": ["Fish that is caught unintentionally while intending to catch other fish and that is often discarded back into the sea."], "by-product": ["A product from a manufacturing process that is not considered the principal material."], "cable": ["Strands of insulated electrical conductors laid together, usually around a central core, and wrapped in a heavy insulation.", "To send a message by telegraph."], "cadmium": ["Chemical element with symbol Cd and atomic number 48, silvery gray transition metal."], "cadmium contamination": ["The release and presence in the air, water and soil of cadmium, a toxic, metallic element, from sources such as the burning of coal and tobacco and improper disposal of cadmium-containing waste.\\n(Source: FFD / EEN)"], "calcium": ["A malleable silvery-white metallic element of the alkaline earth group with symbol Ca and atomic number 20; the fifth most abundant element in the earth crust, occurring especially as forms of calcium carbonate. It is an essential constituent of bones and teeth and is used as a deoxidizer in steel.\\n(Source: CED)"], "calcium content": ["Amount of calcium contained in a solution."], "calibration": ["The marking the scale of a measuring instrument so that readings can be made in appropriate units."], "canal": ["An artificial open waterway used for transportation, waterpower, or irrigation."], "cancer": ["Any malignant cellular tumour including carcinoma and sarcoma."], "cancer risk": ["The probability that exposure to some agent or substance will adversely transform cells to replicate and form a malignant tumor."], "car": ["A four-wheeled motor vehicle used for land transport."], "carbohydrate": ["Any of the group of organic compounds composed of carbon, hydrogen and oxygen, including sugars, starches and celluloses."], "carbon": ["A nonmetallic element with symbol C and atomic number 6 existing in the three crystalline forms: graphite, diamond and buckminsterfullerene: occurring in carbon dioxide, coal, oil and all organic compounds.\\n(Source: CED)"], "carbonate": ["A salt or ester of carbonic acid.\\n(Source: CED)"], "carbon cycle": ["The cycle of carbon in the biosphere, in which plants convert carbon dioxide to organic compounds that are consumed by plants and animals, and the carbon is returned to the biosphere in inorganic form by processes of respiration and decay.\\n(Source: MGH)"], "carbon dioxide": ["A colourless gas with a faint tingling smell and taste."], "carbon dioxide tax": ["Compulsory charges levied on fuels to reduce the output of carbon dioxide (CO2)."], "carbon monoxide": ["Chemical formula CO; a colorless, odorless, and tasteless gas."], "carcinogenicity": ["The ability or tendency of a substance or physical agent to cause or produce cancer."], "carcinogenicity test": ["Test for assessing if a chemical or physical agent increases the risk of cancer."], "carcinogen": ["A substance that causes cancer in humans and animals.", "Causing cancer."], "cardiology": ["The branch of medicine that studies the heart."], "cardiovascular disease": ["The class of diseases that involve the heart or blood vessels (arteries and veins)."], "carnivore": ["An animal that eats meat."], "cartography": ["The making of maps and charts for the purpose of visualizing spatial distributions over various areas of the earth."], "cash crop": ["Crops that are grown for sale in the town markets or for export. They include coffee, cocoa, sugar, vegetables, peanuts and non-foods, like tobacco and cotton."], "catalysis": ["A phenomenon in which a relatively small amount of substance augments the rate of a chemical reaction without itself being consumed.\\n(Source: MGH)"], "catalyst": ["A substance whose presence alters the rate at which a chemical reaction proceeds, but whose own composition remains unchanged by the reaction. Catalysts are usually employed to accelerate reactions(positive catalyst), but retarding (negative) catalysts are also used.\\n(Source: ALL)", "A substance which speeds up chemical reactions."], "catalytic converter": ["A device designed to clean up the exhaust fumes from petrol-driven vehicles."], "catastrophe": ["A sudden, widespread disaster or calamity that greatly exceeds the resources of an area or region.", "A sudden violent change in the earth's surface."], "catchment area": ["An area from which surface runoff is carried away by a single drainage system."], "cation": ["A positively charged atom or group of atoms, or a radical which moves to the negative pole (cathode) during electrolysis.\\n(Source: MGH)"], "cattle": ["Domesticated bovine animals, including cows, steers and bulls, raised and bred on a ranch or farm."], "cave": ["1) An underground hollow with access from the ground surface or from the sea, often found in limestone areas and on rocky coastlines.\\n2) A natural cavity, chamber or recess which leads beneath the surface of the earth, generally in a horizontal or obliquely inclined direction. It may be in the form of a passage or a gallery, its shape depending in part on the joint pattern or structure of the rock and partly on the type of process involved in its excavation. Thus, caves worn by subterranean rivers may be different in character from, and of considerably greater extent than, a sea-cave eroded by marine waves.\\n3) A natural underground open space, generally with a connection to the surface and large enough for a person to enter. The most common type of cave is formed in a limestone by dissolution.\\n(Source: CED / WHIT / BJGEO)"], "cellulose": ["The main polysaccharide in living plants, forming the skeletal structure of the plant cell wall; a polymer of beta-D-glucose linked together with the elimination of water to form chains of 2000-4000 units."], "cement": ["A dry powder made from silica, alumina, lime, iron oxide, and magnesia which hardens when mixed with water; used as an ingredient in concrete."], "Central Africa": ["A geographic region of the African continent close to the equator that includes Cameroon, Chad, Equatorial Guinea, Gabon, the Central African Republic and the Democratic Republic of Congo."], "Central America": ["A narrow continental region of the Western hemisphere, existing as a bridge between North and South America, often considered to be the southern portion of North America, and including countries such as Guatemala, Belize, El Salvador, Honduras, Nicaragua, Costa Rica and Panama."], "Central Asia": ["A geographic region of the Asian continent between the Caspian Sea on the west and China on the east, extending northward into the central region of Russia and southward to the northern borders of Iran and Afghanistan, and comprised of independent former republics of the Soviet Union, including Kazakstan, Uzbekistan, Turkmenistan, Kyrgyzstan and Tajikistan."], "central government": ["A system in which a governing or administrative body has a certain degree of power or authority to prevail in the management of local, national and international matters."], "centrifugation": ["Separation of particles from a suspension in a centrifuge: balanced tubes containing the suspension are attached to the opposite ends of arms rotating rapidly about a central point; the suspended particles are forced outwards, and collect at the bottoms of the tubes.\\n(Source: UVAROV)"], "cephalopod": ["Exclusively marine animals constituting the most advanced class of the Mollusca, including squid, octopuses, and Nautilus.\\n(Source: MGH)"], "ceramics": ["The art and techniques of producing articles of clay, porcelain, etc."], "ceramics industry": ["Industry producing ceramic items."], "cetacean": ["Order of aquatic mammals, including the whales, dolphins, and porpoises."], "Chagas' disease": ["A form of trypanosomiasis found in South America, caused by the protozoan Trypanosoma cruzi, characterized by fever and often inflammation of the hearth muscle.\\n(Source: CED)"], "chain management": ["The administration, organization and planning for the flow of materials or merchandise through various stages of production and distribution, involving a network of vendors, suppliers, manufacturers, distributors, retailers and other trading partners.\\n(Source: MSE)"], "charcoal": ["A porous solid product containing 85-98% carbon and produced by heating carbonaceous materials such as cellulose, wood or peat at 500-600 C\u00b0 in the absence of air.\\n(Source: MGH)"], "chelicerate": ["A subphylum of the phylum Artrophoda; chelicerae are characteristically modified as pincers."], "chemical analysis": ["The complex of operations aiming to determine the kinds of constituents of a given substance.\\n(Source: ZINZAN)"], "chemical engineering": ["The branch of engineering concerned with industrial manufacture of chemical products."], "chemical industry": ["The industry that comprises the companies that produce industrial chemicals."], "chemical oceanography": ["The study of the behavior of the chemical elements within the Earth's oceans."], "chemical plant": ["Plants where basic raw materials are chemically converted into a variety of products."], "chemical property": ["Property of a substance depending on the arrangement of the atoms in the molecule, e.g. bio-availability, degradability, persistence, etc.\\n(Source: RRDA)"], "chemical reaction": ["A change in which a substance is transformed into one or more new substances."], "chemical": ["Any substance used in or resulting from a reaction involving changes to atoms or molecules.", "Of or relating to chemistry."], "chemical structure": ["The arrangement of atoms in a molecule of a chemical compound."], "chemical treatment": ["A process that alters the chemical structure of the constituents of the waste to produce either an innocuous or a less hazardous material. Chemical processes are attractive because they produce minimal air emissions, they can often be carried out on the site of the waste generator, and some processes can be designed and constructed as mobile units.\\n(Source: PARCOR)"], "chemical waste": ["Any by-product of a chemical process, including manufacturing processes. Often this by-product is considered a toxic or polluting substance.\\n(Source: APD / ERG)"], "chemical weapon": ["Chemical agents of warfare including all gaseous, liquid or solid chemical substances which might be employed because of their direct toxic effects on man and animals."], "chemisorption": ["The process of chemical adsorption."], "chemistry": ["The scientific study of the properties, composition, and structure of matter, the changes in structure and composition of matter, and accompanying energy changes."], "child": ["Living being as genetically proceeding from an other one.", "A person below the age of puberty.", "An entity that is narrower in scope."], "chimney": ["A vertical structure of brick, masonry, or steel that carries smoke or steam away from a fire, engine, etc."], "chiropteran": ["Order of placental mammals, comprising the bats, having the front limbs modified as wings."], "chloride": ["A compound which is derived from hydrochloric acid and contains the chlorine atom in the -1 oxidation state.\\n(Source: MGH)"], "chlorinated hydrocarbon": ["A class of persistent, broad-spectrum insecticides that linger in the environment and accumulate in the food chain. Among them are DDT, aldrin, dieldrin, heptachlor, chlordane, lindane, endrin, mirex, hexachloride, and toxaphene. In insects and other animals these compounds act primarily on the central nervous system. They also become concentrated in the fats of organisms and thus tend to produce fatty infiltration of the heart and fatty degeneration of the liver in vertebrates. In fishes they have the effect of preventing oxygen uptake, causing suffocation. They are also known to slow the rate of photosynthesis in plants. Their danger to the ecosystem resides in their rate stability and the fact that they are broad-spectrum poisons which are very mobile because of their propensity to stick to dust particles and evaporate with water into the atmosphere.\\n(Source: EPAGLO / PORT)"], "chlorination": ["The application of chlorine to water, sewage or industrial wastes for disinfection or other biological or chemical purposes.\\n(Source: ALL)"], "chlorine": ["A very reactive and highly toxic green, gaseous element, belonging to the halogen family of substances with symbol Cl and atomic number 17."], "chloroethylene": ["A flammable, explosive gas with an ethereal aroma; soluble in alcohol and ether, slightly soluble in water; boils at -14\u00b0 C; an important monomer for polyvinyl chloride and its copolymers; used in organic synthesis and in adhesives."], "chlorofluorocarbon": ["Gases formed of chlorine, fluorine, and carbon whose molecules normally do not react with other substances; they are therefore used as spray can propellants because they do not alter the material being sprayed."], "partially halogenated chlorofluorohydrocarbon": ["Hydrocarbons whose hydrogen atoms have been partially substituted with chlorine and fluorine. They are used in refrigeration, air conditioning, packaging, insulation, or as solvents and aerosol propellants. Because they are not destroyed in the lower atmosphere they drift into the upper atmosphere where their chlorine components destroy ozone."], "chlorophenol": ["Any organochloride of phenol that contains one or more covalently bonded chlorine atoms."], "chlorophyll": ["A green pigment, present in algae and higher plants, that absorbs light energy and thus plays a vital role in photosynthesis."], "chlorosis": ["A disease condition of green plants seen as yellowing of green parts of the plants.\\n(Source: MGH)"], "chromatography": ["A method of separating and analyzing mixtures of chemical substances by selective adsorption in a column of powder or on a strip of paper."], "chromium": ["A hard grey metallic element that takes a high polish, occurring principally in chromite: used in steel alloys and electroplating to increase hardness and corrosion-resistance."], "chrysophyta": ["The golden-brown and orange-yellow algae; a diverse group of microscopically small algae which inhabit fresh and salt water, many being planktonic. They contain carotenoid pigments and may be unicellular, colonial, filamentous or amoeboid."], "church": ["A building where Christian religious activities take place."], "city": ["Term used generically today to denote any urban form but applied particularly to large urban settlements. There are, however, no agreed definitions to separate a city from the large metropolis or the smaller town."], "civil air traffic": ["Air traffic pertaining to or serving the general public, as distinguished from military air traffic."], "civil engineering": ["The planning, design, construction, and maintenance of fixed structures and ground facilities for industry, transportation, use and control of water or occupancy."], "civilian protection": ["The organization and measures, usually under governmental or other authority depending on the country, aimed at preventing, abating or fighting major emergencies for the protection of the civilian population and property, particularly in wartime."], "civil law": ["The body of law dealing with the private relations between members of a community."], "classification": ["An arrangement or organization of persons, items or data elements into groups by reason of common attributes, characteristics, qualities or traits."], "clay": ["A loose, earthy, extremely fine-grained, natural sediment or soft rock composed primarily of clay-size or colloidal particles and characterized by high plasticity and by a considerable content of clay mineral and subordinate amounts of finely divided quartz, decomposed feldspar, carbonates, ferruginous matter, and other impurities; it forms a plastic, moldable mass when finely ground and mixed with water, retains its shape on drying, and becomes firm, rocklike and permanently hard on heating or firing.", "The physical structure of a dead animal or person."], "clean technology": ["Industrial process which causes little or no pollution."], "climate": ["The average weather condition in a region of the world."], "climate protection": ["Precautionary actions, procedures or installations undertaken to prevent or reduce harm from pollution to natural weather conditions or patterns, including the prevailing temperature, atmospheric composition and precipitation."], "climate type": ["Weather conditions typical of areas roughly corresponding to lines of latitude."], "climatic alteration": ["The slow variation of climatic characteristics over time at a given place. This may be indicated by the geological record in the long term, by changes in the landforms in the intermediate term, and by vegetation changes in the short term.\\n(Source: WHIT)"], "climatic change": ["The long-term fluctuations in temperature, precipitation, wind, and all other aspects of the Earth's climate."], "climatic zone": ["A belt of the earth's surface within which the climate is generally homogeneous in some respect."], "climatology": ["That branch of meteorology concerned with the mean physical state of the atmosphere together with its statistical variations in both space and time as reflected in the weather behaviour over a period of many years."], "climax": ["A botanical term referring to the terminal community said to be achieved when a sere (a sequential development of a plant community or group of plant communities on the same site over a period of time) achieves dynamic equilibrium with its environment and in particular with its prevailing climate. Each of the world's major vegetation climaxes is equivalent to a biome. Many botanists believe that climate is the master factor in a plant environment and that even if several types of plant succession occur in an area they will all tend to converge towards a climax form of vegetation.\\n(Source: WHIT)", "To reach a sexual climax; to experience orgasm.", "The moment of most intense feeling and pleasure during sexual activity."], "clinical symptom": ["Any objective evidence of disease or of a patient's condition founded on clinical observation.\\n(Source: RRDA)"], "cloning": ["The production of genetically identical individuals from a single parent."], "clothing": ["Clothes considered as a group.", "All coverings designed to be worn on a person's body."], "cloud": ["Suspensions of minute water droplets or ice crystals produced by the condensation of water vapour.", "To cover with clouds."], "coagulation": ["A separation or precipitation from a dispersed state of suspended particles resulting from their growth."], "coal": ["The natural, rocklike, brown to black derivative of forest-type plant material, usually accumulated in peat beds and progressively compressed and indurated until it is finally altered in to graphite-like material."], "coal-fired power plant": ["Power plant which is fuelled by coal."], "coal gasification": ["Process of conversion of coal to a gaseous product which is used as fuel in electric power stations."], "coal liquefaction": ["The process of preparing a liquid mixture of hydrocarbons by destructive distillation of coal.\\n(Source: MGH)"], "coal mining": ["The technical and mechanical job of removing coal from the earth and preparing it for market."], "coal refining": ["The processing of coal to remove impurities."], "coal technology": ["The processing of coal to make gaseous and liquid fuels.\\n(Source: ENVAR)"], "coast": ["A line or zone where the land meets the sea or some other large expanse of water."], "coastal erosion": ["The gradual wearing away of material from a coast by the action of sea water."], "coastal fishing": ["Fishing in an area of the sea next to the shoreline.\\n(Source: PHC)"], "coastal water": ["The part of the ocean directly off the coast."], "coastguard": ["A maritime force which aids shipping, saves lives at sea, prevents smuggling, etc."], "coating": ["A material applied onto or impregnated into a substrate for protective, decorative, or functional purposes. Such materials include, but are not limited to, paints, varnishes, sealers, adhesives, thinners, diluents, and inks."], "cobalt": ["A metallic element with symbol Co and atomic number 27, used chiefly in alloys."], "cockroach": ["The most primitive of the living winged insects."], "code": ["A systematic collection, compendium or revision of laws, rules, or regulations.", "To enter a program or other instructions into a computer (or other electronic device) to instruct it to do a particular task."], "coelenterate": ["Animals that have a single body cavity (the coelenteron)."], "co-incineration": ["Joint incineration of hazardous waste, in any form, with refuse and/or sludge.\\n(Source: LEE)"], "coke": ["A coherent, cellular, solid residue remaining from the dry distillation of a coking coal or of pitch, petroleum, petroleum residue, or other carbonaceous materials; contains carbon as its principal constituent.\\n(Source: MGH)", "A street name for cocaine."], "cold": ["A condition of low temperature.", "Having a low temperature.", "A contagious, viral infectious disease of the upper respiratory system; common symptoms include cough, sore throat, runny nose, nasal congestion and sneezing.", "Psychologically distant; without human warmth or emotion.", "(color) giving no sensation of warmth.", "Sexually unresponsive.", "Without compunction or human feeling."], "coliform bacterium": ["A group of bacteria that are normally abundant in the intestinal tracts of human and other warm-blooded animals and are used as indicators (being measured as the number of individuals found per millilitre of water) when testing the sanitary quality of water."], "colloid": ["An intimate mixture of two substances, one of which, called the dispersed phase, is uniformly distributed in a finely divided state through the second substance, called the dispersion medium."], "colloidal state": ["A system of particles in a dispersion medium, with properties distinct from those of a true solution because of the larger size of the particles. The presence of these particles can often be detected by means of the ultramicroscope.\\n(Source: UVAROV)"], "colour": ["An attribute of things that results from the light they reflect, transmit, or emit in so far as this light causes a visual sensation that depends on its wavelengths.", "To add color to."], "combination effect": ["A combined effect of two or more substances or organisms which is greater than the sum of the individual effect of each."], "combined cycle-power station": ["This type of plant is flexible in response and can be built in the 100-600 MW capacity range. It produces electrical power from both a gas turbine (ca. 1300\u00b0C gas inlet temperature), fuelled by natural gas or oil plus a steam turbine supplied with the steam generated by the 500\u00b0C exhaust gases from the gas turbine. The thermal efficiency of these stations is ca. 50 per cent compared with a maximum of 40 per cent from steam turbine coal fired power stations. This type of plant can be built in two years compared with six years for a coal-fired station and 10-15 years for nuclear.\\n(Source: PORT)"], "combustibility": ["The property of a substance of being capable of igniting and burning."], "combustion engine": ["An engine that operates by the energy of combustion of a fuel."], "commercial law": ["The whole body of substantive jurisprudence applicable to the rights, intercourse and relations of persons engaged in commerce, trade or mercantile pursuits."], "commercial traffic": ["The operations and movements related to the transportation and exchange of goods.\\n(Source: RRDA)"], "commercial vehicle": ["Vehicle designed and equipped for the transportation of goods."], "communications": ["The concept, science, technique and process of transmitting, receiving or otherwise exchanging information and data."], "community-pays principle": ["A tenet of environmental policy, according to which the costs of ecological challenges, environmental quality improvements and the removal of environmental hazards are allotted to community groups or local corporations and, thereby, to the general public."], "commuter traffic": ["Traffic caused by people travelling regularly over some distance, as between a suburb and a city and back, between their place of residence and their place of work."], "commuting": ["Traveling from one's residence to one's regular place of business and back to the residence."], "compaction": ["Reduction of the bulk of solid waste by rolling and tamping."], "company policy": ["Official guidelines or set of guidelines adopted by a company for the management of its activity."], "comparative law": ["The study of the principles of legal science by the comparison of various systems of law.\\n(Source: BLACK)"], "comparative test": ["A test conducted to determine whether one procedure is better than another."], "comparison": ["The placing together or juxtaposing of two or more items to ascertain, bring into relief, or establish their similarities and dissimilarities."], "compensation": ["Equivalent in money for a loss sustained; equivalent given for property taken or for an injury done to another; recompense or reward for some loss, injury or service.\\n(Source: WESTS)"], "economic competition": ["The market condition where an individual or firm that wants to buy or sell a commodity or service has a choice of possible suppliers or customers."], "competitiveness": ["The ability of a firm to strive in the market with rivals in the production and sale of commodities or services and, analogously, the ability of a country to maintain a relatively high standard of living for its citizens through trade in international markets.\\n(Source: http://www.indiana.edu/~ipe/glossry.html / OED)"], "complex formation": ["Formation of a complex compound. Also known as complexing or complexation."], "complexing agent": ["A substance capable of forming a complex compound with another material in solution."], "compost": ["A mixture of decaying organic matter used to fertilize and condition the soil."], "composting": ["The natural biological decomposition of organic material in the presence of air to form a humus-like material."], "compression": ["Reduction in the volume of a substance due to pressure.\\n(Source: MGH)", "A condition in which the volume of fuel and air in an engine cylinder is reduced as a result of increased pressure by a piston.", "The system of forces that tend to decrease the volume of or shorten rocks.", "Any of several techniques that reduce the number of bits required to represent information in data transmission or storage."], "compressor": ["A device that produces pressure."], "European Communities": ["The collective body that resulted in 1967 from the merger of the administrative networks of the European Atomic Energy Community (EURATOM), the European Coal and Steel Community (ECSC), and the European Economic Community (EEC). The singular term has also been widely used.\\n(Source: ABDN)"], "concrete": ["A mixture of aggregate, water, and a binder, usually Portland cement; it hardens to stonelike condition when dry.", "To build using concrete; to cover with cement.", "Not abstract.", "Particular, perceivable, real."], "conductivity": ["The ratio of the electric current density to the electric field in a material."], "congress": ["A formal meeting, often consisting of representatives of various organizations, that is assembled to promote, discuss or make arrangements regarding a particular subject or some matter of common interest."], "conifer": ["An order of conebearing plants which includes nearly all the present day Gymnospermae. Most are tall evergreen trees with needle-like (e.g., pines), linear (e.g. firs) or scale-like (e.g., cedars) leaves. They are characteristic of temperate zones and the main forest trees of colder regions. They provide timber, resins, tars, turpentine and pulp for paper.\\n(Source: ALL)"], "conservation": ["The protection of a natural resource, usually by planned management, to prevent its depletion or destruction."], "constitutional law": ["That branch of the public law of a nation or state which treats of the organization, powers and frame of government, the distribution of political and governmental authorities and functions, the fundamental principles which are to regulate the relations of government and citizen and which prescribes generally the plan and method according to which the public affairs of the nation or state are to be administered.", "A law in a country's constitution."], "construction work": ["The construction, rehabilitation, alteration, conversion, extension, demolition or repair of buildings, highways, or other changes or improvement to real property, including facilities providing utility services."], "consultation": ["Any meeting or inquiry of concerned persons or advisors for the purpose of deliberation, discussion or decision on some matter or action.\\n(Source: BLD)"], "consumer group": ["A collection of persons united to address concerns regarding the purchase and use of specific commodities or services.\\n(Source: RHW)"], "consumer protection": ["Information disseminated or measures and programs established to prevent and reduce damage, injury or loss to users of specific commodities and services.\\n(Source: RHW)"], "consumption": ["Spending for survival or enjoyment in contrast to providing for future use or production.", "A common and deadly infectious disease that is caused by mycobacteria, primarily Mycobacterium tuberculosis."], "container": ["A large case that can be transported by truck and than easily loaded on a ship."], "contaminated soil": ["Soil which because of its previous or current use has substances under, on or in it which, depending upon their concentration and/or quantity, may represent a direct potential or indirect hazard to man or to the environment.\\n(Source: GRAHAW)"], "contamination": ["Introduction into or onto water, air, soil or other media of microorganisms, chemicals, toxic substances, wastes, wastewater or other pollutants in a concentration that makes the medium unfit for its next intended use."], "continental shelf": ["The gently sloping seabed of the shallow water nearest to a continent, covering about 45 miles from the shore and deepening over the sloping sea floor to an average depth of 400 ft."], "contour farming": ["The performing of cultivations along lines connecting points of equal elevation so reducing the loss of top soil by erosion, increasing the capacity of the soil to retain water and reducing the pollution of water by soil."], "contract": ["An agreement between two or more persons which creates an obligation to do or not to do a particular thing. Its essential are competent parties, subject matter, a legal consideration, mutuality of agreement, and mutuality of obligation.", "An agreement with which a person or a company are engaged towards another person or company to deliver a good or a service in exchange for a predetermined payment.", "To reduce in width or extent.", "To acquire or catch (a disease, something noxious, bad condition)."], "contract cleaner": ["A commercial service provider, usually bound by a written agreement, responsible for the removal of dirt, litter or other unsightly materials from any property.\\n(Source: RHW)"], "controlled burning": ["The planned use of carefully controlled fire to accomplish predetermined management goals. The burn is set under a combination of weather, fuel moisture, soil moisture, and fuel arrangement conditions that allow the management objectives to be attained, and yet confine the fire to the planned area.\\n(Source: DUNSTE)"], "controlling authority": ["The power of a person or an organized assemblage of persons to manage, direct, superintend, restrict, regulate, govern, administer or oversee.\\n(Source: BLD)"], "convention": ["International agreement on a specific topic.", "The preferred method of accomplishing a task.", "A large formal assembly."], "conventional energy": ["Power provided by traditional means such as coal, wood, gas, etc., as opposed to alternative energy sources such as solar power, tidal power, wind power, etc."], "cooling": ["A decrease in temperature.", "A mechanism for keeping something cool.", "Causing cold or cooling."], "cooling oil": ["Oil used as a cooling agent, either with forced circulation or with natural circulation."], "cooling tower": ["A device that aids in heat removal from water used as a coolant in electric power generating plants."], "cooling water": ["Water used to make something less hot, such as the irradiated elements from a nuclear reactor or the engine of a machine."], "copper": ["Chemical element with symbol Cu and atomic number 29; one of the most important nonferrous metals; a ductile and malleable metal found in various ores and used in industry, engineering, and the arts in both pure and alloyed form."], "coppice": ["A growth of small trees that are repeatedly cut down at short intervals; the new shoots are produced by the old stumps."], "coral": ["The skeleton of certain solitary and colonial anthozoan coelenterates; composed chiefly of calcium carbonate."], "coral reef": ["Underwater structures built up from the skeletons of reef-building coral a small primitive marine animal, and other marine animals and algae over thousands of years."], "core meltdown": ["Accidental overheating of the core of a nuclear reactor resulting in the core melting and radiation escaping."], "cork": ["The thick light porous outer bark of the cork oak, used widely as an insulator and for stoppers for bottles, casks, etc.", "Conical or cylindrical-shaped plug that is pushed in the bottleneck of a (wine) bottle to stop it up."], "corridor": ["A narrow hall or passage with rooms leading off it."], "corrosion": ["A process in which a solid, especially a metal, is eaten away and changed by a chemical action."], "corrosion inhibitor": ["A chemical agent which slows down or prohibits a corrosion reaction."], "cosmetic industry": ["Industry for the production of substances for improving the appearance of the body."], "cosmic radiation": ["Radiations consisting of atomic nuclei, especially protons, of very high energy that reach the earth from outer space. Some cosmic radiations are very energetic and are able to penetrate a mile or more into the Earth."], "cost-benefit analysis": ["The attempt to assess, compare and frequently justify the total price or loss represented by a certain activity or expenditure with the advantage or service it provides."], "cost increase": ["The augmentation or rise in the amount of money incurred or asked for in the exchange of goods and services."], "cost recovery basis": ["A standard used to provide reimbursement to individuals or organizations for any incurred expense or provided service."], "cost": ["In economics, the value of the factors of production used by a firm in producing or distributing goods and services or engaging in both activities.\\n(Source: GREENW)", "The amount of money paid per unit for a good or service.", "To be priced at.", "To require to lose, suffer, or sacrifice."], "cotton": ["Fiber obtained from plants of the genus Gossypium, used in making fabrics, cordage, and padding and for producing artificial fibers and cellulose.", "A shrub of the genus Gossypium known for the soft fibers that protect its seeds."], "county": ["An area comprising more than one city and whose boundaries have been designed according to some biological, political, administrative, economic, demographic criteria.", "The land under the jurisdiction of a count."], "court of justice": ["A tribunal having jurisdiction of appeal and review, including the ability to overturn decisions of lower courts or courts of first instance.\\n(Source: BLD)"], "covering": ["Structure or material that covers an edifice.", "Something put around something else, usually in order to give it another look or to protect it from its environment."], "craft": ["An occupation or trade requiring manual dexterity or skilled artistry.", "The skilled practice of a practical occupation."], "credit assistance": ["The help and support from banks and other financial institutions in providing money or goods without requiring present payment.\\n(Source: ISEP / OED)"], "criminality": ["A violation of the law, punishable by the State in criminal proceedings."], "criminal law": ["That body of the law that deals with conduct considered so harmful to society as a whole that it is prohibited by statute, prosecuted and punished by the government.\\n(Source: DUHA)"], "critical level": ["The concentration limit beyond which a substance can cause dangerous effects to living organisms.\\n(Source: RRDA)"], "critical load": ["The maximum load that a given system can tolerate before failing.\\n(Source: GRAHAWa)"], "crocodile": ["Any large tropical reptile of the family Crocodylidae: order Crocodylia. They have a broad head, tapering snout, massive jaws, and a thick outer covering of bony plates.\\n(Source: CED)"], "crop rotation": ["An agricultural technique in which, season after season, each field is sown with crop plants in a regular rotation, each crop being repeated at intervals of several years."], "crop waste": ["Any unusable portion of plant matter left in a field after harvest.\\n(Source: CNI)"], "crossing place": ["A place, often shown by markings, lights, or poles, where a street, railway, etc. may be crossed."], "crude oil": ["A comparatively volatile liquid bitumen composed principally of hydrocarbon, with traces of sulphur, nitrogen or oxygen compounds; can be removed from the earth in a liquid state."], "crustacean": ["A subphylum of arthropod animals having jointed feet and mandibles, two pairs of antennae, and segmented, chitin-encased bodies."], "cryptogam": ["A large group of plants, comprising the Thallophyta, Bryophyta and Pteridophyta, the last of which are cryptogams."], "crystallography": ["The branch of science that deals with the geometric description of crystals and their internal arrangement."], "cultivated plant": ["Plants specially bred or improved by cultivation."], "cultivation": ["The practice of growing and nurturing plants outside of their wild habitat (i.e., in gardens, nurseries, arboreta)."], "cultivation method": ["Any procedure or approach used to prepare land or soil for the growth of new crops, or to promote or improve the growth of existing crops."], "cultural facility": ["Any building or structure used for programs or activities involving the arts or other endeavors that encourage refinement or development of the mind.\\n(Source: WCD / OED)"], "cultural heritage": ["The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.\\n(Source: RHW)"], "curriculum": ["The aggregate of courses of study provided in a particular school, college, university, adult education program, technical institution or some other educational program."], "customs": ["Duties charged upon commodities on their importation into, or exportation out of, a country.", "The head office dealing with tariffs."], "cyanate": ["A salt or ester of cyanic acid containing the radical OCN."], "cyanide": ["Any of a group of compounds containing the CN group and derived from hydrogen cyanide, HCN."], "cyclone": ["A storm characterized by the converging and rising giratory movement of the wind around a zone of low pressure (the eye) towards which it is violently pulled from a zone of high pressure."], "cytology": ["A branch of the biological sciences which deals with the structure, behaviour, growth, and reproduction of cells and the functions and chemistry of cell components."], "cytotoxicity": ["The degree to which an agent is toxic to cells."], "dairy farm": ["A commercial establishment for processing or selling milk and milk products."], "dairy industry": ["Production of food made from milk or milk products."], "dairy product": ["Food which is derived from milk and contains mostly milk."], "dam": ["Structure constructed across a watercourse or stream channel."], "damage": ["An injury or harm impairing the function or condition of a person or thing.\\n(Source: CED)", "To put a thing in bad condition by making it suffer some damage.", "To mar the surface or appearance of."], "dangerous goods": ["Goods or products that are full of hazards or risks when used, transported, etc."], "data analysis": ["The evaluation of digital data, i.e. data represented by a sequence of code characters.\\n(Source: MGH)"], "data carrier": ["A medium on which data can be recorded, and which is usually easily transportable, such as cards, tape, paper, or disks."], "data exchange": ["A reciprocal transfer of individual facts, statistics or items of information between two or more parties for the purpose of enhancing knowledge of the participants."], "data processing": ["Any operation or combination of operations on data, including everything that happens to data from the time they are observed or collected to the time they are destroyed.\\n(Source: MGH)"], "data protection": ["Policies, procedures or devices designed to maintain the integrity or security of information."], "dating": ["An estimation of the age of an artifact, biological vestige, linguistic usage, etc."], "decay product": ["An isotope formed by the radioactive decay of some other isotope. This newly formed isotope possesses physical and chemical properties that are different from those of its parent isotope, and may also be radioactive."], "DDT": ["A persistent organochlorine insecticide, also known as dichlorodiphenyltrichloroethane, that was introduced in the 1940s and used widely because of its persistence (meaning repeated applications were unnecessary), its low toxicity to mammals and its simplicity and cheapness of manufacture. It became dispersed all over the world and, with other organochlorines, had a disruptive effect on species high in food chains, especially on the breeding success of certain predatory birds. DDT is very stable, relatively insoluble in water, but highly soluble in fats. Health effects on humans are not clear, but it is less toxic than related compounds. It is poisonous to other vertebrates, especially fish, and is stored in the fatty tissue of animals as sublethal amounts of the less toxic DDE. Because of its effects on wildlife its use in most countries is now forbidden or strictly limited.\\n(Source: MGH / ALL)"], "debt": ["Something owed to someone else.", "Passive balance that corresponds to the difference between all proceeds and all expenditures, the current ones and the ones registered on the capital account, excluding the financial operations."], "deciduous forest": ["The temperate forests comprised of trees that seasonally shed their leaves, located in the east of the USA, in Western Europe from the Alps to Scandinavia, and in the eastern Asia. The trees of deciduous forests usually produce nuts and winged seeds.\\n(Source: WRIGHT)"], "deciduous tree": ["Any tree losing its leaves in autumn and growing new ones in the spring.\\n(Source: CAMB)"], "decision": ["A selection of something from a collection of options or alternatives.", "An opinion and judgment formed or emitted about something.", "Firmness of conviction."], "decomposition": ["The reduction of the body of a formerly living organism into simpler forms of matter.", "The process by which a complex problem or system is broken down into parts that are easier to conceive, understand, program, and maintain."], "decontamination": ["The removing or neutralizing of chemical, biological, or radiological contamination from a person, object, or area."], "decree": ["A declaration of the court announcing the legal consequences of the facts found.", "Administrative, legislative or juridical act being issued by a executive organ being made of general or specific juridical prescriptions.", "To decide with authority.", "To issue a decree.", "High level administrative act usually issued by the head of State or, in some countries, the chief of the government."], "deep sea": ["Region of open ocean beyond the continental shelf."], "deep sea fishing": ["Fishing in the deepest parts of the sea."], "deer": ["The common name for 41 species of even-toed ungulates that compose the family Cervidae in the order Artiodactyla; males have antlers."], "defoliation": ["The drop of foliage from plants caused by herbicides such as Agent Orange, diuron, triazines, all of which interfere with photosynthesis."], "deforestation": ["The removal of forest and undergrowth to increase the surface of arable land or to use the timber for construction or industrial purposes."], "degradability": ["The capacity of being decomposed chemically or biologically."], "degradation": ["The act of abasing.", "A lowering from one's standing or rank in office or society."], "degreasing": ["The removal of grease."], "de-inking": ["Series of processes by which various types of printing inks are removed from paper fibre pulp during the pre-processing and recycling of recovered paper products."], "delinquency": ["Set of crimes.", "Failure to make payments on time."], "delta": ["A delta is a vast, fan-shaped creation of land, or low-lying plain, formed from successive layers of sediment washed from uplands to the mouth of some rivers, such as the Nile, the Mississippi and the Ganges. The nutrient-rich sediment is deposited by rivers at the point where, or before which, the river flows into the sea. Deltas are formed when rivers supply and deposit sediments more quickly that they can be removed by waves of ocean currents. The importance of deltas was first discovered by prehistoric man, who was attracted to them because of their abundant animal and plant life. Connecting waterways through the deltas later provided natural routes for navigation and trade, and opened up access to the interior. Deltas are highly fertile and often highly populated areas. They would be under serious threat of flooding from any sea-level rise.\\n(Source: WRIGHT)"], "demand": ["The desire, ability and willingness of an individual to purchase a good or service.", "To desire a service or physical goods, often without returning the favor in kind."], "democracy": ["A system of governance in which ultimate authority power is vested in the people and exercised directly by them or by their freely elected agents."], "demographic evolution": ["The gradual pattern of change in the growth of human populations in a particular region or country, from a rapid increase in the birth and death rates to a leveling off in the growth rate due to reduced fertility and other factors.\\n(Source: DOE / ANT)"], "demography": ["The statistical study of human vital statistics and population dynamics (natality, mortality, age, profession etc).", "A statistic characterizing human populations or segments of human populations broken down by age or sex or income etc."], "dendrochronology": ["The science of dating the age of a tree by studying annual growth rings."], "dendrometry": ["The measuring of the diameter of standing trees from the ground with a dendrometer that can also be used to measure tree heights."], "denitrification": ["The loss of nitrogen from soil by biological or chemical means."], "deposition": ["The process by which polluting material is precipitated from the atmosphere and accumulates in ecosystems."], "deregulation": ["The removal or relaxation of government control over the economic activities of some commercial entity, industry or economic sector."], "dermapteran": ["Any of various insects of the order Dermaptera."], "desalination": ["Removal of salt, as from water or soil.", "Removal of salt and other minerals from water."], "desalination plant": ["Plant for the extraction of fresh water from saltwater by the removal of salts, usually by distilling."], "desert": ["A wide, open, comparatively barren tract of land with few forms of life and little rainfall.", "Left behind by the owner or keeper.", "To leave someone who needs or counts on you."], "desertification": ["The development of desert conditions as a result of human activity or climatic changes."], "desert locust": ["One of about a dozen species of short-horned grasshoppers (Acridoidea) that are known to change their behavior and form swarms of adults or bands of hoppers (wingless nymphs). The swarms that form can be dense and highly mobile. (Source: FAO)"], "desorption": ["The process of removing a sorbed substance by the reverse of adsorption or absorption."], "detection": ["The act or process of discovering evidence or proof of governmental, legal or ethical violations.\\n(Source: RHW)", "Act of detecting something with a detector."], "detector": ["A mechanical, electrical, or chemical device that automatically identifies and records or registers a stimulus, such as an environmental change in pressure or temperature, an electrical signal, or radiation from a radioactive material."], "detergent": ["A surface-active agent used for removing dirt and grease from a variety of surfaces and materials.", "A substance used when cleaning."], "determination method": ["Method employed in the assessment or in the evaluation of a quantity, a quality, a fact, an event, etc.\\n(Source: ZINZANa)"], "deterrent": ["Any measure, implement or policy designed to discourage or restrain the actions or advance of another agent, organization or state.\\n(Source: RHW)", "Tending to deter."], "detoxification": ["The act or process of removing a poison or the toxic properties of a substance in the body."], "developed country": ["A nation possessing a relatively high degree of industrialization, infrastructure and other capital investment, sophisticated technology, widespread literacy and advanced living standards among its populations as a whole."], "developing country": ["A country whose people are beginning to utilize available resources in order to bring about a sustained increase in per capita production of goods and services."], "development aid": ["Economic assistance or other types of support provided to developing countries to promote or encourage advancement in living standards, institutions, infrastructure, agricultural practices and other aspects of an economy, and to resolve problems typically associated with developing countries."], "development area": ["Area which has been given special help from a government to encourage business and factories to be set up there."], "development planning": ["The act or process of formulating a course of action that promotes the economic advancement of a region or people, particularly in countries known to have low levels of economic productivity and technological sophistication.\\n(Source: OED / WBG)"], "development plan": ["The statement of local planning policies that each local planning authority is required by statute to maintain, and which can only be made or altered by following the procedures prescribed for that purpose, which include obligations to consult widely and to hold a public local inquiry into objections. The development plan includes: 1) the structure plan for the area (normally prepared by the country council); 2) an area-wide development plan for each district council area.\\n(Source: GRAHAW)"], "dialysis": ["A process of selective diffusion through a membrane; usually used to separate low-molecular-weight solutes which diffuse through the membrane from the colloidal and high-molecular-weight solutes which do not.", "A method to clean the blood of patients with renal failure."], "diatom": ["Unicellular algae, some of which are colonial, green or brownish in colour (but all contain chlorophyll) and with siliceous and often highly sculptured cell walls."], "dictionary": ["A reference book containing an explanatory alphabetical list of words, identifying usually, the phonetic, grammatical, and semantic value of each word, often with etymology, citations, and usage guidance and other information."], "didactics": ["The art or science of teaching."], "diesel engine": ["An internal combustion engine operating on a thermodynamic cycle in which the ratio of compression of the air charge is sufficiently high to ignite the fuel subsequently injected into the combustion chamber."], "diesel fuel": ["Heavy oil residue used as fuel for certain types of diesel engines."], "differentiation": ["The development of cells so that they are capable of performing specialized functions in the organs and tissues of the organisms to which they belong.", "In mathematics, the process of finding a derivative."], "diffusion": ["The spontaneous movement and scattering of particles (atoms and molecules), of liquid, gases, and solids.\\n(Source: MGH)"], "digested sludge": ["Sludge or thickened mixture of sewage solids with water that has been decomposed by anaerobic bacteria."], "digital land model": ["A representation of a surface's topography stored in a numerical format. Each pixel has been assigned coordinates and an altitude.\\n(Source: CCRS)"], "diluted acid": ["A less concentrated acid."], "dioxin": ["A heterocyclic and aromatic molecule, where two carbon atoms have been substituted by oxygen atoms."], "direct discharger": ["Factory and industrial concern which does not discharge their sewage into public sewers, but directly into a waterway."], "directive": ["The second rank of administrative acts (inferior to regulations, superior to decisions) made by the council or commission of the European Communities on order to carry out their tasks in accordance with the Treaties. They must be addressed to states, not individuals, but many create rights for individuals or allow the directive to be pleaded before municipal court."], "disabled person": ["Person lacking one or more physical power, such as the ability to walk or to coordinate one's movements, as from the effects of a disease or accident, or through mental impairment."], "disaster": ["The result of a vast ecological breakdown in the relations between man and his environment, a serious and sudden event (or slow, as in drought) on such a scale that the stricken community needs extraordinary efforts to cope with it, often with outside help or international aid.", "An event that results in large-scale damage and loss of human life, caused by natural forces, technical failure or human error."], "disaster preparedness": ["The aggregate of measures to be taken in view of disasters, consisting of plans and action programmes designed to minimize loss of life and damage, to organize and facilitate effective rescue and relief, and to rehabilitate after disaster. Preparedness requires the necessary legislation and means to cope with disaster or similar emergency situations. It is also concerned with forecasting and warning, the education and training of the public, organization and management, including plans, training of personnel, the stockpiling of supplies and ensuring the needed funds and other resources.\\n(Source: GUNN)"], "disaster relief": ["Money, food or other assistance provided for those surviving a sudden, calamitous event causing loss of life, damage or hardship."], "discharge regime": ["The rate of flow of a river at a particular moment in time, related to its volume and its velocity.\\n(Source: WHIT)"], "disease": ["A definite pathological process having a characteristic set of signs and symptoms which are detrimental to the well-being of the individual."], "disinfectant": ["An agent, such as heat, radiation, or a chemical, that disinfects by destroying, neutralizing, or inhibiting the growth of disease-carrying microorganisms.\\n(Source: AMHER)"], "disinfection": ["The complex of physical, chemical or mechanical operations undertaken to destroy pathogenic germs."], "dispatch note": ["Document accompanying something being transported (including living beings) and usually required at certain specific steps."], "dispersion": ["A distribution of finely divided particles in a medium.\\n(Source: MGH)"], "displaced person": ["A person who, for different reasons or circumstances, has been compelled to leave his or her home."], "disposal of warfare materials": ["Disposal of the material remnants of war, which can seriously impede development and cause injuries and the loss of lives and property."], "dissolution": ["Dissolving of a material.", "Excessive indulgence in sensual pleasures."], "dissolved organic carbon": ["The fraction of total organic carbon (all carbon atoms covalently bonded in organic molecules) in water that passes through a 0.45 micron pore-diameter filter.\\n(Source: WQA)"], "distillation": ["The process of producing a gas or vapour from a liquid by heating the liquid in a vessel and collecting and condensing the vapours into liquids."], "distilling industry": ["A sector of the economy in which an aggregate of commercial enterprises is engaged in the manufacture and marketing of alcoholic beverages made by a distillation process of vaporization and condensation, such as vodka, rum, whiskey and other related beverages.\\n(Source: RHW / SIC)"], "distribution": ["The sum of the commercial and service activities that transfer the produced goods to the consumer.", "In statistics, the relative arrangements of the elements of a statistical population based on some criterion, as frequency, time, or location.", "The process by which commodities get to final consumers, including storing, selling, shipping, and advertising.", "In Linux, a collection of software making up the Linux operating system. The software is usually compiled by either a company or organization. It is designed to be easy to install, administer, and use by virtue of it being an integrated whole. Examples include Ubuntu, SUSE Linux, Red Hat, and Debian."], "district heating": ["The supply of heat, either in the form of steam or hot water, from a central source to a group of buildings."], "disused military site": ["Military site where all activity has ceased."], "ditch": ["A long, narrow excavation artificially dug in the ground; especially an open and usually unpaved waterway, channel, or trench for conveying water for drainage or irrigation, and usually smaller than a canal. Some ditches may be natural watercourses."], "DNA": ["The principal material of inheritance. It is found in chromosomes and consists of molecules that are long unbranched chains made up of many nucleotides. Each nucleotide is a combination of phosphoric acid, the monosaccharide deoxyribose and one of four nitrogenous bases: thymine, cytosine, adenine or guanine. The number of possible arrangements of nucleotides along the DNA chain is immense. Usually two DNA strands are linked together in parallel by specific base-pairing and are helically coiled. Replication of DNA molecules is accomplished by separation of the two strands, followed by the building up of matching strands by means of base-pairing, using the two halves as templates. By a mechanism involving RNA, the structure of DNA is translated into the structure of proteins during their synthesis from amino acids.\\n(Source: ALL)"], "document": ["Material of any kind, regardless of physical form, which furnishes information, evidence or ideas, including items such as contracts, bills of sale, letters, audio and video recordings, and machine readable data files.", "To record in documents.", "To support or supply with references."], "documentation": ["The process of accumulating, classifying and disseminating information, often to support the claim or data given in a book or article.\\n(Source: OED)"], "dog": ["A common four-legged animal, especially kept by people as a pet or to hunt or guard things.", "A dull, unattractive girl or woman.", "An iron for holding wood in a fireplace."], "domestic appliance": ["A machine or device, especially an electrical one used domestically."], "domesticated animal": ["Wild animal which has been trained to live near a house and not be frightened of human beings.\\n(Source: PHC)"], "domestic trade": ["Trade wholly carried on at home; as distinguished from foreign commerce.\\n(Source: WESTS)"], "domestic waste": ["Waste generated by residential households and comprised of any material no longer wanted or needed.\\n(Source: EED)"], "dosage": ["The amount of a substance required to produce an effect.\\n(Source: CONFER)"], "dose": ["The amount of test substance administered. Dose is expressed as weight of test substance (g, mg) per unit weight of test animal (e.g., mg/kg), or as weight of food or drinking water.\\n(Source: LEE)", "A powerful hallucinogenic drug manufactured from lysergic acid."], "dose-effect relationship": ["The relation between the quantity of a given substance and a measurable or observable effect."], "dragonfly": ["Any of the insects composing six families of the suborder Anisoptera and having four large, membranous wings and compound eyes that provide keen vision."], "drainage": ["1) Removal of groundwater or surface water, or of water from structures, by gravity or pumping.\\n2) The discharge of water from a soil by percolation (the process by which surface water moves downwards through cracks, joints and pores in soil and rocks).\\n(Source: MGH / WHIT)"], "dredged material": ["Unconsolidated material removed from rivers, streams, and shallow seas with machines such as the bucket-ladder dredge, dragline dredge, or suction dredge."], "drilling": ["The act of boring holes in the earth for finding water or oil, for geologic surveys, etc."], "drinking water": ["Water that is suitable to drink, does not present health hazards and whose quality is regulated by legislation."], "drinking water treatment": ["The Directive on the Quality of Surface Water Intended for Drinking Water defines three categories of water treatment (A1, A2, A3) from simple physical treatment and disinfection to intensive physical and chemical treatment. The treatment to be used depends on the quality of the water abstracted. The Directive uses imperative values for parameters known to have an adverse effect on health and also guide values for those which are less adverse. There is also a directive which complements the \"surface water abstraction\" Directive by indicating the methods of measurement and the frequency of sampling and analysis required.\\n(Source: PORT)"], "drought": ["A period of abnormally dry weather sufficiently prolonged so that the lack of water causes a serious hydrologic imbalance (such as crop damage, water supply shortage) in the affected area."], "drought control": ["Measures taken to prevent, mitigate or eliminate damage caused to the ecosystem, especially crops, by a sustained period of dry weather."], "dry cleaning": ["The cleaning of fabrics with a solvent other than water."], "dry farming": ["A system of extensive agriculture allowing the production of crops without irrigation in areas of limited rainfall."], "drying": ["The process of partially or totally removing water or other liquids from a solid."], "drying out": ["Removal of water from any substance."], "dual economy": ["An economy based upon two separate/distinct economic systems which co-exist in the same geographical space. Dualism is characteristic of many developing countries in which some parts of a country resemble advanced economies while other parts resemble traditional economies, i.e. there are circuits of production and exchange.\\n(Source: GOOD)"], "dune": ["A low mound, ridge, bank, or hill of loose, windblown granular material (generally sand, sometimes volcanic ash), either bare or covered with vegetation, capable of movement from place but always retaining its characteristic shape."], "duration of sunshine": ["Period of the day during which the sun is shining."], "dust": ["Any kind of solid material divided in particles of very small size.", "To remove solid material divided in particles of very small size to clean something.", "Dust or fine dirt to be found on the ground, on floors, on streets and ways."], "dust removal": ["The removal of dust from air by ventilation or exhaust systems."], "dwelling": ["Any enclosed space wholly or partially used or intended to be used for living, sleeping, cooking, and eating.", "The abode of a human being, their place of residence."], "dye": ["A substance used to modify the color of something.", "To modify the color of something by applying dye."], "dyke": ["An artificial wall, embankment, ridge, or mound, usually of earth or rock fill, built around a relatively flat, low-lying area to protect it from flooding."], "dyke reinforcement": ["The addition of material to strengthen the structure of the dykes."], "early warning system": ["Any series of procedures and devices designed to detect sudden or potential threats to persons, property or the environment at the first sign of danger."], "earthquake": ["The violent shaking of the ground produced by deep seismic waves, originating from the epicentre."], "earth science": ["The science that deals with the earth or any part thereof; includes the disciplines of geology, geography, oceanography and meteorology, among others."], "Earth-Sun relationship": ["The Earth depends on the sun for its existence as a planet hospitable to life, and solar energy is the major factor determining the climate. Hence, conditions on the sun and conditions on Earth are inextricably linked. Although the sun's rays may appear unchanging, its radiation does vary. Many scientists suspect that sunspot activity has a greater influence on climatic change than variations attributed to the greenhouse effect.\\n(Source: WRIGHT)"], "earthworm": ["Any of numerous oligochaete worms of the suborder Lumbricina which burrow in the soil and help aerate and break up the ground."], "earwig": ["Any of various insects of the order Dermaptera, which typically have an elongated body with small leathery forewings, semicircular membranous hindwings, and curved forceps at the tip of the abdomen."], "East Africa": ["A geographic region of the African continent that includes Burundi, Kenya, Rwanda, Tanzania, Uganda, Ethiopia and Somalia, and also Mt. Kilimanjaro and Lake Victoria."], "Eastern Asia": ["A geographic region of the Asian continent bordered by the Pacific Ocean in the east that includes China, Japan, Korea, Macao, Taiwan and Siberia."], "Eastern Europe": ["A geographic region of the European continent west of Asia and east of Germany and the Adriatic Sea, traditionally consisting of countries that were formerly part of the Soviet Union, such as Poland, the Czech Republic, Slovakia, Hungary, Romania, Serbia, Croatia and Bulgaria."], "East-West trade": ["Trade between countries and companies of the Western hemisphere with those of the Eastern hemisphere (usually referring to former Communist countries of Eastern Europe)."], "EC Council of Ministers": ["The organ of the EU that is primarily concerned with the formulation of policy and the adoption of Community legislation."], "EC ecolabel": ["The European Community (EC) initiative to encourage the promotion of environmentally friendly products."], "echinoderm": ["Marine coelomate animals distinguished from all others by an internal skeleton composed of calcite plates, and a water-vascular system to serve the needs of locomotion, respiration, nutrition or perception.", "A phylum of marine animals found at all ocean depths. The phylum appeared near the start of the Cambrian period, and contains about 7,000 living species,"], "ecological adaptation": ["Change in an organism so that it is better able to survive or reproduce, thereby contributing to its fitness."], "ecological balance": ["The condition of equilibrium among the components of a natural community such that their relative numbers remain fairly constant and their ecosystem is stable. Gradual readjustments to the composition of a balanced community take place continually in response to natural ecological succession and to alterations in climatic and other influences.\\n(Source: ALL)"], "ecological niche": ["The space occupied by a species, which includes both the physical space as well as the functional role of the species."], "ecology": ["The study of the interrelationships between living organisms and their environment."], "trophic ecology": ["The study of the feeding relationships of organisms in communities and ecosystems. Trophic links between populations represent flows of organisms, organic energy and nutrients. Trophic transfers are important in population dynamics, biogeochemistry, and ecosystem energetics.\\n(Source: PARCOR)"], "economic analysis": ["The quantitative and qualitative identification, study, and evaluation of the nature of an economy or a system of organization or operation."], "economic development": ["The state of nations and the historical processes of change experienced by them, the extent to which the resources of a nation are brought into productive use."], "economic growth": ["An increase over successive periods in the productivity and wealth of a household, country or region, as measured by one of several possible variables, such as the gross domestic product."], "economic instrument": ["Any tool or method used by an organization to achieve general developmental goals in the production of, or in the regulation of, material resources."], "economic policy": ["A definite course of action adopted and pursued by a government, political party or enterprise pertaining to the production, distribution and use of income, wealth and commodities."], "economics": ["The social study of the production, distribution, and consumption of wealth."], "economic system": ["Organized sets of procedures used within or between communities to govern the production and distribution of goods and services."], "economic theory": ["The study of relationships in the economy."], "economic viability": ["Capability of developing and surviving as a relatively independent social, economic or political unit."], "economic zoning": ["A land-use planning design or control where specific types of businesses or private sector investment are encouraged within designated boundaries.\\n(Source: ALL / EEN)"], "economy": ["The system of activities and administration through which a society uses its resources to produce wealth."], "ecophysiology": ["The study of biophysical, biochemical and physiological processes used by animals to cope with factors of their physical environment, or employed during ecological interactions with other organisms."], "ecosystem": ["A community of organisms and their physical environment interacting as an ecological unit.\\n(Source: LBC)"], "ecotourism": ["Excursions to relatively untouched lands, which for the tourist promise the chance to observe unusual wildlife and indigenous inhabitants."], "ecotoxicity": ["Quality of some substances or preparations which present or may present immediate or delayed risks for one or more sectors of the environment.\\n(Source: GRAHAW)"], "ecotoxicology": ["The science dealing with the adverse effects of chemical, physical agents, and natural products on populations and communities of plants, animals and human beings."], "ecotype": ["Species that has special characteristics which allow it to live in a certain habitat."], "edaphology": ["The study of the relationships between soil and organisms, including the use made of land by mankind."], "edible fat": ["A blend of a partially hydrogenated vegetable fat and natural butterfat."], "education": ["The act or process of imparting or acquiring knowledge or skills."], "educational institution": ["An organization or establishment devoted to the act or process of imparting or acquiring knowledge or skills.\\n(Source: RHW)"], "educational planning": ["The process of making arrangements or preparations to facilitate the training, instruction or study that leads to the acquisition of skills or knowledge, or the development of reasoning and judgment.\\n(Source: RHW)"], "education policy": ["A course of action adopted and pursued by government or some other organization, which promotes or determines the goals, methods and programs to be used for training, instruction or study that leads to the acquisition of skills or knowledge, or the development of reasoning and judgment.\\n(Source: RHW)"], "educational system": ["Any formulated, regular or special organization of instruction, training or knowledge disclosure, especially the institutional structures supporting that endeavor.\\n(Source: ISEP / OED)"], "effect": ["The result or outcome of a cause. Effects include: a) direct effects, which are caused by the action and occur at the same time and place, b) indirect effects, which are caused by the action and are later in time or farther removed in distance, that are still reasonably foreseeable.\\n(Source: LANDY)", "Images or sound added to enhance the experience of viewing a movie or listening to music.", "The result or outcome of a cause.", "Consequence or result of a deed.", "Condition that which follows something on which it depends.", "[With verbal nouns, forming phrases approximately equivalent to the source verb]"], "efficiency criterion": ["Parameter or rule for assessing the competency in performance of production relative to the input of resources."], "efficiency level": ["The ratio of output to input, usually given as a percentage."], "effluent": ["Liquid waste or sewage discharged into a river or the sea."], "egg": ["An approximately spherical or ellipsoidal body produced by birds, snakes, insects and other animals housing the embryo during its development.", "Egg (either fertilized or not) from domesticated birds, most commonly hens, seen as food.", "The female gamete of an animal or plant, capable of fusing with a male gamete to produce a zygote.", "The contents of one or more (hen's usually) eggs as a culinary ingredient, etc.", "Something shaped like an egg, such as an Easter egg or a chocolate egg.", "A swelling on one's head, usually large or noticeable, associated with an injury.", "A person of Caucasian (Western) ancestry, who has a strong desire to learn about and immerse him- or herself in East Asian culture, and/or such a person who is perceived as behaving as if he or she were Asian.", "In terms such as good egg, bad egg, tough egg etc., a person, fellow.", "A foolish or obnoxious person."], "elasticity": ["Ability of a material to return to original dimensions after deformation."], "electrical engineering": ["Engineering that deals with practical applications of electricity."], "electrical industry": ["The generation, transmission, distribution and sale of electric power to the general public."], "electricity": ["A general term used for all phenomena caused by electric charge whether static or in motion."], "electricity consumption": ["Amount of electricity consumed by an apparatus."], "electricity generation": ["The act or process of transforming other forms of energy into electric energy."], "electric line": ["Wires conducting electric power from one location to another."], "electric power": ["The rate at which electric energy is consumed or delivered by an electric device or system, equal to the product of the current and the voltage drop."], "electric power plant": ["A stationary plant containing apparatus for large-scale conversion of some form of energy (such as hydraulic, steam, chemical, or nuclear energy) into electrical energy."], "electric vehicle": ["Vehicle driven by an electric motor and characterized by being silent and less polluting."], "electrokinetics": ["The study of the motion of electric charges, especially of steady currents in electric circuits, and of the motion of electrified particles in electric or magnetic fields.\\n(Source: MGH)"], "electrolysis": ["The production of a chemical reaction by passing an electric current through an electrolyte. In electrolysis, positive ions migrate to the cathode and negative ions to the anode."], "electronics": ["Study, control, and application of the conduction of electricity through gases or vacuum or through semiconducting or conducting materials.", "Electronic part of a device."], "electronic scrap": ["Any material from electronic devices and systems, generated as a waste stream in a processing operation or discarded after service."], "electrosmog": ["Pollution caused by electric and magnetic fields generated by power lines, electrical equipment, mobile and cordless phones, radar, electrical household appliances, microwave ovens, radios, computers, electric clocks, etc."], "chemical element": ["A substance made up of atoms with the same atomic number; common examples are hydrogen, gold, and iron."], "emancipation": ["The state of being free from social or political restraint or from the inhibition of moral or social conventions."], "embryo": ["An early stage of development in multicellular organisms.", "A minute rudimentary plant contained within a seed or an archegonium."], "embryogenesis": ["The formation and development of an embryo from an egg."], "emergency relief": ["Money, food or other assistance provided for those surviving a sudden and usually unexpected occurrence requiring immediate action, especially an incident of potential harm to human life, property or the environment."], "emergency shelter": ["Shelter given to persons who are deprived of the essential necessities of life after a disaster."], "emission": ["A discharge of particulate gaseous, or soluble waste material/pollution into the air from a polluting source."], "emission factor": ["The relationship between the amount of pollutants produced to the amount of raw materials processed, or fuel consumed, in any polluting process."], "emission forecast": ["The final step in a clean air plan is to predict future air quality to demonstrate that we can (if we can) meet the health standards by implementing the measures proposed in the plan. This is done by first projecting the emission inventory into the future, taking into account changes in population, housing, employment in specific business sectors, and vehicle miles traveled. These data are obtained from various sources and the resulting emissions are adjusted to account for regulations and control measures scheduled for implementation during the same time period. Additional adjustments are made to reflect large facilities that are expected to start up, modify, or shut down. The resulting inventory is an emission forecast, and is usually expressed in tons per day of particular pollutants for a given year. Additional steps may be required to determine how the forecasted quantities of air pollution will affect the overall air quality. One way to accomplish this is through computer modeling. A computer model simulates how pollutants disperse, react, and move in the air. The inputs to such a computer model are complex. They include weather patterns, terrain, and the chemical nature of air pollutants.\\n(Source: APCD)"], "emission situation": ["The overall state regarding pollutant emission in a given area."], "emission standard": ["The maximum amount of discharge legally allowed from a single source, mobile or stationary."], "employment": ["Productive activity, service, trade, or craft for which one is regularly paid.", "The work or occupation in which a person is employed.", "Act through which a subordinated work contract starts."], "emulsification": ["The process of dispersing one liquid in a second immiscible liquid."], "emulsion": ["A stable dispersion of one liquid in a second immiscible liquid, such as milk (oil dispersed in water)."], "endocrine system": ["The chemical coordinating system in animals, that is, the endocrine glands that produce hormones."], "endocrinology": ["The study of the endocrine glands and the hormones that they synthesize and secrete.\\n(Source: MGH)"], "energy": ["The capacity to do work; involving thermal energy (heat), radiant energy (light), kinetic energy (motion) or chemical energy; measured in joules.", "A source of power, such as fuel and electrical energy, used for driving machines, providing light and heat, and powering electric devices."], "energy balance": ["The energetic state of a system at any given time."], "energy conservation": ["The reduction of energy consumption through efficient energy use."], "energy consumption": ["Amount of energy consumed by a person or an apparatus."], "energy conversion": ["The process of changing energy from one form to another."], "energy demand": ["Amount of energy needed by a person or an apparatus."], "energy economics": ["The production, distribution, and consumption of usable power such as fossil fuel, electricity, or solar radiation.\\n(Source: RHW)"], "energy management": ["The administration or handling of power derived from sources such as fossil fuel, electricity and solar radiation."], "energy market": ["The trade or traffic of energy sources treated as a commodity (such as fossil fuel, electricity, or solar radiation).\\n(Source: RHW)"], "energy policy": ["A statement of a country's intentions in the energy sector."], "energy production": ["Generation of energy in a coal fired power station, in an oil fired power station, in a nuclear power station, etc."], "energy recovery": ["A form of resource recovery in which the organic fraction of waste is converted to some form of usable energy. Recovery may be achieved through the combustion of processed or raw refuse to produce steam through the pyrolysis of refuse to produce oil or gas; and through the anaerobic digestion of organic wastes to produce methane gas.\\n(Source: LANDY)"], "energy resource": ["Potential supplies of energy which have not yet been used (such as coal lying in the ground, solar heat, wind power, geothermal power, etc.).\\n(Source: PHC)"], "energy saving": ["A set of strategies for avoiding wasting energy."], "energy source": ["Potential supplies of energy including fossil and nuclear fuels as well as solar, water, wind, tidal and geothermal power.\\n(Source: PHC)"], "energy technology": ["Technology used to produce energy."], "enforcement": ["The execution, carrying out or putting into effect an order, regulation, law or official decree."], "enriched uranium": ["Uranium whose concentration of uranium-235, which is able to sustain a nuclear chain reaction, is increased by removing uranium-238.\\n(Source: ALL)"], "enrichment": ["The process of increasing the abundance of a specified isotope in a mixture of isotopes. It is usually applied to an increase in the proportion of U-235, or the addition of Pu-239 to natural uranium for use in a nuclear reactor or weapon."], "environmental auditing": ["An assessment of the nature and extent of any harm or detriment, or any possible harm or detriment, that may be inflicted on any aspect of the environment by any activity process, development programme, or any product, chemical, or waste substance. Audits may be designed to: verify or otherwise comply with environmental requirements; evaluate the effectiveness of existing environmental management systems; assess risks generally; or assist in planning for future improvements in environment protection and pollution control\\n(Source: GILP96)"], "environmental awareness": ["The growth and development of awareness, understanding and consciousness toward the biophysical environment and its problems, including human interactions and effects."], "environmental chemistry": ["Science dealing with the physical, chemical and biochemical processes that polluting substances undergo when introduced in the environment."], "environmental cost": ["Expenses incurred as a result of some violation of ecological integrity either by an enterprise that implements a program to rectify the situation, or by society or the ecosystem as a whole when no person or enterprise is held liable."], "environmental crime": ["An unlawful act against the environment, such as water contamination, hazardous waste disposal, air contamination, unpermitted installation of plants, oil spills, etc.\\n(Source: AZENPa)", "An unlawful act against the environment, such as water contamination, hazardous waste disposal, air contamination, unpermitted installation of plants, oil spills, etc."], "environmental criminal law": ["The aggregate of statutory enactments pertaining to actions or instances of ecological negligence deemed injurious to public welfare or government interests and legally prohibited."], "environmental damage": ["Harm done to the environment, e.g. loss of wetlands, pollution of rivers, etc."], "environmental economics": ["A subfield of economics concerned with environmental issues."], "environmental education": ["The educational process that deals with the human interrelationships with the environment and that utilizes an interdisciplinary problem-solving approach with value clarification. Concerned with education progress of knowledge, understanding, attitudes, skills, and commitment for environmental problems and considerations. The need for environmental education is continuous, because each new generation needs to learn conservation for itself.\\n(Source: UNUN)"], "environmental ethics": ["An ecological conscience or moral that reflects a commitment and responsibility toward the environment, including plants and animals as well as present and future generations of people. Oriented toward human societies living in harmony with the natural world on which they depend for survival and well being.\\n(Source: UNUN)"], "environmental history": ["A systematic and chronological account of past events and conditions relating to the ecosystem, its natural resources or, more generally, the external factors surrounding and affecting human life.\\n(Source: TOE)"], "environmental impact": ["Any alteration of environmental conditions or creation of a new set of environmental conditions, adverse or beneficial, caused or induced by the action or set of actions under consideration."], "environmental indicator": ["A measurement, statistic or value that provides a proximate gauge or evidence of the effects of environmental management programs or of the state or condition of the environment."], "environmental informatics": ["Science and techniques of data elaboration and of computer processing of information concerning ecosystems and ecology."], "environmental investment": ["Securities held for the production of income in the form of interest and dividends with the aim of benefitting the environment.\\n(Source: ISEP / EFP)"], "environmental legislation": ["Branch of law relating to pollution control; national parks, wildlife, fauna and flora, wilderness and biodiversity; environmental and occupational health; environmental planning; heritage conservation and a large number of international conventions relating to the environment.\\n(Source: GILP96)"], "environmental legislation on agriculture": ["A binding rule or body of rules prescribed by a government to regulate any aspect of farm and livestock production that poses a threat to ecological integrity and human health, especially the use of pesticides, fertilizers and land."], "environmental liability": ["The penalty to be paid by an organization for the damage caused by pollution and restoration necessary as a result of that damage, whether by accidental spillages from tankers, industrial waste discharges into waterways or land, or deliberate or accidental release of radioactive materials."], "environmentally unfriendly firm": ["Firm that dores not comply with environmental regulations for the disposal of noxious wastes generated during the production cycle."], "environmental medicine": ["The art and science of the protection of good health, the promotion of aesthetic values, the prevention of disease and injury through the control of positive environmental factors, and the reduction of potential physical, biological, chemical, and radiological hazards."], "environmental policy": ["Official statements of principles, intentions, values, and objective which are based on legislation and the governing authority of a state and which serve as a guide for the operations of governmental and private activities in environmental affairs."], "environmental pollution": ["The introduction by man into the environment of substances or energy liable to cause hazards to human health, harm to living resources and ecological systems, damage to structure or amenity, or interference with legitimate uses of the environment.\\n(Source: GRAHAW)"], "environmental protection": ["Measures and controls to prevent damage and degradation of the environment, including the sustainability of its living resources."], "environmental protection cost": ["The amount of money incurred in the preservation, defense, or shelter of natural resources.\\n(Source: EFP / OED)"], "environmental psychology": ["A branch of experimental psychology which studies the relationships between behavior and the environmental context in which it occurs."], "environmental quality": ["Properties and characteristics of the environment, either generalized or local, as they impinge on human beings and other organisms. Environmental quality is a general term which can refer to: varied characteristics such as air and water purity or pollution, noise, access to open space, and the visual effects of buildings, and the potential effects which such characteristics may have on physical and mental health.\\n(Source: LANDY)"], "environmental report": ["An account or statement, usually in writing, describing in detail events, situations or conditions pertaining to the ecosystem, its natural resources or any of the external factors surrounding and affecting human life.\\n(Source: TOE)"], "environmental research": ["The study of the environment and its modifications caused by human activities."], "environmental risk assessment": ["Qualitative and quantitative evaluation of the risk posed to the environment by the actual or potential presence and/or use of specific pollutants.\\n(Source: OPPTIN)"], "environmental science": ["The interdisciplinary study of environmental problems, within the framework of established physical and biological principles, i.e. oriented toward a scientific approach."], "environmental security": ["Measures taken or policies instituted to protect and promote the safety of external conditions affecting the life, development and survival of an organism.\\n(Source: TOE)"], "environmental specimen bank": ["Places in which selected specimens (fish, mussels, milk, soil sample and human tissue, etc.) are stored without being allowed to decompose."], "environmental subsidy": ["Payment by a government to assist or improve performance regarding ecological maintenance or the protection, defense, or shelter of natural resources.\\n(Source: ODE)"], "environmental terminology": ["The vocabulary of technical terms and usage appropriate to community, corporate, governmental and other groups concerned with protecting natural resources, preserving the integrity of the ecosystem and safeguarding human health.\\n(Source: ISEP / TOE)"], "environmental vandalism": ["The egregious or blatant destruction of delicate ecosystems, especially in violation of environmental protection laws."], "environmental warfare": ["The direct manipulation or destruction of ecological resources as either a political threat or for actual military advantage."], "environment": ["The set of all natural systems, including the air, land, water, and living things other than humans.", "The set of all natural and human-made surroundings that affect individuals, social groupings, and other life.", "The complex of physical, chemical, and biotic factors that surround and act upon a specific organism or upon a specific group of organisms."], "enzyme": ["Any of a group of catalytic proteins that are produced by living cells and that mediate and promote the chemical processes of life without themselves being altered or destroyed."], "epidemic": ["A sudden increase in the incidence rate of a disease to a value above normal, affecting large numbers of people and spread over a wide area.", "Spreading rapidly and extensively by infection and affecting many individuals in an area or a population at the same time."], "epidemiology": ["The study of the occurrence and distribution of disease and injury specified by person, place, and time."], "equine": ["An animal belonging to the family of Equidae."], "equipment": ["Any collection of materials, supplies, instrumentality or apparatuses stored, furnished or provided for an undertaking, service or activity."], "equivalent dose": ["A quantity used in radiation protection, expressing all radiation on a common scale for calculating the effective absorbed dose."], "ergonomics": ["The study of human capability and psychology in relation to the working environment and the equipment operated by the worker."], "erosion": ["The general process or the group of processes whereby the materials of Earth's crust are loosened, dissolved, or worn away and simultaneously moved from one place to another, by natural agencies, which include weathering, solution, corrosion, and transportation, but usually exclude mass wasting.\\n(Source: BJGEO)"], "erosion control": ["Practices used during construction or other land disturbing activities to reduce or prevent soil erosion."], "estuarine biology": ["The scientific study of the characteristic life processes of living organisms found in a semi-enclosed coastal body of water which has a free connection with the open sea and within which sea water is measurably diluted with freshwater.\\n(Source: WOR / MHE / APD)"], "estuarine oceanography": ["The study of the physical, chemical, biological and geological characteristics of a semi-enclosed coastal body of water which has a free connection with the open sea and within which sea water is measurably diluted with fresh water.\\n(Source: MHE / APD)"], "estuary": ["A river mouth or stream mouth is a part of a river where it flows into the sea, river, lake, reservoir or ocean.", "Area at the mouth of a river where it broadens into the sea, and where fresh and sea water intermingle to produce brackish water. The estuarine environment is very rich in wildlife, particularly aquatic, but it is very vulnerable to damage as a result of the actions of humans.\\n(Source: WRIGHT)"], "etching substance": ["Substance capable of wearing away the surface of a metal, glass, etc. by chemical action."], "ether": ["A colorless liquid, slightly soluble in water; used as a reagent, intermediate, anesthetic, and solvent.\\n(Source: MGH)", "A class of chemical compounds which contain an oxygen atom connected to two (substituted) alkyl groups."], "ethics": ["The philosophical study of the moral value of human conduct and of the rules and principles that ought to govern it."], "ethnology": ["The science that deals with the study of the origin, distribution, and relations of races or ethnic groups of mankind."], "ethology": ["The study of animal behaviour in a natural context."], "EU Council": ["The Council of the European Union is an institution which exercises legislative and decision-making powers. At the same time, it is the forum in which the representatives of the Governments of the 15 Member States can assert their interests and try to reach compromises. The Council ensures general coordination of the activities of the European Community, the main objective of which is the establishment of an internal market, i.e. an area without internal frontiers guaranteeing four freedoms of movement - for goods, persons, services and capital - to which should soon be added a single currency. In addition, the Council is responsible for intergovernmental cooperation, in common foreign and security policy (CFSP) and in the areas of justice and home affairs (JHA), including for example matters of immigration and asylum, combating terrorism and drugs and judicial cooperation.\\n(Source: UEEU)"], "Euratom": ["A precursor to the European Community, the European Atomic Energy Community was founded in 1958 by the European Common Market to conduct research, develop nuclear energy, create a common market for nuclear fuels and supervise the nuclear industry so as to prevent abuse and protect health.\\n(Source: ERD)"], "Europe": ["The second smallest continent, forming the Western extension of Eurasia: the border with Asia runs from the Urals to the Caspian and the Black Sea."], "European Commission": ["The European Union's administrative body, composed of twenty independent members appointed by the Member States for five-year terms and vested with powers of initiative, implementation, management and control according to the mandates established in EU Treaties or handed down by the EU Council."], "European Court of Justice": ["The supreme court of The European Union which oversees the application of the\\nEU treaties, decides upon the validity and the meaning of Community legislation and determines whether any act or omission by the European Commission, the Council of Minister or any member state constitutes a breach of Community law."], "European Environment Agency": ["The EEA is being set up to provide the European Community and its member states with objective, reliable and standardized information on the environment. It will assess the success of existing environmental policies and the data will be used to develop new policies for environmental protection measures. It will gather information covering the present, and foreseeable, state of the environment. The priority area are: air quality and emissions; water quality, pollutants and resources; soil quality, flora and fauna, and biotopes; land use and natural resources; waste management; noise pollution; chemicals; and protection of coastal areas. The Agency will also take into account the socio-economics dimension, cover transboundary and international matters, and avoid the duplication of the activities of other bodies.\\n(Source: WRIGHT)"], "European Environmental Council": ["Council of European Union environment ministers that aims to preserve the quality of the environment, human health, the prudent and rational utilisation of natural resources and to promote measures at international level to deal with regional or worldwide environmental problems."], "European Parliament": ["Formerly the \"Assembly\" of EEC. Comprises some 520 \"representatives of the peoples\" of European Community states, directly elected, and based in Strasbourg. Exercises advisory and supervisory powers; debates and passes resolutions and may veto admission of new member states.\\n(Source: CURZON)"], "European Union": ["The 27 nations (Austria, Belgium, Bulgaria, Cyprus, Czechia, Denmark, Estiona, Finland, France, Germany, Greece, Hungary, Ireland, Italy, Latvia, Luxembourg, Malta, the Netherlands, Poland, Portugal, Romania, Slovakia, Slovenia, Spain, Sweden and the UK) that have joined together to form an economic community with common monetary, political and social aspirations."], "eutrophication": ["A process of pollution that occurs when a lake or stream becomes over-rich in plant nutrient and as a consequence becomes overgrown in algae and other aquatic plants."], "evaluation": ["An assessment or a summary of a particular situation."], "evaporation": ["Conversion from a liquid or solid state to a vapour."], "evapotranspiration": ["Discharge of water from the earth's surface to the atmosphere by evaporation from lakes, streams and soil surfaces and by transpiration from plants."], "evolution": ["The biological theory or process whereby species of plants and animals change with the passage of time so that their descendants differ from their ancestors, i.e. development from earlier forms by hereditary transmission of slight variations in successive generations.", "A gradual process of development, formation, or growth, especially, one leading to a more advanced or complex form."], "exact science": ["Mathematics and other sciences based on calculation."], "excavated hole": ["A pit, cavity, or other uncovered cutting produced by excavation."], "executive order": ["An order or regulation issued by the president or some administrative authority under his direction for the purpose of interpreting, implementing or giving administrative effect to a provision of the constitution or of some law or treaty."], "exhaust device": ["A duct or pipe through which waste material is emitted; a combination of components which provides for enclosed flow of exhaust gas from engine parts to the atmosphere.\\n(Source: AMHER / LEE)"], "exhaust gas": ["Offgas produced during combustion processes discharged directly or ultimately to the atmosphere."], "exotic species": ["Plants, animals or microorganisms which are introduced by humans into areas where they are not native. Exotics are often associated with negative ecological consequences for native species and the ecosystems."], "expenditure": ["Spending by consumers, investors, or government for goods or services."], "experiment": ["A test under controlled conditions that is made to demonstrate a known truth, examine the validity of a hypothesis, or determine the efficacy of something previously untried.", "To conduct an experiment or investigation.", "To try something new, as in order to gain experience."], "expert system": ["A computer configuration of hardware and software that simulates the judgment and behavior of a human or an organization with extensive knowledge in a particular field, often by giving answers, solutions or diagnoses.\\n(Source: RHW / WIC)"], "exploration": ["A careful systematic search."], "explosion": ["A violent, sudden release of energy resulting from powders or gases undergoing instantaneous ignition or from some other means of detonation, often accompanied by a force producing great amounts of heat, major structural damages, shock waves and flying shrapnel.\\n(Source: HMD)"], "explosive": ["A substance, such as trinitrotoluene, or a mixture, such as gunpowder, that is characterized by chemical stability but may be made to undergo rapid chemical change without an outside source of oxygen, whereupon it produces a large quantity of energy generally accompanied by the evolution of hot gases.", "With the capability to, or likely to, explode.", "Liable to lead to sudden change or violence."], "export": ["To send, take or carry an article of trade or commerce out of the country.", "Any good or commodity, transported from one country to another country in a legitimate fashion, typically for use in trade."], "exposure": ["The time for which a material is illuminated or irradiated."], "expropriation": ["The act of depriving an owner of private property for public use."], "extensive cattle farming": ["Farming system practiced in very large farms, characterized by low levels of inputs per unit area of land; in such situations the stocking rate, the number of livestock units per area, is low."], "externality": ["Discrepancies between private costs and social costs or private advantages and social advantages; the basic concept of externality is interdependence without compensation."], "extraction": ["Any process by which a pure metal is obtained from its ore.\\n(Source: UVAROV)"], "extractive industry": ["Primary activities involved in the extraction of non-renewable resources.\\n(Source: GOOD)"], "fabric": ["Any cloth made from yarn or fibres by weaving, knitting, felting, etc."], "factor market": ["A market where services of the factors of production (not the actual factors of production) are bought and sold."], "fallout": ["The descent of airborne solid or liquid particles to the ground, which occurs when the speed at which they fall due to gravity exceeds that of any upward motion of the air surrounding them."], "fallow area": ["Land area normally used for crop production but left unsown for one or more growing seasons."], "fallow land": ["Arable land not under rotation that is set at rest for a period of time ranging from one to five years before it is cultivated again, or land usually under permanent crops, meadows or pastures, which is not being used for that purpose for a period of at least one year. Arable land which is normally used for the cultivation of temporary crops but which is temporarily used for grazing is included."], "family": ["A group comprising parents, offsprings and others closely related or associated with them.", "A group of persons sharing a home or living space, who aggregate and share their incomes, as evidenced by the fact that they regularly take meals together.", "A biological taxon, a group of animals or plants, part of an order and consisting of one or more genera.", "Of or related to a family."], "family planning": ["The control of the number of children in a family and of the intervals between them, especially by the use of contraceptives."], "famine": ["A severe shortage of food, as through crop failure or over population. It may be due to poor harvests following drought, floods, earthquake, war, social conflict, etc."], "farm animal": ["Animals reared in farms for working and producing food such as meat, eggs and milk."], "farm": ["Any tract of land or building used for agricultural purposes, such as for raising crops and livestock."], "fauna": ["The entire animal life of a given region, habitat or geological stratum."], "federal government": ["A system in which a country or nation formed by a union or confederation of independent states is governed by a central authority or organization."], "federal law": ["A binding rule or body of rules established by a government that has been constituted as a union of independent political units or states."], "fee": ["A charge fixed by law for services of public officers or for use of a privilege under control of government."], "fen": ["Waterlogged, spongy ground containing alkaline decaying vegetation, characterized by reeds, that may develop into peat. It sometimes occurs in the sinkholes of karst region."], "fermentation": ["Any enzymatic transformation of organic substrates, especially carbohydrates, generally accompanied by the evolution of gas."], "fern": ["Any of a large number of vascular plants composing the division Polypodiophyta, without flowers and fruits.\\n(Source: MGH)"], "fibre": ["The portion of plant products that moves through the human digestive system without being digested."], "field": ["A limited area of land with grass or crops growing on it, which is usually surrounded by fences or closely planted bushes when it is part of a farm.", "A particular environment or walk of life.", "A single aspect of each member of an entity in a database.", "A land area free of woodland or human settlements.", "The open country near or belonging to a city.", "A region affected by a particular force.", "An area that can be seen at a given time.", "A place where a battle is fought.", "A realm of practical, direct, or natural operation, contrasting with an office, classroom, or laboratory.", "A number system w\u0131th functions that has the same properties relative to the operations of addition and multiplication used for real numbers.", "A region containing a particular mineral.", "The background of the shield.", "An area of memory or storage reserved for a particular value.", "A component of a database record in which a single unit of information is stored.", "A physical or virtual location for the input of information in the form of characters.", "To intercept or catch (a ball) and play it.", "To be the team catching and throwing the ball, as opposed to hitting it.", "To place a team in (a game)."], "field damage": ["A decline in the productivity of an area of land or in its ability to support natural ecosystems or types of agriculture."], "field experiment": ["Experiment carried out on a substance or on an organism in the open air as opposed to in a laboratory."], "field study": ["Scientific study made in the open air to collect information that can not be obtained in a laboratory."], "filling material": ["Any substance used to fill the holes and irregularities in planed or sanded surfaces so as to decrease the porosity of the surface for finish coatings."], "filling station": ["A place where petrol and other supplies for motorists are sold.", "A facility selling fuel for road motor vehicles."], "film": ["A sequence of animated images.", "A thin covering layer, often about something temporarily deposited on the surface.", "To capture a motion picture onto film.", "To become covered by a thin layer.", "A thin flexible strip of cellulose coated with a photographic emission, used in cameras to make negatives and transparencies, capture motion pictures, etc."], "filter": ["A porous material for separating suspended particulate matter from liquids by passing the liquid through the pores in the filter and sieving out the solids.\\n(Source: MGH)", "Any item, mechanism, device or procedure that acts to separate or isolate.", "To separate or isolate components from one another with the help of a filter."], "filter cake": ["Accumulated solids, wet or dry, generated by any filtration process, including accumulation on fabric filters in air filtering processes, or accumulation of wet solids in liquid filtering processes.\\n(Source: EED / ISEP)"], "filtration": ["Separation of suspended particles from a liquid, gas, etc., by the action of a filter.", "The act of filtering."], "financial compensation": ["The financial reparations that a claimant seeks or a court awards for injuries sustained or property harmed by another.\\n(Source: IVW)"], "financial market": ["A place or institution in which buyers and sellers meet and trade monetary assets, including stocks, bonds, securities and money."], "financing": ["Procurement of monetary resources or credit to operate a business or acquire assets."], "fine": ["A pecuniary punishment or penalty imposed by lawful tribunal upon person convicted of crime or misdemeanor."], "fine dust": ["Air-borne solid particles, originating from human activity and natural sources, such as wind-blown soil and fires, that eventually settle through the force of gravity, and can cause injury to human and other animal respiratory systems through excessive inhalation."], "fire": ["The state of combustion in which inflammable material burns, producing heat, flames and often smoke.", "An unwanted and uncontrolled burning of matter.", "Intense adverse criticism.", "To terminate the employment of one or more employees.", "Uncontrolled burning, conflagration."], "fire precaution": ["Measure, action or installation implemented in advance to avert the possibility of any unexpected and potentially harmful combustion of materials.\\n(Source: RHW)"], "fire protection": ["All necessary precautions to see that fire is not initiated, by ensuring that all necessary fire fighting apparatus is in good order and available for use if fire should break out, and by ensuring that personnel are properly trained and drilled in fighting fire."], "fire safety requirement": ["Rules to be followed and safety systems to be adopted for preventing or fighting fire.\\n(Source: RRDA)"], "fire service": ["Organisation with trained personnel for dealing with fires and other incidents and for co-operating in their prevention."], "firing": ["The process of applying fire or heat, as in the hardening or glazing of ceramics.\\n(Source: HARRIS)"], "firm": ["A commercial association of two or more persons, especially when incorporated.", "Resistant to pressure.", "A place where an activity is accomplished, whether actual, as a pub, or virtual, as a website.", "Fixed; closely compressed.", "Marked by firm determination or resolution; not shakable.", "Strong and sure (e.g. grasp)."], "fish disease": ["An illness affecting fish, including bacterial, viral and fungal infections, parasites and maltnutrition."], "fishery": ["The industry of catching, processing and selling fish."], "fish": ["A cold-blooded vertebrate animal that lives in water that moves with the help of fins and breathes using gills (Pisces).", "To catch or try to catch fish.", "A new inmate in a prison."], "fish farming": ["Raising of fish in inland waters, estuaries or coastal waters."], "fishing": ["The art or sport of catching fish with a rod and line and a baited hook or other lure, such as a fly.", "The attempt to catch fish or other aquatic animal with a hook or with nets, traps, etc."], "fishing industry": ["Industry for the handling, processing, and packing of fish or shellfish for market or shipment."], "fishing vessel": ["Ship or boat that is used to catch fish on seas, lakes or rivers."], "fish stock": ["The population of fish in a certain area."], "flag of convenience": ["Practice of registering a merchant vessel with a country that has favourable (i.e. less restrictive ) safety requirements, registration fees, etc."], "flaring": ["1) Flares use open flames during normal and/or emergency operations to combust hazardous gaseous. The system has no special features to control temperature or time of combustion; however, supplemental fuel may be required to sustain the combustion. Historically, flares have been used to dispose of waste gases in the oil and gas industry and at wastewater treatment plants having anaerobic digestors. Regulation for thermal destruction of hazardous wastes limit the practical use of flaring to combustion of relatively simple hydrocarbons, such as methane from digesters or landfill gas collection systems. \\n2) A control device that burns hazardous materials to prevent their release into the environment; may operate continuously or intermittently, usually on top a stack.\\n(Source: CORBIT / EPAGLO)"], "rapid test": ["Medical test whose results are available very quickly."], "flea": ["Any of the wingless insects composing the order Siphonaptera; most are ectoparasites of mammals and birds.\\n(Source: MGH)"], "flocculant": ["A reagent added to a dispersion of solids in a liquid to bring together the fine particles to form flocs."], "flocculation": ["A process of contact and adhesion whereby the particles of a dispersed substance form large clusters or the aggregation of particles in a colloid to form small lumps, which then settle out."], "flood": ["An overflowing; an inundation or flood, especially when the water is charged with much suspended material.\\n(Source: BJGEO)", "An unusual accumulation of water above the ground caused by high tide, heavy rain, melting snow or rapid runoff from paved areas.", "To cover with large amounts of water."], "flooding": ["A general and temporary condition of partial or complete inundation of normally dry land areas from the overflow of inland and/or tidal waters, and/or the unusual and rapid accumulation or runoff of surface waters from any source."], "flora restoration": ["The process of returning plant ecosystems and habitats to their original conditions."], "flotation": ["A process used to separate particulate solids by causing one group of particles to float; utilizes differences in surface chemical properties of the particles, some of which are entirely wetted by water, others are not."], "flow": ["The flowing of a fluid.", "To move as a fluid from one position to another (e.g. of people).", "To move along, of liquids."], "flower": ["The reproductive structure of angiosperm plants, consisting of stamens and carpels surrounded by petals and sepals all borne on the receptacle.", "A plant that is cultivated or admired for its beautiful blossoms.", "(Of a plant) To produce blooms or flowers."], "flowering plant": ["The division of seed plants that includes all the flowering plants, characterized by the possession of flowers. The ovules, which become seeds after fertilization, are enclosed in ovaries. The xylem contains true vessels. The angiospermae are divided into two subclasses: Monocotyledoneae and Dycotiledoneae.\\n(Source: ALL)", "Member of the angiosperm, the class of seed plants that includes all the flowering plants."], "flow field": ["The velocity and the density of a fluid as functions of position and time."], "flowing water": ["Moving waters like rivers and streams."], "flue gas": ["The gaseous combustion product generated by a furnace and often exhausted through a chimney (flue)."], "fluidised bed": ["A bed of finely divided solid through which air or a gas is blown in a controlled manner so that it behaves as a liquid."], "fluoridation": ["The addition of the fluorine ion to municipal water supplies in a final concentration of 0.8-1.6 ppm (parts per million) to help prevent dental caries in children."], "fluorine": ["A gaseous chemical element with symbol F and atomic number 9; a member of the halide family, it is the most electronegative element and the most chemically energetic of the nonmetallic elements; highly toxic and corrosive; used in rocket fuels and as a chemical intermediate.\\n(Source: MGH)"], "river transport": ["Transportation of goods or persons by means of ships travelling on rivers."], "fly ash": ["Finely divided particles of ash that are entrained in flue gases resulting from the combustion of fuel or other material."], "foaming agent": ["A substance which makes it possible to form a homogenous dispersion of a gaseous phase in a liquid or solid medium."], "fodder": ["Bulk feed for livestock, especially hay, straw, etc.\\n(Source: CED)"], "fog": ["Water droplets or, rarely, ice crystals suspended in the air in sufficient concentration to reduce visibility appreciably.", "To hide from view."], "mist": ["Fine water droplets suspended in the air, which reduce visibility. Usually mists form at night, when the temperature falls because the sky is clear. If visibility falls below 1,000 metres, the mist becomes a fog."], "foliage": ["The leaves of a plant together."], "food": ["A substance that can be ingested and utilized by the organism as a source of nutrition and energy."], "food additive": ["Substances that have no nutritive value in themselves (or are not being used as nutrients) which are added to food during processing to improve colour, texture, flavour, or keeping qualities."], "food chain": ["A sequence of organisms on successive trophic levels within a community, through which energy is transferred by feeding; energy enters the food chain during fixation by primary producers (mainly green plants) and passes to the herbivores (primary consumers) and then to the carnivores (secondary and tertiary consumers)."], "food hygiene": ["That part of the science of hygiene that deals with the principles and methods of sanitation applied to the quality of foodstuffs, to their processing, preparation, conservation and consumption by man."], "food industry": ["The commercial production and packaging of foods that are fabricated by processing, by combining various ingredients, or both."], "food irradiation": ["The process of applying high energy to food products, to sterilize them and extend their shelf-life by killing microorganisms, insects and other pests residing on it."], "food preservation": ["Processing designed to protect food from spoilage caused by microbes, enzymes, and autooxidation."], "food quality": ["The quality characteristics of food that is acceptable to consumers."], "food science": ["The applied science which deals with the chemical, biochemical, physical, physiochemical, and biological properties of foods."], "foodstuff": ["A substance that can be used or prepared for use as food."], "food technology": ["The application of science and engineering to the refining, manufacturing, and handling of foods; many food technologists are food scientists rather than engineers."], "footpath": ["A narrow path for walkers only."], "forage contamination": ["Introduction of hazardous or poisonous substances such as arsenic or lead into, or onto, fodder for animals."], "forecast": ["An estimate of a future condition."], "foreign policy": ["The diplomatic policy of a nation in its interactions with other nations."], "foreign trade": ["Trade between countries and firms belonging to different countries."], "forest": ["A vegetation community dominated by trees and other woody shrubs, growing close enough together that the tree tops touch or overlap, creating various degrees of shade on the forest floor.", "In graph theory, a disjoint union of trees."], "forest damage": ["Reduction of tree population in forests caused by acidic precipitation, forest fires, air pollution, deforestation, pests and diseases of trees, wildlife, etc."], "forest ecosystem": ["Any forest environment, in which plants and animals interact with the chemical and physical features of the environment, in which they live."], "forest fire": ["A conflagration in or destroying large wooded areas having a thick growth of trees and plants."], "forest pest": ["Organism that damages trees."], "forest policy": ["A course of action adopted and pursued by government or some other organization, which seeks to preserve or protect an extensive area of woodland, often to produce products and benefits such as timber, wildlife habitat, clean water, biodiversity and recreation."], "forest reserve": ["Forest area set aside for the purpose of protecting certain fauna and flora, or both."], "forestry": ["The management of forest lands for wood, forages, water, wildlife, and recreation."], "forestry practice": ["The farming of trees to ensure a continuing supply of timber and other forest products. Foresters care for existing trees, protecting them from fire, pests and diseases, and felling where trees are overcrowded or dying and when ready for cropping. They also plant new areas (afforestation) and replant felled areas (reafforestation).\\n(Source: GOOD)"], "fossil": ["Any remains, trace, or imprint of a plant or animal that has been preserved in the Earth's crust since some past geologic or prehistoric time."], "fossil fuel": ["The energy-containing materials which were converted over many thousands of years from their original form of trees, plants and other organisms after being buried in the ground."], "four stroke engine": ["An internal combustion engine whose cycle is completed in four piston strokes; includes a suction stroke, compression stroke, expansion stroke, and exhaust stroke."], "framework legislation": ["A body of rules prescribed by a government, often composed in a series of inter-related parts, to establish or lay the foundation for a new project, agency or organizational structure.\\n(Source: RHW)"], "access to information": ["The ability, right and permission to approach and use, or the general availability of resources that convey knowledge."], "freight transport": ["Transportation of goods by ship, aircraft or other vehicles."], "freon": ["Trade name for a group of polyhalogenated hydrocarbons containing fluorine and chlorine; an example is trichlorofluoromethane."], "freshwater": ["Water having a relatively low mineral content, generally less than 500 mg/l of dissolved solids."], "freshwater biology": ["The scientific study of the characteristic life processes of living organisms found in a natural body of water that does not contain significant amounts of dissolved salts and minerals, such as a lake or river."], "freshwater ecosystem": ["The living organisms and nonliving materials of an inland aquatic environment."], "freshwater organism": ["Organism which lives in freshwater.\\n\\n(Source: PHC)"], "frog": ["Any insectivorous anuran amphibian of the family Ranidae, such as Rana temporaria of Europe, having a short squat tailless body with a moist smooth skin and very long hind legs specialized for hopping."], "frost": ["A deposit of interlocking ice crystals formed by direct sublimation on objects.\\n(Source: MGH)"], "fruit": ["A fully matured plant ovary with or without other floral or shoot parts united with it at maturity.", "A botanical fruit that can be eaten raw used as food."], "fruit cultivation": ["Cultivation of fruit trees for home consumption or on a commercial basis."], "fruit tree": ["Any tree that bears edible fruit.\\n(Source: CED)"], "fuel": ["Solid, liquid, or gaseous material such as gas, gasoline, oil, coal or wood, used to produce heat or power by burning."], "fuel additive": ["Substance (such as tetraethyl lead) which is added to petrol to prevent knocking."], "fuel alcohol": ["Alternative source of energy for motor vehicles. It is produced by fermentation of sugar cane by the yeast Saccharomyces cerevisiae.\\n(Source: DICCHE)"], "fuel consumption": ["The amount of fuel utilized.\\n(Source: PHCa)"], "fuel oil": ["A liquid product burned to generate heat, exclusive of oils with a flash point below 38\u00b0C; includes heating oils, stove oils, furnace oils, bunker fuel oils.\\n(Source: MGH)"], "fuel wood": ["Wood used for heating."], "fume": ["Solids in the air that have been generated by the condensation of vapors, chemical reactions or sublimation (a direct change from solid to gas). Often metallic oxides or metals, these particles are less than 1 micrometer in diameter and may be toxic.\\n(Source: ALL)"], "fumigation": ["The use of a chemical compound in a gaseous state to kill insects, nematodes, arachnids, rodents, weeds, and fungi in confined or inaccessible locations; also used to control weeds, nematodes, and insects in the field."], "functional substance": ["A substance from the point of view of its function or purpose, for example a painting agent or a preserving substance."], "mycete": ["Nucleated usually filamentous, sporebearing organisms devoid of chlorophyll."], "fungus": ["Nucleated usually filamentous, sporebearing organism devoid of chlorophyll."], "fungicide": ["A chemical used to kill or halt the development of fungi that cause plant disease."], "fur": ["The hair-covered, dressed pelt of a mammal, used in the making of garments and as trimming or decoration."], "fur animal": ["Animal bred and slaughtered for its fur."], "furan": ["A colourless flammable toxic liquid heterocyclic compound, used in the synthesis of nylon.\\n(Source: CED)"], "furnace": ["A structure or apparatus in which heat is produced by the combustion of fuel, often to warm houses, melt metals, produce steam and bake pottery."], "furniture": ["The movable articles in a room or an establishment that make it fit for living or working.", "A movable object (such as a table, chair, lamp) inside a dwelling, that is useful or decorative."], "furriery": ["The business or trade of dressed furs and garments made from the coats of certain animals."], "gamma radiation": ["A form of electromagnetic radiation or light emission of frequencies produced by sub-atomic particle interactions, such as electron-positron annihilation or radioactive decay."], "garden": ["A piece of land next to a house where flowers and other plants are grown and which often has an area of grass.", "To grow plants in a garden; to create or maintain a garden."], "garden waste": ["Natural organic matter discarded from gardens and yards including leaves, grass clippings, prunings, brush and stumps."], "garrigue": ["Mediterranean bush consisting of low evergreen shrubs and abundant herbaceous plants."], "gas": ["A substance that continues to occupy in a continuous manner the whole of the space in which it is placed, however large or small this place is made, the temperature remaining constant.", "A fuel for internal combustion engines consisting essentially of volatile flammable liquid hydrocarbons derived from crude petroleum.", "To show off."], "gas chromatography": ["A separation technique involving passage of a gaseous moving phase through a column containing a fixed phase; it is used principally as a quantitative analytical technique for volatile compounds.\\n(Source: MGH)"], "gas company": ["Company charged with the production and distribution of gas for domestic use.\\n(Source: RRDA)"], "gas engine": ["An internal combustion engine that uses gaseous fuel."], "gaseous state": ["State of matter in which the matter concerned occupies the whole of its container irrespective of its quantity.\\n(Source: DICCHE)"], "gasification": ["Any chemical or heat process used to convert a substance to a gas."], "gas liquefaction": ["Conversion of a gas to the liquid phase by cooling or compression."], "gas mixture": ["Mixture of two or more different gases."], "gas network": ["Interconnected system of pipes for the distribution and supply of gas."], "gasohol": ["A mixture of 80% or 90% petrol with 20% or 10% ethyl alcohol, for use as a fuel in internal combustion engines."], "gasoline engine": ["An internal combustion engine that uses a mixture of air and gasoline vapour as a fuel."], "gas pipeline": ["A long pipe, especially underground, used to transport gas over long distances."], "gas powered plant": ["Power station which burns gas, as opposed to a coal-fired station or nuclear power station."], "gas purification": ["Removal of pollutants or contaminants from waste incineration or other combustion processes.\\n(Source: MGHa)"], "gas reservoir": ["Large tank for storing coal gas or natural gas.\\n(Source: PHC)"], "gas supply": ["The provision and storage of any fuel gas, for the use of a municipality, or other fuel gas user."], "gastropod": ["Any mollusc of the class Gastropoda, typically having a flattened muscular foot for locomotion and a head that bears stalked eyes."], "gene bank": ["Storehouse of seeds or vegetative tissue, kept in low humidity and temperature, to help maintain genetic diversity."], "general chemistry": ["The study of the elements and the compounds they form."], "gene": ["A unit of heredity composed of DNA occupying a fixed position on a chromosome. A gene may determine a characteristic of an individual by specifying a polypeptide chain that forms a protein or part of a protein (structural gene); or repress such operation (repressor gene).\\n(Source: CED)"], "genetic diversity": ["The variation between individuals and between populations within a species."], "genetic effect": ["Inheritable change, chiefly mutations produced by chemical substances, herbicides, radiations, etc."], "genetic engineering": ["1) The complex of techniques for the production of new genes and the alteration of the structure of the chromosomes to produce effects beneficial to man, in agriculture and medicine.\\n2) The intentional production of new genes and alteration of genomes by the substitution or addition of new genetic material.\\n(Source: ZINZAN / MGH)"], "genetic information": ["The information for protein synthesis contained in the nucleotide sequences of the DNA polynucleotide chain.\\n(Source: RRDA)"], "genetic modification": ["Inheritable changes produced by ionizing radiation, exposure to certain chemicals, ingestion of some medication and from other causes.\\n(Source: CONFER)"], "genetic resource": ["The gene pool in natural and cultivated stocks of organisms that are available for human exploitation. It is desirable to maintain as diverse a range of organisms as possible, particularly of domesticated cultivars and their ancestors, in order to maintain a wide genetic base. The wider the genetic base, the greater the capacity for adaptation to particular environmental conditions.\\n(Source: ALL2)"], "genetics": ["The science that is concerned with the study of biological inheritance."], "genetic variation": ["Change in one or more phenotypic characteristics, due to gene mutation or rearrangement, environmental effects, etc."], "geodesy": ["A subdivision of geophysics which includes determination of the size and shape of the earth, the earth's gravitational field, and the location of points fixed to the earth's crust in an earth-referred coordinate system."], "geogenic factor": ["Factors which originate in the soil, as opposed to those of anthropic origin (anthropogenic).\\n(Source: RRDA)"], "geographic information system": ["An organized collection of computer hardware, software, geographic data, and personnel designed to efficiently capture, store, update, manipulate, analyze, and display all forms of geographically referenced information that can be drawn from different sources, both statistical and mapped."], "geography": ["The study of the natural features of the earth's surface, comprising topography, climate, soil, vegetation, etc. and man's response to them."], "geology": ["The study or science of the earth, its history, and its life as recorded in the rocks."], "geomorphology": ["The study of the classification, description, nature, origin, and development of present landforms and their relationships to underlying structures, and of the history of geologic changes as recorded by these surface features."], "geophysics": ["The physics of the earth and its environment, that is, earth, air and space."], "geotechnology": ["The application of scientific methods and engineering techniques to the exploitation and use of natural resources."], "geothermal energy": ["An energy produced by tapping the earth's internal heat. At present, the only available technologies to do this are those that extract heat from hydrothermal convection systems, where water or steam transfer the heat from the deeper part of the earth to the areas where the energy can be tapped. The amount of pollutants found in geothermal vary from area to area but may contain arsenic, boron, selenium, lead, cadmium, and fluorides. They also may contain hydrogen sulphide, mercury, ammonia, radon, carbon dioxide, and methane.\\n(Source: KOREN)"], "germ": ["A pathogenic micro-organism.", "Living substance capable of developing into an organ, part, or organism as a whole; a primordium."], "germination": ["The beginning or the process of development of a spore or seed."], "germ plasm": ["The hereditary material transmitted to the offspring via the gametes."], "glacier": ["Slow moving masses of ice which have accumulated either on mountains or in polar regions."], "glaciology": ["The study of all aspects of snow and ice, and in particular of existing glaciers, ice sheets, and their physical properties."], "glass": ["A hard, amorphous, inorganic, usually transparent, brittle substance made by fusing silicates, sometimes borates and phosphates, with certain basic oxides and then rapidly cooling to prevent crystallization.", "A surface that reflects light.", "A vessel (especially one made of glass) from which drinks may be drunk.", "A smooth surface, usually made of glass with reflective material painted on the underside, that reflects light so as to give an image of what is in front of it.", "An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "glass industry": ["Industry for the production of glassware.\\n(Source: CED)"], "global warming": ["Changes in the surface-air temperature, referred to as the global temperature, brought about by the greenhouse effect which is induced by emission of greenhouse gases into the air."], "glossary": ["An alphabetical list of terms concerned with a particular subject, field or area of usage that includes accompanying definitions."], "glue": ["Substance used for sticking objects together."], "golf": ["A game played on a large open course, the object of which is to hit a ball using clubs, with as few strokes as possible, into each of usually 18 holes.", "To play golf."], "grain": ["Edible, starchy seeds of the grass family (Graminae) usable as food by man and his livestock."], "grass": ["A very large and widespread family of Monocotyledoneae, with more than 10.000 species, most of which are herbaceous, but a few are woody. The stems are jointed, the long, narrow leaves originating at the nodes. The flowers are inconspicuous, with a much reduced perianth, and are wind-pollinated or cleistogamous.", "A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect."], "grass fire": ["A conflagration in or destroying large areas of any vegetation in the Gramineae family as found in fields, meadows, savannas or other grasslands."], "grasshopper": ["A plant-eating insect with long back legs that can jump very high and makes a sharp high noise using its back legs or wings."], "grassland": ["An area where the vegetation is dominated by grasses and other herbaceous plants."], "grassland ecosystem": ["The interacting system of the biological communities located in biomes characterized by the dominance of indigenous grasses, grasslike plants and forbs, and their non-living environmental surroundings.\\n(Source: TOE / DOE)"], "gravel": ["To have an unwanted negative influence on someone, to be distractive to or for someone, impress someone or something in a troublesome or uneasy way.", "A mixture of rock fragments and pebbles that is coarser than sand.\\n(Source: CED)", "To make someone rather angry or impatient; to cause annoyance."], "gravel pit": ["A place where gravel is dug out of the ground."], "grazing": ["The vegetation on pastures that is available for livestock to feed upon."], "greenbelt": ["An area of land around an urban area that is protected from large-scale housing."], "green corridor": ["Avenues along which wide-ranging animals can travel, plants can propagate, genetic interchange can occur, populations can move in response to environmental changes and natural disasters, and threatened species can be replenished from other areas."], "environmental tax": ["An amount of money demanded by a government to finance clean-up, prevention, reduction, enforcement or educational efforts intended to promote ecological integrity and the conservation of natural resources."], "greenhouse cultivation": ["Cultivation of plants, especially of out-of-season plants, in glass-enclosed, climate-controlled structures.\\n(Source: MGH)"], "greenhouse effect": ["The warming of the Earth's atmosphere caused by the increasing concentration of atmospheric gases, such as water vapour and carbon dioxide. These gases absorb radiation emitted by the Earth, thus slowing down the loss of radiant energy from the Earth back to space."], "greenhouse gas": ["A component of the atmosphere that influences the greenhouse effect, namely carbon dioxide, methane, nitrous oxides, ozone, CFCs and water vapour."], "green manure": ["Herbaceous plant material plowed into the soil while still green."], "green revolution": ["The development of high-yield strains of wheat, corn and rice during the 1960s and early 1970s to increase the food supplies and solve the world's hunger problems."], "green space": ["A plot of vegetated land separating or surrounding areas of intensive residential or industrial use and devoted to recreation or park uses."], "green vegetable": ["A vegetable having the edible parts rich in chlorophyll and forming an important source of vitamins and micronutrients."], "grinding": ["The process of reducing an object to powder or small fragments."], "gross national product": ["Value of all goods and services produced in a country in one year, plus income earned by its citizens abroad, minus income earned by foreigners in the country."], "groundwater": ["Water that occupies pores and crevices in rock and soil, below the surface and above a layer of impermeable material."], "groundwater extraction": ["The process, deliberate or inadvertent, of extracting ground water from a source at a rate so in excess of the replenishment that the ground water level declines persistently, threatening exhaustion of the supply or at least a decline of pumping levels to uneconomic depths."], "gulf": ["An inlet of the sea of large areal proportions, more indented than a bay and generally more enclosed."], "gymnosperm": ["Any seed-bearing plant of the division Gymnospermae, in which the ovules are borne naked on the surface of the mega sporophylls, which are often arranged in cones."], "gypsum": ["A colourless or white mineral used in the building industry and in the manufacture of cement, rubber, paper and plaster of Paris."], "habitat": ["The locality in which a plant or animal naturally grows or lives. It can be either the geographical area over which it extends, or the particular station in which a specimen is found.\\n2) A physical portion of the environment that is inhabited by an organism or population of organisms. A habitat is characterized by a relative uniformity of the physical environment and fairly close interaction of all the biological species involved. In terms of region, a habitat may comprise a desert, a tropical forest, a prairie field, the Arctic Tundra or the Arctic Ocean.\\n(Source: WRIGHT / GILP)"], "hail": ["Precipitation in the form of balls or irregular lumps of ice.", "To fall from the clouds in form of ball or lumps of ice."], "half-life": ["The time required for one-half the atoms of a given amount of radioactive material to undergo radioactive decay."], "haloform": ["A haloalkane, containing three halogen atoms, e.g. iodoform, CHI3; a haloform reaction is a reaction to produce haloforms from a ketone. For example, if propanone is treated with bleaching powder, the chlorinated ketone so formed reacts to form chloroform.\\n(Source: UVAROV)"], "halogenated biphenyl": ["Halogen derivatives of biphenyl."], "halogenated hydrocarbon": ["One of a group of halogen derivatives of organic hydrogen and carbon containing compounds; the group includes monohalogen compounds (alkyl or aryl halides) and polyhalogen compounds that contain the same or different halogen atoms."], "halogenated phenol": ["Halogen derivatives of phenol."], "harbour": ["To maintain (a theory, thoughts, or feelings).", "To secretly shelter (as of fugitives or criminals).", "To keep in one's possession; of animals."], "hardness": ["Resistance of a solid to indentation, scratching, abrasion or cutting.\\n(Source: MGH)"], "harvest": ["The amount or measure of the crop gathered in a season.", "To gather the ripened crop.", "The process of gathering the ripened crop."], "hazard": ["A physical or chemical agent capable of causing harm to persons, property, animals, plants or other natural resources."], "haze": ["Reduced visibility in the air as a result of condensed water vapour, dust, etc., in the atmosphere.\\n(Source: CED)", "Meteorologic phenomenon consisting of a big number of dry and extremely small particles (dust, sand, smoke) in suspension and carried by the air, so that visibility is considerably reduced (aprox. between 1 and 5 kms). It occurs when the relative humidity is below 70-80%. It has an opalescent color."], "health": ["A state of dynamic equilibrium between an organism and its environment in which all functions of mind and body are normal."], "health care": ["The prevention, treatment, and management of illness and the preservation of mental and physical well being through the services offered by the medical, nursing, and allied health professions.", "Treatment done for a patient in order to alleviate his pain and to heal him."], "health facility": ["A facility or location where medical, dental, surgical, or nursing attention or treatment is provided to humans or animals."], "health regulation": ["A body of rules or orders prescribed by government or management to promote or protect the soundness of human bodies and minds in the workplace, at home or in the general environment.\\n(Source: BLD / RHW)"], "hearing impairment": ["A decrease in strength or any abnormality or partial or complete loss of hearing or of the function of ear, or hearing system, due directly \\nor secondarily to pathology or injury; it may be either temporary or permanent."], "hearing protection": ["The total of measures and devices implemented to preserve persons from harm to the faculty of perceiving sound."], "heater": ["An apparatus that heats or provides heat."], "heathland": ["An area with poor acid soil, typically dominated by ling (Calluna) or heaths (Erica)."], "heating": ["A system for supplying heat to a building."], "heat pump": ["A device which transfers heat from a cooler reservoir to a hotter one, expending mechanical energy in the process."], "heat supply": ["The provision of heating fuel, coal or other heating source materials, or the amount of heating capacity, for the use of a municipality, or other heat user.\\n(Source: ISEP)"], "heavy metal": ["A metal whose specific gravity is approximately 5.0 kg/l or higher."], "hedge": ["A line of closely planted bushes or shrubs, marking the boundaries of a property."], "herbicide": ["A chemical that controls or destroys undesirable plants."], "herbivore": ["An animal that feeds on plants."], "heterocyclic compound": ["Compound in which the ring structure is a combination of more than one kind of atom."], "higher education": ["Study beyond secondary school at an institution that offers programs terminating in undergraduate and graduate degrees.\\n(Source: COE)"], "high mountain": ["The mountain part that exceeds the 1500 meters of altitude."], "high-speed railway": ["Railway track designed so that trains can travel at speeds in excess of 200 km/h."], "high-speed train": ["Train travelling at maximum speeds of 320 km/h on special high-speed rail lines."], "high voltage line": ["An electric line with a voltage on the order of thousands of volts."], "highway": ["A public road especially an important road that joins cities or towns together.", "A wide road built for fast moving traffic travelling long distances, with a limited number of points at which drivers can enter and leave it."], "hill": ["A natural elevation of the land surface, usually rounded."], "historical research": ["The study of events in relation to their development over time.\\n(Source: GOOD)"], "historical site": ["Place where significant historical events occurred and which is important to an indigenous culture or a community.\\n(Source: LANDYa)"], "history": ["A systematic written account comprising a chronological record of events (as affecting a city, state, nation, institution, science, or art) and usually including a philosophical explanation of the cause and origin of such events.", "The scientific study of events from a time-related perspective and the passing on of the knowledge obtained by this study for the purpose of education.", "the past events concerned in the development of a particular place, object, subject etc."], "holiday": ["A day on which work is suspended by law or custom, such as a religious festival, bank holiday, etc."], "horse": ["A large animal with four legs of the Equus caballus species which people ride on or use for carrying things or pulling vehicles."], "horticulture": ["The art and science of growing plants."], "hospital": ["A place where people who are ill or injured are treated and taken care of by doctors and nurses."], "hospital waste": ["Solid waste, both biological and non-biological, produced by hospitals and discarded and not intended for further use."], "hotel industry": ["The industry related with the provision of lodging and usually meals and other services for travelers and other paying guests."], "hot water": ["Water that has been heated."], "household": ["A group of persons sharing a home or living space, who aggregate and share their incomes, as evidenced by the fact that they regularly take meals together.", "Found in or having its origin in a home."], "housing": ["Dwelling-houses collectively."], "housing density": ["The number of dwelling units or the residential population of a given geographic area."], "housing improvement": ["An addition, renovation or repair to a place of residence that increases its aesthetic, functional or financial value."], "housing quality standard": ["A norm or measure applicable in legal cases and considered to reflect a relatively high grade or level of excellence in the construction, maintenance, operation, occupancy, use or appearance of dwelling units.\\n(Source: BLD)"], "human biology": ["The study of human life and character."], "human ecology": ["The study of the growth, distribution, and organization of human communities relative to their interrelationships with other humans and other species and with their environment."], "human health": ["The avoidance of disease and injury and the promotion of normalcy through efficient use of the environment, a properly functioning society, and an inner sense of well-being.\\n(Source: KOREN)"], "human-made disaster": ["Violent, sudden and destructive change in the environment caused by man."], "human pathology": ["Branch of medicine concerned with the cause, origin, and nature of disease, including the changes occurring as a result of disease.\\n(Source: CED)"], "human physiology": ["A branch of biological sciences that studies the functions of organs and tissues in human beings.\\n(Source: OMD / WOR)"], "human settlement": ["Cities, towns, villages, and other concentrations of human populations which inhabit a given segment or area of the environment."], "humus": ["The more or less decomposed organic matter in the soil.", "Earth formed by the decay of vegetable matter.", "A popular dish in the Middle East that consists of cooked, mashed chickpeas, blended with tahini, olive oil, lemon juice, salt and garlic."], "hunting": ["The pursuit and killing or capture of wild animals."], "hurricane": ["A tropical cyclone of great intensity; any wind reaching a speed of more than 73 miles per hour (117 kilometers per hour) is said to have hurricane force."], "hydraulic engineering": ["A branch of civil engineering concerned with the design, erection, and construction of sewage disposal plants, waterworks, dams, water-operated power plants and such."], "hydraulics": ["The branch of science and technology concerned with the mechanics of fluids, especially liquids."], "hydrobiology": ["Study of organisms living in water.\\n(Source: ZINZAN)"], "hydrocarbon": ["A very large group of chemical compounds composed only of carbon and hydrogen.\\n(Source: MGH)"], "hydrochloric acid": ["A solution of hydrogen chloride gas in water."], "hydroculture": ["Cultivation of plants without soil but in sand or vermiculite or other granular material, using a liquid solution of nutrients to feed them."], "hydroelectric power plant": ["Power station which operates with the free renewable source of energy provided by falling water."], "hydrogen": ["A flammable colourless gas that is the lightest and most abundant element in the universe. It occurs mainly in water and in most organic compounds and is used in the production of ammonia and other chemicals, in the hydrogenation of fats and oils, and in welding."], "hydrogeology": ["The science dealing with the occurrence of surface and ground water, its utilization, and its functions in modifying the earth, primarily by erosion and deposition."], "hydrography": ["Science which deals with the measurement and description of the physical features of the oceans, lakes, rivers, and their adjoining coastal areas, with particular reference to their control and utilization."], "hydrologic balance": ["An accounting of the inflow to, outflow from, and storage in a hydrologic unit such as a drainage basin, aquifer, soil zone, lake or reservoir; the relationship between evaporation, precipitation, runoff, and the change in water storage."], "hydrologic cycle": ["The movement of water between the oceans, ground surface and atmosphere by evaporation, precipitation and the activity of living organisms."], "hydrology": ["The science that treats the occurrence, circulation, distribution, and properties of the waters of the earth, and their reaction with the environment.", "The science that treats the occurrence, circulation, distribution, and properties of the waters of the earth, and their reaction with the environment.\\n(Source: MGH)"], "hydrolysis": ["Decomposition or alteration of a chemical substance by water; in aqueous solutions of electrolytes, the reactions of cations with water to produce a weak base or of anions to produce a weak acid.\\n(Source: MGH)"], "hydrometeorology": ["That part of meteorology of direct concern to hydrologic problems, particularly to flood control, hydroelectric power, irrigation, and similar fields of engineering and water resource.\\n(Source: ZINZAN)"], "water power": ["Energy obtained from natural or artificial waterfalls, either directly by turning a water wheel or turbine, or indirectly by generating electricity in a dynamo driven by a turbine."], "hydrosphere": ["All the waters of the Earth, as distinguished from the rocks, living things , and the air."], "hygiene": ["A set of practices associated with the preservation of health, the prevention and fighting of diseases and healthy living.", "The study and use of practical measures for the preservation of public health."], "hymenopteran": ["Insects including bees, wasps, ants, and sawflies, having two pair of membranous wings and an ovipositor specialized for stinging, sawing or piercing.\\n(Source: CED)"], "ice": ["The dense substance formed by the freezing of water to the solid state; it commonly occurs in the form of hexagonal crystals.", "To cool with ice.", "An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "iceberg": ["A large mass of detached land ice floating in the sea or stranded in shallow water."], "ideology": ["A body of ideas that reflects the beliefs and interest of a nation, political system, etc. and underlies political action.\\n(Source: CED)"], "image processing": ["The process of converting 'raw' remotely sensed data into a usable form through the application of various transformations such as supervised and unsupervised classification schemes.\\n(Source: FORUMT)"], "immission": ["The reception of material, such as pollutants, by the environment and from any source."], "immission control": ["Legislative and administrative procedures aimed at reducing the damage caused by emissions. Pollution control programmes are normally based on human-oriented acceptable dose limits. A very important measure concerns the organisation of an emission inventory.\\n(Source: GOODa)"], "immission control law": ["A law that protects the residents' health and resources of a region by limiting air pollution."], "immission damage": ["Damage caused by pollution from a distinct source of emission."], "immission forecast": ["The prediction of immissions is calculated on the basis of the pollutant load, the source height, the wind speed and the dispersion coefficient."], "immune system": ["A body system that helps an organism to resist disease, through the activities of specialised blood cells or antibodies produced by them in response to natural exposure or inoculation.\\n(Source: KOREN / CED)"], "immunity": ["The ability of an organism to resist disease or toxins by natural or artificial means."], "immunoassay": ["Any of several methods for the quantitative determination of chemical substances such as hormones, drugs, and certain proteins that utilize the highly specific binding between an antigen and an antibody."], "immunological disease": ["The disruption of the complex system of interacting cells, cell products and cell-forming tissues that protect the body from pathogens, destroys infected and malignant cells and removes cellular debris.\\n(Source: SMD / RHW)"], "immunology": ["A branch of biology concerned with the native or acquired resistance of higher animal forms and humans to infections."], "impactor": ["Instrument which samples atmospheric suspensoids by impaction; such instruments consist of a housing which constrains the air flow past a sensitized sampling plate."], "import": ["The act of bringing goods and merchandise into a country from a foreign country.", "To bring (something) in from a foreign country, especially for sale or trade.", "An object brought from a foreign country, especially for sale or trade."], "impoverishment": ["The state of having little or no money and few or no material possessions"], "impulsive noise": ["Noise characterized by transient short-duration disturbances distributed essentially uniformly over the useful passband of a transmission system."], "incineration": ["The burning of a dead body."], "incineration of waste": ["The controlled burning of solid, liquid, or gaseous combustible wastes to produce gases and solid residues containing little or no combustible material in order to reduce the bulk of the original waste materials."], "incinerator": ["Device which burns waste."], "slope": ["The inclined surface of any part of the Earth's surface, as a hillslope; also, a broad part of a continent descending toward an ocean, as the Pacific slope.\\n(Source: BJGEO)", "To be at an angle; to move downwards."], "income": ["The gain derived from capital, from labour or effort, or both combined, including profit or gain through sale or conversion of capital.", "Compensation for the selling of goods and services.", "Payment received for goods or services or coming from other sources as for instance, investments.", "Money that a person or an institution obtains."], "incorporation": ["The act of incorporating a substance to another substance."], "indemnity": ["Financial compensation, reimbursement or security for damages or loss offered by a government, insurance policy or contractual agreement under specified conditions and for specific casualties."], "Indian Ocean": ["A body of water between the continents of Africa, Antarctica, Asia and Australia including the Bay of Bengal in the east and the Arabian Sea (with the Red Sea, the Gulf of Aden and the Persian Gulf) in the west, and containing several islands and island chains, such as the Andaman, Nicobar and Seychelles."], "indicator": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "indigenous forest": ["Forests which are native to a given area."], "indoor environment": ["Environment situated in the inside of a house or other building."], "industrial area": ["Areas allocated for industry within a town-planning scheme or environmental plan. The range of industries accommodated in a plan may include: light industry, service industry, general industry, hazardous, noxious or offensive industry, waterfront industry, extractive industry. Standards are usually defined for industrial areas relating to access and roads, drainage, car parking, aesthetics, landscaping, buffer zones, noise levels, and air and water pollution.\\n(Source: GILP96)"], "industrial medicine": ["The branch of medicine which deals with the relationship of humans to their occupations, for the purpose of the prevention of disease and injury and the promotion of optimal health, productivity, and social adjustment."], "industrial process": ["Procedures involving chemical or mechanical steps to aid in the manufacture of items, usually carried out on a very large scale."], "industrial site": ["The location for the individual manufacturing firm."], "industrial sludge": ["Sludge produced as a result of industrial production processes or manufacturing."], "industrial society": ["A large-scale community with diverse manufacturing sectors and an infrastructure and economy based on the science, technology and instrumental rationality of the modern West."], "industrial waste": ["Waste materials discarded from industrial operations, or derived from manufacturing processes; may be solid, sludge (wet solids) or liquid wastes and may or may not be considered hazardous.\\n(Source: HMD / ISEP)"], "industry": ["A group of establishments engaged in the same or similar kinds of economic activities. They produce a range of commodities that are sold with the expectation of recovering the total cost of production."], "inert waste": ["Wastes that do not undergo any significant physical, chemical, or biological transformations when deposited in a landfill."], "infant mortality": ["The rate of deaths occurring in the first year of life for a given population."], "infection": ["The entry and development or multiplication of an infectious agent in the body of a living organism.", "Process in which a disease is transmitted."], "infectious disease": ["Pathogenic condition resulting from invasion of an host by a pathogen that propagates causing infection.", "A disease caused by a microorganism or other agent, such as a bacterium, fungus, or virus, that enters the body of an organism."], "infestation of crops": ["Invasion of crop by parasites."], "infiltration": ["Movement of water through the soil surface into the ground."], "inflammable substance": ["Substance liable to catch fire."], "informatics": ["Science and technique of data elaboration and of automatic treatment of information."], "information": ["All facts, ideas or imaginative works of the mind which have been communicated, published or distributed formally or informally in any format, or the knowledge that is communicated or received."], "information service": ["An organized system of providing assistance or aid to individuals who are seeking information, such as by using databases and other information sources to communicate or supply knowledge or factual data.\\n(Source: RHW / OMD)"], "information system": ["Any coordinated assemblage of persons, devices and institutions used for communicating or exchanging knowledge or data, such as by simple verbal communication, or by completely computerized methods of storing, searching and retrieving information.\\n(Source: MHD)"], "information technology": ["The systems, equipment, components and software required to ensure the retrieval, processing and storage of information in all centres of human activity (home, office, factory, etc.), the application of which generally requires the use of electronics or similar technology."], "infraction": ["A breach, violation, or infringement; as of a law, a contract, a right or duty.", "A crime less serious than a felony."], "infrared radiation": ["Electromagnetic radiation whose wavelengths lie in the range from 0.75 or 0.8 micrometer to 1000 micrometers."], "infrasound": ["Vibrations of the air at frequencies too low to be perceived as sound by the human ear, below about 15 hertz."], "infrastructure": ["The basic network or foundation of capital facilities or community investments which are necessary to support economic and community activities."], "inhabitant": ["A person occupying a region, town, house, country, etc.", "A human, officially being inhabitant of certain area inside well defined, and precise, borders - usually seen from a standpoint of census, government, register, etc."], "injury": ["A stress upon an organism that disrupts the structure or function and results in a pathological process."], "ink": ["A dispersion of a pigment or a solution of a dye in a carrier vehicle, yielding a fluid, paste, or powder to be applied to and dried on a substrate; writing, marking, drawing, and printing inks are applied by several methods to paper, metal, plastic, wood, glass, fabric, or other substrate."], "inland fishery": ["Fishing in lakes, streams, etc."], "inland navigation": ["The navigation of inland waterways, i.e. navigable rivers, canals, sounds, lakes, inlets, etc."], "inland water": ["A lake, river, or other body of water wholly within the boundaries of a state.\\n(Source: MGH)"], "inland waterways transport": ["Transportation of persons and goods by boats travelling on rivers, channels or lakes."], "innovation": ["Something newly introduced, such as a new method or device."], "inorganic chemistry": ["A branch of chemistry dealing with the chemical reactions and properties of all inorganic matter.\\n(Source: LEE)"], "inorganic substance": ["Chemical compound that does not contain carbon as the principal element (excepting carbonates, cyanides, and cyanates).\\n(Source: MGH)"], "insecticide": ["Any chemical agent used to destroy invertebrate pests."], "insectivore": ["(Insectivora) Order of placental mammals, being typically small, with simple teeth, and feeding on invertebrates.", "An animal with a diet that consists chiefly of insects and similar small creatures."], "in situ": ["In the natural or normal place."], "inspection": ["An official examination and evaluation of the extent to which specified goals, objectives, standards, policies or procedures of an agency, organization, department or unit have been met properly."], "inspection service": ["An organization designated to look into, supervise and report upon, the staff members and workings of some institution or department, or the conforming to laws and regulations by a segment of society or other group.\\n(Source: OED)"], "sound insulation material": ["Material used to reduce the transmission of sound to or from a body, device, room, etc."], "insurance": ["An agreement of providing financial protection contingencies, such as death, loss or damage and involving payment of regular premiums in return for a policy guaranteeing such protection.", "The business of providing a financial protection against most losses or harm to a person, property or a firm in return for premiums paid."], "insurance coverage": ["The protection provided against risks or a risk, often as specified by the type of protection or the item being protected."], "intensive farming": ["Farming in which as much use is made of the land as possible by growing crops close together or by growing several crops in a year or by using large amounts of fertilizers.\\n(Source: PHC)"], "interaction of pesticides": ["The enhancement of activity of pesticides when they are used in combination with others.\\n(Source: PARCOR)"], "interchange of electronic data": ["A transference of binary coded information items between two or more computers across any communications channel capable of carrying electromagnetic signals."], "interdisciplinary research": ["The utilisation, combination and coordination of two or more appropriate disciplines, technologies and humanities in an integrated approach toward problems."], "interest": ["A sum paid or charged for the use of money or for borrowing money over a given time period.", "A great attention and concern from someone or something.", "That which affects one's welfare or happiness.", "To attract attention or concern; to excite the curiosity of; to engage the interest of.", "To be on the mind of.", "To be of importance or consequence."], "interest group": ["A group of people who share common traits, attitudes, beliefs or objectives and who have formed a formal organization to serve specific concerns of the membership."], "interlaboratory comparison": ["Tests performed at the same time in different laboratories to validate the quality of the results."], "international agreement": ["Cooperation in international efforts to support global goals."], "international competitiveness": ["The ability of firms to strive with rivals in the production and sale of commodities in worldwide markets.\\n(Source: ODE / OED)"], "international convention": ["Treaties and other agreements of a contractual character between different countries or organizations of states creating legal rights and obligations between the parties."], "International Court of Justice": ["Judicial arm of the United Nations. It has jurisdiction to give advisory opinions on matters of law and treaty construction when requested by the General Assembly, Security Council or any other international agency authorised by the General Assembly to petition for such opinion. It has jurisdiction, also, to settle legal disputes between nations when voluntarily submitted to it.\\n(Source: BLACK)"], "international law": ["The system of law regulating the interrelationship of sovereign states and their rights and duties with regard to one another."], "international safety": ["Freedom from danger or the quality of averting risk of harm to persons, property or the environment shared across one or more national boundaries; consequently, the combined efforts of more than one nation to achieve or preserve that state.\\n(Source: OED / RHW)"], "international trade": ["The flow of commodities and goods between nations."], "interpretation method": ["Method employed in the assessment of the meaning and significance of data, results, facts, etc."], "intertidal zone": ["The area between land and sea which is regularly exposed to the air by the tidal movement of the sea."], "inventory": ["A detailed list of articles, goods, property, etc."], "inversion": ["A reversal in the usual direction of a process, as in the change of density of water at 4\u00b0 C.\\n(Source: PITT)"], "inversion layer": ["The atmosphere layer through which an inversion occurs."], "invertebrate": ["Any animal lacking a backbone, including all species not classified as vertebrates.", "Lacking a backbone."], "investment": ["Any item of value purchased for profitable return, as income, interest or capital appreciation."], "in vitro assay": ["Assay taking place in an artificial environment."], "in vivo assay": ["Experiment that is carried out in the living organism."], "iodine": ["A nonmetallic halogen element; the poisonous, corrosive dark plates or granules are readily sublimed; insoluble in water, soluble in common solvents; used as germicide and antiseptic, in dyes, tinctures, and pharmaceuticals, in engraving lithography, and as a catalyst and analytical reagent."], "ion exchange": ["The process in which ions are exchanged between a solution and an insoluble solid, usually a resin."], "ion exchanger": ["A permanent insoluble material (usually a synthetic resin) which contains ions that will exchange reversibly with other ions in a surrounding solution."], "ionosphere": ["A region of the earth's atmosphere, extending from about 60 to 1000 kilometers above the earth's surface, in which there is a high concentration of free electrons and ions formed as a result of ionizing radiation entering the atmosphere from space."], "ion": ["An electrically charged atom or group of atoms formed by the loss or gain of one or more electrons."], "iron": ["A malleable ductile silvery-white ferromagnetic metallic element with symbol Fe and atomic number 26, occurring principally in haematite and magnetite. It is widely used for structural and engineering purposes.", "Made out of iron.", "A small appliance used in ironing to remove wrinkles from fabric.", "To remove wrinkles from fabric."], "irradiation": ["Exposure to or treatment with light or other electromagnetic radiation or with beams of particles."], "irrigation": ["The act of supplying land with water so that crops and plants will grow or grow stronger."], "irrigation canal": ["A permanent irrigation conduit constructed to convey water from the source of supply to one or more farms."], "irrigation farming": ["Farming based on the artificial distribution and application of water to arable land to initiate and maintain plant growth.\\n(Source: GOODa)"], "island": ["A land mass, especially one smaller than a continent, entirely surrounded by water.", "A barrier on roads and highways between the opposing flows of traffic, usually covered with vegetation.", "Area in the middle of a road where pedestrians can wait while crossing."], "island ecosystem": ["Unique but fragile and vulnerable ecosystem due to the fact that the evolution of their flora and fauna has taken place in relative isolation. Many remote islands have some of the most unique flora in the world; some have species of plants and animals that are not found anywhere else, which have evolved in a specialized way, sheltered from the fierce competition that species face on mainland."], "isomer": ["Two or more compounds having the same molecular formula, but a different arrangement of atoms within the molecule. (Source: CED / MGH)", "One of two or more chemical substances having the same elementary percentage composition and molecular weight but differing in structure, and therefore in properties; there are many ways in which such structural differences occur.\\n(Source: CED / MGH)"], "isotope": ["Any of two or more atoms with the same atomic number that contain different numbers of neutrons."], "ivory": ["The fine-grained creamy-white dentine forming the tusks of elephants, and the teeth or tusks of certain other large animals such as the walrus; it has long been esteemed for a wide variety of ornamental articles.\\n(Source: BJGEO)"], "joint debtor": ["Persons united in a joint liability or indebtedness. Two or more persons jointly liable for the same debt."], "judicial assistance": ["A program sponsored or administered by a government to guide through and represent in court proceedings persons who are in financial need and cannot afford private counsel.\\n(Source: BLD)"], "judicial body": ["Any public organization or branch of government responsible for the administration of justice or the enforcement of laws.\\n(Source: BLD)"], "jurisdiction": ["The power of a court to hear and decide a case or give a certain punishment or sanction.", "The area or territory where a particular person or group of people (such as a court) has the right to excersise their legal authority."], "jurisprudence": ["The science or philosophy of law."], "karst": ["A geological formation resulting from the erosion of carbonate rocks."], "stocking": ["A soft garment worn on the foot and lower leg, usually knit or woven, worn under shoes or other footwear."], "kerosene": ["Higly refined kerosene used as fuel for jet engines.", "Higly refined sulphurless kerosene used for kerosene lamps, lanterns and portable stoves and produces very little soot."], "laboratory": ["A room or building with scientific equipment for doing scientific tests or for teaching science, or a place where chemicals or medicines are produced."], "laboratory experiment": ["Experimental tests or investigations carried out in a laboratory.\\n(Source: CEDa)"], "laboratory research": ["Research carried out in a laboratory for testing chemical substances, growing tissues in cultures, or performing microbiological, biochemical, hematological, microscopical, immunological, parasitological tests, etc.\\n(Source: PHC)"], "laboratory technique": ["The sum of procedures used on natural sciences such as chemistry, biology, physics in order to conduct an experiment, all of them following the scientific method."], "laboratory waste": ["Discarded materials produced by analytical and research activities in a laboratory.\\n(Source: ERG)"], "lacquer": ["A material which contains a substantial quantity of a cellulose derivative, most commonly nitrocellulose but sometimes a cellulose ester, such as cellulose acetate or cellulose butyrate, or a cellulose ether such as ethyl cellulose; used to give a glossy finish, especially on brass and other bright metals."], "lagoon": ["A body of water cut off from the open sea by coral reefs or sand bars."], "lake basin": ["The depression in the Earth's surface occupied or formerly occupied by a lake."], "lake pollution": ["The direct or indirect human alteration of the biological, physical, chemical or radiological integrity of lake water, or a lake ecosystem.\\n(Source: Landy)"], "lake": ["An enclosed body of water, usually but not necessarily fresh water, from which the sea is excluded."], "lamp": ["A device for producing light."], "land": ["A specified geographical tract of the Earth's surface including all its attributes, comprising its geology, superficial deposits, topography, hydrology, soils, flora and fauna, together with the results of past and present human activity, to the extent that these attributes exert a significant influence on the present and future land utilization.\\n(Source: WHIT)", "The range occupied by a community or other group.", "To descend to a surface, especially from the air; to arrive on shore.", "The part of Earth which is not covered by oceans or other bodies of water.", "A partitioned and measurable area on the Earth which is owned.", "Area that is suitable for farming.", "In a compact disc or similar recording medium, an area of the medium which does not have pits.", "The space between the rifling grooves in a gun.", "A strip area in a field between furrows made for irrigation.", "The geographic area under the control of a political state.", "Territorial possessions.", "To descend, reach or come to rest.", "To deliver (a blow)."], "land and property register": ["The system of registering certain legal estates or interests in land. It describes the land and any additional rights incidental to it, such as rights of way over adjoining land.\\n(Source: DICLAW)"], "land clearing": ["Removal of trees, undergrowth, etc. in preparation for ploughing, building, etc."], "land consolidation": ["Joining small plots of land together to form larger farms or large fields."], "land cover": ["Interface between the earth's crust and the atmosphere made of a combination of vegetation, soil, rock, water and human-made structures."], "land ecology": ["Study of the relationship between terrestrial organisms and their environment."], "landfill": ["A site where garbage is collected and buried."], "landfill covering": ["The protective shielding, consisting of soil or some other material, that encloses disposal sites for waste to minimize the chance of releasing hazardous substances into the environment."], "landfill degasification": ["Landfill gas is highly dangerous as methane is highly explosive; therefore it must be controlled at all operational landfill sites, whether by active or passive ventilation or both especially in the case of deep sites. There exist venting systems for shallow and deep sites respectively.\\n(Source: PORT)"], "landform": ["Any physical, recognizable form or feature of the Earth's surface, having a characteristic shape and produced by natural causes; it includes major forms such as plane, plateau and mountain, and minor forms such as hill, valley, slope, esker, and dune. Taken together the landforms make up the surface configuration of the Earth's.\\n(Source: BJGEO)"], "land mammal": ["Mammal that lives on shore."], "land planning": ["The activity of designing, organizing or preparing for the future use of solid areas of the earth's surface, especially regions valued for natural resources, utilized as agricultural resources or considered for human settlement.\\n(Source: RHW)"], "land register": ["A public register containing information on the land and landowners."], "landscape": ["The traits, patterns, and structure of a specific geographic area.", "A mode of printing where the horizontal sides are longer than the vertical sides."], "landscape architecture": ["The creation, development, and decorative planting of gardens, grounds, parks, and other outdoor spaces."], "landscape conservation": ["The safeguarding, for public enjoyment, of landscape and of opportunities for outdoor recreation, tourism and similar activities; the concept includes the preservation and enhancement not only of what has been inherited but the provision of new amenities and facilities."], "landscape ecology": ["The study of landscapes taking account of the ecology of their biological populations. The subjects thus embraces geomorphology and ecology and is applied to the design and architecture of landscapes.\\n(Source: ALL2)"], "landslide": ["Mass-movement landforms and processes involving the downslope transport, under gravitationary influence of soil and rock material en masse."], "land value": ["The monetary or material worth in commerce or trade of an area of ground considered as property."], "laser": ["A device that produces a powerful, highly directional, monochromatic, coherent beam of light."], "laundering": ["The act of washing and ironing clothes, linen, etc."], "law amendment": ["An alteration of or addition to any statute with legal force that, if approved by the appropriate legislative authority, supersedes the original statute."], "law enforcement": ["Any variety of activities associated with promoting compliance and obedience to the binding rules of a state, especially the prevention, investigation, apprehension or detention of individuals suspected or convicted of violating those rules."], "leaching": ["1) The process of separating a liquid from a solid (as in waste liquid by percolation into the surrounding soil. \\n2) Extraction of soluble components of a solid mixture by percolating a solvent through it.\\n3) To lose or cause to lose soluble substances by the action of a percolating liquid."], "lead": ["A heavy toxic bluish-white metallic element with symbol Pb and atomic number 82 that is highly malleable; occurs principally as galena and is used in alloys, accumulators, cable sheaths, paints, and as a radiation shield.", "To be ahead of others, e.g., in a race.", "The distance that a shooter aims ahead of a moving target in order to hit it with the projectile.", "To treat with lead.", "To move ahead (of others) in time or space.", "A small stick of graphite used in pencil that leaves marks when rubbed against a surface."], "lead compound": ["A chemical compound present as gasoline additives, in paint, ceramic products, roofing, caulking, electrical applications, tubes, or containers. Lead exposure may be due to air, water, food, or soil. Lead in the air is primarily due to lead-based fuels and the combustion of solid waste, coal, oils, and emissions from alkyl lead manufacturers, wind blown dust volcanoes, the burning of lead-painted surfaces, and cigarette smoke. Lead in drinking water comes from leaching from lead pipes, connectors, and solder in both the distribution system and household plumbing.\\n(Source: KOREN)"], "lead level in blood": ["A measure of the amount of lead or lead salts absorbed by the body as a possible sign of acute or chronic lead poisoning, which can affect the nervous, digestive or muscular systems."], "leaf": ["The main organ of photosynthesis and transpiration in higher plants, usually consisting of a flat green blade attached to the stem directly or by a stalk.", "A sheet of a book, magazine, etc (consisting of two pages, one on each face of the leaf)."], "leakage": ["The accidental, uncontrolled discharge or seepage of liquids, gases and other substances to unintended and unwanted locations, frequently causing risks of damage or harm to persons, property or the environment."], "leather": ["The dressed or tanned hide of an animal, usually with the hair removed."], "leather industry": ["Industry for the production of leather goods such as garments, bags, etc."], "legal basis": ["The fundamental law or judicial precedent that warrants or supports a subsequent decision or action by any governmental, corporate or private entity."], "legal regulation": ["Any order or rule issued by a government stipulating its procedures for the creation, execution or adjudication of laws."], "legal remedy": ["The means by which a right is enforced or the violation of a right is prevented, redressed, or compensated.\\n(Source: BLACK)"], "legal text": ["The exact wording or language of a law or other document in conformity with the law or having the authority of law.\\n(Source: BLD)"], "legislation": ["The act or process of making laws."], "legislative authority": ["The power of a deliberative assembly of persons or delegates to bring a bill, resolution or special act to an official, legally binding status.\\n(Source: RHW)"], "legislative competence": ["The skill, knowledge, qualification, capacity or authority to make, give or enact rules with binding force upon a population or jurisdiction."], "legislature": ["The department, assembly, or body of persons that makes statutory laws for a state or nation."], "leisure time": ["Time free from work or other duties; spare time."], "lepidopteran": ["Any insect of the order Lepidoptera that has a slender body with clubbed antennae and typically rests with the wings (which are often brightly coloured) closed over the back."], "levy": ["A ratable portion of the produce of the property and labor of the individual citizens, taken by the nation, in the exercise of its sovereign rights, for the support of government, for the administration of the laws, and as the means for continuing in operation the various legitimate functions of the state."], "lexicon": ["The vocabulary of a particular sphere of activity, region, social class or individual, or the total set of morphemes or meaningful units of a language and its words."], "liability": ["Subjection to a legal obligation. Liability is civil or criminal according to whether it is enforced by the civil or criminal courts.", "Responsibility to someone or for some activity.", "An obligation to pay money to another party.", "The quality of being something that holds you back."], "library": ["Place where books and other literary materials are kept.", "A collection of subroutines used to develop software."], "lichen": ["Composite organisms formed by the symbiosis between species of fungi and an algae."], "life cycle": ["The phases, changes, or stages through which an organism passes throughout its lifetime.", "The useful life of a product or system; the developmental history of an individual or group in society."], "life science": ["A science based on living organisms collectively."], "lifestyle": ["The particular attitudes, habits or behaviour associated with an individual or group."], "light": ["A device for producing light.", "Electromagnetic radiation that is capable of causing a visual sensation.", "To start (a fire).", "To give light to (something).", "Of low weight.", "Object, natural or artificial, that produces light.", "Having colors relat\u0131vely near white.", "(of the military or industry) using (or being) relatively small or light weapons or equipment.", "Low in degree or quantity or number (e.g. of rain, snow, accent).", "Psychologically light; especially free from sadness or troubles.", "Low in fat, calories, alcohol, salt, etc.", "(used of soil) loose and large-grained in consistency."], "lighting": ["The supply of illumination in streets or dwellings."], "separator of light liquids": ["A mechanical device for separating and removing residues from fuel and lubricating oil from waste water coming from filling stations and industrial plants in order to avoid pollution of water bodies; this system is based on the different specific weights of water and fuel residues that float on the water and can be easily removed."], "lignite": ["Coal of relatively recent origin consisting of accumulated layers of partially decomposed vegetation, intermediate between peat and bituminous coal; often contains patterns from the wood from which it formed.\\n(Source: MGH / CED / WRIGHT)"], "lignite mining": ["Extraction of brown coal from natural deposits; lignite is a brownish-black solid fuel in the second stage in the development of coal. It has a little over half the heating value of bituminous or anthracite coal.\\n(Source: KORENa)"], "lime": ["Any of various mineral and industrial forms of calcium oxide differing chiefly in water content and percentage of constituent such as silica, alumina and iron.", "A green citrus fruit"], "limestone": ["A sedimentary rock consisting chiefly of calcium carbonate, primarily in the form of the mineral calcite and with or without magnesium carbonate."], "limnology": ["The study of bodies of fresh water with reference to their plant and animal life, physical properties, geographical features, etc.\\n(Source: CED)"], "linear source of sound": ["Point noise sources placed one after the other one as, for instance, in a row of cars moving on a road.\\n(Source: VALAMB)"], "line source": ["A source of air, noise, water contamination or electromagnetic radiation that emanates from a linear source such as a road."], "lipid": ["One of a class of compounds which contain long-chain aliphatic hydrocarbons and their derivatives, such as fatty acids, alcohols, amines, amino alcohols, and aldehydes; includes waxes, fats, and derived compounds.\\n(Source: MGH)"], "liquefied gas": ["A gaseous compound or mixture converted to the liquid phase by cooling or compression; examples are liquefied petroleum gas (LPG), liquefied natural gas (LNG), liquid oxygen, and liquid ammonia."], "liquid manure": ["Any fertilizer substance with a moisture content of over ninety percent, usually consisting of animal excrement with water added.", "Liquid excrements of animals and people, accumulated for reuse as fertilizer."], "liquid state": ["A state of matter intermediate between that of crystalline substances and gases in which a substance has the capacity to flow under extremely small shear stresses and conforms to the shape of a confining vessel, but is relatively incompressible, lacks the capacity to expand without limit, and can posses a free surface."], "literature": ["Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest."], "literature data bank": ["A fund of information on a particular subject or group of related subjects, divided into discrete documents and usually stored in and used with a computer system.\\n(Source: RHW)"], "literature study": ["The identification, description, analysis and classification of books and other materials used or consulted in the preparation of a work.\\n(Source: WEBSTE)"], "lithosphere": ["The solid portion of the Earth, as compared with the atmosphere and the hydrosphere.\\n(Source: BJGEO)"], "litter": ["Straw, hay or similar material used as bedding by animals.", "Small pieces of garbage, such as cans, bottles and wrappings, that people have left in a public place.", "A seat mounted on a frame with two poles on which a person can be carried."], "littoral": ["The intertidal zone of the seashore."], "livestock": ["Cattle, horses, and similar animals kept for domestic use especially on a farm."], "livestock breeding": ["The raising of livestock by crossing different varieties to obtain new varieties with desired characteristics."], "livestock farming": ["Breeding of cattle, horses and similar animals."], "living space": ["Any room, structure or area used as a residence and associated with subsistence activities, including sleeping, relaxing or eating."], "lizard": ["(Sauria) A reptile of the order Squamata.", "Any reptile of the suborder Lacertilia, especially those of the family Lacertidae, typically having an elongated body, four limbs, and a small tail: includes the gechos, iguanas, chameleons, monitors, and slow worms."], "load bearing capacity": ["The maximum load that a system can support before failing."], "teleheating": ["The supply of heat, either in the form of steam or hot water, from a central source to a group of buildings."], "local traffic": ["Traffic moving within a city, town, or area and subject to frequent stops, as distinguished from long distance traffic."], "locomotive": ["A self-propelled engine driven by steam, electricity or diesel power and used for drawing trains along railway tracks."], "long-distance traffic": ["Traffic moving over extended areas, great distances and usually not subject to frequent stops."], "long-term effect": ["Effect which will last long after the cause has ceased."], "long-term trend": ["The prevailing tendency or general direction expected for some observed value over a lengthy and extended period of time, often determined by studying and analyzing statistical data."], "lorry": ["A large motor vehicle of more than 3,500 kilograms designed for carrying cargo.", "Any motor vehicle designed for carrying cargo, including vans and pickups.", "Small rail car wihout cover to transport goods out of mines or quarries."], "loss": ["The result of a business operation where overhead costs are greater than the receipts or income.\\n(Source: ISEP / ODE)", "The act of being defeated and losing something, such as a match."], "loss of biotope": ["Destruction of biotopes produced by environmental degradation which in turn is caused by air- or water-borne pollution.\\n(Source: WPR)"], "loudness": ["The magnitude of the physiological sensation produced by a sound, which varies directly with the physical intensity of sound but also depends on frequency of sound and waveform."], "low-cost housing": ["Residences built at minimal expense and designed to keep the rental rate or price of purchase affordable for persons with limited means, usually determined by an annual income level set below the local median."], "Lower House": ["The body of a bicameral legislature composed of representatives elected by the general populace and organized into electorates or districts, each comprising an equal number of citizens.\\n(Source: CIV)"], "low-level flight": ["Flying at low altitude."], "low-level technology": ["Any relatively unsophisticated technical equipment or method with an amplitude or functionality below what is available in a similar or comparable system.\\n(Source: RHW / APD)"], "lubricant": ["A substance used to reduce friction between parts or objects in relative motion.\\n(Source: MGH)"], "luminosity": ["The functional relationship between stellar magnitude and the number and distribution of stars of each magnitude interval. Also known as relative luminosity factor.", "The ability of emitting or reflecting light."], "lye": ["The alkaline solution that is obtained from the leaching of wood ashes.\\n(Source: MGH)"], "lymphatic system": ["A system of vessels and nodes conveying lymph in the vertebrate body, beginning with capillaries in tissue spaces and eventually forming the thoracic ducts which empty in the subclavian veins.\\n(Source: MGH)"], "lysimetry": ["The measurement of the water percolating through soils and the determination of the materials dissolved by the water."], "machine manufacture": ["The making or production of mechanical apparatuses used for commercial or industrial purposes, such as engines and turbines, elevators and conveying equipment, computers and office equipment, and hoists, cranes and industrial trucks."], "macroeconomic goal": ["An aim or objective pertaining to the production, distribution and use of income, wealth and commodities in a country, region or other large area, typically concerned with governmental fiscal and monetary policy as it affects employment, consumption, investment and growth levels.\\n(Source: ODE)"], "macroeconomics": ["Modern economic analysis that is concerned with data inaggregate as opposed to individual form such as national income, consumption and investment."], "magnetic tape": ["A plastic, paper, or metal tape that is coated or impregnated with magnetizable iron oxide particles, used in magnetic recording.\\n(Source: MGH)"], "magnetism": ["A class of physical phenomena associated with moving electricity, including the mutual mechanical forces among magnets and electric currents."], "mailing list": ["A series of addresses or e-mail addresses to which solicited or unsolicited mass mailings can be sent.\\n(Source: RHW)"], "malaria": ["A group of human and animal febrile diseases with a chronic relapsing course caused by hemosporidian blood parasites of the genus Plasmodium, transmitted by the bite of Anopheles mosquito."], "malformation": ["Permanent structural change that may adversely affect survival, development or function.\\n(Source: KOREN)"], "malnutrition": ["Defective nutrition due to inadequate intake of nutrients or to their faulty digestion, assimilation or metabolism."], "mammal": ["Any animal of the Mammalia class, a class of warm-blooded vertebrates having a thoracic diaphragm, a four-chambered heart and in which the females feed the young with their own milk."], "management": ["The management or direction of the affairs of a public or private office, business or organization.", "Government, control, superintendence, physical or manual handling or guidance; act of managing by direction or regulation, or administration, as management of family, or of household, etc.\\n(Source: BLACK)"], "mandate": ["A command or authorization to act in a particular way given by an administrator to a subordinate, a court to a lower court or an electorate to its representative.\\n(Source: RHW)"], "mangrove": ["Any of various tropical evergreen trees or shrubs that grow in shallow coastal water; Plants of the Rhizophoraceae family and/or of the genus Rhizophora."], "mangrove swamp": ["A wet, spongy area of land in tropical climates and along coastal regions that is dominated by mangrove trees and shrubs, particularly red mangroves (Rhizophora), black mangroves (Avicennia) and white mangroves (Laguncularia)."], "man-made climate change": ["Man-made climate changes due to the greenhouse effect and other human activities."], "man-nature relationship": ["The interrelationship between human activity and geographical environment."], "manpower": ["The power generated by a man working."], "manufacturing trade": ["The process or act of exchanging, buying or selling any manufactured product, or the raw materials for any manufacturing process.\\n(Source: RHW / ISEP)"], "manure": ["Animal excreta collected from stables and barnyards with or without litter; used to enrich the soil."], "map": ["A representation, normally on a flat medium, that displays the physical and political features of a surface area of the earth, showing them in their respective forms, sizes and relationships according to some convention of representation.", "The visual representation of a person or an object.", "Representation of the location of datasets in a computer memory to speed up access and visualization."], "mapping": ["The process of making a map of an area; especially the field work necessary for the production of a map.", "Representation of the location of datasets in a computer memory to speed up access and visualization."], "mapping of lichens": ["Maps of lichens distribution indicating air quality. Fruticose lichens (with branched structures well above the surface) are more susceptible to SO2 damage than foliose lichens (whose leaflike thallus lies nearly flat on surface) and both in turn are more susceptible than crustose lichens (which embed their tissue in the cracks of bark, soil, or rocks). The use of morphological lichen types as indicators of air pollution concentrations is well developed.\\n(Source: WESTM)"], "marble": ["Metamorphic rock composed of recrystallized calcite or dolomite."], "marginal land": ["Low quality land the value of whose production barely covers its cultivation costs."], "mariculture": ["Cultivation of marine organisms in their natural habitats, usually for commercial purposes."], "marina": ["A small port that is used for pleasure rather than trade, often with hotels, restaurants and bars."], "marine biology": ["A branch of biology that deals with those living organisms which inhabit the sea.\\n(Source: MGH)"], "marine ecology": ["An integrative science that studies the basic structural and functional relationships within and among living populations and their physical-chemical environments in marine ecosystems. Marine ecology focuses on specific organisms as well as on particular environments or physical settings."], "marine ecosystem": ["Any marine environment, from pond to ocean, in which plants and animals interact with the chemical and physical features of the environment."], "marine engineering": ["The design, construction, installation, operation, and maintenance of main power plants, as well as the associated auxiliary machinery and equipment, for the propulsion of ships.\\n(Source: MGH)"], "marine environment": ["The oceans, seas, bays, estuaries, and other major water bodies, including coastal marine and nearshore zones."], "marine fauna": ["Animals which live in the sea."], "marine fishery": ["The harvest of animals and plants from the ocean to provide food and recreation for people, food for animals, and a variety of organic materials for industry."], "marine geology": ["That aspect of the study of the ocean that deals specifically with the ocean floor and the ocean-continent border, including submarine relief features, the geochemistry and petrology of the sediments and rocks of the ocean bottom and the influence of seawater and waves on the ocean bottom and its materials.\\n(Source: BJGEO)"], "marine pollution": ["Any detrimental alteration of the marine environment caused by the intentional or accidental release of dangerous or toxic substances, such as industrial, commercial and urban waste water."], "marine reserve": ["Sea area where marine wildlife is protected."], "marine sediment": ["Solid fragmental material, originated from weathering of rocks, that has settled down from a state of suspension in the water."], "maritime law": ["That system of law which particularly relates to marine commerce and navigation, to business transacted at sea or relating to navigation, to ships and shipping, to seamen, to the transportation of persons and property by sea, and to marine affairs generally.", "The area of law that deals with ships at sea and the rights of sailors, passengers, and owners of cargo."], "maritime navigation": ["Travelling on the sea by means of boats, ships, etc.\\n(Source: CEDa)"], "marker": ["Small amount of an easily detected substance that can be used to follow and quantify the flow of materials or movement of organisms not otherwise visible or detectable by ordinary means.", "A pen with a wide tip made of felt or fibre.", "An isotope of an element, a small amount of which may be incorporated into a sample of material in order to follow the course of that element through a chemical, biological, or physical process, and thus also follow the larger sample. The tracer may be radioactive, in which case observations are made by measuring the radioactivity.\\n(Source: ECHO1)"], "tracer": ["A minute quantity of radioactive isotope used in medicine or biology to study the chemical changes within living tissues.", "A person or thing that traces."], "market": ["Place of commercial activity in which articles are bought and sold."], "market economy": ["A mixed economy that relies heavily on markets to answer the three basic questions of allocation, but with a modest amount of government involvement. While it is commonly termed capitalism, market-oriented economy is much more descriptive of how the economy is structured.\\n(Source: AMOS2)"], "market form": ["The organizational form or structure of the trade or traffic of a particular commodity.\\n(Source: ISEP / RHW)"], "marketing": ["A related group of business activities whose purpose is to satisfy the demands for goods and services of consumers, businesses and government."], "market research": ["The systematic gathering, recording, computing, and analysing of data about problems relating to the sale and distribution of goods and services for certain time periods."], "marsupial": ["Type of mammal with a pouch in which the young are carried."], "material": ["The substance of which a product is made or composed.", "Worldly, as opposed to spiritual.", "Having to do with matter."], "balance of matter": ["A calculation to inventory material inputs versus outputs in a process system."], "material life cycle": ["All the stages involved in the manufacturing, distribution and retail, use and re-use and maintenance, recycling and waste management of materials."], "materials science": ["The study of the nature, behaviour, and use of materials applied to science and technology."], "mathematical analysis": ["The branch of mathematics most explicitly concerned with the limit process or the concept of convergence; includes the theories of differentiation, integration and measure, infinite series, and analytic functions.\\n(Source: MGH)"], "maximum immission concentration": ["The maximum concentration of air polluting substances in the free environment whose impact when of specified duration and frequency is not objectionable to man, fauna and flora.\\n(Source: ECHO2)"], "meadow": ["Strictly a term for a field of permanent grass used for hay, but also applied to rich, waterside grazing areas that are not suitable for arable cultivation.\\n(Source: GOOD)", "A piece of land covered or cultivated with grass, usually intended to be mown for hay."], "measuring": ["The ability of the analytical method or protocol to quantify as well as identify the presence of the substance in question.\\n(Source: LEE)"], "meat": ["The edible flesh of animals, especially that of mammals."], "mechanical engineering": ["The branch of engineering concerned with the design, construction, and operation of machines.\\n(Source: CED)"], "medical science": ["The science and art of treating and healing."], "medicinal plant": ["Plants having therapeutic properties."], "Mediterranean Area": ["The collective islands and countries of the inland sea between Europe, Africa and Asia that is linked to the Atlantic Ocean at its western end by the Strait of Gibraltar and includes the Tyrrhenian, Adriatic, Aegean and Ionian seas."], "melting": ["A change of the state of a substance from the solid phase to the liquid phase. (Source: MGH)"], "membrane": ["A thin tissue that encloses or lines biological cells, organs, or other structures."], "mercury": ["A heavy silvery-white toxic liquid metallic element with symbol Hg and atomic number 80 occurring principally in cinnabar: used in thermometers, barometers, mercury-vapour lamps, and dental amalgams."], "metabolism": ["All the chemical reactions that take place in a living organism, comprising both anabolism and catabolism."], "metabolite": ["A product of intermediary metabolism."], "metallic mineral": ["Mineral containing metals, such as bauxite, pyrite, etc."], "metal oxide": ["Any binary compound in which oxygen is combined with one or more metal atoms."], "metal plating": ["A thin, adherent layer of metal on an object."], "metal": ["An opaque crystalline material usually of high strength with good electrical and thermal conductivities, ductility and reflectivity."], "meteorological forecasting": ["A branch of science that studies the dynamics of the atmosphere and the direct effects of the atmosphere upon the Earth's surface, oceans and inhabitants, focusing particularly on weather and weather conditions."], "meteorology": ["The science concerned with the atmosphere and its phenomena."], "methane": ["A colourless, odourless, and tasteless gas, lighter than air and reacting violently with chlorine and bromine in sunlight, a chief component of natural gas; used as a source of methanol, acetylene, and carbon monoxide."], "methodology": ["The system of methods and principles used in a particular discipline."], "metropolis": ["A large city, specifically that city in a country which is the seat of government, of ecclesiastical authority, or of commercial activity.\\n(Source: GOOD)"], "microbiological analysis": ["Analysis for the identification of viruses, bacteria, fungi and parasites."], "microbiology": ["The science and study of microorganisms, including protozoans, algae, fungi, bacteria, viruses, and rickettsiae.\\n(Source: MGH)"], "microclimate": ["The local, rather uniform climate of a specific place or habitat, compared with the climate of the entire area of which it is a part."], "microclimate effect": ["An effect on the climate on a small scale, such as a single forest or other bounded area."], "microclimatology": ["The study of a microclimate, including the study of profiles of temperature, moisture and wind in the lowest stratum of air, the effects of the vegetation and of shelterbelts, and the modifying effects of towns and buildings.\\n(Source: MGH)"], "microcomputer": ["A microprocessor combined with input/output interface devices, some type of external memory, and the other elements required to form a working computer system; it is smaller, lower in cost, and usually slower than a minicomputer.\\n(Source: MGH)"], "microecosystem": ["A small-scale, simplified, experimental ecosystem, laboratory- or field- based, which may be: a) derived directly from nature (e.g. when samples of pond water are maintained subsequently by the input of artificial light and gas-exchange); or b) built up from axenic cultures (a culture of an organism that consists of one type of organism only, i.e. that is free from any contaminating organism) until the required conditions of organisms and environment are achieved. Also known as microcosm.\\n(Source: ALL2)"], "microelectronics": ["The technology of constructing circuits and devices in extremely small packages by various techniques.\\n(Source: MGH)"], "microfiltration": ["The separation or removal from a liquid of particulates and microorganisms in the size range of 0.1 to 0.2 microns in diameter."], "micropollutant": ["Pollutant which exists in very small traces in water.\\n(Source: PHC)"], "microscopy": ["The interpretative application of microscope magnification to the study of materials that cannot be properly seen by the unaided eye."], "microwave": ["An electromagnetic wave which has a wavelength between about 0.3 and 30 centimeters, corresponding to frequencies of 1-100 gigahertz; however there are no sharp boundaries between microwaves and infrared and radio waves.", "An appliance for cooking food using microwave energy.", "To cook or heat in a microwave oven."], "animal migration": ["Movements that particular animals carry out regularly often between breeding places and winter feeding grounds."], "migratory bird": ["A bird which migrates in a group."], "migratory species": ["A species that moves from one biome to another for food or to breed."], "military air traffic": ["Air traffic of or relating to the armed forces."], "military zone": ["Area whose utilization is exclusively reserved to the army."], "milk": ["The whitish fluid secreted by the mammary gland for the nourishment of the young; composed of carbohydrates, proteins, fats, mineral salts, vitamins, and antibodies.", "To draw milk from (a mammal, especially a cow)."], "mill": ["A building where grain is crushed into flour.", "An establishment where products are manufactured using industrial methods."], "mine": ["An opening or excavation in the earth for extracting minerals.\\n(Source: MGH)", "An explosive device, concealed under or on the ground and designed to destroy or disable enemy targets as they pass over or near the device.", "To extract from the earth by excavation."], "mineral deposit": ["A mass of naturally occurring mineral material, e.g. metal ores or nonmetallic mineral, usually of economic value, without regard to mode of origin.\\n(Source: BJGEO)"], "mineralogy": ["The science which concerns the study of natural inorganic substances called minerals.\\n(Source: MGH)"], "mineral": ["A naturally occurring substance with a characteristic chemical composition expressed by a chemical formula; may occur as individual crystals or may be disseminated in some other material or rock."], "mineral water": ["Water containing naturally or artificially supplied minerals or gases."], "mining district": ["A district where mineral exploitation is performed."], "mining engineering": ["Engineering concerned with the discovery, development and exploitation of coal, ores, and minerals, as well as the cleaning, sizing and dressing of the product."], "mining geology": ["The study of geologic aspects of mineral deposits, with particular regard to problems associated with mining."], "mining industry": ["A sector of the economy in which an aggregate of commercial enterprises is engaged in the extraction of minerals occurring naturally, often involving quarrying, well operations, milling, exploration and development.\\n(Source: SIC)"], "mining regulation": ["A rule or order prescribed by government or management to promote the safety, legality or ecological responsibility of any aspect of the process or industry of ore extraction.\\n(Source: BLD)"], "ministry": ["The body of top government administrators or other high ranking public officials that are selected by a head of state to manage certain aspects of a state's affairs, as opposed to civil servants whose tenure is unaffected by public changes resulting from democratic elections or some other process."], "minority": ["A group that is different racially, politically, etc. from a larger group of which it is a part."], "miscibility": ["The tendency or capacity of two or more liquids to form a uniform blend, that is, to dissolve in each other; degrees are total miscibility, partial miscibility, and immiscibility.\\n(Source: MGH)"], "mite": ["An order of small Arachnida with rounded bodies. Mites are very abundant in the soil, feeding on plant material and invertebrate animals. Some parasitic mites (e.g. red spider) damage crops and can be serious pests. Others cause diseases in animals. Ticks are blood-suckers, some being vectors of diseases such as Rocky Mountain spotted fever in humans and fowls, and louping ill in cattle and sheep.\\n(Source: ALL)"], "mitigation measure": ["Any procedure or action undertaken to reduce the adverse impacts that a project or activity may have on the environment.\\n(Source: TOE)"], "mixed forest": ["A forest composed of broadleaf trees and coniferous trees."], "mixed use area": ["Use of land for more than one purpose; e.g. grazing of livestock, watershed and wildlife protection, recreation, and timber production.\\n(Source: RRDA)"], "mixing": ["The intermingling of different materials to produce a homogeneous mixture."], "mobile home": ["Living quarters mounted on wheels and capable of being towed by a motor vehicle.\\n(Source: CED)"], "model": ["A representation, usually on a smaller scale, of a device, structure, etc. \\n(Source: CED / LEE)", "A person who serves as a subject for artwork, usually in the medium of photography but also for painting or drawing.", "Person whose job is to wear clothes in order to present them.", "A quantitative or mathematical representation or computer simulation which attempts to describe the characteristics or relationships of physical events.", "A grouping based on shared characteristics.", "To display an object for others to see, especially in regard to wearing clothing while performing the role of a fashion model.", "To create from a substance such as clay.", "A typical example or instance.", "A type of product."], "moisture": ["Water that is dispersed through a gas in the form of water vapour or small droplets, dispersed through a solid, or condensed on the surface of a solid."], "molecular biology": ["The study of the chemical structures and processes of biological phenomena at the molecular level; the discipline is particularly concerned with the study of proteins, nucleic acids, and enzymes, the macromolecules essential to life processes. It seeks to understand the molecular basis of genetic processes. Techniques used include X-ray diffraction and electron microscopy.\\n(Source: GILP96)"], "monitoring": ["The regularly checking in order to perceive change in some quality or quantity.\\n(Source: BRACK)"], "monitoring technique": ["Techniques employed in the process of checking, observing and measuring events, processes or physical, chemical, biological and environmental phenomena.\\n(Source: ZINZANa / DUNSTEa)"], "monopoly": ["The market condition where a particular commodity or service has only one seller."], "monument": ["An object, especially large and made of stone, built to remember and show respect to a person or group of people, or a special place made for this purpose.", "A burial vault (usually for some famous person)."], "moor": ["A tract of unenclosed waste ground, usually covered with heather, coarse grass, bracken, and moss."], "moral persuasion": ["Appealing to the ethical principles or beliefs of an adversary or the public to convince the adversary to change behavior or attitudes."], "morphology": ["The branch of biology concerned with the form and structure of organisms.", "In linguistics, the study of word structure."], "mortality": ["The number of deaths occurring in a given population for a given period of time."], "moss": ["Any plant of the class Bryophyta, occurring in nearly all damp habitats."], "motorcycle": ["Single-track, two-wheeled motor vehicle."], "motor fuel": ["Any gaseous or liquid flammable fuel that burns in an internal combustion engine."], "motor vehicle": ["A road vehicle driven by a motor or engine, especially an internal combustion engine."], "mountain": ["A feature of the earth's surface that rises high above the base and has generally steep slopes and a relatively small summit area.", "A great number or large amount of things not placed in a pile."], "mountaineering": ["The sport, hobby or profession of walking, hiking and climbing up mountains."], "mountainous area": ["Area characterized by conspicuous peaks, ridges, or mountain ranges.\\n(Source: BJGEO)"], "mountain range": ["A single, large mass consisting of a succession of mountains or narrowly spaced mountain ridges, with or without peaks, closely related in position, direction, formation, and age."], "mowing": ["The cutting down of grass, crops or grain with a scythe or a mechanical device."], "mud flat": ["A relatively level area of fine silt along a shore (as in a sheltered estuary) or around an island, alternately covered and uncovered by the tide, or covered by shallow water."], "mulch": ["A layer of organic material applied to the surface of the ground to retain moisture."], "multilateral agreement": ["A binding agreement between three or more parties."], "multinational firm": ["A business company operating in multiple countries."], "municipal cleansing": ["The aggregation of services offered by a town or city in which streets and other public areas are kept clean, such as through trash pick-ups, street sweeping and decontamination of water, soil and other natural resources.\\n(Source: FFD)"], "municipality": ["A town, city, or other district having powers of local self-government.\\n(Source: LANDY)"], "municipal level": ["The jurisdiction, position or status of city, town or local government.\\n(Source: DAM / OED)"], "muscular system": ["The muscle cells, tissues, and organs that effect movement in all vertebrates."], "museum": ["A place or building where objects of historical, artistic, or scientific interest are exhibited, preserved or studied.\\n(Source: CED)", "Of or relating to a museum."], "mushroom": ["An organism belonging to a family of Basidiomycetes that are characterized by the production of spores on gills."], "music": ["The artistic organisation of sounds or tones that expresses ideas and emotions through the elements of rhythm, melody, harmony and tonal colour.", "A document which contains a musical composition in printed or written form."], "mussel farming": ["Breeding of mussels for sale as food."], "mustelid": ["A large, diverse family of low-slung, long-bodied carnivorous mammals including minks, weasels, and badgers; distinguished by having only one molar in each upper jaw, and two at the most in the lower jaw."], "mutagenicity": ["The property of chemical or physical agents of inducing changes in genetic material that are transmitted during cell division."], "mutagen": ["An agent that raises the frequency of mutation of genetic material above the spontaneous rate."], "mutant": ["An individual bearing an allele that has undergone mutation and is expressed in the phenotype."], "mutation": ["A change in the chemical constitution of the DNA in the chromosomes of an organism."], "mycology": ["The branch of botany concerned with the study of fungi."], "mycorrhiza": ["The symbiotic association of the root of a higher plant with a fungus."], "national legislation": ["A binding rule or body of rules prescribed by the government of a sovereign state that holds force throughout the regions and territories within the government's dominion.\\n(Source: RHW)"], "national park": ["Areas of outstanding natural beauty, set aside for the conservation of flora, fauna and scenery, and for recreation, if this does not conflict with the conservation objectives of the parks and their landscapes. Hunting, logging, mining, commercial fishing, agriculture and livestock grazing are all controlled within national parks, as is industrial activity.\\n(Source: WRIGHT)"], "natural area": ["An area of certain natural conditions, as opposed to a civilized area shaped and inhabited mainly by humans."], "natural disaster": ["Violent, sudden and destructive change in the environment without cause from human activity, due to phenomena such as floods, earthquakes, fire and hurricanes."], "natural fertiliser": ["Organic material added to the soil to supply chemical elements needed for plant nutrition."], "natural forest": ["A forest area that has developed free from the influence of humans and remains largely unaffected by their activities."], "natural gas": ["A natural fuel containing methane and hydrocarbons that occurs in certain geologic formations.\\n(Source: LANDY)"], "natural gas extraction": ["The tapping of natural gas from wells located under the sea and in general from underground sources often in association with petroleum deposits; it is used as a fuel, having largely replaced coal-gas for this purpose, and as a source of intermediates for organic synthesis."], "natural hazard": ["The probability of occurrence, within a specific period of time in a given area of a potentially damaging phenomenon of nature.\\n(Source: GUNN)"], "natural heritage": ["Generally, the world's natural resources as handed down to the present generation, and specifically, the earth's outstanding physical, biological and geological formations, and habitats of threatened species of animals and plants and areas with scientific, conservation or aesthetic value.\\n(Source: WHC / OED)"], "rights of nature": ["A rule or body of rules that derives from nature and is believed to be binding upon human society, as opposed to human-made laws such as legislative acts and judicial decisions.\\n(Source: WOR / INP)"], "natural monument": ["A natural/cultural feature which is of outstanding or unique value because of its inherent rarity, representative of aesthetic qualities or cultural significance. Guidance for selection of a natural monument is: a) The area should contain one or more features of outstanding significance (appropriate natural features include spectacular waterfalls, caves, craters, fossil beds, sand dunes and marine features, along with unique or representative fauna and flora; associated cultural features might include cave dwellings, cliff-top forts, archaeological sites, or natural sites which have heritage significance to indigenous peoples).; b) The area should be large enough to protect the integrity of the feature and its immediately related surroundings.\\n(Source: AERG)"], "natural park": ["A designation project of lands which preserves natural resources for their scientific, scenic, cultural and/or educational value by limiting development and management practices. Land managed to protect rare and endangered species of flora and fauna will be designed as natural areas.\\n(Source: LANDY)"], "natural radioactivity": ["Radiation stemming mainly from uranium, present in small amounts in many rocks, soils, building material, etc."], "natural resource": ["A feature or component of the natural environment that is of value in serving human needs, e.g. soil, water, plantlife, wildlife, etc."], "natural science": ["The branches of science dealing with objectively measurable phenomena pertaining to the transformation and relationships of energy and matter; includes biology, physics, and chemistry."], "natural stone": ["A stone that occurs in nature, as distinguished from a man-made substitute."], "nature conservation": ["Active management of the earth's natural resources and environment to ensure their quality is maintained and that they are wisely used.\\n(Source: PHC)"], "nature reserve": ["Area allocated to preserve and protect certain animals and plants, or both."], "nausea": ["Desire to vomit."], "necrosis": ["The pathologic death of living tissue in a plant or animal."], "need": ["To need a number or amount of something, but not having any at all.", "The feeling of the lack of something.", "To need a number or amount of something, but not having enough or any at all.", "What is necessary to satisfy a need.", "To feel that something is necessary."], "nematode": ["A group of unsegmented worms which have been variously recognized as an order, class, and phylum.", "One of the most common phyla of animals, with over 80,000 different described species (of which over 15,000 are parasitic). They are ubiquitous in freshwater, marine, and terrestrial environments, where they often outnumber other animals in both individual and species counts, and are found in locations as diverse as Antarctica and oceanic trenches."], "nervous system": ["A coordinating and integrating system which functions in the adaptation of an organism to its environment; in vertebrates, the system consists of the brain, brainstem, spinal cord, cranial and peripheral nerves, and ganglia."], "net resource depletion": ["The total decrease in the amount of natural materials available for use by humans and other living beings."], "neurotoxicity": ["The occurrence of adverse effects on a nervous system following exposure to a chemical.\\n(Source: KOREN)"], "neutralisation": ["The act of making a solution neutral by adding a base to an acidic solution, or an acid to a basic solution."], "new community": ["A sociopolitical, religious, occupational or other group of common characteristics and interests formed as an alternative to social, and often residential, options currently available.\\n(Source: RHW)"], "nickel": ["A malleable ductile silvery-white metallic element that is strong and corrosion-resistant, occurring principally in pentlandite and niccolite: used in alloys, especially in toughening steel, in electroplating, and as a catalyst in organic synthesis.\\n(Source: CED)"], "nitrate": ["Any salt or ester of nitric acid, such as sodium nitrate."], "nitrification": ["The process by which ammonia compounds, including man-made fertilizer and the humus provided by organic matter or plant and animal origin, are converted into nitrites and then nitrates, which are then absorbed as a nutrient by crops."], "nitrite": ["A salt or ester of nitric acid, included in compounds such as potassium nitrite, sodium nitrite and butyl nitrite."], "nitro compound": ["Any one of a class of usually organic compounds that contain the monovalent group, -NO2 (nitro group or radical) linked to a carbon atom."], "nitrogen": ["Gaseous, non-metallic chemical element with symbol N and atomic number 7."], "nitrogen cycle": ["The complex set of processes by which crops acquire the large amount of nitrogen they need to make proteins, nucleic acids and other biochemicals of which they are composed, and how the nitrogen returns to the atmosphere."], "nitrogen dioxide": ["A reddish-brown gas; it exists in varying degrees of concentration in equilibrium with other nitrogen oxides; used to produce nitric acid."], "nitrogen fixation": ["Assimilation of atmospheric nitrogen by a variety of microorganisms which live freely in soil."], "nitrogen monoxide": ["A colourless gas, soluble in water, ethanol and ether."], "nitrosamine": ["Any one of a class of neutral, usually yellow oily compounds containing the divalent group."], "noise": ["Sound which is unwanted, either because of its effects on humans, its effect on fatigue or malfunction of physical equipment, or its interference with the perception or detection of other sounds.", "A random and unwanted signal."], "noise analysis": ["Determination of the frequency components that make up a particular noise being studied.\\n(Source: MGH)"], "noise barrier": ["A barrier for reducing the propagation of sound that are widely used in industry and alongside roads and railways."], "noise emission": ["The release of noise into the environment from various sources that can be grouped in: transportation activities, industrial activities and daily normal activities."], "noise immission": ["Immission in the environment of acoustic vibrations that negatively affect human beings, animals, plants or other objects."], "noise level": ["Physical quantity of unwanted sound measured, usually expressed in decibels."], "noise measurement": ["The process of quantitatively determining one or more properties of acoustic noise."], "noise pollutant": ["Noise in the environment which can be harmful to human beings, animals and plants.\\n(Source: ISEP)"], "noise pollution": ["Harmful or unwanted sounds in the environment, which in specific places, can be measured and averaged over a period of time."], "noise protection": ["Adoption of measures for controlling noise pollution, such as restriction of the emission of noise from industrial, commercial and domestic premises, from motor vehicles and aircrafts, the provision of noise barriers and buffer zones, the fitting of sound attenuation equipment, etc.\\n(Source: CONFERa / GILP96a)"], "nomad": ["A member of a people or tribe who move from place to place to find pasture and food."], "nomenclature": ["The body of specialized words relating to a particular subject."], "non-ferrous metal": ["Any metal other than iron and its alloys."], "non-metallic mineral": ["Minerals containing non-metals, such as quartz, garnet, etc.\\n(Source: RRDA)"], "non-metal": ["A chemical element, that does not have the chemical or physical properties of a metal, e. g. oxygen or sulfur."], "non-polluting fuel": ["Clean fuel that does not release polluting emissions in the environment, such as methane."], "non-renewable resource": ["A natural resource which, in terms of human time scales, is contained within the Earth in a fixed quantity and therefore can be used once only in the foreseeable future (although it may be recycled after its first use)."], "non-returnable container": ["Any container for which no specific provisions for its return from the consumer or final use has been established."], "norm": ["An established standard, guide, or regulation.", "The most common and popular way of thinking among a population."], "normalisation": ["(Database) The process of structuring data to minimise duplication and inconsistencies."], "North Africa": ["A geographic region of the African continent south of Europe and the Mediterranean Sea, and north of Africa's tropical rain forest, including Morocco, Algeria, Tunisia, Libya and the Egyptian region west of the Suez Canal, and also the Sahara Desert and Atlas Mountains."], "North America": ["A continent in the northern half of the western hemisphere, bounded by the Arctic Ocean in the north, by the Pacific Ocean and the Bering Sea in the west, and by the Atlantic Ocean and the Gulf of Mexico in the east, connected to South America by the Isthmus of Panama, and including the United States, Canada, Mexico and several small island nations.\\n(Source: INP)"], "North Atlantic Ocean": ["The northern part of the Atlantic Ocean, extending northward from the equator to the Arctic Ocean."], "North Pacific Ocean": ["An ocean north of the equator between the eastern coast of Asia and the western coasts of the Americas, extending northward to the arctic region, with principal arms including the Gulf of Alaska, the Sea of Okhotsk, the Sea of Japan and the Bering, Yellow, East China, South China and Philippine seas, and islands including the Aleutian, Midway, Marshall and Hawaiian islands, the Japanese island arc and the Malay Archipelago."], "novel food": ["A type of food that does not have a significant history of consumption or is produced by a relatively new method."], "nuclear accident": ["An event occurring in a nuclear power plant or anywhere that radioactive materials are used, stored, or transported and involving the release of potentially dangerous levels of radioactive materials into the environment.\\n(Source: FEMAa)"], "nuclear energy": ["Energy released by nuclear fission or nuclear fusion."], "nuclear facility": ["A place, including buildings, where all the activities relating to nuclear research are performed.\\n(Source: CAMB)"], "nuclear fission": ["The division of an atomic nucleus into parts of comparable mass; usually restricted to heavier nuclei such as isotopes of uranium, plutonium, and thorium."], "nuclear fuel": ["Material that can be used in nuclear fission or fusion to create nuclear energy."], "nuclear fuel element": ["A piece of nuclear fuel which has been formed and coated, and is ready to be placed in a reactor fuel assembly."], "nuclear fusion": ["Combination of two light nuclei to form a heavier nucleus with release of some binding energy."], "nuclear physics": ["The study of the characteristics, behaviour and internal structures of the atomic nucleus."], "nuclear debate": ["The ongoing, public discussion and dispute over the uses of nuclear energy."], "nuclear power plant": ["A power plant in which nuclear energy is converted into heat for use in producing steam for turbines, which in turn drive generators that produce electric power."], "nuclear reaction": ["A reaction involving a change in an atomic nucleus, such as fission, fusion, neutron capture, or radioactive decay, as distinct from a chemical reaction, which is limited to changes in the electron structure surrounding the nucleus."], "nuclear reactor": ["Device which creates heat and energy by starting and controlling atomic fission."], "nuclear safety": ["Measures and techniques implemented to reduce the possibility of incidence and the potential harm posed by radioactive substances used as an energy source, a test material or in weaponry."], "nuclear test": ["Test performed to evaluate nuclear weapons."], "nuclear weapon": ["Any bomb, warhead, or projectile using active nuclear material to cause a chain reaction upon detonation."], "nucleic acid": ["Any of several organic acids combined with proteins (DNA or RNA) which exist in the nucleus and protoplasm of all cells."], "nuisance": ["Something which annoys."], "nutrient medium": ["A liquid or gel designed to support the growth of microorganisms, cells or small plants."], "nutrient content": ["The amount of proteins, carbohydrates, fats, inorganic salts (e.g. nitrates, phosphates), minerals (e.g. calcium, iron), and water."], "nutrient cycle": ["A biogeochemical cycle, in which inorganic nutrients move through the soil, living organisms, air and water or through some of these."], "nutrient removal": ["Elimination of nutrients as, for example, from sewage in order to prevent eutrophication of water in reservoirs."], "nutrient": ["Chemical elements which are involved in the construction of living tissue and which are needed by both plant and animal. The most important in terms of bulk are carbon, hydrogen and oxygen, with other essential ones including nitrogen, potassium, calcium, sulphur and phosphorus."], "nutrition": ["Chemical elements which are involved in the construction of living tissue and which are needed by both plant and animal. The most important in terms of bulk are carbon, hydrogen and oxygen, with other essential ones including nitrogen, potassium, calcium, sulphur and phosphorus.", "A process in animals and plants involving the intake of nutrient materials and their subsequent assimilation into the tissues."], "oak": ["Any tree of the genus Quercus in the order Fagales, characterized by simple, usually lobed leaves, scaly winter buds, a star-shaped pith, and its fruit, the acorn, which is a nut; the wood is tough, hard, and durable, generally having a distinct pattern.", "Wood of the oak tree."], "objection": ["The act of a party who objects to some matter or proceeding in the course of a trial or an argument or reason urged by him in support of his contention that the matter or proceeding objected to is improper or illegal.\\n(Source: BLACK)", "An argument that contradicts what is said by other persons."], "obligation to label": ["The legal responsibility or duty compelling manufacturers to affix certain marks or other written identification to their products, as is directed by laws, regulations or government standards."], "occupational disease": ["A functional or organic disease caused by factors arising from the operations or materials of an individual's industry, trade, or occupation."], "occupational medicine": ["The branch of medicine which deals with the relationship of humans to their occupations, for the purpose of the prevention of disease and injury and the promotion of optimal health, productivity, and social adjustment."], "occupational safety regulation": ["Law enacted to reduce the incidence among workers of personal injuries, illnesses, and deaths resulting from employment."], "ocean": ["The mass of water occupying all of the Earth's surface not occupied by land, but excluding all lakes and inland seas."], "ocean circulation": ["Water current flow in a closed circular pattern within an ocean."], "ocean current": ["A net transport of ocean water along a definable path.\\n(Source: MGH)"], "ocean dumping": ["The process by which pollutants, including sewage, industrial waste, consumer waste, and agricultural and urban runoff are discharged into the world's oceans."], "Oceania": ["The islands of the southern, western and central Pacific Ocean, including Melanesia, Micronesia, and Polynesia. The term is sometimes extended to encompass Australia, New Zealand, and the Malay Archipelago.\\n(Source: AMHER)"], "oceanography": ["The scientific study and exploration of the oceans and seas in all their aspects.\\n(Source: MGH)"], "ocean temperature": ["A measure, referenced to a standard value, of the heat or coldness in a body of oceanic water."], "odonate": ["Order in the class of insecta that includes dragonflies and damselflies."], "environmental criminality": ["Unlawful acts against the environment, such as water contamination, hazardous waste disposal, air contamination, unpermitted installation of plants, oil spills, etc.\\n(Source: AZENPa)"], "office": ["Any room, set of rooms or building used for the administration of government service, business transactions or other work related activities.", "Any building used for the administration of government service, business transactions or other work related activities.", "The actions and activities assigned to or required or expected of a person or group.", "Professional or clerical workers in an office."], "official hearing": ["Proceedings of relative formality, with definite issues of fact or of law to be tried, in which witnesses are heard and parties proceeded against have right to be heard.\\n(Source: WESTS)"], "offshore oil drilling": ["Oil extraction from platforms situated a short distance from the coast."], "oil binding agent": ["Highly absorbent agents used for physically removing spilled oil in case of leakages and oil accidents occurring in water bodies, industry, work-shops, on roads, etc."], "oil boom": ["A floating device used to contain oil on a body of water.", "A boom in the oil producing sector of an economy."], "oil disaster": ["The disaster caused by the dumping and accidental spillage of oil into waterways from ships and land-based or offshore installations. Oil pollution may destroy or damage aquatic life and wildlife such as birds, contaminate water supplies and create fire hazards.\\n(Source: GILP96)"], "oil pipeline": ["A line of pipe connected to valves and other control devices, for conducting oil."], "oil pollution": ["Contamination of any ecosystem, but usually of freshwater or marine ecosystems, by oil or other petroleum products."], "oil recovery vessel": ["A boat used for recovering oil spilled at sea from oil tankers."], "oil refinery": ["A plant where crude petroleum is transformed into fuels, lubricants, and other petroleum-derived products."], "oil refining": ["The separation of petroleum mixtures into their component parts."], "oil shale": ["A kerogen-bearing, finely laminated brown or black sedimentary rock that will yield liquid or gaseous hydrocarbons on distillation."], "oil slick": ["The mass of oil that floats on a surface of water, which is discharged accidentally, naturally or by design, and can be moved by currents, tides and the wind."], "oil spill": ["Contamination of any ecosystem, but usually of freshwater or marine ecosystems, by oil or other petroleum products.", "The accidental release of oil, or other petroleum products usually into freshwater or marine ecosystems, and usually in large quantities."], "oil tanker": ["A very large ship which carries crude oil or other petroleum products in big tanks."], "olfactometry": ["The testing and measurement of the sensitivity of the sense of smell."], "onchocerciasis": ["Infection with the filaria Onchocerca volvulus; results in skin tumours, papular dermatitis, and ocular complications."], "oncology": ["The study of the causes, development, characteristics, and treatment of tumors."], "opencast mining": ["The extraction of metal ores and minerals that lie near the surface by removing the overlying material and breaking and loading the ore.", "Superficial mining, in which the valuable rock is exposed by removal of overburden."], "opinion": ["That which one holds to be true; the acceptance of a fact, opinion, or assertion as real or true despite a lack of strong evidence or knowledge.", "Judgement or belief not founded on certainty or proof."], "ore": ["A mineral or mineral aggregate, mixed with gangue, that can be worked and treated at a profit."], "organ": ["A fully differentiated structural and functional unit, such as a kidney or a root, in an animal or plant.", "A keyboard instrument played using one or more manuals and a pedalboard. Sound is produced by an airflow through metal or wood pipes and/or electronically by sampled organ sounds or oscillators."], "organic carbon": ["Carbon which comes from an animal or plant. \\n\\n(Source: PHC)"], "organic chemistry": ["A branch of chemistry dealing with the study of composition, reaction, properties, etc. of organic compounds.\\n(Source: LEE)"], "organic farming": ["Farming without the use of industrially made fertilizers or pesticides."], "organic solvent": ["Organic materials, including diluents and thinners, which are liquids at standard conditions and which are used as dissolvers, viscosity reducers, or cleaning agents.\\n(Source: LEE)"], "organic substance": ["Chemical compounds, based on carbon chains or rings and also containing hydrogen with or without oxygen, nitrogen, or other elements.\\n(Source: MGH)"], "organic waste": ["A type of waste which can be broken down into its base compounds by micro-organisms."], "organism": ["An individual constituted to carry out all life functions."], "organochlorine compound": ["Organic compounds containing a C-Cl bond."], "organohalogen compound": ["Organic compounds containing a C-halogen bond."], "organometallic compound": ["Molecules containing carbon-metal linkage; a compound containing an alkyl or aryl radical bonded to a metal.\\n(Source: MGH)"], "organonitrogen compound": ["Organic compounds having a C-N bond.\\n(Source: RRDA)"], "organooxygen compound": ["Compounds, both aliphatic and aromatic, which have a C-O bond, including alcohols, aldehydes, etc."], "organophosphorous compound": ["Organic compound that contains phosphorous; short-lived, but some can be toxic when first applied.\\n(Source: EPAGLO)"], "organosilicon compound": ["Any natural substance composed of two or more unlike atoms held together by chemical bonds and containing silicon, a non-metallic element often found in rocks or minerals.\\n(Source: RHW)"], "organotin compound": ["Chemical compound used in anti-foulant paints to protect the hulls of boats and ships, buoys and pilings from marine organisms such as barnacles.\\n(Source: EPAGLO)"], "ornithology": ["The branch of zoology that deals with the study of birds, including their physiology, classification, ecology, and behaviour."], "orography": ["The study of mountain systems and the depiction of their relief.\\n(Source: WHIT)"], "orthopteran": ["A heterogeneous order of generalized insects with gradual metamorphosis, chewing mouthparts, and four wings."], "osmosis": ["The passage of a solvent through a semipermeable membrane separating two solutions of different concentrations."], "local recreation": ["A pastime, diversion, exercise or other means of enjoyment and relaxation that is carried out in a particular city, town or small district."], "overburden": ["The material such as soil and rock lying above a mineral deposit that must be removed in order to work the deposit."], "overcrowding": ["An excess of people gathered together in a confined space."], "overexploitation": ["The use of raw materials excessively without considering the long-term ecological impacts of such use.\\n(Source: WPR)"], "overfishing": ["Taking out of the sea more fish than natural population growth can sustain."], "overgrazing": ["The damaging of land as a result of excessive animal grazing, for example sheep and goats."], "overhead power line": ["Suspended cables by which electrical power is distributed throughout a country."], "overpopulation": ["A population density that exceeds the capacity of the environment to supply the health requirements of the individual organism."], "overwintering": ["The passing of winter in a particular place."], "oxidation": ["A chemical reaction that increases the oxygen content of a compound."], "oxidation-reduction": ["An oxidizing chemical change, where an element's positive valence is increased (electron loss), accompanied by a simultaneous reduction of an associated element (electron gain)."], "oxide": ["Binary chemical compound in which oxygen is combined with a metal or nonmetal."], "oxygen": ["A gaseous chemical element with symbol O and atomic number 8; an essential element in cellular respiration and in combustion processes; the most abundant element in the earth's crust and about 20% of the air by volume.\\n(Source: MGH)"], "oxygenation": ["Treating with oxygen."], "oxygen content": ["Amount of oxygen contained in a solution."], "ozone": ["An allotropic form of oxygen containing three atoms in the molecule. It is a bluish gas, very active chemically, and a powerful oxidizing agent. Ozone is formed when oxygen or air is subjected to a silent electric discharge. It occurs in ordinary air in very small amounts only.\\n(Source: UVAROV)"], "ozone depletion potential": ["A factor that reflects the ozone depletion potential of a substance, on a mass per kilogram basis, as compared to chlorofluorocarbon-11 (CFC-11). Such factor shall be based upon the substance's atmospheric life time, the molecular weight of bromine and chlorine, and the substance's ability to be photolytically disassociated, and upon other factors determined to be an accurate measure of relative ozone depletion potential.\\n(Source: LEE)"], "ozone layer": ["The general stratum of the upper atmosphere in which there is an appreciable ozone concentration and in which ozone plays an important part in the radiative balance of the atmosphere."], "packaging": ["All products made of any materials of any nature to be used for the containment, protection, handling, delivery and presentation of goods, from raw materials to processed goods, from the producer to the user or the consumer."], "paint": ["A mixture of pigment and a vehicle, such as oil or water, that together form a liquid or paste that can be applied to a surface to provide an adherent coating that imparts colour, protects the surface and/or gives the surface different features.", "To make a painting.", "To make a painting of."], "painting business": ["A commercial service through which paint, a decorative or protective coating product, or similar products are applied to the interiors and exteriors of buildings and other surfaces."], "paint shop": ["A shop where paint and related items are sold."], "paper": ["Felted or matted sheets of cellulose fibers, formed on a fine-wire screen from a dilute water suspension, and bonded together as the water is removed and the sheet is dried.", "Made of paper.", "A scholarly written work describing the results of observations or stating hypotheses."], "parameter": ["1) A quantity in an equation which must be specified beside the independent variables to obtain the solution for the dependent variables. \\n2) A quantity which is constant under a given set of conditions, but may be different under other conditions.\\n(Source: LEE / MGH)"], "parasite": ["Organism which lives and obtains food at the expense of another organism, the host.", "A person who exploits fellow human beings."], "parasitology": ["A branch of biology which deals with those organisms, plant or animal, which have become dependent on other living creatures."], "Parliament": ["An assembly of elected representatives, typically controlled by a political party and constituting the legislative and, in some cases, the executive power of a state."], "participation": ["The act of sharing or taking part in a civic, community or public action."], "particle": ["Any very small part of matter, such as a molecule, atom, or electron.", "One-syllable suffixes or short words in Japanese and Korean grammar that immediately follow the modified noun, verb, adjective, or sentence. They have a wide range of grammatical functions, including the indication of a question or the speaker's assertiveness, certitude, or other feelings.", "A word or term that lack a precise lexical definition, that is typically short, indeclinable, and have a grammatical function.", "A very small piece of matter."], "particle separator": ["A device for segregation of solid particles by size range, as a screening."], "passenger transport": ["The conveyance of people over land, water or through air by automobile, bus, train, airplane or some other means of travel."], "pasture": ["Land covered with grass or herbage and grazed by or suitable for grazing by livestock.", "To put livestock into a field or pasture or meadow to graze.", "(For livestock) To feed on grass or herbage from a pasture.", "To feed as in a meadow or pasture."], "pathogen": ["Any disease-producing agent or microorganism."], "pathogenic organism": ["Agents producing or capable of producing disease."], "pathology": ["The branch of medicine concerned with the causes, origin, and nature of disease, including the changes occurring as a result of disease."], "peat": ["Unconsolidated soil material consisting largely of undecomposed or slightly decomposed organic matter accumulated under conditions of excessive moisture.\\n(Source: LANDY)"], "pedestrian zone": ["Area in a city where vehicles are not allowed."], "pedosphere": ["That shell or layer of the Earth in which soil-forming processes occur."], "penalty": ["Punitive sanction taken against someone who has broken the law.", "A free kick in football taken from 11 m in front of the goal with only the goalkeeper defending.", "A disadvantage imposed upon a competitor or team, according to the rules of the game.", "A legal punishment."], "pentachlorophenol": ["A toxic phenolic compounds with formula C6HOCl5, used as a fungicide, herbicide and molluscicide."], "perchloroethylene": ["Stable, colorless liquid, nonflammable and nonexplosive, with low toxicity; used as a dry-cleaning and industrial solvent, in pharmaceuticals and medicines, and for metal cleaning."], "periphyton": ["A plant or animal organism which is attached or clings to surfaces of leaves or stems of rooted plants above the bottom stratum."], "permeability": ["The ability of a membrane or other material to permit a substance to pass through it."], "permissible exposure limit": ["An exposure limit that is set for exposure to an hazardous substance or harmful agent and enforced by OSHA (Occupational Safety and Health Act) as a legal standard. It is based on time-weighted average concentrations for a normal 8-hour work day and 40 hour work week."], "permission": ["Voluntary agreement or permission."], "peroxyacetylnitrate": ["A pollutant created by the action of sunlight on hydrocarbons and nitrogen oxides in the air. An ingredient of smog."], "persistence": ["The capacity of a substance to remain chemically stable. This is an important factor in estimating the environmental effects of substances discharged into the environment. Certain toxic substances (e.g., cyanides) have a low persistence, whereas other less immediately toxic substances (e.g., many organochlorines) have a high persistence and may therefore produce more serious effects.\\n(Source: ALL)", "Lasting for a long period, being present for a long period."], "persistence of pesticides": ["The ability of a chemical to retain its molecular integrity and hence its physical, chemical, and functional characteristics in the environment through which such a chemical may be transported and distributed for a considerable period of time.\\n(Source: GILP96)"], "pest": ["Any unwanted insect or other organism that attacks and damages crops, reduces the fertility of land or injures or irritates livestock or people.", "A persistently annoying person."], "pest control": ["Keeping down the number of pests by killing them or preventing them from attacking."], "pesticide": ["A general term for chemical agents that are used in order to kill unwanted plants, animals pests or disease-causing fungi."], "residual pesticide": ["A pesticide remaining in the environment for a fairly long time, continuing to be effective for days, weeks, and months."], "pest infestation": ["The occurrence of one or more pest species in an area or location where their numbers and impact are currently or potentially at intolerable levels.", "A sudden increase in destructiveness or population numbers of a pest species in a given area."], "pet": ["An animal which is kept in the home as a companion and treated affectionately.", "To stroke or caress in an erotic manner, as during lovemaking."], "petrochemical industry": ["The production of materials derived from petroleum or natural gas.\\n(Source: MGH)"], "petrol": ["A fuel for internal combustion engines consisting essentially of volatile flammable liquid hydrocarbons derived from crude petroleum."], "petroleum": ["A comparatively volatile liquid bitumen composed principally of hydrocarbon, with traces of sulphur, nitrogen or oxygen compounds; can be removed from the earth in a liquid state."], "petroleum consumption": ["Petroleum belongs to non-renewable energy sources; it is a complex substance derived from the carbonized remains of trees, ferns, mosses, and other types of vegetable matter. The principal chemical constituents of oil are carbon, hydrogen, and sulphur. The various fuels made from crude oil are jet fuel, gasoline, kerosine, diesel fuel, and heavy fuel oils. Major oil consumption is in the following areas: transportation, residential-commercial, industrial and for generating electric power.\\n(Source: PARCOR)"], "petroleum geology": ["The branch of economic geology that relates to the origin, migration and accumulation of oil and gas, and to the discovery of commercial deposits. Its practice involves the application of geochemistry, geophysics, paleontology, structural geology and stratigraphy to the problems of finding hydrocarbons.\\n(Source: BJGEO)"], "petroleum industry": ["Manufacturing industry utilizing complex combination of interdependent operations engaged in the storage and transportation, separation of crude molecular constituents, molecular cracking, molecular rebuilding, and solvent finishing to produce petrochemical products."], "phanerogam": ["Plants that produce seeds. The group comprises the Gymnospermae and the Angiospermae.\\n(Source: ALL)"], "pharmaceutical industry": ["Concerted activity concerned with manufacturing pharmaceutical goods."], "pharmacokinetics": ["The study of the rates of absorption, tissue distribution, biotransformation, and excretion.\\n(Source: LEE)"], "pharmacology": ["The science dealing with the nature and properties of drugs, particularly their actions.\\n(Source: MGH)"], "phenol": ["A white crystalline soluble poisonous acidic derivative of benzene, used as an antiseptic and disinfectant and in the manufacture of resins, nylon, dyes, explosives and pharmaceuticals.\\n(Source: CED)"], "pheromone": ["Any substance secreted by an animal which influences the behaviour of other individuals of the same species.\\n(Source: MGH)"], "philosophy": ["The academic discipline concerned with making explicit the nature and significance of ordinary and scientific beliefs and investigating the intelligibility of concepts by means of rational argument concerning their presuppositions, implications, and interrelationships; in particular, the rational investigation of the nature and structure of reality (metaphysics), the resources and limits of knowledge (epistemology), the principles and import of moral judgment (ethics), and the relationship between language and reality (semantics)."], "phosphate": ["Any salt or ester of any phosphoric acid, especially a salt of orthophosphoric acid."], "phosphate removal": ["Replacement of phosphate in detergents by environmentally safer substances, such as zeolite. The substitute will not act as a nutrient, and so will not cause eutrophication as a result of the accelerated growth of plants and microorganisms if it is released into waterways.\\n(Source: WRIGHTa)"], "phosphate substitute": ["All substances that are able to substitute phosphate compounds in detergents; they must have the same chemical and physical properties and must be less polluting for the environment.\\n(Source: RRDA)"], "phosphorus": ["A nonmetallic element used to manufacture phosphoric acid, in phosphor bronzes, incendiaries, pyrotechnics, matches, and rat poisons; the white or yellow allotrope is a soft waxy solid, soluble in carbon disulfide, insoluble in water and alcohol, and is poisonous and self-igniting in air; the red allotrope is an amorphous powder, insoluble in all solvents and is nonpoisonous; the black allotrope comprises lustrous crystals similar to graphite, and is insoluble in most solvents."], "photochemical effect": ["The result or consequence of a chemical reaction caused by light or ultraviolet radiation."], "photochemical oxidant": ["Any of the chemicals which enter into oxidation reactions in the presence of light or other radiant energy."], "photochemical product": ["Degradation products that are produced by the action of light radiation.\\n(Source: FLGISAa)"], "photochemical reaction": ["Chemical reaction which is initiated by light of a specific wavelength."], "photochemical smog": ["A combination of fog and chemicals that come from automobile and factory emissions and is acted upon by the action of the sun."], "photogrammetry": ["The process of making measurements from photographs, used especially in the construction of maps from aerial photographs and also in military intelligence, medical and industrial research, etc."], "photograph": ["An image captured by a camera or some other device and reproduced as a picture, usually on a sensitized surface and formed by the chemical action of light or of radiant energy.", "To obtain an image of someone or something on photographic film or digital format by using photography."], "photosynthesis": ["Process by which plants transform carbon dioxide and water into carbohydrates and other compounds, using energy from the sun captured by chlorophyll in the plant."], "physical geography": ["The study of the spatial and temporal characteristics and relationships of all phenomena within the Earth's physical environment."], "physical oceanography": ["The study of the physical aspects of the ocean, the movements of the sea, and the variability of these factors in relationship to the atmosphere and the ocean bottom.\\n(Source: MGH)"], "physical planning": ["A form of urban land use planning which attempts to achieve an optimal spatial coordination of different human activities for the enhancement of the quality of life.\\n(Source: LANDY)"], "physical process": ["A continuous action or series of changes which alters the material form of matter.\\n(Source: RHW)"], "physical property": ["Property of a substance that cannot change without involving a change in chemical composition.", "Physical quantity that is characteristic for a material or an object, e. g. density"], "physical science": ["The sciences concerned with nonliving matter, energy, and the physical properties of the universe, such as physics, chemistry, astronomy, and geology."], "physics": ["The study of those aspects of nature which can be understood in a fundamental way in terms of elementary principles and laws."], "physiology": ["The biological study of the functions of living organisms and their parts."], "phytopathology": ["The study of plant diseases and their control.\\n(Source: ZINZAN)"], "phytoplankton": ["Planktonic plant life.\\n(Source: MGH)"], "phytosociology": ["The study of vegetation, including the organization, interdependence, development, geographical distribution and classification of plant communities."], "phytotoxicity": ["Ability of a substance to cause injury or damage to a plant."], "satellite image": ["A pictorial representation of data projected onto a two-dimensional grid of individual picture elements (pixels) and acquired from a human-made vessel placed in orbit round a planet, moon or star."], "pilotage": ["The service provided by a pilot, one who controls the movements of a ship or aircraft by visual or electronic means."], "pilot plant": ["A small version of a planned industrial plant, built to gain experience in operating the final plant."], "pilot project": ["A small scale experiment or set of observations undertaken to decide how and whether to launch a full-scale project."], "pinniped": ["A mammal belonging to the Pinnipedia, an order of aquatic placental mammals having a streamlined body and limbs specialized as flippers: includes seals, sea lions, and the walrus."], "pipeline": ["A line of pipe connected to valves and other control devices, for conducting fluids, gases, or finely divided solids.\\n(Source: MGH)", "A system of tubes, especially the ones with a large diameter, for conducting ou distributing liquids or gases.", "To convey something by a system of pipes."], "pipe": ["A rigid tube that transports water, steam or other fluid, as used in plumbing and numerous other applications.", "A device consisting of a mouthpiece, a long pipe stem and a pipe bowl, that is used to smoke tobacco."], "plain": ["An extensive, broad tract of level or rolling, almost treeless land with a shrubby vegetation, usually at a low elevation.", "Having a surface without slope nor variations in altitude.", "To state complaints, discontent, displeasure, or unhappiness.", "Having only one color."], "plan": ["A scheme of action, a method of proceeding, or a series of steps, thought out in advance to accomplish a goal.", "Scale drawing of a structure or its parts.", "To make or work out a plan for; devise.", "To have the intention to carry out some action.", "To make a (graphic) design of."], "plankton": ["Small organisms (animals, plants, or microbes) passively floating in water."], "planning": ["The act of making a detailed scheme for attaining an objective."], "planning law": ["A binding rule or body of rules prescribed by a government to organize, designate and regulate land use."], "planning permission": ["An authorization, license or equivalent control document issued by a government agency that approves a step by step method and process of defining, developing and outlining various possible courses of action to meet existing or future needs, goals and objectives.\\n(Source: TOE / ISEP)"], "plant breeding": ["Raising a certain type of plant by crossing one variety with another to produce a new variety where the desired characteristics are strongest."], "plant community": ["Any group of plants belonging to a number of different species that co-occur in the same habitat or area and interact through trophic and spatial relationships; typically characterized by reference to one or more dominant species."], "plant disease": ["A disease that affects plants."], "plant genetics": ["The scientific study of the hereditary material of plants for purposes such as hybridization, improved food resources and increased production."], "plant protection product": ["Any substance or mixture of substances which through physiological action protects the plants against parasites, fungi, virus, or other damaging factors.\\n(Source: KORENa)"], "plantigrade": ["Pertaining to mammals walking with the whole sole of the foot touching the ground.", "Mammal walking with the whole sole of the foot touching the ground."], "planting": ["The establishment of trees or other plants by transplanting, or planting seedlings or cuttings."], "plant physiology": ["The study of the function and chemical reactions within the various organs of plants.\\n(Source: UVAROV)"], "plant protection": ["Conservation of plant species that may be rare or endangered, and of other plants of particular significance.\\n(Source: GILP96)"], "plant trade": ["Trade of plants subjected to regulations established by the Convention on International Trade in Endangered Species (CITES)."], "plasma technology": ["1) Common name for a number of industrial applications of plasma, such as: etching of semiconductor chips, deposition of silicon for solar cell production, deposition of silicon dioxide for passivation of surfaces, activation of surfaces, melting and welding with plasma arcs as well as plasma chemistry. \\n2) Plasma technology consists of minute gas-filled cells, which emit light when an electric current is channelled through them.\\n(Source: IEAP / Z2Z)"], "plastic": ["A polymeric material (usually organic) of large molecular weight which can be shaped by flow; usually refers to the final product with fillers, plasticizers, pigments, and stabilizers included (versus the resin, the homogeneous polymeric starting material); examples are polyvinyl chloride, polyethylene, and urea-formaldehyde.", "Capable of being molded or modeled."], "plastic waste": ["Any discarded plastic (organic, or synthetic, material derived from polymers, resins or cellulose) generated by any industrial process, or by consumers.\\n(Source: APD)"], "platinum": ["A ductile malleable silvery-white metallic element very resistant to heat and chemicals. It occurs free and in association with other platinum metals, especially in osmiridium; used in jewellery, laboratory apparatus, electrical contacts, dentistry, electroplating, and as a catalyst."], "playground": ["A piece of land used for recreation, especially by children, often including equipment such as swings and slides."], "plutonium": ["A highly toxic metallic transuranic element with symbol Pu and atomic number 94."], "poaching": ["The action of catching game, fish, etc. illegally by trespassing on private property.\\n(Source: CED)"], "point source": ["A single identifiable localized source of something."], "poison": ["A substance which, when ingested, inhaled, or absorbed, or when applied to, injected into, or developed within the body, in relatively small amounts, may cause injury, harm, or destruction to organs, tissue, or life.", "To administer a toxic substance."], "poisoning": ["The morbid condition produced by a poison which may be swallowed, inhaled, injected, or absorbed through the skin.\\n(Source: KOREN)"], "polar ecosystem": ["The interacting systems of the biological communities and their nonliving environmental surroundings located in the regions where the air temperature is perennially below 10\u00b0 Celsius, usually at and near the North and South Poles.", "Ecosystem of the region around Earth's poles."], "polar region": ["Area relating to the earth's poles or the area inside the Arctic or Antarctic Circles."], "polder": ["A generally fertile tract of flat, low-lying land (as in Netherlands and Belgium) reclaimed and protected from the sea, a lake, a river, or other body of water by the use of embankments, dikes, dams, or levees."], "police": ["Branch of the government which is charged with the preservation of public order, the promotion of public health and safety, and the prevention, detection, and punishment of crimes."], "police law": ["A binding rule or body of rules prescribed by a government to regulate the employment and tactics of police or other civil agents organized to maintain order, prevent and detect crimes and promote obedience to civil regulations and authority."], "policy": ["A general plan of action, formulated by a political party, a government agency or a similar institution."], "politics": ["The theory and practice of acquiring and exercising the power to govern in a society in order to arbitrate values, allocate resources and establish and enforce rules."], "policy planning": ["The process of making arrangements or preparations to facilitate any course of action that may be adopted and pursued by government, business or some other organization."], "political doctrine": ["A policy, position or principle advocated, taught or put into effect concerning the acquisition and exercise of the power to govern or administrate in society.\\n(Source: RHW)"], "political ecology": ["The study of how political, economic, and social factors affect environmental issues."], "political geography": ["The study of the effects of political actions on human geography, involving the spatial analysis of political phenomena.\\n(Source: GOOD)"], "political party": ["An organized group that has as its fundamental aim the attainment of political power and public office for its designated leaders. Usually, a\\npolitical party will advertise a common commitment by its leaders and its membership to a set of political, social, economic and/or cultural values."], "political power": ["The might, ability or authority of governments, citizens groups and other interested parties in enacting change or in influencing or controlling the outcome of governmental or public policies affecting a nation, region or municipality.\\n(Source: BLD)"], "pollen": ["A fine granular substance produced in flowers. Collective term for pollen grains or microspores produced in the anthers of flowering plants."], "pollutant": ["A substance, usually a residue of human activity, which has an undesirable effect upon the environment.", "A substance that pollutes."], "pollutant accumulation": ["The process by which concentrations of pollutants progressively increase in the tissues of living organisms in environments where these pollutants are present."], "pollutant emission": ["Release of polluting substances in the air, water and soil from a given source and measured at the immission point."], "pollutant load": ["The amount of polluting material that a transporting agent, such as a stream, a glacier, or the wind, is actually carrying at a given time."], "polluter-pays principle": ["The principle that those causing pollution should meet the costs to which it gives rise."], "pollution": ["The indirect or direct alteration of the biological, thermal, physical, or radioactive properties of any medium in such a way as to create a hazard or potential hazard to human health or to the health, safety or welfare of any living species.\\n(Source: ALL)"], "pollution load": ["The amount of polluting material that a transporting agent, such as a stream, a glacier, or the wind, is actually carrying at a given time."], "pollution measurement": ["The assessment of the concentration of pollutants for a given time in a given point."], "polybrominated biphenyl": ["A chemical substance consisting of several bromine atoms attached to biphenyl."], "polychlorinated biphenyl": ["Any of a class of aromatic organic compounds formed by the chlorination of the hydrocarbon biphenyl; they have many industrial applications but are damaging to the environment."], "polychlordibenzo-p-dioxin": ["PCDD are formed (along with variants including furans) when compounds containing chlorine are burnt at low temperature in improperly operated/designed domestic refuse and industrial waste incinerators where PCDDs can be found in both the flue gases and the fly ash.\\n(Source: PORT)"], "polychlorinated dibenzofuran": ["A family containing 135 individual, colorless compounds known as congeners with varying harmful health and environmental effects. They are produced as unwanted compounds during the manufacture of several chemicals and consumer products such as wood treatment chemicals, some metals, and paper products; also produced from the burning of municipal and industrial waste in incinerators, from exhaust of leaded gasoline, heat, or production of electricity. They are hazardous to the respiratory system, gastrointestinal system, liver, musculoskeletal system, skin and nervous system; and are toxic by inhalation, ingestion, and contact. Symptoms of exposure include frequent coughing, severe respiratory infections, chronic bronchitis, abdominal pain, muscle pain, acne rashes, skin color changes, unexpected weight loss, nonmalignant or malignant liver disease.\\n(Source: KOREN)"], "polychlorinated terphenyl": ["Compounds consisting of three benzene rings linked to each other in either ortho, meta or para positions and substituted with chlorine atoms."], "polycyclic aromatic hydrocarbon": ["Hydrocarbons containing two or more closed rings of atoms."], "polycyclic hydrocarbon": ["Hydrocarbon molecule with two or more nuclei; examples are naphtalene, with two benzene rings side by side, or diphenyl, with two bond-connected benzene rings. Also known as polynuclear hydrocarbon.\\n(Source: MGH)"], "polyethylene terephtalate": ["A thermoplastic polyester resin made from ethylene glycol and terephthalic acid; melts at 265\u00b0C; used to make films or fibers."], "polymer": ["Substance made of giant molecules formed by the union of simple molecules (monomers).\\n(Source: MGH)"], "polyvinyl chloride": ["Polymer of vinyl chloride; tasteless, odourless; insoluble in most organic solvents; a member of the family of vinyl resins."], "pond": ["A natural body of standing fresh water occupying a small surface depression, usually smaller than a lake and larger than a pool."], "tailings pond": ["Any collection of liquid effluents or wastewater drained or separated out during the processing of crops or mineral ores."], "pool": ["A small, natural body of standing water, usually fresh; e.g. a stagnant body of water in a marsh, or a still body of water within a cave."], "population distribution": ["The density, dispersal pattern and apportionment of the total number of persons in any area.\\n(Source: RHW / EEN)"], "population dynamics": ["The process of numerical and structural change within populations resulting from births, deaths, and movements."], "population ecology": ["The study of the interaction of a particular species or genus population with its environment."], "population growth": ["An increase in the total number of inhabitants of a country, city, district or area."], "population movement": ["Any shift or migration of a statistically significant number of persons inhabiting a country, district or area.\\n(Source: RHW)"], "population structure": ["The organization of, and inter-relationships among, inhabitants of a given region, country or city."], "population trend": ["The direction of change in the total number of persons inhabiting a country, city, district or area."], "potash": ["Any of several compounds containing potassium, especially soluble compounds such as potassium oxide, potassium chloride, and various potassium sulfates, used chiefly in fertilizers."], "rock salt mining": ["Rock salt mining is an underground mining process in which the salt is physically dug out of the ground in an operation involving drilling, blasting and crushing the rock. The major percentage of this output is used for winter road maintenance.\\n(Source: SALINF)"], "poultry": ["Domesticated fowl grown for their meat and eggs.", "A bird that is kept for its meat and eggs."], "poverty": ["State in which the individual lacks the resources necessary for subsistence.", "Lack of the means of subsistence."], "power station": ["A stationary plant containing apparatus for large-scale conversion of some form of energy (such as hydraulic, steam, chemical, or nuclear energy) into electrical energy.", "A stationary plant containing apparatus for large-scale conversion of some form of energy (such as hydraulic, steam, chemical, or nuclear energy) into electrical energy."], "precipitation enhancement": ["Increase of precipitation resulting from changes in the colloidal stability of clouds. This can be either intentional, as with cloud seeding, or unintentional, as with air pollution, which increases aerosol concentrations and reduces sunlight.\\n(Source: PARCOR)"], "predator": ["Animal which kills and eats other animals.\\n(Source: PHC)", "Man who is hostile to, feels hatred towards, opposes the interests of, or intends injury to someone else."], "prefabricated building": ["Building whose sections are manufactured in specialized factories and later transported and assembled on a building site."], "preliminary proceedings": ["Any introductory action in the judicial process designed to determine the need for further court involvement or to expedite a motion that requires immediate attention.\\n(Source: BLD)"], "premium": ["Amount to be paid for a contract of insurance or life assurance."], "preservative": ["A chemical added to foodstuffs to prevent oxidation, fermentation or other deterioration, usually by inhibiting the growth of bacteria."], "preserve": ["A sweet spread made of any of a variety of berries.", "To keep something or someone safe or prevent harm coming to someone or something.", "To protect; to keep; to maintain the condition of."], "press": ["Printed matter as a whole, especially newspapers and periodicals.", "A crowd of people pressed close together in a small space.", "To apply pressure to an item.", "To force or impel in a given direction."], "pressing": ["Needing urgent attention."], "pressure": ["A type of stress which is exerted uniformly in all directions; its measure is the force exerted per unit area.", "To exert violence, or constraint upon or against a person in order to obtain something by physical, moral or intellectual means."], "pressure group": ["Any politically active group with a common set of values about resource use allocation."], "price": ["The amount of money paid per unit for a good or service.", "To attach a price tag to goods or services which are to be sold.", "To fix or set a price to be paid for, or asked for, a good or service which one wants to sell."], "primary education": ["The first five or six years of instruction in elementary schools.\\n(Source: COE)"], "primary energy consumption": ["Consumption of energy used in the same form as in its naturally occurring state, for example crude oil, coal, natural gas, e.g. before it is converted into electricity.\\n(Source: BRACK)"], "primary sector": ["That part of a country's or region's economy that makes direct use of natural resources, including agriculture, forestry, fishing and the fuel, metal and mining industries."], "primate": ["Order of mammals containing monkeys, apes, and human beings.", "In the Western Catholic Church and in the Anglican Communion, a bishop with higher rank than a metropolitan archbishop but, in the Catholic Church, with less high rank than a major archbishop."], "primary forest": ["Forest which originally covered a region before changes in the environment brought about by people."], "printing industry": ["A sector of the economy in which an aggregate of commercial enterprises is engaged in the reproduction of written text or images in multiple copies such as books, periodicals, newspapers or other similar formats.\\n(Source: SIC)"], "printing work": ["The art, process or business of producing reproductions of written text or images in multiple copies, in book, periodical or newspaper formats, or in other similar formats.\\n(Source: SIC / RHW)"], "private household": ["Living quarters where a group of persons (family) live together.\\n(Source: GOOD)"], "private law": ["The branch of law dealing with such aspects of relationships between individuals that are of no direct concern to the state."], "private sector": ["Segment of the economy not run by government, including households, sole traders, partnerships and companies."], "private transport": ["Transport performed with private means."], "proboscidean": ["An order of herbivorous placental mammals characterized by having a proboscis, incisors enlarged to become tusks, and pillarlike legs with five toes bound together on a broad pad."], "procaryote": ["Organisms (i.e. prokaryotes) whose genetic material (filaments of DNA) is not enclosed by a nuclear membrane, and that do not possess mitochondria or plastids. Bacteria and cyanophyta are the only prokaryotic organisms."], "procedural law": ["Law which prescribes method of enforcing rights or obtaining redress for their invasion. Laws which fix duties, establish rights and responsibilities among and for persons, natural or otherwise, are \"substantive laws\" in character, while those which merely prescribe the manner in which such rights and responsibilities may be exercised and enforced in a court are \"procedural laws\".\\n(Source: BLACK)"], "processing": ["The act of converting material from one form into another desired form."], "process water": ["Water used in a manufacturing or treatment process or in the actual product manufactured."], "producer liability": ["Obligations, responsibilities or debts imposed upon all members of an industry that manufactures or produces a product or service causing injury or harm to a consumer and apportioned according to each member's share of the market for the product.\\n(Source: BLD)"], "product": ["Something produced by human or mechanical effort or by a natural process.", "A chemical substance formed as a result of a chemical reaction.", "A commodity offered for sale.", "A quantity obtained by multiplication of two or more numbers."], "product information": ["Factual, circumstantial and, often, comparative knowledge concerning various goods, services or events, their quality and the entities producing them."], "productivity": ["The amount of output or yield per unit of input or expenditure achieved by a company, industry or country."], "productivity trend": ["The general direction or tendency in the measurement of the production of goods and services having exchange value."], "product liability": ["The legal liability of manufacturers and sellers to compensate buyers, users, and even bystanders, for damages or injuries suffered because of defects in goods purchased."], "product standard": ["A standard which prescribes aspects of the physical or chemical composition of products which have potential for causing environmental damage or the handling, presentation and packaging of products, particularly those which are toxic.\\n(Source: GRAHAW)"], "profit": ["An excess of the receipts over the spending, costs and expenses of a business or other commercial entity during any period.", "What it remains after subtracting from the total of the revenues the total of the costs of an economic activity or a commercial or financial operation.", "Income following the deduction of all expenses, taxes, and the like.", "The advantageous quality of being beneficial.", "To derive a benefit from."], "programme": ["A scheme of action, a method of proceeding, or a series of steps, thought out in advance to accomplish a goal.", "To enter a program or other instructions into a computer (or other electronic device) to instruct it to do a particular task.", "To arrange the schedule of an event."], "prohibition": ["An interdiction or forbidding of an activity or action by authority or law."], "project": ["To make or work out a plan for; devise.", "To extend out or project in space.", "To show on a screen.", "To communicate vividly (e.g. feelings)."], "propellant": ["A gas used in aerosol preparations to expel the liquid contents through an atomizer."], "prosecution": ["The pursuit of legal proceedings, particularly criminal proceedings."], "prosperity": ["State of being prosperous; wealth or success."], "water protection area": ["Area surrounding a water recovery plant in which certain forms of soil utilization are restricted or prohibited in order to protect the groundwater.\\n(Source: AZENP)"], "protection of species": ["Measures adopted for the safeguarding of species, of their ecosystems and their biodiversity.\\n(Source: ADMIN)"], "protection system": ["A series of procedures and devices designed to preserve people, property or the environment from injury or harm.\\n(Source: RHW)"], "protein": ["Any of a class of high-molecular weight polymer compounds composed of a variety of alfa-amino acids joined by peptide linkages."], "protocol": ["The original draft of a document.", "An international agreement of a less formal nature than a treaty. It is often used to amend treaties. (Source: DICLAW)", "A formal description of digital message formats and the rules for exchanging those messages in or between computing systems and in telecommunications."], "protozoan": ["A diverse phylum of eukaryotic microorganisms; the structure varies from a simple uninucleate protoplast to colonial forms, the body is either naked or covered by a test, locomotion is by means of pseudopodia or cilia or flagella, there is a tendency toward universal symmetry in floating species and radial symmetry in sessile types, and nutrition may be phagotrophic or autotrophic or saprozoic."], "province": ["A geographic area of some considerable extent, smaller than a continent but larger than a region, which is unified by some or all of its characteristics and which can therefore be studied as a whole. A faunal province, for example, has a particular assemblage of animal species, which differs from assemblages in different contemporaneous environments elsewhere.\\n(Source: WHIT)", "An administrative subdivision of a country, in some cases relatively autonomous and equivalent to a state, in others, smaller and less autonomous and more akin to a county."], "psychology": ["The science that deals with the functions of the mind and the behaviour of an organism in relation to its environment.\\n(Source: MGH)"], "psychosomatic illness": ["Illness arising from or aggravated by a mind-body relationship."], "public action": ["A measure or provision taken on behalf and with the consent of the general populace."], "public bath": ["A place having baths for public use."], "public building": ["A building to which there is free access by the public and which is available for the use of a community."], "public health": ["The discipline in health science that, at the level of the community or the public, aims at promoting prevention of disease, sanitary living, laws, practices and a healthier environment.\\n(Source: GUNN)"], "public law": ["The branch of law which governs relationships between individuals and the government."], "public opinion": ["The purported, collective view of the public on some issue or problem, typically formulated by selective polling or sampling, and frequently used as a guide to action or decision."], "public opinion polling": ["The canvassing of a representative sample of a large group of people on some question in order to determine the general opinion of a group."], "public park": ["Park with big trees, ornamental plants, alleys bordered by trees or bushes, fountains and statues situated in a town and whose access is free."], "public participation": ["The involvement of citizens in public matters, with the purpose of exerting influence."], "public-private partnership": ["A joint venture between corporations and government or between community members and government or business beyond the course of normal interaction."], "public sector": ["Segment of the economy run to some degree by government, including national and local governments, government-owned firms and quasi-autonomous non-government organizations."], "public service": ["An enterprise concerned with the provision to the public of essentials, such as electricity or water.\\n(Source: CED)"], "public transport": ["The act or the means of conveying people in mass as opposed to conveyance in private vehicles.\\n(Source: GOOD)"], "public utility": ["An enterprise concerned with the provision to the public of essentials, such as electricity or water.\\n(Source: CED)"], "pulmonary disease": ["Any disease pertaining to the lungs."], "pulp": ["A soft and moist mass of material usually obtained by pressing or beating a relatively hard object. It is mostly used about vegetable matter.", "The soft center of a tooth, where blood vessels and nerve endings are located.", "The soft and moist interior of a fruit.", "The edible inner of fruit, as opposed to that of animals, fish or nuts."], "pump": ["A machine that draws a fluid into itself through an entrance port and forces the fluid out through an exhaust port.\\n(Source: MGH)", "To use a pump to move (liquid or gas).", "To move up and down (e.g. weights in the gym)."], "purchase": ["The acquisition or the act of buying something by payment of money or its equivalent.", "To obtain in exchange for money or goods.", "The mechanical advantage gained by being in a position to use a lever."], "purification": ["The removal of unwanted constituents from a substance."], "purin": ["Any of a number of nitrogenous bases, such as guanine and adenine, that are derivatives of purine and constituents of nucleic acids and certain coenzymes.\\n(Source: CED)"], "pyrolysis": ["The breaking apart of complex molecules into simpler units by the use of heat.\\n(Source: MGH)"], "quality control": ["The inspection, analysis, and other relevant actions taken to provide control over what is being done, manufactured, or fabricated, so that a desirable level of quality is achieved and maintained."], "quality of life": ["All the factors that determine the well-being of an individual or societies, including wealth, employment, physical and mental health, environment, education and leisure time."], "quarry": ["An open or surface working or excavation for the extraction of building stone, ore, coal, gravel, or minerals.", "Animal hunted or caught for food.", "A person who is the aim of an attack (especially a victim of ridicule or exploitation) by some hostile person or influence."], "quarrying": ["The surface exploitation and removal of stone or mineral deposits from the earth's crust.\\n(Source: MGH)"], "race relations": ["The associations, tensions or harmony between two or more groups of people distinguished by history, culture, religion or physique: distinctions erroneously construed as being based on consistent biological differences and as representing, in effect, species of a human genus.\\n(Source: SOC / RHW)"], "radar": ["A system using beamed and reflected radiofrequency energy for detecting and locating objects, measuring distance or altitude, navigating, homing, bombing and other purposes."], "radiation": ["Emission of any rays from either natural or man-made origins, such as radio waves, the sun's rays, medical X-rays and the fall-out and nuclear wastes produced by nuclear weapons and nuclear energy production. Radiation is usually divided between non-ionizing radiation, such as thermal radiation (heat) and light, and nuclear radiation. Non-ionizing radiation includes ultraviolet radiation from the sun which, although it can damage cells and tissues, does not involve the ionization events of nuclear radiation.\\n(Source: WRIGHT)"], "radiation damage": ["Somatic and genetic damage to living organisms caused by exposure to ionizing radiation."], "radiation dose": ["The total amount of radiation absorbed by material or tissues, in the sense of absorbed dose, exposure dose, or dose equivalent."], "radiation effect": ["Prolonged exposure to ionizing radiation from various sources that can be harmful. Nuclear radiation from fallout from nuclear weapons or from power stations, background radiation from substances naturally present in the soil, exposure to X-rays can cause radiation sickness. Massive exposure to radiation can kill quickly and any person exposed to radiation is more likely to develop certain types of cancer than other members of the population.\\n(Source: PHC)"], "radiation exposure": ["The act or state of being subjected to electromagnetic energy strong enough to ionize atoms thereby posing a threat to human health or the environment.\\n(Source: APD / MHD)"], "radiation monitoring": ["The periodic or continuous surveillance or analysis of the level of radiant energy present in a given area, to determine that its prescribed amount has not been exceeded or that it meets acceptable safety standards.\\n(Source: TOE / OMD)"], "radiation physics": ["The study of ionizing radiation and its effects on matter."], "radiation protection": ["Precautionary actions, measures or equipment implemented to guard or defend people, property and natural resources from the harmful effects of ionizing energy."], "radiation sickness": ["Damage to the body resulting from excessive exposure to ionizing radiation which causes symptoms like nausea, fatigue, vomiting, and diarrhea and in severe cases loss of hair, hemorrhage, inflammation and death."], "radio": ["The process, equipment or programming involved in transmitting and receiving sound signals by electromagnetic waves.", "A device that can capture the signal sent over radio waves and render the modulated signal as sound."], "radioactive contamination": ["Contamination of a substance, living organism or site caused by radioactive material."], "radioactive emission": ["The release of radioactive substances into the environment deriving from nuclear installations and from mining, purification and enrichment operations of radioactive elements.\\n(Source: FLGISA)"], "radioactive fallout": ["The material that descends to the earth or water well beyond the site of a surface or subsurface nuclear explosion."], "radioactive substance": ["Any substance that contains one or more radionuclides of which the activity or the concentration cannot be disregarded as far as radiation protection is concerned.\\n(Source: ECHO2)"], "radioactive tracer": ["A radioactive isotope which, when injected into a biological or physical system, can be traced by radiation detection devices, permitting determination of the distribution or location of the substance to which it is attached."], "radioactive waste": ["Any waste that emit radiation in excess of normal background level, including the toxic by-products of the nuclear energy industry."], "radioactivity": ["The property possessed by some atomic nuclei of disintegrating spontaneously, with loss of energy through emission of a charged particle and/or gamma radiation."], "radionuclide": ["A nuclide that exhibits radioactivity.", "An unstable isotope of an element that decays or disintegrates spontaneously, emitting radiation."], "radon": ["A radioactive gaseous element emitted naturally from rocks and minerals where radioactive elements are present. It is released in non-coal mines, e.g. tin, iron, fluorspar, uranium. Radon is an alpha particle emitter as are its decay products and has been indicted as a cause of excessive occurrence of lung cancer in uranium miners. Concern has been expressed at radon levels in some housing usually adjacent to granite rocks or old tin mining regions.\\n(Source: PORT)"], "rag": ["To make someone rather angry or impatient; to cause annoyance.", "A piece of old cloth; a tattered piece of cloth; a shred, a tatter."], "rail traffic": ["The movement and circulation of vehicles transporting goods and people on railroad systems."], "rail transport": ["Transportation of goods and persons by railway.\\n(Source: CEDa)"], "rain": ["Precipitation in the form of liquid water drops with diameters greater than 0.5 millimetres.", "To fall from the clouds in drops of water."], "rain forest": ["A forest of broad-leaved, mainly evergreen, trees found in continually moist climates in the tropics, subtropics, and some parts of the temperate zones."], "rainout": ["A sporting fixture that could not be completed because of rain."], "rain water": ["Water which falls as rain from clouds."], "random test": ["A test which does not always yield the same result when repeated under the same conditions."], "rare species": ["Species which have a restricted world range."], "raw material": ["A crude, unprocessed or partially processed material used as feedstock for a processing operation."], "raw material securing": ["Measures used to ensure the provision of or the access to crude, unprocessed or partially processed materials used as feedstock for processing or manufacturing.\\n(Source: RHWa / MHD)"], "reaction kinetics": ["That branch of physical chemistry concerned with the mechanisms and rates of chemical reactions."], "reactor": ["A device that introduces either inductive or capacitive reactance into a circuit, such as a coil or capacitor.\\n(Source: MGH)"], "reactor safety": ["Those studies and activities that seek to minimise the risk of a nuclear reactor accident.\\n(Source: RRDA)"], "recommendation": ["An action which is advisory in nature rather than one having any binding effect.", "The act of commending."], "recreation": ["Activities that promote refreshment of health or spirits by relaxation and enjoyment.", "Any activity, such as play, that diverts, amuses or stimulates."], "recycled paper": ["Paper that has been separated from the solid waste stream for utilization as a raw material in the manufacture of a new product."], "recycling": ["A resource recovery method involving the collection and treatment of a waste product for use as raw material in the manufacture of the same or a similar product."], "life-cycle management": ["Management of all the stages involved in the life of a product such as raw materials acquisition, manufacturing, distribution and retail, use and re-use and maintenance, recycling and waste management, in order to create less environmentally harmful products.\\n(Source: PORT)"], "red tide": ["Sea water which is covered or discoloured by the sudden growth of algal bloom or by a great increase in single-celled organisms, dinoflagellates."], "chemical reduction": ["Chemical reaction in which an element gains an electron."], "reed": ["Any of various types of tall stiff grass-like plants growing together in groups near water."], "reef": ["A line of rocks in the tidal zone of a coast, submerged at high water but partly uncovered at low water."], "refinery": ["A factory for the purification of some crude material such as ore, sugar, oil, etc.\\n(Source: CED)"], "refining": ["The processing of raw material to remove impurities. \\n\\n(Source: PHC)"], "reflection": ["The return of waves or particles from surfaces on which they are incident."], "reflectometry": ["The study of the reflectance of light or other radiant energy."], "refrigerant": ["A substance that by undergoing a change in phase (liquid to gas, gas to liquid) releases or absorbs a large latent heat in relation to its volume, and thus effects a considerable cooling effect.", "Causing cold or cooling."], "refrigeration": ["The cooling of substances, usually food, below the environmental temperature for preservative purposes."], "refrigerator": ["A household appliance used for keeping food fresh by refrigeration."], "refuge": ["A restricted and isolated area in which plants and animals persisted during a period of continental climatic change that made surrounding areas uninhabitable; especially an ice-free or unglaciated area within or close to a continental ice sheet or upland ice cap, where hardy biotas eked out an existence during a glacial phase. It later served as a center of dispersal for the repopulation of surrounding areas after climatic readjustment.", "A shelter from danger or hardship.", "A place of safety, refuge or protection.", "A shielding or protection against the unpleasant, unwanted, or dangerous."], "refugee": ["A person who is outside his country of origin and who, due to well-founded fear of persecution, is unable or unwilling to avail himself of that country protection."], "refuse-sludge compost": ["Compost derived by the biodegradation of the organic constituents of solid wastes and wastewater sludges."], "regeneration": ["The renewing or reuse of materials such as activated carbon, single ion exchange resins, and filter beds by appropriate means to remove organics, metals, solids, etc.\\n(Source: LEE)"], "region": ["A designated area or an administrative division of a city, county or larger geographical territory that is formulated according to some biological, political, economic or demographic criteria.", "A place in or a part of the body in any way indicated.", "Any considerable and connected part of a space or surface.", "A large area or range of something specified but with undefined boundaries.", "A tract of land of undefined size."], "registration": ["An instance of or a certificate attesting to the fact of entering in an official list various pieces of information in order to facilitate regulation or authorization, including one's name, contact information and, in some instances, data concerning a specific possession or property.", "The act of registering or state of being registered."], "renewable raw material": ["Resources that have a natural rate of availability and yield a continual flow of services which may be consumed in any time period without endangering future consumption possibilities as long as current use does not exceed net renewal during the period under consideration."], "ordinance": ["A rule established by authority; a permanent rule of action."], "rehabilitation": ["A conservation measure involving the correction of past abuses that have impaired the productivity of the resources base.\\n(Source: MGH)"], "rehousing": ["The provision with new or different housing."], "religion": ["The expression of man's belief in and reverence for a superhuman power recognized as the creator and governor of the universe.", "An institution to express belief in a divine power."], "remote sensing": ["The scientific detection, recognition, inventory and analysis of land and water area by the use of distant sensors or recording devices such as photography, thermal scanners, radar, etc.", "Complex of techniques for the remote measure of electromagnetic energy emitted by objects."], "removal": ["The elimination of substances from a medium or from the environment.\\n(Source: RRDA)", "The act of removing a part from a whole."], "renaturation": ["A process of returning natural ecosystems or habitats to their original structure and species composition."], "renewable resource": ["A resource capable of being continuously renewed or replaced through such processes as organic reproduction and cultivation such as those practiced in agriculture, animal husbandry, forestry and fisheries."], "replacement": ["Substitution of an atom or atomic group with a different one.", "The act of replacing or substituting.", "Someone appointed as the substitute of another, and empowered to act for him, in his name or on his behalf."], "representation": ["Any conduct or action undertaken on behalf of a person, group, business or government, often as an elected or appointed voice."], "reprocessing": ["Restoration of contaminated nuclear fuel to a usable condition."], "reptile": ["A class of terrestrial vertebrates, characterized by the lack of hair, feathers, and mammary glands; the skin is covered with scales, they have a three chambered heart and the pleural and peritoneal cavities are continuous.", "Any cold-blooded vertebrate of the class Reptilia."], "rescue service": ["Service organized to provide immediate assistance to persons injured or in distress.\\n(Source: RRDA)"], "research": ["Scientific investigation aimed at discovering and applying new facts, techniques and natural laws.", "A detailed critical inspection."], "research project": ["Proposal, plan or design containing the necessary information and data for conducting a specific survey."], "reservoir": ["An artificial or natural storage place for water, such as a lake or pond, from which the water may be withdrawn as for irrigation, municipal water supply, or flood control."], "residential area": ["Area that has only private houses, not offices and factories."], "residential building": ["A building allocated for residence."], "residual risk": ["Remaining potential for harm to persons, property or the environment following all possible efforts to reduce predictable hazards.\\n(Source: TOE)"], "resin": ["Any of a class of solid or semisolid organic products of natural or synthetic origin with no definite melting point, generally of high molecular weight."], "resorption": ["Absorption or, less commonly, adsorption of material by a body or system from which the material was previously released."], "resource": ["Any component of the environment that can be utilized by an organism.", "Something that one uses."], "respiration": ["The process in living organisms of taking in oxygen from the surroundings and giving out carbon dioxide."], "respiratory air": ["Air volumes inspired and expired through the lungs."], "respiratory disease": ["A disease of the airways."], "respiratory protection apparatus": ["Any of a group of devices that protect the respiratory system from exposure to airborne contaminants; usually a mask with a fitting to cover the nose and mouth.\\n(Source: KOREN)"], "respiratory tract": ["The structures and passages involved with intake, expulsion, and exchange of oxygen and carbon dioxide in the vertebrate body."], "responsibility": ["The obligation to answer for an act done, and to repair or otherwise make restitution for any injury it may have caused."], "resting form": ["Resistant structure that allows the organism to survive adverse environmental conditions.\\n(Source: ALL2)"], "restoration": ["The process of renewing or returning something to its original, normal or unimpaired condition."], "retail trade": ["The sale of goods, in small numbers and directly to the consumer."], "retarding basin": ["A basin designed and operated to provide temporary storage and thus reduce the peak flood flows of a stream."], "reusable container": ["Any container which has been conceived and designed to accomplish within its life cycle a minimum number of trips or rotations in order to be refilled or reused for the same purpose for which it was conceived.\\n(Source: PORT)"], "revegetation": ["Planting of new trees and, particularly, of native plants in disturbed sites where the vegetation cover has been destroyed, to stabilize the land surface from wind and water erosion and to reclame the land for other uses."], "reverse osmosis": ["A technique whereby a solution is forced through a semipermeable membrane under pressure, used to generate drinkable water from sea water, or to separate chemical compounds."], "rice": ["An erect grass, Oryza sativa, that grows in East Asia on wet ground and has drooping flower spikes and yellow oblong edible grains that become white when polished.", "Seeds of the rice plant (Oryza sativa) used as food.", "Boiled rice."], "petition right": ["A legal guarantee or just claim enabling a citizen or employee to compose and submit a formal written request to an authority asking for some benefit or favor or for intervention and redress of some wrong."], "right to information": ["The individual's right to know in general about the existence of data banks, the right to be informed on request and the general right to a print-out of the information registered and to know the actual use made of the information."], "risk": ["The expected number of lives lost, persons injured, damage to property and disruption of economic activity due to a particular natural phenomenon, and consequently the product of the probability of occurrence and the expected magnitude of damage.\\n(Source: GUNN / RRDA)", "A qualitative assessment describing the likelihood of an attacker/threat using an exploit to successfully bypass a defender, attack a vulnerability, and compromise a system. (Schneider)"], "risk analysis": ["A technique used to determine the likelihood or chance of hazardous events occurring (such as release of a certain quantity of a toxic gas) and the likely consequences."], "risk assessment": ["The qualitative and quantitative evaluation performed in an effort to define the risk posed to human health and/or the environment by an action or by the presence or use of a specific substance or pollutant."], "risk-benefit analysis": ["A systematic process of evaluating and assessing the hazards of loss versus the possibility of financial gain or profit."], "risk communication": ["The exchange of information about health or environmental risks among risk assessors and managers, the general public, news media, interest groups, etc."], "risk perception": ["A subjective appreciation by individuals which will more often than not bear little relation to the statistical probability of damage or injury."], "risk reduction": ["Any act, instance or process lowering the probability that harm will come to an area or its population as the result of some hazard."], "river": ["A stream of water which flows in a channel from high ground to low ground and ultimately to a lake or the sea, except in a desert area where it may dwindle away to nothing."], "river water": ["Water which flows in a channel from high ground to low ground and ultimately to a lake or the sea, except in a desert area where it may dwindle away to nothing.\\n(Source: WHIT)"], "road": ["A long piece of hard ground that people can drive along from one place to another."], "road safety": ["Any measure, technique or design intended to reduce the risk of harm posed by moving vehicles along a constructed land route.\\n(Source: RHW)"], "road salt": ["Salt used against the formation of ice on roads."], "road traffic": ["Circulation of motor vehicles and people on the road network."], "road traffic engineering": ["Discipline which includes the design of highways and pedestrian ways, the study and application of traffic statistics, and the environmental aspects of the transportation of goods and people.\\n(Source: CED)"], "rock": ["Any aggregate of minerals that makes up part of the earth's crust. It may be unconsolidated, such as sand, clay, or mud, or consolidated, such as granite, limestone, or coal.", "To move gently back and forth.", "A music style characterized by basic drum-beat, generally 4/4 riffs, based on (usually electric) guitar, bass guitar, drums, and vocals."], "rock wool": ["A generic term for felted or matted fibers manufactured by blowing or spinning threads of molten rock, slag, or glass.\\n(Source: BJGEO)"], "rodent": ["Any of the relatively small placental mammals that constitute the order Rodentia, having constantly growing incisor teeth specialized for gnawing."], "root": ["The absorbing and anchoring organ of a vascular plant; it bears neither leaves nor flowers and is usually subterranean.", "A word from which another word or words are derived.", "Origin, beginning of an event, a condition or a period"], "rotary furnace": ["A heat-treating furnace of circular construction which rotates the workpiece around the axis of the furnace during heat treatment; workpieces are transported through the furnace along a circular path."], "rubber": ["A cream to dark brown elastic material obtained by coagulating and drying the latex from certain plants, especially the rubber tree.", "A contraceptive device consisting of a thin rubber or latex sheath worn over the penis during intercourse.", "An elastic hydrocarbon polymer that naturally occurs as a milky colloidal suspension, or latex, in the sap of some plants."], "rubber processing": ["The systematic series of actions in which a solid substance deriving from rubber trees and plants is toughened and treated chemically to give it the strength, elasticity, resistance and other qualities needed for the manufacture of products such as erasers, elastic bands, water hoses, electrical insulation and tires.\\n(Source: RHW)"], "rubber processing industry": ["A sector of the economy in which an aggregate of commercial enterprises is engaged in the manufacture and marketing of natural or synthetic rubber products.\\n(Source: RHW)"], "rubber waste": ["Any refuse or unwanted material made of synthetic or natural rubber, often the byproduct of rubber processing.\\n(Source: RHW)"], "runoff": ["Rate at which water is removed by flowing over the soil surface. This rate is determined by the texture of the soil, slope, climate, and land use cover (e.g. paved surface, grass, forest, bare soil).\\n(Source: LANDY)"], "rural population": ["The total number of persons inhabiting an agricultural or pastoral region.\\n(Source: RHW)"], "agritourism": ["A form of tourism in which holidays are organized in a farm: meals are prepared with natural products and guests are entertained with handicraft, sporting and agricultural activities."], "safety": ["The state of being secure from harm, injury, danger or risk.", "A contraceptive device consisting of a thin rubber or latex sheath worn over the penis during intercourse."], "safety measure": ["An action, procedure or contrivance designed to lower the occurrence or risk of injury, loss and danger to persons, property or the environment.\\n(Source: OED / RHW)"], "safety rule": ["A principle or regulation governing actions, procedures or devices intended to lower the occurrence or risk of injury, loss and danger to persons, property or the environment.\\n(Source: OED / RHW)"], "safety standard": ["A norm or measure applicable in legal cases for any action, procedure or contrivance designed to lower the occurrence or risk of injury, loss and danger to persons, property or the environment."], "safety study": ["Research, detailed examination and usually a written report on the need for or efficacy of actions, procedures or devices intended to lower the occurrence or risk of injury, loss and danger to persons, property or the environment."], "salamander": ["Any amphibian of the order Urodela (or Caudata). The adults keep their tails by opposition to the frogs and the caecilians.", "Name given to most of the species of amphibians of the order Urodela."], "salination": ["The accumulation of soluble salts by evaporation of the waters that bore them to the soil zone, in a soil of an arid, poorly drained region."], "salmonella": ["General name for a family of microorganisms, one of the largest groups of bacteria, that includes those most frequently implicated in food poisoning and gastroenteritis. Unhygienic handling and inadequate cooking of poultry and meat, improper storage of cold meats and, more recently, contamination of battery-reared hen eggs, are the most common sources of salmonella infections.\\n(Source: WRIGHT)"], "salt content": ["Amount of salt contained in a solution."], "salt marsh": ["Area of brackish, shallow water usually found in coastal areas and in deltas."], "salt meadow": ["A meadow subject to overflow by salt water."], "salt plug": ["The core of a salt dome."], "salt": ["The reaction product when a metal displaces the hydrogen of an acid.", "A condiment (NaCl - Sodium Chloride) used to add to or enhance the flavour of food (commonly with pepper).", "Containing salt.", "To season with salt.", "To preserve with salt.", "To spread salt.", "Randomly generated data added to an encryption algorithm to increase its effectiveness."], "salt water": ["Water that contains dissolved salts."], "salvage": ["The act, process, or business of rescuing vessels or their cargoes from loss at sea."], "sampling": ["The obtaining of small representative quantities of material for the purpose of analysis."], "sampling technique": ["Method of selecting items at random from a set in such a manner that the sample will be representative of the whole."], "sanction": ["A measure, including removal of diplomatic ties, ban on trade, or military intervention, adopted by a country, or group of countries, against another country for political reasons.", "The approval, by some authority, that makes something valid."], "sand": ["A loose material consisting of small mineral particles, or rock and mineral particles, distinguishable by the naked eye; grains vary from almost spherical to angular, with a diameter range from 1/16 to 2 millimeters.", "To cover with sand.", "To rub with sandpaper."], "sand dune fixation": ["Stabilization of dunes effected by the planting of marram grass (Ammophila arenaria), or rice grass, whose long roots bind the surface layers of sand and so hinder its removal by wind. A larger scale method of dealing with the same problem is by afforestation.\\n(Source: BLYFRE)"], "sand dune": ["An accumulation of loose sand heaped up by the wind."], "sand extraction": ["The extraction of sand by mining for building purposes and for the extraction of heavy minerals such as rutile and zircon."], "sand pit": ["A place where sand is extracted from the ground."], "sanitation": ["The study and use of practical measures for the preservation of public health."], "sanitation plan": ["Plans for the control of the physical factors in the human environment that can harm development, health, or survival."], "saprobic index": ["Indication or measure of the level of organic pollution."], "saprobe": ["Referring to the classification of organisms according to the way in which they tolerate pollution."], "satellite": ["An object that orbits around a larger one."], "saving": ["The amount of current income which is not spent for survival or enjoyment."], "sawdust": ["Small wood fragments produced by a saw when cutting."], "schistosomiasis": ["A disease in which humans are parasitized by any of three species of blood flukes: Schistosoma mansoni, S. haematobium, and S. japonicum; adult worms inhabit the blood vessels."], "school": ["An institution or building at which children and young people receive education.", "Group of a large number of fish (or other sea animals, such as dolphins or whales), normally from the same species, that swim together."], "school teaching": ["Instruction or training received in any educational institution, but especially to persons under college age.\\n(Source: RHW)"], "science": ["The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour."], "scrap material": ["Recyclable material from any manufacturing process or discarded consumer products."], "scrap material price": ["The amount of money or the monetary rate at which materials discarded from manufacturing operations can be bought or sold.\\n(Source: TOE / RHW)"], "scrap metal": ["Any metal material discarded from manufacturing operations and usually suitable for reprocessing."], "scrap vehicle": ["Car which is no longer functional and may be dismantled for spare parts or completely demolished."], "screening": ["The reduction of the electric field about a nucleus by the space charge of the surrounding electrons."], "sea": ["The mass of water occupying all of the Earth's surface not occupied by land, but excluding all lakes and inland seas.", "In general, the marine section of the globe as opposed to that of the land.", "A body of salt water that is smaller than an ocean and generally in proximity to a continent.", "Different parts of the ocean.", "The use of the sea (as in, naval operations, the shipping trade, the profession of a sailor, etc.)", "The darker parts of the moon's surface.", "A large lake.", "The volume of water in the sea in relation to the tides.", "Condition of the sea with regards to \u0131ts use (like sailing or swimming).", "At sea, the direction of the waves.", "A large, heavy wave in the sea.", "Wind driven waves.", "A large number (of something)", "A large horizontal surface.", "A great quantity (of a liquid).", "A space filled with particles of a certain kind.", "A large quantity (of something)."], "sea bed": ["The bottom of the ocean."], "sea circulation": ["Large-scale horizontal water motion within an ocean."], "sea level": ["The level of the surface of the ocean; especially, the mean level halfway between high and low tide, used as a standard in reckoning land elevation or sea depths."], "seashore": ["The zone of unconsolidated material that extends landward from the low water-line to where there is marked change in material or physiographic form or to the line of permanent vegetation."], "season": ["One of the six equal periods into which the Hindu year is divided.", "One of the four equal periods into which the year is divided by the equinoxes and solstices, resulting from the apparent movement of the sun north and south of the equator during the course of the earth's orbit around it. These periods (spring, summer, autumn and winter) have their characteristic weather conditions in different regions, and occur at opposite times of the year in the N and S hemispheres.", "A yearly recurring period of undetermined length, relatively long but still shorter than a year, when a certain crop is ripe or a certain type of work, most commonly related to agriculture, is being performed.", "A predetermined series of cultural events; for example theatrical performances or sports events, that take place under an extended period of time, which however is shorter than a year.", "To add spices."], "seasonal migration": ["The periodic movement of a population from one region or climate to another in accordance with the yearly cycle of weather and temperature changes."], "sea water": ["Water found in the seas or oceans which has an average salinity of about 3.5%."], "sea water desalination": ["Removal salt from ocean or brackish water."], "secondary biotope": ["In the case of disruption of an existing biotope, secondary biotope can be created as a compensation and substitute measure for the loss of the natural one.\\n(Source: RRDA)"], "secondary education": ["The years of instruction following elementary school and until the end of high school.\\n(Source: COE)"], "secondary sector": ["The part of a country or region's economy that produces commodities without much direct use of natural resources."], "second-hand goods": ["Goods or products that have been used previously."], "economic sector": ["A part of a country's or region's commercial, industrial and financial activity, delimited either by public, corporate and private organization of expenditures or by agriculture, manufacturing and service product types."], "sedimentary basin": ["A geomorphic feature of the earth in which the surface has subsided for a prolonged time, including deep ocean floors, intercontinental rifts and elevated and interior drainage basins."], "sediment": ["Any material transported by water which will ultimately settle to the bottom after the water loses its transporting power.\\n(Source: LANDY)", "Matter deposited by some natural process."], "seed dressing": ["A chemical applied before planting to protect seeds and seedlings from disease or insects."], "water seepage": ["The slow movement of water through small openings and spaces in the surface of unsaturated soil into or out of a body of surface or subsurface water.\\n(Source: MGH)"], "seismic activity": ["The phenomenon of Earth movements."], "seismic monitoring": ["The gathering of seismic data from an area."], "seizure": ["The official or legally authorized act of taking away possessions or property, often for a violation of law or to enforce a judgment imposed by a court of law."], "selenium": ["A highly toxic, nonmetallic element with symbol Se and atomic number 34; used in analytical chemistry, metallurgy, and photoelectric cells."], "self-purification": ["A natural process of organic degradation that produces nutrients utilized by autotrophic organisms.\\n(Source: LBC)"], "semiconductor": ["A solid crystalline material whose electrical conductivity is intermediate between that of a metal and an insulator and is usually strongly temperature-dependent."], "semimanufactured product": ["Product that has undergone a partial processing and is used as raw material in a successive productive step.\\n(Source: ZINZAN)"], "semi-metal": ["An element having some properties characteristic of metals and others of non-metals."], "sensitivity analysis": ["A formalized procedure to identify the impact of changes in various model components on model output. Sensitivity analysis is an integral part of simulation experimentation and may influence model formulations. It is commonly used to examine model behaviour. The general procedure is to define a model output variable that represents an important aspect of model behaviour. The values of various inputs of the model are then varied and the resultant change in the output variable is monitored. Large changes in the output variable imply that the particular input varied is important in controlling model behaviour. Within this general definition, sensitivity analysis has been applied to a variety of model inputs including state variables, environmental variables and initial conditions.\\n(Source: YOUNG)"], "separator": ["A machine for separating materials of different specific gravity by means of water or air."], "septic tank": ["A tank, usually underground, into which sewage flows, the deposited matter being wholly, or partially broken down through anaerobic action."], "sequestration": ["1) A legal term referring generally to the act of valuable property being taken into custody by an agent of the court and locked away for safekeeping, usually to prevent the property from being disposed of or abused before a dispute over its ownership can be resolved.\\n2) The taking of someone's property, voluntarily (by deposit) or involuntarily (by seizure), by court officers or into the possession of a third party, awaiting the outcome of a trial in which ownership of that property is at issue.\\n(Source: DUC / EMBMO)", "The act of segregating or sequestering."], "snake": ["Any reptile of the suborder Serpentes, typically having a scaly cylindrical limbless body, fused eyelids, and a jaw modified for swallowing large prey."], "services": ["The business sector that consists of companies whose line of work involves doing something for customers, but that do not produce goods.", "A service station to get food and eat something, often found at motorways."], "settlement concentration": ["The distribution or total amount of communities, villages and houses within a specified geographic area."], "urban sprawl": ["The expansion of urban areas into surrounding rural areas, creating low-density neighbourhoods."], "settling tank": ["A tank into which a two-phase mixture is fed and the entrained solids settle by gravity during storage."], "sewage": ["A liquid composed by waste substances in decomposition that is conveyed in sewers."], "sewage farm": ["Area of land on which sewage or any other type of waste water is distributed in order to purify it."], "sewage sludge": ["A semi-liquid waste with a solid concentration in excess of 2500 parts per million, obtained from the purification of municipal sewage."], "sewerage system": ["System of pipes, usually underground, for carrying waste water and human waste away from houses and other buildings, to a place where they can be safely get rid of."], "shellfish": ["An aquatic invertebrate, such as a mollusc or crustacean, that has a shell."], "shielding device": ["Barrier devised for keeping people away from harmful substances."], "shifting cultivation": ["Agricultural practice using the rotation of fields rather than crops, short cropping periods followed by long fallows and the maintenance of fertility by the regeneration of vegetation.\\n(Source: PHC)"], "ship": ["A vessel propelled by engines or sails for navigating on the water, especially a large vessel that can not be carried aboard another, as distinguished from a boat.", "A boat that by its size, solidity and power is appropriate for long navigations and big marine enterprises."], "shipbuilding": ["The art or business of designing and constructing ships."], "shipping accident": ["An unexpected incident, failure or loss involving a vessel or its contents in the course of commercial transport that poses potential harm to persons, property or the environment.\\n(Source: RHW)"], "ship garbage": ["Domestic and operational wastes, disposed of continuously or periodically, that are generated during the normal operation of a ship; usually excluding fresh fish waste from fishing operations."], "shooting range": ["Area designed for target shooting."], "shop": ["A place, especially a small building, for the retail sale of goods and services.", "To visit shops; to look around shops with the intention of buying something."], "show": ["A performance, program or exhibition providing entertainment to a group of people, displayed either through some communication media, such as radio or television, or live at a museum or theater.", "To give a proof that something is true.", "To have somebody see something.", "To go or travel in the company of someone.", "The pretending that something is the case in order to make a good impression."], "shredder": ["A size-reduction machine which tears or grinds materials to a smaller and more uniform particle size."], "shrub": ["A woody perennial plant, smaller than a tree, with several major branches arising from near the base of the main stem.", "A plant resembling a small tree, but has no, and will never develop, a stem."], "sick building syndrome": ["A set of symptoms, including headaches, fatigue, eye irritation, and dizziness, typically affecting workers in modern airtight office buildings and thought to be caused by indoor pollutants, such as formaldehyde fumes, particulate matter, microorganisms, etc."], "side effect": ["Any secondary effect, especially an undesirable one."], "sieving": ["The size distribution of solid particles on a series of standard sieves of decreasing size, expressed as a weight percent.\\n(Source: MGH)"], "silencer": ["Any device designed to reduce noise, especially the device in the exhaust system of a motor vehicle."], "silicon": ["A brittle metalloid element with symbol Si and atomic number 14 that exists in two allotropic forms; occurs principally in sand, quartz, granite, feldspar, and clay. It is usually a grey crystalline solid but is also found as a brown amorphous powder. It is used in transistors, rectifiers, solar cells, and alloys. Its compounds are widely used in glass manufacture, the building industry, and in the form of silicones."], "silo": ["A large round tower on a farm for storing grain or winter food for cattle."], "silt": ["The fine mineral material formed from the erosion of rock fragments and deposited by rivers and lakes. Its particles are the intermediate form between sand and clay. The particles can range in size from 0.01-0.05 mm in diameter."], "silver": ["A very ductile malleable brilliant greyish-white element with symbol Ar and atomic number 47 having the highest electrical and thermal conductivity of any metal.", "Made of silver.", "The colour of silver. A shiny greyish-white."], "simulation": ["A representation of a problem, situation in mathematical terms, especially using a computer.\\n(Source: CED)", "The attempt by a football player to gain an unfair advantage by falling to the ground and possibly feigning an injury."], "sizing": ["Act of fixing the cross-section of structural components on the basis of statics and material strength."], "skiing": ["The gliding over snow on skis, especially as a sport."], "skin": ["The tissue forming the outer covering of the vertebrate body: it consists of two layers, the outermost of which may be covered with hair, scales, feathers, etc. It is mainly protective and sensory in function.", "Strip or pull off the skin or hide of"], "slag": ["A nonmetallic product resulting from the interaction of flux and impurities in the smelting and refining of metals."], "slaughterhouse": ["A place where animals are butchered for food."], "slaughterhouse waste": ["Animal body parts cut off in the preparation of carcasses for use as food. This waste can come from several sources including slaughterhouses, restaurants, stores and farms.\\n(Source: OED)"], "sleep": ["A periodic state of physiological rest during which consciousness is suspended and metabolic rate is decreased.", "To rest in a state of decreased consciousness and reduced metabolism."], "sleep disturbance": ["Medical disorder of the sleep patterns of a person or animal. (Source: Wikipedia)"], "sludge": ["A semifluid, slushy, murky mass of sediment resulting from treatment of water, sewage, or industrial and mining wastes, and often appearing as local bottom deposits in polluted bodies of water.\\n(Source: BJGEO)", "Soaked clay or soil; very soft ground.", "A soft, soupy, or muddy bottom deposit, such as found on tideland or in a stream bed."], "sluice": ["Vertical sliding gate or valve to regulate the flow of water in a channel or lock."], "smog": ["Air pollution consisting of smoke and fog."], "smog warning": ["Action, device or announcement that serves to give caution or notice to the level of air pollutants typically associated with oxidants in a given area."], "smoke": ["An aerosol, consisting of visible particles and gases, produced by the incomplete burning of carbon-based materials, such as wood and fossil fuels.", "To inhale smoke from for example a cigarette or a cigar.", "A product manufactured out of cured and finely cut leaves, which are rolled or stuffed into a paper-wrapped cylinder for smoking.", "To kill a person or an animal with a shot from a firearm.", "To expose food to the smoke of wood fires in order to preserve it.", "To give off smoke."], "smoking": ["The inhalation and exhalation of carcinogenic fumes from burning plant material, usually tobacco.", "The process of flavoring, cooking, or preserving food by exposing it to the smoke from burning or smoldering plant materials, most often wood."], "colubrid": ["Family of snakes (Colubridae), including many harmless snakes, such as the grass snake."], "snow": ["The most common form of frozen precipitation, usually flakes or starlike crystals, matted ice needles, or combinations, and often rime-coated.", "To fall from the clouds in the form of ice crystals.", "Material composed of small ice crystals.", "A street name for cocaine.", "To confuse completely by concealing one's true motives from, especially by elaborately feigning good intentions so as to gain an end."], "snowslide": ["An avalanche of relatively pure snow; some rock and earth material may also be carried downward."], "soaking": ["Absorption of liquid by a solid or a semisolid material.\\n(Source: MGH)"], "soap": ["A cleansing agent, manufactured in bars, granules, flakes, or liquid form, made from a mixture of the sodium salts of various fatty acids of natural oils and fats.", "A television serial about the lives of melodramatic characters, which are often filled with strong emotions, highly dramatic situations and suspense."], "social condition": ["An existing circumstance, situation or state affecting the life, welfare and relations of human beings in community.\\n(Source: RHW)"], "social development": ["The state of nations and the historical processes of change experienced by them."], "social differentiation": ["A concept associated with evolutionary theories of history and with structural functionalism. Societies are seen as moving from the simple to the complex via a process of social change based on structural differentiation."], "social dynamics": ["The pattern, change, development and driving forces of a human group, community or society."], "social facility": ["Any structure designed, built or installed to provide space for living or interaction among persons in a community.\\n(Source: RHW)"], "social group": ["A collection of people who interact with one another and share a certain feeling of unity.\\n(Source: SOC)"], "social medicine": ["Medicine as applied to treatment of diseases which occur in certain social groups."], "social movement": ["A organized effort by a significant number of people to change (or resist change in) some major aspect or aspects of society."], "social participation": ["Collective, civic action shared and performed by a significant number of the community or general population.\\n(Source: RHW)"], "social policy": ["A course of action adopted and pursued by government, business or some other organization, which seeks to ensure that all people have acceptable working or living conditions by providing social security, welfare, health care, insurance, fair employment practices, low cost housing or educational opportunities."], "social problem": ["A generic term applied to the range of conditions and aberrant behaviours which are considered to be manifestations of social disorganization and to warrant changing via some means of social engineering."], "social relief": ["Public assistance especially financial given to persons in special need or difficulty."], "social security": ["Branch of social legislation which has as its purpose the protection of workers from risks resulting from the impairment or loss of their earning capacity due to predetermined events."], "social structure": ["A term loosely applied to any recurring pattern of social behaviour; or, more specifically, to the ordered interrelationships between the different elements or a social system or society."], "social system": ["The concept of system appears throughout the social and natural sciences and has generated a body of literature of its own (general systems theory). A system is any pattern of relationships between elements, and is regarded as having emergent properties on its own over and above the properties of its elements."], "society": ["Human group of people, more or less large and complex, associated for some common interest and characterized by distinctive hierarchical relationships.", "A formal association of people with similar interests."], "sociology": ["The study of the development, organization, functioning and classification of human societies."], "software": ["The general term used to describe all of the various programs that may be used on a computer system. It can be divided into four main categories: systems software, development software, user interface software, applications software."], "soil": ["The top layer of the land surface of the earth that is composed of disintegrated rock particles, humus, water and air.", "A mixture of sand and organic material, used to support plant growth.", "To make filthy.", "To become filthy."], "soil acidification": ["The buildup of hydrogen cations, also called protons, which reduces the pH of the soil."], "soil air": ["The air and other gases in spaces in the soil; specifically that which is found within the zone of aeration. Also known as soil atmosphere.\\n(Source: MGH)"], "soil biology": ["The study of the living organisms, mainly microorganisms and microinvertebrates which live within the soil, and which are largely responsible for the decomposition processes vital to soil fertility."], "soil chemistry": ["The study of the inorganic and organic components of the soil and its life cycles."], "soil compaction": ["An increase in bulk density (mass per unit volume) and a decrease in soil porosity resulting from applied loads, vibration, or pressure."], "soil condition": ["Description of the character of the surface of the ground at the time of observation, especially in relation to the influence of rain and snow.\\n(Source: ECHO2)"], "soil decontamination": ["Technologies employed in the removal of PCBs, PAH, pesticides and, more generally, of organic compounds by physical, chemical or biological treatments.\\n(Source: EUROPAa)"], "soil erosion": ["Detachment and movement of topsoil or soil material from the upper part of the profile, by the action of wind or running water, especially as a result of changes brought about by human activity, such as unsuitable or mismanaged agriculture."], "soil fertility": ["The status of a soil with respect to the amount and availability to plants of elements necessary for plant growth."], "soil formation": ["The combination of natural processes by which soils are formed."], "soil improvement": ["Process of protecting the soil from excessive erosion and making soil more fertile and productive.\\n(Source: LANDY)"], "soil layer": ["Distinctive successive layers of soil produced by internal redistribution processes. Conventionally the layers have been divided into A, B and C horizons. The A horizon is the upper layer, containing humus and is leached and/or eluviated of many minerals. The B horizon forms a zone of deposition and is enriched with clay minerals and iron/aluminium oxides from the A layer. The C layer is the parent material for the present soil and may be partially weathered rock, transported glacial or alluvial material or an earlier soil.\\n(Source: ALL)"], "soil map": ["A two-dimensional representation that shows the areal extent or the distribution of soils in relation to other features of the land surface."], "soil mechanics": ["The study of the physical properties of soil, especially those properties that affect its ability to bear weight such as water content, density, strength, etc.\\n(Source: CED)"], "soil mineralogy": ["Study of the formation, occurrence, properties, composition, and classification of the minerals present in the soil.\\n(Source: BJGEOa)"], "soil moisture": ["Water stored in soils."], "soil organism": ["Organism which lives in the soil."], "soil pollutant": ["Solid, liquid and gaseous substances that detrimentally alter the natural condition of the soil."], "soil profile": ["A vertical section of a soil, showing horizons and parent material."], "soil quality": ["All current positive or negative properties with regard to soil utilization and soil functions."], "soil salination": ["The accumulation of soluble mineral salts near the surface of soil, usually caused by the capillary flow of water from saline ground water."], "soil science": ["The study of the properties, occurrence, and management of soil as a natural resource."], "soil subsidence": ["A sinking down of a part of the earth's crust, generally due to underground excavations."], "soil surface sealing": ["Any activity or process in which ground surface areas are packed or plugged to prevent percolation or the passage of fluids."], "soil type": ["A phase or subdivision of a soil series based primarily on texture of the surface soil to a depth at least equal to plow depth (about 15 cm).\\n(Source: BJGEO)"], "soil use": ["Functional utilization of soil for agriculture, industry, or residential building purposes.\\n(Source: GREMES)"], "soil water": ["Water stored in soils.\\n(Source: LANDY)"], "solar cell": ["A device for converting sunlight into electrical power using a semiconductor sensitive to the photovoltaic effect.", "A device that absorbs radiant energy and converts it into electrical energy."], "solar collector": ["Device which converts the energy from light into electricity."], "solar energy": ["The energy transmitted from the sun in the form of electromagnetic radiation. The most successful examples of energy extraction from the sun are so far solar cells used in satellites and solar collectors used to heat water.\\n(Source: MGH / ALL)"], "solar heating": ["A domestic or industrial heating system that makes direct use of solar energy."], "solar power station": ["Plant where energy is generated using radiation from the sun."], "solar radiation": ["The electromagnetic radiation and particles emitted by the sun."], "solid matter": ["A crystalline material, that is, one in which the constituent atoms are arranged in a three-dimensional lattice, periodic in three independent directions."], "solid state": ["The physical state of matter in which the constituent molecules, atoms, or ions have no translatory motion although they vibrate about the fixed positions that they occupy in a crystal lattice."], "solubility": ["The ability of a substance to form a solution with another substance.\\n(Source: MGH)"], "solvent": ["Substance, generally a liquid, capable of dissolving another substance.", "The conclusion or end to which any course or condition of things leads."], "songbird": ["Any passerine bird of the suborder Oscines, having highly developed vocal organs and, in most, a music call.\\n(Source: CED)"], "sonic boom": ["A noise caused by a shock wave that emanates from an aircraft or other object traveling at or above sonic velocity."], "soot": ["Impure black carbon with oily compounds obtained from the incomplete combustion of resinous materials, oils, wood, or coal."], "sorption": ["The taking up, usually, of a liquid or gas into the body of another material (the absorbent)."], "sound": ["Auditory sensation produced by the oscillations, stress, pressure, particle displacement, and particle velocity in a medium with internal forces; pressure variation that the human ear can detect.\\n(Source: KOREN)", "To produce a sound."], "sound emission": ["Diffusion into the environment of a sound emitted from a given source."], "sound immission": ["The introduction in the environment of noise deriving from various sources that can be grouped in: transportation activities, industrial activities and daily normal activities.\\n(Source: DIFIDa)"], "sound level": ["The sound pressure level (in decibels) at a point in a sound field, averaged over the audible frequency range and over a time interval.\\n(Source: MGH)"], "soundproofing": ["Reducing or eliminating reverberation in a room by placing sound-absorbing materials on the walls and ceiling.\\n(Source: MGH)"], "sound propagation": ["The travelling of acoustic waves in the atmosphere with a speed independent of their amplitude. The speed only depends on the acoustic medium and is proportional to the square root of the absolute temperature for any given medium.\\n(Source: RRDA / PARCOR)"], "sound transmission": ["Passage of a sound wave through a medium or series of media."], "South America": ["A continent in the southern part of the western hemisphere, astride the equator and the Tropic of Capricorn, bordered by the Caribbean Sea to the north and between the Atlantic and Pacific Oceans, connected to North America by the Isthmus of Panama, and divided into twelve countries: Argentina, Bolivia, Brazil, Chile, Columbia, Ecuador, Guyana, Paraguay, Peru, Suriname, Uruguay and Venezuela."], "South Atlantic Ocean": ["An ocean south of the equator between the eastern coast of South America and the western coast of Africa that extends southward to the Antarctic continent, including the Drake Passage, South Sandwich Islands and Falkand Islands."], "Southeast Asia": ["A geographic region of continental Asia, south of China, west of the South Pacific Ocean, north of the Indian Ocean, and east of the Bay of Bengal and the Indian subcontinent, including the Indochina Peninsula, the Malay Peninsula and the Indonesian and Philippine Archipelagos, and countries such as Brunei, Cambodia, Indonesia, Laos, Malaysia, Myanmar, the Philippines, Singapore, Thailand and Vietnam."], "Southern Africa": ["A geographic region of the African continent astride the Tropic of Capricorn, including Angola, Botswana, Lesotho, Malawi, Mozambique, Namibia, South Africa, Swaziland, Zambia and Zimbabwe, and also the Kalahari Desert, Zambezi River and Orange River.\\n(Source: AFR)", "ISO 639-6 entity"], "Southern Asia": ["A geographic region of the Asian continent bordered in the north by the countries of Central Asia and in the south by the Arabian Sea and the Bay of Bengal, extending westward into Iran and eastward into China, including Afghanistan, Pakistan, India, Nepal, Bangladesh, Burma, Bhutan and Sri Lanka."], "South Pacific Ocean": ["An ocean south of the equator between Southeast Asia and Australia in the Eastern hemisphere and South America in the Western hemisphere, extending southward to the Antarctic region, including the Tasman and Coral seas and numerous islands, such as Galapagos, Solomon, Easter, Samoa, Fiji and Tonga islands, and also New Zealand and its islands."], "space travel": ["Travel in the space beyond the earth's atmosphere performed for scientific research purposes."], "space waste": ["Nonfunctional debris of human origin left in a multitude of orbits about the earth as the result of the exploration and use of the environment lying outside the earth's atmosphere."], "spasmodic croup": ["A respiratory condition that is usually triggered by an acute viral infection of the upper airway."], "special law": ["One relating to particular persons or things; one made for individual cases or for particular places or districts; one operating upon a selected class, rather than upon the public generally. A law is special when it is different from others of the same general kind or designed for a particular purpose, or limited in range or confined to a prescribed field of action or operation."], "special waste": ["Waste which must be handled in a particular manner and for which particular rules apply."], "species": ["A taxonomic category ranking immediately below a genus and including closely related, morphologically similar individuals which actually or potentially inbreed."], "conservation of species": ["Controlled utilization, protection or development of selected classes of plants or animals for their richness, biodiversity and benefits to humanity.\\n(Source: TOE / EEN)"], "spectroscopy": ["The branch of physics concerned with the production, measurement, and interpretation of electromagnetic spectra arising from either emission or absorption of radiant energy by various substances."], "speed": ["A scalar measure of the rate of movement of a body expressed either as the distance travelled divided by the time taken (average speed) or the rate of change of position with respect to time at a particular point (instantaneous speed). It is measured in metres per second, miles per hour, etc.", "To move faster.", "An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N.", "To cause to move faster.", "To move fast."], "speed limit": ["The maximum permitted speed at which a vehicle may travel on certain roads."], "spider": ["Any predatory silk-producing arachnid of the order Araneae, having four pairs of legs and a rounded unsegmented body consisting of abdomen and cephalothorax.", "A type of skimmer in the form of a wire mesh basket attached to a handle, used to remove food from a hot liquid or skim off foam from a broth."], "spillage": ["The uncontrolled discharge, leakage, dripping or running over of fluids or liquid substances.", "Fluid or liquid substance that was discharged, leaked, dripped or running over without control."], "spoil dump": ["Place where rubbish and waste minerals dug out of a mine are deposited."], "poriferan": ["A phylum of the animal kingdom characterized by the presence of canal systems and chambers through which water is drawn in and released; tissues and organs are absent."], "sport": ["The complex of individual or group activities pursued for exercise or pleasure, often taking a competitive form.", "A person who engages in sports."], "sports facility": ["Buildings, constructions, installations, organized areas and equipment for indoor and outdoor sport activities.\\n(Source: RRDA)"], "spray can": ["An aerosol can for applying paint, deodorant, etc., as a fine spray."], "sprayed asbestos": ["Asbestos emitted into the atmosphere in a spraying operation."], "spring water": ["Water obtained from an underground formation from which water flows naturally to the surface, or would flow naturally to the surface if it were not collected underground."], "square": ["Delimited area on a game board, a form or in a table", "An open area in a town, sometimes including the surrounding buildings.", "A two dimensional polygon with four equal sides and four right angles.", "Mathematics: to multiply a value, term, or expression by itself.", "Having the shape of a square (the polygone)."], "squatter settlement": ["Settlement on the outskirts of a city, often built without authorization, where poor people live in improvised dwellings made from carton, wood or corrugated metal."], "stable": ["A building or structure usually with stalls that is used to house and feed horses, cattle or other animals.", "In a state that is not likely to change."], "stack": ["A great number or large amount of things not placed in a pile.", "A pile of similar objects, each directly on top of the last.", "A linear data structure in which the last datum stored is the first retrieved.", "To place one or more objects or material in the form of a stack or on an existing stack.", "To put together several things in one pile; to arrange in stacks."], "standard": ["Something considered by an authority or by general consent as a basis of comparison.", "A rule or principle that is used as a basis for judgement.", "An object regarded as the most common size or form of its kind.", "An average or normal quality, quantity, or level."], "staple food": ["The most commonly or regularly eaten food in a country or community and which forms the mainstay of the total calorie supply, especially in the poorer populations and at times of food shortage."], "starch": ["A polysaccharide which is a combination of many monosaccharide molecules, made during photosynthesis and stored as starch grains in many plants.", "To treat with laundry starch in order to stiffen."], "state": ["A people permanently occupying a fixed territory bound together by common law, habits and custom into one body politic exercising, through the medium of an organized government, independent sovereignty and control over all persons and things within its boundaries, unless or until authority is ceded to a federation or union of other states.", "A political entity asserting ultimate authority over a geographical area.", "The condition in which someone or something is in.", "To declare to be a fact.", "A political division of a federation retaining a degree of autonomy.", "In computing, the stable condition of a processor during a particular clock cycle.", "In computing, the set of all parameters relevant to a computation.", "In computing, the values of all parameters at some point in a computation.", "To put before."], "state of the art": ["Everything made available to the public by means of a written or oral description, by use or in any other way before the date of the patent application, or an application filed in a foreign country the priority of which is validly claimed."], "state of matter": ["One of the three fundamental conditions of matter: the solid, the liquid, and gaseous states."], "station": ["A place along a route or line at which a bus, train, etc. stops for fuel or to pick up or let off passengers or goods, especially with ancillary buildings and services.", "A place used for broadcasting radio or television."], "statistical analysis": ["The body of techniques used in statistical inference concerning a population."], "statistics": ["A branch of mathematics dealing with the collection, analysis, interpretation, and presentation of masses of numerical data."], "status of development": ["The extent to which a society promotes human well-being in all dimensions of existence by forming people's capabilities, expanding choices and increasing opportunities.\\n(Source: POP)"], "steam generator": ["A pressurized system in which water is vaporized to steam by heat transferred from a source of higher temperature, usually the products of combustion from burning fuels."], "steel": ["Any of various alloys based on iron containing carbon (usually 0.1-0.7 per cent) and often small quantities of other elements such as phosphorus, sulphur, manganese, chromium, and nickel. Steels exhibit a variety of properties, such as strength, machinability, malleability, etc., depending on their composition and the way they have been treated."], "steel industry": ["Industry that deals with the processing of iron."], "steroid": ["A compound composed of a series of four carbon rings joined together to form a structural unit called cyclopentanoperhydrophenanthrene."], "stock management": ["The handling or controlling of accumulated materials or stored goods."], "stocktaking": ["The counting over of materials or goods on hand, as in a stockroom or store."], "stone": ["A lump or mass of hard consolidated mineral matter that is used in construction, either crushed for use as aggregate or cut into shaped blocks as dimension stone.", "A small (and usually irregular) piece of mineral, approximately 20-200 mm in diameter.", "The wooden shell found inside some fruits, particularly drupes, that surrounds the seed.", "To kill or excecute (a person) by throwing rocks or boulders at and on them.", "An Imperial unit of weight and mass, equal to 6.35029318 kilograms.", "Made out of stone."], "storm": ["An atmospheric disturbance involving perturbations of the prevailing pressure and wind fields on scales ranging from tornadoes to extratropical cyclones; also the associated weather and the like.\\n(Source: MGH)", "To act or speak violently, as if in state of a great anger."], "storm damage": ["Damage caused by a storm, for example damaged houses, streets and power lines, uprooted trees, destroyed crops."], "stove": ["A chamber within which a fuel-air mixture is burned to provide heat, the heat itself being radiated outward from the chamber; used for space heating, process-fluid heating, and steel blast furnaces.", "A kitchen appliance used for cooking food."], "stratification": ["The arrangement of a body of water, as a lake, into two or more horizontal layers of different characteristics, especially densities.\\n(Source: MGH)"], "stratosphere": ["The layer of the atmosphere which is sandwiched between the troposphere and mesosphere."], "stratospheric ozone depletion": ["Damage of the ozone shield by chemicals released on Earth."], "stream measurement": ["The quantitative determination of the rate and amount of flow or discharge from a natural body of running water, such as a small river or brook."], "street cleaning": ["The process of removing dirt, litter or other unsightly materials from city or town streets."], "strength of materials": ["The material's ability to resist an applied force."], "stress": ["A stimulus or succession of stimuli of such magnitude as to tend to disrupt the homeostasis of the organism.", "Emphasis on a word or phrase by pronouncing it by increasing the volume or changing the tone.", "To stress, single out as important.", "Difficulty that causes worry or emotional tension.", "To test the limits of.", "To put stress on; to utter with an accent."], "strip mining": ["Superficial mining, in which the valuable rock is exposed by removal of overburden."], "strontium": ["A soft silvery-white element of the alkaline earth group of metals, occurring chiefly as celestite and as strontianite."], "structure-activity relationship": ["The association between a chemical structure and carcinogenicity."], "structure-borne noise": ["Sound that travels over at least part of its path by means of the vibration of a solid structure."], "submarine morphology": ["That aspect of geological oceanography which deals with the relief features of the ocean floor and with the forces that modify them."], "submarine": ["A boat that can go underwater.", "Located under the surface of the sea."], "subsidence": ["A sinking down of a part of the earth's crust, generally due to underground excavations.", "The sudden sinking or gradual downward settling of the Earth's surface with little or no horizontal motion. The movement is not restricted in rate, magnitude, or area involved. Subsidence may be caused by natural geologic processes, such as solution, thawing, compaction, slow crustal warping, or withdrawal of fluid lava from beneath a solid crust; or by man's activity, such as subsurface mining or the pumping of oil or ground water."], "subsidy": ["Any monetary grant made by the government to a private industrial undertaking or charitable organization, but especially one given to consumers or producers in order to lower the market price of some service or product and make it readily affordable to the public."], "subsoil": ["Soil underlying surface soil, devoid of plant roots."], "suburb": ["A residential district situated on the outskirts of a city or town."], "sulphur dioxide": ["A poisonous gas with the formula SO2 that is released by volcanoes and the burning of coal and petroleum."], "sulphuric acid": ["A highly corrosive acid made from sulfur dioxide; widely used in the chemical industry."], "surface-active agent": ["A substance that, when used in small quantities, modifies the surface properties of liquids or solids."], "surface runoff": ["The water flow that occurs when the soil is infiltrated to full capacity and excess water from rain, meltwater, or other sources flows over the land."], "surface tension": ["The force acting on the surface of a liquid, tending to minimize the area of the surface; quantitatively, the force that appears to act across a line of unit length on the surface. Also known as interfacial force; interfacial tension; surface intensity.\\n(Source: MGH)"], "surface treatment": ["Any method of treating a material (metal, polymer, or wood) so as to alter the surface, rendering it receptive to inks, paints, lacquers, adhesives, and various other treatments, or resistant to weather or chemical attack."], "surface water": ["All waters on the surface of the Earth found in streams, rivers, ponds, lakes, marshes or wetlands, and as ice and snow."], "surgical waste": ["Any tissue, blood or mucus removed during surgery or autopsy, soiled surgical dressings, or other materials requiring special disposal procedures."], "surplus": ["The extent to which assets exceed liabilities, especially the profits remaining after operating expenses, taxes, interest and insurance costs are subtracted.\\n(Source: IVW)", "More than is needed, desired, or required."], "survey": ["A critical examination of facts or conditions to provide information on a situation. Usually conducted by interviews and/or on-site visitations.", "A detailed critical inspection.", "To plot a map of (land)."], "sustainable development": ["Development that provides economic, social and environmental benefits in the long term having regard to the needs of living and future generations."], "marsh": ["An periodically inundated area of low ground having shrubs and trees, with or without the formation of peat."], "sweetener": ["A sweetening agent, especially one that does not contain sugar."], "symbiosis": ["A close and mutually beneficial association of organisms of different species."], "synecology": ["Study of the ecology of organisms, populations, communities or systems."], "synergism": ["An ecological association in which the physiological processes of behaviour of an individual are enhanced by the nearby presence of another organism."], "synthetic detergent": ["An artificially produced solid or liquid cleansing substance that acts like soap but is stronger, and is capable of dissolving oily materials and dispersing them in water.\\n(Source: DOE / RIC)"], "synthetic material": ["Material made artificially by chemical reaction.\\n(Source: CEDa)"], "systems analysis": ["A means of organizing elements into an integrated analytic and/or decisionmaking procedure to achieve the best possible results.\\n(Source: LANDY)"], "systems theory": ["The science concerned with the general study of structures and behaviours of systems which may be applicable in different branches of learning."], "tank farm": ["Storage space for containers of liquids or gases."], "tannin": ["One of a group of complex organic chemicals commonly found in leaves, unripe fruits, and the bark of trees."], "tar": ["A viscous material composed of complex, high-molecular-weight, compounds derived from the distillation of petroleum or the destructive distillation of wood or coal.", "A long-necked, waisted lute."], "target group": ["The group of people that something, for example an advertising campaign, is primarily aimed at."], "tariff": ["A classified list or scale of charges made in any private or public business.\\n(Source: OED)"], "tar sand": ["A mixture of bitumen, sand, clay and water."], "tax": ["An amount of money demanded by a government for its support or for specific facilities or services, most frequently levied upon income, property or sales."], "taxation": ["The act or result of a government requiring money for its support or for specific facilities or services.\\n(Source: RHW)"], "tax law": ["A binding rule or body of rules prescribed by a government stipulating the sum of money and manner of collection it demands for governmental support, facilities and services, usually levied upon income, property, sales or other financial resources."], "taxonomy": ["The branch of biology concerned with the classification of organisms into groups based on similarities of structures, origin, etc.", "A hierarchical organization of a subject area, from one perspective in one language."], "teaching": ["The act of imparting knowledge or skill."], "teaching method": ["A procedure, technique or system with definite plans for instruction or imparting knowledge."], "technology": ["Systematic knowledge of industrial processes and their application."], "technology assessment": ["The systematic analysis of the anticipated impact of a particular technology in regard to its safety and efficacy as well as its social, political, economic, and ethical consequences.\\n(Source: KOREN)"], "technology transfer": ["The transfer of development and design work from a parent company to a subsidiary or from one country to another as a form of aid to help promote development and sustainable growth."], "tectonics": ["A branch of geology dealing with the broad architecture of the outer part of the Earth, that is, the regional assembling of structural or deformation features, a study of their mutual relations, origin and historical evolution."], "telecommunications": ["The conveyance of images, speech and other sounds, usually over great distances, through technological means, particularly by television, telegraph, telephone or radio."], "telematics": ["The convergence of computing and communications technologies, thus the use of telephone or radio to link computers and the use of computers to send messages via telephone or radio links.\\n(Source: NECTAR)"], "telemetry": ["The use of radio waves, telephone lines, etc., to transmit the readings of measuring instruments to a device on which the readings can be indicated or recorded."], "television": ["The process, equipment or programming involved in converting a succession of audiovisual images into corresponding electrical signals that are transmitted by means of electromagnetic waves to distant receivers or screens, at which the signals can be used to reproduce the original image.", "A device for receiving television signals and displaying them in visual form."], "temperate forest": ["Mixed forest of conifers and broad-leaf deciduous trees, or mixed conifer and broad-leaf evergreen trees, or entirely broad-leaf deciduous, or entirely broad-leaf evergreen trees, found in temperate regions across the world; characterized by high rainfall, warm summers, cold winters occasionally subzero, seasonality; typically with dense canopies, understorey saplings and tall shrubs, large animals, carnivores dominant, very rich in bird species."], "temperate woodland": ["Forest dominated by broad-leaved hardwoods, which occurs over large tracts in the mid-latitudes of Europe, N. America, and eastern Asia, but which is restricted in the southern hemisphere to Chilean Patagonia."], "temperature": ["A measure of cold or hot. A property that determines the direction of heat flow when an object is brought into thermal contact with other objects."], "temporary shelter": ["Simple facility for asylum or provisional lodgings to individuals or groups in emergencies.\\n(Source: ECHO2)"], "teratogenesis": ["The process whereby abnormalities of the offspring are generated, usually as the result of damage to the embryonal structure during the first trimester of pregnancy, producing deformity of the fetus."], "teratogenicity": ["The ability or tendency to produce anomalies of formation."], "teratogen": ["Substance causing formation of a congenital anomaly or monstrosity in the embryo."], "terminology": ["The body of specialized words relating to a particular subject.", "The study of the designating of concepts particular to one or more domains of human activity, through research and analysis of terms in context, for the purpose of documenting and promoting correct usage."], "termite": ["A soft-bodied insect of the order Isoptera; individuals feed on cellulose and live in colonies with a caste system comprising three types of functional individuals: sterile workers and soldiers, and the reproductives."], "terrestrial area": ["Subdivisions of the continental surfaces distinguished from one another on the basis of the form, roughness, and surface composition of the land.\\n(Source: PARCOR)"], "territorial policy": ["A course of action adopted and pursued by government, business or some other organization, which determines the present and future use of each parcel of land in an area.\\n(Source: DOE)"], "territory": ["An area that an animal or group of animals defends, mainly against members of the same species.", "Land that is controlled by a specific country or ruler.", "Land or an area of a particular type.", "A tract of land of undefined size.", "A geographic area owned or controlled by a single person or organization.", "The region of responsibility assigned to a representative, agent, or the like.", "A non-sovereign geographic area which has come under the authority of an external government but has not yet been admitted to the full rights of a province or federal state of the controlling country."], "tertiary sector": ["The part of a country or region's economy that produces services or assets lacking a tangible and storable form.", "The business sector that consists of companies whose line of work involves doing something for customers, but that do not produce goods."], "test": ["To carry out an examination on (a substance, material, or system) by applying some chemical or physical procedure designed to indicate the presence of a substance or the possession of a property.", "A session in which a product or piece of equipment is placed under everyday and/or extreme conditions and is examined for its durability, etc.", "A series of questions (set by the teacher or professor), aiming to gauge how much students have learnt over a given academic module, term or year.", "To test or examine for the presence of disease or infection.", "to check a property or quality of"], "test animal": ["An animal on which experiments are conducted in order to provide evidence for or against a scientific hypothesis, or to prove the efficacy of drugs or the reaction to certain products.\\n(Source: CEDa)"], "test organism": ["Any animal organism used for scientific research."], "textile industry": ["Industry for the production of fabrics.\\n(Source: MGHa)"], "textile": ["A material made of natural or man-made fibers and used for the manufacture of items such as clothing and furniture fittings."], "thallium": ["Bluish-white metal with tinlike malleability, but a little softer; used in alloys."], "theory of money": ["A coherent group of general propositions about the supply and demand of money, interest rates, the flow of money's influence on the overall economy or the policies that should be adopted by institutions controlling the money supply."], "theory of the welfare state": ["A political conception of government in a capitalist economy where the state is responsible for insuring that all members of society attain a minimum standard of living through redistribution of resources, progressive taxation and universal social programs, including health care and education."], "therapy": ["The treatment of physical, mental or social disorders or disease."], "thermal insulation": ["The process of preventing the passage of heat to or from a body by surrounding it with a nonconducting material."], "thermal pollution": ["The excessive raising or lowering of water temperature above or below normal seasonal ranges in streams, lakes, or estuaries or oceans as the result of discharge of hot or cold effluents into such water.\\n(Source: LANDY / WPR)"], "thermal power plant": ["A power-generating plant which uses heat to produce energy. Such plants may burn fossil fuels or use nuclear energy to produce the necessary thermal energy."], "thermal water": ["Water, generally of a spring or geyser, whose temperature is appreciably above the local mean annual air temperature."], "thermodynamics": ["The branch of physics which seeks to derive, from a few basic postulates, relationships between properties of matter, especially those connected with temperature, and a description of the conversion of energy from one form to another."], "thermoselect process": ["A thermic waste processing technology."], "thesaurus": ["A compilation of terms showing synonyms, related terms and other relationships and dependencies, often used in a book format or as a standardized, controlled vocabulary for an information storage and retrieval system."], "tidal power": ["Mechanical power, which may be converted to electrical power, generated by the rise and fall of ocean tides."], "tidal water": ["Any water whose level changes periodically due to tidal action."], "tide": ["The periodic rise and fall of the water resulting from gravitational interaction between the sun, moon and earth."], "time": ["The grammatical construct of the time in which a sentence acts.", "The dimension of the physical universe which, at a given place, orders the sequence of events.", "To measure the amount of time an object takes to complete a course (e.g., \"to clock a race car\").", "The period of time a prisoner is imprisoned.", "A designated instant in time.", "An instance or occurrence of an event."], "tissue": ["A part of an organism consisting of a large number of cells having a similar structure and function.", "A sheet of paper that absorbs water, used for example to weep wet surfaces."], "titanium": ["A strong malleable white metallic element with symbol Ti and atomic number 22, which is very corrosion-resistant and occurs in rutile and ilmenite. It is used in the manufacture of strong lightweight alloys, especially aircraft parts."], "titanium dioxide": ["A white, water-insoluble powder that melts at 1560\u00b0C, and which is produced commercially from the titanium dioxide minerals ilmenite and rutile; used in paints and cosmetics."], "toad": ["Any anuran amphibian of the family Bufonidae, such as Bufo bufo of Europe. They are similar to frogs but are more terrestrial, having a drier warty skin."], "tobacco": ["A genus of short-leafed plants (Nicotiana spp., L.) of the nightshade family indigenous to North and South America.", "Leaves of certain varieties of the tobacco plant, cultivated and harvested to make cigarettes, cigars, snuff, for smoking in pipes or for chewing."], "tobacco smoke": ["The grey, brown, or blackish mixture of gases and suspended carbon particles resulting from the combustion of tobacco. Tobacco smoke is inhaled and distributes toxins widely throughout the body and causes an enormous variety of illness among users and among non-smokers exposed to tobacco smoke."], "tornado": ["A rapidly rotating column of air developed around a very intense low-pressure centre."], "tortoise": ["Any herbivorous terrestrial chelonian reptile of the family Testudinidae, of most warm regions, having a heavy dome-shaped shell and clawed limbs."], "total parameter": ["The sum of parameters that must be taken into account when assessing water quality (organoleptic factors, physico-chemical factors, toxic substances, microbiological parameters."], "tourism": ["The temporary movement of people to destinations outside their normal places or work and residence, the activities undertaken during their stay in those destinations and the facilities created to cater for their needs."], "touristic zone": ["Any section of a region which attracts travelers, often because of its scenery, objects of interest or recreational activities."], "toxic effect": ["A result produced by the ingestion or contact of poisonous materials."], "toxicity": ["The degree of danger posed by a substance to animal or plant life."], "toxic metal": ["Metal (usually heavy metals) which interferes with the respiration, metabolism or growth of organisms."], "toxicological testing": ["Test for the determination of the inherent toxicity of a chemical."], "toxicology": ["A science that deals with poisons, their actions, their detection, and the treatment of the conditions they produce.\\n(Source: LANDY)"], "toxic waste": ["Refuse posing a significant hazard to the environment or to human health when improperly handled."], "toxin": ["A substance that may present a risk or injury to health or the environment."], "trace element": ["Any of various chemical elements that occur in very small amounts in organisms and are essential for many physiological and biochemical processes."], "tracheophyte": ["A large group of plants characterized by the presence of specialized conducting tissues (xylem and phloem) in the roots, stems, and leaves.\\n(Source: MGH)"], "trade barrier": ["An artificial restraint on the free exchange of goods and services between nations."], "trade policy": ["A course of action adopted and pursued by government, business or some other organization, which promotes or determines the direction for the act or process of buying, selling or exchanging goods and services within a country or between countries."], "trade restriction": ["Commercial discrimination that apply to the exports of certain countries but not to similar goods from other countries."], "traditional health care": ["A system of treating and healing maladies based on cultural beliefs and practices handed down from generation to generation.\\n(Source: FIT)"], "traffic": ["The movement of vehicles, ships, aircraft, persons, etc., in an area or over a route.", "The vehicles, persons, etc., moving in an area or over a route.", "The buying and selling, especially of illicit trade.", "To buy and sell goods illegally.", "To exchange goods."], "traffic accident": ["An unexpected incident with potential for harm occurring through the movement or collision of vessels, vehicles or persons along a land, water, air or space route.\\n(Source: OED)"], "traffic control": ["The organization of a more efficient movement of traffic within a given road network by rearranging the flows, controlling the intersections and regulating the times and places for parking."], "traffic engineering": ["The determination of the required capacity and layout of highway and street facilities that can safely and economically serve vehicular movement between given points.\\n(Source: MGH)"], "traffic infrastructure": ["The fundamental facilities and systems used for the movement of vehicles, often provided through public funding."], "traffic jam": ["A number of vehicles so obstructed that they can scarcely move."], "traffic monitoring": ["The periodic or continuous surveillance or analysis of the movement of persons, objects, vehicles or other conveyances along an area of passage."], "traffic noise": ["Noise emitted by vehicles (heavy vehicles, cars and motorcycles, tyre/road interaction)."], "traffic on water": ["The movement of boats and other vessels over any water route or area."], "train": ["A self-propelled, connected group of vehicles moving on rails.", "To point or cause to go (blows, weapons, or objects such as photographic equipment) towards", "To develop behaviour by instruction and practice.", "A group of animals, vehicles, or people that follow one another in a line.", "To do physical exercise to improve one's fitness.", "To exercise in order to prepare for an event or competition.", "To teach by training.", "To undergo training or instruction for a particular role, function, or profession.", "To educate for a future role or function.", "To act as a trainer or coach (to), as in sports."], "training": ["The process of bringing a person or a group of persons to an agreed standard of proficiency and skilled behavior, by practice and instruction.", "The period in which someone who starts a profession is trained; the position of apprentice."], "trajectory": ["The path described by an object moving in air or space under the influence of such forces as thrust, wind resistance, and gravity, especially the curved path of a projectile."], "transition element": ["One of a group of metallic elements in which the members have the filling of the outermost shell to 8 electrons interrupted to bring the penultimate shell from 8 to 18 or 32 electrons; includes elements 21 through 29 (scandium through copper), 39 through 47 (yttrium through silver), 57 through 79 (lanthanum through gold), and 89 through 112 (actinium through ununbium) on."], "transpiration": ["The loss of water vapour from a plant, mainly through the stomata and to a small extent through the cuticle and lenticels.", "The production and evaporation of a watery fluid called sweat that is excreted by the sweat glands in the skin of mammals."], "transportation business": ["Any commercial venture involved in the processes of conveying things or people from one place to another."], "transportation policy": ["Comprehensive statements of the objectives and policies which a local transport authority intends to pursue; it includes and estimate of transport expenditure, a statement of transport objectives, etc.\\n(Source: GOOD)"], "transportation": ["The act or means of moving tangible objects (persons or goods) from place to place. Often involves the use of some type of vehicle.", "The act of expelling a person from his native land."], "trapping": ["The act of catching an animal in a mechanical device or enclosed place or pit."], "travel": ["To move from one place to another generally by using a transportation mean; to undertake a trip.", "The transport of people on a trip or journey."], "travel cost": ["Expenditure of money or the amount of money incurred for journeying or going from one place to another by some mode of transportation.\\n(Source: ISEP / RHW)"], "treaty": ["An international agreement in writing between two states or a number of states. They are binding in international law; some create law only for those states that are parties to them."], "tree": ["Any large woody perennial plant with a distinct trunk giving rise to branches or leaves at some distance from the ground.", "A widely-used data structure that emulates a tree structure with a set of linked nodes."], "tree nursery": ["An area where trees, shrubs, or plants are grown for transplanting, for use as stocks for budding and grafting.\\n(Source: ECHO2)"], "trend": ["The general drift, tendency, or bent of a set of statistical data as related to time or another related set of statistical data.\\n(Source: MGH)"], "triazine": ["Azines that contain three nitrogen atoms in their molecules."], "trinity of principles": ["Three fundamental principles of environmental policy: precautionary principle, polluter pays-principle and cooperation principle."], "tritium": ["The hydrogen isotope having mass number 3; it is one form of heavy hydrogen, the other being deuterium."], "trophic level": ["Any of the feeding levels through which the passage of energy through an ecosystem proceeds."], "tropical forest ecosystem": ["The interacting system of a biological community and its non-living environmental surroundings in forests found in tropical regions near the equator, which are characterized by warm to hot weather and abundant rainfall."], "tropical forest": ["A vegetation class consisting of tall, close-growing trees, their columnar trunks more or less unbranched in the lower two-thirds, and forming a spreading and frequently flat crown; occurs in areas of high temperature and high rainfall."], "tropical rain forest": ["A type of forest that occurs roughly within the latitudes 28 degrees north or south of the equator and is characterized by high average temperatures and a significant amount of rainfall."], "tropics": ["The region of the earth's surface lying between two parallels of latitude on the earth, one 23\u00b027' north of the equator and the other 23\u00b027' south of the equator, representing the points farthest north and south at which the sun can shine directly overhead and constituting the boundaries of the Torrid Zone.\\n(Source: AMHER)"], "troposphere": ["The lowest of the concentric layers of the atmosphere, occurring between the Earth's surface and the tropopause."], "tropospheric ozone": ["Tropospheric ozone is a secondary pollutant formed from emissions of nitrogen oxides, non-methane volatile organic compounds and carbon monoxide. Ozone scars lung tissue, makes eyes sting and throats itch. It has been implicated as a contributor to forest dieback, damage to agricultural crops, etc.\\n(Source: WPR)"], "tundra": ["An area supporting some vegetation (lichens, mosses, sedges and low shrubs) between the northern upper limit of trees and the lower limit of perennial snow on mountains, and on the fringes of the Antarctic continent and its neighbouring islands."], "tunnel": ["A underground passageway, especially one for trains or cars that passes under a mountain, river or a congested urban area.", "An Internet Protocol (IP) network communications channel between two networks. It is used to transport another network protocol by encapsulation and often encryption of its packets."], "turbidity": ["Cloudy or hazy appearance in a naturally clear liquid caused by a suspension of colloidal liquid droplets or fine solids."], "turbine": ["A fluid acceleration machine for generating rotary mechanical power from the energy in a stream of fluid.\\n(Source: MGH)"], "tween-deck tanker": ["A sea-going vessel that includes space between two continuous floor-like surfaces or platforms, which is also designed for bulk shipments of liquids or gases."], "twin-hull craft": ["Oil tank vessels provided with a double-hull to meet the regulatory safety requirements in oil transportation."], "two-stroke engine": ["An internal combustion engine whose cycle is completed in two strokes of the piston."], "type of claim": ["A class or category of interests or remedies recognized in law or equity that create in the holder a right to the interest or its proceeds, typically taking the form of money, property or privilege.\\n(Source: BLD)"], "typhoon": ["A severe tropical cyclone in the western Pacific."], "tyre": ["A rubber ring placed over the rim of a wheel of a road vehicle to provide traction and reduce road shocks."], "ultrafiltration": ["Separation of colloidal or very fine solid materials by filtration through microporous or semipermeable mediums."], "ultrasound": ["Sound waves having a frequency above about 20,000 hertz."], "ultraviolet radiation": ["The part of the electromagnetic spectrum with wavelengths shorter than light but longer than x-rays; in the range of 4-400 nm.\\n(Source: CED)"], "underground train": ["A train for transportation of people, mostly beneath the surface of the ground, in order to lessen the traffic."], "unemployment": ["The condition of being without remunerative employment."], "ungulate": ["Animal with hooved feet.", "Having a hoof."], "United Nations": ["A voluntary association of around 180 state signatory to the UN charter (1945), whose primary aim is to maintain international peace and security, solve economic, social, and political problems through international co-operation, and promote respect for human rights.", "Relating to the United Nations."], "unleaded petrol": ["Petrol, which has no lead additives in it and therefore creates less lead pollution in the atmosphere."], "clean air area": ["Area where significant reductions in ozone forming pollutants have been achieved."], "raw water": ["Water that has not been treated."], "upbringing": ["The way in which a child is cared for and taught while it is growing up."], "Upper House": ["The body of a bicameral legislature comprising either representatives of member states in a federation or a select number of individuals from certain privileged estates or social classes."], "uranium": ["A metallic element highly toxic and radioactive; used as nuclear fuel.\\nSymbol: U, atomic number: 92."], "urban area": ["Areas within the legal boundaries of cities and towns; suburban areas developed for residential, industrial or recreational purposes.", "The area within a city or town, as indicated by appropriate traffic signs (or, in the United Kingdom, by the presence of street lights), where different traffic rules are in effect, such as a reduction of the speed limit."], "urban decay": ["Condition where part of a city or town becomes old or dirty or ruined, because businesses and wealthy families have moved away from it."], "urban design": ["A plan, outline or preliminary sketch of, or for, a city or town."], "urban development": ["Any physical extension of, or changes to, the uses of land in metropolitan areas, often involving subdivision into zones; construction or modification of buildings, roads, utilities and other facilities; removal of trees and other obstructions; and population growth and related economic, social and political changes."], "urban green": ["The complex of private and public gardens in an urban area.\\n(Source: DIFID)"], "urban landscape": ["The traits, patterns and structure of a city's specific geographic area, including its biological composition, its physical environment and its social patterns."], "urban management": ["The administration, organization and planning performed for cities or towns, particularly the process of converting farmland or undeveloped land into offices, businesses, housing and other forms of development.\\n(Source: DOE)"], "urban planning": ["The activity of designing, organizing or preparing for the future lay-out and condition of a city or town.", "The study and theory of building and other physical needs in cities or predominantly urban cultures."], "urban population": ["The total number of persons inhabiting a city, metropolitan region or any area where the sum of residents exceeds a designated amount."], "urban renewal": ["A continuing process of remodelling urban areas by means of rehabilitation and conservation as well as redevelopment. Urban renewal programmes are generally undertaken by public authorities and concern those parts of the city which have fallen below current standards of public acceptability."], "urban stress": ["A state of bodily or mental tension developed through city living, or the physical, chemical, or emotional factors that give rise to that tension."], "urban study": ["The study and theory of building and other physical needs in cities or predominantly urban cultures."], "urban traffic": ["Movements of vehicles and people within a city.\\n(Source: RRDA)"], "urban water supply": ["The distribution of water, including collection, treatment and storage, for use in a town, city or municipal area, and used generally for domestic and industrial needs."], "valley": ["Any low-lying land bordered by higher ground; especially an elongate, relatively large, gently sloping depression of the Earth's surface, commonly situated between two mountains or between ranges of hills or mountains, and often containing a stream with an outlet."], "vanadium": ["A silvery-white, ductile metal resistant to corrosion; used in alloy steels and as an x-ray target."], "vandalism": ["The deliberate or wanton destruction of personal or public property caused by a vandal."], "varnish": ["A transparent surface coating which is applied as a liquid and then changes to a hard solid."], "vegetation cover": ["Number of plants growing on a certain area of land."], "vegetable cultivation": ["Cultivation of herbaceous plants that are used as food."], "plant ecology": ["Study of the relationships between plants and their environment.\\n(Source: LBC)"], "plant selection": ["The selection by man of particular genotypes in a plant population because they exhibit desired phenotypic characters.\\n(Source: LBC)"], "vegetable oil": ["An edible, mixed glyceride oil derived from plants (fruit, leaves, and seeds)."], "plant reproduction": ["Any of various processes, either sexual or asexual, by which a plant produces one or more individuals similar to itself."], "vegetable": ["Any of various herbaceous plants having parts that are used as food.", "A person with severe brain damage or who is in a persistent vegetative state.", "An organism that is not an animal, especially an organism capable of photosynthesis."], "vegetation": ["1) The plants of an area considered in general or as communities, but not taxonomically; the total plant cover in a particular area or on the Earth as a whole. 2) The total mass of plant life that occupies a given area.\\n(Source: ALL / MGH)", "The plants that inhabit a certain region or environment."], "vegetation type": ["A community of plants or plant life that share distinguishable characteristics.\\n(Source: PEM)"], "vehicle": ["Any conveyance in or by which people or objects are transported."], "vehicle inspection": ["An official periodical examination of an automobile, truck, boat, airplane or other means of conveyance to determine compliance in design or operation with legal standards for safety or pollution emissions.\\n(Source: DAM / RHW)"], "ventilation": ["The process of supplying or removing air, by natural or mechanical means, to or from any space; such air may or may not have been conditioned."], "vermin": ["Small animals and insects that can be harmful and which are difficult to control when they appear in large numbers.\\n(Source: CAMB)"], "vertebrate": ["Any chordate animal of the subphylum Vertebrata, characterized by a bony or cartilaginous skeleton and a well-developed brain: the group contains fishes, amphibians, reptiles, birds, and mammals.\\n(Source: CED)"], "veterinary medicine": ["The branch of medical practice which treats of the diseases and injuries of animals."], "viaduct": ["A long high bridge, usually held up by many arches, which carries a railway or a road over a valley or other similar area at a lower level."], "vibration": ["A periodic motion of small amplitude and high frequency, characteristic of elastic bodies."], "video": ["A format or system used to record and transmit visual or audiovisual information by translating moving or still images into electrical signals.\\n(Source: MVG)"], "village": ["A group of houses and other buildings, such as a church, a school and some shops, which is smaller than a town, usually in the countryside.", "Small town or part of it."], "vinasse": ["The residual liquid from the distillation of alcoholic liquors, specifically, that remaining from the fermentation and distillation of beet-sugar molasses, valuable as yielding potassium salts, ammonia, etc."], "virology": ["The study of submicroscopic organisms known as viruses."], "virus": ["Submicroscopic agents that infect plants, animals and bacteria, and are unable to reproduce outside the tissues of the host.\\n(Source: ALL)", "Computer program that is designed to damage a computer and that is able to spread itself to other computers."], "viscosity": ["A measure of the resistance of a fluid."], "vitamin": ["An organic compound present in variable, minute quantities in natural foodstuffs and essential for the normal processes of growth and maintenance of the body."], "viticulture": ["Division of horticulture concerned with grape growing, studies of grape varieties, methods of culture, and insect and disease control."], "vocabulary": ["A list of words or phrases of a language, technical field or some specialized area, usually arranged in alphabetical order and often provided with brief definitions and with foreign translations."], "vocational training": ["A special training for a regular occupation or profession, especially, one for which one is specially suited or qualified."], "volatile organic compound": ["Organic compound readily passing off by evaporation."], "volatility": ["The property of a substance or substances to convert into vapor or gas without chemical change."], "volcanic eruption": ["The ejection of solid, liquid, or gaseous material from a volcano."], "volcanism": ["The processes by which magma and its associated gases rise into the crust and are extruded onto the Earth's surface and into the atmosphere.\\n(Source: BJGEO)"], "volcano": ["A vent in the surface of the Earth through which magma and associated gases and ash erupt.", "A mountain formed by volcanic material."], "voluntary work": ["Unpaid activities done by citizens often organized in associations, to provide services to others, particularly to elderly and poor people, handicapped, etc."], "Wadden Sea": ["A shallow sea extending along the North Sea coasts of The Netherlands, Germany and Denmark."], "wage system": ["System which compensates the employees with a fixed sum per piece, hour, day or another period of time, covering all compensations including salary."], "wall": ["A vertical construction made of stone, brick, wood, etc., with a length and height much greater than its thickness, used to enclose, divide or support.", "A type of small thin wall, made \u200b\u200bof wood or masonry and used for the division of an apartment or any building.", "A divisive or containing structure in an organ or cavity."], "war": ["A conflict or a state of hostility between two or more parties, nations or states, in which armed forces or military operations are used."], "warm-blooded animal": ["Animal which has a body temperature that stays the same and does not change with the temperature of its surroundings."], "warning system": ["Any series of procedures and devices designed to detect sudden or potential threats to persons, property or the environment, often utilizing radar technology."], "wastage": ["Extravagant or useless consumption or expenditures."], "waste": ["Unwanted or undesired material, usually discarded.", "To use goods and wealth inconsiderately, without any care.", "Excessive spending of goods and wealth.", "To cause extensive destruction or ruin utterly."], "waste balance": ["The inventory of all waste produced or recovered during a certain time period, classified by type and quantity.\\n(Source: DOG)"], "waste bin": ["A container for litter, rubbish, etc.\\n(Source: CED)"], "waste collection": ["The periodic or on-demand removal of solid waste from primary source locations using a collection vehicle and followed by the depositing of this waste at some central facility or disposal site."], "waste degasification": ["The removal of gaseous components from waste."], "waste exchange": ["Exchange of the recyclable part of wastes. This procedure allows to minimize waste volume and the cost relating to waste disposal. The basis of waste exchange is the concept that \"one company's waste is another company's raw material\".\\n(Source: ECOUK / ECHO2)"], "waste gas": ["Any unusable aeriform fluid, or suspension of fine particles in air, given off by a manufacturing process or the burning of a substance in a enclosed area.\\n(Source: OED / RHW)"], "waste glass": ["Discarded material from the glass manufacturing process or from used consumer products made of glass."], "waste gypsum": ["By-product of the wet limestone flue gas desulphurisation process.\\n(Source: PORTa)"], "waste heat": ["Heat derived from the cooling process of electric power generating plants and which can cause thermal pollution of watercourses, promoting algal bloom."], "waste heat charge": ["The release of heat generated as a byproduct from industrial or power generation processes.\\n(Source: TOE)"], "waste oil": ["Oil that arises as a waste product of the use of oils in a wide range of industrial and commercial activities, such as engineering, power generation and vehicle maintenance and should be properly disposed of, or treated in order to be reused."], "waste paper": ["Newspapers, magazines, cartons and other paper separated from solid waste for the purpose of recycling."], "waste recycling": ["A method of recovering wastes as resources which includes the collection, and often involving the treatment, of waste products for use as a replacement of all or part of the raw material in a manufacturing process."], "waste sorting": ["Separating waste into different materials, such as glass, metal, paper, plastic, etc.\\n(Source: PHC)"], "waste treatment": ["Any process or combination of processes that changes the chemical, physical or biological composition or character of any waste or reduces or removes its harmful properties or characteristics for any purpose."], "waste water": ["Used water, or water that is not needed, which is permitted to escape, or unavoidably escapes from canals, ditches, reservoirs or other bodies of water, for which the owners of these structures are legally responsible."], "waste water charge": ["Imposed fee, expense, or cost for the management of spent or used water that contains dissolved or suspended matter from a home, community farm, or industry.\\n(Source: TOE / RHW)"], "water bottom": ["The floor upon which any body of water rests.\\n(Source: BJGEO)"], "water collection": ["The catching of water, especially rain water, in a structure such as a basin or reservoir."], "water conservation": ["The protection, development and efficient management of water resources for beneficial purposes."], "water consumption": ["The utilization patterns and quantities entailed in a community or human group's use of water for survival, comfort and enjoyment."], "watercourse": ["A natural stream arising in a given drainage basin but not wholly dependent for its flow on surface drainage in its immediate area, flowing in a channel with a well-defined bed between visible banks or through a definite depression in the land, having a definite and permanent or periodic supply of water, and usually, but not necessarily, having a perceptible current in a particular direction and discharging at a fixed point into another body of water.\\n(Source: BJGEO)"], "water distribution system": ["The system of pipes supplying water to communities and industries."], "water erosion": ["The breakdown of solid rock into smaller particles and its removal by water."], "waterfall": ["A perpendicular or steep descent of the water of a stream."], "water flea": ["A fresh-water branchiopod crustacean of the genus Daphnia characterized by a transparent bivalve shell."], "hydrologic flow": ["The characteristic behaviour and the total quantity of water involved in a drainage basin, determined by measuring such quantities as rainfall, surface and subsurface storage and flow, and evapotranspiration.\\n(Source: BJGEO)"], "water for consumption": ["Consumptive water use starts with withdrawal, but in this case without any return, e.g. irrigation, steam escaping into the atmosphere, water contained in final products, i.e. it is no longer available directly for subsequent use."], "waterfowl": ["Aquatic birds which constitute the order Anseriformes, including the swans, ducks, geese, and screamers."], "water hardness": ["The amount of calcium and magnesium salts dissolved in water."], "water hyacinth": ["Floating aquatic plant, Eichhornia crassipes of tropical America, having showy bluish-purple flowers and swollen leafstalks: family Pontederiaceae. It forms dense masses in rivers, ponds, etc., and is a serious pest in the southern U.S., Java, Australia, New Zealand, and parts of Africa.\\n(Source: CED)"], "water level": ["The level reached by the surface of a body of water."], "water pollutant": ["A chemical or physical agent introduced to any body of water that may detrimentally alter the natural condition of that body of water and other associated bodies of water."], "water pollution": ["The manmade or man-induced alteration of the chemical, physical, biological and radiological integrity of water.\\n(Source: LANDY)"], "water pollution prevention": ["Precautionary measures, actions or installations implemented to avert or hinder human-made or human-induced alteration of the physical, biological, chemical and radiological integrity of water."], "water protection": ["Measures to conserve surface and groundwater; to ensure the continued availability of water for growing domestic, commercial and industrial uses and to ensure sufficient water for natural ecosystems.\\n(Source: GILP96a)"], "water pump": ["A machine or apparatus used to lift water, usually from a well or borehole, which is powered manually or by engine, wind or some other source."], "water purification": ["Any of several processes in which undesirable impurities in water are removed or neutralized."], "water quality": ["A graded value of the components (organic and inorganic, chemical or physical) which comprise the nature of water."], "water quality management": ["Water quality management concerns four major elements: the use (recreation, drinking water, fish and wildlife propagation, industrial or agricultural) to be made of the water; criteria to protect those uses; implementation plans (for needed industrial-municipal waste treatment improvements) and enforcement plans, and an anti-degradation statement to protect existing high quality waters.\\n(Source: USC)"], "water salination": ["Process by which water becomes more salty, found especially in hot countries where irrigation is practised."], "water science": ["The science that treats the occurrence, circulation, distribution, and properties of the waters of the earth, and their reaction with the environment.\\n(Source: MGH)"], "watershed": ["The dividing line between two adjacent river systems, such as a ridge.", "An area of land where all rainwater and melting snow naturally moves to the same body of water."], "water supply": ["A source or volume of water available for use; also, the system of reservoirs, wells, conduits, and treatment facilities required to make the water available and usable."], "water transportation": ["Transportation of goods or persons by means of ships travelling on the sea or on inland waterways.\\n(Source: CEDa)"], "water treatment": ["Purification of water to make it suitable for drinking or for any other use."], "waterway": ["A river, canal, or other navigable channel used as a means of travel or transport."], "water well": ["A well sunk to extract water from a zone of saturation."], "waterworks": ["Plant for treating and purifying water before it is pumped into pipes for distribution to houses, factories, schools, etc.", "The water supply system of a town etc., including reservoirs, pumps and pipes."], "wave energy": ["Power extracted from the motion of sea waves at the coast."], "sea wave": ["A moving ridge or swell of water occurring close to the surface of the sea, characterized by oscillating and rising and falling movements, often as a result of the frictional drag of the wind.\\n(Source: OED / INP)"], "weapon": ["An instrument of attack or defense in combat, as a gun, missile, or sword."], "weather": ["The day-to-day meteorological conditions, especially temperature, cloudiness, and rainfall, affecting a specific place."], "weather condition": ["The complex of meteorological characteristics in a given region.\\n\\n(Source: RRDA)"], "weather modification": ["The changing of natural weather phenomena by technical means."], "weather monitoring": ["The periodic or continuous surveillance or analysis of the state of the atmosphere and climate, including variables such as temperature, moisture, wind velocity and barometric pressure.\\n(Source: TOE / RHW)"], "weather forecasting": ["The act or process of predicting and highlighting meteorological conditions that are expected for a specific time period and for a specific area or portion of air space, by using objective models based on certain atmospheric parameters, along with the skill and experience of a meteorologist.\\n(Source: FEM / AUS)"], "weed": ["Any plant that grows wild and profusely, especially one that grows among cultivated plants, depriving them of space, food, etc.", "A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect.", "To pull out weeds by hand.", "To clear (a cultivated area) of weeds (unwanted vegetation)."], "weight": ["The gravitational force with which the earth attracts a body. By extension, the gravitational force with which a star, planet, or satellite attracts a nearby body."], "welding": ["Joining two metals by applying heat to melt and fuse them, with or without filler metal."], "well": ["A hole dug into the earth to reach a supply of water, oil, brine or gas.", "An interjection in response to a statement that is only partially agreed with by the speaker. It is often followed by a counterstatement by the speaker elaborating on the nature of the disagreement.", "To a great extent or degree."], "West Africa": ["A geographic region of the African continent bordered in the west and south by the Atlantic Ocean, including the republics of Benin, Burkina Faso, Cape Verde, Ivory Coast, Gambia, Ghana, Guinea-Bissau, Liberia, Mali, Mauritania, Niger, Nigeria, Senegal, Sierra Leone and Togo.\\n(Source: ECW)"], "Western Asia": ["A geographic region of Asia that includes Turkey, Iran and other countries of the Middle East and the Arabian peninsula."], "Western Europe": ["A geographic region of the European continent surrounded by the North Sea, Atlantic Ocean and the Mediterranean Sea, including Belgium, France, Germany, Great Britain, Greece, Italy, Luxembourg, Netherlands, Portugal, Spain and other member countries of the Western European Union."], "wetland": ["Area that is inundated by surface or ground water with frequency sufficient to support a prevalence of vegetative or aquatic life that requires saturated or seasonally saturated soil conditions for growth or reproduction."], "wet scrubber": ["An air cleaning device that literally washes out the dust. Exhaust air is forced into a spray chamber, where fine water particles cause the dust to drop from the air stream. The dust-ladden water is then treated to remove the solid material and is often recirculated.", "Equipment through which a gas is passed to remove impurities (solid, liquid, or gaseous particles) by intimate contact with a suitable liquid, usually an aqueous medium."], "whale": ["Large marine mammals of the order Cetacea; the body is streamlined, the broad flat tail is used for propulsion, and the limbs are balancing structures."], "whaling": ["Catching whales to use as food or for their oil, etc.", "Relating to whales."], "wholesale trade": ["The business of selling goods to retailers in larger quantities than they are sold to final consumers but in smaller quantities than they are purchased from manufacturers."], "wild animal": ["A non-domesticated animal living independently of man."], "wildlife": ["All non-domesticated plants, animals and other organisms living in the wild."], "wildlife sanctuary": ["An area designated for the protection of wild animals."], "wild plant": ["A non-domesticated plant."], "wind": ["The motion of air relative to the earth's surface; usually means horizontal air motion, as distinguished from vertical motion.", "To wrap something in loops around something else."], "wind erosion": ["The breakdown of solid rock into smaller particles and its removal by wind."], "windmill": ["A machine for grinding or pumping driven by a set of adjustable vanes or sails that are caused to turn by the force of the wind."], "wind power": ["Energy extracted from wind, traditionally in a windmill, but increasingly by more complicated designes including turbines, usually to produce electricity but also for water pumping."], "wind power station": ["Power station which uses wind to drive a turbine which creates electricity."], "woman": ["An adult human member of the sex that produces ova and bears young."], "woman's status": ["The social position, rank or relative importance of women in society."], "timber": ["A wood, especially when regarded as a construction material.\\n(Source: CED)"], "wood": ["An area where trees grow, where there are, no streets, no buildings, no agriculture beyond growing trees.", "A dense growth of trees more extensive than a grove and smaller than a forest.", "The substance making up the central part of the trunk and branches of a tree. Used as a material for construction, to manufacture various items, etc. or as fuel."], "woodland clearance": ["The permanent clear-felling of an area of forest or woodland."], "wood preservation": ["The use of chemicals to prevent or retard the decay of wood, especially by fungi or insects; widely used preservatives include creosote, pitch, sodium fluoride and tar; especially used on wood having contact with the ground."], "wood waste": ["Waste which is left over after the processing of raw timber.\\n(Source: ISEP)"], "wool": ["The soft, curly hair that forms the fleece of sheep, lamas and other animals and which is used to produce clothing."], "work accident": ["Accident occurring in the course of the employment and caused by inherent or related factors arising from the operation of materials of one's occupation."], "working condition": ["All existing circumstances affecting labor in the workplace, including job hours, physical aspects, legal rights and responsibilities."], "working hours": ["The time devoted to gainful employment or job-related activities, usually calculated as hours per day or per week."], "workplace": ["Any or all locations or environments where people are employed."], "world": ["The Earth with all its inhabitants and all things upon it.", "The third planet (counted from the center) of our solar system.", "Everything that exists anywhere.", "Social context of a person.", "Human collective existence.", "A planet,especially one which is inhabited or inhabitable.", "A great amount.", "A state or place of existence other than that on Earth.", "A state or place of existence other than that of contemporary life."], "world heritage site": ["Site of great cultural significance and geographic areas of outstanding universal value, for example the Pyramids of Egypt, the historical centre of Rome, the Grand Canyon of United States, Venice, the Taj Mahal of India, the Great Wall of China.\\n(Source: GILP96)"], "write-off": ["Accounting procedure that is used when an asset is uncollectible and is therefore charged-off as a loss."], "X ray": ["Short wavelength electromagnetic wave usually produced by bombarding a metal target in a vacuum."], "yeast": ["Many species of unicellular fungi, most of which belong to the Ascomycetes and reproduce by budding. The genus Saccharomyces is used in brewing and winemaking because in low oxygen concentration it produces zymase, an enzyme system that breaks down sugars to alcohol and carbon dioxide. Saccharomyces is also used in bread-making. Some yeasts are used as a source of protein and of vitamins of the B group.\\n(Source: ALL)"], "infant": ["A young child in the first years of life.\\n(Source: ISEP)"], "youth": ["The state of being young."], "youth work": ["Job opportunities and employment for adolescents, either for financial reward or educational enrichment.\\n(Source: RHW)"], "zinc": ["Chemical element with symbol Zn and atomic number 30; a brittle bluish-white metallic element that becomes coated with a corrosion-resistant layer in moist air and occurs chiefly in sphalerite and smithsonite.", "To cover with zinc."], "zoning": ["Designation and reservation under a master plan of land use for light and heavy industry, dwellings, offices, and other buildings."], "zoological garden": ["Area in which animals, especially wild animals, are kept so that people can go and look at them, or study them."], "zoology": ["The study of animals, including their classification, structure, physiology, and history."], "zoonosis": ["Infectious disease that is able to be transmitted from animals to humans or from humans to animals."], "accounting": ["Method of recording all the transactions affecting the financial condition of a business or organization."], "animal life": ["All of the animal life of any particular region or time."], "consumer product": ["Economic good that directly satisfies human wants or desires.\\n(Source: WEBSTE)"], "human body": ["The entire physical structure of an human being."], "human science": ["Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group."], "juridical act": ["An act relating to the administration of justice."], "physical chemistry": ["A science dealing with the effects of physical phenomena on chemical properties.\\n(Source: LEE)"], "plant life": ["The plants that inhabit a certain region or environment."], "risk management": ["The process of evaluating and selecting alternative regulatory and non-regulatory responses to prepare for the probability of an accidental occurrence and its expected magnitude of damage, including the consideration of legal, economic and behavioral factors.\\n(Source: HMD / TOE)"], "safety system": ["A unified, coordinated assemblage or plan of procedures and devices intended to lower the occurrence or risk of injury, loss and danger to persons, property or the environment.\\n(Source: OED / RHW)"], "social science": ["The study of society and of the relationship of individual members within society, including economics, history, political science, psychology, anthropology, and sociology."], "promotion of trade and industry": ["Any activity that encourages or supports the buying, selling or exchanging of goods or services with other countries, which could include marketing, diplomatic pressure or the provision of export incentives such as credits and guarantees, government subsidies, training and consultation or advice."], "masonry": ["A construction of stone or similar materials such as concrete or brick.", "Worldwide widespread movement for humanitarianism which gives its supporters an understanding of the ideal of the noble humanity.", "A widespread secret fraternal order whose members pledge mutually assistance and brotherly love."], "sand flat": ["A flat, marshy or barren tract of land that is alternately covered and uncovered by the tide, and consisting of unconsolidated sediment (mostly mud and sand)."], "animal species": ["Species belonging to the animal kingdom."], "plant species": ["Species belonging to the plant kingdom."], "occupation": ["Productive activity, service, trade, or craft for which one is regularly paid.", "Task with which one occupies oneself.", "A situation where a country or region is under the control of a foreign army."], "folk tradition": ["The common beliefs, practices, customs and other cultural elements of an ethnic or social group that are rooted in the past, but are persisting into the present due to means such as arts and crafts, songs and music, dance, foods, drama, storytelling and certain forms of oral communication.\\n(Source: VFP)"], "law branch": ["A subdivision of the body of principles and regulations established by a government or other authority, generally defined by its scope or application.\\n(Source: BLD / ISEP)"], "judicial system": ["Entire network of courts in a particular jurisdiction."], "measuring instrument": ["Instrument that shows the extent or amount or quantity or degree of something."], "major risk": ["The high probability that a given hazard or situation will yield a significant amount of lives lost, persons injured, damage to property , disruption of economic activity or harm to the environment; or any product of the probability of occurrence and the expected magnitude of damage beyond a maximum acceptable level.\\n(Source: TOE / HMD)"], "rescue system": ["Any series of procedures and devices used by trained personnel to provide immediate assistance to persons who are in danger or injured.\\n(Source: GT2 / HMD)"], "tax system": ["A co-ordinated body of methods or plan of procedures for levying compulsory charges for the purpose of raising revenue."], "forest ecology": ["The science that deals with the relationship of forest trees to their environment, to one another, and to other plants and to animals in the forest."], "urban ecology": ["Concept derived from biology in which the city is viewed as a total environment, as a life-supporting system for the large number of people concentrated there, and within this people organize themselves and adapt to a constantly changing environment. Regarded as the same as human ecology.\\n(Source: GOOD)"], "ecozone": ["A broad geographic area in which there are distinctive climate patterns, ocean conditions, types of landscapes and species of plants and animals."], "environmental engineering": ["Branch of engineering concerned with the environment and its proper management. The major environmental engineering disciplines regard water supply, wastewater, stormwater, solid waste, hazardous waste, noise radiology, industrial hygiene, oceanography and the like.\\n(Source: PORT)"], "altitude": ["In general, a term used to describe a topographic eminence.\\n(Source: WHIT)", "A specific altitude or height above a given level.", "The angle between the horizontal and a point at a higher level (in surveying)."], "cove": ["A deep recess hollow, or nook in a cliff or steep mountainside, or a small, straight valley extending into a mountain or down a mountainside.\\n(Source: BJGEO / WHIT)", "A valley or portion of lowland that penetrates into a plateau or mountain front.\\n(Source: BJGEO / WHIT)"], "canyon": ["A long deep, relatively narrow steep-sided valley confined between lofty and precipitous walls in a plateau or mountainous area, often with a stream at the bottom; similar to, but largest than, a gorge. It is characteristic of an arid or semiarid area (such as western U.S.) where stream downcutting greatly exceeds weathering.\\n(Source: BJGEO)", "A valley, especially a long, narrow, steep valley, cut in rock by a river."], "geographic circque": ["A deep steep-walled half-bowl-like recess or hollow, variously described as horseshoe- or crescent-shaped or semi-circular in plan, situated high on the side of a mountain and commonly at the head of a glacial valley and produced by the erosive activity of a mountain glacier. It often contains a small round lake, and it may or may not be occupied by ice or snow.\\n(Source: BJGEO)"], "continent": ["A protuberance of the Earth's crustal shell, with an area of several million square miles and sufficient elevation so that much of it above sea level."], "creek": ["A narrow inlet or bay, especially of the sea.\\n(Source: CED)"], "fault": ["A fracture or a zone of fractures along which there has been displacement of the sides relative to one another parallel to the fracture.", "A wrong action attributable to bad judgment or ignorance or inattention.", "An imperfection in a device or machine.", "Wrong act done deliberately or good act omitted deliberately.", "An incorrect action not made deliberately."], "cliff": ["A steep coastal declivity which may or may not be precipitous, the slope angle being dependent partly on the jointing, bedding and hardness of the materials from which the cliff has been formed, and partly on the erosional processes at work. Where wave attack is dominant the cliff-foot will be rapidly eroded and cliff retreat will take place, especially in unconsolidated materials such as clays, sands, etc., frequently leaving behind an abrasion platform at the foot of the cliff.\\n(Source: WHIT)"], "open sea": ["The high seas lying outside the exclusive economic zones of states. All states have equal rights to navigate, to overfly, to lay submarine cables, to construct artificial islands, to fish, and to conduct scientific research within the high seas.\\n(Source: GOOD)"], "coral reef lagoon": ["A coastal stretch of shallow saltwater virtually cut off from the open sea by a coral reef.\\n(Source: WHIT)"], "river bed": ["The channel containing or formerly containing the water of a river."], "barrier reef": ["An elongated accumulation of coral lying at low-tide level parallel to the coast but separated from it by a wide and deep lagoon or strait."], "marine park": ["A permanent reservation on the seabed for the conservation of species."], "reserve": ["Any area of land or water that has been set aside for a special purpose, often to prevent or reduce harm to its wildlife and ecosystems.\\n(Source: RHW / DOE)", "To arrange for (something for someone else) in advance.", "To give or assign a resource to a particular person or cause.", "To assign a resource to a particular person or cause."], "alignment": ["The selection and detailed layout of public transport routes in the light of construction, operation, service, technology, and economic criteria.", "The spatial property possessed by an arrangement or position of things in a straight line or in parallel lines."], "bocage": ["The wooded countryside characteristic of northern France, with small irregular-shaped fields and many hedges and copses. In the French language the word bocage refers both to the hedge itself and to a landscape consisting of hedges. Bocage landscapes usually have a slightly rolling landform, and are found mainly in maritime climates. Being a small-scale, enclosed landscape, the bocage offers much variations in biotopes, with habitats for birds, small mammals, amphibians, reptiles and butterflies."], "French formal garden": ["A style of garden displaying symmetry and geometrical patterns."], "English garden": ["A plot of ground consisting of an orderly and balanced arrangement of masses of flowers, shrubs and trees, following British traditions or style.\\n(Source: CBO)"], "site protection": ["Precautionary actions, procedures or installations undertaken to prevent or reduce harm to the environmental integrity of a physical area or location."], "coast protection": ["A form of environmental management designed to allay the progressive degradation of the land by coastal erosion processes."], "environmental citizenship": ["The state, character or behavior of a person viewed as a member of the ecosystem with attendant rights and responsibilities, especially the responsibility to maintain ecological integrity and the right to exist in a healthy environment.\\n(Source: TOE / RHW)"], "sponsorship": ["A person, firm, organization, etc. that provides or pledges money for an undertaking or event."], "migratory fish": ["Fishes that migrate in a body, often between breeding places and winter feeding grounds.\\n(Source: RRDA)"], "marine mammal": ["A diverse group of roughly 120 species of mammal that are primarily ocean-dwelling or depend on the ocean for food.", "Mammal which is adapted to live in the sea, such as whales, dolphins, porpoises, etc."], "ovine": ["Horned ruminant mammals raised in many breeds for wool, edible flesh, or skin."], "shelter": ["Cover or protection, as from weather or danger; place of refuge.\\n(Source: CED)", "A refuge, haven or other cover or protection from something.", "To take cover.", "To provide cover.", "A shielding or protection against the unpleasant, unwanted, or dangerous."], "nesting area": ["A place where birds gather to lay eggs."], "spawning ground": ["Area of water where fish come each year to produce their eggs."], "nesting": ["The building of nests for egg laying and rearing of offspring."], "animal population": ["A group of animals inhabiting a given area.\\n(Source: CED)"], "animal reproduction": ["Any of various processes, either sexual or asexual, by which an animal produces one or more individuals similar to itself."], "survival": ["The act or fact of surviving or condition of having survived."], "endemic species": ["Species native to, and restricted to, a particular geographical region."], "broad-leaved tree": ["Deciduous tree which has wide leaves, as opposed to the needles on conifers.\\n(Source: PHC)"], "sea grass bed": ["Seaweeds communities formed by green, brown and red macroscopic algae and by sea phanerogams such as Posidonia oceanica and Zostera noltii, etc."], "macrophyte": ["A large macroscopic plant, used especially of aquatic forms such as kelp (variety of large brown seaweed which is a source of iodine and potash).\\n(Source: LBC / PHC)"], "riverside vegetation": ["Plants growing in areas adjacent to rivers and streams."], "chestnut": ["Any north temperate fagaceous tree of the genus Castanea, such as Castanea sativa, which produce flowers in long catkins and nuts in a prickly bur.", "The nut of the chestnut tree."], "vegetation level": ["A subdivision of vegetation characteristic of a certain altitude above sea level at a given latitude.\\n(Source: ECHO2)"], "plant population": ["The number of plants in an area."], "arboretum": ["Collection of trees from different parts of the world, grown for scientific study."], "chorology": ["The study of the causal relations between geographical phenomena occurring within a particular region."], "botanical conservatory": ["Gardens for the conservation of rare species of plants.\\n(Source: RAMADE)"], "plant heritage": ["The sum of the earth's or a particular region's herb, vegetable, shrub and tree life viewed as the inheritance of the present generation, especially plant species deemed worthy of preservation and protection from extinction.\\n(Source: PPP / OED)"], "pruning": ["The cutting off or removal of dead or living parts or branches of a plant to improve shape or growth."], "mountain forest": ["An extensive area of woodland that is found at natural elevations usually higher than 2000 feet."], "state forest": ["Forest owned and managed by the State."], "Mediterranean forest": ["Type of forest found in the Mediterranean area comprising mainly xerophilous evergreen trees."], "private forest": ["A privately owned forest."], "maquis": ["A low evergreen shrub formation, usually found on siliceous soils in the Mediterranean lands where winter rainfall and summer drought are the characteristic climate features."], "nursery garden": ["A place where plants are propagated and nurtured until they reach a size appropriate for replanting at another location."], "forest protection": ["Branch of forestry concerned with the prevention and control of damage to forests arising from the action of people or livestock, of pests and abiotic agents."], "resinous plant": ["A plant yielding or producing resin."], "big game": ["Large wild animals that weigh typically more than 30 lb when fully grown, hunted for food, sport or profit."], "shellfish farming": ["Raising of shellfish in inland waters, estuaries or coastal waters, for commercial purposes."], "oyster farming": ["Raising oysters for human consumption."], "competitive examination": ["A test given to a candidate for a certificate or a position and concerned typically with problems to be solved, skills to be demonstrated, or tasks to be performed."], "initial training": ["Any education, instruction or discipline occurring at the beginning of an activity, task, occupation or life span."], "pedagogy": ["The principles, practice, or profession of teaching.\\n(Source: CED)", "Science on education and teaching."], "cycle path": ["Part of the road or a special path for the use of people riding bicycles."], "ski run": ["A trail, slope, or course for skiing."], "ecomuseum": ["A private, non-profit facility where plants and animals can be viewed in a natural outdoor setting.\\n(Source: AGRENV)"], "folklore": ["The traditional and common beliefs, practices and customs of a people, which are passed on as a shared way of life, often through oral traditions such as folktales, legends, anecdotes, proverbs, jokes and other forms of communication.\\n(Source: VFP)"], "country lodge": ["A small house or a hut located in the countryside."], "lodging": ["Provision of accommodation for rest or for residence in a room or rooms or in a dwelling place."], "public": ["The community or people in general or a part or section of the community grouped because of a common interest or activity.\\n(Source: CED)"], "path": ["A route or track between one place to another.", "The direction of movement, line or route of a vessel at any given moment."], "educational path": ["A guided trail, designed to explain to children a piece of countryside, the type of soil, flora, fauna, etc. Such trails may be self-guiding, using either explanatory notices set up at intervals or numbered boards referring to a printed leaflet: in other cases parties may be led by a demonstrator or warden.\\n(Source: GOOD)"], "seaside resort": ["A place near the sea where people spend their holidays and enjoy themselves."], "winter sports resort": ["Resort where sports held in the open air on snow or ice, especially skiing are practiced."], "all-terrain vehicle": ["A land carriage so constructed that it can be used on any kind of road or rough terrain and can be operated for many purposes, such as carrying goods, transporting the injured, conveying passengers, etc."], "population density": ["The number of people relative to the space occupied by them."], "young": ["Living being as genetically proceeding from an other one.", "The offspring or descendants of an animal (in some languages, it is used to refer to humans).", "In the early part of growth or life."], "active population": ["The number of people available and eligible for employment within a given enterprise, region or nation."], "time allocation": ["The act of assigning various hours of one's day, week or year to particular activities, especially those falling within the categories of work and leisure."], "goods": ["A term of variable content and meaning. It may include every species of personal chattels or property. Items of merchandise, supplies, raw materials, or finished goods. Land is excluded."], "goods and services": ["The total of economic assets, including both physical or storable objects and intangible acts of human assistance."], "time budget": ["Determining or planning for allotment of time in hours, days, weeks, etc.\\n(Source: RHW)"], "living environment": ["External conditions or surroundings in which people live or work."], "product life cycle": ["A product life cycle includes the following phases: acquisition of raw materials, production, packaging, distribution, use, recyling, and disposal."], "quality certification": ["The formal assertion in writing that a commodity, service or other product has attained a recognized and relatively high grade or level of excellence.\\n(Source: BLD / RHW)"], "living standard": ["A measurement of the development level in a country or community, gauged by factors such as personal income, education, life expectancy, food consumption, health care, technology and the use of natural resources.\\n(Source: TEX)"], "supply and demand": ["The relationship between the amount or quantity of a commodity that is available for purchase and the desire or ability of consumers to buy or purchase the commodity, which, in theory, determines the commodity's price in a free market.\\n(Source: MGHME)"], "ecological inequality": ["Any imbalance or disparity among inhabitants of the same living environment deemed inappropriate, unjust or detrimental to that environment's integrity.\\n(Source: TOE / RHW)"], "social inequality": ["Unequal rewards or opportunities for different individuals within a group or groups within a society. If equality is judged in terms of legal equality, equality of opportunity, or equality of outcome, then inequality is a constant feature of the human condition."], "myth": ["A traditional or legendary story, usually dealing with supernatural beings, ancestors, heroes or events, that is with or without determinable basis of fact or a natural explanation, but is used to explain some practice, rite or phenomenon of nature, or to justify the existence of a social institution."], "social psychology": ["Study of the effects of social structure on cognition and behavior, of processes of face-to-face interaction, and of the negotiation of social order."], "feeling for nature": ["A consciousness, sensibility or sympathetic perception of the physical world and its scenery in their uncultivated state."], "socioeconomics": ["The study of the interaction between society and economy."], "administrative deed": ["Any formal and legitimate step taken or decision made on matters of policy by a chief or other top-level officer within an organization.\\n(Source: DAM)"], "territorial government": ["An administrative body or system in which political direction or control is exercised over a designated area or an administrative division of a city, county or larger geographical area.\\n(Source: RHW / BLD)"], "citizen": ["A native or naturalized member of a state or nation who owes allegiance, bears responsibilities and obtains rights, including protection, from the government."], "parliamentary debate": ["Formal discussion or dispute on a particular matter among the members of the parliament."], "subsidiary principle": ["The fundamental doctrine or tenet that policy making decisions should be made at the most decentralized level, in which a centralized governing body would not take action unless it it is more effective than action taken at a lower government level."], "national accounting": ["Organised method of recording all business transactions in the national economy."], "satellite account": ["A separate financial record or statement that discloses financial activity in a particular area and supplements existing financial records.\\n(Source: RHW)"], "household expenditure": ["Any spending done by a person living alone or by a group of people living together in shared accommodation and with common domestic expenses.\\n(Source: ODE)"], "intervention fund": ["Money or financial resources set aside to interpose or interfere in any business affair in order to affect an outcome.\\n(Source: OED)"], "financial fund": ["Monetary resources set aside for some purpose."], "International Monetary Fund": ["An international organization established in 1944, affiliated with the United Nations that acts as an international bank facilitating the exchange of national currencies and providing loans to member nations."], "gross domestic product": ["The total output of goods and services produced by a national economy in a given period, usually a year, valued at market prices. It is gross, since no allowance is made, for the value of replacement capital goods.", "A measure of the economic production of a particular territory in financial capital terms over a specific time period."], "process analysis": ["The examination of a process to understand it and therefore develop ideas for its improvement."], "audit": ["The periodic or continuous verification of the accounts, assets and liabilities of a company or other organization, often to confirm compliance with legal and professional standards.", "To conduct an independent review and examination of system records and activities in order to test the adequacy and effectiveness of data security and data integrity procedures, to ensure compliance with established policy and operational procedures, and to recommend any necessary changes."], "water cost": ["The value or the amount of money exchanged for the production and sustained supply of water.\\n(Source: EFP / RHW)"], "ecomarketing": ["The marketing of products that are presumed to be environmentally safe."], "market study": ["The gathering and studying of data to determine the projection of demand for an item or service."], "free trade": ["Trade which is unimpeded by tariffs, import and export quotas and other measures which obstruct the free movement of goods and services between states."], "calculation": ["The act, process or result of calculating.\\n(Source: CED)"], "density": ["The mass of a substance per unit volume."], "index": ["A list of record surrogates arranged in order of some attribute expressible in machine-orderable form.\\n(Source: MGH)"], "census survey": ["An official periodic count of a population including such information as sex, age, occupation, etc."], "statistical series": ["An ordered sequence of data samples in numerical form used to predict or demonstrate trends through time and space."], "opinion survey": ["The canvassing of a representative sample of a large group of people on some question in order to determine the general opinion of a group."], "rate": ["The amount of change in some quantity during a time interval divided by the length of the time interval."], "seasonal variation": ["In time series, that part of the movement which is assigned to the effect of the seasons on the year."], "scientific committee": ["An organized group of persons elected or appointed to discuss scientific matters."], "applied research": ["Research directed toward using knowledge gained by basic research to make things or to create situations that will serve a practical or utilitarian purpose.\\n(Source: MGH)"], "scientific research": ["Systematic investigation to establish facts or principles concerning a specific scientific subject."], "agronomy": ["The principles and procedures of soil management and of field crop and special-purpose plant improvement, management, and production."], "agrosystem": ["Ecosystem dominated by the continuous agricultural intervention of man."], "crop treatment": ["Use of chemicals in order to avoid damage of crops by insects or weeds.\\n(Source: WRIGHTa)"], "aviculture": ["The raising, keeping, and care of birds."], "transhumance": ["The seasonal migration of livestock to suitable grazing grounds."], "mineral conditioner": ["Any naturally occurring inorganic substances with a definite chemical composition and usually of crystalline structure, such as rocks, which are used to stabilize soil, improving its resistance to erosion, texture and permeability.\\n(Source: RHW / SOI)"], "slash and burn culture": ["A traditional farming system that has been used by generations of farmers in tropical forests and the savannah of north and east Africa. It is known to be an ecologically sound form of cultivation, and because the soil is poor in tropical rain forests it is a sustainable method of farming. It is still practised today, primarily in the developing countries. Small areas of bush or forests are cleared and the smaller trees burned. This unlocks the nutrients in the vegetation and gives the soil fertilizer that is easily taken up by plants. A few years later the soil is degraded and the farmer moves on to do the same at another site. The original ground is left fallow for anything up to 20 years so that the forest can regenerate. With the growth in population and in the subsequent need for more farming land to produce food, the method is increasingly being used today to clear large areas of tropical forests for cattle ranching, and in most cases the ground is not left fallow for long enough and, with modern mechanized farming systems, not enough tree stumps or suitable habitats for plant life are left to start the regeneration process.\\n(Source: WRIGHT)"], "chalk": ["A soft, pure, earthy, fine-textured, usually white to light gray or buff limestone of marine origin, consisting almost wholly (90-99%) of calcite.", "A writing implement (made of white or coloured chalk) that leaves an impression through being divided into a powder or paste that sticks to the surface."], "organic matter": ["Plant and animal residue that decomposes and becomes a part of the soil."], "drainage system": ["A surface stream, or a body of impounded surface water, together with all other such streams and water bodies that are tributary to it and by which a region is drained. An artificial drainage system includes also surface and subsurface conduits."], "irrigation system": ["A system of man-made channels for supplying water to land to allow plants to grow."], "soil salinity": ["Measurement of the quantity of mineral salts found in a soil. Many semi-arid and arid areas are naturally salty. By definition they are areas of substantial water deficit where evapotranspiration exceeds precipitation. Thus, whereas in humid areas there is sufficient water to percolate through the soil and to leach soluble materials from the soil and the rocks into the rivers and hence into the sea, in deserts this is not the case. Salts therefore tend to accumulate.\\n(Source: PHC / GOUD)"], "approach": ["The way or means of entry or access.", "The method, orientation, way of thought in which one takes up a subject, a problem, an argument etc.", "The act of drawing spatially closer to something.", "To begin to deal with, e.g., a task, a problem, etc.", "To come near to; to move towards.", "To come near or verge on, resemble, come nearer in quality, or character.", "To make advances to someone, usually with a proposal or suggestion.", "To come near in time."], "railway station": ["A place along a route or line at which a train stops to pick up or let off passengers or goods, especially with ancillary buildings and services.", "A building in or at which trains stop."], "bus station": ["A place along a route or line at which a bus stops for fuel or to pick up or let off passengers or goods, especially with ancillary buildings and services.\\n(Source: CED)"], "railway network": ["The whole system of railway distribution in a country."], "road network": ["The system of roads through a country."], "navigation": ["The science or art of conducting ships or aircraft from one place to another, esp. the method of determining position, course, and distance travelled over the surface of the earth by the principles of geometry and astronomy and by reference to devices (as radar beacons or instruments) designed as aids.", "The transport and movement of goods, people and animals over water."], "merchant shipping": ["Transportation of persons and goods by means of ships travelling along fixed navigation routes.\\n(Source: ZINZANa)"], "combined transport": ["Transport in which more than one carrier is used, e.g. road, rail and sea."], "periurban space": ["Any expanse of land or region located on the outskirts of a city or town.\\n(Source: RHW)"], "single family dwelling": ["An unattached dwelling unit inhabited by an adult person plus one or more related persons."], "traditional architecture": ["Methods of construction which use locally available resources to address local needs."], "building destruction": ["The tearing down of buildings by mechanical means."], "building restoration": ["The accurate reestablishment of the form and details of a building, its artifacts, and the site on which it is located, usually as it appeared at a particular time."], "ISO standard": ["Documented agreements containing technical specifications or other precise criteria to be used consistently as rules, guidelines, or definitions of characteristics, to ensure that materials, products, processes and services are fit for their purpose.\\n(Source: ISOCH)"], "technical regulation": ["A government or management prescribed rule that provides detailed or stringent requirements, either directly or by referring to or incorporating the content of a standard, technical specification or code of practice.\\n(Source: PVG)"], "codification": ["The process of collecting and arranging systematically, usually by subject, the laws of a state or country, or the rules and regulations covering a particular area or subject of law or practice."], "animal rights": ["Just claims, legal guarantees or moral principles accorded to sentient, non-human species, including freedom from abuse, consumption, experimentation, use as clothing or performing for human entertainment."], "citizen rights": ["Rights recognized and protected by law, pertaining to the members of a state.\\n(Source: ZINZANa)"], "notice": ["Factual information, advice or a written warning communicated to a person by an authorized source, often conveyed because of a legal or administrative rule requiring transmission of such information to all concerned parties.", "To pay attention and perceive something.", "A sign posted in a public place as an advertisement.", "To see, discover or determine something, unclear, distant or hidden, by looking carefully.", "Advance notification (usually written) of the intention to withdraw from an arrangement of contract.", "To make or write a comment on."], "order": ["A direction or command of a court. In this sense it is often used synonymously with judgment.", "The document bearing the seal of the court recording its judgment in a case.", "To express as instruction to be executed by the receiver, in accordance with an authority acknowledged by him.", "A biological taxon, a group of species, part of a class and consisting of one or more families", "A formal association of people with similar interests.", "That which is enjoined or ordered to one or several persons by a superior authority.", "A condition of regular or proper arrangement.", "A command given by a superior (e.g., a military or law enforcement officer) that must be obeyed.", "A group of person living under a religious rule.", "A degree in a continuum of size or quantity.", "To place a request for goods at a company.", "To give instructions to or direct somebody to do something with authority."], "building permit": ["Authorization required by local governmental bodies for the erection of an enclosed structure or for the major alteration or expansion of an existing edifice."], "law draft": ["The form in which proposed statutes, resolutions or special acts are introduced into a legislative body, before they are enacted or passed."], "regulation": ["A specification of behavior used as an authoritative guide for conduct.", "The act of regulating; a rule or order prescribed for management or government; a regulating principle; a precept. Rule of order prescribed by superior or competent authority relating to action on those under its control."], "concession": ["Any rebate, abatement, voluntary grant of or a yielding to a demand or claim, typically made by a government or controlling authority to an individual or organization.\\n(Source: BLD)"], "declaration of public utility": ["Administrative Act giving the right to take private property for public use.\\n(Source: BLACKa)"], "public inquiry": ["An investigation, especially a formal one conducted into a matter of public utility by a body constituted for that purpose by a government, local authority, or other organization."], "easement": ["The rights of use over the property of someone else; a burden on a piece of land causing the owner to suffer access by another."], "crime": ["Any act done in violation of those duties which an individual owes to the community, and for the breach of which the law has provided that the offender shall make satisfaction to the public.\\n(Source: BLACK)"], "criminal law procedure": ["The rules of law governing the procedure by which crimes are investigated, prosecuted, adjudicated, and punished.\\n(Source: BLACK)"], "conflict": ["A state of opposition or disagreement between ideas, interests, etc."], "litigation": ["A judicial contest, a judicial controversy, a suit at law.\\n(Source: BLACK)"], "justice": ["The correct application of law as opposed to arbitrariness."], "trial": ["A judicial examination and determination of issues between parties to action; whether they need issues of law or of fact. A judicial examination, in accordance with law of the land, of a cause, either civil or criminal, of the issues between the parties, whether of law or fact, before a court that has proper jurisdiction.", "Grammatical number related to precisely 3 objects of the same type"], "court": ["An organ of the government, belonging to the judicial department, whose function is the application of the laws to controversies brought before it and the public administration of justice.", "The residence of a sovereign.", "The actual enclosed space in which a judge regularly holds court.", "To engage in behavior leading to mating.", "To engage in activities intended to win someone's affections."], "lease": ["Agreement which gives rise to relationship of landlord and tenant (real property) or lessor and lessee (real or personal property). Contract for exclusive possession of lands or tenements for determinate period. Contract for possession and profits of lands and tenements either for life, or for certain period of time, or during the pleasure of the parties.", "To hold under a lease or rental agreement of goods and services.", "A contract granting use or occupation of property during a specified period in exchange for a specified rent.", "The period of a lease.", "To operate or live in some property or land through a long-term contract from the owner.", "To take or hold by lease.", "To grant a lease.", "To let for money."], "certification": ["The formal assertion in writing of some fact.", "A procedure by which a third party gives written assurance that a product, process or service conforms to specified requirements.\\n(source: ISO/IEC Guide 2:1996)"], "homologation": ["The granting of approval by an official authority."], "pre-emption": ["The right of first refusal to purchase land in the event that the grantor of the right should decide to sell."], "prescription": ["Acquisition of rights to the property caused by reason of continuous and prolonged use.", "A written description by a physician of medicine and dosage."], "repression": ["The act, as by power or authority, of arresting or inhibiting the communication of ideas or facts as expressed in a practice, movement, publication or piece of evidence in a court proceeding.", "The psychological act of excluding desires and impulses (wishes, fantasies or feelings) from one's consciousness and attempting to hold or subdue them in the subconscious. (source: Wikipedia)", "The persecution of an individual or group for political reasons, particularly for the purpose of restricting or preventing their ability to take part in the political life of society."], "devolution": ["The act of assigning or entrusting authority, powers or functions to another as deputy or agent, typically to a subordinate in the administrative structure of an organization or institution."], "biomarker": ["A normal metabolite that, when present in abnormal concentrations in certain body fluids, can indicate the presence of a particular disease or toxicological condition."], "quality objective": ["Any goal or target established for a product, service or endeavor that aspires to attain a relatively high grade or level of excellence."], "solid particle": ["Any tiny or very small mass of material that has a definite volume and shape and resists forces that would alter its volume or shape."], "sensor": ["The generic name for a device that senses either the absolute value or a change in a physical quantity such as temperature, pressure, flow rate, or pH, or the intensity of light, sound, or ratio waves and converts that change into a useful input signal for an information-gathering system."], "instrumentation": ["Designing, manufacturing, and utilizing physical instruments or instrument systems for detection, observation, measurement, automatic control, automatic computation, communication, or data processing."], "metrology": ["The science of measurement."], "observation satellite": ["Man-made device that orbits the earth, receiving, processing and transmitting signals and generating images such as weather pictures."], "atrazine": ["Herbicide belonging to the triazine group, widely employed and particularly in maize crops."], "organic nitrogen": ["Essential nutrient of the food supply of plants and the diets of animals. Animals obtain it in nitrogen-containing compounds, particularly aminoacids. Although the atmosphere is nearly 80% gaseous nitrogen, very few organisms have the ability to use it in this form. The higher plants normally obtain it from the soil after microorganisms have converted the nitrogen into ammonia or nitrates, which they can then absorb. This conversion of nitrogen, known as nitrogen fixation, is essential for the formation of amino acids which, in turn, are the building blocks of proteins.\\n(Source: WRIGHT)"], "halogenated compound": ["A substance containing halogen atoms."], "pyralene": ["Chemical compound belonging to the polychlorinated biphenyls family, used in the production of electrical equipment which requires dielectric fluid such as power transformers and capacitors, as well as in hydraulic machinery, vacuum pumps, compressors and heat-exchanger fluids.\\n(Source: PZ)"], "asbestosis": ["A non-malignant progressive, irreversible, lung disease, characterized by diffuse fibrosis, resulting from the inhalation of asbestos fibers."], "genotoxicity": ["The action of chemical, physical and biological agents that damage DNA."], "intoxication": ["The state of being poisoned; the condition produced by a poison which may be swallowed, inhaled, injected, or absorbed through the skin.\\n(Source: KOREN)"], "total organic carbon": ["The amount of carbon covalently bound in organic compounds in a water sample."], "laboratory test": ["A test, examination or evaluation performed in a laboratory."], "biotic index": ["Scale for showing the quality of an environment by indicating the types of organisms present in it (e.g. how clean a river is)."], "photodegradation": ["The capability of being decomposed by prolonged exposure to light."], "insoluble substance": ["Substance incapable of forming a solution, especially in water."], "non-volatile substance": ["Substance that is not capable of changing from a solid or liquid form to a vapour.\\n(Source: CEDa)"], "volatile substance": ["A substance capable of readily changing from a solid or liquid form to a vapour; having a high vapour pressure and a low boiling point."], "chemical corrosivity": ["The tendency of a metal to wear away another by chemical attack.\\n(Source: MGH)"], "experimental study": ["Study based on experimentation."], "drawing": ["The visual representation of a person or an object.", "The act of creating an artistic picture, likeness, diagram or representation.", "A picture, likeness, diagram or representation, usually written on paper."], "organoleptic property": ["Property that can be perceived by sense organs"], "cardiovascular system": ["Those structures, including the heart and blood vessels, which provide channels for the flow of blood.", "The parts of a animal body comprising the heart, veins, capillaries and arteries."], "enterovirus": ["Any of a subgroup of the picornaviruses infecting the gastrointestinal tract and discharged in feces, including coxsackieviruses, echoviruses, and polioviruses; may be involved in respiratory disease, meningitis, and neurological disease.\\n(Source: KOREN)"], "animal biology": ["The scientific study of the natural processes of animals."], "plant biology": ["A branch of the biological sciences which embraces the study of plants and plant life."], "genetic pool": ["The total number of genes or the amount of genetic information possessed by all the reproductive members of a population of sexually reproducing organisms."], "hearing acuity": ["Effectiveness of hearing."], "decibel": ["A unit used to express relative difference on power, usually between acoustic or electric signals, equal to ten times the common logarithm of the ratio of the two level."], "acoustical quality": ["The characteristics of a confined space that determines its ability to enable music and speech to be heard clearly within it."], "airborne noise": ["Noise caused by the movement of large volumes of air and the use of high-pressure air."], "background noise": ["Noise coming from source other than the noise source being monitored."], "rolling noise": ["Deeply resounding, reverberating noise caused by the friction between car tyres and road surfaces."], "tidal power station": ["Power station where the generation of power is provided by the ebb and flow of the tides. The principle is that water collected at high tide behind a barrage is released at low tide to turn a turbine that, in turn, drives a generator."], "hydroelectric energy": ["The free renewable source of energy provided by falling water that drives the turbines. Hydropower is the most important of the regenerable energy sources because of its highest efficiency at the energy conversion. There are two types of hydroelectric power plants: a) run-of-river power plants for the use of affluent water; b) storage power plants (power stations with reservoir) where the influx can be regulated with the help of a reservoir. Mostly greater differences in altitudes are being used, like mountain creeks. Power stations with reservoirs are generally marked by barrages with earth fill dam or concrete dams. Though hydropower generally can be called environmentally acceptable, there exist also some problems: a) change of groundwater level and fill up of the river bed with rubble. b) Risk of dam breaks. c) Great demand for land space for the reservoir. d) Diminution, but partly also increase of value of recreation areas. As the hydropowers of the world are limited, the world energy demand however is rising, finally the share of hydropower will decrease.\\n(Source: PORT / PHC / PZ)"], "water mill": ["A mill whose power is provided by a large wheel which is turned by moving water, especially a river."], "radioelement": ["An element that is naturally radioactive."], "fast reactor": ["Nuclear reactor which produces more fissile material than it consumes, using fast-moving neutrons and making plutonium-239 from uranium-238, thereby increasing the reactor's efficiency."], "contaminated area": ["Any site or region that is damaged, harmed or made unfit for use by the introduction of unwanted substances, particularly microorganisms, chemicals, toxic and radioactive materials and wastes.\\n(Source: TOE / HMD)"], "atmospheric aerosol": ["Particulate matter suspended in the air. The particulate matter may be in the form of dusts, fumes, or mist. Aerosols in the atmosphere are the form in which pollutants such as smoke are dispersed.\\n(Source: LANDY / PHC)"], "biofuel": ["A gaseous, liquid, or solid fuel that contains an energy content derived from a biological source."], "ethanol": ["A colorless liquid, miscible with water, used as a reagent and solvent.", "A flammable, colorless liquid which is used amongst others as solvent, disinfectant and intoxicant."], "clean air car": ["Vehicles that functions without emitting pollutants in the atmosphere."], "continental climate": ["A climate characterized by hot summers, cold winters, and little rainfall, typical of the interior of a continent."], "desert climate": ["A climate type which is characterized by insufficient moisture to support appreciable plant life; that is, a climate of extreme aridity."], "equatorial climate": ["Climate characterized by constant temperatures, abundant rainfall and a very short dry season."], "Mediterranean climate": ["A type of climate characterized by hot, dry, sunny summers and a winter rainy season; basically, this is the opposite of a monsoon climate. Also known as etesian climate."], "mountain climate": ["Very generally, the climate of relatively high elevations; mountain climates are distinguished by the departure of their characteristics from those of surrounding lowlands, and the one common basis for this distinction is that of atmospheric rarefaction; aside from this, great variety is introduced by differences in latitude, elevation, and exposure to the sun; thus, there exists no single, clearly defined, mountain climate. Also known as highland climate.\\n(Source: MGH)"], "oceanic climate": ["A regional climate which is under the predominant influence of the sea, that is, a climate characterized by oceanity; the antithesis of a continental climate."], "temperate climate": ["The climate of the middle latitudes; the climate between the extremes of tropical climate and polar climate."], "tropical climate": ["A climate which is typical of equatorial and tropical regions, that is, one with continually high temperatures and with considerable precipitation, at least during part of the year."], "thunderstorm": ["A storm caused by strong rising air currents and characterized by thunder and lightning and usually heavy rain or hail."], "glaze": ["A coating of ice, generally clear and smooth but usually containing some air pockets, formed on exposed objects by the freezing of a film of supercooled water deposited by rain, drizzle, or fog, or possibly condensed from supercooled water vapour."], "water table": ["Water that occupies pores, cavities, cracks and other spaces in the crustal rocks. It includes water precipitated from the atmosphere which has percolated through the soil, water that has risen from deep magmatic sources liberated during igneous activity and fossil water retained in sedimentary rocks since their formation. The presence of groundwater is necessary for virtually all weathering processes to operate. Phreatic water is synonymous with groundwater and is the most important source of any water supply.\\n(Source: WHIT)"], "hydrometry": ["The science and technology of measuring specific gravities, particularly of liquids."], "sedimentology": ["The scientific study of sedimentary rocks and of the processes by which they were formed."], "demesnial water": ["A body of water that is owned and maintained by a national governmental body or agency."], "bog": ["A stretch waterlogged, spongy ground, chiefly composed of decaying vegetable matter, especially of rushes, cotton grass, and sphagnum moss."], "water desalination": ["Any mechanical procedure or process where some or all of the salt is removed from water."], "swell": ["A regular movement of marine waves created by wind stress in the open ocean which travels considerable distances.", "To grow larger in volume.", "To grow larger in volume."], "river management": ["The administration or handling of a waterway or a stream of flowing water.\\n(Source: RHW)"], "flushing": ["Removing lodged deposits of rock fragments and other debris by water flow at high velocity; used to clean water conduits and drilled boreholes.\\n(Source: MGH)"], "canal lock": ["A chamber with gates on both ends connecting two sections of a canal or other waterway, to raise or lower the water level in each section."], "bank protection": ["Engineering work which aims at the protection of banks of a river, or slopes of embankments along it, from erosion by the current of flow, from floods, etc."], "retaining reservoir": ["Basin used to hold water in storage."], "water taste": ["Taste in water that can be caused by foreign matter, such as organic compounds, inorganic salts or dissolved gases."], "green tide": ["A proliferation of a marine green plankton toxic and often fatal to fish, perhaps stimulated by the addition of nutrients."], "water salinity": ["The degree of dissolved salts in water measured by weight in parts per thousand."], "catchment": ["A structure in which water is collected."], "fountain": ["A stream of water that is forced up into the air through a small hole, especially for decorative effect.", "An ornamental water feature consisting of one or more streams of water originating from a statue or other structure."], "separate sewer system": ["Sewer system having distinct pipes for collecting superficial water and sewage water."], "combined sewer system": ["A sewer intended to serve as a sanitary sewer and a storm sewer, or as an industrial sewer and a storm sewer."], "water aeration": ["Addition of air to sewage or water so as to raise its dissolved oxygen level."], "water regeneration": ["A process in which naturally occurring microorganisms, plants, trees or geophysical processes break down, degrade or filter out hazardous substances or pollutants from a body of water, cleansing and treating contaminated water without human intervention."], "water resources management": ["Measures and activities concerning the supply of water, the improvement of efficiency in its use, the reduction of losses and waste, water-saving practices to reduce costs and to slow the depletion of the water supply to ensure future water availability.\\n(Source: EARTH1a)"], "bulky waste": ["Large item of waste material, such as appliances, furniture, large auto parts, trees, branches, stumps, etc.\\n(Source: LANDY)"], "alkaline battery": ["A primary cell that uses an alkaline electrolyte, usually potassium hydroxide, and delivers about 1.5 volts at much higher current rates than the common carbon-zinc cell."], "electric battery": ["A direct-current voltage source made up of one or more units that convert chemical, thermal, nuclear, or solar energy into electrical energy."], "metal waste": ["Metal material discarded during manufacturing or processing operations which cannot be directly fed back into the operation."], "mineral waste": ["Waste material resulting from ore extraction that is usually left on the soil surface.\\n(Source: GREMES)"], "wreck": ["The hulk of a wrecked or stranded ship; a ship dashed against rocks or land and broken or otherwise rendered useless.\\n(Source: ISEP)"], "mineral oil": ["Oil which derives from petroleum and is made up of hydrocarbons."], "whey": ["The watery liquid that separates from the curd when the milk is clotted, as in making cheese."], "thickening": ["Any thickened enlargement.", "In cooking, the process of increasing the viscosity of a liquid either by reduction, or by the addition of a thickening agent, typically containing starch."], "industrial wasteland": ["Area of land which is no longer usable for cultivation or for any other purpose after having been the site of an industrial plant."], "quartering": ["The act of dismembering the carcass of an animal with the production of organic waste which if improperly disposed cause problems of pollution and fawl smells."], "piggery": ["A place where pigs are kept and reared."], "aggregate extraction": ["Extraction of crushed rock or gravel screened to sizes for use in road surfaces, concretes, or bituminous mixes."], "biofiltration": ["The distribution of settled sewage on a bed of inert granular material through which it is allowed to percolate. In doing so, the effluent is aerated thus allowing aerobic bacteria and fungi to reduce its biochemical oxygen demand.\\n(Source: PORT)"], "dechlorination": ["Removal of chlorine from a substance."], "engineering": ["The science by which the properties of matter and the sources of power in nature are made useful to humans in structures, machines, and products."], "aerobic treatment": ["The introduction of air into sewage so as to provide aerobic biochemical stabilization during a detention period.\\n(Source: KOREN)"], "primary treatment": ["Removal of floating solids and suspended solids, both fine and coarse, from raw sewage."], "vitrification": ["Formation of a glassy or noncrystalline material."], "underground quarry": ["Quarry located below the surface of the Earth."], "geotechnics": ["The application of scientific methods and engineering principles to civil engineering problems through acquiring, interpreting, and using knowledge of materials of the crust of the earth.\\n(Source: MGH)"], "rock mechanics": ["The theoretical and applied science of the physical behavior of rocks, representing a \"branch of mechanics concerned with the response of rock to the force fields of its physical environment\"."], "bush clearing": ["The removal of brush using mechanical means, either by cutting manually or by using machinery for crushing, rolling, flailing, or chipping it, or by chemical means or a combination of these.\\n(Source: DUNSTE)"], "flood protection": ["Precautionary measures, equipment or structures implemented to guard or defend people, property and lands from an unusual accumulation of water above the ground."], "volcanology": ["The branch of geology that deals with volcanism."], "civil safety": ["Actions and measures undertaken, often at a local level, to ensure that citizens of a community are secure from harm, injury, danger or risk.\\n(Source: RHW / OEC)"], "industrial safety": ["Measures or techniques implemented to reduce the risk of injury, loss and danger to persons, property or the environment in any facility or place involving the manufacturing, producing and processing of goods or merchandise."], "ecocatastrophe": ["A sudden, widespread disaster or calamity causing extensive damage to the environment that threatens the quality of life for people living in the affected area or region, potentially leading to many deaths."], "nuclear hazard": ["Risk or danger to human health or the environment posed by radiation emanating from the atomic nuclei of a given substance, or the possibility of an uncontrolled explosion originating from a fusion or fission reaction of atomic nuclei.\\n(Source: MHD / TOE)"], "disaster zone": ["An area that officially qualifies for emergency governmental aid as a result of a catastrophe, such as an earthquake or flood."], "damage insurance": ["A commercial product which provides a guarantee against damage to property in return for premiums paid."], "pollution insurance": ["A commercial agreement which provides protection against the risks, or a particular risk, associated with pollution, toxic waste disposal or related concerns.\\n(Source: RHW)"], "water damage": ["Damage caused by water, for example as a result of flooding or severe storms."], "appraisal": ["An expert or official valuation."], "compensation for damage": ["Equivalent in money or other form for a loss sustained for an injury, for property taken, etc."], "public institution": ["Institution for the management of public issues."], "patent": ["A grant of right to exclude others from making, using or selling one's invention and includes right to license others to make, use or sell it."], "press release": ["An official statement or announcement distributed to members of the media by a public relations firm, government agency or some other organization, often to supplement or replace an oral presentation."], "speech": ["An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.\\n(Source: RHW)"], "cinematographic film": ["Any motion picture of a story, drama, episode or event, often considered as an art form or used as a medium for entertainment."], "documentary film": ["Any motion picture or movie in which an actual event, era or life story is presented factually, with little or no fiction."], "parliamentary report": ["A written account describing in detail observations or the results of an inquiry into an event or situation and presented to an official, deliberative body with legislative powers.\\n(Source: RHW)"], "statutory text": ["A document or a portion thereof expressing an official enactment of a legislative body, with emphasis on the document's precise wording or language.\\n(Source: RHW)"], "thesis": ["A treatise on a particular subject, in which original research has been done, in order to receive a doctoral degree."], "CD-ROM": ["A compact disc on which a large amount of digitalised read-only data can be stored."], "information network": ["A system of interrelated persons and/or devices linked to permit the exchange of data or knowledge.\\n(Source: ISEP / RHW)"], "assay": ["Qualitative or quantitative determination of the components of a material, such as an ore or a drug."], "method": ["A way of proceeding or doing something, especially a systematic or regular one.", "A particular means of accomplishing something."], "groundwater quality": ["Groundwater accounts for over 95% of the earth's useable fresh-water resources; over half the world's population depends on groundwater for drinking-water supplies. This invisible resource is vulnerable to pollution and over-exploitation. Effective conservation of groundwater supplies requires the integration of land-use and water management.\\n(Source: GILP96)"], "ontogenesis": ["The entire sequence of events involved in the development of an individual organism."], "land tax": ["A tax laid upon the legal or beneficial owner of real property, and apportioned upon the assessed value of his land."], "open lawn": ["Any relatively unobstructed field of cultivated and mown grass, especially near a house or in a park."], "urban concentration": ["A process in which an increasing proportion of a country's population is concentrated in urban areas.\\n(Source: GOOD)"], "home garden": ["A plot of cultivated ground adjacent to a dwelling and usually devoted in whole or in part to the growing of herbs, fruits, flowers, or vegetables for household use."], "photography": ["The process of forming visible images directly or indirectly by the action of light or other forms of radiation on sensitive surfaces.", "The occupation of taking and printing photographs or making movies."], "bottle cap": ["A device used to seal the openings of bottles of many types."], "voting": ["The act of formally expressing an opinion or choice in some matter or for some candidate, usually by voice or ballot."], "budget policy": ["The programmatic use of a government's spending and revenue-generating activities to influence the economy and achieve specific objectives."], "international balance": ["A system in which nations or blocks of nations strive to maintain an equilibrium of power to prevent dominance by any single nation or to reduce conflict or the possibility of war."], "monetary economics": ["The study, policies or system of institutions and procedures by which a country or region's commerce is supplied with notes, coins, bank deposits or other equivalent mediums of exchange."], "free movement of capital": ["The unrestrained flow of cash, funds, and other means of wealth between countries with different currencies."], "economic geography": ["The geography of people making a living, dealing with the spatial patterns of production, distribution and consumption of goods and services. The development of economic geography over the past three decades has witnessed the substitution of analysis for description, leading to an identification of the factors and an understanding of the processes affecting the spatial differentiation of economic activities over the earth's surface.\\n(Source: GOOD)"], "credit": ["The financial facility or system by which goods and services are provided in return for deferred, instead of immediate, payment.", "(accounting) To attribute a credit (to an account).", "To give someone credit for something.", "To ascribe an achievement to.", "Approval.", "Money available for a client to borrow.", "A short note recognizing a source of information or of a quoted passage."], "freedom": ["The quality or state of being free, especially to enjoy political and civil liberties.\\n(Source: CED)", "The condition of being free to act, believe or express oneself as one chooses."], "fodder plant": ["A plant used to feed livestock."], "textile plant": ["Plant producing material suitable to be made into cloths."], "tropical plant": ["A plant growing in tropical areas in conditions of constant rain and high temperature."], "type of tenure": ["The manner in which land is owned and possessed, i.e. of title to its use.\\n(Source: GOOD)"], "petrochemical": ["Chemicals manufactured from the products of oil refineries, based largely on ethylene, propylene and butylene produced in the cracking of petrol fractions."], "speciality chemical": ["Various fine chemical products like glue, adhesives, resins, rubber, plastic compounds, selective herbicide, etc.\\n(Source: ICBT)"], "processed foodstuff": ["Food which has been treated to improve its appearance or to prevent it going bad."], "convenience food": ["Food so prepared and presented as to be easily and quickly ready for consumption."], "root crop": ["Plant which stores edible material in a root, corm or tuber."], "cultivation system": ["Any overall structure or set-up used to organize the activity of preparing land or soil for the growth of new crops, or the activity of promoting or improving the growth of existing crops."], "fisheries structure": ["All the structures (fishing vessels, trawling nets, factory ships, catcher boats, etc.) used in fishing industry.\\n(Source: PARCORa)"], "fishing ground": ["Area of sea or freshwater where fish are caught."], "coal industry": ["Industry related with the technical and mechanical activity of removing coal from the earth and preparing it for market."], "energy industry": ["Industry which converts various types of fuels as well as solar, water, tidal, and geothermal energy into other energy forms for a variety of household, commercial, transportation, and industrial application.\\n(Source: PZ)"], "precision engineering": ["Research and development, design, manufacture and measurement of high accuracy components and systems. It is related to mechanical, electronic, optical and production engineering, physics, chemistry, and computer and materials science.\\n(Source: ASPE)"], "materials technology": ["Any technical means or equipment used for the production and optimization of material goods that consist of any of a diverse range of properties, either alone or in combination, such as glass, metal, plastics and ceramics.\\n(Source: APD)"], "military equipment": ["Equipment necessary to the performance of military activities, either combat or noncombat."], "machinery": ["A group of mechanical or electrical parts or machines arranged to perform or assist a particular function."], "business activity": ["Any profit-seeking undertaking or venture that involves the production, sale and purchase of goods or services."], "building service": ["The aggregation of services, including construction, development, maintenance and leasing, performed for human-occupied properties, such as office buildings and apartment houses.\\n(Source: PBS)"], "destination of transport": ["The targeted place to which persons, materials or commodities are conveyed over land, water or through the air."], "degradation of the environment": ["The process by which the environment is progressively contaminated, overexploited and destroyed."], "accounting system": ["The system of setting up, maintaining, and auditing the books of a firm and of analyzing its financial status and operating results."], "customs tariff": ["An official list or schedule setting forth the duties imposed by a government on imported or exported goods.\\n(Source: OED)"], "commercial transaction": ["The conduct or carrying on of trade, business or a financial matter to a conclusion or settlement.\\n(Source: RHW)"], "pay policy": ["A course of action or procedure regarding compensation or recompensation for work done or services rendered.\\n(Source: RHW)"], "European Monetary System": ["An organization established in Europe in 1979 to coordinate financial policy and exchange rates for the continent by running the Exchange Rate Mechanism (ERM) and assisting movement toward a common European currency and a central European bank.\\n(Source: ODE)"], "money market": ["A financial market that trades Treasury bills, commercial paper and other short-term financial instruments."], "exchange policy": ["Course of action or procedure by government, business, or an individual concerning trade activities.\\n(Source: ISEP / RHW)"], "public debt": ["The total amount of all government securities outstanding."], "tax on consumption": ["A sum of money demanded from businesses by a government, usually based on a percentage of total sales of select goods and services, and generally passed on to consumers with each individual purchase.\\n(Source: ODE)"], "tax on capital": ["A government imposed levy on the wealth or assets gained by an individual, firm, or corporation for the purpose of raising revenue to pay for services or improvements for the general public benefit.\\n(Source: EFP / RHW)"], "income tax": ["A tax on the annual profits arising from property, business pursuits, professions, trades or offices."], "market price": ["The price actually given in current market dealings; the actual price at which given stock or commodity is currently sold in the usual and ordinary course of trade and competition between sellers and buyers.\\n(Source: WESTS)"], "transport cost": ["The outlay or expenditure involved in moving goods from one place to another.\\n(Source: ODE)"], "prices policy": ["The guiding procedure, philosophy, or course of action for decisions regarding the monetary rate or value for goods and services."], "company structure": ["The type of organization of a company. Three kinds of structure are usually recognized: centralized, formal or hierarchical."], "private international law": ["The part of the national law of a country that establishes rules for dealing with cases involving a foreign element."], "public international law": ["The general rules and principles pertaining to the conduct of nations and of international organizations and with the relations among them.\\n(Source: BLD)"], "international economic law": ["The recognized rules guiding the commercial relations of at least two sovereign states or private parties involved in cross-border transactions, including regulations for trade, finance and intellectual property.\\n(Source: IEL)"], "family law": ["Branch of specialty of law concerned with such subjects as adoption, annulment, divorce, paternity, custody and child support."], "traffic regulation": ["A body of rules or orders prescribed by government or management for the safe and orderly movement of vehicles on land, sea or in the air.\\n(Source: BLD / RHW)"], "law relating to prisons": ["Binding rules and regulations pertaining to the construction, use and operation of jails, penitentiaries and other places of legal confinement and punishment."], "competition law": ["That part of the law dealing with matters such as those arising from monopolies and mergers, restrictive trading agreements, resale price maintenance and agreements involving distortion of competition affected by EU rules."], "ruling": ["A judicial or administrative interpretation of a provision of a statute, order, regulation, or ordinance. May also refer to judicial determination of admissibility of evidence, allowance of motion, etc."], "legal procedure": ["All proceedings authorised or sanctioned by law, and brought or instituted in a court of legal tribunal, for the acquiring of a right or the enforcement of a remedy.\\n(Source: WESTS)"], "legal system": ["The organization and network of courts and other institutions, procedures and customs, officers and other personnel concerned with interpretation and enforcement of a country's law or with advice and assistance in matters pertaining to those laws."], "legislative procedure": ["Any prescribed step or manner of proceeding that a law making body takes in proposing laws, resolutions or special acts before they can be enacted or passed.\\n(Source: RHW)"], "management technique": ["Systematic approach or method of performance for the accomplishment of administrative goals or tasks."], "construction policy": ["A course of action adopted and pursued by government, business or some other organization, which plans or organizes for the maintenance, development and erection of houses, offices, bridges or other building structures.\\n(Source: OED)"], "space policy": ["A course of action adopted and pursued by government or some other organization, which seeks to support research and the exploration of planets, asteroids and other elements in the region beyond earth's atmosphere or beyond the solar system.\\n(Source: OED)"], "economic region": ["A district or an administrative division of a city or territory that is designed according to some material, distributive or productive criteria."], "humanitarian aid": ["The support or relief given to save human lives or to alleviate suffering, including public health efforts and the provision of financial resources and food, often when governmental authorities are unable or unwilling to provide for such assistance."], "international conflict": ["A controversy, disagreement, quarrel or warfare between or among two or more nations or countries, often requiring involvement or monitoring by other members of the global community."], "peacekeeping": ["The activities to prevent, contain, moderate and/or terminate the hostilities between or within States, through the medium of an impartial third party intervention, organised and directed internationally."], "level of education": ["A position along a scale of increasingly advanced training marking the degree or grade of instruction either obtained by an individual, offered by a some entity or necessary for a particular job or task.\\n(Source: RHW)"], "general education": ["Informal learning or formal instruction with broad application to human existence beyond the domain of any particular subject or discipline, often equated with liberal arts in the university setting and contrasted to courses required for a specific major or program."], "schoolwork": ["The material studied in or for an educational institution, comprising homework and work done in the classroom.\\n(Source: RHW)"], "documentary system": ["A coordinated assemblage of people, devices or other resources providing written, printed or digitized items that furnish or substantiate information or evidence.\\n(Source: RHW)"], "communications system": ["A coordinated assemblage of people, devices or other resources designed to exchange information and data by means of mutually understood symbols."], "data processing system": ["An assembly of computer hardware, firmware and software configured for the purpose of performing various operations on digital information elements with a minimum of human intervention.\\n(Source: JON)"], "health care profession": ["A profession specific to the health care industry."], "war victim": ["A person that suffers from the destructive action undertaken as a result of an armed conflict between two or more parties, particularly death, injury, hardship, loss of property or dislocation."], "internal migration": ["A population shift occurring within national or territorial boundaries, often characterized by persons seeking labor opportunities in more advantageous areas.\\n(Source: ISEP)"], "marital status": ["The standing of an individual with regard to a legally recognized conjugal relationship, either in the present or past."], "socio-cultural group": ["A collection of people who interact and share a sense of unity on account of a common ethnic, ancestral, generational or regional identity.\\n(Source: RHW)"], "employment structure": ["The organization and proportions of the various job types and skill levels in an enterprise or economy.\\n(Source: LAB)"], "camp": ["Tents, cabins, etc., used as temporary lodgings by a group of travellers, holiday-makers, Scouts, Gypsies, etc.", "To live in a tent or similar temporary accomodation."], "royalty": ["Compensation for the use of a person's property, based on an agreed percentage of the income arising from its use."], "allowance": ["Regular allocation or deduction of money."], "salina": ["A place where crystalline salt deposits are formed or found, such as a salt flat or pan, a salada, or a salt lick."], "hiking trail": ["A trail in the country along which one can walk, usually for pleasure or exercise."], "eco-balance": ["An eco-balance refers to the consumption of energy and resources and the pollution caused by the production cycle of a given product. The product is followed throughout its entire life cycle, from the extraction of the raw materials, manufacturing and use, right through to recycling and final handling of waste.\\n(Source: DUNI)"], "nitrogen oxide": ["A colorless gas that, at room temperature, reacts with\\noxygen to form nitrogen dioxide; may be used to form other compounds."], "oven": ["An enclosed heated compartment usually lined with a refractory material used for drying substances, firing ceramics, heat-treating, etc."], "bovine": ["Medium-sized to large ungulates, including domestic cattle, Bison, the Water Buffalo, the Yak, and the four-horned and spiral-horned antelopes."], "approval": ["Approbation; a sanctioning of an item."], "cleansing": ["The act or process of washing, laundering or removing dirt and other unwanted substances from the surface of an object, thing or place.\\n(Source: RHW)"], "inner city": ["In the United States, United Kingdom and Ireland: Part of a city at or near the centre, especially a slum area where poor people live in bad housing."], "sluice-gate": ["A valve or gate fitted to a sluice to control the rate of flow of water."], "deciduous wood": ["The temperate forests comprised of trees that seasonally shed their leaves, located in the east of the USA, in Western Europe from the Alps to Scandinavia, and in the eastern Asia. The trees of deciduous forests usually produce nuts and winged seeds.\\n(Source: WRIGHT)", "Wood taken from a deciduous tree."], "mixed woodland": ["A forest composed of broadleaf trees and coniferous trees."], "penal sanction": ["Punishment for the commission of a specific crime, such as fines, restitution, probation and imprisonment."], "coniferous tree": ["Any tree bearing cones."], "aerial photography": ["The creation of photographs from an airplane."], "swamp": ["A permanently waterlogged area in which there is often associated tree growth, e.g. mangroves in hot climates."], "legislative process": ["The entire course of action necessary to bring a law, resolution or special act to an authoritative, legally binding status.\\n(Source: RHW)"], "returnable container": ["Container whose return from the consumer or final user is assured by specific means (separate collection, deposits, etc.), independently on its final destination, in order to be reused, recovered or subjected to specific waste management operations.\\n(Source: PORTa)"], "intermediate product": ["Product that has undergone a partial processing and is used as raw material in a successive productive step."], "mutagenic substance": ["Agents that induce a permanent change in the genetic material."], "excise": ["A tax charged on goods produced within the country."], "dipteran": ["An order of insects possessing only a single pair of wings on the mesothorax."], "coniferous wood": ["Forest, mainly containing conifers."], "underground railway": ["An electric passenger railway operated in underground tunnels."], "genetically modified organism": ["An organism that has undergone external processes by which its basic set of genes has been altered."], "surface active compound": ["Any soluble substance composed of two or more unlike atoms held together by chemical bonds that reduces interfacial tension between liquids or a liquid and a solid, often used as detergents, wetting agents and emulsifiers."], "pH-value": ["(logarithmical) Measure of the acidity or alkalinity of an aqueous solution."], "mining": ["The act, process or industry of extracting coal, ores, etc. from the earth.\\n(Source: CED)"], "Black Sea": ["An inland sea between southeastern Europe and Anatolia."], "Caspian Sea": ["A landlocked sea between Asia and European Russia. It is the world\u2019s largest inland body of water."], "Mediterranean Sea": ["The largest inland sea between Europe, Africa and Asia, linked to the Atlantic Ocean at its western end by the Strait of Gibraltar, including the Tyrrhenian, Adriatic, Aegean and Ionian seas, and major islands such as Sicily, Sardina, Corsica, Crete, Malta and Cyprus."], "indigenous knowledge": ["Local knowledge that is unique to a given culture or society, which is the basis for local-level decision making in agriculture, health care, education and other matters of concern in rural communities.\\n(Source: WIK)"], "professional society": ["A group of persons engaged in the same profession, business, trade or craft that is organized or formally structured to attain common ends.\\n(Source: RHW)"], "subject": ["The general category, often stated in a word or phrase, to which the ideas of a passage as a whole belong.", "The grammatical subject.", "The subject of discourse; the point at issue.", "Area of knowledge taught in an educational institution."], "physical alteration": ["Any change in a body or substance that does not involve an alteration in its chemical composition."], "information infrastructure": ["The basic, underlying framework and features of a communications system supporting the exchange of knowledge, including hardware, software and transmission media.\\n(Source: WIC / RHW)"], "wide area network": ["A system of interrelated computer and telecommunications devices linking two or more computers separated by a great distance for the exchange of electronic data.\\n(Source: WIC)"], "World Wide Web": ["A graphical, interactive, hypertext information system that is cross-platform and can be run locally or over the global Internet. The Web consists of Web servers offering pages of information to Web browsers who view and interact with the pages. Pages can contain formatted text, background colors, graphics, as well as audio and video clips."], "homepage": ["The preset document that is displayed after starting a World Wide Web browser, or the main World Wide Web document in a series of related documents.\\n(Source: UNM / WIC)"], "hypertext": ["The organization of information units typically containing visible links that users can select or click with a mouse pointer or some other computer device to automatically retrieve or display other documents.\\n(Source: WIC / TWI)"], "newsgroup": ["A discussion group on a specific topic maintained on a computer network, frequently on the Internet."], "electronic mail": ["Information or message that is transmitted or exchanged from one computer terminal to another, through telecommunication."], "multimedia technology": ["Any technical means used to combine text, sound, still or animated images and video in computers and electronic products, often allowing audience interactivity.\\n(Source: ENC / WIS)"], "exhibit": ["A display of an object or collection of objects for general dissemination of information, aesthetic value or entertainment.", "To make known something heretofore kept secret."], "newsletter": ["A printed periodical bulletin circulated to members of a group."], "public relations": ["The methods and activities employed by an individual, organization, corporation, or government to promote a favourable relationship with the public."], "bibliographic information system": ["A coordinated assemblage of people, devices or other resources organized for the exchange of data pertaining to the history, physical description, comparison, and classification of books and other works.\\n(Source: RHW)"], "bibliographic information": ["Data pertaining to the history, physical description, comparison, and classification of books and other works.\\n(Source: RHW)"], "referral information system": ["A coordinated assemblage of people, devices or other resources organized to provide directions leading people to sources known to provide knowledge or assistance on a specified topic or request.\\n(Source: RHW)"], "statistical information system": ["A coordinated assemblage of people, devices or other resources enabling the exchange of numerical data that has been collected, classified or interpreted for analysis.\\n(Source: RHW)"], "library service": ["The duties of an establishment, or a public institution, charged with the care and organizing of a collection of printed and other materials, and the duty of interpreting such materials to meet the informational, cultural, educational, recreational or research needs of its clients.\\n(Source: OED / LFS)"], "inter-library loan": ["The service provided by one library in which a second library's clients are temporarily allowed to use books and other printed materials belonging to the first library; and consequently the system providing rules and infrastructure for this service to a group of libraries.\\n(Source: RHW)"], "information clearing-house": ["A central institution or agency for the collection, maintenance, and distribution of materials or data compiled to convey knowledge on some subject.\\n(Source: RHW)"], "information exchange": ["A reciprocal transference of data between two or more parties for the purpose of enhancing knowledge of the participants."], "relational database": ["A collection of digital information items organized as a set of formally described tables from which the information can be accessed or reassembled in different ways without reorganizing the tables."], "multispectral scanner": ["A remote sensing term referring to a scanning radiometer that simultaneously acquires images in various wavebands at the same time."], "pixel": ["The smallest unit of information in an image or raster map."], "spectral band": ["Closely grouped bands of lines characteristic of molecular gases of chemical compounds (spectroscopy)."], "image processing digital system": ["A coordinated assemblage of computer devices designed to capture and manipulate pictures stored as data in discrete, quantized units or digits.\\n(Source: GIS)"], "digital image processing technique": ["Techniques employed in the calibration of image data, the correction or reduction of errors occurring during capture or transmission of the data and in various types of image enhancement-operations which increase the ability of the analyst to recognize features of interest.\\n(Source: YOUNG)"], "pattern recognition": ["A remote sensing term referring to an automated process through which unidentified patterns can be classified into a limited number of discrete classes through comparison with other class-defining patterns or characteristics."], "mosaic": ["A composite photograph consisting of separate aerial photographs of overlapping surface areas, producing an overall image of a surface area too large to be depicted in a single aerial photograph."], "image filtering": ["A remote sensing term related to image enhancement that refers to the removal of a spatial component of electromagnetic radiation.\\n(Source: WHITa)"], "image enhancement": ["In remote sensing, the filtering of data and other processes to manipulate pixels to produce an image that accentuates features of interest or visual interpretation."], "geometric correction": ["A remote sensing term referring to the adjustment of an image for geometric errors.\\n(Source: DWEB)"], "image registration": ["The process of linking map coordinates to control points with known earth-surface coordinates."], "image classification": ["Processing techniques which apply quantitative methods to the values in a digital yield or remotely sensed scene to group pixels with similar digital number values into feature classes or categories.\\n(Source: DYNAMO)"], "atmospheric correction": ["The removal of atmospheric effects from astronomical data or satellite imagery. These effects are caused by the scattering and absorption of sunlight by particles in the earth's athmosphere; the removal of these effects improves not only the quality of the observed earth surface imaging but also the accuracy of classification of the ground objects.\\n(Source: YOUNG)"], "GIS digital format": ["The digital form of data collected by remote sensing."], "vector": ["One of the two major types of internal data organization used in GIS. Vector systems are based primarily on coordinate geometry.", "A mathematical object defined by both magnitude and direction; in contrast to a scalar, an object with magnitude only.", "An element in a vector space, often represented as a coordinate vector.", "A virus modified to deliver genetic material into a cell.", "An organism that transmits diseases or infections."], "point": ["A position on a reference system determined by a survey.", "Zero-dimensional mathematical object.", "A certain place in a continuum.", "A dot-shaped punctuation mark.", "A small spot, mark or feature which does not bear any details.", "The narrow, acute end of an object of variable thickness.", "To indicate with a pointy object; to direct into a position.", "To indicate a person, thing, direction, etc. e.g. with a finger."], "line": ["Term used in GIS technologies in the vector type of internal data organization: spatial data are divided into point, line and polygon types.", "The descendants of one individual.", "A succession of notes forming a distinctive sequence.", "A measure of length equal to one twelfth of an inch.", "An infinitely long, infinitely thin, not bent line in geometry.", "A mark that is long relative to its width."], "polygon": ["In the vector type of GIS internal data organization spatial data are conveniently divided into point, line and polygon types. Some vector GIS store information in the form of points, line segments and point pairs; others maintain close lists of points defining polygon regions.", "Geometrical figure that is circumscribed by straight lines."], "raster": ["One of the two major types of internal data organization used in GIS."], "attribute": ["A distinctive feature of an object. In mapping and GIS applications, the objects are points, lines, or polygons that represent features such as sampling locations, section corners (points); roads and streams (lines); lakes, forest and soil types (polygons). These attributes can be further divided into classes such as tree species Douglas-fir and ponderosa pine) for forest types and paved and gravel for road types. Multiple attributes are generally associated with objects that are located on a single map layer.\\n(Source: FORUMT)", "To credit something to.", "To attribute or credit to.", "To associate ownership of (something) to someone."], "GIS digital technique": ["The transformation to digital form of data collected by remote sensing, traditional field and documentary methods and of existing historical data such as paper maps, charts, and publications."], "interpolation": ["A process used to estimate an intermediate value of one (dependent) variable which is a function of a second (independent) variable when values of the dependent variable corresponding to several discrete values of the independent variable are known.\\n(Source: MGH)"], "gridding": ["A system of uniformly spaced perpendicular lines and horizontal lines running north and south, and east and west on a map, chart, or aerial photograph; used in locating points."], "national boundary": ["The line demarcating recognized limits of established political units."], "geographical projection": ["A representation of the globe constructed on a plane with lines representative of and corresponding to the meridians and parallels of the curved surface of the earth."], "latitude": ["An angular distance in degrees north or south of the equator (latitude 0\u00b0), equal to the angle subtended at the centre of the globe by the meridian between the equator and the point in question."], "longitude": ["Distance in degrees east or west of the prime meridian at 0\u00b0 measured by the angle between the plane of the prime meridian and that of the meridian through the point in question, or by the corresponding time difference."], "GIS laboratory": ["A laboratory where GIS data drawn from different sources are stored, handled, analyzed and updated.\\n(Source: GILP96a)"], "underground dump": ["Any subterranean or below-ground site in which solid, or other, waste is deposited without environmental controls."], "business economics": ["The art of purchasing and selling goods from an economics perspective or a perspective involving the scientific study of the production, distribution, and consumption of goods and services."], "deterrence": ["The power of discouraging actions or preventing occurrences by instilling the fear of punishment."], "deep sea mining": ["The most valuable of the marine mineral resources is petroleum. About 15% of the world's oil is produced offshore, and extraction capabilities are advancing. One of the largest environmental impacts of deep sea mining are discharged sediment plumes which disperse with ocean currents and thus may negatively influence the marine ecosystem. Coal deposits known as extensions of land deposits , are mined under the sea floor in Japan and England.\\n(Source: PARCOR / ERIB)"], "semi-liquid manure": ["Manure that contains between 12-20% dry matter, and therefore are too solid for pumping, but too liquid for stacking."], "local heat supply": ["The provision of heating fuel, coal or other heating source materials, or the amount of heating capacity, for the use of a specific local community.\\n(Source: ISEP)"], "forwarding agent": ["A person or business that specializes in the shipment and receiving of goods.", "A person or company that organizes shipments for individuals or other companies."], "citizen initiative": ["Procedure that allows a request, signed by a group of people, to activate a public voting."], "mountain refuge": ["Any shelter or protection from distress or danger located in a predominantly mountainous area.\\n(Source: RHW)"], "space research": ["Research involving studies of all aspects of environmental conditions beyond the atmosphere of the earth."], "red list": ["A series of publications produced by the International Union for the Conservation of Nature and Natural Resources (IUCN) which provides an inventory on the threat to rare plants and animal species and conservation measures."], "insulating material": ["Material that prevents or reduces the transmission of electricity, heat, or sound to or from a body, device or region.\\n(Source: CED)"], "decantation": ["Sizing or classifying particulate matter by suspension in a fluid (liquid or gas), the larger particulates tending to separate by sinking.\\n(Source: ECHO2)"], "general": ["Not specific or particular.", "Rank in the army and air force that is higher than colonel or brigadier, and is usually the highest rank group next to commander in chief, except in countries that use the rank of field marshal.", "Applicable to an entire class or group."], "materials": ["The substance of which a product is made or composed."], "trade": ["To give something in return for something received.", "The act or process of buying, selling or exchanging goods and services at either wholesale or retail, within a country or between countries.", "The act or the business of buying and selling for money. Mercantile or commercial business in general or the buying and selling, or exchanging, of commodities, either by wholesale or retail within a country or between countries.\\n(Source: WESTS)", "The skilled practice of a practical occupation."], "population": ["The people living in a certain area as a whole.", "A group of organisms of one species, occupying a defined area.\\n(Source: LBC)", "The abstract property of a human, of living in a specific area given by precise, and well defined, borders. (This may be part of, or include, citizenship, but not necessarily so, e.g. for people having several places of residence, for foreigners, or ones officially being accepted on long-term transient living terms)", "The totality of persons or objects with which a research study is concerned."], "space": ["Space extending between the sun and the planets of the solar system. Interplanetary space is not empty, but contains dust, particles with an electric charge, and the magnetic field of the sun (also called the IMF, or Interplanetary Magnetic Field).", "The location of an object or organism.", "Relatively empty regions (with very small densities) of the universe outside the atmospheres of celestial bodies."], "transport": ["The act or means of moving tangible objects (persons or goods) from place to place. Often involves the use of some type of vehicle.", "Transfer of mass, momentum, or energy in a system as a result of molecular agitation, including such properties as thermal conduction and viscosity.", "To change the location or place of.", "To delight to a high degree; to hold spellbound."], "water": ["Significant accumulation of water, covering the Earth or another planet.", "Common liquid (H\u2082O) which forms rain, rivers, the sea, etc., and which makes up a large part of the bodies of organisms.", "To pour water onto the soil surrounding plants.", "Of the eyes: To secrete tears because of an irritation caused by wind, smoke etc."], "kid": ["A young goat."], "Southern Ocean": ["The waters, including ice shelves, that surround the continent of Antarctica, which comprise the southernmost parts of the Pacific, Atlantic and Indian oceans, and also the Ross, Amundsen, Bellingshausen and Weddell seas."], "mechanism": ["A group of mechanical or electrical parts or machines arranged to perform or assist a particular function.", "The mechanic part of a device."], "economic science": ["The social study of the production, distribution, and consumption of wealth."], "noble gas": ["Any one of the monatomic gaseous elements forming group 18 (formerly group 0) of the periodic table."], "plant eater": ["An animal that feeds on plants."], "many": ["An indefinite large number of."], "one": ["The first natural number (1).", "One certain or particular.", "The cardinal number that directly follows zero and precedes two, represented in Roman numerals as I, and in Arabic numerals as 1.", "An unspecified individual.", "The symbol representing the number 1.", "Being the only representative of its kind.", "Forming a whole.", "The same in substance or being, in relation to two or more things or persons.", "Identical in nature.", "United in feeling, opinion, purpose, attitude.", "A note or coin worth one unit of a currency.", "One person or thing, identified in context.", "A single individual, as opposed to none.", "An individual among many.", "A person or thing of the kind already mentioned.", "A person or thing having the characteristic mentioned.", "A person called...", "Any person in general, including the speaker.", "An individual..., a specific ...", "The single, special individual", "The digit \"1\"."], "two": ["Two human beings, at least one of whom is a male.", "The second natural number (2).", "The cardinal number occurring after one and before three, represented in Roman numerals as II and in Arabic numerals as 2.", "The digit \"2\"."], "man": ["A member of the human species.", "The generic name for a piece used in board games.", "All human beings.", "An adult human member of the sex that begets young by fertilizing ova."], "humanity": ["All human beings."], "wife": ["A married woman."], "husband": ["The male partner in a marriage."], "three": ["Three human beings, at least one of whom is a male.", "The cardinal number occurring after two and before four, represented in Roman numerals as III, in Arabic numerals as 3.", "The digit \"3\".", "The third natural number (3)."], "pawn": ["A chess piece, the least valuable one."], "print": ["The result of the printing process; something in printed or published form.", "To press something onto or into a surface, usually with a press.", "To reproduce a document with black or color ink using a printer.", "Concrete result of the reproduction process of an image by means of different techniques.", "To produce a positive image on photographic paper from a negative."], "feather": ["A branching, hair-like structure that grows on the skin of birds and protects them against coldness and water and allows their wings to create lift."], "big": ["Of a great size; the weakest sense of great size.", "Having relevant and crucial value.", "(for abstract matters) of larger than normal size.", "In a major way."], "long": ["Having much distance from one terminating point on an object or an area to another terminating point.", "Having relatively great height.", "Of relatively great duration.", "Of a specified linear extent or duration.", "To have a yearning desire.", "Qualifying a measure of length, to indicate that it is greater than stated, or is felt by the speaker to be excessive in duration.", "Having a shape with one dimension of much greater length than the others.", "Having (a specified) distance from end to end.", "Of something consisting of a series of items (like a list, a sentence, a literary work): having a great extent from the start to the end.", "That which has been so for a long time.", "A person who buys a financial security such as a stock, commodity or currency, with the expectation that it will rise in value", "Extending to a great distance.", "For or during a long time.", "Having a financial position in a security so as to profit if the price of the security goes up."], "bark": ["The exterior covering of the trunk and branches of a tree.", "The short, loud, explosive sound produced by a dog.", "To produce a loud, short, explosive sound similar to that of a dog.", "A sailing ship with three or more masts, fore-and-aft sails on the aftermost mast and square sails on all other masts."], "tongue": ["The flexible muscular organ in the mouth that is used to move food around, for tasting and that is moved into various positions to modify the flow of air from the lungs in order to produce different sounds.", "In a shoe, the flap of material that goes between the laces and the foot.", "A person's manner of speaking."], "cat": ["A common four-legged animal (Felis silvestris) that is often kept as a household pet."], "four": ["Four human beings, at least one of whom is a male.", "The fourth natural number (4).", "The cardinal number occurring after three and before five, represented in Roman numerals as IV, in Arabic numerals as 4.", "The digit \"4\"."], "five": ["Five human beings, at least one of whom is a male.", "The cardinal number occurring after four and before six, represented in Roman numerals as V, in Arabic numerals as 5.", "The digit \"5\".", "The fifth natural number (5)."], "I": ["The speaker or writer referring to himself or herself alone.", "The capitalized version of the ninth letter of the Latin alphabet."], "heavy": ["Of a physical object, having great weight."], "small": ["Not large or big; small in size."], "thou": ["The second person singular feminine subject pronoun.", "The second person singular masculine subject pronoun.", "The person addressed as the subject.", "The person addressed."], "he": ["Another person; the person previously mentioned.", "A male other; the male previously mentioned; himself. \\n3rd person singular masculine subject pronoun."], "we": ["exclusive \"we\": I and at least one other person, but not the addressed person (you)\\n\\n(pronoun 1st person plural without 2nd person)", "inclusive \"we\": I and at least one other person, including the addressed person(s)\\n(pronoun 1st person plural with 2nd person)", "The speaker or writer and at least one other person."], "you": ["The second person plural feminine subject pronoun.", "The second person singular feminine subject pronoun.", "The second person singular masculine subject pronoun.", "The second person plural masculine subject pronoun.", "The second person singular masculine object pronoun.", "The second person plural masculine object pronoun.", "The second person plural feminine object pronoun.", "The person addressed as the subject.", "The group of persons addressed.", "The person addressed.", "An unspecified individual.", "Used before epithets for emphasis."], "they": ["[A group of others previously mentioned.]", "The previously mentioned persons.", "The things previously mentioned.", "Form in its third person plural of the personal pronoun that designates more than one male person (or male animals), which have already been mentioned previously.", "The third person plural of the personal pronoun that designates more than one female person or animal, which have already been mentioned previously.", "An unknown unnamed anonymous authority, ruling body, shaping or governing force, be it real or fictional, working openly or secretly.", "The third person plural of the personal pronoun that designates more than one person or animal, thing or idea which have already been mentioned previously."], "this": ["[Something that is farther than \"this\" but nearer than \"that\".]", "[Used to refer to something between the speaker and the listener.]", "The indicated object, item, etc.", "An indicated thing that is near in space or in mind, as having been just mentioned."], "barque": ["A sailing ship with three or more masts, fore-and-aft sails on the aftermost mast and square sails on all other masts."], "that": ["The indicated item (at a distance from the speaker, next to the listener).", "The indicated item (at a distance from the speaker, or previously mentioned, or at another time).", "Demonstrative pronoun (feminine, singular): the indicated thing is implied, since it is previously mentioned. Collocation: that of; to that of.", "In the same manner or to the same extent as mentioned before."], "seed": ["A mature fertilized plant ovule, consisting of an embryo and its food store surrounded by a protective seed coat (testa).", "Anything that provides inspiration for later work.", "To remove the seeds from.", "To place seeds in or on the ground for future growth.", "One of the outstanding players in a tournament."], "blood": ["A fluid connective tissue consisting of the plasma and cells that circulate in the blood vessels.", "The descendants of one individual."], "mother": ["A woman who has at least one child.", "A female parent.", "A woman acting like a mother.", "A female ancestor (usually in reference to Eve).", "Term of address to an old or elderly woman.", "The female head of a religious organization.", "A woman who runs a brothel.", "A term of address to someone who is a female parent (a biological mother or a woman with parental responsibility).", "The female animal that gave birth to an animal.", "The source of something.", "A country, region, etc. in relation to its inhabitants.", "The Christian Church (usually as \"holy mother\")", "The source of a substance, structure, object.", "The first mold from which other molds are made for the manufacturing of music discs.", "Give birth to.", "To care for and protect in a motherly way."], "father": ["A male parent.", "A person that has founded or originated, as in ''the father of our country''", "The head of an organized crime family."], "rope": ["Thick, strong string made of several strands that have been twisted together."], "worm": ["A generally tubular invertebrate of the annelid phylum.", "A self-replicating program that propagates widely through a network.", "To rid of intestinal worms."], "tail": ["The appendage of an animal that is attached to its posterior and near the anus.", "The fleshy part of the human body that one sits on."], "mouth": ["The opening of a creature through which food is ingested.", "What humans use for speaking.", "Opening in the lower half of a human face which is used for food ingestion and articulation.", "A river mouth or stream mouth is a part of a river where it flows into the sea, river, lake, reservoir or ocean."], "nose": ["The organ of the face used to breath and smell.", "To search or inquire intrusively."], "penis": ["The male sexual organ for copulation and urination; the tubular portion of the male genitalia (excluding the scrotum)."], "cock": ["A device applied to the end of a pipe in order to interrupt and regulate the flow of a liquid or gas.", "A male of various birds.", "A male pheasant.", "A male chicken (Gallus gallus domesticus), a domestic bird.", "The part of a firearm that hits the back of the bullet and sets it off, firing the gun.", "A valve with the function of regulating the flow of a liquid or gas through a pipe."], "heart": ["A muscular organ that pumps blood through the body.", "The perceived center of feelings and intuitions.", "A stylized representation of the muscular organ, used as a symbol for affection, in the shape of two top lobes and a tapering bottom.", "Relating to the heart."], "liver": ["A large organ in the body that stores and metabolizes nutrients, destroys toxins and produces bile. Responsible for thousands of biochemical reactions."], "day": ["The period between sunrise and sunset where one enjoys daylight.", "A period of time lasting 24 hours", "The period of time from one midnight to the next, seven of which consitutes a week"], "year": ["The time it takes the Earth to complete one revolution of the Sun (between 365.24 and 365.26 days depending on the point of reference).", "The time it takes for any planetary body to make one revolution around another body.", "A period between set dates that mark a year, from January 1 to December 31 by the Gregorian calendar."], "board": ["A (usually) rectangular section of a surface, or of a covering or of a wall, fence etc.", "A piece of wood or similar material that has been sawn into a regular shape, usually in preparation for using it in some sort of construction.", "A committee that manages some business of an organization.", "A flat piece of material designed for a special purpose.", "A screen on which information can be displayed to public view.", "To enter trains, buses, ships, aircraft, etc.", "A printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities.", "An electrical device consisting of an insulated panel containing switches and dials and meters for controlling other electrical devices.", "Consulting or decisive insititution, composed of more than one person, national or international, private or public, with different scopes.", "All representatives in a company that have the assignment to administrate the company itself.", "Food or meals in general."], "earth": ["The soft and loose material forming a great part of the Earth surface.", "The third planet (counted from the center) of our solar system."], "dirty": ["Covered with or containing unpleasant substances such as dirt or grime.", "To make filthy."], "new": ["Recently made, created or begun.", "(of a cycle) beginning or occurring again (e.g. a fresh start or idea)."], "warm": ["Having a temperature slightly higher than usual, still pleasant.", "To make warm or warmer.", "To become warm or warmer.", "About colors whose relative visual temperature makes them seem warm. Warm colors or hues include red-violet, red, red-orange, orange, yellow-orange, and yellow.", "Having affection or warm regard; loving."], "night": ["The period between sunset and sunrise, when a location faces far away from the sun, thus when the sky is dark."], "smooth": ["Not rough; having a surface texture that lacks friction."], "here": ["This place.", "at this place"], "there": ["That place.", "In a not completely determined place which is not here."], "who": ["What person or people; which person or people."], "what": ["Which thing.", "Exclamation of amazement."], "where": ["Place in which.", "At what place?", "In or at or to what place.", "To which place?", "To which place."], "when": ["at the time following immediately the time when", "At what time.", "As soon as.", "At the time that (Temporal coincidence relationship.)", "At a time in the past.", "At what time in the past."], "how": ["In what way."], "not": ["Negates the meaning of the modified verb.", "Logical operation (not)"], "all": ["Every individual or anything of the given class, with no exceptions.", "Throughout the whole of.", "The totality of.", "Having or showing nothing other than."], "old": ["Having lived or existed for a relatively long period of time.", "(For a person or an animal) Having lived for a relatively long period of time.", "(For an object or a concept) Having existed for a relatively long period of time.", "A person that has been living for a relatively long period of time.", "An object or concept existing for a relatively long period of time."], "some": ["An unspecified quantity of.", "An unspecified quantity or number of.", "An unspecified number of. (The masculine plural indefinite article) - Phrase: some men. - NOTE: In Englih, \"some\" in this sense is an indefinite pronoun.", "The feminine plural of the indefinite article.", "[The plural indefinite article.]", "The plural partitive article.", "[The plural indefinite article, with an adjective that precedes a noun.]", "[The plural partitive article, with an adjective that precedes a noun.]", "An unknown quantity of an uncountable substance."], "few": ["More than one, but not as many as usual or as expected."], "other": ["The one not previously referred to.", "Not the same.", "A few (days, years, etc.) ago.", "Remaining from a group of two or more."], "wide": ["Having a long distance or area between two points, especially horizontally.", "Very large in expanse or scope."], "thick": ["Relatively large distance from one surface to the opposite in its smallest solid dimension."], "love": ["An intense feeling of affection and care towards another person.", "To receive pleasure or satisfaction from something.", "Someone that one loves.", "To have an intense feeling of affection and care towards another person.", "(Tennis) Score of zero.", "To have sex with.", "To be enamored or in love with (somebody)."], "my": ["Belonging to me."], "butter": ["A soft, fatty foodstuff that is made by churning the cream of milk (most often cows milk).", "To spread butter on."], "grumpy": ["Unhappy or irritable - often applied to babies, young children or adults acting childishly."], "short": ["Small in length by comparison.", "An unintentional electrical connection of low resistance or impedance in a circuitry or installation.", "Short in height; low in stature; not tall.", "Lasting for a small length of time; limited in temporal duration.", "Not reaching a standard; Not sufficient to meet a need or requirement.", "A quantity, time, number, etc. that is less than what is expressed.", "Something traveling not as far as intended.", "Having an insufficient supply of.", "Having sold a borrowed stock which the seller hopes to buy at a lower price before the time to return it.", "To cause a short circuit.", "To sell something that is borrowed, with the hope of buying it later at a lower price, before the time to return it.", "To cheat someone by giving them less money than what are due.", "Something short, like a short film, short shot, a short story, a short signal, etc.", "A contraction for a name."], "ear": ["The organ of hearing, consisting of the pinna, auditory canal, eardrum, malleus, incus, stapes and cochlea.", "The fruiting body of a grain plant."], "eye": ["The organ that is sensitive to light, which it converts to electrical signals passed to the brain, by which means animals see.", "The centre of a storm, around which, the winds blow.", "The hole in a needle through which the thread runs", "The dark spot on the surface under the skin of a potato, of which there are usually several.", "To look at."], "jaguar": ["A carnivorous spotted large cat native to South and Central America.", "A French military aircraft."], "belly": ["The lower part of the front of the torso (or a comparable part of an animal), confined by the upper side by the midriff and the lowerside by the pelvis. Contains the intestines."], "abdomen": ["The lower part of the front of the torso (or a comparable part of an animal), confined by the upper side by the midriff and the lowerside by the pelvis. Contains the intestines.", "The cavity containing the major viscera."], "stomach": ["The lower part of the front of the torso (or a comparable part of an animal), confined by the upper side by the midriff and the lowerside by the pelvis. Contains the intestines.", "An organ in the body, involved in digestion of food.", "To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly."], "house": ["The abode of a human being, their place of residence.", "To keep within a structure or container; to contain or cover.", "A place that a human built to live in.", "A place where an activity is accomplished, whether actual, as a pub, or virtual, as a website.", "A familiar descendance, for example, a Royal House.", "To admit to residence; provide housing for.", "One of 12 equal areas into which the zodiac is divided."], "handle": ["A closed loop that is normally placed horizontally on an object (for example, on a mug or a cup).", "To feel with the hand; to use or hold with the hand.", "To manage; to control; to practice skill upon."], "hair": ["The collection or mass of filaments growing from the skin of humans and animals, and forming a covering for a part of the head or for any part or the whole body.", "One single of the filaments growing from the skin of humans and animals, and forming a covering for parts of the body.", "A single filament growing from the non-facial part of the head of humans.", "The collection or mass of hair on a person's head except the face."], "head": ["The part of the body of an animal or human which contains the brain, mouth and main sense organs.", "The foremost or leading position in a race, a competition.", "A person who leads, rules, or is in charge.", "The person who is in charge of and runs a school.", "Leader of a department or tribe.", "The complex of cognitive faculties, mostly characteristic of human beings, that enables consciousness, thinking, reasoning, perception, and judgement."], "wing": ["The appendage of an animal's (bird, bat, insect) body that enables it to fly in the air.", "To move autonomously through the air, without any part of the object or object's enclosure touching anything attached to the ground.", "Part of airplane that enables it to stay in the air."], "fingernail": ["The hard, flat, translucent covering near the tip of a human finger, useful for scratching and fine manipulation."], "tofu": ["A protein-rich food made from curdled soybean milk, by coagulating it with magnesium sulfate."], "marriage": ["A union of two persons (usually a man and a woman) which entails legal obligations and is intended to last for life.", "A ceremony celebrating the beginning of a marriage, during which the marrying parties exchanges vows.", "The state of being married."], "wedding": ["A ceremony celebrating the beginning of a marriage, during which the marrying parties exchanges vows."], "wedlock": ["The state of being married."], "matrimony": ["The state of being married."], "nighttime": ["The period between sunset and sunrise, when a location faces far away from the sun, thus when the sky is dark."], "daytime": ["The period between sunrise and sunset where one enjoys daylight."], "collection": ["A method to group defined meanings from a particular source or context.", "The embeding of a sum of due money.", "Several things grouped together or considered as a whole.", "The act of gathering something together.", "In computer science, a data structure which contains some variable number of data items that have some shared significance to the problem being solved and need to be operated upon together in some controlled fashion (e.g. in a sequence).", "A collection of art works."], "choir": ["A singing group; a group of people who sing together.", "The part of a church where the choir assembles for song.", "One of the nine ranks or orders of angels."], "sing": ["To produce harmonious sounds with one's voice."], "brother": ["A male person who has the same parents as another person.", "A man who is member of a religious order and lives under community rules separated from the world.", "A fellow fraternity member.", "A peer, male or female.", "An African-American male.", "Close friend."], "half-brother": ["A brother with whom one has only one parent in common."], "sister": ["A female person who has the same parents as another person.", "A female ascetic who chooses to live her life in prayer and contemplation in a monastery or convent.", "A fellow sorority member.", "An African-American female."], "change": ["To become different in essence or nature; to undergo a change.", "To make different.", "The process of becoming different.", "To put on different clothing; to change clothes.", "To exchange something old or something that has become unusable for something else of the same kind.", "Small denominations of money given in exchange for its equivalent in a larger denomination."], "soprano": ["A musical part or section that is higher than alto and all other sections, with a typical range from the A below \"middle C\" to \"high C\" (two octaves above \"middle C\")."], "celestial": ["Relating to the sky or heavens."], "alto": ["A musical part or section higher than tenor but lower than soprano, with a typical range from the F below \"middle C\" to the E a tenth above it."], "tenor": ["A musical part or section higher than bass but lower than alto, with a typical range from the C one octave below \"middle C\" to the G above.", "That which is understood from a discourse, dialogue or phrase by the way in which it is expressed.", "The general meaning or substance of an utterance."], "bass": ["A musical part or section lower than tenor and all other sections, with a typical range from the D below the bottom of the bass clef to the E above \"middle C\".", "A marine fish (Percicthyidae or Centrarchidae) that is popular as game.", "Of low frequency or range.", "A male singer who sings in the deepest vocal range.", "A sound range of low frequency or range.", "An instrument that plays sounds of low frequency.", "A musical clef indicating that the F3 note is placed on the fourth line.", "Nontechnical name for any of numerous edible marine and freshwater spiny-finned fishes."], "bride": ["A woman who is going to get married or has just got married."], "narrow": ["Having a small width.", "To reduce in width or extent."], "yes": ["A word used to show agreement or affirmation of something."], "no": ["A word used to show disagreement of something.", "A word used to confirm a negatively formulated statement.", "[Used to show disagreement or negation.]"], "because": ["[Indicates that a reason or cause follows].", "By or for the cause that; as a result of that.", "Conjunction initiating a causal phrase."], "why": ["For what reason."], "leader": ["A person who leads, rules, or is in charge.", "Leader of a department or tribe."], "chief": ["A person who leads, rules, or is in charge.", "Leader of a department or tribe.", "Leader of a tribe"], "director": ["A person who leads, rules, or is in charge.", "A person who visualizes a script, controlling the artistic and dramatic aspects, while guiding the technical crew and actors in the fulfilment of his or her vision of a film or theatre production."], "headmaster": ["The person who is in charge of and runs a school."], "parent": ["A person having one or more offsprings.", "An entity that is broader in scope.", "A person who is the caretaker of a child."], "ice cream": ["A cold dessert (made of water, cream and milk, combined with flavourings, emulsifiers and sugar) that's popular when it's hot."], "cake": ["A rich, sweet, baked dessert, typically made with flour, eggs, sugar and butter.", "To coat (something) with a layer of solid material.", "A baked delicacy."], "hello": ["Expression of greeting used by two or more people who meet each other."], "goodbye": ["A parting statement; used when one or more people in a situation, dialogue or location are leaving, while others remain."], "farewell": ["A parting statement; used when one or more people in a situation, dialogue or location are leaving, while others remain.", "An interjection of parting.", "An act of departure from a place or a group.", "An expression of good wish at a permanent departure.", "Any statement of good wish (like \"good bye\") at parting.", "A interjection of good wish at (a non-final) parting said by the staying person to the leaver."], "please": ["An expression used when a person wants something, in order to make their request more polite.", "To give pleasure to; to make happy or satisfied.", "Formal way of being polite when you give something.", "to make someone happy"], "if you please": ["An expression used when a person wants something, in order to make their request more polite."], "thank you": ["[An interjection of gratitude or politeness, used in response to something done or given.]", "An expression of gratitude"], "thanks": ["[An interjection of gratitude or politeness, used in response to something done or given.]"], "heavenly": ["Relating to the sky or heavens.", "Wonderful, lovely or amazing - in relation to a sensual experience (comparable to the experience of heaven)."], "wonderful": ["Causing wonder, admiration or astonishment.", "(of weather) highly enjoyable.", "Deserving praise; worth to be praised."], "half-sister": ["A sister with whom one has only one parent in common."], "aunt": ["A woman with one or more siblings who have one or more children; a sister of someone's father or mother."], "candle": ["A light source consisting of a wick embedded in a solid, flammable substance such as wax, tallow, or paraffin."], "ice lolly": ["A cold dessert or snack (made of water, combined with flavourings and sugar) that is popular when it's hot."], "adieu": ["A parting statement; used when one or more people in a situation, dialogue or location are leaving, while others remain.", "An expression of good wish at a permanent departure."], "bye": ["A parting statement; used when one or more people in a situation, dialogue or location are leaving, while others remain."], "bridegroom": ["A man who is going to get married or has just got married."], "groom": ["A man who is going to get married or has just got married.", "To educate for a future role or function.", "To care for one's external appearance.", "To give a neat appearance to; for care for animals by brushing and cleaning them."], "smell": ["That which is perceived by the nasal organs.", "To perceive the presence of molecules in the air by inhaling them through the nose.", "To give off a smell that can be perceived by the nose."], "Frau": ["Historically polite address for a female person"], "yesterday": ["On the day before today.", "The day before today."], "fermata": ["A piece of musical notation that indicates that the note should be held for longer than the usual duration: until the conductor cuts it off."], "your": ["Of or belonging to you (singular).", "Of or belonging to you (plural).", "Of or belonging to you (plural, formal)", "Of or belonging to you (singular, formal)."], "stop": ["To come to a halt; to cease moving.", "To render passage impossible by physical obstruction.", "An obstruction in a pipe or tube.", "To have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical.", "A traffic sign to instruct one to be still and not proceed until the path is clear.", "A place where line buses, trams or trains halt to let passengers get on and off.", "To cause to stop (e.g. an engine or a machine).", "To put an end to a state or an activity.", "To interrupt a trip.", "To hold back, as of a danger or an enemy; check the expansion or influence of.", "To prevent completion (e.g. of a project, of negotiations, etc.)."], "pause": ["To cease or suspend an action temporarily."], "answer": ["To communicate a message of any form in reaction to something that has been asked or expressed, to the being who expressed it.", "To understand the meaning of.", "A statement (either spoken or written) that is made in reaction to a question, a request, criticism or accusation", "To respond to an incoming telephone call."], "gift": ["Something given to another person voluntarily and without charge.", "A talent or quality which is or seems innate or natural.", "To give as a present; make a gift of."], "present": ["Something given to another person voluntarily and without charge.", "Grammatical tense that describes the present or ongoing conditions.", "To have somebody see something.", "The current moment or period of time.", "Existing or happening now, in the presence; being intermediate between past and future.", "To come to the attention of medical staff.", "To give [a gift or award] in a formal manner.", "To submit (a bill or a check) for payment.", "To offer to a court or legislature for consideration.", "To introduce someone to another, in a formal manner.", "To introduce or show to the public.", "To present somebody with something, e.g. to accuse or criticize."], "noun": ["A word that can be used to refer to a person, place, thing, quality, or idea; a part of speech. It can serve as the subject or object of a verb. For example, a table or a computer."], "adverb": ["A word that modifies a verb, adjective, another adverb or a prepositional phrase."], "fat": ["Who is too fat.", "A specialized animal tissue with a high oil content, used for long-term storage of energy.", "Carrying a larger-than-normal amount of fat or weight.", "The ester of glycerol and one, two, or three fatty acids.", "Made of fat.", "(Concerning a person) He who carries a lot of fat."], "hand": ["That part of the fore limb below the forearm or wrist in primates (including humans).", "To give, transmit or pass to, using one's hand.", "A set of cards or pieces of a player at a given time during a game."], "vomit": ["To regurgitate the contents of the stomach.", "Matter ejected from the stomach through the mouth."], "overweight": ["Carrying a larger-than-normal amount of fat or weight.", "Of a large person who has a mass or quantity of fat above normal."], "peach": ["The soft, sweet, juicy fruit of the peach tree, usually with a red or orange skin, yellow flesh and a large stone inside.", "A species of tree, native to China, that bears juicy fruits, usually with a red or orange skin, yellow flesh and a large, wrinkled stone."], "today": ["The current day or date.", "On the current day or date.", "In the current era.", "Metaphoric expression for the present."], "fall": ["Move to a lower position due to the effect of gravity.", "The act of surrendering to the enemy.", "To die in battle.", "A downward slope or bend.", "To go from a higher to a lower place.", "To lose one's balance and hit the ground.", "A sudden drop from an upright position.", "A wrestling move in which a wrestler's shoulders are forced to the mat.", "To move downward and lower (e.g. of temperature values or falling objects).", "To pass suddenly and passively into a state of body or mind (e.g. into a trap, ill, in love, etc.).", "To come under, be classified or included (e.g. into a category).", "To touch or seem as if touching visually or audibly."], "prison": ["A place in which individual persons have restricted personal freedom.", "A building where people are detained after they were convicted for a crime by a court."], "a": ["One; any indefinite example of [indefinite article].", "One certain or particular.", "To; each; per.", "Singular feminine of the indefinite article", "The masculine singular indefinite article.", "A certain; a particular.", "Some; about", "A work by.", "[The indefinite article, used in a negative construction.]"], "jail": ["A place in which individual persons have restricted personal freedom.", "Putting someone in prison or in jail."], "couch": ["A piece of furniture on which more than one person can sit, with cushions, a back, and arm rests.", "Phrase in a style or language that softens or hides the intended meaning"], "bank": ["The sloping side of any hollow in the ground, especially when bordering a river.", "A financial institution where one can borrow money (upon which interest is due) or deposit money (in order to collect interest).", "Accumulation of a same substance, normally in big quantities, or arrangement of similar objects that is considered as a unit, for example: sand bank, fog bank, bank of ice.", "A place where supplies or stock of bodies or substances of the human body are preserved, usually of the same type, for future medical use, for example: blood bank, eye bank, sperm bank.", "A place where elements, usually of the same type are kept, for consultation or later use, for example: data bank, image bank.", "To tip laterally.", "To do business with a financial institution or keep an account at a financial institution.", "To act as the banker in a game or in gambling.", "To have confidence or faith in.", "A flight maneuver; the aircraft tips laterally about its longitudinal axis (especially in turning).", "A long ridge or pile."], "important": ["Having relevant and crucial value.", "Worth paying attention to."], "nowadays": ["In the current era."], "sofa": ["A piece of furniture on which more than one person can sit, with cushions, a back, and arm rests."], "settee": ["A piece of furniture on which more than one person can sit, with cushions, a back, and arm rests."], "limit": ["The point, edge, or line beyond which something cannot or may not proceed.", "To restrict; not to allow to go beyond a certain bound."], "hot": ["Having a high temperature.", "Sexually attractive.", "The quality or state of being warm.", "Characterized by violent and forceful activity or movement; very intense.", "(color) bold and intense.", "Of, pertaining to, or containing spice; or spicy flavour: Provoking a burning sensation due to the presence of chillies or similar hot spices."], "by": ["Close to; next to.", "With the use of; by means of.", "Having the position next to a given place, location or object"], "cap": ["A soft head-covering, often knitted, that fits the head closely.", "A soft head covering with a visor, most commonly of cloth.", "A usually soft and close-fitting head covering, either having no brim or with a visor."], "baby": ["A very young human being, from birth to a year old.", "A woman that is considered sexually attractive by a man, or many men.", "A project of personal concern to someone."], "elephant": ["A mammal of the order Proboscidea, having a trunk, and two large ivory tusks jutting from the upper jaw. Elephants are the largest land animals now existing."], "base": ["Any chemical species, ionic or molecular, capable of accepting or receiving a proton (hydrogen ion) from another substance; the other substance acts as an acid in giving of the proton.", "The lowest side of a in a triangle or other polygon, or the lowest face of a cone, pyramid or other polyhedron.", "Not adhering to ethical or moral principles.", "Having or showing an ignoble lack of honor or morality.", "An installation from which a military force initiates operations.", "The bottom or lowest part.", "To use as a basis for.", "To use purified cocaine by burning it and inhaling the fumes.", "The lowest support of a structure.", "The inferior part of a building, monument or furniture.", "The base of a nucleic acid, such as thymine, uracil, adenine, cytosine and guanine."], "back": ["The side of something opposite the front or useful side; the reverse side; the side that is not normally seen.", "That which is farthest away from the front.", "The part of something that goes last.", "The rear of body, especially the part between the neck and the end of the spine and opposite the chest and belly.", "In some team sports, a position behind most players on the team.", "To travel backward.", "To give support or one's approval to; to be behind; to approve of.", "The direction to here, when the subject has been here before.", "Present again.", "To be in favour of or be behind; to approve of."], "bad": ["Not good; unfavorable; negative.", "A mistake, an oversight, a slight; usually apologetic, referring to one's own failures.", "Having changed its colour, smell or composition (partially or completely), due to being attacked and decomposed by microorganisms (relating to organic matter); damaged by decay.", "With great intensity.", "Characterized by wickedness or immorality."], "error": ["A mistake, an oversight, a slight; usually apologetic, referring to one's own failures.", "Wrong or considered mistaken action.", "An incorrect action not made deliberately."], "mistake": ["A mistake, an oversight, a slight; usually apologetic, referring to one's own failures.", "To fail to understand or interpret the meaning of words or behaviour correctly.", "To make a mistake or be incorrect.", "To identify incorrectly.", "An incorrect action not made deliberately."], "bathtub": ["A tub or pool which is used for bathing."], "zero": ["The cardinal number that denotes no quantity or amount at all.", "The digit \"0\""], "bath": ["A tub or pool which is used for bathing.", "Submerging of the body into water either for washing or for recreation.", "To submerge the body into water either for washing or for recreation.", "A room containing a bath or shower and usually a washbasin and toilet"], "guard-room": ["A place, where police, soldiers, security guards, rescue teams, firemen, etc. spent their time of duty, unless, or until, incidents possibly call them out."], "duty-room": ["A place, where police, soldiers, security guards, rescue teams, firemen, etc. spent their time of duty, unless, or until, incidents possibly call them out."], "cook": ["To prepare by submerging in a liquid (usually water) at 100 degrees Celsius or more.", "A person that has prepared a meal.", "A person whose profession is to prepare food for customers.", "To apply heat to something, usually food.", "To prepare a meal or a single dish.", "To make ready for eating or drinking."], "job": ["Productive activity, service, trade, or craft for which one is regularly paid.", "A piece of work to be done, a task to be fulfilled."], "Job": ["A character of the Old Testament."], "stick": ["A long, thin piece of wood, mainly left in the shape in which it grew, that does not bend.", "An object, specifically for providing support when walking.", "To stay faithful to (an opinion, a belief, etc.).", "To come or be in close contact with; to stick or hold together and resist separation.", "To stick to firmly."], "walking stick": ["An object, specifically for providing support when walking."], "feature": ["A defining characteristic.", "A part of something that is noticeable."], "leg": ["The limb of an animal (including humans) that extends from the groin to the ankle.", "A stage of a journey.", "A single game or match played in a tournament or other sporting contest."], "newspaper": ["A publication (usually published daily or weekly and printed on cheap, low-quality paper) that contains news and other articles."], "computer": ["A programmable device that performs mathematical calculations and logical operations, especially one that can process, store and retrieve large amounts of data very quickly."], "coffee": ["A beverage made by infusing the beans of the coffee plant in hot water.", "A flowering plant of the genus Coffea whose seeds are used to make coffee."], "country": ["A people permanently occupying a fixed territory bound together by common law, habits and custom into one body politic exercising, through the medium of an organized government, independent sovereignty and control over all persons and things within its boundaries, unless or until authority is ceded to a federation or union of other states.", "A political entity asserting ultimate authority over a geographical area.", "A rural area, the countryside - as opposed to a city or town.", "The land [region] of a person's birth, citizenship, residence, etc.", "The people living within the boundaries of a sovereign state.", "A set region of land having particular human occupation or agreed limits, especially inhabited by members of the same race, language speakers etc., or associated with a given person, occupation, species etc.", "A tract of land of undefined size.", "The geographic area under the control of a political state."], "foot": ["The part of a human\u2019s body below the ankle that is used in order to stand and walk.", "A unit of measurement equal to twelve inches and one third of a yard (or exactly 30.48 centimetres).", "The lowest support of a structure."], "fork": ["A utensil with spikes used to put solid food into the mouth.", "An intersection in a road or path where one road is split into two.", "To divide into two or more branches so as to form a fork, starting from a common point.", "In a bicycle, the portion holding the front wheel, allowing the rider to steer and balance."], "finger": ["One of the long extremities of the hand that is used for gripping objects."], "wedding dress": ["Clothing worn by a bride during a wedding ceremony; traditionally white in Western culture."], "wedding ring": ["One of a pair of rings exchanged by bride and groom in a wedding ceremony; symbolizes continuous fidelity."], "wedding band": ["One of a pair of rings exchanged by bride and groom in a wedding ceremony; symbolizes continuous fidelity."], "honeymoon": ["The period of time immediately following a marriage.", "To spend one's honeymoon.", "A holiday or trip taken by a newly married couple."], "wedding gown": ["Clothing worn by a bride during a wedding ceremony; traditionally white in Western culture."], "wedding night": ["The night after the wedding, when the bride and groom spend their first official night together"], "wedding cake": ["An often multi-layered cake ceremoniously cut by the bridal pair at their wedding."], "dowry": ["An amount paid by the parents of a bride to the groom and or his family."], "wedding march": ["Music played when either the couple or the bride arrive at the wedding ceremony."], "Dutch": ["A West Germanic language spoken mainly in the Netherlands, Flanders and Suriname.", "Of or relating to the Netherlands, the Dutch people, or the Dutch language.", "A person of Dutch nationality."], "English": ["A West-Germanic language originating in England but now spoken in all parts of the British Isles, the Commonwealth of Nations, the United States of America, and other parts of the world.", "Of or relating to England, the English people, or the English language.", "A person of English nationality."], "Galician": ["The language of Galicia, a region of the Northwestern Iberian peninsula.", "Of or relating to Galicia, Galicians, or the Galician language.", "A person from Galicia, or of Galician ancestry."], "French": ["The language of France and numerous other countries.", "The people of France collectively.", "Of or pertaining to France, the French people.", "Of the French language"], "German": ["A male person of German nationality.", "A female person of German nationality.", "An Indo-European language, primarily spoken in Germany, Austria, Liechtenstein, South Tyrol, Switzerland and a small part of Belgium.", "Of or relating to Germany, Germans, or the German language.", "A person of German nationality."], "Belgium": ["A country in Western Europe at the North Sea, south of The Netherlands, north of France, and west of Germany, with capital city Brussels."], "Spanish": ["A Romance language that is spoken mainly in Spain, North, Central and South America, and the Carribbean.", "Of or relating to Spain, Spaniards, or the Spanish language."], "chef": ["A person whose profession is to prepare food for customers.", "A cook who manages other cooks in an establishment such as a restaurant."], "football": ["Inflated ball used in the sport of football which has between 62 and 66 cm in diameter.", "The ball used when playing football.", "The ball used in American football."], "morning gift": ["A gift from the groom to the bride given on the morning after the wedding night; traditionally this gift became her personal property."], "cool": ["To make cooler or colder.", "Having a slightly low temperature; mildly or pleasantly cold.", "About colors whose relative visual temperatures make them seem cool. Cool colors generally include green, blue-green, blue, blue-violet, and violet.", "To become cooler or colder."], "soccerball": ["The ball used when playing football."], "queen": ["A female monarch.", "The wife of a king.", "The most powerful piece in the game of chess, able to move both horizontally and diagonally any number of spaces.", "A playing card with a picture of a queen on its face; the 12th card in a given suit.", "A reproductive female animal in a hive, such as an ant, bee, termite or wasp.", "The only sexually mature female in a colony of honeybees."], "language": ["A person's manner of speaking.", "A system of communication using the spoken or signed word or using symbols that represent words, signs or sounds.", "Any variety of language that functions as a system of communication for its speakers."], "question": ["A sentence, phrase or word which asks for information, a reply or response.", "A subject or topic under consideration or discussion.", "Challenge about the truth or accuracy of a matter.", "To ask (a question) to somebody; to seek an answer to.", "To examine by asking (a witness, for example).", "Action of asking for information, a reply or response on a given subject."], "quick": ["Raw or sensitive flesh, especially that underneath finger and toe nails.", "Moving with speed, rapidity or swiftness, or capable of doing so.", "Mentally agile.", "Occurring or happening within a short time; brief."], "clever": ["Mentally agile.", "Of high or especially quick cognitive capacity."], "very": ["To a high or large degree."], "too": ["To a greater, larger or higher degree than expected, warranted or wanted.", "In addition to what has already been said or noted."], "fox": ["A carnivorous relatively small canine of the species Vulpes Vulpes.", "A canine animal of the genus Vulpes."], "red fox": ["A carnivorous relatively small canine of the species Vulpes Vulpes."], "Canada": ["A country in North America whose capital is Ottawa."], "Iceland": ["An island nation in the northern Atlantic Ocean. Its capital is Reykjavik."], "moon": ["A natural satellite of a planet.", "A month, particularly a lunar month (approximately 28 days).", "To fuss over adoringly or with great affection.", "Deliberately show ones bare ass (usually to an audience, or at a place, where this is not expected or deemed appropriate).", "To be lost in phantasies or be carried away by some internal vision, having temorarily lost (part of) contact to reality."], "stave": ["A series of (usually five) horizontal lines on which musical notes are written."], "staff": ["A group of suporters or being consulted on a high but not the highest hierarchy position, corroborating closely usually assisting in solving specific problems or questions in a certain field.", "A series of (usually five) horizontal lines on which musical notes are written.", "The employees or workers of a business or organisation.", "A long, straight stick (usually made of wood) that is used for walking or as a status symbol or weapon.", "The whole of the worforce."], "India": ["A country in South Asia, with the capital New Delhi.", "The letter \"I\" in the ICAO radiotelephony spelling alphabet."], "Republic of India": ["A country in South Asia, with the capital New Delhi."], "suave": ["Charming, confident, elegant and sophististicated (relating to a person)."], "Republic of Iceland": ["An island nation in the northern Atlantic Ocean. Its capital is Reykjavik."], "Indonesia": ["A country in Southeast Asia with capital Jakarta."], "also": ["In addition to what has already been said or noted."], "Republic of Indonesia": ["A country in Southeast Asia with capital Jakarta."], "Iran": ["A country in Southwest Asia with capital Tehran."], "Islamic Republic of Iran": ["A country in Southwest Asia with capital Tehran."], "Iraq": ["A country in Southwest Asia with capital Baghdad."], "Republic of Iraq": ["A country in Southwest Asia with capital Baghdad."], "Armenia": ["A country in West Asia. Its official name is Republic of Armenia and its capital is Yerevan."], "Ireland": ["A country in Western Europe with capital Dublin.", "An island in the Atlantic Ocean, the third largest of Europe."], "Republic of Ireland": ["A country in Western Europe with capital Dublin."], "Israel": ["A country in Southwest Asia, with capital Jerusalem."], "Italy": ["A country in Southern Europe with capital Rome."], "Italian Republic": ["A country in Southern Europe with capital Rome."], "Haiti": ["A country in the Carribean with capital Port-au-Prince."], "Republic of Haiti": ["A country in the Carribean with capital Port-au-Prince."], "Honduras": ["A country in Central America with capital Tegucigalpa."], "Republic of Honduras": ["A country in Central America with capital Tegucigalpa."], "Hungary": ["A country in Central Europe with capital Budapest."], "Republic of Hungary": ["A country in Central Europe with capital Budapest."], "Afghanistan": ["A country in Central Asia with capital Kabul."], "Transitional Islamic State of Afghanistan": ["A country in Central Asia with capital Kabul."], "Albania": ["A country in Southeastern Europe with capital Tirana."], "Republic of Albania": ["A country in Southeastern Europe with capital Tirana."], "Algeria": ["A country in North Africa with capital Algiers."], "People's Democratic Republic of Algeria": ["A country in North Africa with capital Algiers."], "Antigua and Barbuda": ["A country in the Carribean with capital Saint John's."], "Andorra": ["A country in Southwestern Europe, with capital Andorra la Vella."], "Principality of Andorra": ["A country in Southwestern Europe, with capital Andorra la Vella."], "Azerbaijan": ["A country in the Caucasus region, with capital Baku."], "Republic of Azerbaijan": ["A country in the Caucasus region, with capital Baku."], "quiet": ["With little or no sound; denoting absence of disturbing noise.", "Having little motion or activity.", "Not busy.", "To become quiet, silent, still, tranquil, calm.", "Marked by the complete lack of sound or noise.", "The absence of movement."], "quite": ["To a great extent or degree.", "To a moderate extent or degree.", "Expresses emphatic agreement with another person's (often grim) analysis of a situation."], "throw the baby out with the bathwater": ["To discard something valuable or useful in the process of removing waste."], "Angola": ["A country in Southern Africa with capital Luanda."], "Republic of Angola": ["A country in Southern Africa with capital Luanda."], "tent": ["A portable lodging (usually made from waterproof plastic, animal hide or canvas streched by poles) that is used for sheltering people and objects from the weather when camping or at festivals."], "rainy": ["Abounding with rain."], "marquee": ["A portable lodging (usually made from waterproof plastic, animal hide or canvas streched by poles) that is used for sheltering people and objects from the weather when camping or at festivals."], "raise": ["To cause to rise; to move something from a lower position to a higher one.", "To gather together; to encourage growth by collecting funds.", "An increase in pay or wages by being with a company or business for a certain period of time, or for specific good work.", "To construct a wall, a building, etc.", "To make by combining materials and parts.", "To summon into action or bring into existence.", "To cultivate by growing, often involving improvements by means of agricultural techniques.", "To move upwards (e.g. eyes)."], "Argentina": ["A country in South America, with capital Buenos Aires.", "ISO 639-6 entity"], "Argentine Republic": ["A country in South America, with capital Buenos Aires."], "collect": ["To gather together; to encourage growth by collecting funds.", "To get or gather together.", "To heap up; to collect or gather (e.g. work, magazines, etc.).", "To receive an amount due."], "Australia": ["A country in Oceania, with capital Canberra.", "Continent that is entirely located on the southern half of the globe, surrounded by the Indian, and Pacific Oceans, and Southern Ocean."], "Commonwealth of Australia": ["A country in Oceania, with capital Canberra."], "Austria": ["A country in Central Europe, with capital Vienna."], "Republic of Austria": ["A country in Central Europe, with capital Vienna."], "chicken": ["A type of domesticated bird from the order of Galliformes which is often raised as a type of poultry (Gallus gallus domesticus).", "A person who lacks courage.", "The flesh of the domesticated chicken (Gallus gallus domesticus).", "A youthful person."], "apple": ["A native Eurasian tree of the genus ''Malus''.", "The popular, crisp, round fruit of the apple tree, usually with red, yellow or green skin, light-coloured flesh and pips inside.", "The wood of the apple tree."], "apple tree": ["A native Eurasian tree of the genus ''Malus''."], "bottle": ["A container, typically made of glass and having a tapered neck, used for holding liquids.", "The contents of a container called bottle.", "A container with a rubber nipple used for giving liquids to infants.", "To store liquids in bottles."], "breakfast": ["The first meal of the day, usually eaten in the morning.", "To eat breakfast."], "century": ["A period of 100 years.", "A hundred runs scored in cricket either by a single player in one innings, or by two players in a partnership.", "A unit of the ancient Roman army, originally of 100 soldiers, later reduced to 80."], "bedroom": ["A room in a house (usually containing at least a bed and a wardrobe) where a person sleeps."], "clock": ["An instrument used to measure or keep track of time.", "To measure the amount of time an object takes to complete a course (e.g., \"to clock a race car\")."], "slip": ["To fall over (usually unexpectedly) onto the ground or floor, due to the floor being slippery, smooth or slimy.", "To make a mistake or be incorrect."], "slide": ["To fall over (usually unexpectedly) onto the ground or floor, due to the floor being slippery, smooth or slimy."], "friend": ["A person other than a family member, spouse or lover whose company one enjoys and towards whom one feels affection.", "An associate who provides assistance.", "A person that someone has met repeatedly, and has a superficial knowledge of.", "A person with whom one has a love affair."], "work": ["Productive activity, service, trade, or craft for which one is regularly paid.", "To run or perform well, with ease or as desired or intended.", "To apply the mind to learning and understanding a subject (especially by reading).", "That that has been made; a product produced or accomplished through the effort or activity or agency of a person or thing.", "To do a specific task by employing physical or mental powers.", "To have and exert influence or effect.", "To create something, usually for a specific function."], "work well": ["To run or perform well, with ease or as desired or intended."], "function": ["To run or perform well, with ease or as desired or intended.", "Social gathering for entertainment and fun.", "(mathematics) A relation in which each element of the domain is associated with exactly one element of the codomain.", "What something does or is used for.", "(biology) The physiological activity of an organ or body part.", "(computing) A routine that returns a result.", "(chemistry) The characteristic behavior of a chemical compound.", "To perform duties attached to a particular office or place or function."], "down": ["From an higher position to a lower one.", "In a Southern direction; especially when taking directions from a map.", "In or into a state of non-operation.", "From one end to another; especially, from a higher end to a lower.", "On a lower level than before.", "Soft, fluffy immature feathers which grow on young birds.", "To drink or swallow, especially without stopping before the vessel containing the liquid is empty.", "Having a property of what grows on young birds before their feathers appear.", "Low in spirits.", "To knock somebody or cut something down, e.g. a tree."], "tomahawk": ["The war axe of North American indians."], "uncle": ["The brother of someone\u2019s father or mother."], "scissors": ["A tool used for cutting thin material, consisting of two crossing blades attached at a pivot point in such a way that the blades slide across each other when the handles are closed."], "tomorrow": ["The day after the present day.", "On the day after the present day."], "choice": ["One particular selection or preference out of a given range; the outcome of a decision that a person has made, or is about to make.", "A selection of something from a collection of options or alternatives.", "Considered especially good or preferred."], "possible": ["Able to happen but not certain."], "sentence": ["The official and authentic decision of a court of justice upon the respective rights and claims of the parties to an action or suit therein litigated and submitted to its determination, the final decision of the court resolving the dispute and determining the rights and obligations of the parties.", "A grammatically complete series of words (consisting of a subject and predicate, even if one or the other is implied) that typically begins with a capital letter and ends with a full stop.", "The punishment imposed upon a person that has been convicted of a crime."], "prince": ["Son of a prince, king, queen, emperor or empress, or other high-ranking person (such as a grand duke).", "The male ruler or head of a principality."], "problem": ["A difficulty that needs to be resolved or dealt with.", "A question with the explicit purpose of being solved by the students.", "A source of difficulties."], "protect": ["To keep something or someone safe or prevent harm coming to someone or something.", "To prevent against danger, injury, destruction, or damage."], "sheep": ["A common, four-legged animal (Ovis) that is commonly kept by humans for its wool.", "A timid, shy person who is easily led by others."], "neighbour": ["A male person living in a house that is adjacent or nearby another person's house.", "A female person living in a house that is adjacent or nearby another person's house."], "orange": ["The slightly sour fruit of the orange tree (citrus sinensis), usually orange in colour throughout, with a thick skin and pips.", "The colour of a ripe orange; a reddish-yellow.", "Having the colour of a ripe orange; a reddish-yellow."], "neck": ["The part of the body (found in some animals, including humans) that connects the head and the trunk.", "The narrow portion near the opening of a bottle."], "guts": ["The internal organs of an animal.", "The quality of not being afraid or intimidated easily without being incautious or inconsiderate."], "white": ["Bright and colourless; reflecting equal quantities of all frequencies of visible light.", "A Caucasian person with light-coloured skin; a member of the Caucasoid race.", "The colour of light that contains equal amounts of all visible wavelengths.", "Of or belonging to a racial group having light skin coloration."], "rotten": ["Having been overridden with bacteria and other infectious agents, hereby becoming unfit for consumption (referring to food).", "Having changed its colour, smell or composition (partially or completely), due to being attacked and decomposed by microorganisms (relating to organic matter); damaged by decay."], "eat": ["To consume something solid or semi-solid (usually food) by putting it into the mouth and eventually swallowing it.", "To eat a meal.", "To use up resources or materials.", "To cause to deteriorate due to the action of water, air, or an acid."], "red": ["The colour obtained by subtracting green and blue from white. A primary colour in the additive colour system, and a secondary colour in the subtractive colour system. It is the complementary colour of cyan.", "Having red as its colour."], "fart": ["The emission of digestive gases through the anus.", "To emit digestive gases through the anus."], "opposite": ["Located directly across from something else, or from each other.", "The contrary; being opposed to something.", "A person or object that is as different as possible from something else.", "A relation of direct opposition.", "Facing the other direction."], "pencil": ["To tentatively arrange an appointment into a busy schedule.", "A common writing utensil (made of a graphite shaft surrounded by wood) that uses graphite (commonly referred to as lead) to make marks on paper."], "pig": ["A common, four-legged animal (Sus scrofa) that has cloven hooves, bristles and a nose adapted for digging and is farmed by humans for its meat.", "(Pejorative) A fat or overweight person."], "minute": ["A unit of time equal to sixty seconds and one-sixtieth of an hour.", "Extremely small in size."], "peace": ["A state of tranquility, quiet, and harmony, e.g., a state free from civil disturbance.", "A state free of war, in particular war between different countries."], "Holland": ["A country in Europe, north of Belgium, officially the Kingdom of the Netherlands. Also existing of the Netherlands Antilles and Aruba, with capital Amsterdam.", "A region of the Netherlands, now divided into two separate regions: South Holland and North Holland."], "with": ["On the opposing side to.", "In the company of.", "In agreement with (a person).", "In addition to; as an accessory to."], "heat": ["A form of energy that is transferred by a difference in temperature: it is equal to the total kinetic energy of the atoms or molecules of a system.", "To cause an increase in temperature of an object or space; to cause something to become hot.", "To become hot or hotter."], "summer": ["Traditionally the second of the four seasons regarded as being from June 21 to September 20 (or just June, July and August) in the Northern Hemisphere and from December 21 to March 20 (or just December, January and February) in the Southern Hemisphere."], "sun": ["Any star, especially when seen as the centre of any single solar system.", "The particular star at the centre of our solar system, from which the Earth gets light and heat."], "option": ["One particular selection or preference out of a given range; the outcome of a decision that a person has made, or is about to make."], "exquisite": ["Considered especially good or preferred."], "guard": ["To keep something or someone safe or prevent harm coming to someone or something.", "A person who protects or watches over something.", "Something that serves as a guard or protection; a defense."], "ewe": ["A female sheep."], "ram": ["A male sheep.", "Non gelded male sheep.", "To strike against with a heavy impact."], "throat": ["The front part of the neck."], "consume": ["To consume something solid or semi-solid (usually food) by putting it into the mouth and eventually swallowing it.", "To ingest food, medicine, drugs, etc.", "To use up resources or materials."], "swallow": ["The reflex in the human body that makes something pass from the mouth to the pharynx and into the esophagus, with the shutting of the epiglottis.", "A passerine bird in the family Hirundinidae, characterised by its adaptation to aerial feeding.", "The act of swallowing.", "To tolerate or accommodate oneself to.", "To cause to pass through the esophagus as part of eating or drinking."], "across": ["Located directly across from something else, or from each other.", "From one side to the other.", "In a transverse manner."], "Spaniard": ["A person of Spanish nationality.", "A male person of Spanish nationality.", "A female person of Spanish nationality."], "monkey": ["A primate from the group \"New World monkeys\" or \"Old World monkeys\" (Simiiformes, excluding the superfamily Hominoidea or apes) that lives mainly in rainforests and is distinguished from an Ape by its smaller size and its tail."], "knife": ["A utensil consisting of a sharpened piece of hard material such as steel or other metal, ceramic, glass or stone, usually attached to a handle, that is formed in a manner that allows for cutting softer materials, especially meat or other food.", "To cut with a knife.", "To use a knife as a weapon in order to injure or kill.", "To cut through with or as if with a knife."], "hour": ["A time period of sixty minutes; one twenty-fourth of a day."], "next": ["Following in a sequence."], "laugh": ["To express pleasure, mirth or derision by peculiar movement of the muscles of the face, particularly of the mouth, causing a lighting up of the face and eyes, and usually accompanied by the emission of explosive or chuckling sounds from the chest and throat; to produce laughter.", "An involuntary reaction to a funny or entertaining dialogue or action that usually results in the emission of chuckling or explosive sounds, and shows happiness or satisfaction of the situation."], "number": ["An abstract entity used to describe quantity.", "A member of one of several classes: natural numbers, integers, rational numbers, real numbers, complex numbers, quaternions.", "A sequence of digits used to reach a particular person on a telephone network."], "amongst": ["In the company of.", "[Denotes a mingling or intermixing with distinct or separable objects.]"], "alongside": ["In the company of.", "Side by side with."], "sow": ["An adult female pig.", "To scatter, disperse, or plant seeds."], "boar": ["An adult male pig.", "A mammal of the biological family Suidae (Sus scrofa, Linneo 1758), ancestor of the domestic pig", "An adult male wild boar."], "come apart": ["To move away from each other."], "mountain bike": ["A bicycle, that is mainly used for riding off road and in the mountains."], "electron": ["An elementary particle with a negative charge. Together with atomic nuclei, it makes up atoms."], "daughter": ["An animal's female offspring (including that of a human)."], "enemy": ["Someone who is hostile to, feels hatred towards, opposes the interests of, or intends injury to someone else.", "The troups of a state, nation or people with whom one is at war.", "Man who is hostile to, feels hatred towards, opposes the interests of, or intends injury to someone else.", "Of, relating to, or belonging to an enemy."], "separate": ["To move away from each other.", "To cause something or someone to move away from something or someone else.", "To divide fully or partly along a more or less straight line.", "To sever the union of.", "To see someone or something as different from others; to discern or comprehend."], "come away": ["To move away from each other."], "in droves": ["In large quantities, with many."], "closing scene": ["The last scene in a play, novel or another artistic work."], "duck": ["An aquatic bird of the family Anatidae, having a flat bill and webbed feet.", "To lower the head or body to avoid collision, as with an object or ceiling."], "criminal": ["A male person that has conducted a criminal act.", "A female person that has conducted a criminal act.", "A person that has conducted a criminal act.", "Being against the law."], "wedding reception": ["A celebration after the wedding ceremony where people congratulate and meet the newlyweds and their families."], "tool": ["A mechanical device intended to make a task easier.", "A program or application that software developers use to create, debug, maintain, or otherwise support other programs and applications."], "final": ["After all the others.", "A test or examination given at the end of a term or class."], "finale": ["The last scene in a play, novel or another artistic work."], "street": ["A paved part of road, usually in a village or a town.", "Relative to urban streets and highways."], "childbirth": ["The fact or action of giving birth to a child, as the culmination of pregnancy."], "congratulation": ["The expression of one's sympathetic pleasure or joy to the person(s) it is felt for."], "party": ["An organized group that has as its fundamental aim the attainment of political power and public office for its designated leaders. Usually, a\\npolitical party will advertise a common commitment by its leaders and its membership to a set of political, social, economic and/or cultural values.", "Social gathering for entertainment and fun."], "birth": ["The fact or action of giving birth to a child, as the culmination of pregnancy.", "The moment at which someone is being born.", "The procedure of developing or the first time of presenting itself of an idea or a thing.", "To help a woman or an animal to give birth.", "To release an offspring from one's own body; to cause to be born."], "parturition": ["The fact or action of giving birth to a child, as the culmination of pregnancy."], "healthy": ["In good physical and mental condition; free from disease."], "kitchen": ["A room equipped for preparing and cooking food."], "face to face": ["Directly opposite each other."], "boy": ["A young male person, usually a child or teenager."], "birthday": ["The date on which a person was born.", "The day on which one or more years ago someone was born."], "cross": ["A geometrical figure consisting of two straight lines or bars intersecting each other such that at least one of them is bisected by the other.", "To go beyond, to pass here.", "To hinder or prevent (the efforts, plans, or desires) of.", "To fold so as to resemble a cross."], "bread": ["A common food made mainly from flour, water and yeast and produced by kneading and baking a dough."], "tools": ["The collection of mechanical devices that are required to do a task."], "booby": ["A clumsy person."], "gold": ["A heavy yellow elemental metal of great value, with atomic number 79 and symbol Au.", "The award presented after being victorious in a sporting event."], "future": ["The time ahead; those moments yet to be experienced.", "Taking place or existing in the future."], "voice": ["The sound and tones human beings are able to produce with the vocal cords."], "month": ["A period into which a year is divided, historically based on the phases of the moon. In the Gregorian calendar there are twelve months.", "A period of time lasting approximately thirty days."], "unit": ["A standard measure of a quantity."], "bathroom": ["A room containing a bath or shower and usually a washbasin and toilet"], "knee": ["In man, the joint in the middle part of the leg.", "To go down on one or both knees."], "creation": ["The procedure of developing or the first time of presenting itself of an idea or a thing."], "medicine": ["The science and art of treating and healing.", "A substance which specifically promotes healing."], "emergence": ["The procedure of developing or the first time of presenting itself of an idea or a thing."], "manifestation": ["The procedure of developing or the first time of presenting itself of an idea or a thing."], "picture": ["A representation of visible reality produced by drawing, painting, printing, photography, etc.", "The visual representation of a person or an object.", "To represent or show in, or as in, a picture."], "object": ["Something that has a physical existence.", "The grammatical object in a sentence.", "To express opinions disagreeing with the ones expressed by others.", "The goal intended to be attained (and which is believed to be attainable)."], "plant": ["Any living organism that synthesizes its food from inorganic substances, possesses cellulose cell walls, responds slowly and often permanently to a stimulus, lacks specialized sense organs and nervous system, and has no powers of locomotion.", "An establishment where products are manufactured using industrial methods.", "The whole of buildings, machines and necessary devices to carry out an activity.", "To set up or lay the groundwork for.", "To put a plant in the ground so that it strikes root and grows.", "To set up or found; to begin something, to undertake a plan, to give life to an institution, enterprise, etc.", "Pertaining to vegetables or other plants (as opposed to animal).", "An organism that is not an animal, especially an organism capable of photosynthesis.", "To fix or set securely or deeply."], "tea": ["The dried leaves or buds of the tea plant, Camellia sinensis.", "The drink made by infusing dried leaves or buds in hot water.", "A meal that is eaten in the late afternoon or evening daily.", "A cup or mug of dried leaves or buds infused in hot water."], "form": ["The shape or visible structure of a thing or person.", "A document w\u0131th blank spaces to be filled in by the user.", "To g\u0131ve shape or visible structure to a thing or person.", "In botanics, a group of organisms within a species that differ in trivial ways from similar groups.", "To create something, usually for a specific function.", "A method of doing something."], "skill": ["The capacity to do something well. They are usually acquired or learned, as opposed to abilities, which are often thought of as innate."], "ring": ["A round piece of (precious) metal worn around the finger.", "To contact someone using the telephone.", "An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation constituting a monoid and distributive over addition.", "An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation distributive over addition.", "A square ring where boxers fight.", "A platform usually marked off by ropes in which contestants box or wrestle."], "ability": ["The quality of being able to perform; a quality that permits or facilitates achievement or accomplishment."], "talent": ["The ability to acquire knowledge or skills."], "window": ["An opening, usually covered by one or more panes of clear glass, to allow light from outside to enter a building or vehicle.", "An opening, usually covered by glass, in a shop which allows people to view the shop and its products from outside.", "A period of time when something is available.", "A rectangular or differently shaped area on a computer terminal or screen containing some kind of user interface, displaying the output of and allowing input for one of a number of simultaneously running computer processes."], "yet": ["Up to the present.", "Continuously, during all time up to this or that time.", "At some future time.", "In addition to something else previously mentioned.", "[Phrase implying that the following clause is contrary to prior belief].", "At the present time.", "[used to emphasize a comparative]", "Up to the present time."], "visit": ["To go and see a person or place.", "A single act of seeing some person or place for a short time.", "To pay a short visit."], "record": ["Information stored on any type of media (paper, on a server, data in a program, microfilm, on a hard drive, etc.) with the intent to preserve the official business of the organization.", "Deposit of a document in an office or a public authority in order to have it registered (or acknowledged).", "A set of data relating to a single individual or item.", "The most extreme known value of some achievement, particularly in competitive events.", "To make a record of information.", "To insert and to record data in an electronic computer in permanent form.", "To make an audio or video recording of.", "The information about a single \u2018member\u2019 of a table in a database."], "spoon": ["An implement for eating or serving, a small bowl with a long straight handle."], "telephone": ["An electronic device used for calling people.", "To contact someone using the telephone.", "To speak with a person by telephone."], "phone": ["An electronic device used for calling people.", "To contact someone using the telephone."], "tooth": ["A hard, calcareous structure present in the mouth of many vertebrate animals, generally used for eating."], "second": ["One-sixtieth of a minute (as it is the second division of the hour, the minute being the first).", "A short, indeterminate amount of time.", "That which comes after the first.", "The attendant of a contestant in a duel or boxing match, who must be ready to take over if the contestant drops out.", "To give support or one's approval to; to be behind; to approve of."], "shoe": ["A protective covering for the foot, with a bottom part composed of thick leather or plastic sole and often a thicker heel, and a softer upper part made of leather or synthetic material. Shoes generally do not extend above the ankle, as opposed to boots, which do.", "A piece of metal designed to be attached to a horse's foot as a means of protection."], "right": ["One direction or side, as opposed to left. When a person hold his hands out, palms facing away from him, the shape between the first finger and thumb that it not an \"L\" is this direction.", "That are in accordance with fact.", "A power or liberty to which one is justly entitled.", "Something that is on the right side relative to another object.", "Pertaining to the political right; conservative."], "needle": ["A thin, sharp implement used in sewing, knitting and acupuncture.", "A long, slender device for indicating the reading of measurements on a dial (such as a compass).", "A hollow, thin and usually sharp implement used for injecting or drawing fluids from a person or animal.", "Long, thin, metal item with a sharp end, that is suitable for sewing.", "The leaf of a conifer."], "grandfather": ["The father of one of someone's parents"], "mobile": ["A type of sculpture in which parts move, often activated by air currents."], "molar": ["A tooth located in the back of the mouth used for crushing and grinding food."], "silence": ["The complete lack of sound or noise."], "moment": ["A short, indeterminate amount of time."], "pepper": ["A spice prepared from the fermented, dried, unripe red berries of the pepper plant.", "A fruit of the Capsicum: red, yellow or white, hollow and containing seeds, and in very spicy and mild varieties.", "A mild fruit of the Capsicum.", "Any fruit of a plant of the botanical genus Capsicum, noted for their spicy and burning flavour due to presence of capsaicin.", "To season with pepper."], "lion": ["A large cat (Panthera leo) that is native to Africa, Asia and formerly much of Europe."], "hobby": ["An activity that a person enjoys doing in their spare time (such as stamp collecting or knitting)."], "hypodermic needle": ["A hollow, thin and usually sharp implement used for injecting or drawing fluids from a person or animal."], "shade": ["Darkness, where light (particularly sunlight) is blocked.", "A variety of a colour, particularly one obtained with the addition of black."], "until": ["Up to the time or date of (something happening)."], "toe": ["One of the extremities of the foot."], "shadow": ["Darkness, where light (particularly sunlight) is blocked.", "Something existing in perception only."], "sensible": ["Reasonable and consequently also useful."], "meaningful": ["Having a recognizable meaning."], "town": ["An area with residential districts, shops and amenities, and its own local government."], "student": ["A person who studies a particular academic subject.", "Someone who attends a class."], "braeburn": ["A firm, red-streaked apple cultivar that tastes both sweet and tart."], "steam": ["The gas phase of water.", "To cook with water vapor."], "simple": ["Having few parts or features; having no special features.", "A person with poor judgment or little intelligence.", "Requiring little skill or effort; posing no difficulty."], "louse": ["A small wingless parasitic insect of the order Phthiraptera that lives on humans, other mammals and birds."], "horn": ["A hard growth of keratin that protrudes from the top of the head of certain animals.", "A wind instrument made of a wound copper tube with a wide sound bucket and valves."], "bone": ["A composite material consisting largely of calcium phosphate and collagen and making up the skeleton of most vertebrates.", "Any of the components of an endoskeleton, consisting mainly of calcium phosphate, collagen and cells.", "To remove the bones from.", "To study intensively, as before an exam.", "To remove the fishbones from."], "round": ["Circular or having a circular cross-section in at least one direction.", "A charge of ammunition for a single shot.", "A regular route for a sentry or policeman.", "A stage in the process of multilateral trade negotiations.", "Having a circular, cylindrical or spherical shape."], "lioness": ["A large female cat (Panthera leo) that is native to Africa, Asia and formerly much of Europe."], "reach": ["To come to a destination.", "Catching up with someone that went ahead.", "To attain or obtain by stretching forth the hand.", "To bring to a succesful end; to gain with effort.", "To exert much effort or energy on (e.g. ears, eyes, etc.).", "The limit of capability."], "wrong": ["Contradicting the facts."], "left": ["One direction or side, as opposed to right. The west side of the body when one is facing north.", "Pertaining to the political left; liberal.", "Something that is on the left side relative to another object."], "sharp": ["Having the ability to cut easily.", "Having or emitting a high-pitched and sharp tone or tones.", "Executed in an energetic and decided way.", "Intelligent, smart and capable of taking advantage of a situation.", "A note that is played a semitone higher than usual (denoted by the name of the note followed by the symbol \u266f).", "The symbol \u266f, placed after the name of a note, in the key signature, or before a note on the staff to indicate that the note is to be played a semitone higher."], "dull": ["Lacking the ability to cut easily; not sharp.", "Lacking in intelligence.", "Causing boredom.", "To reduce the intensity of a sound."], "dry": ["(Almost) free from liquid or moisture.", "A classification for wine with a relatively low sugar content.", "Of weather without precipitation (rain, hail, snow etc.).", "To lose moisture, usually through evaporation or absorption.", "To remove the moisture and make dry.", "(Of cows, goat, etc) Not producing milk (any more).", "To lose part of the moisture, to start drying."], "thin": ["(Of a person or animal) Narrow in size, and usually indicating carrying little fat.", "(For a flat object) Having a very small thickness.", "(For an elongated object) Having a very small diameter or cross-section."], "drink": ["Any one of various liquids for drinking.", "To consume a liquid through the mouth.", "To raise one's glass and touch it against another person's (usually at a celebration meal, etc. and usually with the word, \"cheers\").", "To consume a liquid containing alcohol.", "A serving of a liquid containing alcohol.", "The act of swallowing.", "Any large deep body of water."], "breast": ["The fleshy organ on the chest of a sexually mature human female containing mammary glands.", "The portion of the body from the base of the neck to the top of the abdomen; the thorax."], "bite": ["To cut off a piece by clamping the teeth.", "To hold something by clamping one's teeth.", "The act of biting with the teeth and jaws.", "The wound left behind after having been bitten by an animal or person.", "A small amount of solid food; a mouthful."], "straight": ["Not crooked or bent; having a constant direction throughout its length.", "Sexually attracted to members of the opposite gender.", "Without any deviation, immediately and directly.", "A poker hand such as Q\u2663 J\u2660 10\u2660 9\u2665 8\u2665, that contains five cards of sequential rank and mixed suits."], "name": ["Any word or phrase which designates a particular person, place, class or thing.", "To refer briefly to; to make reference to.", "To designate for a role.", "To give a name to.", "Word or phrase used to designate an object.", "To identify as in botany or biology, for example.", "To give the name or identifying characteristics of; to refer to by name or some other identifying characteristic property."], "near": ["Having a small intervening distance with regard to something.", "With very little distance to or in a particular place or location.", "To come near to; to move towards.", "Not far distant in time or space or degree or circumstances."], "far": ["Having a large intervening distance with regard to something.", "To a considerably larger extent.", "At a large intervening distance with regard to something."], "breathe": ["To repeatedly draw air into, and expel it from, the lungs, in order to extract oxygen from it and excrete waste products."], "hear": ["To perceive sound with the ear, without necessarily paying attention to it.", "To examine or hear (evidence or a case) by judicial process."], "blow": ["To produce an air current by forcing air out through the lips (at a speed faster than when breathing) or a device (such as a bellows).", "To create an explosion, resulting in the destruction of the entity.", "The moving of air resulting from the difference in air pressure in the atmosphere.", "A powerful stroke with the fist or a weapon.", "A street name for cocaine.", "To provide sexual gratification to a man through oral stimulation.", "In cetaceans, the expulsion of air at the surface through the blowhole(s).", "To show off.", "(Of the wind or a current of air) To move.", "To push away by blowing.", "A hard and loud hit received by someone when falling."], "explode": ["To create an explosion, resulting in the destruction of the entity.", "To expand suddenly with great force, a loud noise and release energy because of strong inner pressure due to a violent chemical or physical reaction.", "To increase suddenly, sharply, and without control.", "Break, burst in to pieces violently."], "see": ["To perceive [images] with the eye, without necessarily paying attention to them.", "To go or live through; to be affected by a certain situation, to have something happen to oneself.", "To be in charge of or deal with.", "To perceive by the visual faculty."], "know": ["To be certain or sure about something.", "To have a distinct physical emotion, feeling or sensation.", "To have knowledge of; to have memorised information, data, or facts about."], "lie": ["To rest in a horizontal, static position, usually on another surface.", "A false statement made with the intention to deceive.", "To knowingly say something that is untrue."], "pejorative": ["A disparaging, belittling or derogatory word or expression", "Having a negative denotation or connotation."], "insult": ["To assault verbally; to be deliberately rude to.", "Coarse, insulting speech or expression.", "To put someone down, or show disrespect by the use of insulting language or dismissive behaviour."], "rude": ["Tough, robust.", "Bad mannered."], "play": ["To act in a manner such that one has fun; to engage in playful activities expressly for the purpose of recreation.", "To use a musical instrument, obtaining sounds from it.", "To engage in a sport as a professional or amateur.", "To take part in a sport's match.", "To perform a theatrical role.", "To use a device to watch or listen to the indicated recording.", "To contend against an opponent in a sport, game, or battle."], "depository": ["A place where something is deposited, as for storage, safekeeping, or preservation."], "count": ["The result of a tally that reveals the number of items in a set.", "The male ruler of a county.", "To enumerate the digits of one's numeral system.", "To determine the number (of objects in a group).", "To be important."], "earl": ["The male ruler of a county."], "Armenian": ["The script used for the Armenian language.", "An Indo-European language spoken by the Armenian people.", "A person of Armenian nationality.", "Of or relating to Armenia, Armenians, or the Armenian language."], "settlement": ["An area with residential districts, shops and amenities, and its own local government."], "uncomplicated": ["Having few parts or features; having no special features."], "spherical": ["Of or pertaining to a sphere.", "Shaped like a sphere."], "cylindrical": ["Related to a cylinder.", "Shaped like a cylinder."], "circular": ["Having the shape of a circle"], "squeeze": ["To apply pressure to something from two or more sides at once.", "To squeeze someone in one's arms.", "To push or press something into a small confined space.", "To apply pressure to something, usually with the hands, to make a liquid come out; for example, milking a cow or squeezing a lemon", "To press or force."], "sec": ["A classification for wine with a relatively low sugar content."], "slim": ["(Of a person or animal) Narrow in size, and usually indicating carrying little fat."], "slender": ["(Of a person or animal) Narrow in size, and usually indicating carrying little fat.", "Of buildings or trees: With a slender and elongated. form"], "reedy": ["(Of a person or animal) Narrow in size, and usually indicating carrying little fat."], "gulp": ["To consume a liquid through the mouth."], "quaff": ["To consume a liquid through the mouth."], "sip": ["A small drink.", "To drink in sips."], "think": ["To account; to esteem; to think; to judge; to hold in opinion; to regard. (Source Webster 1913)", "To actively and consciously use one's mental powers, usually to form ideas.", "To have as opinion, belief, or idea.", "To have in one's mind as the subject of one's thoughts.", "To reckon as being possible in the future.", "To have in mind as one's purpose or intention.", "To imagine or visualize."], "bust": ["The fleshy organ on the chest of a sexually mature human female containing mammary glands.", "Representation of a man from its head to his shoulders, mostly made of bronze or marble.", "Police raid done by surprise in a given place, for inspection of suspected people."], "sit": ["To be in a position with the upper body upright and the legs resting.", "To move into a position where the upper body is upright and the bottom is resting on a surface or the floor."], "kill": ["To purposely end the life of another human being.", "To deliberately and purposely end the life of a political, public or other significant figure, usually publically.", "To be in the process of putting to death/ending a life.", "To begin, to be in the process of and then to finish putting to death/ending a life.", "To put to death; to end a life.", "An animal or person that another animal or person has put to death, often for the purposes of eating it."], "dig": ["To move earth, rocks, etc. out of the way, usually to create a hole.", "To get the meaning of something.", "To remove, harvest, or recover earth by digging."], "respirate": ["To repeatedly draw air into, and expel it from, the lungs, in order to extract oxygen from it and excrete waste products."], "fear": ["To be scared of; to have an uncontrollable emotion of anxiety about something that causes a scared reaction or frightening impression.", "An emotion experienced in anticipation of some specific pain or danger."], "repository": ["A place where something is deposited, as for storage, safekeeping, or preservation.", "A person to whom a secret is entrusted.", "A burial vault (usually for some famous person)."], "ponder": ["To actively and consciously use one's mental powers, usually to form ideas.", "To think deeply about something."], "suck": ["To draw in a substance by creating a practical vacuum in the mouth, and as a result a difference in pressure."], "live": ["To be alive; to have a life.", "To have a distinct physical emotion, feeling or sensation.", "To have permanent residence.", "Seen or heard from a broadcast, as it happens.", "In a live or real time manner."], "corset": ["A woman's foundation garment, reinforced with stays, that supports the waistline, hips and bust."], "fight": ["To be engaged in a physical confrontation or fight.", "Struggle for superiority.", "To take part in a loud or angry verbal confrontation with one or more other people.", "A boxing or wrestling match."], "yellow": ["Having the colour of a yolk, a lemon or gold.", "To become yellow.", "To make yellow.", "Lacking courage.", "Color evoked by light that stimulates both the long and medium-wavelength cone cells of the retina about equally, but does not significantly stimulate the short-wavelength cone cells."], "green": ["Having green as its colour; having the hue of that portion of the visible spectrum lying between yellow and blue, evoked in the human observer by radiant energy with wavelengths of approximately 490 to 570 nanometers.", "The colour of growing foliage, as well as other plant cells containing chlorophyll; the colour between yellow and blue in the visible spectrum; one of the primary additive colour for transmitted light; the colour obtained by subtracting red and blue from white light using cyan and yellow filters.", "Easily deceived or duped.", "The part of a golf course near the hole."], "black": ["A colour (the colour of the sky at night and a blackbird's feathers) that is created by the absorption of all light and reflection of none; dark and colourless.", "Of or belonging to a racial group having dark skin especially of sub-Saharan African origin.", "Marked by anger or resentment or hostility.", "The total absence of light.", "A person with dark skin who comes from Africa (or whose ancestors came from Africa).", "Dark and colourless; not reflecting visible light."], "good": ["In the interest of a positive purpose.", "Kind and willing.", "Having desired or positive qualities.", "The nutritional, healthy part of something.", "Of moral excellence.", "In a thorough or complete manner.", "[The abstract instantiation of something qualified by the adjective 'good'.]", "An article of commerce.", "A result that is positive in the view of the speaker.", "The forces or behaviors that are the enemy of evil."], "burn": ["To be consumed by fire.", "An injury to the skin caused by fire, excessive heat or certain chemicals.", "Physical sensation in the muscles following strenuous exercise, caused by build-up of lactic acid.", "To undergo combustion.", "To cause to undergo fire combustion.", "A browning of the skin obtained from exposure to the sun."], "full": ["Containing the most or maximum amount possible in the given available space.", "In tourism when everything is occupied.", "Having eaten enough."], "star": ["A luminous celestial body that is made from gases (particularly hydrogen and helium) and forms the shape of a sphere.", "A noteworthy or popular person, often a performer or athlete.", "To appear as a featured performer or headliner, especially in an entertainment program.", "A natural luminous object in the cosmos that is visible in the sky from the earth at least during clear nights."], "freeze": ["To reach a chemically solid state, by the process of cooling.", "To become and remain uncomfortably cold (usually referring to animals, especially humans).", "To put (usually food) into a freezer, in order that it remains fresh.", "To become very still or silent, usually as the result of a surprising, awkward or embarrassing situation.", "To become motionless."], "cut": ["To perform an incision or separate, as with an instrument (for example, with a knife).", "To divide something with scissors.", "The reduction or limitation of costs, jobs, etc.", "To obtain a precise figure from a sheet of paper, from a fabric or other material by cutting its outline.", "To divide something with a sharp object (such as a knife, scissors, etc.).", "To cut down on; to make a reduction in (especially costs, jobs, e.g. with financial and administrative acts)."], "costly": ["Having a high price, cost."], "hit": ["To deal one or more blows with a swift movement with the hand or one instrument.", "A song that is very popular for a while.", "To give a blow by striking and make contact.", "To impact with another object, resulting in a change of direction and/or velocity of one or both objects.", "A record from a database that results from a given search query.", "Act or effect of hitting.", "To unlawfully and intentionally kill another human being.", "To hit or come into contact against something.", "To make a strategic, offensive, assault against an enemy, opponent, or a target.", "To affect or afflict suddenly, usually adversely (e.g. of bad weather or illness)."], "stab": ["To pierce or to wound with a pointed tool or weapon, especially a knife or dagger.", "A strong blow with a knife or other sharp pointed instrument.", "To poke or thrust abruptly."], "hunt": ["The pursuit and killing or capture of wild animals.", "To chase down prey and (usually) kill it.", "Chase of prey."], "scratch": ["To rub or scrape (a part of the body) with a sharp object (e.g. to relieve an itching).", "A mark or indentation left by drawing a sharp object over a surface.", "To scratch or cut with nails.", "To make a slight linear abrasion on a surface.", "To rub or scrape a part of one's self with a sharp object (e.g. to relieve an itching).", "To wound superficially with a sharp object dragged over the skin.", "To indicate the removal of part of a text by drawing a line over it."], "split": ["To divide fully or partly along a more or less straight line.", "To spread or separate the balls laying close to each other in billards, during a pool or snooker match."], "fool": ["A person or thing that is humiliated or mocked.", "A person with poor judgment or little intelligence.", "A person who is gullible and easy to take advantage of.", "A person, especially a large male, who is clumsy or a simpleton; an idiot."], "swim": ["To move through the water, without touching the bottom."], "spit": ["To forcefully evacuate saliva from the mouth.", "A secretion from the salivary glands (found in the mouth) that can be spat out."], "fly": ["To move autonomously through the air, without any part of the object or object's enclosure touching anything attached to the ground.", "A common insect; any species of insect of the order Diptera.", "The zipper or set of buttons at the front of a pair of trousers.", "A small, black and flying insect of the genus Musca, without a spine.", "To travel in an aircraft or spacecraft."], "stand": ["To be upright in an erect position, supported by the feet.", "An object or implement that is used to keep other objects in an upright position.", "To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly.", "The mental position from which things are viewed."], "walk": ["To move from one place to another by moving legs alternately, so that at least one foot is in contact with the floor or surface at any one time.", "Comfortable walking on foot for relaxation and enjoyment."], "turn": ["To position by moving an object around its axis.", "To change direction of movement.", "To switch to the next page in a book or document.", "To begin to be; to come to be; to turn into.", "To undergo a transformation or a change of position or action.", "To undergo a change or development."], "come": ["To come to a destination.", "To move toward or to reach either the speaker, the person spoken to, or the subject of the speaker's narrative.", "To reach a sexual climax; to experience orgasm.", "Men's semen.", "To come to pass; to arrive, as in due course (e.g. success, dawn, etc.).", "To reach or enter a state, relation, condition, use, or position.", "To be the product or result.", "To come from; to be connected by a relationship of blood.", "To come under, be classified or included (e.g. into a category)."], "Bulgarian": ["A South Slavic language that is spoken mainly by the people of Bulgaria.", "Of or relating to Bulgaria, the people from Bulgaria or their language.", "A person of Bulgarian nationality.", "Relating to Bulgaria."], "give": ["To transfer the possession or holding (of an object) to another person.", "To be the cause or source of (feeling, effect, etc.)", "To bestow the possession or title of.", "To produce as return, as from an investment; to give or supply.", "To convey or reveal information (e.g. one's name).", "To convey, as of a compliment, regards, attention, etc.", "To organize or be responsible for (e.g. a party, a course, etc.)", "To give as a present; make a gift of.", "To bring about (e.g. depth in a picture)."], "hold": ["To grasp or grip (particularly with the hand) so that the object does not end up at the surface below.", "To contain or hold; have within.", "To arrange for (something for someone else) in advance.", "To have a right, title, or office.", "To have effectiveness or legal force, to be applicable.", "To be the physical support of; carry the weight of.", "The understanding of the nature or meaning or quality or magnitude of something.", "The act of grasping.", "To hold or possess either in an abstract or concrete sense.", "To cause to stop (e.g. an engine or a machine).", "To organize or be responsible for (e.g. a party, a course, etc.)", "To have room for; to hold without crowding.", "To remain in a certain state, position, or condition.", "To maintain (a theory, thoughts, or feelings)."], "Chinese": ["A Sino-Tibetan language spoken mainly in China and the surrounding regions and countries.", "Of or relating to China, peoples from China or their languages.", "A person of Chinese nationality.", "A citizen of China or someone of Chinese origin."], "rub": ["To move one's hand or an object over a surface or other object (maintaining constant contact and applying moderate pressure)."], "Castilian": ["A Romance language that is spoken mainly in Spain, North, Central and South America, and the Carribbean."], "Italian": ["A Romance language spoken primarily in Italy.", "A person from Italy, or of Italian ancestry.", "Originating from Italy."], "Portuguese": ["Of or relating to Portugal, the Portuguese people, or the Portuguese language.", "A Romance language spoken primarily in Portugal, Brazil, Angola and Mozambique.", "A male person of Portuguese nationality.", "A female person of Portuguese nationality.", "A person from Portugal, or of Portuguese ancestry.", "Of or relating to Portugal, Portuguese or the Portuguese language."], "room": ["A separate part of a building, enclosed by walls, a floor and a ceiling.", "Physical accomodation for a particular object or item, or a set of rules within which to carry out an activity.", "One's bedroom.", "Any habitable room of a house."], "smile": ["An upwards movement of the sides of the mouth that indicates happiness or satisfaction.", "To make an upwards movement of the sides of the mouth, that indicates happiness or satisfaction."], "push": ["To apply a force to (an object), in order that it moves away from the origin of the force that was applied.", "A great force, applied in order that an object will move away from the origin of the force that was applied to it.", "To press, drive, or impel (someone) to action or completion of an action.", "The force used in pushing."], "wash": ["To remove dirt and grime from an object, using water (usually with soap).", "A covering with water (and usually soap), with the intention of removing dirt or grime from the object.", "The work of cleansing, usually with water and soap.", "To cleanse (one's body) with soap and water."], "wipe": ["To move an object or utensil over a surface or other object while maintaining contact, in order that a substance be removed from its surface."], "pull": ["To apply a force to (an object), in order that it moves towards the origin of the force that was applied.", "A great force, applied in order that an object will move towards the origin of the force that was applied to it.", "To draw by a physical force causing or tending to cause to approach, adhere, or unite.", "To cause to move along the ground by pulling."], "throw": ["To cause (an object) to move rapidly through the air, with the force of the hand or arm.", "(Of a horse) To cause its rider to fall off.", "To organize or be responsible for (e.g. a party, a course, etc.)"], "sew": ["To pass thread repeatedly through fabric or a material, using a needle, in order to join two or more parts or to make a pattern or motif."], "float": ["To be held up or supported by a liquid (due to the liquid being of greater density than the object) so that some or all of it is above the liquid's surface.", "A buoyant, usually rectangular device used by children to help them to float or swim.", "A set of different coins and notes (borrowed from the bank) to use as change at a stall or shop.", "To move or run smoothly and continously as a fluid."], "say": ["To be in the process of communicating orally, using a particular language.", "To begin, to be in the process of and then to finish communicating orally, using a particular language.", "To communicate orally, using a particular language; to express in words.", "To report or maintain.", "To have or contain a certain wording or form.", "To give instructions to or direct somebody to do something with authority.", "To communicate or express nonverbally."], "if": ["[The introduction of a condition or decision.]", "The exactness or the inaccuracy of the hypothesis that [Particle marking the object clause of a cognitive verb as doubtful.]"], "in": ["Contained or encased by.", "Place in which.", "Before the end of a time period."], "silent": ["Marked by the complete lack of sound or noise.", "Not making a sound.", "Not speaking."], "at": ["Having the position over a given place, location or object.", "With very little distance to or in a particular place or location.", "Indicates the moment in the day in which something occurs.", "In the direction of (often in an unfocused or uncaring manner).", "Occupied in (activity).", "The logogram @.", "Evenly distributed to; identical instances of; mapped to any of."], "ashes": ["That which is left behind of a body, especially after cremation or decay."], "living room": ["A room in a private house used for general social and leisure activities."], "tug": ["A great force, applied in order that an object will move towards the origin of the force that was applied to it.", "(nautical) a small, powerful boat used to push or pull barges or to help maneuver larger vessels ; a small towboat."], "sitting room": ["A room in a private house used for general social and leisure activities."], "Sumerian": ["The language of ancient Sumer was spoken in Southern Mesopotamia from at least the 4th millennium BCE."], "Afrikaans": ["A West Germanic language spoken mainly in South Africa and Namibia."], "Neapolitan": ["The language spoken in the Campania and Calabria provinces of southern Italy."], "Albanian": ["An Indo-European language spoken primarily in Albania, Kosovo, Greece, Serbia, Montenegro, and the Republic of Macedonia.", "A person of Albanian nationality.", "Of or relating to Albania, Albanians, or the Albanian language."], "Russian": ["A woman from Russia.", "An East Slavic language spoken mainly in Russia and in the former Soviet republics.", "Of or relating to Russia, Russians, or the Russian language.", "A person of Russian nationality."], "Arabic": ["A Semitic language spoken primarily throughout the Arab world - North Africa and the Middle East - and as the liturgical language of the Islam.", "Of or relating to Saudia Arabia and surrounding Arab states, Arabs, or the Arabic language and alphabet."], "Azerbaijani": ["A Turkic language spoken primarily in Azerbaijan and parts of Iran."], "Azeri": ["A Turkic language spoken primarily in Azerbaijan and parts of Iran."], "Belarusian": ["An East Slavic language spoken mainly in Belarus.", "A person of Belarusian nationality.", "Of, from, or pertaining to Belarus, the Belarusian people or the Belarusian language."], "Belarusan": ["An East Slavic language spoken mainly in Belarus.", "A person of Belarusian nationality."], "Byelorussian": ["An East Slavic language spoken mainly in Belarus.", "A person of Belarusian nationality."], "Belorussian": ["An East Slavic language spoken mainly in Belarus.", "A person of Belarusian nationality."], "Bengali": ["An Indic language spoken mainly in Bangladesh and India.", "A variant of the Eastern Nagari script used for writing several languages of India."], "ladder": ["A frame usually portable, of wood, metal, or rope, for ascent and descent, consisting of two vertical side pieces to which are horizontally fastened cross strips or rounds forming steps."], "verb": ["A word that indicates an action or state; it commonly serves as part of the predicate in a sentence."], "drunk": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol.", "A person who is addicted to drinking alcohol excessively."], "adjective": ["A word that modifies or describes a noun or pronoun."], "Bosnian": ["A South Slavic language spoken by the Bosniaks, in Bosnia and Herzegovina, the region of Sand\u017eak, and elsewhere.", "Of or relating to Bosnia and Herzegovina, Bosnians, Bosniaks, or the Bosnian language.", "A person of Bosnian-Herzegovinian nationality."], "pan": ["A generic kitchen utensil used for cooking food by boiling, frying or other methods.", "To make a sweeping movement."], "Burmese": ["A Sino-Tibetan language spoken mainly in Myanmar."], "saucepan": ["A generic kitchen utensil used for cooking food by boiling, frying or other methods."], "Cantonese": ["One of the major dialect groups or languages of the Chinese language or language family, mainly spoken in parts of southern Mainland China.", "A Chinese language mainly spoken in the south-eastern part of Mainland China."], "Croatian": ["A South Slavic language spoken by the Croats, who mostly live in Croatia, Bosnia and Herzegovina and nearby countries.", "Of or relating to Croatia, Croats."], "Czech": ["A woman of Czech nationality.", "A male person of Czech nationality.", "A West Slavic language spoken mainly in the Czech Republic.", "A person of Czech nationality.", "Of or relating to Czech, Czechs, or the Czech language."], "Danish": ["A North Germanic language, spoken primarily in Denmark.", "Of or relating to Denmark, Danes, or the Danish language.", "A sweet pastry (a speciality of Denmark) popular throughout the industrialized world."], "Esperanto": ["A widely spoken constructed international language, initiated by L. L. Zamenhof."], "verbatim": ["In the exact same words."], "Estonian": ["A Finno-Ugric language spoken primarily in Estonia.", "A person of Estonian nationality.", "Of or relating to Estonia, Estonians, or the Estonian language.", "Member of Estonian ethnicity.", "A female person of Estonian nationality.", "Particularly female member of Estonian ethnicity."], "Finnish": ["A Finno-Ugric language spoken mainly in Finland.", "Of or relating to Finland, Finns or the Finnish language."], "Georgian": ["A South Caucasian language spoken mainly in the Republic of Georgia.", "Of or relating to the period in British history (1714-1830) between the reigns of George I and George V.", "A person from the Georgian period of British history.", "Of or relating to Georgia, the Georgian people, or the Georgian language.", "A person of Georgian nationality."], "Greek": ["An Indo-European language spoken primarily in Greece and Cyprus.", "A native or resident of Greece.", "Of or relating to Greece, the Greek people, or the Greek language."], "Hebrew": ["A Semitic language spoken mainly by Jewish communities in Israel and around the world.", "A follower of Judaism."], "rollercoaster": ["An amusement ride consisting of a buggy on a track that rises and falls and twists and turns."], "Hindi": ["An Indic language spoken mainly in Northern and Central India."], "Hungarian": ["A Finno-Ugric language spoken primarily in Hungary.", "A person of Hungarian nationality.", "Of or relating to Hungary, Hungarians, or the Hungarian language.", "An ethnic group primarily associated with Hungary."], "Flanders": ["A geographical region in the north of Belgium.", "The social, political and cultural community of the Flemings, which includes the people of French Flanders, Zeeuws-Vlaanderen and other groups of Flemish people around the world.", "The two Belgian provinces of West Flanders and East Flanders, usually viewed as a historically united County of Flanders.", "That one of the three communities established by the Belgian constitution that corresponds with the Flemish region."], "baste": ["To use needle and thread to temporarily and loosely join sections of fabric or cloth together, in order that they remain in place when fully and finally sewn together.", "To pour liquid such as fat or juice that have collected in the roasting tin back over the meat."], "Flemish region": ["A geographical region in the north of Belgium."], "Flemish Community": ["The social, political and cultural community of the Flemings, which includes the people of French Flanders, Zeeuws-Vlaanderen and other groups of Flemish people around the world.", "That one of the three communities established by the Belgian constitution that corresponds with the Flemish region."], "box": ["A generic manmade object with space in it (commonly made of cardboard or wood) that is used to keep and store many various different objects.", "A private area in a theater or grandstand where a small group can watch the performance.", "A predicament from which a skillful or graceful escape is impossible.", "To engage in a boxing match.", "To put into a box."], "exact": ["Without diversion from the desired or agreed specification; neither exceeding nor failling short in any way.", "Exactly right.", "To call for, demand, or require."], "circle": ["A two-dimensional, geometric shape that is made up of every point on a plane which is equidistant from the centre. May be drawn with a pair of compasses.", "Group of persons who have common ideas, interests or occupations.", "To move in circles."], "invent": ["To use the intellect to plan or design something.", "To make up something artificial or untrue."], "miss": ["An unmarried woman.", "A failure to hit.", "To need a number or amount of something, but not having enough or any at all.", "To feel regret or sadness because of the absence of a person.", "To fail to hit (a target, a bell, etc.)."], "sugar": ["A sweet crystalline or powdered substance, white when pure, consisting of sucrose obtained mainly from sugar cane and sugar beets and used in many foods, drinks, and medicines to improve their taste.", "Any of a series of carbohydrates that are used by organisms to store energy.", "To make something unpleasant seem less so.", "To sweeten with sugar."], "search": ["To attempt to find something or someone, within a specific region or area.", "To try to find something.", "To attempt to locate particular information on the Internet, usually with the aid of a Search Engine.", "To subject to a search."], "seek": ["To try to find something."], "plastered": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "week": ["A period of seven days."], "drunkard": ["A person who is addicted to drinking alcohol excessively."], "fold": ["To bend or lay a thin material (such as paper) over so that it comes in contact with itself.", "A angular or rounded shape in a thin material (such as paper) where the material abruptly changes direction, typically back toward itself.", "A group of people who adhere to a common faith and habitually attend a given church.", "To cease to operate or cause to cease operating (e.g. a business or a shop)."], "winter": ["Traditionally, the fourth of the seasons, marked by the applicable hemisphere of the planet being at its minimum angle of exposure to the Sun, resulting in short days, long nights and typically in low temperatures.", "To spend the winter (in a particular place).", "To store something to protect it during the winter."], "key": ["An object designed to be able to open (and usually close) a lock.", "Any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music."], "introduce": ["To make something known by a formal announcement.", "To cause someone to be acquainted with someone else.", "To bring something into practice."], "article": ["A word, a type of determiner, that specifies or limits the following noun.", "A coherent collection of words and sentences, possibly containing opinion, in a newspaper, magazine, or journal."], "comb": ["A toothed implement for grooming the hair.", "A tuft of fur present on the head of certain birds.", "A fleshy growth on the top of the head of some birds.", "To groom the hair with a comb or a similar object."], "gentleman": ["A polite term referring to a man.", "A man of refinement or of higher class."], "rule": ["A specification of behavior used as an authoritative guide for conduct.", "To specify behavior as an authoritative guide for conduct.", "To exercise power or authority over a person, a group of persons, animals, territories or an organization.", "To emerge; to be visible or larger in number, quantity, power, status or importance.", "A plan of action intended to solve a problem.", "To decide with authority."], "regulate": ["To specify behavior as an authoritative guide for conduct.", "To dictate policy."], "guideline": ["A specification of behavior used as an authoritative guide for conduct."], "seat": ["Furniture (usually made of wood, metal or plastic) with a horizontal section that people are able or intended to sit upon.", "The horizontal section of a chair or other piece of furniture that is intended for people to sit upon.", "The section of a piece of clothing with separate spaces for legs (such as trousers or underwear) that covers the bottom of the person wearing it.", "To provide places or objects that people can sit on.", "The posture of a person riding a horse.", "An administrative or educational centre.", "The position of a political representative in the parliament or in the Senate.", "The fleshy part of the human body that one sits on.", "A backless seat for the rider of vehicles such as a bicycle, motorcycle, etc.", "A space reserved for sitting (as in a theater or on a train or airplane)."], "chair": ["An item of furniture comprising a seat, legs, back, and sometimes arm rests, on which or in which one people can sit.", "The presiding officer of a meeting, organization, committee, or other deliberative body."], "keep": ["The uninhabited main tower of a medieval castle which served as defense and status symbol.", "To retain possession of something.", "To maintain an action, state or condition without interruption.", "Highest and most fortified tower of a castle.", "Mantener algo encerrado de manera de impedir que se aleje.", "To remain in a certain state, position, or condition.", "To keep from happening or arising; make impossible.", "To conform one's action or practice to."], "force": ["The ability to cause significant change.", "In physics, a vector quantity that causes a body with mass to change its velocity.", "To impose urgently, importunately, or inexorably.", "To exert violence, or constraint upon or against a person in order to obtain something by physical, moral or intellectual means.", "To cause to move along the ground by pulling.", "An organised group of people that exerts power in order to maintain or take control over other people; such as a military force or a police force.", "A group of people organised to work on a common project, as a task force or a work force.", "To impose urgently, importunately, or inexorably.", "To do forcibly; to exert force on something."], "without": ["Not having, containing, characteristic of, etc.", "not being the case [negation of an adverbial clause]"], "welcome": ["A greeting used when someone arrives.", "To salute with kindness, as a newcomer; to bid welcome to; to greet upon arrival.", "To accept gladly.", "Giving pleasure or satisfaction or received with pleasure or freely granted.", "To receive someone, as into one's house."], "tonight": ["The nighttime pertaining to the current day or date.", "During the current day's nighttime."], "dangerous": ["Full of danger.", "Causing fear or anxiety by threatening great harm."], "risky": ["Full of danger."], "hazardous": ["Full of danger."], "perilous": ["Full of danger."], "activity": ["The state or quality of being active."], "chocolate": ["A rich foodstuff (made from cocoa, sugar and cocoa butter) that can be eaten on its own or made into other desserts.", "A small piece of chocolate, often as confectionery.", "Made of chocolate.", "Having the color of chocolate."], "lesson": ["A relatively short period of learning or teaching."], "length": ["The unit of measurement indicating the longest side of an object.", "The measurement of distance along the longest dimension of an object."], "potato": ["A tuberous plant, Solanum tuberosum, often eaten as a starchy vegetable, particularly in the Americas and Europe."], "something": ["An unspecified object."], "watch": ["A portable or wearable timepiece worn connected to a band around the wrist.", "To have one's eyes, one's attention on something or someone.", "To be vigilant, be on the lookout or be careful.", "To see or watch.", "To look attentively."], "body": ["The physical structure of a human or animal.", "A distinguishable object with set properties (in terms of classical physics), such as mass and (rotational) velocity.", "The physical structure of a dead animal or person.", "A colleection of persons that were assigend a specific task, most often for a predetermined time, or to be completed within a given time frame, that is to find or determine something, make decisions, or steer towards a settlement that other are looking for and/or are going to use."], "ruler": ["A flat, rectangular measuring or drawing instrument with on it graduations in units of measurement.", "One who leads and makes rules for a nation."], "complete": ["With everything included.", "To bring something to fulfilment.", "To finish; to make done; to reach the end."], "entire": ["With everything included.", "The totality of."], "total": ["With everything included."], "hammer": ["A tool with a heavy head and a handle used for pounding.", "A bone in the middle ear, in between the eardrum and the anvil.", "The part of a firearm that hits the back of the bullet and sets it off, firing the gun.", "To strike repeatedly with a hammer or some other implement.", "To create and mold by hammering."], "exercise": ["Any activity designed to develop or hone a skill or ability.", "Repetition of an activity to improve skill.", "To perform an activity designed to develop or hone a skill or ability; to learn by repetition.", "To do physical exercise to improve one's fitness.", "To do physical exercise.", "To carry out or practice; as of jobs and professions.", "To put to use (e.g. power or influence)."], "shoulder": ["One side of the top of the torso, where an arm attaches or joins.", "A part of a road used to stop on in emergencies."], "pike": ["Any carnivorous freshwater fish of the genus Esox.", "a long, stabbing weapon for thrusting or throwing, consisting of a wooden shaft to which a sharp-pointed head, as of iron or steel, is attached."], "Aalborg": ["Town in the West of Northern Jylland in Denmark."], "nine": ["The ninth natural number (9).", "The cardinal number occurring after eight and before ten, represented in Roman numerals as IX, in Arabic numerals as 9.", "The digit \"9\"."], "oil": ["Fat in a liquid form.", "To smear or soak with oil, as if by rubbing."], "Aabenraa": ["Town at the East Coast of Southern Jylland in Denmark"], "under": ["Lower in spatial position than."], "below": ["Lower in spatial position than."], "underneath": ["Lower in spatial position than."], "taxi": ["A vehicle that may be hired for single journeys by members of the public and driven by a taxi driver.", "To travel slowly (e.g. of airplane).", "To ride in a taxicab."], "expensive": ["Having a high price, cost.", "Being high in price, having high charges."], "remind": ["To bring to the remembrance of.", "To aid the memory or help somebody call something to memory."], "Icelandic": ["A North Germanic language spoken mainly in Iceland.", "Of or relating to Iceland, Iclanders, or the Icelandic language."], "Indonesian": ["An Austronesian language spoken mainly in Indonesia and East Timor.", "Originating from Indonesia."], "Rome": ["The capital of Italy.", "Largest city in Floyd County, Georgia, United States.", "A province in the Lazio region of Italy."], "Naples": ["Capital of the region Campania in the South of Italy.", "A province in the Campania region of Italy."], "Irish": ["A Celtic language spoken primarily in Ireland.", "Of or relating to Ireland, the Irish people, or the Irish language.", "A person of Irish nationality."], "Moscow": ["The capital and largest city of Russia.", "A federal subject of Russia (an oblast) officially established on January 14, 1929. It is the second most populous Russian federal subject after the city of Moscow."], "Arb\u00ebresh\u00eb Albanian": ["A dying Albanian dialect or language spoken by the Arb\u00ebresh\u00eb people, a minority in the south of Italy and Sicily."], "Arb\u00ebresh": ["A dying Albanian dialect or language spoken by the Arb\u00ebresh\u00eb people, a minority in the south of Italy and Sicily."], "Arb\u00ebrishte": ["A dying Albanian dialect or language spoken by the Arb\u00ebresh\u00eb people, a minority in the south of Italy and Sicily."], "Arb\u00ebrisht": ["A dying Albanian dialect or language spoken by the Arb\u00ebresh\u00eb people, a minority in the south of Italy and Sicily."], "Arb\u00ebresh\u00eb": ["A dying Albanian dialect or language spoken by the Arb\u00ebresh\u00eb people, a minority in the south of Italy and Sicily."], "Afar": ["An Afro-Asiatic language spoken mainly in Ethiopia, Eritrea and Djibouti.", "An ethnic group who reside principally in the Danakil Desert in the Afar Region of Ethiopia and in Eritrea and Djibouti."], "Arvanitic": ["An Albanian dialect or language spoken by the Arvanites, a population group in Greece."], "Arvanitika": ["An Albanian dialect or language spoken by the Arvanites, a population group in Greece."], "Luino": ["A small town in the province of Varese, Lombardy, northern Italy, near the border with Switzerland on the eastern shore of Lake Maggiore."], "Abkhaz": ["A North Caucasian language spoken mainly in Abkhazia.", "Of or pertaining to Abakhazia, the Abkhaz people, or the Abkhaz language.", "A Caucasian people, mainly living in Abkhazia."], "Abkhazian": ["A North Caucasian language spoken mainly in Abkhazia.", "Of or pertaining to Abakhazia, the Abkhaz people, or the Abkhaz language."], "Ainu": ["A language spoken by the Ainu ethnic group on the northern Japanese island of Hokkaido.", "An ethnic group native to Hokkaido, northern Honshu, Sakhalin and the Kuril Islands. An ethnic minority in Japan. Today, about 27.000 Japanese citizens define themselves as Ainu.", "A member of the Ainu ethnic group.", "A language of China."], "Akan": ["A language family of West-African languages.", "A language within the Akan language family, spoken mainly in Ghana."], "celebrity": ["A noteworthy or popular person, often a performer or athlete.", "The state or quality of having a positive reputation."], "Gheg": ["An Albanian language, spoken mainly in the northern parts of Albania and the surrounding regions."], "Geg": ["An Albanian language, spoken mainly in the northern parts of Albania and the surrounding regions."], "Gheg Albanian": ["An Albanian language, spoken mainly in the northern parts of Albania and the surrounding regions."], "Japanese": ["A language spoken mainly in Japan.", "Originating from Japan.", "A person from Japan, or of Japanese ancestry.", "Of or relating to Japan."], "Kazakh": ["A Turkic language spoken mainly in Kazakhstan.", "Of or relating to Kazakhstan, Kazakhs, or the Kazakh language.", "A person of Kazakh nationality."], "Korean": ["A language spoken mainly in North and South Korea.", "A person from Korea, or of Korean ancestry", "Of or relating to Corea, Coreans or the Corean language."], "rotate": ["To position by moving an object around its axis."], "spin": ["To position by moving an object around its axis.", "To make (yarn) by drawing out, twisting, and winding natural fibers."], "flip": ["To position by moving an object around its axis."], "orgasm": ["To reach a sexual climax; to experience orgasm.", "The moment of most intense feeling and pleasure during sexual activity."], "Kurdish": ["A group of Indo-Iranian languages spoken by the Kurds, who live mainly in Iraq, Turkey, Syria, Lebanon and Iran."], "Latin": ["An Indo-European language originally spoken only in the region immediately surrounding the city of Rome, later throughout the Roman Empire, and as a result of the Roman legacy, by the Catholic and academic world in the Middle Ages and afterwards.", "An alphabetic writing system with 26 letters used with some modifications, in most of the languages of the European Union, America, Subsaharian Africa and the Islands of the Pacific Ocean.", "Of or relating to the script of the language spoken in ancient Rome and many modern alphabets.", "Of or relating to the language spoken in ancient Rome.", "Of or from Latin America or of Latin American culture.", "Of or relating to ancient Rome or its Empire.", "Of or pertaining to peoples who use languages derived from Latin."], "Latvian": ["A Baltic language spoken primarily in Latvia.", "A person of Latvian nationality.", "Of or relating to Latvia, Latvians, or the Latvian language."], "Lithuanian": ["A Baltic language spoken mainly in Lithuania.", "A person of Lithuanian nationality.", "Of or relating to Lithuania, Lithuanians, or the Lithuanian language."], "Macedonian": ["A South Slavic language spoken primarily in the Republic of Macedonia and the surrounding regions.", "A person of Macedonian nationality.", "Of or relating to Macedonia, Macedonians, or the Macedonian language.", "A dialect of the modern Greek language.", "The southwestern dialects of the Bulgarian language."], "Maltese": ["A Semitic language spoken mainly on Malta."], "home": ["A group of persons sharing a home or living space, who aggregate and share their incomes, as evidenced by the fact that they regularly take meals together.", "The abode of a human being, their place of residence.", "One\u2019s own dwelling place; the house or structure in which one lives; especially the house in which one lives with his family.", "To the own house or to the own domicile.", "An environment offering affection and security.", "Area where you are and feel at home and in which you are comfortable; usually, but not neccesssarily, the area in which you grow up.", "The place where something began and flourished.", "Relating to or being where one lives or where one's roots are."], "rat": ["Any of numerous small rodents of the genera ''rattus'', ''mus'', or various other related genera of the ''Murid\u00e6'' family characterised by a long hairless tail, rounded ears, and a pointed nose.", "A nearly omnivorous rodent of the genus ''rattus'' characterised by a long hairless tail, rounded ears, and a pointed nose."], "Mongolian": ["The best-known language in the family of Mongolic languages, primarily spoken in Mongolia.", "The primary language of most of the residents of Mongolia.", "The official language of Mongolia, also spoken in Russia.", "A person who originated from or is a citizen of Mongolia."], "Nepali": ["An Indic language spoken in Nepal, Bhutan, and some parts of India and Myanmar."], "mouse": ["Any of numerous small rodents of the genera ''rattus'', ''mus'', or various other related genera of the ''Murid\u00e6'' family characterised by a long hairless tail, rounded ears, and a pointed nose.", "A computer input device which when moved over a flat surface moves a cursor in the X and Y axes of a GUI and has one or more buttons for clicking on GUI elements such as buttons.", "Any of numerous small rodents of the genus ''mus'' or various related genera of the ''Murid\u00e6'' family characterised by a long hairless tail, rounded ears, and a pointed nose."], "Norwegian": ["A North Germanic language spoken in Norway.", "A person from Norway.", "Of or relating to Norway, Norwegians, or the Norwegian language."], "Persian": ["An Indo-European language spoken mainly in Iran.", "Of or relating to Iran, Iranians, or the Persian language.", "A person of Iranian nationality or of Iranian descent.", "A thing, animal or person that is associated with Persia, its habits, culture, territory, language, etc."], "Polish": ["A West Slavic language spoken primarily in Poland.", "Of or relating to Poland, Poles, or the Polish language."], "Romanian": ["A Romance language spoken mainly in Romania, Moldova, and Vojvodina.", "A citizen of Romania or someone who is of Romanian origin.", "Of or relating to Romania, Romanians or the Romanian language."], "Serbian": ["A South Slavic language spoken mainly in Serbia, Montenegro, Bosnia and Herzegovina and by Serbs everywhere.", "Of or relating to Serbia, Serbs, or the Serbian language."], "condition": ["A logical state that a conditional statement uses. It can either be true or false.", "Position or status with regard to conditions and circumstances.", "The condition in which someone or something is in.", "Something that is stated as a condition for an agreement.", "The state of any object, referring to the amount of its wear.", "The health status of a medical patient.", "To subject to different conditions, especially as an exercise.", "To undergo the process of acclimation.", "To shape the behaviour of someone to do something.", "To develop behaviour by instruction and practice."], "die": ["To cease to live.", "An object with many (usually 6) faces, each with a different value, that is used in many games to randomly select a number."], "happy": ["Having a feeling of satisfaction, enjoyment or well-being, often arising from a positive situation or set of circumstances.", "In a state of satisfaction."], "grandmother": ["The mother of one of someone's parents."], "juice": ["The liquid that is produced by squeezing or crushing fruits or vegetables.", "To obtain the liquid from fruit or other plants by crushing or squeezing.", "The juice obtained by squeezing, crushing or centrifuging fruit.", "The liquid part or moisture of an animal body or substance."], "Slovak": ["A woman of Slovak nationality.", "A male person of Slovak nationality.", "A West Slavic language spoken primarily in Slovakia.", "Of or relating to Slovakia, Slovaks, or the Slovak language.", "A person of Slovak nationality."], "jelly": ["A sweet, gelatinous substance (made from fruit juice, sugar and pectin) that is commonly spread on bread and toast.", "A sweet, gelatinous dessert (made from fruit juice, sugar and gelatin) that is popular with children."], "coach": ["A large, long-bodied motor vehicle equipped with seating for passengers, usually operating as part of a scheduled service.", "Someone who trains athletes.", "The lowest and cheapest class of accommodation on a public transport.", "To act as a trainer or coach (to), as in sports."], "Slovenian": ["A South Slavic language mainly spoken in Slovenia.", "A person of Slovenian nationality.", "Of or relating to Slovenia, Slovenians, or the Slovenian language."], "Basque": ["A language spoken mainly in the Basque Country.", "Of or pertaining to the Basque Country, the Basque people.", "Of the Basque language."], "goat": ["A common four-legged animal (Capra) that is related to sheep and bred by humans for its coat and milk.", "A female of a common four-legged animal (Capra) that is related to sheep and bred by humans for its coat and milk."], "chopstick": ["A utensil in the form of a narrow stick used in pairs in China, Japan, Korea, and Vietnam to eat food."], "saliva": ["A secretion from the salivary glands (found in the mouth) that can be spat out."], "g'day": ["An informal greeting used by Australians."], "story": ["A coherent collection of words and sentences, possibly containing opinion, in a newspaper, magazine, or journal.", "A retelling of real or fictive events.", "A television serial about the lives of melodramatic characters, which are often filled with strong emotions, highly dramatic situations and suspense."], "report": ["A coherent collection of words and sentences, possibly containing opinion, in a newspaper, magazine, or journal.", "To give an account or representation in words.", "To communicate to someone else something that we know."], "sperm": ["Men's semen."], "ejaculate": ["To ejaculate semen."], "spoof": ["Men's semen."], "cum": ["Men's semen."], "sprog": ["Men's semen."], "jism": ["Men's semen."], "jizz": ["Men's semen."], "spunk": ["Men's semen."], "flies": ["The zipper or set of buttons at the front of a pair of trousers."], "baguette": ["A type of elongated french bread with a hard, crispy crust."], "wand": ["A magical stick used in the casting of spells."], "the": ["The feminine definite article.", "Nominative singular masculine of the definite article.", "Nominative singular neuter of the definite article.", "The feminine plural definite article.", "The male singular definite article.", "The male plural definite article.", "Feminine definite article nominative singular", "Definite article nominative plural", "Feminine definite article accusative singular", "Definite article accusative plural", "Accusative singular neuter of the definite article.", "The definite article.", "The feminine singular definite article.", "The masculine singular definite article.", "The masculine plural definite article."], "dice": ["An object with many (usually 6) faces, each with a different value, that is used in many games to randomly select a number."], "expire": ["To cease to live.", "To lose validity, to cease to exist."], "pass away": ["To cease to live."], "granny": ["The mother of one of someone's parents."], "grandma": ["The mother of one of someone's parents."], "restroom": ["A room containing a bath or shower and usually a washbasin and toilet"], "loma": ["A natural elevation of the land surface, usually rounded."], "colina": ["A natural elevation of the land surface, usually rounded."], "Swedish": ["A North Germanic language spoken primarily in Sweden and parts of Finland.", "Of or relating to Sweden, Swedes, or the Swedish language."], "goatee": ["A beard trimmed to grow only at the center of the chin."], "buck-goat": ["A male goat."], "billy-goat": ["A male goat."], "Slovene": ["A South Slavic language mainly spoken in Slovenia.", "A person of Slovenian nationality."], "glider": ["An aircraft with fixed wings, but no engine."], "Zulu": ["A Niger-Congo language spoken primarily by the Zulu people in southern Africa.", "The largest South African ethnic group of an estimated 10-11 million people who live mainly in the province of KwaZulu-Natal, South Africa."], "receptacle": ["A generic item with the main purpose of containing or holding a substance or other object.", "The section of the plant's stem or stalk to which the flower is attached.", "A wall-mounted power socket."], "torus": ["The section of the plant's stem or stalk to which the flower is attached."], "compass": ["A magnetic or electronic device used to determine the cardinal directions (usually magnetic north).", "A technical drawing instrument that can be used for inscribing circles or arcs.", "Navigational instrument that indicates the cardinal directions on the Earth.", "To get the meaning of something.", "The limit of capability."], "Yiddish": ["A Germanic language spoken by three to four million people throughout the world, predominantly Ashkenazi Jews."], "Xhosa": ["A Niger-Congo language spoken predominantly in South Africa.", "A group of peoples of Bantu origins living in South Africa."], "Welsh": ["A Celtic language spoken natively in Wales."], "Vietnamese": ["An Austro-Asiatic language spoken primarily in Vietnam.", "Of or relating to Vietnam, the Vietnamese people, or the Vietnamese language.", "A person of Vietnamese nationality."], "Urdu": ["An Indic language spoken mainly in India and Pakistan."], "Ukrainian": ["An East Slavic language spoken mainly in Ukraine.", "A person of Ukrainian nationality.", "Of or relating to Ukraine, Ukrainians, or the Ukrainian language."], "Turkish": ["A Turkic language spoken primarily in Turkey, Cyprus, and other countries of the former Ottoman Empire.", "Of or relating to Turkey, Turks, or the Turkish language."], "Turkic": ["A language family spoken across an area from Eastern Europe to Siberia and Western China, separated into Common Turkic and Bolgar Turkic, traditionally considered to be part of the Altaic language family.", "ISO 639-6 entity"], "Tamil": ["A Dravidian language spoken predominantly by Tamils in India, Sri Lanka, Malaysia and Singapore.", "A person of the Tamil population group.", "A Vatteluttu script that is used to write the Tamil language."], "Swahili": ["A group of two languages widely spoken in East Africa.", "One of two languages that is spoken a lot in East Africa."], "Sorbian": ["A group of West Slavic languages spoken in Lusatia."], "king": ["A male member of a Royal Family and supreme ruler of his nation.", "The principal playing piece in chess, which moves only one square per move (except in castling) and in all eight directions. When one's king is in \"checkmate\", the game is won by the opposing player.", "A playing card with a picture of a king on its face; the 13th card in a given suit."], "chin": ["A rabbit-sized, crepuscular rodents native to the Andes mountains in South America.", "The bottom of the face, below the mouth."], "rooster": ["A male chicken (Gallus gallus domesticus), a domestic bird."], "shape": ["The appearance of something, especially its outline.", "External aspect or form of something.", "To create something, usually for a specific function."], "reflect": ["To actively and consciously use one's mental powers, usually to form ideas.", "To give evidence of the quality of.", "To return a smooth, shiny surface, the image of a body."], "hen": ["A female chicken."], "ten": ["The cardinal number occurring after nine and before eleven, represented in Roman numerals as X, in Arabic numerals as 10, and in the hexadecimal system (base 16) as A.", "The tenth natural number (10)"], "K\u00f6lsch": ["Local language being used in the city of Cologne in Germany and close about.", "A type of beer brewed exclusively in the German city of Cologne and the surrounding area.", "Of, or pertaining to, the city of Cologne in western Germany in Europe."], "famous": ["Well or widely known."], "foreign": ["From a different country.", "Not belonging to that in which it is contained; introduced from an outside source."], "consider": ["To reckon as being possible in the future.", "To have as an opinion.", "To think about seriously.", "To have an opinion on something or someone."], "stupid": ["Lacking in intelligence.", "Marked by lack of intellectual acuity or somewhat mentally limited."], "run": ["To move quickly by alternately making a short jump off of either foot.", "To perform an action, as in executing a program or a command.", "To develop in a direction.", "To flee; to take to one's heels; to cut and run.", "To direct or control (e.g. projects, businesses, etc.).", "To move along, of liquids.", "To compete in a race."], "believe": ["To have as opinion, belief, or idea.", "To be confident about something.", "To give something for certain although unproven by science; to have faith.", "To consider what someone is telling as being the truth; to accept as or take to be true."], "contemplate": ["To actively and consciously use one's mental powers, usually to form ideas.", "To reckon as being possible in the future.", "To think intently and at length, as for spiritual purposes.", "To look at thoughtfully; to observe deep in thought."], "seem": ["To have a given outward appearance."], "appear": ["To have a given outward appearance.", "To come into sight or view."], "sock": ["A knitted or woven covering for the foot, reaching no higher than just above the ankle."], "forget": ["To lose memory of something."], "wine": ["An alcoholic beverage made by fermenting juice of grapes."], "team": ["A group of people involved in the same activity.", "Set of things or people between which exists cohesion or agreement.", "Two or more draft animals that work together to pull something."], "wire": ["Metal formed into a thin, even thread, now usually by being passed between grooved rollers, or drawn through holes in a plate of steel.", "To send a message by telegraph."], "meal": ["Food that is prepared and eaten, usually at a specific time.", "Ground or milled grain or cereal."], "knock": ["To make a sound by striking one's knuckles against something.", "To knock, especially a door, in order to ask for someone to open it, and, thus, to be able to go inside.", "To express negative criticism.", "To deliver a sharp blow or push.", "A vigorous blow.", "The sound of knocking (as on a door or in an engine or bearing)."], "someone": ["An unspecified person.", "A human being."], "somebody": ["An unspecified person.", "A human being."], "forgive": ["To stop blaming someone for an offense."], "excuse": ["To stop blaming someone for an offense."], "pardon": ["To stop blaming someone for an offense.", "An interjection that indicates that a person doesn't understand and invites the other person to repeat it.", "A warrant granting release from punishment for an offence."], "large": ["Of a great size; the weakest sense of great size.", "(for abstract matters) of larger than normal size.", "More than enough in size or scope or capacity."], "last": ["After all the others.", "To endure, continue over time.", "Most recent."], "some one": ["An unspecified person."], "little": ["Small quantity."], "ultimate": ["After all the others."], "datum": ["A piece of information."], "info": ["All facts, ideas or imaginative works of the mind which have been communicated, published or distributed formally or informally in any format, or the knowledge that is communicated or received."], "central": ["Being in the centre."], "comfortable": ["Providing comfort."], "agreeable": ["Providing comfort."], "bowl": ["A roughly hemispherical container used to hold, mix or present food, such as salad, fruit or soup, or other items.", "To engage in the sport of bowling.", "A large structure for open-air sports or entertainments."], "comfy": ["Providing comfort."], "hemispherical": ["Of or relating to or being half of a sphere."], "branch": ["A separation of a river, a road, etcetera.", "A woody part of a tree arising from the trunk and usually dividing.", "A part of an object (usually rigid and relatively long) that extends from the centre or main section.", "A division of some larger or more complex organization.", "To divide into two or more branches so as to form a fork, starting from a common point."], "fun": ["A source of amusement, enjoyment or pleasure."], "hungry": ["Desirous of food; having a physical need for food."], "example": ["Something that is representative of all such things in a group; an occurrence of something.", "An item of information that is representative of a type or class.", "A typical example or instance."], "fever": ["A higher than normal temperature of a person (or generally a mammal)."], "nature": ["The set of all natural systems, including the air, land, water, and living things other than humans.", "Everything not created by man."], "sudden": ["Happening quickly and with little or no warning."], "sword": ["A long-bladed weapon that has a handle (and sometimes a hilt) and is designed to stab, cut or slash."], "usual": ["Which most commonly occurs.", "According to or depending on custom."], "corpus": ["A collection of writings."], "understand": ["To be aware of the meaning of.", "To get the meaning of something.", "To believe, based on information.", "To impute meaning, character etc. that is not explicitly stated."], "surroundings": ["The complex of physical, chemical, and biotic factors that surround and act upon a specific organism or upon a specific group of organisms.", "The area or region around something; that which surrounds; the vicinity."], "free": ["Obtainable without payment.", "Able to act without restriction.", "To give freedom; to release from confinement or restraint.", "Completely wanting or lacking.", "To relieve from.", "To grant relief or an exemption from a rule or requirement to.", "To free from obligations or duties.", "Not taken up by previously scheduled activities.", "Unconstrained, not chemically bound or capable of unrestricted motion."], "spring": ["A place where ground water flows naturally from a rock or the soil onto the land surface or into a body of surface water.", "Traditionally the first of the four seasons, the season of growth with an ever increasing amount of daytime.", "A mechanical device made of flexible material that exerts force when it is bent.", "A place where water emerges from the ground.", "To spring away from an impact."], "veer": ["To change direction of movement."], "niche": ["The relational position of a species or population in an ecosystem."], "indicator species": ["A species that provides unique an environmental indicator that offer a signal of the biological condition in an ecosystem."], "hypoxia": ["A phenomenon that occurs in aquatic environments as dissolved oxygen becomes reduced in concentration to a point detrimental to aquatic organisms living in the system.", "The reduction of oxygen in tissues below levels which are considered to be normal."], "credit card": ["A plastic card, with a magnetic strip or an embedded microchip, connected to a credit account and used to buy goods or services."], "dead zone": ["Hypoxic (low-oxygen) area in the world's oceans."], "basket": ["A lightweight container, generally round, open at the top, and tapering toward the bottom.", "A preassembled group of securities. Baskets allow individual investors to acquire a group of securities with a single trade while paying one commission."], "dream": ["Imaginary events seen in the mind while sleeping.", "An event imagined in the mind and which is hoped to be realised.", "To experience while sleeping.", "To have a daydream; to indulge in a fantasy."], "event": ["An occurrence of social or personal importance.", "Something that happens or has happened.", "Condition that which follows something on which it depends."], "front": ["The side or end of something that faces the direction it normally moves; the side of an object which usually faces the viewer.", "The line of contact of two opposing forces.", "The line of contact of air masses of different temperatures due varying density.", "To be oriented in a certain direction; to be opposite to."], "sneaker": ["An athletic shoe with a soft, rubber sole.", "One who sneaks."], "basketball": ["A sport in which two opposing teams of five players strive to throw a ball through a hoop."], "private": ["Not done in the view of or with the possibility of disturbance by others.", "The lowest rank of the army."], "soldier": ["The lowest rank of the army.", "A person who is actively engaged in battle, conflict or warfare."], "card": ["A flat, normally rectangular piece of stiff paper, plastic etc.", "An amusing person.", "A device to raise the nap on a fabric.", "A machine for disentagling the fibres of wool prior to spinning.", "A tabular presentation of the key statistics of an innings or match: batsmen's scores and how they were dismissed, extras, total score and bowling figures.", "To check IDs at a venue with a minimum age requirement to determine whether he or she is old enough to consume liquor.", "(Fabric) To use a card device or machine to separate the fibers of a fabric.", "A printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities.", "Each one of the pieces in the playing deck used in social games such as Gin Rummy or Poker."], "substance": ["A piece of physical matter or material.", "The choicest, most essential or most vital part."], "substantie": ["A piece of physical matter or material."], "sometimes": ["On certain occasions, or in certain circumstances, but not always."], "surprise": ["Something unexpected.", "The feeling that something unexpected has happened.", "To cause someone to feel surprise.", "To discover unexpectedly."], "twice": ["Two times."], "soup": ["A cooked, liquid dish (made from meat or vegetables that are mixed with broth in a pot) that is often sold in tins."], "prevent": ["To avoid the occurrence of an event; to stop from doing something or being in a certain state.", "To keep from happening or arising; make impossible."], "female": ["An adult human member of the sex that produces ova and bears young.", "A member of the sex which is generally characterized as the one associated with the larger gametes (for species which have two sexes and for which this distinction can be made).", "Of, relating to, or denoting the sex which is generally characterized as the one associated with the larger gametes (for species which have two sexes and for which this distinction can be made).", "The sex which is generally characterized as the one associated with the larger gametes (for species which have two sexes and for which this distinction can be made).", "Having an internal socket, as in a connector or pipe fitting.", "The female grammatical gender of words."], "male": ["A member of the sex that begets young by fertilizing ova.", "Of, relating to, or denoting a member of the sex that begets young by fertilizing ova.", "An adult human member of the sex that begets young by fertilizing ova.", "The sex, the members of which beget young by fertilizing ova.", "(of a plug) Having pins that can be inserted into a matching socket to make an electrical connection."], "blue": ["The pure color of a clear sky; the primary color between green and violet in the visible spectrum, an effect of light with a wavelength between 450 and 500 nm.", "Low in spirits.", "Having the pure color of a clear sky; the primary color between green and violet in the visible spectrum, an effect of light with a wavelength between 450 and 500 nm.", "Making despondent or depressive."], "together": ["At the same time.", "In contact with each other or in proximity.", "With cooperation and interchange.", "Assembled in one place.", "Mentally and emotionally stable.", "With a common plan."], "yolk": ["The yellow, spherical part of an egg that is surrounded by the white albumen, and serves as nutriment for the growing young."], "start": ["The beginning of an activity or event.", "To begin an activity.", "To take the first step or steps in carrying out an action.", "To have a beginning, in a temporal, spatial, or evaluative sense.", "To set in motion, cause to start.", "To initiate the engine of a vehicle."], "similar": ["Having some particular qualities or characteristics in common, but not all of them."], "alike": ["Having some particular qualities or characteristics in common, but not all of them.", "In the same manner."], "tennis": ["A sport played by either two or four players with strung raquets, a 2-1/2\" (6.4 centimetres) ball, and a net approximately 3 feet high on a clay, grass, or cement court."], "money": ["An unspecified amount in a currency."], "heat wave": ["A period of unusually hot weather."], "face": ["The front part of the head, featuring the eyes, nose, and mouth and the surrounding area.", "The part of an animal or human that consists of the chin, the mouth and the main sensory organs.", "To deal with (something unpleasant) head on.", "To oppose, as in hostility or a competition.", "To be oriented in a certain direction; to be opposite to.", "To present somebody with something, e.g. to accuse or criticize."], "game": ["Wild animals, including birds and fish, hunted for sport, food or profit.", "An amusement or pastime; diversion.\\n(Source: CED)", "A pursuit or activity with rules performed either alone or with others, for the purpose of entertainment.", "The flesh of wild animals that is consumed as food."], "probably": ["In all likelihood; in a probable manner"], "pretty": ["Pleasant in sight.", "Pleasing or appealing to the senses.", "Pleasant to look at, especially as conforming to ideals of form and proportion."], "army": ["A large, military force concerned mainly with ground operations.", "A large number of people united for some specific purpose."], "about": ["In concern with; engaged in; intent on.", "Outside or on every side of.", "In the immediate neighbourhood of.", "Over or upon different parts of; through or over in various directions; back and forth in.", "[Said for a quantity (time, size, place, ...) that is given] in a imprecise way but close to the real value.", "On the point or verge of.", "[Expression of relation or connection.]", "In possession of.", "Around the outside.", "So as to face in the opposite direction."], "modern": ["Pertaining to the current time and style.", "Belonging to the present time.", "Actual, fashionable, up to date."], "mind": ["To have an unwanted negative influence on someone, to be distractive to or for someone, impress someone or something in a troublesome or uneasy way.", "The ability for rational thought.", "To perceive with the ear (paying attention to what is heard).", "To be in charge of or deal with.", "To be cautious, wary or careful; to be alert to.", "The complex of cognitive faculties, mostly characteristic of human beings, that enables consciousness, thinking, reasoning, perception, and judgement.", "To be offended or bothered by; take offense with.", "To be worried or concerned with or about something or somebody.", "To keep in mind."], "wit": ["The ability for rational thought."], "reason": ["The ability for rational thought.", "To exercise the rational faculty; to deduce inferences from premises; to perform the process of deduction or of induction; to ratiocinate; to reach conclusions by a systematic comparison of facts.", "A fact that logically justifies some premise or conclusion.", "A justification for something existing or happening."], "intellect": ["The ability for rational thought."], "lazy": ["Unwilling to do work or make an effort."], "heaven": ["Outer space visible from the Earth's surface, infinitely extending above us and\\nlimited by the horizon.", "The paradise of the afterlife in certain religions."], "correct": ["Without diversion from the desired or agreed specification; neither exceeding nor failling short in any way.", "That are in accordance with fact.", "To remove errors.", "To adapt something; to alter or regulate so as to achieve accuracy or conform to a standard."], "gun": ["A bullet firing weapon."], "pistol": ["A handgun, typically with a semi-automatic action and a clip magazine."], "gate": ["Total admission receipts at a sports event.", "A computer circuit with several inputs but only one output that can be activated by particular combinations of inputs.", "To supply with a gate.", "A passageway (as in an air terminal) where passengers can embark or disembark.", "To restrict (school boys') movement to the dormitory or campus as a means of punishment.", "To control with a valve or other device that functions like a gate.", "A moveable barrier that can be closed or open to control access to a building, a room, a car, an area, etc."], "structure": ["The whole of the different elements of a company organ.", "Something built up of distinct parts.", "To give structure to."], "restaurant": ["An establishment in which diners are served food at their tables."], "brave": ["Having or displaying courage.", "A male person having or displaying courage.", "A female person having or displaying courage.", "Strong in the face of fear.", "Having or characterized by courage.", "Not being daunted or intimidated."], "cheese": ["A curdled or cultured milk product."], "NGO": ["A non-profit group or association that acts outside of institutionalized political structures and pursues matters of interest to its members by lobbying, persuasion, or direct action."], "same": ["Having some particular qualities or characteristics in common, but not all of them.", "Having a specified quality that another has.", "Bearing full likeness by having precisely the same set of characteristics.", "Not different or other.", "[Used to express the unity of an object or person which has various different descriptions or qualities.]", "[A reply of confirmation of identity.]"], "Franco-Proven\u00e7al": ["Language spoken in France, near the Italian and Swiss borders. Also spoken in Italy and Switzerland."], "Patois": ["Language spoken in France, near the Italian and Swiss borders. Also spoken in Italy and Switzerland."], "Arpitan": ["Language spoken in France, near the Italian and Swiss borders. Also spoken in Italy and Switzerland."], "identical": ["Having some particular qualities or characteristics in common, but not all of them.", "Having a specified quality that another has.", "Bearing full likeness by having precisely the same set of characteristics.", "Not different or other.", "Of twins, sharing the same genetic code.", "Exactly equivalent.", "Approximating or approaching exact equivalence."], "equal": ["Having a specified quality that another has.", "One of the same age, rank, ability etc.", "To be the same in amount, value, size etc.", "To be equal to in quality or ability."], "sell": ["To provide goods or services in exchange for money."], "helicopter": ["An aircraft without wings that obtains its lift from the rotation of overhead blades."], "propellor": ["A mechanical device, with shaped blades that turn on a shaft, to push against air or water, especially one used for propelling an aircraft or boat."], "aileron": ["Hinged part on trailing edge of an airplane wing. Used to rotate the airplane about the longitudinal axis."], "neuron": ["A cell of the nervous system, which conducts nerve impulses; consisting of an axon and several dendrites. Neurons are connected by synapses"], "neurone": ["A cell of the nervous system, which conducts nerve impulses; consisting of an axon and several dendrites. Neurons are connected by synapses"], "nerve cell": ["A cell of the nervous system, which conducts nerve impulses; consisting of an axon and several dendrites. Neurons are connected by synapses"], "neurocyte": ["A cell of the nervous system, which conducts nerve impulses; consisting of an axon and several dendrites. Neurons are connected by synapses"], "Swadesh list": ["A list of basic vocabulary of a given language, developed by the linguist Morris Swadesh."], "fuselage": ["The part of an aerospace vehicle without the wings and stabiliser."], "airfield": ["A place where airplanes can take off and land but unlike an airport must not necessarily have terminals or paved runways."], "tie": ["To connect one or more pieces of flexible material to each other using only those materials.", "A long, thin piece of material that is tied around a person's neck (underneath their collar) to make them look smarter, politer or more successful.", "The result of a game in which neither side has won.", "To establish connection between two or more things.", "To confine by any ligature.", "To form a knot or bow in."], "nerve": ["A bundle of neurons with their connective tissue sheaths, blood vessels, and lymphatics."], "neurite": ["A projection from the soma of a neuron."], "dendrite": ["A branched projection from the soma of a neuron which conducts electrical stimulation received from other cells."], "axon": ["A long, slender projection of a neuron that conducts electrical impulses away from the soma."], "and": ["Used to connect two homogeneous words or phrases.", "Used at the end of a list to indicate the last item.", "Used to join sentences or sentence fragments in chronological order.", "Used to indicate causation."], "as well as": ["Used to connect two homogeneous words or phrases."], "together with": ["Used to connect two homogeneous words or phrases."], "in addition to": ["Used to connect two homogeneous words or phrases."], "are": ["The first-person plural of the present indicative of to be.", "The second-person singular of the present indicative of to be.", "The second-person plural of the present indicative of to be.", "The third-person plural of the present indicative of to be.", "Area measure, 1 square decametre or 1 dam\u00b2 or 100 m\u00b2", "The second-person singular of the present indicative of to be.", "The second-person singular of the present indicative of to be.", "The third-person plural of the present indicative of to be.", "The third-person plural of the present indicative of to be.", "The first-person plural of the present indicative of to be.", "The first-person plural of the present indicative of to be.", "The second-person plural of the present indicative of to be.", "The second-person plural of the present indicative of to be."], "as": ["To the same extent or degree.", "at the intensity or degree that", "At the same time that.", "Varying through time in the same proportion that.", "Considering that.", "[Introducing a basis of comparison, after 'as', 'so', or a comparison of equality.]"], "be": ["To occupy a place.", "To occur, to take place.", "To have existence.", "[Used to form the passive voice. (Indicates that the subject undergoes the action.)]", "[Used to form the subjunctive mode.]", "[Connects a noun to an adjective describing a transient characteristic of it.]", "[Connects a noun to an adjective describing an essential characteristic of it.]", "[Connects an expression, noun, or noun phrase to another expression, noun, or noun phrase describing that their meanings are essentialy the same.]", "To have or occupy a given position or time point.", "[used to indicate a period associated with an activity or process]", "[Used to indicate that the values on either side of an equation are the same.]", "[Used to indicate that the subject has the qualities described by a noun or noun phrase.]", "[Used to form the continuous forms of various tenses.]", "[Used to link a subject to a count or measurement.]", "[(With since) used to indicate passage of time since the occurrence of an event.]", "[(Often impersonal) Used to indicate weather, air quality, or the like.]", "To continue or remain as before.", "To have the age specified.", "To act the part of (a character) in a film or play.", "To constitute a group of (a specified number).", "To have the indicated price."], "but": ["not being the case [negation of an adverbial clause]", "Nothing more than.", "Except (for); excluding.", "[Phrase implying that the following clause is contrary to prior belief]."], "except": ["To exclude; to specify as being an exception."], "cannot": ["Can not; am/is/are unable to."], "can't": ["Can not; am/is/are unable to."], "can": ["A room or building equipped with one or more toilets.", "To be able to.", "To have permission to. Used in granting permission and in questions to make polite requests.", "A more or less cylindrical vessel for liquids, usually of steel or aluminium", "A tin-plate canister, often cylindrical, for preserved foods such as fruit, meat, or fish.", "A ceramic device used for depositing and removing human excrement with water through flushing.", "The fleshy part of the human body that one sits on.", "A small, round-shaped metal container, used for different purposes like storing food or liquids, or collecting money.", "To preserve in a can or tin."], "may": ["To have permission to. Used in granting permission and in questions to make polite requests."], "be able to": ["To be able to.", "To have the ability to do something"], "toilet": ["A room or building equipped with one or more toilets.", "A ceramic device used for depositing and removing human excrement with water through flushing.", "A room equipped with a toilet for urinating and defecating."], "water closet": ["A room or building equipped with one or more toilets.", "A room equipped with a toilet for urinating and defecating."], "lavatory": ["A room or building equipped with one or more toilets.", "A ceramic device used for depositing and removing human excrement with water through flushing.", "A bathroom or lavatory sink that is permanently installed and connected to a water supply and drainpipe."], "ye": ["The person addressed."], "yer": ["The person addressed."], "yous": ["The group of persons addressed."], "y'all": ["The group of persons addressed."], "thee": ["The second person singular masculine object pronoun.", "The person addressed."], "to": ["In the direction of, and arriving at (indicating destination).", "Used after certain adjectives to indicate a relationship.", "Used to indicate ratios.", "Used to indicate the indirect object.", "As a means of achieving the specified aim."], "tin": ["A metallic element with symbol Sn, occurring in cassiterite. It is a malleable silvery-white metal.", "A tin-plate canister, often cylindrical, for preserved foods such as fruit, meat, or fish.", "To preserve in a can or tin."], "brain": ["The ability for rational thought.", "The organ of the central nervous system of an animal located in the skull that controls the actions and thoughts of the animal.", "An intelligent person.", "By analogy with a human brain, the part of a machine or computer that performs calculations.", "The complex of cognitive faculties, mostly characteristic of human beings, that enables consciousness, thinking, reasoning, perception, and judgement."], "central nervous system": ["In vertebrates, the part of the nervous system comprising the brain, brainstem and spinal cord."], "brainstem": ["The lowest part of the brain which is continuous with the spinal cord. It comprises the medulla oblongata, midbrain and pons."], "brain stem": ["The lowest part of the brain which is continuous with the spinal cord. It comprises the medulla oblongata, midbrain and pons."], "spinal cord": ["A thick, whitish cord of nerve tissue which is a major part of the vertebrate central nervous system. It extends from the brainstem down through the spine, with nerves branching off to various parts of the body. It is enclosed in and protected by the vertebral column."], "exist": ["To have existence."], "false": ["Not according to the truth.", "Not the right one.", "Not in keeping with the reality or the facts."], "untrue": ["Not according to the truth."], "blood type": ["A classification of human blood according to substances on the surface of the erythrocytes (red blood cells). The two main blood group systems are AB0 and rhesus factor (Rh). (Source: Wikipedia)"], "itinerant": ["One who travels from place to place.", "Habitually travelling from place to place."], "Perugia": ["City in the region of Umbria, Italy.", "A province in the Umbria region of Italy."], "blister": ["A small bubble on the skin, that contains watery fluid and is caused by heat, pressure or infection."], "stink": ["An unpleasant smell.", "To have a very unpleasant smell."], "comma": ["A punctuation mark used to separate closely knitted parts of a sentence."], "Abkhazians": ["A Caucasian people, mainly living in Abkhazia."], "isle": ["A land mass, especially one smaller than a continent, entirely surrounded by water."], "wait": ["To refrain from acting or moving for some duration or until some event occurs.", "To look forward to, as to something that is believed to be about to happen or come.", "To serve in a restaurant."], "up": ["The direction that is away from the centre of the Earth.", "Towards the direction that is away from the centre of the Earth (indicates a movement)."], "beautiful": ["Having nice or positive properties (specifically with regard to the senses, and most commonly, that of sight).", "Delighting the senses or exciting intellectual or emotional admiration.", "(of weather) highly enjoyable.", "Pleasing or appealing to the senses.", "Pleasant to look at, especially as conforming to ideals of form and proportion."], "upwards": ["The direction that is away from the centre of the Earth."], "upward": ["The direction that is away from the centre of the Earth."], "ascending": ["The direction that is away from the centre of the Earth.", "Moving or going upward."], "chest": ["The portion of the body from the base of the neck to the top of the abdomen; the thorax.", "A generic large, strong container or box (most often made of wood or metal with a lid) that is commonly used to store clothes or toys."], "double": ["Twice the quantity of.", "A person who resembles another person perfectly.", "To multiply by two.", "To become twice as great; to increase twofold.", "Consisting of or involving two parts or components usually in pairs.", "Having more than one decidedly dissimilar aspects or qualities."], "deep": ["Having a bottom or base that is far away from the top."], "dish": ["A specific type of prepared food.", "A vessel such as a plate for holding or serving food, often flat with a depressed region in the middle.", "An activity that one likes or at which one is superior."], "direction": ["The management or direction of the affairs of a public or private office, business or organization.", "An indication of the point towards which an object is moving or is going to move.", "Something that provides direction or advice as to a decision or course of action."], "develop": ["To progress through a series of stages.", "Make visible by means of chemical solutions.", "To come to have or undergo a change of physical features or attributes.", "To teach by training."], "flour": ["Ground or milled grain or cereal.", "To sprinkle with flour."], "examination": ["A session in which a product or piece of equipment is placed under everyday and/or extreme conditions and is examined for its durability, etc.", "A series of questions (set by the teacher or professor), aiming to gauge how much students have learnt over a given academic module, term or year.", "(Law) Formal interrogation."], "south": ["One of the four major compass points, specifically 180\u00b0, directed toward the South Pole, and conventionally downwards on a map."], "title": ["A prefix or suffix added to a person's name to signify either veneration, official position or a professional or academic qualification.", "The name of a book, film, musical piece, etc.", "To assign someone or something a title.", "The words written at the beginning of any text indicating what the following text is about."], "desk": ["A table, frame, or case, usually with flat or slightly sloping top, for the use of writers and readers. It often has a drawer or repository underneath."], "lock": ["Something used for fastening, which can only be opened with a key or combination.", "A segment of a canal or other waterway enclosed by gates, used for raising and lowering boats between levels.", "To fasten or secure a door, a window, a building by the operation of a lock or locks.", "Any wrestling hold in which some part of the opponent's body is twisted or pressured.", "A firing mechanism that detonates the charge of a gun.", "To become rigid or immoveable.", "To hold in a locking position (e.g. in wrestling).", "To hold fast (in a certain state, e.g. a fit of laughing)."], "plane": ["A flat surface extending infinitely in all directions.", "A powered heavier-than-air aircraft with fixed wings that obtains lift by the Bernoulli effect and is used for transportation.", "A tool for shaping wood.", "A level of existence or development."], "north": ["One of the four major compass points, specifically 0\u00b0, directed toward the North Pole, and conventionally upwards on a map."], "word": ["A distinct unit of language (sounds in speech or written letters) with a particular meaning, composed of one or more morphemes, and also of one or more phonemes that determine its sound pattern."], "skirt": ["An article of clothing, usually worn by women and girls, that hangs from the waist and covers the lower part of the body.", "To extend on all sides simultaneously."], "useful": ["Having a practical or beneficial use.", "Being fit for a specific task."], "spell": ["A words or formula supposed to have magical powers.", "A relatively short period of time of indeterminate length.", "To say the letters that make up a word, one after the other."], "weak": ["Lacking in force or ability."], "wake": ["A period after a person's death before the body is buried, in some cultures accompanied by a party.", "To stop sleeping.", "To make someone stop sleeping."], "lonely": ["Dejected by feelings of loneliness.", "Without companions."], "solitary": ["Without companions.", "By one's self; apart from, or exclusive of, others; applied to a thing."], "attack": ["To apply violent force to someone or something.", "The application of violent force to someone or something.", "The sudden onset or occurrence of a disease condition.", "Intense adverse criticism.", "To intensely and adversely criticise in speech or writing.", "Close fighting during the culmination of a military attack.", "To attack someone physically or emotionally.", "The use or exploitation of a vulnerability. This term is neither malicious nor benevolent. A bad guy may attack a system, and a good guy may attack a problem. (Schneider)"], "me": ["The speaker or writer referring to himself or herself alone as the object of the action."], "myself": ["[Me, as direct or indirect object;] The speaker as the object of a verb or preposition, when the speaker is also the subject."], "time to market": ["The time it takes from the time a product is envisioned or defined until it is available to the customer."], "mosque": ["A place of worship for followers of the Islamic faith."], "synagogue": ["A place of worship for followers of the Jewish faith."], "cathedral": ["The principal church of a bishop's diocese (which contains an episcopal throne)."], "chapel": ["A place of worship, smaller than, or subordinate to a church."], "temple": ["The region of the skull on either side of the forehead.", "A house of worship and spiritual activities."], "skull": ["The main bone of the head; the cranium.", "The bony framework of the head."], "escape": ["The act of leaving a dangerous or unpleasant situation.", "Leaving a dangerous or unpleasant situation.", "To get free, to free oneself.", "To flee; to take to one's heels; to cut and run."], "increase": ["An amount by which a quantity is enlarged.", "(Of a quantity) to become bigger.", "To make bigger or more."], "gain": ["An amount by which a quantity is enlarged.", "To gain (success) through applied effort or work.", "To get a characteristic.", "The advantageous quality of being beneficial.", "To earn, to gain (money)."], "increment": ["An amount by which a quantity is enlarged.", "The increase of the quantity, of measurements.", "To make bigger or more."], "inside": ["Contained or encased by.", "Within the confines of a building.", "The side of a curved road, racetrack etc. that has the shorter arc length.", "Within the interior of something, closest to the center or to a specific point of reference.", "Originating from or arranged by someone inside an organisation.", "Nearer to the interior of a running track, horse racing course etc.", "Before the end of a time period."], "expect": ["To look forward to, as to something that is believed to be about to happen or come.", "To consider obligatory; request and expect.", "To look forward to the birth of a child."], "anticipate": ["To look forward to, as to something that is believed to be about to happen or come.", "To state, or make something known in advance, especially using inference or special knowledge."], "await": ["To look forward to, as to something that is believed to be about to happen or come."], "hate": ["To dislike intensely; to feel strong hostility towards.", "An object, person, idea, situation or ideology that a person feels strong dislike or hostility towards.", "A feeling of strong dislike or hostility."], "height": ["The distance from the base of something to the top."], "letter": ["A symbol in an alphabet.", "A text that is written to and for a specific person or set of people (and is most commonly sent to them by post)."], "listen": ["To perceive with the ear (paying attention to what is heard)."], "United States": ["A country and federal republic in North America located north of Mexico and south of Canada, including Alaska, Hawaii and overseas territories."], "United States of America": ["A country and federal republic in North America located north of Mexico and south of Canada, including Alaska, Hawaii and overseas territories."], "idea": ["Initial idea or element that inspires an artistic or literary work.", "A plan or notion that is formed and exists in the mind as a result of mental activity."], "invite": ["The request for the presence or participation of someone.", "To request or ask for the presence or participation of someone.", "To express willingness to have (one) in one's home or environment.", "To have as a guest.", "To ask to enter."], "invitation": ["The request for the presence or participation of someone."], "into": ["Going inside of (something)."], "Alaska": ["The 49th state of the United States of America, located West of Canada in North America."], "Queen Beatrix": ["Beatrix Wilhelmina Armgard (born in Baarn, 31 January 1938), Princess of Oranje-Nassau, Princess of Lippe-Biesterfeld and, from 1980, the Queen of the Netherlands."], "hatred": ["A feeling of strong dislike or hostility."], "congruence": ["The quality of agreeing; being suitable and appropriate."], "thought": ["A plan or notion that is formed and exists in the mind as a result of mental activity."], "Herbology": ["A fictional school subject that focuses on the study of magical plants, herbs and fungi (from the Harry Potter series by JK Rowling)."], "Defence Against the Dark Arts": ["A fictional school subject that teaches students techniques to block curses, and spells that are cast by other wizards, as well as methods of fighting various magical creatures (from the Harry Potter series by JK Rowling)."], "hall": ["A narrow hall or passage with rooms leading off it."], "supercalifragilisticexpialidocious": ["Fictional word used in the movie ''Mary Poppins'' that is supposed to be a miraculous way to talk oneself out of difficult situations."], "fact": ["A true observation."], "just": ["Nothing more than.", "The way it should be.", "Without someone or something else.", "Of moral excellence.", "Only a very short time before.", "Not wisely or sensibly, foolishly."], "fair": ["The way it should be.", "Characterized by equity or fairness."], "even": ["Equal in proportion, quantity, size etc.", "Having a surface without slope nor variations in altitude.", "Pertaining to an integer: multiple of two", "Implying an extreme example in the case mentioned, as compared to the implied reality.", "An adverb used in order to introduce what it is considered very close to the extreme limit but that can still be caught up.", "As an actual or existing fact.", "[used to emphasize a comparative]", "[Used to indicate the most important aspect of the subject mentioned.]"], "Saint Petersburg": ["The second-largest city and former capital of Russia."], "mutually assured destruction": ["A doctrine where it is assumed that two countries cannot go to war as the cost would be prohibitive."], "MAD": ["A doctrine where it is assumed that two countries cannot go to war as the cost would be prohibitive."], "Petrograd": ["The name of Saint Petersburg (Russia) from 1914 to 1924."], "Leningrad": ["The name of Saint Petersburg (Russia) from 1924 to 1991."], "an": ["A period between set dates that mark a year, from January 1 to December 31 by the Gregorian calendar.", "One; any indefinite example of [indefinite article].", "[The indefinite article, used in a negative construction.]"], "hotel": ["An establishment that provides accommodation and other services for paying guests; normally larger than a guest house, and often one of a chain."], "Zagreb": ["The capital city of Croatia."], "Yerevan": ["The largest city and capital of Armenia."], "Erevan": ["The largest city and capital of Armenia."], "Yaound\u00e9": ["The capital and second largest city of Cameroon."], "mountaintop": ["The highest point of a mountain."], "Copenhagen": ["The capital and largest city of Denmark."], "Yamoussoukro": ["The official capital of C\u00f4te d'Ivoire."], "Windhoek": ["The capital and largest city of Namibia."], "class": ["A group, collection, category or set sharing characteristics or attributes.", "A grouping based on shared characteristics.", "A social group of persons of the same economic and professional condition.", "A biological taxon, a group of species, part of a phylum and consisting of one or more orders.", "A category of seats in an airplane, train or other means of mass transportation.", "A group of students in a regularly scheduled meeting with a teacher.", "A meeting with a teacher to learn something.", "The training or instruction provided by a teacher or tutor.", "A programming construct that is used to define a distinct type and defines constituent members that enable its instances to have state and behavior.", "A modifier of an HTML element used as a way of classifying similar elements.", "In computational complexity theory, a set of problems of related resource-based complexity."], "cloth": ["A woven fabric such as used in dressing, decorating, cleaning or other practical use."], "common": ["Something that is routine, or is well known.", "Who is not of noble rank; pertaining to the great masses."], "ordinary": ["Something that is routine, or is well known."], "friendly": ["Generally warm, approachable and easy to relate with in character.", "In an friendly manner."], "doping": ["The use of illegal methods and substances in order to enhance athletic performance."], "grandchild": ["A child of someone\u2019s child."], "grandson": ["A son of someone's child."], "granddaughter": ["A daughter of someone's child.", "The daughter of someone's daughter."], "Willemstad": ["The capital of Cura\u00e7ao and until October 2010 of the Netherlands Antilles"], "type": ["To write by entering characters on a keyboard or a typewriter.", "A grouping based on shared characteristics.", "To identify as belonging to a certain type."], "Uzbek": ["A Turkic language spoken by the Uzbeks in Uzbekistan and elsewhere in Central Asia.", "A person who is of Uzbek origin or who is an Uzbek national."], "son": ["One's male child."], "Tosk": ["An Albanian language spoken in the south of Albania."], "Tosk Albanian": ["An Albanian language spoken in the south of Albania."], "Thai": ["A Tai-Kadai language spoken primarily in Thailand."], "vegetable juice": ["Juice from vegetable."], "meat juice": ["The liquids contained in meat, especially in the context of preparing meat for food."], "Telugu": ["A Dravidian language spoken mainly in India.", "The script in which the Dravidian language Telugu is written."], "Standard German": ["The standard language of German-speaking regions."], "suitable": ["Having sufficient or the required properties for a certain purpose or task; appropriate to the occasion.", "Meeting the conditions; worthy of being chosen."], "pre alpha": ["A version of software distributed when it is not yet \"feature complete\"."], "wonder": ["To think deeply about something.", "Incredible fact that causes amazement and astonishment.", "To overwhelm with surprise or sudden wonder."], "shirt": ["An article of clothing that is worn on the upper part of the body, and often has sleeves, either long or short, that cover the arms."], "signal": ["An indication given to another person."], "speak": ["To communicate by the use of sounds that are interpreted as language; to communicate verbally.", "To exchange thoughts; talk with."], "summer lightning": ["The faint lightning flashes of distant thunderstorms on the horizon, without audible thunder."], "heat lightning": ["The faint lightning flashes of distant thunderstorms on the horizon, without audible thunder."], "flag": ["A piece of cloth, often decorated with an emblem, used as a visual signal or symbol."], "empty": ["Without content.", "To make empty.", "To become empty."], "dead": ["Not alive; lacking life.", "No longer living."], "explain": ["To inform about the reason for something, how something works, or how to do something.", "To give the meaning or intention of.", "To make plain and comprehensible.", "To define or present (e.g. a plan of action)."], "authentication": ["The act of establishing or confirming something or someone is what or who he or it is."], "chain": ["A series of interlocked rings or links forming a flexible length.", "A collection of business locations (e.g. restaurants or hotels) all related to the same company.", "A unit of length generally equal to between 60 and 100 feet.", "To fasten or secure with chains."], "once": ["at the time following immediately the time when", "As soon as.", "One and only one time."], "cover": ["A shielding or protection against the unpleasant, unwanted, or dangerous.", "The top sheet of a bed.", "To include completely; to describe fully or comprehensively.", "To place something over or upon to conceal or protect.", "The page on the outside of a magazine or book.", "To go beyond, to pass here.", "To include in scope; To include as part of something broader.", "To copulate with (of male animals)."], "cupboard": ["An enclosed, non \"walk-in\" storage space with a door as a means of access. Usually to be found in a kitchen"], "evening": ["That part of the day in which daylight decreases and the night falls.", "A period of time near the end of something."], "fast": ["Occurring or happening within a short time; brief.", "Fixed; closely compressed.", "Characterized by speed; acting or moving quickly.", "To refrain from eating."], "substitute": ["Someone appointed as the substitute of another, and empowered to act for him, in his name or on his behalf.", "To use in place of something else, with the same function."], "substitution": ["The act of replacing or substituting.", "The act of putting one thing or person in the place of another."], "Time passes and the situation has changed": ["A statement that expresses or emphasises that circumstances change with the passage of time."], "novel": ["A major form of literature. Usually, it denotes a continued fictional narrative written by a single author, rendered in prose.", "New, original, especially in an interesting way."], "funny": ["Arousing laughter.", "Out of the ordinary."], "Harry Potter": ["A series of books written by JK Rowling that focus on the adventures of three young wizards: Harry Potter, Ron Weasley and Hermione Granger.", "The main character in the \"Harry Potter\" series of books by JK Rowling."], "floor": ["The bottom or lower part of any room; the supporting surface of a room.", "A level, usually consisting of several rooms, in a building that consists of several levels."], "flat": ["Having a surface without slope nor variations in altitude.", "A musical notation indicating one half step lower than the note named.", "A level tract of land.", "Having lost effervescence.", "Having a relatively broad surface in relation to depth or thickness.", "Not modified or restricted by reservations.", "Stretched out and lying at full length along the ground."], "Accio": ["A fictional spell from the Harry Potter series that causes the indicated object to move to the person who cast the spell."], "dog days": ["A period of unusually hot weather."], "Tagalog": ["An Austronesian language spoken mainly in the Philippines."], "join": ["To join or unite, as one thing to another, or as several particulars, so as to increase the number, augment the quantity, enlarge the magnitude, or so as to form into one aggregate; to sum up; to put together mentally, as, to add numbers; to add up a column.", "To become part of; to become a member of a group or organization.", "To cause to become joined or linked.", "An operation that combines records from two tables in a relational database, resulting in a new, temporary table, sometimes called a \"joined table\".", "To come into the company of."], "jump": ["An instance of jumping.", "To propel oneself rapidly upward such that momentum causes the body to become airborne."], "hundred": ["The cardinal number occurring after ninety-nine and before one hundred one, represented in Roman numerals as C and in Arabic numerals as 100."], "obey": ["To do as you are told.", "To act in accordance with someone's rules, commands, or wishes."], "middle": ["The point on a segment that is midway between the ends.", "Being in the midway between the ends."], "centre": ["The point on a segment that is midway between the ends."], "Sundanese": ["An Austronesian language spoken primarily in the western part of the Indonesian island of Java."], "Upper Sorbian": ["A West Slavic language spoken in the historical province of Upper Lusatia, today part of Saxony."], "tattletale": ["Someone who does tell what another does wrong."], "Wendish": ["A group of West Slavic languages spoken in Lusatia."], "Lower Sorbian": ["A West Slavic language spoken in the historical province of Lower Lusatia, today part of Brandenburg."], "tattle": ["To tell what others do wrong."], "headset": ["A pair of headphones or earphones including a microphone and meant to be worn on the head.", "On a bicycle, the system of bearings that connects the fork to the frame."], "Sindhi": ["An Indic language spoken mainly in Pakistan and India."], "Punjabi": ["An Indic language spoken mainly in the Punjab regions of India and Pakistan."], "Pashto": ["A macro language that consists of Northern, Central and Southern Pashto dialects, spoken in Afghanistan, Pakistan and Iran."], "Avestan": ["An extinct Iranian language once used to compose among others the hymns of the Zoroastrian holy book, the Avesta."], "pope": ["The bishop of Rome; the head of the Roman Catholic church."], "federation": ["An array of nations or states that are unified under one central authority which is elected by its members.", "The process of a user's authentication across multiple IT systems or even organizations."], "token": ["An entity that signifies the authority or identity of something."], "authority": ["Stucture that has been organised for a certain scope (that can be for nor not for profit), which the legislation attributes a incorporated status.", "The power to enforce rules or give orders.", "One who is accepted as a source of reliable information on a subject."], "course": ["A single dish in a row of subsequently served dishes constituting a menu.", "The intended route of a voyage.", "The passage of time in a connected series of events or actions.", "The direction of movement, line or route of a vessel at any given moment.", "A learning program, as in a school.", "To move along, of liquids."], "truth": ["That which conforms to reality."], "offer": ["To present something for a person's acceptance or rejection.", "Availability to sell goods or services for a certain price and under certain conditions.", "To give as a present.", "To state to someone that one is willing to pay a certain amount of money and/or perform a set of services for something."], "plague": ["Any large scale calamity.", "A deadly infectious disease caused by the enterobacteria Yersinia pestis.", "To cause physical pain; to infect with a contagious disease.", "To cause, inflict or threaten with suffering, need, distress, or pain."], "bar": ["A business licensed to sell intoxicating beverages for consumption on the premises, or the premises themselves", "With the exception of.", "A musical designation consisting of all notes and or rests delineated by two vertical bars; an equal and regular division of the whole of a composition.", "A unit of pressure equal to 100,000 pascals.", "To render passage impossible by physical obstruction.", "A rigid piece of metal or wood, usually used as a fastening or obstruction or weapon.", "To accept no longer in a community, group or country, e.g. by official decree.", "To prevent from entering; to keep out (e.g. of membership).", "A single piece of a grid, railing, grating, pailing, fence, etc.", "A block of solid substance (such as soap, wax or chocolate).", "A horizontal rod used by gymnasts as a support to perform their physical exercises.", "A counter where you can obtain food or drink.", "An obstruction (usually metal) placed at the top of a goal."], "public house": ["A business licensed to sell intoxicating beverages for consumption on the premises, or the premises themselves"], "Battle": ["A small town in East Sussex, England, known as the site where William, Duke of Normandy, defeated King Harold II to become William I."], "beer": ["An alcoholic beverage commonly fermented from barley malt, with hops or some other substance to impart a bitter flavor."], "pub": ["A business licensed to sell intoxicating beverages for consumption on the premises, or the premises themselves"], "piglet": ["A young pig."], "grey": ["To become grey.", "Having a colour between black and white, like ash or stone."], "Amharic": ["A Semitic language spoken mainly in in Ethiopia."], "Amuzgo": ["An Oto-Manguean language spoken in the eastern Guerrero and western Oaxaca states of Mexico."], "Aragonese": ["A Romance language spoken in some valleys of the Pyrenees in Spain.", "A person whose ancestors are from Aragon or who resides in Aragon, an autonomous community in Spain.", "Of or pertaining to Aragon, an autonomous community in Spain, or its inhabitants (present or past)."], "typo": ["A spelling or typographical error."], "Aramaic": ["Semitic language which dates back to the 10th century BCE."], "Assamese": ["An Indic language spoken as the official language of the state of Assam in India, and by small communities in Bangladesh and Bhutan.", "A variant of the Eastern Nagari script also used for Bengali and Bishnupriya Manipuri."], "Asturian": ["A Romance language spoken in various parts of Spain.", "A person from Asturias, or of Asturian ancestry.", "Of or relating to Asturias, Asturians, or the Asturian language."], "Astur-Leonese": ["A Romance language spoken in various parts of Spain."], "Asturian-Leonese": ["A Romance language spoken in various parts of Spain."], "toast": ["Bread that has been cooked with a dry heat (usually in a toaster); a common breakfast food.", "To cook (food, commonly bread) using a dry heat.", "To raise one's glass and touch it against another person's (usually at a celebration meal, etc. and usually with the word, \"cheers\").", "A raising and touching of glasses (usually at a celebration meal, etc. and usually with the word, \"cheers\")."], "sibling": ["A person who has the same parents as another person."], "ecstatic": ["Having feelings of intense pleasure."], "nephew": ["A son of someone's sister.", "A son of someone's brother.", "A son of someone's brother or sister.", "A child of someone's brother or sister."], "niece": ["A daughter of someone\u2019s sister.", "A daughter of someone\u2019s brother.", "A daughter of someone\u2019s brother or sister."], "cousin": ["The daughter of a sibling of a person's parent.", "The child of the sibling of a parent of a person.", "A son of the sibling of a parent of a person.", "Father's sister's daughter.", "Father's sister's son.", "Mother's brother's son.", "Mother's brother's daughter.", "Mother's sister's daughter.", "Mother's sister's son.", "Father's brother's son.", "Father's brother's daughter."], "euphoric": ["Having feelings of intense pleasure."], "homosexual": ["A person who is sexually attracted solely or primarily to other members of the same sex.", "Sexually attracted to members of his/her own sex."], "relative": ["A person that is considered to be of the same family due to shared ancestors, marriage or adoption.", "A member of the family.", "Not absolute; connected to or depending on something else."], "relation": ["A person that is considered to be of the same family due to shared ancestors, marriage or adoption.", "An abstraction belonging to or characteristic of two entities or parts together.", "The association of two defined meanings through a specific relation type."], "homosexuality": ["The sexual preference characterised by a romantic or sexual attraction to people of the same sex."], "Avar": ["A Northeast Caucasian language, spoken mainly in the eastern and southern parts of the Republic of Dagestan and the Zakatala region of Azerbaijan."], "Transfiguration": ["A fictional school subject from the Harry Potter series that focuses on changing the appearance and form of an object (or sometimes making objects appear or disappear)."], "Chocolate Frog": ["A fictional magical sweet that is shaped like a frog made from chocolate that hops (from the Harry Potter series by JK Rowling)."], "Hausa": ["An Afro-Asiatic language spoken mainly in West Africa."], "Javanese": ["An Austronesian language spoken mainly in the central and eastern part of the island of Java, in Indonesia."], "girl": ["A young female person, usually a child or teenager."], "Department of Mysteries": ["A fictional department on the bottom floor of the Ministry of Magic, where the main action at the end of \"Harry Potter and the Order of the Phoenix\" occurs (from the Harry Potter series by JK Rowling)."], "Kannada": ["A Dravidian language spoken mainly in the state of Karnataka in India."], "nanny": ["A woman who watches over someone else's kids usually as a full-time job."], "Swede": ["A person from Sweden."], "Nauruan": ["A person from Nauru.", "A Malayo-Polynesian language spoken in Nauru.", "Of or relating to Nauru, Nauruans, or the Nauruan language."], "Australian": ["A person from Australia.", "Of or relating to Australia or Australians."], "Norway": ["A country in Northern Europe, and part of Scandinavia."], "Sweden": ["A country in Northern Europe, and part of Scandinavia."], "Dark Lord": ["The name that the Death Eaters give Lord Voldemort (from the Harry Potter series by JK Rowling)."], "Hogwarts": ["The fictional school that Harry Potter goes to (in the Harry Potter series by JK Rowling)."], "Common Room": ["A fictional room where students of a particular house relax and congregate (from the Harry Potter series by JK Rowling)."], "Gryffindor": ["A fictional house that values courage, boldness and chivalry (from Harry Potter by JK Rowling). It's emblem is the lion."], "Slytherin": ["A fictional house that values ambition, cunning and resourcefulness (from Harry Potter by JK Rowling). It's emblem is the snake."], "pinkie": ["The smallest finger of a hand."], "Hufflepuff": ["A fictional house that values hard work, friendship and fair play (from Harry Potter by JK Rowling). It's emblem is the badger."], "Ravenclaw": ["A fictional house that values intelligence, knowledge, and wit (from Harry Potter by JK Rowling). It's emblem is the eagle."], "foal": ["A juvenile horse, especially one which is not yet weaned."], "anvil": ["A heavy iron block used by a blacksmith as a surface upon which metal can be struck and shaped.", "A bone in the middle ear, in between the malleus and the stapes."], "malleus": ["A bone in the middle ear, in between the eardrum and the anvil."], "stirrup": ["A bone in the middle ear, between the anvil and the inner ear.", "A ring that holds the foot of a rider, attached to the saddle by a strap."], "chasm": ["A deep, steep-sided rift."], "gap": ["A deep, steep-sided rift.", "A considerable disparity or difference as between two figures."], "fissure": ["A deep, steep-sided rift.", "A thin and usually jagged space opened in a previously solid material."], "gorge": ["A deep, steep-sided rift.", "To eat by swallowing large bits of food with little or no chewing."], "abyss": ["A deep, steep-sided rift."], "Dravidian language": ["A language spoken by one of several aboriginal peoples of India and Sri Lanka."], "Doha": ["The capital of Qatar."], "private bank": ["A bank which is not incorporated, and hence the entirety of its assets is available to meet the liabilities of the bank."], "Switzerland": ["A sovereign country in south central Europe. In the West it borders on France, in the East on Austria and Liechtenstein, in the North on Germany, and in the South on Italy. Its capital is Bern."], "hydrogen bomb": ["A thermonuclear bomb which derives its destructive power from the fusion of isotopes of hydrogen."], "akuaba": ["A wooden ritual fertility doll from Ghana and nearby areas."], "\u00e5terst\u00e4llande": ["A conservation measure involving the correction of past abuses that have impaired the productivity of the resources base.\\n(Source: MGH)"], "anarchism": ["The belief that all forms of rulership are undesirable and should be abolished."], "giraffe": ["An African even-toed ungulate mammal, the tallest of all land-living animal species."], "operation": ["The method by which a device performs its function.", "A surgical procedure.", "The execution of its own function."], "drug test": ["A chemical test administered to determine the use of banned substances."], "archive": ["A place for storing important and historical material.", "To place in an archive in a logical place and order."], "heartbeat": ["A rhythmic pulsation of the heart."], "drug": ["A substance which specifically promotes healing.", "A substance that alters the way the mind or body works.", "To administer intoxicating drugs to, generally without the recipient's knowledge or consent.", "To add intoxicating drugs to something with the intention of drugging someone."], "view": ["To have one's eyes, one's attention on something or someone.", "What can be seen.", "A stored query accessible as virtual table composed of the result set of a query.", "To see or watch."], "look at": ["To have one's eyes, one's attention on something or someone."], "observe": ["To have one's eyes, one's attention on something or someone.", "To make mention of.", "To see, discover or determine something, unclear, distant or hidden, by looking carefully.", "To conform one's action or practice to.", "To look after; be the keeper of; have charge of."], "tear": ["A drop of liquid produced from the eyes by crying or irritation.", "A tug given with force in order to remove something.", "A clear, salty liquid produced by the lacrimal gland in the eye, whose normal function is to clean and lubricate the eyes; its production is increased when the eye is irritated, or when yawning, laughing or crying."], "instead": ["As a replacement for."], "blind": ["Unable to see.", "To make temporarily or permanently blind."], "funnel": ["A conically shaped pipe, employed as a device to channel liquid or fine-grained substances into containers with a small opening.", "The metal chimney of an engine, steamboat, etc."], "phlegm": ["A sticky fluid secreted by the mucous membranes of animals."], "lightning": ["The flash of light caused by the discharge of atmospheric electrical charge."], "doubt": ["Challenge about the truth or accuracy of a matter.", "To lack confidence in; to disbelieve, question, or suspect."], "blink": ["To make a quick wink of one or both eyelids, often repeatedly.", "To close and reopen both eyes quickly."], "never": ["At no time."], "corruption": ["The destruction of data as a result of imperfections in software, storage or transmission processes.", "The practice of unlawful or improper use of influence or power."], "true": ["Concurring with a given set of facts."], "area": ["A particular geographic region.", "A measure of the extent of a two-dimensional object.", "A particular environment or walk of life."], "be seated": ["To be in a position with the upper body upright and the legs resting."], "basil": ["An annual plant of the Lamiaceae (or Labiate) family, grown as a herb and used in cooking to add flavour."], "Malay": ["An Austronesian language spoken mainly in Malaysia and its neighbouring countries.", "A citizen of Malaysia or someone who is originally from Malaysia."], "founder": ["A person that has founded or originated, as in ''the father of our country''"], "Father": ["The Superior Being, the Creator, the Spirit because of which and in whom everything is, as He is being named by monotheists, mostly Jews and Christians."], "Vader": ["An evil fictional character in the Star Wars universe, Dark Lord of the Sith."], "Malayalam": ["A Dravidian language spoken mainly in the state of Kerala, in southern India."], "Mapudungun": ["A language isolate spoken in southern and central Chile and west central Argentina by the Mapuche people."], "Darth Vader": ["An evil fictional character in the Star Wars universe, Dark Lord of the Sith."], "Marathi": ["An Indic language spoken mainly in western and southern India."], "Chhattisgarhi": ["An Indic language spoken primarily in the Indian state of Chhattisgarh and adjacent areas.", "An Indic language spoken primarily in the Indian state of Chhattisgarh and adjacent areas."], "lose": ["To cause (something) to cease to be in one's possession or capability due to unfortunate or unknown circumstances, events or reasons.", "To be beaten or to fail to win in an event."], "Oromo": ["A group of Afro-Asiatic languages spoken primarily in Ethopia."], "Oriya": ["An Indic language spoken mainly in the Indian state of Orissa.", "Dialect of Turi spoken.", "A script used to write the Oriya language and several other Indian languages, for example, Sanskrit."], "Old English": ["An early form of the English language that was spoken in parts of what is now England and southern Scotland between 450 and 1100."], "Anglo-Saxon": ["An early form of the English language that was spoken in parts of what is now England and southern Scotland between 450 and 1100."], "brown out": ["A partial power outage, a disruption in electric power supply that reduces the voltage available causing lights to dim.", "A dimming of the vision caused by loss of blood pressure or hypoxia."], "Afro-Asiatic": ["A language family spoken throughout the northern part of Africa and the Middle East, including amongst others the Semitic, Cushitic, Chadic, and Berber languages."], "black out": ["Amnesia caused by an overabundant use of alcohol.", "The sudden (and generally momentary) loss of consciousness due to a lack of sufficient blood and oxygen reaching the brain."], "syncope": ["The deletion of phonemes from a word, or from a phrase treated as a unit."], "text mining": ["Extracting interesting and non-trivial information and knowledge from unstructured text stored in electronic form."], "topic modelling": ["Identifying patterns of words that tend to occur together in documents, then automatically categorizing these words into topics."], "knowledge management": ["The science and the practical skills that concern themselves with the control of the production factor knowledge."], "slang": ["Language that is higly informal, considered below what is considered standard educated speech, and consisting of new words, old words used with new meanings, or words considered taboo by people of a higher social status.", "Terminology which is especially defined in relationship to a specific activity, profession, group, or event."], "murder": ["To purposely end the life of another human being.", "To deliberately and purposely end the life of a political, public or other significant figure, usually publically.", "The intentional or premeditated killing of another person.", "To unlawfully and intentionally kill another human being."], "disambiguation": ["Selecting from the possible interpretations of a word or a sentence which interpretation was intended in a particular context."], "ambiguity": ["Something liable to more than one interpretation, explanation or meaning, if that meaning cannot be determined from its context.", "The use of equivocal or ambiguous expressions, esp. in order to mislead."], "bed": ["A piece of furniture, made for a person to sleep on.", "A plot of ground in which plants are growing.", "A depression forming the ground under a body of water.", "A stratum of rock (especially sedimentary rock)."], "broken": ["Containing one error or several errors.", "Bent to the point of coming apart, but not necessarily in separate pieces.", "Not capable of working."], "raft": ["a collection of logs, planks, casks, etc., fastened together for floating on water.", "A great number or large amount of things not placed in a pile."], "beat": ["A rhythmic pulsation of the heart.", "A pulsation or throb.", "To strike or pound repeatedly, usually in some sort of rhythm.", "To exceed in quality, capacity and virtue.", "To end in success a struggle or contest.", "Speed degree during a certain part of a song rhythm.", "To give a beating to; subject to a punishment or an act of aggression.", "The sound of stroke or blow."], "mute": ["Not making a sound."], "hole": ["A, often round, piece of nothingness in some solid."], "sorrow": ["Mental suffering or pain caused by injury, loss, bereavement, or despair.", "To express deep sorrow for.", "Something that causes great unhappiness."], "lament": ["To express grief.", "A vocal or audible expression of grief or sorrow.", "To express deep sorrow for.", "A cry of sorrow and grief."], "taboo": ["An inhibition or ban that results from social custom or emotional aversion."], "ancestor": ["Person from whom a person is descended, whether on the father's or mother's side, at any number of generations."], "progenitor": ["Person from whom a person is descended, whether on the father's or mother's side, at any number of generations.", "An ancestral form of a species."], "chronic": ["(Of disease) Persisting over a long period."], "ailment": ["An injury, disorder or disease that causes physical or mental suffering to the affected person or animal."], "intelligence quotient": ["The unit used to show the result of an intelligence test."], "intelligence": ["The problem solving ability."], "witchcraft": ["The use of certain kinds of supernatural or magical powers."], "busy": ["Having many things that need to be done.", "To make oneself or someone to have a lot of things to do.", "(For a telephone line) Not available at the moment because it is being used.", "Crowded with or characterized by much activity."], "ethernet": ["A large and diverse family of frame-based computer networking technologies for local area networks."], "brand": ["A name, symbol, logo, or other item used to distinguish a product or manufacturer from its competitors."], "capital": ["A city designated as a legislative seat by the government or some other authority, often the city in which the government is located; otherwise the most important city within a country or a subdivision of it.", "The financial means to acquire goods and services, especially in a non-barter system.", "First-rate.", "Of primary importance.", "Uppercase."], "whereabouts": ["Location or place."], "circuit judge": ["A senior judge in England and Wales who sits in the Crown Courts, County Courts or certain specialised sub-divisions of the High Court of Justice."], "London": ["The capital city of the United Kingdom and of England."], "sign language": ["A language in which the communication occurs through gestures and facial expressions."], "emperor": ["The head of state of an empire."], "empire": ["A state ruled by an emperor.", "Any vast area under the power of one person, most commonly used in business.", "A group of states or other territories that owe allegiance to a foreign power."], "promulgate": ["To put a regulation into effect.", "To make known or public.", "To make known by stating or announcing."], "chromatophore": ["A pigment-containing and light-reflecting cell found in amphibians, fish, reptiles, crustaceans and cephalopods."], "alliance": ["Any union resembling that of families or states; union by relationship in qualities; affinity."], "orbit": ["A circular or elliptical path of one object around another object.", "A particular environment or walk of life.", "The path, usually elliptical, described by one celestial body in its revolution about another.", "The path of an electron around the nucleus of an atom.", "The bony cavity in the skull containing the eyeball.", "To move in an orbit."], "loyal": ["Firm in allegiance to a person or institution.", "Steadfast in allegiance or affection."], "tower": ["Structure, usually taller than it is wide, often used as a lookout.", "To increase the height significantly.", "To go forward vigourously."], "write": ["To form (letters, words or symbols) on a surface in order to communicate.", "To record (a computer file) on a computer storage medium.", "To compose and send a letter to someone.", "To create code, to write a computer program."], "GDP": ["The total output of goods and services produced by a national economy in a given period, usually a year, valued at market prices. It is gross, since no allowance is made, for the value of replacement capital goods."], "Boston": ["The capital of the Commonwealth of Massachusetts in the United States."], "arm": ["The upper limb, extending from the shoulder to the wrist and sometimes including the hand.", "A part of an object (usually rigid and relatively long) that extends from the centre or main section.", "To prepare oneself for a military confrontation.", "A division of some larger or more complex organization.", "To supply with arms."], "image": ["A representation of visible reality produced by drawing, painting, printing, photography, etc.", "The visual representation of a person or an object."], "poor": ["With little or no possessions or money.", "Inappropriate for a particular purpose or aim.", "Of low quality.", "To be pitied."], "promise": ["A transaction between two persons whereby the first person undertakes in the future to render some service or gift to the second person or devotes something valuable now and here to his use.", "To make a promise.", "To state, or make something known in advance, especially using inference or special knowledge."], "painting": ["An illustration or artwork done with the use of paints.", "The practice of applying color to a surface (support base) such as, e.g. paper, canvas, wood, glass, lacquer or concrete."], "Kituba": ["A widely used lingua franca in Central Africa and an official language in Congo-Brazzaville and Congo-Kinshasa.", "A language of Democratic Republic of the Congo"], "always": ["At all times.", "Constantly during a certain period, or regularly at stated intervals."], "Vandals": ["An East Germanic tribe that entered the late Roman Empire during the 5th century."], "vandal": ["A person who needlessly destroys or damages other people's property."], "in vitro fertilisation": ["A technique in which egg cells are fertilised outside the woman's body."], "IVF": ["A technique in which egg cells are fertilised outside the woman's body."], "Cherokee": ["An Iroquoian language spoken in Oklahoma and North Carolina in North America.", "The syllabary for the Cherokee language invented by Sequoyah.", "An indigenous North American people."], "syllabary": ["A set of written symbols that represent (or approximate) syllables, which make up words."], "syllable": ["A unit of human speech that is interpreted by the listener as a single sound, although syllables usually consist of one or more vowel sounds, either alone or combined with the sound of one or more consonants."], "Swabian": ["A language spoken in middle and southern Baden-W\u00fcrttemberg, but also in parts of Bavaria."], "Tswana": ["A Bantu language spoken in Southern Africa."], "baptism by fire": ["The first time a person does something, where it is unexpectedly challenging or difficult."], "Japan": ["An East Asian island country located in the Pacific Ocean, to the east of China, Korea, and Russia, stretching from the Sea of Okhotsk in the north to the East China Sea in the south."], "State of Japan": ["An East Asian island country located in the Pacific Ocean, to the east of China, Korea, and Russia, stretching from the Sea of Okhotsk in the north to the East China Sea in the south."], "foundation": ["The lowest and supporting part or member of a wall.", "A type of philanthropic organization, set up by either individuals or institutions as a legal entity with the purpose of supporting causes in line with the goals of the foundation.", "A relation that provides the foundation for something.", "The lowest support of a structure.", "Education or instruction in the fundamentals of a field of knowledge.", "The fundamental assumptions from which something is begun or developed or calculated or explained."], "fundament": ["The lowest and supporting part or member of a wall.", "The lowest support of a structure.", "The fleshy part of the human body that one sits on.", "The fundamental assumptions from which something is begun or developed or calculated or explained."], "train station": ["A building in or at which trains stop."], "bus stop": ["A place at which busses stop to let passengers get on and off."], "hit the nail on the head": ["To arrive at exactly the right answer."], "you lot": ["The group of persons addressed."], "tailplane": ["A small wing that provides positive or negative lift to stabilize an aircraft in flight."], "firewall": ["A service which functions in a networked computing environment to prevent the communications forbidden by a security policy.", "A type of fire separation of noncombustible construction that subdivides a building or separates adjoining buildings to resist the spread of fire."], "cream": ["A dairy product that is composed of the higher-butterfat layer skimmed from the top of milk before homogenization. In un-homogenized milk, the fat, which is less dense, will eventually rise to the top. In the industrial production of cream this process is accelerated by using centrifuges called \"separators\".", "To strike or hit somebody heavily and repeatedly."], "baptism of fire": ["The first time a person does something, where it is unexpectedly challenging or difficult."], "headland": ["A strip of land left at the end of a furrow in a field in order to facilitate the turning of the plough.", "A cape or promontory jutting seawards from a coastline, usually with a significant sea cliff.", "A piece of land extending into water."], "chart": ["A formal written record of transactions, proceedings, etc., as of a society, committee, or legislative body.", "A map for navigation that delineates a portion of the sea, indicating the outline of the coasts and the position of rocks, sandbanks and other parts of a sea.", "To visually represent by means of a graph."], "jungle": ["An area of wilderness, usually large, usually covered by thick vegetation, mainly untouched by humans.", "Thick and intricate forest typical of monsoon regions like India and Malaysia"], "forrest": ["An area where trees grow, where there are, no streets, no buildings, no agriculture beyond growing trees."], "woods": ["An area where trees grow, where there are, no streets, no buildings, no agriculture beyond growing trees."], "bush": ["A plant resembling a small tree, but has no, and will never develop, a stem.", "A collection of something bundled, almost always flowers or decorative twigs, etc."], "tuft": ["A collection of, mostly quite many, small, thin, long, bendable, identical items, growing, standing, or being held parallel, such as grass, hair, herbs, feathers, etc."], "brown": ["A red-orange colour, including the colour of wood, chocolate or coffee.", "Having a red-orange colour, including the colour of wood, chocolate or coffee.", "To assume a brown-red-orange colour, similar the colour of chocolate or coffee.", "To cook something until it assumes a brown-red-orange colour, similar to the colour of chocolate or coffee."], "truce": ["A temporary suspension of hostilities by mutual agreement of the warring parties."], "cease-fire": ["A temporary suspension of hostilities by mutual agreement of the warring parties."], "Berlin": ["The capital city and a state of Germany, the country's largest city in area and population, and the second most populous city in the European Union."], "after": ["Following (someone or something).", "Subsequent; following in time; later than.", "At the back of.", "In pursuit of, seeking.", "In allusion to, in imitation of; following or referencing.", "Next in importance or rank."], "behind": ["Following (someone or something).", "At the back of.", "The fleshy part of the human body that one sits on.", "In or into an inferior position."], "again": ["Already happened before.", "Once more.", "Over and above a factor of one.", "[Used metalinguistically, with the repetition being in the discussion, or in the linguistic or pragmatic context of the discussion, rather than in the subject of discussion.]", "[used in asking a question to which one may have already received the answer, but cannot remember it.]", "[Used in repeating a question or statement.]", "[Used in applying a previously made point to a new instance.]", "Once more, in a different manner, on a new basis."], "alone": ["By one's self; apart from, or exclusive of, others; applied to a person.", "By one's self; apart from, or exclusive of, others; applied to a thing.", "Without any others being included or involved."], "already": ["Prior to some specified time, either past, present, or future.", "Sooner or more quickly than expected.", "An addition used to emphasize impatience."], "now": ["At present; at this time.", "Indicates this very moment in time.", "[A way of introducing a sentence, especially with a new topic.]", "In an immediate manner; instantly or without delay.", "In the time directly preceding the present moment.", "In the time directly following on the present moment.", "At the time spoken of or referred to.", "[Used to strengthen a rebuke, command, entreaty, or the like.]", "[Used at the beginning or end of a question or a clause, for rhetorical strength.]", "As a consequence of.", "Of or belonging to the present time.", "Actual, fashionable, up to date.", "[Indicates a signal to begin. ]"], "any": ["A guaranteed selection from (a set). At least one, sometimes more (of a set).", "[The plural indefinite article, used in a negative construction.]", "[The indefinite article, used in a negative construction.]"], "set": ["A matching collection of things of the same kind.", "A collection of various objects for a particular purpose.", "An object made up several parts.", "(set theory) A well-defined collection of mathematical objects (called elements or members) often having a common property.", "An association or group of people, usually meeting socially.", "To cause (as an end result, not a process) an object to be in a new place.", "To adapt something; to alter or regulate so as to achieve accuracy or conform to a standard.", "[Of a heavenly body, essentially the Sun and the Moon] To disappear below the horizon of a planet or another heavenly body (most often the Earth).", "Fixed and unmoving."], "accept": ["To receive, especially with a consent, with favour or with approval, something given or offered.", "To agree in opinion or sentiment; to consider or hold as true.", "To take on as one's own the expenses or debts of another person.", "To give an affirmative reply to; respond favorably to.", "To tolerate or accommodate oneself to.", "To admit into a group or community."], "March": ["The third month of the Gregorian calendar, having 31 days."], "January": ["The first month of the Gregorian calendar, having 31 days."], "February": ["The second month of the Gregorian calendar, having 29 days in a leap year and 28 in other years."], "April": ["The fourth month of the Gregorian calendar, having 30 days."], "May": ["The fifth month of the Gregorian calendar, having 31 days.", "ISO 639-6 entity"], "June": ["The sixth month of the Gregorian calendar, having 30 days."], "July": ["The seventh month of the Gregorian calendar, having 31 days."], "August": ["The eighth month of the Gregorian calendar, having 31 days."], "September": ["The ninth month of the Gregorian calendar, having 30 days."], "October": ["The tenth month of the Gregorian calendar, having 31 days."], "November": ["The eleventh month of the Gregorian calendar, having 30 days."], "December": ["The twelfth month of the Gregorian calendar, having 31 days."], "headache": ["A common (and sometimes acute) pain of the head and head area."], "migraine": ["A neurological disease that most often takes the form of very acute, disabling headaches, hypersensitivity to light and sound and nausea."], "megrim": ["A neurological disease that most often takes the form of very acute, disabling headaches, hypersensitivity to light and sound and nausea."], "paracetamol": ["The active substance in a group of common drugs, that are used for relief of headaches and other aches and pains."], "aspirin": ["A common drug that is often used against headaches, fever and other ailments."], "lasagna": ["An Italian oven dish with pasta and some filling (such as ricotta cheese, tomato sauce, etc.)"], "Friday": ["The fifth day of the week in Europe and in systems using the ISO 8601 norm; the sixth day of the week in the United States of America."], "Thursday": ["The fourth day of the week in Europe and in systems using the ISO 8601 norm; the fifth day of the week in the United States of America."], "Wednesday": ["The third day of the week in Europe and in systems using the ISO 8601 norm; the fourth day of the week in the United States of America."], "Tuesday": ["The second day of the week in Europe and in systems using the ISO 8601 norm; the third day of the week in the United States of America."], "Monday": ["The first day of the week in Europe and in systems using the ISO 8601 norm; the second day of the week in the United States of America."], "Sunday": ["The seventh day of the week in Europe and in systems using the ISO 8601 standard, or the first day of the week in the United States of America, the Sabbath for most Christians."], "Saturday": ["The sixth day of the week in Europe and in systems using the ISO 8601 norm; the seventh day of the week in the United States of America."], "Wayuu": ["An indigenous language spoken in Venezuela and Colombia."], "quarter": ["Any of the four equal parts into which something has been divided.", "A period of three months.", "A part of a town with its own particular features and distinctive characteristics which give it a certain unity and identity.", "To divide into four (equal) parts.", "To provide housing for military personnel or other equipment.", "A coin worth 25 cents."], "fourth": ["Any of the four equal parts into which something has been divided.", "The ordinal form of the cardinal number, four; that which comes after the third."], "then": ["At a given time in the past.", "Soon after this; following in chronological order.", "[Used to indicate something that happens if or when something else happens.]", "Next in order.", "[Introducing a statement contrasted with the preceding.]", "The time referred to.", "Being so at that time.", "[Used as a particle of inference.]"], "Bambara": ["The language spoken in Mali, Burkina Faso and the Ivory Coast."], "Limburgish": ["A group of Franconian dialects spoken mainly in Belgian and Dutch Limburg."], "six": ["The cardinal number occurring after five and before seven, represented in Roman numerals as VI, in Arabic numerals as 6.", "The digit \"6\".", "The sixth of the natural numbers (6)"], "seven": ["The cardinal number occurring after six and before eight, represented in Roman numerals as VII, in Arabic numerals as 7.", "The digit \"7\".", "The seventh natural number (7)."], "eight": ["The cardinal number occurring after seven and before nine, represented in Roman numerals as VIII, in Arabic numerals as 8.", "The digit \"8\".", "The eigth natural number (8)."], "eleven": ["The cardinal number occurring after ten and before twelve, represented in Roman numerals as XI, in Arabic numerals as 11."], "twelve": ["The cardinal number occurring after eleven and before thirteen, represented in Roman numerals as XII and in Arabic numerals as 12."], "thirteen": ["The cardinal number occurring after twelve and before fourteen, represented in Roman numerals as XIII and in Arabic numerals as 13."], "fourteen": ["The cardinal number occurring after thirteen and before fifteen, represented in Roman numerals as XIV and in Arabic numerals as 14."], "fifteen": ["The cardinal number occurring after fourteen and before sixteen, represented in Roman numerals as XV and in Arabic numerals as 15."], "sixteen": ["The cardinal number occurring after fifteen and before seventeen, represented in Roman numerals as XVI and in Arabic numerals as 16."], "seventeen": ["The cardinal number occurring after sixteen and before eighteen, represented in Roman numerals as XVII and in Arabic numerals as 17."], "twenty": ["The cardinal number occurring after nineteen and before twenty-one, represented in Roman numerals as XX and in Arabic numerals as 20."], "eighteen": ["The cardinal number occurring after seventeen and before nineteen, represented in Roman numerals as XVIII and in Arabic numerals as 18."], "nineteen": ["The cardinal number occurring after eighteen and before twenty, represented in Roman numerals as XIX and in Arabic numerals as 19."], "quince": ["A hard, acid-tasting and astringent fruit of the quince tree (Cydonia oblonga), used to make preserves, jellies and puddings."], "thirty": ["The cardinal number occurring after twenty-nine and before thirty-one, represented in Roman numerals as XXX and in Arabic numerals as 30."], "forty": ["The cardinal number occurring after thirty-nine and before forty-one, represented in Roman numerals as XL and in Arabic numerals as 40."], "fifty": ["The cardinal number occurring after forty-nine and before fifty-one, represented in Roman numerals as L and in Arabic numerals as 50."], "sixty": ["The cardinal number occurring after fifty-nine and before sixty-one, represented in Roman numerals as LX and in Arabic numerals as 60."], "seventy": ["The cardinal number occurring after sixty-nine and before seventy-one, represented in Roman numerals as LXX and in Arabic numerals as 70."], "eighty": ["The cardinal number occurring after seventy-nine and before eighty-one, represented in Roman numerals as LXXX and in Arabic numerals as 80."], "ninety": ["The cardinal number occurring after eighty-nine and before ninety-one, represented in Roman numerals as XC and in Arabic numerals as 90."], "hundred and one": ["The cardinal number occurring after hundred and before hundred and two, represented in Roman numerals as CI and in Arabic numerals as 101."], "one hundred and one": ["The cardinal number occurring after hundred and before hundred and two, represented in Roman numerals as CI and in Arabic numerals as 101."], "wet": ["Covered with or impregnated with liquid.", "(Of the air) Containing a high quantity of water vapor."], "heterosexual": ["Sexually attracted to members of the opposite gender."], "Novara": ["Capital of the Province of Novara, in Piedmont, Italy", "A province in the Piedmont region of Italy."], "general affairs": ["The usual daily proceedings of a company or agency. General issues without a specific significance."], "cheek": ["The soft skin on each side of the face, between the eyes and the chin; the outer surface of the sides of the oral cavity.", "Nearly arrogant courage; utter audacity, effrontery or impudence; supreme self-confidence."], "Association of Southeast Asian Nations": ["Association of Southeast Asian Nations. Regional organization of states of Southeast Asia created on august 8th, 1967."], "recyclable material": ["Recyclable material from any manufacturing process or discarded consumer products."], "Bonn": ["City in Germany, from 1949 to 1990 capital of West Germany, until 1999 seat of the government, now seat of several ministries bearer of the title \"Bundesstadt\". Located in the south of Northrhine-Westphalia on both sides of the Rhine river."], "Amsterdam": ["The capital city of the Netherlands."], "sky": ["Outer space visible from the Earth's surface, infinitely extending above us and\\nlimited by the horizon.", "The part of the earth's atmosphere and space outside it that is visible from earth's surface. During the day it is perceived as blue, and at night as black.", "The space above the earth's surface where planes fly."], "pebble": ["A small (and usually irregular) piece of mineral, approximately 20-200 mm in diameter.", "Small stone abraded by water."], "rainbow": ["A multicoloured arc in the sky caused by the refraction of light within droplets of rain in the air."], "Veneto": ["A region in the North East of Italy; it borders Austria to the North, Friuli-Venezia Giulia to the East, Emilia-Romagna to the South, Lombardia and Trentino-Alto Adige to the West."], "Madrid": ["The capital city of Spain.", "ISO 639-6 entity"], "twenty-one": ["The cardinal number occurring after twenty and before twenty-two, represented in Roman numerals as XXI and in Arabic numerals as 21."], "twenty-two": ["The cardinal number occurring after twenty-one and before twenty-three, represented in Roman numerals as XXII and in Arabic numerals as 22."], "twenty-three": ["The cardinal number occurring after twenty-two and before twenty-four, represented in Roman numerals as XXIII and in Arabic numerals as 23."], "twenty-four": ["The cardinal number occurring after twenty-three and before twenty-five, represented in Roman numerals as XXIV and in Arabic numerals as 24."], "twenty-five": ["The cardinal number occurring after twenty-four and before twenty-six, represented in Roman numerals as XXV and in Arabic numerals as 25."], "twenty-six": ["The cardinal number occurring after twenty-five and before twenty-seven, represented in Roman numerals as XXVI and in Arabic numerals as 26."], "twenty-seven": ["The cardinal number occurring after twenty-six and before twenty-eight, represented in Roman numerals as XXVII and in Arabic numerals as 27."], "twenty-eight": ["The cardinal number occurring after twenty-seven and before twenty-nine, represented in Roman numerals as XXVIII and in Arabic numerals as 28."], "twenty-nine": ["The cardinal number occurring after twenty-eight and before thirty, represented in Roman numerals as XXIX and in Arabic numerals as 29."], "thirty-one": ["The cardinal number occurring after thirty and before thirty-two, represented in Roman numerals as XXXI and in Arabic numerals as 31."], "thirty-two": ["The cardinal number occurring after thirty-one and before thirty-three, represented in Roman numerals as XXXII and in Arabic numerals as 32."], "thirty-three": ["The cardinal number occurring after thirty-two and before thirty-four, represented in Roman numerals as XXXIII and in Arabic numerals as 33."], "thirty-four": ["The cardinal number occurring after thirty-three and before thirty-five, represented in Roman numerals as XXXIV and in Arabic numerals as 34."], "thirty-five": ["The cardinal number occurring after thirty-four and before thirty-six, represented in Roman numerals as XXXV and in Arabic numerals as 35."], "thirty-six": ["The cardinal number occurring after thirty-five and before thirty-seven, represented in Roman numerals as XXXVI and in Arabic numerals as 36."], "thirty-seven": ["The cardinal number occurring after thirty-six and before thirty-eight, represented in Roman numerals as XXXVII and in Arabic numerals as 37."], "thirty-eight": ["The cardinal number occurring after thirty-seven and before thirty-nine, represented in Roman numerals as XXXVIII and in Arabic numerals as 38."], "thirty-nine": ["The cardinal number occurring after thirty-eight and before forty, represented in Roman numerals as XXXIX and in Arabic numerals as 39."], "above": ["In or to a higher place; higher than; on or over the upper surface.", "Figuratively, higher than; superior to, in any respect; higher in measure or degree than.", "Surpassing in number or quantity; more than.", "At the top.", "At an earlier place.", "Appearing earlier in the same text.", "An earlier section of a written text."], "add": ["To state in addition; to say further.", "To join or unite, as one thing to another, or as several particulars, so as to increase the number, augment the quantity, enlarge the magnitude, or so as to form into one aggregate; to sum up; to put together mentally, as, to add numbers; to add up a column.", "To apply a quality on (a person).", "To perform the arithmetical operation of addition.", "To constitute an addition."], "punctuation mark": ["A written sign used to mark the structure of a written text; either in between sentences or within sentences."], "agree": ["Come to a mutual understanding or agreement or a common plan, to create an appointment, harmonize mutual ideas about a presumed future.", "To be in accord in opinion, statement, or action; to be in unison or concord; to be united or consistent.", "To achieve harmonized in opinion, feeling, statement, or action; to get in unison or concord; to get united or consistent.", "To correspond in gender, number, case, or person.", "To be compatible, similar or consistent; coincide in their characteristics.", "To be in accord.", "To consent or assent to a condition, or agree to do something."], "take": ["To grasp with the hands.", "To grab and move to oneself.", "To get into one's possession", "To gain a position by force.", "To carry, particularly to a particular destination.", "To make a choice from a number of alternatives.", "Soutenir ou porter sans \u00e9chouer ou se casser.", "(baseball) To not swing at a pitch.", "To ingest food, medicine, drugs, etc.", "To interpret something in a certain way; convey a particular meaning or impression.", "To transport toward somewhere; to take something or somebody with oneself somewhere.", "To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly.", "To accept without verification or proof.", "To point or cause to go (blows, weapons, or objects such as photographic equipment) towards", "To receive, especially with a consent, with favour or with approval, something given or offered.", "To acquire or catch (a disease, something noxious, bad condition).", "To travel or go by means of a certain kind of transportation (e.g. a bus), or a certain route (e.g. Route 1)."], "Tokyo": ["A city in Japan, seat of the Japanese government and de facto capital of Japan."], "Tokyo Prefecture": ["One of the Prefectures of Japan. It consists of the 23 \"special wards\" that make up Tokyo city, the Tama region west of them, and the Izu and Ogasawara Islands to the south."], "power cut": ["A large-scale disruption in electric power supply."], "malady": ["A definite pathological process having a characteristic set of signs and symptoms which are detrimental to the well-being of the individual.", "An injury, disorder or disease that causes physical or mental suffering to the affected person or animal."], "leave": ["To give up control of, to surrender.", "To move away from a place, a situation or a talk.", "To move out of or depart from.", "To give the custody, care, use etc., to leave in the hands of.", "To go away from a place; to leave."], "take a walk": ["To walk around on foot without a specific goal, just for breathing fresh air or excercise."], "Beijing": ["The capital of the People's Republic of China. Literally \"Northern Capital\". The political and cultural center of China, with a history of more than 3000 years."], "go for a walk": ["To walk around on foot without a specific goal, just for breathing fresh air or excercise."], "go for a stroll": ["To walk around on foot without a specific goal, just for breathing fresh air or excercise."], "acquaintance": ["A person that someone has met repeatedly, and has a superficial knowledge of."], "German Democratic Republic": ["A German socialist state, founded on October 7th 1949 in the Soviet sectors of Germany. It acceded to the Federal Republic of Germany on October 3rd, 1990, the German reunification."], "GDR": ["A German socialist state, founded on October 7th 1949 in the Soviet sectors of Germany. It acceded to the Federal Republic of Germany on October 3rd, 1990, the German reunification."], "knight": ["A piece in the game of chess often shaped to resemble the head of a horse.", "A title of nobilty or gentility applied exclusively to males, originating in the Middle Ages. Their principal duty was to fight as heavy cavalry."], "whinge": ["To complain or protest in an excessive, annoying or persistent way."], "whine": ["To complain or protest in an excessive, annoying or persistent way."], "forty-nine": ["The cardinal number occurring after forty-eight and before fifty, represented in Roman numerals as XLIX and in Arabic numerals as 49."], "forty-eight": ["The cardinal number occurring after forty-seven and before forty-nine, represented in Roman numerals as XLVIII and in Arabic numerals as 48."], "forty-seven": ["The cardinal number occurring after forty-six and before forty-eight, represented in Roman numerals as XLVII and in Arabic numerals as 47."], "forty-six": ["The cardinal number occurring after forty-five and before forty-seven, represented in Roman numerals as XLVI and in Arabic numerals as 46."], "forty-five": ["The cardinal number occurring after forty-four and before forty-six, represented in Roman numerals as XLV and in Arabic numerals as 45."], "forty-four": ["The cardinal number occurring after forty-three and before forty-five, represented in Roman numerals as XLIV and in Arabic numerals as 44."], "forty-three": ["The cardinal number occurring after forty-two and before forty-four, represented in Roman numerals as XLIII and in Arabic numerals as 43."], "forty-two": ["The cardinal number occurring after forty-one and before forty-three, represented in Roman numerals as XLII and in Arabic numerals as 42."], "forty-one": ["The cardinal number occurring after forty and before forty-two, represented in Roman numerals as XLI and in Arabic numerals as 41."], "fifty-nine": ["The cardinal number occurring after fifty-eight and before sixty, represented in Roman numerals as LIX and in Arabic numerals as 59."], "fifty-eight": ["The cardinal number occurring after fifty-seven and before fifty-nine, represented in Roman numerals as LVIII and in Arabic numerals as 58."], "fifty-seven": ["The cardinal number occurring after fifty-six and before fifty-eight, represented in Roman numerals as LVII and in Arabic numerals as 57."], "fifty-six": ["The cardinal number occurring after fifty-five and before fifty-seven, represented in Roman numerals as LVI and in Arabic numerals as 56."], "fifty-five": ["The cardinal number occurring after fifty-four and before fifty-six, represented in Roman numerals as LV and in Arabic numerals as 55."], "fifty-four": ["The cardinal number occurring after fifty-three and before fifty-five, represented in Roman numerals as LIV and in Arabic numerals as 54."], "fifty-three": ["The cardinal number occurring after fifty-two and before fifty-four, represented in Roman numerals as LIII and in Arabic numerals as 53."], "fifty-two": ["The cardinal number occurring after fifty-one and before fifty-three, represented in Roman numerals as LII and in Arabic numerals as 52."], "fifty-one": ["The cardinal number occurring after fifty and before fifty-two, represented in Roman numerals as LI and in Arabic numerals as 51."], "handpicked": ["Very carefully and cautiously selected."], "tired": ["In need of some rest or sleep, usually as a result of hard work or physical activity.", "Repeated too often; overfamiliar through overuse."], "Germany": ["A central European country, with capital Berlin."], "Oslo": ["The capital and largest city of Norway."], "Kyoto": ["A city in the Kansai region of Japan, with a population close to 1.5 million. Until 1868 the imperial capital of Japan. The capital of Kyoto Prefecture."], "UNESCO World Heritage Site": ["A specific site (such as a forest, mountain range, lake, desert, building, complex, or city) that has been nominated and confirmed for inclusion on the list maintained by the international World Heritage Programme administered by the UNESCO World Heritage Committee, composed of 21 State Parties (countries) which are elected by the General Assembly of States Parties for a fixed term (similar to the United Nation's Security Council)."], "World Heritage Site": ["A specific site (such as a forest, mountain range, lake, desert, building, complex, or city) that has been nominated and confirmed for inclusion on the list maintained by the international World Heritage Programme administered by the UNESCO World Heritage Committee, composed of 21 State Parties (countries) which are elected by the General Assembly of States Parties for a fixed term (similar to the United Nation's Security Council)."], "UNESCO World Heritage": ["All sites and immaterial culture that has been nominated and confirmed for inclusion on the list maintained by the international World Heritage Programme administered by the UNESCO World Heritage Committee."], "moe": ["A slang word used within anime fandom originally referring to fetish for or love for characters in video games or anime and manga."], "Mo\u00e9": ["A slang word used within anime fandom originally referring to fetish for or love for characters in video games or anime and manga."], "Hokkaido": ["The northernmost of the four Japanese main islands and one of the prefectures of Japan."], "older sister": ["A female with more years of age than one or more of her siblings."], "elder sister": ["A female with more years of age than one or more of her siblings."], "big sister": ["A female with more years of age than one or more of her siblings."], "big brother": ["A male with more years of age than one or more of his siblings."], "older brother": ["A male with more years of age than one or more of his siblings."], "elder brother": ["A male with more years of age than one or more of his siblings."], "younger brother": ["A male with fewer years of age than one or more of his siblings."], "little brother": ["A male with fewer years of age than one or more of his siblings.", "A male with fewer years of age than all of his siblings."], "little sister": ["A female who is younger than one or more of her siblings."], "younger sister": ["A female who is younger than one or more of her siblings."], "hazel": ["The plant that produces the hazelnut. Botanical name: Corylus avellana.", "A deep red-orange colour, including the colour of hazelnuts; RAL Code 8011."], "door": ["An opening, or passage in a fence or wall; the entrance through which you enter or leave a room or building.", "A moveable barrier that can be closed or open to control access to a building, a room, a car, an area, etc."], "vulnerable species": ["A species that is likely to become endangered in the near future."], "absorption": ["The taking in of fluids or other substances by cells or tissues.", "The process in which radiant energy is retained by a substance."], "administrative court": ["An independent, specialized judicial tribunal in which judges or officials are authorized by a government agency to conduct hearings and render decisions in proceedings between the government agency and the persons, businesses or other organizations that it regulates.\\n(Source: BLD)"], "Munich": ["The capital of the German Federal State of Bavaria and Germany's third largest city."], "Bavaria": ["A Free State (German: Freistaat), with an area of 70,553 km\u00b2 and 12.4 million inhabitants, the southernmost state of today's Germany. Its capital is Munich."], "agreement": ["The coming together in accord of two minds on a given proposition. In law, a concord of understanding and intention between two or more parties with respect to the effect upon their relative rights and duties, of certain past or future facts or performances. The consent of two or more persons concerning respecting the transmission of some property, right, or benefits, with the view of contracting an obligation, a mutual obligation.\\n(Source: WESTS)", "A convention, or promise of two or more parties, by deed in writing, signed, and delivered, by which either of the parties pledges himself to the other that something is either done, or shall be done, or shall not be done, or stipulates for the truth of certain facts.\\n(Source: WESTS)", "The oral or written statement of an exchange of promises.", "In agreement with."], "insulation": ["The process of preventing or reducing the transmission of electricity, heat, or sound to or from a body, device, or region by surrounding it with a nonconducting material.\\n(Source: CED)"], "bigger": ["Comparative of big."], "obscure": ["Known vaguely or incompletely, if at all.", "To hide from view.", "Marked by difficulty of style or expression.", "Expressed in an unclear fashion.", "Difficult to find."], "mayor": ["The leader of a city or municipality.", "The female leader of a city or municipality.", "The male leader of a city or municipality."], "mayoress": ["The female leader of a city or municipality."], "older": ["Comparative of old."], "ringing": ["Attachment of a numbered ring to the leg of a bird so that its movements can be recorded.", "Loud and clear."], "empathy": ["The sympathetic identification and understanding of someone else's feelings or motives."], "finish": ["To end something, to bring something to a conclusion.", "The end of something; a goal that is / was to accomplish (noun)", "A protective coating applied to a surface to shield it from moisture and scratches", "To apply a treatment to (a surface, etc).", "To have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical."], "dichloro-diphenyl-trichloroethane": ["A persistent organochlorine insecticide, also known as dichlorodiphenyltrichloroethane, that was introduced in the 1940s and used widely because of its persistence (meaning repeated applications were unnecessary), its low toxicity to mammals and its simplicity and cheapness of manufacture. It became dispersed all over the world and, with other organochlorines, had a disruptive effect on species high in food chains, especially on the breeding success of certain predatory birds. DDT is very stable, relatively insoluble in water, but highly soluble in fats. Health effects on humans are not clear, but it is less toxic than related compounds. It is poisonous to other vertebrates, especially fish, and is stored in the fatty tissue of animals as sublethal amounts of the less toxic DDE. Because of its effects on wildlife its use in most countries is now forbidden or strictly limited.\\n(Source: MGH / ALL)"], "EU": ["The 27 nations (Austria, Belgium, Bulgaria, Cyprus, Czechia, Denmark, Estiona, Finland, France, Germany, Greece, Hungary, Ireland, Italy, Latvia, Luxembourg, Malta, the Netherlands, Poland, Portugal, Romania, Slovakia, Slovenia, Spain, Sweden and the UK) that have joined together to form an economic community with common monetary, political and social aspirations."], "IMF": ["An international organization established in 1944, affiliated with the United Nations that acts as an international bank facilitating the exchange of national currencies and providing loans to member nations."], "energy cell": ["The basic building block of a battery. It is an electrochemical device consisting of an anode and a cathode in a common electrolyte kept apart with a separator. This assembly may be used in its own container as a single cell battery or be combined and interconnected with other cells in a container to form a multicelled battery."], "cell": ["The microscopic functional and structural unit of all living organisms, consisting of a nucleus, cytoplasm, and a limiting membrane.", "The basic building block of a battery. It is an electrochemical device consisting of an anode and a cathode in a common electrolyte kept apart with a separator. This assembly may be used in its own container as a single cell battery or be combined and interconnected with other cells in a container to form a multicelled battery."], "Galvanic cell": ["The basic building block of a battery. It is an electrochemical device consisting of an anode and a cathode in a common electrolyte kept apart with a separator. This assembly may be used in its own container as a single cell battery or be combined and interconnected with other cells in a container to form a multicelled battery."], "electrochemical cell": ["The basic building block of a battery. It is an electrochemical device consisting of an anode and a cathode in a common electrolyte kept apart with a separator. This assembly may be used in its own container as a single cell battery or be combined and interconnected with other cells in a container to form a multicelled battery."], "scrape": ["To move an object against another object such that abrasion or minor cutting occurs.", "A broad, shallow injury left by scraping."], "foam": ["A mass of adjacent small pockets of air or bubbles with solid or liquid boundaries.", "To create foam."], "resolution": ["A formal expression of the opinion of an official body or a public assembly, adopted by vote, as a legislative resolution.", "The conclusion or end to which any course or condition of things leads.", "The act of intending to do something.", "The degree of fineness with which an image can be recorded or produced, often expressed as the number of pixels per unit of length (typically an inch)."], "low-cost construction": ["A way to construct houses and other buildings in a cost-effective way."], "corn on the cob": ["An ear of sweetcorn that is cooked and served whole and eaten from its cob (usually with butter)."], "Honshu": ["The largest island of Japan, called the Mainland; it is south of Hokkaido across the Tsugaru Strait, north of Shikoku across the Inland Sea, and northeast of Kyushu across the Kanmon Strait. It is the seventh largest island, and the second most populous island in the world."], "mainland": ["A large and continuous mass of land representing most of a region or a country but excluding outlying islands.", "A large piece of land as seen from the outlying islands belonging to the same political entity."], "Padua": ["Capital of the Province of Padua, in the Region Veneto, Italy.", "Province of the region Veneto, Italy."], "both": ["One and the other of two people or things."], "Firenze": ["The fictional centaur that teaches Divination at Hogwarts (from the Harry Potter series by JK Rowling)."], "Florence": ["The capital city of Tuscany, a region in Italy.", "A province in the Tuscany region of Italy."], "digestion": ["The reduction in volume and the decomposition of highly putrescible organic matter to relatively stable or inert organic and inorganic compounds. Sludge digestion is usually done by aerobic organisms in the absence of free oxygen.", "The process, in the gastrointestinal tract, by which food is converted into substances that can be utilized by the body."], "cutting": ["The act or process of felling or uprooting standing trees.", "In plant propagation, young shoots or stems removed for the purpose of growing new plants by vegetatively rooting the cuttings."], "quill": ["A writing implement, made from a bird's feather.", "Part of the central axis of a feather, which bears no barbs and which is implanted in the skin."], "quill pen": ["A writing implement, made from a bird's feather."], "hearing": ["The general perceptual behaviour and the specific responses made in relation to sound stimuli."], "Kingdom of the Netherlands": ["A country in Europe, north of Belgium, officially the Kingdom of the Netherlands. Also existing of the Netherlands Antilles and Aruba, with capital Amsterdam."], "axle": ["The central part of a wheel, that usually does not turn."], "remains": ["That which is left behind of a body, especially after cremation or decay.", "The physical structure of a dead animal or person."], "carcass": ["The body of a dead animal, on which other animals have begun to feed.", "A dead body.", "The dead body of an animal."], "recipe": ["A set of instructions (typically consisting of ingredients and a method) for creating something (usually a food product or dish)."], "speculaas": ["A set of spices (predominantly cinnamon) that are used in the making of certain types of shortbread biscuits.", "A type of shortbread biscuit (typically made for consumption on December 5 - St. Nicholas' Eve) that is traditionally stamped with an image or figure on the front."], "translation": ["The act of converting words and texts from one language to another.", "The result of converting words and texts from one language to another.", "Move of an object to a new location without change in the size or orientation of an object.", "The process during which the information in mRNA molecules is used to construct proteins.", "The process of transforming all or part of a source program into a program image that contains all the information needed for the program to run."], "interpretation": ["An explanation of something that is not immediately obvious."], "dummy": ["A rubber or plastic nipple that is put into a baby's mouth in order to comfort or quiet.", "A person, especially a large male, who is clumsy or a simpleton; an idiot."], "drainage basin": ["An area of land where all rainwater and melting snow naturally moves to the same body of water."], "balance": ["An equality between the sums total of the two sides of an account, or the excess on either side.", "A tool to measure the weight of something.", "A state of equilibrium."], "database": ["A computerised compilation of data, facts and records that is organised for convenient access, management and updating."], "Cinderella": ["A popular fairy tale, best known is the version by Charles Perrault and the later Disney movie."], "Thunderball": ["The title of a 1965 James Bond movie starring Sean Connery."], "grave": ["A place (commonly marked with a headstone) where one or more people are buried (usually in a coffin underneath the ground).", "(Very) serious.", "Causing fear or anxiety by threatening great harm."], "sponge cake": ["A light, soft, baked dessert (commonly layered with cream and jam) that is typically made with flour, sugar, baking powder and eggs."], "sponge": ["An member of any of the species belonging to the phylum Porifera. They are marine porous animals.", "A piece of porous material used for washing."], "spotted dick": ["A sweet steamed pudding (made mainly from eggs, flour, spices, dried fruit and suet) that is especially popular in the United Kingdom."], "continue": ["To restart a previously terminated action.", "To maintain an action, state or condition without interruption.", "To continue talking."], "table": ["A piece of furniture that generally consists of a hard, flat, horizontal surface, which is elevated and stabilised by 3 or more legs (usually 4).", "A systematic arrangement of data, usually in rows and columns.", "A company of people assembled at a table for a meal or game.", "A piece of furniture with tableware for a meal laid out on it.", "Flat tableland with steep edges.", "Food or meals in general.", "To arrange or enter in tabular form.", "A set of data elements (values) that is organized using a model of columns (which are identified by their name) and rows."], "nautical chart": ["A map for navigation that delineates a portion of the sea, indicating the outline of the coasts and the position of rocks, sandbanks and other parts of a sea."], "fireball": ["A magic spell that creates a hot explosion of fire (in Fantasy and Roleplaying games).", "A very bright meteor which can be much brighter than any star."], "jet lag": ["Physiological ailments like headache and nausea, caused by the readjustment of the inner clock of the body to the time difference after a long-distance flight."], "hangover": ["The sickness, nausea and headaches that occur the morning after a person drinks too much alcohol."], "Hanover": ["The capital of the federal state of Lower Saxony (Niedersachsen), Germany, situated on the river Leine. Seat of CeBIT, Hannover Messe (Hannover exposition) and Expo 2000."], "xylophone": ["Musical instrument made of wooden bars each shaped to resonate at a given pitch when struck."], "sleeping bag": ["A padded or insulated bag large enough to surround the whole body and which keeps the user warm while sleeping, used as a substitute for a bed."], "immortal": ["Not able to die (in terms of a person or creature).", "A person or creature that is not able to die.", "Not susceptible to death or aging, never dying or growing older."], "mortal": ["Having to die eventually (in terms of a person or creature).", "A person that will die eventually."], "has": ["The third person singular present indicative of the verb \"to have\"."], "have": ["To ingest food, medicine, drugs, etc.", "To be in possession (of an object).", "To be in a given relationship to a person.", "Auxiliary verb used in forming the perfect aspect.", "To release an offspring from one's own body; to cause to be born.", "To have specific characteristics.", "To hold or possess either in an abstract or concrete sense.", "To contain as parts of itself.", "To be affected with, to be possessed by.", "To be under the obligation to.", "To hold in the mind.", "To experience, to attain, to enjoy.", "To assert, to phrase.", "To possess by obtaining or receiving.", "To engage in sexual intercourse with.", "To catch someone in an argument.", "To trick someone.", "To wish, or require that something be done.", "To possess, as an educational achievement; to understand; to be versed in.", "To partake of a particular substance (especially a food or drink) or action.", "To allow, bear, or suffer.", "[Used to express preference, when the past subjunctive form (had) is combined with an adjective in the comparative or superlative]", "Used as interrogative auxiliary verb with a following pronoun to form tag questions.", "To go through (mental or physical states or experiences)."], "raindrop": ["A single droplet of rainwater that has just fallen or is falling from the sky."], "wheel arch": ["The recess at the side of a car's body that the wheels are in."], "chip": ["An area of an object (such as a mug or plate) where a small piece has broken off, rendering the object damaged.", "A small fragment of something broken off from the whole."], "crisp": ["A thin slice of potato (baked until firm and brittle, then seasoned) that is commonly sold in packets and comes in various flavours.", "Abruptly or brusquely short."], "air sac": ["A tiny, thin-walled, capillary-rich sac in the lungs where the exchange of oxygen and carbon dioxide takes place."], "everybody": ["All of the people in a group.", "Every person."], "dewdrop": ["A single droplet of dew while it remains on the object it formed upon."], "further": ["To help to advance (in terms of knowledge).", "In addition to what has been said.", "More or continued.", "At a more advanced or later point in a trajectory (such as a journey).", "(The quantity) Whereby things are increased.", "To promote the growth of."], "farther": ["At a more advanced or later point in a trajectory (such as a journey)."], "tomb": ["A place (commonly marked with a headstone) where one or more people are buried (usually in a coffin underneath the ground)."], "hammer home": ["To repeatedly or continually emphasise (an opinion or idea) until or so that a person or group of people understands it."], "drive home": ["To repeatedly or continually emphasise (an opinion or idea) until or so that a person or group of people understands it.", "To move (in a car or other vehicle) to the place where one lives or is staying."], "impact": ["To impact with another object, resulting in a change of direction and/or velocity of one or both objects.", "Impression, consequence or effect.", "The striking of one body against another."], "bump": ["To impact with another object, resulting in a change of direction and/or velocity of one or both objects.", "A local swelling on the skin caused by illness or injury.", "To encounter something by accident or after searching for it.", "A hard and loud hit received by someone when falling."], "lapidate": ["To kill or excecute (a person) by throwing rocks or boulders at and on them."], "Hamburger": ["A person who is originally from Hamburg or who currently lives in Hamburg"], "snowflake": ["An agglomeration of ice crystals falling from the sky."], "am": ["The first person singular present indicative of the verb \"to be\"."], "hailstone": ["A small pellet of ice falling from the sky."], "12-acetylactein": ["Actein with an acetyl group on the 12th carbon atom of the main chain."], "non governmental organisation": ["A non-profit group or association that acts outside of institutionalized political structures and pursues matters of interest to its members by lobbying, persuasion, or direct action."], "sodium": ["A soft silvery metallic element with the symbol Na and atomic number 11, occurs principally as table salt (sodium chloride) and as the minerals amphibole, cryolite, halite, zeolite."], "storage": ["A series of actions undertaken to deposit or hold goods, materials or waste in some physical location, as in a facility, container, tank or dumping site.", "Computer components, devices and recording media that retain data for some interval of time."], "stock": ["A group of individuals of one species within a specified area.\\n(Source: LBC)", "The descendants of one individual."], "substitutability": ["The capability of being replaced by another substance or object, for example, sweeteners being used in the place of sugar."], "thumb": ["To try to get a ride in a passing vehicle while standing at the side of a road. Generally by either sticking out ones thumb or holding a sign with one's stated destination.", "The shortest and thickest of the fingers that can be placed against the others in order to create a firm grip."], "long finger": ["The middle and the longest of the fingers."], "ring finger": ["The finger between the long finger and the little finger."], "little finger": ["The smallest finger of a hand."], "potassium": ["A silvery-white metallic alkali metal element with the symbol K and atomic number 19, occurs principally as component of sea water and in several minerals like carnallite, polyhalite and sylvite. It is being used as fertilizer as either the chloride, sulfate or carbonate."], "honey bee": ["A stinging, social, domesticated insect (Apis mellifera) kept by humans for the creation of beeswax and honey."], "pain": ["An unpleasant, usually localised physical sensation that is often the result of an injury, disease or other ailment.", "Something which annoys."], "want": ["To have a strong desire for something."], "harp": ["A stringed musical instrument (part of the classic symphony orchestra) that is stroked or plucked with the fingers and consists of an upright frame strung with multiple strings."], "lot": ["Anything that is used to determine a result randomly, by chance or without man's choice or will (such as a die, stone or slip of paper).", "A great number or large amount of things not placed in a pile.", "The part, or outcome, that falls to one, as it were, by chance, or without his planning.", "A large quantity or number.", "A number of things taken collectively; any collection in its entirety.", "One or more items auctioned or sold as a unit, separate from other items.", "A portion or plot of land with defined borders, usually smaller than a field.", "A motion-picture studio and its surrounding property.", "A distinct portion or parcel of something, usually merchandise.", "Kind of person.", "To divide or distribute by lot.", "To assign to someone as his or her lot.", "To divide a piece of land into lots.", "A number of people of the same kind, or associated in some way, taken collectively.", "That which is assigned to a person as his share or portion.", "A method of deciding something (like the winner of a prize or the person who will do a task) by casting or drawing a lot [object used to determine a result randomly].", "All members of a set."], "score": ["The final or running total of points gained or won (by an individual or team) in a game, sports match or other competitive event.", "To remember or count the final or running total of points gained or won (by an individual or team) in a game, sports match or other competitive event.", "To earn one or more points in a game, sports match or other competitive event.", "To scratch (usually paper or cardboard) along a line or curve in order that folding it is easier; to make small marks into the surface of.", "The paper representation (usually including all of the musical parts in the piece) of a piece of music or musical composition or work.", "To take part in sexual activity (most commonly sexual intercourse) with another person for the purposes of sexual pleasure.", "To induce (a person) to consent to sexual relation."], "partition": ["To divide an object, area or space into sections or parts.", "A separately formatted section of a hard drive."], "brainbox": ["An intelligent person."], "have sex": ["To take part in sexual intercourse with a member of the opposite gender for the purposes of reproduction.", "To take part in sexual activity (most commonly sexual intercourse) with another person for the purposes of sexual pleasure.", "To take part in sexual intercourse.", "To have sex with."], "make love": ["To take part in sexual intercourse with a member of the opposite gender for the purposes of reproduction.", "To take part in sexual intercourse.", "To have sex with."], "shag": ["To take part in sexual activity (most commonly sexual intercourse) with another person for the purposes of sexual pleasure."], "assassinate": ["To deliberately and purposely end the life of a political, public or other significant figure, usually publically."], "salient": ["Immediately noticeable or standing out."], "prominent": ["Immediately noticeable or standing out."], "wealth": ["An abundance, plenty or great amount of something (usually money).", "Feeling well with a high standard of living."], "conspicuous": ["Immediately noticeable or standing out.", "Without any attempt at concealment; completely obvious."], "vent": ["To talk about or express a person's angers, grievances or worries, without necessarily expecting a response.", "The opening at the Earth's surface through which volcanic materials (lava, tephra, and gases) erupt.", "To give expression or utterance to.", "To expose to cool or cold air so as to cool or freshen."], "loom": ["A frame or machine (made of wood or other material) in which a weaver forms cloth out of thread; a machine for interweaving yarn or threads into a fabric."], "hunger pang": ["A sudden realisation (usually linked to one's tummy rumbling) that a person is very hungry or needs to eat."], "pang of hunger": ["A sudden realisation (usually linked to one's tummy rumbling) that a person is very hungry or needs to eat."], "run a mile": ["To escape, flee or leave a situation or relationship, usually as a result of a shocking or sudden announcement or revelation."], "spinning wheel": ["A device for making yarn or thread; having a single spindle and a wheel driven by hand or foot."], "boo": ["An exclamation that is said in order to scare or surprise a person.", "(Interjection) An exclamation used by a member of an audience, as at a stage play or sports game, to indicate derision or disapproval.", "An exclamation used by a member of an audience, as at a stage play or sports game, to indicate derision or disapproval.", "To shout extended exclamations of disapproval and derision at.", "To shout extended exclamations of disapproval and derision."], "fast food": ["A type of meal that is often pre-prepared and served quickly."], "junk food": ["A broad group of foods with unbalanced nutritional values."], "yarn": ["A twisted strand of fiber used for knitting.", "A retelling or account of events, especially a fictional or exaggerated one."], "pronunciation": ["The way words are made to sound when spoken."], "translation dictionary": ["A dictionary that informs how a word in one language is called in another."], "gnu": ["A large hooved (ungulate) mammal of the genus Connochaetes, which includes two species, both native to Africa."], "wildebeest": ["A large hooved (ungulate) mammal of the genus Connochaetes, which includes two species, both native to Africa."], "helium": ["A colorless, odorless, tasteless, nearly inert noble gas with the symbol He and atomic number 2. It is after hydrogen the second most abundant element in the universe. It is a component of air and is being used for balloon and airship fillings, as well as for deep-sea breathing systems in combination with oxygen."], "weaving": ["The process of making woven material on a loom"], "concept": ["Something understood, and retained in the mind, from experience, reasoning or/and imagination; a generalisation (generic, basic form), or abstraction (mental impression), of a particular set of instances or occurances."], "lexeme": ["The fundamental unit of vocabulary of a language."], "xerophyte": ["A plant that is adapted to circumstances where little water is available."], "cactus": ["Any member of the family Cactaceae, a family of New World succulent plants suited to a hot, semi-desert climate."], "Paris": ["The capital and largest city of France."], "grapheme": ["A fundamental unit of a writing system."], "glyph": ["A single formed character or symbol, usually representing a letter in a font"], "font": ["A grouping of consistently-designed glyphs, having the same size, and style.", "An ornamental water feature consisting of one or more streams of water originating from a statue or other structure.", "A basin for holy water."], "typeface": ["A grouping of consistently-designed glyphs, having the same size, and style."], "manuscript": ["A work that was written by hand."], "script": ["A written document containing the dialogue and action for a drama, a stage play, movie, or other performance.", "The text of a film or a television program.", "A system of characters used to write one or several languages.", "A - usually small - computer program or program fragment written in an interpreted computer language."], "Turkey": ["Country at the intersection of Europe and Asia on the Mediterranean, with capital Ankara."], "turkey": ["Either of two species of bird in the family Meleagrididae with fan-shaped tail and wattled neck."], "Chad": ["A country in Central Africa whose capital is N'Djamena.", "A Afroasiatic language belonging to a language family spoken across northern Nigeria, Niger, Chad, Central African Republic and Cameroon, belonging to the Afroasiatic phylum."], "Security Council": ["The United Nations Security Council, the organ of the United Nations charged with maintaining peace and security among nations"], "ceasefire": ["A temporary suspension of hostilities by mutual agreement of the warring parties."], "convoy": ["A group of vehicles or ships travelling in formation for mutual support, such as resisting attacks by an enemy."], "supply": ["The willingness and ability to sell a range of quantities of a good at a range of prices, during a given time period. Supply is one half of the market exchange process; the other is demand.\\n(Source: AMOS2)", "To state in addition; to say further.", "To give what is needed or desired.", "To give in order to satisfy a necessity.", "An amount of something supplied."], "delivery": ["Transportation and/or handing over of ordered goods to the orderer."], "perjury": ["The deliberate giving of false or misleading testimony under oath."], "yield": ["Compensation for the selling of goods and services.", "Profit or income created through an investment or a business transaction.", "The accumulated volume or biomass remaining from gross production after accounting for losses due to respiration during production, herbivory, litterfall, and other factors that decrease the remaining available biomass.\\n(Source: DUNSTE)", "To stop to oppose or resist.", "To be the cause or source of (feeling, effect, etc.)", "(Economics) The quantity produced, created, or completed.", "To produce as return, as from an investment; to give or supply.", "To end resistance, as under pressure or force.", "To bring in (e.g. interests, money, etc.)."], "Genoa": ["A city and the capital of the province of Genoa, and also the capital of Liguria.", "A province in the Liguria region of Italy"], "senior": ["Comparative of old.", "Being of a high rank.", "An older person (usually considered to be above the age of 60).", "A student in his/her final year of high school or university."], "photo": ["An image captured by a camera or some other device and reproduced as a picture, usually on a sensitized surface and formed by the chemical action of light or of radiant energy."], "Pluto": ["Dwarf planet in Solar system, formerly was considered the ninth planet.", "Dog of Mickey Mouse.", "A figure of the Roman mythology, god of the Underworld."], "Huey, Dewey, and Louie": ["The nephews of Donald Duck."], "Donald Duck": ["A fictional duck with a short temper that was created by Walt Disney."], "Gone with the Wind": ["An American novel by Margaret Mitchell, published in 1936 and won the Pulitzer Prize in 1937.", "A film from 1939, adapted from Margaret Mitchell's 1936 novel of the same name."], "Pulitzer Prize": ["An annual American award given for journalism, literature, and music."], "ontology": ["The branch of metaphysics that addresses the nature or essential characteristics of existence and of things that exist.", "A hierarchical structure of concepts or entities within a domain, organised by relationships."], "bat": ["A small, nocturnal, flying mammal of the order Chiroptera, which navigates by means of echolocation. It looks like a mouse with membranous wings extending from the forelimbs to the hind limbs or tail.", "A piece of brick cut along the narrow dimension.", "Half a brick when it is cut across.", "A saddle created to secure and carry goods on an animal."], "perfidy": ["The act of violating faith or allegiance; violation of a promise or vow, or of trust reposed."], "faithlessness": ["The act of violating faith or allegiance; violation of a promise or vow, or of trust reposed."], "treachery": ["The act of violating faith or allegiance; violation of a promise or vow, or of trust reposed.", "The breaking or violation of a presumptive social contract, trust, or confidence that produces moral and psychological conflict within a relationship amongst individuals, between organizations or between individuals and organizations."], "Curious George": ["A small monkey known for his curiosity with a friend in a big yellow hat, created by H.A. Rey."], "opening": ["A, often round, piece of nothingness in some solid.", "An unoccupied employment position.", "The first few moves in a game of chess.", "The first period of a game or play,"], "beak": ["External anatomical structure of birds which is used for taking food and for eating.", "To hit lightly with a picking motion."], "competition": ["The simultaneous demand by two or more organisms or species for an essential common resource that is actually or potentially in limited supply.", "A struggle to outperform others in order to win a prize or award."], "spit the dummy": ["To overreact (as an adult) to a situation childishly, in an angry or frustrated manner."], "extinct species": ["Animal or plant species which has completely disappeared from the planet."], "teen": ["A male juvenile between the onset of puberty and maturity; in the state of development between puberty and maturity.", "A female juvenile between the onset of puberty and maturity; in the state of development between puberty and maturity.", "A person between 13 and 19 years old.", "A juvenile between the onset of puberty and maturity; in the state of development between puberty and maturity."], "teenager": ["A male juvenile between the onset of puberty and maturity; in the state of development between puberty and maturity.", "A female juvenile between the onset of puberty and maturity; in the state of development between puberty and maturity.", "A person between 13 and 19 years old.", "A juvenile between the onset of puberty and maturity; in the state of development between puberty and maturity."], "small square": ["Small square."], "coppersmith": ["A person who forges things out of copper."], "grooming": ["Caring for horses or other animals by brushing and cleaning them."], "cement mixer": ["Device that uses cement, aggregate and water to produce concrete."], "concrete mixer": ["Device that uses cement, aggregate and water to produce concrete."], "sparkling water": ["Still water into which carbon dioxide gas has been dissolved."], "carbonated water": ["Still water into which carbon dioxide gas has been dissolved."], "soda water": ["Still water into which carbon dioxide gas has been dissolved."], "seltzer water": ["Still water into which carbon dioxide gas has been dissolved."], "notebook": ["A book in which notes or memoranda are written.", "A portable computer that is small enough and light enough to be used on one's lap."], "homework": ["Work that is done at home, especially school exercises set by a teacher.", "Preliminary or preparatory work."], "case": ["A judicial examination and determination of issues between parties to action; whether they need issues of law or of fact. A judicial examination, in accordance with law of the land, of a cause, either civil or criminal, of the issues between the parties, whether of law or fact, before a court that has proper jurisdiction.", "Something that is representative of all such things in a group; an occurrence of something.", "One of several similar instances or events which are being studied and compared.", "(Grammar) An instance of grammatical case; a category of nouns, pronouns, or adjectives, specialized (usually by inflection) to indicate a particular syntactic relation to other words in a sentence.", "(Grammar) (uncountable) A set of grammatical cases or their meanings in a particular language collectively.", "A box that contains or can contain a number of identical items of manufacture.", "A piece of luggage that can be used to transport an apparatus such as a sewing machine.", "Large (usually rectangular) piece of luggage used for carrying clothes, and sometimes suits, when travelling.", "A piece of furniture, Constructios partially of transparent glass or plastic, within which items can be displayed.", "The outer covering or framework of a piece of apparatus such as a computer.", "In typography, the nature of a piece of alphabetic type, whether a \u201ccapital\u201d (upper case) or \u201csmall\u201d (lower case) letter.", "To place (an item or items of manufacture) into a box, as in preparation for shipment.", "To survey (a building or other location) surreptitiously, as in preparation for a robbery.", "The grammaticalic case in which a noun is used.", "A comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy."], "lawsuit": ["A judicial examination and determination of issues between parties to action; whether they need issues of law or of fact. A judicial examination, in accordance with law of the land, of a cause, either civil or criminal, of the issues between the parties, whether of law or fact, before a court that has proper jurisdiction.", "Legal act\u0131on that has as a goal to have a judge take a decision.", "A comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy."], "suitcase": ["Large (usually rectangular) piece of luggage used for carrying clothes, and sometimes suits, when travelling."], "skinny": ["(Of a person or animal) Narrow in size, and usually indicating carrying little fat."], "scrawny": ["Very thin."], "meagerly": ["In a meager way."], "thinness": ["The property of being thin."], "leanness": ["The property of being thin."], "lose weight": ["To lose weight."], "metabolomics": ["The systematic study of the unique chemical fingerprints that specific cellular processes leave behind."], "yuk": ["An expression of disgust."], "Batman": ["A DC Comics fictional character and superhero who first appeared in Detective Comics #27 in May 1939."], "practice": ["Repetition of an activity to improve skill.", "The ongoing pursuit of a craft or profession, particularly in the fine arts.", "The observance of religious duties which a Church requires of its members.", "A customary action, habit, or behavior; a manner or routine.", "To repeat an activity as a way of improving one's skill.", "To perform or execute a craft or skill.", "A pattern of behavior inherited or acquired through frequent repetition.", "To avail oneself to (e.g. a principle, a religion, common sense, etc.)."], "perseverance": ["Persistent determination to adhere to a course of action."], "insistence": ["Persistent determination to adhere to a course of action."], "assiduity": ["Steady diligence to a job."], "Scrooge McDuck": ["The rich uncle of Donald Duck."], "patience": ["The quality of being patient."], "protagonist": ["The principal character in a work of fiction."], "however": ["[Phrase implying that the following clause is contrary to prior belief].", "In spite of that.", "in opposition to this fact (Re. restriction, opposition)", "From another point of view."], "nevertheless": ["In spite of that."], "etymology": ["The science dealing with the origin and historical development of words."], "silly": ["Lacking in intelligence.", "Showing a lack of good sense, wisdom or forethought.", "A state in which a group of people is continuously making silly jokes, that can nevertheless lead to laughing fits as a reaction. Under the right circumstances, the state can maintain itself or be induced in others contageously. The use of weed (Cannabis sativa) promotes the state in some individuals, but it can also be induced by a joke or reference to an (earlier) funny event.", "Marked by lack of intellectual acuity or somewhat mentally limited."], "foolish": ["Showing a lack of good sense, wisdom or forethought.", "Marked by lack of intellectual acuity or somewhat mentally limited."], "airstrike": ["A military strike by air forces on an enemy ground position."], "air strike": ["A military strike by air forces on an enemy ground position."], "on": ["Preposition, on something.", "Having the position over a given place, location or object."], "of": ["Containing, comprising or made from."], "bomb": ["A device filled with explosives used for destroying things.", "A very attractive woman.", "A failure; an unpopular entertainment production.", "A success; an enjoyable event.", "To fail spectacularly.", "To attack by using one or more bombs."], "bombshell": ["A very attractive woman."], "bombard": ["To attack by using one or more bombs."], "flash flood": ["A rapid flooding of low-lying areas."], "google": ["To search the Internet using Google."], "horny": ["Being in a state of sexual arousal.", "Possessing horns, like a goat (a member of the Caprinae subfamily of the Bovidae family) or the devil.", "Having calluses; having skin made tough and thick through wear."], "horned": ["Possessing horns, like a goat (a member of the Caprinae subfamily of the Bovidae family) or the devil."], "sexy": ["Sexually attractive."], "through": ["With the use of; by means of.", "From one side of an opening to the other."], "shrine": ["Originally a container, especially for a relic and often a cult image, and/or a holy or sacred place containing the same."], "Lithuania": ["A baltic European country with a northern border with Latvia, eastern border with Belarus, southern border with Poland, southwestern border with the Russian enclave of Kaliningrad, and western border with the Baltic Sea."], "armchair": ["A chair with supports for the arms or elbows."], "relic": ["A part of the body of a saint or something that was owned by a saint, kept for veneration."], "begin": ["To begin an activity.", "To take the first step or steps in carrying out an action.", "To have a beginning, in a temporal, spatial, or evaluative sense.", "To set in motion, cause to start.", "To start to speak or say."], "kick the bucket": ["To cease to live."], "afternoon": ["A greeting that is said when meeting or departing in the afternoon.", "The part of the day which follows noon, between noon and evening."], "danger": ["A situation that constitutes an immediate risk for injury on a person or property."], "recent": ["Happening a short while ago."], "morning": ["The period of time from the start of the day (midnight) until midday (12:00).", "A greeting that is said when meeting or departing in the morning.", "The part of the day between dawn and midday."], "fresh": ["Not canned or frozen (e.g. vegetables).", "Not showing due respect.", "Recently made, produced, or harvested (e.g. bread, scent, etc.).", "(of a cycle) beginning or occurring again (e.g. a fresh start or idea)."], "elegant": ["Characterized by or exhibiting refinement, grace and beauty."], "chic": ["Characterized by or exhibiting refinement, grace and beauty."], "try": ["To put to the test, as for its quality, or give experimental use to.", "A score in rugby (worth 5 points) which is made by touching the ball on the ground behind the touchline.", "Earnest and conscientious activity intended to do or accomplish something.", "To exert oneself to do or effect something; to make an effort or attempt.", "To test the limits of.", "To put on trial, hear the case and act as the judge.", "To examine or hear (evidence or a case) by judicial process.", "To give pain or trouble to."], "mirror": ["A surface that reflects light.", "A smooth surface, usually made of glass with reflective material painted on the underside, that reflects light so as to give an image of what is in front of it."], "reproduction": ["Any of various processes, either sexual or asexual, by which an animal or plant produces one or more individuals similar to itself.", "Creating an exact duplicate of an original using a photographic method."], "accent": ["A mark or symbol (found in the written text of various languages) that changes the sound of the letter or the emphasis within the word when spoken.", "The way of pronouncing or annunciating words and phrases that is characteristic of a particular region or area.", "A musical mark or symbol (written above a note or chord) which indicates that the player should play it louder.", "To stress, single out as important.", "To put stress on; to utter with an accent."], "lithium": ["A soft silver white alkali metallic element with the symbol Li and atomic number 3, occurs principally as the minerals lepidolite, spodumene, and amblygonite. It is being used in a lithium ion battery."], "Lebanon": ["A country in Southwest Asia with capital Beirut."], "aye": ["A word used to show agreement or affirmation of something."], "bench": ["Seat for more than one person, narrow and long, with or without back support, made of hard materials (wood, metal), that is normally found in public places (churches, parks, etc.)."], "shoal": ["Group of a large number of fish (or other sea animals, such as dolphins or whales), normally from the same species, that swim together.", "A somewhat linear landform within or extending into a body of water, typically composed of sand, silt or small pebbles."], "Greenland": ["A self-governing island that is a territory of Denmark."], "Middle East": ["The region comprising southwest Asia and northeast Africa."], "Florida": ["A southeast state of the United States of America"], "spike": ["The fruiting body of a grain plant.", "A spike-shaped metal fastener used for joining wood or similar materials.", "A sharp peak in a graph.", "To add a drug or alcoholic liquor (to a person's drink) without the owner's consent or knowledge.", "A hard, sharp object made of wood or metal.", "Add alcohol to (beverages)"], "lemma": ["A canonical form of a term, particularly in the context of highly inflected languages.", "Proven mathematical theorem that is primarily used as a tool to prove another theorem."], "architect": ["A professional who designs buildings or other structures, or who prepares plans and superintends construction."], "house band": ["A musical group that have a permanent contract with a certain establishment, for example a restaurant."], "manatee": ["Any of several plant-eating marine mammals, of family Trichechidae, found in tropical regions."], "gorilla": ["The largest of the great apes (Hominidae), native to the forests of central Africa."], "sardonic": ["Marked by or displaying scornful or disdainful irony or mocking."], "cynical": ["Marked by or displaying scornful or disdainful irony or mocking.", "Inclined to believe the worst about people."], "athlete": ["A person trained to compete in sports."], "performer": ["A person who exhibits and executes a skill or talent (often in music or drama) in front of an audience, in order to entertain them."], "uncertainty": ["A state or condition of uncertainty.", "Challenge about the truth or accuracy of a matter."], "disbelief": ["Challenge about the truth or accuracy of a matter."], "wiki": ["Any website based on any kind of Wiki software which enables users to add to, edit and delete from the site's content quickly."], "interrogate": ["To examine by asking (a witness, for example)."], "Pulcinella": ["A classical character that originated in the Commedia dell'arte of the 17th century and became a stock character in Neapolitan puppetry."], "Punch": ["A classical character that originated in the Commedia dell'arte of the 17th century and became a stock character in Neapolitan puppetry."], "Somaliland": ["An unrecognized de facto sovereign state located in northwest Somalia in the Horn of Africa."], "victim": ["Anyone who is harmed by another person or by an accident", "A living creature which is slain and offered as human or animal sacrifice, usually in a religious rite.", "A person who is wounded or killed in a battle, accident etc."], "Bali": ["An Indonesian island, one of the Lesser Sunda Islands.", "A language spoken on the island of Bali.", "A language spoken in the Democratic Republic of Congo.", "A dialect of the Hadza language.", "A language spoken in the city of Numan, Adamawa, Nigeria."], "Ewe": ["A Kwa language spoken in Ghana and Togo by approximately three million people."], "spaghetti": ["A variety of long, thin pasta, originally from Italy, which consists mostly of semolina."], "be right": ["To say something that is true."], "Sri Lanka": ["An island country in the Indian Ocean near the southern tip of India with ca. 20 million inhabitants and the capital Colombo."], "safe": ["Free from risk; harmless, riskless.", "A reinforced case that is used to secure its contents.", "A contraceptive device consisting of a thin rubber or latex sheath worn over the penis during intercourse."], "duty": ["That which one is morally or legally obligated to do."], "Mexico City": ["The capital of Mexico."], "west": ["One of the four principal compass points, specifically 270\u00b0, conventionally directed to the left on maps. The direction of the setting sun."], "jump rope": ["A game, mainly for children, but also played as a game with a world championship, in which the player jumps, if possible quickly, over a rope with the feet, of which the ends are held with both hands and which is propelled over the head.", "The primary tool used in the game where one or more participants jump over a rope swung so that it passes under their feet and over their heads."], "author": ["Person who wrote the content of a published novel, book or text."], "writer": ["Person who wrote the content of a published novel, book or text."], "plot": ["The series of actions, situations and events that make up a novel or story."], "storyline": ["The series of actions, situations and events that make up a novel or story."], "mystery": ["Something secret or unexplainable.", "A pastime, in the form of a statement or question or phrase having a double or veiled meaning, put forth as a puzzle to be solved."], "mysterious": ["That contains mysteries, secrets or has an hidden meaning."], "mercy": ["The switch between a ruled death sentence and a milder one."], "Litani": ["River in South Lebanon."], "look": ["To attempt to find something or someone, within a specific region or area.", "To have a given outward appearance.", "To look forward to, as to something that is believed to be about to happen or come.", "To actively use one's eyes.", "An expression or appearance indicating a certain state of mind.", "The outward or visible aspect of a person or thing.", "To be in charge of or deal with.", "To be oriented in a certain direction; to be opposite to.", "The act of directing the eyes toward something and perceiving it visually."], "bear": ["A large beast of prey of the family Ursidae, related to the dog and raccoon, having shaggy hair, a very small tail, and flat feet.", "To move while holding up from the ground by supporting its weight.", "To have a tolerance for.", "Market characterized by falling prices.", "To contain or hold; have within.", "To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly.", "To have a right, title, or office.", "To take upon oneself a charge or a compromise.", "To release an offspring from one's own body; to cause to be born.", "To have (e.g. a resemblance, a signature).", "To take on as one's own the expenses or debts of another person.", "To bring in (e.g. interests, money, etc.)."], "amount": ["Quantity or consistency of something.", "The total of two or more quantities.", "To add up in number or quantity.", "A unit that expresses a mass or number.", "A quantity of money.", "The complete sum."], "brush": ["A spring-loaded electrical contact that connects the rotor and armature of a motor or generator.", "An implement with a handle, and a head with multiple more or less flexible bristles, used for painting.", "An implement with a handle, and a head with multiple more or less flexible bristles, used for arranging hair.", "To clean with a brush.", "To clean teeth with a brush.", "To apply with a brush.", "To touch with a sweeping motion.", "To remove with a sweeping motion.", "To untangle or arrange (hair) with a brush."], "borrow": ["To receive (something) from somebody temporarily, expecting to return it.", "To take up (an idea) as one's own.", "In a subtraction, to deduct (one) from a digit of the minuend and add ten to the following digit, in order that the subtraction of a larger digit in the subtrahend from the digit in the minuend to which ten is added gives a positive result."], "loo": ["A ceramic device used for depositing and removing human excrement with water through flushing."], "WC": ["A room or building equipped with one or more toilets."], "synonym": ["A word or phrase that has exactly or nearly exactly the same meaning as another word or phrase."], "antonym": ["A word or phrase that has exactly or nearly exactly the opposite meaning to another word or phrase."], "umpteenth": ["Ocurring at an unspecified, yet relatively high, position in a series."], "complain": ["To state complaints, discontent, displeasure, or unhappiness.", "To make a formal accusation."], "you're welcome": ["A conventional response to thanks indicating that the action was granted freely."], "it was nothing": ["A conventional response to thanks indicating that the action was granted freely."], "no problem": ["A conventional response to thanks indicating that the action was granted freely."], "don't worry about it": ["A conventional response to thanks indicating that the action was granted freely."], "rabble": ["A disorderly and often noisy group of people."], "hot cross bun": ["A sweet, fruited, spiced bun (with a white cross on top) that is often eaten at Easter."], "tag": ["A popular children's game in which one person (known as \"it\") tries to catch and touch any of a group of others, in order that they should become \"it\".", "To catch and touch another player in the game of \"tag\".", "Signature of graffiti artists.", "A small flat metal identification label attached to the collar of a dog.", "A keyword or term associated with or assigned to a piece of information.", "Writing or drawings scribbled, scratched, or sprayed illicitly on a wall or other surface in a public place.", "A label written or printed on paper, cardboard, or plastic that is attached to something to indicate its owner, nature, price, etc."], "it": ["The masculine inanimate object previously mentioned. 3rd person singular masculine subject pronoun.", "In the children's game of \"tag\": the role of the player whose task it is to run after and touch any other player; the first person who is touched (usually with the exclamation of \"tag, you're it!\") then takes over this role.", "An inanimate object, an animate object of unspecified sex, or a subject that is previously mentioned."], "sardines": ["A popular childrens game in which one player must try to find a group of others hiding together in a small space."], "British Bulldogs": ["A popular childrens game in which players must try to get from one side of an area to another, without getting caught (and either touched or taken down) by the catcher. Players who are caught then become catchers themselves."], "Bulldogs": ["A popular childrens game in which players must try to get from one side of an area to another, without getting caught (and either touched or taken down) by the catcher. Players who are caught then become catchers themselves."], "snuggle": ["To curl up in a comfortable position.", "To move close to somebody for affection or comfort."], "enchantment": ["A words or formula supposed to have magical powers."], "hex": ["A words or formula supposed to have magical powers.", "An evil spell."], "incantation": ["A words or formula supposed to have magical powers.", "A ritual recitation of words or sounds believed to have a magical effect."], "afraid": ["Having fear of or for something."], "scold": ["To hurl complaints or abuse in a loud and harsh voice.", "Someone (especially a woman) who annoys people by constantly finding fault.", "to rebuke"], "date": ["A time specification consisting of year, month and day.", "Edible fruit of the date palm tree (Ph\u0153nix dactylifera, L.). It is fleshy, oval-cylindrical, 4\u20136 cm long, with an elongated seed.", "To go on a date with."], "cowbell": ["A small bell with clappers, commonly made of sheet-metal or wood, especially one that is fastened around the neck of a cow or other domestic animal in order to make it easier to locate the animal in question."], "word of the day": ["A word that receives special or specific mention on a particular day."], "UN": ["A voluntary association of around 180 state signatory to the UN charter (1945), whose primary aim is to maintain international peace and security, solve economic, social, and political problems through international co-operation, and promote respect for human rights.", "Relating to the United Nations."], "iffy": ["Of dubious, doubtful or uncertain legitimacy, legality or authenicity.", "Subject to accident or chance or change."], "dodgy": ["Of dubious, doubtful or uncertain legitimacy, legality or authenicity."], "caf\u00e9": ["A business that sells various non-alcoholic drinks, and usually snacks and simple meals (such as breakfasts and lunches) with facilities to consume them."], "coffee shop": ["A business that sells various non-alcoholic drinks, and usually snacks and simple meals (such as breakfasts and lunches) with facilities to consume them."], "tea shop": ["A business that sells various non-alcoholic drinks, and usually snacks and simple meals (such as breakfasts and lunches) with facilities to consume them."], "coffee-shop": ["A business that sells various non-alcoholic drinks, and usually snacks and simple meals (such as breakfasts and lunches) with facilities to consume them."], "coffee house": ["A business that sells various non-alcoholic drinks, and usually snacks and simple meals (such as breakfasts and lunches) with facilities to consume them."], "caff": ["A business that sells various non-alcoholic drinks, and usually snacks and simple meals (such as breakfasts and lunches) with facilities to consume them."], "be afraid": ["To be scared of; to have an uncontrollable emotion of anxiety about something that causes a scared reaction or frightening impression."], "have fear": ["To be scared of; to have an uncontrollable emotion of anxiety about something that causes a scared reaction or frightening impression."], "scared": ["Having fear of or for something."], "jigsaw": ["A game where a person or group of people are to reconstruct an image that has been cut into many interlocking pieces.", "An electric saw, used for cutting arbitrary curves and shapes freehand."], "jigsaw puzzle": ["A game where a person or group of people are to reconstruct an image that has been cut into many interlocking pieces."], "La Loggia": ["A city in the Turin province of Italy."], "hand saw": ["A generic manual saw used for cutting shapes from materials."], "tenon saw": ["A rigid, manual saw used for cutting straight lines."], "fretsaw": ["A saw with a thin blade that is used for cutting out curves with tight radii."], "Apache": ["Any of several Athabascan-speaking peoples of the American Southwest excluding the Navajo.", "A popular webserver available under an Open license."], "Navajo": ["A people of the southwestern United States who call themselves the Din\u00e9.", "An Athabaskan language (of Na-Den\u00e9 stock) spoken in the southwest United States by the Navajo people (Din\u00e9). (Source: Wikipedia)"], "Navaho": ["A people of the southwestern United States who call themselves the Din\u00e9.", "An Athabaskan language (of Na-Den\u00e9 stock) spoken in the southwest United States by the Navajo people (Din\u00e9). (Source: Wikipedia)"], "D'ni": ["A fictional language from the Myst franchise, spoken by the D'ni people.", "The most prominent fictional culture, race and civilisation from the Myst franchise."], "angry": ["Irritated, in a temper, feeling or displaying anger.", "(of the elements) as if showing violent anger."], "gearbox": ["That part of an vehicle's transmission containing the train of gears, and to which the gear lever is connected."], "backsaw": ["A rigid, manual saw used for cutting straight lines."], "yeah": ["A word used to show agreement or affirmation of something."], "yep": ["A word used to show agreement or affirmation of something."], "enjoy your meal": ["A phrase said at the beginning of a meal to the other diners, wishing them a good meal."], "grub's up": ["Expresses that one (commonly the cook) wishes for people (usually family or friends) to come and eat their food."], "dinner's ready": ["Expresses that one (commonly the cook) wishes for people (usually family or friends) to come and eat their food."], "have a nice meal": ["A phrase said at the beginning of a meal to the other diners, wishing them a good meal."], "soup's on": ["Expresses that one (commonly the cook) wishes for people (usually family or friends) to come and eat their food."], "profusely": ["In great or large quantities or abundance.", "In an abundant manner."], "a lot": ["In great or large quantities or abundance."], "loads": ["In great or large quantities or abundance."], "use": ["To employ an object, often to reach a certain goal; to put into service.", "The act of using something.", "Act through which a subordinated work contract starts.", "A pattern of behavior inherited or acquired through frequent repetition.", "To take or consume (regularly or habitually).", "To seek or achieve an end by using to one's advantage.", "To consume fully.", "To avail oneself to (e.g. a principle, a religion, common sense, etc.).", "(only in the past tense) to do something habitually."], "employ": ["To employ an object, often to reach a certain goal; to put into service.", "To give someone work or a job."], "ask": ["To ask (a question) to somebody; to seek an answer to.", "To examine by asking (a witness, for example).", "To set a certain price on that which one is selling.", "To desire a service or physical goods, often without returning the favor in kind.", "To approach someone to do something.", "To ask for information, a reply or response on a given subject.", "To consider obligatory; request and expect."], "portable": ["Easy or manageable for a person to carry or move comfortably.", "Able to run or work on various or multiple operating systems or hardware."], "sleep well": ["A greeting or wish before going to sleep."], "good night": ["A greeting or wish when parting, after the evening has ended and before the morning has started."], "Georgia": ["A country in West Asia or East Europe, with capital Tbilisi.", "A state of the United States of America."], "crane": ["A large bird of the order Gruiformes and the family Gruidae having long legs and a long neck which it extends when flying.", "To stretch (the neck) so as to see better.", "A machine that lifts and moves heavy objects; a lifting tackle is suspended from a pivoted boom that rotates around a vertical axis.", "Lifting tool for very heavy loads."], "good morning": ["A greeting that is said when meeting or departing in the morning."], "good afternoon": ["A greeting that is said when meeting or departing in the afternoon."], "good evening": ["A greeting that is said when meeting or departing in the evening."], "good day": ["A parting statement; used when one or more people in a situation, dialogue or location are leaving, while others remain.", "Salutation being used in the daytime."], "cheerio": ["A parting statement; used when one or more people in a situation, dialogue or location are leaving, while others remain."], "behead": ["To cut the head from a person's body."], "decapitate": ["To cut the head from a person's body."], "congregate": ["To collect in one place, usually for a purpose."], "accumulate": ["To collect in one place, usually for a purpose.", "To get or gather together."], "amass": ["To collect in one place, usually for a purpose.", "To get or gather together.", "To heap up; to collect or gather (e.g. work, magazines, etc.)."], "assemble": ["To collect in one place, usually for a purpose.", "To put together components of a product to create a final product or a subgroup of it.", "To call or bring together."], "congregation": ["A group of people who adhere to a common faith and habitually attend a given church.", "An assemblage of people or animals or things collected together.", "The act of congregating."], "girlfriend": ["A person with whom one has a love affair.", "Female person with whom someone has a relationship."], "boyfriend": ["A person with whom one has a love affair."], "terrorist": ["A person who uses violence and intimidation to push a political agenda.", "Of or relating to the use of violence or intimidation to push a political agenda."], "dinner": ["A meal that is eaten in the late afternoon or evening daily."], "afternoon tea": ["A snack consisting of tea, scones, jam and cream that is eaten in the early or mid afternoon."], "supper": ["A meal that is eaten in the late afternoon or evening daily."], "evening meal": ["A meal that is eaten in the late afternoon or evening daily."], "Englishman": ["A male person of English nationality."], "Englishwoman": ["A female person of English nationality."], "favicon": ["An icon that is associated with a website."], "Catalan": ["The language of Catalonia, an autonomous region in the northeast of Spain.", "Of or relating to Catalonia, its inhabitants or the Catalan language", "A person from Catalonia, or of Catalan ancestry."], "bluetongue disease": ["A non-contagious viral disease, transmitted by midges, that predominantly occurs in sheep and is caused by a dsRNA virus from the family Reoviridae. It is characterised by high fevers and the blue color of the tongue."], "catarrhal fever": ["A non-contagious viral disease, transmitted by midges, that predominantly occurs in sheep and is caused by a dsRNA virus from the family Reoviridae. It is characterised by high fevers and the blue color of the tongue."], "she": ["Another person; the person previously mentioned.", "A female other; the female previously mentioned. 3rd person singular feminine subject pronoun."], "license": ["Legal terms under which a person is allowed to use a product or a service or is authorised to do specific things."], "Oxford": ["A city in England famous for its university."], "transvestite": ["Someone who adopts the clothing, manner or sexual role of the opposite gender.", "Receiving sexual gratification from wearing clothing of the opposite gender."], "transvestic": ["Receiving sexual gratification from wearing clothing of the opposite gender."], "cross-dresser": ["Someone who adopts the clothing, manner or sexual role of the opposite gender."], "bisexual": ["Sexually attracted to both sexes.", "Having an ambiguous sexual identity.", "A person who is sexually attracted to both sexes."], "epicene": ["Having an ambiguous sexual identity.", "Having unsuitable feminine qualities."], "bisexual person": ["A person who is sexually attracted to both sexes."], "androgen": ["A male sex hormone that is produced in the testes and responsible for typical male sexual characteristics."], "estrogen": ["A general term for female steroid sex hormones that are secreted by the ovary and responsible for typical female sexual characteristics."], "oestrogen": ["A general term for female steroid sex hormones that are secreted by the ovary and responsible for typical female sexual characteristics."], "marrow": ["Any of various squash plants grown for their elongated fruit with smooth dark green skin and whitish flesh.", "The choicest, most essential or most vital part.", "The soft tissue found in the hollow interior of long bones and in some spongy bones which produces new blood cells."], "bone marrow": ["The soft tissue found in the hollow interior of long bones and in some spongy bones which produces new blood cells."], "marrow squash": ["Any of various squash plants grown for their elongated fruit with smooth dark green skin and whitish flesh."], "vegetable marrow": ["Any of various squash plants grown for their elongated fruit with smooth dark green skin and whitish flesh."], "kernel": ["The choicest, most essential or most vital part.", "The central part of many computer operating systems which manages the system's resources and the communication between hardware and software components."], "core": ["The choicest, most essential or most vital part.", "The middle part, that can be clearly discerned from the enveloping part.", "To remove the core (for example of a fruit).", "The central somewhat harder part that surrounds the seeds in some fruits, such as apples."], "center": ["The choicest, most essential or most vital part.", "The middle part, that can be clearly discerned from the enveloping part."], "essence": ["The choicest, most essential or most vital part.", "Industrial product, made from flowers, or produced by some chemical process, from which a pleasant smell exhales."], "condom": ["A contraceptive device consisting of a thin rubber or latex sheath worn over the penis during intercourse."], "prophylactic": ["A contraceptive device consisting of a thin rubber or latex sheath worn over the penis during intercourse."], "intercourse": ["The act of sexual procreation between a man and a woman; the man's penis is inserted into the woman's vagina and excited until orgasm and ejaculation occur.", "Communication between individuals."], "sexual intercourse": ["The act of sexual procreation between a man and a woman; the man's penis is inserted into the woman's vagina and excited until orgasm and ejaculation occur."], "social intercourse": ["Communication between individuals."], "copulation": ["The act of sexual procreation between a man and a woman; the man's penis is inserted into the woman's vagina and excited until orgasm and ejaculation occur."], "coitus": ["The act of sexual procreation between a man and a woman; the man's penis is inserted into the woman's vagina and excited until orgasm and ejaculation occur."], "vagina": ["The lower part of the female reproductive tract; a moist canal in female mammals extending from the labia minora to the uterus."], "labium": ["Any of the four lip-shaped folds of the female vulva."], "vulva": ["The external parts of the female genitalia, in human beings this consists of the labia, clitoris, opening of the urethra (meatus), and the opening of the vagina."], "clitoris": ["A female sexual organ homologous to the penis, located at the upped side of the vulva, between the labia majora."], "clit": ["A female sexual organ homologous to the penis, located at the upped side of the vulva, between the labia majora."], "button": ["A female sexual organ homologous to the penis, located at the upped side of the vulva, between the labia majora.", "A fastener consisting of a knob or disc that is passed through a slit in the adjacent material.", "A mechanical switch meant to be pressed with a finger in order to open or close an electric circuit or to activate a mechanism.", "In computer software, an on-screen control that can be selected as an activator of an attatched function.", "A badge worn on clothes, fixed with a pin through the fabric.", "In curling it is the center (bullseye) of the house.", "To fasten with a button or buttons."], "urethra": ["A duct through which urine is discharged in most mammals and which serves as the male genital duct."], "navel": ["A scar where the umbilical cord was attached."], "umbilicus": ["A scar where the umbilical cord was attached."], "bellybutton": ["A scar where the umbilical cord was attached."], "omphalos": ["A scar where the umbilical cord was attached."], "omphalus": ["A scar where the umbilical cord was attached."], "umbilical cord": ["A membranous duct connecting the fetus with the placenta."], "fetus": ["An unborn or unhatched vertebrate in the later stages of development showing the main recognizable features of the mature animal."], "foetus": ["An unborn or unhatched vertebrate in the later stages of development showing the main recognizable features of the mature animal."], "placenta": ["That part of the ovary of a flowering plant where the ovules form.", "The vascular structure in the uterus of most mammals providing oxygen and nutrients for and transferring wastes from the developing fetus."], "anyone": ["One person chosen without thought, anybody", "Any one out of an indefinite number of persons."], "duct": ["A bodily passage or tube lined with epithelial cells and conveying a secretion or other substance.", "A continuous tube formed by a row of elongated cells lacking intervening end walls.", "An enclosed conduit for a fluid.", "Duct for conveying water to a given place."], "Furhac": ["'abc\u2026' in Runic, the alphabet of Runes."], "North Atlantic Treaty Organization": ["An international organization created in 1949 by the North Atlantic Treaty for purposes of collective security."], "NATO": ["An international organization created in 1949 by the North Atlantic Treaty for purposes of collective security."], "international": ["Concerning or belonging to at least two nations.", "From or between other countries."], "external": ["From or between other countries.", "Outside of something.", "Coming from the outside."], "outside": ["From or between other countries.", "In the open, not within a building.", "Coming from the outside."], "nation": ["A people permanently occupying a fixed territory bound together by common law, habits and custom into one body politic exercising, through the medium of an organized government, independent sovereignty and control over all persons and things within its boundaries, unless or until authority is ceded to a federation or union of other states.", "A political entity asserting ultimate authority over a geographical area.", "A federation of tribes (especially native American tribes)."], "cry": ["To speak with a loud, excited voice.", "To shed tears due to the impact of an emotion."], "build": ["To form by combining materials or parts.", "To create something by combining or assembling materials or parts or by changing it.", "The physical structure of a human body.", "To build or establish something abstract."], "if you can't stand the heat, stay out of the kitchen": ["If the pressure or stress is too great, leave or give up."], "a wolf in sheep's clothing": ["A dangerous person that creates a harmless appearance."], "have made one's pile": ["Having enough financial security to be able to to live off one's investments."], "interfere": ["To involve oneself causing disturbance."], "inch": ["A unit of length equal to 2.54 centimetres."], "suspect": ["To imagine or suppose (something) to be true without evidence.", "A person who is suspected of something, in particular of committing a crime.", "Raising suspicion.", "To imagine something evil, wrong or undesirable based on insufficient evidence; to believe to be guilty.", "To imagine that something is possible or likely."], "antiskid system": ["Technical system in a motor vehicle that prevents wheelspin during acceleration."], "bag": ["A flexible container made of cloth, paper, plastic, leather, etc., to put something in or to carry away.", "To take possession of property belonging to another without the consent of this owner; most typically when not observed, rather than by force.", "An ugly or ill-tempered woman.", "An activity that one likes or at which one is superior.", "A object used for carrying money and small personal items or accessories (especially by women).", "To put (something) into a bag.", "A small bag, purse or pocket worn at one's belt during medieval times."], "alkaline": ["Of, relating to, or containing an alkali."], "corner": ["The point where two or more edges of an geometrical body meet.", "A predicament from which a skillful or graceful escape is impossible.", "The point where three areas or surfaces meet or intersect.", "The edge where two converging walls meet."], "pilgrimage": ["A journey made to a sacred place or a religious journey."], "hem": ["A folded and stitched cloth border on items of clothing.", "To fold and stitch the border of the cloth on items of clothing; creating a hem."], "make dog-eared": ["To fold over at the corner a page of a book."], "bizarre": ["Strangely unconventional in style or appearance.", "Out of the ordinary.", "Of strange or extraordinary character."], "uneventful": ["With no event."], "belly button": ["A scar where the umbilical cord was attached."], "infrequently": ["Not often, not frequently."], "rarely": ["Not often, not frequently."], "seldom": ["Not often, not frequently."], "stubborn": ["Tenaciously unwilling or marked by tenacious unwillingness to yield.", "Difficult to treat or deal with.", "Not responding to treatment.", "Persisting in a reactionary stand.", "Resisting vigorously and stubbornly to the last."], "refractory": ["Not responding to treatment.", "Not affected by great heat.", "Obstinate and unruly."], "obstinate": ["Persisting in a reactionary stand.", "Resistant to guidance or discipline."], "unregenerate": ["Persisting in a reactionary stand."], "Wanggamala": ["An extinct language of Australia formerly spoken in the Northern Territory, Hay River, south of Andegerebinha."], "Uradhi": ["An aboriginal language of Queensland, Australia."], "Wageman": ["A near-extinct indigenous Australian language spoken in and around Pine Creek, in the Katherine Region of the Northern Territory."], "Yinggarda": ["An Australian Aboriginal language of the Kartu languages of the large South-West branch of the Pama-Nyungan family formerly spoken in the Yinggarda country."], "Yawuru": ["A Nyulnyulan language spoken by the Yawuru people, an indigenous people of Western Australia."], "Wunambal": ["An aboriginal language of Western Australia spoken in the regions of Kalumburu, Wyndham and Mowanjum."], "Wilawila": ["A language of Australia."], "Yanyuwa": ["A language of Australia."], "Wiradhuri": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Yawarawarga": ["An Australian Aboriginal language."], "Wambaya": ["An Australian Aboriginal language spoken by the Wambaya people of the Barkly Tablelands region of the Northern Territory."], "Yankunytjatjara": ["An Australian Aboriginal language."], "thousand": ["Ten times hundred."], "hi": ["Expression of greeting used by two or more people who meet each other."], "hey": ["Expression of greeting used by two or more people who meet each other.", "Exclamation of amazement."], "howdy": ["Expression of greeting used by two or more people who meet each other."], "Madura": ["A language of Indonesia."], "Igbo": ["A language spoken in Nigeria."], "Ladin": ["A Rhaeto-Romance language which is spoken in the Dolomite valleys in Northern Italy."], "Lombard": ["A language of Italy and Switzerland. In Italy it's mostly spoken in Lombardy and western Piedmont."], "Yakut": ["A Turkic language with around 363,000 speakers that is spoken in the Sakha Republic in the Russian Federation."], "Sakha": ["A Turkic language with around 363,000 speakers that is spoken in the Sakha Republic in the Russian Federation.", "A republic of Russia with an area of 3,103,200 km\u00b2 located in the East Russia. Its borders are the Arctic Ocean by sea and the Federal subjects of Chukotka (E), Magadan (E/SE), Khabarovsk Krai (SE), Amur (S), Chita (S), Irkutsk (S/SW), Evenk (W), Taymyr (W/NW)."], "Lak": ["The language of the Lak people from the Russian autonomous republic of Dagestan."], "Yankuntatjara": ["An Australian Aboriginal language."], "Jangkundjara": ["An Australian Aboriginal language."], "Kulpantja": ["An Australian Aboriginal language."], "Hermione Granger": ["A fictional, intelligent student at Hogwarts, friend of Harry Potter (from the Harry Potter series by JK Rowling)."], "skeleton crew": ["The minimal number of people keeping something operational."], "Vlax Romani": ["A language of the Gypsies."], "Maori": ["The language of the original inhabitants of New Zealand, the Maori."], "Lingala": ["A Bantu language spoken throughout the northwestern part of Congo-Kinshasa, the northern part of Congo-Brazzaville and to a certain degree in Angola, Central African Republic and Cameroon."], "bean": ["A common name for large edible plant seeds of several genera of ''Fabaceae''.", "Any of various leguminous plants grown for their edible seeds and pods."], "cricket": ["A game played outdoors with bats and a ball between two teams of eleven, popular in England and many Commonwealth countries.", "An insect in the order Orthoptera that makes a chirping sound by rubbing its wing casings against combs on its hind legs."], "boat": ["A craft used for transportation of goods, fishing, racing, recreational cruising, or military use on or in the water, propelled by oars or outboard motor or inboard motor or by wind.", "To traverse or travel by ship on a body of water.", "A dish (often boat-shaped) for serving gravy or sauce.", "A watercraft designed to float or plane on, and provide transport over water."], "Pakistan": ["A country in South Asia with capital Islamabad."], "chewing gum": ["A sweetened flavoured preparation of chicle, made for chewing."], "Yangman": ["An extinct language of Australia"], "Kalkutung": ["An extinct language of Australia."], "Biri": ["An extinct language of Australia."], "Kalarko": ["An extinct language of Australia."], "ball": ["Round three-dimensional body whose surface has at each point the same distance from the center.", "An object, generally spherical, used for playing games.", "The male sex gland that produces sperm and male hormones, found in some types of animals.", "To form into a ball by winding or rolling.", "A lavish formal dance.", "A compact mass.", "A projectile, usually of metal, shot from a gun at high speed.", "A hard ball being used for playing billards."], "Manangkari": ["An extinct language of Australia."], "edible": ["That can be eaten without harm, non-toxic to humans; suitable for consumption."], "globe": ["The third planet (counted from the center) of our solar system.", "Round three-dimensional body whose surface has at each point the same distance from the center.", "Small sphere which represents the planet Earth.", "A sphere on which a map (especially of the earth) is represented."], "orb": ["Round three-dimensional body whose surface has at each point the same distance from the center.", "To move in an orbit."], "in love": ["Feeling love for someone or something."], "lover": ["A person who loves someone or is loved by someone.", "A sexual partner.", "A follower or admirer who likes, knows about, and appreciates a particular interest or activity."], "forfeit": ["To suffer the loss of something by wrongdoing or non-compliance."], "umpire": ["An official appointed to rule on plays and procedure.", "To act as an umpire in a game."], "referee": ["An official appointed to rule on plays and procedure."], "collision": ["An often violent body impact with another.", "The situation that occurs when two or more devices attempt to send a signal along the same channel at the same time.", "An accident resulting from violent impact of a moving object."], "monarch": ["The person at the head of a hereditary form of government.", "A migratory butterfly, Danaus plexippus, found in North America."], "master": ["To know well a field of knowledge.", "Someone who has control over something or someone; the owner of an animal or slave or someone who employs others."], "Uzbekistan": ["Country in Central Asia, with the capital Tashkent."], "Uganda": ["Country in Eastern Africa whose capital is Kampala."], "ill": ["Whose health is altered."], "everywhere": ["At all places; in all directions.", "At all places.", "In all directions, to all places."], "string": ["A cord used in some musical instruments to produce sound.", "An ordered sequence of symbols.", "A long, thin and flexible structure made from threads twisted together."], "row": ["A series of persons or objects placed in a line, one behind the other, usually at regular intervals.", "A loud or noisy verbal confrontation between two or more people.", "A series of cells or entries in a table, going horizontally or left-to-right.", "To pull oars through water in order to make a water vehicle (such as a boat) move.", "A single instance, act or occurrance of pulling oars through water in order to make a water vehicle (such as a boat) move.", "A continuing loud, harsh or strident noise.", "A tool used for pushing against liquid, generally for the propulsion of a boat."], "argument": ["A loud or noisy verbal confrontation between two or more people.", "A fact or assertion offered as evidence that something is true."], "argue": ["To take part in a loud or angry verbal confrontation with one or more other people.", "To present (a viewpoint or an argument therefor)."], "racket": ["Sound which is unwanted, either because of its effects on humans, its effect on fatigue or malfunction of physical equipment, or its interference with the perception or detection of other sounds.", "A continuing loud, harsh or strident noise.", "An implement with a handle connected to a round frame strung with wire, sinew, or plastic cords, and used to hit a ball, such as in tennis or a birdie in badminton.", "A loud noise."], "din": ["A continuing loud, harsh or strident noise."], "bucket": ["A container (made of rigid material with a handle) that is used to carry liquids or small items.", "To rain heavily."], "dream about": ["To be lost in phantasies or be carried away by some internal vision, having temorarily lost (part of) contact to reality."], "pocket": ["A kind of pouch, which is accessible by an opening in an article of clothing and serves for storage; usually large enough in order to accommodate at least one hand.", "To take into possession by putting it somewhere into the clothing one is wearing", "An opening suitable or meant to receive something", "To take possession of property belonging to another without the consent of this owner; most typically when not observed, rather than by force."], "aviation accident": ["An accident happening during a voyage by plane, resulting in damage, injury or death."], "plane crash": ["The uncontrolled landing of an airplane resulting in structural damage to the plane and potentially injury or death to passengers."], "pin": ["The limb of an animal (including humans) that extends from the groin to the ankle.", "Pivoting part in a stringed instrument, around which the string is wound and is used to adjust its tension.", "An item that is placed on the end of a bowling alley, and which one can then try to strike and topple with a bowling ball.", "In golf, a stick w\u0131th a flag on it, inserted in a target hole, enabling the hole to be seen from a distance.", "A small piece of steel wire with one end sharpened and the other flattened or rounded into a head.", "A wrestling move in which a wrestler's shoulders are forced to the mat.", "A rod used to fasten two overlapping parts.", "Any of the individual connecting elements of a multipole electrical connector.", "A piece of jewellery that is attached to clothing with a pin.", "A simple accessory that can be attached to clothing with a pin or fastener, often round and bearing a design, logo or message, and used for decoration, identification or to show political affiliation, etc.", "(chess) A situation in which moving a lesser piece to escape from attack would expose a more valuable piece to attack.", "A small nail with a head and a sharp point.", "To fasten or attach (something) with a pin.", "(chess) To cause (a piece) to be in a pin.", "(wrestling) To pin down (someone).", "To attach something to another item with a pin.", "To determine precisely.", "To fix blame or responsibility on a person or thing.", "To force (a person) to be specific or make a commitment.", "To hold down so as to restrict movement.", "To hold (a person) to a course of action.", "To entrust (one's hope, faith, reputation, etc.) entirely to a particular person or thing.", "One of multiple rods inside a cylindrical lock that allow only the correct key to turn the mechanism."], "badge": ["A simple accessory that can be attached to clothing with a pin or fastener, often round and bearing a design, logo or message, and used for decoration, identification or to show political affiliation, etc."], "dichotomy": ["A cutting in two; a division."], "chimera": ["An organism with at least two genetically distinct types of cells.", "An impossible or foolish fantasy or project."], "sex bomb": ["A very attractive woman."], "plop": ["Sound (used in cartoons) of something dropping into water and sinking fast."], "plonk": ["Sound (used in cartoons) of something dropping into water and sinking fast.", "A cheap or everyday alcoholic drink (usually wine)."], "comment": ["To state one's personal opinion or beliefs on a particular subject.", "A statement that expresses a personal opinion or belief.", "To make or write a comment on."], "remark": ["To state one's personal opinion or beliefs on a particular subject.", "A statement that expresses a personal opinion or belief.", "To make mention of.", "To make or write a comment on."], "often": ["Many times, with short intervals between occasions."], "frequently": ["Many times, with short intervals between occasions."], "channel": ["A specific radio frequency or band of frequencies used for transmitting television."], "frequency": ["Number of occurrences of a repeated event per unit of time (e. g. oscillations per second)."], "encompass": ["To form a circle around.", "To include within its scope; to go round so as to surround.", "To include completely; to describe fully or comprehensively.", "To travel completely around somewhere or something.", "To include in scope; include as part of something broader; have as one's sphere or territory."], "encircle": ["To form a circle around.", "To extend on all sides simultaneously."], "circumscribe": ["To include within its scope; to go round so as to surround.", "To limit narrowly."], "circumnavigate": ["To travel completely around somewhere or something.", "To avoid an obstacle by going around it."], "bypass": ["To avoid an obstacle by going around it.", "To avoid something unpleasant or laborious."], "restrict": ["To limit narrowly.", "To make more specific."], "socialist": ["A man who practices or advocates socialism.", "A woman who practices or advocates socialism.", "A person who practices or advocates socialism."], "socialism": ["Refers to a broad array of doctrines or political movements that envisage a socio-economic system in which property and the distribution of wealth are subject to social control."], "Bangladesh": ["A country in South Asia. It is surrounded by India on all sides except for a small border with Myanmar to the far southeast and the Bay of Bengal to the south."], "Belarus": ["A country in Eastern Europe whose capital is Minsk."], "Bolivia": ["A country in South America, with administrative capital La Paz and official capital Sucre."], "Guinea": ["Country in Western Africa whose capital is Conakry."], "zebra": ["An African animal, closely related to a horse, with black and white stripes."], "zebra crossing": ["A pedestrian crossing featuring broad white stripes painted parallel to the street."], "its": ["Belonging to it."], "irrigate": ["To supply land with water so that crops and plants will grow or grow stronger.", "To rinse out a wound or bodily cavity."], "igneous rock": ["A rock formed when molten rock (magma) cools and solidifies, with or without crystallization."], "poliomyelitis": ["Acute infection by the poliovirus, especially of the motor neurons in the spinal cord and brainstem, leading to muscle weakness, paralysis and sometimes deformity."], "polio": ["Acute infection by the poliovirus, especially of the motor neurons in the spinal cord and brainstem, leading to muscle weakness, paralysis and sometimes deformity."], "skype": ["To phone via the Internet using the software Skype."], "El Salvador": ["Country in Central America, with capital San Salvador."], "Portugal": ["Country in Europe, with capital Lisbon."], "cloudy": ["Covered with clouds."], "Lisbon": ["The capital of Portugal, Europe.", "District of Portugal, located in the South Central region."], "different": ["Not the same.", "Other than supposed."], "left-handed": ["Using the left hand more skillfully than the right hand."], "lefthanded": ["Using the left hand more skillfully than the right hand."], "right-handed": ["Using the right hand more skillfully than the left hand."], "righthanded": ["Using the right hand more skillfully than the left hand."], "pair of scissors": ["A tool used for cutting thin material, consisting of two crossing blades attached at a pivot point in such a way that the blades slide across each other when the handles are closed."], "skyper": ["A user of the internet telephony software named \"Skype\"."], "group": ["(Military term) To distribute and to order the troops in units.", "A number of things or persons that have some relation to one another.", "Ensemble of elements which belong to the same column of the periodic table", "Set of things or people between which exists cohesion or agreement.", "To put together to form a group."], "foggy": ["With a diffuse meaning; nebulously said; unclear and uncertain; unfactual; unpointedly expressed.", "Filled with fog."], "bletheringly": ["With a diffuse meaning; nebulously said; unclear and uncertain; unfactual; unpointedly expressed."], "behind closed doors": ["Away from public view."], "annunciate": ["To pronounce (individual sounds or words) correctly and with good or true diction.", "To give public or first notice or mention of (a future event)."], "proclaim": ["To make known by stating or announcing.", "To declare formally; of titles.", "To affirm or declare as an attribute or quality of.", "To praise, glorify, or honor (e.g. a virtue)."], "announce": ["To give public or first notice or mention of (a future event).", "To give public notice, or first notice of the arrival of someone or something.", "To make known by stating or announcing."], "homing pigeon": ["A variety of domestic pigeon (Columba livia domestica) selectively bred to find its way home over extremely long distances."], "carrier pigeon": ["A variety of domestic pigeon (Columba livia domestica) selectively bred to find its way home over extremely long distances."], "easy mark": ["Someone who easily believes anything."], "firefighter": ["A male person who is trained to put out fires.", "A person who is trained to put out fires."], "slice": ["To cut something into slices.", "A cut piece whose thickness is small compared to its length and width or its diameter.", "To make a clean cut through."], "roughage": ["Food that is high in fibre and low in digestible nutrients.", "The portion of plant products that moves through the human digestive system without being digested."], "pigeon": ["One of several birds of the family Columbidae."], "sparrow": ["A small song bird, in the family Passeridae.", "A small bird with a short bill, and brown, white and gray feathers."], "conference": ["An event organized to discuss an issue with a range of speakers."], "seminar": ["A meeting held for the exchange of useful information by members of a community."], "diminutive": ["A word that is formed with a suffix (such as -let or -kin) to indicate smallness.", "Very small in size."], "each": ["Every individual or anything of the given class, with no exceptions.", "Evenly distributed to; identical instances of; mapped to any of."], "birch": ["A tree of the genus Betula, with small leaves and a trunk that is white with darker blotches.", "Wood of the birch tree."], "for \u2026 each": ["Evenly distributed to; identical instances of; mapped to any of."], "each for": ["Evenly distributed to; identical instances of; mapped to any of."], "each at": ["Evenly distributed to; identical instances of; mapped to any of."], "at \u2026 each": ["Evenly distributed to; identical instances of; mapped to any of."], "decease": ["To cease to live."], "demise": ["To cease to live."], "pass on": ["To cease to live.", "To divide or distribute something in an even way."], "cease to be": ["To cease to live."], "go to meet ones maker": ["To cease to live."], "ring down the curtain": ["To cease to live."], "join the choir invisible": ["To cease to live."], "fireman": ["A person who is trained to put out fires."], "firefighters": ["Two or more persons trained to put out fires."], "firemen": ["Two or more persons trained to put out fires."], "firewoman": ["A female person who is trained to put out fires."], "non-starch polysaccharide": ["The portion of plant products that moves through the human digestive system without being digested."], "giddy": ["A state in which a group of people is continuously making silly jokes, that can nevertheless lead to laughing fits as a reaction. Under the right circumstances, the state can maintain itself or be induced in others contageously. The use of weed (Cannabis sativa) promotes the state in some individuals, but it can also be induced by a joke or reference to an (earlier) funny event."], "soft": ["A state of consistency allowing alterations of form with ease, no big force required, to bring things into something of this state (such as e.g. soaked loam or clay soil).", "(Of a cloth, skin, etc.) Smooth and agreeable to the touch."], "sushi": ["A type of Japanese food, consisting of vinegared rice, seafood and pickled vegetables. Its origin lies in the south-east asian technique of pickling fish in rice to preserve it."], "immigrant": ["A person who settles in a country coming from abroad.", "Who settles in a country coming from abroad."], "emigrant": ["Someone who leaves one country to settle in another."], "wheelbarrow": ["Small vehicle with one wheel (more rarely two), to carry heavy loads on construction sites or in a garden, and that is usually pushed ahead.", "A small, two-wheeled vehicle to be drawn or pushed by a boy or man."], "vortex": ["A whirlwind, whirlpool, or similarly moving matter in the form of a spiral or column."], "expurgate": ["To edit out rude, incorrect, offensive, or useless information from a book, CD or other publication.", "To remove those parts of a text considered offensive, vulgar, or otherwise unseemly."], "infix": ["A morpheme inserted inside a word."], "haunch": ["The area encompassing the upper thigh, hip and buttocks on one side of a human, primate, or quadruped animal, especially one that is able to sit on its hindquarters."], "prefix": ["A morpheme that is placed at the start of a word."], "fruit juice": ["The juice obtained by squeezing, crushing or centrifuging fruit."], "suffix": ["A morpheme that is placed at the end of a word."], "coma": ["A state of unconsciousness from which one may not wake up, usually induced by some form of trauma.", "A cloud of dust surrounding the nucleus of a comet.", "An optical aberration in an astronomical telescope which causes a V-shaped flare to the image of a star."], "fisherman": ["A person whose profession is catching fish."], "Ivory Coast": ["A country in Western Africa whose capital is Abidjan."], "Cambodia": ["A country in Southeast Asia. The country shares a border with Thailand to its west and northwest, with Laos to its northeast, and with Vietnam to its east and southeast. In the south it faces the Gulf of Thailand. Its capital is Phnom Penh."], "Montenegro": ["A country located in southeastern Europe with capital city Podgorica."], "Palestine": ["The territories under the jurisdiction of the Palestinian Authority."], "South Africa": ["Country in southern region of the African continent."], "Pompeii": ["Ruined Roman city near Naples in the Italian region of Campania which was destroyed by the eruption of the volcano Mount Vesuvius in 79 CE."], "progressively": ["In a progressive manner."], "hindrance": ["Something which hinders; something which obstructs, holds back or causes problems.", "The act of hindering or obstructing or impeding."], "dwarf planet": ["A celestial body orbiting the Sun that is massive enough to be rounded by its own gravity but which has not cleared its neighbouring region of planetesimals and is not a satellite."], "swimsuit": ["A tight-fitting garment worn for swimming."], "Nicaragua": ["Country in Central America, bounded by Costa Rica to the south and Honduras to the north, located between the Pacific Ocean and the Caribbean sea, with capital Managua."], "planet": ["A large, heavy body, which does not produce energy by nuclear fusion, moving in a stable elliptical orbit around a star."], "embargo": ["A ban on trade with another country.", "A temporary ban on making certain information public."], "personal computer": ["A small computer, built around a microprocessor, for use by one person at a time."], "PC": ["A small computer, built around a microprocessor, for use by one person at a time.", "The intention to provide a minimum of offense to other people, particularly to ethnic and religious groups, social minorities, women and aged or disabled people. It is usually attributed to language or behavior."], "laptop": ["A portable computer that is small enough and light enough to be used on one's lap."], "laptop computer": ["A portable computer that is small enough and light enough to be used on one's lap."], "Red Sea": ["A long, narrow sea between Africa and the Arabian peninsula."], "Pacific Ocean": ["The world's largest body of water, to the east of Asia and Australasia and to the west of the Americas."], "Atlantic Ocean": ["The ocean lying between the Americas to the west and Europe and Africa to the east."], "farce": ["A low style of comedy or a dramatic composition marked by low humour & broad improbabilities and often written with little regard to regularity or method.", "Text or story abounding with ludicrous incidents and expressions.", "A ridiculous or empty show."], "stuffing": ["The matter used to stuff flexible hollow objects such as pillows and saddles.", "A mixture of seasoned ingredients used to stuff meats and vegetables.", "Something filling up a gap or covering up a (small) distance."], "France": ["Country in Western Europe having borders with Belgium, Luxembourg, Germany, Switzerland, Italy, Monaco, Andorra and Spain."], "Finland": ["One of the Nordic countries having borders with Sweden, Norway and Russia."], "Fiji": ["A country in Oceania comprising over 300 islands."], "Greece": ["Country in southeastern Europe having borders with Albania, the Former Yugoslav Republic of Macedonia, Bulgaria, and Turkey."], "Jordan": ["A country in the Middle East, with capital Amman.", "A river of the Middle East that empties into the Dead Sea."], "Jamaica": ["Country in the Caribbean whose capital is Kingston."], "North Sea": ["An inlet of the Atlantic Ocean between Britain (in the west), Scandinavia (in the east) and Germany, Netherlands, Belgium and France (in the south)."], "dark matter": ["Matter that cannot be detected by their radiation but whose presence is inferred from gravitational effects."], "Spain": ["Country in Western Europe."], "Saudi Arabia": ["Country on the Arabian Peninsula, with capital Riyadh."], "iris": ["The contractile membrane perforated by the pupil, which adjusts to control the amount of light reaching the retina.", "A flower of any of the species belonging to the genus Iris; the flowers occur in many colours, have long and slender pointed leaves, and either a corm or a rhizome."], "retina": ["The thin layer of cells at the back of the eyeball where light is converted into neural signals sent to the brain.", "The thin layer of cells at the back of the eyeball where light is converted into neural signals sent to the brain."], "joke": ["Something said or done for amusement.", "To say or do something for amusement; to speak humorously."], "trick": ["Something said or done for amusement.", "Male client of a prostitute.", "An act of prostitution."], "corkscrew": ["A tool to pull corks out of bottles."], "polysemy": ["Capacity, for a word, to have multiple meanings."], "polysemic": ["Having multiple meanings."], "joker": ["A person in bright garb and fool's cap who amused a mediaeval royal court.", "Someone who makes jokes.", "A playing card that features a picture of a joker (that is, a jester) and that may be used as a wild card in some card games.", "One who jokes."], "ordinal number": ["A number used to denote position in a sequence."], "third": ["The ordinal form of the cardinal number three.", "One of three equal parts of a whole."], "cardinal number": ["A number used to denote a quantity."], "Namibia": ["A country in southern Africa having common borders with Angola, South Africa, Botswana, Zimbabwe and Zambia. Its capital is Windhoek."], "Mercury": ["The smallest and innermost planet of our solar system."], "Ghana": ["Country in Western Africa whose capital is Accra."], "Guatemala": ["Country in Central America, with capital Guatemala City."], "Kenya": ["A country in Eastern Africa whose capital is Nairobi."], "Kiribati": ["Country in Oceania with capital Tarawa.", "A language of Kiribati."], "pariah": ["Someone who is despised or rejected."], "outcast": ["Someone who is despised or rejected."], "jester": ["A person in bright garb and fool's cap who amused a mediaeval royal court.", "Someone who makes jokes."], "Liberia": ["Country in Western Africa whose capital and largest city is Monrovia."], "Laos": ["A country in Southeast Asia whose capital is Vientiane."], "Cameroon": ["Country in Central Africa whose capital is Yaound\u00e9."], "Chile": ["A country in South America, with capital Santiago de Chile."], "Colombia": ["A country in northwestern South America, with capital Bogot\u00e1."], "anecdote": ["A short account of an incident, often humorous."], "Denmark": ["Country in western Europe whose capital is Copenhagen."], "Cyprus": ["Country between Europe and the Middle East, in the Mediterranean Sea, with capital Nicosia.", "ISO 639-6 entity", "Island between Europe and the Middle East, in the Mediterranean Sea."], "emergency contraceptive pill": ["Pill that a woman can take within three days after having intercourse to prevent that a fertilised egg will implant itself in the uterus."], "morning-after pill": ["Pill that a woman can take within three days after having intercourse to prevent that a fertilised egg will implant itself in the uterus."], "Slovenia": ["A coastal Alpine country in southern Central Europe bordering Italy on the west, the Adriatic Sea on the southwest, Croatia on the south and east, Hungary on the northeast, and Austria on the north."], "choose": ["To make a choice from a number of alternatives.", "To choose; to select as an alternative to another."], "Suriname": ["A country in South America, with capital Paramaribo."], "Belize": ["A country in Central America, with capital Belmop\u00e1n."], "Estonia": ["One of the Baltic countries that has land borders to the south with Latvia and to the east with Russia. It is separated from Finland in the north by the Gulf of Finland and from Sweden in the west by the Baltic Sea."], "Tanzania": ["Country in Eastern Africa."], "T-Shirt": ["A lightweight shirt without buttons, with short sleeves and no collar."], "atheism": ["The position that no God or gods exist."], "decade": ["A period of ten years."], "millennium": ["A period of 1000 years."], "Cuba": ["A country and the largest island in the Caribbean with capital Havana."], "active": ["Engaged in or ready for military or naval operations.", "Disposed to take action or effectuate change.", "Taking part in an activity.", "Characterized by energetic activity.", "Exerting influence or producing an effect.", "In operation.", "Of the sun; characterized by a high level activity in sunspots and flares and radio emissions.", "Expressing action rather than a state of being.", "Erupting or liable to erupt.", "Tending to become more severe or wider in scope.", "Full of activity or engaged in continuous activity (e.g. of seaport, market, etc.).", "(of e.g. volcanos) capable of erupting."], "combat-ready": ["Engaged in or ready for military or naval operations."], "fighting": ["Engaged in or ready for military or naval operations."], "participating": ["Taking part in an activity."], "dynamic": ["Expressing action rather than a state of being.", "In motion usually as the result of an external force."], "Miskito": ["Language spoken by the Miskito people in northeastern Nicaragua and in eastern Honduras."], "Norway Spruce": ["A coniferous tree of the family Pinaceae with straight trunk and conical crown, which is found mainly in the mountains of Europe"], "donkey": ["A domesticated animal, Equus asinus."], "barrier": ["A structure that bars passage.", "A bar with hinge that blocks passage in a horizontal position and allows passage in a vertical position."], "obstacle": ["A structure that bars passage.", "Something immaterial that stands in the way and must be circumvented or surmounted.", "A reason that keeps someone from doing something."], "calamity": ["An event resulting in great loss and or distress."], "altitude sickness": ["A pathological condition that is caused by acute exposure to high altitudes."], "acute mountain sickness": ["A pathological condition that is caused by acute exposure to high altitudes."], "AMS": ["A pathological condition that is caused by acute exposure to high altitudes."], "altitude illness": ["A pathological condition that is caused by acute exposure to high altitudes."], "precaution": ["A measure taken beforehand to ward off evil or secure good or success."], "asthma": ["A chronic inflammatory disease of the airways."], "incontinence": ["The inability of any of the physical organs to restrain discharges of their contents."], "hunger": ["A need of food.", "To suffer from hunger, to not get enough to eat for an extended amount of time; to feel the need to eat.", "A strong desire for something (not food or drink).", "To have a craving, appetite, or great desire for."], "buzzard": ["Diurnal bird of prey belonging to the Accipitridae family."], "hesitate": ["To be in suspense or uncertainty as to a determination.", "To have problems articulating the words, repeting sometimes some syllables."], "stammer": ["To have problems articulating the words, repeting sometimes some syllables."], "falter": ["To have problems articulating the words, repeting sometimes some syllables."], "stutter": ["To have problems articulating the words, repeting sometimes some syllables."], "halogen": ["Any of the elements of the halogen family, consisting of fluorine, chlorine, bromine, iodine, and astatine."], "lady": ["Historically polite address for a female person", "A woman of breeding or higher class.", "The wife of a lord."], "nucleus": ["The massive, positively charged central part of an atom made up of protons and neutrons."], "chain reaction": ["(physics) A nuclear reaction in which particles produced by the fission of one atom trigger fissions of other atoms.", "A series of events, each one causing the next."], "precipitation": ["The settling out of water from cloud in the form of rain, hail, snow, etc.", "The process of producing a separable solid phase within a liquid medium; represents the formation of a new condensed phase, such as a vapour or gas condensing to liquid droplets; a new solid phase gradually precipitates within a solid alloy as a result of slow, inner chemical reaction; in analytical chemistry, precipitation is used to separate a solid phase in an aqueous solution.\\n(Source: MGH)"], "crucian carp": ["(Carassius carassius) a member of the family Cyprinidae."], "coin": ["A piece of currency, usually metallic and in the shape of a disc, but sometimes polygonal, or with a hole in the middle.", "To form by stamping, punching, or printing.", "To make up (e.g. new words or phrases)."], "ventriloquist": ["A performer who can speak without moving his lips, often projecting the voice into a wooden dummy."], "invisible": ["That can not be seen."], "unseeable": ["That can not be seen."], "visible": ["That one can see."], "buy": ["The acquisition or the act of buying something by payment of money or its equivalent.", "To accept as true.", "To obtain in exchange for money or goods.", "To give, or offer a bribe."], "Balochistan": ["An arid region located in the Iranian Plateau in Southwest Asia and South Asia, between Iran, Pakistan and Afghanistan.", "Province in Pakistan which has Lahore as its capital.", "Province in Iran which has Zahedan as its capital."], "bleed": ["To emit or lose blood."], "Nasta'liq script": ["A calligraphy style for mainly Persio-Arabic and has been more popular in the Persian and Turkic spheres of influence."], "purse": ["A small bag for carrying money.", "A object used for carrying money and small personal items or accessories (especially by women).", "A small bag, purse or pocket worn at one's belt during medieval times."], "European": ["A person living in Europe / a person living in the European Union.", "Of or pertaining to Europe or its inhabitants."], "camel": ["A beast of burden, much used in desert areas, of the genus Camelus."], "Ido": ["An artificial language; a reform of Esperanto."], "Serbia": ["A country in southeastern Europe whose capital is Belgrade."], "Mauritania": ["Country in Northern Africa with capital Nuakchott."], "biome": ["A major regional group of distinctive plant and animal communities best adapted to the region's physical natural environment, latitude, altitude, and terrain."], "migration": ["The act, for living things, of moving from one biome to another."], "tugboat": ["(nautical) a small, powerful boat used to push or pull barges or to help maneuver larger vessels ; a small towboat."], "Moldova": ["Country in eastern Europe located between Romania to the west and Ukraine to the north, east and south."], "Monaco": ["A small princedom in Europe that borders only on France.", "The capital of the principality of Monaco."], "Oman": ["A country in the Middle East, in the south-east corner of the Arabian peninsula, with capital Muscat."], "Kabul": ["The capital of Afghanistan."], "Panama": ["A country in Central America, with capital Panama City."], "Oporto": ["The second-largest city of Portugal, capital of the District of Oporto.", "District of Portugal, located on the north west coast, in which the city of the same name is located (Oporto)."], "Poland": ["A country in Europe."], "Paraguay": ["Country in South America, with capital Asunci\u00f3n."], "Lesotho": ["A country in Southern Africa, entirely surrounded by the Republic of South Africa. Its capital is Maseru."], "bower anchor": ["(nautical) each of the two main anchors of a ship, carried permanently attached to their chains on each side of the bow, always ready to be let go in case of an emergency."], "giant": ["A mythical human of very great size.", "Very large."], "Peru": ["A country in South America, with capital Lima."], "Palau": ["A country in Oceania with capital Melekeok.", "ISO 639-6 entity"], "truffle": ["Any of various edible fungi, of the genus Tuber, that grow in the soil."], "cat o' nine tails": ["(nautical) a whip having nine knotted cords, formerly used for flogging as naval punishment."], "lammergeier": ["An Old World vulture, the only member of the genus Gypaetus."], "bearded vulture": ["An Old World vulture, the only member of the genus Gypaetus."], "sunny": ["Featuring a lot of sunshine.", "Exposed to the sun."], "kip": ["To rest in a state of decreased consciousness and reduced metabolism.", "A short period of sleep, especially one during the day time."], "nap": ["A short period of sleep, especially one during the day time.", "To sleep for a short period of time, especially during the day time."], "snooze": ["A short period of sleep, especially one during the day time."], "forty winks": ["A short period of sleep, especially one during the day time."], "doze": ["A short period of sleep, especially one during the day time."], "siesta": ["A short period of sleep, especially one during the day time.", "A short nap after lunch."], "elm": ["A tree of the genus Ulmus of the family Ulmaceae, large deciduous trees with alternate stipulate leaves and small apetalous flowers."], "virgin": ["A woman who has never had sexual intercourse."], "only child": ["A person that has no siblings."], "regret": ["The wish something had not happened.", "To wish that a past event had not happened."], "orangutan": ["One of two species of great apes with long arms and reddish, sometimes brown, hair native to Malaysia and Indonesia."], "chick": ["A woman that is considered sexually attractive by a man, or many men.", "A young of any of the bird species in the order Galliformes, especially from the species domesticated chicken (Gallus gallus domesticus).", "A young bird of any species, nestling."], "Croatia": ["A country in Europe with capital Zagreb."], "Djibouti": ["A country in Eastern Africa whose capital is Djibouti.", "Capital of Djibouti."], "homeopathy": ["(medicine) a system of treating diseases with small amounts of substances which, in larger amounts, would produce the observed symptoms."], "cop": ["A male police officer."], "policeman": ["A male police officer."], "policewoman": ["A female police officer."], "chess": ["A board game for two players with each beginning with sixteen chess pieces moving according to fixed rules across a chessboard with the objective to checkmate the opposing king."], "east": ["One of the four principal compass points, specifically 90\u00b0, conventionally directed to the right on maps. The direction of the rising sun."], "hormonal": ["Pertaining to hormones."], "antidote": ["A remedy to counteract the effects of poison.", "Expedient to remedy a difficult or critical situation."], "whole": ["With everything included.", "Not divided in parts.", "The whole of buildings, machines and necessary devices to carry out an activity.", "Set of elements constituting something complete.", "The result of the union of two or more elements.", "In a whole or complete manner.", "The totality of.", "Acting together as a single undiversified whole."], "dance": ["To move with rhythmic steps or movements, especially in time to music.", "A sequence of rhythmic steps or movements performed to music, for pleasure or as a form of social interaction."], "co-op": ["A form of housing where the residents are co-owners of a housing complex, usually an apartment block or a group of multi-familiy homes, where the co-ownership grants the right to inhabit one housing unit and the obligation to maintain that unit. Common facilities and outer maintenance is funded by a set monthly fee that is paid by all co-owners."], "atom": ["(chemistry and physics), is the smallest possible particle of a chemical element that retains its chemical properties."], "condo": ["A form of housing where the residents are co-owners of a housing complex, usually an apartment block or a group of multi-familiy homes, where the co-ownership grants the right to inhabit one housing unit and the obligation to maintain that unit. Common facilities and outer maintenance is funded by a set monthly fee that is paid by all co-owners."], "boiling fowl": ["A usually old and large chicken that is generally used in the preparation of soup."], "hyponym": ["An entry in a thesaurus that has a smaller semantic scope than the headword itself."], "hypernym": ["A term that has a more comprehensive or more general semantic scope than an other."], "hypochlorite": ["The negative ion of hypochlorous acid with the chemical formula [OCl]-. A five percent solution of the sodium salt in water is used as bleaching agent."], "salivary gland": ["Gland that produces the saliva."], "xerostomia": ["Dryness of the mouth, because of a lack of saliva."], "dry mouth": ["Dryness of the mouth, because of a lack of saliva."], "lingual nerve": ["Nerve on the tongue that transmits the taste to the brain."], "legal entity": ["A legal construct through which the law allows a group of natural persons to act."], "natural person": ["In jurisprudence a human being perceptible through the senses and subject to physical laws."], "ISO 639-3 codes": ["OmegaWiki collection of ISO 639-3 language codes"], "stroke": ["The loss of brain function arising when the blood supply to the brain is suddenly interrupted.", "To touch or kiss lovingly.", "An event that happens suddenly or by chance without an apparent cause."], "cerebrovascular accident": ["The loss of brain function arising when the blood supply to the brain is suddenly interrupted."], "Sicilian": ["The language of Sicily."], "go away": ["To move away from a place, a situation or a talk.", "To tell someone to go away.", "To go away from a place; to leave."], "enough": ["All that is required, needed, or appropriate."], "before": ["At a time before that.", "In front of in space", "In front of, according to system of ordering items.", "Earlier than (in time).", "Under consideration, judgment, authority of (someone).", "In the future of (someone).", "At a higher or greater position in a subjective ranking."], "nearly": ["All, but not quite; slightly short of ; close to entirely.", "In an intimate manner."], "measure": ["The quantity, size, weight, distance or capacity of a substance compared to a designated standard.", "An (unspecified) quantity or capacity", "The precise designated distance between two objects or points.", "The act of measuring.", "A musical designation consisting of all notes and or rests delineated by two vertical bars; an equal and regular division of the whole of a composition.", "A tactic, strategy or piece of legislation.", "A function that assigns a non-negative number to a given set following the mathematical nature that is common among length, volume, probability and the like.", "To ascertain the quantity of a unit of material via calculated comparison with respect to a standard.", "To estimate the unit size of something.", "To place a value on."], "Balinese": ["A language spoken on the island of Bali."], "hard": ["Resistant to pressure.", "Requiring a lot of effort to do or understand.", "Demanding a lot of effort to endure.", "Of a person, severe, unfriendly.", "Absolutely not open for interpretation.", "Of an alcoholic beverage, containing a high percentage of alcohol.", "Of water, high in dissolved calcium compounds.", "Very strong or vigorous (e.g. of a punch or blow)."], "Yandruwandha": ["An nearly extinct or extinct language of south Australia."], "decrease": ["(Of a quantity) to become smaller.", "An amount by which a quantity is diminished.", "Act of reducing a quantity or a number.", "To make smaller.", "The act of abating or the state of being abated."], "proton": ["A positively charged subatomic particle forming part of the nucleus of an atom and determining the atomic number of an element."], "cheap": ["Low in price.", "Of very poor quality."], "sea otter": ["A large otter (Enhydra lutris) of the Mustelids family that is the only otter that can live permenantly in the sea."], "pair": ["Two similar or identical things taken together.", "(followed by of) Two; a couple of.", "Used in the names of some objects and garments that have two similar parts or halves", "To bring two objects, ideas, or people together.", "In mathematics, an ordered list of two elements."], "Konkani": ["A language of India.", "An Indo-Aryan language group belonging to the Indo-European family of languages spoken in the Konkan coast of India, consisting of two individual languages: Konkani and Goan Konkani."], "rain cats and dogs": ["To rain heavily."], "rain dogs and cats": ["To rain heavily."], "infringement": ["A crime less serious than a felony."], "neutron": ["(physics) a subatomic particle having no charge and almost the same mass such as proton; forming part of the nucleus of an atom."], "Min Nan": ["The language of the southern Fujian province of China."], "Oruzgan": ["One of the 34 provinces of Afhanistan."], "rape": ["A Eurasian cruciferous plant, Brassica napus, that is cultivated for its seeds, which yield a useful oil, and as a fodder plant.", "To force sexual intercourse or other sexual activity upon another person, without their consent.", "The act of forcing sexual intercourse or other sexual activity upon another person against their will."], "Pampangan": ["A regional language spoken by the Pampangan (also named Kapampangan) people of the Philippines. It is a Northern Philippine language within the Austronesian language family.", "People inhabitating a part of the North of area belonging to the state of the Philipines. Their mother tongue is the language Pampangan (also called Kapampangan)"], "Kapampangan": ["A regional language spoken by the Pampangan (also named Kapampangan) people of the Philippines. It is a Northern Philippine language within the Austronesian language family.", "People inhabitating a part of the North of area belonging to the state of the Philipines. Their mother tongue is the language Pampangan (also called Kapampangan)"], "atomic number": ["The number of protons found in the nucleus of a atom."], "obituary": ["A brief notice of a person's death, as published in a newspaper", "A biography of a recently deceased person, written by a journalist and published in a newspaper"], "discover": ["To find something for the first time.", "(chess) To create by moving a piece out of another piece's line of attack.", "(somewhat dated) To expose something previously covered", "To see, discover or determine something, unclear, distant or hidden, by looking carefully."], "blockade": ["The isolation of something, especially a port, in order to prevent commerce and traffic in or out.", "To render passage impossible by physical obstruction."], "siege": ["A prolonged military assault on a blockade of a city or fortress with the intent of conquering by force or attrition."], "Piedmontese": ["A language spoken by over 2 million people in Piedmont, northwest Italy"], "pandemic": ["Epidemic over a wide geographical area (several countries, continents or worldwide) and affecting a large proportion of the population.", "(Of a disease) occurring over a wide geographic area and affecting a large proportion of the population."], "CFC": ["Gases formed of chlorine, fluorine, and carbon whose molecules normally do not react with other substances; they are therefore used as spray can propellants because they do not alter the material being sprayed."], "alphabet": ["A complete standardized set of letters each of which roughly represents a phoneme of a spoken language."], "puma": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "cougar": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "mountain lion": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "panther": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail.", "A big cat of the genus Panthera."], "catamount": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "painter": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail.", "A person (usually a professional) who brushes paint onto surfaces (such as paper or canvas), in order to create a creative piece or work."], "American lion": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "Mexican lion": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "Florida panther": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "silver lion": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "red lion": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "red panther": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "red tiger": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "brown tiger": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "deer tiger": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "ghost cat": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "mountain screamer": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "Indian devil": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "sneak cat": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "king cat": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "painted cat": ["Species of feline (Puma concolor) tawny-colored with black-tipped ears and tail."], "artist": ["A person (usually a professional) who brushes paint onto surfaces (such as paper or canvas), in order to create a creative piece or work.", "A person with creative talent who produces artworks."], "elementary particle": ["(physics) any of the subatomic particles that does not consist of other, smaller particles."], "interactive fiction": ["A computer game genre (most popular in the 1970s and 1980s) where the player directs the character by typing commands. Games of this genre commonly involve solving puzzles and exploring environments."], "text adventure": ["A computer game genre (most popular in the 1970s and 1980s) where the player directs the character by typing commands. Games of this genre commonly involve solving puzzles and exploring environments."], "IF": ["A computer game genre (most popular in the 1970s and 1980s) where the player directs the character by typing commands. Games of this genre commonly involve solving puzzles and exploring environments."], "sunshine": ["The direct light of the sun.", "A location on which the sun's rays fall.", "A source of cheerfulness or happiness."], "sunlight": ["The electromagnetic radiation and particles emitted by the sun.", "The direct light of the sun."], "sunbeam": ["A narrow ray of sunlight."], "sunray": ["A narrow ray of sunlight."], "sun-ray": ["A narrow ray of sunlight."], "particle physics": ["(physics) a branch of physics that studies the elementary particle constituents of matter and radiation, and the interactions between them."], "Frosinone": ["City in the region Lazio, Italy.", "A province in the Lazio region of Italy"], "mention": ["To refer briefly to; to make reference to.", "To make mention of.", "A short note recognizing a source of information or of a quoted passage."], "touch": ["To be of (some) importance, to influence something or someone (enough), to impress, to touch.", "To be in physical contact with.", "To perceive via the tactile sense, especially with a hand.", "To be relevant or of importance to.", "To affect emotionally."], "marry": ["To take as husband or wife; to take in marriage.", "To perform a wedding ceremony.", "To enter marriage; to take a husband or a wife."], "Finn": ["A person of Finnish nationality."], "million": ["The cardinal number 1,000,000."], "monastery": ["The habitation and workplace of a community of monks or nuns.", "A convent for men."], "moderate": ["To make less fast or intense.", "Refers to the development of a economical variable and simil.", "To lessen the intensity of; temper; hold in restraint; hold or keep within limits.", "Being of average amount, intensity, quality, degree.", "To make less strong or intense; soften."], "Stone Age": ["A period of history that encompasses the first widespread use of technology in human evolution and the spread of humanity from the savannas of East Africa to the rest of the world."], "Etruscan": ["Of or pertaining to the region and culture of Etruria, a pre-Roman civilization in Italy.", "The extinct language of Etruria, which has no known relation to any other language."], "herb": ["Any green, leafy plant, or parts thereof, used to flavour or season food.", "A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect."], "ivy": ["Genus of about ten species of climbing or ground-creeping evergreen woody plants in the family Araliaceae."], "exclude": ["To refuse to accept as valid.", "To bar someone from entering; to keep out.", "To prevent from entering; to keep out (e.g. of membership)."], "execution": ["The act of commiting capital punishment against someone for a certain crime or action", "The carrying out of an instruction by a computer."], "homonym": ["A word that sounds and/or is spelled the same as another word but has a different meaning."], "clothes": ["All coverings designed to be worn on a person's body."], "neoplasm": ["Any new and abnormal growth, specifically one in which cell multiplication is uncontrolled and progressive.", "An abnormal new growth of disorganized tissue in animals or plants."], "ccTLD": ["An Internet top-level domain generally used or reserved for a country or a dependent territory."], "International Atomic Energy Agency": ["Autonomous organization created on July 29, 1957 who seeks to promote the peaceful use of nuclear energy and to inhibit its use for military purposes."], "IAEA": ["Autonomous organization created on July 29, 1957 who seeks to promote the peaceful use of nuclear energy and to inhibit its use for military purposes."], "abbey": ["The habitation and workplace of a community of monks or nuns.", "The church of a monastery."], "absurd": ["Contrary to reason or propriety."], "matter": ["(physics) is commonly defined as the substance of which physical objects are composed.", "To be important.", "A vaguely specified subject, question, situation, etc. that is or may be an object of consideration or action."], "ludicrous": ["Contrary to reason or propriety."], "nunnery": ["The habitation and workplace of a community of monks or nuns.", "A convent for women."], "role model": ["A person who serves as a example of positive behavior, especially in some specific field."], "hero": ["The principal character in a work of fiction.", "A person who serves as a example of positive behavior, especially in some specific field.", "A man distinguished by exceptional courage, nobility and strength.", "A being of great strength and courage celebrated for bold exploits; often the offspring of a mortal and a god."], "castle": ["Historical building or group of building used for defense by military forces, whose main structures are walls and towers.", "A piece of chess commonly shaped like a tower. Each player has two, and they move in straight horizontal or vertical lines across the board."], "wild": ["Not controlled or not in compliance with the norms of good education or decency.", "Not domesticated or tamed.", "not domesticized; living on their own (almost) without human interference"], "boisterous": ["Not controlled or not in compliance with the norms of good education or decency.", "Noisy and lacking in restraint or discipline."], "ranting": ["Not controlled or not in compliance with the norms of good education or decency.", "A loud bombastic declamation expressed with strong emotion."], "savage": ["Living outside of civilized societies.", "A person living an uncivilized life, in an original state viewed from a standpoint of the development of mankind from their infestation til today, having had no education in the narrow sense of modern civilisation's education.", "Marked by extreme and violent energy."], "unruly": ["Not neat or regular; uneven.", "Noisy and lacking in restraint or discipline."], "rugged": ["Not neat or regular; uneven."], "fierce": ["Marked by extreme and violent energy."], "furious": ["Marked by extreme and violent energy."], "illegal": ["Contrary to or forbidden by law, especially criminal law.", "Not conforming to, permitted by, or recognised by law or rules."], "unofficial": ["Not in accord with the usual regulations.", "Not officially established."], "tousled": ["Not neat or regular; uneven."], "crazy": ["Mentally ill; affected with madness or insanity."], "mad": ["Irritated, in a temper, feeling or displaying anger.", "Mentally ill; affected with madness or insanity.", "Showing symptoms of mental illness.", "Extremely foolish or unwise."], "in a rant": ["Not controlled or not in compliance with the norms of good education or decency."], "mischivous": ["Not controlled or not in compliance with the norms of good education or decency."], "living wild": ["not domesticized; living on their own (almost) without human interference"], "wildliving": ["not domesticized; living on their own (almost) without human interference"], "Nigeria": ["A country in Western Africa. Nigeria shares land borders with the Republic of Benin in the west, Chad and Cameroon in the east, Niger in the north, and borders the Gulf of Guinea in the south."], "Dinka": ["A group of tribes of south Sudan."], "Sudan": ["A country in Northern Africa."], "Libya": ["A country in Northern Africa whose capital is Tripoli."], "Turkmen": ["A language spoken in Central Asia.", "A person from or a citizen of Turkmenistan.", "Of, from or pertaining to Turkmenistan, the Turkmen people or the Turkmen language."], "particle accelerator": ["A device that uses electric fields to propel electrically charged particles to high speeds."], "Darfur": ["Region in the West of Sudan consisting of three states."], "falafel": ["A fried ball or patty made from spiced fava beans and/or chickpeas."], "Turkmenistan": ["Country in Central Asia."], "impudent": ["Not showing due respect."], "impertinent": ["Not showing due respect.", "Not pertinent to the matter under consideration."], "brazen-faced": ["Not showing due respect.", "Unrestrained by convention or propriety."], "atomic mass": ["The mass of an atom at rest, most often expressed in unified atomic mass units \"u\"."], "Greenbelt": ["An annual Christian music and performing arts festival that is currently held in Cheltenham in the United Kingdom."], "photon": ["The elementary particle responsible for electromagnetic interactions and light."], "do": ["To put to death; to end a life.", "To take part in sexual activity (most commonly sexual intercourse) with another person for the purposes of sexual pleasure.", "To act, to behave.", "To perform a theatrical role.", "To meet the need.", "(For an act or situation) To be reasonable or acceptable.", "To prepare (an article of food or drink) for consumption.", "[With verbal nouns, forming phrases approximately equivalent to the source verb]", "To cause by one's action (a person) to have (something).", "To perform (with obj. being the action).", "To perform as required (with obj. expressing command, duty, etc.).", "To perform as required (a ceremony, an act, etc.).", "To bring to a conclusion.", "To operate upon or deal with (an object) in any way.", "To act the part of.", "To accomplish (a given distance) in travelling.", "To visit (a location) as a tourist, or attend (an entertainment).", "To spend (time) in jail or, sometimes, in office.", "To use (a hallucinogenic or other drug).", "To exert activity of any kind.", "To succeed in achieving a task (despite difficulties).", "[In the context of health or condition] to be (as specified).", "To grow or develop well and vigorously.", "[A syntactic marker in questions.]", "[A syntactic marker in negations.]", "[A syntactic marker for emphasis.]", "To act this way. [A pro-verb: word replacing any recent earlier, or implied verb.]", "[Used to add force to entreaty, exhortation, or command.]", "To have as one's job.", "To meet (for a specified meal).", "To engage in.", "A syllable used in solf\u00e8ge to represent the first and eighth tonic of a major scale.", "The style in which a person's hair is cut, arranged, and worn.", "A social function of modest size and formality."], "hobgoblin": ["A mischievous creature in British and Scottish folklore.", "An object of dread or apprehension."], "United Kingdom": ["A country in Western Europe (comprising Wales, Scotland, England and Northern Ireland) with the capital London."], "Brazil": ["A country in South America with the capital Brazilia."], "Bhutan": ["A country in South Asia whose capital is Thimphu."], "Brunei": ["A country in Southeast Asia whose capital is Bandar Seri Begawan.", "A language spoken in Brunei and Malaysia"], "Benin": ["A country in Western Africa whose capital is Porto Novo."], "Burundi": ["A country in Eastern Africa, whose capital is Bujumbura."], "Thailand": ["A country in Southeast Asia."], "Winnie-the-Pooh": ["A fictional golden-coloured bear who is known for being lovable but slow-witted (from the Winnie-the-Pooh series by AA Milne)."], "Pooh Bear": ["A fictional golden-coloured bear who is known for being lovable but slow-witted (from the Winnie-the-Pooh series by AA Milne)."], "Winne the Pooh": ["A fictional golden-coloured bear who is known for being lovable but slow-witted (from the Winnie-the-Pooh series by AA Milne)."], "quantum": ["(physics) the smallest possible unit of a given quantity.", "Of a change, sudden or discrete, without intermediate stages."], "drift away": ["To be lost in phantasies or be carried away by some internal vision, having temorarily lost (part of) contact to reality."], "illegally": ["In a manner contrary to law."], "unofficially": ["In a manner contrary to law."], "C": ["A musical note.", "A general-purpose computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system."], "perfume": ["Industrial product, made from flowers, or produced by some chemical process, from which a pleasant smell exhales.", "Pleasant and aromatic smell that usually comes from flowers.", "To spray or dab with perfume."], "duration": ["The weighted average life of a security."], "hedonism": ["(philosophy) The belief that pleasure or happiness is the highest good in life."], "security": ["The state of being secure from harm, injury, danger or risk.", "The investment of money in assets."], "glasses": ["A pair of lenses in a frame that are worn in front of the eyes and are used to correct faulty vision or protect the eyes."], "spectacles": ["A pair of lenses in a frame that are worn in front of the eyes and are used to correct faulty vision or protect the eyes."], "pancake": ["A delicacy made of flour, eggs and milk, baked in a frying pan."], "star system": ["A huge gravitationally bound system of relatively close stars."], "hedonistic": ["Of or pertaining to hedonism or hedonists."], "United Kingdom of Great Britain and Northern Ireland": ["A country in Western Europe (comprising Wales, Scotland, England and Northern Ireland) with the capital London."], "tanker": ["A very large ship which carries crude oil or other petroleum products in big tanks.", "A ship designed for bulk shipment of liquids or gases."], "anyway": ["Something that's going to happen, independent of whatever will be"], "unhappy": ["That is not happy.", "Feeling mentally uncomfortable because something is missing or wrong."], "unsatisfied": ["Not satistied."], "satisfied": ["In a state of satisfaction."], "atomic line filter": ["Optical narrow band-pass filter, used for filtering electromagnetic radiation."], "black hole": ["Object predicted by general relativity with a gravitational field so strong that nothing can escape it, not even light."], "professional": ["Somebody who earns his living by doing a job.", "Done by a professional.", "A highly skilled person.", "Relating to a profession, characterized by or conforming to the technical or ethical standards of a profession."], "culture": ["The body of customary beliefs, social forms, and material traits constituting a distinct complex of tradition of a racial or social group."], "Ukraine": ["A country in Eastern Europe, with the capital Kiev."], "Mongolia": ["Country in Central Asia."], "cleanliness": ["The state of being clean and keeping healthy conditions.\\n(Source: PHCa)"], "Mali": ["A country in Western Africa whose capital is Bamako.", "A language in Papua New Guinea."], "law": ["One of the rules making up the body of law.", "Science that studies the complex of rules fixed by law or custom which regulate social relations.", "A body of rules of action or conduct prescribed by a legislative authority, and having binding legal force."], "building related illness": ["A set of symptoms, including headaches, fatigue, eye irritation, and dizziness, typically affecting workers in modern airtight office buildings and thought to be caused by indoor pollutants, such as formaldehyde fumes, particulate matter, microorganisms, etc."], "rhinoceros": ["A large herbivorous pachyderm of the family Rhinocerotidae, with thick, gray skin and one or two horns on their snouts."], "rhino": ["A large herbivorous pachyderm of the family Rhinocerotidae, with thick, gray skin and one or two horns on their snouts."], "Bahrain": ["A country in the Middle East."], "quark": ["Elementary particle which forms protons and neutrons.", "Fresh unripened cheese of a smooth texture made from pasteurized milk and rennet."], "Barbados": ["A country in the Caribbean with capital Bridgetown."], "sleigh": ["A vehicle moved on runners, used to transport persons or goods on snow or ice."], "Bahamas": ["A country in the Caribbean with capital Nassau."], "Botswana": ["A country in Southern Africa whose capital is Gaborone."], "Venezuela": ["A country in South America, with capital Caracas."], "Vietnam": ["A country in Southeast Asia."], "Uruguay": ["A country in South America, with capital Montevideo."], "Togo": ["A country in Western Africa whose capital is Lom\u00e9."], "Egypt": ["A country in North Africa."], "Eritrea": ["Country in Eastern Africa whose capital is Asmara."], "Ecuador": ["A country in South America, with capital Quito."], "Dominica": ["A country in the Caribbean."], "Latvia": ["One of the Baltic countries, whose capital is Riga."], "Morocco": ["A country in Northern Africa whose capital is Rabat."], "Malta": ["A country in Europe, an island nation between Italy, Tunisia and Libya. Its capital is Valletta."], "Malawi": ["A country in Southern Africa whose capital is Lilongwe."], "Costa Rica": ["A country in Central America, with capital San Jos\u00e9."], "Ethiopia": ["A country in Eastern Africa, bordered by Eritrea, Djibouti, Somalia, Kenya and Sudan. Its capital is Addis Ababa."], "mass": ["The total amount of matter in an object, determined by the gravity or the inertia of that object.", "A body of matter without definite shape.", "A great number or large amount of things not placed in a pile.", "The celebration of the Eucharist by the Roman Catholic Church and Protestant Churches.", "People of the lower classes.", "A large body of individuals, especially persons.", "A palpable or visible abnormal globular structure.", "Concerning a large quantity or number.", "Involving a large number of people."], "Kazakhstan": ["A country in Central Asia whose capital is Astana."], "shovel": ["A tool consisting of a stick (usually out of wood) and a bigger, slightly humped surface (usually out of metal), which is used to move material such as earth, snow, grain, etc. from one place to another.", "Small shovel used for instance by children to play with the sand.", "A machine used to dig the ground and to lift and carry dirt and debris.", "To dig with or as if with a shovel."], "Mauritius": ["A country in the Indian Ocean with capital Port-Louis."], "Macedonia": ["A country in Europe."], "hippopotamus": ["A massive thick-skinned herbivorous quadruped living in Africa."], "hippo": ["A massive thick-skinned herbivorous quadruped living in Africa."], "false friend": ["A word in one language bearing a deceptive resemblance to a word in another language."], "cognate": ["A word derived from the same roots as another word.", "Genealogy: A blood relative in the female line.", "One related by blood or origin with another, especially a person sharing an ancestor with another."], "blush": ["To redden in the face from shame, excitement or embarrassment.", "A cosmetic consisting of red powder which is applied to the cheeks so as to provide a more youthful appearance and to emphasise the cheekbones."], "Gabon": ["A country in Western Africa whose capital is Libreville."], "Mozambique": ["A country in southeastern Africa with capital Maputo."], "Niger": ["A country in Western Africa whose capital is Niamey."], "Nepal": ["A country in South Asia, located in the Himalaya between India and China (Tibet)."], "Malaysia": ["A country in Southeast Asia that consists of two parts that are seperated by the South Chinese Sea."], "Myanmar": ["A country in Southeast Asia that is located partially on the Indian subcontinent and has borders with Bangladesh, China, India, Laos and Thailand."], "Kuwait": ["A country on the Arabian peninsula in Asia on the coast of the Persian Gulf, with Saudi Arabia in the South and Iraq in the North; Its capital is Kuwait City."], "redden": ["To become red.", "To make red."], "periodic table": ["A table which presents of all chemical elements sorted by their atomic number and divided into groups according to the structure of their electron shell."], "Athens": ["The capital city of Greece, named after the Greek goddess."], "lemon yellow": ["A colour resembling that of the lemon; RAL-1012."], "bee's knees": ["The very best of something; the height of excellence."], "mole": ["Spy under deep cover.", "A benign growth on the skin (usually tan, brown, or flesh-colored) that contains a cluster of melanocytes and may form a slight relief.", "Small insectivorous mammal, especially of the family Talpidae, living chiefly underground, and having velvety fur, very small eyes, and strong forefeet."], "abdication": ["The voluntary renunciation of sovereign power."], "cream of the crop": ["The very best of something; the height of excellence."], "overlook": ["To have within ones range of physical sight or vision, likely from an elevated position; to be in a position of oversight; to visually control.", "To fail to notice or recognize (usually a detail).", "To purposely not notice or recognize, or pretend to not notice; having seen or recognized something, to willfullly not take an appropriate or required action.", "To look down on."], "points": ["Entities that have a location in space but no extent."], "bigotry": ["The characteristic qualities of a bigot; intolerance or prejudice, especially religious or racial."], "bigot": ["One strongly loyal to one's own social group, and irrationally intolerant or disdainful of others."], "Frankfurt": ["Short for Frankfurt-am-Main, a city in central Germany.", "Short for Frankfurt-an-der-Oder a city in eastern Germany."], "Collection membership": ["An OmegaWiki term to indicate an expression is part of the indicated collections. There should not be synonyms for this term, only translations."], "Relations": ["An OmegaWiki term to indicate an expression is related to the indicated expressions. There should not be synonyms for this term, only translations."], "stingray": ["Any of various large, venomous rays, of the orders Rajiformes and Myliobatiformes, having a barbed, whiplike tail."], "Taiwan": ["A partially recognised state in East Asia which governs a number of islands claimed by the People's Republic of China, including the island of Taiwan."], "Tuvalu": ["A country in Oceania."], "filibuster": ["Delaying tactics, especially long, often irrelevant speeches given in order to delay progress or the making of a decision."], "gerrymandering": ["The practice of redrawing electoral districts to gain an electoral advantage for a political party."], "Tunisia": ["A country in Northern Africa with capital Tunis."], "life": ["The sequence of physical and mental experiences that make up the existence of an individual.", "The quality that distinguishes a vital and functional plant or animal from a dead body.", "A state of living characterized by capacity for metabolism, growth, reaction to stimuli, and reproduction.", "The period during which an entity (a person, an animal, a plant, a star) is alive.", "The span of time during which an object operates.", "The period of time during which an object is recognizable.", "A status given to any entity including animals, plants, fungi, bacteria, etc. \u2014 and sometimes viruses \u2014 having the properties of replication and metabolism.", "The essence of the manifestation and the foundation of the being.", "The subjective and inner manifestation of the individual.", "The state of being.", "A worthwhile existence.", "The most worthwhile component or participant.", "Something which is inherently part of a person's existence, such as job, family, a loved one, etc.", "A term of imprisonment of a convict until his or her death.", "One of the player's chances to play, lost when a mistake is made (e.g. in a video game)."], "usually": ["Under normal conditions."], "sublimate": ["To change state from a solid to a gas (or from a gas to a solid) without passing through the liquid state.", "To modify the natural expression of a sexual or primitive instinct in a socially acceptable manner."], "silliness": ["The quality or state of being silly."], "violet": ["The resultant colour of the junction of the flesh-color with blue. Colour of the amethyst.", "A plant of the genus Viola having two upswept petals and three pointing downward."], "Cancer": ["One of the twelve constellations of the zodiac.", "The fourth sign of the zodiac; the sun is in this sign from about June 21 to July 22.", "A person who is born while the sun is in Cancer.", "A genus of marine crabs of the family Cancridae."], "gold medal": ["The award presented after being victorious in a sporting event."], "conducive": ["Tending to bring about."], "nightmare": ["An unpleasant dream which evokes feelings of fear or horror.", "A situation resembling a terrifying dream."], "ultimatum": ["Final demand made without intent of negotiation. It is usually the last step before a confrontation."], "nightmarish": ["Resembling a nightmare."], "Madagascar": ["An island country in the Indian Ocean off the southeastern coast of Africa"], "Maldives": ["A country in South Asia, more particularly an island nation in the Indian Ocean, located about 700 kilometers southwest of Sri Lanka. Its capital is Male."], "amnesty": ["An act of the sovereign power granting a pardon."], "spy": ["A person in charge of illegally gathering information to be kept secret."], "secret agent": ["A person in charge of illegally gathering information to be kept secret."], "sprawl": ["To spread out in a disorderly fashion."], "straggle": ["To spread out in a disorderly fashion."], "electron configuration": ["The distribution of electrons of an atom or molecule in atomic or molecular orbitals."], "chemist": ["A scientist who practises chemistry.", "Somebody who professionally prepares and sells pharmaceuticals."], "cheers": ["[An interjection of gratitude or politeness, used in response to something done or given.]"], "tiger": ["A large carnivorous animal (Panthera tigris) of the cat family indigenous to Asia."], "roadkill": ["An animal killed by traffic."], "Qatar": ["A country in the Middle East with capital Doha."], "gravity": ["Physics: the force of mutual attraction between all masses in the universe."], "gravitation": ["Physics: the force of mutual attraction between all masses in the universe."], "scaffolding": ["A temporary modular system of metal, wooden or bamboo tubes forming a framework used to support people and material in the construction or repair of buildings and other large structures."], "vegetarian": ["A person who does not consume meat, with or without the use of other animal derivatives, such as dairy products or eggs.", "A woman who does not eat meat.", "Of or pertaining to vegetarianism or vegetarians.", "Consisting only of fruit, vegetables, nuts etc; not containing meat."], "Russia": ["The largest country in the world, partially located in Europe and partially in Asia."], "degeneration": ["A gradual deterioration from natural causes."], "fantasise": ["To have a daydream; to indulge in a fantasy."], "Czechia": ["A country in Central Europe, with capital Prague."], "Czech Republic": ["A country in Central Europe, with capital Prague."], "Yemen": ["A country in the Middle East located at the most Southern point of the Arabic peninsula, with capital San\u2018a\u2019."], "bistro": ["A small informal restaurant."], "soup kitchen": ["An institution that tries to help in times of hunger and need by providing free food."], "voyeurism": ["The act of spying on people engaged in intimate behaviors."], "give birth": ["To release an offspring from one's own body; to cause to be born."], "like": ["To find (something) agreeable with one's taste .", "As an example. [Used to introduce an example or list of examples.]", "In the way of.", "To find attractive.", "To have an affection for.", "To enjoy, be in favor/favour of.", "In a manner suggesting.", "To prefer or wish to do something."], "vein": ["A blood vessel that transports blood from the capillaries back to the heart."], "explanation": ["The act or process of describing how something works or the reasons why something happened."], "artery": ["A blood vessel transporting blood away from the heart.", "A major transit corridor."], "amateur": ["Someone who pursues something as a hobby."], "tsunami": ["A large seismically generated sea wave which is capable of considerable destruction in certain coastal areas, especially where submarine earthquakes occur."], "heavenly body": ["A natural objects in the universe which is visible in the sky."], "documentary": ["A film, TV program, book etc. that presents in a factual or informative manner."], "crown prince": ["A prince who in a monarchy is the first in line to succeed the legitimate monarch at his abdication or death."], "coronation": ["The act of investing a monarch with the insignia of royalty, on his succeeding to the throne.", "The act of enthroning or the state of being enthroned."], "sceptre": ["An ornamental staff held by a ruling monarch as a symbol of power."], "mane": ["The long hair in the neck of horses and lions."], "knowledge": ["The psychological result of perception and learning and reasoning.", "General understanding or familiarity with a subject, place, situation etc.", "Awareness of a particular fact or situation.", "The state of appreciating truth or information.", "The total of what is known.", "Something that can be known."], "communicate": ["To transmit information and make known.", "To be in verbal contact; to interchange information or ideas."], "receive": ["To be handed something; to come into possession of.", "To express willingness to have (one) in one's home or environment.", "To convert a signal into sounds or pictures.", "To salute with kindness, as a newcomer; to bid welcome to; to greet upon arrival.", "To go through (mental or physical states or experiences).", "To receive as a retribution or punishment."], "pertain": ["To have to do with or to be relevant to ...", "To be a part or attribute of.", "To be relevant or of importance to."], "systematic": ["Characterized by order and planning."], "study": ["A detailed critical inspection.", "To apply the mind to learning and understanding a subject (especially by reading).", "A written document describing the findings of some individual or group.", "A composition intended to develop one aspect of the performer's technique.", "To consider in detail and subject to an analysis in order to discover essential features or meaning.", "To follow a course of study; to be enrolled at an institute of learning.", "To think intently and at length, as for spiritual purposes.", "To acquire, or attempt to acquire knowledge or an ability to do something.", "Continued attention of the mind to a particular subject.", "A room in a house intended for reading and writing."], "canvass": ["To consider in detail and subject to an analysis in order to discover essential features or meaning.", "An inquiry into public opinion conducted by interviewing a random sample of people."], "meditate": ["To think intently and at length, as for spiritual purposes."], "physical": ["Involving the body as distinguished from the mind or spirit.", "Relating to the sciences dealing with matter and energy; especially physics.", "Having substance or material existence.", "Impelled by physical force especially against resistance.", "A medical check-up undertaken by a physician; usually done on a regular basis on apparently healthy individuals in order to discover any illnesses or ailments."], "tangible": ["Having substance or material existence."], "touchable": ["Having substance or material existence."], "global": ["Involving the entire earth; not limited or provincial in scope."], "planetary": ["Of, or relating to planets, or the orbital motion of planets."], "universe": ["Everything that exists anywhere.", "An entity similar to our Universe; one component of a larger entity known as the multiverse.", "Everything under consideration.", "An imaginary collection of worlds.", "Intense form of world in the sense of perspective or social setting."], "mechanical": ["Using (or as if using) mechanisms or tools or devices.", "Relating to or concerned with machinery or tools."], "industrial": ["Of or relating to or resulting from industry."], "mud": ["A mixture of clay and/or silt with water to form a plastic mass with a particle size preponderantly below 0.06 mm diameter. It is deposited in low-energy environments in lakes, estuaries and lagoons. It may also be deposited in deep-sea environments.\\n(Source: WHIT)", "Soaked clay or soil; very soft ground.", "To soil with mud, muck, or mire.", "(oil extraction) A mixture of base substance and additives used to lubricate the drill bit and to counteract the natural pressure of the formation."], "arts": ["Studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills)."], "artwork": ["Photographs or other visual representations in a printed publication."], "nontextual matter": ["Photographs or other visual representations in a printed publication."], "graphics": ["Photographs or other visual representations in a printed publication."], "mass transport": ["The movement of matter in a medium.\\n(Source: MGH)"], "steam engine": ["An external combustion engine that makes use of the thermal energy that exists in steam, converting it to mechanical work."], "concentration": ["In solutions, the mass, volume, or number of moles of solute present in proportion to the amount of solvent or total solution.\\n(Source: MGH)", "The process of increasing the quantity of a component in a solution. The opposite of dilution.\\n(Source: CED)", "Complete attention."], "guess": ["To have as opinion, belief, or idea.", "To succeed to know, or discover, by way of surmises.", "A prediction made without factual evidence.", "To suppose with contestable premises."], "permafrost": ["Soil that stays in a frozen state for more than two years in a row."], "improve": ["To make better.", "To get better.", "To make better, more useful, more beautiful through modification."], "ameliorate": ["To make better.", "To get better.", "To make better, more useful, more beautiful through modification."], "Rwanda": ["A country in Eastern Africa whose capital is Kigali.", "A language of Rwanda, the Democratic Republic of the Congo and Uganda."], "Tajikistan": ["A country in Central Asia."], "Zimbabwe": ["A country in Southern Africa. Its capital city is Harare."], "Zambia": ["A country in southern Africa. Its capital is Lusaka."], "inhabitants": ["All humans, officially inhabitating a given area having well defined, and precise, borders - usually seen from a standpoint of census, government, register, etc."], "Samoa": ["A country in Oceania."], "Slovakia": ["A country in Central Europe. Borders with Poland, Czechia, Austria, Hungary and Ukraine."], "residency": ["The abstract property of a human, of living in a specific area given by precise, and well defined, borders. (This may be part of, or include, citizenship, but not necessarily so, e.g. for people having several places of residence, for foreigners, or ones officially being accepted on long-term transient living terms)"], "toxoplasmosis": ["Parasitic disease affecting primarily the felid family."], "Maiori": ["City in the province of Salerno, region Campania, Italy."], "compound": ["An enclosure of residences and other buildings.", "A word formed by combining other words.", "A chemical substance consisting of two or more different chemical elements chemically bonded together, with a fixed ratio determining the composition."], "doctrine": ["A rule, principle, theory, or tenet of the law, as the doctrine of merger, the doctrine of relation, etc.\\n(Source: WESTS)"], "Vatican City": ["A sovereign city-state in Rome."], "Vanuatu": ["A country in Oceania with the capital Port Vila."], "East Timor": ["A republic in Southeast Asia whose capital is Dili."], "Singapore": ["A country in Southeast Asia.", "ISO 639-6 entity"], "Philippines": ["An island nation located in Southeast Asia, with Manila as its capital city."], "rising": ["Collective violent action against an established power or arbitrary authority."], "Syria": ["A country in the Middle East, with capital Damascus."], "pound": ["The currency of the United Kingdom.", "The currency of Egypt.", "To strike hard with the hand, fist, or some heavy instrument, usually repeatedly.", "The official currency of the United Kingdom of Great Britain and Northern Ireland and some of its territories, with the symbol \"\u00a3\".", "To break down and crush by beating, as with a pestle."], "sterling": ["The currency of the United Kingdom."], "pound sterling": ["The currency of the United Kingdom.", "The official currency of the United Kingdom of Great Britain and Northern Ireland and some of its territories, with the symbol \"\u00a3\"."], "suspension": ["An interruption in the intensity or amount of something."], "piano sonata": ["A sonata written for unaccompanied piano."], "machine translation": ["The act of translating something by means of a machine, especially a computer."], "Sierra Leone": ["A country in Western Africa whose capital is Freetown."], "Somalia": ["A country in Eastern Africa whose capital is Mogadishu."], "lace": ["A openwork, patterned thin fabric, made through sewing or the use of bobbins.", "A cord or ribbon passed through eyelets in a shoe or garment, pulled tight and tied to fasten the shoe or garment firmly.", "Add alcohol to (beverages)"], "spitz": ["A dog from any of a set of breeds, originating in arctic areas, that are characterized by very thick, often white fur, pointed muzzles and ears and a tail that is rolled back over the back; and that are often used for hunting, herding or pulling sleds."], "vacuum": ["(physics) A volume of space that is substansively empty of matter.", "To clean (something) with a vacuum cleaner."], "New Zealand": ["A country in Oceania, to the east of Australia\u00f6 whose capital is Wellington."], "Micronesia": ["A country in Oceania."], "Comoros": ["A country in Eastern Africa whose capital is Moroni. Comoros consists of four islands in the Indian Ocean located between northern Madagascar and northeastern Mozambique."], "foreseeable": ["That can be foreseen."], "Cape Verde": ["An island country located in the Atlantic about 500 kilometers off the coast of Western Africa. Its capital is Praia."], "attempt": ["Criminal or illegal enterprise against persons or things.", "Earnest and conscientious activity intended to do or accomplish something.", "To exert oneself to do or effect something; to make an effort or attempt."], "Big Bang": ["Popular-scientific name of the cosmological theory, which describes how the universe came into existence in consequence of an enormous explosion 13.7 thousand million years ago"], "Swaziland": ["A country in Southern Africa whose capital is Mbabane."], "spaceship": ["A vehicle that can travel in outer space."], "midget": ["A normally proportioned person with small stature, usually defined as reaching an adult height less than 4'10\".", "Very small in size."], "steam boiler": ["A pressurized system in which water is vaporized to steam by heat transferred from a source of higher temperature, usually the products of combustion from burning fuels."], "sorbet": ["A kind of frozen dessert made from sugar and fruit puree, and that is different from ice cream in the absence of dairy product and by it not being light from whipping."], "stork": ["A large wading bird with long legs and a long beak of the family Ciconiidae."], "soft ice cream": ["A kind of semiliquid ice cream that is squirted out into cones or cups."], "Seychelles": ["A country of 158 islands 1,000 miles off the coast of East Africa, northeast of Madagascar. Its capital is Victoria."], "San Marino": ["A country in Europe within Italy.", "The capital city of San Marino."], "anger": ["A feeling of very strong irritation.", "Belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)."], "wrath": ["A feeling of very strong irritation.", "Belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)."], "Saint Lucia": ["A country in the Caribbean.", "Island nation in the Caribbean north of Saint Vincent and the Grenadines and south of Martinique"], "Solomon Islands": ["A country in Melanesia, Oceania. Its capital city is Honiara."], "South Korea": ["A country in East Asia whose capital is Seul."], "Luxembourg": ["A country (Grand Duchy) in north west Europe, bordered by Belgium, Germany and France. The capital of the same name is Luxembourg.", "The capital of Luxembourg."], "Liechtenstein": ["A small, doubly landlocked country in Central Europe whose capital is Vaduz."], "Burkina Faso": ["A country in Western Africa whose capital is Ouagadougou."], "Republic of the Congo": ["A country of Central Africa whose capital is Brazzaville."], "Congo-Brazzaville": ["A country of Central Africa whose capital is Brazzaville."], "Central African Republic": ["A country in Central Africa whose capital is Bangui."], "People's Republic of China": ["Official name of the East-Asian country popularly known as China (since 1949).", "A country in East Asia which borders the Yellow Sea, the East Chinese Sea, and the South Chinese Sea. Furthermore it borders in the east with Russia, and North Korea, in the north with Russia, and Mongolia, in the west with Tajikistan, Kyrgyzstan, Kazakhstan, Pakistan, and Afghanistan, and in the south with India, Nepal, Bhutan, Myanmar, Laos, and Vietnam."], "Dominican Republic": ["A country in the Caribbean with capital Santo Domingo."], "Equatorial Guinea": ["A country in Western Africa whose capital is Malabo."], "Grenada": ["A country in the Caribbean whose capital is Saint George's."], "Guyana": ["A country in South America, with capital Georgetown."], "Kyrgyzstan": ["A country in Central Asia whose capital is Bishkek."], "Nauru": ["A country in Oceania."], "Romania": ["A country in Europe."], "United Arab Emirates": ["A country in the Middle East, with capital Abu Dhabi."], "Trinidad and Tobago": ["A country in the Caribbean."], "S\u00e3o Tom\u00e9 and Pr\u00edncipe": ["A country in Western Africa."], "Saint Kitts and Nevis": ["A country in the Caribbean."], "Marshall Islands": ["A country in Oceania with capital Majuro."], "smorgasbord": ["A buffet style table prepared with many small dishes."], "Gambia": ["A country in Western Africa whose capital is Banjul."], "note": ["A writing symbol used to denote a tone in music.", "A comment pertaining to a certain section of a text and that is given by this text in the form of a marker and where the comment text is given at another place in the text, for example at the bottom of the page or at the end of the section.", "To pay attention and perceive something.", "A communication that is written, spoken or signalled.", "A commercial document issued by a seller to the buyer, indicating products or services already provided to the buyer as well as the corresponding price that the buyer has to pay.", "A comment or instruction.", "To make mention of.", "A short personal letter.", "A tone of voice that shows what the speaker is feeling."], "seine": ["A piece of fishing equipment consisting of net with small meshes, which is dragged through the water towards land or a boat."], "North Korea": ["A country in East Asia whose capital is Pyeongyang."], "storey": ["A level, usually consisting of several rooms, in a building that consists of several levels."], "tall tale": ["A retelling or account of events, especially a fictional or exaggerated one."], "rollback": ["An operation which returns a database, or group of records in a database, to a previous state."], "dress": ["A one-piece garment for a woman that has a skirt and a body section.", "To put clothes on something or somebody.", "To clothe oneself; to put on clothes."], "filling": ["Food intended to be eaten on top of or inbetween bread, and together with the bread and most commonly butter or margarine creates a sandwich (double or open-faced).", "Something filling up a gap or covering up a (small) distance."], "water vole": ["A semi-aquatic mammal (Arvicola amphibius or A. terrestrisis) that resembles a rat."], "elastomer": ["(Materials); A polymer with rubber-like properties."], "actuary": ["A person who calculates financial values associated with uncertain events subject to risk, such as insurance premiums or pension contributions."], "contempt": ["The feeling or attitude of regarding someone or something as inferior, base, or worthless."], "boil": ["To cook briefly by boiling.", "To heat (a liquid) to the point where it begins to turn into a gas.", "To be at a temperature (as a liquid) where it moves into the gaseous phase.", "A painful, local inflammation of the skin, caused by infection of a hair follicle. Usually, a hard core and pus are present.", "To be agitated.", "To prepare by submerging in a liquid (usually water) at 100 degrees Celsius or more."], "bless you": ["An expression said to someone that has just sneezed."], "cup": ["A concave vessel for holding liquid, generally adorned with either a handle or a stem", "A decorative cup-shaped vessel awarded as a prize or trophy."], "late": ["Near the end of a period of time.", "Being dead, particularly when speaking of the person's actions while alive.", "After the expected or usual time.", "Occurring after the expected or usual time.", "No longer living."], "lip": ["Either of the two fleshy protrusions around the opening of the mouth."], "grow": ["(For a living being) To become bigger.", "To come to have or undergo a change of physical features or attributes."], "size": ["A number of edges in a graph.", "An article of a particular dimension.", "How big something is, how much space is occupied by it.", "A symbol or number that indicates the dimensions of a garment."], "rent": ["A payment made at intervals in order to secure the exclusive use of a property.", "To hold under a lease or rental agreement of goods and services.", "A payment made by a user at intervals for the use of an equipment.", "To let for money."], "largeness": ["Volume of something, how large it is."], "tallness": ["How tall something is."], "plate": ["Metal sheet for alphanumerical identification of vehicles, on their front and/or rear parts.", "A dish on which food is served or from which food is eaten.", "To coat a surface with a metal sheet, in general of a precious kind."], "news": ["New information.", "Reports of current events broadcast via media such as newspapers or television."], "noble": ["Having honorable qualities; having moral eminence and freedom from anything petty, mean or dubious in conduct and character", "Someone of aristocratic blood."], "aristocrat": ["Someone of aristocratic blood."], "net": ["A mesh of string, cord, or rope generally used for catching fish or trapping something.", "A network of connected computers, ranging from a small home LAN to the world-spanning Internet.", "Income following the deduction of all expenses, taxes, and the like.", "A fine, often elastic net worn over long hair to hold it in place."], "life insurance": ["A transaction whereby either until the end date of the insurance an amount will be payed when someone dies or where on the end date an amount will be payed when someone is still alive."], "queenside": ["The side of a chessboard nearest to the queen at the opening position."], "kingside": ["The side of a chessboard nearest to the king at the opening position."], "gullible": ["Easily deceived or duped.", "Disposed to believe on little evidence."], "fleeceable": ["Easily deceived or duped."], "republic": ["A state where sovereignty rests with the people or their representatives, rather than with a monarch or emperor; a country with no monarchy."], "monarchy": ["A government with a hereditary head of state."], "position": ["An interest in the market, either long or short, in the form of open contracts.", "The ideal, unilateral solution to a dispute.", "To put something in a position.", "A rationalized mental attitude.", "A job in an organization."], "unilateral": ["Affecting or relating to only one side."], "Prague": ["The capital of the Czech Republic."], "pyrectic": ["Any substance that produces fever, or a rise in body temperature."], "Brasilia": ["The capital of Brazil."], "quarrel": ["A loud or noisy verbal confrontation between two or more people.", "To take part in a loud or angry verbal confrontation with one or more other people."], "dispute": ["A loud or noisy verbal confrontation between two or more people.", "A contentious dispute.", "To attack as false or wrong.", "An argument or disagreement, a failure to agree."], "Gulf of Mexico": ["A gulf to the south of the USA and to the east and north of Mexico."], "dove": ["One of several birds of the family Columbidae."], "lawnmower": ["A device that cuts grass with the help of rotating blades."], "Tenerife": ["A Spanish island and the largest of the seven Canary Islands"], "bespectacled": ["Wearing glasses."], "spectacled": ["Wearing glasses."], "pen name": ["A pseudonym used by an author."], "nay-sayer": ["A person who consistently denies, rejects, criticises or doubts an idea or proposal."], "naysayer": ["A person who expects the worst and looks on the downside of things.", "A person who consistently denies, rejects, criticises or doubts an idea or proposal."], "Saint Vincent and the Grenadines": ["A country in the Caribbean."], "Andes": ["Mountain range in South America."], "conspire": ["To engage in plotting or enter into a conspiracy."], "complot": ["To engage in plotting or enter into a conspiracy."], "conjure": ["To engage in plotting or enter into a conspiracy.", "The art of entertaining an audience by performing illusions that baffle and amaze."], "machinate": ["To engage in plotting or enter into a conspiracy.", "To arrange by systematic planning and united effort (e.g. a plot, a strike, a plan)."], "insurrection": ["Collective violent action against an established power or arbitrary authority."], "rebellion": ["Collective violent action against an established power or arbitrary authority."], "arrest": ["To seize and keep prisoner.", "The act of depriving a person of his or her liberty usually in relation to the purported investigation or prevention of crime and presenting to a procedure as part of the criminal justice system.", "To cause to stop (e.g. an engine or a machine).", "To hold back, as of a danger or an enemy; check the expansion or influence of.", "To attract and fix (e.g. someone or his/her eyes)."], "apprehend": ["To seize and keep prisoner.", "To get the meaning of something."], "seize": ["To seize and keep prisoner.", "To take possession of by force or authority.", "To take possession of by force.", "Seize and take control without authority and possibly with force.", "To affect (e.g. of pain, fear, etc.).", "To capture the attention or imagination of."], "condemn": ["To declare, after a judgement, that somebody is guilty of commiting a crime."], "obsessed": ["Having an idea that one always think about."], "conquest": ["Act of conquering."], "unique": ["That is the only one of its kind.", "Being the only one of its kind."], "evidence": ["Something that establishes the truth of a proposition or a fact.", "A perceptible indication of something not immediately apparent, as a visible clue that something has happened."], "spoor": ["Vestige that a man or an animal leaves at a place where it has been."], "disappear": ["To cease to appear, to not be visible anymore.", "To end up in an unknown place, to be not to be found again, to get lost, to irrecoverably slip away."], "monk": ["A man who is member of a religious order and lives under community rules separated from the world."], "vestige": ["The mark or visible sign left by something which is lost, has perished, or is no longer present."], "Tonga": ["A country in Oceania.", "A Bantu language spoken in Zambia around the lake Kariba and in Zimbabwe.", "A language of Malawi.", "A language of Mozambique", "A language of Thailand and Malaysia."], "China": ["A country in East Asia which borders the Yellow Sea, the East Chinese Sea, and the South Chinese Sea. Furthermore it borders in the east with Russia, and North Korea, in the north with Russia, and Mongolia, in the west with Tajikistan, Kyrgyzstan, Kazakhstan, Pakistan, and Afghanistan, and in the south with India, Nepal, Bhutan, Myanmar, Laos, and Vietnam."], "Mexico": ["A country in North America, to the south of the United States and to the north of Guatemala and Belize."], "kingdom": ["A monarchy having as it's supreme ruler a king and/or queen.", "A taxon in either (historically) the highest rank, or (in the new three-domain system) the rank below domain. Each kingdom is divided into smaller groups called phyla (or in some contexts these are called \"divisions\")."], "Guinea-Bissau": ["A country in Western Africa whose capital is Bissau."], "Papua New Guinea": ["A country in Oceania."], "minister": ["A person appointed to a high office in the government."], "remittance": ["A payment to a remote recipient."], "expatriate": ["A person who lives outside his own country.", "To force a person from his own country.", "Living outside his own country."], "reign": ["The period during which a monarch rules.", "To emerge; to be visible or larger in number, quantity, power, status or importance.", "The exercise of sovereign power in a monarchy."], "gibberish": ["A language that is not understood, possibly not intelligeable or comprehensible at all, possibly a mixture of many languages, possibly a made up or play language, possibly a real language mispronounced to the extreme, possibly speaking attempts of a severely impaired or injured person, etc.", "Something said, which noone can understand."], "dissent": ["To express opposition through action or words."], "metallurgy": ["A domain of materials science and of materials engineering that studies the physical and chemical behavior of metallic elements, their intermetallic compounds, and their mixtures, which are called alloys."], "mandarin": ["The fruit of a small citrus tree (Citrus reticulata), resembling the orange."], "protest": ["To express opposition through action or words."], "cosmology": ["The science that studies the origin and the development of the universe."], "childhood": ["Period of time when a person is a child."], "Abuja": ["The capital city of Nigeria."], "shy": ["(For a personality) characterized by being uncomfortable with having attention drawn to them, for example when introducing oneself or when speaking in front of an audience.", "Lacking self-confidence."], "being shy": ["To need a number or amount of something, but not having enough or any at all.", "To have a certain amount or number of something, but not enough."], "lack": ["To need a number or amount of something, but not having enough or any at all.", "To need a number or amount of something, but not having any at all.", "A deficiency or need (of something desirable or necessary).", "A shortage or absence of what is needed."], "way": ["A way of proceeding or doing something, especially a systematic or regular one.", "Way of performing or effecting anything.", "A pattern of behavior inherited or acquired through frequent repetition.", "A particular means of accomplishing something."], "manner": ["Way of performing or effecting anything.", "An expression or appearance indicating a certain state of mind.", "A pattern of behavior inherited or acquired through frequent repetition.", "Customary way of acting.", "The style of writing or thought of an author", "Quality, way of being."], "kidney": ["An organ in the body that produces urine."], "bryology": ["The study of Bryophytes (non-vascular plants including mosses and liverworts)."], "bryologist": ["Someone who studied bryophytes (non-vascular plants including mosses and liverworts)."], "buoyant": ["Able to float.", "Courteous, gracious, and having a sophisticated charm."], "calciphile": ["Plant that grows on ground rich in chalc."], "calcicole": ["Plant that grows on ground rich in chalc."], "descendant": ["One who is the progeny of someone at any distance of time.", "Those who descend from a biological ancestor, through any number of generations."], "pace": ["The rate of changing."], "rust": ["Brown-reddish substance which forms a corrosive layer on the surface of iron or steel which is in contact with humid air or water.", "To become destroyed by water, air, or an etching chemical such as an acid.", "To cause to deteriorate due to the action of water, air, or an acid."], "barbecue": ["To cook food, often meat or fish, over glowing charcoal."], "americium": ["Chemical element with symbol Am and atomic number 95."], "antimony": ["Chemical element with symbol Sb and atomic number 51."], "aromatic": ["Producing aromas."], "spice": ["A dried seed, fruit, root, bark or vegetative substance used in nutritionally insignificant quantities as a food additive for the purpose of flavoring."], "nut brown": ["A deep red-orange colour, including the colour of hazelnuts; RAL Code 8011."], "gist": ["The choicest, most essential or most vital part."], "argon": ["Chemical element with symbol Ar and atomic number 18."], "theory": ["A scientific model or statement that attempts to explain observed phenomena.", "An unproven conjecture."], "astatine": ["Chemical element with symbol At and atomic number 85, radioactive halogen."], "pulley": ["A tool, consisting of a set of wheels around which a rope is led, meant to lift or move a load more lightly."], "Western Farsi": ["An Indo-European language spoken mainly in Iran."], "Maria": ["A Dravidian language spoken by the Maria people in the State of Madhya Pradesh in India.", "A language spoken in Papua New Guinea."], "beauty": ["The quality of being beautiful."], "predecessor": ["One whom another follows or comes after, in any office or position."], "Papiamentu": ["A language spoken in the Netherlands Antilles and Aruba."], "Papiamento": ["A language spoken in the Netherlands Antilles and Aruba."], "precursor": ["A substance from which another substance is formed."], "pontificate": ["To speak at length or be unnecessarily wordy, often in a patronizing or pompous manner."], "alphabet soup": ["A type of soup that contains noodles in the shape of various alphabetical letters", "An over-abundance of acronyms and abbreviations."], "Mandarin": ["The official language of China and Taiwan."], "high rising terminal": ["A type of speech that sounds like questions, used frequently by North American teenage girls."], "chicken coop": ["A building in which poultry is housed."], "vengeance": ["Action taken to respond to an insult, injury or other wrong by trying to harm its perpetrator.", "Desire for revenge."], "reprisal": ["Action taken to respond to an insult, injury or other wrong by trying to harm its perpetrator."], "retaliation": ["Action taken to respond to an insult, injury or other wrong by trying to harm its perpetrator."], "retribution": ["Action taken to respond to an insult, injury or other wrong by trying to harm its perpetrator."], "revenge": ["Action taken to respond to an insult, injury or other wrong by trying to harm its perpetrator.", "To take revenge for a perceived wrong.", "Pain caused to the offender for the personal satisfaction of the offended.", "A win by the previous loser."], "pianist": ["A person who plays the piano."], "poppy": ["Any plant of the species Papaver, with crumpled often red petals and a milky juice."], "onomasiology": ["The science of how exactly words are build, constructed, developed in a language, according to certain rules."], "obsessive-compulsive disorder": ["A brain disorder that is most commonly characterized by a subject's obsessive drive to perform a particular task or set of tasks, compulsions commonly termed as rituals."], "banjo": ["A stringed musical instrument with a round body and fretted neck, played by plucking or strumming the strings."], "civil war": ["Armed conflict between different factions on the territory of a single state or region, often with interventions of a foreign power."], "expanse": ["A wide stretch, usually of sea, sky, or land."], "remote control": ["A device used to operate an appliance or mechanical toy from a short distance away."], "remote": ["A device used to operate an appliance or mechanical toy from a short distance away.", "Not likely to happen; not to be reasonably expected.", "Distant or otherwise inaccessible."], "reassurance": ["The feeling of having confidence restored."], "cucumber": ["The edible fruit of the cucumber plant, having a green rind and crisp white flesh."], "scar": ["A permanent mark on the skin resulting from a wound.", "To mark with a scar."], "berkelium": ["Chemical element with symbol Bk and atomic number 97, actinide."], "Mary": ["The mother of Jesus Christ."], "Bavarian": ["A language spoken in and around Bavaria."], "Kashubian": ["A Lechitic language, subgroup of the Slavic languages, spoken in some communes of Pomeranian Voivodeship, Poland.", "Of or relating to the Kashubian people and their language."], "bismuth": ["Chemical element with symbol Bi and atomic number 83, reddish lustrous main group metal."], "Yue": ["A Chinese language mainly spoken in the south-eastern part of Mainland China."], "piston": ["A mechanical device that has a plunging or thrusting motion."], "Baltic Sea": ["A sea in northern Europe, connected to the Atlantic."], "gadolinium": ["A metallic chemical element (symbol Gd) with an atomic number of 64."], "piston ring": ["A ring or seal that fits around a piston, sealing between the piston and the bore in which it slides."], "calf": ["The fleshy backside of the lower part of the leg.", "Young cattle.", "Young moose."], "bet": ["A deal that the person whose guess on the outcome of an event is correct will receive money or another prize from the other.", "To agree that payment be made to the successful forecaster of the result of an event."], "ford": ["A shallow stretch of a river where it is possible walk over.", "To cross a stream at a ford."], "heal": ["To get healthy again.", "To remedy an illness using medical or medicamentous treatment; to provide a cure for.", "Heal or recover, e.g. by forming a scar."], "bohrium": ["Chemical element with symbol Bh and atomic number 107, transition metal"], "elevator": ["Trademark for a type of shoe having an insert lift to make the wearer appear taller.", "A silo used for storing wheat, corn or other grain.", "A mechanical device consisting of a compartment that may move vertically up and down, and that is used to convey people and cargo between floors of a building."], "Dutch treat": ["An occasion, such as a restaurant visit, in which each one pays his own expenses."], "heterochronous": ["Formed at different periods."], "lift": ["A mechanical device consisting of a compartment that may move vertically up and down, and that is used to convey people and cargo between floors of a building.", "Transportation of a person in a vehicle, usually without monetary or other compensation and with a given location as the goal.", "To cause an object to have a higher location than previously.", "An upward force, such as the force that keeps aircraft aloft."], "nail": ["The hard, flat, translucent covering near the tip of a human finger, useful for scratching and fine manipulation.", "A spike-shaped metal fastener used for joining wood or similar materials.", "(For a man) To have sexual intercourse with a woman.", "Hard keratin part growing at the end of a finger, toe or leg.", "To hit extremely hard.", "To attach something somewhere using nails."], "Asian tiger mosquito": ["A mosquito of the Aedes albopictus species, characterized by its black and white striped legs and small, black and white body."], "tank": ["A heavy armoured fighting vehicle, armed with a large gun and moving on caterpillar tracks.", "A container for liquids or gases, typically with a volume of several cubic metres."], "californium": ["Chemical element with symbol Cf and atomic number 98. It is probably a gray or silverly actinide."], "grain elevator": ["A silo used for storing wheat, corn or other grain."], "elevator shoe": ["Trademark for a type of shoe having an insert lift to make the wearer appear taller."], "cerium": ["Chemical element with symbol Ce and atomic number 58, silvery white lanthanide."], "nuclear explosion": ["An unintentional release of energy from a rapid reaction of atomic nuclei yielding high temperatures and radiation potentially harmful to human health and the environment."], "addition": ["(arithmetic) the mathematical operation of increasing one amount by another. The result of adding two quantities is their sum."], "private enterprise number": ["A unique number as assigned by IANA to identify unique objects that are defined by an enterprise, developed to give objects a common naming system via the more common language of numbers."], "curium": ["Chemical element with symbol Cm and atomic number 96, silvery actinide."], "mankind": ["All human beings."], "perforation": ["A series of holes created to facilitate the separation of two or more parts."], "delegate": ["A person authorized to act as a representative.", "To authorise someone to act on his/her behalf.", "To give something to (a person), or assign a task to (a person)."], "delegation": ["A group of people authorised to represent a person or organisation."], "represent": ["To stand in the place of someone or something.", "To portray by pictoral or plastic art.", "To be the material or components of.", "To perform a theatrical role."], "learn": ["To acquire, or attempt to acquire knowledge or an ability to do something."], "functionality": ["The set of tasks something can perform.", "The ability to perform a certain task."], "mete": ["The quantity, size, weight, distance or capacity of a substance compared to a designated standard.", "To dispense (punishment or suffering)."], "groin": ["The fold that in humans are found between the thighs and the abdomen.", "Each of the sunken panels in a ceiling, soffit or vault."], "melon": ["A fruit of any of the species from the family Cucurbitaceae that has relatively hard inedible shells and plenty of sweet flesh. The fruits may vary in size but is usually not smaller than one decimeter in diameter."], "rowing boat": ["An open boat propelled by pulling oars through the water."], "darmstadtium": ["Chemical element with symbol Ds and atomic number 110, transition metal"], "row-boat": ["An open boat propelled by pulling oars through the water."], "spouse": ["A married woman.", "The male partner in a marriage.", "A married person; A married woman or a married man."], "soil pipe": ["A pipe that carries off liquid wastes from a toilet."], "discotheque": ["A nightclub where dancing takes place."], "disco": ["A nightclub where dancing takes place."], "besiege": ["To beset or surround with armed forces, for the purpose of compelling to surrender."], "beleaguer": ["To beset or surround with armed forces, for the purpose of compelling to surrender."], "beset": ["To beset or surround with armed forces, for the purpose of compelling to surrender."], "chirp": ["A short, sharp or high note or noise, as of a bird or insect.", "The short weak cry of a young bird."], "certain": ["Without any doubt or possibility of deviation.", "Having been determined but unspecified."], "undoubted": ["Without any doubt or possibility of deviation."], "positive": ["Without any doubt or possibility of deviation.", "Greater than zero.", "The uncompared form of an adjective or adverb."], "sure": ["Without any doubt or possibility of deviation.", "The expression of a positive affirmation.", "With certainty."], "Ramadan": ["The holy ninth month of the Islamic lunar calendar (the Hijra), during which Muslims fast between sunrise and sunset; they also refrain from smoking and sexual relations."], "confidential": ["Meant to be kept secret within a certain circle of persons; not intended to be known publicly."], "GEMET": ["GEneral Multilingual Environmental Thesaurus (GEMET)"], "hither": ["The direction towards here."], "eager beaver": ["A person, ranked lower in a hierarchy, who tries to be seen as the best among his peers and/or to gain the recognition of people in higher ranks. This behaviour sometimes earns this person a bad reputation, because looking (too) good makes others look bad."], "vicarious": ["Experienced or gained through someone else; done by watching or reading rather than through personal experience."], "delicious": ["Pleasing to the taste."], "tasty": ["Pleasing to the sense of taste.", "Pleasing to the taste."], "torch song": ["A song, often sentimental, lamenting an unrequited love."], "I love you": ["An affirmation of romantic feeling, to a lover or spouse."], "I hate you": ["An affirmation of extreme dislike directed at someone."], "leg up": ["The act of assisting another's progress over a wall or other obstacle by forming a step for one of their feet with one's hands."], "rapier": ["A slender, straight, sharply pointed sword."], "floret": ["The practice version of the rapier, named after the ball at the top that prevents injuries."], "dubnium": ["Chemical element with symbol Db and atomic number 105, transition metal."], "dysprosium": ["Chemical element with symbol Dy and atomic number 66, silvery grey lanthanide."], "acre": ["A limited area of land with grass or crops growing on it, which is usually surrounded by fences or closely planted bushes when it is part of a farm.", "A unit of surface area equal to 43,560 square feet, approximately 0.4 hectares."], "S\u00e9n\u00e9gal River": ["A river in Africa."], "Senegal": ["A country in Western Africa whose capital is Dakar."], "intrusion": ["A body of magma that solidifies underground before it reaches the surface.", "Any entry into an area not previously occupied."], "einsteinium": ["Chemical element with symbol Es and atomic number 99, actinide."], "bearing": ["A movement with any part of one\u2019s body (head, hands etc).", "The part of a machine on which a rotating shaft is placed.", "An expression or appearance indicating a certain state of mind.", "The contact area over which one structural element, such as a truss, is supported on another structural element such as a wall.", "Manner of behaving oneself; manner of acting."], "layer": ["An amount of a certain material spread out relatively even over a surface; often seen as part of a structure composed of several similar or dissimilar such.", "Worker assigned to the installation of floor tiles, cables, etc.", "Part that is cut from a plant when applying a layering propagation method.", "A hen that is kept for its eggs."], "warehouse": ["Building or room used to store the stored goods of a company, both such intended for direct sale and such that will be used as raw material in further processing."], "storage room": ["Building or room used to store the stored goods of a company, both such intended for direct sale and such that will be used as raw material in further processing."], "runway": ["A strip of land kept clear and set aside for airplanes to take off from and land on."], "alkaline earth metal": ["Any of the elements in the group of the alkaline earth metals in the periodic table."], "extinction": ["The complete disappearance of a species of plant or animal from the planet.", "Attenuation of electromagnetic radiation emitted by astronomical objects by matter (dust and gas) between the emitting object and the observer."], "condensation": ["Transformation from a gas to a liquid.\\n(Source: MGH)", "A liquid that is the product of condensation.", "Shortened form of something."], "flora": ["The plant life characterizing a specific geographic region or environment.", "Any living organism that synthesizes its food from inorganic substances, possesses cellulose cell walls, responds slowly and often permanently to a stimulus, lacks specialized sense organs and nervous system, and has no powers of locomotion.", "A work systematically describing the flora of a particular region, listed by species and considered as a whole.\\n(Source: RHW)"], "resistance": ["Physics: Measure of the degree to which an object (e. g. electronic part, wire) opposes the passage of an electric current."], "kiss": ["A touch with the lips as a sign of love or affection.", "To touch with the lips to express love or affection."], "best": ["Superlative form of good.", "The person who is most outstanding or excellent; someone who tops all others."], "wolf": ["A large wild canid (Canidae), closely related to the dog."], "goal": ["What one wants to achieve.", "Place where a ball or puck needs to be entered into to score points in a game.", "To score a point in a game.", "A successful attempt at scoring."], "howl": ["The protracted, mournful cry of a dog or a wolf."], "pom-pom": ["A decorative ball of fluff."], "mailbox": ["Object or slot where letters of parcels can be left behind for delivery.", "A box into which mail is delivered."], "how much": ["Which quantity?", "In what amount."], "Shavian alphabet": ["A simple, phonetic orthography for the English language."], "vote": ["A binding declaration by a person competent to make decisions, within a decision-making process, on which of a number of predetermined alternatives that he or she prefers.", "To express one's preference for a candidate in a public consultation; to cast a vote."], "boozer": ["A person who is addicted to drinking alcohol excessively."], "erbium": ["Chemical element with symbol Er and atomic number 68, silvery white lanthanide."], "deuterium": ["An isotope of hydrogen where the nucleus contains a neutron and a proton, instead of only one proton. Instead of the ordinary symbol 2H, the symbol D is more commonly used for the isotope."], "dandruff": ["Small portion of dead skin cells shedding from the scalp."], "rubidium": ["A metallic chemical element with the symbol Rb and atomic number 37."], "saw": ["To cut (something) by means of a tool with sharp theeth.", "A tool with a toothed blade used for cutting hard substances, in particular wood or metal."], "nag": ["To remind or urge constantly.", "To worry persistently.", "To bother persistently with trivial complaints.", "Someone (especially a woman) who annoys people by constantly finding fault.", "An old or worthless horse."], "magnesium": ["A chemical element with the symbol Mg and atomic number 12, a light, flammable, silvery metal."], "kindergarten": ["School for children from three to six years old."], "Day care": ["An institution where children are taken care of during the day, outside of their families, with the exception of the school, the boarding school and the orphanage."], "foster home": ["A family where an orphaned or delinquent child is placed."], "pink": ["A colour obtained when mixing red and white paint.", "Whose colour between red and white."], "nursery": ["Place where plants are grown until they are large enough to be planted in their final positions.\\n(Source: PHC)", "An educational institution for young children, usually before they go to primary school"], "preschool": ["An educational institution for young children, usually before they go to primary school"], "europium": ["Chemical element with symbol Eu and atomic number 63, silvery white lanthanide."], "mourning": ["The state of emotions of a person to whom something irreversible happened that leads to a feeling of sadness or regret; most often occurring e.g. after a beloved one died, or a long relationship split up."], "battle": ["An instance of combat in warfare between two or more parties wherein each group will seek to defeat the others.", "Struggle for superiority."], "fermium": ["Chemical element with symbol Fm and atomic number 100. It is probably a grey or silvery actinide."], "horseman": ["A man who rides a horse.", "A person who rides horses."], "chess set": ["The game consisting of the chess board and the chess pieces."], "chess match": ["One game of playing chess."], "chess game": ["One game of playing chess."], "chessboard": ["The square board used in the game of chess, subdivided into eight rows of eight squares each, the squares in each row and column being of alternating colours."], "topical": ["Applied directly to the skin; applied externally to a particular part of the body.", "Something that is of interest at the present time.", "Pertaining to, referring to, or treating a specific subject (usually of a collection, selection, or presentation, etc.)"], "reconnoiter": ["To survey something (generally an enemy's land and position)."], "pommel horse": ["An artistic gymnastics apparatus, consisting of a horizontal bar 160 x 35 cm in dimension, elevated 115 cm from the ground, and with two grips on top, between 40 and 45 cm apart. It is used only by male athletes. (Source: enwiki)"], "the apple doesn't fall far from the tree": ["The child shows behaviour comparable to that of its parent(s)."], "scout": ["To survey something (generally an enemy's land and position)."], "sausage": ["A length of intestine, stuffed with ground (organ) meat, and other ingredients. Instead of intestines, a different kind of wrapper can be used."], "peach tree": ["A species of tree, native to China, that bears juicy fruits, usually with a red or orange skin, yellow flesh and a large, wrinkled stone."], "return": ["To go there where one was before.", "The arrival at a place where one was before.", "To bring something in order to put it back where it was.", "To produce as return, as from an investment; to give or supply.", "To transfer a good to the person or people it came from, or to their legal successors.", "To drive, ride, or go back; to return."], "francium": ["Chemical element with symbol Fr and atomic number 87, alkali metal."], "triangle": ["A geometric figure that consists of three straight limiting lines (sides) and three corners that are the intersection points of two sides", "An idiophone type of musical instrument in the percussion family."], "lend": ["To apply a quality on (a person).", "To put an item or resource at the disposal of another, with the requirement to have the same or its equivalent returned eventually."], "nice": ["Generally warm, approachable and easy to relate with in character.", "Possessing charm and attractiveness."], "charming": ["Possessing charm and attractiveness.", "Courteous, gracious, and having a sophisticated charm.", "Capable of arousing desire."], "delightful": ["Possessing charm and attractiveness."], "lovely": ["Possessing charm and attractiveness."], "pleasant": ["Possessing charm and attractiveness.", "Enjoying or affording comforting warmth and shelter especially in a small space."], "sweet": ["Possessing charm and attractiveness.", "Having the taste characteristic of sugar or honey.", "A food item that is rich in sugar."], "chess piece": ["A token that is used for playing chess."], "neon": ["The chemical element with symbol Ne and atomic number 10, a colorless noble gas."], "spiritual world": ["A mythological metaphysical plane of existence parallel to the material world and occupied by spirits and other unearthly forces.", "Life after death."], "afterlife": ["Life after death."], "putsch": ["The sudden overthrow of a government."], "coup d'\u00e9tat": ["The sudden overthrow of a government.", "The sudden overthrow of a government, often through illegal means by a part of the state establishment \u2014 mostly replacing just the high-level figures."], "Libido": ["A language spoken in Ethiopia.", "An East Cushitic language spoken in the Gurage Zone in Ethiopia."], "gallium": ["Chemical element with symbol Ga and atomic number 31, silvery white main group element."], "gaffe": ["A foolish error, especially one made in public."], "walkthrough": ["A peer group review of a product or service created during the systems development process."], "funeral": ["A ceremony to bury or cremate a deceased person."], "memorial service": ["A service honoring a deceased person, especially one that does not adhere to the traditional customs of a funeral."], "difficult": ["Requiring a lot of effort to do or understand.", "Not easy, which needs hard work, patience and effort."], "guinea pig": ["(Cavia porcellus) Small rodent."], "Luna": ["The sole natural satellite of the Earth.", "A language of the Democratic Republic of the Congo."], "yuan": ["The Chinese currency.", "The official currency of China."], "internecine": ["Mutually destructive, most often applied to warfare causing bloodshed and carnage.", "Struggling within a group, usually applied to an ethnic or familial relationship or an organization."], "superficial": ["At face value.", "Close to the surface."], "shallow": ["At face value.", "Close to the surface.", "Having little depth."], "instep": ["A section of any footwear covering that part of the foot.", "The upper surface of the human foot between the ankle and the toes."], "journalist": ["A person who makes a living reporting on news and current events."], "contango": ["The amount by which prices for future delivery are higher than prices for near deliver."], "missing link": ["A primate likely to bridge a evolutionary gap between the anthropoid apes and humanoids."], "espresso": ["Strong black coffee brewed by forcing hot water under pressure through finely ground coffee beans."], "coffee percolator": ["A kind of pot used to brew coffee."], "espresso coffee pot": ["A type of pot which is placed on a heat source used to brew coffee."], "moka pot": ["A type of pot which is placed on a heat source used to brew coffee."], "ditto": ["The same as what was said previously."], "urgence": ["The quality or condition of a need for immediate attention."], "urgency": ["The quality or condition of a need for immediate attention."], "crossbow": ["A mechanised weapon, based on the bow and arrow, which fires bolts at high speed and accuracy."], "reanimate": ["To restore to animation or life."], "resuscitate": ["To cause to regain consciousness."], "germanium": ["Chemical element with the symbol Ge and atomic number 32. It is a grey-white metalloid."], "zebrafish": ["A tropical fish belonging to the minnow family (Cyprinidae), commonly kept in aquaria and used for scientific research."], "E": ["A spoken language in China", "A chemically modified amphetamine that has hallucinogenic as well as stimulant properties.", "Musical note between D and F."], "minnow": ["Any fish of the family Cyprinidae.", "A fish (Phoxinus phoxinus) of the family Cyprinidae."], "Eurasian minnow": ["A fish (Phoxinus phoxinus) of the family Cyprinidae."], "thaumaturgy": ["The working of miracles."], "Kado": ["A language spoken in Myanmar, China and Laos."], "violence": ["The property of having extreme force or being wild or turbulent.", "Aggressive behaviour, often an act of aggression."], "putschist": ["Person participating in a putsch."], "shipwreck": ["The loss of a ship in sea because of an accident."], "reconcile": ["To accept unwillingly.", "To put back in good terms people that weren't anymore.", "To make things compatible.", "To bring to an agreement.", "To accept as inevitable."], "make up": ["To put back in good terms people that weren't anymore.", "To be the material or components of.", "To make up something artificial or untrue."], "stock option": ["The right to buy or sell stock for a certain price in the future."], "call option": ["Right to buy stock for a certain price in the future."], "put option": ["Right to sell stock for a certain price in the future."], "ineligibility": ["State of being ineligible due to a lack of the required conditions to be elected."], "infield": ["In cricket the region of the field roughly bounded by the wicket keeper, slips, gully, point, cover, mid off, mid on, midwicket and square leg.", "In baseball the region of the field roughly bounded by the home plate, first base, second base and third base."], "oyster": ["Acephalous marine mollusk, with an irregular bivalve shell."], "obese": ["Who is too fat."], "barn doors": ["Four hinged metal slats that come (or are attachable) on the front of cinema lights. They are used for shaping light and fastening light gels."], "prosthesis": ["An artificial device that replaces a missing body part."], "airbag": ["A protective system in automobiles in which when a crash occurs, a bag quickly inflates in front of the driver or passenger, preventing injury to the head."], "mannequin": ["Person whose job is to wear clothes in order to present them."], "xenophobic": ["Hating foreigners or what comes from abroad."], "krypton": ["A chemical element with symbol Kr and atomic number of 36; a colorless noble gas."], "xenon": ["A chemical element with symbol Xe and atomic number of 54, a heavy colorless noble gas."], "semi-detached": ["A house joined to another one on one side, having one wall shared."], "acoustically": ["In an acoustic manner, or using an acoustic musical instrument."], "hafnium": ["Chemical element with symbol Hf and atomic number 72, steel grey transition metal."], "freedom of speech": ["The right of every person to speak and publish their opinion freely."], "lanthanide": ["Any of the 15 chemical elements from lanthanum (atomic number 57) to lutetium (atomic number 71) with very similar chemistry."], "globular cluster": ["A spherical collection of stars that orbits a galaxy core as a satellite."], "cluster": ["A group of stars that appear near each other.", "A significant subset within a population.", "A group of contiguous sectors on a disk.", "A group of linked computers that work together as if they were a single computer, for high availability and/or load balancing."], "nadir": ["The point of the celestial sphere, directly opposite the zenith.", "The lowest point; time of greatest depression."], "hassium": ["Chemical element with symbol Hs and atomic number 108, radioactive transition metal."], "mollify": ["To cause to be more favourably inclined."], "Chickasaw": ["The language spoken by the Chickasaw, a member of the Muskogean language family."], "sailplane": ["An aircraft with fixed wings, but no engine."], "tellurium": ["A chemical element with symbol Te and atomic number 52, a silver grey metalloid.", "A model that shows the movements of Earth, Moon and Sun and illustrates the phenomena of day and night change, the seasons, the lunar phases and eclipses."], "polonium": ["A chemical element with symbol Po and atomic number 84, a silver gray poor metal."], "indium": ["A chemical element with symbol In and atomic number 49, a silver gray poor metal."], "yo-yo": ["A toy consisting of two weighted discs as a weight, connected with an axle, around which string is wound. There is a loop at the end of the string; the toy is played by putting the loop around a finger, grasping the weight, and throwing it in a smooth motion. Some tricks may be performed before letting the weight return to the hand."], "ant": ["Any of the black, red, brown, or yellow insects of the family Formicidae characterized by a large head and by living in organized colonies."], "Baghdad": ["The largest city and capital of Iraq."], "Bulgaria": ["A country in southeastern Europe. It borders five countries: Romania to the north mostly along the Danube, Serbia and the Republic of Macedonia to the west, and Greece and Turkey to the south, as well as the Black Sea, which comprises its entire eastern border. Its capital is Sofia."], "boot": ["Storage compartment for luggage in a car.", "A shoe that covers part of the leg.", "A physical strike using the foot, leg, or knee.", "To cause to load and start (an operating system)."], "Chechen": ["A north-central Caucasian language spoken in Chechnya."], "Chuvash": ["A Turkic language spoken in the federal subject of Chuvashia, located in central Russia."], "Kyrgyz": ["A Northwestern Turkic language, and, together with Russian, an official language of Kyrgyzstan."], "out of service": ["In or into a state of non-operation."], "closed": ["Inaccessible."], "nude": ["Without clothing."], "world war": ["War in which many countries throughout the world are involved."], "address": ["An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.\\n(Source: RHW)", "Direction or superscription of a letter, or the name, title, and place of residence of the person addressed.", "To give a speech to.", "To apply oneself to something."], "Mars": ["The fourth planet (counted from the center) of our solar system.", "Roman god of war."], "ninety-nine": ["The cardinal number occurring after ninety-eight and before hundred, represented in Roman numerals as XCIX and in Arabic numerals as 99."], "urinate": ["To allow urine to flow from the bladder out of the body."], "pee": ["To allow urine to flow from the bladder out of the body.", "Liquid excrement consisting of water, salts and urea, which is made in the kidneys, stored in the bladder, then released through the urethra."], "piss off": ["To tell someone to go away."], "fuck off": ["To tell someone to go away.", "To ask in an insulting way to another person to go away from you, to stop contact with to stop bothering the person to who the insult is addressed."], "stop it": ["Tell someone to stop the undesirable thing he/she is doing."], "holmium": ["Chemical element with symbol Ho and atomic number 67, silvery white lanthanide."], "games": ["Plural of game."], "primary care": ["A health care provider who acts as a first point of consultation for all patients."], "heart attack": ["The sudden occurrence of coronary thrombosis which obstructs the blood supply to the heart, resulting in necrosis of heart muscle."], "thrombus": ["A blood clot formed from platelets and other elements; that forms in a blood vessel in a living organism."], "iridium": ["Chemical element with symbol Ir and atomic number 77, silvery white transition metal."], "blood clot": ["A blood clot formed from platelets and other elements; that forms in a blood vessel in a living organism."], "parhelion": ["Optical phenomenon associated with the refraction of sunlight by ice crystals which appears at a position of circa 22\u00b0 to the left and/or right of the sun."], "sun dog": ["Optical phenomenon associated with the refraction of sunlight by ice crystals which appears at a position of circa 22\u00b0 to the left and/or right of the sun."], "sundog": ["Optical phenomenon associated with the refraction of sunlight by ice crystals which appears at a position of circa 22\u00b0 to the left and/or right of the sun."], "typhoid fever": ["An illness caused by the bacterium Salmonella typhi. It is transmitted by ingestion of food or water contaminated with feces from an infected person. Typical symptoms include stomach pains, high fevers, headaches, and sometimes diarrhea or constipation."], "Northern Europe": ["A geographic region in the north of Europe, consisting of the Scandinavian and Baltic countries."], "mashed potatos": ["A dish made with boiled potatoes which are mashed and mixed with milk."], "dozen": ["A set of twelve."], "watt": ["The derived SI unit of power defined as one joule of energy transferred per second with symbol \"W\"."], "piece": ["A part of a larger whole.", "A large artillery gun.", "A single item belonging to a class of similar items.", "One of the figures used in playing chess.", "An amount of gold, silver, etc. made into a coin.", "A musical creation.", "An artillery gun.", "A toupee or wig, usually when worn by a man.", "A small portion of food."], "baker's dozen": ["A set of thirteen."], "nix": ["To make something become nothing.", "To tell not to do something."], "lanthanum": ["Chemical element with symbol La and atomic number 57. It is a silvery white metallic element that belongs to group 3 of the periodic table and is a lanthanide."], "boxes": ["Plural form of box."], "Jerusalem artichoke": ["Helianthus tuberosus, a kind of sunflower that is grown as a perennial plant."], "peanut": ["A nutlike fruit from the plant Arachis hypogaea that grows on long stems under ground.", "A plant native to America which produces an edible fruit."], "groundnut": ["A nutlike fruit from the plant Arachis hypogaea that grows on long stems under ground.", "A plant native to America which produces an edible fruit."], "earthnut": ["A nutlike fruit from the plant Arachis hypogaea that grows on long stems under ground."], "goober": ["A nutlike fruit from the plant Arachis hypogaea that grows on long stems under ground."], "pinda": ["A nutlike fruit from the plant Arachis hypogaea that grows on long stems under ground."], "jack nut": ["A nutlike fruit from the plant Arachis hypogaea that grows on long stems under ground."], "monkey nut": ["A nutlike fruit from the plant Arachis hypogaea that grows on long stems under ground."], "elephantiasis": ["A syndrome that is characterized by the thickening of the skin and underlying tissues, especially in the legs and genitals."], "elephant disease": ["A syndrome that is characterized by the thickening of the skin and underlying tissues, especially in the legs and genitals."], "peanut butter": ["A spread made from ground peanuts."], "opportunity": ["A favorable circumstance or occasion."], "strawberry": ["Fruit of several species of plants of the genus Fragaria."], "lawrencium": ["Chemical element with symbol Lr and atomic number 103, artificially produced actinide."], "despair": ["To lose hope.", "Loss of hope."], "actor": ["A person that plays a designated role in a film or play.", "A male person that plays a designated role in a film or play."], "actress": ["A female person that plays a designated role in a film or play."], "Gen": ["A Gbe language spoken in the southeast of Togo in the Maritime Region, and in the Mono Department of Benin."], "dissuade": ["To convince not to try or do."], "stamp": ["A piece of paper that is affixed to letters or packages to pay for their delivery.", "To affix a stamp to."], "doctor": ["A person who has completed a study of medicine, and as such tries to diagnose and cure diseases in patients.", "A person who has obtained a doctorate degree.", "To change the state of an item (e.g. which was torn or broken) to a working condition again.", "To alter or make obscure, as with the intention to deceive.", "To provide medical treatment to."], "physician": ["A person who has completed a study of medicine, and as such tries to diagnose and cure diseases in patients."], "plant nursery": ["Place where plants are grown until they are large enough to be planted in their final positions.\\n(Source: PHC)"], "pilot light": ["A small gas flame, usually natural gas or liquefied petroleum gas, which is kept alight in order to provide an ignition source for a more powerful gas burner."], "shell": ["A hard outer covering of an animal, as the hard case of a mollusk.", "To end in success a struggle or contest.", "What covers on the outside, for example, a package or a box.", "An operating system software user interface, whose primary purpose is to launch other programs and control their interactions."], "furrow": ["The cut made in a field by a plough."], "ground": ["Node of an electrical system that is used as reference potential for all other nodes of the system.", "A mixture of sand and organic material, used to support plant growth.", "To use as a basis for.", "To connect (an electrical conductor or device) to a ground."], "result": ["The conclusion or end to which any course or condition of things leads.", "Having a specific result, a logical consequence.", "Condition that which follows something on which it depends.", "The result or evidence of students' learning experience."], "nape of the neck": ["The back part of the neck.", "The part of the human or animal body between the back and the backhead; the rear side of the neck of a human, the upper side of the neck of most animals."], "driver": ["A female person who can drive a car.", "A person who can drive a car.", "A program that manages the interaction between the operating system and a hardware device.", "A person who drives a car professionally."], "motorist": ["A person who can drive a car."], "strange": ["Out of the ordinary.", "Out of the ordinary.", "Out of the ordinary."], "odd": ["Out of the ordinary.", "For an integer: not a multiple of two.", "Out of the ordinary.", "Of strange or extraordinary character."], "electric": ["Utilising electricity.", "By means of electricity"], "call": ["To contact someone using the telephone.", "A conversation by a connection over a telephone network.", "To order or summon by using one's voice.", "To give a name to.", "To state, or make something known in advance, especially using inference or special knowledge.", "To give a name or designation of a common noun that, e.g., reflects a quality.", "To pay a short visit.", "To call a meeting; to invite or order to meet.", "To read aloud to check for omissions or absentees.", "To utter a characteristic note or cry (e.g. for birds).", "To order or request or give a command for (e.g. a strike)."], "hope": ["The belief that a desire can be obtained in the future.", "To want something to happen."], "hurt": ["To be of (some) importance, to influence something or someone (enough), to impress, to touch.", "To be painful.", "To cause (somebody) pain."], "hide": ["To put something in a place where it will be harder to discover or out of sight.", "To prevent from being seen or discovered.", "Skin of an animal."], "sick": ["Whose health is altered."], "coat": ["An outer garment covering the upper torso and arms."], "bell": ["An object made of metal or other hard material, typically but not always in the shape of an inverted cup with a flared rim, which resonates when struck.", "A push button at an outer door that gives a ringing or buzzing signal when pushed.", "The sound of a bell being struck."], "lutetium": ["Chemical element with symbol Lu and atomic number 71, silvery white lanthanide."], "shit": ["A product made from cannabis plants as a kind of cake, pieces of which are usually smoked so as to create a state of inebriation or euphoria in men.", "Substance that human and animal bodies release from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon.", "To excrete feces from one's body through the anus.", "A strongly disliked person who behaves disgustingly, underhandedly, or nastily, etc.", "Interjection expressing disgust, negative astonishment, possibly sudden regret, or similar, or related feelings.", "Something being said without sense, utterly wrong, of no use at all.", "Of poor quality.", "To shit little lumps of feces."], "bellwether": ["Anything that indicates future trends.", "A sheep, with a bell around its neck, that leads a flock."], "early": ["Before the expected time."], "entrance": ["The place of entering, as a gate or doorway.", "A way or means of approaching or entering.", "To attract, arouse and hold attention and interest, as by charm or beauty."], "googol": ["The number 10100, written as 1 followed by 100 zeros."], "anytime": ["At any time."], "shipping": ["The transport and movement of goods, people and animals over water."], "serious": ["(Very) serious.", "Of great impact (e.g. for a decision of great impact).", "Not laughing."], "spark plug": ["Device causing the ignition of the gas mixture contained in the cylinders of a spark-ignition engine by the creation of an electric arc between two electrodes."], "candlelight": ["Light that is emitted by a burning candle."], "nonsense": ["Something said, which noone can understand.", "Some information or idea or something said of questionable value or no value at all."], "mister": ["A title of respect used when addressing a man, sometimes with a surname added."], "sandwich": ["A snack made of various ingredients (typically meat, cheese, and condiments) placed between two slices of bread."], "hamburger": ["A hot sandwich typically consisting of a patty of cooked ground beef placed inside a bun along with various vegetables and condiments.", "A kind of flat patty of cooked ground beef that typically is placed inside a bun along with various vegetables and condiments."], "manganese": ["Chemical element with symbol Mn and atomic number 25, silvery transition metal."], "toaster": ["A device intended to roast slices of bread through the application of dry heat."], "condiment": ["Ingredient used to enhance the flavor of food; salt or pepper for example."], "holy shit": ["Interjection expressing disgust, negative astonishment, possibly sudden regret, or similar, or related feelings."], "dogpile": ["What a dogs body releases from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon."], "dog shit": ["What a dogs body releases from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon."], "shipwrecked person": ["A male victim of shipwreck.", "A female victim of shipwreck.", "The victim of a shipwreck."], "industrial plant": ["Buildings where the operations related to industrial productive processes are carried out.\\n(Source: ZINZAN)", "The whole of buildings, machines and necessary devices to carry out an activity."], "shipwrecked female": ["A female victim of shipwreck."], "shipwrecked male": ["A male victim of shipwreck."], "mean": ["To have in mind as one's purpose or intention.", "Characterized by malice.", "Having or showing an ignoble lack of honor or morality.", "In mathematics, a measure of the \"middle\" of a data set.", "To assign for a specific end, use, or purpose; to design or destine.", "To have as a logical consequence.", "To intend to express or convey."], "spread": ["To divide or distribute something in an even way.", "An item in a newspaper or magazine that occupies more than one column or page.", "To spread out or open from a closed or folded state.", "To cause to become widely known.", "To become widely known and passed on.", "The process or result of diffusion, dispersal, expansion, extension, etc.", "A considerable disparity or difference as between two figures.", "To spread across or over (e.g. of liquid spots).", "To move outward (e.g. soldiers).", "To distribute or disperse widely.", "To distribute over a surface in a layer."], "keyboard": ["An electromechanical device with keys affixed to a base used to enter information and interact with a computer.", "A component of many instruments including the piano, organ, and harpsichord consisting of usually black and white keys that cause different tones to be produced when struck.", "A device with keys of a musical keyboard, used to control electronic sound-producing devices which may be built into or separate from the keyboard device."], "ampere": ["The standard SI unit of electrical current with symbol \"A\"."], "ohm": ["The derived SI unit of electrical resistance with symbol \"\u03a9\"; the electrical resistance of a device across which a potential difference of one volt causes a current of one ampere."], "volt": ["The derived SI unit of electrical potential and voltage with symbol \"V\"; the potential difference across a conductor when a current of one ampere uses one watt of power."], "unbreakable": ["Difficult or impossible to break."], "voltmeter": ["An instrument used for measuring the voltage between two points in an electric circuit."], "ohmmeter": ["An electrical measuring instrument that measures electrical resistance."], "ammeter": ["An instrument used to measure the flow of electric current."], "multimeter": ["An electronic instrument that typically combines the functions an ammeter, voltmeter, and ohmmeter."], "hertz": ["The SI unit of frequency with symbol \"Hz\"."], "tesla": ["The SI derived unit of magnetic flux density equal to one weber per square metre, with symbol \"T\"."], "joule": ["The SI unit of energy, which is defined as the potential to do work, with symbol \"J\"."], "calorie": ["The amount of energy needed to raise the temperature of one gram of water by one degree Celsius, equal to about 4.19 joules.", "The amount of energy needed to raise the temperature of one kilogram of water by one degree Celsius."], "specific heat capacity": ["The measure of the heat energy required to raise the temperature of one gram of a substance by one degree celsius, with symbol \"C\" or \"c\"."], "specific heat": ["The measure of the heat energy required to raise the temperature of one gram of a substance by one degree celsius, with symbol \"C\" or \"c\"."], "kelvin": ["The SI unit of temperature with symbol \"K\"."], "axe": ["A tool for felling trees or chopping wood consisting of a heavy, most commonly metallic head flattened to a blade on one side, and which is attached to a usually wooden handle."], "ax": ["A tool for felling trees or chopping wood consisting of a heavy, most commonly metallic head flattened to a blade on one side, and which is attached to a usually wooden handle."], "another": ["One more, in addition to the current one."], "meitnerium": ["Chemical element with symbol Mt and atomic number 109. It's colour is probably silvery white or metallic gray."], "ago": ["In the past."], "better": ["To make better.", "Comparative form of good or well.", "To surpass in excellence.", "To get better."], "kumquat": ["Small citrus fruit with yellow-orange skin, size 2 to 5 cm; fruit of a tree in the plant family Rutaceae"], "along": ["By the length; in a line with the length; lengthwise."], "sedimentation": ["The separation of an insoluble solid from a liquid in which it is suspended by settling under the influence of gravity or centrifugation.", "The act or process of forming or accumulating sediment in layers, including such processes as the separation of rock particles from the material from which the sediment is derived, the transportation of these particles to the site of deposition, the actual deposition or settling of the particles, the chemical and other changes occurring in the sediment, and the ultimate consolidation of the sediment into solid rock.\\n(Source: BJGEO)"], "control": ["To exercise influence over, to suggest or dictate the behavior of.", "To handle and cause to function.", "To perform surgery on."], "beard": ["Facial hair of humans on the chin, cheeks and jaw."], "compare": ["To assess the similarities between two things.", "To be comparable.", "To consider or describe as similar, equal, or analogous."], "bright": ["Of high or especially quick cognitive capacity.", "Visually dazzling.", "Describing the particular astute intellect of a person.", "Bright of colour."], "intelligent": ["Of high or especially quick cognitive capacity."], "luminous": ["Visually dazzling."], "radiant": ["Visually dazzling."], "assuage": ["To bring peace to a place or situation.", "To lessen the intensity of a situation.", "To make easier to endure; provide physical relief, as from pain."], "pacify": ["To bring peace to a place or situation."], "soothe": ["To bring peace to a place or situation."], "calm": ["To lessen the intensity of a situation.", "Showing no trouble or agitation.", "(For a person) Serenely self-possessed and free from agitation especially in times of stress.", "Smooth or having only gentle waves.", "(of weather) free from storm or wind."], "mitigate": ["To lessen the intensity of a situation."], "relieve": ["To lessen the intensity of a situation.", "To make easier to endure; provide physical relief, as from pain.", "To grant relief or an exemption from a rule or requirement to."], "careless": ["Not giving sufficient attention or thought, especially concerning the avoidance of harm or mistakes."], "break": ["Destroy in two or more pieces, which can't easily be reassembled.", "To surpass in excellence.", "To stop functioning properly or altogether.", "To cause to stop functioning properly or altogether.", "The breaking of hard tissue such as bone.", "To hold back, as of a danger or an enemy; check the expansion or influence of.", "To prevent completion (e.g. of a project, of negotiations, etc.).", "To break a hard tissue such as a bone."], "destroy": ["To damage beyond use or repair.", "To cause the destruction of."], "lately": ["In a time in the recent past."], "recently": ["In a time in the recent past."], "page": ["One side of a leaf of a book or manuscript.", "A sheet of a book, magazine, etc (consisting of two pages, one on each face of the leaf)."], "person": ["A human being."], "punish": ["To administer disciplinary action.", "As an authority, to impose an undesirable condition on a person who has performed an unacceptable behavior.", "To cause great harm to.", "To return harm for a good act."], "castigate": ["To administer disciplinary action."], "own": ["To have rightful possession of property, goods or capital.", "To be in possession (of an object).", "Belonging to."], "decide": ["To reach, make, or come to a decision about something.", "To bring to an end; to settle conclusively.", "To influence or determine."], "phobia": ["An irrational or obsessive fear or anxiety, usually of or about something particular."], "everyone": ["Every person."], "easy": ["Requiring little skill or effort; posing no difficulty."], "wish": ["To hope for a particular outcome; to have a wish.", "The expression of a need or desire.", "To prefer or wish to do something.", "To invoke upon (e.g. farewell, a nice evening, etc.)."], "neither": ["Not one of two.", "To not do or be something in a similar manner."], "nothing": ["Not any thing."], "none": ["Not any of previously mentioned things."], "cargo ship": ["A ship which is exclusively intended for the transport of goods."], "freighter": ["A ship which is exclusively intended for the transport of goods."], "sailing ship": ["A vessel that is powered by the wind."], "lung": ["A biological organ that extracts oxygen from the air."], "behave": ["Act in a polite or proper way.", "To act in a (specified or unspecified) way, in a social context."], "between": ["In the location or interval between two or among more objects, sides.", "In the position or interval that separates two things."], "born": ["Given birth to", "Being talented through inherited qualities."], "bottom": ["The part furthest in the direction toward which an unsupported object would fall.", "A depression forming the ground under a body of water.", "The fleshy part of the human body that one sits on.", "Situated at the bottom or lowest position."], "besides": ["In addition to what has been said.", "In addition to."], "bring": ["Participation in building a capital, particpation in a payment.", "To apply a quality on (a person).", "To transport toward somewhere; to take something or somebody with oneself somewhere.", "To go or come after and bring or take back.", "To be accompanied by.", "To advance or set forth in court (e.g. charges or proceedings)."], "around": ["In the immediate neighbourhood of.", "Over or upon different parts of; through or over in various directions; back and forth in.", "[Said for a quantity (time, size, place, ...) that is given] in a imprecise way but close to the real value.", "Following a path which curves near an object, with the object on the inside of the curve"], "anything": ["Any object, act, state, event, or fact whatever.", "In any way."], "away": ["Not where something or someone usually is.", "In a direction away from the speaker or object.", "At a distance in space or time.", "At the opponent's ground; in the opposing team's stadium."], "absent": ["Not where something or someone usually is.", "Inattentive to what is passing."], "gone": ["Not where something or someone usually is."], "Gilaki": ["Language of Gils people who live in Gilan, Iran."], "half-moon": ["The lunar phase between new moon and full moon during which only half of the moon is visible."], "half moon": ["The lunar phase between new moon and full moon during which only half of the moon is visible."], "crescent-shaped": ["Having the shape of a crescent."], "go": ["To cease to live.", "A board game, originally from China.", "To move from a place to another that is further away."], "great": ["Very big.", "Title referring to an important leader.", "Very good.", "Deserving praise; worth to be praised."], "Black Forest": ["A mountain area in Baden-W\u00fcrttemberg in south-western Germany."], "from": ["Indicates the source or provenance.", "Starting from the moment that ...", "Starting from the place where."], "provenance": ["The place and time where some artifact or object originated from."], "procure": ["To get or obtain an item; to come into the possession of something.", "To succeed obtaining."], "obtain": ["To get or obtain an item; to come into the possession of something.", "To get a characteristic."], "amputation": ["A surgical operation consisting of the removal of all or part of a limb."], "mix": ["To stir two or more substances together.", "To mix together different elements."], "chase": ["To follow at speed with the intent to catch.", "Try to reach a goal which is difficult to reach craving for it."], "pursue": ["To follow at speed with the intent to catch.", "Trying to achieve or to reach something."], "chance": ["A favorable circumstance or occasion."], "possibility": ["A favorable circumstance or occasion."], "contain": ["To contain or hold; have within.", "To hold back, as of a danger or an enemy; check the expansion or influence of."], "enclose": ["To contain or hold; have within."], "wise": ["Not showing due respect.", "Showing good judgement or the benefit of experience."], "sad": ["Feeling mentally uncomfortable because something is missing or wrong."], "physicist": ["Scientist who studies or practices physics."], "park": ["Area of ground or a building where there is space for vehicles to be parked.", "A public place or area set aside for recreation or preservation of a cultural or natural resource.", "To bring (something such as a vehicle) to a halt or store in a specified place."], "partner": ["Someone who is associated with another in a common activity or interest.", "A person who joins with others in some activity.", "Participating in a society with an economic goal."], "mendelevium": ["Chemical element with symbol Md and atomic number 101, artificially manufactured actinide."], "curfew": ["A regulation requiring people to be off the streets and in their homes during a certain period.", "A signal (usually a bell) announcing the start of curfew restrictions.", "The time that the curfew signal is sounded."], "care": ["Treatment done for a patient in order to alleviate his pain and to heal him.", "Feeling and exhibiting concern and empathy for others.", "To feel concern or interest.", "To provide care for.", "To prefer or wish to do something."], "close": ["At a little distance.", "To make something end.", "To move (a door, a window, etc.) so that it closes its opening.", "Not far distant in time or space or degree or circumstances.", "To become closed.", "To cease to operate or cause to cease operating (e.g. a business or a shop).", "To complete a business deal, negotiation, or an agreement.", "To be priced or listed when trading stops.", "To cause a window or an application to disappear on a computer desktop."], "careful": ["Giving attention.", "Characterized by caution."], "carry": ["To contain or hold; have within.", "To lift and bring to somewhere else while supporting, either in a vehicle or on one's body; to transport by lifting.", "(For a flow of water, air, etc.) To transport with the flow."], "slow": ["With low speed.", "Reduce the velocity.", "To become slower."], "catch": ["To take hold of, especially in the hands, so as to seize or restrain or stop the motion of.", "To discover unexpectedly.", "To succeed in catching or seizing, especially after a chase.", "To attract and fix (e.g. someone or his/her eyes).", "To perceive by hearing.", "To apprehend and reproduce accurately.", "To perceive with the senses quickly, suddenly, or momentarily (e.g. an aroma, an allusion, etc.).", "To attract, arouse and hold attention and interest, as by charm or beauty.", "A drawback or difficulty that is not readily apparent.", "To reach with a blow or hit in a particular spot.", "To hook or entangle.", "To capture as if by hunting, snaring, or trapping.", "To get or regain something necessary (e.g. sleep or breathe), usually quickly or briefly.", "To catch up with and possibly overtake (e.g. cars in a race).", "The quantity (e.g. of fish) that was caught."], "capture": ["To take possession of by force.", "To take control of.", "To remove or take control of from the opponent in a game.", "To store (as in sounds or image) for later revisitation.", "To succeed in catching or seizing, especially after a chase.", "To attract, arouse and hold attention and interest, as by charm or beauty.", "To capture as if by hunting, snaring, or trapping."], "soon": ["at the time following immediately the time when", "In a near future."], "children": ["Plural form of child."], "crash": ["The occurrence when two object forcefully impact on each other.", "A computer malfunction that makes the system either partially or totally inoperable.", "Sudden dramatic decline of stock prices at stock markets.", "To collide with something destructively, fall or come down violently.", "To attend a social event without invitation.", "To undergo damage or destruction on impact."], "clean": ["Not dirty.", "To remove dirt, dust or foreign matter from.", "To remove unwanted substances from (e.g. food), such as feathers, peels or pits."], "clear": ["To eliminate ambiguity or doubt about something.", "Free of ambiguity or doubt.", "Without fog.", "To settle, as of a debt.", "To earn, to gain (money)."], "clarify": ["To eliminate ambiguity or doubt about something.", "To make clear or obvious.", "To make clear or bright by freeing from foreign substances."], "polite": ["Good mannered."], "climb": ["To ascend; to go up.", "To mount to a high or little accessible place using feet and hands."], "dark": ["Having an absolute or (more often) relative lack of light.", "Marked by difficulty of style or expression.", "Making despondent or depressive.", "Moody and melancholic.", "(For a color) Having a lower brightness."], "fuel cell": ["An electrochemical device that directly converts chemical energy into electric energy in a continuous reaction, and that needs continuous fuel supply from outside, different from a battery or an accumulator"], "board game": ["A game played on a specially designed board."], "remember": ["To recall from memory."], "shine": ["To emit light.", "To reflect light.", "To do something well; to distinguish oneself.", "To clean a surface to the point of reflectiveness.", "The quality of being bright and sending out rays of light.", "To touch or seem as if touching visually or audibly."], "glow": ["To emit light."], "gleam": ["To reflect light."], "excel": ["To do something well; to distinguish oneself."], "polish": ["To clean a surface to the point of reflectiveness."], "buff": ["A follower or admirer who likes, knows about, and appreciates a particular interest or activity.", "A change to a video game that increases the desirability or effectiveness of a particular game element.", "To increase, in a video game, the desirability or effectiveness of a particular game element."], "in case": ["In the event; should there be a need."], "recall": ["To recall from memory."], "recollect": ["To recall from memory."], "downplay": ["To deemphasize; to lessen the importance, emphasis, or force of something, as in a presentation."], "teach": ["To pass on knowledge and skills."], "deemphasize": ["To deemphasize; to lessen the importance, emphasis, or force of something, as in a presentation."], "surname": ["A family name or last name."], "last name": ["A family name or last name."], "wheel": ["A circular object that spins around a central axe thereby allowing relatively low-friction movement.", "A circular object used to steer certain types of vehicles."], "tall": ["Having a vertical extent greater than the average; Having the upper end, tip, top, head, etc. a long way up; Having a great vertical extent (often greater than the horizontal extent); High.", "Having a vertical extent greater than the average, said about a person.", "Hard to believe (a story, a tale)."], "trouble": ["To have an unwanted negative influence on someone, to be distractive to or for someone, impress someone or something in a troublesome or uneasy way.", "A source of difficulties.", "An event causing distress or pain.", "A strong feeling of anxiety.", "To cause annoyance in; disturb, especially by minor irritations.", "To disturb in mind or make uneasy or cause to be worried or alarmed."], "special": ["Of particular interest.", "A dish or meal given prominence in e.g. a restaurant."], "rich": ["Possessing in abundance a particular trait.", "For a color or a light: particularly strong and attracting gaze.", "Abundant, fully sufficient or more than adequate in supply for the purpose or needs.", "Having a lot of money and possessions.", "Having a fatty, intense flavour.", "[Used to form adjectives when combined with common nouns for things considered desirable in the context. The resulting adjectives usually mean \"abounding in (common noun)\".]", "Elaborate, having complex formatting, multimedia, or depth of interaction.", "Of a fuel-air mixture, having less air than is necessary to burn all of the fuel.", "Having a lot of natural resources.", "Of great value or worth.", "Expensive and elegant.", "Made with expensive materials and elaborate workmanship.", "Strongly fragrant.", "Producing abundantly.", "Having many components in large quantities.", "Highly entertaining.", "Musically powerful and varied, using various combinations of chords, various instrumental combinations.", "(of food) Very spicy.", "(of food) Sweet and full of butter or cream.", "(Of vine) Strong and finely flavored."], "steal": ["To take possession of property belonging to another without the consent of this owner; most typically when not observed, rather than by force.", "The act of taking illegitimatly possession of something that belongs to others."], "newton": ["The SI unit of force with symbol \"N\", equal to 1 kilogram-metre per second squared."], "coulomb": ["The SI unit of electrical charge with symbol \"C\", equal to the charge carried by a current of one ampere for one second."], "shout": ["To speak with a loud, excited voice.", "A vehement and sudden outcry.", "To utter a sudden and loud outcry.", "To utter aloud; often with surprise, horror, or joy."], "groan": ["a low, guttural sound of frustration"], "grunt": ["a low, guttural sound of frustration"], "pay": ["To give money in exchange for goods or services.", "To bear (a cost or penalty) for his own mistakes or someone else's.", "To convey, as of a compliment, regards, attention, etc.", "To render (e.g. a visit).", "To cancel or discharge a debt.", "To bring in (e.g. interests, money, etc.)."], "sheet": ["A cloth covering for a bed, intended to be in contact with the sleeping person.", "A single rectangular piece of paper.", "A smooth and rectangular piece, that is thin relative to its length and width, made of firm substance, like metal, glass, wood, stone, steel etc."], "ICAO radiotelephony spelling alphabet": ["A collection of 26 names of countries or cities with international airports which are capitals of their respecive countries, having different initial letters, set forth by the International Civil Aviation Organization (OACI), an agency of the United Nations, to be used to code the letters of the Latin alphabet with their initials for all sorts of spelling in international radio transmissions and similar communications about and in connection with civil aviation."], "ISO 3166-1 codes": ["OmegaWiki collection of ISO 3166-1 alpha-2 country codes."], "worry": ["A strong feeling of anxiety.", "To produce responsibility and desire of taking care of.", "To be anxious about something.", "To be on the mind of."], "win": ["An individual victory, as in a race or competition.", "To achieve a victory.", "To attain a desired goal.", "To get as a price from a lottery or other competition."], "pragmatic": ["Aiming towards utility and usability."], "find": ["To spot, detect, recognize, capture, or see something or someone having been unknown, invisible, obscured, too distant, or otherwise not found before.", "To encounter something by accident or after searching for it.", "An object which has been found during an archaeological excavation.", "To see, discover or determine something, unclear, distant or hidden, by looking carefully.", "To come upon after searching; find the location of something that was missed or lost.", "To establish after a calculation, investigation, experiment, survey, or study.", "To make a discovery, to make a new finding."], "must": ["A period in which male elephants display aggressive and dominant behaviour.", "To be required to do something."], "less": ["To a smaller extent."], "toy": ["An object designed for amusement or play, usually intended for children to use."], "low": ["In a position comparatively close to the ground.", "Severely despondent and unhappy.", "Low in spirits.", "Speaking quietly: to talk in a low voice."], "depressed": ["Severely despondent and unhappy.", "Low in spirits."], "will": ["A person's intent, volition, decision.", "A legal document that states who is to receive a person's estate and assets after their death.", "The capability of conscious choice and decision and intention."], "molybdenum": ["Chemical element with symbol Mo and atomic number 42, grey transition metal."], "Z\u00fcrich": ["The capital of the Swiss canton of Z\u00fcrich and the largest city of Switzerland, Switzerland's main economic and cultural centre.", "A canton in the north of Switzerland."], "Zurich": ["The capital of the Swiss canton of Z\u00fcrich and the largest city of Switzerland, Switzerland's main economic and cultural centre."], "solar panel": ["A panel that converts solar energy into electricity."], "hopefully": ["It is hoped that; I hope."], "instrument": ["A mechanical device intended to perform a task.", "A device constructed or modified with the purpose of making music."], "place": ["A position or area in a space.", "To put something in a position.", "To cause (as an end result, not a process) an object to be in a new place.", "To bring something in a specific place or in a specific position.", "To put one thing over another.", "To put in a certain position.", "To use a resource (money, time, energy, etc.) with the expectation of obtaining something of greater value.", "A space reserved for sitting (as in a theater or on a train or airplane)."], "read": ["To interpret something in a certain way; convey a particular meaning or impression.", "To look at and interpret letters or other information that is written.", "To obtain data from storage devices, like magnetic tapes or hard disks.", "To have or contain a certain wording or form."], "afghani": ["The official currency of Afghanistan."], "euro": ["The currency of the European Monetary Union, with symbol \"\u20ac\"."], "dram": ["The official currency of Armenia."], "dollar": ["The official currency of the United States of America, with symbol \"$\".", "The currency of Suriname.", "The currency of Trinidad and Tobago."], "peso": ["The currency of Chile.", "The currency of Cuba.", "The currency of Uruguay."], "franc": ["The currency of Switzerland and Liechtenstein.", "The currency of Benin, Burkina Faso, C\u00f4te d'Ivoire, Guinea-Bissau, Mali, Niger, Senegal and Togo.", "The official currency of the Democratic Republic of Congo since 1997.", "The currency of Cameroon, Central African Republic, Chad, Republic of the Congo, Equatorial Guinea and Gabon.", "The currency used in the French overseas possessions of French Polynesia, New Caledonia and Wallis and Futuna."], "kuna": ["The official currency of Croatia."], "krone": ["The official currency of Denmark."], "ruble": ["The official currency of Belarus, Russia, and Transnistria as well as other countries just before Soviet rule."], "rouble": ["The official currency of Belarus, Russia, and Transnistria as well as other countries just before Soviet rule."], "hryvnia": ["The official currency of Ukraine."], "nightgown": ["A garment mainly worn by women for sleeping in."], "nightdress": ["A garment mainly worn by women for sleeping in."], "night sky": ["The sky at night."], "Belarussian": ["A person of Belarusian nationality."], "Bielorussian": ["A person of Belarusian nationality."], "White Russian": ["A person of Belarusian nationality."], "White Ruthenian": ["A person of Belarusian nationality."], "starry sky": ["The sky at night with stars being visible."], "starlit": ["Lit by the stars."], "Moldavia": ["A geographical and historical region in north-eastern Romania."], "Alabama": ["The 22nd state of the United States of America, located in the southeast.", "A Native American language, spoken by the Alabama-Coushatta tribe of Texas."], "Arizona": ["The 48th state of the United States of America, located in the south west."], "Arkansas": ["The 25th state of the United States of America, located in the mideast.", "A language of the USA."], "California": ["The 31st state of the United States of America, located in the west."], "Colorado": ["The 38th state of the United States of America, located in the midwest.", "A language of Ecuador."], "Connecticut": ["The 5th state of the United States of America, located in the northeast."], "Delaware": ["The 1st state of the United States of America, located in the northeast.", "A river on the Atlantic coast of the United States."], "Hawaii": ["The 50th state of the United States of America, located in the Pacific Ocean."], "Idaho": ["The 43rd state of the United States of America, located in the northwest."], "spam": ["A canned meat product made of 100 % pure pork and ham.", "An unsolicited electronic message sent in bulk, e.g. by email or newsgroups."], "while": ["A certain duration of time, a period of time", "During a time"], "open": ["Not closed, something that has been opened.", "To make something accessible or removing an obstacle to something being accessible.", "To spread out or open from a closed or folded state.", "The act of something that automatically opens.", "Straightforward and direct without reserve or secretiveness.", "To make a hole or a passage unobstructed by removing a cover (like a window sash, door, etc.) from it.", "To make the opening move, e.g. in chess.", "To make available.", "To begin or set in action, of meetings, speeches, recitals, etc.", "To start to operate or function or cause to start operating or functioning (e.g. a business).", "To cause to open or to become open.", "To become open."], "which": ["What, of those mentioned or implied (used interrogatively).", "What one or ones (of those mentioned or implied)."], "neodymium": ["Chemical element with symbol Nd and atomic number 60, yellowish silvery white lanthanide."], "eviction": ["The expulsion of someone (such as a tenant) from the possession of land by process of law."], "first": ["Having no predecessor. The ordinal number corresponding to one.", "Female or feminine object having no predecessor.", "At first."], "OLPC-dictionary": ["A collection of words and definitions for the \"One Laptop Per Child\" (OLPC) initiative."], "twilight": ["A period of time at the end of the day shortly after sunset during which the light fades gradually.", "Time period between complete darkness and sunrise or sunset."], "ribonucleic acid": ["A nucleic acid polymer containing ribose rings, transcribed from DNA by enzymes and used for the translation of genes into proteins."], "RNA": ["A nucleic acid polymer containing ribose rings, transcribed from DNA by enzymes and used for the translation of genes into proteins."], "omnipotent": ["Having unlimited power, ruling over everyone and everything."], "almighty": ["Having unlimited power, ruling over everyone and everything."], "deoxyribonucleic acid": ["The principal material of inheritance. It is found in chromosomes and consists of molecules that are long unbranched chains made up of many nucleotides. Each nucleotide is a combination of phosphoric acid, the monosaccharide deoxyribose and one of four nitrogenous bases: thymine, cytosine, adenine or guanine. The number of possible arrangements of nucleotides along the DNA chain is immense. Usually two DNA strands are linked together in parallel by specific base-pairing and are helically coiled. Replication of DNA molecules is accomplished by separation of the two strands, followed by the building up of matching strands by means of base-pairing, using the two halves as templates. By a mechanism involving RNA, the structure of DNA is translated into the structure of proteins during their synthesis from amino acids.\\n(Source: ALL)"], "extremely": ["To an extreme degree."], "reality": ["Interaction between entities in the material world measured by time space stardards.", "An actual condition or circumstance."], "every": ["Every individual or anything of the given class, with no exceptions.", "All of a countable group, without exception."], "niobium": ["Chemical element with symbol Nb and atomic number 41, shiny grey transition metal."], "earn": ["To gain (success) through applied effort or work.", "To earn, to gain (money)."], "make": ["To allow urine to flow from the bladder out of the body.", "To excrete feces from one's body through the anus.", "To create something by combining or assembling materials or parts or by changing it.", "To cause someone to do something.", "To cause to be or become.", "To be the material or components of.", "To be the cause of.", "To calculate roughly, often from imperfect data.", "To be or constitute a general essence of, to be in the broadest sense identified with or part of, to often come with, to make something or someone special.", "(Of God, also of Nature personified) To bring into existence (a material or spiritual object).", "(in passive form) To be naturally fitted or destined.", "To put materials together for (a fire) and light it.", "To produce the material or physical existence of by some action.", "To give certain properties to someone or something.", "To come to the sum of; to add up to.", "(Of a person) To become by development or training; to favor the development of.", "To make official a document, law, rule, rate, etc.", "To write out (a legal document, especially one's will) in due form.", "To prepare (an article of food or drink) for consumption.", "To perform or carry out (e.g. a bodily movement or a decision).", "To enter into or conclude a legal agreement.", "To deliver (a lecture, a sermon, etc.) orally.", "[With verbal nouns, forming phrases approximately equivalent to the source verb]", "To eat (a meal).", "To incur (a loss, an expense, etc.).", "To accomplish (a distance, or speed) by travelling, using a vehicle, etc.", "To reach (a place) in travelling.", "To achieve (a point, a goal, an honor, etc.).", "To recognize (a person, etc.).", "To induce (a person) to consent to sexual relation.", "To achieve a place in (a list).", "To receive prominent attention in (the news, etc.)", "(Of a river, road, etc.:) to undergo (a turn or bend) in its course.", "To prepare (a bed) for sleeping in.", "To attempt, offer, or start to do something.", "To proceed (in a direction).", "To enable somebody the holder of a title or member of a group .", "To earn, to gain (money).", "To be able to pay for (an expense).", "(Of the flood, or ebb tide, or wind) to be in progress. (Also, of the wind: to increase in strength.)", "To prepare (a meal, a feast).", "To transform from one state, condition, category, etc., to another.", "To assure the success of.", "To be sufficient to constitute.", "To achieve (an objective).", "To succeed in catching (a plane, boat, bus, train, etc.).", "To shuffle (playing cards).", "To produce (a substance).", "To create artistically.", "To organize or be responsible for (e.g. a party, a course, etc.)", "To institute or enact (e.g. laws)."], "owl": ["An owl characterised by the presence of ear tufts.", "An owl characterised by the absence of ear tufts.", "A solitary, mainly nocturnal bird of prey, belonging to the order Strigiformes; it has large forward-facing eyes and ears and a hawk-like beak, and it can turn its head 180 degrees around."], "emergency power unit": ["A aggregate that starts automatically by power failure."], "coolant": ["A fluid which serves to transport heat."], "phrase": ["Group of words whose meaning is different from the sum of its parts."], "waiter": ["A server in a restaurant, cafe or similar.", "A servant (in a private house) whose particular duty it is to wait upon those seated at table.", "A person who waits or awaits."], "Illinois": ["The 21st state of the United States of America, located in the midwest."], "Indiana": ["The 19th state of the United States of America, located in the midwest."], "farad": ["The SI unit of capacitance with symbol \"F\"."], "Iowa": ["The 29th state of the United States of America, located in the midwest."], "Kansas": ["The 34th state of the United States of America, located in the central US."], "firkin": ["An old English unit of volume equal to about nine Imperial gallons when dealing with beer/ale and one third of a tun when dealing with wine."], "yard": ["A unit of length used throughout many systems equal to three feet (0,914 m), with symbol \"yd\".", "A small, usually uncultivated area adjoining or within the precincts of a house or other building."], "mile": ["A unit of length used by several systems equal to 5,280 feet, with symbol \"m\"."], "kindle": ["To start (a fire)."], "debate": ["An argument, or discussion, usually in an ordered or formal setting, often with more than two people, generally ending with a vote or other decision.", "To participate in a formal debate.", "The act of disputing.", "To discuss by arguing for and against."], "discussion": ["Conversation concerning a particular topic."], "thing": ["All coverings designed to be worn on a person's body.", "That which is considered to exist as a separate entity, quality or concept.", "An object or abstraction that is referred to but not precisely named.", "Whatever can be owned.", "The sexual organs: the testicles and penis of a male; or the labia, clitoris, and vagina of a female."], "nobelium": ["Chemical element with symbol No and atomic number 102, artificially produced actinide"], "server": ["A computer that provides services to other interconnected computers (the clients).", "An attendant who offers or distributes food and drink to those in an eating place (at a restaurant, a refectory, etc.)."], "draw": ["To produce traces or marks with a solid colour on a hard surface or with a solid object on softer surface.", "To apply a force to (an object) such that it comes toward the one applying the force.", "To determine the result of a lottery.", "To reach a conclusion by applying rules of logic to given premises.", "The result of a game in which neither side has won.", "To draw by a physical force causing or tending to cause to approach, adhere, or unite.", "To cause to move along the ground by pulling."], "feed": ["To feed a bird from beak to beak.", "To give food.", "Encapsulated online content that you can subscribe to with a feed reader. Used often for reading blog and news updates.", "To profit from in an exploitatory manner.", "To introduce continuously (e.g. ingredients into a food processor).", "To support or promote (e.g. vanity, self-esteem, etc.).", "To move along, of liquids."], "zigzag": ["A line or path that proceeds by sharp turns in alternating directions; A line created by moving back and forth sideways, and at the same time forward in one direction; A line similar to serpentines.", "One of the turns in a line or path that proceeds by sharp turns in alternating directions.", "Moving in a zigzag, proceeding like a zigzag, or having a zigzag.", "In a zigzag manner or pattern.", "To move in a zigzag, to proceed like a zigzag, to bend like a moving snake body."], "serpentines": ["A line or path that proceeds by sharp turns in alternating directions; A line created by moving back and forth sideways, and at the same time forward in one direction; A line similar to serpentines."], "serpentine": ["One of the turns in a line or path that proceeds by sharp turns in alternating directions."], "Zigzag": ["A small town in Oregon, USA."], "still": ["Continuously, during all time up to this or that time.", "In addition to something else previously mentioned.", "In spite of that.", "A device for distilling liquids.", "A non-moving photograph.", "Not in physical motion.", "Not moving.", "As in the preceding time."], "winter day": ["A day in winter."], "summer day": ["A day in summer."], "spring day": ["A day in spring."], "peck": ["An Imperial unit of dry volume equal to eight dry quarts.", "To bother persistently with trivial complaints.", "A British imperial capacity measure (liquid or dry) equal to 2 gallons.", "To kiss lightly.", "(For a bird) To eat by small pieces with one's beak or bill.", "To eat by small pieces like a bird.", "To hit lightly with a picking motion."], "pint": ["A unit of volume equal to 473 millilitres (wet) and 551 millilitres (dry)."], "furlong": ["A measure of distance within Imperial units and U.S. customary units, and is equal to 660 feet or 201.168 metres."], "league": ["An obsolete unit of length and area equal to 3 nautical miles (5.56 kilometres) and 4428.4 acres, respectively.", "An obsolete unit of length equal to 3 nautical miles (5.56 kilometres)."], "weber": ["The SI unit of magnetic influx with symbol \"Wb\"."], "radian": ["A unit of plane angle with symbol \"rad\"."], "z\u0142oty": ["The official currency of Poland."], "yen": ["The official currency of Japan."], "rand": ["The official currency of South Africa."], "rupee": ["The currency of Nepal.", "The currency of India.", "The currency of Mauritius."], "dinar": ["The official currency of Algeria.", "The currency of Jordan.", "The currency of Libya.", "The currency of Kuwait.", "The currency of Serbia"], "dirham": ["The official currency of Morocco."], "Luxembourgish": ["A West Germanic language mainly spoken in Luxembourg where it is an official language along with French and German."], "Luxemburgish": ["A West Germanic language mainly spoken in Luxembourg where it is an official language along with French and German."], "Luxembourgian": ["A West Germanic language mainly spoken in Luxembourg where it is an official language along with French and German."], "Kalaallisut": ["An Eskimo-Aleut language spoken in Greenland."], "Moldavian": ["A person of Moldovan nationality.", "Of or relating to Moldova, Moldovans, or the Moldovan language.", "The Romanian language in the Republic of Moldova and in the territory of Transnistria.", "Of or relating to Moldavia, Moldavians, or the Moldavian dialect.", "A variety of the Romanian language spoken in the Republic of Moldova."], "Moldovan": ["The Romanian language in the Republic of Moldova and in the territory of Transnistria.", "A person of Moldovan nationality.", "Of or relating to Moldova, Moldovans, or the Moldovan language.", "A variety of the Romanian language spoken in the Republic of Moldova."], "Kirghiz": ["A Northwestern Turkic language, and, together with Russian, an official language of Kyrgyzstan."], "osmium": ["Chemical element with symbol Os and atomic number 76, grey blue transition metal."], "terrible": ["Dreadful; causing alarm and fear.", "Intensely or extremely bad or unpleasant in degree or quality."], "drive": ["To operate a (motorized) vehicle (with wheels).", "To herd (animals) in a particular direction.", "To move something by hitting it with great force; to push, propel, or press with force.", "The act of applying force to propel something.", "A series of actions advancing a principle or tending toward a particular end.", "To compel or force or urge relentlessly or exert coercive pressure on, or motivate strongly.", "To compel somebody to do something, often against his own will or judgment.", "To travel or be transported in a vehicle.", "To excavate horizontally.", "To cause to function by supplying the force or power for or by controlling."], "either": ["One or the other of two.", "Each of two."], "end": ["Extreme part.", "The last or final part.", "To reach oneself's end.", "To make something end.", "To have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical.", "To put an end to."], "terminate": ["To make something end.", "To have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical."], "though": ["In spite of that.", "Despite the fact that.\\n[Expression to indicate that something occurs or is done in the opposite way than what is required or sensible.]"], "than": ["A grammatical particle and preposition in the English language. It introduces a comparison, and as such is associated with comparatives, and with words such as more, less, and fewer. Typically, it seeks to measure the force of an adjective or similar description between two predicates."], "enjoy": ["To receive pleasure or satisfaction from something.", "To derive or receive pleasure from; get enjoyment from; take pleasure in."], "shelf": ["A flat, rigid, rectangular structure, fixed at right angles to a wall, and used to support, store or display objects."], "therefore": ["[A word that expresses that something is or should be the consequence of something else]."], "hence": ["[A word that expresses that something is or should be the consequence of something else]."], "thus": ["[A word that expresses that something is or should be the consequence of something else].", "In the way or manner described, indicated, or suggested"], "electromagnetism": ["The physics of the electromagnetic field: a field which exerts a force on particles that possess the property of electric charge, and is in turn affected by the presence and motion of those particles."], "scarf": ["A long and narrow cloth that is worn around the neck."], "pseudonym": ["A fictitious name, often used by writers."], "enter": ["To come or go into.", "To insert and to record data in an electronic computer in permanent form.", "To have one's name formally recorded as a participant or member."], "drop": ["The event of moving to a lower position due to the effect of gravity.", "To fall in globules or small portions, as water or other liquid.", "A very small quantity of a liquid that has taken the form of a sphere."], "veracity": ["The quality of being truthful."], "truthfulness": ["The quality of being truthful."], "store": ["An establishment, either physical or virtual, that sells goods or services to the public.", "To keep something for later use in a certain location.", "To copy (data) into memory or onto a storage device, such as a hard disk."], "tidy": ["Arranged neatly or in an organised fashion.", "To make neat or organised.", "Having a systematic arrangement."], "pupil": ["A student under the supervision of a teacher or professor.", "Someone who attends a class.", "Contractile aperture in iris."], "pascal": ["The SI derived unit of pressure or stress, with symbol \"Pa\"."], "excited": ["Having great enthusiasm.", "Very emotional or excited, positively or negatively, regarding something.", "(Physics) Having an energy level above an arbitrary baseline energy state."], "hurry": ["To move or do something at a fast pace.", "To speed up the rate of doing something."], "fail": ["To not achieve a particular goal.", "A grade given to a student with extremely below average performance."], "several": ["An arbitrary amount of persons or objects, usually not much more than two."], "these": ["The (things) here. [Used to indicate some things that are nearby.]"], "litas": ["The currency of Lithuania."], "lira": ["The former official currency of Italy, San Marino and the Vatican City.", "The currency of Malta until the end of 2007 when it was replaced by the euro"], "becquerel": ["The SI derived unit of radioactivity, with symbol \"Bq\"."], "lux": ["The SI unit of illuminance, with symbol \"lx\"."], "steradian": ["The SI unit of solid angle, with symbol \"sr\"."], "lumen": ["The SI unit of luminous flux, with symbol \"lm\".", "The inside space of a tubular structure."], "disavow": ["To refuse strongly and solemnly to own or acknowledge."], "abjure": ["To refuse strongly and solemnly to own or acknowledge."], "disclaim": ["To refuse strongly and solemnly to own or acknowledge."], "disown": ["To refuse strongly and solemnly to own or acknowledge."], "deny": ["To refuse strongly and solemnly to own or acknowledge.", "To reject the truth or validity of something."], "reject": ["To refuse strongly and solemnly to own or acknowledge.", "The person or thing that is rejected or set aside as inferior in quality."], "depend": ["To have faith or confidence in.", "To rely on for support; to be conditioned or contingent; to be connected with anything, as a cause of existence, or as a necessary condition."], "lower": ["To reduce in value, amount, etc.", "To move something to a less elevated position.", "To port down, to move down."], "shorten": ["To make shorter."], "abbreviate": ["To make shorter.", "To bring information in fewer words; to describe roughly or briefly.", "To shorten a word or phrase by omitting letters."], "their": ["Belonging to them. (genitive of third person plural)"], "successful": ["Resulting in success; assuring, or promotive of, success; accomplishing what was proposed; having the desired effect"], "ever": ["At any time, particularly used as an intensifier."], "forever": ["For all time, for all eternity; for an infinite amount of time.", "For a very long or seemingly endless time."], "palladium": ["Chemical element with symbol Pd and atomic number 46, silvery white transition metal."], "much": ["A large amount of.", "To a considerably larger extent."], "happen": ["(For an event) Have a real existence.", "(For an event) To occur by chance.", "To encounter by chance.", "To come to pass."], "habeas corpus": ["A common law writ, or order, used to challenge the legality of imprisonment."], "for": ["[Indicates that a reason or cause follows].", "Over the time of; Having a duration of; [indicates that a time frame or duration follows].", "Directed at, intended to belong to."], "since": ["Starting from the moment that ...", "As a consequence of.", "[Used to introduce a known or obvious fact that justifies a proposition in the same sentence.]", "[Used to indicate that the speaker considers the two propositions to be obligatorily connected.]"], "switch on": ["To cause to operate an electronic device by flipping a switch.", "To cause to operate by flipping a switch."], "lettuce": ["A green, leafy vegetable (Lactuca sativa) commonly eaten in salads, burgers and tacos."], "her": ["Belonging or associated with a female.", "\"Her\", \"hers\", the genitive form of \"she\"."], "odious": ["Arousing or meriting strong dislike, aversion, or intense displeasure.", "Provoking hate, aversion, disaproval."], "detestable": ["Arousing or meriting strong dislike, aversion, or intense displeasure."], "hated": ["Arousing or meriting strong dislike, aversion, or intense displeasure."], "reviled": ["Arousing or meriting strong dislike, aversion, or intense displeasure."], "unsavory": ["Arousing or meriting strong dislike, aversion, or intense displeasure.", "Unpleasant to the taste."], "button up": ["Refuse to talk or stop talking.", "To fasten with a button or buttons.", "To fasten the buttons on a coat, or similar item of clothing."], "close up": ["To render passage impossible by physical obstruction.", "Refuse to talk or stop talking.", "To cease to operate or cause to cease operating (e.g. a business or a shop)."], "fall silent": ["Refuse to talk or stop talking."], "praseodymium": ["Chemical element with symbol Pr and atomic number 59, silvery white lanthanide."], "heron": ["A long-legged, long-necked wading bird of the family Ardeidae."], "hers": ["That which belongs to her; the possessive case of she, used without a following noun."], "him": ["He, when used after a preposition or as the object of a verb. 3rd person singular masculine object pronoun."], "his": ["Belonging to him."], "knot": ["A loop of string or any other long flexible material which cannot be untied without pulling part of the string through the loops.", "A unit of speed, equal to one nautical mile per hour.", "To tie with knots."], "scientist": ["Expert in at least one area of science who uses the scientific method to do research."], "peer review": ["The process by which articles are chosen to be included in a refereed publication.", "A systematic examination of computer source code."], "genocide": ["The systematic murder of a certain people or race."], "sorry": ["An interjection expressing regret, remorse, or sorrow.", "Used as a request for someone to repeat something not heard or understood clearly."], "neuroanatomy": ["The study of the nervous system\u2019s structure."], "soma": ["The cell body of an axon.", "Leafless East Indian vine; its sour milky juice formerly used to make an intoxicating drink."], "matelot": ["A sailor of the lowest rank."], "high": ["Being elevated in position or status, a state of being above many things.", "Tall, lofty, at a great distance above the ground.", "Who is under the influence of a mood affecting drug.", "(Of a quantity or value) That is above the average, or above what is considered as normal."], "adolescence": ["Period of human life between childhood and adulthood."], "teenhood": ["Period of human life between childhood and adulthood."], "off": ["In a direction away from the speaker or object.", "Into a state of non-operation; into a state of non-existence.", "At a distance in space or time.", "To unlawfully and intentionally kill another human being."], "out": ["Outside of an enclosed space."], "salad": ["Any of a broad variety of dishes, consisting of (usually raw) chopped vegetables, most commonly including lettuce."], "shoelace": ["A lace used for fastening a shoe."], "fruit salad": ["A dessert (served in fruit juice) consisting of various raw, chopped fruits."], "feel": ["To become aware of through the skin; to use the sense of touch.", "To have a sensation of something without the use of touch, sight, hearing, smell, or taste.", "To be in some emotional state.", "An intuitive awareness.", "A property perceived by touch.", "To be felt or perceived in a certain way.", "To examine by touch."], "summary": ["A condensed presentation of the substance of a body of material.", "Regarding a process: That is performed in an expeditious manner without observing the course normally planned.", "Original draft made in an office of each order or communication issued."], "fit": ["Having sufficient or the required properties for a certain purpose or task; appropriate to the occasion.", "(Of an object) To be of the right size and shape so as to match another object.", "To be compatible, similar or consistent; coincide in their characteristics.", "To furnish with whatever is needed for use or for any undertaking.", "In good physical condition to perform a physical task, as a result of exercise.", "To test the look or fit of (a garment) by wearing it.", "To be agreeable or acceptable to.", "To satisfy a condition or restriction."], "help": ["Action given to provide assistance.", "A person or persons who provide assistance with some task.", "To give assistance or aid to.", "To be of use or help.", "To improve the condition of.", "To abstain from doing; always used with a negative."], "promethium": ["Chemical element with symbol Pm and atomic number 61, silvery white radioactive lanthanide."], "abbreviation": ["The form to which a word or phrase is reduced by contraction and omission."], "anathema": ["A ban or curse pronounced with religious solemnity by ecclesiastical authority, and accompanied by excommunication.", "Any person or thing anathematized, or cursed by ecclesiastical authority."], "move": ["To change the location of an object.", "To change house, to move themselves to an other room.", "(game) A player's turn to move a piece or take some other permitted action.", "To cause to move to a new place.", "To change one's domicile or place of business.", "To be in motion, to go from one place to another.", "To have an emotional or cognitive impact upon."], "shortly": ["In a near future."], "threat": ["An expression or declaration of intent to injure or punish another.", "A situation or a person who is regarded as a source of danger.", "An adversary who is capable and motivated to exploit a vulnerability. (Schneider)"], "menace": ["A situation or a person who is regarded as a source of danger.", "To put in danger."], "period": ["A period of time in history seen as a single coherent entity.", "The period in the menstrual cycle when the endometrium is shed when conception did not take place.", "A length of time."], "epoch": ["A period of time in history seen as a single coherent entity.", "A designated instant in time.", "Moment in history which is usually marked by some significant event."], "era": ["A period of time in history seen as a single coherent entity."], "retinue": ["A group of servants or attendants."], "corpse": ["A dead body."], "cadaver": ["A dead body.", "The physical structure of a dead animal or person."], "lunch": ["Meal usually eaten at midday."], "Indo-European": ["A major language family which includes many of the languages between Europe and India, with notable Indic, Iranian and European sub-branches."], "Romance": ["The group of languages which are derived from Latin.", "Of or dealing with languages or cultures derived from Roman influence and Latin.", "A branch of the Indo-European language family, comprised of all the languages that descend from Latin, the language of the Roman Empire."], "West Germanic": ["The largest branch of the Germanic family of languages and includes languages such as German, English and Dutch."], "North Germanic": ["A subgroup of the Germanic languages, spoken in the three Scandinavian countries (Denmark, Norway, and Sweden), the Faroe Islands and Iceland."], "parsley": ["A soft bright green, biennial herb with the name Petroselinum Crispum from the Apiaceae family. It is being used in European, North-American and Middle Eastern cooking."], "chives": ["A herbaceous perennial plant with the name allium schoenoprasum, part of the allium family; native to Northern Asia, Europe and North America. The leaves are used as a herb for cooking."], "onion": ["A plant of the genus Allium used as a vegetable and spice.", "The edible bulb of the onion plant which is used in many dishes."], "meet": ["To collect in one place, usually for a purpose.", "To come together with someone by accident.", "To get together socially or for a specific purpose at a given place and time.", "To satisfy or fulfill (e.g. a job or a need).", "To contend against an opponent in a sport, game, or battle.", "To satisfy a condition or restriction."], "member": ["The male sexual organ for copulation and urination; the tubular portion of the male genitalia (excluding the scrotum).", "One who officially belongs to a group.", "An arm or leg."], "Wikipedia": ["An open-content encyclopedia, collaboratively developed on the World Wide Web."], "roof": ["The structure covering a building.", "To cover with a roof."], "language isolate": ["A natural language with no demonstrable genetic relationship with other living languages."], "constructed language": ["A language of which the phonology, grammar and/or vocabulary has been specifically devised by an individual or small group."], "Uralic language": ["A language family which suggested Urheimat (homeland) is often placed close to the Ural mountains, which includes Estonian, Finnish and Hungarian."], "such": ["similar to this [Used to make a comparison with something implied by context.]", "[Used as an intensifier, with omission of an indication of comparison] So extreme a kind of."], "earring": ["A piece of jewelry worn on the ear.", "A ringformed piece of jewelry worn in the ear."], "breathe in": ["To draw air into the lungs."], "inhale": ["To draw air into the lungs."], "breathe out": ["To expel air from the lungs."], "hat": ["An item of clothing intended to cover the head made from material hard enough to have a shape independant of the skull, and most commonly with a rim."], "exhale": ["To expel air from the lungs."], "belt": ["A clothing accessory, usually made of leather or heavy cloth, worn around the waist and used to support trousers or other articles of clothing."], "umbrella": ["A portable, foldable, waterproof, bell-shaped device which is held above the head in order to be shielded from the rain.", "Large portable shelter used as protection from the sun on porches, in gardens or on the beach."], "repair": ["To change the state of an item (e.g. which was torn or broken) to a working condition again.", "To correct or amend something; set straight or right.", "The act of putting something in working order again."], "piano": ["A musical instrument, which produces sound through the vibrations of strings struck by felt hammers."], "pianoforte": ["A musical instrument, which produces sound through the vibrations of strings struck by felt hammers."], "clarinet": ["A musical instrument in the woodwind family."], "cabbage": ["An edible plant, Brassica oleracea, with many varieties."], "cauliflower": ["A variety of the cabbage (Brassica oleracea), of which the cluster of young flower stalks and buds is eaten as a vegetable."], "trumpet": ["A musical instrument in the brass family.", "A musician that plays the trumpet.", "To blow a trumpet.", "To emit a loud, trumpetlike sound."], "luggage": ["The bags and other containers that hold a traveller's belongings."], "baggage": ["The bags and other containers that hold a traveller's belongings."], "trunk": ["Storage compartment for luggage in a car.", "The nose of an elephant.", "The part of the body from the neck to the groin excluding the head and limbs."], "torso": ["The part of the body from the neck to the groin excluding the head and limbs."], "sufficient": ["All that is required, needed, or appropriate."], "tuba": ["The largest musical instrument of the low-brass family."], "trombone": ["A musical instrument in the brass family."], "Limburgian": ["A group of Franconian dialects spoken mainly in Belgian and Dutch Limburg."], "saxophone": ["A conical-bored musical instrument of the woodwind family."], "flute": ["A musical instrument of the woodwind family."], "bass clarinet": ["A musical instrument of the clarinet family. It plays notes an octave below the more common soprano B flat clarinet."], "contrabass clarinet": ["One of the largest members of the clarinet family. It plays notes two octaves lower than the more common soprano B flat clarinet."], "octave": ["The interval between one musical note and another with half or double the frequency."], "tempo": ["The speed or pace of a given musical piece."], "fix": ["To change the state of an item (e.g. which was torn or broken) to a working condition again.", "To prepare (a meal, a feast).", "To make something fixed or stable; to cause to be firmly attached.", "To take revenge on or get even."], "clef": ["A symbol used in musical notation that assigns the pitch of notes to lines and spaces on the musical staff."], "pitch": ["The perceived fundamental frequency of a musical note or sound.", "To be at an angle; to move downwards.", "An angle indicating the amount of rotation of an object around its longitudinal axis. For an airplane, it indicates whether its nose points up or down."], "videocassette recorder": ["A device that can record broadcast television programmes, or the images and sounds from a video camera for subsequent playback through a television set."], "VCR": ["A device that can record broadcast television programmes, or the images and sounds from a video camera for subsequent playback through a television set."], "audio": ["Sound that can be heard."], "attention": ["The process whereby a person concentrates on some features of the environment.", "Selective allocation of mental processing resources to one aspect of the environment.", "An action or remark expressing concern for or interest in someone or something."], "apparatus": ["A complex machine or instrument."], "magic": ["The art of entertaining an audience by performing illusions that baffle and amaze.", "The use of rituals or actions, especially based on supernatural or occult knowledge, to manipulate or obtain information about the natural world, especially when seen as falling outside the realm of religion; also the forces allegedly drawn on for such practices. A specific ritual or procedure associated with supernatural magic or with mysticism; a spell."], "part": ["A seperate unit of a larger whole.", "A separate melody within polyphonic music.", "To leave a person or a place.", "To create a gap between parts of a whole, thus creating two sections.", "In figurative sense a certain amount of a bigger whole.", "Something determined in relation to something that includes it.", "In part; in some degree; not wholly.", "A line dividing the hair on top of the head."], "swimming pool": ["A basin used for swimming."], "postcard": ["A rectangular piece of paper intended for mailing; it contains a picture on one side and a place for a message and a post stamp on the other side", "A rectangular piece of thick paper or thin cardboard intended to be written on and mailed without an envelope."], "only": ["Nothing more than.", "Singular; part of a relatively small number", "Without someone or something else.", "Without any others being included or involved.", "Having none other in a category."], "our": ["Belonging to us; of us"], "appointment": ["The arrangement for a meeting."], "shower": ["A brief fall of rain.", "An area in which one bathes underneath a spray of water.", "To bathe oneself using a shower.", "To bathe someone or something using a shower."], "feat": ["An action that requires great skills to be performed successfully."], "accomplishment": ["The capacity to do something well. They are usually acquired or learned, as opposed to abilities, which are often thought of as innate.", "An action that requires great skills to be performed successfully.", "That which is accomplished.", "Getting a result by exertion."], "defeat": ["An end to a struggle or contest that did not end in success.", "To end in success a struggle or contest."], "victory": ["An end to a struggle or contest that did end in success.", "A conclusive success following an effort, conflict, or confrontation of obstacles."], "protactinium": ["Chemical element with symbol Pa and atomic number 91. It is a silvery actinide."], "strong": ["Capable of producing great physical force.", "Having or wielding force or authority.", "Having a strong physiological or chemical effect.", "Of verbs not having standard (or regular) inflection."], "firing squad": ["A squad of soldiers or paramilitaries detailed to execute someone, usually by rifle shot."], "rifle": ["A firearm with a rifled barrel for improved accuracy.", "To add a spiral to the interior of a gun bore."], "shoot": ["To fire a bullet from a firearm.", "To kill a person or an animal with a shot from a firearm.", "To execute a condemned by firing squad.", "To give an injection to."], "straight on": ["Forward in a straight direction."], "arrange": ["To give structure to.", "To change to reach a certain scope or condition."], "this morning": ["In the morning of this day."], "sail": ["A vessel that is powered by the wind.", "A large piece of fabric (as canvas) by means of which wind is used to propel a sailing vessel.", "To traverse or travel by ship on a body of water.", "To travel in a boat propelled by wind."], "perfect": ["Without fault or shortcomings.", "Exactly suited for a person or purpose."], "plenty": ["A sufficient amount.", "Sufficiently or very.", "An overflowing fullness."], "people": ["A body of human beings considered generally or collectively; a group of two or more persons.", "A group of persons forming or belonging to a particular nation, class, ethnic group, country, family, etc.", "A cultural community connected by the same language and ancestory.", "The mass of a community as distinguished from a special class (elite).", "The mass of a community as distinguished from a special class (elite)."], "prize": ["Something of value given to the winner of a competition.", "Something of value given to the winner of a game of chance.", "Something taken by an attacker from the enemy.", "A ship or its contents captured at sea.", "Something worth striving for."], "unit of time": ["A measure of periods of time like second, hour, day, year or century."], "moonlight": ["The light reflected from the moon."], "Moonlight Sonata": ["Surname of the piano sonata No. 14 in C-sharp minor, Op. 27, No. 2 by Ludwig van Beethoven."], "underwrite": ["The process whereby a new issue of securities from an issuing corporation or government entity are bought to resell them to the public."], "underwriter": ["An investment firm that purchases a security directly from its issuer for resale or sells it for the issuer."], "schizophrenia": ["A group of psychiatric problems that can be categorized as a dopamine dysregulation disorder."], "ready": ["Prepared or in condition for immediate action or use.", "Mentally disposed."], "henry": ["The SI unit of inductance with symbol \"H\"."], "siemens": ["The SI derived unit of electric conductance, with symbol \"S\"."], "sievert": ["The SI derived unit that measures the radiation dose absorbed by living tissue, where the biological effects possibly produced have been corrected."], "katal": ["The SI unit of catalytic activity, with symbol \"kat\"."], "sex": ["Either of two main divisions (either male or female) into which many organisms can be placed, according to reproductive function or organs.", "The act of sexual intercourse."], "Los Angeles": ["The most populous city in the state of California and the second-most in the United States of America."], "City of Angels": ["The most populous city in the state of California and the second-most in the United States of America."], "Tehran": ["The largest city and capital of Iran."], "harangue": ["To give a forceful and lengthy lecture or criticism to another person."], "admonish": ["To give a forceful and lengthy lecture or criticism to another person.", "To scold or rebuke; to counsel in terms of someone's behavior.", "To warn strongly; put on guard.", "To take to task."], "berate": ["To give a forceful and lengthy lecture or criticism to another person."], "lecture": ["An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.\\n(Source: RHW)", "To give a forceful and lengthy lecture or criticism to another person.", "A spoken lesson about a particular subject."], "beaker": ["A large cup used without a saucer."], "understanding": ["The ability to think about something and use concepts to be able to deal adequately with this.", "The cognitive condition of someone who understands."], "comprehension": ["The ability to think about something and use concepts to be able to deal adequately with this."], "almost": ["All, but not quite; slightly short of ; close to entirely.", "In such a way that it is very close to being something or happening."], "mug": ["A large cup usually with a handle and used without a saucer.", "A person who is gullible and easy to take advantage of."], "extreme": ["Far beyond the norm."], "block": ["A tool, consisting of a set of wheels around which a rope is led, meant to lift or move a load more lightly.", "A chopped piece of wood, usually small enough to put on a fire.", "To render passage impossible by physical obstruction.", "An educational unit, such as a set of courses.", "To use one's influence or rights to prevent something from being done.", "A building or set of buildings, surrounded on all sides by relatively wide streets in a roughly square or rectangular manner.", "A compact piece of substantial material, usually solid, especially when to be further processed and worked upon.", "A sector or group of sectors that function as the smallest data unit permitted to be operated on.", "A metal casting containing the cylinders and cooling ducts of an engine.", "An obstruction in a pipe or tube.", "To be unable to remember.", "Polyhedron with six rectangular faces.", "To impede the movement of (an opponent or a ball)."], "genuine": ["Free of forgery or counterfeiting.", "Being or reflecting the essential or genuine character of something."], "authentic": ["Free of forgery or counterfeiting."], "veto": ["To use one's influence or rights to prevent something from being done.", "To tell not to do something."], "past": ["The period of time that has already happened.", "Having taken place or existed in the past."], "stranger": ["Someone who is not known."], "radium": ["Chemical element with symbol Ra and atomic number 88, silvery white alkaline earth metal."], "slice of bread": ["A slice cut of from a bread."], "pen": ["A utensil, usually tubular in form, containing ink used to write or make marks.", "An enclosure for confining livestock.", "Female swan.", "A portable piece of furniture in which an infant or young child is confined for safety reasons."], "jogging": ["The practice of running at the pace of a jog for exercise."], "sunrise": ["The ascent of the sun above the eastern horizon in the morning."], "sunup": ["The ascent of the sun above the eastern horizon in the morning."], "sunset": ["The descent of the sun below the western horizon in the evening."], "sundown": ["The descent of the sun below the western horizon in the evening."], "captain": ["The person lawfully in command of a sea-going vessel."], "pie": ["A quantity of meat, fruit, or other food baked within or under a crust of prepared pastry."], "trout": ["Fresh water salmon."], "currency": ["A unit of exchange (such as money) used to facilitate transactions."], "hut": ["A simple roofed shelter, often with one open side.", "A small crude shelter used as a dwelling."], "certificate": ["An award offered to recognize the work performed and skills or learning acquired."], "enthusiasm": ["A lively interest for something.", "A feeling of excitement."], "Slavic language": ["One of the closely related languages of the Slavic peoples and a subgroup of Indo-European languages, having speakers in most of Eastern Europe, in much of the Balkans, in parts of Central Europe, and in the northern part of Asia."], "piece of furniture": ["A movable article in a room designed to support human activities, for example a bed or a table."], "yearning": ["A deep and aching desire for someone or something.", "Full of yearning.", "Ardent desire or craving."], "longing": ["A deep and aching desire for someone or something."], "trophy": ["A memento for a specific accomplishment."], "princess": ["The daughter of a king, queen, emperor, empress, prince, or princess."], "transparent": ["Where light can pass through, so one can clearly see through it."], "suddenly": ["In a sudden and unexpected way."], "dandy": ["An excessively conceited man."], "don": ["The head of an organized crime family.", "To move or place (anything) so as to get it into or out of a specific location or position."], "God": ["The Superior Being, the Creator, the Spirit because of which and in whom everything is, as He is being named by monotheists, mostly Jews and Christians."], "against": ["On the opposing side to.", "In opposition of something."], "shrapnel": ["The metal fragments and debris thrown out by any exploding object."], "nipple": ["The projection of a mammary gland from which, on female mammals, milk can be secreted."], "testicle": ["The male sex gland that produces sperm and male hormones, found in some types of animals."], "pancreas": ["An organ in the digestive and endocrine system that serves the functions of exocrine and endocrine."], "jaw": ["Either of the two opposable structures forming, or near the entrance to, the mouth."], "thyroid": ["A large endocrine gland present in all vertebrates and located in the neck of humans."], "strike": ["In bowling, the act of knocking down all ten pins in on the first roll of a frame.", "A collective stopping of work.", "An old English measure of corn equal to the bushel.", "To collectively stop working.", "To hit or come into contact against something.", "To deliver a sharp blow, as with the hand, fist, or weapon.", "To have an emotional or cognitive impact upon.", "To make a strategic, offensive, assault against an enemy, opponent, or a target.", "To touch or seem as if touching visually or audibly.", "To affect or afflict suddenly, usually adversely (e.g. of bad weather or illness)."], "wrist": ["The flexible and narrower connection between the forearm and the hand."], "thigh": ["The area between the pelvis and buttocks and the knee."], "pelvis": ["The bony structure found in most vertebrates located at the base of the spine."], "rib": ["One of the long curved bones which form the rib cage.", "Architectural element consisting of a side of stone placed in support of a vault or a dome."], "Adam's apple": ["A lump at the front of the neck."], "laryngeal prominence": ["A lump at the front of the neck."], "scrotum": ["A bag of skin and muscle containing the testicles."], "ankle": ["A joint formed where the foot and the leg meet."], "talocrural joint": ["A joint formed where the foot and the leg meet."], "uterus": ["The major female reproductive organ of most mammals, including humans. It is a large muscle enveloping the phoetus during pregnancy."], "womb": ["The major female reproductive organ of most mammals, including humans. It is a large muscle enveloping the phoetus during pregnancy."], "rhenium": ["Chemical element with symbol Re and atomic number 75, grayish white transition metal."], "spine": ["The body part that consists of a row of vertebrae, that support the head and torso and that forms a canal for nerves."], "race": ["Sport contest of speed.", "To cause (something or someone) to move in an unusually fast pace.", "Competition when someone is running one against others.", "To move fast."], "blanket": ["A large cloth used for warmth and for sleeping.", "Anything that covers or conceals something else.", "Broad in scope or content; affecting every part of a situation."], "skilled": ["Experienced and clever, profesional."], "sweetheart": ["Someone that one loves."], "syndrome": ["A collection of symptoms that characterize a specific disease or condition."], "Baltic language": ["A language belonging to the Indo-European language family and spoken mainly in areas extending east and southeast of the Baltic Sea."], "farrow": ["A litter of piglets", "To give birth to a litter of piglets."], "violin": ["A musical instrument of the strings family with four strings tuned in perfect fifths."], "viola": ["A stringed musical instrument played with a bow which serves as the middle voice of the violin family.", "Plant belonging to the genus Viola."], "cello": ["A stringed musical instrument and a member of the violin family."], "violoncello": ["A stringed musical instrument and a member of the violin family."], "guitar": ["A fretted and stringed musical instrument."], "electric guitar": ["A type of guitar that uses electromagnetic pickups to convert the vibration of its steel-cored strings into electrical signals."], "lute": ["A plucked string instrument with a fretted neck and a deep round back."], "balalaika": ["A stringed instrument of Russian origin, with a characteristic triangular body and three strings."], "rhodium": ["Chemical element with symbol Rh and atomic number 45, silvery white transition metal."], "labour dispute": ["Conflict between employer and employee."], "bit": ["Mouthpiece to assist the guiding of a horse.", "Small quantity.", "A small fragment of something broken off from the whole.", "A unit of measurement of information; the amount of information in a system having two equiprobable states.", "A small amount of solid food; a mouthful."], "ersatz": ["Something made in imitation; typically of an inferior quality."], "for example": ["As an example. [Used to introduce an example or list of examples.]"], "trousers": ["An item of clothing worn on the lower part of the body and covering both legs separately."], "malicious": ["Characterized by malice."], "nasty": ["Characterized by malice.", "Causing a sensation as of things crawling on your skin."], "spiteful": ["Characterized by malice."], "sink": ["To fall or drop to a lower place or level.", "A bowl for washing hands, dishwashing or other purposes, often affixed to a wall.", "To cause a boat to go down in the water.", "A natural depression or hole in the surface topography caused by the chemical dissolution of carbonate rocks.", "To fall heavily or suddenly; decline markedly.", "To go under, as of a boat."], "kitchen sink": ["A sink in a kitchen.", "A way of indicating that possibly everything is included."], "lid": ["Top or cover of a container."], "locust": ["Migratory grasshoppers of the order Orthoptera of warm regions having short antennae."], "booth": ["A stall, or light structure for the sale of goods or for display purposes, as at a market, exhibition, or fair."], "stall": ["A stall, or light structure for the sale of goods or for display purposes, as at a market, exhibition, or fair."], "notary": ["Someone who can administer oaths and statutory declarations, witness and authenticate documents and perform certain other acts varying from jurisdiction to jurisdiction."], "soul": ["In philosophical or religious belief the immaterial and immortal part of a human being which lives on after death.", "The entirety of thought, feeling and emotion in a human being."], "passport": ["A gouvernment issued proof of identity, with which one is allowed to cross a nation's borders."], "trench": ["A type of ditch used in warfare."], "machine gun": ["A firearm that fires bullets in rapid succession while the firing mechanism is activated."], "ping": ["A packet which a remote host is expected to echo, thus indicating its presence."], "neologism": ["A word or phrase which has recently been coined."], "posterity": ["All future generations.", "All of the offspring of a given progenitor."], "preference": ["A greater interest or desirability in somebody/something than other things.", "Something that is liked more than other things, something that is preferred.", "A certain way software, a webpage or an electronic device reacts, displays certain information or activates certain functions as selected by the user (note: usually plural)."], "quote": ["A passage or expression that is quoted or cited.", "To repeat the exact words of a person as they were said or written.", "Price information that allows a prospective buyer to see what costs would be involved for the work they would like to have done or the product they would like to buy."], "quotation": ["A passage or expression that is quoted or cited.", "A short note recognizing a source of information or of a quoted passage.", "A statement of the current market price of a security or commodity."], "citation": ["A passage or expression that is quoted or cited.", "A short note recognizing a source of information or of a quoted passage."], "basically": ["By one's or its very nature.", "In a fundamental, essential or basic manner."], "essentially": ["By one's or its very nature.", "In a fundamental, essential or basic manner."], "malice": ["The intention to do injury to another party."], "ethnic cleansing": ["A purposeful policy designed by one ethnic or religious group to remove by violent and terror-inspiring means the civilian population of another ethnic or religious group from certain geographic areas."], "rob": ["To illegally take something from, especially using force or violence.", "To deprive of something valuable by force.", "To ask an unreasonable price."], "slave": ["A person who is owned and forced to work, usually without pay, by another."], "ballerina": ["A female ballet dancer."], "gallon": ["A unit of volume equal to about 3.79 litres in the United States and 4.55 litres in the United Kingdom."], "lawyer": ["A professional person who advises or represents others in legal matters as a profession."], "endowment": ["Money received of which only the interest earned on it may be spent.", "A talent or quality which is or seems innate or natural."], "donation": ["A voluntary gift or contribution for a specific cause.", "Money, which is given away."], "mathematics": ["The science that deals with concepts such as quantity, structure, space and change."], "calculus": ["A central branch of mathematics, which relies critically on the concept of limits.", "A form of hardened dental plaque."], "algebra": ["A branch of mathematics concerning the study of structure, relation and quantity."], "roentgenium": ["Chemical element with symbol Rg and atomic number 111, transition metal."], "overhaul": ["A major repair, renovation, or revision.", "To modernize, repair, renovate, or revise completely.", "To travel past another road user."], "overtake": ["To travel past another road user.", "To catch up with and possibly overtake (e.g. cars in a race)."], "pass": ["To cease to live.", "To travel past another road user.", "To obtain the formal sanction of, as a legislative body.", "To go through any inspection or test successfully.", "Of time, to elapse, to be spent.", "To pass time in a specific way.", "Act of sending the ball or puck to a player of the same team.", "To send the ball or puck to a player of the same team."], "traffic light": ["A signaling device to control the flow of traffic."], "liquorice": ["A usually black sweet, made of an extract of licorice."], "produce": ["To create something by combining or assembling materials or parts or by changing it.", "To sponsor and present (a motion picture) to an audience or to the public.", "To come to have or undergo a change of physical features or attributes.", "To make something happen."], "United Nations Secretary-General": ["The head of the United Nations Secretariat."], "clothe": ["To put clothes on something or somebody.", "To clothe oneself; to put on clothes."], "geometry": ["One of the two fields of pre-modern mathematics, dealing with spatial relationships."], "trigonometry": ["A branch of mathematics dealing with the purely arithmetic relations between specific geometric characteristics of right angled triangles."], "government": ["A body that has the authority to make and the power to enforce laws within a civil, corporate, religious, academic, or other organization or group."], "physical education": ["A school course which teaches physical skills to pupils."], "PE": ["A school course which teaches physical skills to pupils."], "gym": ["A school course which teaches physical skills to pupils.", "A building that is designed for indoor sports.", "A large room designed for indoor sports."], "cinematography": ["The discipline of making lighting and camera choices when recording photographic images for the cinema."], "journalism": ["The discipline of collecting, analyzing, verifying, and presenting news regarding current events, trends, issues and people."], "nazism": ["The ideology of the German Nazi Party under Adolf Hitler."], "National Socialism": ["The ideology of the German Nazi Party under Adolf Hitler."], "fascism": ["A political ideology usually characterised by a very high degree of nationalism, economic corporatism, a powerful, dictatorial leader who portrays the nation, state or collective as superior to the individuals or groups composing it."], "communism": ["A political ideology that seeks to establish a future classless, stateless social organization, based upon common ownership of the means of production."], "bid": ["Availability to sell goods or services for a certain price and under certain conditions.", "To top the standing bid at an auction.", "An offer or proposal for goods and/or services submitted in response to a government agency\u2019s invitation.", "To invoke upon (e.g. farewell, a nice evening, etc.)."], "microcredit": ["The extension of very small loans to those who are generally considered not to be bankable."], "lexicology": ["A speciality in linguistics dealing with the study of the lexicon, i.e. the words and phrases in a language."], "divot": ["A torn up piece of turf."], "fatalism": ["The doctrine that all things are subject to fate, or that they take place by inevitable necessity."], "ruthenium": ["Chemical element with symbol Ru and atomic number 44, silvery white transition metal."], "half": ["One of the two equal parts of a whole.", "Consisting of a half (1/2, 50%) of."], "calculator": ["An electronic device that performs mathematical calculations.", "An expert at calculation"], "popular": ["Beloved or approved by the people.", "Of the people."], "remove": ["To take something away.", "To unlawfully and intentionally kill another human being.", "To move something from one place to another, especially to take away.", "To take (an article of clothing) away from one's body."], "donor": ["Someone who donates."], "benefactor": ["Someone who donates."], "accredit": ["To give credit for.", "To ascribe an achievement to."], "hardboard": ["Building material of boards of pressed fibres."], "occurrence": ["Something that happens or has happened."], "willow": ["Any of various deciduous trees or shrubs in the genus Salix."], "dachshund": ["A breed of dog having short legs and a long trunk."], "ceiling": ["An overhead surface that bounds the upper limit of a living space."], "lamb": ["Young sheep.", "(Of a sheep) To give birth.", "The flesh of a lamb used as food."], "snack": ["A small meal.", "To eat small things in between meals."], "symphony": ["An extended composition usually for orchestra and usually comprising four movements."], "opera": ["An art form consisting of a dramatic stage performance set to music.", "A building designed for the performance of opera works.", "A single work of the art form opera.", "A company dedicated to performing operas.", "That that has been made; a product produced or accomplished through the effort or activity or agency of a person or thing."], "opium den": ["A place where opium is smoked."], "opera house": ["A building designed for the performance of opera works."], "formal": ["Being in accord with established forms and conventions and requirements.", "(Of spoken and written language) Adhering to traditional standards of correctness and without casual, contracted, and colloquial forms.", "Characteristic of or befitting a person in authority."], "informal": ["Not in accord with the usual regulations."], "nationalism": ["An ideology that holds that a nation is the fundamental unit for human social life, and takes precedence over any other social and political principles."], "authoritarianism": ["A form of government characterized by strict obedience to authority, usually by oppressive measures.", "The rule of a despot."], "totalitarianism": ["A form of government which regulates nearly every aspect of public and private behavior."], "dictatorship": ["An autocratic form of government which is ruled by a dictator.", "The rule of a despot."], "dictator": ["An absolute ruler with unbounded power."], "nightclub": ["An entertainment venue which does its primary business after dark.", "Drinking, dancing, and entertainment venue which does its primary business after dark."], "rush": ["To move or do something at a fast pace.", "To cause (something or someone) to move in an unusually fast pace.", "To move fast.", "To do something quickly."], "soviet democracy": ["A form of democracy in which workers elect representatives in the organs of power called soviets."], "direct democracy": ["A form of democracy where an assembly of citizens can control government policies and actions."], "participatory democracy": ["A form of democracy which stresses the involvement of constituents in the direction and operation of political systems."], "representative democracy": ["A form of democracy founded on the exercise of popular sovereignty by the people's representatives."], "social democracy": ["A form of democracy aimed to reform the capital system in order to remove its perceived injustices and to bring about a more equal distribution of wealth."], "federalism": ["A system of government in which power is divided between a central government and local governments (e.g. states and provinces)."], "tyrrany": ["A regime in which absolute power is held one individual, called a tyrant."], "matriarchy": ["A form of society in which power is with the women and especially with the mothers of a community."], "patriarchy": ["The sociological condition where fathers have supreme authority within families and male members of a society tend to predominate in positions of power."], "French fries": ["A dish of fried strips of potatoes."], "reticent": ["Keeping one's thoughts and opinions to oneself."], "restrained": ["Keeping one's thoughts and opinions to oneself."], "reserved": ["Keeping one's thoughts and opinions to oneself."], "poplar": ["Any of various deciduous trees of the genus Populus."], "rutherfordium": ["Chemical element with symbol Rf and atomic number 104, assumedly a grey or silvery transition metal."], "how many": ["Which quantity?"], "wizard": ["A person who practices magic or sorcery.", "A man who performs witchcraft; performer of the black arts."], "sorcerer": ["A person who practices magic or sorcery.", "A man who performs witchcraft; performer of the black arts."], "magician": ["A person who practices magic or sorcery.", "Someone who performs magic tricks to amuse an audience."], "tense": ["Showing signs of stress or strain; not relaxed.", "The grammatical construct of the time in which a sentence acts.", "To cause to be tense and uneasy or nervous or anxious.", "To become stretched or tense or taut."], "broadcast": ["To send data over the airwaves, as in radio or television.", "A performance of a show or other broadcast on radio or television.", "A transmission of a radio or television programme.", "To cause to become widely known."], "transmit": ["To carry, particularly to a particular destination.", "To send data over the airwaves, as in radio or television.", "To spread or pass on something such as a disease or a signal.", "To communicate news or information.", "To convey energy or force through a mechanism."], "send": ["To make something (an object, a message) go from one place to another."], "ventilate": ["To expose to fresh air.", "To expose to the circulation of fresh air so as to retard spoilage.", "To give expression or utterance to.", "To expose to cool or cold air so as to cool or freshen."], "witch": ["A female person who uses magic.", "A woman who has evil magic powers.", "To cast a spell on someone or something."], "solution": ["The conclusion or end to which any course or condition of things leads.", "The successful act or process of explaining or proposing an approach to solving a problem.", "A homogeneous mixture, which may be liquid, gas or solid, formed by dissolving one or more substances.", "Satisfaction of a claim or debt."], "awake": ["To stop sleeping.", "To make someone stop sleeping.", "Not sleeping.", "Able to use one's senses and mental abilities to perceive one's surroundings and understand the current situation."], "ar": ["Area measure, 1 square decametre or 1 dam\u00b2 or 100 m\u00b2"], "sphere": ["Round three-dimensional body whose surface has at each point the same distance from the center.", "A particular environment or walk of life."], "domain": ["A particular environment or walk of life.", "The defined framework in which one carries out his tasks.", "Land that is controlled by a specific country or ruler.", "The highest taxonomic category of organisms, higher than a kingdom.", "In mathematics, the set of values for which a function is defined.", "A geographic area owned or controlled by a single person or organization.", "A group of related subjects.", "An open and connected set in some topology.", "A group of computers and devices on the internet that share a common element of their IP address (such as .org or .omegawiki.org).", "A group of computers on the Internet or other network which are under the control of a particular organization or individual.", "A region within a magnetic material that has uniform magnetization.", "In the classification of organisms, the taxonomic rank above kingdom.", "In the three-domain system, one of three taxa at the rank of domain: Bacteria, Archaea, or Eukaryota.", "A folded section of a protein molecule that has a discrete function."], "arena": ["A particular environment or walk of life.", "A large structure for open-air sports or entertainments."], "contributor": ["Someone who donates."], "migrant": ["A man who moves from one region or country to another.", "A woman who moves from one region or country to another.", "Person who moves from one region or country to another."], "infertile": ["Not yielding much.", "Unable to reproduce."], "fortify": ["To prepare oneself for a military confrontation.", "Make strong or stronger.", "Enclose by or as if by a fortification.", "To add nutrients to.", "Add alcohol to (beverages)"], "gird": ["To prepare oneself for a military confrontation."], "Kafkaesque": ["In the manner of the literary works by Franz Kafka.", "Marked by bizarreness and a sense of impending danger."], "crowd": ["A large number of people united for some specific purpose.", "A crowd of people pressed close together in a small space.", "6-string musical instrument of Welsh or Irish origin and played with a bow.", "A large group of people.", "To cause to herd, drive, or crowd together.", "To fill or occupy in a small space to the point of overflowing.", "To gather together in large numbers."], "Orwellian": ["Pertaining to or characteristic of the literary work of George Orwell, especially the dystopian novel Nineteen Eighty-Four and his picture of a future totalitarian state."], "arrive": ["To come to a destination.", "To succeed in a big way; to get to the top."], "beer parlour": ["A business licensed to sell intoxicating beverages for consumption on the premises, or the premises themselves"], "equally": ["To the same extent or degree."], "every bit": ["To the same extent or degree."], "climbing plant": ["A plant that lacks rigidity and grows upwards by twining, scrambling, or clinging with tendrils and suckers."], "att": ["A subdivision of the Laotian kip, 100 att=1 kip."], "aunty": ["A woman with one or more siblings who have one or more children; a sister of someone's father or mother."], "auntie": ["A woman with one or more siblings who have one or more children; a sister of someone's father or mother."], "marshal": ["A military officer of the highest rank."], "endorse": ["To give support or one's approval to; to be behind; to approve of.", "To be in favour of or be behind; to approve of."], "indorse": ["To give support or one's approval to; to be behind; to approve of."], "trait": ["Characteristic quality of a being or thing."], "nuclear power": ["A state which possesses nuclear weapons."], "badly": ["With great intensity."], "immoral": ["Characterized by wickedness or immorality.", "Not adhering to ethical or moral principles."], "bestow": ["To apply a quality on (a person)."], "trademark": ["A word or mark that distinctly indicates the ownership of a product or service, and that is legally reserved for the exclusive use of that owner."], "Marxism": ["A philosophy and social theory stating that the class in control of the economy is also in control of politics."], "carpet": ["A fabric used as a floor covering."], "old bag": ["An ugly or ill-tempered woman."], "cup of tea": ["An activity that one likes or at which one is superior."], "handbag": ["A object used for carrying money and small personal items or accessories (especially by women)."], "nut": ["Device that can be screwed on a bolt.", "The male sex gland that produces sperm and male hormones, found in some types of animals.", "A hard-shelled seed."], "testis": ["The male sex gland that produces sperm and male hormones, found in some types of animals."], "orchis": ["The male sex gland that produces sperm and male hormones, found in some types of animals."], "ballock": ["The male sex gland that produces sperm and male hormones, found in some types of animals."], "bollock": ["The male sex gland that produces sperm and male hormones, found in some types of animals."], "clod": ["A compact mass."], "glob": ["A compact mass."], "lump": ["A compact mass."], "clump": ["A compact mass."], "chunk": ["A compact mass."], "roll": ["To tip laterally.", "A flight maneuver; the aircraft tips laterally about its longitudinal axis (especially in turning).", "To flatten or spread with a roller.", "To arrange or coil around.", "To begin operating or running.", "To move by turning over or rotating.", "To shape (e.g. a cigarette) by rolling."], "trust": ["To have confidence or faith in.", "A group of organisations in an industry which agree on maintaining high prices and effectively killing competition.", "To confer a trust upon."], "swear": ["To have confidence or faith in.", "To take an oath.", "To use offensive language.", "To make a deposition; to declare under oath.", "To declare or affirm solemnly and formally as true."], "rely": ["To have confidence or faith in."], "build up": ["To prepare oneself for a military confrontation."], "tolerate": ["To have a tolerance for.", "To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly.", "To allow the presence of or allow without opposing or prohibiting."], "raccoon": ["(Procyon lotor) An omnivorous nocturnal mammal native to North America and Central America."], "Svalbard": ["An archipelago lying in the Arctic Ocean north of mainland Europe, about midway between Norway and the North Pole."], "Union of Soviet Socialist Republics": ["The constitutionally socialist state that existed in Eurasia from 1922 to 1991."], "Soviet Union": ["The constitutionally socialist state that existed in Eurasia from 1922 to 1991."], "USSR": ["The constitutionally socialist state that existed in Eurasia from 1922 to 1991."], "autonomous oblast": ["An autonomous entity within the state which is on the oblast (province) level of the overall administrative subdivision."], "rampart": ["An embankment built around a space for defensive purposes."], "AO": ["An autonomous entity within the state which is on the oblast (province) level of the overall administrative subdivision."], "bulwark": ["An embankment built around a space for defensive purposes.", "A fence-like structure around the deck of a vessel, to protect it from the waves."], "schoolbag": ["A bag for carrying school supplies and textbooks."], "account": ["To account; to esteem; to think; to judge; to hold in opinion; to regard. (Source Webster 1913)", "A formal contractual relationship established to provide for regular banking or brokerage or business services.", "To keep an account of.", "The whole of procedures and bookings to register the active and passive economical operations.", "To give an account or representation in words.", "To have as an opinion."], "ununoctium": ["The temporary name for a synthetic superheavy element in the periodic table with symbol Uuo and atomic number 118."], "rafter": ["One of several parallel sloping beams that extend from the ridge to the wall-plate, to support the roof and its associated loads; the sloping top member of a roof truss, which carries the purlins."], "malt": ["A cereal grain that is kiln-dried after having been germinated by soaking in water; used especially in brewing and distilling.", "A milkshake made with malt powder.", "A lager of high alcohol content; by law it is considered too alcoholic to be sold as lager or beer."], "Bosnia and Herzegovina": ["A country on the Balkan peninsula of southern Europe whose capital is Sarajevo."], "Serbia and Montenegro": ["The confederated union of Serbia and Montenegro, which existed between 2003 and 2006."], "Austria-Hungary": ["A dual-monarchic union state in Central Europe from 1867 to 1918, dissolved at the end of World War I."], "hops": ["Twining perennials having cordate leaves and flowers arranged in conelike spikes.", "The dried flowers of the plant with the same name; used in brewing to add the characteristic bitter taste to beer."], "beginning": ["The beginning of an activity or event.", "The place where something begins, where it springs into being."], "commencement": ["The beginning of an activity or event."], "among": ["In the location or interval between two or among more objects, sides.", "At somebody's home.", "[Denotes a mingling or intermixing with distinct or separable objects.]"], "translator": ["A person who translates written text from one language to another."], "unethical": ["Not adhering to ethical or moral principles."], "meanspirited": ["Having or showing an ignoble lack of honor or morality."], "interpreter": ["Someone who mediates between speakers of different languages.", "A program which executes another program written in a programming language other than machine code."], "base of operations": ["An installation from which a military force initiates operations."], "establish": ["To use as a basis for.", "To give a proof that something is true.", "To prove and cause to be accepted as true.", "To set up or lay the groundwork for.", "To set up or found; to begin something, to undertake a plan, to give life to an institution, enterprise, etc.", "To determine something in a firm way, durably.", "To build or establish something abstract.", "To place.", "To institute or enact (e.g. laws).", "To bring about (e.g. depth in a picture)."], "found": ["To use as a basis for.", "To start some type of organization, company, city, etc.", "To set up or lay the groundwork for.", "To build the foundations of a construction.", "To set up or found; to begin something, to undertake a plan, to give life to an institution, enterprise, etc."], "free-base": ["To use purified cocaine by burning it and inhaling the fumes."], "groundwork": ["The lowest support of a structure.", "Work preparing or laying the ground for something that is planned to come later.", "The fundamental assumptions from which something is begun or developed or calculated or explained."], "substructure": ["The lowest support of a structure."], "understructure": ["The lowest support of a structure."], "university": ["An institution of higher education and of research, which grants academic degrees."], "handbasket": ["A lightweight container, generally round, open at the top, and tapering toward the bottom."], "bathe": ["Submerging of the body into water either for washing or for recreation.", "To immerse oneself in a liquid.", "To clean oneself by immersion in water."], "bathing tub": ["A tub or pool which is used for bathing."], "tub": ["A tub or pool which is used for bathing."], "faculty": ["A division of a university.", "Power, means or right to do something."], "john": ["A room or building equipped with one or more toilets.", "Male client of a prostitute."], "lav": ["A room or building equipped with one or more toilets."], "bean plant": ["Any of various leguminous plants grown for their edible seeds and pods."], "digest": ["To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly.", "To convert food into absorbable substances for the body.", "To arrange and integrate in the mind.", "To make more concise (e.g. the contents of a book or an article)."], "endure": ["To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly.", "To endure, continue over time."], "stick out": ["To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly.", "To extend out or project in space."], "support": ["To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly.", "To help, particularly financially.", "To keep from falling.", "Moral support, protection and aid.", "Aid, above all financial.", "Any device that bears the weight of another thing.", "To be in favour of or be behind; to approve of.", "To be the physical support of; carry the weight of.", "To establish or strengthen with new evidence or facts.", "To believe or agree with a theory or an idea."], "abide": ["To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly."], "suffer": ["To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly.", "To physically feel a damage, a pain, a disease or a punishment.", "To experience or suffer an injury, a disease, etc."], "user": ["Someone who uses an object, an application, a process or a service.", "A drugs addict, someone using drugs."], "drugs addict": ["A drugs addict, someone using drugs."], "volume": ["The magnitude of the physiological sensation produced by a sound, which varies directly with the physical intensity of sound but also depends on frequency of sound and waveform.", "Part of a larger published work.", "The amount of threedimensional space occupied by an object."], "omasum": ["A compartment of the stomach in ruminants."], "manyplies": ["A compartment of the stomach in ruminants."], "rumen": ["Larger part of the reticulorumen, which is the first chamber in the alimentary canal of ruminant animals."], "fardingbag": ["Larger part of the reticulorumen, which is the first chamber in the alimentary canal of ruminant animals."], "paunch": ["Larger part of the reticulorumen, which is the first chamber in the alimentary canal of ruminant animals.", "A protruding abdomen of an animal or human."], "samarium": ["Chemical element with symbol Sm and atomic number 62, silvery white lanthanide."], "sleeping room": ["A room in a house (usually containing at least a bed and a wardrobe) where a person sleeps."], "chamber": ["A room in a house (usually containing at least a bed and a wardrobe) where a person sleeps."], "bedchamber": ["A room in a house (usually containing at least a bed and a wardrobe) where a person sleeps."], "earlier": ["At a time before that."], "ahead": ["In front of in space"], "in front": ["In front of in space"], "get down": ["To take the first step or steps in carrying out an action."], "get": ["To come to a destination.", "To get or obtain an item; to come into the possession of something.", "To take the first step or steps in carrying out an action.", "To experience or suffer an injury, a disease, etc.", "To acquire or catch (a disease, something noxious, bad condition).", "To achieve (a point, a goal, an honor, etc.).", "To go through (mental or physical states or experiences).", "To take revenge on or get even.", "To succeed in catching or seizing, especially after a chase.", "To come to have or undergo a change of physical features or attributes.", "To attract and fix (e.g. someone or his/her eyes).", "To reach (e.g. an arithmetic result) by calculation.", "To purchase.", "To perceive by hearing.", "To receive as a retribution or punishment.", "To reach and board.", "To irritate.", "To apprehend and reproduce accurately.", "To go or come after and bring or take back.", "To reach with a blow or hit in a particular spot."], "start out": ["To take the first step or steps in carrying out an action."], "set about": ["To take the first step or steps in carrying out an action.", "To begin to deal with, e.g., a task, a problem, etc."], "set out": ["To take the first step or steps in carrying out an action."], "commence": ["To take the first step or steps in carrying out an action.", "To set in motion, cause to start."], "lead off": ["To set in motion, cause to start."], "comport": ["Act in a polite or proper way."], "buttocks": ["The fleshy part of the human body that one sits on."], "nates": ["The fleshy part of the human body that one sits on."], "arse": ["The fleshy part of the human body that one sits on.", "An insulting exclamation directed at a vile, stupid or a worthless person."], "butt": ["The fleshy part of the human body that one sits on.", "The unsmoked part of a cigarette or cigar."], "backside": ["The fleshy part of the human body that one sits on."], "bum": ["The fleshy part of the human body that one sits on.", "A person abandoned by society, esp. a person without a permanent home and means of support.", "Of very poor quality.", "A person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne, having a specifically obscene and offensive way to express oneself. Someone bumming about in the city not having an acceptable or decent place to stay or for living or housing.", "A female person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne, having a specifically obscene and offensive way to express herself. A female bumming about in the city not having an acceptable or decent place to stay or for living or housing.", "A male person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne; one having a specifically obscene and offensive way to express himself. A male bumming about in the city not having an acceptable or decent place to stay or for living or housing."], "buns": ["The fleshy part of the human body that one sits on."], "hindquarters": ["The fleshy part of the human body that one sits on."], "hind end": ["The fleshy part of the human body that one sits on."], "keister": ["The fleshy part of the human body that one sits on."], "posterior": ["The fleshy part of the human body that one sits on.", "Coming at a subsequent time or stage."], "prat": ["The fleshy part of the human body that one sits on."], "rear": ["The fleshy part of the human body that one sits on.", "To bring up to maturity, as offspring; to educate; to instruct; to foster."], "rear end": ["The fleshy part of the human body that one sits on."], "rump": ["The fleshy part of the human body that one sits on."], "stern": ["The fleshy part of the human body that one sits on.", "The rear part of a ship or a boat."], "tail end": ["The fleshy part of the human body that one sits on."], "tooshie": ["The fleshy part of the human body that one sits on."], "tush": ["The fleshy part of the human body that one sits on."], "derriere": ["The fleshy part of the human body that one sits on."], "fanny": ["The fleshy part of the human body that one sits on."], "ass": ["A domesticated animal, Equus asinus.", "A strongly disliked person who behaves disgustingly, underhandedly, or nastily, etc.", "The fleshy part of the human body that one sits on."], "doorbell": ["A push button at an outer door that gives a ringing or buzzing signal when pushed."], "buzzer": ["A push button at an outer door that gives a ringing or buzzing signal when pushed."], "toll": ["The sound of a bell being struck."], "in any case": ["Whatever the case may be"], "topper": ["The person who is most outstanding or excellent; someone who tops all others.", "Man's silk hat with high cylindrical crown."], "ace": ["The person who is most outstanding or excellent; someone who tops all others.", "A highly skilled person.", "A playing card with a single suit symbol located in the middle of the card."], "A-one": ["The person who is most outstanding or excellent; someone who tops all others."], "first-rate": ["The person who is most outstanding or excellent; someone who tops all others."], "super": ["The person who is most outstanding or excellent; someone who tops all others."], "tiptop": ["The person who is most outstanding or excellent; someone who tops all others."], "topnotch": ["The person who is most outstanding or excellent; someone who tops all others."], "tops": ["The person who is most outstanding or excellent; someone who tops all others."], "agnosticism": ["The view that the existence of any god is unknown at present."], "meliorate": ["To make better.", "To get better."], "amend": ["To make better.", "To correct or amend something; set straight or right."], "dame": ["A woman that is considered sexually attractive by a man, or many men."], "doll": ["A woman that is considered sexually attractive by a man, or many men.", "A model of a human, a humanoid, an animal or a fictional character, usually made of cloth or plastic."], "wench": ["A woman that is considered sexually attractive by a man, or many men."], "shuttlecock": ["Badminton equipment consisting of a ball of cork or rubber with a crown of feathers."], "birdie": ["Badminton equipment consisting of a ball of cork or rubber with a crown of feathers.", "A small bird."], "shuttle": ["Badminton equipment consisting of a ball of cork or rubber with a crown of feathers.", "Device used in weaving to carry the weft, moving continuously to-and-fro."], "nativity": ["The moment at which someone is being born."], "nascency": ["The moment at which someone is being born."], "nascence": ["The moment at which someone is being born."], "natal day": ["The date on which a person was born."], "flake": ["A small fragment of something broken off from the whole.", "A loose filmy mass or a thin chiplike layer of anything."], "fleck": ["A small fragment of something broken off from the whole.", "To make a spot or mark onto."], "scrap": ["A small fragment of something broken off from the whole."], "morsel": ["A small amount of solid food; a mouthful."], "chapter": ["A part of a book, a literary work etc. with a distinct content, set apart using typography."], "total darkness": ["The total absence of light."], "lightlessness": ["The total absence of light."], "blackness": ["The total absence of light."], "pitch blackness": ["The total absence of light."], "Black": ["A person with dark skin who comes from Africa (or whose ancestors came from Africa).", "An African-American male.", "The largest left tributary of the Amazon and the largest blackwater river in the world. It has its sources along the watershed between the Orinoco and the Amazon basins, and also connects with the Orinoco by way of the Casiquiare canal. In Colombia, where their sources are, it is called the Guain\u00eda River."], "Black person": ["A person with dark skin who comes from Africa (or whose ancestors came from Africa)."], "blackamoor": ["A person with dark skin who comes from Africa (or whose ancestors came from Africa)."], "Negro": ["A person with dark skin who comes from Africa (or whose ancestors came from Africa)."], "Negroid": ["A person with dark skin who comes from Africa (or whose ancestors came from Africa)."], "city block": ["A building or set of buildings, surrounded on all sides by relatively wide streets in a roughly square or rectangular manner."], "cube": ["A three-dimensional polyhedron, bounded by six square sides of equal size; one of the five Platonic solids"], "pulley-block": ["A tool, consisting of a set of wheels around which a rope is led, meant to lift or move a load more lightly."], "engine block": ["A metal casting containing the cylinders and cooling ducts of an engine."], "cylinder block": ["A metal casting containing the cylinders and cooling ducts of an engine."], "blockage": ["An obstruction in a pipe or tube."], "closure": ["An obstruction in a pipe or tube."], "occlusion": ["An obstruction in a pipe or tube."], "stoppage": ["An obstruction in a pipe or tube."], "obstruct": ["To render passage impossible by physical obstruction."], "obturate": ["To render passage impossible by physical obstruction."], "impede": ["To render passage impossible by physical obstruction."], "occlude": ["To render passage impossible by physical obstruction."], "jam": ["To render passage impossible by physical obstruction.", "A difficult situation.", "A crowd of people pressed close together in a small space.", "Preserve of crushed fruit.", "To press tightly together or cram."], "blank out": ["To be unable to remember."], "draw a blank": ["To be unable to remember."], "screwdriver": ["A hand tool used for driving screws.", "A drink made of vodka and orange juice."], "certainly": ["The expression of a positive affirmation.", "With certainty."], "lineage": ["The descendants of one individual."], "line of descent": ["The descendants of one individual."], "descent": ["The descendants of one individual.", "A downward slope or bend.", "A sudden decline in strength or number or importance.", "A movement downward."], "bloodline": ["The descendants of one individual."], "blood line": ["The descendants of one individual."], "pedigree": ["The line of descent of a pure-bred animal."], "ancestry": ["A line of ancestors coming down to one's parents."], "origin": ["The point of intersection of the horizontal and vertical axis of a graph."], "parentage": ["The descendants of one individual."], "bloodshed": ["The shedding of blood during a violent conflict.", "A ruthless killing of a great number of people."], "cuboid": ["Polyhedron with six rectangular faces.", "(geometry) A solid figure bounded by six rectangular faces."], "nose candy": ["A street name for cocaine."], "fellate": ["To provide sexual gratification to a man through oral stimulation."], "go down on": ["To provide sexual gratification to a man through oral stimulation.", "To perform oral sex on a female."], "azure": ["The colour of the clear sky or the deep sea, between green and violet in the visible spectrum, and one of the primary additive colours for transmitted light; the colour obtained by subtracting red and green from white light using magenta and cyan filters."], "cerulean": ["The colour of the clear sky or the deep sea, between green and violet in the visible spectrum, and one of the primary additive colours for transmitted light; the colour obtained by subtracting red and green from white light using magenta and cyan filters."], "sky-blue": ["The colour of the clear sky or the deep sea, between green and violet in the visible spectrum, and one of the primary additive colours for transmitted light; the colour obtained by subtracting red and green from white light using magenta and cyan filters."], "bright blue": ["The colour of the clear sky or the deep sea, between green and violet in the visible spectrum, and one of the primary additive colours for transmitted light; the colour obtained by subtracting red and green from white light using magenta and cyan filters."], "dispirited": ["Low in spirits."], "downcast": ["Low in spirits."], "downhearted": ["Low in spirits."], "down in the mouth": ["Low in spirits."], "low-spirited": ["Low in spirits."], "display panel": ["A screen on which information can be displayed to public view."], "display board": ["A screen on which information can be displayed to public view."], "control panel": ["An electrical device consisting of an insulated panel containing switches and dials and meters for controlling other electrical devices.", "Instrument panel on an automobile or airplane containing dials and controls."], "instrument panel": ["An electrical device consisting of an insulated panel containing switches and dials and meters for controlling other electrical devices."], "control board": ["An electrical device consisting of an insulated panel containing switches and dials and meters for controlling other electrical devices."], "panel": ["A surface that reflects light.", "An electrical device consisting of an insulated panel containing switches and dials and meters for controlling other electrical devices.", "A smooth surface, usually made of glass with reflective material painted on the underside, that reflects light so as to give an image of what is in front of it.", "A (usually) rectangular section of a surface, or of a covering or of a wall, fence etc.", "A set of icons or other computer visual elements inside a common area of geometrical shape (usually a rectangle), each one corresponding to a software tool.", "A colleection of persons that were assigend a specific task, most often for a predetermined time, or to be completed within a given time frame, that is to find or determine something, make decisions, or steer towards a settlement that other are looking for and/or are going to use.", "Something filling up a gap or covering up a (small) distance.", "Something put around something else, usually in order to give it another look or to protect it from its environment.", "A painting that was not made on a wall but a movable thing such as a wood, canvas, metal sheet or similar.", "A group of people engaging in a discussion.", "A piece or part made or designed for fitting very precisely into something else, typically supplementing it, when in place.", "A part of the outermost covering of an automobile.", "A group of suporters or being consulted on a high but not the highest hierarchy position, corroborating closely usually assisting in solving specific problems or questions in a certain field."], "circuit board": ["A printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities."], "circuit card": ["A printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities."], "get on": ["To enter trains, buses, ships, aircraft, etc."], "gravy boat": ["A dish (often boat-shaped) for serving gravy or sauce.", "A small recipient with a handle and a spout that is used to serve sauce and gravy at the table."], "gravy holder": ["A dish (often boat-shaped) for serving gravy or sauce."], "sauceboat": ["A dish (often boat-shaped) for serving gravy or sauce."], "organic structure": ["The physical structure of a human or animal."], "physical structure": ["The physical structure of a human or animal."], "dead body": ["The physical structure of a dead animal or person."], "stiff": ["The physical structure of a dead animal or person.", "Incapable of or resistant to bending.", "A forbidden written message of one prisoner to another or to a person outside of prison.", "Marked by firm determination or resolution; not shakable."], "furuncle": ["A painful, local inflammation of the skin, caused by infection of a hair follicle. Usually, a hard core and pus are present."], "churn": ["To be agitated.", "The process through which cream is separated into butter and buttermilk through repeated stirring.", "A vessel intended for the separation of cream into butter and buttermilk."], "moil": ["To be agitated."], "roil": ["To be agitated."], "talk": ["An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.\\n(Source: RHW)", "To communicate by the use of sounds that are interpreted as language; to communicate verbally.", "An exchange of ideas via conversation.", "To exchange thoughts; talk with."], "flabbergast": ["To cause to be overcome with astonishment."], "flabbergasted": ["As if struck dumb with astonishment and surprise."], "dumbfounded": ["As if struck dumb with astonishment and surprise."], "dumfounded": ["As if struck dumb with astonishment and surprise."], "stupefied": ["As if struck dumb with astonishment and surprise."], "thunderstruck": ["As if struck dumb with astonishment and surprise."], "England": ["One of the constituent nations of the United Kingdom, occupying most of the southern two-thirds of the island of Great Britain, with capital London."], "masturbation": ["The manual excitation of one's own sexual organs, most often to the point of orgasm."], "Sarajevo": ["The largest city and capital of Bosnia and Herzegovina."], "Podgorica": ["The largest city and capital of Montenegro.", "The largest city and capital of Montenegro."], "Titograd": ["The former name (1952-1992) of Podgorica, the capital of Montenegro."], "Ribnica": ["The former name (1326-1952) of Podgorica, the capital of Montenegro.", "A municipality in Slovenia.", "A town in the Kraljevo municipality (Ra\u0161ka District) of Serbia."], "Belgrade": ["The largest city and capital of Serbia."], "Reykjav\u00edk": ["The largest city and capital of Iceland."], "Andorra la Vella": ["The capital and largest city of Andorra."], "Dijon": ["A city in eastern France, the pr\u00e9fecture (administrative capital) of the C\u00f4te-d'Or d\u00e9partement and of the Bourgogne r\u00e9gion."], "Russian Federation": ["The largest country in the world, partially located in Europe and partially in Asia."], "err": ["To make a mistake."], "element": ["A substance made up of atoms with the same atomic number; common examples are hydrogen, gold, and iron.", "A smaller, self-contained part of a larger entity. Often refers to a manufactured object that is part of a larger device.", "An abstract part of something."], "scandium": ["Chemical element with symbol Sc and atomic number 21. It is a silvery white transition metal."], "cormorant": ["Medium sized, black water bird from the family of the cormorants (Phalacrocoracidae), scientific name: Phalacrocorax carbo"], "stage": ["The area, in a theatre, generally raised, where plays or other public ceremonies are performed.", "Part or phase of a video game as the total space available to the player during the course of completing a certain objective.", "To perform a play, usually on a stage.", "To plan, organize or carry out (an event).", "To exhibit as a scene."], "cavalcade": ["A procession of people traveling on horseback."], "drive shaft": ["A rotating shaft that transmits power from the engine to the point of application."], "driving axle": ["A rotating shaft that transmits power from the engine to the point of application."], "harpoon": ["A spearlike weapon with a barbed head used in hunting whales and large fish."], "fridge": ["A household appliance used for keeping food fresh by refrigeration."], "freezer": ["A refrigerator in which food is frozen and stored for long periods of time."], "unquestionable": ["Absolutely not open for interpretation."], "hard liquor": ["Alcoholic beverage containing more than 20 percent alcohol."], "liquor": ["Alcoholic beverage containing more than 20 percent alcohol."], "spirits": ["Alcoholic beverage containing more than 20 percent alcohol."], "booze": ["To consume a liquid containing alcohol.", "Alcoholic beverage containing more than 20 percent alcohol."], "hard drink": ["Alcoholic beverage containing more than 20 percent alcohol."], "John Barleycorn": ["Alcoholic beverage containing more than 20 percent alcohol."], "strong drink": ["Alcoholic beverage containing more than 20 percent alcohol."], "innate": ["A trait that is inborn- genetically inherited.", "Being talented through inherited qualities.", "Present at birth but not necessarily hereditary."], "Solanales": ["An order of flowering plants, included in the asterid group of dicotyledons."], "Asterales": ["An order of dicotyledonous flowering plants which include the composite family Asteraceae (sunflowers, daisies, thistles etc.) and its related families."], "Asparagales": ["(Asparagales) An order of flowering plants, including the family Asparagaceae."], "Brassicales": ["An order of flowering plants that can produce mustard oil compounds."], "bric-a-brac": ["Miscellaneous small ornamental objects which may be of sentimental value, but have little monetary value."], "bric-\u00e0-brac": ["Miscellaneous small ornamental objects which may be of sentimental value, but have little monetary value."], "broccoli": ["A vegetable; of this variety of the Brassica oleracea the green flowers and their stalk is eaten."], "Cucurbitales": ["An order of flowering plants, included in the rosid group of dicotyledons."], "Piperales": ["An order of flowering plants including the family Piperaceae."], "Apiales": ["An order of flowering plants including well-known members carrots, celery, parsley, and ivy."], "variety": ["A subdivision of a species which occurs through natural hybridization.", "A form that differs from other forms of the language systematically and coherently.", "A principle of design concerned with diversity or contrast.", "A collection of different things, generally related between them.", "The class of all algebraic structures of a given signature satisfying a given set of identities.", "A show with a variety of acts, often including music and comedy skits, especially on television."], "Fabales": ["An order of flowering plants, included in the rosid group of eudicots."], "rummage": ["Old, useless and valueless objects."], "practical": ["Concerned with actual use or practice."], "Sapindales": ["An order of flowering plants, well-known members include citrus; maples and horse-chestnuts; mangos and cashews; frankincense and myrrh; and mahogany."], "part of speech": ["The category a word is assigned to based on its syntactic function within a specified language."], "Mickey Mouse": ["A comic animal cartoon character who has become a symbol for The Walt Disney Company."], "seaborgium": ["Chemical element with symbol Sg and atomic number 106, probably a silvery\\nwhite or gray transition metal."], "vitriolic": ["Being harsh or corrosive in tone."], "caustic": ["Being harsh or corrosive in tone."], "connection": ["Joint point for two or more elements."], "kind": ["Possessing charm and attractiveness.", "A category of things distinguished by a common characteristic or quality."], "homicide": ["The intentional or premeditated killing of another person."], "plus": ["Arithmetic: increased by", "In addition to.", "A useful or valuable quality that helps a person succeed."], "charge": ["An accusation of wrongdoing.", "A duty that involves fulfilling a request.", "To blame for, make a claim of wrongdoing against.", "To demand payment.", "To provide (a device or weapon) with something necessary."], "logo": ["A symbol or emblem that acts as a means of identification."], "thirst": ["A physiological need to drink.", "To feel the need to drink."], "apricot": ["Fruit of the apricot tree (Prunus armeniaca)."], "algorithm": ["Any well-defined procedure describing how to carry out a particular task."], "thirsty": ["Feeling the need to drink."], "personal pronoun": ["A pronoun that refers to previous mentioned person."], "canticle": ["A hymn (excluding the Psalms) taken from the Bible."], "baptism": ["The Christian sacrament in which one is annointed with or submerged in water and sometimes given a name."], "priest": ["A minister of the Catholic church empowered to administer the sacraments, most particularly that of the Eucharist or Holy Communion, as well as those of confession and extreme unction."], "pastor": ["The head minister or priest of a Christian church."], "bishop": ["The priest who acts as the highest religious official in a diocese.", "A chess piece that may be moved only diagonally."], "layman": ["A person who has not been consecrated as a priest.", "A person who is not an expert."], "cardinal": ["A high priest in the hierarchy of the Roman Catholic church, he can take part in the election of a new pope."], "tantalum": ["Chemical element with symbol Ta and atomic number 73, grey blue transition metal."], "rook": ["A piece of chess commonly shaped like a tower. Each player has two, and they move in straight horizontal or vertical lines across the board.", "A bird, similar to crow and raven."], "mummy": ["An embalmed corpse."], "pharaoh": ["The supreme ruler of ancient Egypt."], "sphinx": ["A mythical creature with the head of a human and the body of a lion."], "pyramid": ["An ancient massive construction with a square or rectangular base and four triangular sides meeting in an apex.", "Geometry: a solid with N triangular lateral faces and a N-angular base."], "altar": ["Table for religious ceremonies.", "Structure higher than the floor level and used to offer one or several sacrifices."], "inflation": ["The expansion in the money supply beyond the increase in available goods and services."], "deflation": ["A decrease in the general price level, that is, in the nominal cost of goods and services as well as wages."], "money supply": ["The total amount of money in a particular economy."], "almond": ["Fruit of the almond tree (Prunus dulcis)."], "kettle": ["A metal container used to boil water.", "A metal container used to boil any kind of liquid.", "A metal container used for boiling water for tea."], "teakettle": ["A metal container used for boiling water for tea."], "tea kettle": ["A metal container used for boiling water for tea."], "married": ["Being in a state of matrimony."], "Rosales": ["An order of flowering plants, including the rose family Rosaceae."], "introspection": ["The process of self-observation of one's thoughts and feelings."], "portal": ["A website that acts as an entrance to other websites on the Internet."], "Irish Gaelic": ["A Celtic language spoken primarily in Ireland."], "Riga": ["The capital of Latvia."], "Budapest": ["The capital of Hungary."], "Vilnius": ["The capital of Lithuania."], "Tallinn": ["The capital of Estonia."], "Minsk": ["The largest city and capital of Belarus."], "Chi\u015fin\u0103u": ["The largest city and capital of Moldova."], "Vaduz": ["The capital of Liechtenstein."], "Brussels": ["The largest city and capital of Belgium."], "Skopje": ["The largest city and capital of Macedonia.", "Turkish dialect."], "Ljubljana": ["The largest city and capital of Slovenia."], "Kiev": ["The largest city and capital of Ukraine."], "Kyiv": ["The largest city and capital of Ukraine."], "Bucharest": ["The largest city and capital of Romania."], "Bratislava": ["The capital of Slovakia."], "Warsaw": ["The capital of Poland."], "Sofia": ["The capital of Bulgaria."], "Dublin": ["Capital of the Republic of Ireland."], "Tirana": ["The capital and largest city of Albania."], "judiciary": ["The court system and judges considered collectively, the judicial branch of government."], "confiscate": ["To take possession of by force or authority."], "iconoclast": ["Someone who opposes orthodoxy and religion."], "correspondence": ["Postal or other written communications."], "letter of intent": ["Any letter expressing an intention to take (or forgo) some action."], "discrimination": ["Treatment or consideration based on class or category rather than individual merit."], "ambulance": ["Vehicle used to bring the sick or injured to a hospital."], "maintenance": ["The upkeep of industrial facilities and equipment.", "Financial support provided after a separation or divorce by the financial stronger partner to the ex-partner."], "superior": ["Someone who is of greater rank or station.", "Of a higher quality or performance"], "sketch": ["To bring information in fewer words; to describe roughly or briefly.", "Drawing or other composition that is not intended as a finished work.", "To make a quick drawing or composition.", "To describe or illustrate roughly or briefly or give the main points or summary of.", "To make a drawing or other composition that is not intended as a finished work."], "conquer": ["To take possession of by force."], "open source": ["A term to describe software distributed in source under licenses guaranteeing anybody rights to freely use, modify, and redistribute, the code."], "technetium": ["Chemical element with symbol Tc and atomic number 43. It is a synthetic, radioactive transition metal."], "anchorite": ["A person who lives alone and in seclusion."], "acrobat": ["An athlete who performs acts requiring skill, agility and coordination."], "diet": ["A controlled regimen of food and drink, as to gain or lose weight or otherwise influence health.", "The sum of food consumed by a person or other organism.", "To modify one's food and beverage intake so as to decrease or increase body weight or influence health."], "downtime": ["The amount of time lost due to forces beyond one's control, as with a computer crash."], "renege": ["To break a promise or commitment."], "developer": ["A person who creates or modifies computer software."], "master plan": ["The principal plan which outlines the methods and procedures that need to be followed in order to accomplish the long term goals of a program."], "openly": ["In an open manner."], "cause": ["That which brings about any condition or produces any effect.", "To be the cause of.", "Any entity that produces an effect or is responsible for events or results.", "A justification for something existing or happening.", "A series of actions advancing a principle or tending toward a particular end.", "A comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy.", "To make something happen."], "terbium": ["Chemical element with symbol Tb and atomic number 65, silvery white lanthanide."], "abbess": ["A female superior or governess of a nunnery, or convent of nuns, having the same authority over the nuns which the abbots have over the monks."], "abduction": ["The wrongful, and usually the forcible, carrying off of a human being.", "The contraction of a muscle whose function is to move away from the central line of the body the part to which it is connected.", "A form of logical inference that predicts a probable cause to a given observation."], "Vienna": ["The largest city and capital of Austria."], "log file": ["A text file that records activity on a server."], "Valletta": ["The capital of Malta."], "Berne": ["The capital of Switzerland.", "A large canton in Switzerland."], "foresee": ["To think of ahead of time."], "difference": ["A characteristic of something that makes it different from something else.", "The result of a subtraction."], "rondo": ["A musical composition, commonly of a lively, cheerful character, in which the first strain recurs after each of the other strains."], "minaret": ["A tall, graceful spire with onion-shaped crowns distinctive to Islamic mosques."], "trio": ["A piece of music written for three musicians."], "quartet": ["A piece of music written for four musicians."], "duet": ["A piece of music written for two musicians."], "performance": ["An act where somebody performs music, theater or a similar art in a live show or concert.", "That which is accomplished.", "The performance of a machine."], "go out": ["To stop burning or shining.", "To move out of or depart from.", "To go out of fashion; become unfashionable.", "To leave one's home for a lmited period of time, usually for a leisure."], "fade": ["To diminish or disappear along the way.", "To get weaker, to lose in intensity."], "oversensitive": ["Excessively sensitive."], "hypersensitive": ["Excessively sensitive."], "sensitive": ["Having the ability to perceive stimuli and pain.", "Having acute emotional sensibility.", "Appreciating and responsive to the feelings of others.", "Able to measure small changes."], "Wyoming": ["The 44th state of the United States of America, located in the western US."], "Wisconsin": ["The 30th state of the United States of America, located in the Midwest."], "judge": ["To account; to esteem; to think; to judge; to hold in opinion; to regard. (Source Webster 1913)", "A person who decides the fate of someone or something that has been called into question.", "To express an opinion or a valuation, especially on esthetics, morality or the like.", "To put on trial, hear the case and act as the judge."], "Texas": ["The 28th state of the United States of America, located in the southern US."], "thorium": ["Chemical element with symbol Th and atomic number 90. It is a silvery white actinide."], "aberrant": ["Deviating from the ordinary or natural type."], "exceptional": ["Deviating from the ordinary or natural type.", "Surpassing what is common or usual or expected.", "Not easily found."], "abnormal": ["Deviating from the ordinary or natural type.", "Contrary to the usual structure, position, behaviour, or rule."], "abhorrence": ["Extreme hatred or detestation; the feeling of utter dislike."], "Venetian": ["A Romance language spoken mostly in the North East of Italy and in some states of Brazil, and to a lesser extent in other countries including Mexico, Slovenia, Croatia, and Romania.", "The variety of Venetan language spoken in Venice and nearby.", "A person from Venice, or of Venetian ancestry."], "abrasive": ["Producing abrasion; rough enough to wear away the outer surface.", "Harsh or rough in manner."], "marionette": ["A string puppet, usually made of wood, which is animated by the pulling of strings."], "abscess": ["A cavity caused by tissue destruction, usually because of infection, filled with pus and surrounded by inflammed tissue."], "absence": ["A state of being absent or withdrawn from a place or from companionship.", "In medicine, momentary loss of consciousness."], "absentee": ["One who absents himself from his country, office, post, or duty."], "Frisian": ["A West Germanic language spoken in Friesland in the northwestern Netherlands."], "absent-minded": ["Inattentive to what is passing."], "abstainer": ["One who abstains; especially, one who abstains from the use of alcoholic drinks."], "absurdity": ["That which is absurd; an absurd action; a logical contradiction.", "The quality of being valueless or futile."], "Montgomery": ["The capital of the state of Alabama, USA."], "medieval": ["Of or pertaining to the Middle Ages."], "meteorite": ["A meteorite is an extraterrestrial body that survives its impact with a planet's surface without being destroyed."], "meteor": ["A streak of light in the sky at night that results when a meteoroid hits the earth's atmosphere."], "debone": ["To remove the bones from."], "cram": ["To study intensively, as before an exam."], "grind away": ["To study intensively, as before an exam."], "drum": ["To study intensively, as before an exam.", "A percussion instrument consisting of at least one membrane that is stretched over a shell and struck directly with the player's hands or with a drumstick.", "To produce sound with a drum."], "bone up": ["To study intensively, as before an exam."], "swot": ["To study intensively, as before an exam.", "An insignificant student who is ridiculed as being affected or boringly studious."], "get up": ["To study intensively, as before an exam.", "To arrange by systematic planning and united effort (e.g. a plot, a strike, a plan)."], "mug up": ["To study intensively, as before an exam."], "swot up": ["To study intensively, as before an exam."], "Utah": ["The 45th state of the United States of America, located in the western US."], "surround": ["To beset or surround with armed forces, for the purpose of compelling to surrender.", "To extend on all sides simultaneously."], "margin": ["The boundary line or the area immediately inside the boundary."], "perimeter": ["The boundary line or the area immediately inside the boundary."], "edge": ["The boundary of a surface."], "natural": ["Being talented through inherited qualities."], "adopt": ["To take up (an idea) as one's own.", "The act of approving something.", "To take into one's family.", "To choose and follow; as of theories, ideas, policies, strategies or plans.", "To take on titles, offices, duties, responsibilities.", "To take on a certain form, attribute, or aspect.", "To put into dramatic form."], "take over": ["To take up (an idea) as one's own.", "Seize and take control without authority and possibly with force.", "To take on as one's own the expenses or debts of another person.", "To take on titles, offices, duties, responsibilities."], "take up": ["To take up (an idea) as one's own."], "bottleful": ["The contents of a container called bottle."], "poodle": ["A French breed of dog with curly hair."], "stadium": ["A large structure for open-air sports or entertainments."], "sports stadium": ["A large structure for open-air sports or entertainments."], "loge": ["A private area in a theater or grandstand where a small group can watch the performance."], "package": ["To put into a box."], "rise": ["To awake.", "To get up from a lying, sitting, or kneeling position.", "(Of a heavenly body) To appear to move upwards from behind the horizon of a planet as a result of the planet's rotation."], "pumpkin": ["A squash fruit of the Cucurbita genus, most commonly orange in colour when ripe and traditionally used during Halloween.", "The colour of pumpkin fruit, with hexadecimal code #FF8127."], "Europa": ["Fourth largest moon of Jupiter's moons.", "In Greek mythology, the daughter of the Phoenician king Agenor who was abducted by Zeus in form of a bull."], "bookshelf": ["A piece of furniture, almost always with horizontal shelves, used to store books."], "bookcase": ["A piece of furniture, almost always with horizontal shelves, used to store books."], "diary": ["A daily log of experiences, especially those of the writer."], "Columbia": ["The capital of the state of South Carolina, United States of America."], "Juneau": ["The capital of the U.S. state of Alaska."], "Phoenix": ["The largest city and capital of the state of Arizona."], "Little Rock": ["The capital of the state of Arkansas, USA."], "Sacramento": ["The capital of the state of California."], "Denver": ["The capital and the most populous city of the U.S. state of Colorado."], "Hartford": ["The capital of the state of Connecticut, USA."], "Dover": ["The capital of the state of Delaware."], "Tallahassee": ["The capital of the state of Florida."], "Atlanta": ["The capital of the state of Georgia."], "Honolulu": ["The capital of the state of Hawaii, USA."], "Boise": ["The capital of the state of Idaho, USA."], "Springfield": ["The capital of the state of Illinois, USA."], "Indianapolis": ["City of the United States of America and the capital of the state of Indiana."], "Des Moines": ["The capital of the state of Iowa."], "Topeka": ["The capital of the state of Kansas, USA."], "Frankfort": ["The capital of the state of Kentucky."], "Baton Rouge": ["The capital of the state of Louisiana, USA."], "Augusta": ["The capital of the state of Maine, United States of America."], "Annapolis": ["The capital of the state of Maryland of the United States of America."], "Lansing": ["The capital of the state of Michigan."], "St. Paul": ["The capital of the state of Minnesota."], "Jackson": ["The capital of the state of Mississippi.", "A bill having a value of 20 American dollars."], "Jefferson City": ["The capital of the state of Missouri."], "Helena": ["The capital of the state of Montana."], "Lincoln": ["The capital of the state of Nebraska."], "Carson City": ["The capital of the state of Nevada."], "Concord": ["The capital of the state of New Hampshire."], "Trenton": ["The capital of the state of New Jersey."], "Santa Fe": ["The capital of the state of New Mexico."], "Albany": ["The capital of the state of New York."], "Raleigh": ["The capital of the state of North Carolina."], "Bismarck": ["The capital of the state of North Dakota."], "Columbus": ["The capital of the state of Ohio."], "Oklahoma City": ["The capital of the state of Oklahoma."], "Salem": ["The capital of the state of Oregon."], "Harrisburg": ["The capital of the state of Pennsylvania."], "Providence": ["The capital of the state of Rhode Island."], "Pierre": ["The capital of the state of South Dakota."], "Nashville": ["The capital of the state of Tennessee, USA."], "Austin": ["The capital of the state of Texas."], "Salt Lake City": ["The capital of the state of Utah."], "Montpelier": ["The capital of the state of Vermont."], "Richmond": ["The capital of the state of Virginia."], "Olympia": ["The capital of the state of Washington, USA."], "Charleston": ["The capital of the state of West Virginia, United States of America."], "Madison": ["The capital of the state of Wisconsin."], "Cheyenne": ["The capital of the state of Wyoming.", "A language of the USA."], "derivative": ["In mathematics, the instantaneous rate of change of a function.", "(Chemistry) A substance or compound obtained from, or regarded as derived from, another substance or compound.", "In linguistics, a word that derives from another one."], "parabola": ["A conic section generated by the intersection of a right circular conical surface and a plane parallel to a generating straight line of that surface."], "mathematical": ["Of, or relating to mathematics."], "conic section": ["A curve that can be formed by intersecting a cone with a plane."], "conic": ["A curve that can be formed by intersecting a cone with a plane.", "Of, relating to, or in the shape of a cone."], "conical": ["Of, relating to, or in the shape of a cone."], "Danish pastry": ["A sweet pastry (a speciality of Denmark) popular throughout the industrialized world."], "Dane": ["A person of Danish nationality."], "arithmetic progression": ["In mathematics, a sequence of numbers such that the difference of any two successive members of the sequence is a constant."], "arithmetic sequence": ["In mathematics, a sequence of numbers such that the difference of any two successive members of the sequence is a constant."], "geometric progression": ["In mathematics, a sequence of numbers such that the quotient of any two successive members of the sequence is a constant called the common ratio of the sequence."], "geometric sequence": ["In mathematics, a sequence of numbers such that the quotient of any two successive members of the sequence is a constant called the common ratio of the sequence."], "division": ["In mathematics, an arithmetic operation which is the inverse of multiplication.", "A biological taxon in botany, mycology and microbiology, a group of species, part of a kingdom and consisting of one or more classes", "A section of a large company."], "renown": ["The state or quality of having a positive reputation."], "zeitgeist": ["The spirit characteristic of an age or generation."], "thulium": ["Chemical element with symbol Tm and atomic number 69, silvery white lanthanide."], "abundance": ["An overflowing fullness."], "prairie dog": ["(Cynomys) A small, stout-bodied burrowing wild rodent with shallow cheek pouches, native to North America and Central America."], "acacia": ["A shrub or tree of a species that belongs to the genus Acacia."], "acceleration": ["The amount by which a speed or velocity increases.", "The change of velocity with respect to time (including deceleration and change of direction).", "The act of increasing the speed of an object.", "The state of having an increasing speed."], "accomplice": ["An associate in the commission of a crime."], "antiparticle": ["Particle having the same mass, spin, isospin as a particle, but having all additive quantum numbers opposite to those of its respective particle."], "spirit of the age": ["The spirit characteristic of an age or generation."], "altruism": ["The unselfish concern for the welfare of others."], "altruistic": ["Not selfish, concerned for the welfare of others."], "intend": ["To have in mind as one's purpose or intention.", "To assign for a specific end, use, or purpose; to design or destine.", "To intend to express or convey."], "arithmetic": ["The oldest and simplest branch of mathematics, used for everything from simple counting to advanced scientific calculations.", "Relating to or involving arithmetic."], "milestone": ["A scheduled event for which some individual is accountable and that is used to measure progress."], "arithmetics": ["The oldest and simplest branch of mathematics, used for everything from simple counting to advanced scientific calculations."], "multiplication": ["An elementary arithmetic operation where a number is added to itself for a specified amount of times."], "subtraction": ["An elementary arithmetic operation that is the opposite of addition."], "integral": ["A numerical measure computed by a limiting process in which the domain of a function is divided into small subintervals and the value of the function at a point in each subinterval is multiplied by the measurement of that subinterval, all these products then being summed."], "antiderivative": ["A numerical measure computed by a limiting process in which the domain of a function is divided into small subintervals and the value of the function at a point in each subinterval is multiplied by the measurement of that subinterval, all these products then being summed."], "average": ["In mathematics, a measure of the \"middle\" of a data set.", "Neither very good nor very bad; rated somewhere in the middle of all others in the same category."], "central tendency": ["In mathematics, a measure of the \"middle\" of a data set."], "median": ["In mathematics, a number dividing the higher half of a from the lower half.", "A barrier on roads and highways between the opposing flows of traffic, usually covered with vegetation."], "center divider": ["A barrier on roads and highways between the opposing flows of traffic, usually covered with vegetation."], "median strip": ["A barrier on roads and highways between the opposing flows of traffic, usually covered with vegetation."], "least common multiple": ["The smallest positive integer that is a multiple of two integers a and b."], "lowest common multiple": ["The smallest positive integer that is a multiple of two integers a and b."], "lcm": ["The smallest positive integer that is a multiple of two integers a and b."], "smallest common multiple": ["The smallest positive integer that is a multiple of two integers a and b."], "lowest common denominator": ["The least common multiple of the denominators of a set of vulgar fractions."], "least common denominator": ["The least common multiple of the denominators of a set of vulgar fractions."], "LCD": ["The least common multiple of the denominators of a set of vulgar fractions.", "A thin, flat electronic visual display that uses the light modulating properties of liquid crystals."], "greatest common divisor": ["The largest positive integer that divides two non-zero integers without remainder."], "gcd": ["The largest positive integer that divides two non-zero integers without remainder."], "greatest common factor": ["The largest positive integer that divides two non-zero integers without remainder."], "gcf": ["The largest positive integer that divides two non-zero integers without remainder."], "highest common factor": ["The largest positive integer that divides two non-zero integers without remainder."], "hcf": ["The largest positive integer that divides two non-zero integers without remainder."], "percentage": ["Ratio expressed as a number between 0 and 100, often denoted with the sign \"%\"."], "percent": ["A ratio expressed as a number out of 100."], "ununbium": ["The temporary name for a synthetic superheavy element in the periodic table with symbol Uub and atomic number 112, transition metal"], "acceptable": ["Barely worthy, less than excellent."], "archeologist": ["Someone who studies or works in archeology."], "archaeologist": ["Someone who studies or works in archeology."], "accordion": ["A portable, keyed wind instrument, whose tones are generated by play of the wind from a squeezed bellows upon free metallic reeds."], "swamp gas": ["Gas that is formed in swamps as a result of natural decay of organic material; consists mainly of methane."], "glove": ["A garment for a hand, often extending to the wrist and sometimes up to the elbow, which either covers each finger individually, or separates the thumb from the other fingers."], "marsh gas": ["A colourless, odourless, and tasteless gas, lighter than air and reacting violently with chlorine and bromine in sunlight, a chief component of natural gas; used as a source of methanol, acetylene, and carbon monoxide."], "methyl hydride": ["A colourless, odourless, and tasteless gas, lighter than air and reacting violently with chlorine and bromine in sunlight, a chief component of natural gas; used as a source of methanol, acetylene, and carbon monoxide."], "Tennessee": ["The 16th state of the United States of America, located in the south of the United States of America."], "harmonica": ["A free reed musical wind instrument which produces notes according to the player's mouth placement over the different airways.", "A musical instrument that uses a series of glass bowls graduated in size to produce musical tones by means of friction."], "mouth organ": ["A free reed musical wind instrument which produces notes according to the player's mouth placement over the different airways."], "mouth harp": ["A free reed musical wind instrument which produces notes according to the player's mouth placement over the different airways.", "A musical instrument that consists of a flexible metal or bamboo tongue or reed attached to a frame."], "tungsten": ["Chemical element with symbol W and atomic number 74, grayish white, lustrous transition metal."], "adagio": ["A tempo mark directing that a passage is to be played rather slowly, liesurely and gracefully."], "avocado": ["The fruit of an avocado tree (Persea americana).", "A tree that is native to Mexico and produces a large edible fruit."], "banana": ["The fruit of the banana tree.", "The tropical treelike plant which bears clusters of bananas. The plant, of the genus Musa, has large, elongated leaves."], "kazoo": ["A simple musical instrument that adds a \"buzzing\" timbral quality to a player's voice when one hums into it."], "baseball": ["A bat-and-ball sport played between two teams usually of nine players each."], "Kentucky": ["The 15th state of the United States of America, located in the Midwest."], "Louisiana": ["The 18th state of the United States of America, located in the South."], "Maine": ["The 23rd state of the United States of America, located in the northeast."], "Maryland": ["The 7th state of the United States of America, located in the northeast."], "Massachusetts": ["The 6th state of the United States of America, located in the northeast."], "Michigan": ["The 26th state of the United States of America, located in the Midwest."], "Minnesota": ["The 32nd state of the United States of America, located in the Midwest."], "Mississippi": ["The 20th state of the United States of America, located in the South.", "The longest river in the United States."], "Missouri": ["The 24th state of the United States of America, located in the Midwest."], "Montana": ["The 41st state of the United States of America, located in the Pacific Northwest."], "Nebraska": ["The 37th state of the United States of America, located in the Midwest."], "Nevada": ["The 36th state of the United States of America, located in the west."], "New Hampshire": ["The 9th state of the United States of America, located in the northeast."], "New Jersey": ["The 3rd state of the United States of America, located in the northeast."], "New Mexico": ["The 47th state of the United States of America, located in the southwest."], "New York": ["The 11th state of the United States of America, located in the northeast.", "The largest city in the state of New York and the largest city in the United States."], "North Carolina": ["The 12th state of the United States of America, located in the South."], "North Dakota": ["The 39th state of the United States of America, located in the Midwest."], "Ohio": ["The 17th state of the United States of America, located in the Midwest."], "Oklahoma": ["The 46th state of the United States of America, located in the southern Great Plains."], "Oregon": ["The 33rd state of the United States of America, located in the Pacific. Northwest."], "Pennsylvania": ["The 2nd state of the United States of America, located in the northeast."], "Rhode Island": ["The 13th state of the United States of America, located in the northeast."], "South Carolina": ["The 8th state of the United States of America, located in the South."], "South Dakota": ["The 40th state of the United States of America, located in the Midwest."], "Vermont": ["The 14th state of the United States of America, located in the northeast."], "Virginia": ["The 10th state of the United States of America, located in the South."], "Washington": ["The 42nd state of the United States of America, located in the Pacific Northwest.", "The capital of the United States of America, located in the District of Columbia."], "West Virginia": ["The 35th state of the United States of America, located in Appalachia."], "Pacific Northwest": ["An area that includes part of the west coast of United States and Canada, including southeast Alaska, all of British Columbia, Washington, Oregon, Idaho, western Montana and northern California and Nevada."], "PNW": ["An area that includes part of the west coast of United States and Canada, including southeast Alaska, all of British Columbia, Washington, Oregon, Idaho, western Montana and northern California and Nevada."], "PacNW": ["An area that includes part of the west coast of United States and Canada, including southeast Alaska, all of British Columbia, Washington, Oregon, Idaho, western Montana and northern California and Nevada."], "volleyball": ["A sport in which two teams separated by a high net use their hands and arms to hit a ball back and forth over the net."], "blade": ["The flat, sharp-edged part of a tool."], "breath": ["A single act of breathing in and out.", "The air inhaled and exhaled through the lungs.", "The act or process of breathing."], "acrophobia": ["An irrational fear of great heights."], "altophobia": ["An irrational fear of great heights."], "quality": ["A characteristic trait that differentiates a thing or person.", "Level of excellence."], "ytterbium": ["Chemical element with symbol Yb and atomic number 70, silvery white lanthanide."], "barometer": ["An instrument used to measure atmospheric pressure."], "viper": ["European poison snake, Vipera berus."], "rattlesnake": ["Poisonous snake of the genus Crotalus, known by the rattling tail."], "acne": ["A skin condition, usually of the face, that is common in adolescents. It is characterised by red pimples, and is caused by the inflammation of sebaceous glands through bacterial infection."], "sauna": ["The act of staying in a room with dry heat in which steam is produced in certain intervals by pouring water over hot stones for the purpose of transpiration.", "A room, often with wooden walls, which is designed for heating dry air and where steam may be produced by pouring water over hot stones.", "To use a sauna."], "Jaguar": ["An automobile produced by the British Jaguar company."], "puzzle": ["A problem or enigma that challenges ingenuity, usually used for entertainment purposes."], "yttrium": ["Chemical element with symbol Y and atomic number 39, silvery white transition metal."], "locksmith": ["A person who makes locks and keys."], "acquittal": ["A setting free, or deliverance from the charge of an offense, by verdict of a jury or sentence of a court."], "grocer": ["A retail merchant who sells foodstuffs.", "A person who sells groceries (foodstuffs and household items) retail from a grocery"], "zirconium": ["A chemical element with the symbol Zr and atomic number 40, silvery white transition metal."], "daylight savings time": ["A widely used system of adjusting the official local time forward, usually by one hour from its official standard time, for the spring, summer, and early autumn periods."], "summer time": ["A widely used system of adjusting the official local time forward, usually by one hour from its official standard time, for the spring, summer, and early autumn periods."], "seal": ["A mammal belonging to the Pinnipedia, an order of aquatic placental mammals having a streamlined body and limbs specialized as flippers: includes seals, sea lions, and the walrus.", "Any device or system that creates a nonleaking union between two mechanical or process-system elements.\\n(Source: MGH)", "To fasten (something) so that it cannot be opened without visible damage."], "baker": ["One who bakes and sells bread, cakes or similar items.", "A baker's shop."], "gardener": ["A person who is employed to cultivate or care for gardens."], "Korea": ["A geographic area, civilization, and former state situated on the Korean Peninsula in East Asia."], "abbot": ["The head of a monastery of monks."], "nun": ["A female ascetic who chooses to live her life in prayer and contemplation in a monastery or convent."], "Sino-Tibetan language": ["A language family composed of Chinese and the Tibeto-Burman languages, including some 250 languages of East Asia."], "repeat": ["A television programme shown after its initial presentation.", "To do something again.", "To say again something that we have already said.", "To say again something that someone else has already said by reproducing the words, inflections, etc.", "To tell someone something that we have heard from someone else.", "To transmit again."], "rerun": ["A television programme shown after its initial presentation."], "single": ["Not divided in parts.", "Not accompanied by anything else.", "Not married; having no spouse.", "A popular song released and sold separately from a full album, usually accompanied by a bonus track.", "A hit in baseball where the batter advances to first base.", "In cricket, a score of one run.", "To identify or select one member of a group from the others.", "To get a single in baseball."], "unmarried": ["Not married; having no spouse."], "unwed": ["Not married; having no spouse."], "spouseless": ["Not married; having no spouse."], "single out": ["To identify or select one member of a group from the others."], "cocaine": ["A crystalline tropane alkaloid, used as a drug and stimulus of the central nervous system, that is obtained from the leaves of the coca plant."], "jack-o'-lantern": ["A pumpkin whose top and stem have been cut out and interior removed, leaving a hollow shell that is then decoratively carved, associated with Halloween."], "Jack O'Lantern": ["A pumpkin whose top and stem have been cut out and interior removed, leaving a hollow shell that is then decoratively carved, associated with Halloween."], "Halloween": ["A tradition celebrated on the night of October 31, most notably by children dressing in costumes and going door-to-door collecting sweets."], "treat": ["A food item that is rich in sugar.", "To care for medicinally or surgically; to apply medical care to.", "An especially delicious comestible.", "An occurrence that causes special pleasure or delight."], "bicycle repair man": ["Een person who sells and repairs bicycles."], "cabinetmaker": ["Craftsman, who makes furniture and others from wood."], "cobbler": ["A person whose profession is making and repairing footwear."], "chimney sweep": ["A person whose job is to clean soot from chimneys."], "sniper": ["A person using long-range small arms for precise attacks from a concealed position."], "electrician": ["Professional in the field of electric installations."], "Ma": ["A language spoken in Papua New Guinea.", "ISO 639-6 entity"], "zebra spider": ["Spider that belongs to the family of the jumping spiders (Salticidae) and has black and white stripes. Scientific name: Salticus scenicus."], "arch": ["An inverted U shape.", "An arch-shaped arrangement of trapezoidal stones, designed to redistribute downward force outward.", "An architectural element having the shape of an arch."], "mason": ["A craftsman who builds in stone or brick otherwise known as masonry."], "bricklayer": ["A craftsman who builds in stone or brick otherwise known as masonry."], "stonemason": ["A craftsman who builds in stone or brick otherwise known as masonry."], "purgatory": ["In Catholic theology, the stage of afterlife where souls suffer for their sins before entering heaven.", "A situation causing suffering."], "hell": ["In various religions, the place where sinners are said to go after death.", "A place of great suffering in life."], "Alpha and Omega": ["The beginning and the end, the first one and the last one."], "anal sex": ["A form of human sexual behavior where the erect penis is inserted into the rectum through the anus."], "anal intercourse": ["A form of human sexual behavior where the erect penis is inserted into the rectum through the anus."], "semen": ["The fluid, produced by the reproductive organs of a male animal, that contains the sperm cells."], "audacity": ["Fearless daring.", "Aggressive boldness or unmitigated effrontery."], "69": ["A sexual position which provides for simultaneous mutual oral sex."], "69 position": ["A sexual position which provides for simultaneous mutual oral sex."], "prostitution": ["The sale of sexual services for money or other kind of return."], "forefather": ["Person from whom a person is descended, whether on the father's or mother's side, at any number of generations."], "heterosexuality": ["The sexual preference characterised by a romantic or sexual attraction to people of the opposite sex."], "bisexuality": ["The sexual preference characterised by a romantic or sexual attraction to people of the either sex."], "beastiality": ["The sexual preference characterised by a romantic or sexual attraction by a human to a non-human animal."], "zoophilia": ["The sexual preference characterised by a romantic or sexual attraction by a human to a non-human animal.", "A form of pollination whereby pollen is transferred by animals."], "zoosexuality": ["The sexual preference characterised by a romantic or sexual attraction by a human to a non-human animal."], "asexuality": ["The lack of a sexual attraction or preference."], "autosexuality": ["The sexual stimulation of, or sexual desire toward, one's own body."], "autoeroticism": ["The sexual stimulation of, or sexual desire toward, one's own body."], "oral sex": ["All the sexual activities that involve the use of the mouth, tongue, and possibly throat to stimulate genitalia."], "construction worker": ["Worker in building sector"], "madrassa": ["An Islamic religious school."], "house painter": ["A person who is responsible for painting buildings."], "aptitude": ["The ability to acquire knowledge or skills.", "Natural inclination of someone to complete a determined activity."], "cleric": ["A member of the clergy of a religion, one that has trained or ordained as a priest, preacher, or as another religious professional."], "attitude": ["Manner of behaving oneself; manner of acting.", "A complex mental state involving beliefs and feelings and values and tendencies to act in certain ways.", "A position of the body; the arrangement of the body in a given position."], "fishmonger": ["A merchant specialised in selling fish."], "printer": ["An artist who designs and makes prints.", "A device allowing any information from the computer to be printed on paper."], "tautology": ["A use of redundant language in speech or writing."], "with bated breath": ["With great anticipation."], "frequent": ["Happening or occurring repeatedly with little time between occurances."], "automatic": ["Occurring spontaneously or without intervention."], "cough": ["To force air from the lungs out the mouth, sometimes involuntarily, accompanied by a rough sound.", "A sudden, often repetitive, spasmodic contraction of the thoracic cavity, resulting in violent release of air from the lungs, and usually accompanied by a distinctive sound."], "hollow": ["Empty in the middle.", "To make a hole in something."], "copy": ["A reproduction of a written record.", "A secondary representation of an original.", "To reproduce someone's behavior or looks."], "duplicate": ["A second, identical instance; a copy that corresponds to an original exactly.", "To make a duplicate or duplicates of.", "To make or do or perform again."], "Bagnara di Romagna": ["A city in the Ravenna province of Italy."], "Day of the Dead": ["An ancient Aztec celebration of the memory of deceased ancestors that is celebrated on November 1 and 2."], "snow globe": ["A transparent glass sphere, usually containing a landscape inside, filled with water and artificial snow, which falls when shaken."], "jargon": ["Terminology which is especially defined in relationship to a specific activity, profession, group, or event."], "phonology": ["In linguistics, the study of the sound systems of specific languages."], "pragmatics": ["In linguistics, creation of the explanatory gap between sentence meaning and speaker's meaning."], "syntax": ["In linguistics, the study of the rules that govern the way words combine to form phrases and phrases combine to form sentences."], "Scotland": ["A country in northwest Europe, and one of the four constituent countries of the United Kingdom, occupying the northern third of the island of Great Britain, with capital Edinburgh."], "turmeric": ["A spice commonly used in curries and other South Asian cuisine.", "An plant native to South Asia with aromatic rhizomes, part of the ginger family (Zingiberaceae)."], "hobby horse": ["A topic about which someone loves to talk at great length.", "A child's toy consisting of a (usually wooden or cloth) horse head mounted on a stick."], "Northern Ireland": ["A country in western Europe, in the northeast of the island of Ireland, with capital Belfast."], "Great Britain": ["An island lying off the northwestern coast of mainland Europe, comprising the main territory of the United Kingdom."], "British Isles": ["An archipelago consisting of Great Britain, Ireland and several thousand small islands off the northwest coast of continental Europe."], "provide": ["To give what is needed or desired."], "tailor": ["Someone who professionally manufactures clothing.", "To style and tailor in a certain fashion."], "parrot": ["Any bird of the order Psittaciformes, many species of which are colourful and able to mimic human speech."], "adoption": ["A juridical process where a parent-child relation is created between persons that are not related in the first line.", "The act of approving something.", "Selection and use of something."], "share": ["A financial instrument that shows that you own a part of a company.", "The cutting blade of an agricultural machine like a plough, a cultivator or a seeding-machine.", "To give part of what one has to somebody else to use or consume.", "To have something in common.", "To communicate (an idea, an emotion, etc.) to someone.", "To use jointly or in common."], "paediatrician": ["A doctor who specializes in the care of infants and children, usually until the age of sixteen."], "teetotaller": ["One who abstains; especially, one who abstains from the use of alcoholic drinks."], "Wales": ["One of the constituent nations of the United Kingdom, occupying part of the southwestern portion of the island of Great Britain, with capital Cardiff."], "Britannia": ["The original name given to the island of Great Britain by the Roman Empire."], "ice fog": ["A type of fog which forms when very cold air flows over relatively warm water. The steam arising from the water sublimates directly into ice crystals."], "Kinshasa": ["Capital of the Democratic Republic of the Congo (DRC)."], "Brazzaville": ["Capital of the Republic of the Congo."], "ophthalmologist": ["A medical specialist who practises ophthalmology."], "bah": ["An interjection used to express disdain or contempt."], "troponym": ["A word or phrase that denotes a way of doing what is expressed by another word or phrase."], "meronym": ["A word or phrase that denotes something that is a part of what another word or phrase denotes."], "holonym": ["A word for the whole, when another word only denotes a part of it."], "cohyponym": ["A word or phrase that shares the same hypernym as another word or phrase."], "Democratic Republic of the Congo": ["A country in Central Africa whose capital is Kinshasa."], "Congo-Kinshasa": ["A country in Central Africa whose capital is Kinshasa."], "linguistics": ["The scientific study of human language."], "grammar": ["The study of rules governing the use of language.", "A textbook describing the rules of grammar of a language.", "A precise description of a formal language.", "The classification, and the system or set of structural rules that governs the composition, gestalt, and form of sentences, phrases, and words in any given natural or artificial human language. General and descriptive linguistics are researching and documenting them."], "parakeet": ["Any of several slender species of parrot."], "cut and paste": ["To delete text or other data in one document and insert it in the same or a different one."], "sophisticated": ["Ahead in development; very well considered, refined, using complex or complicated methods.", "Having obtained worldly knowledge, experience and refinement, and lacking naivet\u00e9."], "false cognate": ["A word in one language bearing a deceptive resemblance to a word in another language.", "A word that is similar in form or meaning to another word but has different roots."], "conjugation": ["In linguistics, the creation of derived forms of a verb from its principal parts by inflection.", "The union of gametes to form a zygote.", "The act of pairing a male and female for reproductive purposes."], "declension": ["In linguistics, a paradigm of inflected nouns and adjectives."], "morpheme": ["The smallest lingual unit that carries a semantic interpretation, usually a distinctive collocation of phonemes having no smaller meaningful members."], "free morpheme": ["A morpheme that can stand alone as an actual word."], "bound morpheme": ["A morpheme that can occur only when attached to a root morpheme."], "bitter": ["Being harsh or corrosive in tone.", "Having an acrid taste.", "That cannot be altered any more, harsh or sincerely disappointing, often psychologically hard to cope with and connected with an enduring negative feeling."], "duduk": ["A traditional woodwind musical instrument of Armenian origins."], "recorder": ["A whistle-like woodwind musical instrument with holes for seven fingers and one for the thumb of the uppermost hand."], "poisonous": ["That acts like a poison."], "phoneme": ["The smallest unit of sound which distinguishes meaning in a language.", "A cognitive abstraction of a meaningless physical unit of a spoken or signed word."], "dentist": ["A doctor specialised in dentistry."], "smuggle": ["To import or export, illicitly or by stealth, without paying lawful customs charges or duties.", "The clandestine transportation of goods or persons in violation of applicable laws or other regulations."], "cardiologist": ["Medical specialist who deals with prevention, diagnosis and treatment of heart diseases."], "reply": ["To communicate a message of any form in reaction to something that has been asked or expressed, to the being who expressed it.", "A statement (either spoken or written) that is made in reaction to a question, a request, criticism or accusation"], "brass": ["Any of several alloys made of copper and zinc with possible addition of other metallic elements, with the zinc percentage from 3 to 46. It is a hard bright yellow metal with an appearance somewhat similar to gold."], "red herring": ["A clue that is misleading or that has been falsified, intended to divert attention."], "Lingua Franca": ["An extinct language of Tunisia."], "fertile": ["Capable of reproducing.", "Capable of growing abundant crops.", "Producing abundantly."], "fecund": ["Capable of reproducing."], "flight": ["A journey made by a plane or space shuttle.", "The act of fleeing.", "The act of flying.", "A series of stair steps between landings.", "A formation of aircraft in flight.", "A flock of flying birds."], "flame": ["A bright yellow, red or bluish light which emerges during combustion processes."], "wax": ["(For a living being) To become bigger.", "A yellowish or dark brown wax secreted by honeybees for constructing honeycombs."], "Brittany": ["One of the six Celtic Nations; a former independent kingdom and duchy, and a province of France."], "Celtic Nations": ["Areas of Europe that are inhabited by members of Celtic cultures, specifically speakers of Celtic languages; Brittany, Cornwall, Ireland, Isle of Man, Scotland and Wales."], "Celtic nations": ["Areas of Europe that are inhabited by members of Celtic cultures, specifically speakers of Celtic languages; Brittany, Cornwall, Ireland, Isle of Man, Scotland and Wales."], "Six Nations": ["Areas of Europe that are inhabited by members of Celtic cultures, specifically speakers of Celtic languages; Brittany, Cornwall, Ireland, Isle of Man, Scotland and Wales."], "Isle of Man": ["An island located in the Irish Sea between Great Britain and Ireland."], "Mann": ["An island located in the Irish Sea between Great Britain and Ireland.", "A language spoken in Liberia and Guinea"], "committee": ["A group of persons convened for the accomplishment of some specific purpose, typically with formal protocols.", "A colleection of persons that were assigend a specific task, most often for a predetermined time, or to be completed within a given time frame, that is to find or determine something, make decisions, or steer towards a settlement that other are looking for and/or are going to use."], "liquid": ["A fundamental state of matter. Liquid is a state between solid and gaseous. A liquid can usually be contained within a glass or a similar container without allowing escape. A liquid can freeze to become a solid or evaporate into a gas.", "Existing as or having characteristics of a liquid."], "OLPC Children's Dictionary": ["Dictionary for the OLPC project"], "dermatologist": ["Medical specialist for disorders of the skin, the nails and the hair."], "Scarlet Caterpillarclub": ["Fungus that is member of the division Ascomycota, scientific name: Cordyceps militaris."], "sweathouse": ["A room, often with wooden walls, which is designed for heating dry air and where steam may be produced by pouring water over hot stones."], "sudatory": ["A room, often with wooden walls, which is designed for heating dry air and where steam may be produced by pouring water over hot stones."], "steambath": ["A room, often with wooden walls, which is designed for heating dry air and where steam may be produced by pouring water over hot stones."], "sea of lights": ["Great number of lights situated closely together."], "cloudcuckooland": ["A fantasy world completely out of touch with reality which someone imagines."], "town twinning": ["A concept whereby towns or cities in geographically and politically distinct areas are paired with the goal of fostering human contact and cultural links."], "expectation": ["That which is expected or looked for."], "withdrawal symptom": ["Any physical or psychological disturbance (as sweating or depression) experienced by a addict when deprived of his addiction."], "illuminate": ["To give light to (something)."], "Zanzibar": ["Archipelago off the coast of Tanzania in the Indian Ocean."], "speech therapist": ["A therapist who treats speech defects and disorders."], "Venice": ["City and port in the province of Venice.", "A province in the Veneto region of Italy."], "Destination Italy": ["Collaboration with Uni Bamberg."], "urologist": ["A specialist in urology."], "mathematician": ["A scientist who practices mathematics."], "Marwari": ["An Indo-Aryan language spoken in the Indian state of Rajasthan, and also in the neighboring state of Gujarat and in Eastern Pakistan.", "A language spoken in Pakistan."], "death penalty": ["The judicially ordered execution of a person as a punishment for a serious crime."], "capital punishment": ["The judicially ordered execution of a person as a punishment for a serious crime."], "executioner": ["The person who carries out corporal punishments on a convict including the death penalty."], "skeleton": ["The structure that provides support to an organism, internal and made up of bones and cartilage in vertebrates, external in some other animals.", "A frame that provides support to a building or other structure."], "neptunium": ["A chemical element with symbol Np and atomic number 93, a silvery radioactive metallic actinide."], "hanging": ["A form of execution or suicide where one is suspended in air from a noose and, thus, suffocated.", "A public event at which a person is hanged."], "noose": ["An adjustable loop of rope."], "oncologist": ["A physician specializing in cancer diagnosis and treatment."], "brewer": ["Someone who makes beer."], "onager": ["Large mamal from Asia (Equus hemionus), belonging to the horse family."], "mule": ["The offspring of a male donkey and a female horse."], "fairy tale": ["A folktale featuring fairies or similar fantasy characters."], "apartment": ["Self-contained housing unit that occupies only part of a building. It may be owned or rented."], "prime number": ["A natural number which has exactly two natural number divisors, namely 1 and the prime number itself."], "ivory tower": ["A sheltered, overly-academic existence or perspective, implying a disconnection or lack of awareness of reality or practical considerations."], "alchemy": ["An early proto-scientific practice combining elements of chemistry, physics, astrology, art, semiotics, metallurgy, medicine, mysticism, and religion."], "forgiveness": ["Act of forgiving; act of stopping blaming someone for an offense."], "clemency": ["Leniency and compassion shown toward offenders by a person or agency charged with administering justice."], "Betta Kurumba": ["A language spoken in the Indian states of Karnataka, Kerala and Tamil Nadu."], "lascivious": ["Preoccupied with or exhibiting lustful desires."], "lewd": ["Preoccupied with or exhibiting lustful desires."], "wanton": ["Preoccupied with or exhibiting lustful desires.", "Stuffed dough wrap found in Chinese cuisine."], "Nagorno-Karabakh": ["A predominantly Armenian de facto independent republic in the South Caucasus, officially part of and wholly within the Republic of Azerbaijan"], "voting machine": ["A technical device that is used for casting or counting votes in an election."], "adjustment": ["A small change.", "The result of a modification."], "douche": ["A device used to introduce a stream of water into the body for medical or hygienic reasons."], "Sealand": ["A self-proclaimed micronation located off the coast of Suffolk, England."], "Principality of Sealand": ["A self-proclaimed micronation located off the coast of Suffolk, England."], "micronation": ["An entity that resembles an independent nation or state, unrecognized by them, and exists only on paper or on the Internet."], "de facto": ["(Of a common practice) That is well established, but not quite universal or defined by law."], "Kosovo": ["A province in southern Serbia governed by the United Nations Mission in Kosovo, not the Serbian government."], "enclave": ["A country or part of a country lying wholly within the boundaries of another."], "exclave": ["A part of a country politically attached to a larger piece but not actually contiguous with it."], "Kaliningrad": ["A Russian seaport on the Baltic Sea, an exclave between Poland and Lithuania."], "K\u00f6nigsberg": ["A Russian seaport on the Baltic Sea, an exclave between Poland and Lithuania."], "Kyonigsberg": ["A Russian seaport on the Baltic Sea, an exclave between Poland and Lithuania."], "landlocked country": ["A country that has no direct access to a sea or an ocean."], "landlocked sea": ["A sea that is either not at all or not directly connected to an ocean."], "doubly landlocked country": ["A landlocked country that is surrounded entirely by other landlocked countries."], "Principality of Liechtenstein": ["A small, doubly landlocked country in Central Europe whose capital is Vaduz."], "America": ["Continent which extends on a great part of the Occidental Hemisphere of the Earth, from the Artic Ocean in the North, to the Cape Horn in the South at the confluence of the Atlantic and Pacific Oceans, which delimits the continent on the East and West respectively.", "A country and federal republic in North America located north of Mexico and south of Canada, including Alaska, Hawaii and overseas territories."], "U.S.": ["A country and federal republic in North America located north of Mexico and south of Canada, including Alaska, Hawaii and overseas territories."], "U.S.A.": ["A country and federal republic in North America located north of Mexico and south of Canada, including Alaska, Hawaii and overseas territories."], "U.S. of A.": ["A country and federal republic in North America located north of Mexico and south of Canada, including Alaska, Hawaii and overseas territories."], "States": ["A country and federal republic in North America located north of Mexico and south of Canada, including Alaska, Hawaii and overseas territories."], "Gaza Strip": ["A narrow coastal strip of land along the Mediterranean, officially occupied by Israel but with a predominant Arab population."], "West Bank": ["A landlocked territory on the west bank of the Jordan River, officially occupied by Israel but with a predominant Arab population."], "Levant": ["An imprecise geographical term historically referring to a large area in the Middle East south of the Taurus Mountains, bounded by the Mediterranean Sea on the west, and by the northern Arabian Desert and Upper Mesopotamia to the east."], "Austrian German": ["All Austrian linguistical characteristic of the German standard language."], "French Swiss": ["The variety of French spoken in the in an area of Switzerland known as Romandy."], "Canadian French": ["The variety of French spoken in Canada and areas of French Canadian settlement in the United States."], "Belgian French": ["The variety of French spoken in Belgium.", "Variety of French spoken by the French speakers of Belgium.", "French as spoken in Belgium."], "American English": ["The dialect of the English language used mostly in the United States of America."], "AmE": ["The dialect of the English language used mostly in the United States of America."], "United States English": ["The dialect of the English language used mostly in the United States of America."], "U.S. English": ["The dialect of the English language used mostly in the United States of America."], "British English": ["The dialect of the English language used mostly in the British Isles."], "BrE": ["The dialect of the English language used mostly in the British Isles."], "Alemannic German": ["Any of the Alemannic dialects spoken in Switzerland, in Liechtenstein, in Vorarlberg, in Southern Baden, in Southern Allg\u00e4u, and in Alsace."], "cocktail": ["Style of mixed drink, usually containing two or more types of liquor and flavorings."], "pilot": ["A person who flies an aircraft."], "Breton": ["A Celtic language spoken by some of the inhabitants of Brittany and Loire-Atlantique."], "depression": ["An area that is lower in topography than its surroundings.", "An area of lowered air pressure that generally brings moist weather.", "State of physical and/or psychological dejectedness, which can lead to unhappiness, pessimism and mistrust.", "A period of time with economy at near standstill, characterized by high unemployment and low levels of investment."], "gild": ["To coat with a thin layer of gold.", "A formal association of people with similar interests."], "Yoruba": ["A sub-Saharan language. It belongs to the Benue-Congo branch of the Niger-Congo language family, and has nearly 30 million speakers in Nigeria, Benin, Togo and Sierra Leone, as well as communities in Brazil and Cuba."], "anaconda": ["Any of various large non-venomous snakes of the genus Eunectes, found mainly in northern South America."], "blood sedimentation": ["A medical test where the speed with which the red blood cells sink to the bottom of a test tube is measured."], "phishing": ["Sending email that falsely claims to be from a legitimate organisation."], "conversation": ["The back-and-forth play of the blades in a bout.", "The use of speech for informal exchange of views or ideas or information etc."], "time loop": ["A fictional situation in which time runs normally for a set period but then skips back and repeats again."], "bathing": ["The process of cleaning something in water.", "The act of swimming.", "The process of dipping an object in a pool of liquid."], "emoticon": ["A graphical representation, either in the form of an image or made up of ASCII characters."], "smiley": ["A graphical representation, either in the form of an image or made up of ASCII characters."], "percolate": ["To pass a liquid gradually through small spaces or a porous substance."], "constitution": ["A system, often a written document, which establishes the rules and principles by which an organization, or political entity, is governed.", "The set of legal rules that govern the basic structures of the state and its relations with citizens"], "Baltic country": ["A country in the general area surrounding the Baltic Sea."], "Baltic Sea country": ["A country in the general area surrounding the Baltic Sea."], "Baltic state": ["A country in the general area surrounding the Baltic Sea."], "substantive": ["A word that can be used to refer to a person, place, thing, quality, or idea; a part of speech. It can serve as the subject or object of a verb. For example, a table or a computer."], "dongle": ["A hardware device utilised by a specific application for purposes of copy protection."], "impunity": ["Exemption from punishment."], "Gagauz": ["A Turkic language spoken by the Gagauz people in Moldova, Ukraine, Bulgaria and Romania."], "wisent": ["A bison species, Bison bonasus, and the heaviest land animal in Europe."], "contagious": ["Having a disease that can be easily passed on to others."], "aid": ["Action given to provide assistance.", "To give assistance or aid to."], "ruffe": ["A freshwater fish (Gymnocephalus cernuus) found in temperate regions of Europe and northern Asia."], "gingerbread": ["Sweet whose main flavouring is ginger."], "email": ["Information or message that is transmitted or exchanged from one computer terminal to another, through telecommunication.", "To compose and send an electronic message."], "e-mail": ["Information or message that is transmitted or exchanged from one computer terminal to another, through telecommunication.", "To compose and send an electronic message."], "council": ["Consulting or decisive insititution, composed of more than one person, national or international, private or public, with different scopes.", "A group of people who usually possess some powers of governance."], "counsel": ["A person who gives advice, more particularly in legal matters.", "Something that provides direction or advice as to a decision or course of action."], "councilman": ["A male councillor."], "councilwoman": ["A female councillor."], "city council": ["A form of local government which proposes bills, holds votes, and passes laws to help govern a city."], "Nazi": ["An advocate of the ideologies of Nazism."], "nazi": ["An advocate of the ideologies of Nazism."], "national socialist": ["An advocate of the ideologies of Nazism."], "millisecond": ["One thousandth of a second."], "microsecond": ["One millionth of a second."], "annual": ["Occuring once every year.", "A book of which a new edition is published every year."], "yearly": ["Occuring once every year."], "per annum": ["Occuring once every year."], "biannual": ["Occuring twice every year.", "Occurring every two years."], "half-yearly": ["Occuring twice every year.", "Occuring every six months."], "semiannual": ["Occuring twice every year."], "biennial": ["Occurring every two years.", "Lasting two years."], "centennial": ["The 100th anniversary of an event or happening.", "Occuring every 100 years."], "bicentennial": ["The 200th anniversary of an event or happening.", "Occuring every 200 years."], "swimming": ["The act of swimming."], "semestral": ["Occuring every six months."], "nanosecond": ["One billionth of a second."], "picosecond": ["One millionth of one millionth of a second."], "femtosecond": ["One billionth of one millionth of a second."], "attosecond": ["One billionth of one billionth of a second."], "zeptosecond": ["One trillionth of one billionth of one second."], "yoctosecond": ["One trillionth of one trillionth of a second."], "improvisation": ["The act of inventing all or part of a process while it is being performed."], "thermometer": ["A device which measures temperature or temperature gradient."], "temperature gradient": ["A physical quantity that describes in which direction and at what rate the temperature changes the most rapidly around a particular location."], "thermostat": ["A device used to maintain the temperature of a system at a desired setpoint temperature."], "setpoint": ["The target value that an automatic control system will aim to reach."], "cohabitation": ["In semi-presidential systems of government, when the President and the Prime Minister come from different political parties.", "An emotionally and physically intimate relationship which includes a common living place and which exists without legal or religious sanction.", "The act of living together."], "geologist": ["A scientist who studies the origin, history, and structure of the earth."], "shampoo": ["A liquid soap product for washing hair or other fibres."], "shibboleth": ["A word, especially seen as a test, to distinguish someone as belonging to a particular nation, class, profession etc. It use derives from an account in the Bible (Judges 12:5-6)."], "sale": ["The sale of goods at reduced prices.", "An exchange of goods or services for currency or credit."], "anaesthesist": ["A medical specialist who deals with anesthetizing patients for operations or for pain."], "ney": ["An end-blown flute that figures prominently in Middle Eastern music."], "tombak": ["A goblet drum from Persia."], "golden": ["Having the color of gold.", "Made of gold."], "horror movie": ["A movie that is supposed to elicit feelings of fear, horror and disgust from the viewer."], "sod off": ["To tell someone to go away."], "horror film": ["A movie that is supposed to elicit feelings of fear, horror and disgust from the viewer."], "necrophilia": ["A paraphilia characterized by a sexual attraction to corpses."], "thanatophilia": ["A paraphilia characterized by a sexual attraction to corpses."], "necrolagnia": ["A paraphilia characterized by a sexual attraction to corpses."], "paraphilia": ["A family of philias that reference sexual arousal from objects or situations which may not have the capacity for reciprocal affectionate sexual activity."], "sexual deviation": ["A family of philias that reference sexual arousal from objects or situations which may not have the capacity for reciprocal affectionate sexual activity."], "pedophilia": ["A paraphilia characterized by a sexual attraction to prepubescent children."], "paedophilia": ["A paraphilia characterized by a sexual attraction to prepubescent children."], "p\u00e6dophilia": ["A paraphilia characterized by a sexual attraction to prepubescent children."], "crack": ["A thin and usually jagged space opened in a previously solid material.", "A narrow opening.", "A variety of cocaine, often a rock, usually smoked through a crack-pipe.", "To form cracks.", "The groove between the buttocks."], "crevice": ["A thin and usually jagged space opened in a previously solid material.", "A narrow opening."], "crack cocaine": ["A variety of cocaine, often a rock, usually smoked through a crack-pipe."], "cleft": ["A thin and usually jagged space opened in a previously solid material."], "president": ["The title of one who presides over an organisation, company, trade union, university, country, etc.", "The presiding officer of a meeting, organization, committee, or other deliberative body."], "ice skating": ["Activity consisting of moving on ice with skates."], "rhodopsin": ["Light-sensitive retinal photoreceptor molecule."], "cynology": ["Study of dogs and breeds of dogs."], "stormy": ["Prone to thunderstorms.", "Caused by a thunderstorm, in the manner of a thunderstorm.", "Very windy, with storm."], "philia": ["A psychological disorder characterized by an irrational favorable disposition towards something."], "empirical": ["Relying upon or derived from observation or experiment."], "adposition": ["A grammatical element that combines syntactically with a phrase and indicates how that phrase should be interpreted in the surrounding context."], "predicate": ["One of the two main parts of a sentence used as an expression that can be true of something.", "To affirm or declare as an attribute or quality of."], "Pole": ["A person of Polish nationality."], "Serb": ["A person of Serbian nationality."], "Montenegrin": ["The Ijekavian-\u0160tokavian dialect spoken in Montenegro, considered as a separate language by some and a dialect of the Serbian language by others.", "A person of Montenegrin nationality.", "Of or relating to Montenegro, Montenegrins, or the Montenegrin language."], "\u0160tokavian": ["The primary dialect of the Central South Slavic languages system, spoken in Serbia, Montenegro, Bosnia and Hercegovina, and the greater part of Croatia."], "Shtokavian": ["The primary dialect of the Central South Slavic languages system, spoken in Serbia, Montenegro, Bosnia and Hercegovina, and the greater part of Croatia."], "Kajkavian": ["One of the three dialects of Croatian language, spoken in the northwestern parts of Croatia and a few parts of Austria, Hungary and Romania."], "\u010cakavian": ["One of the three dialects of Croatian language, spoken in Istria, the Adriatic sea coast, Dalmatian littoral and the islands."], "Chakavian": ["One of the three dialects of Croatian language, spoken in Istria, the Adriatic sea coast, Dalmatian littoral and the islands."], "Torlakian": ["The Slavic dialects spoken in Southern and Eastern Serbia, Northwest Republic of Macedonia, and Northwest Bulgaria."], "Serbo-Croatian": ["An umbrella term for dialects spoken by Serbs and Croats, Bosniaks, and Montenegrins."], "Croato-Serbian": ["An umbrella term for dialects spoken by Serbs and Croats, Bosniaks, and Montenegrins."], "Serbo-Croat": ["An umbrella term for dialects spoken by Serbs and Croats, Bosniaks, and Montenegrins."], "Croat": ["A person of Croatian nationality."], "Bosniak": ["A person with nationality from Bosnia and Herzegovina or the Sand\u017eak region of Serbia and Montenegro."], "Herzegovina": ["A historical and geographical region in the Dinaric Alps that comprises the southern part of present-day Bosnia and Herzegovina."], "Bosnia": ["A historical and geographical region in the Dinaric Alps and the Pannonian plain that comprises the northern part of present-day Bosnia and Herzegovina."], "Gorani": ["A dialect spoken by Kurds in the Iranian provinces of Kurdistan and Kermanshah, the Halabja region of Iraqi Kurdistan, and the Hewraman mountains."], "Goran": ["A person with nationality originating from the Gora region of Kosovo."], "Yugoslavia": ["Three separate political entities that existed on the Balkan Peninsula in Europe during most of the 20th century."], "Yugoslav": ["A person of Yugoslav nationality.", "Of or relating to Yugoslavia or Yugoslavs."], "foreplay": ["A set of intimate acts, which takes place before sexual acts are performed, between two or more people meant to increase sexual arousal."], "Venus": ["The second planet (counted from the center) of our solar system.", "The Roman goddess of love, erotic desire and beauty."], "Earth": ["The third planet (counted from the center) of our solar system."], "Jupiter": ["The fifth planet (counted from the center) of our solar system.", "The chief deity of Roman state religion throughout the Republican and Imperial eras."], "Saturn": ["The sixth planet (counted from the center) of our solar system."], "Uranus": ["The seventh planet (counted from the center) of our solar system."], "Neptune": ["The eighth planet (counted from the centre) and outermost of our solar system.", "The god of water and the sea in Roman mythology."], "autumn storm": ["A storm in autumn."], "Markov property": ["The conditional probability distribution of the state in the future that, given the state of the process currently and in the past, depends only on its current state and not on its state in the past."], "Markov chain": ["Sequence of random variables (Xn) satisfying the Markov property, that is, such that Xn+1 (the future) depends only on Xn (the present) and not on Xk for k <= n-1 (the past)."], "upstage": ["Draw attention to oneself away from someone else."], "flagship": ["A ship led by the fleet commander.", "The most important one out of a related group."], "gamekeeper": ["A person who has to ensure that the hunting law is respected."], "intractable": ["Not easy to be drawn or guided by persuasion.", "Of a problem. Can be solved in theory (e.g., given arbitrarily long time), but which in practice takes too long for their solutions to be useful."], "reminiscent": ["Suggestive of an earlier event or earlier times."], "concise": ["Expressing much with little to no extraneous detail or words."], "angle": ["A figure formed by two rays which start from a common point (a plane angle) or by three planes that intersect (a solid angle).", "The edge where two converging walls meet.", "A way of looking at something."], "Lett": ["A person of Latvian nationality."], "Austrian": ["Of or relating to Austria, Austrians, or the collection of Austrian German dialects.", "A person of Austrian nationality.", "A woman of Austrian nationality of descent."], "Swiss": ["Of or relating to Switzerland, Swiss, or the Swiss dialects of German and French.", "A person of Swiss nationality."], "Belgian": ["A person of Belgian nationality.", "Of or relating to Belgium, Belgians, or the Belgian dialects of French and German."], "British": ["Of or relating to Great Britain, Brits, or the British English language."], "Brit": ["A person of British nationality."], "Icelander": ["A person of Icelandic nationality."], "Turk": ["A person of Turkish nationality."], "Greenlandic": ["An Eskimo-Aleut language spoken in Greenland.", "Of or relating to Greenland, Greenlanders, or the Kalaallisut language."], "Greenlander": ["A person of Greenlandic nationality."], "American": ["A female with American nationality.", "Of or pertaining to the United States of America, Americans, or the American English language.", "A person of American nationality."], "Mexican": ["A person of Mexican nationality.", "Of or pertaining to Mexico or Mexicans."], "same-sex marriage": ["The union of two people who are of the same biological sex or gender.", "Marriage between two persons of the same biological gender."], "gay marriage": ["The union of two people who are of the same biological sex or gender.", "Marriage between two persons of the same biological gender."], "homosexual marriage": ["The union of two people who are of the same biological sex or gender."], "Markoff chain": ["Sequence of random variables (Xn) satisfying the Markov property, that is, such that Xn+1 (the future) depends only on Xn (the present) and not on Xk for k <= n-1 (the past)."], "Bislama": ["A language spoken in Vanuatu and New Caledonia"], "chide": ["To censure severely or angrily."], "dress down": ["To censure severely or angrily."], "censure": ["Issuing a formal reprimand by an authoritative body or person."], "tow": ["To pull something behind one using a line or chain."], "target": ["A reference point to shoot at.", "A person who is the aim of an attack (especially a victim of ridicule or exploitation) by some hostile person or influence.", "The goal intended to be attained (and which is believed to be attainable)."], "Corsican": ["A language spoken in France and Italy."], "Walloon": ["A language spoken in Belgium."], "cappuccino": ["An Italian coffee-based beverage made from espresso and milk that has been steamed and/or frothed."], "latte": ["A drink of coffee prepared from one or two shots of espresso mixed with steamed milk and topped with foam."], "adobe": ["An unburnt brick dried in the sun made of clay and dried grasses.", "Made of adobe.", "The clay from which adobe bricks are made."], "adultery": ["Sex by a married person with someone other than their spouse."], "alfalfa": ["(Medicago sativa) A plant, grown as a pasture crop."], "angel": ["A divine and supernatural messenger from a deity, or other divine entity.", "In Christian angelology, the lowest order of angels, below virtues."], "unital ring": ["An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation constituting a monoid and distributive over addition."], "unitary ring": ["An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation constituting a monoid and distributive over addition."], "ring with unity": ["An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation constituting a monoid and distributive over addition."], "associative unital ring": ["An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation constituting a monoid and distributive over addition."], "associative unitary ring": ["An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation constituting a monoid and distributive over addition."], "associative ring with unity": ["An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation constituting a monoid and distributive over addition."], "nonassociative ring": ["An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation distributive over addition."], "column": ["Anything having the form of a beam.", "An article in a publication giving the opinion of its author on a given topic or current event.", "A series of cells or entries in a table, going vertically.", "An upright supporting beam."], "editorial": ["An article in a publication giving the opinion of its author on a given topic or current event."], "yellow journalism": ["A type of journalism where news media organizations or individual journalists display unethical or unprofessional practices."], "news presenter": ["A person that presents a news show on television, radio or the Internet."], "newsreader": ["A news presenter whose role it is to read the news."], "newscaster": ["A presenter of a news bulletin who is a working journalist and news gatherer, participanting in compiling the script to be delivered in a news bulletin."], "news anchor": ["A television personality who presents material prepared for a news program and at times must improvise commentary for live presentation."], "anchor": ["A television personality who presents material prepared for a news program and at times must improvise commentary for live presentation.", "An object, usually a heavy piece of metal with points which dig into the sea-bed, used to hold a boat in one position."], "anchorperson": ["A television personality who presents material prepared for a news program and at times must improvise commentary for live presentation."], "anchorman": ["A television personality who presents material prepared for a news program and at times must improvise commentary for live presentation."], "anchorwoman": ["A television personality who presents material prepared for a news program and at times must improvise commentary for live presentation."], "associative ring": ["An algebraic structure with an addition operation constituting an abelian group and with a multiplication operation constituting a semigroup and distributive over addition."], "treason": ["The crime of disloyalty to one's nation or state.", "The breaking or violation of a presumptive social contract, trust, or confidence that produces moral and psychological conflict within a relationship amongst individuals, between organizations or between individuals and organizations."], "badger": ["Any of several carnivorous burrowing animals of the family Mustelidae."], "Santa Claus": ["Symbol of Christmas gift-giving."], "jurist": ["An expert in law."], "contention": ["Ratio of network connection users who share a set amount of bandwidth.", "Competition by users of a system for use of the same facility at the same time."], "oversubscription": ["Competition by users of a system for use of the same facility at the same time."], "contention ratio": ["Competition by users of a system for use of the same facility at the same time.", "Ratio of network connection users who share a set amount of bandwidth."], "anatomist": ["One who studies, teaches, writes on, or does research on anatomy."], "bowling pin": ["An item that is placed on the end of a bowling alley, and which one can then try to strike and topple with a bowling ball."], "emotion": ["A person's internal state of being, normally based in or tied to their internal (physical) and external (social) sensory feelings."], "sum": ["The total of two or more quantities."], "trivial": ["Of little significance or value."], "audiobook": ["A recording of the reading of a book."], "Koch": ["A language spoken in India and Bangladesh."], "doily": ["A small, decorative mat (made of cotton or lace) that is placed underneath objects to protect the surface."], "holy water": ["Water blessed by a priest that is used for symbolic purification."], "aspergillum": ["A tool used to sprinkle holy water."], "aspergill": ["A tool used to sprinkle holy water."], "holy water sprinkler": ["A tool used to sprinkle holy water."], "Roma": ["A language of Indonesia, spoken in the Roma Island, part of the Maluku Islands.", "A province in the Lazio region of Italy."], "sunless": ["Without sunshine."], "Wawonii": ["A language of Indonesia (Sulawesi)"], "aspen": ["A kind of poplar tree (genus Populus; section Populus)."], "berry": ["A soft fruit which develops from a superior ovary and contains seeds not encased in pits."], "Puma": ["A language of the Kiranti family of Tibeto-Burman, spoken in the south and south-east of the Everest region in Nepal.", "ISO 639-6 entity"], "Manx": ["An extinct language that was spoken on the isle of Man, currently experiencing a revival.", "Of or pertaining to the Isle of Man, its inhabitants or language."], "respond": ["To communicate a message of any form in reaction to something that has been asked or expressed, to the being who expressed it."], "crest": ["A tuft of fur present on the head of certain birds."], "dad": ["Children word for \"father\"."], "town hall": ["Mayor's office."], "riverside": ["Along the river."], "unfortunately": ["In an unfortunate manner."], "fortunately": ["By fortunate luck."], "coward": ["A person who lacks courage.", "Lacking courage."], "Gana": ["A language of Malaysia"], "resolve": ["To understand the meaning of.", "To bring to an end; to settle conclusively."], "boring": ["Causing boredom.", "A pit or hole which has been bored."], "Holy Spirit": ["In Christianity the third consubstantial person of God and part of the Holy Trinity."], "Holy Ghost": ["In Christianity the third consubstantial person of God and part of the Holy Trinity."], "Trinity": ["Representation in which God is considered as being three persons: the Father, The Son and the Holy Spirit."], "tiler": ["A person who lays tiles."], "intransitive verb": ["An action verb not taking a direct object."], "transitive verb": ["A verb that is accompanied (either clearly or implicitly) by a direct object in active sentences. It links the action taken by the subject with the object upon which that action is taken. Consequently, it may be used in a passive voice."], "ditransitive verb": ["A verb that requires (in the unmarked form) both a direct object and an indirect object so as to be grammatical."], "Akposo": ["A Kwa-language spoken in Ghana and Togo."], "Ikposo": ["A Kwa-language spoken in Ghana and Togo."], "plasterer": ["A person whose occupation is to plaster walls."], "midwife": ["A person, usually a woman, who is trained to assist women in childbirth, but who is not a physician.", "A woman who assists women in having their babies at home."], "old woman": ["An old woman."], "mother-in-law": ["The mother of someone's spouse."], "auxiliary verb": ["A verb that accompanies the main verb in a clause in order to make distinctions in tense, mood, voice or aspect."], "helping verb": ["A verb that accompanies the main verb in a clause in order to make distinctions in tense, mood, voice or aspect."], "irregular verb": ["A verb that does not follow the normal rules for its conjugation."], "regular verb": ["A verb whose conjugation can be predicted given a few verb forms (principal parts) and a few rules."], "pharmacist": ["Somebody who professionally prepares and sells pharmaceuticals."], "az": ["The first letter of the Glagolitic alphabet."], "facade": ["The face of a building.", "The terminal part of the facade of a building - especially the classical temples - usually triangular."], "telephone call": ["A conversation by a connection over a telephone network."], "phone call": ["A conversation by a connection over a telephone network."], "grenade": ["A small hand-held bomb designed to be thrown by hand or fired from a grenade launcher."], "hand grenade": ["A small hand-held bomb designed to be thrown by hand or fired from a grenade launcher."], "bookmark": ["A thin marker used to keep one's place in a printed work and to be able to return to it with ease.", "A user's reference to a document on the World-Wide Web or other hypermedia system, usually in the form of a URL and a title or comment string."], "lesbian": ["A homosexual female."], "syllogism": ["An inference in which one proposition (the conclusion) follows necessarily from two other propositions, known as the premises."], "biologist": ["A scientist who practises biology."], "diatribe": ["A speech or writing which bitterly denounces something."], "expos\u00e9": ["Publication of some disreputable facts."], "Standard Arabic": ["A Semitic language spoken primarily throughout the Arab world - North Africa and the Middle East - and as the liturgical language of the Islam."], "Guerrero Amuzgo": ["A language of Mexico"], "scientific": ["Of, or pertaining to science.", "Having the quality of being derived from, or consistent with, the scientific method."], "rubbish": ["Something being said without sense, utterly wrong, of no use at all.", "Unwanted or undesired material, usually discarded."], "trash": ["Some information or idea or something said of questionable value or no value at all."], "garbage": ["Worthless object of bad quality.", "Memory allocated by a program that will not be accessed in any future execution of a given program."], "refuse": ["Unwanted or undesired material, usually discarded.", "To not want to do what is being asked."], "Lusatia": ["A historical region between the B\u00f3br and Kwisa rivers and the Elbe river in the eastern German states of Saxony and Brandenburg, south-western Poland and the northern Czech Republic."], "Saxony": ["A federal state of Germany, located in the east, with capital Dresden."], "Santa Cruz": ["A language of the Solomon Islands."], "anthropologist": ["An specialist in anthropology or someone professionally dedicated to it."], "death": ["The end of life.", "The death of a person."], "Farsi": ["An Indo-European language spoken mainly in Iran.", "A macrolanguage consisting of Farsi and Dari."], "leftmost": ["Furthest to the left."], "rightmost": ["Furthest to the right."], "Bokm\u00e5l": ["One of two official writing standards of Norwegian, derived from Danish, the other being Nynorsk."], "Epidermolysis bullosa": ["Genetic skin disease characterized by the appearance of blisters on the skin, and a very delicate skin."], "censorship": ["The control and monitoring of content and suppression of unwanted content exercized by a government or another influential organisation."], "hangar": ["A structure designed to hold aircraft in protective storage."], "yardstick": ["A tool used to physically measure lengths of up to one yard."], "metrication": ["The introduction of the SI metric system as the international standard for physical measurements."], "metrification": ["The introduction of the SI metric system as the international standard for physical measurements."], "globular": ["Shaped like a sphere."], "hexagonal": ["Having six edges, or having a cross-section in the form of a hexagon."], "pentagonal": ["Having five edges, or having a cross-section in the form of a pentagon."], "octagonal": ["Having eight edges, or having a cross-section in the form of an octagon."], "heptagonal": ["Having seven edges, or having a cross-section in the form of a heptagon."], "decagonal": ["Having ten edges, or having a cross-section in the form of a decagon."], "dodecagonal": ["Having twelve edges, or having a cross-section in the form of a dodecagon."], "nonagonal": ["Having nine edges, or having a cross-section in the form of an enneagon."], "polygonal": ["Having multiple edges, or having a cross-section in the form of a polygon."], "assassination": ["The deliberate and usually public murder of a political, public or other significant figure."], "intimately": ["In an intimate manner."], "paternity test": ["A medical test used to determine whether a man is the biological father of a child."], "cedar": ["A coniferous tree of the genus Cedrus in the coniferous plant family Pinaceae."], "cottonwood": ["A number of species of tree in the genus Populus (poplars), typically growing along watercourses."], "coyote": ["(Canis latrans) A member of the Canidae family native to North America."], "crow": ["A bird, usually black, of the genus Corvus, having a strong conical beak, with projecting bristles; it has a harsh, croaking call.", "An instance of boastful talk.", "To utter the characteristic cry of a rooster."], "Thanksgiving": ["An annual one-day American holiday (taking place on the last Thursday of the month of November) to give thanks for the things one has at the close of the harvest season, traditionally celebrated with a turkey feast."], "Thanksgiving Day": ["An annual one-day American holiday (taking place on the last Thursday of the month of November) to give thanks for the things one has at the close of the harvest season, traditionally celebrated with a turkey feast."], "sculptor": ["a person who practices the art of sculpture."], "precede": ["To occur before something else, the fact that something occured earlier.", "To move ahead (of others) in time or space."], "Campania": ["Region in the South of Italy, bordering on Latium to the north-west, Molise to the north, Apulia to the north-east, Basilicata to the east, and the Tyrrhenian Sea to the west."], "Amalfi Coast": ["Geographical region in the region of Campania, province of Salerno, Italy."], "Salerno": ["City in the province of Salerno, region Campania, Italy.", "A province in the Campania region of Italy."], "hegemony": ["The dominance of one group, usually a nation, over other groups."], "attraction": ["A force that moves one object to another.", "The quality of arousing interest (being attractive or something that attracts)."], "basin": ["A bowl for washing hands, dishwashing or other purposes, often affixed to a wall.", "An area of water that drains into a river.", "A rock formation scooped out by water erosion.", "A natural depression in the surface of the land often covered with water (e.g. forming a lake).", "A bathroom or lavatory sink that is permanently installed and connected to a water supply and drainpipe."], "linen": ["A material made from the fibers of the flax plant."], "canvas": ["An extremely heavy-duty fabric popularly used as a painting surface."], "campus": ["The area in which a college or university and surrounding buildings are situated."], "myriagon": ["A polygon with 10,000 sides."], "chiliagon": ["A polygon with 1000 sides."], "hectagon": ["A polygon with 100 sides."], "pentacontagon": ["A polygon with 50 sides."], "tricontagon": ["A polygon with 30 sides."], "icosihenagon": ["A polygon with 21 sides."], "icosagon": ["A polygon with 20 sides."], "enneadecagon": ["A polygon with 19 sides."], "enneakaidecagon": ["A polygon with 19 sides."], "nonadecagon": ["A polygon with 19 sides."], "heptadecagon": ["A polygon with 17 sides."], "17-gon": ["A polygon with 17 sides."], "hexadecagon": ["A polygon with 16 sides."], "hexakaidecagon": ["A polygon with 16 sides."], "pentadecagon": ["A polygon with 15 sides."], "triskaidecagon": ["A polygon with 13 sides."], "dodecagon": ["A polygon with 12 sides."], "hendecagon": ["A polygon with eleven sides and eleven angles."], "decagon": ["A polygon with ten sides."], "enneagon": ["A polygon with nine sides."], "nonagon": ["A polygon with nine sides."], "octagon": ["A polygon with eight sides."], "hendecagonal": ["Having eleven sides, or having a cross-section in the form of a hendecagon."], "snowman": ["A manlike figure formed out of snow."], "snowball": ["Ball made of snow."], "arrogant": ["Having extreme self-confidence and overbearing pride.", "Having too high an opinion of oneself; showing superiority."], "presumptuous": ["Having extreme self-confidence and overbearing pride."], "cocksure": ["Having extreme self-confidence and overbearing pride."], "enneagonal": ["Having nine edges, or having a cross-section in the form of an enneagon."], "heptagon": ["A polygon with seven sides.", "(geometry) A polygon with seven sides and seven angles."], "hexagon": ["A polygon with six sides."], "pentagon": ["A polygon with five sides."], "triangular": ["Having three edges, or having a cross-section in the form of a triangle."], "quadrilateral": ["A polygon with four sides."], "kite": ["A flying tethered man-made object.", "A quadrilateral with two pairs of equal adjacent sides whose diagonals are perpendicular.", "A forbidden written message of one prisoner to another or to a person outside of prison."], "cabinet": ["A body of top government officials appointed to advise the President or the chief executive officer of a country, usually consisting of the heads of government departments or agencies.", "A body of high-ranking members of government, typically representing the executive branch.", "A storage closet either separate from, or built into, a wall."], "Austro-Bavarian": ["A language spoken in and around Bavaria."], "barbarism": ["A gross linguistic mistake."], "parallelogram": ["A quadrilateral that has two sets of opposite parallel sides."], "deltoid": ["A quadrilateral with two pairs of equal adjacent sides whose diagonals are perpendicular."], "rhombus": ["A parallelogram in which all of the sides are of equal length."], "rhomb": ["A parallelogram in which all of the sides are of equal length."], "moreover": ["In addition to what has been said."], "watchword": ["A prearranged reply to the challenge of a sentry."], "password": ["A prearranged reply to the challenge of a sentry.", "A string of characters, known only to a user, used, along with a user name, to log in to some computer or network etc."], "draughtsman": ["Someone employed in making mechanical drawings, as of machines, structures, etc."], "illuminance": ["Density of luminous flux received per unit of area, expressed in lux."], "Khmer": ["An austroasiatic language spoken primarily in Cambodia where it is an official language, and in the nearby regions of Vietnam."], "astrologer": ["Somone who practices astrology."], "Tajik": ["An Iranian language of the same group as Persian, spoken by more than four millions of people. It is the official language of Tajikistan."], "Tatar": ["A Turkic language spoken by the Tatars in some parts of Europe, Russia, Siberia, China, Turkey, Poland, Ukraine, Finland, and Central Asia."], "blinding": ["Causing blindness.", "Extremely bright."], "enhance": ["To make better, more useful, more beautiful through modification."], "nerd": ["Someone who is socially inept and unstylish; especially someone who is highly devoted to intellectual or academic pursuits.", "An insignificant student who is ridiculed as being affected or boringly studious.", "An intelligent but single-minded expert in a particular technical field or profession."], "ornament": ["A musical flourish that is used to decorate a melodic or harmonic line.", "An element of decoration.", "To make more attractive by adding ornament, colour, etc."], "tendency": ["A likelihood of behaving in a particular way or going in a particular direction."], "spade": ["Tool having a flat and sharp metal tip and a wooden handle used to break, dig and move the earth."], "Alemannisch": ["Any of the Alemannic dialects spoken in Switzerland, in Liechtenstein, in Vorarlberg, in Southern Baden, in Southern Allg\u00e4u, and in Alsace."], "astronomer": ["A scientist who studies astronomy or astrophysics."], "programmer": ["A person who creates or modifies computer software."], "crucifix": ["An ornamental or symbolic representation of Christ on a cross."], "first name": ["Name that is given to a person after birth and usually precedes the family name."], "given name": ["Name that is given to a person after birth and usually precedes the family name."], "eggnog": ["An alcoholic beverage based on milk, eggs, sugar, nutmeg and rum, brandy or whisky."], "nutmeg": ["Hard aromatic seed of the nutmeg tree (Myristica fragrans), used as spice when grated or ground."], "hip hop": ["Music genre typically consisting of a rhythmic vocal style called rap which is accompanied with backing beats."], "Sultan Ahmed Mosque": ["A mosque in Istanbul, Turkey."], "Evenki": ["The largest of the northern group of the Tungusic languages (or Manchu-Tungusic languages or Manchu-Tunguz languages). It is spoken by Evenkis in Russia, Mongolia and China."], "chili pepper": ["Any fruit of a plant of the botanical genus Capsicum, noted for their spicy and burning flavour due to presence of capsaicin."], "bell pepper": ["A mild fruit of the Capsicum."], "Sango": ["Language primary spoken in the Central African Republic, based on the language of the Sango tribe."], "Sangho": ["Language primary spoken in the Central African Republic, based on the language of the Sango tribe."], "muscle ache": ["Pain in the muscles after excercising which usually begins a few hours after the activity and subsides after a few days."], "Arab": ["A person of Arabic nationality."], "Madurese": ["A Malayo-Polynesian language of people from Madura island in Indonesia; also spoken on Kangean Islands, Sapudi Islands, and in northern part of province of East Java."], "Lao": ["Language of the Tai family, official language of Laos."], "Kinyarwanda": ["A language of Rwanda, the Democratic Republic of the Congo and Uganda."], "paradox": ["Statement that contains or implies a contradiction."], "Cebuano": ["Austronesian language spoken in the Philippines, subgroup of Bisaya, Visayan and Binisay\u00e2."], "Sugboanon": ["Austronesian language spoken in the Philippines, subgroup of Bisaya, Visayan and Binisay\u00e2."], "sugarcoat": ["To make something negative look better than it really is."], "Somali": ["East Cushitic language of the Afro-Asiatic family, spoken mostly in Somalia (including the break-away area of Somaliland) and adjacent parts of Djibouti (majority), Ethiopia and Kenya."], "Sinhala": ["Indo-Aryan language of the Indoeuropean languages, mother tongue of the Sinhalese, the largest ethnic group of Sri Lanka along with Tamil.", "An abugida script used to write the Sinhala language, spoken in Sri Lanka. It is also used to write Pali and Sanskrit."], "Shona": ["A Bantu language, a native language of Zimbabwe."], "ChiShona": ["A Bantu language, a native language of Zimbabwe."], "Sinhalese": ["Indo-Aryan language of the Indoeuropean languages, mother tongue of the Sinhalese, the largest ethnic group of Sri Lanka along with Tamil.", "An abugida script used to write the Sinhala language, spoken in Sri Lanka. It is also used to write Pali and Sanskrit."], "Singhalese": ["Indo-Aryan language of the Indoeuropean languages, mother tongue of the Sinhalese, the largest ethnic group of Sri Lanka along with Tamil."], "Quechua": ["Native American language of South America, language of the Inca Empire, and today spoken in various dialects by some 10 million people throughout South America, including Peru and Bolivia, southern Colombia and Ecuador, north-western Argentina and northern Chile."], "parboil": ["To cook briefly by boiling.", "To cook by dipping briefly into boiling water, then directly into cold water."], "definition": ["A concise explanation of the meaning of a word, phrase or symbol.", "A paraphrase describing a concept.", "One or more sentences UNIQUELY identifying a concept.", "Clarity of outline (e.g. of a body)."], "biochemist": ["Scientist who practices biochemistry."], "Sranan": ["A creole language spoken in Suriname."], "lemon": ["A yellow citrus fruit.", "A defective or inadequate item."], "grape": ["A small, round, smooth-skinned edible fruit, usually purple, red, or green, that grows in bunches on certain vines."], "demanding": ["Requiring much effort or expense."], "pear": ["A tree producing the pear fruit.", "A fruit produced by the pear tree."], "Sidamo": ["An Afro-Asiatic langugage, belonging to the Cushitic sub-phylum, spoken in Ethiopia.", "An Afro-Asiatic group of languages, belonging to the Cushitic sub-phylum.", "A type of Arabica coffee grown exclusively in the Sidamo Province of Ethiopia..", "An ethnic group whose homeland is in the Sidama Zone of the Southern Nations, Nationalities, and Peoples Region of Ethiopia."], "Acholi": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Akoli": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Acooli": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Atscholi": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Shuli": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Gang": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Lwoo": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Lwo": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Log Acoli": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Dok Acoli": ["A language primarily spoken by the Acholi people in the districts of Gulu, Kitgum and Pader, a region known as Acholiland in northern Uganda; also in the southern part of the Opari District of Sudan."], "Chuwash": ["A Turkic language spoken in the federal subject of Chuvashia, located in central Russia."], "Chovash": ["A Turkic language spoken in the federal subject of Chuvashia, located in central Russia."], "Chavash": ["A Turkic language spoken in the federal subject of Chuvashia, located in central Russia."], "Adangme": ["A Kwa language, very closely related to Ga, and together they form the Ga-Dangme branch within Kwa. Spoken in south-eastern Ghana."], "Dangme": ["A Kwa language, very closely related to Ga, and together they form the Ga-Dangme branch within Kwa. Spoken in south-eastern Ghana."], "Adangbe": ["A Kwa language, very closely related to Ga, and together they form the Ga-Dangme branch within Kwa. Spoken in south-eastern Ghana.", "A language of Ghana and Togo"], "Gurumukhi": ["A script derived from the Later Sharada script that was standardized by the second Sikh guru, Guru Angad Dev."], "Ischia": ["Ischia is a volcanic island in the Tyrrhenian Sea, at the northern end of the Gulf of Naples, Italy.", "A city on the island of Ischia, province of Naples, region of Campania, Italy."], "Bangubangu": ["A language of the Democratic Republic of the Congo."], "Akkadian": ["Semitic language (part of the greater Afro-Asiatic language family) spoken in ancient Mesopotamia, particularly by the Assyrians and Babylonians."], "Abnaki": ["Cover term for a complex of dialects of one of the Eastern Algonquian languages, originally spoken in what is now Vermont, New Hampshire, and Maine in the United States."], "Middle English": ["Diverse forms of the English language spoken between the Norman invasion of 1066 and the mid-to-late 15th century, when the Chancery Standard began to become widespread."], "Kagulu": ["A Bantu language spoken in Tanzania"], "Yeyi": ["A Bantu language spoken in Botswana."], "quixotic": ["Acting with the desire to do noble and romantic deeds, without thought of realism or practicality."], "Baluchi": ["A Northwestern Iranian language, principal language of the Baloch of Balochistan, a region in western Pakistan, eastern Iran and southern Afghanistan."], "Basaa": ["A Bantu language spoken in Cameroon in Centre and Littoral provinces."], "Bashkir": ["A Turkic language spoken by the Bashkirs living in Russian republic of Bashkortostan, as well as in neighboring Tatarstan and Udmurtia.", "A Turkic people who lives in Russia, mostly in the republic of Bashkortostan."], "Beja": ["An Afro-Asiatic language of the southern coast of the Red Sea, spoken by about two million nomads, the Beja, in parts of Egypt, Sudan, and Eritrea.", "A Portuguese city in Alentejo, capital of the District of Beja.", "District of Portugal, located in the south."], "Bemba": ["A Bantu language spoken in Zambia and the Democratic Republic of the Congo by the Bemba people.", "A language of Democratic Republic of the Congo."], "Buginese": ["A language spoken by people mainly in the southern part of Sulawesi, Indonesia and in Malaysia (Sabah)"], "Bikol": ["An Austronesian language used in the Philippines particularly on the Bicol Peninsula on the island of Luzon. (Source: Wikipedia)"], "Bini": ["A Benue-Congo language spoken in Edo State, Nigeria."], "Blackfoot": ["Any of the Algonquian languages spoken by the Blackfoot tribe of Native Americans, who currently live in the northwestern plains of North America. (Source: Wikipedia)", "The collective name of three First Nations in Alberta and one Native American tribe in Montana, in North America. (Source: Wikipedia)"], "Braj": ["A Central Indo-Aryan language closely related to Hindi, usually considered to be a dialect of Hindi."], "Brij Bhasha": ["A Central Indo-Aryan language closely related to Hindi, usually considered to be a dialect of Hindi."], "Carolinian": ["An Austronesian language spoken in the Northern Mariana Islands, where it is an official language."], "Church Slavic": ["The first literary Slavic language, developed from the Slavic dialect of Thessaloniki (Solun) by Saints Cyril and Methodius."], "Old Church Slavonic": ["The first literary Slavic language, developed from the Slavic dialect of Thessaloniki (Solun) by Saints Cyril and Methodius."], "Old Bulgarian": ["The first literary Slavic language, developed from the Slavic dialect of Thessaloniki (Solun) by Saints Cyril and Methodius."], "Old Macedonian": ["The first literary Slavic language, developed from the Slavic dialect of Thessaloniki (Solun) by Saints Cyril and Methodius."], "Choctaw": ["A Muskogean language, traditionally spoken by the Native American Choctaw people of the southeastern United States. (Source: Wikipedia)"], "Chagatai": ["An extinct Turkic language which was once widely spoken in Central Asia and most of Khorasan region. (Source: Wikipedia)"], "Chamorro": ["The native language of the Chamoru of the Northern Mariana Islands and Guam."], "Chibcha": ["An extinct Chibchan language of Colombia, formerly spoken by the Chibcha people. (Source: Wikipedia)"], "Iban": ["A Malayo-Polynesian language spoken by the Iban in Kalimantan (the Indonesian part of Borneo) and the Sarawak state region of Malaysia."], "Ilokano": ["Austronesian language spoken in the Republic of the Philippines."], "Iloko": ["Austronesian language spoken in the Republic of the Philippines."], "Ilocano": ["Austronesian language spoken in the Republic of the Philippines."], "Iluko": ["Austronesian language spoken in the Republic of the Philippines."], "Iloco": ["Austronesian language spoken in the Republic of the Philippines."], "Interlingua": ["An international auxiliary language (IAL) published in 1951 by the International Auxiliary Language Association (IALA)."], "Yao": ["A Bantu language spoken by the Yao at the southern end of Lake Malawi."], "Chiyao": ["A Bantu language spoken by the Yao at the southern end of Lake Malawi."], "Jao": ["A Bantu language spoken by the Yao at the southern end of Lake Malawi."], "Sesotho": ["A Bantu language, belonging to the Niger-Congo language family spoken by the Basotho nation (modern Lesotho)."], "Kabyle": ["A Berber language spoken by the Kabyle people."], "Achang": ["A language spoken by the Achang people in China and Myanmar.", "An ethnic people living in China and Myanmar."], "Caddo": ["A Caddoan language of the Southern Plains in North America, spoken by the Caddo Nation of Oklahoma. (Source: Wikipedia)"], "Kikamba": ["A Bantu language spoken by the Akamba people of Kenya, also believed to be spoken by some Bantu people in Tanzania (Thaisu). (Source: Wikipedia)"], "Kanuri": ["A language continuum of the Western Saharan subphylum of Nilo-Saharan family, spoken by mainly in Nigeria, Niger, Chad and Cameroon."], "Kara-Kalpak": ["A Turkic language mainly spoken by Karakalpaks in Karakalpakstan (Uzbekistan), as well as by Kazakhs, Bashkirs and Nogay."], "Karen": ["A group of languages of the Tibeto-Burman group of the Sino-Tibetan family, spoken by the Karen people, in Myanmar."], "Kashmiri": ["A Dardic language of the Indo-Aryan branch of the Indo-European family, spoken primarily in valley of Kashmir, divided between India and Pakistan.", "A person from or living in Kashmir.", "Relating to or from Kashmir."], "Kawi": ["A language extinct as a spoken language from the islands of Java, Bali, and Lombok."], "Khoisan": ["Languages composing the smallest phylum of African languages, historically spoken by the Khoisan (Khoi and Bushmen or San) people. (Source: Wikipedia)", "ISO 639-6 entity"], "penultimate": ["Next to the last in a sequence."], "librarian": ["A curator of a library."], "leek": ["A vegetable (Allium ampeloprasum var. porrum) having a bulb and long leaves and with a milder flavour than the onion."], "goldsmith": ["A metalworker who creates juwellery and objects made of gold and other precious metals."], "dessert": ["A sweet confection served as the last course of a meal."], "cryptic": ["Having a hidden meaning."], "congratulations": ["An expression of approval and commendation."], "dead tired": ["Very tired."], "economist": ["An individual who studies, develops, and applies theories and concepts from economics, and writes about economic policy."], "cassava": ["A starchy pulp made with the roots of the cassava plant.", "Shrub (Manihot esculenta) whose roots are rich in starch."], "Maa": ["A language of Viet Nam"], "neurologist": ["Medical specialist in neurology (the function and disease of the nerves and brain)."], "extinct language": ["A language that no longer has any native speakers."], "Eton": ["A language of Vanuatu", "A language of Cameroon."], "rice grain": ["A seed (grain) from the rice plant (Oryza sativa)."], "Faroese": ["A West Nordic or West Scandinavian language spoken in the Faroe Islands and in Denmark."], "Faeroese": ["A West Nordic or West Scandinavian language spoken in the Faroe Islands and in Denmark."], "manioc": ["A starchy pulp made with the roots of the cassava plant.", "Shrub (Manihot esculenta) whose roots are rich in starch."], "mango": ["A tropical Asian fruit tree, Mangifera indica.", "The fruit of the mango tree."], "sea-urchin": ["Zoophyte with a calcareous shell ornated with mobile spines."], "bear cub": ["A young bear."], "orthopedist": ["A medical specialist in correcting deformities of the skeletal system."], "lychee": ["The fruit of a Chinese tree, Litchi chinensis, that has a bright red fruit with a single stone surrounded by a fleshy white aril."], "hug": ["To squeeze someone in one's arms.", "The act of squeezing someone in one's arms."], "aril": ["A tissue surrounding the seed in certain fruits."], "embrace": ["To squeeze someone in one's arms.", "The act of squeezing someone in one's arms.", "To enfold or include in a metaphorical way, principles or ideas for example.", "To intimate or close encircling with the arms.", "To include in scope; include as part of something broader; have as one's sphere or territory."], "hardware": ["The part of a computer that is fixed and cannot be altered without replacement or physical modification."], "Ossetian": ["A language spoken in Ossetia, a region on the slopes of the Caucasus mountains on the borders of Russia and Georgia."], "Ossetic": ["A language spoken in Ossetia, a region on the slopes of the Caucasus mountains on the borders of Russia and Georgia."], "moo": ["(Interjection) Sound made by a cow.", "Sound made by a cow.", "To make the sound of a cow."], "endometriosis": ["A benign growth of endomitrial tissue outside the womb which often causes pain and infertility."], "endocrinologist": ["A person who studies or practices endocrinology."], "sexology": ["The science of sexuality."], "physical quantity": ["A quantity within physics that can be measured."], "sexologist": ["Scientist who practises sexology."], "kiwi": ["A Chinese gooseberry vine fruit, having a hairy brown skin and dark green flesh with fine black seeds.", "A flightless bird of the genus Apteryx native to New Zealand."], "Christmas tree": ["A conifer used during the Christmas holiday season, typically decorated with lights and ornaments and often a star at its tip."], "Advent calendar": ["Symbol of the holy season of Advent."], "woodland": ["Land covered with trees and woods."], "candlestick": ["A device on which one or more candles can be attached."], "candleholder": ["A device on which one or more candles can be attached."], "Bethlehem": ["City in the West Bank territory of Palestine."], "broil": ["To cook food with high heat with the heat applied directly to the food,"], "steak": ["A slice of meat cut from the fleshy part of an animal or of a large fish.", "A slice of meat cut from the fleshy part of a cow."], "gooseberry": ["An additional person that is neither necessary nor wanted in a given situation.", "Spiny Eurasian shrub having greenish purple-tinged flowers and ovoid yellow-green or red-purple berries.", "Currant-like, yellow-green or red-purple berry used primarily in jams and jellies."], "onomatopoeia": ["A word intended to represent a sound."], "content": ["In a state of satisfaction.", "What a communication contains word by word.", "Everything that is included in a collection and that is held or included in something.", "To satisfy in a limited way.", "To make content."], "awkward": ["Lacking grace or skill in manner or movement or performance.", "Difficult to handle, because of shape."], "bumbling": ["Lacking grace or skill in manner or movement or performance."], "gauche": ["Lacking grace or skill in manner or movement or performance."], "arbitrary": ["Determined by impulse rather than reason."], "arbiter": ["A person appointed, or chosen, by parties to determine a controversy between them."], "gooseberry bush": ["Spiny Eurasian shrub having greenish purple-tinged flowers and ovoid yellow-green or red-purple berries."], "geriatrics": ["A medical specialization, particular for eldery people with complicated medical problems."], "geriatrician": ["A medical specialist who practises geriatrics."], "geriatrist": ["A medical specialist who practises geriatrics."], "freemasonry": ["Worldwide widespread movement for humanitarianism which gives its supporters an understanding of the ideal of the noble humanity."], "sandbox": ["A virtual container in which untrusted programs can be safely run."], "crib": ["Depiction of the birth or birthplace of Jesus."], "cr\u00e8che": ["Depiction of the birth or birthplace of Jesus."], "Christmas": ["Annual celebration commemorating the birth of Jesus."], "Toki Pona": ["A minmalist constructed language designed by Sonja Elen Kisa."], "maybe": ["Expresses that a statement is uncertain."], "perhaps": ["Expresses that a statement is uncertain."], "mayhap": ["Expresses that a statement is uncertain."], "perchance": ["Expresses that a statement is uncertain."], "possibly": ["Expresses that a statement is uncertain."], "peradventure": ["Expresses that a statement is uncertain."], "jealous": ["Bitterly disappointed not to have something that someone else owns.", "Fearing that a beloved person has feelings for someone else or is loved by someone else."], "envious": ["Bitterly disappointed not to have something that someone else owns."], "Knaanic": ["West Slavic Jewish language, formerly spoken in the Czech lands (now the Czech Republic), extinct in the Late Middle Ages. The name Knaanic applied mainly to Judeo-Czech, but also to other Judeo-Slavic languages. (Source: Wikipedia)", "ISO 639-6 entity"], "Canaanic": ["West Slavic Jewish language, formerly spoken in the Czech lands (now the Czech Republic), extinct in the Late Middle Ages. The name Knaanic applied mainly to Judeo-Czech, but also to other Judeo-Slavic languages. (Source: Wikipedia)"], "Leshon Knaan": ["West Slavic Jewish language, formerly spoken in the Czech lands (now the Czech Republic), extinct in the Late Middle Ages. The name Knaanic applied mainly to Judeo-Czech, but also to other Judeo-Slavic languages. (Source: Wikipedia)"], "Judeo-Slavic": ["West Slavic Jewish language, formerly spoken in the Czech lands (now the Czech Republic), extinct in the Late Middle Ages. The name Knaanic applied mainly to Judeo-Czech, but also to other Judeo-Slavic languages. (Source: Wikipedia)"], "fall in": ["To become part of; to become a member of a group or organization."], "get together": ["To become part of; to become a member of a group or organization.", "To get together socially or for a specific purpose at a given place and time.", "To call or bring together."], "prevaricate": ["To knowingly say something that is untrue.", "To evade the truth; to be intentionally ambiguous."], "waffle": ["To evade the truth; to be intentionally ambiguous."], "millet": ["A group of small-seeded species of cereal crops, widely grown around the world for food and fodder."], "conceit": ["An over-high esteem of oneself; vain pride.", "Feeling of excessive pride."], "browser": ["An animal that feeds itself by picking the choice leaves from what is available.", "A software application used to locate and display Web pages."], "zest": ["The outer skin of a citrus fruit, used for flavouring.", "To spice up a meal using the skin of a citrus fruit."], "surgery": ["A surgical procedure.", "The science and practice of performing surgical operations."], "radiology": ["The branch of medical science dealing with the medical use of X-rays or other penetrating radiation."], "misogynist": ["Someone with an exaggerated aversion towards women."], "misanthrope": ["Someone who dislikes people in general."], "radiologist": ["A person who is skilled in or practices radiology."], "armillary sphere": ["Astronomical device that is used to measure celestial coordinates and to display the motion of celestial bodies."], "spherical astrolabe": ["Astronomical device that is used to measure celestial coordinates and to display the motion of celestial bodies."], "tulip": ["Any of numerous perennial bulbous flowering plants of the genus Tulipa."], "barley": ["A strong cereal of the genus Hordeum, or its grains, often used as food or to make malted drinks."], "daffodil": ["A group of hardy, mostly spring-flowering, bulbs of the genus Narcissus."], "buckwheat": ["(Fagopyrum esculentum) An annual plant with clusters of small pinkish white flowers and small edible triangular seeds which are used whole or ground into flour."], "bowwow": ["Childish word for \"dog\"."], "bow-wow": ["Childish word for \"dog\"."], "blog": ["A frequent and chronological publication of comments and thoughts on the web.", "To post a message on a blog."], "weblog": ["A frequent and chronological publication of comments and thoughts on the web."], "plethora": ["An overflowing fullness."], "nephrologist": ["A doctor who specializes in nephrology."], "polemic": ["A strong verbal or written attack; the practice of engaging in controversial debate."], "hyperbole": ["An extreme exaggeration or overstatement; especially as a literary or rhetorical device."], "figure of speech": ["A word or phrase that departs from straightforward, literal language."], "digit": ["(arithmetic) A numeral that can be combined with others to write larger numbers, and that cannot itself be split into other numerals.", "One of the five extremities that can be found on a hand or a foot."], "Avaric": ["A Northeast Caucasian language, spoken mainly in the eastern and southern parts of the Republic of Dagestan and the Zakatala region of Azerbaijan."], "squeezable": ["Easily squeezed."], "injunction": ["A writ or process by a court of law, whereby a party is required to do or to refrain from doing certain acts."], "cherry": ["A small fruit, usually red, black or yellow, with a smooth hard seed and a short hard stem (Prunus avium and some other fruits of similar appearance in the Prunus genus).", "Wood of the cherry tree."], "polar bear": ["Big bear that is native to the northern polar region."], "white whale": ["(Delphinapterus leucas) An Arctic and sub-Arctic species of cetacean, all white in color with a distinctive melon-shaped head."], "beluga": ["(Delphinapterus leucas) An Arctic and sub-Arctic species of cetacean, all white in color with a distinctive melon-shaped head."], "white beluga": ["(Delphinapterus leucas) An Arctic and sub-Arctic species of cetacean, all white in color with a distinctive melon-shaped head."], "beluga whale": ["(Delphinapterus leucas) An Arctic and sub-Arctic species of cetacean, all white in color with a distinctive melon-shaped head."], "sea canary": ["(Delphinapterus leucas) An Arctic and sub-Arctic species of cetacean, all white in color with a distinctive melon-shaped head."], "bison": ["A wild heavy bison of the species Bison bison, having a broad massive horned head."], "optics": ["The branch of physics which describes the behaviour of light."], "essay": ["Short disquisition about a theme."], "Cologne": ["The fourth biggest city in Germany, which is located in Northrhine-Westphalia."], "lavender": ["Having the color of lavender."], "lavender oil": ["Essential oil made out of lavender flowers."], "St. Nicholas' Day": ["The evening of the \"Sinterklaas\" festivities with presents and treats like \"speculaas\" and \"banket\" traditionally on the fifth of December."], "optician": ["A person who makes or sells lenses and spectacles."], "psychiatry": ["A medical specialty which exists to study, prevent, and treat mental disorders in humans."], "stem cell": ["Primal cell that can renew indefinitely and differentiate into several kinds of specialized cells."], "choux pastry": ["Light pastry dough made \u200b\u200bfrom flour, butter and eggs and used to make cakes."], "zounds": ["A mild swear expressing surprise or indignation."], "gadzooks": ["A mild swear expressing surprise or indignation."], "thumbtack": ["A nail with a large head."], "chore": ["A task or piece of work that must be done, especially one that is routine, difficult, or unpleasant."], "inchoate": ["Recently started but not fully formed yet."], "stallion": ["An uncastrated male horse."], "pathologist": ["A specialized doctor who treats pathologies."], "psychiatrist": ["A doctor specialized in psychiatry."], "Wiktionary": ["A free online-dictionary created by voluntary writers."], "mare": ["An adult female horse.", "The darker parts of the moon's surface."], "gelding": ["A castrated male horse."], "inundate": ["To cover with large amounts of water."], "Nynorsk": ["One of two official writing standards of Norwegian, derived from dialects, the other being Bokm\u00e5l."], "entertainer": ["A person who tries or whose job is to please, entertain or amuse."], "task": ["A piece of work done as part of one\u2019s duties."], "music lover": ["Someone who is passionate about music."], "nursery web spider": ["Spider of the family Pisauridae which is common in all of Europe."], "agglomeration": ["An extended city or town area comprising the built-up area of a central place (usually a municipality) and any suburbs or adjacent satellite towns."], "Massa": ["A town and commune in Tuscany, Italy."], "meteorologist": ["Someone who studies the weather professional."], "whirlwind": ["The upward-whirling, moist air that can form in a thunderstorm."], "sovereign": ["Someone or something that has legal independence.", "Acting as the final authority."], "palindrome": ["A symmetrical word that read from left to right is the same as when read right to left."], "Christmas carol": ["A Christmas relating song."], "persuade": ["To cause somebody to adopt a certain position, belief, or course of action.", "To make someone believe, or feel sure about something, especially by using logic, argument or evidence."], "incandescent": ["Glowing white because of intense heat.", "Emitting light as a result of being heated.", "Showing intense emotion, as of a performance, etc."], "white-hot": ["Glowing white because of intense heat."], "red-hot": ["Glowing red with heat."], "persuasion": ["A strongly held conviction, opinion or belief."], "Pennsylvania Deitsch": ["A language spoken in the United States and Canada, it is a blending of several German dialects."], "Pennsylvania Dutch": ["A language spoken in the United States and Canada, it is a blending of several German dialects."], "Pennsylvania German": ["A language spoken in the United States and Canada, it is a blending of several German dialects."], "apocope": ["A figure in which the last syllable of a word is omitted, mainly used in poetry, in order to improve rhythm or rhyme."], "musicology": ["The scientific study of music at university level."], "chordophone": ["A musical instrument on which sounds are produced by setting strings in vibration."], "idiophone": ["A musical instrument (percussion instrument) made of material that is naturally rich of sound."], "menorah": ["A candelabrum with seven branches, a traditional symbol of Judaism"], "rabbi": ["A Jewish spiritual teacher."], "omega": ["The last letter of the modern and of the classical Greek alphabet. Uppercase version: \u03a9; lowercase: \u03c9."], "musician": ["A man who makes music, either by using his voice or by playing an instrument.", "A woman who makes music, either by using her voice or by playing an instrument.", "Somebody who makes music, either by using his voice or by playing an instrument."], "transverse flute": ["A transverse (or side-blown) woodwind instrument."], "bow": ["A slightly curved wooden object used in playing certain stringed instruments.", "A weapon made of a curved piece of wood or other flexible material whose ends are connected by a string, used for shooting arrows.", "The front of a boat or ship.", "To bend one's back forward."], "moonless": ["Without a visible moon, without moonshine."], "moonlit": ["Illuminated by the moon."], "vampire": ["Immortal being which drinks the blood of mortals to survive.", "Bat feeding on the blood (hematophagous) of large mammals such as horses or bovines."], "impale": ["To pierce with a pale."], "stake": ["Long piece of wood which is pointed at one end."], "pale": ["Bright of colour.", "Long piece of wood which is pointed at one end.", "Referred to a work of art and similar: poorly endowed with expressive power and low value.", "Deficient in color (especially of skin) as suggesting physical or emotional distress."], "Class attribute levels": ["Class attribute levels"], "DefinedMeaning": ["The combination of an expression and definition in one language defining a concept."], "SynTrans": ["A translation or a synonym that is equal or near equal to the concept defined by the defined meaning."], "alphorn": ["A wind instrument, consisting of a natural wooden horn of conical bore, having a cup-shaped mouthpiece, used by mountain dwellers in Switzerland and elsewhere."], "bubble policy": ["EPA policy that allows a plant complex with several facilities to decrease pollution from some facilities while increasing it from others, so long as total results are equal to or better than previous limits. Facilities where this is done are treated as if they exist in a bubble in which total emissions are averaged out.\\n(Source: EPAGLO)"], "lexical item": ["OmegaWiki class related to dictionary-like items.", "Linguistic unit that is a basic element of the lexicon and is stored and used by speakers of a particular language."], "example sentence": ["Usage example for a lexical item."], "Congolese": ["Of or pertaining to the Democratic Republic of the Congo (DRC), Congo-Kinshasa, or its people.", "A national of the Democratic Republic of the Congo"], "held for damages": ["Having the judicial or moral obligation to perform indemnification."], "liable for damages": ["Having the judicial or moral obligation to perform indemnification."], "liable to indemnify": ["Having the judicial or moral obligation to perform indemnification."], "liable to pay damages": ["Having the judicial or moral obligation to perform indemnification."], "counterpoint": ["In music, the combination of two or more melodic lines played against one another."], "ambitus": ["In music, the range or the distance between the highest and lowest note."], "archegonium": ["Multicellular structure of some plants that products and protects the eggs."], "day after": ["The following day."], "morrow": ["The period of time from the start of the day (midnight) until midday (12:00).", "The following day."], "bluish": ["Somewhat blue."], "blueish": ["Somewhat blue."], "reddish": ["Somewhat red."], "greenish": ["Somewhat green."], "lutescent": ["Somewhat yellow."], "yellowish": ["Somewhat yellow."], "flavescent": ["Somewhat yellow."], "bonsai": ["Miniaturized tree that grows in a container."], "strain": ["A stimulus or succession of stimuli of such magnitude as to tend to disrupt the homeostasis of the organism.", "To separate or isolate components from one another with the help of a filter.", "A succession of notes forming a distinctive sequence.", "A group of individuals derived by descent from a single individual within a species.", "Injury to a muscle due to overstretching of the muscle fibers.", "A population or type of organisms that is genetically different from others of the same species and possessing a set of defined characteristics.", "Nervousness resulting from mental stress.", "To separate by passing through a sieve or other straining device to separate out coarser elements.", "Deformation of a physical body under the action of applied forces.", "Difficulty that causes worry or emotional tension.", "The general meaning or substance of an utterance.", "An effortful attempt to attain a goal.", "An intense or violent exertion.", "The act of singing.", "To test the limits of.", "To exert much effort or energy on (e.g. ears, eyes, etc.).", "To use to the utmost; exert vigorously or to full capacity.", "To cause to be tense and uneasy or nervous or anxious.", "To rub through a strainer or process in an electric blender.", "To alter the shape of (something) by stress.", "To become stretched or tense or taut."], "filtrate": ["To separate or isolate components from one another with the help of a filter."], "earthling": ["An inhabitant of planet Earth."], "Martian": ["An inhabitant of planet Mars.", "Of or relating to the planet Mars.", "Of or relating to Martians."], "midnight": ["The middle of the night; twelve o'clock at night."], "warthog": ["African suid (Phacochoerus africanus) having two tusks."], "gong": ["A percussion instrument consisting of a metal plate that is struck with a softheaded drumstick."], "jazz": ["Musical style born in New Orleans from a combination of styles of folk music, blues, African, ragtime and traditional."], "timpani": ["A brass percussion instrument with a defined pitch."], "brownish": ["Somewhat brown."], "silvery": ["Glittering like silver, resembling silver.", "Having a clear, high-pitched sound."], "New Year": ["The first day of a calendar year, in particular, January 1 in the Julian and Gregorian calendar."], "New Year's Eve": ["The holiday (and parties) held on the evening of the last day of the year, December 31st."], "champagne": ["A sparkling white wine made from a blend of grapes, especially Chardonnay and pinot, produced in Champagne by the m\u00e9thode champenoise."], "firework": ["A device using gunpowder and other chemicals which, when lit, emits a combination of coloured flames, sparks, whistles or bangs for entertainment purposes."], "firecracker": ["A firework consisting of a string of bangers linked by a fuse designed to emit a series of loud bangs when lit."], "skyrocket": ["A type of firework that uses a solid rocket motor to rise quickly into the sky where it emits a variety of effects such as stars, bangs, crackles, etc."], "nutcracker": ["A mechanical device used for cracking nuts."], "solstice": ["Either of the two events of the year when the sun is at its greatest distance from the equatorial plane."], "mead": ["Wine made of honey."], "vowel": ["A sound of the voice produced by the vibration of the voice box modified by a more or less large opening of the mouth.", "A letter used to indicate a sound of the voice produced by the vibration of the voice box modified by a more or less large opening of the mouth."], "consonant": ["A sound of the voice produced by the different organs of the mouth, characterized by the obstruction of the passage of air.", "A letter of the alphabet that is not a vowel."], "Kosovar": ["An citizen of Kosovo.", "From, or relating to Kosovo."], "Kosovan": ["An citizen of Kosovo.", "From, or relating to Kosovo."], "bongo": ["A small drum, generally played in a pair that are designed to sound harmonically together."], "flugelhorn": ["A copper wind instrument in b flat or e flat, or sporadically also in C with three valves, which is an important instrument in brass bands."], "canon": ["A valley, especially a long, narrow, steep valley, cut in rock by a river.", "A generally accepted principle."], "chipmunk": ["Any squirrel of the genus Tamias."], "lethal": ["Causing death or having the ability to cause death."], "deadly": ["Causing death or having the ability to cause death.", "Exceedingly harmful."], "Christmas Eve": ["The evening of December 24th and in some European countries the traditional time for opening the presents."], "pun": ["A figure of speech which consists of a deliberate confusion of similar words or phrases for rhetorical effect, whether humorous or serious."], "paronomasia": ["A figure of speech which consists of a deliberate confusion of similar words or phrases for rhetorical effect, whether humorous or serious."], "chocolate bar": ["An oblong confectionery covered with chocolate."], "Egyptian": ["A person of Egyptian nationality or descent.", "Of or relating to Egypt or Egyptians.", "A woman of Egyptian nationality or descent."], "Syrian": ["Of or relating to Syria or Syrians.", "A person of Syrian nationality."], "Palestinian": ["Of or relating to Palestine or Palestinians.", "A person of Palestinian nationality."], "Israeli": ["Of or relating to Israel or Israelis."], "Lebanese": ["Of or relating to Lebanon or the Lebanese people.", "A person of Lebanese nationality."], "zither": ["A string instrument which is mainly used in the German-speaking part of Europe."], "cither": ["A string instrument which is mainly used in the German-speaking part of Europe."], "cittern": ["A string instrument which is mainly used in the German-speaking part of Europe."], "synchrotron": ["Cyclic particle accelerator in which the electromagnets, which control the speed and the trajectory of the particles being accelerated, are synchronized with the particle beam."], "bassoon": ["A wind instrument with a gentle bass tone."], "pan flute": ["A musical instrument, played by mouth, comprising tubes arranged in order of length."], "panpipes": ["A musical instrument, played by mouth, comprising tubes arranged in order of length."], "honey": ["A viscous, sweet substance produced from nectar or honeydew by bees."], "walnut": ["The fruit of the walnut tree.", "Large deciduous tree (Juglans regia) in the Walnut Family (Juglandaceae) which produces an edible fruit with a hard shell and oil-rich seed."], "hazelnut": ["The fruit of the hazel tree."], "Iranian": ["Of or relating to Iran, Iranians, or the Persian language.", "A person of Iranian nationality or of Iranian descent."], "Jewish": ["Of or relating to Jews or Judaism."], "Jew": ["A follower of Judaism."], "robin": ["A bird of the species Erithacus rubecula from the family of the Old World flycatchers (Muscicapidae) with bright red chest and gorge."], "European robin": ["A bird of the species Erithacus rubecula from the family of the Old World flycatchers (Muscicapidae) with bright red chest and gorge."], "robin redbreast": ["A bird of the species Erithacus rubecula from the family of the Old World flycatchers (Muscicapidae) with bright red chest and gorge."], "Judaism": ["A religion tracing its origin to the Hebrew people of the ancient Middle-East, as documented in their religious writings, the Torah or Old Testament."], "mullet": ["(Mugilidae) Family of ray-finned fish (Actinopterygii)."], "Serbian (Cyrillic script)": ["Serbian language written in the Cyrillic script."], "translate": ["To change a written or spoken text from one language to another."], "ocarina": ["A flute that is often made of baked clay."], "convert": ["To transform or change (something) into another form, substance, state, or product.", "To exchange something old or something that has become unusable for something else of the same kind.", "To cause to adopt a new or different religious belief or faith.", "To exchange a penalty for a less severe one.", "To change religious beliefs, or adopt a religious belief.", "To change the nature, purpose, or function of something.", "To change from one system to another or to a new plan or policy."], "convertible": ["A car whose roof can be removed."], "fetch": ["To go somewhere to bring back something.", "To go or come after and bring or take back."], "Dubai": ["City of the United Arab Emirates, main city of the Dubai emirate.", "One of the seven emirates of the United Arab Emirates."], "Dubai City": ["City of the United Arab Emirates, main city of the Dubai emirate."], "The Hague": ["The administrative capital of the Netherlands."], "motivate": ["To provide someone with an incentive to do something."], "bow tie": ["A ribbon of fabric tied around the collar which is worn with formal attire by men."], "mandolin": ["A stringed instrument and a member of the lute family."], "professor": ["A teacher or faculty member at a college or university."], "factorial": ["Mathematical function of a non-negative integer n given by the product of all positive integers less than or equal to n (denoted by n!)."], "slow down": ["Reduce the velocity.", "To become slower."], "decelerate": ["Reduce the velocity.", "To become slower."], "speed up": ["To go faster.", "To make faster.", "To move faster.", "To cause to move faster."], "accelerate": ["To go faster.", "To make faster.", "To move faster.", "To cause to move faster."], "camera": ["A device for taking still photographs.", "A device for recording moving pictures on to film or video."], "slow up": ["Reduce the velocity.", "To become slower."], "Christmas cookies": ["Sweet small cookies which are eaten at Christmas time."], "Gilbertese": ["A language of Kiribati."], "celebration": ["The joyous observation on the occasion of either something joyful that is happening or has just happened."], "ballpoint": ["A pen, similar in size and shape to a pencil, having an internal chamber filled with a viscous, quick-drying ink that is dispensed at the tip during use by the rolling action of a metal sphere."], "viscous": ["Having a thick, sticky consistency between solid and liquid."], "solid": ["Resistant to pressure.", "A fundamental state of matter that retains its size and shape without need of a container.", "In the solid state; not fluid.", "Acting together as a single undiversified whole."], "diesel": ["Heavy oil residue used as fuel for certain types of diesel engines."], "shortcut": ["A route shorter than the usual one."], "metaphor": ["A figure of speech in which an expression is used which refers to something that it does not literally denote in order to suggest a likeness or comparison."], "harbinger": ["A person or thing that foreshadows or foretells the coming of someone or something."], "Merry Christmas": ["A Christmas greeting."], "complement": ["Something added to complete or make perfect."], "supplement": ["Something added, especially to make up for a deficiency."], "high tension": ["Electric voltage of more than 1,000 Volt."], "high voltage": ["Electric voltage of more than 1,000 Volt."], "handy": ["Comfortable and easy to use."], "habile": ["Comfortable and easy to use."], "manageable": ["Capable of being managed or controlled.", "Capable of existing or taking place or proving true; possible to do."], "Inuktitut": ["Macrolanguage spoken in Canada by the Inuit people, containing two languages: Eastern Canadian Inuktitut, and Western Canadian Inuktitut.", "A language spoken in Canada by the Inuit people in most of Nunavut, and Nunavik, Quebec."], "pleased": ["In a state of satisfaction.", "Being satisfied with a situation and finding no fault with it."], "bulb": ["A filament surrounded by glass which is screwed into the socket of a lamp and which emits light when supplied with current."], "electric bulb": ["A filament surrounded by glass which is screwed into the socket of a lamp and which emits light when supplied with current."], "light bulb": ["A filament surrounded by glass which is screwed into the socket of a lamp and which emits light when supplied with current."], "tip": ["A site where garbage is collected and buried.", "Cue, advice or hint that helps someone or is meant to help", "A voluntary additional payment made for services rendered."], "irascible": ["Quickly provoked or inflamed to anger."], "choleric": ["Quickly provoked or inflamed to anger."], "irritable": ["Quickly provoked or inflamed to anger."], "kabuki": ["Traditional Japanese theatre, a combination of acting, dance and music."], "judo": ["A Japanese martial art and sport adapted from jujitsu."], "sole": ["The bottom of a shoe, footwear or boot.", "The underside of the human foot.", "A flatfish of the family Soleidae."], "anemometer": ["A device for measuring the velocity or the pressure of the wind."], "wise guy": ["A person who constantly corrects others."], "keyboard instrument": ["A class of musical instruments that is played using a musical keyboard. A musical keyboard consists of 7 white and 5 black keys per octave."], "Happy New Year": ["The traditional wish for New Year's Day."], "bureaucrat": ["Man, who is overly concerned with existent laws and formal aspects.", "Woman, who is overly concerned with existent laws and formal aspects.", "Person, who orientates overly at existent laws and formal aspects"], "paper-shuffler": ["Man, who is overly concerned with existent laws and formal aspects.", "Woman, who is overly concerned with existent laws and formal aspects.", "Person, who orientates overly at existent laws and formal aspects"], "disappointment": ["The emotion felt when a strongly held expectation is not met."], "second hand": ["Previously owned and used by another.", "The hand of a clock or watch that counts the seconds."], "secondhand": ["Previously owned and used by another."], "Unified Medical Language System": ["A controlled compendium of many medical vocabularies which also provides a mapping structure between them."], "UMLS": ["A controlled compendium of many medical vocabularies which also provides a mapping structure between them.", "Placeholder for the UMLS database."], "shepherd": ["A person who tends sheep."], "dromedary": ["A one-humped camel (Camelus dromedarius) of the hot deserts of northern Africa and south western Asia."], "mumps": ["An infectious disease which occurs mostly in childhood and is characterized by swelling of the face and parotid gland."], "astronaut": ["Member of the crew of a spacecraft."], "cosmonaut": ["Member of the crew of a spacecraft."], "spaceman": ["Member of the crew of a spacecraft."], "spationaut": ["Member of the crew of a spacecraft."], "taikonaut": ["Member of the crew of a spacecraft."], "bagpipes": ["A reed instrument whereby the reed is played indirectly through an airbag."], "Merry Christmas and a happy New Year": ["Usual way to wish each other happy holidays at the end of the year in the period between December 25 and the first of January."], "pseudo": ["Person, who wants to be more than he or she is."], "wannabe": ["Person, who wants to be more than he or she is."], "wanna-be": ["Person, who wants to be more than he or she is."], "would-be": ["Person, who wants to be more than he or she is."], "pony": ["Any of several small breeds of horse with less than 150 cm (14.2 hands 58 inches) at the withers."], "ponytail": ["A hairstyle where the hair is pulled back and tied into a single \"tail\" which hangs down behind the head."], "gift ribbon": ["Ribbon used to decorate packed gifts."], "theory of relativity": ["Theory of Albert Einstein, composed by two scientific theories in physics: special relativity and general relativity. These theories were conceived in order to explain the fact that electromagnetic waves do not conform to the Newtonian laws for motion (source: Wikipedia)."], "liberalism": ["A political movement founded on the autonomy and personal freedom of the individual, progress and reform, and government by law with the consent of the governed."], "mother tongue": ["The first language learnt; the language one grew up with.", "The language one first learned; the language one grew up with; one's native language."], "smart-alecky": ["Convinced to know everything better."], "native language": ["The first language learnt; the language one grew up with.", "The language of a Native or Aboriginal people."], "native tongue": ["The first language learnt; the language one grew up with."], "anarchist": ["An advocate of the ideologies of anarchy."], "anarchic": ["Of or relating to anarchy, anarchists, or the actions and ideas of anarchists."], "communist": ["A man who advocates the ideology of communism.", "A woman who advocates the ideology of communism.", "A person who advocates the ideology of communism."], "communistic": ["Of or relating to communism, communists, or the actions and ideas of communists."], "salmon": ["One of several species of fish of the Salmonidae family."], "flesh": ["The edible inner of fruit, as opposed to that of animals, fish or nuts."], "spear": ["a long, stabbing weapon for thrusting or throwing, consisting of a wooden shaft to which a sharp-pointed head, as of iron or steel, is attached.", "To penetrate or strike with, or as if with, any long narrow object. To make a thrusting motion that catches an object on the tip of a long device."], "thingamajig": ["Something whose name you forgot"], "superfluous": ["More than is needed, desired, or required."], "give in": ["To stop to oppose or resist."], "capitulate": ["To stop to oppose or resist."], "inn": ["Any establishment where travellers can procure lodging, food, and drink."], "Interlingue": ["A planned language created by the Baltogerman naval officer and teacher Edgar de Wahl and published in 1922."], "preposition": ["A word or phrase able to connect a following noun or noun phrase (and often other parts of the speech) as a complement to some other part of the sentence, expressing a relation between them."], "Occidental": ["A planned language created by the Baltogerman naval officer and teacher Edgar de Wahl and published in 1922."], "pronoun": ["A word that is used instead of a noun or noun phrase; a word used as a reference to another word."], "definite article": ["An article used before singular and plural nouns that refer to a particular member of a group."], "indefinite article": ["An article used before singular nouns that refer to any member of a group."], "timetable": ["A register of schedules of trains for a defined area and a defined period.", "Register of the public transport links and the times of arrivals and departures."], "schedule": ["Register of the public transport links and the times of arrivals and departures.", "A time-based plan of events. A plan of what is to occur, and at what time it is to occur."], "time table": ["Register of the public transport links and the times of arrivals and departures."], "time-table": ["Register of the public transport links and the times of arrivals and departures."], "relative pronoun": ["A word that introduces a subordinate relative clause within a larger sentence and refers to a previously used noun."], "possessive adjective": ["A word which indicates a possession; it is used with a noun."], "possessive determiner": ["A word which indicates a possession; it is used with a noun."], "possessive article": ["A word which indicates a possession; it is used with a noun."], "interrogative pronoun": ["A pronoun that is used to ask about something or somebody."], "reflexive pronoun": ["A pronoun that refers to the subject of the verb itself. It can happen if the action is done on the subject itself, or if the verb itself is reflexive."], "conjunction": ["Word or phrase grammatically connecting together words or phrases belonging to a same part of speech.", "The position of two celestial bodies such that they have the same geografical longitude.", "A logical operator that results in true when all of its operands are true."], "interjection": ["A word used to express feelings."], "Hannukah": ["An eight-day Jewish holiday commemorating the rededication of the Temple of Jerusalem in 165 BC"], "Dzongkha": ["A language of the Sino-Tibetan family, spoken in Bhutan, India and Nepal."], "comedy of errors": ["A theater play, movie, or the like, where mix-ups of persons or concepts, mistaken assumption, planned or accidental misunderstandings, betrayal, and confusion play a central role in the plot. Usually, the audience has most or all background knowledge, while acting characters remain confied to a limited individual sight. Both fun and excitement or thrill stem from these conflicting sights."], "proper name": ["Any word or phrase which designates a particular person, place, class or thing."], "sedate": ["To tranquilize by giving a sedative."], "proper noun": ["Any word or phrase which designates a particular person, place, class or thing."], "scream": ["To speak with a loud, excited voice.", "To utter a sudden and loud outcry."], "stream": ["A small river or large creek; a body of moving water confined by banks.", "Movement of political or artistic opinions or the whole of the people that are part of it."], "encounter": ["To encounter something by accident or after searching for it.", "To come together with someone by accident.", "To contend against an opponent in a sport, game, or battle."], "bauble": ["An ornament that is hung on a Christmas tree.", "An unsubstantial thing."], "Christmas ball": ["An ornament that is hung on a Christmas tree."], "bother": ["To cause annoyance in; disturb, especially by minor irritations.", "To make someone rather angry or impatient; to cause annoyance.", "Something which annoys.", "To have an unwanted negative influence on someone, to be distractive to or for someone, impress someone or something in a troublesome or uneasy way.", "To intrude or enter uninvited."], "thorny": ["Having thorns."], "copula": ["A verb that that links two parts of a sentence, indicating that one part is the property of the other. The part which indicates the property is the nominal part.", "A word (often but not always a verb) that links the subject of a sentence with a predicate."], "expansion": ["The act of increasing something in size or volume or quantity or scope.", "An increase in economic and industrial activity."], "repetition": ["The occurrence of an event which has occurred before."], "iteration": ["A single repetition of the code of a computer program within such a loop."], "Islam": ["A religion based on the teachings of the prophet Muhammad."], "Shi'a": ["A branch of Islam whose followers believe that Muhammad designated his son-in-law, Ali, to succeed him as leader, and that their leaders have special sacred wisdom."], "topic": ["The general category, often stated in a word or phrase, to which the ideas of a passage as a whole belong.", "The subject of discourse; the point at issue."], "augmentative": ["A noun which is provided with a suffix or a preposition to give to that word a greater intensity."], "gluten": ["A sticky substance composed of the proteins gliadin and glutenin. It is left when starch is removed from flour, especially wheat, rye, and barley flour."], "spidery": ["Like a spider.", "Like a spider's web.", "Full of spiders."], "bachelor": ["In Europe the first academic degree which can be got by students of an academy as a certificate of a scientifical education.", "An unmarried man."], "tom": ["The male of the domesticated cat."], "tomcat": ["The male of the domesticated cat."], "leech": ["A worm-like creature that lives in water and sucks blood from animals."], "truck": ["A large motor vehicle of more than 3,500 kilograms designed for carrying cargo.", "Any motor vehicle designed for carrying cargo, including vans and pickups.", "To convey (goods etc.) by truck."], "gull": ["A seabird of the genus Larus or of the family Laridae.", "A person who is gullible and easy to take advantage of."], "semantic drift": ["A gradual change in one of the meanings of a word."], "procrastination": ["Putting off or delaying or defering an action to a later time."], "South Ossetia": ["A self-proclaimed republic within the internationally recognized borders of Georgia."], "kitten": ["A young cat."], "eponym": ["A person, real or fictional, whose name is used to denote a certain object or activity.", "A word derived from the name of a person."], "Hajj": ["The Pilgrimage to Mecca in Islam, every able-bodied Muslim who can afford to do so is obliged to make the pilgrimage to Mecca at least once in his or her lifetime."], "journal": ["Print product for entertainment being informative, enjoyable and rich in pictures."], "mag": ["Print product for entertainment being informative, enjoyable and rich in pictures."], "magazine": ["Print product for entertainment being informative, enjoyable and rich in pictures."], "periodical": ["Print product for entertainment being informative, enjoyable and rich in pictures.", "A printed work that appears regularly."], "therapist": ["One who practices therapy, usually professionally."], "determiner": ["A noun modifier that expresses the reference of a noun or noun phrase in the context, including quantity, rather than attributes expressed by adjectives."], "buzz word": ["A word or phrase of general use, but not over a long period."], "contraction": ["A shortening of a word, syllable, or word group by omission of internal letters.", "Painful rhythmic motion of the muscles of the uterus before and during childbirth."], "misspell": ["To say the letters that make up a word, one after the other."], "respell": ["To say the letters that make up a word, one after the other."], "infusion": ["Water in which dried plant parts, other than tea leaves, are boiled or steeped."], "herbal tea": ["Water in which dried plant parts, other than tea leaves, are boiled or steeped."], "fatty": ["A cigarette rolled using cannabis.", "Made of fat.", "Containing fat.", "(Pejorative) A fat or overweight person."], "stout": ["(Concerning a person) He who carries a lot of fat.", "Very fat; pretty obese."], "greasy": ["Smeared or soiled with grease or oil."], "adversary": ["Man who is hostile to, feels hatred towards, opposes the interests of, or intends injury to someone else."], "antagonist": ["Man who is hostile to, feels hatred towards, opposes the interests of, or intends injury to someone else."], "foe": ["Man who is hostile to, feels hatred towards, opposes the interests of, or intends injury to someone else."], "intimidating": ["Instilling fear."], "vengeful": ["Desiring vengeance."], "revengeful": ["Desiring vengeance."], "euphemism": ["A word or figure of speech that makes something look prettier than it is."], "annotation": ["Characteristic information of a concept.", "A comment added to a text.", "A critical or explanatory note added to a text.", "A comment or instruction."], "connotation": ["The associated or secondary meaning of a word or expression in addition to its explicit or primary meaning."], "Mecca": ["A city of Saudi Arabia, the most important holy city of Islam."], "Erz Mountains": ["Low mountain range that is located part in Saxony, Germany, part in the Czech Republic."], "North Rhine-Westphalia": ["A federal state of Germany, which has the capital D\u00fcsseldorf."], "hapax legomenon": ["Word or linguistic form in a given language attested only once in a single text or by a single author."], "portmanteau": ["A blend of two meanings packed up into one word."], "Saxony-Anhalt": ["A federal state of Germany, whose capital is Magdeburg."], "Mecklenburg-Western Pomerania": ["Federal state of Germany, whose capital is Schwerin."], "Brandenburg": ["Federal State of Germany, whose capital is Potsdam."], "Hesse": ["Federal State of Germany, whose capital is Wiesbaden."], "OK": ["Colloquial expression of acceptance."], "ok": ["Colloquial expression of acceptance."], "okay": ["Colloquial expression of acceptance.", "An indication of agreement, surprise, skepticism or irony.", "In a satisfactory or adequate manner."], "hostage": ["A person or entity which is held by a captor in order to compel another party to act or refrain from acting in a particular way."], "durable": ["Able to resist wear, decay."], "lasting": ["Able to resist wear, decay."], "enduring": ["Able to resist wear, decay."], "handshake": ["The grasping and shaking of a person's hand, often used when being introduced or making an agreement.", "An exchange of predetermined signals between electronic devices in order to establish a connection."], "ethnonym": ["Name of an ethnic group, whether that name has been assigned by another group (ie. an exonym), or self-assigned (ie. an autonym)."], "semantics": ["The branch of linguistics which studies meaning in language."], "serenade": ["A musical greeting to a beloved or a person of rank.", "To sing or play a serenade."], "pilgrim": ["Someone who journeys to a sacred place as an act of religious devotion."], "musical": ["A stage performance, show or film which involves singing, dancing and musical numbers performed by the cast.", "Of or related to music."], "ouverture": ["The instrumental introduction to a dramatic, choral or, occasionally, instrumental composition."], "suite": ["An organized set of instrumental or orchestral pieces normally performed at a single sitting.", "A luxury accommodation in a hotel consisting of multiple rooms instead of only one."], "tarball": ["A backup file created by the tar command."], "Kwanzaa": ["A yearly, week-long festival (from December 26 to January 1) honoring African-American heritage, celebrated almost exclusively in the United States."], "Kwaanza": ["A yearly, week-long festival (from December 26 to January 1) honoring African-American heritage, celebrated almost exclusively in the United States."], "New Year's resolution": ["A commitment that one makes to a project or a habit, often a lifestyle change that is generally interpreted as advantageous, on New Year's Day and is meant to continue throughout the new year."], "artificial snow": ["Snow that is made artificially out of frozen water droplets."], "ISO 639-1 codes": ["OmegaWiki collection of ISO 639-1 language codes"], "pizza": ["An oven-baked flatbread covered with tomato sauce and additional toppings."], "ISO 639-2 bibliographic codes": ["OmegaWiki collection of ISO 639-2 bibliographic language codes"], "International Organization for Standardization": ["An international standard-setting body composed of representatives from national standards bodies."], "ISO 639-2 terminologic codes": ["OmegaWiki collection of ISO 639-2 terminologic language codes"], "ISO": ["An international standard-setting body composed of representatives from national standards bodies."], "mischief": ["Harm or evil caused by an agent or brought about by a particular cause."], "hard disk drive": ["Ferromagnetic computer storage device which writes binary data on the surface of a rotating platter."], "hard disk": ["Ferromagnetic computer storage device which writes binary data on the surface of a rotating platter."], "carriage": ["Manner of walking or stepping; bearing or carriage while moving. (Webster 1913)", "A railway vehicle that is drawn by a locomotive.", "Wire basket fastened to a frame with wheels which customers use for collecting purchases in a store.", "A railway vehicle without propulsion, equipped to carry passengers or goods.", "A movement with any part of one\u2019s body (head, hands etc)."], "wagon": ["A wheeled vehicle, generally drawn by horse power."], "araba": ["A carriage used in Turkey and Asia Minor drawn by horses or oxen."], "vinaigrette": ["A sauce, made of vinegar, oil, and other ingredients.", "A small, two-wheeled vehicle to be drawn or pushed by a boy or man."], "wheelchair": ["A chair mounted on large wheels for the transportation or use of a sick or disabled person."], "juggernaut": ["A literal or metaphorical force or object regarded as unstoppable."], "pluricentric language": ["A language with several standard versions."], "execute": ["To kill as a punishment for capital crimes.", "To perform an action, as in executing a program or a command.", "To satisfy, carry out, bring to completion (an obligation, a requirement, etc.)."], "phonetics": ["A branch of linguistics that comprises the study of the sounds of human speech."], "gallows": ["The wooden framework on which persons are put to death by hanging."], "last meal": ["The last meal that a condemned prisoner has before his or her execution."], "guillotine": ["A machine used for the application of capital punishment by decapitation.", "To execute using a guillotine."], "deplorable": ["Deserving strong condemnation."], "stroopwafel": ["Two round waffle-like wafers with a caramel filling in the middle."], "stroopwaffel": ["Two round waffle-like wafers with a caramel filling in the middle."], "distraught": ["Deeply agitated especially from emotion."], "milkshake": ["A thick beverage consisting of milk and ice cream mixed together, often with fruit, chocolate, or other flavouring."], "clothes hanger": ["A triangular device made of wire, wood or plastic with a hook on top that is used to store an item of clothing by hanging."], "semiotics": ["The study of sign processes, or signification and communication, signs and symbols, both individually and grouped into sign systems."], "aquamarine": ["A gemstone-quality transparent variety of beryl."], "diamond": ["A very hard native crystalline carbon.", "A transparent piece of diamond that has been cut and polished."], "swindle": ["To deceive someone deliberately in order to make a financial gain.", "A dishonest act."], "defraud": ["To deceive someone deliberately in order to make a financial gain."], "con": ["To deceive someone deliberately in order to make a financial gain.", "A person convicted of a crime by a judicial body.", "A negative or unwanted consequence or side effect of a solution."], "Moon": ["The sole natural satellite of the Earth."], "New Year's Day": ["The first day of a calendar year, in particular, January 1 in the Julian and Gregorian calendar."], "effervescent": ["Giving off bubbles."], "fizzy": ["Giving off bubbles."], "corporal punishment": ["A form of punishment achieved by inflicting physical injury to the victim's body."], "sparkling wine": ["Any wine that is fizzy because of dissolved carbon dioxide."], "stylistics": ["The study of the style used in spoken and written language, and what effect the writer or speaker would achieve with the reader or hearer."], "turn of the year": ["The change from one year to the next."], "Lower Saxony": ["Federal state of Germany, whose capital is Hannover."], "melody": ["A succession of notes forming a distinctive sequence."], "tune": ["A succession of notes forming a distinctive sequence.", "To correct or adjust the pitch created by a musical instrument.", "To adjust a mechanical, electric or electronic device (such as a radio or a car engine) so that it functions optimally."], "lexicography": ["The act of writing dictionaries."], "turning point": ["A decisive point at which a significant change or historical event occurs.", "A place to turn the driving direction for vessels, where the boats are longer than the river/canal is wide."], "tipping point": ["A term that refers to that moment when something unique becomes common."], "controversial": ["Contentiously disputed.", "Subject to nonconcordant interpretations."], "controversy": ["A contentious dispute."], "Abkhazia": ["A region in the Caucasus which is a de facto independent state of Georgia not recognized internationally."], "heel": ["Front and back slice of a loaf.", "The part of the foot on the backside where it becomes the leg."], "Addis Ababa": ["The capital of Ethiopia."], "Addis Abeba": ["The capital of Ethiopia."], "Amman": ["The capital of Jordan."], "Ankara": ["The capital of Turkey.", "Turkish dialect."], "Antananarivo": ["The capital of Madagascar."], "Asmara": ["The capital of Eritrea."], "Astana": ["The capital of Kazakhstan."], "Bamako": ["The capital of Mali."], "Bairiki": ["The capital of Kiribati."], "Banjul": ["The capital of Gambia."], "Belmopan": ["The capital of Belize."], "Beirut": ["The capital and the largest city of Lebanon.", "ISO 639-6 entity"], "Bishkek": ["The capital of Kyrgyzstan."], "Buenos Aires": ["The capital of Argentina."], "Bujumbura": ["The capital of Burundi."], "Gaborone": ["The capital of Botswana."], "Dhaka": ["The capital and largest city of Bangladesh."], "Damascus": ["The capital of Syria."], "Muscovite": ["A person from Moscow.", "From or pertaining to Moscow."], "Adygea": ["A republic of Russia located in the North Caucasus."], "Altai": ["A republic of Russia located in West Siberia."], "Bashkortostan": ["A republic of Russia located in the Urals."], "Buryatia": ["A republic of Russia located in East Siberia."], "Chechnya": ["A republic of Russia located in the North Caucasus."], "Chuvashia": ["A republic of Russia located in the Volga-Vyatka."], "Dagestan": ["A republic of Russia located in the North Caucasus.", "ISO 639-6 entity"], "Ingushetia": ["A republic of Russia located in the North Caucasus."], "Kabardino-Balkaria": ["A republic of Russia located in the North Caucasus."], "Kalmykia": ["A republic of Russia located in Povolzhye."], "Karachay-Cherkessia": ["A republic of Russia located in the North Caucasus."], "Karelia": ["A republic of Russia located in the northwest."], "Khakassia": ["A republic of Russia located in south central Siberia."], "Komi": ["A republic of Russia located west of the Urals."], "Mari El": ["A republic of Russia located in Volga-Vyatka."], "Mariy El": ["A republic of Russia located in Volga-Vyatka."], "Marii El": ["A republic of Russia located in Volga-Vyatka."], "Mordovia": ["A republic of Russia located in Volga-Vyatka."], "North Ossetia-Alania": ["A republic of Russia located in the North Caucasus."], "Yakutia": ["A republic of Russia with an area of 3,103,200 km\u00b2 located in the East Russia. Its borders are the Arctic Ocean by sea and the Federal subjects of Chukotka (E), Magadan (E/SE), Khabarovsk Krai (SE), Amur (S), Chita (S), Irkutsk (S/SW), Evenk (W), Taymyr (W/NW)."], "Tatarstan": ["A republic of Russia located in Povolzhye."], "Tuva": ["A republic of Russia located in south central Siberia."], "Udmurtia": ["A republic of Russia located in the Urals."], "aphasia": ["A loss of the ability to produce and/or comprehend language, due to injury to brain areas specialized for these functions, Broca's area, which governs language production, or Wernicke's area, which governs the interpretation of language. (source: Wikipedia)"], "onomastics": ["The study of the meaning, origin and distribution of names."], "tillage": ["The practice of growing and nurturing plants outside of their wild habitat (i.e., in gardens, nurseries, arboreta)."], "onomatology": ["The study of the meaning, origin and distribution of names."], "everyday life": ["The normal routine."], "dialect": ["A regional variant of a language."], "trepidation": ["A state of hesitation or concern."], "Central economic region": ["An economic region of Russia, located in the west, that contains the city of Moscow."], "Central Black Earth economic region": ["An economic region of Russia located in the west."], "Central Chernozem": ["An economic region of Russia located in the west."], "Central Chernozemic economic region": ["An economic region of Russia located in the west."], "East Siberian economic region": ["An economic region of Russia located in Russia's center."], "Far Eastern economic region": ["An economic region of Russia located in the east, bordering the Pacific Ocean."], "Northern economic region": ["An economic region of Russia located in the north, bordering the Arctic Ocean."], "Northwestern economic region": ["An economic region of Russia, located in the northwest, containing the city of St. Petersburg."], "Volga economic region": ["An economic region of Russia located in the south, bordering Kazakhstan."], "Povolzhsky economic region": ["An economic region of Russia located in the south, bordering Kazakhstan."], "Urals economic region": ["An economic region of Russia located in the Ural mountain range, bordering Kazakhstan."], "Volga-Vyatka economic region": ["An economic region of Russia located in the west."], "West Siberian economic region": ["An economic region of Russia located in the country's center."], "Kaliningrad economic region": ["An economic region of Russia located in the country's enclave between Lithuania and Poland."], "North Caucasus economic region": ["An economic region of Russia, located in the south, containing the city of Grozny."], "Chuvash Republic": ["A republic of Russia located in the Volga-Vyatka."], "Chechen Republic": ["A republic of Russia located in the North Caucasus."], "Kabardino-Balkar Republic": ["A republic of Russia located in the North Caucasus."], "Karachay-Cherkess Republic": ["A republic of Russia located in the North Caucasus."], "Khakasiya": ["A republic of Russia located in south central Siberia."], "Tataria": ["A republic of Russia located in Povolzhye."], "Tyva": ["A republic of Russia located in south central Siberia."], "Udmurt Republic": ["A republic of Russia located in the Urals."], "St. Petersburg": ["The second-largest city and former capital of Russia.", "A city in Pinellas County, Florida, United States."], "Jewish Autonomous Oblast": ["An autnomous oblast of Russia situated in the Far East, bordering China."], "Birobidzhan": ["The capital of the Jewish Autonomous Oblast of Russia."], "tickle": ["To cause an involuntary twitch and convulsive laughing by lightly touching certain body parts."], "genealogy": ["The study or investigation of ancestry and family histories."], "brake": ["A mechanical device used to slow a vehicle.", "Decelerate using a mechanical device."], "election": ["The act of selecting someone or something.", "A process by which members of a population vote to choose a person to hold public office."], "Altai Krai": ["A federal subject of Russia (a krai) in the Siberian Federal District. It borders with, clockwise from the south, Kazakhstan, Novosibirsk and Kemerovo Oblasts, and the Altai Republic. The krai's administrative center is the city of Barnaul."], "Central Federal District": ["A federal district of Russia located in the far west."], "Southern Federal District": ["A federal district of Russia located in the southwest."], "Northwestern Federal District": ["A federal district of Russia that consists of the country's northern European section."], "Far Eastern Federal District": ["A federal district of Russia that consists of the Russian Far East."], "Siberian Federal District": ["A federal district of Russia located in the country's center."], "Urals Federal District": ["A federal district of Russia located in the west of the country's Asian portion."], "Volga Federal District": ["A federal district of Russia located in the southeast of the country's European portion."], "Privolzhsky Federal District": ["A federal district of Russia located in the southeast of the country's European portion."], "Buryat Republic": ["A republic of Russia located in East Siberia."], "creationism": ["The doctrine that each species (or perhaps higher taxon) of organism was created separately in much its present form, by a supernatural creator."], "compromise": ["To settle by concession by finding a middle way between two extremes.", "A settlement reached by concessions from the involved parties.", "To cause the loss of normal function.", "The successful exploitation of a target by an attacker. (Schneider)"], "hairdresser": ["Person whose job is to treat the hair style of other people."], "barber": ["Person whose job is to treat the hair style of other people."], "serve": ["The first shot of a ball or a shuttle in a game like tennis or volleyball to contest the next point.", "To work for; to labor on behalf of.", "To perform duties attached to a particular office or place or function.", "To bring (food, drink) to a person for eating or drinking.", "To be a formal servant for (a god or deity); to worship in an official capacity.", "To be a servant for, to work for, to be employed by.", "To be a waiter for.", "To meet the needs of.", "To have a given use or purpose.", "To usefully take the place as, instead of something else.", "To officially deliver (a legal notice, summons etc.).", "To be in military service.", "To operate (a weapon).", "To copulate with (of male animals).", "To go through a term of service (as a prisoner, soldier, juror, senator, etc.)", "To lead off with the first delivery over the net in tennis, volleyball, ping pong, badminton etc.", "To put the ball into play."], "rotary": ["A type of circular intersection in which traffic must travel in one direction around a central island."], "traffic circle": ["A type of circular intersection in which traffic must travel in one direction around a central island."], "cancer cell": ["Malignant degenerated cell."], "save": ["To preserve, reserve or set aside for a period of time, in order to reuse it in the future.", "To rescue from danger, harm, or an injury that could be sustained; to bring into safety.", "To record (a computer file) on a computer storage medium.", "To refrain from harming.", "To set aside money for future use."], "acorn": ["Fruit of the oak tree."], "homo": ["A person who is sexually attracted solely or primarily to other members of the same sex.", "Any living or extinct member of the family Hominidae characterized by superior intelligence, articulate speech, and erect carriage."], "cigarette": ["A product manufactured out of cured and finely cut leaves, which are rolled or stuffed into a paper-wrapped cylinder for smoking."], "vote with your feet": ["To leave an organisation when the disagreements are too big."], "negotiation": ["A discussion intended to produce an agreement."], "dialogue": ["A discussion intended to produce an agreement."], "homeless": ["Having no housing."], "waste container": ["A container for the collection of waste."], "coconut": ["The large hard-shelled oval nut with a fibrous husk of the cocos palm.", "A tropical tree with feathery leaves which bears coconuts."], "logic": ["The study of the principles and criteria of valid inference and demonstration.", "A reasoned and reasonable judgment."], "financial": ["Relating to finances."], "noodle": ["A string or strip of pasta, especially as used in Chinese and Italian cookery."], "revelation": ["An enlightening or astonishing disclosure.", "A manifestation of divine truth.", "The speech act of making something evident."], "calligram": ["A word, phrase or longer text in which the typeface or the layout has some special significance."], "black eye": ["An eye which has been bruised and coloured, especially after receiving a blow."], "calligraphy": ["The art of beautiful writing."], "printing": ["The process of producing printed material by means of inked type and a printing press or similar technology.", "The business of producing printed material for sale or distribution."], "version": ["The result of converting words and texts from one language to another.", "A number or name indicating which revision something is.", "An account or description from a particular point of view, especially as contrasted with another account."], "snuff": ["To inhale through the nose.", "Ground or pulverized tobacco, which is generally inhaled through the nose."], "cigar": ["Tobacco, rolled and wrapped with an outer covering of tobacco leaves, intended to be smoked."], "genome": ["The whole hereditary information of an organism encoded in its DNA."], "flail": ["A tool used for separating grains from their husks."], "Anglicism": ["A word coming from the English language, being specific for this and being taken over by another language."], "anglicism": ["A word coming from the English language, being specific for this and being taken over by another language."], "spinach": ["An important leaf vegetable, grown throughout the temperate regions of the world."], "black market": ["The buying and selling, especially of illicit trade."], "underground market": ["The buying and selling, especially of illicit trade."], "EU enlargement": ["The accession of one or more countries to the European Union."], "wear": ["Fix clothes on your body and carry them.", "To become tired through overuse or great strain or stress."], "French kiss": ["A kiss where one touches the partner's tongue with one's own tongue."], "tongue kiss": ["A kiss where one touches the partner's tongue with one's own tongue."], "mantra": ["Expressions of enlightened speech."], "taste": ["One of the five senses: the physical ability to detect flavors.", "The sociological concept of expressing preferences.", "To try the flavor or quality of something.", "The sensory impression of a substance that is determined mainly by the chemical senses of taste and smell."], "varve": ["An annual layer of sediment or sedimentary rock."], "fatuous": ["Obnoxiously stupid, vacantly silly. (Refers especially to foolishness and disregard of reality)"], "arrow": ["Pointed projectile that is shot with a bow.", "A mark to indicate a direction or relation."], "aubergine": ["Violet oval-shaped vegetable, the fruit of Solanum melongena.", "An Asian plant, Solanum melongena, cultivated for its edible purple, green, or white ovoid fruit."], "delusive": ["Not in keeping with the reality or the facts."], "Elder Futhark": ["The oldest form of the runic alphabet, used by Germanic tribes for Proto-Norse and other Migration period Germanic dialects of the 2nd to 8th centuries."], "runic alphabet": ["One of a set of related alphabets using letters, known as runes, formerly used to write Germanic languages"], "ray": ["An animal of the superorder Batoidea of cartilaginous fishes, containing more than 500 described species in thirteen families.", "Stream of particles or electromagnetic waves.", "An idealized narrow beam of light.", "To emit as rays.", "To expose to radiation."], "Batoidea": ["An animal of the superorder Batoidea of cartilaginous fishes, containing more than 500 described species in thirteen families."], "guest room": ["A room in a home set aside for the use of visiting guests."], "guestroom": ["A room in a home set aside for the use of visiting guests."], "Rey": ["A historic city in the province of Tehran, Iran."], "Rayy": ["A historic city in the province of Tehran, Iran."], "Rhages": ["A historic city in the province of Tehran, Iran."], "Rages": ["A historic city in the province of Tehran, Iran."], "wave": ["A disturbance in an fluid medium.", "A computer file format, better known as WAV.", "A disturbance that propagates through space and time.", "To signal with the hands or nod.", "To move or swing back and forth.", "To move in a wavy pattern or with a rising and falling motion."], "WAV": ["A computer file format, better known as WAV."], "forbidden": ["That should not be done, because of moral constraints."], "Football": ["The ball used in the American and Canadian football.", "Form of football, also close to rugby, played mainly in Ireland."], "eloquence": ["Fluent, forcible, elegant or persuasive speaking in public."], "admiral": ["The highest military rank in most of the sea powers."], "butoxyethanol": ["An organic solvent with the formula C6H14O2. It is a colorless liquid with a sweet, ether-like odour."], "balcony": ["Kind of platform projecting from the wall of a building."], "Ray": ["A historic city in the province of Tehran, Iran.", "Ray was a town in Arizona. There was a huge copper mine there, which grew so big that all the people in the town had to leave.", "A city in Williams County in North Dakota in the United States.", "A male name."], "Older Futhark": ["The oldest form of the runic alphabet, used by Germanic tribes for Proto-Norse and other Migration period Germanic dialects of the 2nd to 8th centuries."], "Old Futhark": ["The oldest form of the runic alphabet, used by Germanic tribes for Proto-Norse and other Migration period Germanic dialects of the 2nd to 8th centuries."], "agrarian": ["A person who works the land or who keeps livestock, especially on a farm.", "Of, or relating to, the ownership, tenure and cultivation of land."], "farmer": ["A person who works the land or who keeps livestock, especially on a farm."], "unemployment benefit": ["Money that unemployed people receive from the government or an insurance."], "wide awake": ["Completely awake."], "half awake": ["Not entirely awake."], "Top": ["The first element in a set."], "dozy": ["Still dazed from sleep."], "top": ["A sleeveless lady's garment for the upper body part.", "A spinning Toy.", "A person who assumes the main/active role in sex.", "A person who assumes the dominant role in BDSM.", "The first element in a set.", "Something that is above all other.", "Highest and most elevated point.", "A toy that can be spun on an axis, balancing on a point."], "elbow": ["The joint between arm and forearm."], "visceral": ["Indicating an extreme degree of negative emotion.", "Pertaining to the internal organs."], "confuse": ["To mistake one thing for another."], "confound": ["To mistake one thing for another."], "mix up": ["To mistake one thing for another."], "postposition": ["Not inflectable words, that are\u2014contrary to prepositions\u2014after the word the case is given to."], "convey": ["To carry, particularly to a particular destination.", "To transmit information and make known.", "To transport toward somewhere; to take something or somebody with oneself somewhere.", "To go or come after and bring or take back."], "positron": ["Antiparticle of the electron. It has the same mass but reverse electric charge. Its symbol is e+."], "chain gang": ["A group of convicts chained together, to work outside the confines of a prison."], "convict": ["A person convicted of a crime by a judicial body.", "To find guilty of a crime as a result of legal proceedings."], "tempest": ["An atmospheric disturbance involving perturbations of the prevailing pressure and wind fields on scales ranging from tornadoes to extratropical cyclones; also the associated weather and the like.\\n(Source: MGH)"], "slipper": ["A low shoe that can be slipped on and off easily and is usually worn indoors."], "adhesion": ["The attraction of dissimilar particles to cling to one another."], "Art": ["The expression of creativity or imagination, or both."], "nominative used verb": ["A verb that gets used like a noun and therefore becomes a noun."], "bord": ["The outer sides of a ship that keeps the water out."], "nominative case": ["A grammatical case for a noun or pronoun, which generally marks the subject of a verb, as opposed to its object or other verb arguments."], "brine": ["Water saturated or strongly impregnated with salt."], "pickle": ["The male sexual organ for copulation and urination; the tubular portion of the male genitalia (excluding the scrotum).", "Vegetables preserved in brine or vinegar."], "dative case": ["The form of a noun, pronoun or adjective when it is the indirect object of a verb, (or part of it); used to indicate the noun to whom something is given (in a number of languages, for example Latin and German)"], "vinegar": ["A sour liquid formed by the fermentation of alcohol with acetic acid bacteria used as a condiment or preservative.", "To season with vinegar."], "genitive case": ["The case that marks a noun as being the possessor of another noun."], "possessive case": ["The case that marks a noun as being the possessor of another noun."], "second case": ["The case that marks a noun as being the possessor of another noun."], "grammatical case": ["The grammaticalic case in which a noun is used."], "collective name": ["Noun that summarizes several similar objects in one term."], "gherkin": ["A young cucumber, picked when 1 to 3 inches (3 to 8 cm) in length and pickled in jars or cans with vinegar or brine."], "touch illusion": ["An illusion based on the sense of touch."], "accusative case": ["The grammatical case to denote a direct object."], "tomato": ["The savoury fruit of the Solanum lycopersicum, red when ripe."], "exchange": ["To give something in return for something received.", "To exchange goods.", "To exchange something old or something that has become unusable for something else of the same kind.", "To convert a sum of money from one currency into another.", "The marketplace in which shares, options and futures on stocks, bonds, commodities and indices are traded.", "The act, process, or an instance of exchanging.", "The reciprocal transfer of equivalent sums of money, usually in currencies of different countries.", "Anything given or received as an equivalent, replacement, or substitute for something else.", "A mutual expression of views; an argument or quarrel; altercation.", "The act of putting one thing or person in the place of another.", "To exchange a penalty for a less severe one."], "greeting word": ["A word for the greetings one uses.\\n(Welcome! Bye!)"], "stay": ["To continue to be in the same place or state.", "To stay the same; to remain in a certain state.", "A period of time spent in a place.", "Something that supports or steadies another thing."], "remain": ["To continue to be in the same place or state.", "To stay the same; to remain in a certain state.", "To be left (of persons, questions, issues, results, evidence, etc.)."], "devour": ["To eat by swallowing large bits of food with little or no chewing."], "gobble": ["To eat by swallowing large bits of food with little or no chewing."], "perception": ["The conscious understanding of something."], "observation": ["The act of noting some event."], "profound": ["Demonstrating intellectual penetration or emotional depths.", "Descending far below the surface."], "trolley bus": ["A bus, powered via overhead electric cables, that does not run on tracks."], "trolleybus": ["A bus, powered via overhead electric cables, that does not run on tracks."], "transformation": ["The act of changing in form or shape or appearance."], "sandman": ["A fairy tale figure, which brings after the narration children to falling asleep, by strewing them sand into the eyes."], "modal verb": ["An auxiliary verb that is used to express in which modality the subject is linked to the verb."], "fractional number": ["A word that expresses a part of a whole (whole, half, third, fourth, ... th; etc.)"], "fractional numeral": ["A word that expresses a part of a whole (whole, half, third, fourth, ... th; etc.)"], "generic number": ["Generic numbers define the number of different kinds of something."], "local adverb": ["An adverb that defines a place or direction."], "adverb of place": ["An adverb that specifies a place, e. g. here there, ahead, nowhere"], "adverb of direction": ["An adverb that specifies a direction, e. g. there, down, anywhere"], "causal adverb": ["Indicates a cause, reason, condition, concession, consequence, purpose, or intention."], "gender": ["Either of two main divisions (either male or female) into which many organisms can be placed, according to reproductive function or organs.", "Arbitrarily specified category of a word as used in some languages, governing the agreement between words.", "To become pregnant."], "hackneyed": ["Repeated too often; overfamiliar through overuse."], "clich\u00e9d": ["Repeated too often; overfamiliar through overuse."], "banal": ["Repeated too often; overfamiliar through overuse."], "grammatical number": ["In linguistics, a morphological category characterized by the expression of quantity through inflection or agreement."], "phonetic alphabet": ["A writing system used for transcribing the sounds of human speech into writing."], "singular": ["By one's self; apart from, or exclusive of, others; applied to a thing.", "Grammatical number that is used for a single object."], "dual": ["In some languages, grammatical number related to precisely 2 objects of the same type (in general, for objects that naturally belong together), as opposed to singular and plural.", "Having more than one decidedly dissimilar aspects or qualities."], "plural": ["Grammatical number that is used for more that one (many) object of the same type."], "castrato": ["A male soprano, mezzo-soprano, or alto voice produced either by castration of the singer before puberty or who, because of an endocrinological condition, never reaches sexual maturity."], "discharge": ["The volume of water transported by a river in a certain amount of time.", "To pronounce not guilty of criminal charges.", "To free from obligations or duties."], "acquit": ["To pronounce not guilty of criminal charges."], "entrails": ["The internal organs of an animal."], "courage": ["The quality of not being afraid or intimidated easily without being incautious or inconsiderate."], "cowardice": ["The refusal to confront a reasonable degree of fear or anxiety."], "prudence": ["The exercise of sound judgement in practical affairs.", "Knowing how to avoid embarrassment or distress."], "woodlouse": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "armadillo bug": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "cheeselog": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "doodlebug": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "monkeypea": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "pill bug": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "roly-poly": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "potato bug": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs.", "(Leptinotarsa decemlineata) Yellow and black striped beetle from the family of the Chrysomelidae which originates from America and feeds upon parts of the potato plant."], "roll up bug": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "slater": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "sow bug": ["A terrestrial crustacean that is a member of the suborder Oniscidea. It has a rigid, segmented, calcareous exoskeleton and fourteen jointed limbs. It is usually found in damp, dark places, such as under rocks and logs."], "Dutch courage": ["Courage induced by alcohol."], "proof of concept": ["A short and/or incomplete realization of a certain method or idea(s) to demonstrate its feasibility."], "colloquial": ["Characteristic of / belonging to informal spoken language or conversation."], "ballistics": ["The science that deals with the motion, behavior, and effects of projectiles, especially bullets, gravity bombs, rockets etc."], "acronym": ["An abbreviation that is formed using the initial letters of words or word parts in a phrase or name."], "initialism": ["A acronym based on the initials of the distinct Words. \\n(LASER -> \u201eLight Amplification by Stimulated Emission of Radiation\u201c)"], "backronym": ["An acronym or abbreviation to which a new meaning is assigned as a phrase or sentence associated with it."], "bacronym": ["An acronym or abbreviation to which a new meaning is assigned as a phrase or sentence associated with it."], "recursive acronym": ["A recursive acronym (or occasionally recursive initialism) is an abbreviation which refers to itself in the expression for which it stands.\\nARF -> Acronyme-Recursion-Finder\\nSARF -> \"Simple ARF\" or \"SARF-Acronyme-Recursion-Finder\""], "innuendo": ["A derogatory hint or reference to a person or thing."], "insinuation": ["A derogatory hint or reference to a person or thing."], "projectile": ["An object intended to be or having been fired from a weapon."], "prerogative": ["An exclusive legal right given from a government or state and invested in an individual or group."], "weekend": ["The break from work in a week, usually associated with a day of religious worship."], "demonstrative article": ["Article, which is set before a name."], "temporal preposition": ["Preposition used for the indication time."], "simple future": ["The grammatical tense (verb form) that describes events in the future."], "acquiesce": ["To concur, not heartily but so far as not to oppose."], "fraternity": ["A group of people associated for a common purpose.", "A formal association of people with similar interests.", "A group of people with a common interest."], "parse": ["To analyse and describe a sentence grammatically."], "fry": ["To cook in hot fat."], "create": ["To bring into existence.", "To pursue or be engaged in a creative activity."], "clitic": ["A morpheme that functions like a word, but appears not as an independent word but rather is always attached to a following or preceding word."], "enclitic": ["A clitic that follows its host."], "continuity": ["The quality of existing without interruption."], "Swiss ball": ["Large ball made out of elastic rubber which can be used for gymnastic exercise or as a seat."], "bubble chamber": ["A vessel used to detect electrically charged particles moving through it."], "wood pulp": ["The cellulosic material produced by reducing wood mechanically or chemically and used in making paper and cellulose products."], "cohesion": ["Intrinsic union of parts."], "tea bag": ["Small bag made out of filter paper and containing tea leaves which is put into hot water for a few minutes in order to prepare tea."], "computer display": ["Computer peripheral that allows to display information in the form of text or images."], "monitor": ["Computer peripheral that allows to display information in the form of text or images.", "To keep under surveillance.", "Someone who gives a warning so that a mistake can be avoided."], "computer monitor": ["Computer peripheral that allows to display information in the form of text or images."], "quarry-lice": ["Big woodlouse (Ligia oceanica) found on rocky shores"], "common sea slater": ["Big woodlouse (Ligia oceanica) found on rocky shores"], "sea slater": ["Big woodlouse (Ligia oceanica) found on rocky shores"], "countdown": ["A count backward indicating the time left before some event occurs.", "To count backward to indicate the time left before some event occurs."], "offensive": ["Causing anger or annoyance.", "A military attack.", "Used to attack."], "superconductivity": ["The phenomenon that the electrical resistance of some materials becomes zero below a certain (normally very low) temperature."], "demolition": ["The tearing down of buildings by mechanical means.", "Destruction of a building."], "sundial": ["A device used to tell the time with the help of the sun."], "rosary": ["Traditional Catholic devotion which combines prayer and meditation. It is based on reciting sequences consisting of the Lord's Prayer followed by ten Hail Mary and one Glory Be to the Father; each sequence, called a decade, is said while meditating a different mystery of redemption.", "A string of beads used for keeping count while reciting the prayers of rosary. Usually consisting of five sets of ten beads each, with a larger bead between sets, and including a small crucifix."], "heat of fusion": ["The amount of thermal energy which is absorbed by a solid material when melting."], "fascinating": ["Having a captivating, attractive effect."], "alarm clock": ["Clock that can be set to ring at a given time of the day."], "sapwood": ["Soft wood of a tree, between the bark and the heartwood."], "sap-wood": ["Soft wood of a tree, between the bark and the heartwood."], "alburnum": ["Soft wood of a tree, between the bark and the heartwood."], "exhibition": ["A large scale public showing of objects or products."], "Lagonegro": ["Town in the province of Potenza, region Basilicata, Italy."], "quiver": ["A container for arrows, crossbow bolts or darts, such as those fired from a bow, crossbow or blowgun."], "short term": ["In a short period of time, in the near future."], "crockery": ["Pottery of baked or hardened clay."], "dishes": ["Plates, dishes and other eating and serving tableware, usually made of some ceramic material."], "misapprehension": ["The understanding of something in a different way than it is meant."], "misconception": ["The understanding of something in a different way than it is meant."], "misunderstanding": ["The understanding of something in a different way than it is meant."], "flamboyant": ["Showy, bold or audacious in behaviour and appearance."], "accelerated": ["Made faster."], "in turn": ["When it is his/her/its turn."], "against payment": ["against transfer of a certain amount of money", "What requires the acceptation of costs."], "doppler effect": ["The doppler effect is the change of the received frequency of waves (e. g. light or sound), that occurs when sender and receiver move relatively to each other."], "overjoyed": ["Extremely happy."], "overhappy": ["Extremely happy."], "second person": ["The second Person in the grammatical manner defines a word, that references the person to which the speaker talks."], "first person": ["The first Person in the grammatical manner defines a word, that references the speaker."], "third Person": ["The second Person in the grammatical manner defines a word, that don't references the person to which the speaker talks nor the speaker, but another person, pet, or thing."], "functional group": ["In organic chemistry, a specific grouping of elements that is characteristic of a class of compounds, and determines some properties and reactions of that class"], "aldehyde": ["An organic compound containing a terminal carbonyl group, i.e., a O=CH- group attached to hydrogen or a carbon chain."], "grammatical gender": ["Arbitrarily specified category of a word as used in some languages, governing the agreement between words."], "carboxylic acid": ["An organic acid characterized by the presence of a carboxyl group with formula -(C=O)-OH, usually written as -COOH."], "Arzano": ["City of the province of Naples, region of Campania, Italy."], "graviton": ["Hypothetical elementary particle that mediates the force of gravity in most models of quantum gravity theory."], "track": ["A pair of parallel rails providing a runway for the wheels of, e.g., a train.", "To go beyond, to pass here.", "Unpaved or unsealed road for agricultural use; gravel road in the forest etc.", "The direction of movement, line or route of a vessel at any given moment.", "Circular data storage unit on a side of magnetic or optical disk, divided into sectors.", "To observe the (measured) state of an object over time."], "coherent": ["Orderly, logical and consistent."], "derail": ["To come off the tracks."], "conductor": ["A person who checks tickets on board of a public transport.", "A person who directs and guides a musical performance through visual language.", "Material that allows the flow of an electric charge."], "ester": ["An organic compound formed by a reaction of a carboxylic acid and an alcohol."], "ketone": ["An organic compound characterized by the presence of a carbonyl group (C=O) linked to two other carbon atoms."], "amide": ["An organic compound characterized by a carbonyl group (C=O) linked to a nitrogen atom (N)."], "alkene": ["An unsaturated chemical compound containing at least one carbon-to-carbon double bond. The simplest alkenes, with only one double bond and no other functional groups, form a homologous series of hydrocarbons with the general formula CnH2n."], "alkyne": ["A hydrocarbon that has at least one triple bond between two carbon atoms, with the formula CnH2n-2.", "Any organic compound having one or more carbon-carbon triple bond; an alkyne."], "vinyl chloride": ["A flammable, explosive gas with an ethereal aroma; soluble in alcohol and ether, slightly soluble in water; boils at -14\u00b0 C; an important monomer for polyvinyl chloride and its copolymers; used in organic synthesis and in adhesives."], "tetrachloroethene": ["Stable, colorless liquid, nonflammable and nonexplosive, with low toxicity; used as a dry-cleaning and industrial solvent, in pharmaceuticals and medicines, and for metal cleaning."], "dyslexia": ["A condition in which a person's ability to read and write is much lower than would be expected of someone of that person's intelligence."], "modest": ["Having a measured opinion of oneself and one's merits."], "deaf": ["Not having the faculty of hearing, or only having a restricted capability to hear."], "braille": ["A system of writing in which letters and some combinations of letters are represented by raised dots arranged in three rows of two dots each and are read by using the fingertips."], "Piemontese": ["A language spoken by over 2 million people in Piedmont, northwest Italy"], "Minnan": ["The language of the southern Fujian province of China."], "Min-nan": ["The language of the southern Fujian province of China."], "polyester": ["A condensation polymer (C10H8O4) which contain the ester functional group in their main chain."], "polyamide": ["A polymer containing monomers joined by amide bonds. They can occur both naturally, examples being proteins, and can be made artificially, examples being Nylon, Kevlar."], "polysaccharide": ["A polymer made up of many monosaccharides joined together by glycosidic links."], "glycan": ["A polymer made up of many monosaccharides joined together by glycosidic links."], "leap year": ["A year with 366 days instead of 365."], "whipped cream": ["Thick cream that has had air incorporated into it by rapid beating."], "surreptitious": ["Taking pains to avoid being observed."], "furtive": ["Taking pains to avoid being observed."], "granite": ["A rock consisting essentially of crystals of feldspar and mica in a mass of quartz."], "igneous": ["Formed from lava or magma."], "munificence": ["Liberality in bestowing gifts; extremely liberal and generous of spirit."], "generous": ["Very liberal in giving or bestowing."], "stool": ["To excrete feces from one's body through the anus.", "A chair without back and arm rests."], "baobab": ["Genus of big trees (Adansonia) from the mallow family, growing in tropical countries"], "consequently": ["[A word that expresses that something is or should be the consequence of something else]."], "as a result": ["[A word that expresses that something is or should be the consequence of something else]."], "divan": ["A couch usually without arm rests intended for laying on it."], "ambiguous": ["Containing multiple possible interpretations.", "Not clearly thought out.", "Expressed in an unclear fashion."], "excellent": ["Of the highest quality."], "olfactory": ["Of or pertaining to the sense of smell."], "kissable": ["Inviting to be kissed through attractiveness."], "olfaction": ["The sense of smell."], "obstruction": ["Something immaterial that stands in the way and must be circumvented or surmounted."], "fair use": ["A doctrine in United States copyright law that allows limited use of copyrighted material without requiring permission from the rights holders."], "abandoned": ["Left behind by the owner or keeper.", "Displaying the effect of excessive indulgence in sensual pleasure."], "forsaken": ["Left behind by the owner or keeper."], "downpour": ["An extreme heavy shower."], "amplify": ["To increase the strength or amount of."], "acquisition": ["The capacity to do something well. They are usually acquired or learned, as opposed to abilities, which are often thought of as innate.", "To get the possession of a right or an asset, like a property or a company."], "bedside table": ["A small table located next to the bed."], "acquirement": ["The capacity to do something well. They are usually acquired or learned, as opposed to abilities, which are often thought of as innate."], "reprieve": ["To stop blaming someone for an offense.", "An interruption in the intensity or amount of something."], "prosecutor": ["A lawyer who decides whether to charge a person with a crime and tries to prove in court that the person is guilty."], "jury": ["A group of individuals chosen from the general population to hear and decide a case in a court of law."], "allege": ["To make a claim, a plea or offer justification for an act, especially before proof is available.", "To report or maintain."], "Sanskrit": ["A classical language of India, a liturgical language of Hinduism, Buddhism, and Jainism."], "puke": ["To regurgitate the contents of the stomach.", "Matter ejected from the stomach through the mouth."], "put": ["To cause (as an end result, not a process) an object to be in a new place.", "To convey meaning.", "To use a resource (money, time, energy, etc.) with the expectation of obtaining something of greater value.", "To cause to be in a certain state.", "(Finance) To exercise a put option.", "To throw a heavy iron ball, as a sport.", "(Of a vessel or its occupants) to follow a course.", "To associate ownership of (something) to someone."], "referendum": ["A direct popular vote on a proposed law or constitutional amendment."], "plebiscite": ["A direct popular vote on a proposed law or constitutional amendment."], "debt restructuring": ["A process of debt rescheduling, debt refinancing and debt discounting in order to prevent insolvency and or bankruptcy."], "finance": ["To borrow or provide funding for a transaction or undertaking.", "The science that studies the management of money and other assets."], "misty": ["Filled with fog."], "brainwashing": ["Physical and psychological manipulation to change the beliefs or behavior of a person."], "ferry": ["A boat or a ship carrying passengers, and sometimes their vehicles, on short-distance, scheduled services."], "with one's hands tied behind one's back": ["Very easily."], "fogless": ["Without fog."], "propensity": ["A likelihood of behaving in a particular way or going in a particular direction."], "predilection": ["A likelihood of behaving in a particular way or going in a particular direction."], "proclivity": ["A likelihood of behaving in a particular way or going in a particular direction."], "predisposition": ["A likelihood of behaving in a particular way or going in a particular direction."], "placate": ["To cause to be more favourably inclined.", "Make calm and content."], "inclination": ["A likelihood of behaving in a particular way or going in a particular direction.", "At an angle relative to a level plane or to another plane of reference."], "penchant": ["A likelihood of behaving in a particular way or going in a particular direction."], "aptness": ["A likelihood of behaving in a particular way or going in a particular direction."], "proneness": ["A likelihood of behaving in a particular way or going in a particular direction."], "joint": ["The point where two components of a structure merge rigidly.", "Any part of the body where two bones join.", "Done by two or more people or organisations working together.", "A cigarette rolled using cannabis."], "articulation": ["Any part of the body where two bones join.", "A joint or place between two parts of a plant (like a leaf and a branch), where separation may take place spontaneously."], "Earth's atmosphere": ["A layer of gases that may surrounds the Earth."], "adapt": ["To change to reach a certain scope or condition."], "debit": ["In bookkeeping: make a negative movement on an account."], "adjust": ["To change to reach a certain scope or condition.", "To adapt something; to alter or regulate so as to achieve accuracy or conform to a standard.", "To make partial changes.", "To arrange in a straight line.", "To settle an insurance claim."], "perform": ["Carry something out to completion."], "conform": ["To change to reach a certain scope or condition.", "Corresponding to something else."], "update": ["News that updates the available knowledge or information.", "To bring up to date; to supply with the most recent available information.", "To make modern or bring up to date.", "To bring to the latest state of technology."], "dodge": ["Trying not to encounter a hurdle or to overcome a difficulty, a problem etc. without dealing directly with it.", "An elaborate or deceitful scheme contrived to deceive or evade."], "precedent": ["A legal case establishing a principle or rule that a court may need to adopt when deciding subsequent cases with similar issues or facts."], "purpose": ["What you want to achieve or do.", "An anticipated outcome that is intended to obtain or that guides your planned actions.", "The act of intending to do something.", "The subject of discourse; the point at issue."], "anxiety": ["An unpleasant complex combination of emotions that includes fear, apprehension and worry, and is often accompanied by physical sensations such as palpitations, nausea, chest pain and/or shortness of breath.", "Lack of calm, peace, or ease."], "avoid": ["Trying not to encounter a hurdle or to overcome a difficulty, a problem etc. without dealing directly with it.", "To do something in such a way that it does not happen."], "thaw": ["The melting of ice, snow, or other congealed matter.", "To become soft or liquefied by heat.", "To remove frost from.", "A period of lessening tension between rivals."], "windchill": ["The felt air temperature taking into account wind speed, which is lower than the actual temperature."], "platitude": ["A saying that is overused or used outside its original context, so that its original impact and meaning are lost."], "cliche": ["A saying that is overused or used outside its original context, so that its original impact and meaning are lost."], "clich\u00e9": ["A saying that is overused or used outside its original context, so that its original impact and meaning are lost."], "trite": ["Repeated too often; overfamiliar through overuse."], "binary star": ["Two stars that orbit each other."], "guitarist": ["A male person who plays the guitar.", "A female person who plays the guitar.", "A person who plays the guitar."], "recording": ["The registration and production of music for eventual playback."], "blacksmith": ["A craftsman expert in iron and other metals work."], "farrier": ["A person who maintains the health and balance of the horse\u2019s feet though trimming of the hoof and placement of horseshoes."], "burial": ["The ritual placing of a corpse in a grave."], "interment": ["The ritual placing of a corpse in a grave."], "safety engineering": ["An applied science that ensures that life-critical systems behave as needed even when pieces fail."], "contemporary": ["Belonging to the present time.", "From the same time period than another person or thing.", "Someone living at the same time."], "virtuoso": ["A person, especially a musician, with a masterly ability, technique, or personal style."], "album": ["A blank book specially designed to keep photographs, stamps, or autographs.", "A vinyl or CD record containing multiple pieces of music."], "Formula One": ["A class of auto racing whereby the cars have to conform to a set of FIA rules which all participants and cars must meet."], "statue": ["A three-dimension work of art, usually of a person or animal, usually created by sculpting, carving, moulding, or casting."], "additional": ["(The quantity) Whereby things are increased."], "extra": ["(The quantity) Whereby things are increased.", "More than is needed, desired, or required."], "abstract": ["A condensed presentation of the substance of a body of material.", "Art that looks as if it contains little or no recognizable or realistic forms from the physical world.", "Regarding abstractions, namely, concepts, ideas, thoughts etc.(Adj.; Re. Philosophy; Source: IPDF)", "Not applied, not practical.", "Difficult to understand.", "To consider a concept without thinking of a specific example; consider abstractly or theoretically."], "affordable": ["Having a price that can be paid with one's financial means."], "acquire": ["To acquire, or attempt to acquire knowledge or an ability to do something.", "To get or obtain an item; to come into the possession of something.", "To come to have or undergo a change of physical features or attributes.", "To take on a certain form, attribute, or aspect."], "airline": ["A company that flies aeroplanes to transport people and goods."], "advocate": ["To encourage support for something.", "One who supports something.", "A lawyer who pleads cases in court.", "To push for something."], "anonymous": ["Of unknown name; whose name is withheld or not acknowledged."], "anonymity": ["A condition in which an individual's true identity is unknown."], "supernova": ["Spectacular explosion of a star at the end of its lifetime"], "at the best": ["In the best manner."], "attachment": ["A document that is being added to the main document.", "A feeling that binds one to a person, thing, cause, ideal, or the like.", "A supplementary part or accessory."], "match": ["To satisfy or fulfill (e.g. a job or a need).", "A stick with inflammable substance on one end that can be set on fire by friction.", "To bring two objects, ideas, or people together.", "To be compatible, similar or consistent; coincide in their characteristics.", "A formal contest in which two or more persons or teams compete.", "A pair of people who live together.", "To be equal to in quality or ability."], "agency": ["A business that serves other businesses.", "An administrative unit of government.", "The way a result is obtained or an end is achieved."], "acting": ["Serving temporarily especially as a substitute.", "The art of representing a character, in a movie or a play."], "permit": ["Legal terms under which a person is allowed to use a product or a service or is authorised to do specific things.", "To approve a specific action.", "To consent to, to give permission.", "To allow the presence of or allow without opposing or prohibiting."], "allow": ["To approve a specific action.", "To consent to, to give permission.", "To let have (e.g. permission).", "To allow or plan for a certain possibility; concede the truth or validity of something.", "To grant as a discount or in exchange.", "To afford possibility.", "To allow the presence of or allow without opposing or prohibiting.", "To assign a resource to a particular person or cause."], "renaissance": ["In European history, a period of renaissance for art, science and literature based on the rediscovery of the achievements of classical antiquity."], "muscle": ["An organ formed by contractile tissue that moves other organs."], "apartheid": ["A system of racial segregation that was enforced in South Africa from 1948 to 1994."], "arbitration": ["A process through which two or more parties designate a third party whose ruling they will accept formally."], "hygrometer": ["Instrument used for measuring humidity."], "alert": ["The act of signalling an impending danger in order to call attention to some event or condition.", "Carefully observant and or attentive.", "Able to use one's senses and mental abilities to perceive one's surroundings and understand the current situation."], "piece of news": ["A recent fact."], "award": ["A tangible symbol signifying approval or distinction.", "To show appreciation for an accomplishment in a tangible way.", "The formal acceptance of a supplier's bid or proposal by a government agency. Following such acceptance, the agency usually issues a purchase order to the vendor reflecting the award.\\n(source: OAS)", "To give, especially as an honor or reward."], "ticket": ["A slip of paper that entitles the owner to use a means of public transport such as trains or buses.", "A slip of paper that entitles the owner to attend an event, such as a theatrical performance or an ice hockey game."], "identical twin": ["A twin with almost exact traits and physical appearances, originating from the same zygote."], "twin": ["A case of multiple birth in which the mother gives birth to two offspring from the same pregnancy.", "Relating to twins."], "ancient": ["Belonging to times long past, very old."], "windy": ["With wind, characterized by the presence of wind."], "acknowledge": ["To admit the knowledge of something.", "To concede as true.", "To admit to be true."], "commiserate": ["To express sympathy or compassion; to feel sorrow, pain, or regret.", "To feel regret and sorrow for someone else because of their suffering or misfortune."], "pity": ["To express sympathy or compassion; to feel sorrow, pain, or regret.", "Deep awareness of the suffering of another, coupled with the wish to relieve it.", "To feel regret and sorrow for someone else because of their suffering or misfortune."], "sympathize": ["To express sympathy or compassion; to feel sorrow, pain, or regret."], "belief": ["That which one holds to be true; the acceptance of a fact, opinion, or assertion as real or true despite a lack of strong evidence or knowledge.", "Religious faith; a persuasion of the truths of religion.", "A vague idea in which some confidence is placed."], "faith": ["Religious faith; a persuasion of the truths of religion."], "creed": ["Religious faith; a persuasion of the truths of religion.", "Any system of principles or beliefs.", "The written body of teachings of a religious group that are generally accepted by that group."], "cumbersome": ["Difficult to handle, because of shape."], "clumsy": ["Difficult to handle, because of shape.", "Lacking coordination in movement or action."], "unwieldy": ["Difficult to handle, because of shape."], "confirm": ["To admit the knowledge of something.", "To strengthen; to make firm.", "To assure the accuracy of previous statements.", "To confer the Catholic sacrament of confirmation."], "cow": ["To inspire fear or hesitation due to fear.", "Female bovine animal (Bos taurus) of the subfamily Bovinae of the family Bovidae.", "Any domestic bovine regardless of sex or age."], "faze": ["To inspire fear or hesitation due to fear."], "daunt": ["To inspire fear or hesitation due to fear.", "To produce fear or dread."], "overawe": ["To inspire fear or hesitation due to fear."], "rain gauge": ["An instrument to gather and measure the amount of liquid precipitation over a set period of time."], "intimidate": ["To inspire fear or hesitation due to fear.", "To instill fear."], "bull": ["Male bovine animal."], "a cappella": ["Without musical accompaniment.", "Sung without instrumental accompaniment."], "heifer": ["A young cow that has not as yet produced any offspring."], "end of the world": ["An event caused naturally or artificially which leads to the end of the world, i.e. of humanity or planet Earth."], "almond-tree": ["(Prunus dulcis) Deciduous fruit tree that can reach 10 m in height; it is grown mainly to exploit the seed of its fruit, almonds."], "part of sentence": ["Component of a sentence that can only be moved as a whole."], "analyst": ["A person with a primary function of analyzing information and data, generally with a more limited, practical and short term set of goals than a researcher."], "ambassador": ["A diplomatic official accredited to a foreign sovereign or government, or to an international organization, to serve as the official representative of his or her own country."], "abuse": ["Coarse, insulting speech or expression.", "Improper or excessive treatment or usage (e.g. alchool); application to a wrong or bad purpose (e.g. public funds).", "To put to a wrong use; to change the inherent purpose or function of something.", "Forcing of undesired sexual activity by one person on another."], "accuracy": ["The quality of being near to the true value."], "halve": ["To divide into two (equal) parts."], "attorney": ["A professional person who advises or represents others in legal matters as a profession."], "announcement": ["Act of giving notice about something."], "auction": ["A public event where goods or property are sold to the highest bidder.", "To sell at an auction."], "bureaucracy": ["An organization characterized by standardised procedure (rule-following), formal division of responsibility, hierarchy, and impersonal relationships."], "boundary": ["The dividing line or location between two areas."], "ballot": ["The process of voting, especially in secret."], "amulet": ["Any object whose characteristic is its alleged power to protect its owner from danger or harm."], "talisman": ["Any object whose characteristic is its alleged power to protect its owner from danger or harm."], "Executive Member of the Managing Board": ["Member of the board of directors of a corporate entity which has certain delegated power of the administrative board itself."], "bidder": ["Someone who makes an offer to buy."], "management board member": ["Member of the board of directors of a corporate entity."], "bullion": ["A bulk quantity of gold or silver, assessed by weight and typically cast as ingots."], "amplifier": ["Device which amplifies the intensity of an electrical signal in order to allow for tansmission and reception."], "animation": ["Film technology for which drawings and objects are recorded in such a way that it seems they move."], "preview": ["Presentaton of a film, theatre play etc. that is being performed for a special group of spectators and which takes place before the official performance."], "application software": ["Software that has the scope to solve a specific problem."], "applications software": ["Software that has the scope to solve a specific problem."], "situation puzzle": ["A pastime, in the form of a statement or question or phrase having a double or veiled meaning, put forth as a puzzle to be solved."], "enigma": ["A pastime, in the form of a statement or question or phrase having a double or veiled meaning, put forth as a puzzle to be solved.", "Any problem where the answer is very complex, possibly unsolvable without deep investigation."], "Nepal Bhasa": ["One of the major languages of Nepal"], "bottle-green": ["Of a deep green colour."], "fraud": ["An act of deception carried out for the purpose of unfair, undeserved, and/or unlawful gain.", "A person who acts dishonestly."], "insinuate": ["To subtly suggest something unpleasant."], "illiterate": ["A person who cannot read and write."], "asylum": ["A shelter from danger or hardship.", "A place of safety, refuge or protection."], "doorknob": ["A device attached to a door, the rotation of which permits the unlatching of a door."], "latch": ["A fastening for a door that has a bar that fits into a notch or slot, and is lifted by a lever or string from either side."], "audience": ["A group of people present at a performance.", "A formal interview with a sovereign, high officer of government, or other high-ranking person."], "anniversary": ["The date on which an event occurred in some previous year."], "apparel": ["Clothes considered as a group."], "annually": ["Once a year."], "eel": ["A snaky edible fish, which lives in freshwater and in the sea."], "eelpout": ["A predatory fish (Zoarces viviparus) whose young, which look like young eels, are born alive."], "abacus": ["A Greek and Latin board for calculating or playing.", "The cover plate of a column as an aid in supporting the architrave."], "figure": ["The visual representation of a person or an object.", "A drawing or diagram conveying information."], "illustration": ["The visual representation of a person or an object.", "An item of information that is representative of a type or class."], "portraiture": ["The visual representation of a person or an object."], "avenue": ["A broad, well-paved and landscaped thoroughfare."], "proponent": ["One who supports something."], "alley": ["A narrow street, especially one through the middle of a block giving access to the rear of lots or buildings."], "or": ["If that is not the case.", "[Conjunction that indicates an alternative.]"], "upstream": ["In the opposite direction of the flow of a river or stream.", "Toward or near the source of a river."], "downstream": ["In the same direction as the flow of a river or stream.", "Toward or near the mouth of a river."], "ubiquitous": ["Being present everywhere at once."], "omnipresent": ["Being present everywhere at once."], "adequate": ["Enough to meet the requirement."], "admission": ["A statement tending to establish the guilt or liability of the person making the statement."], "assumption": ["The act of taking for granted, or accepting a thing without proof.", "The act of taking possession of or power over something."], "supposition": ["That which one holds to be true; the acceptance of a fact, opinion, or assertion as real or true despite a lack of strong evidence or knowledge.", "The act of taking for granted, or accepting a thing without proof."], "eight-legged": ["Having eight legs."], "two legged": ["Having two legs."], "eight legged": ["Having eight legs."], "one-legged": ["Having only one leg."], "drizzle": ["Fine, light rain.", "To rain steadily in fine drops."], "mizzle": ["Fine, light rain."], "enchanted": ["Being under the influence of a magical spell."], "garlic": ["(Allium sativum) a perennial herbaceous plant of the Alliaceae family, cultivated for its eatable bulb very appreciated in gastronomy."], "voracious": ["Devouring or craving food in great quantities."], "edacious": ["Devouring or craving food in great quantities."], "ravenous": ["Devouring or craving food in great quantities."], "rapacious": ["Devouring or craving food in great quantities."], "instigation": ["Deliberate and intentional triggering of negative actions."], "flounder": ["Any of various flatfish of the family Pleuronectidae or Bothidae.", "To act clumsily or confused; to struggle or be flustered."], "musical instrument": ["A device constructed or modified with the purpose of making music."], "separatist": ["An advocate of secession or separation from a larger group."], "insurgency": ["Collective violent action against an established power or arbitrary authority."], "request": ["The expression of a need or desire.", "A formal message requesting something that is submitted to an authority."], "catchment basin": ["An area of land where all rainwater and melting snow naturally moves to the same body of water."], "approbation": ["Approbation; a sanctioning of an item.", "the act of expressing approval or admiration; commendation; laudation."], "provision": ["Something that is stated as a condition for an agreement."], "ambitious": ["Striving for power, honour, office, superiority, or distinction."], "appearance": ["An expression or appearance indicating a certain state of mind.", "The outward or visible aspect of a person or thing.", "A thing seen; a phenomenon.", "The act of appearing or coming into sight.", "The formal attendance (in court or at a hearing) of a party in an action.", "The act of appearing in public view.", "The pretending that something is the case in order to make a good impression."], "assembly": ["Meeting of people of an organised group of a company or an association etc. in order to take decisions.", "A set of pieces that work together in unison as a mechanism or device."], "trousseau": ["An amount paid by the parents of a bride to the groom and or his family."], "obvious": ["Clear or manifest to the understanding."], "apparent": ["Clear or manifest to the understanding.", "Appearing as such but not necessarily so.", "Capable of being seen, or easily seen; open to view; visible to the eye; within sight or view."], "evident": ["Clear or manifest to the understanding."], "ally": ["An associate who provides assistance.", "One united to another by treaty or league."], "teacup": ["A cup in which tea is served."], "approximation": ["An inexact representation of something that is still close enough to be useful."], "assistant": ["A person or persons who provide assistance with some task.", "Someone who is subordinate to another who assists the latter."], "adjunct": ["Someone who is subordinate to another who assists the latter."], "appreciation": ["The understanding of the nature or meaning or quality or magnitude of something.", "The understanding of the nature or meaning or quality or magnitude of something."], "lay-out": ["Organisation of the elements which are part of the whole."], "after-sales service": ["Service being offered to customers by resellers or producers of consumergoods when the same are broken or do not work properly."], "satisfy": ["To give pleasure to; to make happy or satisfied.", "To do what is asked for, requested; to meet the requirements or expectations of."], "range of products": ["Various things or products that are present in a shop or that shall be sold."], "memory": ["The ability of an organism to record information combined with the facility of recall.", "Computer components, devices and recording media that retain data for some interval of time."], "assortment": ["Various things or products that are present in a shop or that shall be sold."], "asynchronous": ["Occurring at different times."], "property": ["Something that is owned.", "An abstract quality associated with an object."], "asset": ["Something that is owned.", "A useful or valuable quality that helps a person succeed."], "ammunition": ["Projectiles to be fired from a weapon."], "chest of drawers": ["A piece of furniture with several horizontal drawers stacke one above each other."], "dresser": ["A piece of furniture with several horizontal drawers stacke one above each other."], "bureau": ["A piece of furniture with several horizontal drawers stacke one above each other."], "anagram": ["A word which results of the transposition or displacemente of letters in another word."], "array": ["A sequence of homogeneous elements of a specific data type."], "anticipation": ["Consideration of something beforehand."], "absolutely": ["Without question."], "abroad": ["Beyond the borders of a country."], "watchful": ["Carefully observant and or attentive."], "vigilant": ["Carefully observant and or attentive."], "convenor": ["The person that not only chairs a meeting but also organises it and calls people to the meeting."], "snow-free": ["Without snow."], "snowfree": ["Without snow."], "snowfall": ["Precipitation in form of snow."], "concert": ["An act where somebody performs music, theater or a similar art in a live show or concert."], "contraceptive": ["Means, practice or agent that prevents women to get pregnant.", "Preventing conception and pregnancy."], "attest": ["To admit the knowledge of something.", "To make something obvious or confirm it.", "To declare or affirm solemnly and formally as true."], "assets": ["The group of positive components of the economical ownership of a company."], "company agreement": ["Act which determines the legal relationships within a company."], "deed": ["Something done voluntarily by a person, and of such a nature that certain legal consequences attach to it.", "A document that is created by a notary or another authorised institution."], "experience": ["Knowledge and abilities gained by doing something for a certain time; the process of gaining it.", "Something that has happened to you, influencing your thoughts and behaviour; a special event in your life.", "To go or live through; to be affected by a certain situation, to have something happen to oneself.", "To have a distinct physical emotion, feeling or sensation.", "To go through (mental or physical states or experiences)."], "assault": ["To apply violent force to someone or something.", "To force sexual intercourse or other sexual activity upon another person, without their consent.", "The act of forcing sexual intercourse or other sexual activity upon another person against their will.", "Close fighting during the culmination of a military attack.", "To attack someone physically or emotionally."], "approximately": ["[Said for a quantity (time, size, place, ...) that is given] in a imprecise way but close to the real value."], "roughly": ["[Said for a quantity (time, size, place, ...) that is given] in a imprecise way but close to the real value."], "appropriate": ["Having sufficient or the required properties for a certain purpose or task; appropriate to the occasion.", "To take possession of by force.", "To assign a resource to a particular person or cause."], "bliss": ["A state of great joy or happiness."], "activation": ["When all or a portion of a plan is put into motion.", "The act of making active and effective."], "excruciating": ["Extremely painful."], "agonizing": ["Extremely painful."], "advantage": ["The quality of having a superior position or the chance for success greater than for others.", "(tennis) first point scored after deuce.", "Benefit resulting from some event or action."], "inverse": ["Reversed in order or nature or effect."], "handkerchief": ["A piece of cloth, usually square and often fine and elegant, carried for wiping the face, nose or hands."], "antiseptic": ["Method for treating or preventing infectious diseases using antiseptic methods such as sterilization."], "towel": ["Piece of absorbent fabric or paper used for drying or wiping."], "alternative": ["A choice between two or more possibilities.", "Serving or used in place of another.", "Necessitating a choice between mutually exclusive possibilities.", "Pertaining to unconventional choices, e.g. life style."], "activist": ["Someone who as a citizen is politically active."], "anybody": ["Any one out of an indefinite number of persons."], "acute": ["Requiring immediate attention.", "In geometry, of an angle, less than 90 degrees.", "Revealing insight and intelligence.", "(Of disease) Characterized by sudden onset of symptoms and short duration."], "urgent": ["Requiring immediate attention.", "Needing immediate action."], "usability": ["The ease with which people can employ a particular tool in order to achieve its particular goal."], "creativity": ["The ability of a person to create or invent something."], "implementation": ["Putting in execution (for instance, the execution of a reform, a plan).", "The act of the realisation of a plan or a program."], "start-up": ["The act of setting something in operation."], "health insurance plan": ["Institution that is subdivided in districts provides medial assistance."], "access": ["A way or means of approaching or entering.", "To reach or gain access to."], "passage": ["A way or means of approaching or entering.", "A way through or along which someone or something may pass."], "accommodate": ["To change to reach a certain scope or condition.", "To have room for; to hold without crowding.", "To be agreeable or acceptable to."], "suit": ["(Of an object) To be of the right size and shape so as to match another object.", "To change to reach a certain scope or condition.", "A comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy.", "One of several classes of a pack of cards distinguished by color and/or specific emblems", "A set of men's clothes consisting of trousers and a jacket, traditionally worn with a shirt and a tie.", "To be agreeable or acceptable to."], "bandage": ["Any therapeutic material that is used to cover an injury."], "cover letter": ["Letter in which one expresses his/her interest for a specific job offer."], "accountant": ["A person who maintains the financial records of other people."], "evasive": ["Inclined or seeking to evade."], "modification": ["The process of becoming different.", "The act of making something different.", "The result of modifying."], "alteration": ["The act of contaminating.", "The process of becoming different.", "The act of making something different."], "accessory": ["An associate in the commission of a crime.", "Clothing that is worn or carried, but not part of your main clothing.", "That which belongs to something else deemed the principal; something additional and subordinate, an attachment."], "approve": ["To regard as good."], "testbed": ["Situation that refers to a relevant or decisive fact to check the accomplishments or the results of a certain situation."], "ban on": ["Request to stop doing something or to avoid something."], "U.S. dollar": ["Currency of the United States of America."], "action": ["Legal act\u0131on that has as a goal to have a judge take a decision.", "To satisfy, carry out, bring to completion (an obligation, a requirement, etc.).", "Something done so as to accomplish a purpose."], "loot": ["Profits from burglary, looting and raids.", "To take the goods of."], "sample": ["(In statistics) A part of a sum of chosen elements that allow for the representation of a phenomenon in order to study the same.", "A small quantity of a product, typically provided to test that product before obtaining a greater quantity of it.", "To take a sample of something for analysis."], "chancellery": ["Place of the public office of a juridical authority."], "arrangement": ["Music that has been adapted for performance with a different ensemble or musical style.", "The manner in which things or persons have been organized; the result of arranging.", "The manner in which objects or persons have been organized or arranged; the result of arranging."], "well-being": ["Feeling well with a high standard of living."], "apparently": ["From appearances alone."], "seemingly": ["From appearances alone."], "ostensibly": ["From appearances alone."], "agenda": ["A book or a program in which one fixes the planning of time.", "A sequence of items of business to be covered at a meeting."], "assistance": ["The contribution to the fulfilment of a need or the furthering of an effort or purpose."], "accelerator": ["A substance which speeds up chemical reactions.", "The mechanism by which an engine's power is increased or decreased.", "A device that uses electric fields to propel electrically charged particles to high speeds.", "Pedal which increases the speed of a vehicle when pushed."], "Martinique": ["Island of the Antilles in the Caribbean Sea"], "aggressive": ["Characteristic of an enemy or one eager to fight."], "backbone": ["The body part that consists of a row of vertebrae, that support the head and torso and that forms a canal for nerves."], "breathless": ["Without breath, having difficulty breathing."], "gasping": ["Without breath, having difficulty breathing."], "panting": ["Without breath, having difficulty breathing."], "stinger": ["In insects, a pointed instrument used for defense and attack and connected with a poison gland."], "sting": ["In insects, a pointed instrument used for defense and attack and connected with a poison gland.", "To hurt, usually by introducing poison or a sharp point, or both."], "vertebral column": ["The body part that consists of a row of vertebrae, that support the head and torso and that forms a canal for nerves."], "travel agency": ["Business that sells travel related products and services to end-user customers."], "turquoise": ["Having a colour between blue and green, similar to the mineral turquoise.", "A colour between blue and green, similar to the mineral turquoise.", "A mineral chiefly consisting of copper and aluminium with a colour varying between blue and bluegreen."], "addiction": ["A compulsive or chronic need.", "A dependence on a habit-forming substance such as a drug or alcohol."], "bargain": ["Anything bought cheap.", "To negotiate the terms of an exchange."], "dicker": ["To negotiate the terms of an exchange."], "banker": ["Someone who owns or is an executive in a bank."], "bankruptcy": ["A legally declared inability of an individual or organisation to pay their creditors."], "blend": ["A mixture of two or more things.", "To mix together different things.", "To mix together different elements.", "The creation of a new piece of music by combining several pre-existing sources."], "breakthrough": ["A productive insight.", "The penetration of a barrier."], "discovery": ["A productive insight."], "calendar": ["A tabular array of the days, usually for a year."], "pullover": ["A thick, warm piece of clothing with long sleeves which is put on over the head."], "suicide attack": ["An attack committed by a person who knows it will cause his or her own death."], "suicide": ["The act of a person killing himself intentionally.", "To end one's own life purposefully.", "Person who intentionally takes his or her own life.", "A woman who intentionally takes her own life.", "A female who intentionally takes her own life.", "A male who intentionally takes his own life."], "candidate": ["Someone who is considered for something like a price or a position."], "campaign": ["A series of operations undertaken to achieve a set goal.", "A series of military actions by a regular army.", "A series of actions advancing a principle or tending toward a particular end."], "characteristic": ["A distinguishing quality.", "Typical or distinctive."], "Cairo": ["The capital of Egypt."], "cash": ["Money in the form of bills and coins.", "To receive an amount due."], "incorrigible": ["Impossible to correct or set right."], "stub": ["An article in Wikipedia that is too short but has merit. It is a mark indicating a need for more work."], "death wish": ["A strong desire to die."], "dreamlike": ["Resembling a dream."], "oneiric": ["Resembling a dream."], "customer": ["Someone who pays for goods or services."], "client": ["Someone who pays for goods or services.", "An application or system that accesses a remote service on another computer system, known as a server, by way of a network."], "patron": ["Someone who pays for goods or services."], "comic": ["A magazine or book containing the sequential art form of a graphic novel.", "A professional performer who tells jokes and or performs comical acts."], "comedian": ["A professional performer who tells jokes and or performs comical acts."], "chairman": ["The presiding officer of a meeting, organization, committee, or other deliberative body."], "cholesterol": ["A lipid from the sterol family both made by the body and consumed in food products that come from animals."], "clinic": ["A place where people who are ill or injured are treated and taken care of by doctors and nurses."], "chassis": ["The base frame of a motor vehicle."], "evasively": ["In a evasive way."], "foreign minister": ["A government minister who helps form the foreign policy of a sovereign state."], "centerline": ["Imaginary line in a boat dividing the boat into two equal parts."], "character": ["A symbol used to represent a sound or a word.", "The inherent complex of attributes that determine a persons moral and ethical actions and reactions."], "associate": ["To join or unite, as one thing to another, or as several particulars, so as to increase the number, augment the quantity, enlarge the magnitude, or so as to form into one aggregate; to sum up; to put together mentally, as, to add numbers; to add up a column.", "A person who joins with others in some activity.", "To connect or to establish a relation."], "botch": ["To cause something to have an unsatisfying, irritating or unusable result."], "adequately": ["In a manner that is equal to some requirement."], "sufficiently": ["In a manner that is equal to some requirement."], "satisfactorily": ["In a manner that is equal to some requirement."], "admit": ["To concede as true.", "To allow to enter; to grant entrance.", "To admit to be true.", "To have room for; to hold without crowding.", "To allow participation in or the right to be part of; permit to exercise the rights, functions, and responsibilities of.", "To afford possibility.", "To admit into a group or community."], "achievement": ["An action that requires great skills to be performed successfully.", "Getting a result by exertion."], "desirous": ["Having or expressing desire for something."], "acceptance": ["The mental attitude that something is believable and should be accepted as true."], "credence": ["The mental attitude that something is believable and should be accepted as true."], "workshop": ["Ample industrial building with only one floor being used for the storage of materials and goods, the parking of vehicles or as place where industrial and artisan work is performed.", "A room or building in which work, especially mechanical work, is carried on."], "academy": ["An institution of higher education and of research, which grants academic degrees.", "A society of learned men united for the advancement of the arts and sciences.", "A school or place of training in which some special art is taught."], "real capital": ["Capital that consists of equipment and machines that are used to produce goods."], "eager": ["Full of yearning.", "Characterized by intense emotion.", "Having or showing keen interest, intense desire, or impatient expectancy.", "A wave caused by an incoming tide traveling up an estuary."], "distinctive feature": ["A defining characteristic."], "kamikaze": ["Japanese aircraft pilot who committed suicide by crashing his aircraft on enemy targets during the Second World War."], "focus": ["A special point used to define a conic section.", "To cause (rays of light, etc.) to converge at a single point.", "To concentrate one\u2019s attention.", "To put (an image) into focus."], "transfer": ["The act of transferring ownership.", "To move persons from one place to another.", "To move (objects or information) from one place to another."], "system": ["The whole of the structures and relations that allow for the passage of goods from the seller to the customer and of the money from the customer to the seller.", "A collection of organized things", "A whole composed of relationships among the members.", "An orderly combination of related parts."], "subject to civil law": ["What is subject to civil law."], "clientele": ["The group of all customers of a shop, a public local, an office etc."], "civil code": ["Organic and systematic collection of laws and codes that rule publicly the civil relationships."], "bonnet": ["The second chamber in the alimentary canal of a ruminant animal"], "involve": ["To cause an active participation."], "appreciate": ["To be grateful or thankful for.", "To view as valuable.", "to raise in value."], "stump": ["The short piece left over after cutting off the most part.", "A small remaining portion of the trunk of a tree with the roots still in the ground."], "diagnosis": ["The result of identifying the nature and cause of something."], "abhor": ["To shrink back with shuddering from something.", "To detest on a high degree; to hate completely."], "loathe": ["To shrink back with shuddering from something.", "To detest on a high degree; to hate completely."], "detest": ["To dislike intensely; to feel strong hostility towards.", "To shrink back with shuddering from something."], "repartee": ["A swift, witty retort."], "diagram": ["A plan, drawing, sketch or outline to show how something works, or show the relationships between the parts of a whole."], "designer": ["Someone who creates plans to be used in making something."], "supervisory board": ["Controlling body of corporations that controlls the administration for the associates."], "demonstration": ["Showing and explaining something.", "A public exhibition of the attitude of a group of persons toward a controversial issue."], "deposit": ["A place where something is deposited, as for storage, safekeeping, or preservation.", "Money placed in an account.", "To put into a bank account.", "Payment or depositing of a sum of money.", "Matter deposited by some natural process.", "A natural concentration of rocks, minerals or paleontological remains."], "cost component": ["Each of the elements that is part of the cost."], "components industry": ["Industry that produces the components of complex systems, that is for industries that produce the finished product."], "democratic": ["Constructed upon the principle of government by the people."], "diplomat": ["A person, such as an ambassador, who represents a government in its relations with other governments."], "invention": ["The act of creating something new, especially as a technical device."], "whip": ["A long piece of leather or rope attached to a handle, which is used to slash at animals to make them move, or to punish people.", "A political party official, whose responsibility it is to make sure that party members attend important parliamentary debates and cast their vote.", "A sweet dish made from cream, eggs, sugar and fruit mixed together.", "To hit a person or an animal with a whip or rod.", "To move quickly and suddenly or violently in a particular direction.", "To remove or pull something quickly and suddenly.", "To stir cream or egg white very quickly until it becomes stiff.", "To defeat thoroughly."], "flog": ["To punish somebody by hitting them repeatedly with a whip or stick."], "Deputy": ["A member of the D\u00e1il \u00c9ireann, or the title of a member of D\u00e1il \u00c9ireann."], "deputy": ["Someone appointed as the substitute of another, and empowered to act for him, in his name or on his behalf.", "A person appointed to represent or act on behalf of others."], "whistle": ["A small metal or plastic tube that produces a high and loud sound when blown. It is used as a signal or to attract attention.", "The sound made by the blowing of a whistle.", "The sound made by forcing air out between closed lips.", "The high loud sound made by air or steam when forced through a small aperture.", "To make a sound or a melody by forcing the breath out between closed lips.", "To produce a high sound by blowing through a whistle.", "To make a high (whistling) sound (a bird, a kettle, the wind etc.)."], "ebb": ["The tide at the point of maximum ebb."], "low tide": ["The tide at the point of maximum ebb."], "high tide": ["The level of water when the tide is at its highest level.", "The time when the tide is highest."], "overdose": ["The deliberate or accidental ingestion of an excessive dose of a pharmaceutically active substance.", "To take an excessive dose of a substance."], "incessant": ["Without interruption.", "Without break, cessation or interruption."], "for days": ["Lasting several days."], "for weeks": ["Lasting several weeks."], "for hours": ["Lasting several hours."], "for minutes": ["Lasting several minutes."], "for seconds": ["Lasting several seconds."], "for months": ["Lasting several months."], "for years": ["Lasting several years."], "for decades": ["Lasting several decades."], "for centuries": ["Lasting several centuries."], "for millennia": ["Lasting several millennia."], "yawn": ["To open the mouth widely and take a long, deep breath because of tiredness or boredom."], "gourmet": ["A person who enjoys choosing, eating and drinking high quality food and wines and who knows a lot about them."], "gastronome": ["A person who enjoys choosing, eating and drinking high quality food and wines and who knows a lot about them."], "epicure": ["A person who enjoys choosing, eating and drinking high quality food and wines and who knows a lot about them."], "epicurean": ["A person who enjoys choosing, eating and drinking high quality food and wines and who knows a lot about them."], "connoisseur": ["A person who enjoys choosing, eating and drinking high quality food and wines and who knows a lot about them.", "A person with superior, usually specialized knowledge or highly refined taste."], "foodie": ["A person who enjoys choosing, eating and drinking high quality food and wines and who knows a lot about them."], "oenophile": ["A person who enjoys choosing and drinking high quality wine and who knows a lot about it."], "wine connoisseur": ["A person who enjoys choosing and drinking high quality wine and who knows a lot about it."], "gourmet of wine": ["A person who enjoys choosing and drinking high quality wine and who knows a lot about it."], "oenophilist": ["A person who enjoys choosing and drinking high quality wine and who knows a lot about it."], "jewel": ["A precious stone such as a diamond, a sapphire or an agate.", "Pieces of jewellery or ornaments that contain precious stones.", "A small precious stone or piece of colored glass used in the machinery of a watch.", "A very important or valuable thing or person."], "treasure": ["A very important or valuable thing or person."], "gem": ["A valuable stone that has been cut and polished and is used in jewellery."], "gemstone": ["A valuable stone that has been cut and polished and is used in jewellery."], "necessary": ["Needed for a purpose or a reason.", "That cannot be avoided."], "essential": ["Needed for a purpose or a reason.", "Of basic importance."], "obligatory": ["Needed for a purpose or a reason."], "inevitable": ["That cannot be avoided."], "required": ["Needed for a purpose or a reason."], "unavoidable": ["That cannot be avoided."], "compulsory": ["Needed for a purpose or a reason."], "inescapable": ["That cannot be avoided."], "mandatory": ["Needed for a purpose or a reason."], "inexorable": ["That cannot be avoided."], "indispensable": ["Needed for a purpose or a reason."], "predetermined": ["That cannot be avoided."], "ineluctable": ["That cannot be avoided."], "vital": ["Needed for a purpose or a reason.", "Extremely important."], "conscious": ["Noticing something; aware of something.", "Able to use one's senses and mental abilities to perceive one's surroundings and understand the current situation.", "(doing or feeling something) in a deliberate or controlled way.", "Being particularly interested in something; caring about something a lot."], "aware": ["Able to use one's senses and mental abilities to perceive one's surroundings and understand the current situation."], "conscious of": ["Noticing something; aware of something."], "aware of": ["Noticing something; aware of something."], "alert to": ["Noticing something; aware of something."], "deliberate": ["(doing or feeling something) in a deliberate or controlled way."], "intentional": ["(doing or feeling something) in a deliberate or controlled way."], "intended": ["(doing or feeling something) in a deliberate or controlled way."], "calculated": ["Arrived at or determined by mathematical calculation.", "Carefully thought out or planned."], "volitional": ["(doing or feeling something) in a deliberate or controlled way."], "wilful": ["(doing or feeling something) in a deliberate or controlled way."], "on purpose": ["(doing or feeling something) in a deliberate or controlled way.", "With intention; in an intentional manner."], "terrain": ["Land or an area of a particular type.", "A tract of land of undefined size."], "determination": ["The quality of insisting to do or achieve something.", "The act of intending to do something."], "distinct": ["Very clear."], "demonstrate": ["To display the method of using an object.", "To give a proof that something is true.", "To prove and cause to be accepted as true.", "To take part in a public demonstration."], "prove": ["To give a proof that something is true."], "discount": ["A reduction of the selling price of something or of the total cost of an invoice.", "The act of abating or the state of being abated."], "moniker": ["An informal, often humorous name; a name that is either connected to the real name, the personality, the appearance or an anecdote."], "nickname": ["An informal, often humorous name; a name that is either connected to the real name, the personality, the appearance or an anecdote.", "To give a nickname to (a person or thing)."], "sobriquet": ["A descriptive term accompanying or occurring in place of a name.", "An informal, often humorous name; a name that is either connected to the real name, the personality, the appearance or an anecdote."], "byname": ["An informal, often humorous name; a name that is either connected to the real name, the personality, the appearance or an anecdote."], "epithet": ["An informal, often humorous name; a name that is either connected to the real name, the personality, the appearance or an anecdote.", "A descriptive term accompanying or occurring in place of a name."], "cognomen": ["An informal, often humorous name; a name that is either connected to the real name, the personality, the appearance or an anecdote."], "appellation": ["An informal, often humorous name; a name that is either connected to the real name, the personality, the appearance or an anecdote."], "crush": ["To press or squeeze something so hard that it causes damage or deforms the object; to press or squeeze someone so hard that it injures him or her.", "To push or press something into a small confined space.", "To break something into small pieces by pressing it flat, or grinding it to powder.", "To defeat an opponent overwhelmingly, using great force or violence.", "To destroy somebody's confidence or happiness; to humiliate.", "A crowd of people pressed close together in a small space.", "A strong feeling of love, often for just a short time, usually by an adolescent.", "A drink made from fruit juice.", "To end in success a struggle or contest.", "To tighten (something) so strongly that it loses the form and the original consistency"], "grind": ["To break something into small pieces by pressing it flat, or grinding it to powder.", "Hard monotonous routine work.", "An insignificant student who is ridiculed as being affected or boringly studious.", "To shape or form by grinding."], "quell": ["To defeat an opponent overwhelmingly, using great force or violence."], "mortify": ["To destroy somebody's confidence or happiness; to humiliate."], "infatuation": ["A strong feeling of love, often for just a short time, usually by an adolescent."], "squash": ["A squash fruit of the Cucurbita genus, most commonly orange in colour when ripe and traditionally used during Halloween.", "To press or squeeze something so hard that it causes damage or deforms the object; to press or squeeze someone so hard that it injures him or her.", "A drink made from fruit juice.", "A game played in a walled court with soft rubber balls and bats like tennis rackets.", "A concentrated beverage produced by boiling fruit juice with sugar for the purpose of prolonging the time it may be used, possibly with addition of preservatives. It is diluted with water prior to consumption."], "pulverize": ["To break something into small pieces by pressing it flat, or grinding it to powder."], "stamp out": ["To defeat an opponent overwhelmingly, using great force or violence."], "humiliate": ["To destroy somebody's confidence or happiness; to humiliate."], "throng": ["A crowd of people pressed close together in a small space.", "A large group of people.", "To press tightly together or cram."], "puppy love": ["A strong feeling of love, often for just a short time, usually by an adolescent."], "mash": ["To press or squeeze something so hard that it causes damage or deforms the object; to press or squeeze someone so hard that it injures him or her."], "crumble": ["To break something into small pieces by pressing it flat, or grinding it to powder.", "To reduce in small fragments."], "overpower": ["To defeat an opponent overwhelmingly, using great force or violence."], "demoralize": ["To destroy somebody's confidence or happiness; to humiliate."], "composition": ["The way in which a certain structure, organism etc. is built.", "The proportion of different parts to make a whole."], "configuration": ["The way in which a certain structure, organism etc. is built."], "conception": ["The whole of ideas and theories referring to a theme.", "The act of becoming pregnant (a female)."], "attainment": ["The capacity to do something well. They are usually acquired or learned, as opposed to abilities, which are often thought of as innate.", "Reach what was supposed to be reached."], "enable": ["To make something possible or allow for something."], "administrative board": ["Council which is in charge with the administration and management of a company (the term is in particular referred to corporations)."], "administrative council": ["Council which is in charge with the administration and management of a company (the term is in particular referred to corporations)."], "cost containment": ["In economical context, the limiation and reduction of costs."], "orthography": ["The study of correct spelling according to established usage."], "daily newspaper": ["A daily or twice daily published publication (usually printed on cheap, low-quality paper) that contains news and other articles."], "regular hexahedron": ["A three-dimensional polyhedron, bounded by six square sides of equal size; one of the five Platonic solids"], "hexahedron": ["A three-dimensional polyhedron, bounded by six square sides of equal size; one of the five Platonic solids"], "liquidated damages": ["A payment to which the contractual partner is entitled if the contractor does not or not adequately fulfill his contractual obligations."], "contractual penalty": ["A payment to which the contractual partner is entitled if the contractor does not or not adequately fulfill his contractual obligations."], "contract penalty": ["A payment to which the contractual partner is entitled if the contractor does not or not adequately fulfill his contractual obligations."], "devaluation": ["The deliberate lowering of a currency's value compared to another currency or a standard value."], "defendant": ["Any party who is required to answer the complaint of a plaintiff in a civil lawsuit before a court."], "accused": ["Any party who is required to answer the complaint of a plaintiff in a civil lawsuit before a court."], "directory": ["An alphabetical list of names and addresses.", "A structured listing of the names and characteristics of the files on a storage device."], "diluted": ["Reduced in strength or concentration or quality or purity."], "declaration": ["An emphatic and explicit announcement."], "tunic": ["Old Roman undergarment."], "statement": ["An emphatic and explicit announcement.", "What is being told in a clear and orderly manner."], "describe": ["To give an account or representation in words.", "To give a description of.", "To identify as in botany or biology, for example."], "data": ["Information expressed in bits and bytes or numbers; the raw material of information."], "bereave": ["To take away someone or something important or close."], "define": ["To give a definition for the meaning of a word."], "devastating": ["Being severely destructive.", "Brought to ruin or reduced to complete disorder."], "default": ["A value that is used when no value is specified.", "To fail to meet an obligation.", "Missing fulfillment of a certain obligation or a obligation by law or a contract.", "Failure of a debtor to meet his financial obligations.", "To fail to meet financial obligations; to fail to pay up."], "deficit": ["An excess of liabilities over assets.", "A shortage or absence of what is needed."], "depreciation": ["The falling of value, the reduction of worth."], "destination": ["The place set for the end of a journey, or to which something is sent.", "Defined usage or destination for something."], "desperate": ["Without hope or expectation.", "Fraught with extreme danger; nearly hopeless."], "full employment": ["A situation in which all people who are willing to work have a paid employment."], "lottery ticket": ["A purchasable slip of paper with a combination of numbers for which a winner is determined."], "deployment": ["The distribution of military forces prior to battle."], "deterioration": ["The process of changing to an inferior state."], "arrival": ["Act of reaching a certain place."], "Zacheus": ["A superintendent of customs; a chief tax-gatherer (publicanus) at Jericho (Luke 19:1-10)."], "extraordinary assembly": ["Assembly which can be called for at any time in order to decide about exceptional and very important points."], "extraordinary plenary meeting": ["Assembly that can be called any time to decide about very important and exceptional points, all members of a certain group are invited."], "breakable": ["Easy to break."], "fragile": ["Easy to break."], "alternate": ["Going back and forth between two states or conditions.", "Every second one of a series.", "Being or succeeding by turns."], "psychic": ["Of or pertaining to the soul."], "mental": ["Of or pertaining to the soul.", "Related to the mental or spiritual condition as opposed to the bodily or exterior phenomena."], "affable": ["Receiving others kindly and conversing with them in a free and friendly manner.", "Diffusing warmth and friendliness."], "courteous": ["Good mannered.", "Receiving others kindly and conversing with them in a free and friendly manner."], "amendment": ["An alteration made or proposed to be made in a bill or motion that adds, changes, substitutes, or omits."], "adverse": ["Contrary to one's interests or welfare."], "unfavourable": ["Contrary to one's interests or welfare."], "bylaws": ["Act which determines the legal relationships within a company."], "articles of association": ["Act which determines the legal relationships within a company."], "articles of incorporation": ["Act which determines the legal relationships within a company."], "articles of partnership": ["Act which determines the legal relationships within a company."], "contract of association": ["Act which determines the legal relationships within a company."], "memorandum of association": ["Act which determines the legal relationships within a company."], "allegation": ["A statement of a fact in a pleading, that will be attempted to be proven.", "A public statement, accusing someone of wrongdoing or illegal activities, without giving proof."], "medical insurance plan": ["Institution that is subdivided in districts provides medial assistance."], "contradiction": ["State that represents opposed aspects."], "testimony": ["An account of a first-hand experience.", "Statements made by a witness in court."], "tolerance": ["The ability to allow for the beliefs or practices of others.", "The variation or deviation from a standard, especially the maximum permitted variation."], "owner": ["One who owns.", "The owner of a company."], "construction": ["The process of constructing.", "Anything that has been constructed.", "OpenStreetMap tag for roads under construction, use with *=construction."], "stressed": ["Suffering from stress."], "terminal": ["A building in an airport where passengers transfer from ground transportation to the facilities that allow them to board aeroplanes.", "A device for entering data into a computer or a communications system and/or displaying data received; especially a device equipped with a keyboard and some sort of textual display.", "A computer program that emulates a terminal.", "A contact on an electrical device (such as a battery) at which electric current enters or leaves."], "unconstitutional": ["Violating the consitution."], "television advertisement": ["Short film used to advertise products, services, businesses or organisations on television."], "commercial": ["Short film used to advertise products, services, businesses or organisations on television.", "Of or pertaining to commerce."], "nullify": ["To declare invalid."], "annular": ["Pertaining to, or having the form of, a ring."], "elf": ["A mythical creature of Germanic mythology. In Norse mythology they were originally minor gods of nature and fertility. They are often pictured as youthful-seeming men and women of great beauty living in forests and other natural places, underground, or in wells and springs. They have been portrayed to be long-lived or immortal and they have magical powers attributed to them.", "One of the archetypal races of modern fantasy literature, most notably the \"Lord of the Rings\" cycle by J.R.R. Tolkien. Usually, they are conceived as beings similar in appearance to humans with pointy ears. Compared to humans, they are depicted as fairer and wiser, with greater spiritual powers, keener senses, and a closer empathy with nature.", "A playable race in the fantasy roleplaying game Dungeons and Dragons and similar games. They have a slighter build than humans and pointy ears, and are generally more agile. They have a reputation as good wizards and archers."], "contribute": ["To apply a quality on (a person).", "To take part in something, to take part in the achievment of something."], "convoke": ["Call a group of people that are part of a company organ to meet."], "roofing": ["Structure or material that covers an edifice."], "market coverage": ["Reaching of a certain geographical area with the own product or service."], "half-elf": ["A playable race in the fantasy roleplaying game Dungeons and Dragons and similar games. With both human and elven ancestry, they share some features of both races."], "magic spell": ["A words or formula supposed to have magical powers."], "short film": ["Film that does not last long, normally it takes not more than 15 minutes to finish."], "growth": ["Economical development that appears in case of higher occupation rates, capital, consume and production.", "The process by which an organism or any of its parts increases in size."], "lightning conductor": ["A metallic device that is attached to a high point and leads to the ground; protects the building from destruction by lightning."], "on the part of": ["As regards, what refers to."], "expiration": ["Point in time that is determined for the completion of an activity."], "deliberation": ["Decision of a committee."], "deduct": ["To take one thing from another.", "To deduct, to take off."], "referred to as": ["To be called in a certain way."], "declare": ["To make something officially known or to confirm something.", "To inform an authority about something that is subject to taxation such as incomes, goods one is importing, etc."], "assume": ["To interpret something in a certain way; convey a particular meaning or impression.", "To accept without verification or proof.", "Seize and take control without authority and possibly with force.", "To regard as a possible hypothesis.", "To take on as one's own the expenses or debts of another person.", "To take on titles, offices, duties, responsibilities.", "To take on a certain form, attribute, or aspect."], "loudspeaker": ["Device which transforms electrical signals into acoustical signals."], "autonomy": ["A situation of self government."], "accumulation": ["The collection or bringing together of things."], "Afghan": ["A person from Afghanistan or of Afghan descent.", "A woman of Afghan nationality or descent.", "Of, from, or pertaining to Afghanistan or Afghans.", "A citizen of the state Afghanistan"], "temporarily": ["For a relatively brief period of time."], "tournament": ["A series of games played competitively to determine a single winning team or individual."], "template": ["A model or pattern used for making multiple copies."], "throughput": ["The rate at which something can be processed."], "detonate": ["To expand suddenly with great force, a loud noise and release energy because of strong inner pressure due to a violent chemical or physical reaction."], "blow up": ["To expand suddenly with great force, a loud noise and release energy because of strong inner pressure due to a violent chemical or physical reaction."], "displode": ["To expand suddenly with great force, a loud noise and release energy because of strong inner pressure due to a violent chemical or physical reaction."], "flatterer": ["Making many and often exaggerrated compliments."], "taxpayer": ["A person or organisation who is subject to, liable for, or pays tax."], "traditional": ["Consisting of or derived from a story or a custom passed down from generation to generation."], "treasurer": ["The official entrusted with the funds and revenues of an organization."], "Toronto": ["The provincial capital of Ontario, Canada."], "Ontario": ["A province located in the east-central part of Canada."], "secretary": ["A person working in an office, assisting a higher-level employee, writing letters, taking phone calls, typing, keeping records, arranging the schedule etc.", "An official at a club, society etc., who is in charge of daily affairs such as writing letters, keeping records, and making arrangements.", "A desk used for writing.", "A person to whom a secret is entrusted."], "private secretary": ["A person working in an office, assisting a higher-level employee, writing letters, taking phone calls, typing, keeping records, arranging the schedule etc."], "impetuous": ["Causing blatant and strong emotions."], "discriminatinating": ["The way of treating something or someone differently."], "disengagement": ["The doing away with a responsibility or a liability."], "term": ["A word or phrase, especially one from a specialised area of knowledge.", "A duration of a set length; a period in office of fixed length."], "tourist": ["Someone who travels for pleasure rather than for business."], "teacher": ["A person who passes on knowledge, especially one employed in a school.", "A personified abstraction that teaches."], "technical": ["A pick-up truck with a gun or another relatively small weapons system mounted on it.", "Of or relating to proficiency in a practical skill."], "technique": ["A way of accomplishing a task that is not immediately obvious."], "coordinating conjunction": ["Word or phrase grammatically connecting two parts of same lexical category and same syntactic function."], "dispose of": ["To be in the position to use something or somebody freely."], "falsification": ["The negative alteration or falsification of something."], "terrorism": ["The calculated use of violence, or the threat of violence, against civilians or property to coerce or intimidate governments or societies in order to attain goals that are political or religious or ideological in nature."], "takeover": ["The purchase of one company by another."], "donate": ["To give away something of value to support or contribute towards something."], "taciturn": ["Temperamentally untalkative, silent."], "on impulse": ["In a spontaneous manner, driven by instinct."], "building trade": ["The technique of the production process referring to the planning, construction, modification and the demolition of buildings."], "taciturnly": ["In a taciturn way."], "actual": ["Real and not potential.", "Existing in act or fact.", "Being or existing at the present moment.", "Being or reflecting the essential or genuine character of something.", "Taking place in reality; not pretended or imitated."], "carry out": ["To bring something to fulfilment."], "effectiveness": ["The ability or the capability to produce the desired effect."], "efficiency": ["Ability to function properly."], "household appliance": ["Electric appliance or tool that is being used in the household."], "up-and-coming": ["Of something or somebody that is reaching a degree of popularity."], "institution": ["Stucture that has been organised for a certain scope (that can be for nor not for profit), which the legislation attributes a incorporated status."], "public authority": ["Incorporated institution that has the public interest as its purpose."], "display": ["Way in which the goods in a sales point are presented to the public.", "To have somebody see something.", "To show, make visible or apparent."], "scandal": ["A widely publicized incident involving allegations of wrong-doing, disgrace, or moral outrage."], "be understood as": ["Being understood in a certain way."], "talkative": ["Tending to talk or speak freely and or often.", "Full of trivial conversation.", "Inclined to communicate or impart."], "scalp hair": ["The collection or mass of hair on a person's head except the face."], "self service": ["Purchasing system without seller, in which the customer chooses himself the products in the store and brings them to the checkout."], "self-service": ["Purchasing system without seller, in which the customer chooses himself the products in the store and brings them to the checkout."], "furthermore": ["In addition to what has been said."], "lustrum": ["A period of five years."], "Dushanbe": ["The capital of Tajikistan, Asia."], "mellifluous": ["As sweet as honey."], "Dutch doughnut": ["A deep-fried yeast dough meal that has its roots in the Low Lands of Western Europe. It is traditionally eaten on New Year's Eve."], "Flemish": ["A Western Germanic language spoken mainly in Flanders, the Netherlands and France."], "fixed star": ["Any star, especially when seen as the centre of any single solar system."], "comet": ["A block of ice and dust that orbits the sun. Seen from the earth, it looks like a bright star with a tail."], "humankind": ["All human beings."], "florist": ["Person whose job is to sell flowers.", "A shop that sells flowers."], "flower shop": ["A shop that sells flowers."], "mechanics": ["Branch of physics concerned with the behaviour of physical bodies when subjected to forces or displacements, and the subsequent effect of the bodies on their environment."], "mechanical work": ["The amount of energy transferred by a force."], "semantic": ["Of or relating to the relationship between words and their meanings."], "technical term": ["Special expression from a specific special field."], "B": ["The musical note between A and C."], "extinguish": ["Treat something in such a way that it does not exist anymore.", "To remove or get rid of, as being in some way undesirable.", "To kill in large numbers.", "To make something stop burning.", "To totally stop something which is on fire from burning any more."], "highlight": ["Show something in a particular way."], "carpenter": ["Artisan who works with wood."], "failure": ["A negative result, not having success."], "sales proceeds": ["Se complete amount a company or similar has earned through sales in a certain period of time."], "refer expressly to": ["Refer to something explicitly."], "potato starch": ["Substance extracted from potatoes. It is white, floury and rich in starch and is used to produce flour and for baking."], "orientation": ["The focusing on a certain goal."], "equipped": ["Having at disposal what is needed."], "air cushion vehicle": ["Watercraft which is carried over the water by a hover cushion.", "Craft which is carried by a hover cushion."], "hover craft": ["Watercraft which is carried over the water by a hover cushion."], "hovercraft": ["Watercraft which is carried over the water by a hover cushion."], "supplier": ["Manufacturer that delivers certain goods to companies, shops or private people etc."], "pronounce": ["To express the sound of a syllable, a word or a group of words."], "panoply": ["A complete and impressive array."], "commons": ["A mutual good, shared by more than one, for example air, water, information."], "pillow": ["Cushion placed under the head for sleeping."], "hang out in bed": ["To stay in bed longer than necessary."], "aphorism": ["A short phrase conveying some principle or concept of thought."], "axiom": ["A self-evident and necessary truth."], "leverage": ["The mechanical advantage gained by being in a position to use a lever.", "Influence that is used to gain a strategic advantage.", "Any technique to multiply gains and losses."], "usufruct": ["The legal right to use and derive profit or benefit from property that belongs to another person, as long as the property is not damaged."], "migration into cities": ["The migration from the countryside to the city in the search of better conditions of life."], "range": ["Ample range of elements or phenomenons.", "Distance from the lowest to the highest pitch a musical instrument can play.", "The limit of capability.", "In mathematics, the set with all values a function can return on its domain."], "generation": ["The production or creation of something.", "A single step or stage in the succession of natural descent.", "All of the people born and living at about the same time, regarded collectively."], "certifiable": ["Fit to be legally certified as insane and to be treated accordingly."], "powdered sugar": ["Very finely ground sugar."], "hitherto": ["Up to the present.", "Continuously, during all time up to this or that time.", "Up to that time."], "so far": ["Up to the present."], "give an account of": ["To explain giving details."], "stapling": ["Temporary searn that is being created with long stitches before the definite searn is being sewn."], "impose": ["To enforce something, to constrain somebody to accept something."], "entrepreneur": ["Who starts and executes a business activity in order to distribute goods or services."], "entrepreneurial": ["Being part of the enterpreneur or referring to the enterpreneur."], "handicraft manufacturer": ["Company that does not produce industrially but with the means of relatively simple devices."], "industrial firm": ["Company that produces on a large scale with up-to-date technology."], "imputation": ["Attribution of a punishable act, a liability or similar to someone."], "ongoing": ["Happening in a certain moment and then goes ahead."], "before a court": ["At court, facing a lawsuit."], "in the field": ["Referring to a certain theme."], "concerning this matter": ["Referring to the theme one is talking about or wants to talk about."], "on one's own behalf": ["Oneself, assuming the complete responsibility."], "due": ["Going to lose validity."], "in view of": ["Considering that something will happen."], "merge": ["To unify an element with a larger structure.", "To join two parts into a single set or element; to become one.", "To mix together different elements."], "newbie": ["A new user or participant; someone who is extremely new and inexperienced."], "non-differentiated marketing": ["Marketing strategy that is based on the fact that the market being approached by the company is homogeneous and therefore not segmented."], "household appliance industry": ["Industry that produces appliances or tools that are being used in households."], "metallurgic industry": ["Industry that includes all branches that deal with the processing of metal and the production of metal goods."], "integration": ["Someone's insertion into a society or a group.", "A process that is usually used to find a measure of totality such as area, volume, mass, displacement, etc., when its distribution or rate of change with respect to some other quantity (position, time, etc.) is specified."], "introduction": ["The act or process of introducing.", "An initial section of a book or article, which introduces the subject material.", "A means or measure or an action taken in preparation of.", "The initial section; a foreword; a preface; a lead-in; a kind of beginning before something really starts, etc."], "supplementary": ["That is being added as integratory part.", "Functioning in a supporting capacity."], "poet": ["A person who writes poems.", "A man who writes poems."], "dagger": ["A short knife with a pointed blade used for piercing or stabbing."], "unicycle": ["A vehicle similar to a bicycle, but with only one wheel."], "fully paid": ["Refers to the completely paid capital of a company."], "broker": ["The person being the intermediary among more people to facilitate the creation and conclusion of a contract."], "middleman": ["The person being the intermediary among more people to facilitate the creation and conclusion of a contract.", "An intermediate dealer between a manufacturer and a retailer or customer."], "about-turn": ["Change of the direction of a movement into the opposed direction.", "Act of pivoting 180 degrees, especially in a military formation."], "irrigational": ["What is needed to irrigate."], "large land holdings": ["Huge estate property which is not being cultivated or on which extensive agriculture is being operated."], "authorised": ["Being allowed to carry out a legal act."], "lever": ["Bar on which manual action is carried out to move a mechanical device, to open or close an electrical circuit."], "liquidate": ["To turn funds into cash."], "majority": ["More than half (50%) of some group.", "Legal adulthood."], "shut": ["To move (a door, a window, etc.) so that it closes its opening.", "To become closed."], "mouthful": ["A portion of food that can fit comfortably in the mouth.", "A small amount of solid food; a mouthful."], "badminton": ["A racquet sport played by two to four players on a rectangular court divided in two halves by a net over which must pass a shuttlecock (a semispherical cork with feathers attached to it)."], "by means of": ["Using one thing to reach another one.", "By means of; through."], "deserving": ["Being worth the appreciation and the prises."], "financial means": ["The sum of receivables, money on bank accounts, goods and securities that are part of the liquidity of a company and which can be converted into cash easily."], "historical development": ["the past events concerned in the development of a particular place, object, subject etc."], "orthogonal": ["Not pertinent to the matter under consideration.", "At an angle of exactly 90 degrees."], "extraneous": ["Not pertinent to the matter under consideration.", "Not belonging to that in which it is contained; introduced from an outside source.", "Not essential.", "Coming from the outside."], "monetary": ["Concerning the money understood as currency used in a certain country."], "negligence": ["Ignoring of the obligation to diligence that is foreseen by law in order to carry out a task.", "The act of abandoning something."], "retailer": ["Merchant who owns or administrates a reatail shop."], "in the sign of": ["With the main characteristic."], "niche market": ["Market segment in which there is not much competition."], "appoint": ["To choose someone for an office or a charge assigning duties and responsibilities with an act of authority."], "obligation": ["Juridical liability based on which a person, called debitor, must carry out a service of economical value for another person, called creditor."], "business purpose": ["Goal a company targets."], "standardization": ["Adaptation and uniformation following a predominant model."], "interest payable": ["Interests that need to be paid."], "overhead": ["The expense of a business not directly assigned to goods or services provided."], "centaur": ["A mythical being that is half man and half horse."], "unicorn": ["A mythical animal in the form of a horse, with a single twisted horn on the forehead."], "computer science": ["Science and technique of data elaboration and of automatic treatment of information."], "curious": ["Having the desire to see new, interesting, rare things, and the like.", "Wanting to discover a secret.", "Out of the ordinary."], "inquisitive": ["Wanting to discover a secret."], "Nature": ["An international weekly journal of science."], "go through": ["To go or live through; to be affected by a certain situation, to have something happen to oneself.", "To bring something to fulfilment.", "To pass a phase, begin and take to the end an operation phase."], "liabilities": ["The part of the balance sheet in which the debts are written down."], "market penetration": ["Level of market presence of a company with its products or services."], "opponent": ["Person or group of people that is the adversary part in a lawsuit.", "Characterized by active hostility."], "opposing party": ["Person or group of people that is the adversary part in a lawsuit."], "on behalf of a third party": ["On behalf of someone who is not directly involved in a transaction."], "for just cause": ["Because of a severe misconduct."], "so far as": ["at the intensity or degree that"], "perceive": ["To understand with the means of the senses or subconsciously.", "To see, discover or determine something, unclear, distant or hidden, by looking carefully."], "misfire": ["Not having any more the same performance."], "matching concept": ["Pirnciple that refers to the belonging of the costs to the past accounting year and the future one."], "gratuitous": ["Given freely."], "setting": ["A certain way software, a webpage or an electronic device reacts, displays certain information or activates certain functions as selected by the user (note: usually plural)."], "POTS": ["Voice-grade analog telephone service; the basic form of residential and small business service connection to the telephone network now gradually replaced by more advanced forms of telephony such as ISDN, mobile phones and VoIP"], "plain old telephone service": ["Voice-grade analog telephone service; the basic form of residential and small business service connection to the telephone network now gradually replaced by more advanced forms of telephony such as ISDN, mobile phones and VoIP"], "Post Office Telephone Service": ["Voice-grade analog telephone service; the basic form of residential and small business service connection to the telephone network now gradually replaced by more advanced forms of telephony such as ISDN, mobile phones and VoIP"], "Post Office Telephone System": ["Voice-grade analog telephone service; the basic form of residential and small business service connection to the telephone network now gradually replaced by more advanced forms of telephony such as ISDN, mobile phones and VoIP"], "plain old telephone system": ["Voice-grade analog telephone service; the basic form of residential and small business service connection to the telephone network now gradually replaced by more advanced forms of telephony such as ISDN, mobile phones and VoIP"], "public switched telephone network": ["Fixed and mobile telephone network constructed by public companies, in which the client is wired in pairs to the network."], "public circuit-switched telephone network": ["Fixed and mobile telephone network constructed by public companies, in which the client is wired in pairs to the network."], "juridical personality": ["The characteristic of an entity that is not a person, but is regarded by law to have the status of a person."], "PSTN": ["Fixed and mobile telephone network constructed by public companies, in which the client is wired in pairs to the network."], "telephone network": ["Fixed and mobile telephone network constructed by public companies, in which the client is wired in pairs to the network."], "estate": ["Rural territory made up of land that can be cultivated and where a farmer's house can be built on."], "weighted average cost": ["Cost to be incurred by a company for the collection of financial resources from partners and third-party lenders."], "bearer": ["Carrying or bearing."], "temporary": ["For a limited and prefixed period of time.", "A means or measure or an action taken in preparation of."], "live show": ["An act where somebody performs music, theater or a similar art in a live show or concert."], "oyster sauce": ["A dark brown sauce commonly used in Chinese and Filipino cuisine; it is prepared from oysters, brine and umami flavour enhancers such as MSG."], "Sichuan vegetable": ["A type of pickled mustard stem originating from Sichuan, China. The pickle is made from the knobby, fist-sized, swollen green stem of Brassica juncea subsp. tatsai. The stem is first salted, pressed, and dried before being rubbed with hot chile paste and allowed to ferment in an earthenware jar."], "Szechwan vegetable": ["A type of pickled mustard stem originating from Sichuan, China. The pickle is made from the knobby, fist-sized, swollen green stem of Brassica juncea subsp. tatsai. The stem is first salted, pressed, and dried before being rubbed with hot chile paste and allowed to ferment in an earthenware jar."], "jar choy": ["A type of pickled mustard stem originating from Sichuan, China. The pickle is made from the knobby, fist-sized, swollen green stem of Brassica juncea subsp. tatsai. The stem is first salted, pressed, and dried before being rubbed with hot chile paste and allowed to ferment in an earthenware jar."], "zha cai": ["A type of pickled mustard stem originating from Sichuan, China. The pickle is made from the knobby, fist-sized, swollen green stem of Brassica juncea subsp. tatsai. The stem is first salted, pressed, and dried before being rubbed with hot chile paste and allowed to ferment in an earthenware jar."], "rice congee": ["A type of rice porridge (rice cooked until it becomes soft and thick), that is eaten in many Asian countries. In some cultures, congee is eaten primarily as a breakfast food, while in others, it is eaten as a substitute for rice in other meals. Congee can be made in a pot, or in a rice cooker."], "motion": ["A change in location; the opposite of standing still."], "movement": ["A large number of people united for some specific purpose.", "A change in location; the opposite of standing still.", "A major self-contained part of a symphony or sonata.", "The elimination of fecal waste through the anus.", "A series of actions advancing a principle or tending toward a particular end."], "culinary": ["Related to or used in cooking."], "chromosome": ["Components in a cell that contain genetic information."], "rose": ["A flower of the rose plant (Rosa)."], "polearm": ["A close combat weapon with the main fighting part of the weapon placed on the end of a long shaft, typically of wood."], "pole weapon": ["A close combat weapon with the main fighting part of the weapon placed on the end of a long shaft, typically of wood."], "Dungeons and Dragons": ["A fantasy tabletop role-playing game (RPG) currently published by Wizards of the Coast. The original edition, designed by Gary Gygax and Dave Arneson, was first published in 1974 by Gygax's company Tactical Studies Rules (TSR). Originally derived from tabletop games (such as Chainmail) played with paper, pencil, and dice, D&D's publication is widely regarded as the beginning of modern role-playing games."], "Dungeons & Dragons": ["A fantasy tabletop role-playing game (RPG) currently published by Wizards of the Coast. The original edition, designed by Gary Gygax and Dave Arneson, was first published in 1974 by Gygax's company Tactical Studies Rules (TSR). Originally derived from tabletop games (such as Chainmail) played with paper, pencil, and dice, D&D's publication is widely regarded as the beginning of modern role-playing games."], "D&D": ["A fantasy tabletop role-playing game (RPG) currently published by Wizards of the Coast. The original edition, designed by Gary Gygax and Dave Arneson, was first published in 1974 by Gygax's company Tactical Studies Rules (TSR). Originally derived from tabletop games (such as Chainmail) played with paper, pencil, and dice, D&D's publication is widely regarded as the beginning of modern role-playing games."], "fleeting": ["Passing quickly."], "ISO 3166-1 alpha-2": ["Two-letter country codes in the ISO 3166-1 standard to represent countries and dependent territories."], "Haussmannian": ["Built in the style of Georges Eug\u00e8ne Haussmann."], "prevailing": ["Most frequent or common.", "Generally accepted, used or practiced at the moment."], "faultless": ["Without fault.", "Without fault or error."], "information science": ["Science and technique of data elaboration and of automatic treatment of information."], "alimony": ["Financial support provided after a separation or divorce by the financial stronger partner to the ex-partner."], "tradition": ["A specific practice of long standing."], "transaction": ["A procedure that is guaranteed to perform completely or not at all.", "An agreement between a vendor and a consumer for provision of a good or service."], "turnaround": ["The time required to carry out a task.", "A reversal of policy."], "tentative": ["Subject to change; not final or fully worked out.", "A means or measure or an action taken in preparation of."], "theoretical": ["Concerned primarily with theories or hypotheses rather than with practical considerations.", "Concerned with theories or hypotheses rather than with practical matters."], "line segment": ["A straight line defined by two points. It provides the shortest connection between two endpoints."], "dot": ["A dot-shaped punctuation mark.", "A small spot, mark or feature which does not bear any details.", "A powerful hallucinogenic drug manufactured from lysergic acid."], "as soon as": ["at the time following immediately the time when"], "the minute": ["at the time following immediately the time when"], "endodontics": ["The branch of dentistry that deals with diseases of the tooth root, dental pulp, and surrounding tissue."], "dentistry": ["A branch of medicine that involves diagnosis, prevention, and treatment of any disease concern about teeth, oral cavity, and associated structures."], "palpable": ["Easily perceived."], "palpation": ["The feeling or pushing on various parts of a patient's body to determine medical condition such as the normality of organs or the presence or absence of tumours, swelling, muscle tension, etc."], "Aruba": ["A 32 km-long island of the Lesser Antilles in the Caribbean Sea."], "residual-current device": ["An electrical wiring device that disconnects a circuit whenever it detects that the electric current is not balanced between the energized conductor and the return neutral conductor."], "earth leakage circuit breaker": ["An electrical wiring device that disconnects a circuit whenever it detects that the electric current is not balanced between the energized conductor and the return neutral conductor."], "satellite dish": ["A receiver on a communications satellite."], "roleplaying game": ["A type of game that is a form of interactive and collaborative storytelling. The participants assume the roles of fictional characters and collaboratively create or follow stories. Participants determine the actions of their characters based on their characterization, and the actions succeed or fail according to a formal system of rules and guidelines."], "RPG": ["A type of game that is a form of interactive and collaborative storytelling. The participants assume the roles of fictional characters and collaboratively create or follow stories. Participants determine the actions of their characters based on their characterization, and the actions succeed or fail according to a formal system of rules and guidelines."], "role-playing game": ["A type of game that is a form of interactive and collaborative storytelling. The participants assume the roles of fictional characters and collaboratively create or follow stories. Participants determine the actions of their characters based on their characterization, and the actions succeed or fail according to a formal system of rules and guidelines."], "pen-and-paper roleplaying game": ["A type of game that is a form of interactive and collaborative storytelling. The participants assume the roles of fictional characters and collaboratively create or follow stories. Participants determine the actions of their characters based on their characterization, and the actions succeed or fail according to a formal system of rules and guidelines."], "tabletop role-playing game": ["A type of game that is a form of interactive and collaborative storytelling. The participants assume the roles of fictional characters and collaboratively create or follow stories. Participants determine the actions of their characters based on their characterization, and the actions succeed or fail according to a formal system of rules and guidelines."], "obnoxious": ["Provoking hate, aversion, disaproval."], "erg": ["A large, relatively flat area of desert covered with wind-swept sand and with little to no vegetation cover."], "nefarious": ["Extremely wicked."], "treatment": ["Medical care for an illness or injury."], "fontanelle": ["A soft membranous spot on the head of a baby due to incomplete fusion of the cranial bones."], "promotion": ["The action of drawing public attention to goods, services or events, often through paid announcements in newspapers, magazines, television or radio.\\n(Source: C / RHW)", "An advancement in rank or position."], "option privilege": ["The right to buy or sell a specified quantity of a security at a set strike price at some time on or before expiration; after a certain period the option becomes invalid."], "skier": ["Someone who skis."], "aim": ["To point or cause to go (blows, weapons, or objects such as photographic equipment) towards", "An anticipated outcome that is intended to obtain or that guides your planned actions.", "The goal intended to be attained (and which is believed to be attainable)."], "retail outlet": ["An establishment, either physical or virtual, that sells goods or services to the public."], "situation": ["A position or area in a space.", "Position or status with regard to conditions and circumstances.", "The way in which something is positioned vis-\u00e0-vis its surroundings."], "qualification": ["A title belonging to a person by virtue of studies completed or social condition.", "The process by which racers race against the clock to determine whether they will qualify for a race, and if so in what qualifying position."], "ski": ["To glide over snow on skis, especially as a sport."], "sigh": ["To inhale a larger quantity of air than usual, and immediately expel it; to make a deep single audible respiration, especially as the result or involuntary expression of fatigue, exhaustion, grief, sorrow, frustration, or the like."], "hunter": ["A person who hunts game."], "toothbrush": ["An implement with a handle, and a head with multiple more or less flexible bristles, used for cleaning teeth."], "vaccination": ["Inoculation with a vaccine in order to protect a particular disease or strain of disease."], "smallpox": ["A highly contagious viral disease characterized by fever and weakness and skin eruption with pustules that form scabs that slough off leaving scars."], "bugfix": ["A piece of replacement program code that is used to remove errors in a software; the act of creating code to remove errors."], "patch": ["An update or code modification."], "dwarf": ["A short, stocky humanoid creature in Norse mythology as well as other Germanic mythologies, fairy tales, fantasy fiction and role-playing games. In many sources they are described to prefer living underground and/or in mountainous areas and are famed miners and smiths."], "Vistula": ["The longest river in Poland"], "distortion": ["The negative alteration or falsification of something.", "Anything that is distorted, as a sound, image, fact, etc.", "A phenomenon in optics where straight lines in a scene do not appear as straight lines when seen through a lens."], "Istanbul": ["Largest city in Turkey.", "Turkish dialect."], "father-in-law": ["The father of someone's spouse."], "son-in-law": ["The husband of someone's daughter."], "daughter-in-law": ["The wife of someone's son."], "stepdaughter": ["The daughter of one's spouse and his or her previous partner."], "stepson": ["The son of one's spouse and his or her previous partner."], "stepchild": ["The child of one's spouse and his or her previous partner."], "child-in-law": ["The spouse of someone's child."], "mail": ["A batch of letters and parcels received via post."], "hauberk": ["A shirt made of mail armour, i.e. small metal rings linked together in a pattern. The shirt reaches at least to mid-thigh and includes sleeves."], "chain shirt": ["A shirt made of mail armour, i.e. small metal rings linked together in a pattern. The shirt reaches at least to mid-thigh and includes sleeves."], "boiled egg": ["An egg (usually from a chicken) boiled in water with its shell unbroken."], "egg cup": ["A small cup used for serving boiled eggs within their shell."], "egg server": ["A small cup used for serving boiled eggs within their shell."], "field of operation": ["Area within which the effectiveness and the effects of an activity extends."], "scrambled eggs": ["A dish made from the lightly beaten combined whites and yolks of two or more (usually chicken's) eggs, sometimes with a little milk or water added, and stirred while cooking."], "banister": ["The balustrade of a staircase."], "chicken's egg": ["An egg laid by a hen."], "compile": ["To get or gather together.", "To use a compiler to process source code and produce executable code.", "To put together out of existing material (e.g. a list)."], "render": ["To give what is needed or desired.", "To cause to be or become.", "To represent or show in, or as in, a picture.", "To render something by means of a certain material.", "To produce as return, as from an investment; to give or supply."], "The Lord of the Rings": ["An epic high fantasy novel written by English academic J. R. R. Tolkien. In his setting, Middle-earth, the story concerns peoples such as Hobbits, Elves, Men, Dwarves, Wizards, and Orcs and centres on the Ring of Power made by the Dark Lord Sauron."], "Lord of the Rings": ["An epic high fantasy novel written by English academic J. R. R. Tolkien. In his setting, Middle-earth, the story concerns peoples such as Hobbits, Elves, Men, Dwarves, Wizards, and Orcs and centres on the Ring of Power made by the Dark Lord Sauron."], "Milky Way": ["Spiral galaxy in which the Solar System is located."], "orc": ["Tough and warlike humanoid creatures in various fantasy settings, particularly in the stories of Middle-earth written by J. R. R. Tolkien. They are commonly portrayed as misshapen humanoids with brutal, warmongering, sadistic, yet cowardly tendencies."], "Orc": ["Tough and warlike humanoid creatures in various fantasy settings, particularly in the stories of Middle-earth written by J. R. R. Tolkien. They are commonly portrayed as misshapen humanoids with brutal, warmongering, sadistic, yet cowardly tendencies."], "chickpea": ["A seed of Cicer arietinum, in the pea family, often used as a food.", "An annual Asian plant (Cicer arietinum) in the pea family, widely cultivated for the edible seeds in its short inflated pods."], "guide": ["To carry, particularly to a particular destination.", "To serve as a guide for someone or something.", "Someone charged to show people around a place or an institution and offer information and explanation.", "A model or standard for making comparisons."], "service": ["That which is produced, then traded, bought or sold, then finally consumed and consists of an action or work.", "In a client-server model, the functionality that responds to the requests of the client program.", "A road generally for access to a building, motorway service station, beach, campsite, industrial estate, business park, etc. This is also commonly used for access to parking and trash collection. Sometimes called an alley, particularly in the US."], "endeavour": ["An assiduous or persistent activity.", "To exert oneself to do or effect something; to make an effort or attempt.", "To attempt through application of effort (to do something); to try strenuously."], "great-uncle": ["The brother of one of the four of someone's grandparents."], "great-aunt": ["The sister of one of the four of someone's grandparents."], "stepbrother": ["The son of one's stepfather or stepmother."], "stepsister": ["The daughter of one's stepfather or stepmother."], "bias": ["A partiality that prevents objective consideration of an issue or situation."], "prejudice": ["A partiality that prevents objective consideration of an issue or situation."], "preconception": ["A partiality that prevents objective consideration of an issue or situation."], "remand prison": ["A place where people accused of a crime are being held while waiting for their trial."], "extended sample": ["In market research it refers to a extended group of the original sample and identifies the composition and number of the present participants who are going to be contacted in order to have a high security that the dimension of the original sample is going to be reached."], "pork": ["The meat of a pig."], "residual": ["Of, relating to, or remaining as a residue."], "Philadelphia": ["The largest city in Pennsylvania, located in south-eastern part of the state along the Delaware and Schuylkill rivers."], "pickup": ["A light truck with an open body and low sides and a tailboard.", "A phrase beginning that comes before the beginning of the first bar."], "predominantly": ["Much greater in number or influence."], "predominant": ["Most frequent or common."], "prevalent": ["Most frequent or common.", "Generally accepted, used or practiced at the moment."], "revenue": ["Compensation for the selling of goods and services."], "lure": ["Qualities that attract by seeming to promise some kind of reward.", "To attract or provoke someone to do something through (often false or exaggerated) promises or persuasion."], "potential": ["Anything that may be possible."], "reference": ["Reference to something else.", "A person or thing that is adopted for guidance.", "A short note recognizing a source of information or of a quoted passage."], "impugn": ["To attack as false or wrong."], "challenge": ["To attack as false or wrong.", "An invitation to measure oneself against others, to confront them in a competition.", "To invite someone to take part in a competition."], "contest": ["To attack as false or wrong.", "Struggle for superiority.", "An occasion on which a winner is selected from among two or more contestants."], "albuminuria": ["A pathological condition where albumin is present in the urine."], "bilingual": ["Written in two languages, using two languages (e.g. a text).", "A person who grew up using two languages and speaks both at native level.", "Able two speak two languages at native level."], "creative": ["Having the skill and power of the mind to produce something new, especially a work of art; (an ability of a person)", "Involving the use of skill and imagination to create something new and unique, such as a work of art."], "inspired": ["Having the skill and power of the mind to produce something new, especially a work of art; (an ability of a person)", "Artistic, beautiful, imaginative and showing deep feeling; characterized by romantic imagery."], "artistic": ["Having the skill and power of the mind to produce something new, especially a work of art; (an ability of a person)", "Aesthetically pleasing.", "Relating to or characteristic of art or artists."], "inventiveness": ["The ability of a person to create or invent something."], "fantasy": ["A genre of literature and art that uses magic and other supernatural forms as a primary element of plot and theme. The storyline is often set in a fictional, historically oriented setting.", "A situation imagined by an individual that expresses certain desires or aims on the part of its creator. Fantasies sometimes involve situations that are highly unlikely; or they may be quite realistic. Another, more basic meaning of fantasy is something which is not 'real,' as in perceived explicitly by any of the senses, but exists as an imagined situation of object to subject."], "claim": ["The aggregate of operative facts giving rise to a right enforceable by a court/tribunal (source OAS).", "To demand as being one's due or property; to assert one's right or title to.", "A geographically limited area in which a miner, prospector, or mining company has the exclusive right to mine.", "Demand for something as rightful or due.", "An assertion of a right (as to money or property).", "An established or recognized right, which was previously denied.", "The expression of an informal right to something."], "null": ["The cardinal number that denotes no quantity or amount at all."], "shield": ["A large plate made of metal or wood, held in the left hand during melee combat to protect the body from incoming attacks.", "To protect, hide, or conceal from danger or harm.", "A shielding or protection against the unpleasant, unwanted, or dangerous."], "escutcheon": ["A large plate made of metal or wood, held in the left hand during melee combat to protect the body from incoming attacks."], "microscope": ["An optical instrument used for observing small objects."], "telescope": ["An optical instrument for observing distant objects.", "To extend or contract in the manner of a telescope."], "telescopic": ["Relating to a telescope"], "microscopic": ["Of, or relating to microscopes or microscopy."], "macroscopic": ["Visible to the unassisted eye; as opposed to microscopic."], "cobweb": ["A fine net of threads woven by a spider to catch insects."], "lobster": ["A marine crustacean of the Nephropidae family, normally red in colour, with claws, which is used as a seafood."], "dative": ["The form of a noun, pronoun or adjective when it is the indirect object of a verb, (or part of it); used to indicate the noun to whom something is given (in a number of languages, for example Latin and German)"], "hand-kiss": ["A kiss on the hand of a person (usually a woman) as greeting and as a sign of deference."], "nominative": ["A grammatical case for a noun or pronoun, which generally marks the subject of a verb, as opposed to its object or other verb arguments."], "accusative": ["The grammatical case to denote a direct object."], "genitive": ["The case that marks a noun as being the possessor of another noun."], "Integrated Services Digital Network": ["A circuit-switched telephone network system, designed to allow digital transmission of voice and data over ordinary telephone copper wires, resulting in better quality and higher speeds than that available with the PSTN system."], "ISDN": ["A circuit-switched telephone network system, designed to allow digital transmission of voice and data over ordinary telephone copper wires, resulting in better quality and higher speeds than that available with the PSTN system."], "potato in the skin": ["A not too small potato, as a whole, ready cooked with its skin in boiling salted water. It is served unpeeled in the skin."], "an apple a day keeps the doctor away": ["A balanced diet is needed to stay healthy."], "usage": ["The act of using something.", "A pattern of behavior inherited or acquired through frequent repetition.", "Explanation of the use of an expression."], "spotlight": ["A persistent and marked attention and interest that focus on one person, one problem, etc."], "cybercrime": ["Any crime that involves a computer and a network."], "blogger": ["A person who writes a blog.", "Woman who writes a blog."], "priority": ["An item's relative importance.", "In road traffic: right of a vehicle to pass in priority to another one.", "A person's personal goals."], "greeting": ["A conventional phrase used to start a conversation or otherwise to acknowledge a person's arrival or presence.", "A conventional phrase used to start a letter or other written communication."], "troll": ["A person who writes in online forums or the usenet with the sole purpose of starting heated discussions and annoying people."], "spiny lobster": ["A marine crustacean of the Palinuridae family, large and edible, having a spiny carapace and no pincers."], "guarantee": ["A written declaration that a certain product will be fit for a purpose and work correctly.", "To assure that something will get done right."], "Nairobi": ["The capital of Kenya."], "gunfire": ["The act of shooting a gun."], "Kigali": ["The capital of Rwanda."], "Dodoma": ["The capital of Tanzania."], "Kampala": ["Tha capital of Uganda."], "generic": ["Applicable to an entire class or group.", "Relating to or common to or descriptive of all members of a genus or kind.", "Not protected by trademark.", "Any product that can be sold without a brand name."], "Mogadishu": ["The capital of Somalia."], "graduate": ["A person who has received a degree from a school.", "To obtain an academic degree upon completion of one's studies."], "alumnus": ["A person who has received a degree from a school."], "gradual": ["Proceeding in small stages."], "gesture": ["Something done as an indication of intention.", "The use of movements, especially of the hands, to communicate familiar or prearranged signals", "To show, express or direct through movements."], "gallery": ["The uppermost seating area projecting from the rear or side walls of a theater, concert hall or auditorium.", "A covered corridor.", "An institution, building, or room for the exhibition and conservation of works of art."], "Krakow": ["City in Poland."], "Cracow": ["City in Poland."], "good luck": ["Something positive that happens to someone by chance.", "Interjection, which expresses that one wishes someone success or luck.", "A difficult task that you can do thanks to a stroke of luck."], "Chicago": ["City in the USA, in the state of Illinois, along the southwestern shore of Lake Michigan."], "Canberra": ["The capital of Australia."], "reimbursement": ["The act of compensating someone for an expense."], "give an account": ["To communicate to someone else something that we know."], "economic revival": ["New phase of development and economic expansion after a period of crisis."], "Mumbai": ["Capital of the state of Maharashtra in India."], "Bombay": ["Capital of the state of Maharashtra in India."], "Caracas": ["The capital of Venezuela."], "adrenoleukodystrophy": ["One of a group of genetic disorders called the leukodystrophies that cause damage to the myelin sheath, an insulating membrane that surrounds nerve cells in the brain."], "Montevideo": ["The capital of Uruguay."], "Paramaribo": ["The capital of Suriname."], "La Paz": ["The administrative capital of Bolivia."], "Sucre": ["The constitutional capital of Bolivia."], "smothering": ["The mechanical obstruction of the flow of air from the environment into the mouth and/or nostrils."], "Asunci\u00f3n": ["The capital of Paraguay."], "Georgetown": ["The capital of Guyana."], "Quito": ["The capital of Ecuador."], "Bogot\u00e1": ["The capital of Colombia."], "Santiago": ["The capital of Chile.", "The capital of the autonomous community of Galicia, located in the north west of Spain in the Province of A Coru\u00f1a.", "The capital city of Santiago de Cuba Province in the south-eastern area of the island nation of Cuba."], "clam": ["A marine or freshwater mollusks belonging to the class Bivalvia, whose body is protected by two symmetrical shells."], "blue mussel": ["Shelled marine edible mollusks (Mytilus edulis) belonging to the class Bivalvia. Their shell is purple, blue or sometimes brown in color."], "cockle": ["Common name for bivalve mollusks of the family Cardiidae. Their rounded shells are symmetrical, heart-shaped and feature strongly pronounced ribs."], "squid": ["Large, diverse group of marine cephalopods. They have a distinct head, bilateral symmetry, a mantle, and arms."], "cuttlefish": ["A marine mollusk (cephalopod), able to throw a black liquor and having in the back a brittle bone."], "octopus": ["A cephalopod mollusc of the Octopodidae family, characterized by its eight tentacles."], "paella": ["Dish made of rice, saffron, and olive oil, which can be garnished with shellfish, fish or different meats."], "Guatemala City": ["The capital of Guatemala."], "Panama City": ["The capital of Panama."], "San Salvador": ["Tha capital of El Salvador."], "Tegucigalpa": ["The capital of Honduras."], "Managua": ["The capital of Nicaragua."], "San Jos\u00e9": ["The capital of Costa Rica."], "Standard Mandarin": ["The official language of China and Taiwan."], "couverture": ["A chocolate rich in cocoa butter. It is used to give cookies and cakes a chocolate coating."], "air force": ["The branch of the military devoted to air warfare."], "navy": ["A country's entire sea force, including ships and personnel."], "marine": ["Of or, or pertaining to, the sea."], "General Multilingual Environmental Thesaurus": ["GEneral Multilingual Environmental Thesaurus (GEMET)"], "GEneral Multilingual Environmental Thesaurus": ["GEneral Multilingual Environmental Thesaurus (GEMET)"], "Adriatic Sea": ["Sea separating the Italian peninsula from the Balkan peninsula."], "Yellow Sea": ["The northern part of the East China Sea. It is located between mainland China and the Korean peninsula."], "Arabian Sea": ["A region of the Indian Ocean between India, Pakistan and the Arabian Peninsula."], "Sargasso Sea": ["An elongated region in the middle of the North Atlantic Ocean, surrounded by ocean currents. On the west it is bounded by the Gulf Stream; on the north, it is bounded by the North Atlantic Current; on the east, it is bounded by the Canary Current; and on the south, it is bounded by the North Atlantic Equatorial Current."], "South China Sea": ["A part of the Pacific Ocean, located between Singapore and the Strait of Taiwan."], "East China Sea": ["Marginal sea of the Pacific which borders on mainland Chine in the West, South Korea in the North, the southern parts of Japan in the East and Taiwan in the South."], "watermelon": ["The fruit of the watermelon plant (Citrullus vulgaris, Citrullus lanatus), having a green rind and watery flesh that is bright red when ripe and contains black pips.", "A vine-like plant of the species Citrullus lanatus."], "mamoncillo": ["A fruit with a thin and rigid green skin, yelow pulp and a large seed of the same ovoid shape as the fruit itself.", "Fruit-bearing tree in the soapberry family Sapindaceae, native or naturalised over a wide area of the American tropics."], "island nation": ["A sovereign country whose territory consists of one or more islands, that means it is not on the mainland of a continent."], "sovereign state": ["A political entity asserting ultimate authority over a geographical area."], "i-type adjective": ["A type of adjective in the Japanese language. Its dictionary form ends with i (\u3044)."], "i-adjective": ["A type of adjective in the Japanese language. Its dictionary form ends with i (\u3044)."], "na-adjective": ["A type of adjective in the Japanese language. Its dictionary form ends in na (\u306a)."], "na-type adjective": ["A type of adjective in the Japanese language. Its dictionary form ends in na (\u306a)."], "ADSL modem": ["A device that connects a PC or a local network to the ADSL network of an internet provider."], "copper wire": ["A piece of insulated wire made of copper. It is used to carry an electrical current or to transmit data."], "power cord": ["A cable that is used to connect an electrical device to a power source. Therefore it usually ends in a power plug."], "mains cable": ["A cable that is used to connect an electrical device to a power source. Therefore it usually ends in a power plug."], "power cable": ["A cable that is used to connect an electrical device to a power source. Therefore it usually ends in a power plug."], "mains lead": ["A cable that is used to connect an electrical device to a power source. Therefore it usually ends in a power plug."], "prie-dieu": ["A bench designed to kneel on, primarily intended for devotional use, often found in churches."], "Bantu languages": ["An African language group belonging to the Niger-Congo family. They are spoken in a large area east and south of the present day nation of Nigeria; i.e. in central Africa, east Africa, and southern Africa."], "microstate": ["A country that has a very small population and land area."], "Baku": ["The capital and the largest city of Azerbaijan.", "ISO 639-6 entity"], "Tbilisi": ["The capital and largest city of Georgia."], "horseshoe": ["A piece of metal designed to be attached to a horse's foot as a means of protection."], "humanitarian": ["Concerned with people's welfare"], "heterogeneous": ["Consisting of elements that are not of the same kind or nature."], "homogeneous": ["That are all of the same or similar kind or nature."], "harassment": ["The act of tormenting by continued persistent attacks and criticism."], "Hampshire": ["A maritime county in the south of England bordered by Berkshire, Surrey, Sussex, Dorset, Wiltshire and the English Channel; also includes the Isle of Wight."], "San\u2018a\u2019": ["The capital of Yemen."], "Sanaa": ["The capital of Yemen."], "Sana'a": ["The capital of Yemen."], "Muscat": ["the capital and largest city in Oman."], "Manama": ["The capital and largest city in Bahrain."], "Kuwait City": ["The capital of Kuwait."], "Riyadh": ["The capital and largest city of Saudi Arabia,"], "Jerusalem": ["The de facto capital and largest city of Israel, located in the Judean Mountains, between the Mediterranean Sea and the northern edge of the Dead Sea."], "Abu Dhabi": ["The capital of the emirate of the same name, largest of the seven emirates that compose the United Arab Emirates."], "hook": ["A sharp metal hook.", "A rod bent into a curved shape, for catching, holding, or sustaining anything.", "A metal hook for catching fish.", "A device for catching and holding animals.", "A punch in boxing delivered with the arm bent.", "A baseball pitch resulting in motion downward and usually to the left when thrown with the right hand and to the right when thrown with the left hand.", "Features, definitions, or codings that enable future enhancements to happen compatibly or more easily.", "To fasten with a hook.", "To ask an unreasonable price.", "To make a piece of needlework."], "numeral": ["[A word that indicates a number or a rank.]", "Of or pertaining to numbers."], "postpositional particle": ["One-syllable suffixes or short words in Japanese and Korean grammar that immediately follow the modified noun, verb, adjective, or sentence. They have a wide range of grammatical functions, including the indication of a question or the speaker's assertiveness, certitude, or other feelings."], "sentence-final particle": ["One type of particle in Japanese and Korean grammar. They are attached to the end of a sentence and express things like doubt, a question, a prohibition, emphasis, or a strong emotion."], "gizzard": ["A specialized stomach with a thick, muscular wall used for grinding up food. It is found in birds, reptiles, earthworms, some fish, insects, mollusks, and other creatures."], "ventriculus": ["A specialized stomach with a thick, muscular wall used for grinding up food. It is found in birds, reptiles, earthworms, some fish, insects, mollusks, and other creatures."], "gastric mill": ["A specialized stomach with a thick, muscular wall used for grinding up food. It is found in birds, reptiles, earthworms, some fish, insects, mollusks, and other creatures."], "gigerium": ["A specialized stomach with a thick, muscular wall used for grinding up food. It is found in birds, reptiles, earthworms, some fish, insects, mollusks, and other creatures."], "prisoner": ["A person confined in a prison, while on trial or serving a sentence.", "A person held against his will."], "journey": ["The act of traveling from one place to another."], "voyage": ["The act of traveling from one place to another."], "Nicosia": ["The largest city of the island of Cyprus and the capital of Cyprus and of the Turkish Republic of Northern Cyprus."], "Turkish Republic of Northern Cyprus": ["A de facto independent republic located in northern Cyprus."], "verbiage": ["Over abundance of words."], "fishhook": ["A metal hook for catching fish."], "power line": ["Wires conducting electric power from one location to another."], "compendium": ["A short but comprehensive compilation of a body of knowledge.", "Shortened form of something."], "United Nations Security Council": ["The United Nations Security Council, the organ of the United Nations charged with maintaining peace and security among nations"], "UNSC": ["The United Nations Security Council, the organ of the United Nations charged with maintaining peace and security among nations"], "Stuttgart": ["The sixth-largest city of Germany and the capital of the federal state Baden-Wurtemberg."], "Greenland Sea": ["Area of the Arctic Ocean, between Greenland, Jan Mayen and Iceland, spanning some 465,000 square miles (1,205,000 square km)."], "Java Sea": ["A large, shallow sea at the south of the Pacific Ocean, between the Indonesian islands of Borneo to the north, Java to the south, Sumatra to the west, and Sulawesi to the east."], "Sea of Japan": ["A marginal sea of the western Pacific Ocean between Japan to the east and Asia to the west."], "Philippine Sea": ["A part of the western Pacific Ocean bordered by the Philippines and Taiwan to the west, Japan to the north, the Marianas to the east and Palau to the south."], "Dead Sea": ["A salty lake at 418 m (1371 feet) below sea level between Israel, the West Bank and Jordan."], "marginal sea": ["A part of ocean partially enclosed by land such as islands, archipelagos, or peninsulas. Unlike mediterranean seas, it has ocean currents caused by ocean winds."], "fear of heights": ["An irrational fear of great heights."], "myriad": ["Ten to the power of four.", "Big undetermined number."], "ten thousand": ["Ten to the power of four."], "Ajax": ["A methodology based on Java-script, providing widgets for asynchronous client server communication.", "A hero of the Trojan wars."], "yuck": ["An expression of disgust."], "AJAX": ["A methodology based on Java-script, providing widgets for asynchronous client server communication."], "insolvency": ["Failure to make payments on time."], "delinquent": ["Guilty of a minor delict."], "Asturias": ["Autonomous community within the Kingdom of Spain."], "IQ": ["The unit used to show the result of an intelligence test."], "Catalonia": ["Autonomous community in the north-east of the kingdom of Spain."], "Galicia": ["Autonomous community within the kingdom of Spain."], "Galiza": ["Autonomous community within the kingdom of Spain."], "Aragon": ["Autonomous community within the kingdom of Spain."], "Basque Country": ["Autonomous community within the kingdom of Spain."], "The Last Unicorn": ["A fantasy novel written by Peter S. Beagle. The story is about a unicorn who realizes that she is the last of her kind and then sets off on a quest to find out what became of all the other unicorns."], "evitable": ["Possible to avoid."], "avoidable": ["Possible to avoid."], "evacuate": ["To withdraw from (a place)."], "evacuation": ["Withdrawal of people from a place."], "alcoholic": ["One who abuses alcohol.", "Containing alcohol.", "A person who regularly consumes a lot of alcohol and is addicted to it.", "A woman who regularly consumes a lot of alcohol and is addicted to it.", "Suffering from alcoholism."], "legendary creature": ["A creature from myth or folklore. Some have their origin in traditional mythology and have at one time been believed to be real creatures. Others were based on garbled travellers' tales of real creatures."], "mythic creature": ["A creature from myth or folklore. Some have their origin in traditional mythology and have at one time been believed to be real creatures. Others were based on garbled travellers' tales of real creatures."], "legendary animal": ["A creature from myth or folklore. Some have their origin in traditional mythology and have at one time been believed to be real creatures. Others were based on garbled travellers' tales of real creatures."], "folkloric creature": ["A creature from myth or folklore. Some have their origin in traditional mythology and have at one time been believed to be real creatures. Others were based on garbled travellers' tales of real creatures."], "dragon": ["A mythical creature typically depicted as a large horned serpent (Asia) or a winged, fire-breathing reptile (Europe), with magical or spiritual qualities."], "glad": ["Having a feeling of satisfaction, enjoyment or well-being, often arising from a positive situation or set of circumstances."], "containment": ["The reinforced steel or concrete vessel that encloses a nuclear reactor."], "charm": ["To attract, arouse and hold attention and interest, as by charm or beauty."], "trap": ["A device for catching and holding animals.", "To catch in a trap, to immobilize.", "The act of concealing yourself and lying in wait to attack by surprise."], "snare": ["A device for catching and holding animals."], "manual": ["A booklet that instructs on the usage of a particular machine.", "Done or made by hand."], "galaxy": ["A huge gravitationally bound system of relatively close stars."], "extroverted": ["Comfortable in social interactions."], "mermaid": ["A mythological woman with a fish's tail in place of her legs."], "introverted": ["Lacking interest or comfort in social interactions."], "semantic relation": ["Relation that exists between the meanings of words."], "related term": ["Term or concept that has a direct or indirect relationship with the article concerned."], "part of theme": ["An entry in a thesaurus or dictionary that is associated with a theme"], "faux ami": ["A word in one language bearing a deceptive resemblance to a word in another language."], "Light Amplification by Stimulated Emission of Radiation": ["A device that produces a powerful, highly directional, monochromatic, coherent beam of light."], "marijuana": ["A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect.", "The cannabis plant."], "curveball": ["A baseball pitch resulting in motion downward and usually to the left when thrown with the right hand and to the right when thrown with the left hand."], "marketplace": ["Place of commercial activity in which articles are bought and sold."], "turn out to be": ["To become evident, to appear to the sight."], "deadline": ["Chronological limit set within which a task, a job, etc. is to be carried out."], "way out": ["Gimmick or ploy to escape a situation that is unfavorable, difficult or dangerous.", "A passage or gate from inside someplace to the outside, that permits escape or release."], "entry": ["An act of coming in or going in.", "A place of ingress or entrance, esp. an entrance hall or vestibule.", "The thing which has been submitted."], "adjectival noun": ["A type of adjective in the Japanese language. Its dictionary form ends in na (\u306a).", "Substantive that is used as an adjective (in some languages that have that feature)."], "elder": ["Comparative of old.", "Person respected and listened to for being old in age or in membership."], "sir": ["A polite form of address for a man."], "prenominal adjective": ["A part of speech type comprised of words that are used as attributes to a noun only."], "adnominal": ["A part of speech type comprised of words that are used as attributes to a noun only."], "subsidiary verb": ["A verb that accompanies the main verb in a clause in order to make distinctions in tense, mood, voice or aspect."], "linking verb": ["A verb that that links two parts of a sentence, indicating that one part is the property of the other. The part which indicates the property is the nominal part."], "contrast": ["To show differences when compared; be different", "To set in opposition in order to show the difference or differences between.", "The opposition or dissimilarity of things that are compared."], "emerge": ["To become known or apparent.", "To come out into view, as from concealment.", "To come out of (e.g. water)."], "final particle": ["One type of particle in Japanese and Korean grammar. They are attached to the end of a sentence and express things like doubt, a question, a prohibition, emphasis, or a strong emotion."], "commit": ["To assume a obligation or a engagement.", "To perform an act, usually with a negative connotation.", "To use a resource (money, time, energy, etc.) with the expectation of obtaining something of greater value.", "To give entirely to a specific person, activity, or cause.", "To confer a trust upon.", "Add some changes to a repository of a revision control system."], "verbal noun": ["A type of speech that is specific to the Japanese language. It describes words, usually kanji compounds, that are not used as independent words. They form verbs when combined with -suru.", "Any noun that is derived from a verb and that still can have a subject and/or an object.", "A noun that is derived from a verb by a defined grammatical process."], "pickpocket": ["Thief who steals money and objects from clothes or pockets.", "To steal money and objects from clothes or pockets."], "cooperative": ["An autonomous association of persons who voluntarily cooperate for their mutual social, economic, and cultural benefit."], "host": ["Organism that harbors a virus, parasite, or other pathogen, typically providing nourishment and shelter.", "A person or organization responsible for running an event.", "A moderator or master of ceremonies for a performance.", "To run software made available to a remote user or process.", "Thin disk of unleavened bread used in a religious service, especially in the celebration of the eucharist."], "unicellular": ["Having, or consisting of, but a single cell."], "bacteriophage": ["A virus that infects bacteria."], "defensin": ["Small cysteine-rich cationic proteins found in both vertebrates and invertebrates. They are active against bacteria, fungi and enveloped viruses."], "immunodeficiency": ["A state in which the immune system's ability to fight infectious disease is compromised or entirely absent."], "vaccine": ["An antigenic preparation used to establish immunity to a disease."], "HIV": ["Retrovirus that causes acquired immunodeficiency syndrome (AIDS), a condition in humans in which the immune system begins to fail, leading to life-threatening opportunistic infections."], "Human immunodeficiency virus": ["Retrovirus that causes acquired immunodeficiency syndrome (AIDS), a condition in humans in which the immune system begins to fail, leading to life-threatening opportunistic infections."], "autoimmunity": ["The failure of an organism to recognize its own constituent parts which results in an immune response against its own cells and tissues."], "rheumatoid arthritis": ["Inflammatory autoimmune disorder that causes the immune system to attack the joints."], "diabetes mellitus type 1": ["Disease characterized by decreases in, or the complete absence of, the production of insulin."], "lupus": ["A chronic autoimmune disease that is potentially debilitating and sometimes fatal as the immune system attacks the body\u2019s cells and tissue, resulting in inflammation and tissue damage."], "lupus erythematosus": ["A chronic autoimmune disease that is potentially debilitating and sometimes fatal as the immune system attacks the body\u2019s cells and tissue, resulting in inflammation and tissue damage."], "exoskeleton": ["External anatomical feature that supports and protects an animal's body. All arthropods (such as insects, spiders and crustaceans) and many other invertebrate animals (such as shelled mollusks) have exoskeletons."], "star cluster": ["A group of stars that appear near each other."], "urogenital system": ["The sex organs and the urinary system of vertebrates."], "EMS": ["An organization established in Europe in 1979 to coordinate financial policy and exchange rates for the continent by running the Exchange Rate Mechanism (ERM) and assisting movement toward a common European currency and a central European bank.\\n(Source: ODE)"], "food production": ["The process of making food, including farming, ranching and fishing, and the industrial processing of raw materials to create manufactured food."], "madam": ["A polite form of address for a woman."], "rich man": ["A man who is wealthy."], "wealthy man": ["A man who is wealthy."], "man of means": ["A man who is wealthy."], "merry": ["Giving fun, gaiety, joy, and cheerful spirit.", "In good spirits."], "corporation": ["A commercial association of two or more persons, especially when incorporated."], "geodesic": ["The locally shortest connection between two points.", "A geometric form basic to structures using short sections of lightweight material joined into interlocking polygons.", "A structural system developed by R. Buckminster Fuller to create domes using geodesic forms."], "threshold": ["Limit under or above which, a certain event can or can not occur.", "The bottom-most part of a doorway that one crosses to enter; a sill."], "missile": ["Object intended to be launched into the air."], "occur unexpectedly": ["Referred to an event or circumstance: to occur in a unpredictable and changing way, especially unfavorably."], "obelisk": ["A tall, square, tapered, stone monolith topped with a pyramidal point, frequently used as a monument."], "network": ["A system of interconnected nodes. The connecting lines can be anything from railway lines, data links, personal relationships to nerves of the human body.", "A network of connected computers, ranging from a small home LAN to the world-spanning Internet."], "computer network": ["A network of connected computers, ranging from a small home LAN to the world-spanning Internet."], "dental technician": ["Someone who makes dental appliances and restorative devices, to the specifications of a dentist."], "factory": ["In architecture, a term used as a synonym for \"building\".", "An establishment where products are manufactured using industrial methods.", "Single building or group of buildings and installations destined to industrial activities."], "atchoo": ["Onomatopoeia representing the sound someone emits when sneezing."], "Sun King": ["Surname of king Louis XIV of France."], "undergo": ["To undergo or be subjected to a treatment leading to a change in some feature or characteristic.", "To be subject to the action of.", "To tolerate or put up with something unpleasant."], "puddle": ["An accumulation of water in a small deepening on the ground which forms during a rainfall and dries out after some time."], "upper ontology": ["An ontology limited to concepts that are meta, generic, abstract and philosophical, and therefore general enough to address (at a high level) a broad range of domain areas."], "ISBN": ["A unique identifier for books, intended to be used commercially."], "ISSN": ["A unique eight-digit number used to identify a print or electronic periodical publication."], "booty": ["Profits from burglary, looting and raids.", "Something taken by an attacker from the enemy."], "spoils": ["Profits from burglary, looting and raids."], "boodle": ["Profits from burglary, looting and raids."], "principal": ["The most important element."], "main": ["The most important element.", "Duct for conveying water to a given place."], "specify": ["To state explicitly, or in detail, or as a condition.", "To select something or someone for a specific purpose."], "pasta": ["A type of Italian food made from flour, eggs and water and shaped in different forms. Usually, they are cooked and served with a sauce.", "A dish that contains pasta as its main ingredient."], "ramen": ["A Japanese noodle dish of Chinese origins. It consists of long, originally hand-pulled noodles, a soup based on miso, soy sauce or salt, and toppings like sliced pork (chashu), seaweed (nori), kamaboko or green onions."], "level of language": ["Levels of a language that differ in vocabulary, grammar and style. The choice of the level depends on outside factors, such as the relationship between the speakers, the medium of communication (talk, letter, phone, e-mail) and the situation the communication takes place in."], "level of speech": ["Levels of a language that differ in vocabulary, grammar and style. The choice of the level depends on outside factors, such as the relationship between the speakers, the medium of communication (talk, letter, phone, e-mail) and the situation the communication takes place in."], "stylistic level": ["Levels of a language that differ in vocabulary, grammar and style. The choice of the level depends on outside factors, such as the relationship between the speakers, the medium of communication (talk, letter, phone, e-mail) and the situation the communication takes place in."], "vulgar": ["Rude and likely to offend, using allusions on the sexual level.", "Who is not of noble rank; pertaining to the great masses."], "obscene": ["Rude and likely to offend, using allusions on the sexual level."], "here you are": ["Informal way of being polite when you give something."], "presume": ["Hypothesize that something can happen (or happened in the past) in a definite way."], "soaked": ["Covered with or impregnated with liquid.", "Very wet."], "such a": ["Of a kind specified or understood."], "interest rate": ["The percentage of a sum of money charged for its use."], "magnitude": ["The absolute or relative size, extent or importance of something."], "megabyte": ["One million bytes."], "manager": ["A person whose job is to be in charge of something.", "An administrator, for a singer or group.", "A person who oversees and directs the work of others."], "tension": ["Difficulty that causes worry or emotional tension."], "gerund": ["A verbal form that functions as a verbal noun."], "paprika": ["Spicy powder of Capsicum annuum"], "hygroscopy": ["The ability of a substance to attract water molecules from the surrounding environment through either absorption or adsorption."], "glacial acetic acid": ["Water-free acetic acid."], "provender": ["Bulk feed for livestock, especially hay, straw, etc.\\n(Source: CED)"], "huge": ["Of an excessive extent; of much greater extent than the average; being above standard concerning width, height, or thicknes, etc."], "following": ["Following in a sequence.", "Moving along the trajectory of [another moving being] a bit later than it."], "national": ["Having to do with a nation.", "A person who is a citizen of a nation."], "link": ["A connection between places, persons, events, or things.", "A reference or navigation element in a document to another section of the same document, another document, or a specified section of another document, that automatically brings the referred information to the user when the navigation element is selected by the user.", "To establish connection between two or more things."], "personage": ["A famous and important person."], "role": ["The expected behaviour of an individual in a society."], "regular assembly": ["Assembly that is being organised regularly or that takes place regularly on certain days."], "quarterly": ["Occurring or relating to or consisting of a quarter."], "poetic": ["Connected with poets or poetry (attribute of a thing or person).", "Being poetry or like poetry (attribute of a literary work).", "Artistic, beautiful, imaginative and showing deep feeling; characterized by romantic imagery."], "poetical": ["Connected with poets or poetry (attribute of a thing or person).", "Being poetry or like poetry (attribute of a literary work).", "Artistic, beautiful, imaginative and showing deep feeling; characterized by romantic imagery."], "barefoot": ["Without shoes nor socks."], "poetic justice": ["An unlucky event that happens to someone else, and you consider it a deserved punishment for a bad thing they did before."], "romantic": ["Artistic, beautiful, imaginative and showing deep feeling; characterized by romantic imagery."], "baklava": ["Sweet pastry found in the cuisines of the Middle East and the Balkan which is made out of phyllo dough with nuts and is sweetened with sugar syrop or honey."], "baklawa": ["Sweet pastry found in the cuisines of the Middle East and the Balkan which is made out of phyllo dough with nuts and is sweetened with sugar syrop or honey."], "forage": ["Bulk feed for livestock, especially hay, straw, etc.\\n(Source: CED)"], "standard language": ["A particular variety of a language that has been standardized by an academy or other institution. This is the version of a language that is taught in schools, to native and foreign language learners. Most texts written in that language follow its spelling and grammar norms."], "standard dialect": ["A particular variety of a language that has been standardized by an academy or other institution. This is the version of a language that is taught in schools, to native and foreign language learners. Most texts written in that language follow its spelling and grammar norms."], "standardized dialect": ["A particular variety of a language that has been standardized by an academy or other institution. This is the version of a language that is taught in schools, to native and foreign language learners. Most texts written in that language follow its spelling and grammar norms."], "European country": ["A country in Europe."], "currently": ["At this moment; at this time."], "presently": ["In a near future.", "At this moment; at this time."], "common gender": ["A word gender that is a merge of female and male used by some languages."], "plurale tantum": ["A noun that appears only in the plural form."], "pluperfect": ["Grammatical tense (verb form), that is used for events that happen before a point of reference in the past. The reference is given in the context of the story."], "future perfect": ["Grammatical tense of a verb that describes an action that will be completed in the future."], "grammatical tense": ["The grammatical construct of the time in which a sentence acts."], "future tense": ["A grammatical tense (verb form) that marks an event as not having happened yet, but expected to in the future."], "past tense": ["The grammatical tense expressing actions which took place in the past."], "interrogative word": ["A function word used to introduce an interrogative clause, i.e. a question, by replacing the part that is asked for . In English, most of them start with wh-."], "question word": ["A function word used to introduce an interrogative clause, i.e. a question, by replacing the part that is asked for . In English, most of them start with wh-."], "interrogative particle": ["A sentence-final particle that marks a question. For example, the Japanese \"ka\"."], "question particle": ["A sentence-final particle that marks a question. For example, the Japanese \"ka\"."], "motherese": ["A way of speech used by parents, particularly mothers, when talking to toddlers and infants. It uses a higher-pitched, warm voice, slow speed, and simplified vocabulary and grammar.", "A non-standard form of language used by adults when talking to toddlers and infants which is characterized by high pitch, reduced syntactic complexity and simplified vocabulary."], "parentese": ["A way of speech used by parents, particularly mothers, when talking to toddlers and infants. It uses a higher-pitched, warm voice, slow speed, and simplified vocabulary and grammar.", "A non-standard form of language used by adults when talking to toddlers and infants which is characterized by high pitch, reduced syntactic complexity and simplified vocabulary."], "child-directed speech": ["A way of speech used by parents, particularly mothers, when talking to toddlers and infants. It uses a higher-pitched, warm voice, slow speed, and simplified vocabulary and grammar.", "A non-standard form of language used by adults when talking to toddlers and infants which is characterized by high pitch, reduced syntactic complexity and simplified vocabulary."], "CDS": ["A way of speech used by parents, particularly mothers, when talking to toddlers and infants. It uses a higher-pitched, warm voice, slow speed, and simplified vocabulary and grammar.", "A contract where the buyer of the swap makes regular payments to the seller and in return receives a payoff in case the debtor of the underlying financial instrument defaults."], "register": ["To record in a register.", "Levels of a language that differ in vocabulary, grammar and style. The choice of the level depends on outside factors, such as the relationship between the speakers, the medium of communication (talk, letter, phone, e-mail) and the situation the communication takes place in."], "abstract noun": ["A noun that denotes something immaterial."], "particle of agreement or disagreement": ["Short words that mark agreement or disagreement, such as \"yes\" or \"no\"."], "subjunction": ["A word that connects a main clause to a subclause."], "measure word": ["Word (or morpheme) that is used in combination with a numeral to indicate the count of nouns. Most are tied to a semantic class, such as \"animals\" or \"long things\". They are used in most East Asian languages, plus Bengali, as well as many Indigenous languages of the Americas near the Pacific coast."], "counter": ["Word (or morpheme) that is used in combination with a numeral to indicate the count of nouns. Most are tied to a semantic class, such as \"animals\" or \"long things\". They are used in most East Asian languages, plus Bengali, as well as many Indigenous languages of the Americas near the Pacific coast."], "count word": ["Word (or morpheme) that is used in combination with a numeral to indicate the count of nouns. Most are tied to a semantic class, such as \"animals\" or \"long things\". They are used in most East Asian languages, plus Bengali, as well as many Indigenous languages of the Americas near the Pacific coast."], "counter word": ["Word (or morpheme) that is used in combination with a numeral to indicate the count of nouns. Most are tied to a semantic class, such as \"animals\" or \"long things\". They are used in most East Asian languages, plus Bengali, as well as many Indigenous languages of the Americas near the Pacific coast."], "counting word": ["Word (or morpheme) that is used in combination with a numeral to indicate the count of nouns. Most are tied to a semantic class, such as \"animals\" or \"long things\". They are used in most East Asian languages, plus Bengali, as well as many Indigenous languages of the Americas near the Pacific coast."], "baby talk": ["A way of speech used by parents, particularly mothers, when talking to toddlers and infants. It uses a higher-pitched, warm voice, slow speed, and simplified vocabulary and grammar.", "A non-standard form of language used by adults when talking to toddlers and infants which is characterized by high pitch, reduced syntactic complexity and simplified vocabulary."], "location": ["A position or area in a space.", "A small area of a place."], "sentence adverb": ["Adverb that serves as evaluation of a statement, e. g. unfortunately"], "economic": ["Pertaining to an economy."], "river catchment": ["An area of land where all rainwater and melting snow naturally moves to the same body of water."], "bay laurel": ["(Laurus nobilis) A shrub of the family Lauraceae."], "bay tree": ["(Laurus nobilis) A shrub of the family Lauraceae."], "true laurel": ["(Laurus nobilis) A shrub of the family Lauraceae."], "sweet bay": ["(Laurus nobilis) A shrub of the family Lauraceae."], "Grecian laurel": ["(Laurus nobilis) A shrub of the family Lauraceae."], "laurel": ["(Laurus nobilis) A shrub of the family Lauraceae."], "original": ["First in a series.", "An object from which all later copies and variations are derived."], "barefooted": ["Without shoes nor socks."], "complaint": ["An expression of grievance, resentment or displeasure."], "gripe": ["An expression of grievance, resentment or displeasure."], "sales": ["The department of a company that deals with selling the company's products to the customer."], "Khartoum": ["Capital of Sudan."], "maple syrup": ["Syrup made from the sap of the sugar maple (Acer saccharum) or, less frequently, the black maple (Acer nigrum)."], "historiography": ["Study of the practice of writing history."], "historiographical": ["Related to historiography."], "Aral Sea": ["A middle-Asian salt lake without an outflow."], "still life": ["A subject in art consisting of inanimate objects and/or dead animals.", "A work of art depicting inanimate objects and/or dead animals.", "A style of art dedicated to the depiction of inanimate objects and/or dead animals."], "air guitar": ["A pantomimic played imaginary electric guitar."], "message in a bottle": ["A written message, put in a bottle and thrown into the sea, in the hope that somebody finds it."], "magnetic": ["Having the properties of a magnet; i.e. of attracting iron or steel."], "medical": ["Relating to the study or practice of medicine."], "meeting": ["An agreed upon event which happens at a specified time and place."], "merchant": ["A businessperson engaged in trade."], "Mediterranean": ["The largest inland sea between Europe, Africa and Asia, linked to the Atlantic Ocean at its western end by the Strait of Gibraltar, including the Tyrrhenian, Adriatic, Aegean and Ionian seas, and major islands such as Sicily, Sardina, Corsica, Crete, Malta and Cyprus.", "Of, relating to, characteristic of or located near the Mediterranean Sea."], "mess": ["A state of confusion and disorderliness.", "A great number or large amount of things not placed in a pile."], "disorder": ["A state of confusion and disorderliness.", "A definite pathological process having a characteristic set of signs and symptoms which are detrimental to the well-being of the individual.", "To disturb in mind or make uneasy or cause to be worried or alarmed.", "A condition in which things are not in their expected places.", "A disturbance of the peace or of public order."], "mainframe": ["A powerful multi-user computer capable of supporting many hundreds or thousands of users simultaneously or intensive computational tasks."], "alcohol dehydrogenase": ["Group of dehydrogenase enzymes that occur in many organisms and facilitate the interconversion between alcohols and aldehydes or ketones."], "spring roll": ["Fried Chinese pastry consisting of a vegetable mix wrapped in a covering made out of rice."], "DNA polymerase": ["An enzyme that assists in DNA replication catalyzing the polymerization of deoxyribonucleotides alongside a DNA strand, which they \"read\" and use as a template."], "mortgage": ["The pledge of a property to the lender as security for payment of a debt."], "modular": ["A set of modules that allow flexibility in the way that they can be combined."], "membership": ["The state of being a member of an organisation or group."], "merchandise": ["Commodities available for sale."], "demonstrative": ["A deictic word (it depends on a frame of reference) that indicates what a speaker refers to. It can either point to an object in the physical surroundings, but also to words, phrases and propositions previously mentioned.", "That serves to demonstrate, show or prove."], "militia": ["A private force, not under government control."], "formal noun": ["A noun that is used to form a grammatic structure. This part of speech type is found in the Japanese language, among others."], "women's speech": ["Words, phrases and grammatical forms used by women, or by men trying to sound female."], "feminism": ["Words, phrases and grammatical forms used by women, or by men trying to sound female.", "A political, cultural, and social movement seeking equality for women and girls."], "language register": ["Levels of a language that differ in vocabulary, grammar and style. The choice of the level depends on outside factors, such as the relationship between the speakers, the medium of communication (talk, letter, phone, e-mail) and the situation the communication takes place in."], "masculine": ["A male specific gender of a word as used by some languages.", "Belonging to the masculine grammatical gender.", "Associated with men and his features, in contrast to those of women."], "neuter": ["The neutrally determined gender of a kind of word as used by some languages.", "A noun of the neuter gender.", "Belonging to the neuter grammatical gender."], "feminine": ["The female grammatical gender of words.", "Possessing qualities and behaviours deemed to be typical for women and girls.", "Belonging to the feminine grammatical gender."], "menu": ["A printed list of dishes offered in a restaurant.", "A list from which a computer user may select an operation to be performed."], "Medellin": ["The capital and largest city of the Antioquia Department in Colombia"], "macro": ["Very large in scope or scale.", "A shortcut key combination that executes a few consecutive commands."], "measurement": ["The action of measuring a quantity, a size, a weight, a distance or a capacity relative to a standard."], "Milwaukee": ["The largest city within the state of Wisconsin USA."], "merit": ["Any admirable quality or attribute.", "To earn or merit a reward."], "deserve": ["To earn or merit a reward."], "message": ["A communication that is written, spoken or signalled.", "What a communication contains word by word."], "major": ["A military rank between captain and lieutenant-colonel.", "The main area of study of a student working toward a degree at a college or university."], "elucidate": ["To make clear or obvious."], "pertinence": ["A measurement for how important something is for something."], "relevance": ["A measurement for how important something is for something."], "modem": ["A device that modulates an analog carrier signal, to encode digital information, and that also demodulates such a carrier signal to decode the transmitted information."], "significance": ["A measurement for how important something is for something."], "remarkableness": ["A measurement for how important something is for something."], "importance": ["A measurement for how important something is for something.", "The quality or condition of being important."], "elect": ["To choose (a candidate) in an election."], "include": ["To bring into a group as a (new) member.", "To allow participation in or the right to be part of; permit to exercise the rights, functions, and responsibilities of.", "To incorporate in a price for which one asks."], "follow": ["To go or come after (in physical space) someone or something.", "To perform an accompanying part or parts in a composition.", "To choose and follow; as of theories, ideas, policies, strategies or plans.", "To be the successor of.", "To be the product or result."], "erase": ["To remove markings or information.", "To rub or wipe out."], "launch": ["To give a start to (something); to put in operation.", "To perform an action, as in executing a program or a command.", "To set aflot for the first time as on a maiden voyage.", "The act of launching.", "To propel with force, e.g. a missile."], "former": ["First of a list of two items.", "Occurring before something else, either in time or order."], "previous": ["Occurring before something else, either in time or order."], "latter": ["Second of a list of two items."], "direct": ["To point or cause to go (blows, weapons, or objects such as photographic equipment) towards", "Marked by straightforward manner, behavior, language or action.", "Straight, constant, without interruption.", "To guide the actors, as in plays and movies.", "To act as the leader (e.g. of an orchestra), as in the performance of a composition.", "To be in charge of.", "To give directions to; point somebody into a certain direction."], "communication": ["A communication that is written, spoken or signalled."], "piece of information": ["A communication that is written, spoken or signalled."], "WTF": ["Exclamation of amazement."], "solar year": ["The time it takes the Earth to complete one revolution of the Sun (between 365.24 and 365.26 days depending on the point of reference)."], "Valencia": ["Capital city of the province of Valencia in Spain.", "Capital city of the state of Carabobo in Venezuela."], "Barcelona": ["Spanish city, capital of the autonomous community of Catalonia.", "Capital city of the state of Anzo\u00e1tegui in Venezuela."], "Montreal": ["A seaport and the largest city in southern Quebec."], "illness": ["A definite pathological process having a characteristic set of signs and symptoms which are detrimental to the well-being of the individual."], "affliction": ["A state of pain, suffering, distress or agony."], "Le\u00f3n": ["The capital of Le\u00f3n province in the autonomous community of Castile and Le\u00f3n, in northwest Spain.", "A province of northwestern Spain, in the northwestern part of the autonomous community of Castile and Le\u00f3n."], "medium": ["Someone who serves as an intermediary between the living and the dead.", "(Of meat) cooked until there is just a little pink meat inside.", "The nature of the surrounding environment, e.g. solid, liquid, gas, vacuum, or a specific substance such as a solvent.", "A nutrient solution for the growth of cells in vitro."], "Andalusia": ["The most populated autonomous community of Spain. Its capital is Seville."], "Seville": ["The capital of Seville province and of the autonomous community of Andalusia, in the south of Spain."], "C\u00f3rdoba": ["Capital of C\u00f3rdoba province in the autonomous community of Andalusia, in the south of Spain.", "Capital of the C\u00f3rdoba province of Argentina.", "A province of southern Spain, in the north-central part of the autonomous community of Andalusia.", "A province of Argentina, located in the center of the country, with capital, C\u00f3rdoba."], "euthanasia": ["The practice of ending the life of a person or an animal in a painless manner in order to prevent suffering."], "metric": ["A system of related measures that facilitates the quantification of some particular characteristic.", "Of or relating to the metric system of measurement.", "A measure for something."], "transform": ["To change greatly the appearance or form of something or someone."], "manifest": ["To show plainly; to make to appear distinctly,"], "UK": ["A country in Western Europe (comprising Wales, Scotland, England and Northern Ireland) with the capital London."], "dust off": ["To remove solid material divided in particles of very small size to clean something."], "African-American": ["An African-American male."], "nigger": ["An African-American male."], "cruciverbalist": ["A creator of crosswords.", "A fan of crosswords."], "crossword": ["Word puzzle consisting of a grid of black and white squares, where the goal is to fill the white squares with letters, to form words in horizontal and vertical directions that should cross consistently."], "malpractice": ["Improper or unethical conduct by a professional or official person."], "Easter": ["A Christian feast commemorating the Resurrection of Christ; the first Sunday following the full moon that occurs on or next after the vernal equinox."], "entity": ["That which is perceived or known or inferred to have its own distinct existence.", "An organized array or set of individual elements or parts.", "The most generic concept."], "executable": ["A program that can be run standalone without need for any third-party applications."], "insertion": ["The addition or inclusion of a new element."], "summit": ["The highest point of a mountain.", "A meeting between heads of state or high-ranked managers.", "Highest and most elevated point."], "item": ["Each element that can be specified separately in a group of things that could be enumerated on a list."], "vault": ["Structure of cover with surface curve and concavity turned towards the inside of the space to cover.", "A temperature and humidity-controlled environment with fire suppression that will protect the media stored within.", "A secure room or rooms in a financial institution where cash on hand is stored and safe deposit boxes are located."], "brights": ["A powerful lighting device in front of a vehicle used to illuminate the road far ahead."], "bird song": ["The singing of birds."], "Seine": ["The third longest river in France which originates in Burgundy, flows through Troyes, Paris and Rouen and flows into the English Channel."], "Jakarta": ["Capital and largest city of Indonesia, located on the island of Java."], "Djakarta": ["Capital and largest city of Indonesia, located on the island of Java."], "DKI Jakarta": ["Capital and largest city of Indonesia, located on the island of Java."], "emphasis": ["Special importance or significance."], "eligible": ["Meeting the conditions; worthy of being chosen."], "encryption": ["The process of obscuring information to make it unreadable without special knowledge."], "explicit": ["Expressed clearly."], "expression": ["The process of translating a gene into a protein.", "A facial appearance usually associated with an emotion.", "A set of symbols denoting values and operations performed on them.", "A particular way of phrasing an idea."], "spring equinox": ["Moment of the astronomical beginning of spring (northern hemisphere: around March 20th, southern hemisphere: September 23rd) when day and night have approximately the same duration."], "March equinox": ["Moment around March 20th (spring in the northern hemisphere and autumn in the southern hemisphere) when day and night have approximately the same duration."], "vernal equinox": ["Moment of the astronomical beginning of spring (northern hemisphere: around March 20th, southern hemisphere: September 23rd) when day and night have approximately the same duration."], "September equinox": ["Moment around September 23rd (Autum in the northern hemisphere and Spring in the southern hemisphere), when day and night have approximately the same duration."], "exterior": ["Relating to the outside."], "interior": ["Within the confines of a building.", "Relating to the inner part.", "Away from the ocean or from open water.", "What is inside."], "occidental": ["Of, pertaining to, or situated in, the occident."], "western": ["Of, pertaining to, or situated in, the occident."], "oriental": ["Of, pertaining to, or situated in, the orient."], "Mount Fuji": ["The highest mountain in Japan and a well-known symbol of the country."], "calque": ["A compound word or phrase borrowed from another language by literal, \"word-for-word\" or root-for-root translation."], "loan translation": ["A compound word or phrase borrowed from another language by literal, \"word-for-word\" or root-for-root translation."], "equilibrium": ["The condition of a system in which competing influences are balanced.", "The state of being calm, stable and composed, especially under stress."], "eventual": ["Expected to follow in the indefinite future from causes already operating."], "exclusive": ["Excluding items or members that do not meet certain conditions."], "nuclear waste": ["Any waste that emit radiation in excess of normal background level, including the toxic by-products of the nuclear energy industry."], "expense": ["An outgoing payment made by a business or individual."], "Modern Standard Arabic": ["The contemporary, standardized and formal version of the Arabic language, which is used in media and taught in schools all over the Arab world."], "Classic Arabic": ["The liturgical language of the Islam and the language the Qur'an is written in."], "outer space": ["Relatively empty regions (with very small densities) of the universe outside the atmospheres of celestial bodies."], "abolish": ["To cancel or eliminate officially.", "To annul or rescend."], "abortion": ["The interruption of pregnancy (induced or for natural causes).", "The induced termination of a pregnancy, for example through medication or a surgical procedure."], "entertainment": ["A source of amusement, enjoyment or pleasure.", "An activity that is diverting and that holds the attention."], "conceive": ["To become pregnant.", "To have or develop the idea for."], "procreate": ["To become pregnant.", "(especially of a male parent) to procreate or generate."], "convince": ["To make someone believe, or feel sure about something, especially by using logic, argument or evidence."], "estimate": ["A rough calculation or guess.", "To calculate roughly, often from imperfect data."], "Christian": ["Professing the religion that originated in the teachings of Jesus of Nazareth, called Jesus Christ. That belongs to or is characteristic of Christianity.", "A religious person who believes Jesus is the Christ and who is a member of a Christian denomination."], "give up": ["To stop to oppose or resist.", "To put an end to a state or an activity.", "To give up or agree to forgo to the power or possession of another.", "To relinquish possession or control of to another because of demand or compulsion.", "To stop consuming (e.g. alcohol)."], "car wreck": ["A vehicle that has been discarded in the environment, urban or otherwise, often found wrecked, destroyed, damaged or with a major component part stolen or missing."], "politically correct": ["To be intended to provide a minimum of offense to other people, particularly to ethnic and religious groups, social minorities, women and aged or disabled people. It is usually an attribute of language or behavior."], "pc": ["To be intended to provide a minimum of offense to other people, particularly to ethnic and religious groups, social minorities, women and aged or disabled people. It is usually an attribute of language or behavior."], "political correctness": ["The intention to provide a minimum of offense to other people, particularly to ethnic and religious groups, social minorities, women and aged or disabled people. It is usually attributed to language or behavior."], "be fond of": ["To feel affection, tenderness and good for someone or something."], "politically correct language": ["Language that is politically correct, i.e. intended to provide a minimum of offense to other people, particularly to ethnic and religious groups, social minorities, women and aged or disabled people."], "politically-correct language": ["Language that is politically correct, i.e. intended to provide a minimum of offense to other people, particularly to ethnic and religious groups, social minorities, women and aged or disabled people."], "inclusive language": ["Language that is politically correct, i.e. intended to provide a minimum of offense to other people, particularly to ethnic and religious groups, social minorities, women and aged or disabled people."], "afflict": ["To cause great unhappiness for; distress.", "To cause physical pain; to infect with a contagious disease."], "sociolinguistics": ["The scientific study of the way language is used regarding all aspects of society, including cultural norms, expectations, and context. It also studies sociolects, language variants separated by certain social variables, such as ethnicity, religion, status, gender and level of education."], "sociology of language": ["The scientific study of the way language is used regarding all aspects of society, including cultural norms, expectations, and context. It also studies sociolects, language variants separated by certain social variables, such as ethnicity, religion, status, gender and level of education."], "myopic": ["Unable to see distant objects clearly.", "Having restricted or rigid views, and being unreceptive to new ideas."], "enterprise": ["A commercial association of two or more persons, especially when incorporated.", "An organization created for business ventures.", "Willingness to undertake new ventures."], "establishment": ["The ruling class or authority group in a society.", "A place where an activity is accomplished, whether actual, as a pub, or virtual, as a website."], "elite": ["A group or class of persons enjoying superior intellectual or social or economic status."], "equity": ["The ownership interest of shareholders in a corporation.", "Justice, impartiality and fairness.", "A legal tradition that deals with remedies other than monetary relief."], "UTC": ["\"Coordinated Universal Time\" (UTC). A high-precision atomic time standard."], "sugary": ["Containing sugar."], "salty": ["Containing salt.", "Tasting of salt."], "occur": ["(For an event) Have a real existence.", "To meet or come to the mind; to suggest itself;", "To come to pass."], "low-salt": ["Containing few salt."], "low-fat": ["Containing few fat."], "later": ["Afterward in time.", "Coming at a subsequent time or stage."], "volunteer": ["Someone who performs or offers to perform a service out of his own free will, often without payment.", "To do work as a volunteer."], "voltage": ["The amount of electrostatic potential between two points in space. Unit: volt."], "citron": ["The fruit of \"Citrus medica\", a large lemonlike fruit with thick greenish-yellow rind.", "The \"Citrus medica\" tree, a small evergreen tree or shrub."], "citron-water": ["A liquor distilled with the rind and other parts of citrons."], "citron oil": ["An essential oil made from the rind of citrons."], "citrine": ["A translucent yellow variety of quartz resembling topaz."], "tackle": ["To deal with (something unpleasant) head on."], "clutch": ["To grab or take something with a hook, with claws, etc..", "The act of grasping.", "To affect (e.g. of pain, fear, etc.)."], "agricultural": ["Referring to agriculture."], "visitor": ["Someone who pays a visit to a specific place or event."], "series": ["A number of things that follow on one after the other or are connected one after the other.", "A television or radio program which consists of several episodes that are broadcast in regular intervals."], "sequence": ["A number of things that follow on one after the other or are connected one after the other.", "To arrange in an order.", "To determine the order of things."], "sort": ["To arrange in an order.", "Kind of person."], "fasten": ["Tighten and close, for example a belt.", "To make something fixed or stable; to cause to be firmly attached.", "To confine by any ligature."], "loosen": ["To make less tight.", "To make undone or untied; to free from any fastening."], "identify": ["To establish the identity of someone or something.", "To consider two or more things to be equal or the same; to equate two or more things.", "To identify as in botany or biology, for example.", "To consider (oneself) as similar to somebody else.", "To give the name or identifying characteristics of; to refer to by name or some other identifying characteristic property."], "digress": ["To turn aside from the main subject in writing or speaking."], "orangery": ["A building used to store citrus trees in winter."], "chump": ["A person with poor judgment or little intelligence.", "A person who is gullible and easy to take advantage of."], "swing": ["Suspended seat to ropes or chains, on which one can swing for game."], "top-level ontology": ["An ontology limited to concepts that are meta, generic, abstract and philosophical, and therefore general enough to address (at a high level) a broad range of domain areas."], "foundation ontology": ["An ontology limited to concepts that are meta, generic, abstract and philosophical, and therefore general enough to address (at a high level) a broad range of domain areas."], "dutch": ["Relating to the Dutch language"], "elementary": ["Relating to the basic, essential or fundamental part of something."], "band": ["A group of musicians, especially wind and percussion players", "Frequency interval between to defined limits that form part of radio spectrum."], "let": ["To approve a specific action.", "To consent to, to give permission."], "be worth": ["To have a price assigned."], "release": ["To give freedom; to release from confinement or restraint.", "To make publicly available."], "unite": ["To join or unite, as one thing to another, or as several particulars, so as to increase the number, augment the quantity, enlarge the magnitude, or so as to form into one aggregate; to sum up; to put together mentally, as, to add numbers; to add up a column.", "To cause to become joined or linked.", "To bring two or more things or activities together."], "edition": ["The process of printing a number of books struck from one plate, usually at the same time."], "development": ["The act and result of developing.", "An increase in economic and industrial activity."], "speak on the phone": ["To speak with a person by telephone."], "mobile telephony": ["Sound transmission at a great distance by the aid of a mobile phone."], "level": ["A level, usually consisting of several rooms, in a building that consists of several levels.", "A tool for finding whether a surface is level, or for creating a horizontal or vertical line of reference.", "Part or phase of a video game as the total space available to the player during the course of completing a certain objective.", "The same height at all places; parallel to the ground.", "To make a surface level or straight.", "To aim at.", "To tear down so as to make flat with the ground.", "To direct into a position for use (e.g. a gun)."], "death by hanging": ["A death sentence that is to be executed by hanging."], "death sentence": ["The judicially ordered execution of a person as a punishment for a serious crime."], "official language": ["A language that is given legal status in a country. It is the language or one of the languages used in a nation's legislative bodies and official documents."], "entrepreneurship": ["The practice of starting new organizations, particularly new businesses generally in response to identified opportunities."], "song": ["A musical piece with lyrics (or \"words to sing\"); prose that one can sing.", "The act of singing."], "air traffic control": ["A service provided by ground-based controllers who direct aircraft on the ground and in the air."], "ATC": ["A service provided by ground-based controllers who direct aircraft on the ground and in the air."], "get laid": ["To take part in sexual activity (most commonly sexual intercourse) with another person for the purposes of sexual pleasure."], "fuck": ["To take part in sexual activity (most commonly sexual intercourse) with another person for the purposes of sexual pleasure."], "sleep with": ["To take part in sexual intercourse."], "light source": ["Object, natural or artificial, that produces light."], "medical prescription": ["A written description by a physician of medicine and dosage."], "annexation": ["The permanent acquisition and incorporation of some territory into another geo-political entity."], "devastate": ["To destroy completely.", "To cause extensive destruction or ruin utterly."], "striving": ["Strong desire or craving.", "An effortful attempt to attain a goal."], "anteroom": ["Waiting room from which you can enter directly into the reception (in public offices, professional offices, mansions, etc.)."], "peak": ["The most extreme possible amount or value of a condition, feeling, etc.", "Highest and most elevated point."], "strand": ["Each of the strings which, twisted together, make up a rope or cord."], "decode": ["To inversely apply a code to transform something coded into its original, ordinary version.", "To figure out something difficult to interpret."], "decipher": ["To inversely apply a code to transform something coded into its original, ordinary version.", "To figure out something difficult to interpret."], "employee": ["An individual who provides labour to a company or another person for a salary."], "envelope": ["A paper or cardboard wrapper used to enclose small, flat items, especially letters, for mailing."], "editor": ["A person who edits or makes changes to documents, or who has edited a particular document.", "A person at a newspaper or similar institution who edits stories and decides which ones to publish."], "emergency": ["A situation such as a natural or man-made disaster requiring urgent assistance."], "publish": ["To issue a publication."], "emotional": ["Determined or actuated by emotion rather than reason."], "electromagnetic": ["Pertaining to or exhibiting magnetism produced by electric charge in motion."], "literary language": ["A register (style) of a language that is used in writing only. It often differs in lexicon (choice of words) and syntax from the language used in speech."], "written language": ["Language that is written down, as opposed to spoken language."], "enhancement": ["A change that makes something better or more agreeable."], "improvement": ["A change that makes something better or more agreeable."], "spoken language": ["Human natural language, in which the words are uttered through the mouth. The opposites are written language, sign language and nonverbal communication."], "extent": ["The distance or area or volume over which something extends.", "The point or degree to which something extends."], "OmegaWiki": ["A collaborative project to produce a free, multilingual resource in every language, with lexicological, terminological and thesaurus information. It is also the first implementation of Wikidata technology."], "equation": ["A mathematical statement of equality between two expressions."], "algebraic": ["Of, or relating to algebra"], "algebraic equation": ["A mathematical equation in which one or both sides is an algebraic expression."], "mononucleosis": ["Disease caused by the Epstein-Barr virus."], "infectious mononucleosis": ["Disease caused by the Epstein-Barr virus."], "Pfeiffer's disease": ["Disease caused by the Epstein-Barr virus."], "glandular fever": ["Disease caused by the Epstein-Barr virus."], "digression": ["A departure from the subject, course, or idea at hand; an exploration of a different or unrelated concern."], "i18n": ["The process of developing a software product whose core design does not make assumptions based on a locale."], "exotic": ["Strikingly strange or unusual.", "Being or from or characteristic of another place or part of the world."], "embassy": ["A group of people from one nation state present in another nation state to represent the sending state in the receiving state."], "diplomatic mission": ["A group of people from one nation state present in another nation state to represent the sending state in the receiving state."], "equanimity": ["The state of being calm, stable and composed, especially under stress."], "Troy": ["A historic and legendary city and center of the Trojan War, as described in the Iliad."], "Iliad": ["One of two ancient Greek epic poems attributed to Homer. The poem concerns events during the tenth and final year in the siege of the city of Troy."], "extradition": ["A formal process by which a criminal suspect held by one government is handed over to another government for trial or to serve a sentence."], "Odyssey": ["One of two ancient Greek epic poems attributed to Homer. The poem concerns the events that befall the Greek hero Odysseus (or Ulysses) in his long journeys after the fall of Troy and when he at last returns to his native land of Ithaca."], "abandon": ["To give up control of, to surrender.", "To leave behind definitively or with serious consequences or risks.", "To leave someone who needs or counts on you."], "extension": ["A written engagement on the part of a creditor, allowing a debtor further time to pay a debt.", "A computer program that is not useful in its own right but designed to be incorporated in another piece of software.", "The act of extending or the state of being extended"], "resign": ["To accept unwillingly.", "To give up from a job or position.", "To accept as inevitable."], "extend": ["To draw out to greater length.", "To use to the utmost; exert vigorously or to full capacity."], "beg": ["To plead with someone for help or for a favor; to request urgently or persistently.", "To make a request in a humble manner; to call upon in supplication.", "To ask to obtain free."], "implore": ["To humbly plead with someone for help or for a favor."], "weigh": ["To determine the weight of an object."], "camel case": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "CamelCase": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "medial capitals": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "camelBack": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "camel caps": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "BiCapitalization": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "InterCaps": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "InfixCaps": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "MixedCase": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "PolyCaps": ["The practice of writing compound words or phrases (in Latin script) in which the words are joined without spaces and are capitalized within the compound."], "cuisine": ["A specific set of cooking traditions and practices, often associated with a specific culture."], "Japanese cuisine": ["Food items associated with Japanese culture and tradition, and the way of preparing them."], "engineer": ["A person who uses scientific knowledge to solve practical problems."], "endorsement": ["Formal and explicit approval.", "A promotional statement (as found on the dust jackets of books)."], "effective": ["Producing a decided or decisive effect."], "reproach": ["To express criticism towards (someone)."], "Vatican": ["The official residence of the Pope within Vatican City."], "ingredient": ["A food item that is used for cooking a particular dish.", "An abstract part of something.", "Component of other things."], "cooking ingredient": ["A food item that is used for cooking a particular dish."], "cooking": ["The act of preparing a meal."], "cookery": ["A specific set of cooking traditions and practices, often associated with a specific culture.", "The act of preparing a meal."], "power-hungry": ["Having a great desire for power.", "Excessively pursuing power, obsessed with power.", "Consuming a lot of electricity."], "power hunger": ["A great desire for power."], "culinary art": ["A specific set of cooking traditions and practices, often associated with a specific culture.", "The art of creating delicious food that is also pleasing to the eye."], "culinary arts": ["The art of creating delicious food that is also pleasing to the eye."], "excess": ["A quantity much larger than is needed.", "Excessive indulgence in sensual pleasures."], "craving for power": ["A great desire for power."], "rusty": ["Covered with rust."], "artificial": ["Obtained or produced imitating the nature by means of a technical procedure."], "ascribe": ["To attribute or credit to."], "ascend": ["To go up, e.g. by flying or gliding; to travel up.", "To go up to a higher degree or the highest degree."], "otherwise": ["If that is not the case.", "In another way.", "In all other respects.", "Other than supposed."], "cheapen": ["To make cheaper.", "To become cheaper.", "To lower the grade or worth of something."], "shrug": ["A lifting of the shoulders to signal indifference.", "To raise the shoulders to express a lack of knowledge or certainty."], "sacrifice": ["A living creature which is slain and offered as human or animal sacrifice, usually in a religious rite.", "Something surrendered or lost in order to gain an objective.", "To force a serious deprivation.", "To Immolate victims to a deity."], "vicinity": ["A surrounding or nearby region."], "native": ["Characteristic of or relating to people inhabiting a region from the beginning.", "Species that evolved in a particular region or that evolved nearby and migrated to the region without help from humans.", "A descendant of the first known human inhabitants of a region or country.", "Born in a particular place or country."], "negotiate": ["To confer with others in order to come to terms or reach an agreement."], "nurse": ["A woman who watches over someone else's kids usually as a full-time job.", "A person trained to provide care for the sick.", "To maintain (a theory, thoughts, or feelings)."], "nationwide": ["Affecting the whole of a nation."], "program": ["A scheme of action, a method of proceeding, or a series of steps, thought out in advance to accomplish a goal.", "A software application, or a collection of software applications, designed to perform a specific task.", "To enter a program or other instructions into a computer (or other electronic device) to instruct it to do a particular task.", "To arrange the schedule of an event."], "signify": ["To convey (a certain sense), when using some word, sentence, or significant action."], "vegetable garden": ["A patch of land used for the cultivation of vegetables."], "military camp": ["A place where tents, cabins, or other temporary structures are erected for the use of military troops, for training soldiers, etc."], "fall asleep": ["To go to sleep; to change from waking state to sleeping state."], "lottery": ["A form of gambling which involves the drawing of lots for a prize."], "leak": ["An accidental hole that allows something to enter or escape.", "To have an opening allowing a fluid to enter or escape where it shouldn't.", "To reveal information that is supposed to be kept secret.", "A person who reveals information that is supposed to be kept secret.", "To accidentally lose liquid because of, for example, a hole or crack or fissure.", "Unauthorized (especially deliberate) disclosure of confidential information."], "exit": ["To cease to live.", "Gimmick or ploy to escape a situation that is unfavorable, difficult or dangerous.", "To move out of or depart from.", "To go away from a place; to leave.", "A passage or gate from inside someplace to the outside, that permits escape or release.", "To go out of a closed place.", "The act of going out."], "reveal": ["To have somebody see something.", "To uncover; to show and display that which was hidden.", "To make known something heretofore kept secret."], "divulge": ["To make known or public.", "To uncover; to show and display that which was hidden."], "turn out": ["Having a specific result, a logical consequence."], "bearded": ["Having a beard."], "logical": ["Capable of or reflecting the capability for correct and valid reasoning."], "liberal": ["Generous in quantity.", "Favoring social freedom; permissive."], "literally": ["In the direct, word for word sense."], "lucrative": ["Producing a sizeable profit."], "profitable": ["Producing a sizeable profit.", "Productive, conducive, helpful or good to something or someone."], "exception": ["An instance that does not conform to a rule or generalization."], "experimental": ["Relating to or based on experiments."], "ethical": ["In accordance with the accepted principles of right and wrong."], "extraordinary": ["Highly unusual or exceptional or remarkable."], "emulation": ["Technique of one machine or program to obtain the same results as another."], "excitement": ["The feeling of lively and cheerful joy.", "The state of being emotionally aroused and worked up."], "exhilaration": ["The feeling of lively and cheerful joy."], "executive": ["A person responsible for the administration of an organisation.", "The Cabinet and the Government Departments and agencies for which they are responsible and which carry out the day-to-day functions of Government.", "Someone who manages a government agency or department."], "Positano": ["City on the Amalfi Coast, province of Salerno, region Campania, Italy."], "Amalfi": ["City on the Amalfi Coast, province of Salerno, region Campania, Italy."], "workstation": ["A personal computer, normally more powerful than a normal PC and often dedicated to a specific task, such as graphics."], "dengue fever": ["A viral infection cause by a virus of the genus Flavivirus, transmitted to humans by the Aedes aegypti mosquito, and endemic to tropical countries."], "worksheet": ["A single spreadsheet that contains rows and columns of data.", "A piece of paper recording work planned or done on a project."], "wound": ["A type of injury in which in skin or tisue is torn, cut, punctured or otherwise hurt.", "To cause physical harm to a living creature."], "legitimate": ["Accordant with law.", "To make in accordance with the law.", "Born of legally married parents.", "Conforming to, permitted by, or recognised by law or rules."], "earning": ["Payment accrued over a period."], "illegitimate": ["Born of parents not legally married to each other."], "Cetara": ["City on the Amalfi Coast, province of Salerno, region Campania, Italy."], "tunafish": ["Several species of ocean-dwelling fish in the family Scombridae, mostly in the genus Thunnus."], "shark": ["A scaleless fish with a cartilaginous skeleton that has 5 to 7 gill slits on each side of its head."], "northern bluefin tuna": ["(Thunnus thynnus) Species of tuna fish, living in both the Western and the Eastern Atlantic Ocean and extending into the Mediterranean Sea and the Black Sea."], "influence": ["To be of (some) importance, to influence something or someone (enough), to impress, to touch.", "The power to affect, control or manipulate something or someone.", "A cognitive phenomenon that tends to affect the nature, the magnitude, and/or the timing of a consequence.", "The effect of one thing (or person) on another.", "To have and exert influence or effect."], "wiring": ["A circuit of wires for the distribution of electricity."], "wealthy": ["Having a lot of material wealth.", "Having a lot of money and possessions."], "influenza": ["An acute contagious disease of the upper airways and lungs, caused by a virus, which rapidly spreads around the world in seasonal epidemics."], "flu": ["An acute contagious disease of the upper airways and lungs, caused by a virus, which rapidly spreads around the world in seasonal epidemics."], "identification": ["A document or documents serving as evidence of a person's identity."], "incumbent": ["Being the current holder of an office.", "The official who holds an office."], "officeholder": ["The official who holds an office."], "ration": ["A portion designated to a person or group."], "vanishing point": ["In a perspective drawing the point where all straight lines which run parallel in reality intersect."], "engender": ["To become pregnant.", "To bring into existence."], "invoke": ["To conjure up with incantations.", "To cause a program or subroutine to execute.", "To summon into action or bring into existence."], "adhere": ["To be a member o a political party or a social group.", "To be consistent or coherent; to be compatible or in accordance (e.g. with rules); to agree.", "To follow through or carry out a plan without deviation.", "To come or be in close contact with; to stick or hold together and resist separation.", "To stick to firmly."], "fundamental": ["Involving basic facts or principles."], "festival": ["An organised series of acts and performances.", "Manifestation of collective joy, lasting longer than a few minutes."], "military": ["The military units of a state, typically divided by their differing contexts of operations, such as the army, navy, air force and marines.", "Concerning war or army."], "fracture": ["The separation of a body into two, or more, pieces under the action of stress.", "The breaking of hard tissue such as bone.", "To break a hard tissue such as a bone."], "franchise": ["The authorisation granted by a company to sell or distribute its goods or services in a certain area."], "benchmark": ["A standard by which something is evaluated or measured."], "Brazilian": ["A person from Brazil or of Brazilian descent.", "Of or pertaining to Brazil or its inhabitants."], "iron rod": ["A bar or rod made of iron. May constitute a part of an object, a tool, a machine, etc."], "bomb attack": ["An attempt to harm someone or something with a violent act using dynamite or bombs."], "subtract": ["To take one thing from another.", "To find the difference between two quantities."], "speed camera": ["Device that is used to control the speed of vehicles, consisting of a radar which measures the speed and a photo camera"], "canny": ["Wise and considered."], "institute": ["An organization founded to promote a cause.", "To set up or lay the groundwork for.", "To set up or found; to begin something, to undertake a plan, to give life to an institution, enterprise, etc.", "To advance or set forth in court (e.g. charges or proceedings)."], "individual": ["A human being.", "A person considered alone, rather than as belonging to a group of people.", "Relating to a single person or thing as opposed to more than one."], "indication": ["A symptom or condition that indicates a necessity of a specific medical treatment or procedure.", "Anything serving to indicate or point out, as a sign or token."], "independence": ["Freedom from control or influence of another or others."], "participate": ["To join in, to take part, to involve oneself."], "monosemous": ["Having only one meaning."], "polysemous": ["Having multiple meanings."], "succeed": ["To attain a desired goal.", "To be the successor of."], "gloss": ["An explanation or definition of an obscure word in a text."], "wrap": ["To surround on all sides by creating a cover or protection."], "gamble": ["Participate in games of chance, betting of money in doing so", "A risky venture with an uncertain outcome."], "stronghold": ["An embankment built around a space for defensive purposes."], "precipice": ["The inclined surface of any part of the Earth's surface, as a hillslope; also, a broad part of a continent descending toward an ocean, as the Pacific slope.\\n(Source: BJGEO)", "A deep, steep-sided rift.", "Very precarious and risky situation."], "Birmingham": ["A city and metropolitan borough in the West Midlands, England."], "bilateral": ["Involving both sides equally."], "bonus": ["A payment in addition to the amount contracted for."], "bullet": ["A projectile, usually of metal, shot from a gun at high speed."], "briefing": ["Detailed instructions given ahead of an operation."], "maintain": ["To keep in good condition.", "To say definitely and categorically.", "To stay faithful to (an opinion, a belief, etc.).", "To remain in a certain state, position, or condition."], "orchestra": ["A large group of musicians who play together on various instruments."], "obsolete": ["No longer in use.", "No longer in use by preference because of something newer, which has replaced the subject."], "self-portrait": ["Portrait which depicts the artist himself."], "make an appointment with": ["To set a rendezvous."], "ruling party": ["A party that is in power in a given country, usually through a majority in parliament, or as part of the ruling coalition."], "notable": ["Worthy of notice."], "party in power": ["A party that is in power in a given country, usually through a majority in parliament, or as part of the ruling coalition."], "governing party": ["A party that is in power in a given country, usually through a majority in parliament, or as part of the ruling coalition."], "opposition party": ["A political party that is not in power and that follows an agenda opposed to the government or ruling party."], "bird brain": ["A person with poor judgment or little intelligence."], "not the sharpest tool in the shed": ["A person with poor judgment or little intelligence."], "idiot": ["A person with poor judgment or little intelligence."], "foolishness": ["The quality or state of being silly."], "Taiwanese": ["A dialect of Min Nan Chinese (or Fujian dialect), spoken by about 70% of Taiwan's population."], "Fujian dialect": ["The language of the southern Fujian province of China."], "Holo language": ["A dialect of Min Nan Chinese (or Fujian dialect), spoken by about 70% of Taiwan's population."], "Taiwanese language": ["A dialect of Min Nan Chinese (or Fujian dialect), spoken by about 70% of Taiwan's population."], "gene pool": ["The total number of genes or the amount of genetic information possessed by all the reproductive members of a population of sexually reproducing organisms."], "aviation": ["Flying using aircraft (machines designed by humans for atmospheric flight), as well as the activities, industries, and regulatory bodies associated with aircraft."], "implication": ["The associated or secondary meaning of a word or expression in addition to its explicit or primary meaning.", "Something that is inferred."], "claustrophobia": ["An irrational or obsessive fear of enclosed or confined spaces."], "indeed": ["As an actual or existing fact.", "In truth.", "An indication of agreement, surprise, skepticism or irony."], "obviously": ["In a obvious manner; clearly apparent."], "\u00e9clair": ["Oblong cream puff."], "grass snake": ["Non-poisonous snake of the genus Natrix (Natrix natrix) common near waters."], "IT": ["The systems, equipment, components and software required to ensure the retrieval, processing and storage of information in all centres of human activity (home, office, factory, etc.), the application of which generally requires the use of electronics or similar technology."], "crossroads": ["A place where several roads meet."], "armoured car": ["An armor-plated vehicle with strong doors and locks used to transport money or valuables."], "technical support": ["A range of services providing assistance with computer hardware, software, or other electronic or mechanical goods. They help the user solve specific problems with a product."], "bubble": ["A hollow globule of gas (e.g., air or carbon dioxide) produced in a liquid.", "To form, produce, or emit bubbles."], "bill": ["Sum owed in a restaurant, or the relative bill.", "A commercial document issued by a seller to the buyer, indicating products or services already provided to the buyer as well as the corresponding price that the buyer has to pay.", "Proposed law presented to the parliament for approval.", "External anatomical structure of birds which is used for taking food and for eating.", "Credit account, e.g., in a shop or bar.", "To demand payment."], "tech support": ["A range of services providing assistance with computer hardware, software, or other electronic or mechanical goods. They help the user solve specific problems with a product."], "telecommunication": ["The conveyance of images, speech and other sounds, usually over great distances, through technological means, particularly by television, telegraph, telephone or radio."], "feral": ["(For a domesticated animals) Having returned to the wild."], "shred": ["A small or barely detectable amount."], "company": ["A commercial association of two or more persons, especially when incorporated."], "venture": ["A commercial association of two or more persons, especially when incorporated.", "To make a resolution to do something and to begin to do it."], "rein": ["Each of the two leather straps that attach to the bite of the horse to lead it."], "design": ["The visual representation of a person or an object.", "To lay out or plan.", "To make or work out a plan for; devise.", "To assign for a specific end, use, or purpose; to design or destine.", "To make a (graphic) design of.", "The way in which something is composed, shaped, or made."], "buzz": ["Indefinite and subdued noise."], "drone": ["Indefinite and subdued noise.", "A male bee or wasp, which does not work but can fertilise the queen.", "A remotely controlled, unmanned aircraft."], "excavation": ["The removal of earth from its natural position.\\n(Source: HARRIS)"], "earthworks": ["The removal of earth from its natural position.\\n(Source: HARRIS)"], "plumbing equipment": ["Plumbing equipment in a building.\\n(Source: RRDA)"], "eye ball": ["The part of the eye having a spherical shape."], "bolt": ["To leave suddenly and as if in a hurry."], "plumbing fixtures": ["Plumbing equipment in a building.\\n(Source: RRDA)"], "common sense": ["Sound practical judgment."], "invasion": ["A military action consisting of armed forces of one geopolitical entity entering territory controlled by another such entity.", "Any entry into an area not previously occupied.", "The spread of pathogenic microorganisms or malignant cells to new sites in the body."], "callous": ["Having calluses; having skin made tough and thick through wear."], "skullcap": ["The top part of the skull."], "championship": ["A sport contest or series of contests in which the aim is to decide which individual or team is the champion."], "digging": ["The removal of earth from its natural position.\\n(Source: HARRIS)"], "personify": ["To be an example of; to have all the attributes of."], "interpret": ["To change a written or spoken text from one language to another.", "To explain or tell the meaning of.", "To give the meaning or intention of."], "archbishopric": ["Diocese administered by an archbishop."], "value": ["Any admirable quality or attribute.", "To view as valuable.", "The appreciation of something.", "To place a value on.", "The amount (of money or goods or services) that is considered to be a fair equivalent for something else"], "thank": ["To express gratitude or appreciation to someone."], "lay off": ["To terminate the employment of one or more employees.", "To put an end to a state or an activity."], "computer course": ["A series of training classes on how to use a computer"], "PC course": ["A series of training classes on how to use a computer"], "PC lessons": ["A series of training classes on how to use a computer"], "computer lessons": ["A series of training classes on how to use a computer"], "PC tutorial": ["A series of training classes on how to use a computer"], "computer tutorial": ["A series of training classes on how to use a computer"], "network installation": ["The creation of a computer network by running cables, placing routers and switches, setting up servers, installing software etc."], "web browser": ["A software application used to locate and display Web pages."], "troubleshooting": ["A form of problem solving; the systematic search for the source of a problem so that it can be solved, eliminating potential causes of a problem (in IT system administration and electronics)"], "problem solving": ["A form of problem solving; the systematic search for the source of a problem so that it can be solved, eliminating potential causes of a problem (in IT system administration and electronics)"], "ISP": ["A business or organization that supplies connections to a part of the Internet, often through telephone lines."], "Internet access provider": ["A business or organization that supplies connections to a part of the Internet, often through telephone lines."], "graphic": ["Written, drawn or engraved.", "Any illustrative element in a page layout, such as a photograph, illustration, icon, ruled line, or any other non-text element."], "insufficient": ["Inappropriate for a particular purpose or aim."], "grocery": ["Retail foodstuffs and other household supplies.", "A shop or store that sells groceries."], "say goodbye": ["a conventional action used at leave-taking or parting with people."], "Internet connection": ["The connection of a PC or other device to the Internet."], "guerrilla": ["A soldier in a small independent group fighting against the government or regular forces by surprise raids."], "Internet service provider": ["A business or organization that supplies connections to a part of the Internet, often through telephone lines."], "homepage creation": ["The creation of a homepage to represent oneself on the World Wide Web, for private purposes or a small business"], "assail": ["To hit with violence.", "To attack someone physically or emotionally."], "garage": ["A building, or a section of a building, used to store a car, tools and other miscellaneous items."], "web design": ["The design of web pages, websites and web applications using HTML, CSS, images, and other media; the creation of web content."], "website design": ["The design of web pages, websites and web applications using HTML, CSS, images, and other media; the creation of web content."], "cartilage": ["A type of dense connective tissue."], "web development": ["A broad term that incorporates all areas of developing a web site for the World Wide Web."], "network administration": ["Maintaining the hardware and software that comprises a computer network, monitoring traffic and ensuring data security."], "dedicate": ["To set apart for a special use", "To give entirely to a specific person, activity, or cause.", "To commit (oneself) to a particular course of thought or action."], "guidance": ["Something that provides direction or advice as to a decision or course of action."], "blindness": ["The condition of being unable to see."], "Tramonti": ["City in the province of Salerno, region Campania, Italy."], "determine": ["To spot, detect, recognize, capture, or see something or someone having been unknown, invisible, obscured, too distant, or otherwise not found before.", "To reach, make, or come to a decision about something.", "To set the limits of.", "To establish after a calculation, investigation, experiment, survey, or study."], "infer": ["To reach a conclusion by applying rules of logic to given premises.", "To conclude by reasoning or deduction, as from premises or evidence."], "deteriorate": ["To put a thing in bad condition by making it suffer some damage.", "To make inferior in quality or value."], "belong": ["Being the legitimate property of someone, regardless of whether or not the thing is in the owner's possession.", "To be a part of..."], "accustom": ["To make psychologically or physically used (to something)."], "narrate": ["To relate a story or series of events by speech or writing.", "To talk about a story giving its details; to give a detailed account of."], "contradict": ["To declare someone's opinion untrue; to assert the opposite."], "unified": ["Associated to make into a unit or coherent whole."], "utility": ["An enterprise concerned with the provision to the public of essentials, such as electricity or water.\\n(Source: CED)", "The ability of a commodity to satisfy needs or wants."], "oblige": ["To exert force or authority to force someone to do something."], "divide": ["To divide fully or partly along a more or less straight line.", "To split or separate something into two or more parts."], "constitute": ["To set up or lay the groundwork for.", "To be the material or components of.", "To set up or found; to begin something, to undertake a plan, to give life to an institution, enterprise, etc."], "celebrate": ["To behave as expected during holidays or rites.", "To have a celebration."], "IT introduction": ["Bringing an information technology system into use for the first time at a certain place, such as a company."], "Asymmetric Digital Subscriber Line": ["A form of DSL, a data communications technology that enables fast data transmission over copper telephone lines. It does this by utilizing frequencies higher than normal human hearing, that are not used by a voice telephone call. Contrary to other forms of DSL the volume of data flow is greater in one direction than the other, i.e. it is asymmetric."], "ADSL": ["A form of DSL, a data communications technology that enables fast data transmission over copper telephone lines. It does this by utilizing frequencies higher than normal human hearing, that are not used by a voice telephone call. Contrary to other forms of DSL the volume of data flow is greater in one direction than the other, i.e. it is asymmetric."], "Asymmetric Digital Subscriber Loop": ["A form of DSL, a data communications technology that enables fast data transmission over copper telephone lines. It does this by utilizing frequencies higher than normal human hearing, that are not used by a voice telephone call. Contrary to other forms of DSL the volume of data flow is greater in one direction than the other, i.e. it is asymmetric."], "PRC": ["Official name of the East-Asian country popularly known as China (since 1949)."], "clobber": ["To strike or hit somebody heavily and repeatedly."], "lick": ["To pass the tongue over (something), typically for tasting, moistening, or cleaning.", "Passing the tongue over."], "Berbice Creole Dutch": ["A creole language spoken on the coast of Guyana based on Sealandish."], "heroin": ["A powerful and addictive drug derived from opium producing intense euphoria classed as a narcotic in most of the world."], "heroine": ["A feminine person who serves as a example of positive behavior, especially in some specific field."], "web server": ["A computer that is responsible for accepting HTTP requests from clients, which are known as Web browsers, and serving them HTTP responses along with optional data contents, which usually are Web pages such as HTML documents and linked objects (images, etc.)."], "Web server": ["A computer that is responsible for accepting HTTP requests from clients, which are known as Web browsers, and serving them HTTP responses along with optional data contents, which usually are Web pages such as HTML documents and linked objects (images, etc.)."], "WWW server": ["A computer that is responsible for accepting HTTP requests from clients, which are known as Web browsers, and serving them HTTP responses along with optional data contents, which usually are Web pages such as HTML documents and linked objects (images, etc.)."], "WWW": ["A graphical, interactive, hypertext information system that is cross-platform and can be run locally or over the global Internet. The Web consists of Web servers offering pages of information to Web browsers who view and interact with the pages. Pages can contain formatted text, background colors, graphics, as well as audio and video clips."], "hierarchy": ["Any group of objects ranked so that every one but the topmost is subordinate to a specified one above it.", "The organization of people at different ranks in an administrative body."], "honest": ["Not disposed to cheat or defraud."], "Hispanic": ["Pertaining to a Spanish-speaking people or culture.", "A person residing in the United States of Spanish descent, generally but not always exclusive of Portuguese-speaking Brazilians."], "harm": ["Psychological or emotional damage or injury caused to a person, animal or other entity."], "human": ["A member of the human species.", "Any living or extinct member of the family Hominidae characterized by superior intelligence, articulate speech, and erect carriage."], "Japanese food": ["Food items associated with Japanese culture and tradition, and the way of preparing them."], "secret": ["Being or kept hidden from public perception.", "Expressly designed to elude detection.", "Something that shall remain unknown or unseen to others."], "Volap\u00fck": ["An artificial language created in 1880 by Johann Martin Schleyer."], "upright": ["In an angle of 90\u00b0 to the ground.", "Of moral excellence."], "vertical": ["In an angle of 90\u00b0 to the ground."], "perpendicular": ["In an angle of 90\u00b0 to the ground."], "gateway": ["An entrance capable of being blocked by use of a gate.", "A node that serves as an entrance to another network."], "salary": ["A fixed amount of money paid to a worker, usually measured on a monthly or annual basis."], "submit": ["To accept unwillingly.", "To refer for judgement or consideration.", "To put somebody under one's authority.", "To put before.", "To accept as inevitable."], "melee weapon": ["A weapon that is held in the hand of the combatant and that is used to hit the enemy in close combat; a weapon that is not thrown and that does not fire a projectile."], "m\u00eal\u00e9e weapon": ["A weapon that is held in the hand of the combatant and that is used to hit the enemy in close combat; a weapon that is not thrown and that does not fire a projectile."], "cold weapon": ["A weapon that does not involve fire or explosions, as in firearms and cannons. The category includes all melee weapons and some ranged weapons such as bows."], "edged weapon": ["A melee weapon that uses an edge or point to increase the user's pressure by concentrating the applied force onto a smaller surface area. Examples are swords, spears, axes and knives."], "hunting weapon": ["A weapon that is used for hunting animals."], "blunt weapon": ["A melee weapon that relies solely on mass and raw impact energy to disable opponents through broken bones, internal trauma or concussions. Examples are clubs, maces and flails."], "political": ["Part of or related to politics."], "political science": ["The scientific field concerned with theory and practice of politics and the description and analysis of political systems and political behaviour."], "operating system": ["A set of computer programs that provides basic functionality, manages the hardware and software resources of a computer, and serves as a platform for all application software."], "OS": ["A set of computer programs that provides basic functionality, manages the hardware and software resources of a computer, and serves as a platform for all application software."], "human resources": ["The department of a firm that deals with hiring, firing, and training employees, and other personnel issues."], "department": ["A section of a large organization, such as a government, a company, a university etc."], "HR": ["The department of a firm that deals with hiring, firing, and training employees, and other personnel issues."], "personnel department": ["The department of a firm that deals with hiring, firing, and training employees, and other personnel issues."], "node": ["A point at which two lines of a network cross, or which connects two networks.", "Any computer that is hooked up to a computer network.", "The small swelling that is the part of a plant stem from which one or more leaves emerge.", "A connecting point at which several lines come together.", "Any thickened enlargement.", "The point of minimum displacement in a periodic system.", "A point where an orbit crosses a plane.", "Any bulge or swelling of an anatomical structure or part.", "The source of lymph and lymphocytes."], "stringent": ["Demanding a precise attention to rules and procedures.", "Manifesting, exercising, or favoring rigor."], "strict": ["Demanding a precise attention to rules and procedures.", "Severe and unremitting in making demands.", "Incapable of compromise or flexibility.", "Rigidly accurate; allowing no deviation from a standard.", "(of rules) stringently enforced."], "suspend": ["To discontinue or interrupt a function, task, position, event or service."], "social class": ["A social group of persons of the same economic and professional condition."], "faggot": ["Offensive term for an openly, often effeminate, homosexual man."], "buttock": ["One of the two fleshy body parts, which are located at the upper end of the limbs at the rear part of the body."], "HD": ["Ferromagnetic computer storage device which writes binary data on the surface of a rotating platter.", "A chronic infectious disease caused by the bacteria Mycobacterium leprae and Mycobacterium lepromatosis which causes permanent damage to the skin, nerves, limbs and eyes if left untreated."], "swan": ["A large aquatic bird with white feathers and a long, sinuous neck.", "To declare or affirm solemnly and formally as true."], "safety belt": ["A belt or a set of belts used to secure the passengers of a car or a plane to their seat."], "video card": ["A piece of PC hardware whose function it is to generate and output images to a display. It has the form of an expansion card that is plugged into the motherboard."], "graphics accelerator card": ["A piece of PC hardware whose function it is to generate and output images to a display. It has the form of an expansion card that is plugged into the motherboard."], "graphics card": ["A piece of PC hardware whose function it is to generate and output images to a display. It has the form of an expansion card that is plugged into the motherboard."], "computer storage": ["Computer components, devices and recording media that retain data for some interval of time."], "computer memory": ["Computer components, devices and recording media that retain data for some interval of time."], "motherboard": ["The primary circuit board making up a complex electronic system, such as a modern computer."], "mainboard": ["The primary circuit board making up a complex electronic system, such as a modern computer."], "system board": ["The primary circuit board making up a complex electronic system, such as a modern computer."], "logic board": ["The primary circuit board making up a complex electronic system, such as a modern computer."], "consonant verb": ["One of the verb types of the modern Japanese language. When they are conjugated, the flexible stem ending can take all of the five columns of the Hiragana 50-sounds-table (a-e-i-o-u). In Latin script, these verbs have a fixed stem that ends in a consonant."], "vowel verb": ["One of the verb types in the modern Japanese language. When conjugated, their stem always ends in -e or -i, and instead of inflecting forms are built with the suffixes -ra, -ru, -re or -ro."], "computer virus": ["Computer program that is designed to damage a computer and that is able to spread itself to other computers."], "application": ["Software that has the scope to solve a specific problem.", "The action of applying something, such as paint on a surface."], "app": ["Software that has the scope to solve a specific problem."], "software application": ["Software that has the scope to solve a specific problem."], "World Day for Water": ["A United Nations observance that occurs each year on March 22 since 1993 and that is designated to raise awareness for worldwide problems concerning water."], "World Water Day": ["A United Nations observance that occurs each year on March 22 since 1993 and that is designated to raise awareness for worldwide problems concerning water."], "optimum": ["Most favourable condition or greatest degree or amount possible under given circumstances."], "outline": ["To bring information in fewer words; to describe roughly or briefly.", "What is being told in a clear and orderly manner.", "A general description of some subject.", "A line marking the boundary of an object figure.", "A schematic or preliminary plan.", "To draw up an outline or sketch for something.", "To trace the shape of."], "undertake": ["To make a resolution to do something and to begin to do it."], "officer": ["Any person in the armed services who holds a position of authority or command."], "objective": ["Not influenced by the emotions or prejudices.", "The lens of an optical instrument that is the closest to the object being observed.", "The goal intended to be attained (and which is believed to be attainable)."], "resignation": ["A written or oral declaration that one resigns.", "The act of voluntarily quitting one's job."], "overtime": ["The working time outside of one's regular hours."], "opposition": ["A contestant that you are matched against.", "The relative position of two celestial bodies when they have an angular distance of 180 degrees"], "Orleans": ["One of the most important families in the history of France.", "A city and commune in north-central France, about 130 km (80 miles) southwest of Paris."], "central processing unit": ["The central component in a computer that interprets program instructions and processes data."], "processor": ["The central component in a computer that interprets program instructions and processes data."], "CPU": ["The central component in a computer that interprets program instructions and processes data."], "IT security": ["The field dealing with security issues connected to computers, such as privacy protection and measures against manipulation, data theft and sabotage."], "computer security": ["The field dealing with security issues connected to computers, such as privacy protection and measures against manipulation, data theft and sabotage."], "protection": ["A thing that protects somebody or something against harm, injury or danger.", "The act of protecting somebody or something.", "Kindly endorsement and guidance.", "The state of being safe.", "A measure against contraception or sexually transmitted disease.", "Money paid for a guarantee against threatened violence by the person or organization receiving the payment.", "Restrictions on foreign competitors that limit their ability to compete with domestic producers of goods or services.", "An instance of a security token associated with a resource (such as a file.)", "The action of attempting to preserve certain species or habitats through rules or laws governing access, collecting, hunting, etc.", "An amount of money by which something or someone is protected from a loss through an insurance contract.", "Introducing a group into a molecule to protect a part of that molecule in a chemical reaction.", "A shielding or protection against the unpleasant, unwanted, or dangerous."], "device driver": ["A program that manages the interaction between the operating system and a hardware device."], "software driver": ["A program that manages the interaction between the operating system and a hardware device."], "write a program": ["To enter a program or other instructions into a computer (or other electronic device) to instruct it to do a particular task."], "hack": ["To enter a program or other instructions into a computer (or other electronic device) to instruct it to do a particular task."], "write code": ["To enter a program or other instructions into a computer (or other electronic device) to instruct it to do a particular task."], "programming language": ["An artificial language that is used to control the behavior of a machine, particularly a computer."], "software developer": ["A person who creates or modifies computer software."], "proxy server": ["A server that allows clients to make indirect connections to other servers and networks. It provides the resource either by connecting on its own or by serving data from a cache."], "proxy": ["A server that allows clients to make indirect connections to other servers and networks. It provides the resource either by connecting on its own or by serving data from a cache."], "WAN": ["A system of interrelated computer and telecommunications devices linking two or more computers separated by a great distance for the exchange of electronic data.\\n(Source: WIC)"], "local area network": ["A computer network covering a small geographic area, like a home, office, or group of buildings."], "LAN": ["A computer network covering a small geographic area, like a home, office, or group of buildings."], "local network": ["A computer network covering a small geographic area, like a home, office, or group of buildings."], "official": ["Made or communicated by virtue of authority.", "An employee of the public authorities who acts in an official capacity and with certain powers and authorities.", "Characteristic of or befitting a person in authority."], "oral": ["Spoken rather than written."], "outdoor": ["Located, suited for, or taking place in the open air."], "boiling": ["The action of heating a liquid to a temperature where it becomes a gas.", "That boils (e.g. of a container or liquid)."], "semantic web": ["A net of interdependent concepts where the dependencies are classified into distinct types with specific interpretations."], "ufology": ["Study of unidentified flying objects (UFO)."], "ufologist": ["A person who studies unidentified flying objects (UFO)."], "metropolitan": ["Relating to or characteristic of a metropolis.", "In the Eastern Orthodox Church a title given to a position between bishop and patriarch; equivalent to archbishop in western Christianity.", "Related to the (any) city."], "Pulaar": ["A Fula language spoken in Western Africa primarily as a first language by the Fula people and Tukulor in the Senegal River valley area."], "fresh snow": ["Freshly fallen snow."], "sleet": ["Precipitation that consists in a mix of snowflakes and raindrops."], "sahara": ["The largest arid desert on Earth, situated in Africa"], "frugal": ["Avoiding waste."], "economical": ["Avoiding waste."], "promote": ["To help to advance (in terms of knowledge).", "To attempt to popularize or sell a product by advertising or publicity.", "To advocate or urge the adoption of something.", "To raise someone to a more important, responsible or better paid job or rank."], "pregnant": ["Carrying developing offspring within the body."], "expecting": ["Carrying developing offspring within the body."], "gravid": ["An animal carrying developing offspring within the body."], "slavery": ["A state characterized by lack of freedom and rights and complete dependency on another person.", "The practice of keeping slaves."], "slave owner": ["Someone who owns slaves."], "slaveholder": ["Someone who owns slaves."], "smoking pipe": ["A device consisting of a mouthpiece, a long pipe stem and a pipe bowl, that is used to smoke tobacco."], "bald": ["Without hair on the head.", "To lose one's hair on the head."], "sociolect": ["The language spoken by a social group, social class or subculture."], "paranormal": ["Unexplainable by science or reason; seeming to involve mysterious forces."], "supernatural": ["Unexplainable by science or reason; seeming to involve mysterious forces."], "gastric juice": ["The acidic secretion of the stomach; mostly hydrochloric acid."], "cod liver oil": ["An oil extracted from cod livers."], "High German": ["A linguistic general term for the High German languages and dialects, as opposed to Lower German."], "arithmetician": ["An expert at calculation", "Someone who specializes in arithmetic."], "isogloss": ["The geographical boundary of a certain linguistic feature, e.g. the pronunciation of a vowel, the meaning of a word, or use of some syntactic feature."], "dialectology": ["A sub-field of linguistics that studies variations in language based primarily on geographic distribution."], "current account": ["A bank account which relates to the everyday financial transactions of an individual."], "typography": ["The art and techniques of printing, particularly type design, modifying type glyphs, and arranging type."], "action committee": ["A collection of persons united to address specific sociopolitical or socioeconomic concerns."], "line-fishing": ["The art or sport of catching fish with a rod and line and a baited hook or other lure, such as a fly."], "deduce": ["To reach a conclusion by applying rules of logic to given premises."], "impartial": ["Treating all rivals or disputants equally."], "tubular": ["Of or pertaining to a tube; formed by tubes.", "Shaped like a tube"], "Californian": ["Of or pertaining to California or its inhabitants."], "Canadian": ["Of or pertaining to Canada or its inhabitants.", "A person of Canadian nationality."], "acquired immunity": ["The body's ability to fight or prevent a specific infection. This\\nability can be acquired either actively (by having and recovering from an infection or by being vaccinated against an infec\\ntion) or passively (by receiving antibodies from an outside\\nsource, such as from breast milk or donated blood components). (Source: AIDSinfo)"], "active immunity": ["Protection from a specific infection that develops after having and recovering from the infection or being vaccinated against the infection."], "cell-mediated immunity": ["Immune protection provided by the direct action of immune cells. The main role of cell-mediated immunity is to fight viral infections."], "cellular immunity": ["Immune protection provided by the direct action of immune cells. The main role of cell-mediated immunity is to fight viral infections."], "cerebrospinal fluid": ["A clear, colorless fluid that fills the spaces in the brain and the\\ncentral canal of the spinal cord, as well as the spaces between\\nnerve cells."], "antigen": ["Any substance that can stimulate the body to produce antibodies against it. Antigens include bacteria, viruses, pollen, and other foreign materials. (source AIDSinfo)"], "cervix": ["The lower, narrow end of the uterus that forms a canal between the uterus and vagina."], "chemotherapy": ["Treatment using anti-cancer drugs, which kill or prevent the growth and division of cells."], "AIDS-defining condition": ["Any of a list of illnesses that, when occuring in an HIV-infected\\nperson, leads to a diagnosis of AIDS, the most serious stage\\nof HIV infection.\\n(source AIDSinfo)"], "alkaline phosphatase": ["An enzyme normally present in certain cells within the liver,\\nbone, kidney, intestine, and placenta. When cells are destroyed\\nin those tissues, the enzyme leaks into the blood, and levels rise\\nin proportion to the severity of the condition. Measurement of\\nthis enzyme is one way to evaluate the health of the liver.\\n(source: AIDSinfo)"], "anaphylactic shock": ["A rare but life-threatening whole-body allergic reaction. Symptoms may appear quickly and include difficulty breathing, swelling of the throat or\\nother parts of the body, rapid drop in blood pressure, dizzi\\nness, or unconsciousness. Anaphylaxis can be triggered by\\nfoods, drugs, insect stings, or exertion.\\n(source: AIDSinfo)"], "anaphylaxis": ["A rare but life-threatening whole-body allergic reaction. Symptoms may appear quickly and include difficulty breathing, swelling of the throat or\\nother parts of the body, rapid drop in blood pressure, dizzi\\nness, or unconsciousness. Anaphylaxis can be triggered by\\nfoods, drugs, insect stings, or exertion.\\n(source: AIDSinfo)"], "anemia": ["A lower than normal number of red blood cells."], "anorexia": ["Lack or loss of appetite.", "A psychiatric diagnosis that describes an eating disorder characterized by low body weight and body image distortion with an obsessive fear of gaining weight."], "antifungal": ["A natural or man-made substance that can kill or stop the\\ngrowth of a fungus.\\n(source: AIDSinfo)"], "antineoplastic": ["A natural or man-made substance that can kill or stop the growth or spread of cancer cells."], "antiprotozoal": ["A natural or man-made substance that can kill or stop the\\ngrowth of single-celled micro-organisms called protozoa.\\n(fuente: AIDSinfo)"], "antiretroviral": ["A medication that interferes with the ability of a retrovirus\\n(such as HIV) to make more copies of itself.\\n(source: AIDSinfo)"], "antiretroviral therapy": ["Treatment with drugs that inhibit the ability of retroviruses\\n(such as HIV) to multiply in the body.\\n(source: AIDSinfo)"], "antiviral": ["A natural or man-made substance that can kill or stop the\\ngrowth of a virus.\\n(source: AIDSinfo)"], "aphthous ulcer": ["A painful shallow sore in the mouth.\\n(source: AIDSinfo)"], "agammaglobulinemia": ["Absence or low levels of antibodies in the blood. This condi\\ntion leaves a person vulnerable to infections.\\n(source: AIDSinfo)"], "apoptosis": ["The deliberate, programmed death of a cell. Apoptosis occurs\\nas a normal part of life and helps the body stay healthy. If cells\\nare damaged (for example, cancerous cells or cells infected\\nwith HIV), the body orders those cells to die in order to contain the disease.\\n(source AIDSinfo)"], "artralgia": ["Joint pain with symptoms such as heat, redness, tenderness to touch, loss of motion, or swelling."], "aspergillosis": ["An infection of the lungs caused by the fungus Aspergillus. The infection may also spread through the blood to other organs."], "ataxia": ["Partial or complete loss of coordination of voluntary muscular movements. This can interfere with a person's ability to walk, talk, eat, and perform other tasks of daily living.\\n(source: AIDSinfo)"], "attenuated": ["A term used to describe a bacterium or virus that has been changed in the laboratory so that it is not harmful to people."], "autoantibody": ["An antibody directed against the body's own tissue."], "avascular necrosis": ["Death of bone (osteonecrosis) caused by a loss of blood supply to the bone tissue.\\n(source: AIDSinfo)"], "hepatic necrosis": ["Death of liver cells."], "hepatic": ["Pertaining or relating to the liver."], "hemophilia": ["A hereditary blood defect that occurs almost exclusively in males and is characterized by delayed clotting of the blood. This leads to difficulty in controlling bleeding, even after minor injuries.\\n(source: AIDSinfo)", "Heredity disease where blood clotting is impaired."], "hemoglobin": ["A protein in red blood cells that transports oxygen from the lungs to the tissues of the body.\\n(source: AIDSinfo)"], "hemolysis": ["Rupture of red blood cell membranes, causing a release of\\nhemoglobin."], "hematotoxic": ["Toxic or destructive to the blood or bone marrow."], "fatty liver": ["Accumulation of too much fat inside liver cells."], "hepatic steatosis": ["Accumulation of too much fat inside liver cells."], "hepatitis": ["Inflammation of the liver. This condition can lead to liver damage and liver cancer."], "hepatomegaly": ["Enlargement of the liver."], "basal metabolism": ["The energy exchange of an animal at rest."], "anabolism": ["Biosynthesis of molecules in cells and part of metabolism."], "catabolism": ["The breaking down by organisms of complex molecules into simpler ones with the liberation of energy."], "bull's eye": ["A difficult task that you can do thanks to a stroke of luck."], "commander-in-chief": ["Person who commands of all the operating units."], "generalissimo": ["Person who commands of all the operating units."], "shop assistant": ["An employee in a shop."], "compensate": ["To establish an equilibrium situation."], "kanji": ["The Chinese characters that are used in the Japanese writing system along with kana."], "Kanji": ["The Chinese characters that are used in the Japanese writing system along with kana."], "history of Japan": ["The past events and the development of Japan."], "Japanese history": ["The past events and the development of Japan."], "Battle of Sekigahara": ["A decisive battle in the history of Japan, in which Tokugawa Ieyasu's forces defeated those of Ishida Mitsunari, who was loyal to Toyotomi Hideyori. It took place on October 21, 1600, at Sekigahara."], "mycosis": ["Any disease caused by a fungus."], "microbe": ["Microscopic living organism, which is the agent of fermentation, putrefaction of animals or plants, and especially a large number of diseases."], "presentation": ["The process of presenting the content of a topic to an audience."], "microbicide": ["A natural or man-made substance that kills microbes. Researchers are studying the use of microbicides to prevent the transmission of sexually transmitted diseases (STDs), including HIV infection.\\n(source: AIDSinfo)"], "mitochondria": ["Rod-like structure that produce energy for a cell."], "meningitis": ["Inflammation of the membranes surrounding the brain or spinal cord. Meningitis can be caused by a bacterium, fungus, or virus."], "interplanetary space": ["Space extending between the sun and the planets of the solar system. Interplanetary space is not empty, but contains dust, particles with an electric charge, and the magnetic field of the sun (also called the IMF, or Interplanetary Magnetic Field)."], "cryptococcal meningitis": ["A life-threatening infection of the membranes surrounding the brain and the spinal cord caused by the fungus Cryptococcus neoformans.\\n(fuente: AIDSinfo)"], "cryptococcosis": ["An infection caused by the fungus Cryptococcus neoformans. This fungus typically enters the body through the lungs and usually spreads to the brain, causing cryptococcal meningitis. In some cases, it can also affect the skin, skeletal system, and urinary tract. It is considered an AIDS-defining condition in people with HIV.\\n(source: AIDSinfo)"], "cryptosporidium": ["The protozoan that causes cryptosporidiosis.\\n(source: AIDSinfo)"], "cryptosporidiosis": ["A diarrheal disease caused by the protozoa Cryptosporidium. Symptoms include abdominal cramps and severe chronic diarrhea. It is considered an AIDS-defining condition in people with HIV.\\n(source: AIDSinfo)"], "proverb": ["A widely known, fixed sentence, that expresses a maxim or a wisdom in a short and concise way."], "waiting": ["The act of waiting (remaining inactive in one place while expecting something)."], "overflowing": ["An overflowing; an inundation or flood, especially when the water is charged with much suspended material.\\n(Source: BJGEO)"], "inundation": ["An overflowing; an inundation or flood, especially when the water is charged with much suspended material.\\n(Source: BJGEO)"], "molecule": ["A group of atoms in a definite arrangement held together by chemical bonds."], "account number": ["Number of a bank account."], "peel": ["The outer skin of a citrus fruit, used for flavouring.", "To remove the skin from food or vegetables."], "orange peel": ["The zest of an orange."], "orange zest": ["The zest of an orange."], "lemon peel": ["The peel of a lemon."], "lemon zest": ["The peel of a lemon."], "outer rind": ["The outer skin of a citrus fruit, used for flavouring."], "yuzu": ["A citrus fruit native to East Asia, with the scientific name Citrus ichangensis x Citrus reticulata var. austera. It is mainly grown for its aromatic skin, which is used as a spice."], "yuzu zest": ["The zest of a yuzu (a citrus fruit native to East Asia), used as a spice or aromatic."], "yuzu peel": ["The zest of a yuzu (a citrus fruit native to East Asia), used as a spice or aromatic."], "citrus": ["The genus Citrus, flowering plants in the family Rutaceae, originally from Southeast Asia. It comprises many plants grown for their juicy and fragrant fruits, such as lemon, orange, lime, and grapefruit."], "Citrus": ["The genus Citrus, flowering plants in the family Rutaceae, originally from Southeast Asia. It comprises many plants grown for their juicy and fragrant fruits, such as lemon, orange, lime, and grapefruit."], "citrus fruit": ["The fruits of a plant in the citrus genus. They have a leathery rind surrounding segments filled with pulp vesicles."], "banana peel": ["The peel of a banana."], "summertime": ["The time during the summer months."], "summer season": ["The time during the summer months."], "apple peel": ["The peel of an apple."], "tangerine peel": ["The peel of a tangerine."], "wintertime": ["The time during the winter months."], "winter season": ["The time during the winter months."], "B-cell lymphoma": ["A type of cancer of the lymphatic tissue.\\n(source AIDSinfo)"], "candidiasis": ["Infection caused by a species of the yeast-like fungus Candida, usually C. albicans."], "desert fever": ["An infectious disease of lungs and skin caused by the inhalation of spores of Coccidioides immitis.\\n(source: AIDSinfo)"], "coccidioidomycosis": ["An infectious disease of lungs and skin caused by the inhalation of spores of Coccidioides immitis.\\n(source: AIDSinfo)"], "histoplasmosis": ["A lung disease caused by the fungus Histoplasma capsulatum with symptoms similar to those of influenza."], "Kaposi's sarcoma": ["A type of cancer caused by an overgrowth of blood vessels, which causes pink or purple spots or small bumps on the skin."], "lymphoid interstitial pneumonitis": ["A lung disorder that causes hardening of the parts of the lung that aid in oxygen absorption.\\n(source: AIDSinfo)"], "mycobacterium avium complex": ["(MAC) An infection caused by two bacteria found in soil and dust particles.\\n(source: AIDSinfo)"], "MAC": ["(MAC) An infection caused by two bacteria found in soil and dust particles.\\n(source: AIDSinfo)"], "pneumocystis jiroveci pneumonia": ["A lung infection caused by Pneumocystis jiroveci, a fungus related to Pneumocystis carinii (the species for which PCP was originally named).\\n(source: AIDSinfo)"], "PCP": ["A lung infection caused by Pneumocystis jiroveci, a fungus related to Pneumocystis carinii (the species for which PCP was originally named).\\n(source: AIDSinfo)"], "progressive multifocal leukoencephalopathy": ["A rare brain and spinal cord disease caused by a virus and usually seen only in immunocompromised individuals, such as those with HIV. Symptoms vary, but include loss of muscle control, paralysis, blindness, speech problems, and an altered mental state. This disease often progresses rapidly and may be fatal. PML is considered an AIDS-defining condition in people with HIV.\\n(source: AIDSinfo)"], "PML": ["A rare brain and spinal cord disease caused by a virus and usually seen only in immunocompromised individuals, such as those with HIV. Symptoms vary, but include loss of muscle control, paralysis, blindness, speech problems, and an altered mental state. This disease often progresses rapidly and may be fatal. PML is considered an AIDS-defining condition in people with HIV.\\n(source: AIDSinfo)"], "tuberculosis": ["An infection caused by the bacterium Mycobacterium tuberculosis.", "A common and deadly infectious disease that is caused by mycobacteria, primarily Mycobacterium tuberculosis."], "TB": ["An infection caused by the bacterium Mycobacterium tuberculosis."], "wasting syndrome": ["The involuntary loss of more than 10 percent of body weight, plus more than 30 days of either diarrhea or weakness and fever. Wasting refers to the loss of muscle mass, although part of the weight loss may also be due to loss of fat. HIV-associated wasting syndrome is considered an AIDS-defining condition.\\n(source: AIDSinfo)"], "cervical cancer": ["A condition in which a cancerous growth (also called a malignancy) develops on the lower portion of the uterus (cervix)."], "papilloma": ["A tumor that grows on the skin, such as a wart or polyp."], "human papillomavirus": ["Viruses that cause various warts, including plantar and genital warts. Some strains of HPV can also cause cervical cancer."], "Pap smear": ["A method for the early detection of cancer and other abnormalities of the female genital tract. A Pap smear is done by placing a speculum in the vagina, locating the cervix, and then scraping a thin layer of cells from the cervix. The cells are placed on a slide, sent to a laboratory, and analyzed for abnormalities."], "compose": ["To produce or create a literary or musical work.", "To make something by merging parts.", "To put together out of existing material (e.g. a list).", "To calm (someone, especially oneself); to make quiet."], "organize": ["To arrange by systematic planning and united effort (e.g. a plot, a strike, a plan)."], "sign": ["To write one's signature on.", "Feature element which permits to refer to anything or any person.", "Metal sheet for written communication (warning, instruction etc) on roadsides or streets.", "Approve and express assent, responsibility, or obligation.", "A perceptible indication of something not immediately apparent, as a visible clue that something has happened.", "One of 12 equal areas into which the zodiac is divided."], "inscribe": ["To write or cut a text or design onto something, especially a hard surface.", "To draw a circle, sphere, etc. inside a polygon, polyhedron, etc. and tangent to all its sides.", "To have one's name formally recorded as a participant or member."], "engrave": ["To write or cut a text or design onto something, especially a hard surface.", "To write or cut a text or design onto something, especially a hard surface."], "tape": ["To record, particularly onto magnetic tape.", "A tape coated with an adhesive substance."], "sustain": ["To keep something in existence.", "To experience or suffer an injury, a disease, etc.", "To admit something as valid.", "To be the physical support of; carry the weight of."], "conviction": ["A firmly held belief."], "milquetoast": ["A person who lacks courage."], "awareness": ["The state of being conscious or aware."], "indicate": ["To have somebody see something.", "To call attention on a person or thing carefully and clearly."], "point out": ["To call attention on a person or thing carefully and clearly.", "To make or write a comment on."], "retire": ["To retreat from action or danger.", "To stop working after a certain age and start living on a pension."], "infect": ["To spread among others, to communicate to others.", "To bring into contact with a substance that can cause illness (a pathogen)."], "violent": ["Taking actions, usually deliberate and characterized by violence, that cause or intend to cause injury to people, animals, or non-living objects - often associated with aggression.", "(of an emotion or natural force) very strong or powerful; acting with or marked by great force or energy or emotional intensity."], "consist": ["To be composed, formed, or made up."], "comprise": ["To be composed, formed, or made up."], "provoke": ["To cause (a person) to become angry.", "To bring about a reaction."], "correspond": ["To be equivalent or similar in character, quantity, quality, origin, structure, function etc", "To exchange messages, especially by postal letter, over a period of time.", "To be compatible, similar or consistent; coincide in their characteristics."], "arithmetical": ["Relating to or involving arithmetic."], "concern": ["A commercial association of two or more persons, especially when incorporated.", "To be relevant or of importance to.", "A vaguely specified subject, question, situation, etc. that is or may be an object of consideration or action.", "That which affects one's welfare or happiness.", "The expression of solicitude, anxiety, or compassion toward a thing or person.", "To be on the mind of."], "erythema": ["Abnormal redness of the skin caused by a buildup of red blood cells in the capillaries."], "erythema multiforme": ["A type of rash that can occur in response to medications, illness, or infections such as herpes simplex or mycoplasma infections.\\n(source: AIDSinfo)"], "karaoke": ["A form of entertainment in which an amateur sings along with recorded music on microphone. The voice of the original singer is removed, and lyrics are displayed on a screen."], "lymph node": ["Very small organs of the immune system that are located throughout the body. Lymph fluid that bathes body tissues is filtered through lymph nodes as it carries white blood cells to and from the blood.\\n(source AIDSinfo)", "The source of lymph and lymphocytes."], "human growth hormone": ["A protein produced in the pituitary gland that stimulates the liver to produce somatomedins, substances that stimulate growth of bone and muscle."], "Stevens-Johnson syndrome": ["A severe and sometimes fatal form of skin rash characterized by red, blistered spots on the skin; blisters in the mouth, eyes, genitals, or other moist areas of the body; peeling skin that results in painful sores; and fever, headache, and other flu-like symptoms. Internal organs may also be affected.\\n(source: AIDSinfo)"], "metabolic syndrome": ["A cluster of disorders affecting the body's metabolism, including high blood pressure, high insulin levels, excess body weight, and abnormal cholesterol levels."], "syndrome X": ["A cluster of disorders affecting the body's metabolism, including high blood pressure, high insulin levels, excess body weight, and abnormal cholesterol levels."], "mitochondrion": ["Rod-like structure that produce energy for a cell."], "cutback": ["Act of reducing a quantity or a number."], "run for something": ["To enter in a contest or competition."], "sideboard": ["A furniture in a kitchen or dining room, having cabinets, cupboards and drawers, used for storing cutlery and table utensils, and a flat surface for displaying food."], "style": ["a particular kind, sort, or type, as with reference to form, appearance, or character.", "The stalk that connects the stigma(s) to the ovary in a pistil of a flower."], "crusade": ["A mililtary campaign by the European Christians in the Middle Ages aiming to reconquer the Church of the Holy Sepulchre in Jerusalem.", "A series of actions advancing a principle or tending toward a particular end."], "collapse": ["Unforeseen and destructive fall."], "bloody": ["Characterised by bloodshed.", "Covered in blood."], "at first": ["At first."], "success": ["The achievement of one's aim or goal."], "list": ["A register or roll of paper consisting of an enumeration or compilation of a set of possible items.", "To make a list of."], "slide rule": ["Analog computer consisting of a handheld instrument used for rapid calculations."], "cherry blossom": ["The blossom of the cherry tree."], "anaemia": ["A lower than normal number of red blood cells."], "numerous": ["An indefinite large number of.", "A great number of."], "deliberately": ["With intention; in an intentional manner."], "report sb. to the police": ["To inform about a crime to the police."], "undernourished": ["Not sufficiently nourrished and thus physically weak."], "edit": ["To correct and eliminate errors, make information precise, etc.", "To change the content of a text, a picture, a sound file, etc.", "A change to the content of a text, a picture, a sound file, etc.", "To cut and assemble the components of (e.g. a film)."], "purify": ["To correct and eliminate errors, make information precise, etc.", "To remove dirt, dust or foreign matter from."], "ulterior motive": ["A secret, unsaid thought or intention."], "hidden agenda": ["A secret, unsaid thought or intention."], "bloodstream": ["The flow of the blood through the body."], "blood circulation": ["The flow of the blood through the body."], "intransigent": ["Unwilling to compromise or moderate a position."], "massacre": ["A ruthless killing of a great number of people."], "bloodbath": ["A ruthless killing of a great number of people."], "livid": ["Furiously angry.", "Pale in color."], "chemical compound": ["A chemical substance consisting of two or more different chemical elements chemically bonded together, with a fixed ratio determining the composition."], "Irishman": ["A person of Irish nationality."], "Irishwoman": ["A person of Irish nationality."], "cutaneous": ["Of, relating to, or affecting the skin."], "subcutaneous": ["Pertaining to the fatty layer under the skin.", "Under the skin."], "subcutaneous adipose tissue": ["A type of adipose (fat) tissue found directly under the skin."], "syphilis": ["A sexually transmitted disease (STD) caused by the bacterium Treponema pallidum. In the early stage of syphilis, a genital or mouth sore called a chancre develops, but eventually disappears on its own. However, if the disease is not treated, the infection can progress over years to affect the heart and central nervous system. Syphilis can also be transmitted from an infected mother to her fetus during pregnancy, with serious health consequences for the infant."], "sexually transmitted disease": ["Any infection spread by the transmission of organisms from person to person during sexual contact."], "chancroid": ["A sexually transmitted disease (STD) caused by a bacterium called Hemophilus ducreyi. Often causes swollen lymphnodes and painful sores on the penis, vagina, or anus."], "chlamydia": ["A sexually transmitted disease (STD) caused by a bacterium called Chlamydia trachomatis. The bacteria infect the genital tract and if left untreated can cause damage to the female and male reproductive systems, resulting in infertility.\\n(source: AIDSinfo)"], "gonorrhea": ["A sexually transmitted disease (STD) caused by the bacterium Neisseria gonorrhoeae. Many people with gonorrhea have no symptoms. If symptoms do occur, they may be burning on urination, frequent urination, yellow or green discharge from the genitals, redness or swelling of the genitals, and a burning or itching sensation of the genitals."], "lymphogranuloma venereum": ["A sexually transmitted disease (STD) caused by a species of the chlamydia bacterium. It is characterized by genital lesions and swelling of lymph nodes in the groin."], "genital ulcer disease": ["Sores on the genitals, usually caused by a sexually transmitted disease (STD) such as herpes, syphilis, or chancroid."], "pelvic inflammatory disease": ["An infection of the upper female genital tract affecting the uterus, fallopian tubes, and ovaries."], "humoral immunity": ["The body's antibody-based immune response, as opposed to its cell-based immune response (cellular immunity)."], "Venetan": ["A Romance language spoken mostly in the North East of Italy and in some states of Brazil, and to a lesser extent in other countries including Mexico, Slovenia, Croatia, and Romania."], "painful": ["Full of pain; causing uneasiness or distress, either physical or mental."], "intense": ["Extreme in degree; excessive; immoderate."], "aloud": ["Audible, as opposed to silent."], "Venetian proper": ["The variety of Venetan language spoken in Venice and nearby."], "blood bank": ["Cache of blood or blood components."], "profile": ["The shape, view, or shadow of a person's head from the side", "An analysis representing the extent to which something exhibits various characteristics.", "Essential features of, or features characterizing something or someone."], "manipulation": ["The devious management of some situation, especially for one's own advantage."], "march": ["A formal, rhythmic way of walking, used especially by soldiers, bands and in ceremonies.", "Any song in the genre of music written for marching.", "To walk with long, regular strides, as a soldier does."], "herpesvirus": ["A family of viruses containing several individual members, including herpes simplex viruses 1 and 2 (HSV-1 and -2), cytomegalovirus (CMV), varicella zoster virus (VZV), Epstein-Barr virus (EBV), and Kaposi's sarcoma herpesvirus (KSHV or HHV-8)."], "cytomegalovirus": ["A herpesvirus that can cause infections, including pneumonia (infection of the lungs), gastroenteritis (infection of the gastrointestinal tract), encephalitis (inflammation of the brain), or retinitis (infection of the eye), in immunosuppressed people."], "Epstein-Barr virus": ["A human herpesvirus that causes infectious mononucleosis (mono), a contagious disease."], "hepatitis B virus": ["The virus that causes hepatitis B."], "hepatitis C virus": ["The virus that causes hepatitis C, an inflammation of the liver that can lead to liver damage and liver cancer."], "herpes simplex virus 1": ["A virus that causes cold sores or fever blisters on the mouth or around the eyes, and can be transmitted to the genital region."], "herpes simplex virus 2": ["A virus that causes painful sores around the anus or genitals. HSV-2 may be transmitted either sexually or from an infected mother to her infant during birth.\\n(source: AIDSinfo)"], "digital divide": ["The lack of access to information and communications technologies by segments of the community, due to linguistic, economic, educational, social and geographic reasons."], "usher": ["A person, in a church, cinema etc., who escorts people to their seats.", "To go or travel in the company of someone."], "audio filter": ["A device employed to reject sound in a particular range of frequencies while passing sound in another range of frequencies."], "sound pressure level": ["Physical quantity of sound measured, usually expressed in decibels.\\n(Source: KORENa)"], "agora": ["The main square of the polis in ancient Greece.", "In Ancient Greece, a public place for business and recreation; a marketplace."], "electronic": ["Of or pertaining to electrons.", "Of, relating to or produced by means of electronics."], "blood donor": ["A person who gives blood to be used for transfusions."], "surf": ["To ride a wave, usually on a surfboard.", "To browse the Internet."], "electrical resistance": ["Physics: Measure of the degree to which an object (e. g. electronic part, wire) opposes the passage of an electric current."], "resistor": ["Two-terminal electronic component for the realization of a defined electrical resistance"], "expel": ["To accept no longer in a community, group or country, e.g. by official decree.", "To force a person or persons to leave a place.", "To force a person or persons out of a position or place."], "potable": ["Any one of various liquids for drinking.", "Good for drinking without fear of poisoning or disease."], "blood doping": ["The practice of illicitly boosting the number of red blood cells (RBCs) in the circulation in order to enhance athletic performance."], "drinkable": ["Any one of various liquids for drinking.", "Good for drinking without fear of poisoning or disease."], "allotment": ["The assignment or allotment of resources to various uses in accord with a stated goal or policy.\\n(Source: ODE)", "Procedure by which big land properties are divided in parcels of smaller size."], "resource allotment": ["The assignment or allotment of resources to various uses in accord with a stated goal or policy.\\n(Source: ODE)"], "AC": ["A system or process for controlling the temperature and sometimes the humidity and purity of the air in a house, etc."], "air-conditioning": ["A system or process for controlling the temperature and sometimes the humidity and purity of the air in a house, etc."], "deprive": ["To take away from someone something that belongs to him/her/it or deny someone of something."], "air dry": ["Process of drying or seasoning lumber naturally by exposure to air."], "beam": ["Stream of particles or electromagnetic waves.", "A structural member loaded on its narrow face, and typically used in a horizontal or sloping position to span between bearing points."], "truss": ["A structure comprising one or more triangular units constructed with straight members whose ends are connected at joints."], "veneer": ["Wood peeled, sawn, or sliced into sheets of a given constant thickness and combined with glue to produce plywood or laminated-veneer lumber."], "wood preservative": ["Any suitable substance that is toxic to fungi, insects, borers, and other living wood-destroying organisms."], "bloodthirsty": ["Marked by eagerness to resort to violence and bloodshed."], "sanguinary": ["Marked by eagerness to resort to violence and bloodshed."], "April Fool": ["Custom to make believe false stories on April 1."], "April Fool's joke": ["Custom to make believe false stories on April 1."], "blood pressure": ["The pressure exerted by the blood against the walls of the blod vessels."], "complexion": ["The color of the face."], "farm machinery": ["Machines utilized for tillage, planting, cultivation and harvesting of crops. Despite its benefits in increasing yields, mechanisation has clearly had some adverse environmental effects: deep ploughing exposes more soil to wind and water erosion; crop residues can be removed as opposed to ploughing back into the soil; removal of residues can lead to a serious loss of organic content in the soil, which may increase the risk of soil erosion.\\n(Source: MGH / DOBRIS)"], "farm production": ["The amount of grown crops and breeded livestock per year in a given area."], "agricultural output": ["The amount of grown crops and breeded livestock per year in a given area."], "agroecology": ["Study of the ecology of agricultural systems and the natural resources required to sustain them."], "pet shelter": ["A facility that houses homeless, lost or abandoned animals; primarily a large variety of dogs and cats and other animals used as pets."], "animal sanctuary": ["A facility that houses homeless, lost or abandoned animals; primarily a large variety of dogs and cats and other animals used as pets."], "warning": ["The act of signalling an impending danger in order to call attention to some event or condition.", "Of or pertaining to an admonition.", "A gentle advice or warning given to someone to tell him to be cautious about something."], "salt steppe": ["Any geomorphic area, often a level lake-like plain, with soil containing a high percentage of mineral salts, located especially in arid regions.\\n(Source: MHD / RHW)"], "by choice": ["With intention; in an intentional manner."], "distrust": ["Lack of trust, suspicious and cautious attitude.", "Loss or lack of belief or confidence.", "To regard with doubt or suspicion."], "dignity": ["Personal feelings or opinions of oneself."], "comprehensive": ["Including all or everything.", "Broad in scope."], "directly": ["In a direct manner; in a straight line or course.", "In an immediate manner; instantly or without delay."], "administrative organ": ["Any governmental agency or organization charged with managing and implementing regulations, laws and government policies.\\n(Source: BLD)"], "administrative authority": ["The power of an administrative organ to exercise control over a certain field."], "administrative power": ["The power of an administrative organ to exercise control over a certain field."], "discomfort": ["An event causing distress or pain.", "To make uncomfortable or uneasy."], "tree planting": ["Establishment of a new forest by seeding or planting of nonforested land."], "afforestment": ["Establishment of a new forest by seeding or planting of nonforested land."], "irritation": ["Feeling of disappointment and anger because of a misfortune"], "apostille": ["The legalisation of a document for international use under the terms of the 1961 Hague Convention."], "laboratory techniques": ["The sum of procedures used on natural sciences such as chemistry, biology, physics in order to conduct an experiment, all of them following the scientific method."], "air purifier": ["A device which aims to free air from contaminants."], "haemophilia": ["Heredity disease where blood clotting is impaired."], "abzyme": ["An antibody with catalytic activity."], "Classical Syriac": ["An extinct Eastern Aramaic language that was once spoken across much of the Fertile Crescent."], "disadvantage": ["A negative or unwanted consequence or side effect of a solution."], "Kaliningradian": ["Inhabitant of Kaliningrad."], "afterburner": ["A gadget fitted to the exhaust flues of furnaces and also to the exhaust systems of motor vehicles. They remove polluting gases and particles, which are the result of incompletely combusted fuel, by incineration and break down other chemical molecules associated with combustion into inert chemicals. (Source: WRIGHT)"], "beatification": ["In the Catholic, Anglican and Orthodox church the declaration that a person has been accepted in the circle of saints and does answer prayers."], "alkaline metal": ["Any element of the group of alkali metals in the periodic table."], "alkali metal": ["Any element of the group of alkali metals in the periodic table."], "finally": ["An addition used to emphasize impatience.", "To give emphasis: used after a command, exclamation, or other statement to give it emphasis or express exasperation (informal)."], "daisy": ["Small flowering plant (Bellis perennis) with white petals from the family of the Asteraceae."], "bikini": ["A brief two-piece bathing suit worn by women."], "wither": ["Plants: To stop blossoming, turning limp."], "humidifier": ["A device used to increase humidity in a room."], "laid-back": ["Natural and spontaneous, deprived of timidity."], "dehumidifier": ["A device used to lower the absolute humidity in a room."], "divorce": ["Legal dissolution of a marriage.", "To legally dissolve a marriage.", "To have one's marriage legally dissolved."], "urban": ["Related to the (any) city."], "urban center": ["A group of human settlements that offer all necessary services (i.e. civil administration, economy, transportation, culture, and education) linked to urban life and usually comprise one or two towns and their suburbs.\\n(source: SIRCHAL)"], "land survey planning": ["The action and practice of managing, in an orderly fashion, people and their activities, amenities and any means of transport they may use, always bearing in mind any relevant natural, human, economic and even strategic constraints, covering an entire country, and with a long-term goals.\\n(source: SIRCHAL)"], "masterpiece": ["exceptionally accomplished works of art."], "shantytown": ["A group of precarious dwellings built with makeshift materials, generally found on the fringe of urban areas on sites with no services or infrastructure.\\n(source: SIRCHAL)"], "UNESCO": ["Acronym for the \"United Nations Educational, Scientific and Cultural Organization\"."], "replanning": ["Modification of the distribution of the construction or infrastructure elements of a block, a quarter or a town, in order to ensure a more satisfactory use of such elements.\\n(source: SIRCHAL)"], "heritage": ["A collection of goods and assets inherited from the past."], "futurology": ["Research carried out in order to determine the probable or possible evolution of certain phenomena."], "bond": ["A sum of money paid as bail or surety.", "A certificate that acknowledges a debt.", "A certificate of ownership of a specified portion of a debt due to be paid by a government or corporation to an individual holder.", "A physical connection which binds.", "A link or force between neighbouring atoms in a molecule.", "To stick to firmly."], "debenture": ["A certificate that acknowledges a debt."], "butler": ["The chief male servant of a household who has charge of other employees, receives guests, directs the serving of meals, and performs various personal services."], "buyer": ["A person who buys things, especially for resale in some retail establishment."], "beneficial": ["Productive, conducive, helpful or good to something or someone.", "Pleasant and and very easily coped with; healthy; causing benefits [said about a climate]."], "unequivocal": ["Allowing only one interpretation.", "Something which is said or spoken to be without equal, matchless."], "basement": ["A floor of a building below ground level.", "The lowermost portion of a building, partly or wholly below ground level, often used for storage."], "flourish": ["To grow or develop well and vigorously."], "forward": ["To send something received from another person to a third person.", "Towards the front or from the front."], "school bus": ["A road vehicle to transport pupils from and to school."], "hydraulic": ["Moved or operated or effected by a liquid.", "Pertaining to water or to hydraulics."], "headquarters": ["The centre of a organisation's operations or administration."], "nosebleed": ["Bleeding of the nose."], "kick": ["To state complaints, discontent, displeasure, or unhappiness.", "To strike somebody or something with the foot.", "To drive or propel with the foot (e.g. a ball).", "To stop consuming (e.g. alcohol).", "To make a goal.", "A physical strike using the foot, leg, or knee."], "barren": ["Unable to reproduce.", "Completely wanting or lacking."], "dulcet": ["Pleasing to the ear.", "Extremely pleasant in a gentle way."], "end up": ["To come to find oneself in one given condition."], "euphonic": ["Pleasing to the ear."], "melodic": ["Pleasing to the ear."], "governor": ["An official who heads the government of a colony, state or other sub-national state unit."], "gear": ["A configuration of the transmission of an motor car so as to achieve a particular ratio of engine to axle torque.", "A wheel with grooves (teeth) engraved on the outer circumference, such that two such devices can interlock and convey motion from one to the other."], "primary school": ["An institution in which children receive the first stage of academic learning."], "Klingon": ["A language spoken by the Klingons, a people of the Star Trek series."], "raspberry": ["Small red edible fruit of the plant species Rubus idaeus"], "console": ["A storage closet either separate from, or built into, a wall.", "A small ornamental table designed to be fixed to a wall like a shelf.", "A small ornamental table with two or more legs designed to stand against a wall.", "The part of the organ that houses the keyboards, the pedals, the stops and the other controls.", "A table, desk, panel, or else accomodating a set of controls.", "A small ornamental bracket, often in the shape of a scroll, used for decorating and supporting a wall fixture.", "A computer or other electronic device designed for playing video games.", "A program that interacts with a computer by emulating a system console."], "console table": ["A small ornamental table with two or more legs designed to stand against a wall."], "soundboard": ["A console designed to control audio devices."], "Easter Bunny": ["Traditional holiday character in the form of a giving rabbit which is said to leave gifts, usually Easter baskets for children at Easter."], "rabbit": ["One of several small mammals of the family Leporidae, with long ears, long hind legs and a short, fluffy tail."], "mixing console": ["A console designed to control audio devices."], "sanguine": ["Confidently optimistic and cheerful."], "eclipse": ["A software platform comprising extensible application frameworks, tools and a runtime library for software development and management.", "A type of alignment, in which a planetary object comes between the sun and another planetary object."], "games console": ["A computer or other electronic device designed for playing video games."], "computer console": ["A physical device to control and operate a computer, usually made of a keyboard and a display."], "system console": ["A physical device to control and operate a computer, usually made of a keyboard and a display."], "command line interface": ["A program that interacts with a computer by emulating a system console."], "corbel": ["A small ornamental bracket, often in the shape of a scroll, used for decorating and supporting a wall fixture."], "consul": ["An official representative of the government of one State in the territory of another, normally acting to assist and protect the citizens of one's own country."], "marginalisation": ["The social process of becoming or being made marginal."], "erode": ["To wear down by friction. (V.t.; Re. Geology; Source: IPDF);"], "contribution": ["A voluntary gift or contribution for a specific cause.", "The part played by a person in bringing about a result.", "An amount of money given toward something."], "first-time voter": ["A person who votes for the first time in a political election."], "deathbed": ["The bed of a dying person."], "salinity": ["The concentration of salt in a solution."], "sanctuary": ["A place of safety, refuge or protection.", "Place of worship which is given special reverence for the presence of the relics of saints.", "The area around the altar of a church for the clergy and choir; often enclosed by a lattice or railing."], "salvation": ["The act of delivering from sin or saving from evil.", "The state of having been saved (from hell)."], "redemption": ["The act of delivering from sin or saving from evil."], "saying": ["A widely known, fixed sentence, that expresses a maxim or a wisdom in a short and concise way."], "maxim": ["A widely known, fixed sentence, that expresses a maxim or a wisdom in a short and concise way."], "stipulate": ["To require something as a condition of a contract or agreement."], "strategic": ["Highly important to or an integral part of a strategy or plan of action especially in war."], "stubble": ["The short, rooted stalks left in a field after crops have been harvested.", "Short, coarse hair, especially on a man's face."], "supermarket": ["A self-service food store with grocery, meat, and produce departments with a high turnover."], "survivor": ["Someone who endured through disaster or hardship.", "One who outlives another."], "liberty": ["The condition of being free to act, believe or express oneself as one chooses."], "landlord": ["A person who owns and rents land such as a house, apartment, or condo."], "lathe": ["A machine tool for shaping metal or wood."], "ligament": ["A band of strong tissue that holds the bones of an animal in position."], "tendon": ["Tissue that connects muscle to bone."], "latent": ["Existing or present but concealed or inactive."], "Lausanne": ["A city, and district in west Switzerland, where French is the main language."], "lithography": ["The process of printing a lithograph on a hard, flat surface."], "social exclusion": ["Relegating certain groups of individuals to the margins of the society."], "lumberjack": ["A person whose work it is to fell trees."], "lowercase": ["The small letters in type, as distinguished from capital, uppercase, letters."], "minuscule": ["Of very little importance.", "The small letters in type, as distinguished from capital, uppercase, letters."], "inspiration": ["Arousal of the mind to special unusual activity or creativity.", "The act of taking ambient air into the lungs."], "mow down": ["To kill a large number of people indiscriminately."], "lynching": ["The execution of a person by mob action without due process of law, especially hanging."], "notorious": ["Known widely and usually unfavorably."], "lentil": ["A brown or yellow flat legume about the size of a pea used for soups, stews, and garnishes."], "fascicle": ["A single issue of a work published in subsequent installments."], "fairy": ["one of a class of female supernatural beings, generally conceived as having a diminutive human form and possessing magical powers."], "legume": ["The fruit or seed of any of various bean or pea plants consisting of a case that splits along both sides when ripe and having the seeds attach to one side of the case."], "partisanship": ["Prejudice in favour of a particular cause; bias."], "fertilisation": ["The union of male and female cells (e.g. sperm and egg) to form a new individual."], "fecundation": ["The union of male and female cells (e.g. sperm and egg) to form a new individual."], "petition": ["A formal message requesting something that is submitted to an authority.", "A compilation of signatures built in order to exert moral authority in support of a specific cause."], "labyrinth": ["A confusing and baffling network, as of paths or passages."], "maze": ["A confusing and baffling network, as of paths or passages."], "limousine": ["A luxury sedan/saloon car, especially one with a lenghtened wheelbase or driven by a chauffeur.", "A breed of beef cattle which originates of the Limousine r\u00e9gion, well-known for their golden-red colouring."], "late in the evening": ["Late in the evening."], "at night": ["At night."], "late at night": ["Late at night."], "early in the morning": ["Early in the morning."], "resurrection": ["The act of arising from the dead."], "leopard": ["A large wild cat with a spotted coat, Panthera pardus, indigenous to Africa and Asia."], "lethargy": ["A state of physical and/or mental weakness and a lack of vigor."], "sluggishness": ["A state of physical and/or mental weakness and a lack of vigor."], "languor": ["A state of physical and/or mental weakness and a lack of vigor."], "alternation": ["Repeated successions of different things.", "The substitution of one root vowel for another, thus indicating a corresponding modification of use or meaning, such as \"get, gat, got\"; \"sing, song\"; \"hang, hung\"."], "compassion": ["Deep awareness of the suffering of another, coupled with the wish to relieve it."], "compatible": ["Capable of easy interaction."], "conceptual": ["Being or characterized by concepts or their formation."], "chronology": ["An arrangement of events into chronological order.", "The science of computing time or periods of time and of assigning events to their true dates. (source:UNICEF)"], "civilian": ["A person who isn't a member of the military armed forces."], "clergyman": ["A minister of the Catholic church empowered to administer the sacraments, most particularly that of the Eucharist or Holy Communion, as well as those of confession and extreme unction."], "clockwise": ["In the direction in that the hands of an analogue clock move."], "cadet": ["A student at a military school who is training to be an officer."], "camouflage": ["The method which allows an otherwise visible organism or object to remain indiscernible from the surrounding environment.", "To protect someone or something from being seen or recognized by disguising or adapting to the environment."], "cannibal": ["An organism which eats others of its own species.", "Human who eats other humans.", "Who feeds on members of their own species."], "decimate": ["To severely reduce; to destroy almost completely.", "To kill in large numbers."], "declination": ["At a given point, the angle between magnetic north and geographic north.", "A downward slope or bend."], "Deklination": ["At a given point, the angle between magnetic north and geographic north."], "defoliant": ["An agent used to defoliate plants."], "degree": ["An award bestowed by a university or, in some countries, a college, as an indication of academic achievement or occasionally bestowed to honor its recipient.", "A unit of measurement of angle equal to 1/360 of a circle's circumference.", "A unit of measurement of temperature on any of several scales, such as Celsius or Fahrenheit.", "Quantitative marker, usually referred to by a number or a letter, of a scale enabling comparison but not necessarily relevant calculation, because it does not necessarily express a measure."], "delimiter": ["A separating character."], "dendrology": ["The study of trees and other woody plants."], "jettison": ["To eject from a watercraft or aircaft in order to lighten the load."], "climate change": ["The long-term fluctuations in temperature, precipitation, wind, and all other aspects of the Earth's climate."], "myrmecologist": ["A person who studies the life cycles, behavior, ecology, or diversity of ants."], "Capaccio": ["Town in the province of Salerno, region Campania, Italy."], "oligarchy": ["Government by only a few, often the wealthy."], "Cividale del Friuli": ["City in the province of Udine, Region Friuli-Venezia Giulia, Italy."], "omnivorous": ["Having the ability to eat both animal and vegetable food."], "Sicily": ["An autonomous region and island of Italy and the biggest island in the Mediterranean Sea."], "opaque": ["Not allowing light or radiant energy to pass through; impenetrable to sight.", "A document in an otherwise transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers.", "Not clearly understood or expressed."], "opium": ["A yellow-brown, addictive narcotic drug obtained from the dried juice of unripe pods of the opium poppy."], "orchard": ["A garden or an area of land used for the cultivation of fruit or nut trees."], "quotient": ["The number resulting from the division of one number by another."], "quadrant": ["One of the four sections made by dividing an area with two perpendicular lines.", "An instrument that is used to measure angles up to 90\u00b0."], "xerography": ["A photocopying process in which a negative image formed on an electrically charged plate is transferred as a positive to paper and thermally fixed."], "zodiac": ["One of the twelve signs, or houses, each corresponding to one of the constellations along the zodiac.", "A belt-shaped region in the heavens on either side to the ecliptic; divided into 12 constellations or signs for astrological purposes."], "omnibus": ["A book or anthology containing multiple works of a single author."], "nuptial": ["Of or relating to a wedding."], "bridal": ["Of or relating to a wedding.", "Of or relating to a bride."], "bent": ["Natural skill (at sth); liking or inclination (for sth/doing sth)."], "unidirectional": ["Operating or moving or allowing movement in one direction only."], "uniform": ["Showing a single form or character in all occurrences.", "A distinctive outfit as a means of identifying members of a group."], "urology": ["The branch of medicine that treats disorders of the urinary tract and the urogenital system."], "underwear": ["Clothes worn next to the skin, underneath outer clothing.", "Piece of cloth adapted to cover the genitals and buttocks of a man or a woman."], "lingerie": ["Clothes worn next to the skin, underneath outer clothing."], "unification": ["The act of making or becoming a single unit."], "urine": ["Liquid excrement consisting of water, salts and urea, which is made in the kidneys, stored in the bladder, then released through the urethra."], "utensil": ["An implement for practical use."], "upholstery": ["The covering, padding and springs and webbing and fabric, on a piece of furniture."], "genial": ["Diffusing warmth and friendliness."], "cordial": ["Diffusing warmth and friendliness."], "unanimous": ["Based on complete assent or agreement.", "Acting together as a single undiversified whole."], "chastise": ["To administer disciplinary action."], "breakage": ["Something that has been broken."], "Easter egg": ["A dyed or decorated egg, traditionally associated with Easter.", "An undocumented function hidden in a program, typically triggered by a particular sequence or combination of keystrokes, such as one that displays a list of the program's developers."], "Good Friday": ["The Friday before Easter Sunday, the day that Christians commemorate the crucifixion of Jesus Christ."], "Holy Saturday": ["The Saturday immediately after Good Friday and before Easter."], "able": ["Having the necessary means to accomplish a task.", "Legally qualified or competent."], "triage": ["The process of sorting patients according to urgency of illness or injury, in order to ascertain which order to treat them in."], "blood test": ["A laboratory analysis performed on a blood sample.", "Examination of the blood to determine the amount of alcohol in the blood."], "tadpole": ["A young toad or frog in its larval stage of development that lives in water."], "polliwog": ["A young toad or frog in its larval stage of development that lives in water."], "tirade": ["A speech or writing which bitterly denounces something."], "torpedo": ["A cylindrical explosive projectile that can travel underwater and is used as a weapon."], "trustworthy": ["Worthy of being trusted."], "targeted": ["Oriented toward a specific aim."], "punching bag": ["A person who is continually target of mean jokes and/or bad treatment and towards whom anger is directed.", "An inflated ball or bag that is suspended and punched for training in boxing."], "whipping boy": ["A person who is continually target of mean jokes and/or bad treatment and towards whom anger is directed.", "Someone who is punished for the errors of others."], "topology": ["A branch of mathematics concerned with spatial properties preserved under bicontinuous deformation.", "The layout pattern of interconnections of the various elements (links, nodes, etc.) of a computer network."], "towboat": ["A towboat is a boat designed for pushing barges."], "tragedy": ["A drama or similar work, in which the main character is brought to ruin or otherwise suffers the extreme consequences of some tragic flaw or weakness of character.", "A disastrous event, especially one involving great loss of life or injury."], "fuzzy": ["Not clearly thought out.", "Having outlines that are not clearly visible."], "unfocused": ["Having outlines that are not clearly visible."], "blurred": ["Having outlines that are not clearly visible."], "firmament": ["The eighth sphere carrying the fixed stars, which surrounded the seven spheres of the planets in the geocentric model."], "fennel": ["A plant of the parsley family used for cooking."], "freelancer": ["Someone who sells his services to employers without a long-term contract."], "facet": ["Any one of the flat surfaces cut into a gem.", "One among many similar or related, yet still distinct features or elements."], "blood plasma": ["Blood without globules.", "The clear, yellowish fluid portion of the blood in which cells are suspended."], "falconry": ["The sport of hunting by using trained birds of prey, especially falcons and hawks.", "Hunting with a trained falcon."], "Falkland Islands": ["Overseas territory of the United Kingdom, located in the South Atlantic. Its capital is Stanley."], "fallible": ["Capable of making mistakes or being wrong."], "fascination": ["A feeling of great liking for something wonderful and unusual."], "captivation": ["A feeling of great liking for something wonderful and unusual."], "hockey": ["Game in which two teams of six players hit a puck with a curved stick, and shoot it in the net, which means that team scores.", "A form of hockey played on an ice rink with a puck rather than ball."], "holotype": ["The single physical example (or illustration) of an organism, known to be used when the taxon was formally described."], "hymen": ["A mucous membrane which completely or partially occludes the vaginal opening in human females."], "maidenhead": ["A mucous membrane which completely or partially occludes the vaginal opening in human females."], "hamper": ["A basket usually with a cover.", "To prevent the progress or free movement."], "Hanoi": ["The capital of Vietnam.", "A dialect of Northern Vietnamese spoken around the city of Hanoi in Vietnam."], "hangman": ["An executioner responsible for hanging criminals.", "A guessing game where one has to guess the word an opponent is thinking of by guessing one letter at a time, and involving the gradual drawing of a stick figure hanging from the gallows."], "weevil": ["Any beetle from the Curculionoidea superfamily."], "Winchester": ["The capital city of Hampshire, the former capital city of England."], "pedestrian area": ["Area in a city where vehicles are not allowed."], "car-free zone": ["Area in a city where vehicles are not allowed."], "auto-free zone": ["Area in a city where vehicles are not allowed."], "pedestrianised zone": ["Area in a city where vehicles are not allowed."], "Pievepelago": ["City in the province of Modena, region Emilia-Romagna, Italy."], "traffic island": ["Area in the middle of a road where pedestrians can wait while crossing."], "witness": ["Someone who has a personal knowledge of something.", "The attestation of a fact or event."], "wardrobe": ["A piece of furniture in which clothes may be stored.", "A collection of clothing."], "yacht": ["A slick and light ship for making pleasure trips or racing on water, having sails but often motor powered.", "To travel in a yacht."], "juvenile": ["An organism that is not sexually mature."], "childish": ["Behaving immaturely, like a child.", "Suitable for children."], "Ibiza": ["One of the Balearic Islands of Spain."], "idiom": ["A phrase that cannot be fully understood from the separate meanings of the individual words which form it, but instead must be learned as a whole unit of meaning.", "A manner of speaking that is natural to native speakers of a language."], "idiolect": ["The language variant used by a specific individual."], "idiomatic": ["Of or relating to or conforming to idiom."], "identity": ["The individual characteristics by which a thing or person is recognized or known."], "ichthyology": ["The branch of zoology devoted to the study of fish."], "incubator": ["An apparatus used to maintain environmental conditions suitable for the hatching of eggs."], "ablution": ["The ritual washing of a priest's hands or of sacred vessels.", "The act of washing or cleansing the body, or some part of it."], "linguist": ["A specialist in linguistics."], "Balearic Islands": ["A group of Mediterranean islands off the east coast of Spain."], "incest": ["Sexual relation between close relatives."], "sense": ["Sound practical judgment.", "The specific meaning in which a word or expression is understood.", "One of the methods for a living being to gather data about the world: sight, smell, hearing, touch, taste.", "A general conscious awareness.", "A natural appreciation or ability.", "The way in which something can be interpreted."], "meaning": ["The objects or concept that a word or phrase denotes, or that which a sentence says."], "Venticano": ["City in the province of Avellino, region Campania, Italy."], "Villamaina": ["City in the province of Avellino, region Campania, Italy."], "rapist": ["Someone who forces another to have sexual intercourse."], "fashion": ["The latest and most admired style in clothes and cosmetics and behavior."], "Grand Prix": ["A premium tournament in sports."], "Edinburgh": ["The capital of Scotland."], "emanation": ["Something that is emitted or radiated."], "eddy": ["A current of a fluid running back, or in a direction contrary to the main current."], "egoist": ["A conceited and self-centred person."], "electrocution": ["Death by electric shock."], "Havana": ["The capital of Cuba."], "egotist": ["A conceited and self-centred person."], "brinjal": ["Violet oval-shaped vegetable, the fruit of Solanum melongena.", "An Asian plant, Solanum melongena, cultivated for its edible purple, green, or white ovoid fruit."], "Minoan eruption": ["The eruption of the Aegean vulcano island Thera (today Santorini) in the 16th or 17th century BC."], "homophone": ["A word which is pronounced the same as another word but differs in etyomology and meaning."], "homology": ["The relationship between the elements in the same group of the periodic table, or between organic compounds in a homologous series", "In evolutionary biology, any similarity between characters that is due to their shared ancestry.", "In mathematics, a procedure to associate a sequence of abelian groups or modules with a given mathematical object.", "In anthropology, the analogy between human beliefs, practices or artifacts due to genetic or historical connections.", "In sociology, a structural 'resonance' between the different elements making up a socio-cultural whole."], "horizon": ["The horizontal line that appears to separate the Earth from the sky."], "neurotic obsession": ["Fixed, obsessive thought accompanied, for example, by states of anxiety, phobias and behavioral psychopathologies."], "harem": ["The private part of an Arab household. In traditional Arab culture, this part of the household was forbidden to male strangers."], "agitator": ["Someone who agitates or calls for a certain behavior; a troublemaker."], "source": ["A place where water emerges from the ground.", "Thing or person from which something ensues, or which represents a principle or a cause."], "cooker": ["A kitchen appliance used for cooking food."], "hapless": ["Very unlucky."], "harlequin": ["The most popular of the zanni or comic servant characters from the Italian Commedia dell'Arte."], "profligate": ["Who spends a lot, in an excessive manner.", "Displaying the effect of excessive indulgence in sensual pleasure.", "Someone who spends money prodigiously and who is extravagant and recklessly wasteful."], "wasteful": ["Who spends a lot, in an excessive manner."], "extravagant": ["Who spends a lot, in an excessive manner."], "headhunter": ["One who recruits senior personnel for a company.", "A savage who cuts off the heads of his enemies, and preserves them as trophies."], "heathen": ["Person who doesn't believe in the God of the Bible and is neither Christian, Jewish nor Muslim."], "infidel": ["Person who doesn't believe in the God of the Bible and is neither Christian, Jewish nor Muslim."], "pagan": ["Person who doesn't believe in the God of the Bible and is neither Christian, Jewish nor Muslim.", "Pertaining to paganism; not acknowledging the God of Christianity and Judaism and Islam"], "blood transfusion": ["The taking of blood from one individual and inserting it into the circulatory system of another."], "hemp": ["A tall annual herb, Cannabis sativa, native to Asia."], "buttonhole": ["The slit through which a button is passed."], "iniquitous": ["Extremely wicked."], "flagitious": ["Extremely wicked.", "Totally reprehensible."], "food aid": ["The shipments of food commodities from donor to recipient countries on a total-grant basis or on highly concessional terms.\\n(source: OAS)"], "normal value": ["The price at which merchandise is sold or offered for sale in the principal markets of the country from which it is exported.\\n(Source: OAS)"], "prospective": ["Taking place or existing in the future.", "Effective or operative in the future."], "technical specification": ["A specification that lays down the characteristics of goods to be procured or their related processes and production methods, or the characteristics of services to be procured or their related operating methods, including the applicable administrative provisions, and a requirement relating to conformity assessment procedures that an entity prescribes.\\n(Source: OAS)"], "traceability": ["A property of the result of a measurement or value of a standard whereby it can be related to stated references, usually national or international standards, through an unbroken chain of comparisons all having stated uncertainties. Traceability is the property by which comparability and confidence of results are assured.\\n(source: OAS)"], "whatever": ["No matter which; for any.", "Anything that.", "Not caring which of several options should be chosen."], "subpoena": ["In law, a writ requiring someone to appear in court to give testimony."], "subp\u0153na": ["In law, a writ requiring someone to appear in court to give testimony."], "cacophony": ["A mix of discordant sounds."], "caffeine": ["An alkaloid, C8H10N4O2, found naturally in tea and coffee plants which acts as a mild stimulant of the central nervous system."], "liable": ["Having legal responsibility."], "liar": ["A person who has lied or who lies repeatedly."], "liturgy": ["A predetermined or prescribed set of rituals that are performed, usually by a religion."], "vascular plant": ["A large group of plants characterized by the presence of specialized conducting tissues (xylem and phloem) in the roots, stems, and leaves.\\n(Source: MGH)"], "luminance": ["The ability of emitting or reflecting light."], "Madeira": ["Island in the Atlantic Ocean and an autonomous region of Portugal."], "moussaka": ["A dish consisting of layers of minced lamb or beef, sliced aubergine (eggplant) or potatoes, tomatoes and b\u00e9chamel sauce, baked in the oven"], "killer": ["A person who has commited murder."], "murderer": ["A person who has commited murder."], "machete": ["A sword-like tool used for cutting large plants with a chopping motion."], "architectural": ["Related to architecture and demonstrates its nature, quality, expression or form."], "Athens Charter": ["The urban planning charter that sums up the doctrine of the International Congresses on Modern Architecture (ICMA), comprising the findings of the 4th ICMA on \"The Functional Town\" held in Athens in 1933.\\n(source SIRCHAL)"], "alkaloid": ["A nitrogenous organic molecule that has a pharmacological effect on humans and other animals."], "matrix": ["Ordered set of m x n elements represented by m rows and n columns."], "macadam": ["A paved surface having compressed layers of broken rocks held together with tar."], "mackerel": ["An edible fish of the Scombridae family, often speckled."], "alphabetic": ["Relating to an alphabet."], "mirage": ["An optical phenomenon in which light is refracted through a layer of hot air close to the ground, making far away objects appear being relatively close."], "alphanumeric": ["Representation, e.g. in a computer, that employs not only numerals but\\nalso letters. In a wider sense, also employing punctuation marks and\\nmathematical and other symbols."], "bilingualism": ["The habitual use, e.g. by a person or a community, of two languages."], "choronym": ["Toponym applied to an areal feature."], "conversion": ["In toponymy, the process of transferring the phonological and/or\\nmorphological elements of a particular language to another, or\\nfrom one script to another. Conversion is effected by either\\ntranscription or transliteration.", "The act of inducing someone to adopt a particular religion, faith, ideology or belief.", "The act of transforming or changing something into another form, substance, state, or product."], "toponymy": ["The science that studies place names (toponyms)."], "geographical coordinates": ["The (spheroidal) net or graticule of lines of latitude (parallels)\\nnumbered 0\u00b0-90\u00b0 north and south of the equator, and lines of longitude\\n(meridians) numbered 0\u00b0-180\u00b0 east and west of the international zero\\nmeridian of Greenwich, used to define location on the Earth's surface\\n(disregarding altitude) with the aid of angular measure (degrees,\\nminutes and seconds of arc).", "The value of a point referred to the geographical coordinates graticule."], "rectangular coordinates": ["Grid of plane coordinates consisting of two sets of straight lines at\\nright angles to each other and with equal units of length on both axes,\\nsuperimposed on a (chiefly) topographic map.", "The values of a point referred to a grid of rectangular coordinates."], "neat": ["Arranged neatly or in an organised fashion.", "Free from contaminants or extraneous elements."], "undiluted": ["Free from contaminants or extraneous elements."], "unadulterated": ["Free from contaminants or extraneous elements."], "bruise": ["A collection of blood in the body tissue outside the blood vessels", "Injury to biological tissue, generally caused by an impact, in which the capillaries are damaged, allowing blood to seep into the surrounding tissue.", "To injure, esp. without breaking the skin."], "contusion": ["A collection of blood in the body tissue outside the blood vessels", "Injury to biological tissue, generally caused by an impact, in which the capillaries are damaged, allowing blood to seep into the surrounding tissue."], "orphan": ["A person one or both of whose parents have died, especially a minor."], "at that time": ["At a given time in the past."], "forum": ["Antique Roman venue, which was the center of the public life."], "formerly": ["At a time in the past."], "in former times": ["At a time in the past."], "in the past": ["At a time in the past."], "negation": ["A statement that is a refusal or denial of some other statement."], "bulletin board": ["Virtual space in which things are discussed, questions are posed and answered and cogitations are swapped."], "thunder": ["Sound produced by fast air expansion induced by a lightning."], "tour of duty": ["A period of time spent on a specific assignment, especially on an overseas mission."], "creole": ["A stable language that originates seemingly as a \"new\" language, sometimes with features that are not inherited from any apparent source, without however qualifying in any appreciable way as a mixed language."], "descriptive term": ["A word (usually a common noun, an adjective or a phrase), e.g. printed\\nin a map, that designates a topographic feature by its properties, but\\nthat does not constitute a toponym."], "diglossia": ["A relatively stable linguistic situation in which two different varieties of\\na single language co-occur in a linguistic community, one (the\\n\"high\" variety) usually being the more formal and prestigious; the other\\n(the \"low\") variety being used in more informal settings, chiefly in\\nconversation.", "A situation where a given language community uses two languages or dialects."], "diphthong": ["Combination of two (or three, in triphthong) vocalic elements in a single\\nsyllable."], "endonym": ["Name of a geographical feature in one of the languages occurring in that area where the feature is situated."], "epotoponym": ["A toponym that constitutes the basis or origin of a common noun."], "exonym": ["Name used in a specific language for a geographical feature situated\\noutside the area where that language has official status, and differing in\\nits form from the name used in the official language or languages of the\\narea where the geographical feature is situated."], "hydronym": ["Toponym applied to a hydrographic feature."], "International Phonetic Alphabet": ["An internationally recognized set of symbols for phonetic transcription."], "minority language": ["In a specific region, a language that is different from the official\\nlanguage of State administration and that is spoken by a national\\nminority. It may or may not have official status."], "national language": ["Language in widespread and current use throughout a specific country\\nor in parts of its territory, and often representative of the identity of its\\nspeakers. It may or may not have the status of an official language."], "usable": ["Capable of being put to use.", "Able to be employed."], "urn": ["A vase, ordinarily covered and without handles that usually has a narrowed neck above a footed pedestal.", "A container into which cremated remains are placed and kept."], "violinist": ["A person who plays the violin."], "fiddler": ["A person who plays the violin."], "veil": ["A head covering."], "veterinarian": ["A doctor who practices veterinary medicine."], "veteran": ["A person who has served in the armed forces, especially an old soldier who has seen long service."], "pretend": ["To act as if something is true.", "To make an appearance of.", "To state something that is wrong or doubtful.", "(In imagination or play) To simulate belief (that)."], "guild": ["An association of people having a common interest that may be politic, social, econimic or professional, and who meet to help themselves mutually.", "A formal association of people with similar interests."], "vaunt": ["To show off."], "lash": ["To beat severely with a whip or rod.", "One of the hairs that grows on the eyelid, around the eyes."], "large-scale landed property": ["Huge estate property which is not being cultivated or on which extensive agriculture is being operated."], "crew": ["The whole of the worforce.", "The men and women who man a vehicle (ship, aircraft, etc.)"], "majoritarian": ["Concerning the majority."], "infuriated": ["Marked by extreme anger."], "crab": ["A decapod crustacean covered with a thick exoskeleton, and armed with a single pair of claws."], "generate": ["(especially of a male parent) to procreate or generate.", "To produce as a result of a chemical or physical process.", "To produce as return, as from an investment; to give or supply."], "gestation": ["The phase of conception and development of an idea or plan.", "The condition of being pregnant; the period from conception to birth when a woman carries a developing fetus in her uterus."], "be born": ["To start living."], "agrofuel": ["Fuel obtained as a product of agriculture biomass and by-product. It covers mainly biomass materials derived directly from fuel crops and agricultural, groindustrial and animal by-products."], "inflatable boat": ["A small boat equipped with outboard motor whose hull is made from one or more tubular air chambers."], "chromosomal aberration": ["An abnormal change in chromosome structure or number, including deficiency, duplication, inversion, translocation, aneuploidy, polyploidy, or any other change from the normal pattern.. Although it can be a mechanism for enhancing genetic diversity, most alterations are fatal or debilitating, especially in animals.\\n(source: FAO)"], "polymorphism": ["In genetics: The occurrence of allelic variation at a locus.", "In biology: the occurrence of two or more forms in a population.", "The ability to assume different forms or shapes.", "In crystallography: the ability of a solid material to exist in more than one form or crystal structure; pleomorphism."], "sandstorm": ["Storm or strong wind which carries dust or sand."], "dust storm": ["Storm or strong wind which carries dust or sand."], "polymerase": ["An enzyme that catalyses the formation of polymers from monomers."], "vexation": ["Anger produced by some annoying irritation"], "monomer": ["A small molecule (in the biological sciences typically individual amino acids, nucleotides or monosaccharides) that can combine with identical or similar others to form a larger, more complex molecule called a polymer."], "monogenic": ["Trait controlled by a single gene."], "variability": ["The degree to which a thing is variable.", "The quality of being changeable."], "variance": ["The degree to which a thing is variable.", "A measure of the dispersion of the distribution of a random variable."], "multigenic": ["Trait controlled by several genes, as opposed to monogenic."], "polygenic": ["Trait controlled by several genes, as opposed to monogenic."], "mitosis": ["Splitting of replicated chromosomes, and the division of the cytoplasm to produce two genetically identical daughter cells."], "metastasis": ["The spread of cancer cells to previously unaffected organs.", "A cancerous growth created by cancerous cells that have spread from a primary growth located elsewhere in the body."], "meiosis": ["The two-stage process in sexual reproduction by which the chromosome number is reduced from the somatic to the haploid number. The first division, in which homologous chromosomes pair and exchange genetic material, is followed by amitotic division. The nucleus divides twice, but the chromosomes only once, generating haploid nuclei, which develop into the gametes (egg and sperm in animals; egg and s in plants)."], "express": ["Main-line train which halts at big main-line stations only.", "To convey meaning.", "Public transport consisting of a fast bus that makes only a few scheduled stops."], "express train": ["Main-line train which halts at big main-line stations only."], "hinny": ["The offspring of a male horse and a female donkey."], "pedestrian": ["A person who is traveling on foot.", "Of roads or shopping areas which are mainly or exclusively for pedestrians."], "negative": ["Less than zero.", "Expressing or consisting of a negation or refusal or denial."], "liquefy": ["To make into a liquid.", "To become liquid."], "gainful": ["Producing a sizeable profit."], "loess": ["Any sediment, dominated by silt, of aeolian (wind-blown) origin."], "toponym": ["Proper noun applied to a topographic feature."], "cockchafer": ["European beetle of the genus Melolontha, in the family Scarabaeidae.", "Any of the large European beetles from the genus Melolontha."], "may bug": ["European beetle of the genus Melolontha, in the family Scarabaeidae."], "billy witch": ["European beetle of the genus Melolontha, in the family Scarabaeidae."], "string instrument": ["A musical instrument on which sounds are produced by setting strings in vibration."], "Weinsberg": ["A town in the district of Heilbronn in the German state Baden-W\u00fcrttemberg."], "truthful": ["Honest, and always expressing or given to expressing the truth.", "Conforming to truth."], "negotiator": ["A male person that negotiates something as a representative.", "A female person that negotiates something as a representative.", "Someone who confers with others in order to reach a settlement"], "bol\u00edvar": ["The currency of Venezuela, with code VEB."], "nepotism": ["The favoring of relatives or personal friends because of their relationship rather than because of their abilities."], "real": ["Being or reflecting the essential or genuine character of something."], "guaran\u00ed": ["The currency of Paraguay, with code PYG."], "boliviano": ["The currency of Bolivia, with code BOB."], "queue": ["Waiting line.", "To form a queue or a line; to stand in line."], "topography": ["The surface configuration of Earth or of another planet or a satellite, or of a portion thereof, including the planimetric and altimetric aspects, i.e. the situation in the map plane and the relief.", "Description and graphic representation of the surface configuration of Earth or of another planet or a satellite, or of a portion thereof."], "vernacular": ["Language or dialect native to a region, as distinct from the standard language."], "lancet": ["A narrow window having a lancet arch and without tracery.", "A sharp pointed, two-edged surgical instrument."], "unfair competition": ["Any act contrary to honest commercial practices. Acts contrary to honest commercial practices mean at least practices such as breach of contract, breach of confidence and inducement to breach, and includes the acquisition of undisclosed information by third parties who knew, or were grossly negligent in failing to know, that such practices were involved in the acquisition."], "pregnancy": ["The condition of being pregnant; the period from conception to birth when a woman carries a developing fetus in her uterus."], "lecturer": ["The name given to university teachers in their first permanent university position."], "lawn": ["A ground covered with grass kept closely mown."], "latrine": ["A very simple toilet facility, usually just a pit or trench."], "conditional": ["Conjugation tense of a verb."], "leeward": ["Away from the direction from which the wind is blowing."], "downwind": ["Away from the direction from which the wind is blowing."], "indicative": ["Conjugation mode of a verb."], "obesity": ["The state of being extremely overweight due to an excess of body fat."], "present perfect": ["Conjugation tense of a verb."], "ovulation": ["The release of an ovum from the ovary."], "American Sign Language": ["The dominant sign language of the Deaf community in the United States, in the English-speaking parts of Canada, and in parts of Mexico."], "imperative": ["Conjugation form of a verb."], "infinitive": ["Basic form of a verb."], "participle": ["a form of a verb that functions as an adjective and, when combined with an auxiliary verb (such as have or be), forms certain tenses of the verb"], "advertise a vacancy": ["To make known by means of a public communication."], "napkin": ["A rectangle of cloth or paper used at the table for wiping the mouth while eating.", "An absorbent garment worn by a baby who does not yet have voluntary control of its bladder and bowels or by someone who is incontinent."], "oligarch": ["Someone who is part of a small group that runs a country."], "olive": ["The small oval fruit of the olive tree, Olea europaea.", "Having the color of a ripe olive, a dark brownish or yellowish green.", "The color or a ripe olive, a dark brownish or yellowish green.", "A tree of the genus Olea cultivated for its fruit."], "Asia-Pacific Economic Cooperation": ["Established in November 1989, the Asia-Pacific Economic Cooperation (APEC) is the premier forum for facilitating economic growth, cooperation, trade and investment in the Asia-Pacific region. APEC members (21) are: Australia, Brunei Darussalam, Canada, Chile, People\u2019s Republic of China, Hong Kong, China, Indonesia, Japan, Republic of Korea, Malaysia, Mexico, New Zealand, Papua New Guinea, Peru, the Philippines, the Russian Federation, Singapore, Chinese Taipei, Thailand, United States, and Viet Nam."], "APEC": ["Established in November 1989, the Asia-Pacific Economic Cooperation (APEC) is the premier forum for facilitating economic growth, cooperation, trade and investment in the Asia-Pacific region. APEC members (21) are: Australia, Brunei Darussalam, Canada, Chile, People\u2019s Republic of China, Hong Kong, China, Indonesia, Japan, Republic of Korea, Malaysia, Mexico, New Zealand, Papua New Guinea, Peru, the Philippines, the Russian Federation, Singapore, Chinese Taipei, Thailand, United States, and Viet Nam."], "cold war": ["The period of conflict, tension and competition between the United States and the Soviet Union and their allies from the mid-1940s until the early 1990s."], "melt": ["To make a whole by melting.", "To diminish or disappear along the way.", "To liquefy by applying heat; to transform from solid to liquid state.", "To become soft or liquefied by heat."], "acuity": ["The visual ability to resolve fine detail.", "A quick and penetrating intelligence.", "Quickness, accuracy, and keenness of judgment or insight."], "acuteness": ["A quick and penetrating intelligence.", "Quickness, accuracy, and keenness of judgment or insight."], "addendum": ["A supplemental addition to a given main work."], "quintuple": ["To make five times as great.", "To become five times as great."], "Alicante": ["The capital city of the Alicante province in Spain.", "A province of eastern Spain, in the southern part of the Valencian Community. It is bordered by the provinces of Murcia on the southwest, Albacete on the west, Valencia on the north, and the Mediterranean Sea on the east. The province is named after its capital, the city of Alicante."], "vary": ["To change with time."], "adulation": ["Exaggerated and hypocritical praise.", "Flattery intended to persuade."], "variable": ["Able to vary.", "A symbolic representation used to denote a quantity or expression.", "Marked by diversity or difference."], "pallet": ["A flat transport structure designed to support a variety of goods in a stable fashion while being lifted by any mobile forklift or other jacking device."], "refrain": ["To resist doing something."], "quadruple": ["To make four times as great.", "To become four times as great."], "quadruplicate": ["To make four times as great."], "admirable": ["Deserving of the highest esteem or admiration."], "overhead projector": ["A gadget which projects a text or an image on a transparent foil through a mirror onto the wall."], "ibidem": ["At the same place."], "advance": ["To help to advance (in terms of knowledge).", "A payment for which accounting must be rendered by the recipient at a later date.", "To bring forward; to move towards the van or front; to make to go on.", "To give money or pay in advance."], "amicable": ["Generally warm, approachable and easy to relate with in character.", "Showing friendliness or goodwill."], "cultivar": ["A cultivated plant that has been selected and given a unique name because it has desirable characteristics (decorative or useful) that distinguish it from otherwise similar plants of the same species.\\n(source: Wikipedia)"], "The proof of the pudding is in the eating": ["A proverb which says that practical experiences should be prefered to theoretical cognition, wherefore someone should risk something without thinking about it long time."], "committed": ["Of a person or group who is bound or obligated, as under a pledge to a particular cause, action, or attitude."], "waterproof": ["Not permitting the passage of water.", "To make watertight."], "impermeable": ["Not permitting the passage of water."], "Algiers": ["The capital and largest city of Algeria."], "gangrenous": ["Afflicted with gangrene."], "robot": ["A signaling device to control the flow of traffic.", "Machine which settles a job with according to a program autonomously."], "humanoid robot": ["Autonomously operating machine with a stature which is based on the human stature."], "android": ["A robot which is very similar to the human."], "droid": ["A robot which is very similar to the human."], "science fiction": ["A form of literature or film which handles the future."], "body of water": ["The mass of water occupying all of the Earth's surface not occupied by land, but excluding all lakes and inland seas.", "Significant accumulation of water, covering the Earth or another planet."], "palatable": ["Pleasing to the sense of taste."], "sapid": ["Pleasing to the sense of taste."], "phenomenon": ["Event that is observable with the senses."], "observer": ["Someone who observes."], "obtrusive": ["Undesirably noticeable."], "forward allowance": ["The distance that a shooter aims ahead of a moving target in order to hit it with the projectile."], "galley": ["A kitchen on a ship."], "creep": ["An annoyingly unpleasant person.", "To move slowly with the body in a prone position resting on or close to the ground."], "lantern": ["A case of translucent or transparent material made to protect a flame, or light, used to illuminate its surroundings."], "anthracite coal": ["A natural black graphitelike material used as a fuel, formed from fossilized plants and consisting of more than 90% amorphous carbon with various organic and some inorganic compounds."], "financial incentive": ["Tax benefit or credit granted with the aim, for example, to promote the development of certain sectors or certain economic activities."], "fiscal incentive": ["Tax benefit or credit granted with the aim, for example, to promote the development of certain sectors or certain economic activities."], "embedded": ["To join between them two different elements."], "intact": ["Undamaged in any way.", "That has not been impaired or altered; lacking nothing essential, especially not damaged"], "anthracite": ["A natural black graphitelike material used as a fuel, formed from fossilized plants and consisting of more than 90% amorphous carbon with various organic and some inorganic compounds."], "embarrassment": ["State of uneasiness, due to the difficulty or the impossibility to adopt an appropriate behaviour."], "colostrum": ["Milk produced the first days after giving birth."], "limitation": ["The quality of being limited or restricted."], "constraint": ["The quality of being limited or restricted.", "The use of force or intimidation to obtain compliance."], "indolence": ["State of physical and mental inactivity resulting from a dislike of work."], "elevation": ["A geometrical projection of one of the faces of a building, or other object, on a plane perpendicular to the horizon."], "trigger": ["To produce the beginning of a process.", "A finger-operated lever used to fire a gun.", "An SQL procedure that may be initiated when a record is inserted, updated or deleted; typically used to maintain referential integrity."], "enframe": ["To wrap as a frame."], "alarming": ["Frightening because of an awareness of danger."], "tabloid": ["A newspaper having pages half the dimensions of the standard format, especially one that favours stories of a sensational nature over more serious news."], "white-tailed eagle": ["(Haliaeetus albicilla) Largest eagle of Europe."], "sea eagle": ["(Haliaeetus albicilla) Largest eagle of Europe."], "erne": ["(Haliaeetus albicilla) Largest eagle of Europe."], "ern": ["(Haliaeetus albicilla) Largest eagle of Europe."], "white-tailed sea-eagle": ["(Haliaeetus albicilla) Largest eagle of Europe."], "nongratuitous": ["What requires the acceptation of costs."], "for remuneration": ["What requires the acceptation of costs."], "tentacle": ["An elongated, boneless, flexible organ or limb of some animals, such as the octopus and squid."], "text": ["A written passage consisting of multiple glyphs, characters, symbols or sentences.", "To send a text message via mobile phone."], "thimble": ["A pitted, now usually metal, cap for the fingers, used in sewing to push the needle."], "thief": ["Someone who takes property belonging to someone else with the intention of keeping it or selling it."], "thread": ["A long, thin and flexible form of material, generally with a round cross-section, used in sewing, weaving or in the construction of string.", "A way for a program to fork (or split) itself into two or more simultaneously (or pseudo-simultaneously) running tasks. In general, a thread is contained inside a process and different threads in the same process share some resources while different processes do not. (source: Wikipedia)"], "tireless": ["Showing sustained enthusiastic action with unabating vitality"], "trainer": ["Someone who trains other persons or animals.", "Someone who trains athletes."], "weekly paper": ["A newspaper publication which appears once a week."], "evening newspaper": ["A newspaper which appears in the evening."], "evening paper": ["A newspaper which appears in the evening."], "brochure": ["Booklet that is used to distribute information."], "god-king": ["In historical societies, king who is believed to be a deity or to have godlike attributes and powers."], "divine king": ["In historical societies, king who is believed to be a deity or to have godlike attributes and powers."], "queen bee": ["The only sexually mature female in a colony of honeybees."], "transgress": ["To exceed or overstep some limit or boundary."], "queen wasp": ["The only sexually mature female in a wasp colony."], "prostate cancer": ["A malignant disease where tumors develop in the prostate."], "jerrycan": ["A robust fuel container made from pressed steel."], "Uyghur": ["A Turkic language spoken by the Uyghur people in Xinjiang."], "transient": ["Passing or disappearing with time.", "Lasting or existing for a short time only."], "transitory": ["Passing or disappearing with time.", "Lasting or existing for a short time only."], "trapeze": ["A swinging horizontal bar, suspended at each end by a rope."], "timely": ["Happening or appearing at the proper time."], "toga": ["A one-piece cloak worn by men in ancient Rome.", "A costume worn on formal occasions by the faculty or students of a university or college."], "intercept": ["To seize someone on its way.", "To tap a telephone or telegraph wire to get information."], "tombola": ["A lottery in which winning tickets are drawn from a revolving drum."], "transmutation": ["The transformation of one element into another by a nuclear reaction."], "tumult": ["The noise as made by a crowd."], "kennel": ["A shelter for a dog."], "doghouse": ["A shelter for a dog."], "karate": ["An Okinawan martial art involving primarily punching and kicking, but additionally, advanced throws, arm bars, grappling and all means of fighting."], "Kingston": ["The capital of Jamaica."], "marathon": ["A footrace of 26 miles 385 yards, 42,195 m."], "mausoleum": ["A large stately tomb or a building housing such a tomb or several tombs."], "marquetry": ["A decorative woodworking technique in which veneers of wood, ivory, metal etc. are inlaid into a wood surface to form intricate designs."], "mercenary": ["A person hired to fight for another country than their own."], "monoculture": ["Agriculture that uses a large area of land for production of a single crop year after year."], "mistral": ["A strong cold north-west wind in southern France and the Mediterranean."], "millipede": ["Any of numerous herbivorous nonpoisonous arthropods having a cylindrical body of 20 to 100 or more segments most with two pairs of legs."], "bribe": ["Something (usually money) given in exchange for influence or as an inducement to dishonesty.", "To give, or offer a bribe."], "Montserrat": ["A British Overseas Territory located in the Leeward Islands."], "Monrovia": ["The capital of Liberia."], "motet": ["A composition adapted to sacred words in the elaborate polyphonic church style"], "moustache": ["A growth of facial hair between the nose and the upper lip."], "mould": ["A frame or model around or on which something is formed or shaped.", "To create something, usually for a specific function.", "To form in clay, wax, etc."], "decisive": ["Determining or having the power to determine an outcome.", "Marked by promptness and decision.", "Pertaining to a conclusion."], "decoy": ["A person or object meant to lure something to danger.", "A small pond with a long cone-shaped wickerwork tunnel, used to catch wild ducks."], "abstinence": ["The voluntary forbearance of any action, especially the refraining from an indulgence of appetite, or from customary gratifications of animal or sensual propensities."], "panorama": ["An unbroken view of an entire surrounding area."], "pacifist": ["Someone who believes that violence of any kind is unjustifiable and that one should not participate in war."], "phytology": ["A branch of the biological sciences which embraces the study of plants and plant life."], "wisdom tooth": ["One of the four third molars in humans, which typically develop between ages 17-24."], "ecstasy": ["A trance or a trance like state in which an individual transcends normal consciousness.", "A chemically modified amphetamine that has hallucinogenic as well as stimulant properties."], "firearm": ["A bullet firing weapon."], "fire arm": ["A bullet firing weapon."], "eczema": ["An acute or chronic inflammation of the skin, characterized by redness, itching, and the outbreak of oozing vesicular lesions which become encrusted and scaly."], "egalitarian": ["Characterized by social equality and equal rights for all people."], "elegy": ["A mournful or plaintive poem."], "prelate": ["A clergyman of high rank and authority, having jurisdiction over an area or a group of people; normally a bishop."], "premonition": ["A strong intuition that something is about to happen."], "porridge": ["A hot breakfast cereal dish made from oatmeal, milk and water heated and stirred until thick."], "apply": ["To employ an object, often to reach a certain goal; to put into service.", "To have effectiveness or legal force, to be applicable.", "Apply to another thing (e.g. a surface).", "To ask (for something, e.g. a job, college, etc.).", "To avail oneself to (e.g. a principle, a religion, common sense, etc.)."], "hawthorn": ["Any of various shrubs and small trees of the genus Crataegus having small, apple-like fruits and thorny branches."], "enormous": ["Extremely large."], "possession": ["The right of having some degree of control over something.", "Everything that one possesses."], "ox": ["A bovine animal (bull or cow).", "A castrated bull."], "wallcreeper": ["Bird (Tichodroma muraria) of the family of the Sittidae who lives near chasms and rock faces."], "inquiry": ["A systematic investigation of a matter of public interest.", "Action of asking for information, a reply or response on a given subject.", "The act of inquiring or of seeking information by questioning."], "gas bladder": ["Internal organ filled with air with which fish can control their buoyancy."], "fish maw": ["Internal organ filled with air with which fish can control their buoyancy."], "swim bladder": ["Internal organ filled with air with which fish can control their buoyancy."], "air bladder": ["Internal organ filled with air with which fish can control their buoyancy."], "avarice": ["Excessive desire for possessions and wealth."], "misanthropy": ["Hatred of or dislike of people or mankind."], "fiduciary": ["A person who holds assets in trust for a beneficiary.", "Relating to or of the nature of a legal trust."], "trustee": ["A person who holds assets in trust for a beneficiary."], "buoyancy": ["The upward force on an object produced by the surrounding fluid (i.e., a liquid or a gas)."], "perverse": ["Deviating from what is considered right or proper or good."], "petal": ["One of the component parts, often colored, of the corolla of a flower."], "petrify": ["To harden organic matter by permeating with water and depositing dissolved minerals.", "To immobilize with fright.", "To become like stone, especially by petrifaction."], "unforeseen": ["Not foreseen, not expected."], "interlocutor": ["Someone who informally explains the views of a government and also can relay messages back to a government."], "arduous": ["Difficult to accomplish; demanding considerable mental effort and skill.", "Needing or using up much energy."], "intermittence": ["(of sound) The quality of being intermittent; subject to interruption or periodic stopping."], "frighten": ["To instill fear.", "To make someone afraid or anxious."], "daze": ["A dazed condition."], "hairsbreadth": ["A very short distance.", "Having the breadth of a hair; very narrow."], "entanglement": ["A complicated situation"], "evaporate": ["To transition from a liquid state into a gaseous state."], "epigram": ["A short, witty or pithy poem."], "adjourn": ["To delay or put off an event or an appointment."], "postpone": ["To delay or put off an event or an appointment.", "To put off until a later time.", "Euphemism for \"ignore\", that is, postpone until the hell freezes over."], "pheasant": ["A bird of the Phasianidae family, often hunted for food."], "anti-clockwise": ["In the opposite direction of how the hands of an analogue clock move."], "edict": ["A proclamation of law or other authoritative command."], "effort": ["The use of forces and means higher than normal in order to achieve a given purpose.", "A series of actions advancing a principle or tending toward a particular end."], "exertion": ["The use of forces and means higher than normal in order to achieve a given purpose."], "desist": ["To cease to proceed or act."], "catheter": ["A small tube inserted into a body cavity to remove fluid, create an opening, distend a passageway or administer a drug."], "caviar": ["The roe of the sturgeon, considered a delicacy."], "celibacy": ["The abstinence from sexual relations."], "celery": ["An edible European herb (Apium graveolens), belonging to the order of umbelliferae."], "sturgeon": ["A genus of fish (Acipenser) of which 26 species are known. One of the oldest genera of fish in existence, they are native to European, Asian, and North American waters. Their ovaries, which are of large size, are prepared for caviar,"], "apart": ["Separately, in regard to space or company; in a state of separation."], "cellist": ["Someone who plays the cello."], "Corfu": ["One of the Ionian Islands, Greece."], "corollary": ["A proposition which follows easily from the proof of another proposition."], "equator": ["An imaginary great circle around the earth, equidistant from the two poles, and dividing earth's surface into the northern and southern hemisphere."], "accretion": ["The imperceptible and gradual addition to land by the slow action of water.", "The formation of a celestial object by the effect of gravity pulling together surrounding objects and gases."], "acquiescence": ["Action or inaction which binds a person legally even though it was not intended as such."], "sisterhood": ["Expression of solidarity among women."], "time unit": ["A measure of periods of time like second, hour, day, year or century."], "ejaculation": ["The forcible ejection of semen from the mammalian urethra, a reflex in response to sexual stimulation."], "boat trip": ["A trip in a boat."], "equivalent": ["Similar or identical in value, meaning or effect.", "Anything that is virtually equal to something else.", "Of two sets, having a one-to-one relationship.", "Relating to the corresponding elements of an equivalence relation.", "Having the equal ability to combine.", "Of a map, having the property that equal areas on the map represent equal areas on the mapped surface."], "corrode": ["To become destroyed by water, air, or an etching chemical such as an acid.", "To cause to deteriorate due to the action of water, air, or an acid."], "damask": ["A figured fabric of silk, wool, linen, cotton, or synthetic fibers.", "Hard, flexible steel with wavy patterns that was popular in the Middle Ages especially for sword blades."], "diacritic": ["A special mark added to a letter to indicate a different pronunciation, stress, tone, or meaning.", "Capable of distinguishing."], "triple": ["To make three times as great.", "To become three times as great.", "Composed of three elements or parts.", "In mathematics, an ordered list of three elements."], "treble": ["To make three times as great.", "To become three times as great."], "triplicate": ["To make three times as great."], "coconut milk": ["The liquid inside a coconut, which is usually white, like milk."], "orange juice": ["A beverage made of the juice squeezed from an orange, popularly served at breakfast and used in some recipes and drinks."], "OJ": ["A beverage made of the juice squeezed from an orange, popularly served at breakfast and used in some recipes and drinks."], "henagon": ["Polygon with one side and one vertex. In Euclidean geometry, a henagon is usually considered to be an impossible object. However, in spherical geometry it can be drawn by placing a single vertex anywhere on a great circle."], "sialagogue": ["Any drug or other substance that makes the mouth salivate."], "ptyalagogue": ["Any drug or other substance that makes the mouth salivate."], "apple juice": ["A sweet drink made from the pulp of apples processed for their juice."], "unflagging": ["Showing sustained enthusiastic action with unabating vitality"], "career": ["An individual\u2019s work and life roles over their lifespan."], "catapult": ["A device or weapon for throwing or launching large objects."], "combat": ["To fight; to struggle for victory.", "A battle, a fight (often one in which weapons are used); a struggle for victory.", "Struggle for superiority."], "trasportare": ["To change the location or place of."], "relate": ["To be relevant or of importance to.", "To tell in a descriptive way.", "To give an association."], "give back": ["To bring something in order to put it back where it was.", "To transfer a good to the person or people it came from, or to their legal successors."], "apostasy": ["The renunciation of a belief or set of beliefs."], "seismology": ["A branch of geophysics that studies, describes and measures seismic waves from earthquakes."], "obviate": ["To bypass a requirement or make it unnecessary."], "jocular": ["Playful and characterized by jokes."], "brio": ["Quality of being active or spirited or alive and vigorous."], "in a trice": ["In a very short time; an instant; in a moment."], "shoot dead": ["To kill a person or an animal with a shot from a firearm."], "Channel Islands": ["A group of islands in the English Channel."], "empower": ["To give or delegate power, authority or ability."], "endive": ["A leafy salad vegetable Cichorium endivia.", "A variety of endive (Cichorium endivia var. latifolium) having leaves with irregular frilled edges and often used in salads."], "entrapment": ["Action by law enforcement personnel to lead an otherwise innocent person to commit a crime, in order to arrest and prosecute that person for the crime."], "investigator": ["Someone who investigates by carefully analyzing each clue.", "A scientist who devotes himself to doing research."], "epilepsy": ["A medical condition in which the sufferer experiences seizures and blackouts."], "hypocrite": ["Someone who dissembles."], "Epiphany": ["A Christian feast intended to celebrate the \"shining forth\" or revelation of God to mankind in human form, in the person of Jesus."], "island group": ["A cluster of several islands."], "island chain": ["A group of islands where the islands are stringed together like in a chain."], "deserted": ["Left behind by the owner or keeper.", "Without people."], "epilogue": ["A short speech, spoken directly at the audience at the end of a play.", "A brief oration or script at the end of a literary piece."], "equidistant": ["Occupying a position midway between two ends or sides.", "Describing a map projection that preserves scale."], "eradicate": ["To destroy completely leaving no trace.", "To kill in large numbers."], "extirpate": ["To surgically remove.", "To destroy completely leaving no trace.", "To pull up by the roots."], "eyebrow": ["The hair that grows over the bone ridge above the eye socket."], "facsimile": ["An exact copy or reproduction."], "big fish in a small pond": ["A very important person in a small group."], "flammable": ["Easily set on fire.", "Capable of burning."], "flange": ["An external or internal rib or rim, used either to add strength or to hold something in place."], "combustible": ["Capable of burning."], "andragogy": ["The art and science of helping adults learn."], "artificial intelligence": ["The science and engineering of making intelligent machines."], "blended learning": ["A curriculum that combines multiple types of media. Typically, it refers to a combination of classroom-based classes with self-paced e-learning."], "collaborative learning": ["A variety of approaches in education that involve joint intellectual effort by students or students and teachers."], "competency": ["A knowledge, skill or attitude that is required for job performance."], "competence": ["A knowledge, skill or attitude that is required for job performance."], "yesterday's": ["Occurred or experienced yesterday; relative to yesterday.", "Of the day before today."], "flannel": ["A soft cloth material woven from wool, possibly combined with cotton or synthetic fibers."], "of yesterday": ["Occurred or experienced yesterday; relative to yesterday."], "chamomile tea": ["Tea made from dried chamomile flowers."], "offspring": ["Living being as genetically proceeding from an other one.", "Those who descend from a biological ancestor, through any number of generations."], "motorcyclist": ["Someone who drives a motorcycle."], "peppermint tea": ["Tea made from dried peppermint leaves."], "motorbike": ["Single-track, two-wheeled motor vehicle."], "mint tea": ["Tea made from dried peppermint leaves."], "gregarious": ["One who enjoys being in crowds and socializing."], "labyrinthine": ["Related to a labyrinth; resembing a labyrinth.", "Intricate or confusing."], "mazy": ["Intricate or confusing."], "genotype": ["The genetic composition, alleles, of an individual in total or at a specific locus."], "gentile": ["Person who doesn't believe in the God of the Bible and is neither Christian, Jewish nor Muslim.", "Belonging to or characteristic of non-Jewish peoples.", "A non-Jewish person.", "A religious person who believes Jesus is the Christ and who is a member of a Christian denomination."], "Gibraltar": ["A British overseas territory located near the southernmost tip of the Iberian Peninsula."], "litigious": ["Inclined to engage in lawsuits."], "local": ["Of or belonging to or characteristic of a particular locality or neighbourhood."], "geyser": ["A boiling spring which throws forth at frequent intervals jets of water, mud, etc., driven up by the expansive power of steam."], "ghost": ["The visible disembodied soul of a dead person."], "speleology": ["The branch of nature sciences concerned with the study of caves."], "iced coffee": ["Chilled coffee served with milk, whipped cream, ice cream or ice cubes."], "ice cube": ["A small piece of roughly cube-shaped ice which is used to cool beverages."], "lipstick": ["Makeup that is used to color the lips."], "ice-blue": ["Having a greenish-blue colour."], "blue-eyed": ["Having blue eyes."], "green-eyed": ["Having green eyes."], "brown-eyed": ["Having brown eyes."], "black-eyed": ["Having black eyes."], "dark-eyed": ["Having dark eyes."], "light-eyed": ["Having light eyes."], "E-Learning": ["Using technology to deliver learning and training programs."], "Linux": ["A free Unix-like operating system kernel created by Linus Torvalds based on previous Minix work from Andrew Tannenbaum and released under the GNU General Public License. (source: Wikipedia)"], "realtime": ["(Of a system) That responds to events or signals within a predictable time after their occurence."], "real-time": ["(Of a system) That responds to events or signals within a predictable time after their occurence."], "determinism": ["The doctrine that all actions are determined by the current state and immutable laws of the universe, with no possibility of choice.", "The property of having behavior determined only by initial state and input."], "latency": ["A delay, a period between the initiation of something and its occurrence."], "finite": ["Limited, constrained by bounds, impermanent."], "metaphysics": ["The branch of philosophy concerned with explaining the nature of reality, being, and the world."], "methanol": ["A colourless, toxic, inflammable liquid. The simplest aliphatic alcohol, CH3OH."], "mezzanine": ["A balcony in an auditorium.", "An intermediate floor between main floors of a building."], "entresol": ["An intermediate floor between main floors of a building."], "sabotage": ["A deliberate action aimed at weakening an enemy through subversion, obstruction, disruption, and/or destruction.", "To destroy property or hinder normal operations."], "saddle": ["To put on a packsaddle.", "A saddle created to secure and carry goods on an animal.", "A seat (tack) for a rider placed on the back of a horse or other animal.", "To put a saddle on an animal.", "A backless seat for the rider of vehicles such as a bicycle, motorcycle, etc.", "To load or burden; encumber.", "To put on a saddle."], "sapphire": ["A clear deep blue variety of corundum, valued as a precious stone.", "Made of or consisting of sapphire.", "Having the color of a blue sapphire."], "satin": ["A cloth woven from silk, nylon or polyester with a glossy surface and a dull back."], "scarce": ["Deficient in quantity or number compared with the demand.", "Only a very short time before."], "scent": ["An odor left in passing by which a person or animal can be traced."], "false gharial": ["A fresh-water reptile, resembling a crocodile with a very thin and elongated snout resembling that of the gharial, hence its name."], "Malayan gharial": ["A fresh-water reptile, resembling a crocodile with a very thin and elongated snout resembling that of the gharial, hence its name."], "Tartu": ["The second largest city of Estonia, situated 186 km southeast of Tallinn."], "Turku": ["The oldest and fifth largest city in Finland, located in the southwest of the country."], "tandem": ["A bicycle with two seats, two sets of pedals, and two wheels."], "tangent": ["A topic nearly unrelated to the main topic, but having a point in common with it."], "telex": ["A communications system consisting of a network of teletypewriters."], "tetanus": ["A serious and often fatal disease arising through infection of an open wound by the anaerobic bacterium Clostridium tetani that is found in soil and the intestines and faeces of animals."], "springlike": ["Like in spring."], "vernal": ["Like in spring.", "Characteristic of young people."], "Dutch Revolt": ["The revolt of the Netherlands against the Spanish king which lasted from 1568 to 1648 and ended with the Netherlands attaining independence."], "Eighty Years' War": ["The revolt of the Netherlands against the Spanish king which lasted from 1568 to 1648 and ended with the Netherlands attaining independence."], "theocracy": ["Government under the control of a Church or state-sponsored religion."], "Guillaume Affair": ["German espionage scandal in 1974 involving G\u00fcnter Guillaume, a close assistant of chancellor Willy Brandt who was discovered to be a spy of the German Democratic Republic."], "tuxedo": ["A typically black formal jacket worn by men."], "stratigraphy": ["A branch of geology, studies rock layers and layering (stratification)."], "vehement": ["Marked by extreme intensity of emotions or convictions."], "diarrhea": ["A condition in which the sufferer has frequent and watery bowel movements."], "arithmetic series": ["Sequence of numbers, whose elements are the sum of the first n elements of an arithmetic sequence."], "exoplanet": ["Planet that orbits a star other than the Sun."], "extrasolar planet": ["Planet that orbits a star other than the Sun."], "edentulous": ["Lacking teeth."], "toothless": ["Lacking teeth."], "agomphious": ["Lacking teeth."], "pampa": ["Any of the large, grassy plains of temperate South America."], "telluric planet": ["A planet that is primarily composed of silicate rocks."], "rocky planet": ["A planet that is primarily composed of silicate rocks."], "minotaur": ["A monster with the head of a bull and the body of a man."], "Minotaur": ["A minotaur who dwelled in the labyrinth in Crete and who was killed by Theseus."], "mission": ["A duty that involves fulfilling a request."], "missionary": ["A person who travels attempting to spread a religion or a creed."], "mockery": ["Something so lacking in necessary qualities as to inspire ridicule.", "Showing one's contempt by derision."], "travesty": ["Something so lacking in necessary qualities as to inspire ridicule."], "modernist": ["A follower or proponent of modernism."], "molasse": ["The terrestrial deposits eroded from a mountain chain and deposited in a foreland basin, especially on top of flysch."], "molasses": ["A thick brownish syrup produced in the refining of raw sugar."], "treacle": ["A thick brownish syrup produced in the refining of raw sugar."], "monarchist": ["An advocate of monarchy."], "motherhood": ["The feelings and needs felt by a mother for her offspring."], "maternity": ["The feelings and needs felt by a mother for her offspring."], "Murcia": ["An autonomous community in south-eastern Spain.", "The capital city of the region of Murcia"], "nostril": ["Either of the two orifices located on the nose (or on the beak of a bird); used as a passage for air and other gases to travel the nasal passages."], "decrease in voltage": ["A partial power outage, a disruption in electric power supply that reduces the voltage available causing lights to dim."], "water stress": ["A phenomenon which occurs when plants are unable to absorb enough water to replace that lost by transpiration. Short-term water stress leads to turgor loss (wilting). Prolonged stress leads to cessation of growth, and eventually plant death."], "shoot tip": ["The terminal bud (0.1 - 1.0 mm) of a plant, which consists of the apical meristem (0.05 - 0.1 mm) and the immediately surrounding leaf primordia and developing leaves, and adjacent stem tissue."], "shoot apex": ["The terminal bud (0.1 - 1.0 mm) of a plant, which consists of the apical meristem (0.05 - 0.1 mm) and the immediately surrounding leaf primordia and developing leaves, and adjacent stem tissue."], "water potential": ["The pressure gradient that induces the flow of water, particularly with reference to plant water uptake from the soil, comprising the net effects of suction, solutes and matric forces."], "wall pressure": ["Pressure that a cell wall exerts against the turgor of the cell contents. Wall pressure is equal and opposite to the turgor potential."], "wetting agent": ["A substance (usually a detergent) that improves the contact of a liquid to a solid surface by reducing its surface tension."], "allele": ["A variant form of a gene."], "aqueous": ["Similar to the water; containing a lot of water."], "watery": ["Similar to the water; containing a lot of water."], "Bangkok": ["The capital of Thailand."], "Phnom Penh": ["The capital and largest city of Cambodia. It is one of four municipalities that are administratively on the level of khet or provinces."], "goodness": ["the quality of being good", "The nutritional, healthy part of something.", "Moral excellence; integrity of character; purity of soul; performance of duty."], "water-repellent": ["That slows the penetration of water (but is not waterproof)."], "water-resistant": ["That slows the penetration of water (but is not waterproof)."], "the day after tomorrow": ["On the day following tomorrow."], "the day before yesterday": ["On the day before yesterday."], "round sardinella": ["The sea fish whose scientific name is \"Sardinella aurita\"."], "palm": ["Any of various evergreen trees from the family Palmae or Arecaceae, which are mainly found in the tropics.", "The inner and somewhat concave part of the human hand that extends from the wrist to the bases of the fingers."], "micropropagation": ["Miniaturized in vitro multiplication and/or regeneration of plant material under aseptic and controlled environmental conditions."], "aseptic": ["Sterile, free of contaminating organisms."], "symbiont": ["An organism living in symbiosis with another, dissimilar organism."], "plasmolysis": ["Shrinkage of protoplasm caused by removal of water from a cell through osmosis when surrounded by a hypertonic solution."], "culture medium": ["A liquid or gel designed to support the growth of microorganisms, cells or small plants.", "Any nutrient system for the cultivation of cells, bacteria or other organisms; usually a complex mixture of organic and inorganic nutrients."], "mammary gland": ["The milk-producing organ of female mammals."], "meiotic analysis": ["The use of patterns of chromosome pairing at meiotic prophase and metaphase to detect relationships between chromosomes, from which can be deduced the relationship between the parents of the organism studied."], "prophase": ["The first stage of nuclear division. The stage during which chromosome pairing occurs in the first division of meiosis."], "metaphase": ["Stage of mitosis or meiosis (following prophase and preceding anaphase) during which the chromosomes, or at least the kinetochores, lie in the central plane of the spindle. The stage of maximum chromosome condensation, at which karyotypes are generally described."], "anaphase": ["The stage of mitosis or meiosis during which the daughter chromosomes migrate to opposite poles of the cell."], "telophase": ["The last stage in each mitotic or meiotic division, in which the chromosomes coalesce at each pole of the dividing cell.\\n(source: FAO)"], "gamete": ["A mature reproductive cell which is capable of fusing with a cell of similar origin but of opposite sex to form a zygote from which a new organism can develop."], "zygote": ["The diploid cell formed by the fusion of two haploid gametes during fertilization in eukaryotic organisms with sexual reproduction.\\n(source: FAO)"], "diploid": ["The status of having two complete sets of chromosomes, most commonly one set of paternal origin and the other of maternal origin."], "haploid": ["A cell or organism containing one of each of the pairs of homologous chromosomes found in the normal diploid cell.\\n(source: FAO)"], "abolitionist": ["A person who favors the abolition of any institution, especially slavery."], "microminiaturization": ["The technology of constructing circuits and devices in extremely small packages by various techniques.\\n(Source: MGH)"], "microsystem electronics": ["The technology of constructing circuits and devices in extremely small packages by various techniques.\\n(Source: MGH)"], "semipermeable membrane": ["Membrane through which the molecules of a solvent can pass but the molecules of most solutes cannot. (Source: DICCHE)"], "micron": ["A measure of length; the thousandth part of one millimeter; the millionth part of a meter."], "microphone": ["A device used to convert sound waves into a varying electric current."], "abrogation": ["An official or legal cancellation."], "water-skier": ["A person who water-skis."], "waterskier": ["A person who water-skis."], "water beetle": ["Any of various freshwater aquatic beetles that have a smooth oval body and flattened hind legs adapted for swimming, and that carry an air bubble underneath their abdomens."], "water buffalo": ["A large ungulate, widely used as a domestic animal in Asia."], "episode": ["A program in a television series.", "A happening that is distinctive in a series of related events."], "epistle": ["A writing directed or sent to a person or group of persons."], "ergotherapy": ["Treatment of disease by muscular exercise."], "eruption": ["A violent ejection, such as the spurting out of lava from a volcano.", "Water that is pumped out, or that streams naturally out of a region."], "escalope": ["A thin slice of meat, especially veal or poultry."], "cutlet": ["A thin slice of meat, especially veal or poultry."], "naval power": ["A country which posesses a strong navy and a strategically favorable position."], "sea power": ["A country which posesses a strong navy and a strategically favorable position."], "evocation": ["Calling up supposed supernatural forces by spells and incantations.", "Imaginative re-creation."], "abstract data type": ["A set of data values and associated operations that are precisely specified independent of any particular implementation.\\n(fuente: NIST)"], "escrow": ["A deed, bond, or other written engagement, held by a third person until some act is done or some condition is performed."], "Ackermann's function": ["A function of two parameters whose value grows very fast."], "asymptote": ["A straight line which a curve approaches arbitrarily closely, but never reaches, as they go to infinity."], "complexity": ["The intrinsic minimum amount of resources, for instance, memory, time, messages, etc., needed to solve a problem or execute an algorithm.\\n(source: NIST)"], "complexity class": ["Any of a set of computational problems with the same bounds on time and space, for deterministic and nondeterministic machines.\\n(source: NIST)", "In computational complexity theory, a set of problems of related resource-based complexity."], "decision problem": ["A problem with a \"yes\" or \"no\" answer. Equivalently, a function whose range is two values, such as {0,1}.\\n(source: NIST)"], "graph": ["In mathematics and computer science, an abstract representation of a set of items connected by edges. Each item is called a vertex or node. Formally, a graph is a set of vertices and a binary relation between vertices, adjacency.\\n(source: NIST)", "In mathematics, a visual representation of the relations between certain quantities plotted according to a set of axes.", "To visually represent by means of a graph."], "depth-first search": ["Any graph search algorithm that considers outgoing edges of a vertex before any neighbors of the vertex, that is, outgoing edges of the vertex's predecessor in the search.\\n(source: NIST)"], "breadth-first search": ["A graph search algorithm that considers neighbors of a vertex, that is, outgoing edges of the vertex's predecessor in the search, before any outgoing edges of the vertex.\\n(source: NIST)"], "dejection": ["A state of melancholy or depression."], "demarcation": ["The act of marking off a boundary or setting a limit."], "arithmetic mean": ["The mean of a list of N numbers calculated by dividing their sum by N."], "geometric mean": ["The Nth root of the product of N numbers."], "free software": ["Software that everyone is free to copy, redistribute and modify."], "deplete": ["To use up resources or materials.", "To reduce by destroying or consuming the vital powers of."], "source code": ["The form in which a computer program is written by the programmer."], "Gregorian calendar": ["The system of dates used by most of the world, decreed by and named after, Pope Gregory XIII in 1582."], "web mail": ["An electronic mail user agent that is accessible on the web (via HTTP).\\n(Source: FOLDOC)"], "crowbar": ["A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on the curved end for removing nails."], "anime": ["Traditional hand painted cel animation, but also applies to animation created in part or in whole by computers."], "multiply": ["To perform a multiplication on a number."], "electrophotography": ["A photocopying process in which a negative image formed on an electrically charged plate is transferred as a positive to paper and thermally fixed."], "biathlon": ["A winter sport combining cross-country skiing and rifle shooting."], "genesis": ["The point at which something comes into being."], "genital": ["Any of those parts of the body which are involved in sexual reproduction and constitute the reproductive system in an complex organism.", "An externally visible sex organ that is used for sexual intercourse."], "bobsleigh": ["A winter sport in which teams make timed runs down narrow, twisting, banked purpose-built iced tracks in a gravity-powered sled."], "geranium": ["The common name for flowering plants of the genus Pelargonium.", "Any flowering plant of the genus Geranium, the cranesbills, of the family Geraniaceae."], "winter sport": ["Any sport, originally only played during the winter, that is played on ice or snow."], "SignWriting": ["A script for writing the movements, handshapes and facial expressions of sign languages."], "ISO 15924 codes": ["Collection of OmegaWiki for the registration of the ISO 15924 scripts."], "oboist": ["A musician who plays the oboe."], "observable": ["There to be observed.", "Any physical property that can be observed and measured directly and not derived from other properties."], "observatory": ["A place where stars, planets and other celestial bodies are observed, usually through a telescope."], "obsession": ["An unhealthy and compulsive preoccupation with something or someone."], "straight line": ["An infinitely long, infinitely thin, not bent line in geometry."], "ogre": ["One of a class of brutish giants that eat human flesh."], "oligopoly": ["An economic condition in which a small number of sellers exert control over the market price of a commodity."], "Olympus": ["The highest mountain in Greece and the home of the 12 principal gods in the Greek pantheon."], "operetta": ["A lighter version of opera with a frivolous story and spoken dialogue."], "orbital": ["Of, or related to an orbit.", "A specification of the energy and probability density of an electron at any point in an atom or molecule."], "orchid": ["Any of numerous plants of the orchid family usually having flowers of unusual shapes and beautiful colours."], "water clock": ["A device for measuring time by letting water regularly flow out of a container, usually through a tiny aperture."], "clepsydra": ["A device for measuring time by letting water regularly flow out of a container, usually through a tiny aperture."], "orchestration": ["The arrangement of music for performance by an orchestra."], "ovary": ["A female reproductive organ, often paired, that produces ova and in mammals secretes the hormones oestrogen and progesterone.", "The lower part of a pistil or carpel that bears ovules and ripens into fruit."], "slovenliness": ["Habitual uncleanliness."], "modify": ["To make different.", "To make partial changes.", "To add a modifier to a constituent."], "alter": ["To make different.", "To make partial changes.", "To change the form or structure of."], "water butt": ["An open-ended barrel used to contain rainwater; a rain barrel."], "rain-barrel": ["An open-ended barrel used to contain rainwater; a rain barrel."], "methodical": ["Characterized by method and orderliness."], "falsify": ["To alter so as to mislead."], "adulterate": ["To spoil by adding impurities."], "Fallopian tube": ["Either of a pair of very fine tubes leading from the ovaries of female mammals into the uterus."], "diminish": ["To find the difference between two quantities.", "To make smaller."], "wane": ["To make smaller.", "(of the moon) To decrease in phase."], "ostrich": ["A large flightless bird native to Africa."], "water cannon": ["A device that shoots a high-pressure stream of water."], "philosophical": ["Regarding abstractions, namely, concepts, ideas, thoughts etc.(Adj.; Re. Philosophy; Source: IPDF)", "Of or pertaining to philosophy."], "philosophic": ["Of or pertaining to philosophy."], "Britain": ["An island lying off the northwestern coast of mainland Europe, comprising the main territory of the United Kingdom."], "eighteenth": ["The ordinal form of the number eighteen."], "vulture": ["Any of several carrion-eating birds of the families Accipitridae and Cathartidae."], "treatise": ["A formal, usually lengthy, systematic discourse on some subject."], "chaos theory": ["The study of iterative non-linear systems in which arbitrarily small variations in initial conditions become magnified over time."], "fractal": ["A geometric figure that repeats itself under several levels of magnification."], "vineyard": ["A grape plantation."], "butterfly effect": ["The technical notion of sensitive dependence on initial conditions in chaos theory."], "vivacity": ["Being attractively lively and animated."], "tabula rasa": ["The idea that the mind comes into this world as a \"Blank Slate\"."], "virtuous": ["Full of virtue, having excellent moral character.", "Of moral excellence."], "academic": ["Regarding abstractions, namely, concepts, ideas, thoughts etc.(Adj.; Re. Philosophy; Source: IPDF)", "Belonging to an academy.", "Belonging to a higher institution of learning; scholarly."], "hormone": ["Any substance, produced by one tissue and conveyed by the bloodstream to another to effect physiological activity."], "apathy": ["The trait of lacking enthusiasm for or interest in things generally."], "Milan": ["Italian City and capital of the province of Milan.", "A province in the Lombardy region of Italy."], "mayonnaise": ["A dressing made from raw egg yolks, oil and seasoning."], "matron": ["A housekeeper; especially, a woman who manages the domestic economy of a public institution; a head nurse in a hospital; as, the matron of a school or hospital."], "valuable": ["Having worth or merit or value.", "Being of high value."], "viable": ["Capable of being done with means at hand and circumstances as they are.", "Capable of life or normal growth and development."], "feasible": ["Capable of being done with means at hand and circumstances as they are."], "veterinary": ["Of, or related to, the medical care of animals.", "A doctor who practices veterinary medicine."], "flint": ["A hard, fine-grained quartz that generates sparks when struck."], "flintstone": ["A hard, fine-grained quartz that generates sparks when struck."], "fleet": ["A group of vessels or vehicles."], "schism": ["A formal division or split within a religious body."], "atheist": ["A person who does not believe that deities exist."], "Salmonella": ["A genus of rod-shaped, Gram-negative bacteria that are a common cause of food poisoning."], "sepsis": ["Destruction of tissue by pathogenic micro-organisms or their toxins, especially through infection of a wound."], "serology": ["The study of serum reactions between an antigen and its antibody."], "serum": ["Blood plasma that has had its clotting factor removed."], "propagule": ["Any structure capable of giving rise to a new plant by asexual or sexual reproduction, including bulbils, leafbuds, etc.\\n(source: FAO)"], "somatic": ["Referring to cell types, structures and processes other than those associated with the germ line.\\n(source: FAO)"], "germ line": ["A lineage of cells which, during the development of an organism, are set aside as potential gamete-forming tissues."], "somatic cell": ["Cells not involved in sexual reproduction, i.e. not germ cells."], "sonication": ["Disruption of cells or DNA molecules by high frequency sound waves."], "specificity": ["For diagnostic tests, the ability of a probe to react precisely and uniquely with its target molecule."], "probe": ["(in genetics) A labelled DNA or RNA sequence used to detect the presence of a complementary sequence by hybridization with a nucleic acid sample.\\n(source:FAO)"], "macromolecule": ["Any high molecular weight molecule. Often used as a synonym for polymers."], "somatic hybridization": ["Naturally occurring or induced fusion of somatic protoplasts or cells of two genetically different parents."], "protoplast": ["A bacterial or plant cell for which the cell wall has been removed either chemically or enzymatically, leaving its cytoplasm enveloped by a peripheral membrane."], "cytoplasm": ["The living material of the cell, exclusive of the nucleus, consisting of a complex protein matrix or gel, and where essential membranes and cellular organelles (mitochondria, plastids, etc.) reside."], "panicle": ["An inflorescence, the main axis of which is branched; the branches bear loose racemose flower clusters.\\n(source: FAO)"], "panmixis": ["Random mating in a population."], "explant": ["A portion of a plant aseptically excised and prepared for culture in a nutrient medium."], "halophyte": ["A plant species adapted to soils containing a concentration of salt that is toxic to most plant species. See: salt tolerance."], "hapten": ["A small molecule, which by itself is not an antigen, but which as a part of a larger structure when linked to a carrier protein, can serve as an antigenic determinant."], "waitress": ["A female attendant who serves customers in a restaurant, cafe, or similar.", "To serve in a restaurant."], "walrus": ["A large Arctic marine mammal (Odobenus rosmarus), related to seals and having long tusks, tough, wrinkled skin, and four flippers."], "watchdog": ["A dog that guards a house or a herd.", "A guardian or defender against theft or illegal practices or waste.", "A software or hardware utility that monitors for specific system events and failures and when they occur executes a preconfigured action."], "web": ["The silken structure a spider builds using silk secreted from the spinnerets at the caudal tip of its abdomen."], "spider web": ["The silken structure a spider builds using silk secreted from the spinnerets at the caudal tip of its abdomen."], "British Sign Language": ["The sign language used in the United Kingdom."], "shooting star": ["A streak of light in the sky at night that results when a meteoroid hits the earth's atmosphere."], "wholesaler": ["Someone who buys large quantities of goods and resells to merchants rather than to the ultimate customers ."], "falling star": ["A streak of light in the sky at night that results when a meteoroid hits the earth's atmosphere."], "water lily": ["Any of various members of the Nymphaeaceae family that are tuberous plants, rooted in soil with leaves and flowers floating on the water surface."], "tetradecagon": ["A polygon with 14 sides."], "octadecagon": ["A polygon with 18 sides."], "polka": ["A lively dance originating in Bohemia."], "portion": ["An allocated amount.", "Something determined in relation to something that includes it.", "To assign to someone as his or her lot.", "A predetermined amount of a food given to a person."], "usury": ["The practice of lending money with exorbitant interest rates in excess of any legal or fair rates."], "usurp": ["Seize and take control without authority and possibly with force."], "goose": ["Waterfowl of the Anatidae family."], "access to education": ["Conditions, circumstances or requirements governing admittance to educational institutions or programmes. \\n(source: UNESCO)"], "cultural action": ["Efforts tending to develop culture in the broadest meaning of the term, with reference to community development, freedom of expression and free choice of life style."], "accreditation": ["Procedure by which an authoritative body gives formal recognition that a body or person is competent to carry out specific tasks. (Source OAS)", "(in education) Recognition and approval of the academic standards of an educational institution by some external, impartial body of high public esteem."], "ureter": ["Either of the two long, narrow ducts that carry urine from the kidneys to the urinary bladder."], "undecagon": ["A polygon with eleven sides and eleven angles."], "cultural activity": ["All types of activities tending to enhance cultural life through cultural animation and cultural values promotion. Use more specific descriptor where appropriate."], "solar activity": ["Includes solar wind, flares, prominences, sunspots."], "acculturation": ["Phenomena which result when groups of individuals of different cultures come into continuous contact, with subsequent changes in the original cultural patterns of either or both groups."], "biological adaptation": ["A genetically determined characteristic that enhances the ability of an organism to cope with its environment."], "anthology": ["A collection of works of various authors or of one author selected for a specific purpose or under specific aspects."], "digital art": ["Art created using digital technologies."], "management audit": ["The systematic appraisal of management methods by teams from either the organization or outside."], "self instruction": ["Learning by oneself without the aid of a teacher."], "automation": ["The act or practice of using machines that need little or no human control, especially to replace workers."], "humanitarian assistance": ["Any material assistance or intercession by the international community in troubled areas for purely humanitarian ends."], "bibliology": ["The systematic study of the properties and characteristics of books in relation to the publication process or to the techniques of printing, production and marketing."], "digital library": ["Organized collections of information resources in digital or electronic format along with the services designed to help users identify and use those collections."], "national library": ["A library which is responsible for acquiring and conserving copies of all significant publications published in the country and may function as a \"legal deposit library\"."], "public library": ["A library which serves the population of a community or region free of charge or for a nominal fee.", "Library managed by the city which is open for the public."], "biogenesis": ["The theory that living organisms can arise only from other living organisms and non from nonliving matter. (source: UNESCO)"], "biometrics": ["Statistical methods applied to biological problems."], "educational quality": ["Degrees of excellence in meeting educational objectives. Use more specific descriptor where appropriate. (source: UNESCO)"], "cybernetics": ["The science of control and communication, specifically the interaction between automatic control and people. (source: UNESCO)"], "hydrological cycle": ["The continuous circulation of water through evaporation and precipitation."], "behavioural sciences": ["Any science that studies human and animal behaviour in its physical and social environment by experimental and observational methods. (source: UNESCO)"], "quality circle": ["A group of workers, performing similar work and trained to identify and solve problems, who volunteer to make recommendations relating to the improvement of productivity, quality, work morale, etc. (source: UNESCO)"], "working class": ["A social class comprising those who do manual labour for wage, especially those who do not own any property."], "cognition": ["The mental action or process of acquiring knowledge through thought, experience and senses."], "social status": ["Position in a community relative to other members of the community."], "admission requirements": ["Conditions (examination certificates, proof of skills, etc.) of entrance to courses of study, further study, training, etc."], "conditions of employment": ["Use for the conditions of employment stipulated in the staff regulations of an enterprise or organization, or in a collective agreement negotiated by employer's and workers' representatives."], "consensus": ["An opinion with which all or the majority of a group agree."], "counterculture": ["Cultural system which develops in conflict with the prevailing culture."], "employment creation": ["The generation of new jobs in sectors or enterprises requiring more manpower."], "summer school": ["Short course usually held at a university or college during the summer vacation."], "Dakar": ["The capital city of Senegal."], "depose": ["To remove, a monarch or political leader, from power.", "To make a deposition; to declare under oath."], "dethrone": ["To forcibly relieve a monarch of the monarchy."], "ulcer": ["An open sore of the skin, eyes or mucous membrane, often caused by an initial abrasion and generally maintained by an inflammation and/or an infection."], "uncus": ["Any body part which is long, thin, and curved."], "universal": ["Involving the entire earth; not limited or provincial in scope.", "Common to all members of a group or class.", "Of or pertaining to the universe."], "jackal": ["Any of three small to medium-sized members of the family Canidae, found in Africa, Asia and Southeastern Europe."], "jade": ["A semiprecious gemstone either nephrite or jadeite, generally green or whitish in color, often used for carving figurines.", "An old or worthless horse."], "juggler": ["A performer who juggles objects and performs tricks of manual dexterity."], "water pistol": ["A toy used to shoot water."], "watergun": ["A toy used to shoot water."], "water polo": ["A team water sport, which can be best described as a combination of swimming, handball and wrestling."], "reflexive verb": ["A verb whose subject and direct object are the same."], "hyphenation": ["The inclusion of hyphens; especially, the correct locations of hyphens."], "water softener": ["A device which reduces the calcium or magnesium ion concentration in hard water."], "bible": ["A compartment of the stomach in ruminants.", "A book regarded as authoritative in its field."], "fardel": ["A compartment of the stomach in ruminants."], "psalterium": ["A compartment of the stomach in ruminants."], "juniper": ["Any shrub or tree of the genus Juniperus of the cypress family; characterized by pointed, needle-like leaves and aromatic berry-like cones."], "Lagos": ["The most populous city in Nigeria."], "humanities education": ["Studies dealing with man as the central concern, e.g. literature, history, philosophy, and modern and classical languages. (source: UNESCO)"], "iconography": ["The branch of art history dealing with the identification, description, classification and interpretation of the subject-matter of the figurative arts. (source: UNESCO)"], "indexing": ["Assignment of index terms to documents or objects with the aim to be able later on to retrieve the documents or objects according to the selected concepts designated by the index terms (essentially, descriptors)."], "development indicator": ["Numerical data used as benchmarks in the formulation and monitoring of development policy."], "educational indicator": ["Numerical data used as benchmarks in the formulation and monitoring of educational policy."], "computer uses in education": ["The use of computers for instruction, testing, student/pupil personnel services, school administrative support services, etc. Use more specific descriptor where appropriate. (source: UNESCO)"], "computer literacy": ["Comprehension of the capabilities and applications of computers; may include the ability to use computers to solve problems. (source: UNESCO)"], "educational innovation": ["Changes in objectives, content or methods initiated, as a rule, in experimental situations."], "technological institute": ["Institution of higher education with a strong orientation towards study and research in the technologies and sciences. (source: UNESCO)"], "interdependence": ["Mutual economic dependence among countries; for active efforts to promote closer economic ties, use \"economic cooperation\", \"economic integration\", etc."], "agricultural research": ["Research designed to improve crops, increase yields and develop resistances to diseases."], "fundamental research": ["Research designed to produce new understanding of basic underlying principles and processes."], "mission oriented research": ["Research designed for the solution of a specific problem."], "operations research": ["Application of scientific methods to the analysis of problems so as to provide optimum solutions for decision making."], "participatory research": ["Research approach that calls for interaction between the researchers and those among whom the research is conducted. (source: UNESCO)"], "human geography": ["Relationship of geography and culture (population, institutions and technology)."], "governance": ["Manner in which power and authority are exercised by both public and private bodies; includes such issues as public sector management, legal framework, accountability and transparency. (source: UNESCO)"], "electronic governance": ["The public sector's use of information and communication technologies with the aim of improving information and service delivery, encouraging citizen participation in the decision-making process and making government more accountable, transparent and effective. (source: UNESCO)"], "basic training": ["Specially organized training, given outside of production activities of an undertaking, and aimed at imparting the basic knowledge and skill required for a given group of occupations."], "management education": ["Educational programmes to increase managerial and supervisory skills of managers and management trainees. (source: UNESCO)"], "inservice training": ["Training acquired during employment."], "professional training": ["Special instruction to develop skills needed to improve job performance of professional personnel; usually short term and job specific. (source: UNESCO)"], "educational foundation": ["Foundation that provides grants or funds to finance research, services, facilities, equipment."], "economics of education": ["Techniques of economics applied to educational systems."], "mixed economy": ["Economy in which elements of government control are intermingled with market elements in organizing production and consumption. (source: UNESCO)"], "distance education": ["Education imparted at a distance through the use of information/communication technology: radio, TV, the telephone, correspondence, e-mail, videoconferencing, audioconferencing, cd-roms, or online."], "bilingual education": ["Encouragement of bilingualism through the teaching of regular courses in both the national language and a second language."], "community education": ["Enabling process through which children and adults receive a sense of identification with their community."], "international education": ["Education aimed at international understanding, cooperation, peace, human rights and fundamental freedoms. Do not confuse with education in international schools."], "consumer education": ["The raising of awareness of consumers for intelligent and effective methods of buying and using goods and services."], "Iraqi": ["A person from Iraq.", "Of or relating to Iraq."], "really": ["Effectively, truly."], "look for": ["To try to find something."], "technological": ["Of, relating to, or involving technology, especially modern scientific technology."], "wireless": ["Not having any wires.", "(For an electric device) Having no cord, usually using batteries as a source of power."], "net income": ["Income following the deduction of all expenses, taxes, and the like."], "gross income": ["Income generated before deducting expenses, taxes, insurance, etc."], "nationalize": ["To convert a private industry into one controlled by the government."], "privatize": ["To release government control of a business or industry to private industry."], "discontinue": ["To stop a process; especially as regards commercial productions; to stop producing, making, or supplying something.", "To put an end to a state or an activity.", "To prevent completion (e.g. of a project, of negotiations, etc.)."], "retail": ["The sale of goods, in small numbers and directly to the consumer.", "The full suggested price of a particular good or service, before any sale, discount, or other deal.", "Of, or relating to the (actual or figurative) sale of goods or services directly, and in small numbers, to individuals.", "To sell in small quantities directly to customers.", "To repeat (news or rumours) to others.", "In a manner that is direct to consumers and in retail quantities."], "insipid": ["Utterly lacking in intelligence or depth.", "Having no flavour."], "vacuous": ["Utterly lacking in intelligence or depth."], "vacant": ["Utterly lacking in intelligence or depth.", "Not occupied.", "Being unoccupied."], "watersport": ["Any sport played on or in water; such as swimming or water skiing."], "water tap": ["A valve for controlling the release of water from the supply."], "facility": ["A building, place or other thing that provides a certain service or facilitates something.", "Ease in learning or doing something."], "OECD": ["International organisation of those developed countries that accept the principles of representative democracy and a free market economy."], "Organisation for Economic Co-operation and Development": ["International organisation of those developed countries that accept the principles of representative democracy and a free market economy."], "water taxi": ["A small boat that can transport small groups of passengers for a fee."], "bougainvillea": ["A shrub with colorful flowers originally from Brazil and today common in many tropic and subtropic regions."], "traction control system": ["Technical system in a motor vehicle that prevents wheelspin during acceleration."], "Acceleration Slip Regulation": ["Technical system in a motor vehicle that prevents wheelspin during acceleration."], "haemoglobin": ["A protein in red blood cells that transports oxygen from the lungs to the tissues of the body.\\n(source: AIDSinfo)"], "heredity": ["Resemblance among individuals related by descent; transmission of traits from parents to offspring.", "The hereditary passing of biological attributes from the parents to its offspring."], "hypotonic": ["Having osmotic potential less than that of living cells.", "(Of a drink) Containing lower concentrations of salt and sugar as in the human body."], "hypertonic": ["With an osmotic potential greater than that of living cells.", "(Of a drink) Containing higher concentrations of salt and sugar as in the human body."], "hydroponics": ["The growing of plants without soil. Plants are fed with an aerated solution of nutrients, and the roots are either supported within an inert matrix, or are freely floating in the nutrient solution. (source: FAO)"], "homologous": ["From the same source, or having the same evolutionary function or structure. (source: FAO)"], "heterologous": ["From a different source."], "Drake equation": ["A formula for calculating the probability of life in space, and its ability to communicate with Earth."], "helix": ["A structure with a spiral shape."], "hermaphrodite": ["An animal that has both male and female reproductive organs, or a mixture of male and female attributes.", "A plant whose flowers contain both stamen and carpels.", "Person with sex characteristics that are neither clearly male nor female."], "attenuated vaccine": ["A virulent organism that has been modified to produce a less virulent form, but nevertheless retains the ability to elicit antibodies against the virulent form. (source: FAO)"], "edible vaccine": ["Edible antigen-containing material, that activates the immune system via gut-associated lymphoid tissues."], "multivalent vaccine": ["A vaccine designed to elicit an immune response either to more than one infectious agent or to several different antigenic determinants of a single agent."], "peptide vaccine": ["A short chain of amino acids that can induce antibodies against a specific infectious agent."], "recombinant vaccine": ["A vaccine produced from a cloned gene."], "viral vaccine": ["Vaccine consisting of live viruses, genetically engineered to avoid causing the disease itself."], "live recombinant vaccine": ["A vaccine created by the expression of a pathogen antigen in a non-pathogenic organism."], "DNA vaccine": ["A vaccine generated by the injection of specific DNA fragments to stimulate an immune response."], "vegemite": ["Australian food paste made from brewers' yeast."], "Cheddar": ["A village in Somerset, England famous for its cheese, and also for its gorge, caves and remains of early man found in them.", "A pale yellow to orange, sharp-tasting cheese originally made in the English village of Cheddar, in Somerset."], "bookkeeper": ["A person who maintains the financial records of other people."], "indigence": ["Extreme poverty or destitution.", "Lack of the means of subsistence."], "connectivity": ["The ability to make a connection between two or more points in a network."], "opt": ["To choose; to select as an alternative to another."], "inoperable": ["Incapable of being successfully surgically operated on."], "vintage": ["The yield of grapes or wine from a vineyard or district during one season."], "meditation": ["Contemplation of spiritual matters.", "Continued attention of the mind to a particular subject."], "messenger": ["A person who brings a message."], "metalanguage": ["Any language or vocabulary of specialized terms used to describe or analyze a language."], "metronome": ["A device, containing an inverted pendulum, used to mark time by means of regular ticks at adjustable intervals."], "Crimean Tatar": ["A Turkic language of Crimea and Uzbekistan."], "premises": ["Closed area destined to a given purpose."], "commonplace": ["Repeated too often; overfamiliar through overuse.", "A saying that is overused or used outside its original context, so that its original impact and meaning are lost."], "water tower": ["A very large tank constructed for the purpose of holding a supply of water at a height sufficient to pressurize a water supply system."], "godmother": ["A woman present at the christening of a baby who promises to help raise the child in the Christian tradition."], "handful": ["A small quantity of something that can be held in one hand."], "bludgeon": ["A short heavy club with a rounded head used as a weapon."], "handlebar": ["The bar used to steer a bicycle, motorbike, or similar vehicle."], "putridity": ["The state of being putrid."], "housewife": ["A woman dedicated to taking care of the house and the family."], "masonic": ["Relating to freemasonry."], "G\u00f6bekli Tepe": ["Neolithic site in southeastern Turkey which is considered to be the world's oldest temple complex and which was probably built by hunter-gatherers before humans settled down."], "Neolithic": ["A period in human history that is traditionally the last part of the Stone Age and is marked by the development of early villages, agriculture, animal domestication and religion."], "New Stone Age": ["A period in human history that is traditionally the last part of the Stone Age and is marked by the development of early villages, agriculture, animal domestication and religion."], "neolithic": ["Of or pertaining to the Neolithic period."], "install": ["To connect, set up or prepare something for use.", "To place."], "meringue cake": ["A type of dessert made from whipped egg whites and sugar."], "International Standard Serial Number": ["A unique eight-digit number used to identify a print or electronic periodical publication."], "International Standard Book Number": ["A unique identifier for books, intended to be used commercially."], "water turbine": ["A rotary engine that takes energy from moving water."], "worship": ["The devotion accorded to a deity or to a sacred object.", "To love unquestioningly and uncritically or to excess; to treat or pursue with devotion or adoration.", "To show devotion to (a deity)."], "Walpurgis Night": ["A celebration in the night from April 30 to May 1 which traces back to pagan traditions."], "workforce": ["The total number of people employed or looking for work.", "All the workers employed by a specific organisation or nation, or on a specific project."], "May Day": ["In many countries a holiday to celebrate the labour movement."], "unbiased": ["Without prejudice."], "unbiassed": ["Without prejudice."], "unprejudiced": ["Without prejudice."], "sharecropper": ["A farmer who cultivates land that does not belong to him on the basis of a contract for the division of profits agreed with the land owner."], "threaten": ["To put in danger."], "huckleberry": ["Dark-blue, round edible fruit of a plant in the genus Vaccinium, up to approximately 10 mm diameter."], "surface-to-surface missile": ["A missile launched from the ground, or from the sea, toward a target on land or at sea."], "blueberry": ["Dark-blue, round edible fruit of a plant in the genus Vaccinium, up to approximately 10 mm diameter."], "moped": ["Motorized two-wheeled vehicle with limited engine power and limited speed"], "muzzle": ["Small cage, which applies to the muzzle of dogs or other animals, not to eat or bite."], "ennoble": ["To make illustrious and dignified.", "To make a member of the nobility; to confer a title of nobility on."], "nomination": ["Proposal of a person as suitable candidate for an election."], "homage": ["Manifestation of esteem and respect."], "Neolithic Revolution": ["The transition from nomadic hunting and gathering to sedentary agriculture and stock-breeding in the Neolithic."], "fearful": ["Lacking courage.", "Causing dread; very bad."], "imperfective verb": ["A verb denoting an uncompleted, continuous or repetitive action or an action in progress."], "gangrene": ["The necrosis or rotting of flesh, usually caused by lack of blood supply."], "gambling": ["Wagering money or something of material value on an event with an uncertain outcome with the primary intent of winning additional money and/or material goods."], "fluctuate": ["To vary between two extremes (referring to quantities, values, etc.)."], "beaver": ["A mammal of the genus Castor, having a wide, flat tail and webbed feet."], "negative pronoun": ["A pronoun used to deny the presence of a person, object, quality or quantity."], "summative pronoun": ["A pronoun used to make a generalization about people, objects, qualities or quantity."], "waterbed": ["A waterbed has a mattress filled with water."], "perfective verb": ["A verb denoting a completed (i. e. having a beginning and and end) or instantaneous action."], "fallacy": ["A misconception resulting from incorrect reasoning.", "Deceptive or false appearance; that which misleads the eye or the mind."], "fallow": ["Ploughed but left unseeded for more than one planting season.", "Uncultivated land."], "felon": ["A person convicted of a serious crime which carries serious fines and / or jail time or imprisonment, usually for longer than one year."], "European hornet": ["The largest European wasp with black and yellow stripes on the abdomen."], "insect sting": ["A sting caused by the stinger of an insect."], "hornet sting": ["A sting caused by the stinger of a hornet."], "bee sting": ["A sting caused by the stinger of a bee."], "wasp sting": ["A sting caused by the stinger of a wasp."], "priapism": ["A painful and potentially harmful medical condition in which the erect penis does not return to its flaccid state."], "nonalcoholic": ["Not containing alcohol."], "non-alcoholic": ["Not containing alcohol."], "parachute": ["Device with the form of a big umbrella used to reduce the speed of fall of a body in the air."], "paratrooper": ["A soldier who belongs to a military unit trained to jump in a parachute."], "fender": ["Part of a vehicle around the top of the wheels that prevent splattering of water and mud.", "A bumper which is placed along the sides of a vessel to protect the damage caused by friction or collision with another ship or a jetty."], "swearword": ["Bad word sometimes intended to offend."], "deliver": ["To help a woman or an animal to give birth.", "To release an offspring from one's own body; to cause to be born.", "To free from harm or evil.", "To bring or transport something to its destination.", "To relinquish possession or control of to another because of demand or compulsion."], "shortpastry": ["A type of pastry often used for the base of a tart, quiche or pie."], "parachutist": ["A person who uses a canopy or airfoil to descend an altitude."], "baboon": ["Large ground based monkey having doglike muzzles."], "bigamy": ["The state of having two spouses simultaneously."], "birthday party": ["A party to celebrate a person's birthday."], "blackberry": ["The aggregate fruit from a bramble, that most commonly is red while unripe, but that becomes black when it ripens."], "blackbird": ["A common thrush, Turdus merula, found in woods and gardens over much of Eurasia, and introduced elsewhere.", "Common name of 26 species of birds of the family Icteridae, living in the Americas."], "parallel evolution": ["The development of different organisms along similar evolutionary paths due to similar selection pressures acting on them."], "selection": ["Differential survival and reproduction of phenotypes.", "A system for either isolating or identifying specific genotypes in a mixed population.", "A certain assortment of things from which a choice can be made."], "watering can": ["A utensil for watering plants."], "phenotype": ["The visible appearance of an individual (with respect to one or more traits) which reflects the reaction of a given genotype with a given environment."], "cybrid": ["A hybrid, originating from the fusion of a cytoplast (the cytoplasm without nucleus) with a whole cell derived from a different species."], "pectin": ["A group of naturally occurring complex polysaccharides, containing galacturonic acid, found in plant cell walls, where their function is to cement cells together. (source: FAO)"], "penetrance": ["The proportion of individuals in a population that express the phenotype expected from their genotype with respect to a specific gene."], "peptidase": ["An enzyme that catalyzes the hydrolysis of a peptide bond."], "peptide": ["A sequence of amino acids linked by peptide bonds."], "watermark": ["A translucent design impressed on the surface of paper during manufacture and visible when the paper is held to the light."], "peptide bond": ["The chemical bond holding amino acid residues together in peptides and proteins."], "drake": ["Male duck."], "protease": ["An enzyme that catalyzes the hydrolysis of a peptide bond."], "peptide expression library": ["A collection of peptide molecules, produced by recombinant cells, in which the amino acid sequences are varied."], "perennial": ["(Of plants) Flowering and bearing fruit for several years.", "Lasting an indefinitely long time; suggesting self-renewal.", "Recurring again and again."], "analogous": ["Bearing resemblance to something else by analogy."], "analogy": ["The use of a similar example or model to explain or extrapolate from."], "anarchy": ["The state of a society being without authoritarians or a governing body."], "ancillary": ["Furnishing added support."], "apostle": ["One of the original 12 disciples chosen by Christ to preach his gospel."], "sea ice": ["The frozen seawater of the polar oceans."], "warm up": ["To make warm or warmer.", "To become warm or warmer."], "heat up": ["To cause an increase in temperature of an object or space; to cause something to become hot.", "To become hot or hotter."], "angstr\u00f6m": ["A internationally recognised unit of length that is equal to 0.1 nanometre (nm)."], "atoll": ["An island consisting of a ribbon reef that nearly or entirely surrounds a lagoon and supports, in most cases, one to many islets on the reef platform."], "Lord": ["The Superior Being, the Creator, the Spirit because of which and in whom everything is, as He is being named by monotheists, mostly Jews and Christians."], "apple pie": ["A pie made with apples."], "abort": ["To end a running process.", "To terminate a pregnancy before time."], "Abidjan": ["The de facto capital of C\u00f4te d'Ivoire."], "enthusiast": ["A person filled with or guided by enthusiasm.", "A follower or admirer who likes, knows about, and appreciates a particular interest or activity."], "in spite of": ["Despite the fact that.\\n[Expression to indicate that something occurs or is done in the opposite way than what is required or sensible.]"], "because of": ["As a result of.", "[Used to indicate the cause of a mentioned outcome of negative connotation.]", "[Used to indicate the cause of a mentioned outcome of neutral implication.]"], "car rental": ["A company that rents automobiles for short periods of time."], "tiny": ["Very small in size."], "chickenpox": ["A common childhood disease caused by the varicella-zoster virus."], "chaffinch": ["A songbird in the finch family Fringillidae."], "European greenfinch": ["(Carduelis chloris) A songbird in the finch family Fringillidae which is common in Europe, Northern Africa and Southwest Asia."], "greenfinch": ["(Carduelis chloris) A songbird in the finch family Fringillidae which is common in Europe, Northern Africa and Southwest Asia."], "black redstart": ["(Phoenicurus ochruros) Songbird in the family of the Old World flycatchers (Muscicapidae)."], "air-cooled": ["Cooled by air."], "giant panda": ["A mammal (Ailuropoda melanoleuca) classified in the bear family native to central-western and southwestern China."], "election victory": ["Victory in a political election."], "election defeat": ["Defeat in a political election."], "Pentecost": ["Feast on the fifthieth day after Passover which commemorates the descent of the Holy Spirit upon the Apostles."], "repetance": ["In criminal law, cooperation with the criminal justice (which can contribute to a reduction of sentence)."], "ramble": ["To travel without a destination."], "residence permit": ["An act or document which gives a person legal status to reside in a foreign country without acquiring citizenship in that country."], "persecution": ["A set of violent actions aimed at the systematic mistreatment of an individual or group by another group."], "integral calculus": ["The branch of mathematics that calculates measures of totality such as area, volume, mass, displacement, etc., when its distribution or rate of change with respect to some other quantity (position, time, etc.) is specified."], "pitiful": ["Deserving or inciting pity."], "primary": ["Administrative classification in the UK for a road, generally linking larger towns."], "water amount": ["The quantity of water that flows in a certain amount of time."], "curmudgeon": ["An ill-tempered and frequently old person full of stubborn ideas or opinions.", "A bad-tempered person."], "air rifle": ["A pneumatic gun which fires projectiles using compressed air."], "dope": ["A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect.", "To use illegal methods and substances in order to enhance athletic performance."], "amorousness": ["The state of being in love."], "acme": ["The highest level or degree attainable.", "The highest stage of development."], "right of way": ["In road traffic: right of a vehicle to pass in priority to another one."], "Ascension Day": ["The fortieth day of Easter, a Thursday, which commemorates that Jesus bodily ascended to heaven, following his resurrection."], "withdraw": ["To remove (e.g. money from an account) and carry elsewhere."], "voter": ["One who votes."], "ISO 639-6 codes": ["Codes for the representation of names of languages, Part 6."], "Altaic Proper": ["ISO 639-6 entity"], "Old Turkic": ["ISO 639-6 entity"], "Bolgar": ["ISO 639-6 entity"], "Chuvash Written": ["ISO 639-6 entity"], "Chuvash Written Cyrillic Script": ["ISO 639-6 entity"], "Chuvash Spoken": ["ISO 639-6 entity"], "Chuvash-Formal": ["ISO 639-6 entity"], "Anatri": ["ISO 639-6 entity"], "Viryal": ["ISO 639-6 entity"], "Common Turkic": ["A language family of some thirty languages, spoken across a vast area from Eastern Europe and Mediterranean to Siberia and Western China."], "Common Turkic Southern": ["ISO 639-6 entity"], "Turkish, Ottoman (1500-1928)": ["ISO 639-6 entity"], "Turkish, Ottoman (1500-1928) Written": ["ISO 639-6 entity"], "Turkish, Ottoman (1500-1928) Written Hellenic Script": ["ISO 639-6 entity"], "Turkish, Ottoman (1500-1928) Written Armenian Script": ["ISO 639-6 entity"], "Turkish, Ottoman (1500-1928) Written Perso-Arabic Script": ["ISO 639-6 entity"], "Turkish Written": ["Written forms of the Turkish language."], "Turkish Written Perso-Arabic Script": ["Turkish language written with the Perso-Arabic Script."], "Turkish Written Latin Script": ["Turkish language written with the Latin Script."], "Turkish Spoken": ["The dialects of the Turkish language."], "Eski\u015fehir": ["Turkish dialect."], "Kastamonu": ["Turkish dialect."], "Karamanli": ["Turkish dialect."], "Akhisar": ["Turkish dialect."], "Izmir": ["Turkish dialect."], "Mugla": ["Turkish dialect."], "Antalya": ["Turkish dialect."], "Adana": ["Turkish dialect."], "Gaziantep": ["Turkish dialect."], "Urfa": ["Turkish dialect."], "Erzurum": ["Turkish dialect."], "Hamah Hims": ["Turkish dialect."], "Kibris": ["Turkish dialect."], "Efe": ["Turkish dialect.", "A language of Democratic Republic of the Congo"], "Edirne": ["Turkish dialect."], "Razgrad": ["Turkish dialect."], "Dinler": ["Turkish dialect."], "Balkan Gagauz Turkish": ["A Turkic language spoken in European Turkey, Greece, and in the Kumanovo and Bitola areas of Macedonia."], "Balkan Gagauz Turkish Spoken": ["The dialects of the Balkan Gagauz Turkish language."], "Gajol": ["A dialect of the Balkan Gagauz Turkish language."], "Gerlovo Turks": ["A dialect of the Balkan Gagauz Turkish language."], "Kyzylbash": ["A dialect of the Balkan Gagauz Turkish language."], "Surguch": ["A dialect of the Balkan Gagauz Turkish language."], "Tozluk Turks": ["A dialect of the Balkan Gagauz Turkish language."], "Yuruk": ["A dialect of the Balkan Gagauz Turkish language."], "Gagauz Written": ["ISO 639-6 entity"], "Gagauz Written Cyrillic Script": ["ISO 639-6 entity"], "Gagauz Spoken": ["ISO 639-6 entity"], "Gagauzi-Formal": ["ISO 639-6 entity"], "Oghuz": ["ISO 639-6 entity"], "Gagauzi-S": ["ISO 639-6 entity"], "Urum": ["A Turkic language spoken by several thousand people who inhabit a few villages in the Southeastern Ukraine.", "ISO 639-6 entity"], "Urum Spoken": ["The dialects of the Urum language.", "The dialects of the Urum language."], "Crimean Turkish; Crimean Tatar Spoken": ["The dialects of the Crimean Tatar"], "Crimean Tatar Formal": ["ISO 639-6 entity"], "Chongar": ["ISO 639-6 entity"], "Crimean Tatar NE": ["ISO 639-6 entity"], "Crimean Tatar C": ["ISO 639-6 entity"], "Romania'-Tatar": ["Dialect of Crimean Tartar spoken in Romania."], "Judeo-Crimean Tatar": ["The language spoken in Crimea by the Krymchak people."], "Turkmen Written": ["Written forms of the Turkmen language."], "Turkmen Written Cyrillic Script": ["Lengua turcomana escrita con el alfabeto cir\u00edlico."], "Turkmen Written Perso-Arabic Script": ["Turkmen language written with the Perso-Arabic Script."], "Turkmen Spoken": ["The Turkmen spoken language and its dialects."], "Turkmen-Formal": ["ISO 639-6 entity"], "Yomud": ["A dialect of the Turkmen language."], "Nokhurli": ["A dialect of the Turkmen language."], "Anauli": ["A dialect of the Turkmen language."], "Khasarli": ["A dialect of the Turkmen language."], "Nerezim": ["A dialect of the Turkmen language."], "Teke": ["A dialect of the Turkmen language."], "Goklen": ["A dialect of the Turkmen language."], "Salyr": ["A dialect of the Turkmen language."], "Saryq": ["A dialect of the Turkmen language."], "Esari": ["A dialect of the Turkmen language."], "Cavdur": ["A dialect of the Turkmen language."], "Khorasani Turkish": ["A language of Iran."], "Khorasani Turkish Spoken": ["ISO 639-6 entity"], "Quchani W": ["ISO 639-6 entity"], "Quchani N": ["ISO 639-6 entity"], "Quchani S": ["ISO 639-6 entity"], "Azerbaijani Cluster": ["A Turkic language spoken primarily in Azerbaijan and parts of Iran."], "North Azerbaijani": ["A language of Azerbaijan, Armenia, Georgia and Russia."], "North Azerbaijani Written": ["Written forms of the North Azerbaijani language."], "North Azerbaijani Spoken": ["Dialects of the North Azerbaijani language."], "Borcala": ["Spoken dialect of North Azerbaijani."], "Terekeme": ["Spoken dialect of North Azerbaijani.", "Spoken dialect of Karapapakh Terekeme.", "A small ethnic group who mainly live in the province of West Azerbaijan of northwest Iran."], "Qyzylbash": ["ISO 639-6 entity"], "Nukha": ["Spoken dialect of North Azerbaijani named after the ancient name of the city of Shaky, Azerbaijan."], "Derbent": ["ISO 639-6 entity", "A city in the Republic of Dagestan, Russia."], "Zakataly Muganly": ["ISO 639-6 entity"], "Q\u00e4b\u00e4l\u00e4": ["ISO 639-6 entity"], "Ayrum": ["ISO 639-6 entity"], "Azeri-Yerevan": ["Spoken dialect of North Azerbaijani."], "Qazax": ["Spoken dialect of North Azerbaijani.", "A rayon of Azerbaijan. It has two exclaves, Yukhari Askipara and Barkhudarli inside Armenia and have been under Armenian control since the Nagorno-Karabakh War."], "Quba": ["ISO 639-6 entity", "A city and a rayon in northeastern Azerbaijan."], "Kirovkend*": ["ISO 639-6 entity"], "Saliany": ["ISO 639-6 entity"], "L\u00e4nk\u00e4ran": ["ISO 639-6 entity", "A small city in Azerbaijan, on the coast of the Caspian Sea, near the southern border with Iran."], "Shamakhi": ["ISO 639-6 entity", "A rayon of Azerbaijan, and a town in the rayon."], "\u015eu\u015fa": ["Spoken dialect of North Azerbaijani."], "Nax\u00e7ivan": ["Spoken dialect of North Azerbaijani.", "A landlocked exclave of Azerbaijan between Armenia, Turkey and Iran. Its capital is Nakhchivan City."], "Ordubad": ["ISO 639-6 entity", "A rayon of Azerbaijan, and a town in the rayon."], "South Azerbaijani": ["A language of Iran, Afghanistan, Iraq, Syria and Turkey"], "South Azerbaijani Written": ["Written forms of South Azerbaijani language."], "South Azerbaijani Written Perso-Arabic Script": ["South Azerbaijani language written with the Perso-Arabic Script."], "South Azerbaijani Spoken": ["The dialects of South Azerbaijani language."], "Aynallu": ["A dialect of South Azerbaijani language."], "Tabriz": ["A dialect of South Azerbaijani language.", "The largest city in north-western Iran with a population of 1,523,085 people (2006 est.)."], "Afshari": ["A Turkic language spoken in parts of Afghanistan and Iran."], "Shahsavani": ["A dialect of South Azerbaijani language."], "Moqaddam": ["A dialect of South Azerbaijani language."], "Baharlu": ["A dialect of South Azerbaijani language.", "An Iranian ethnic group of Fars (Pars), Kerman, Southern Azerbaijan and Khorasan."], "Qaragozlu": ["A dialect of South Azerbaijani language."], "Nafar": ["A dialect of South Azerbaijani language."], "Pishagchi": ["A dialect of South Azerbaijani language."], "Bayat": ["A dialect of South Azerbaijani language.", "A tribe in Iran which traces its origin to the 12th century."], "Qajar": ["A dialect of South Azerbaijani language.", "The ruling family of Persia from 1781 to 1925."], "Kirkuk": ["A dialect of South Azerbaijani language.", "A city in northern Iraq and capital of Taamim Governorate."], "Kars": ["A dialect of South Azerbaijani language.", "A province of Turkey, located in the northeastern part of the country.", "A city in northeast Turkey and the capital of the Kars Province."], "Teimurtash": ["ISO 639-6 entity"], "Teimurtash Spoken": ["ISO 639-6 entity"], "Salchuq": ["ISO 639-6 entity"], "Salchuq Spoken": ["ISO 639-6 entity"], "Turkic Khalaj": ["A language of Iran."], "Turkic Khalaj Spoken": ["ISO 639-6 entity"], "Qashqa\u2019i": ["a Turkic language spoken by the Qashqai, an ethnic group living mainly in the Fars region of Iran."], "Qashqa\u2019i Spoken": ["ISO 639-6 entity"], "Karapapakh Terekeme": ["ISO 639-6 entity"], "Karapapakh Terekeme Spoken": ["ISO 639-6 entity"], "Karapapakh": ["ISO 639-6 entity"], "Common Turkic Western": ["ISO 639-6 entity"], "Kumyk-Karachay": ["ISO 639-6 entity"], "Karachay": ["ISO 639-6 entity"], "Balkar": ["ISO 639-6 entity"], "Kumyk": ["A Turkic language, spoken by about 200 thousand speakers (the Kumyks) in the Dagestan republic of Russian Federation."], "Kumyk Written": ["ISO 639-6 entity"], "Kumyk Written Cyrillic Script": ["ISO 639-6 entity"], "Kumyk Spoken": ["ISO 639-6 entity"], "Kumyk-Formal": ["ISO 639-6 entity"], "Karachay-Kumyk": ["ISO 639-6 entity"], "Khasav-Yurt": ["ISO 639-6 entity", "ISO 639-6 entity"], "Buinak": ["ISO 639-6 entity"], "Khaidak": ["ISO 639-6 entity"], "Kumyk-W": ["ISO 639-6 entity"], "Tatar Cluster": ["ISO 639-6 entity"], "Tatar Written": ["Written forms of the Tatar language."], "Tatar Written Cyrillic Script": ["The Tatar language written with the cyrillique script."], "Tatar Spoken": ["Dialects of the Tatar language."], "Tatar-Formal": ["ISO 639-6 entity"], "Kazan-Tatar": ["Variety of Tartar spoken in Kasan, Republic of Tatarstan, Russia"], "Misher": ["ISO 639-6 entity"], "Tura": ["ISO 639-6 entity", "ISO 639-6 entity"], "Tom": ["ISO 639-6 entity"], "Tyumen": ["ISO 639-6 entity"], "Ishim": ["ISO 639-6 entity"], "Yalutorov": ["ISO 639-6 entity"], "Irtysh": ["ISO 639-6 entity"], "Tobol": ["ISO 639-6 entity"], "Tara": ["ISO 639-6 entity"], "Astrakhan-Tatar": ["A dialect of tartar spoken in Astrakhan Oblast, Russia."], "Kasimov-Tatar": ["Variety of Tartar spoken in Kasimov, in Ryazan Oblast, Russia."], "Teptyar": ["ISO 639-6 entity"], "Ural-Tatar": ["ISO 639-6 entity"], "Baraba": ["A Turkic language, spoken by about 8,000 people in Russian Siberia, closely related to Tatar."], "Baraba Spoken": ["Dialects of the Baraba language."], "Bashkir Written": ["ISO 639-6 entity"], "Bashkir Written Cyrillic Script": ["ISO 639-6 entity"], "Bashkir Spoken": ["ISO 639-6 entity"], "Bashqurt-Formal": ["ISO 639-6 entity"], "Kuvakan": ["ISO 639-6 entity"], "Yurmaty": ["ISO 639-6 entity"], "Burzhan": ["ISO 639-6 entity"], "Karaim": ["A Turkic language with Hebrew influences, in a similar manner to Yiddish or Ladino spoken in Crimea."], "Karaim Written": ["ISO 639-6 entity"], "Karaim Written Cyrillic Script": ["ISO 639-6 entity"], "Karaim Written Hebrew Script": ["ISO 639-6 entity"], "Karaim Spoken": ["ISO 639-6 entity"], "Karaim-Formal": ["ISO 639-6 entity"], "Karim E": ["ISO 639-6 entity"], "Trakay": ["ISO 639-6 entity"], "Galits": ["ISO 639-6 entity"], "Judeo-Crimean": ["ISO 639-6 entity"], "Judeo-Tatar-Georgia": ["ISO 639-6 entity"], "Judeo-Tatar-Kazakhstan": ["ISO 639-6 entity"], "Judeo-Tatar-Uzbekistan": ["ISO 639-6 entity"], "Common Turkic Central": ["ISO 639-6 entity"], "Nogai": ["A Turkic language spoken in southwestern Russia."], "Nogai Written": ["Written forms of the Nogai language."], "Nogai Written Cyrillic Script": ["The Nogai language written with the cyrillic script."], "Nogai Spoken": ["Dialects of the Nogai language."], "Noghay-Formal": ["ISO 639-6 entity"], "Noghay-V": ["ISO 639-6 entity"], "Ak-Noghay": ["ISO 639-6 entity"], "Kara-Noghay": ["ISO 639-6 entity"], "Noghay-C": ["ISO 639-6 entity"], "Kara-Kalpak Written": ["Written forms of the Kara-Kalpak language."], "Kara-Kalpak Written Cyrillic Script": ["The Kara-Kalpak language written with the cyrillic script."], "Kara-Kalpak Spoken": ["Dialects of the Kara-Kalpak language."], "Karakalpak-Formal": ["ISO 639-6 entity"], "Karakalpak-A": ["ISO 639-6 entity"], "Tchorny": ["ISO 639-6 entity"], "Klobouki": ["ISO 639-6 entity"], "Kazakh Written": ["Written forms of the Kazakh language."], "Kazakh Written Cyrillic Script": ["ISO 639-6 entity"], "Kazakh Written Latin Script": ["Kazakh language written with the Latin Script."], "Kazakh Written Perso-Arabic Script": ["ISO 639-6 entity"], "Kazakh Spoken": ["Dialects of the Kazakh language."], "Kazakh\u015fa-Formal": ["ISO 639-6 entity"], "Kazakh\u015fa-NE": ["ISO 639-6 entity"], "Kazakh\u015fa-W": ["ISO 639-6 entity"], "Kazakh\u015fa-S": ["ISO 639-6 entity"], "Kirghiz ": ["A Northwestern Turkic language, and, together with Russian, an official language of Kyrgyzstan."], "Kirghiz Written": ["Written forms of the Kirghiz language."], "Kirghiz Written Cyrillic Script": ["ISO 639-6 entity"], "Kirghiz Written Latin Script": ["A written form of the Kirghiz language."], "Kirghiz Written Perso-Arabic Script": ["ISO 639-6 entity"], "Kirghiz Spoken": ["Dialects of the Kirghiz language."], "Kirghizca-Formal": ["ISO 639-6 entity"], "Kirghizca-N": ["ISO 639-6 entity"], "Kirghizca-S": ["ISO 639-6 entity"], "Common Turkic Eastern": ["ISO 639-6 entity"], "Pre-Classical Chagatai": ["ISO 639-6 entity"], "Classical Chagatai": ["ISO 639-6 entity"], "Post-Classical Chagatai": ["ISO 639-6 entity"], "Lli Turki": ["Language only spoken by old people in the Ili Valley near Kuldja, Xinjiang, China."], "Northern Uzbek": ["A Turkic language spoken in Uzbekistan."], "Northern Uzbek Written": ["ISO 639-6 entity"], "Northern Uzbek Written Cyrillic Script": ["ISO 639-6 entity"], "Northern Uzbek Written Latin Script": ["ISO 639-6 entity"], "Northern Uzbek Written Perso-Arabic Script": ["ISO 639-6 entity"], "Northern Uzbek Spoken": ["ISO 639-6 entity"], "\u00d6zbek\u00e7a-Formal Written": ["ISO 639-6 entity"], "Karluko-Chigile-Uighur": ["ISO 639-6 entity"], "Kypchak": ["ISO 639-6 entity"], "Oghuz-2": ["ISO 639-6 entity"], "Qurama": ["ISO 639-6 entity"], "Lokhay": ["ISO 639-6 entity"], "Romany-Uzbeki ": ["ISO 639-6 entity"], "Southern Uzbek": ["A Turkic language spoken in north Afghanistan and by a small refugee community in Turkey."], "Uyghur Written": ["Written forms of the Uyghur language."], "Uyghur Written Cyrillic Script": ["ISO 639-6 entity"], "Uyghur Written Latin Script": ["ISO 639-6 entity"], "Uyghur Written Orkhon Script": ["ISO 639-6 entity"], "Uyghur Written Perso-Arabic Script": ["ISO 639-6 entity"], "Uyghur Spoken": ["Dialects of the Uyghur language."], "Uyghur-W": ["ISO 639-6 entity"], "Taranchi": ["ISO 639-6 entity"], "Kashgar-Yarkand": ["ISO 639-6 entity"], "Uyghur-Formal ": ["ISO 639-6 entity"], "Hami": ["ISO 639-6 entity"], "Turpan": ["ISO 639-6 entity"], "\u00dcr\u00fcmqi": ["ISO 639-6 entity"], "Bortala": ["ISO 639-6 entity"], "Yining": ["ISO 639-6 entity"], "Aqsu": ["ISO 639-6 entity"], "Kuqa": ["ISO 639-6 entity"], "Yengisar": ["ISO 639-6 entity"], "Korla": ["ISO 639-6 entity"], "Lop-Nur": ["ISO 639-6 entity"], "Qarqan": ["ISO 639-6 entity"], "Dolan": ["ISO 639-6 entity"], "Hotan- Yutian": ["ISO 639-6 entity"], "Qarashahr": ["ISO 639-6 entity"], "Kashi Shache": ["ISO 639-6 entity"], "Akto-Turkmen": ["ISO 639-6 entity"], "Ainu Spoken": ["ISO 639-6 entity"], "Salar": ["A Turkic language spoken by the Salar people, who mainly live in the provinces of Qinghai and Gansu in China."], "Salar Spoken": ["ISO 639-6 entity"], "Jeizi": ["ISO 639-6 entity"], "Mengda": ["ISO 639-6 entity"], "West Yugur": ["ISO 639-6 entity"], "Common Turkic Northern": ["ISO 639-6 entity"], "Tuva-Altai": ["ISO 639-6 entity"], "Altai Cluster": ["Lengua t\u00farquica y la lengua oficial en la Rep\u00fablica de Alt\u00e1i, Rusia."], "Southern Altai": ["A Turkic language spoken in the Gorno-Altai Ao mountains of Russia."], "Southern Altai Spoken": ["ISO 639-6 entity"], "Altay-Formal": ["ISO 639-6 entity"], "Altay-Kizhi-A": ["ISO 639-6 entity"], "Talangit": ["ISO 639-6 entity"], "Northern Altai": ["A language of Russia (Asia)"], "Chulym-Shor": ["ISO 639-6 entity"], "Chulym": ["A Turkic language spoken by the Chulym and the Kacik people of the Basin of the Chulym River north of the Altay Mountains, Rusia."], "Chulym Spoken": ["Dialects of the Chulym language."], "Chulym-W": ["ISO 639-6 entity"], "Chulym-E": ["ISO 639-6 entity"], "Kacik": ["ISO 639-6 entity"], "Shor": ["A Turkic language spoken by around 10,000 people in the Kemerovo Oblast in south-central Siberia, Russia."], "Shor Spoken": ["ISO 639-6 entity"], "Shor-Formal": ["ISO 639-6 entity"], "Mrassa": ["ISO 639-6 entity"], "Kondoma": ["ISO 639-6 entity"], "Khakas": ["A Turkic language spoken by the Khakas people, who mainly live in the southern Siberian Khakas Republic, or Khakassia, in Russia.", "A Turkic people, who live in Russia, in the republic of Khakassia in the southern Siberia."], "Khakas Spoken": ["ISO 639-6 entity"], "Sagai": ["ISO 639-6 entity"], "Beltir": ["ISO 639-6 entity", "A village in the Altay Mountains, Russia."], "Kacha": ["ISO 639-6 entity", "An urban-type settlement on the Crimean peninsula, Russia."], "Kyzyl": ["ISO 639-6 entity"], "Shor-2": ["ISO 639-6 entity"], "Kamassian": ["An extinct language spoken in Russia, east of the Ural mountains."], "Tuva-Karagas Cluster": ["ISO 639-6 entity"], "Tuvinian": ["A Turkic languages spoken in the Republic of Tuva in south-central Siberia in Russia, in China and Mongolia."], "Tuvinian Spoken": ["ISO 639-6 entity"], "Tuvin-Formal": ["ISO 639-6 entity"], "Tuvin-C": ["ISO 639-6 entity"], "Tuvin-W": ["ISO 639-6 entity"], "Todzhin": ["ISO 639-6 entity"], "Tuvin-SE": ["ISO 639-6 entity"], "Tuba-Kizhi": ["ISO 639-6 entity"], "Kokchulutan": ["ISO 639-6 entity"], "Karagas": ["A Turkic languages spoken by the Tofalar people in the Irkutsk Oblast in Russia."], "Karagas Spoken": ["ISO 639-6 entity"], "Turkmen-Tibet": ["ISO 639-6 entity"], "Turkmen-Tibet Spoken": ["ISO 639-6 entity"], "Yakut Cluster": ["ISO 639-6 entity"], "Yakut Written": ["Written forms of the Yakut language."], "Yakut Written Cyrillic Script": ["ISO 639-6 entity"], "Yakut Spoken": ["Dialects of the Yakut language."], "Sakha-Formal": ["ISO 639-6 entity"], "Kotuj": ["ISO 639-6 entity"], "Anabar": ["ISO 639-6 entity"], "Olen'ok": ["ISO 639-6 entity"], "Lena-N": ["ISO 639-6 entity"], "Vil'uj": ["ISO 639-6 entity"], "Nizhn'aja": ["ISO 639-6 entity"], "Lena-NE": ["ISO 639-6 entity"], "Lena-SW": ["ISO 639-6 entity"], "Uda- Amgun'": ["ISO 639-6 entity"], "Jana": ["ISO 639-6 entity"], "Chroma": ["ISO 639-6 entity"], "Yakut-Indigirka": ["ISO 639-6 entity"], "Alazeja": ["ISO 639-6 entity"], "Kolyma-N": ["ISO 639-6 entity"], "Kolyma-S": ["ISO 639-6 entity"], "Okhotsk": ["ISO 639-6 entity", "ISO 639-6 entity"], "Dolgan": ["A Turkic language with around 5,000 speakers, spoken in the Taymyr Peninsula in Russia."], "Dolgan Written": ["ISO 639-6 entity"], "Dolgan Written Cyrillic Script": ["ISO 639-6 entity"], "Dolgan Spoken": ["ISO 639-6 entity"], "Chatanga": ["ISO 639-6 entity"], "Cheta": ["ISO 639-6 entity"], "Mongolian-Tungus": ["A group of languages spoken in Central Asia."], "Mongolian Western Cluster": ["ISO 639-6 entity"], "Mogholi": ["ISO 639-6 entity"], "Mogholi Spoken": ["ISO 639-6 entity"], "Kundur": ["ISO 639-6 entity"], "Karez-L-Mulla": ["ISO 639-6 entity"], "Mongolian Eastern": ["ISO 639-6 entity"], "Oirat Khalka": ["ISO 639-6 entity"], "Khalka Buriat Cluster": ["ISO 639-6 entity"], "Buriat": ["A Mongolic macrolanguage spoken by the Buryats. The majority live in Russia along the northern border of Mongolia and speak Russia Buriat. There are also smaller, more distinct, communities in both Mongolia and the People's Republic of China.", "The largest ethnic minority group in Siberia, numbering approximately 436,000, mainly concentrated in their homeland, the Buryat Republic, a federal subject of Russia."], "Mongolia Buriat": ["A Mongolic language spoken in northeast Mongolia."], "Mongolia Buriat Written": ["The written forms of the Mongolia Buriat language."], "Monghol Buriat Written Mongolian Script Historical": ["ISO 639-6 entity"], "Mongolia Buriat Cyrillic Script": ["A written form of the Mongolia Buriat language using the Cyrillic alphabet."], "Mongolia Buriat Spoken": ["The dialects of the Mongolia Buriat language."], "Khori": ["A dialect of the Mongolia Buriat language."], "Aga": ["A dialect of the Mongolia Buriat language."], "Tsongol": ["A dialect of the Mongolia Buriat language."], "Sartul": ["A dialect of the Mongolia Buriat language."], "Russia Buriat": ["A Mongolic language spoken in Russia along the northern border of Mongolia."], "Russia Buriat Written Buryat Script": ["A written form of the Russia Buriat language using the Buriat Script."], "Russia Buriat Written Latin Script": ["A written form of the Russia Buriat language using the Latin alphabet."], "Russia Buriat Written Cyrillic Script": ["A written form of the Russia Buriat language using the Cyrillic Script."], "Russia Buriat Spoken": ["The dialects of the Russia Buriat language."], "Ekhirit": ["A dialect of the Russia Buriat language."], "Ungin": ["A dialect of the Russia Buriat language."], "Uda": ["A dialect of the Russia Buriat language."], "Barguzin": ["A dialect of the Russia Buriat language."], "Bohaan": ["A dialect of the Russia Buriat language."], "Tunka": ["A dialect of the Russia Buriat language."], "Oka": ["A dialect of the Russia Buriat language.", "ISO 639-6 entity", "A large river in central Russia, the largest right tributary of the Volga."], "Alat": ["A dialect of the Russia Buriat language."], "Bulagat": ["A dialect of the Russia Buriat language."], "China Buriat": ["A Mongolic language spoken in China in the Hulun-Buyr District of Inner Mongolia. (source: Wikipedia)"], "China Buriat Written Mongolian Script": ["A written form of the China Buriat language using the Mongolian script."], "China Buriat Spoken": ["Dialects of the China Buriat language."], "Bargu": ["A dialect of the China Buriat language spoken in the Prefecture of Hulunbuir, east of Inner-Mongolia in China."], "Bargu Old": ["A dialect of the China Buriat language spoken in the Old Barag Banner, Inner-Mongolia in China."], "Mongolian Proper": ["ISO 639-6 entity"], "Halh Mongolian": ["The official language of Mongolia, also spoken in Russia."], "Halh Mongolian Written": ["ISO 639-6 entity"], "Halh Mongolian Written Mongolian Script": ["ISO 639-6 entity"], "Halh Mongolian Written Cyrillic Script": ["ISO 639-6 entity"], "Halh Mongolian Spoken": ["The dialects of the Halh Mongolian language."], "Khalkha": ["A dialect of the Halh Mongolian language."], "Khotogoit": ["A dialect of the Halh Mongolian language."], "Bayit": ["A dialect of the Halh Mongolian language."], "Peripheral Mongolian": ["A language of China and Mongolia."], "Peripheral Mongolian Written": ["ISO 639-6 entity"], "Peripheral Mongolian Written Mongolian Script": ["ISO 639-6 entity"], "Peripheral Mongolian Spoken": ["ISO 639-6 entity"], "Dorbet-E ": ["ISO 639-6 entity"], "Dzakhachin": ["ISO 639-6 entity"], "Mingat": ["ISO 639-6 entity"], "Oold": ["ISO 639-6 entity"], "Dariganga": ["A Mongolian language spoken by the Dariganga people in and around the town of Dariganga in the Sukhbaatar Province in south-east Mongolia.", "Mongol people who mainly live in Dari-ovoo hill and Ganga Lake, Sukhbaatar Province, in eastern Mongolia.", "A sum (district) of Sukhbaatar Province in eastern Mongolia."], "Kharchin-Tumut": ["ISO 639-6 entity"], "Khorchin": ["ISO 639-6 entity"], "Uzemchin": ["ISO 639-6 entity"], "Zahchin": ["ISO 639-6 entity"], "Barga": ["ISO 639-6 entity"], "Torguut-E ": ["ISO 639-6 entity"], "Ordos": ["ISO 639-6 entity"], "Darkhat": ["A language of Mongolia."], "Oirat Kalmyk Cluster": ["ISO 639-6 entity"], "Kalmyk": ["A Mongolic language spoken by the Kalmyk people of the Republic of Kalmykia, a federal subject of the Russian Federation."], "Kalmyk Spoken": ["ISO 639-6 entity"], "Kalmyk-Formal ": ["ISO 639-6 entity"], "Torguut-W ": ["ISO 639-6 entity"], "Buzawa": ["ISO 639-6 entity"], "Dorbet-W ": ["ISO 639-6 entity"], "Oyrat": ["ISO 639-6 entity"], "Oyrat Written": ["ISO 639-6 entity"], "Oyrat Written Oyrat Script ": ["ISO 639-6 entity"], "Oyrat Spoken": ["ISO 639-6 entity"], "Oyrat-Formal ": ["ISO 639-6 entity"], "Chahar": ["ISO 639-6 entity"], "Dorbet-C ": ["ISO 639-6 entity"], "Torguut-C ": ["ISO 639-6 entity"], "Khoshot": ["ISO 639-6 entity"], "Sart-Qalmaq": ["ISO 639-6 entity"], "Dagur Cluster": ["ISO 639-6 entity"], "Daur": ["An official regional language of Inner Mongolia, China.", "An ethnic group of 132,000 people of the Inner Mongolia autonomous region of China."], "Daur Written": ["ISO 639-6 entity"], "Daur Written Daur Script": ["ISO 639-6 entity"], "Daur Written Cyrillic Script": ["ISO 639-6 entity"], "Daur Written Latin Script": ["Daur language written with the Latin Script."], "Daur Spoken": ["ISO 639-6 entity"], "Bataxan": ["ISO 639-6 entity"], "Hailar": ["ISO 639-6 entity"], "Qiqihar": ["ISO 639-6 entity"], "Monguor Cluster": ["ISO 639-6 entity"], "Tu": ["ISO 639-6 entity"], "Tu Spoken": ["ISO 639-6 entity"], "Datong": ["ISO 639-6 entity"], "Tianzhu": ["ISO 639-6 entity"], "Minhe": ["ISO 639-6 entity"], "Minhe Spoken": ["ISO 639-6 entity"], "Minhe-A": ["ISO 639-6 entity"], "Minhe-Yongjing": ["ISO 639-6 entity"], "Linxia": ["ISO 639-6 entity"], "Aragwa*": ["ISO 639-6 entity"], "Dongxiang": ["A Mongolic language spoken by the Dongxiang people in northwest China."], "Dongxiang Spoken": ["ISO 639-6 entity"], "Suonanba": ["ISO 639-6 entity"], "Wangjiaji": ["ISO 639-6 entity"], "Sijiaji": ["ISO 639-6 entity"], "Yongjing": ["ISO 639-6 entity"], "Kang-Le": ["ISO 639-6 entity"], "Ningting*": ["ISO 639-6 entity"], "Shiringol*": ["ISO 639-6 entity"], "Yunnan*": ["ISO 639-6 entity"], "Bonan": ["A Mongolian language spoken by the Bonan people in the Tongren County in Qinghai Province in China."], "Bonan Spoken": ["Dialects of the Bonan language."], "Dahejia": ["ISO 639-6 entity"], "Ganhetan": ["ISO 639-6 entity"], "Dadun": ["ISO 639-6 entity"], "Tongren": ["A dialect of the Bonan language spoken in Tongren county."], "Nianduhu": ["ISO 639-6 entity"], "Guomari": ["ISO 639-6 entity"], "East Yugur": ["ISO 639-6 entity"], "East Yugur Spoken": ["ISO 639-6 entity"], "Kangjia": ["A language of China."], "Kangjia Spoken": ["The dialects of the Kangjia language."], "Tungus": ["ISO 639-6 entity"], "Northern Tungus": ["ISO 639-6 entity"], "Even": ["A language of Russia (Asia)"], "Even Written": ["ISO 639-6 entity"], "Even Written Cyrillic Script": ["ISO 639-6 entity"], "Even Spoken": ["ISO 639-6 entity"], "Even-Formal ": ["ISO 639-6 entity"], "Even-Indigirka": ["ISO 639-6 entity"], "Kolyma- Omolon": ["ISO 639-6 entity"], "Upper Kolyma": ["ISO 639-6 entity"], "Arman": ["ISO 639-6 entity"], "Ola": ["ISO 639-6 entity"], "Tompon": ["ISO 639-6 entity"], "Verkhne-Kolymsk": ["ISO 639-6 entity"], "Sarkyryr": ["ISO 639-6 entity"], "Lamunkhin": ["ISO 639-6 entity"], "Negidal": ["ISO 639-6 entity"], "Negidal Spoken": ["ISO 639-6 entity"], "Nizovsk": ["ISO 639-6 entity"], "Verkhovsk": ["ISO 639-6 entity"], "Evenki Cluster": ["ISO 639-6 entity"], "Evenki Spoken": ["ISO 639-6 entity"], "Evenki-Formal": ["ISO 639-6 entity"], "Ilimpeya": ["ISO 639-6 entity"], "Tutoncana": ["ISO 639-6 entity"], "Podkamennaya-Tunguska": ["ISO 639-6 entity"], "Cemdalsk": ["ISO 639-6 entity"], "Vanavara": ["ISO 639-6 entity"], "Baykit": ["ISO 639-6 entity"], "Poligus": ["ISO 639-6 entity"], "Uchami": ["ISO 639-6 entity"], "Cis-Baikalia'": ["ISO 639-6 entity"], "Yerbogachen": ["ISO 639-6 entity"], "Nakanna": ["ISO 639-6 entity"], "Tokma-Verkholensk": ["ISO 639-6 entity"], "Nepa": ["ISO 639-6 entity"], "Nizne-Nepsk": ["ISO 639-6 entity"], "Tungir": ["ISO 639-6 entity"], "Kalar": ["ISO 639-6 entity"], "Tokko": ["ISO 639-6 entity"], "Aldan- Timpton": ["ISO 639-6 entity"], "Jetulak": ["ISO 639-6 entity"], "Tommot": ["ISO 639-6 entity"], "Uchur": ["ISO 639-6 entity"], "Ayano-Maj": ["ISO 639-6 entity"], "Kur-Urmi": ["ISO 639-6 entity"], "Tuguro-Cumikan": ["ISO 639-6 entity"], "Zeysko-Burelin": ["ISO 639-6 entity"], "Evenki-Sakhalin": ["ISO 639-6 entity"], "Sym": ["ISO 639-6 entity", "ISO 639-6 entity"], "Manegir": ["ISO 639-6 entity"], "Solon": ["ISO 639-6 entity"], "Oroqen": ["ISO 639-6 entity"], "Oroqen Spoken": ["ISO 639-6 entity"], "Gankui": ["ISO 639-6 entity"], "Heilongjiang Oroqen": ["ISO 639-6 entity"], "Selenge-Aimag": ["ISO 639-6 entity"], "Tungus Southern": ["ISO 639-6 entity"], "Tungus Southern Southwestern Cluster": ["ISO 639-6 entity"], "Manchu": ["A language of China."], "Manchu Written": ["ISO 639-6 entity"], "Manchu Written Mongolian Script": ["ISO 639-6 entity"], "Manchu Written Manchu Script": ["ISO 639-6 entity"], "Manchu Spoken": ["ISO 639-6 entity"], "Manchu-Formal ": ["ISO 639-6 entity"], "Bala": ["ISO 639-6 entity", "ISO 639-6 entity"], "Alechuxa": ["ISO 639-6 entity"], "Jing": ["ISO 639-6 entity"], "Lalin": ["ISO 639-6 entity", "ISO 639-6 entity"], "Manchu-N ": ["ISO 639-6 entity"], "Manchu-W ": ["ISO 639-6 entity"], "Xibe": ["A Tungusic language spoken by the Xibe people in Xinjiang, in the northwest of China."], "Jurchen": ["An extinct language of China."], "Tungus Southern Southeastern": ["ISO 639-6 entity"], "Udihe Complex": ["ISO 639-6 entity"], "Udihe": ["ISO 639-6 entity"], "Udihe Spoken": ["ISO 639-6 entity"], "Khungari": ["ISO 639-6 entity"], "Khor": ["ISO 639-6 entity"], "Anjuski": ["ISO 639-6 entity"], "Samargin": ["ISO 639-6 entity"], "Bikin": ["ISO 639-6 entity"], "Iman": ["ISO 639-6 entity"], "Sikhota-Alin": ["ISO 639-6 entity"], "Oroch": ["ISO 639-6 entity"], "Oroch Spoken": ["ISO 639-6 entity"], "Kjakela*": ["ISO 639-6 entity"], "Namunka": ["ISO 639-6 entity"], "Orichen": ["ISO 639-6 entity"], "Tez": ["ISO 639-6 entity"], "Nanaj Cluster": ["ISO 639-6 entity"], "Nanai": ["A language of Russia (Asia) and China"], "Nanai Spoken": ["ISO 639-6 entity"], "Gold-Formal": ["ISO 639-6 entity"], "Sunggari": ["ISO 639-6 entity"], "Torgon": ["ISO 639-6 entity"], "Kuro-Urmi": ["ISO 639-6 entity"], "Ussuri": ["ISO 639-6 entity"], "Akani": ["ISO 639-6 entity"], "Birar": ["ISO 639-6 entity"], "Kile": ["ISO 639-6 entity"], "Ulch": ["ISO 639-6 entity"], "Ulch Spoken": ["ISO 639-6 entity"], "Hezhen": ["ISO 639-6 entity"], "Orok": ["ISO 639-6 entity"], "Orok Spoken": ["ISO 639-6 entity"], "Orok-N": ["ISO 639-6 entity"], "Orok-C ": ["ISO 639-6 entity"], "Orok-S": ["ISO 639-6 entity"], "Samagir": ["ISO 639-6 entity"], "Andaman Island": ["Language family spoken by the Andamanese peoples of the Andaman Islands, a union territory of India."], "Great Andamanese": ["ISO 639-6 entity"], "Great Andamanese Northern": ["ISO 639-6 entity"], "Aka-Cari": ["An almost extinct language of the Andaman Islands, India, spoken by the Aka-Cari people."], "Aka-Kora": ["An extinct language of the Andaman Islands, India, spoken by the Aka-Kora people."], "Aka-Bo": ["An almost extinct language of the Andaman Islands, India, spoken by the Aka-Bo people."], "Aka-Jeru": ["An almost extinct language of the Andaman Islands, India, spoken by the Aka-Jeru people."], "Great Andamanese Central": ["ISO 639-6 entity"], "Aka-Kede": ["An extinct language of the Andaman Islands, India, spoken by the Aka-Kede people."], "Aka-Kol": ["An extinct language of the Andaman Islands, India, spoken by the Aka-Kol people."], "Oko-Juwoi": ["An extinct language of the Andaman Islands, India, spoken by the Oko-Juwoi people."], "A-Pucikwar": ["An extinct language of the Andaman Islands, India, spoken by the A-Pucikwar people."], "Akar Bale": ["An extinct language of the Andaman Islands, India, spoken by the Akar Bale people."], "Akar-Bale-N": ["ISO 639-6 entity"], "Akar-Bale-S": ["ISO 639-6 entity"], "Aka-Bea": ["An extinct Great Andamanese language, of the Central group, spoken around the western Andaman Strait and around the northern and western coast of South Andaman."], "South Andamanese Cluster": ["ISO 639-6 entity"], "Sentinel": ["Language belonging to the South Andamanese Cluster, spoken in the Sentinel Islands, in India."], "Jarawa (India)": ["Language belonging to the South Andamanese Cluster, spoken in the Andaman Islands, in India"], "\u00d6nge": ["Language belonging to the South Andamanese Cluster, spoken in the Onge Island, India."], "Austroasiatic": ["A large language family of Southeast Asia, and also scattered throughout India and Bangladesh."], "Munda": ["A language family spoken by about nine million people in eastern India and Bangladesh.", "A tribal (Adivasi) people of the Jharkhand region, which is spread over on five states of India (Jharkhand, Bihar, West Bengal, Chhatisgarh and Orissa), and in parts of Bangladesh. (source: wikipedia)"], "North Munda": ["ISO 639-6 entity"], "Korku Cluster": ["ISO 639-6 entity"], "Korku": ["A North Munda language spoken by the Korku people in Central India.", "A language of India."], "Bouriya": ["ISO 639-6 entity"], "Bondoy": ["A language of India."], "Ruma": ["Variety of Munda language spoken in Ruma, Bangladesh.", "An Upazila of Bandarban District in the Division of Chittagong, Bangladesh."], "Bopchi": ["Variety of Munda language spoken by the Bopchi people in India.", "A tribal group of India."], "Mawasi": ["Variety of Munda language spoken by the Mawasi people in India.", "A tribal group of India."], "Kherwari": ["ISO 639-6 entity", "A language spoken by the Khirwar people in the Surguja district at the borders of Madhya Pradesh and Uttar Pradesh, in India."], "Santali Cluster": ["ISO 639-6 entity"], "Santali": ["A Kherwari language of the Austro-Asiatic family spoken by around 6.2 million people in India, Bangladesh, Bhutan and Nepal."], "Kamari-Santali": ["ISO 639-6 entity"], "Lohari-Santali": ["ISO 639-6 entity"], "Mahali": ["ISO 639-6 entity"], "Mahali Spoken": ["ISO 639-6 entity"], "Paharia-Santali": ["ISO 639-6 entity"], "Karmali": ["ISO 639-6 entity"], "Turi": ["ISO 639-6 entity"], "Turi Spoken": ["ISO 639-6 entity"], "Raigarh": ["ISO 639-6 entity", "ISO 639-6 entity"], "Sambalpur": ["ISO 639-6 entity"], "Mundari": ["ISO 639-6 entity"], "Mundari Written": ["ISO 639-6 entity"], "Mundari Written Bengali Script": ["ISO 639-6 entity"], "Mundari Written Devanagari Script": ["ISO 639-6 entity"], "Mundari Spoken": ["ISO 639-6 entity"], "Hasada": ["ISO 639-6 entity"], "Latar": ["ISO 639-6 entity"], "Naguri": ["ISO 639-6 entity"], "Kera": ["ISO 639-6 entity", "A language of Chad and Cameroon."], "Ho": ["A language of India"], "Ho Written": ["ISO 639-6 entity"], "Ho Written Varang Kshiti Script": ["ISO 639-6 entity"], "Ho Written Oriya Script": ["ISO 639-6 entity"], "Ho Written Devanagari Script": ["ISO 639-6 entity"], "Ho Spoken": ["ISO 639-6 entity"], "Chaibasa- Thakurmunda": ["ISO 639-6 entity"], "Lanka-Kol": ["ISO 639-6 entity"], "Lohari-Mundari": ["ISO 639-6 entity"], "Bhumij": ["A Mundari language spoken by the Bhumij people in the Indian states of West Bengal, Orissa and Jharkhand."], "Bhumij Spoken": ["ISO 639-6 entity"], "Kisan-Bhumij": ["ISO 639-6 entity"], "Kurmi": ["ISO 639-6 entity"], "Parse-Bhumij": ["ISO 639-6 entity"], "Rahiya": ["ISO 639-6 entity"], "Korwa": ["ISO 639-6 entity"], "Korwa Spoken": ["ISO 639-6 entity"], "Ernga": ["ISO 639-6 entity"], "Singli": ["ISO 639-6 entity"], "Majhi-Korwa": ["ISO 639-6 entity"], "Asuri": ["A language of India."], "Brijia": ["A dialect of the Asuri language."], "Koranti": ["ISO 639-6 entity"], "Bijori": ["A language of India"], "Koda": ["A language of India."], "Koda Spoken": ["ISO 639-6 entity"], "Khaira": ["ISO 639-6 entity"], "Mirdha-Kora": ["ISO 639-6 entity"], "Bankara": ["ISO 639-6 entity"], "Birbhum": ["ISO 639-6 entity"], "Dhangon": ["ISO 639-6 entity"], "Birhor": ["A language of India."], "Birhor Spoken": ["The spoken Birhor language and its dialects."], "Hazaribagh": ["A dialect of the Birhor language.", "ISO 639-6 entity"], "Singbhum": ["A dialect of the Birhor language."], "Ranchi": ["A dialect of the Birhor language."], "Koraku": ["A language of India."], "Agariya": ["A language of India."], "South Munda": ["ISO 639-6 entity"], "South Munda Central Cluster": ["ISO 639-6 entity"], "Kharia": ["A language of India."], "Kharia Spoken": ["ISO 639-6 entity"], "Dhelki-Kharia": ["ISO 639-6 entity"], "Dudh-Kharia": ["ISO 639-6 entity"], "Mirdha-Kharia": ["ISO 639-6 entity"], "Juang": ["A language of India."], "Koraput Munda": ["ISO 639-6 entityVariedad de la lengua munda hablada en Koraput, India."], "Sora-Gorum": ["ISO 639-6 entity"], "Sora-Juray Cluster": ["ISO 639-6 entity"], "Sora": ["ISO 639-6 entity"], "Sora Written": ["Written forms of the Sora language."], "Sora Written Latin Script": ["A written form of the Sora language."], "Sora Written Telugu Script": ["ISO 639-6 entity"], "Sora Spoken": ["ISO 639-6 entity"], "Ganjam": ["ISO 639-6 entity"], "Koraput": ["A dialect of Sora language spoken in Koraput, India.", "A town and a District in the Indian state of Orissa, India."], "Phulbani": ["ISO 639-6 entity"], "Lodhi": ["A language of India.", "ISO 639-6 entity"], "Lodhi Spoken": ["ISO 639-6 entity"], "Juray": ["A language of India"], "Juray Spoken": ["Dialects of the juray language of India."], "Gorum Cluster": ["ISO 639-6 entity"], "Parenga": ["ISO 639-6 entity"], "Parenga Spoken": ["ISO 639-6 entity"], "Gutob- Remo-Gta": ["ISO 639-6 entity"], "Gutob-Remo Cluster": ["ISO 639-6 entity"], "Bodo Gadaba": ["Variety of Koraput Munda language spoken in India.", "A language of India."], "Bodo Gadaba Written": ["ISO 639-6 entity"], "Bodo Gadaba Written Oriya Script": ["ISO 639-6 entity"], "Bodo Gadaba Spoken": ["ISO 639-6 entity"], "Munda Orissa Gadaba": ["A dialect of the Bodo Gadaba language."], "Munda Andhra Gadaba": ["A dialect of the Bodo Gadaba language."], "Gudwa": ["A dialect of the Bodo Gadaba language."], "Sodia": ["A dialect of the Bodo Gadaba language."], "Bondo": ["A language spoken by the Bonod tribe, mainly in the Indian State of Orissa."], "Bondo Spoken": ["ISO 639-6 entity"], "Upper Bondo": ["A dialect of Bondo."], "Lower Bondo": ["A dialect of Bondo."], "Gta' Cluster": ["ISO 639-6 entity"], "Gata ' ": ["ISO 639-6 entity"], "Gata ' Spoken": ["ISO 639-6 entity"], "Gta'-W": ["ISO 639-6 entity"], "Gta'-E": ["ISO 639-6 entity"], "Mon-Khmer": ["The autochthonous language family of Southeast Asia."], "Mon-Khmer North": ["ISO 639-6 entity"], "Khasi Cluster": ["ISO 639-6 entity"], "Khasi": ["A language of India and Bangladesh."], "Khasi Written": ["ISO 639-6 entity"], "Khasi Written Bengali Script": ["ISO 639-6 entity"], "Khasi Written Latin Script": ["Khasi language written with the Latin Script."], "Khasi Spoken": ["ISO 639-6 entity"], "Khasi Proper": ["ISO 639-6 entity"], "Bhoi-Khasi": ["ISO 639-6 entity"], "Lyng-Ngam": ["ISO 639-6 entity"], "Cherrapunji": ["ISO 639-6 entity"], "Khasi-War": ["ISO 639-6 entity"], "Khynrium": ["ISO 639-6 entity"], "Pnar": ["ISO 639-6 entity"], "Pnar Written": ["Written forms of the Pnar language."], "Pnar Written Latin Script": ["A written form of the Pnar language."], "Pnar Spoken": ["ISO 639-6 entity"], "Synteng": ["ISO 639-6 entity"], "Jaintia": ["ISO 639-6 entity"], "Jowai": ["ISO 639-6 entity"], "Nongtung": ["ISO 639-6 entity"], "War": ["A language of Bangladesh."], "War Written": ["The written versions of the War language."], "War Written Latin Script": ["The War language written with the Latin script."], "War Written Bengali Script": ["The War language written with the Bengali script."], "War Spoken": ["The War spoken language and its dialects."], "War-Jainita": ["A dialect of the War language."], "War-Khasi": ["A dialect of the War language."], "Palaungic-Khumic": ["ISO 639-6 entity"], "Palaungic": ["A branch of the Austro-Asiatic languages in which most languages lost the contrastive voicing of the ancestral Austro-Asiatic consonants, with the distinction often shifting to the following vowel."], "Palaungic-West": ["ISO 639-6 entity"], "Waic": ["ISO 639-6 entity"], "Wa\u2013Lawa Cluster": ["ISO 639-6 entity"], "Wa": ["ISO 639-6 entity"], "Wa Written": ["Written forms of the Wa language."], "Wa Written Latin Script": ["A written form of the Wa language."], "Wa Written Latin Script Prc Chinese Orthography": ["A written form of the Wa language."], "Wa Written Latin Script Mynama Revised Bible Orthography": ["A written form of the Wa language."], "Wa Written Latin Script Youngs Bible Orthography": ["A written form of the Wa language."], "Wa Written Latin Script Unified Wa Orthography": ["A written form of the Wa language."], "Wa Spoken": ["ISO 639-6 entity"], "Wa-Lon": ["ISO 639-6 entity"], "Wu": ["One of the major divisions of the Chinese language which is spoken in most of Zhejiang province, the municipality of Shanghai, southern Jiangsu province, as well as smaller parts of Anhui, Jiangxi, and Fujian provinces."], "Kentung-Wa": ["ISO 639-6 entity"], "Son": ["ISO 639-6 entity"], "Son Written": ["Written forms of the Son language."], "Son Written Latin Script": ["A written form of the Son language."], "Son Spoken": ["ISO 639-6 entity"], "En": ["A language of Viet Nam"], "En Written": ["The written forms of the En language."], "En Written Latin Script": ["A written form of the En language."], "En Spoken": ["ISO 639-6 entity"], "Parauk": ["ISO 639-6 entity"], "Parauk Written": ["Written forms of the Parauk language."], "Parauk Written Latin Script": ["A written form of the Parauk language."], "Parauk Spoken": ["ISO 639-6 entity"], "Parauk-Salween": ["ISO 639-6 entity"], "Parauk-Yunnan": ["ISO 639-6 entity"], "Western Lawa": ["An austro-asiatic language spoken by the Western Lawa people principally in the Yongle and Zhenkang counties in Yunnan Province in China, and also in the Chiang Mai and Maehongson provinces of northern Thailand."], "Western Lawa Written Thai Script": ["The Western Lawa language written with the Thai script."], "Western Lawa Spoken": ["The dialects of the Lawa language."], "La-Oor": ["A dialect of the Western Lawa language."], "La-Oor Spoken": ["A dialect of the La-Oor language."], "La": ["ISO 639-6 entity"], "La Written": ["ISO 639-6 entity"], "La Written Latin Script": ["La language written with the Latin Script."], "La Spoken": ["ISO 639-6 entity"], "Eastern Lawa": ["A Palaungic language spoken by the Eastern Lawa people in northern Thailand on the border between Chiang Mai and Chiang Rai provinces."], "Eastern Lawa Spoken": ["Dialects of the Eastern Lawa language."], "Phalo": ["ISO 639-6 entity"], "Phalo Written": ["ISO 639-6 entity"], "Phalo Written Thai Script": ["ISO 639-6 entity"], "Phalo Spoken": ["ISO 639-6 entity"], "Phang": ["ISO 639-6 entity"], "Phang Written": ["ISO 639-6 entity"], "Phang Written Thai Script": ["ISO 639-6 entity"], "Phang Spoken": ["ISO 639-6 entity"], "Bulang Cluster": ["A group of languages of the Mon-Khmer family spoken by the Bulang people in Yunnan Province in China, as well as in Eastern Shan State in Myanmar and outside Mae Sai City in Thailand."], "Blang": ["A language of China, Myanmar and Thailand."], "Blang Written": ["The written forms of the Blang language."], "Blang Written Latin Script": ["The Blang language written with the Latin script."], "Blang Written Latin Script Totham Model": ["The Blang language written with the Latin script Totham Model."], "Blang Written Latin Script Tolek Model": ["The Blang language written with the Latin script Tolek Model."], "Blang Spoken": ["The Blang spoken language and its dialects."], "Samtao": ["ISO 639-6 entity"], "Samtao Spoken": ["ISO 639-6 entity"], "Pham": ["ISO 639-6 entity"], "Pham Spoken": ["ISO 639-6 entity"], "Kem Degne": ["ISO 639-6 entity"], "Kem Degne Spoken": ["ISO 639-6 entity"], "K'ala": ["ISO 639-6 entity"], "K'ala Spoken": ["ISO 639-6 entity"], "Kontoi": ["ISO 639-6 entity"], "Kontoi Spoken": ["ISO 639-6 entity"], "Puman": ["ISO 639-6 entity"], "Puman Spoken": ["ISO 639-6 entity"], "Angkuic Cluster": ["A group of Palaungic languages."], "Kiorr": ["An Angkuic language spoken by the Angku people near the common borders of Myanmar, China and Laos."], "Kiorr Spoken": ["Dialects of the Kiorr language."], "Kon Keu": ["A language of China."], "Kon Keu Spoken": ["ISO 639-6 entity"], "Mok": ["ISO 639-6 entity"], "Mok Spoken": ["ISO 639-6 entity"], "Pou-Ma": ["ISO 639-6 entity"], "Pou-Ma Spoken": ["ISO 639-6 entity"], "Hu": ["An Angkuic language spoken by the Hu people in the Xiaomengyang District of Jinghong County in Xishuangbanna Prefecture of Yunnan Province, China."], "Hu Spoken": ["Dialects of the hu language."], "Man Met": ["ISO 639-6 entity"], "Man Met Spoken": ["ISO 639-6 entity"], "Tai Loi": ["ISO 639-6 entity"], "Tai Loi Spoken": ["ISO 639-6 entity"], "Doi": ["ISO 639-6 entity", "ISO 639-6 entity"], "Doi Spoken": ["ISO 639-6 entity"], "Monglwe": ["ISO 639-6 entity"], "Monglwe Spoken": ["ISO 639-6 entity"], "Lamet Khamet Cluster": ["ISO 639-6 entity"], "Con": ["A language of Laos."], "Con Spoken": ["Variants of the Con language used in oral communication."], "Lamet": ["ISO 639-6 entity"], "Lamet Spoken": ["ISO 639-6 entity"], "Upper'-Lamet": ["ISO 639-6 entity"], "Lower'-Lamet": ["ISO 639-6 entity"], "Khamet": ["ISO 639-6 entity"], "Khamet Spoken": ["ISO 639-6 entity"], "Palaungic East": ["ISO 639-6 entity"], "Palaung-Riang": ["ISO 639-6 entity"], "Palaung Cluster": ["ISO 639-6 entity"], "Pale Palaung": ["ISO 639-6 entity"], "Pale Palaung Written ": ["ISO 639-6 entity"], "Pale Palaung Spoken": ["ISO 639-6 entity"], "Raojin": ["ISO 639-6 entity"], "Kalaw": ["ISO 639-6 entity"], "Pale-N": ["ISO 639-6 entity"], "Pale-S": ["ISO 639-6 entity"], "Shwe Palung": ["ISO 639-6 entity"], "Shwe Palung Spoken": ["ISO 639-6 entity"], "Shwe-W": ["ISO 639-6 entity"], "Shwe-E": ["ISO 639-6 entity"], "Da'ang": ["ISO 639-6 entity"], "Rumai Palaung": ["ISO 639-6 entity"], "Rumai Palaung Spoken": ["ISO 639-6 entity"], "Rumai-W": ["ISO 639-6 entity"], "Rumai-E": ["ISO 639-6 entity"], "Manton": ["ISO 639-6 entity"], "Nam-Hsan": ["ISO 639-6 entity"], "Rianglang Cluster ": ["ISO 639-6 entity"], "Riang (Myanmar) ": ["ISO 639-6 entity"], "Riang (Myanmar) Spoken": ["ISO 639-6 entity"], "Riang-Lang-W": ["ISO 639-6 entity"], "Riang-Lang-E": ["ISO 639-6 entity"], "Yinchia": ["ISO 639-6 entity"], "Danau": ["An Eastern Palaungic language spoken by the Danau people in central areas of Shan State and the northern part of Kayah State in Myanmar."], "Danau Spoken": ["Dialects of the Danau language."], "Khumic": ["ISO 639-6 entity"], "Bit": ["A language of the Khao language group spoken in Laos and China."], "Bit Spoken": ["Dialects of the Bit language."], "Nam-Tha": ["A dialect of the Bit language."], "Boun-Neua": ["A dialect of the Bit language."], "Kha-Bit-N": ["A dialect of the Bit language."], "Khao": ["The Khao group of languages spoken in Vietnam."], "Khao Spoken": ["The variants of the Khao language used for oral communication."], "Mal-Khmu\u2019": ["ISO 639-6 entity"], "Khmu\u2019 Cluster": ["ISO 639-6 entity"], "Khmu": ["A Khmuic language spoken by the Khmu people, primarily in the northern Laos region, as well as in Vietnam, China, Myanmar and Thailand."], "Khmu Written": ["The written forms of the Khmu language."], "Khmu Written Duota Script": ["The Khmu language written with the Duota script."], "Khmu Written Shong Lue Yang Script": ["The Khmu language written with the Lue Yang script."], "Khmu Spoken": ["The dialects of the Khmu language."], "Khroong": ["A dialect of the Khmu language."], "Lyy": ["A dialect of the Khmu language."], "Rok": ["A dialect of the Khmu language."], "U": ["ISO 639-6 entity"], "U Spoken": ["ISO 639-6 entity"], "Yuan": ["ISO 639-6 entity", "A script used for three living languages: Northern Thai (that is, Kam Mueang), Tai L\u00fc and Kh\u00fcn."], "Luang-Prabang": ["ISO 639-6 entity", "ISO 639-6 entity"], "Sayabury": ["ISO 639-6 entity"], "Khuen": ["A Khmuic language spoken by the Khuen people mainly in Luang Namtha and Oudomxai provinces in north-west Laos and in nearby areas of south-west China.", "An aboriginal ethnic group of Laos."], "Khuen Spoken": ["The dialects of the Khuen language."], "O\u2019du": ["ISO 639-6 entity"], "Mal Cluster": ["ISO 639-6 entity"], "Mal": ["ISO 639-6 entity"], "Mal Spoken": ["ISO 639-6 entity"], "Madi": ["ISO 639-6 entity", "A language of Papua New Guinea."], "Kha-Tin": ["ISO 639-6 entity"], "Phai": ["ISO 639-6 entity"], "Phai Spoken": ["ISO 639-6 entity"], "Nan-Phai": ["ISO 639-6 entity"], "Phai-E": ["ISO 639-6 entity"], "Lua'": ["ISO 639-6 entity"], "Lua' Spoken": ["ISO 639-6 entity"], "Lua'-Pua": ["ISO 639-6 entity"], "Lua'-E": ["ISO 639-6 entity"], "Pray 3": ["ISO 639-6 entity"], "Pray 3 Spoken": ["ISO 639-6 entity"], "Pray-Thung-Chang": ["ISO 639-6 entity"], "Pray-Pua": ["ISO 639-6 entity"], "Yumbri-Mlabri Cluster": ["ISO 639-6 entity"], "Mlabri": ["ISO 639-6 entity"], "Yumbri": ["ISO 639-6 entity"], "Xinh-Mul Cluster": ["ISO 639-6 entity"], "Puoc": ["ISO 639-6 entity"], "Puoc Spoken": ["ISO 639-6 entity"], "Puok-Lai-Chau": ["ISO 639-6 entity"], "Puok-Moc-Chau": ["ISO 639-6 entity"], "Puok-Phu-Yen": ["ISO 639-6 entity"], "Puok-Yen-Chau": ["ISO 639-6 entity"], "Phong-Kniang": ["ISO 639-6 entity"], "Kh\u00e1ng": ["A language of Viet Nam."], "Kh\u00e1ng Spoken": ["The dialects of the Kh\u00e1ng language."], "Khang-Clau": ["A dialect of the Kh\u00e1ng language."], "Khang-Ai": ["A dialect of the Kh\u00e1ng language."], "Mang": ["ISO 639-6 entity", "ISO 639-6 entity"], "Mang Spoken": ["ISO 639-6 entity"], "Mang-E": ["ISO 639-6 entity"], "Mang-N": ["ISO 639-6 entity"], "Mang-W": ["ISO 639-6 entity"], "Viet-Muong": ["ISO 639-6 entity"], "Viet-Muong Group Iii Cluster": ["ISO 639-6 entity"], "Muong": ["ISO 639-6 entity"], "Muong Spoken": ["ISO 639-6 entity"], "Muong-A": ["ISO 639-6 entity"], "Thang": ["ISO 639-6 entity"], "Wang": ["ISO 639-6 entity"], "Mol": ["ISO 639-6 entity"], "Mual": ["ISO 639-6 entity"], "Moi": ["ISO 639-6 entity"], "Boi-Bi": ["ISO 639-6 entity"], "Ao-Ta": ["ISO 639-6 entity"], "Muong-S": ["ISO 639-6 entity"], "Ngu\u00f4n": ["ISO 639-6 entity"], "Ngu\u00f4n Spoken": ["ISO 639-6 entity"], "Ngu\u00f4n-E": ["ISO 639-6 entity"], "Ngu\u00f4n-W": ["ISO 639-6 entity"], "Kha-Tong-Luang": ["ISO 639-6 entity"], "Kha-Tong-Luang Spoken": ["ISO 639-6 entity"], "Bo (Laos) ": ["ISO 639-6 entity"], "Bo (Laos) Spoken": ["The dialects of the Bo language (Laos)."], "Bo-W": ["ISO 639-6 entity"], "Bo-E": ["ISO 639-6 entity"], "May Spoken": ["ISO 639-6 entity"], "May-Phuc-Trach": ["ISO 639-6 entity"], "May-E": ["ISO 639-6 entity"], "Viet-Muong Group I Cluster": ["ISO 639-6 entity"], "Chut": ["ISO 639-6 entity"], "Chut Spoken": ["ISO 639-6 entity"], "Sach": ["ISO 639-6 entity"], "Sach Spoken": ["ISO 639-6 entity"], "Arem": ["A language of Viet Nam and Laos."], "Arem Spoken": ["The dialects of the Arem language."], "Arem-E": ["A dialect of the Arem language."], "Arem-W": ["A dialect of the Arem language."], "Aheu": ["A language of Thailand and Laos."], "Aheu Spoken": ["Dialects of the Aheu language."], "Maleng": ["ISO 639-6 entity"], "Maleng Spoken": ["ISO 639-6 entity"], "Hareme": ["ISO 639-6 entity"], "Kha Pong": ["ISO 639-6 entity"], "Malang": ["ISO 639-6 entity"], "Malieng": ["ISO 639-6 entity"], "Pakatan": ["ISO 639-6 entity"], "Viet-Muong Group II Cluster": ["ISO 639-6 entity"], "Hung": ["A language of Laos and Viet Nam.", "A dialect of the Iu Mien language."], "Hung Spoken": ["Dialects of the Hung language."], "Dan Lai": ["A dialect of the Hung language."], "Ly Ha": ["A dialect of the Hung language."], "Poong": ["ISO 639-6 entity"], "Toum": ["ISO 639-6 entity"], "Tho": ["ISO 639-6 entity"], "Uy-L\u00f4": ["ISO 639-6 entity"], "Mon": ["ISO 639-6 entity", "ISO 639-6 entity"], "Kh\u00f4ng-Kh\u00eang": ["ISO 639-6 entity"], "Viet-Muong Group IV Cluster": ["ISO 639-6 entity"], "Vietnamese Written": ["Written forms of the Vietnamese language."], "Vietnamese Written Ch\u0169-N\u00f4m Script": ["ISO 639-6 entity"], "Vietnamese Written Ch\u0169-Nho Script": ["ISO 639-6 entity"], "Vietnamese Written Latin Pre-Modern Script": ["A written form of the Vietnamese language."], "Vietnamese Written Latin Qu\u00f4c-Ngu Script": ["A written form of the Vietnamese language."], "Haiphong": ["ISO 639-6 entity"], "Saigon": ["ISO 639-6 entity", "A river located in southern Vietnam that rises near Phum Daung in southeastern Cambodia, and flows south and south-southeast for about 140 miles (225 km) to the Mekong Delta."], "Mekong": ["ISO 639-6 entity"], "Vietnamese Central Spoken": ["ISO 639-6 entity"], "Hu\u00ea": ["ISO 639-6 entity"], "Ngh\u00ea An": ["ISO 639-6 entity"], "Qu\u0103ng Nam": ["ISO 639-6 entity"], "Palyu Cluster": ["ISO 639-6 entity"], "Bolyu": ["ISO 639-6 entity"], "Bogan": ["A language of China."], "Mon-Khmer-East": ["ISO 639-6 entity"], "Katuic": ["ISO 639-6 entity"], "Katuic West": ["ISO 639-6 entity"], "So-Br\u0169 Cluster": ["ISO 639-6 entity"], "S\u00f4": ["ISO 639-6 entity"], "S\u00f4 Spoken": ["ISO 639-6 entity"], "So-Trong": ["ISO 639-6 entity"], "So-Slouy": ["ISO 639-6 entity"], "So-Phong": ["ISO 639-6 entity"], "Eastern Bru": ["A language of Laos, Thailand and Viet Nam."], "Eastern Bru Spoken": ["Dialects of the Eastern Bru language."], "Bru Kok Sa-At": ["A dialect of the Eastern Bru language."], "Bru Dong Sen Keo": ["A dialect of the Eastern Bru language."], "So-Tri": ["ISO 639-6 entity"], "So-Tri Spoken": ["ISO 639-6 entity"], "So-Tri-E": ["ISO 639-6 entity"], "So-Tri-W": ["ISO 639-6 entity"], "Western Bru": ["A language of Thailand."], "Mangkong": ["ISO 639-6 entity"], "Khua": ["ISO 639-6 entity"], "Khua Spoken": ["ISO 639-6 entity"], "Khua-E": ["ISO 639-6 entity"], "Khua-W": ["ISO 639-6 entity"], "Kaleu": ["ISO 639-6 entity"], "Quang-Tri": ["ISO 639-6 entity"], "Quang-Tri Spoken": ["ISO 639-6 entity"], "Chali": ["ISO 639-6 entity", "ISO 639-6 entity"], "Kaleu-A": ["ISO 639-6 entity"], "Savannakhet": ["ISO 639-6 entity"], "Sakon-Nakhon": ["ISO 639-6 entity"], "Leung": ["ISO 639-6 entity"], "Sapoin": ["ISO 639-6 entity"], "Kuy-Suei Cluster": ["ISO 639-6 entity"], "Kuy": ["ISO 639-6 entity"], "Kuy Written": ["ISO 639-6 entity"], "Kuy Written Thai Script": ["ISO 639-6 entity"], "Kuy Written Khymer Script": ["ISO 639-6 entity"], "Kuy Spoken": ["ISO 639-6 entity"], "Suai Chang": ["ISO 639-6 entity"], "Nheu": ["ISO 639-6 entity"], "Kuy Antra": ["ISO 639-6 entity"], "Kuy Anthua": ["ISO 639-6 entity"], "Kuy May": ["ISO 639-6 entity"], "Kuy Mlor": ["ISO 639-6 entity"], "Damrey": ["ISO 639-6 entity"], "Anlour": ["ISO 639-6 entity"], "O": ["ISO 639-6 entity", "Abbreviation of octavo, a book size."], "Kuy Kraol": ["ISO 639-6 entity"], "Na-Nhyang": ["ISO 639-6 entity"], "Nyeu": ["ISO 639-6 entity"], "Katuic East": ["ISO 639-6 entity"], "Kataang": ["A language of Laos."], "Ta'oih-Tong Cluster": ["ISO 639-6 entity"], "Upper Ta'oih": ["ISO 639-6 entity"], "Upper Ta'oih Written ": ["ISO 639-6 entity"], "Upper Ta' Oih Spoken": ["ISO 639-6 entity"], "Pasoom": ["ISO 639-6 entity"], "Kamuan'": ["ISO 639-6 entity"], "Palee'n": ["ISO 639-6 entity"], "Leem": ["ISO 639-6 entity"], "Ha'ang ": ["ISO 639-6 entity"], "Lower Ta\u2019 Oih": ["ISO 639-6 entity"], "Lower Ta\u2019 Oih Spoken": ["ISO 639-6 entity"], "Tong-A": ["ISO 639-6 entity"], "Han-Tong'": ["ISO 639-6 entity"], "Ir": ["A language of Laos."], "Ir Spoken": ["Dialects of the Ir language."], "Ong": ["ISO 639-6 entity"], "Ngeq- Nkriang Cluster": ["ISO 639-6 entity"], "Alak": ["A language of Laos."], "Ngeq": ["ISO 639-6 entity"], "Khlor": ["A language of Laos."], "Pac\u00f4h Phu\u00f4ng Cluster": ["ISO 639-6 entity"], "Pacoh": ["ISO 639-6 entity"], "Pa-C\u00f4h-A": ["ISO 639-6 entity"], "Pa-Hi": ["ISO 639-6 entity"], "Phuong": ["ISO 639-6 entity"], "Katu Thap Cluster": ["ISO 639-6 entity"], "Eastern Katu": ["A language of Viet Nam."], "Western Katu": ["A language of Laos."], "Western Katu Spoken": ["The dialects of the Western Katu language."], "Khat": ["A dialect of the Western Katu language."], "Attouat": ["A dialect of the Western Katu language."], "Teu": ["A dialect of the Western Katu language."], "Thap": ["ISO 639-6 entity"], "Tareng": ["ISO 639-6 entity"], "Kasseng": ["A language of Laos"], "Bahnaric": ["ISO 639-6 entity"], "Bahnaric North": ["ISO 639-6 entity"], "Bahnaric North East": ["ISO 639-6 entity"], "Takua": ["ISO 639-6 entity"], "Takua-A": ["ISO 639-6 entity"], "Qang-Tin-Katu": ["ISO 639-6 entity"], "Langya": ["ISO 639-6 entity"], "Cua-Kayong Cluster": ["ISO 639-6 entity"], "Kayong": ["A language of Viet Nam."], "Cua": ["A language of Viet Nam"], "Cua-A": ["A dialect of the Cua language."], "Kor": ["A dialect of the Cua language."], "Dot": ["A dialect of the Cua language.", "ISO 639-6 entity", "A female first name."], "Yot": ["A dialect of the Cua language."], "Traw": ["A dialect of the Cua language."], "Dong": ["A dialect of the Cua language.", "ISO 639-6 entity", "A dialect of the bacama language."], "Bong-Miew": ["ISO 639-6 entity"], "Katua": ["A language of Viet Nam."], "Bahnaric North West": ["ISO 639-6 entity"], "Jeh-Halang Cluster": ["ISO 639-6 entity"], "Trieng": ["ISO 639-6 entity"], "Talieng": ["ISO 639-6 entity"], "Jeh": ["A Bahnaric language of Viet Nam and Laos."], "Jeh-Bri-La": ["A dialect of the Jeh language."], "Jeh-Mang-Ram": ["A dialect of the Jeh language."], "Halang": ["A Bahnaric language spoken in the southern Laotian province of Attapu and in the neighboring Kon Tum Province of Vietnam."], "Halang-E": ["A dialect of the Halang language."], "Halang-W": ["A dialect of the Halang language."], "Halang Doan": ["A language of Viet Nam and Laos."], "Rengao": ["ISO 639-6 entity"], "Rengao-W": ["ISO 639-6 entity"], "Sedang-Rengao": ["ISO 639-6 entity"], "Bahnar-Rengao": ["ISO 639-6 entity"], "Sedang Todrah Cluster": ["ISO 639-6 entity"], "Sedang Cluster": ["ISO 639-6 entity"], "Sedang": ["ISO 639-6 entity"], "Sedang-Roteang": ["ISO 639-6 entity"], "Sedang-C": ["ISO 639-6 entity"], "Greater-Sedang": ["ISO 639-6 entity"], "Dak-Sut-Sedang": ["ISO 639-6 entity"], "Kotua-Sedang": ["ISO 639-6 entity"], "Kon-Hring-Sedang": ["ISO 639-6 entity"], "Todrah-Monom Cluster": ["ISO 639-6 entity"], "Todrah": ["ISO 639-6 entity"], "Todrah-Modra": ["ISO 639-6 entity"], "Didrah": ["ISO 639-6 entity"], "Monom": ["ISO 639-6 entity"], "Hre": ["A language of Viet Nam"], "Hre-A": ["A dialect of the Hre language."], "Rabah": ["A dialect of the Hre language."], "Creq": ["A dialect of the Hre language."], "Bahnaric Central": ["ISO 639-6 entity"], "Alak-S": ["ISO 639-6 entity"], "Lamam": ["A language of Cambodia."], "Tampuan": ["ISO 639-6 entity"], "Bahnar": ["A language of Viet Nam."], "Bahnar Spoken": ["The Bahnar spoken language and its dialects."], "Bahnar-A": ["A dialect of the Bahnar language."], "Tolo": ["A dialect of the Bahnar language."], "Golar": ["A dialect of the Bahnar language."], "Akalong": ["A dialect of the Bahnar language."], "Olong": ["A dialect of the Bahnar language."], "Bahnar-Bonom": ["A dialect of the Bahnar language."], "Romam": ["ISO 639-6 entity"], "Kaco\u2019": ["ISO 639-6 entity"], "Bahnaric West": ["ISO 639-6 entity"], "Laven": ["A language of Laos."], "Lave": ["A language of Laos, Cambodia and Viet Nam."], "Lave Spoken": ["ISO 639-6 entity"], "Nyahon Prouac Cluster": ["ISO 639-6 entity"], "Nyaheun": ["ISO 639-6 entity"], "Prouac": ["ISO 639-6 entity"], "Brao Kravet Cluster": ["ISO 639-6 entity"], "Brao": ["A language of Laos, Cambodia and Viet Nam.", "ISO 639-6 entity"], "Sou": ["ISO 639-6 entity"], "Kravet": ["ISO 639-6 entity"], "Kru\u2019ng 2": ["ISO 639-6 entity"], "Oi The Cluster": ["ISO 639-6 entity"], "Oy": ["ISO 639-6 entity"], "Oy Spoken": ["ISO 639-6 entity"], "Riyao": ["ISO 639-6 entity"], "Tamal-Euy": ["ISO 639-6 entity"], "Kranyeu": ["ISO 639-6 entity"], "Inn-Tea": ["ISO 639-6 entity"], "The": ["ISO 639-6 entity"], "Sok": ["ISO 639-6 entity"], "Sapuan": ["ISO 639-6 entity"], "Jeng": ["A language of Laos."], "Bahnaric South": ["ISO 639-6 entity"], "Mnong": ["ISO 639-6 entity"], "Southern Central Mnong Cluster": ["ISO 639-6 entity"], "Central Mnong": ["A language of Viet Nam and Cambodia."], "Central Mnong Spoken": ["The dialects of the Central Mnong language."], "Preh": ["A dialect of the Central Mnong language."], "Bu-Nar": ["A dialect of the Central Mnong language."], "Bu-Rung": ["A dialect of the Central Mnong language."], "Dih-Bri": ["A dialect of the Central Mnong language."], "Pnong-A": ["A dialect of the Central Mnong language."], "Biat": ["ISO 639-6 entity"], "Eastern Mnong Cluster": ["ISO 639-6 entity"], "Eastern Mnong": ["ISO 639-6 entity"], "Eastern Mnong Spoken": ["ISO 639-6 entity"], "Gar": ["ISO 639-6 entity", "ISO 639-6 entity"], "Kwanh": ["ISO 639-6 entity"], "Rolom": ["ISO 639-6 entity"], "Kil": ["ISO 639-6 entity"], "Southern Mnong": ["ISO 639-6 entity"], "Southern Mnong Spoken": ["ISO 639-6 entity"], "Bu-Nong": ["ISO 639-6 entity"], "Prang": ["ISO 639-6 entity"], "Ra-Ong": ["ISO 639-6 entity"], "Bu-Dip": ["ISO 639-6 entity"], "Bu-Sre": ["ISO 639-6 entity"], "Sre Mnong": ["ISO 639-6 entity"], "Koho": ["A language of Viet Nam."], "Koho Spoken": ["The dialects of the Koho language."], "Lat": ["A dialect of the Koho language."], "Tring": ["A dialect of the Koho language."], "Sre-S": ["A dialect of the Koho language."], "Maa ": ["A language of Viet Nam"], "Maa Spoken": ["ISO 639-6 entity"], "Kalop": ["ISO 639-6 entity"], "Sop": ["ISO 639-6 entity"], "Layza": ["ISO 639-6 entity"], "Rion": ["ISO 639-6 entity"], "Nop": ["ISO 639-6 entity"], "Tala": ["ISO 639-6 entity", "ISO 639-6 entity"], "Kodu": ["ISO 639-6 entity"], "Pru": ["ISO 639-6 entity"], "Bu-Lach": ["ISO 639-6 entity"], "Stieng Chrau": ["ISO 639-6 entity"], "Bulo Stieng": ["ISO 639-6 entity"], "Bulo Stieng Written": ["ISO 639-6 entity"], "Bulo Stieng Written Latin Script": ["A written form of the Bulo Stieng language."], "Bulo Stieng Spoken": ["ISO 639-6 entity"], "Bu-Lo": ["ISO 639-6 entity"], "Bu-Deh": ["ISO 639-6 entity"], "Budeh Stieng": ["ISO 639-6 entity"], "Budeh Stieng Spoken": ["ISO 639-6 entity"], "Chrau": ["A language of Viet Nam"], "Chrau Written": ["ISO 639-6 entity"], "Chrau Written Latin Script": ["Chrau language written with the Latin Script."], "Chrau Spoken": ["ISO 639-6 entity"], "Jro": ["ISO 639-6 entity"], "Mro": ["ISO 639-6 entity"], "Dor": ["ISO 639-6 entity"], "Chrau-Prang": ["ISO 639-6 entity"], "Voqtwaq": ["ISO 639-6 entity"], "Vajieng": ["ISO 639-6 entity"], "Chalah": ["ISO 639-6 entity"], "Chalun": ["ISO 639-6 entity"], "Tamun": ["ISO 639-6 entity"], "Kraol": ["ISO 639-6 entity"], "Kraol Spoken": ["ISO 639-6 entity"], "Khmer Cluster": ["ISO 639-6 entity"], "Central Khmer": ["An austroasiatic language spoken primarily in Cambodia where it is an official language, and in the nearby regions of Vietnam."], "Khmae Historical": ["ISO 639-6 entity"], "Khmae Historical W Pallava, Proto-Cambodian": ["ISO 639-6 entity"], "Central Khmer Written": ["The written forms of the Khmer language."], "Central Khmer Written Khmer Script": ["The Central Khmer language written with the Khmer script."], "Central Khmer Spoken": ["The dialects of the Central Khmer language."], "Khmae-Formal": ["ISO 639-6 entity"], "Khmae-General": ["ISO 639-6 entity"], "Phnom-Penh": ["ISO 639-6 entity"], "Khmae-Battambang": ["ISO 639-6 entity"], "Kmae-Cardamom": ["ISO 639-6 entity"], "Northern Khmer": ["Dialect of the Khmer language spoken by the Khmer native to the Thai provinces of Surin, Sisaket, Buriram and Roi Et."], "Northern Khmer Written Khmer Script": ["The Northern Khmer language written with the Khmer script."], "Northern Khmer Spoken": ["Variants of the Northern Khmer language used in oral communication."], "Buriram": ["A dialect of the Northern Khmer language spoken in the Buriram Province of Thailand."], "Surin": ["A dialect of the Northern Khmer language spoken in the Surin Province of Thailand."], "Sri-Saket": ["A dialect of the Northern Khmer language spoken in the Sisaket Province of Thailand."], "Khmeer-W": ["ISO 639-6 entity"], "Khmeer-W Spoken": ["ISO 639-6 entity"], "Prachinburi": ["ISO 639-6 entity"], "Chanthaburi": ["ISO 639-6 entity"], "Trat": ["ISO 639-6 entity"], "Kmer-Krom": ["ISO 639-6 entity"], "Pearic": ["A group of languages of the Eastern Mon-Khmer branch of the Austroasiatic language family, spoken by Pear people living in western Cambodia and southeastern Thailand."], "Pearic West": ["ISO 639-6 entity"], "Samre Cluster": ["ISO 639-6 entity"], "Samre": ["ISO 639-6 entity"], "Somray": ["ISO 639-6 entity"], "Somray Spoken": ["ISO 639-6 entity"], "Phum-Ta-Sanh": ["ISO 639-6 entity"], "Phum-Pra-Moi": ["ISO 639-6 entity"], "Chong Cluster": ["ISO 639-6 entity"], "Chong": ["A Western Pearic language spoken by the Chong people in Pursat Province in north-western Cambodia and in several villages in the Chanthaburi Province and Trat Province in Thailand."], "Chong Spoken": ["Dialects of the Chong language."], "Sa\u2019och": ["ISO 639-6 entity"], "Suoy": ["ISO 639-6 entity"], "Suoy Spoken": ["ISO 639-6 entity"], "Angrak": ["ISO 639-6 entity"], "Pearic Eastern": ["ISO 639-6 entity"], "Pear": ["ISO 639-6 entity"], "Mon-Khmer-South": ["ISO 639-6 entity"], "Monic Cluster": ["ISO 639-6 entity"], "Mon Written": ["ISO 639-6 entity"], "Mon Written Pallava Script": ["ISO 639-6 entity"], "Mon Written Mon Script": ["ISO 639-6 entity"], "Mon Written Myanmar Script": ["ISO 639-6 entity"], "Mon-Te": ["ISO 639-6 entity"], "Mataban": ["ISO 639-6 entity"], "Moulmein": ["ISO 639-6 entity"], "Taungnyo": ["ISO 639-6 entity"], "Mon-Nya": ["ISO 639-6 entity"], "Kachanaburi": ["ISO 639-6 entity"], "Krung-Thep-W": ["ISO 639-6 entity"], "Lopburi": ["ISO 639-6 entity"], "Krung-Thep-N": ["ISO 639-6 entity"], "Talaing": ["ISO 639-6 entity"], "Mon-Tang": ["ISO 639-6 entity"], "Nyahkur": ["A language of Thailand."], "Nyahkur Spoken": ["Dialects of the Nyahkur language."], "Phetchabun": ["A dialect of the Nyahkur language.", "ISO 639-6 entity"], "Nakhon-Ratchasima": ["A dialect of the Nyahkur language."], "Korat": ["A dialect of the Nyahkur language."], "Alsian": ["ISO 639-6 entity"], "Semang-Jah Hut": ["ISO 639-6 entity"], "Semang Senoic": ["ISO 639-6 entity"], "Semang": ["ISO 639-6 entity"], "Semang Western Cluster": ["ISO 639-6 entity"], "Tonga (Thailand) Spoken": ["ISO 639-6 entity"], "Trang": ["ISO 639-6 entity", "ISO 639-6 entity"], "Phatthalung": ["ISO 639-6 entity", "ISO 639-6 entity"], "Mos": ["ISO 639-6 entity"], "Satun": ["ISO 639-6 entity"], "Kensiu": ["A language of Malaysia (Peninsular) and Thailand."], "Kensiu Spoken": ["ISO 639-6 entity"], "Kensiu-Batu'": ["ISO 639-6 entity"], "Kensiu-Siong": ["ISO 639-6 entity"], "Kensiu-Pemsed": ["ISO 639-6 entity"], "Sakai": ["ISO 639-6 entity"], "Semang-A": ["ISO 639-6 entity"], "Mendi": ["ISO 639-6 entity"], "Monik": ["ISO 639-6 entity"], "Ngok-Pa": ["ISO 639-6 entity"], "Orang-Bukit": ["ISO 639-6 entity"], "Orang-Liar": ["ISO 639-6 entity"], "Mengo": ["ISO 639-6 entity"], "Tiong": ["ISO 639-6 entity"], "Mawas": ["ISO 639-6 entity"], "Belubn": ["ISO 639-6 entity"], "Ijoh": ["ISO 639-6 entity"], "Jarum": ["ISO 639-6 entity"], "Jeher": ["ISO 639-6 entity"], "Kedah": ["ISO 639-6 entity"], "Plus": ["ISO 639-6 entity"], "Ulu-Selama": ["ISO 639-6 entity"], "Meni'-Kaien": ["ISO 639-6 entity"], "Kintaq": ["A language of Malaysia (Peninsular) and Thailand"], "Kintaq Spoken": ["ISO 639-6 entity"], "Kintaq-Nakil": ["ISO 639-6 entity"], "Semang East Cluster": ["ISO 639-6 entity"], "Jehai": ["ISO 639-6 entity", "A language of Malaysia (Peninsular)."], "Jehai Spoken": ["ISO 639-6 entity"], "Jehai-A ": ["ISO 639-6 entity"], "Pangan": ["ISO 639-6 entity"], "Batek-Teh": ["ISO 639-6 entity"], "Minriq": ["ISO 639-6 entity"], "Batek": ["A language of peninsular Malaysia.", "An indigenous people (currently numbering about 750) who live in the rainforest of peninsular Malaysia."], "Batek Spoken": ["The dialects of the Batek language."], "Batek-Teq": ["A dialect of the Batek language."], "Batek-Iga'": ["A dialect of the Batek language."], "Batek-Hapen": ["A dialect of the Batek language."], "Tomo": ["A dialect of the Batek language."], "Kleb": ["A dialect of the Batek language."], "Deq": ["ISO 639-6 entity"], "Deq Spoken": ["ISO 639-6 entity"], "Nong": ["ISO 639-6 entity"], "Nong Spoken": ["ISO 639-6 entity"], "Mintil": ["ISO 639-6 entity"], "Mintil Spoken": ["ISO 639-6 entity"], "Chewong": ["A language of Malaysia (Peninsular)."], "Chewong Spoken": ["ISO 639-6 entity"], "Beri": ["ISO 639-6 entity"], "Chuba": ["ISO 639-6 entity"], "Kled": ["ISO 639-6 entity"], "Senoic": ["ISO 639-6 entity"], "Senoic North": ["ISO 639-6 entity"], "Lanoh Semnam Cluster": ["ISO 639-6 entity"], "Lanoh": ["ISO 639-6 entity"], "Lanoh Spoken": ["ISO 639-6 entity"], "Lanoh-A": ["ISO 639-6 entity"], "Sab\u00fcm": ["ISO 639-6 entity"], "Sab\u00fcm Spoken": ["ISO 639-6 entity"], "Jengjeng": ["ISO 639-6 entity"], "Semnam": ["ISO 639-6 entity"], "Semnam Spoken": ["ISO 639-6 entity"], "Temiar": ["ISO 639-6 entity"], "Temiar Spoken": ["ISO 639-6 entity"], "Grik": ["ISO 639-6 entity"], "Kenderong": ["ISO 639-6 entity"], "Kenering": ["ISO 639-6 entity"], "Po-Klo": ["ISO 639-6 entity"], "Sungai-Piah": ["ISO 639-6 entity"], "Tanjong-Rambutan": ["ISO 639-6 entity"], "Tembe'": ["ISO 639-6 entity"], "Ulu-Kinta": ["ISO 639-6 entity"], "Lanoh-Kobak": ["ISO 639-6 entity"], "Seroq": ["ISO 639-6 entity"], "Pie": ["ISO 639-6 entity"], "Semai": ["ISO 639-6 entity"], "Semai Written": ["ISO 639-6 entity"], "Semai Spoken": ["ISO 639-6 entity"], "Jelai": ["ISO 639-6 entity"], "Orang-Tanjong": ["ISO 639-6 entity"], "Sungkai": ["ISO 639-6 entity"], "Perak 1": ["ISO 639-6 entity"], "Perak 2": ["ISO 639-6 entity"], "Cameron": ["ISO 639-6 entity"], "Telom": ["ISO 639-6 entity"], "Bidor": ["ISO 639-6 entity"], "Betau": ["ISO 639-6 entity"], "Lipis": ["ISO 639-6 entity"], "Bil": ["ISO 639-6 entity"], "Ulu-Kampar": ["ISO 639-6 entity"], "Southern Aslian": ["ISO 639-6 entity"], "Semaq Beri": ["ISO 639-6 entity"], "Semaq Beri Spoken": ["ISO 639-6 entity"], "Pahang": ["ISO 639-6 entity"], "Trengganu": ["ISO 639-6 entity"], "Kelantan": ["ISO 639-6 entity"], "Semelai": ["ISO 639-6 entity"], "Semelai Spoken": ["ISO 639-6 entity"], "Semaq-Palong": ["ISO 639-6 entity"], "Chiong-Biduanda": ["ISO 639-6 entity"], "Temoq": ["ISO 639-6 entity"], "Temoq Spoken": ["ISO 639-6 entity"], "Besisi": ["ISO 639-6 entity"], "Besisi Spoken": ["ISO 639-6 entity"], "Kuala-Langot-Besisi": ["ISO 639-6 entity"], "Malakka-Besisi": ["ISO 639-6 entity"], "Negre-Sembilan-Besisi": ["ISO 639-6 entity"], "Ulu-Langat": ["ISO 639-6 entity"], "Orang-Bukit-Besisi": ["ISO 639-6 entity"], "Selangor-Sakai": ["ISO 639-6 entity"], "Betise'": ["ISO 639-6 entity"], "Sisi": ["ISO 639-6 entity"], "Jah Hut": ["A language of Malaysia (Peninsular)."], "Jah Hut Spoken": ["ISO 639-6 entity"], "Kerdau": ["ISO 639-6 entity"], "Krau": ["ISO 639-6 entity"], "Ketiar-Krau": ["ISO 639-6 entity"], "Kuala-Tembeling": ["ISO 639-6 entity"], "Pulau-Guai": ["ISO 639-6 entity"], "Ulu-Ceres": ["ISO 639-6 entity"], "Ulu-Tembeling": ["ISO 639-6 entity"], "Nicobar Island Cluster": ["ISO 639-6 entity"], "Car Nicobarese": ["A language of India."], "Car Nicobarese Written": ["Written forms of the Car Nicobarese language."], "Car Nicobarese Written Devanagari Script": ["ISO 639-6 entity"], "Car Nicobarese Written Latin Script": ["A written form of the Car Nicobarese language."], "Car Nicobarese Spoken": ["The dialects of the Car Nicobarese language."], "Chaura": ["A language of India."], "Chaura Written": ["ISO 639-6 entity"], "Chaura Written Devanagari Script": ["ISO 639-6 entity"], "Chaura Written Latin Script": ["A written form of the Chaura language."], "Chaura Spoken": ["Dialects of the Chaura language."], "Teressa": ["ISO 639-6 entity"], "Teressa Spoken": ["ISO 639-6 entity"], "Pauhut": ["ISO 639-6 entity"], "Central Nicobarese": ["ISO 639-6 entity"], "Central Nicobarese Written": ["Written forms of the Central Nicobarese language."], "Central Nicobarese Written Latin Script": ["A written form of the Central Nicobarese language."], "Central Nicobarese Written Devanagari Script": ["ISO 639-6 entity"], "Central Nicobarese Spoken": ["The dialects of the Central Nicobarese language."], "Tehnu-Katchal": ["A dialect of the Central Nicobarese language."], "Southern Nicobarese": ["ISO 639-6 entity"], "Southern Nicobarese Spoken": ["ISO 639-6 entity"], "Milo": ["ISO 639-6 entity"], "Tafwap- Temain": ["ISO 639-6 entity"], "Great Nicobar": ["ISO 639-6 entity"], "Little Nicobar": ["ISO 639-6 entity"], "Condul": ["ISO 639-6 entity"], "Sambelong": ["ISO 639-6 entity"], "Shom Peng": ["ISO 639-6 entity"], "Shom Peng Written": ["Written forms of the Shom Peng language."], "Shom Peng Written Devanagari Script": ["ISO 639-6 entity"], "Shom Peng Written Latin Script": ["A written form of the Shom Peng language."], "Shom Peng Spoken": ["ISO 639-6 entity"], "Austro-Tai": ["ISO 639-6 entity"], "Daic Phylozone": ["ISO 639-6 entity"], "Li Kam Tai": ["ISO 639-6 entity"], "Be Kam Tai": ["ISO 639-6 entity"], "Lakkia-Kam-Tai": ["ISO 639-6 entity"], "Kam Tai": ["A branch of the Tai-Kadai language family regrouping languages spoken in southern China."], "Tai": ["A sub-group of the Tai-Kadai languages family."], "Tai Southwestern Cluster": ["A sub-group of the Tai languages."], "Ahom": ["An extinct language of India."], "Ahom Written": ["The written versions of the Ahom language."], "Ahom Written Ahom Script": ["Ahom language written with the Ahom Script."], "Ahom Spoken": ["The dialects of the Ahom language."], "Aiton": ["A language spoken by the Aiton people in the Jorhat and Karbi-Aleng districts of Assam State in north-east India."], "Aiton Written": ["Written versions of the Aiton language."], "Aiton Written Tai Script": ["Aiton language written with the Tai Script."], "Aiton Spoken": ["The dialects of the Aiton language."], "Phake": ["ISO 639-6 entity"], "Khamyang": ["A Tai language spoken by the Khamiyang people in the Lohit and Tirap districts of the state of Arunachal Pradesh, north-east of India.", "A tribal group found primarily in Tinsukia district of Assam as well as adjacent parts of Arunachal Pradesh."], "Khamyang Written Tai Script": ["The Khamyang language written with the Tai script."], "Khamyang Spoken": ["Dialects of the Khamyang language."], "Khamti": ["A Tai language spoken by the Khamti people in the area where the three countries of Myanmar, India and China meet.", "A sub-group of the Shan people found in the Sagaing Division, Hkamti District in northwestern Burma as well as Lohit district of Arunachal Pradesh in India."], "Khamti Written": ["Written forms of the Khamti language."], "Khamti Written Lik-Tai Script": ["A written form of the Khamti language using the Lik-Tai Script."], "Khamti Spoken": ["Dialects of the Khamti language."], "Khampti": ["ISO 639-6 entity"], "Khampti-Shan": ["ISO 639-6 entity"], "Khamti-SE": ["ISO 639-6 entity"], "Khamti-NE": ["ISO 639-6 entity"], "Turung": ["ISO 639-6 entity"], "Shan": ["A Tai language spoken by the Shan people in Shan State, Burma."], "Shan Spoken": ["ISO 639-6 entity"], "Ngio": ["ISO 639-6 entity"], "Tai Mao": ["ISO 639-6 entity"], "Tai Long": ["ISO 639-6 entity"], "Tai Long Spoken": ["ISO 639-6 entity"], "Kokant-Shan": ["ISO 639-6 entity"], "Kh\u00fcn": ["A language of Myanmar and Thailand."], "Tai N\u00fca": ["ISO 639-6 entity"], "Tai N\u00fca Spoken": ["ISO 639-6 entity"], "Shan-T'ou": ["ISO 639-6 entity"], "Tai-Neua-W": ["ISO 639-6 entity"], "Tai-Neua-E": ["ISO 639-6 entity"], "L\u00fc": ["A Tai language spoken by the Lu people in China, Laos, Myanmar, Thailand and Viet Nam."], "L\u00fc Written": ["ISO 639-6 entity"], "L\u00fc Written Old Lanna Script": ["ISO 639-6 entity"], "L\u00fc Written New Tai L\u00fc Script": ["ISO 639-6 entity"], "L\u00fc Spoken": ["ISO 639-6 entity"], "L\u00fc-A": ["ISO 639-6 entity"], "Sipsong-Panna-Dai": ["ISO 639-6 entity"], "Yong": ["ISO 639-6 entity"], "Tai Ya": ["A language of China."], "Tai Ya Written": ["The written versions of the Tai Ya language."], "Tai Ya Written Tai Yai Script": ["The Tai Ya language written with the Tai Yai script."], "Tai Ya Spoken": ["The Tai Ya spoken language and its dialects."], "Tai-Chung": ["A dialect of the Tai Ya language."], "Northern Thai": ["A Tai language spoken by the Thai Yuan people living in Lannathai, Thailand, as well as in northwestern Laos."], "Northern Thai Written": ["The written forms of the Northern Thai language."], "Northern Thai Spoken": ["The dialects of the Northern Thai language."], "Tai Wang": ["A dialect of the Northern Thai language."], "Bandu": ["A dialect of the Northern Thai language."], "Chiang-Rai": ["A dialect of the Northern Thai language."], "Mae-Hong": ["A dialect of the Northern Thai language."], "Hot": ["A dialect of the Northern Thai language."], "Chiang-Mai": ["A dialect of the Northern Thai language."], "Lampang": ["A dialect of the Northern Thai language."], "Phayao": ["A dialect of the Northern Thai language."], "Nan": ["A dialect of the Northern Thai language."], "Lanna-Frontier": ["A dialect of the Northern Thai language."], "Phuan": ["ISO 639-6 entity"], "Phuan Spoken": ["ISO 639-6 entity"], "Udo-Thani": ["ISO 639-6 entity"], "Loei": ["ISO 639-6 entity"], "Phichit": ["ISO 639-6 entity"], "Phuan-SW": ["ISO 639-6 entity"], "Phuan-SE": ["ISO 639-6 entity"], "Thai Written": ["The written forms of the Thai language."], "Thai Written Sukothai Script": ["A written form of the Thai language."], "Thai Written Thai Script": ["A written form of the Thai language."], "Southern Thai": ["ISO 639-6 entity"], "Southern Thai Spoken": ["ISO 639-6 entity"], "Chumphon": ["ISO 639-6 entity"], "Surat-Thani": ["ISO 639-6 entity"], "Phuket": ["ISO 639-6 entity"], "Nakhon-Sithammarat": ["ISO 639-6 entity"], "Songkhla": ["ISO 639-6 entity"], "Ko-Samui": ["ISO 639-6 entity"], "Tak-Bai": ["ISO 639-6 entity"], "Thai-Islam": ["ISO 639-6 entity"], "Chumphon-Islam": ["ISO 639-6 entity"], "Ranong-Islam": ["ISO 639-6 entity"], "Surat-Thani-Islam": ["ISO 639-6 entity"], "Phangnga-Islam": ["ISO 639-6 entity"], "Phuket-Islam": ["ISO 639-6 entity"], "Krabi-Islam": ["ISO 639-6 entity"], "Trang-Islam": ["ISO 639-6 entity"], "Nakhon-Sithammarat-Islam": ["ISO 639-6 entity"], "Phatthalung-Islam": ["ISO 639-6 entity"], "Songkhla-Islam": ["ISO 639-6 entity"], "Satun-Islam": ["ISO 639-6 entity"], "Northeastern Thai": ["ISO 639-6 entity"], "Northeastern Thai Spoken": ["ISO 639-6 entity"], "Isan North": ["ISO 639-6 entity"], "Kaleung": ["ISO 639-6 entity"], "Isan South": ["ISO 639-6 entity"], "Nyaw": ["ISO 639-6 entity"], "Nyaw Spoken": ["ISO 639-6 entity"], "Khorat": ["ISO 639-6 entity"], "Roi": ["ISO 639-6 entity"], "Ubon-Rachathani": ["ISO 639-6 entity"], "Lao Written": ["The written forms of the Lao language."], "Lao Written Tham Script": ["The Lao language written with the Tham script."], "Lao Writen Lao Script": ["The Lao language written with the Lao script."], "Lao Written Lao Script Vientiane Model": ["The Lao language written with the Lao script Vientiane model."], "Lao Spoken": ["The dialects of the Lao language."], "Lao-Formal": ["ISO 639-6 entity"], "Lao-V": ["ISO 639-6 entity"], "Savan-Nakhet": ["ISO 639-6 entity"], "Lao-Pakse": ["ISO 639-6 entity"], "Wiang-Jang": ["ISO 639-6 entity"], "Rong-Kong": ["ISO 639-6 entity"], "Lum-Lao": ["ISO 639-6 entity"], "Lao-Kao": ["ISO 639-6 entity"], "Phu Tai": ["ISO 639-6 entity"], "Tai Dam": ["A Tai language of Viet Nam, Laos and Thailand."], "Tai Dam Written": ["Written forms of the Tai Dam language."], "Tai Dam Written Tai Dam Script": ["ISO 639-6 entity"], "Tai Dam Spoken": ["The Tai Dam spoken language and its dialects."], "Tai-Dam-A": ["ISO 639-6 entity"], "Jinping-Dai": ["ISO 639-6 entity"], "Tai-Muoi": ["A dialect of the Tai Dam language."], "Thai Song": ["ISO 639-6 entity"], "Thai Song Written": ["ISO 639-6 entity"], "Thai Song Written Tai Song Script": ["ISO 639-6 entity"], "Thai Song Spoken": ["ISO 639-6 entity"], "T\u00e0y Tac": ["ISO 639-6 entity"], "T\u00e0y Tac Written": ["ISO 639-6 entity"], "T\u00e0y Tac Written Tai Script": ["ISO 639-6 entity"], "T\u00e0y Tac Spoken": ["ISO 639-6 entity"], "Tai D\u00f2n": ["ISO 639-6 entity"], "Tai D\u00f2n Written": ["ISO 639-6 entity"], "Tai D\u00f2n Written Tai Script": ["ISO 639-6 entity"], "Tai D\u00f2n Spoken": ["ISO 639-6 entity"], "Tai-Kao-E": ["ISO 639-6 entity"], "Tai-Kao-W": ["ISO 639-6 entity"], "Tai-Kao-Ne": ["ISO 639-6 entity"], "Tai Daeng": ["ISO 639-6 entity"], "Tai Daeng Written": ["ISO 639-6 entity"], "Tai Daeng Written Tai Script": ["ISO 639-6 entity"], "Tai Daeng Spoken": ["ISO 639-6 entity"], "Tai-Deng-E": ["ISO 639-6 entity"], "Tai-Deng-W": ["ISO 639-6 entity"], "Tai Hang Tong": ["ISO 639-6 entity"], "Tai Hang Tong Spoken": ["ISO 639-6 entity"], "Tai Thanh": ["ISO 639-6 entity"], "Tai Thanh Spoken": ["ISO 639-6 entity"], "Tai Do": ["ISO 639-6 entity"], "Tai Do Spoken": ["ISO 639-6 entity"], "Tay Khang": ["ISO 639-6 entity"], "Tay Khang Spoken": ["ISO 639-6 entity"], "T\u00e0y Sa Pa": ["ISO 639-6 entity"], "T\u00e0y Sa Pa Spoken": ["ISO 639-6 entity"], "Tai Central Cluster": ["A sub-group of the Tai languages."], "Zuang": ["ISO 639-6 entity"], "Southern Zuang": ["ISO 639-6 entity"], "Southern Zuang Written": ["Written forms of the Southern Zuang language."], "Southern Zuang Written Traditional Chinese Script": ["ISO 639-6 entity"], "Southern Zuang Written Latin Script": ["A written form of the Southern Zuang language."], "Southern Zuang Spoken": ["ISO 639-6 entity"], "Yongnan": ["ISO 639-6 entity"], "Zuojiang": ["ISO 639-6 entity"], "Teching": ["ISO 639-6 entity"], "Yenkuang": ["ISO 639-6 entity"], "Wen-Ma": ["ISO 639-6 entity"], "Ts'\u00fcn-Lao": ["ISO 639-6 entity"], "Cao Lan": ["ISO 639-6 entity"], "Cao Lan Spoken": ["The dialects of the Cao Lan language."], "Tien-Pao": ["A dialect of the Cao Lan language."], "Yung-Chun": ["A dialect of the Cao Lan language."], "T\u00e0y": ["ISO 639-6 entity"], "Nung (Viet Nam)": ["ISO 639-6 entity"], "Nung (Viet Nam) Spoken": ["ISO 639-6 entity"], "N\u00f9ng Inh": ["ISO 639-6 entity"], "Xu\u00f2ng": ["ISO 639-6 entity"], "Giang": ["ISO 639-6 entity"], "N\u00f9ng An": ["ISO 639-6 entity"], "N\u00f9ng Phan Sl\u00ecnh": ["ISO 639-6 entity"], "N\u00f9ng Ch\u00e1o": ["ISO 639-6 entity"], "N\u00f9ng L\u00f2i": ["ISO 639-6 entity"], "N\u00f9ng Q\u00fay Rin": ["ISO 639-6 entity"], "Khen L\u00e0i": ["ISO 639-6 entity"], "Northern Tai Cluster": ["ISO 639-6 entity"], "Northern Zhuang": ["A language of China."], "Northern Zhuang Written": ["The written versions of the Northern Zhuang language."], "Northern Zhuang Written Chinese Script": ["The Northern Zhuang language written with the Chinese script."], "Northern Zhuang Latin Script": ["The Northern Zhuang language written with the Latin script."], "Northern Zhuang Spoken": ["The Northern Zhuang spoken language and its dialects."], "Yongbei": ["A dialect of the Northern Zhuang language."], "Liujiang": ["A dialect of the Northern Zhuang language."], "Youjiang": ["A dialect of the Northern Zhuang language."], "Guibian": ["A dialect of the Northern Zhuang language."], "Quibei": ["A dialect of the Northern Zhuang language."], "Hongshuihe": ["A dialect of the Northern Zhuang language."], "Lianshang": ["A dialect of the Northern Zhuang language."], "Saek": ["ISO 639-6 entity"], "Saek Spoken": ["ISO 639-6 entity"], "Khammouan": ["ISO 639-6 entity"], "Na Kadok": ["ISO 639-6 entity"], "Saek-Laos": ["ISO 639-6 entity"], "Saek-Thailand": ["ISO 639-6 entity"], "Tai M\u00e8ne": ["ISO 639-6 entity"], "Giay": ["ISO 639-6 entity"], "Nhang": ["ISO 639-6 entity"], "Nhang Spoken": ["ISO 639-6 entity"], "Nhang-Yunnan": ["ISO 639-6 entity"], "Nhang-Vietnam": ["ISO 639-6 entity"], "Gui-Zhou": ["ISO 639-6 entity"], "Gui-Zhou Spoken": ["ISO 639-6 entity"], "Gui-Zhou-Ne": ["ISO 639-6 entity"], "Gui-Zhou-Sw": ["ISO 639-6 entity"], "Biay": ["ISO 639-6 entity"], "Ce-Heng": ["ISO 639-6 entity"], "Zhong-Jia": ["ISO 639-6 entity"], "Zhong-Jia Spoken": ["The dialects of the Zhong-Jia language."], "Zhong-Jia-A": ["A dialect of the Zhong-Jia language."], "Yi-Jia": ["A dialect of the Zhong-Jia language."], "Yi-Ren": ["A dialect of the Zhong-Jia language."], "I-Jen": ["A dialect of the Zhong-Jia language."], "Kui": ["A dialect of the Zhong-Jia language.", "A language of India."], "Du-Shan": ["ISO 639-6 entity"], "Gui-Yang": ["ISO 639-6 entity"], "Ling-Y\u00fcn": ["ISO 639-6 entity"], "Lung-An": ["ISO 639-6 entity"], "Pa Di": ["ISO 639-6 entity"], "Pu Ko": ["ISO 639-6 entity"], "Phu-La": ["ISO 639-6 entity"], "Po-Se": ["ISO 639-6 entity"], "Tian-Zhu": ["ISO 639-6 entity"], "Tien-Pa": ["ISO 639-6 entity"], "Tu-Di": ["ISO 639-6 entity"], "Thu Lao": ["ISO 639-6 entity"], "Xi-Lin": ["ISO 639-6 entity"], "Huang-Chuang": ["ISO 639-6 entity"], "Qian-Jang": ["ISO 639-6 entity"], "Ching-Hsi": ["ISO 639-6 entity"], "Hung-Ho": ["ISO 639-6 entity"], "Kuei-Pien": ["ISO 639-6 entity"], "Kuei-Pien Spoken": ["ISO 639-6 entity"], "Kuan": ["ISO 639-6 entity", "An aboriginal ethnic group of Laos."], "Kuan Spoken": ["ISO 639-6 entity"], "Lin-Chiang": ["ISO 639-6 entity"], "Lin-Chiang Spoken": ["ISO 639-6 entity"], "Ma Spoken": ["ISO 639-6 entity"], "Qiu-Bei": ["ISO 639-6 entity"], "Qiu-Bei Spoken": ["ISO 639-6 entity"], "Te": ["ISO 639-6 entity"], "Te Spoken": ["ISO 639-6 entity"], "Tso-Chiang": ["ISO 639-6 entity"], "Tso-Chiang Spoken": ["ISO 639-6 entity"], "T'u": ["ISO 639-6 entity"], "T'u Spoken": ["ISO 639-6 entity"], "Wen": ["ISO 639-6 entity"], "Wen Spoken": ["ISO 639-6 entity"], "Yen": ["ISO 639-6 entity"], "Yen Spoken": ["ISO 639-6 entity"], "Wu-Ming": ["ISO 639-6 entity"], "Wu-Ming Spoken": ["ISO 639-6 entity"], "Yu-Chiang": ["ISO 639-6 entity"], "Yu-Chiang Spoken": ["The dialects of the Yu-Chiang language."], "Yung-Nan": ["ISO 639-6 entity"], "Yung-Nan Spoken": ["The dialects of the Yung-Nan language."], "Yung-Pei": ["ISO 639-6 entity"], "Bouyei": ["ISO 639-6 entity"], "Bouyei Written": ["Written forms of the Bouyei language."], "Bouyei Written Chinese Script": ["ISO 639-6 entity"], "Bouyei Written Latin Script": ["A written form of the Bouyei language."], "Bouyei Spoken": ["ISO 639-6 entity"], "Qiannan": ["ISO 639-6 entity"], "Qianzhong": ["ISO 639-6 entity"], "Qianxi": ["ISO 639-6 entity"], "Buyi-Miao": ["ISO 639-6 entity"], "Miao-Dong": ["ISO 639-6 entity"], "Yoy": ["ISO 639-6 entity"], "Yoy Spoken": ["The dialects of the Yoy language."], "Tai Unclassified": ["ISO 639-6 entity"], "Tai Pao": ["ISO 639-6 entity"], "Tai Hongjin": ["ISO 639-6 entity"], "Tai Hongjin Spoken": ["ISO 639-6 entity"], "Rien": ["ISO 639-6 entity"], "Rien Spoken": ["ISO 639-6 entity"], "Kam Sui Cluster": ["A branch of the Tai\u2013Kadai languages spoken by the Kam\u2013Sui peoples in eastern Guizhou, western Hunan, and northern Guangxi in southern China."], "Northern Dong": ["A language of China."], "Northern Dong Written": ["Written forms of the Northern Dong language."], "Northern Dong Written Chinese Script": ["ISO 639-6 entity"], "Northern Dong Written Latin Script": ["A written form of the Northern Dong language."], "Northern Dong Spoken": ["Dialect of Northern Dong."], "Cao Miao": ["A Tai-Kadai language spoken in the Liping County (Guizhou), the Tongdao Dong Autonomous County (Hunan) and the Sanjiang Dong Autonomous County (Guangxi) in China."], "Cao Miao Written": ["The written versions of the Cao Miao language."], "Cao Miao Written Chinese Script": ["The Cao Miao language written with the Chinese script."], "Cao Miao Written Latin Script": ["The Cao Miao language written with the Latin script."], "Cao Miao Spoken": ["The Cao Miao spoken language and its dialects."], "Southern Dong": ["A language of China."], "Southern Dong Written": ["Written forms of the Southern Dong language."], "Southern Dong Written Chinese Script": ["ISO 639-6 entity"], "Southern Dong Written Latin Script": ["A written form of the Southern Dong language."], "Southern Dong Spoken": ["ISO 639-6 entity"], "San-Jia-Nge": ["ISO 639-6 entity"], "Mulam": ["ISO 639-6 entity"], "Mulam Written": ["ISO 639-6 entity"], "Mulam Written Chinese Script": ["ISO 639-6 entity"], "Mulam Spoken": ["ISO 639-6 entity"], "Cham": ["ISO 639-6 entity"], "Cham Spoken": ["ISO 639-6 entity"], "Mak (China)": ["ISO 639-6 entity"], "Mak (China) Spoken": ["ISO 639-6 entity"], "Chi": ["ISO 639-6 entity"], "Chi Spoken": ["ISO 639-6 entity"], "Hwa": ["ISO 639-6 entity"], "Hwa Spoken": ["ISO 639-6 entity"], "Lyo": ["ISO 639-6 entity"], "Lyo Spoken": ["ISO 639-6 entity"], "Mo-Chia": ["ISO 639-6 entity"], "Mo-Chia Spoken": ["ISO 639-6 entity"], "Sui ": ["ISO 639-6 entity"], "Sui Spoken": ["ISO 639-6 entity"], "Anyang": ["ISO 639-6 entity"], "Sui-Chia": ["ISO 639-6 entity"], "San-Tung": ["ISO 639-6 entity"], "Ai Cham": ["A language spoken in Libo County, Qiannan Buyei and Miao Autonomous Prefecture, Guizhou Province, People's Republic of China."], "Ai Cham Spoken": ["The dialects of the Ai Cham language."], "Di\u2019e": ["A dialect of the Ai Cham language."], "Boyao": ["A dialect of the Ai Cham language."], "Maonan": ["ISO 639-6 entity"], "Maonan Written": ["ISO 639-6 entity"], "Maonan Written Chinese Script": ["ISO 639-6 entity"], "Maonan Spoken": ["ISO 639-6 entity"], "Biao": ["A language of China."], "Biao Written": ["ISO 639-6 entity"], "Biao Written Chinese Script": ["ISO 639-6 entity"], "Biao Spoken": ["ISO 639-6 entity"], "T'en": ["ISO 639-6 entity"], "T'en Spoken": ["ISO 639-6 entity"], "Hedong": ["ISO 639-6 entity"], "Hexi": ["ISO 639-6 entity"], "Huishui": ["ISO 639-6 entity"], "Yang-Huang": ["ISO 639-6 entity"], "Rau": ["ISO 639-6 entity"], "Kang": ["A language of Laos and China."], "Lakkia Cluster": ["ISO 639-6 entity"], "Lakkia": ["A language of China."], "Lingao": ["ISO 639-6 entity"], "Lingao Spoken": ["ISO 639-6 entity"], "Lingao-A": ["ISO 639-6 entity"], "Vo": ["ISO 639-6 entity"], "Chengmai": ["ISO 639-6 entity"], "Qiongshan": ["ISO 639-6 entity"], "Li-Laqua": ["ISO 639-6 entity"], "Hlai": ["ISO 639-6 entity"], "Hlai Spoken": ["ISO 639-6 entity"], "Ka-Mau": ["ISO 639-6 entity"], "Zhongsha": ["ISO 639-6 entity"], "Heita": ["ISO 639-6 entity"], "Baocheng": ["ISO 639-6 entity"], "Xifang": ["ISO 639-6 entity"], "Ha": ["ISO 639-6 entity"], "Ha Spoken": ["The dialects of the Ha language."], "Luo-Hua": ["A dialect of the Ha language."], "Ha-Yan": ["A dialect of the Ha language."], "Bao-Xian": ["A dialect of the Ha language."], "Qi": ["ISO 639-6 entity"], "Qi Spoken": ["ISO 639-6 entity"], "Tong-Shi": ["ISO 639-6 entity"], "Bao-Ting": ["ISO 639-6 entity"], "Qian-Dui": ["ISO 639-6 entity"], "Ben-Di": ["ISO 639-6 entity"], "Ben-Di Spoken": ["ISO 639-6 entity"], "Zwn": ["ISO 639-6 entity"], "Bai-Sha": ["ISO 639-6 entity"], "Yuamen": ["ISO 639-6 entity"], "Moi-Fau": ["ISO 639-6 entity"], "Jiamao": ["A language of China."], "Cun": ["A language of China."], "Laqua Laha Cluster": ["ISO 639-6 entity"], "Qabiao": ["ISO 639-6 entity", "A Tai-Kadai language of Viet Nam and China."], "Laha (Vietnam)": ["ISO 639-6 entity"], "Lati Gelao Cluster": ["ISO 639-6 entity"], "Lachi": ["ISO 639-6 entity"], "Li-Pute": ["ISO 639-6 entity"], "Li-Putcio": ["ISO 639-6 entity"], "Li-Puke": ["ISO 639-6 entity"], "Li-Puliongtco": ["ISO 639-6 entity"], "Li-Puti\u00f6": ["ISO 639-6 entity"], "Li-Pupi": ["ISO 639-6 entity"], "White Lachi": ["A language of Viet Nam."], "Gelao": ["A Tai\u2013Kadai language spoken by the Gelao people in southern China and northern Vietnam.", "A language of China."], "A\u2019ou": ["A dialect of the Gelao language spoken in west-central Guizhou, western Guangxi, southeastern Yunnan and northern Vietnam."], "Lo": ["ISO 639-6 entity"], "Qau": ["ISO 639-6 entity"], "Gu": ["ISO 639-6 entity"], "Hakei": ["ISO 639-6 entity"], "To": ["ISO 639-6 entity"], "Green Gelao": ["A language of Viet Nam"], "White Gelao": ["A language of Viet Nam."], "Red Gelao": ["A language of Viet Nam."], "Sanshong": ["ISO 639-6 entity"], "Anshun": ["ISO 639-6 entity"], "Kadai": ["ISO 639-6 entity", "A language of Indonesia (Maluku)."], "Yang-Biao Cluster": ["ISO 639-6 entity"], "Buyang": ["A language of China."], "Bu-Rong Cluster": ["ISO 639-6 entity"], "Yerong": ["ISO 639-6 entity"], "Baltic Phylum": ["A group of related languages belonging to the Indo-European language family and spoken mainly in areas extending east and southeast of the Baltic Sea in Northern Europe."], "Eastern Baltic Cluster": ["The eastern branch of a group of related languages belonging to the Indo-European language family and spoken mainly in areas extending east and southeast of the Baltic Sea in Northern Europe, including Galindian, Old Prussian, Sudovian and Skalvian."], "Suvalkietiskal": ["ISO 639-6 entity"], "Ietuvi\u0161kai-Formal": ["ISO 639-6 entity"], "Auk\u0161taichiai": ["A dialect of the Lithuanian language, spoken in the regions of Auk\u0161taitija, Dz\u016bkija and Suvalkija in Lithuania."], "Dzukai": ["ISO 639-6 entity"], "\u017demaichiai": ["ISO 639-6 entity"], "Latvian Spoken": ["Dialects of the Latvian language."], "Latvia\u0161u-Formal Spoken": ["ISO 639-6 entity"], "Patois Of Vidzeme": ["ISO 639-6 entity"], "Curonian": ["ISO 639-6 entity"], "Semigallian": ["ISO 639-6 entity", "An extinct language of the Baltic languages sub-family of Indo-European languages, spoken in the Northern part of Lithuania and Southern regions of Latvia."], "Latvia\u0161u-G": ["ISO 639-6 entity"], "Tamie\u0161u": ["ISO 639-6 entity"], "Latgale": ["ISO 639-6 entity"], "Prussian": ["An extinct Baltic language, once spoken by the inhabitants of Prussia in an area of what later became East Prussia (now north-eastern Poland and the Kaliningrad Oblast of Russia) and eastern parts of Pomerelia (some parts of the region East of the Vistula river).", "Of or relating to Prussia, Prussians, or the Prussian language.", "A person of Prussian nationality."], "Yotvingian": ["An extinct western Baltic language in Northeastern Europe."], "Curonia": ["An extinct language in the western branch of the Western Baltic Cluster, formerly spoken by the Scalovians around the city of Neman in Lithuania."], "Albanian Phylozone": ["ISO 639-6 entity"], "Gheg Cluster": ["ISO 639-6 entity"], "Gheg Albanian Written": ["Written forms of the Gheg language."], "Gheg Albanian Written Latin Script": ["A written form of the Gheg Albanian language."], "Gheg Albanian Written Turko-Arabic Script": ["ISO 639-6 entity"], "Gheg Albanian Spoken": ["Dialects of the Gheg Albanian language."], "Gheg-Formal": ["ISO 639-6 entity"], "Mati": ["ISO 639-6 entity"], "Kraja": ["ISO 639-6 entity"], "Ulqinj": ["ISO 639-6 entity"], "Dibra - Mirdita": ["ISO 639-6 entity"], "Gheg-NW": ["ISO 639-6 entity"], "Kosova": ["ISO 639-6 entity"], "Shkod\u00ebr": ["ISO 639-6 entity"], "Gheg-C": ["ISO 639-6 entity"], "Tiran\u00eb- Elbasan": ["ISO 639-6 entity"], "Mandrica": ["ISO 639-6 entity"], "Tosk Cluster": ["ISO 639-6 entity"], "Arbanasi-N": ["ISO 639-6 entity"], "Albanian Tosk": ["An Albanian language spoken in the south of Albania."], "Albanian Tosk Written": ["Written forms of the Albanian Tosk language."], "Albanian Tosk Written Hellenic Script": ["ISO 639-6 entity"], "Albanian Tosk Written Turko-Arabic Script": ["ISO 639-6 entity"], "Albanian Tosk Written Latin Script": ["A written form of the Albanian Tosk language."], "Albanian Tosk Spoken": ["Dialects of the Albanian Tosk language."], "Tosk-Formal": ["A dialect of the Albanian Tosk language."], "Tosk-W": ["A dialect of the Albanian Tosk language."], "Tosk-S": ["A dialect of the Albanian Tosk language."], "Tosk-E": ["A dialect of the Albanian Tosk language."], "Srem": ["A dialect of the Albanian Tosk language."], "Arbanasi-E": ["ISO 639-6 entity"], "Arvanitika Albanian": ["An Albanian dialect or language spoken by the Arvanites, a population group in Greece."], "Arvanitika Albanian Written": ["Written forms of the Arvanitika language."], "Arvanitika Albanian Written Latin Script": ["A written form of the Arvanitika Albanian language."], "Arvanitika Albanian Written Greek Script": ["ISO 639-6 entity"], "Arvanitika Albanian Spoken": ["ISO 639-6 entity"], "Viotia": ["ISO 639-6 entity"], "Attiki": ["ISO 639-6 entity"], "Salamina": ["ISO 639-6 entity"], "Evia": ["ISO 639-6 entity"], "Tosk-Ukraine": ["ISO 639-6 entity"], "Tosk-Ukraine Spoken": ["ISO 639-6 entity"], "Tosk-Anatolia": ["ISO 639-6 entity"], "Tosk-Anatolia Spoken": ["ISO 639-6 entity"], "Arb\u00ebresh\u00eb Albanian Written": ["The written forms of the Arb\u00ebresh\u00eb Albanian language."], "Arb\u00ebresh\u00eb Albanian Written Latin Script": ["The Arb\u00ebresh\u00eb Albanian language written with the Latin script."], "Arb\u00ebresh\u00eb Albanian Spoken": ["ISO 639-6 entity"], "Molise": ["ISO 639-6 entity"], "Apulia": ["ISO 639-6 entity", "A region in southeastern Italy bordering the Adriatic Sea in the east, the Ionian Sea to the southeast, and the Strait of \u00d2tranto and Gulf of Taranto in the south, by the regions of Molise to the north, Campania to the west, and Basilicata to the southwest."], "Basilicata": ["ISO 639-6 entity"], "Calabria": ["ISO 639-6 entity", "Region in southern Italy with a population of 2 million (in 2006), whose capital is Catanzaro"], "Sicilia": ["ISO 639-6 entity"], "Hellenic": ["ISO 639-6 entity", "Of or relating to Greece, the Greek people, or the Greek language."], "Attic Cluster": ["ISO 639-6 entity"], "Proto-Greek": ["Hypothetical language that is assumed to be the common ancestor of the Greek dialects."], "Mycenean Greek": ["ISO 639-6 entity"], "Mycenean Greek Written": ["ISO 639-6 entity"], "Mycenean Greek Written Linear B Script": ["ISO 639-6 entity"], "Ancient Greek": ["A historic language spoken widely with Greece as its centre"], "Ancient Greek Written": ["ISO 639-6 entity"], "Ancient Greek Written Ancient Greek Script": ["ISO 639-6 entity"], "Ancient Greek Spoken": ["Dialects of the Ancient Greek language."], "Aeolic": ["A linguistic term used to describe a set of rather archaic Greek sub-dialects, spoken mainly in Boeotia (a region in Central Greece), in Lesbos (an island close to Asia Minor) and in other Greek colonies."], "Arcadocypriot": ["ISO 639-6 entity"], "Attic": ["The prestige dialect of Ancient Greek that was spoken in Attica, which includes Athens."], "Doric": ["An ancient branch of the Greek language spoken in classical times in several regions including the southern and eastern Peloponnese, Crete, Rhodes and Macedon."], "Hellenistic Greek": ["ISO 639-6 entity"], "Hellenistic Greek Written": ["ISO 639-6 entity"], "Hellenistic Greek Written Ancient Greek Script": ["ISO 639-6 entity"], "Greek Written": ["Written forms of the Greek language."], "Greek Written Greek Script Polytonic Model": ["ISO 639-6 entity"], "Greek Written Greek Script Monotonic Model": ["ISO 639-6 entity"], "Greek Written Cyrillic Script": ["ISO 639-6 entity"], "Greek Spoken": ["Dialects of the Greek language."], "Kathar\u00e9vousa": ["ISO 639-6 entity"], "Dhimotiki": ["ISO 639-6 entity"], "Dhimotiki Spoken": ["ISO 639-6 entity"], "Dhimotiki-Hellas": ["ISO 639-6 entity"], "Dhimotiki-Kypros": ["ISO 639-6 entity"], "Athiniki": ["ISO 639-6 entity"], "Helleniki-Istanbul": ["ISO 639-6 entity"], "Helleniki-Rossiya": ["ISO 639-6 entity"], "Helleniki-Amerika": ["ISO 639-6 entity"], "Helleniki-Australia": ["ISO 639-6 entity"], "Helleniki-N": ["ISO 639-6 entity"], "Helleniki-N Spoken": ["ISO 639-6 entity"], "Ipiros": ["ISO 639-6 entity"], "Makedhonia-W": ["ISO 639-6 entity"], "Makedhonia-E": ["ISO 639-6 entity"], "Thraki": ["ISO 639-6 entity"], "Samothraki": ["ISO 639-6 entity"], "Limnos": ["ISO 639-6 entity"], "Voriai-Spoadhes": ["ISO 639-6 entity"], "Thessalia": ["ISO 639-6 entity"], "Evvoia-N": ["ISO 639-6 entity"], "Sterea": ["ISO 639-6 entity"], "Attica- Euboea": ["ISO 639-6 entity"], "Attica- Euboea Spoken": ["ISO 639-6 entity"], "Megara": ["ISO 639-6 entity"], "Euboea-C": ["ISO 639-6 entity"], "Helleniki-SW": ["ISO 639-6 entity"], "Helleniki-Sw Spoken": ["ISO 639-6 entity"], "I\u00f3nioi-Nisoi": ["ISO 639-6 entity"], "Peloponnisos": ["ISO 639-6 entity"], "Kritiki": ["ISO 639-6 entity"], "Kritiki Spoken": ["ISO 639-6 entity"], "Helleniki-SE": ["ISO 639-6 entity"], "Helleniki-Se Spoken": ["ISO 639-6 entity"], "Kikl\u00e1dhes": ["ISO 639-6 entity"], "Kh\u00edos": ["ISO 639-6 entity"], "Ikar\u00eda": ["ISO 639-6 entity"], "Spor\u00e1dhes-C": ["ISO 639-6 entity"], "Rhodos": ["ISO 639-6 entity"], "Carpathos": ["ISO 639-6 entity"], "Italiot": ["ISO 639-6 entity"], "Italiot Spoken": ["ISO 639-6 entity"], "Salentina": ["ISO 639-6 entity"], "Calabria-S": ["ISO 639-6 entity"], "Carg\u00e8se": ["ISO 639-6 entity"], "Pontic": ["A language of Greece and Turkey.", "A language family of the Caucasus."], "Pontic Written": ["Written forms of the Pontic language."], "Pontic Written Greek Script": ["ISO 639-6 entity"], "Pontic Written Latin Script": ["A written form of the Pontic language."], "Pontic Spoken": ["ISO 639-6 entity"], "Pirai\u00e9vs-Katerini": ["ISO 639-6 entity"], "America-Pontiki": ["ISO 639-6 entity"], "Cappadocian Greek": ["Joint Greco-Turkish language, formerly spoken in Cappadocia (now central Turkey), today there are speakers in central and northern Greece."], "Cappadocian Greek Written": ["Variants of the Cappadocian Greek language used in written communication."], "Cappadocian Greek Written Greek Script": ["ISO 639-6 entity"], "Cappadocian Greek Spoken": ["Variants of the Cappadocian Greek language used in oral communication."], "Sille": ["Dialect of Cappadocian."], "Cappadocian NE": ["ISO 639-6 entity"], "Sinasas": ["Dialect of Cappadocian."], "Potamia": ["Dialect of Cappadocian."], "Cappadocian SW": ["ISO 639-6 entity"], "Aravon": ["Dialect of Cappadocian."], "Gurzono": ["Dialect of Cappadocian."], "Fertek": ["Dialect of Cappadocian."], "Cappadocian SE": ["ISO 639-6 entity"], "Ula\u011fa\u00e7": ["Dialect of Cappadocian."], "Semendere": ["Dialect of Cappadocian."], "Farasiot": ["Dialect of Cappadocian."], "Cappadocian W": ["ISO 639-6 entity"], "Pharasa": ["Dialect of Cappadocian."], "Saracatsi": ["ISO 639-6 entity"], "Saracatsi Spoken": ["ISO 639-6 entity"], "Yevanic": ["The dialect of the Romaniotes, the group of Greek Jews whose existence in Greece is documented since the Hellenistic period. (source: Wikipedia)"], "Yevanic Written": ["ISO 639-6 entity"], "Yevanic Hebrew Script": ["ISO 639-6 entity"], "Yevanic Spoken": ["ISO 639-6 entity"], "Doric Cluster": ["ISO 639-6 entity"], "Tsakonian": ["ISO 639-6 entity"], "Tsakonian Written": ["ISO 639-6 entity"], "Tsakonian Written Greek Script": ["ISO 639-6 entity"], "Tsakonian Spoken": ["ISO 639-6 entity"], "Propontis Tskonian": ["ISO 639-6 entity"], "Kastanitas-Sitena": ["ISO 639-6 entity"], "Leonidhion-Prastos": ["ISO 639-6 entity"], "Basque Family": ["ISO 639-6 entity"], "Basque Written": ["The written form of the Basque language."], "Basque Written Latin Script": ["The Basque language written with the Latin script."], "Basque Spoken": ["ISO 639-6 entity"], "Avalan": ["ISO 639-6 entity"], "Roncalese": ["ISO 639-6 entity"], "Euskara-Formal": ["ISO 639-6 entity"], "Euskara-Formal Written": ["Written forms of the Euskara-Formal language."], "Euskara-Formal Written Latin Script Guipuzcoan Model": ["A written form of the Euskara-Formal language."], "Euskara-Formal. Spoken": ["ISO 639-6 entity"], "Bizkaiera": ["A dialect of the Basque language spoken mainly in Biscay, one of the provinces of the Basque Country of Spain."], "Bizkaiera Spoken": ["The Biscayan dialects of the Basque language."], "Marquina": ["A Biscayan dialect of the Basque language."], "Guernica": ["A Biscayan dialect of the Basque language."], "Mungu\u00eda": ["A Biscayan dialect of the Basque language."], "Nervi\u00f3n": ["A Biscayan dialect of the Basque language."], "Ibarra- Murua": ["A Biscayan dialect of the Basque language."], "Vergara": ["A Biscayan dialect of the Basque language."], "Gipuzkera": ["ISO 639-6 entity"], "Gipuzkera Spoken": ["ISO 639-6 entity"], "Deva": ["ISO 639-6 entity"], "Donostia": ["ISO 639-6 entity"], "Tolosa": ["ISO 639-6 entity"], "Alsasua": ["ISO 639-6 entity"], "Nafarrera-NW.": ["ISO 639-6 entity"], "Nafarrera-NW. Spoken": ["ISO 639-6 entity"], "Ir\u00fan-Oyarzun": ["ISO 639-6 entity"], "Bidasoa": ["ISO 639-6 entity"], "Araquil": ["ISO 639-6 entity"], "Nafarrera-S.": ["ISO 639-6 entity"], "Nafarrera-S. Spoken": ["ISO 639-6 entity"], "Ibaiz\u00e1bal": ["ISO 639-6 entity"], "Ozaeta": ["ISO 639-6 entity"], "Pamplona": ["ISO 639-6 entity"], "Arga": ["ISO 639-6 entity"], "Navarro-Labourdin Basque": ["A language of France."], "Navarro-Labourdin Basque Written": ["Written forms of the Navarro-Labourdin Basque language."], "Navarro-Labourdin Basque Written Latin Script": ["A written form of the Navarro-Labourdin Basque language."], "Navarro-Labourdin Basque Spoken": ["ISO 639-6 entity"], "Nafarrera-CN.": ["ISO 639-6 entity"], "Nafarrera-CN. Spoken": ["ISO 639-6 entity"], "Nive-N.": ["ISO 639-6 entity"], "Nive-S.": ["ISO 639-6 entity"], "Ba\u00efgorry": ["ISO 639-6 entity"], "Roncesvalles- Ar\u00edve": ["ISO 639-6 entity"], "Nafarrera-NE.": ["ISO 639-6 entity"], "Nafarrera-NE. Spoken": ["ISO 639-6 entity"], "Mouguerre": ["ISO 639-6 entity"], "Saint-Palais": ["ISO 639-6 entity"], "Donibane": ["ISO 639-6 entity"], "Esteren\u00e7ubi": ["ISO 639-6 entity"], "Ochagav\u00eda": ["ISO 639-6 entity"], "Lapurtera": ["ISO 639-6 entity"], "Lapurtera Spoken": ["ISO 639-6 entity"], "Hendaye": ["ISO 639-6 entity"], "Bidart": ["ISO 639-6 entity"], "Sare": ["ISO 639-6 entity"], "Souletin Basque": ["A Basque dialect spoken in Soule, France."], "Souletin Spoken": ["ISO 639-6 entity"], "Litzare": ["ISO 639-6 entity"], "Licq": ["ISO 639-6 entity"], "Larrau": ["ISO 639-6 entity"], "Euskara-Amerika": ["ISO 639-6 entity"], "Euskara-Amerika Spoken": ["ISO 639-6 entity"], "Euskara-Mexico": ["ISO 639-6 entity"], "Euskara-Costa-Rica": ["ISO 639-6 entity"], "Euskara-Chili": ["ISO 639-6 entity"], "Euskara-Argentina": ["ISO 639-6 entity"], "Euskara-Uruguay": ["ISO 639-6 entity"], "Euskara-Idaho": ["ISO 639-6 entity"], "Euskara-Idaho Spoken": ["ISO 639-6 entity"], "Berber": ["A group of closely related languages mainly spoken in Morocco and Algeria."], "Guanche": ["An extinct language, which used to be spoken by the Guanches of the Canary Islands until the 16th or 17th century."], "East Numidian Cluster": ["ISO 639-6 entity"], "East Numidian": ["ISO 639-6 entity"], "Berber Proper": ["ISO 639-6 entity"], "Berber Proper Western": ["ISO 639-6 entity"], "Zenaga": ["ISO 639-6 entity"], "Zenaga Spoken": ["ISO 639-6 entity"], "Tuareg": ["ISO 639-6 entity"], "Tuareg Northern": ["ISO 639-6 entity"], "Tahaggart Tamahaq": ["ISO 639-6 entity"], "Tahaggart Tamahaq Written": ["ISO 639-6 entity"], "Tahaggart Tamahaq Written Latin Script": ["ISO 639-6 entity"], "Tahaggart Tamahaq Written Arab Script": ["ISO 639-6 entity"], "Tahaggart Tamahaq Written Tifinagh Script": ["ISO 639-6 entity"], "Tahaggart Tamahaq Spoken": ["ISO 639-6 entity"], "Ta-Masinin": ["ISO 639-6 entity"], "Immidir": ["ISO 639-6 entity"], "Ahnet": ["ISO 639-6 entity"], "Ta-Haggart": ["ISO 639-6 entity"], "Ta-Dghaq": ["ISO 639-6 entity"], "Kel-Ajjer": ["ISO 639-6 entity"], "Tuareg Southern": ["ISO 639-6 entity"], "Tamasheq": ["A Berber language spoken by the Kel Adrar in Mali."], "Tamasheq Written": ["ISO 639-6 entity"], "Tamasheq Written Tifinagh Script": ["ISO 639-6 entity"], "Tamasheq Spoken": ["ISO 639-6 entity"], "Ta-Nslemt": ["ISO 639-6 entity"], "Tawallammat Tamajaq": ["ISO 639-6 entity"], "Tawallammat Tamajaq Written": ["ISO 639-6 entity"], "Tawallammat Tamajaq Written Tifinagh Script": ["ISO 639-6 entity"], "Tawallammat Tamajaq Written Shifinagh Script": ["ISO 639-6 entity"], "Tawallammat Tamajaq Spoken": ["ISO 639-6 entity"], "Ta-Wllemmet-W": ["ISO 639-6 entity"], "Ta-Wllemmet-E": ["ISO 639-6 entity"], "Ta-Huwa": ["ISO 639-6 entity"], "Tayart Tamajeq": ["ISO 639-6 entity"], "Tayart Tamajeq Written": ["ISO 639-6 entity"], "Tayart Tamajeq Written Shifinagh Script": ["ISO 639-6 entity"], "Tayart Tamajeq Spoken": ["ISO 639-6 entity"], "A\u00efr": ["ISO 639-6 entity"], "Ta-Nassfarwat": ["ISO 639-6 entity"], "Berber Proper North": ["ISO 639-6 entity"], "Atlas Cluster": ["ISO 639-6 entity"], "Tachelhit": ["Berber language spoken by the Chleuh in Morocco."], "Tachelhit Written": ["ISO 639-6 entity"], "Tachelhit Written Arabic Script": ["ISO 639-6 entity"], "Tachelhit Written Tifinagh Script": ["ISO 639-6 entity"], "Tachelhit Spoken": ["The spoken Tachelhit language."], "Oued-Dra'a": ["ISO 639-6 entity"], "Jbel-Bani": ["ISO 639-6 entity"], "Anti-Atlas'": ["ISO 639-6 entity"], "Agadir": ["ISO 639-6 entity"], "Sus": ["Dialect of the Tachelhit language spoken in Algeria."], "Haut-Atlas'-W": ["ISO 639-6 entity"], "Mekn\u00e8s": ["ISO 639-6 entity"], "Moyen-Atlas'": ["ISO 639-6 entity"], "Haut-Atlas'-E": ["ISO 639-6 entity"], "Dad\u00e8s": ["ISO 639-6 entity"], "Oranais-C": ["ISO 639-6 entity"], "Ksurs": ["ISO 639-6 entity"], "Judeo-Berber": ["A language of Israel"], "Judeo-Berber Written": ["ISO 639-6 entity"], "Judeo-Berber Written Hebrew Script": ["ISO 639-6 entity"], "Judeo-Berber Spoken": ["ISO 639-6 entity"], "Judeo'-Tamazight-W": ["ISO 639-6 entity"], "Judeo'-Tamazight-E": ["ISO 639-6 entity"], "Zenati Complex": ["A group of 12 languages and dialects of the Northern Berber language family spoken in North Africa."], "Ghomara": ["ISO 639-6 entity"], "Senhaja De Srair": ["ISO 639-6 entity"], "Tarifit": ["A Northern Berber language spoken mainly in the Moroccan Rif and in other cities in Algeria."], "Tarifit Written": ["Written forms of the Tarifit language."], "Tarifit Written Arab Script": ["The Tarifit language written with the Arab Script."], "Tarifit Spoken": ["Dialects of the Tarifit language."], "A\u00eft-Amert": ["ISO 639-6 entity"], "A\u00eft-Urrighel": ["ISO 639-6 entity"], "Ibeqqoyen": ["ISO 639-6 entity"], "Ikebdanen": ["ISO 639-6 entity"], "Iqr\u00e2yen": ["ISO 639-6 entity"], "A\u00eft-Sa\u00efd": ["ISO 639-6 entity"], "Temsaman": ["ISO 639-6 entity"], "A\u00eft-Tuzin": ["ISO 639-6 entity"], "Igeznayen": ["ISO 639-6 entity"], "Iznacen": ["ISO 639-6 entity"], "Djerada": ["ISO 639-6 entity"], "Lalla-Maghnia": ["ISO 639-6 entity"], "Snus": ["ISO 639-6 entity"], "Arzeu": ["ISO 639-6 entity"], "Kabyle Written": ["Written forms of the Kabyle language."], "Kabyle Written Latin Script": ["Kabyle language written with the Latin Script."], "Kabyle Spoken": ["Dialects of the Kabyle language."], "Zwawa": ["ISO 639-6 entity"], "Tha-Qabaylith-N": ["ISO 639-6 entity"], "Chenoua": ["ISO 639-6 entity"], "Chenoua Spoken": ["ISO 639-6 entity"], "Tha-Qabaylith-E": ["ISO 639-6 entity"], "Tha-Qabaylith-E Spoken": ["ISO 639-6 entity"], "Tachawit": ["ISO 639-6 entity"], "Tachawit Written": ["ISO 639-6 entity"], "Tachawit Spoken": ["ISO 639-6 entity"], "Barika": ["ISO 639-6 entity"], "Batna": ["ISO 639-6 entity"], "A\u00efn-Be\u00efda": ["ISO 639-6 entity"], "Oued-Abdi": ["ISO 639-6 entity"], "Aur\u00e8s-W": ["ISO 639-6 entity"], "Aur\u00e8s-E": ["ISO 639-6 entity"], "Teb\u00e9ssa": ["ISO 639-6 entity"], "Djerid": ["ISO 639-6 entity"], "Mzab-Wargla Cluster": ["ISO 639-6 entity"], "Temacine Tamazight": ["ISO 639-6 entity"], "Temacine Tamazight Spoken": ["ISO 639-6 entity"], "Oued-Rihr": ["ISO 639-6 entity"], "Tugurt-A": ["ISO 639-6 entity"], "T\u00e9macine": ["ISO 639-6 entity"], "Tagargrent": ["ISO 639-6 entity"], "Tagargrent Written": ["ISO 639-6 entity"], "Tagargrent Spoken": ["ISO 639-6 entity"], "Temacin": ["ISO 639-6 entity"], "Tariyit": ["ISO 639-6 entity"], "Wargla": ["ISO 639-6 entity"], "Ngusa": ["ISO 639-6 entity"], "Tumzabt": ["A Berber language spoken by the Mozabites, an Ibadi group inhabiting the seven cities of the M'zab in the northern Sahara. (source: Wikipedia)"], "Tumzabt Written": ["ISO 639-6 entity"], "Tumzabt Written Tifinagh Script": ["ISO 639-6 entity"], "Tumzabt Written Latin Script": ["ISO 639-6 entity"], "Tumzabt Written Arabic Script": ["ISO 639-6 entity"], "Tumzabt Spoken": ["ISO 639-6 entity"], "Berrian": ["ISO 639-6 entity"], "Gharda\u00efa": ["ISO 639-6 entity"], "Melika": ["ISO 639-6 entity"], "Beni-Izgen": ["ISO 639-6 entity"], "Taznatit": ["A language of Algeria"], "Taznatit Spoken": ["ISO 639-6 entity"], "Gurara": ["ISO 639-6 entity"], "Gurara Spoken": ["ISO 639-6 entity"], "Timimun": ["ISO 639-6 entity"], "Badrian": ["ISO 639-6 entity"], "Tuat": ["ISO 639-6 entity"], "Tuat Spoken": ["ISO 639-6 entity"], "Tementit": ["ISO 639-6 entity"], "Tittaf": ["ISO 639-6 entity"], "Tidikelt Tamazight": ["ISO 639-6 entity"], "Tidikelt Tamazight Spoken": ["ISO 639-6 entity"], "Tidikelt-A": ["ISO 639-6 entity"], "Tit": ["ISO 639-6 entity"], "East Zenati": ["ISO 639-6 entity"], "Sened": ["An extinct Berber language that was spoken in the nearby towns of Sened and Majoura in Southern Tunisia until the mid-twentieth century."], "Sened-A": ["ISO 639-6 entity"], "Tmagurt": ["ISO 639-6 entity"], "Ta-Mezret": ["ISO 639-6 entity"], "Ta-Mezret Spoken": ["ISO 639-6 entity"], "Zrawa": ["ISO 639-6 entity"], "Taujjurt": ["ISO 639-6 entity"], "Tamezret-A": ["ISO 639-6 entity"], "Shanini": ["ISO 639-6 entity"], "Duiret": ["ISO 639-6 entity"], "Jerba": ["ISO 639-6 entity"], "Jerba Spoken": ["ISO 639-6 entity"], "Zuara": ["ISO 639-6 entity"], "Zuara Spoken": ["ISO 639-6 entity"], "Nafusi": ["ISO 639-6 entity"], "Nafusi Spoken": ["ISO 639-6 entity"], "Jebel-Nefusa": ["ISO 639-6 entity"], "Jemmari": ["ISO 639-6 entity"], "Fossato": ["ISO 639-6 entity"], "Ghadam\u00e8s": ["A language spoken mainly by some Libyan Muslims in Ghadam\u00e8s, a small oasis near the Libyan border with Algeria and Tunisia."], "Ghadam\u00e8s Spoken": ["Dialects of the Ghadam\u00e8s language."], "Ayt-Waziten": ["ISO 639-6 entity"], "Elt-Ulid": ["ISO 639-6 entity"], "Berber Proper Eastern": ["ISO 639-6 entity"], "Awjila-Sokna Cluster": ["ISO 639-6 entity"], "Sawknah": ["ISO 639-6 entity"], "Awjilah": ["A language of Libya"], "Siwi": ["ISO 639-6 entity"], "Ancient Egyption Cluster": ["ISO 639-6 entity"], "Ancient Egyptian": ["The language used in Ancient Egypt, an independent part of the Afro-Asiatic language phylum."], "Ancient Egyptian Written": ["Variants of the Ancient Egyptian language used in written communication."], "Ancient Egyptian Written Hieroglyphic Script": ["ISO 639-6 entity"], "Ancient Egyptian Written Hieratic Script": ["ISO 639-6 entity"], "Old Egyptian": ["ISO 639-6 entity"], "Old Egyptian Written": ["ISO 639-6 entity"], "Old Egyptian Written Hieroglyphic Script": ["ISO 639-6 entity"], "Old Egyptian Written Hieratic Script": ["ISO 639-6 entity"], "Middle Egyptian": ["ISO 639-6 entity"], "Late Egyptian": ["ISO 639-6 entity"], "Late Egyptian Written": ["ISO 639-6 entity"], "Late Egyptian Written Hieroglyphic Script": ["ISO 639-6 entity"], "Late Egyptian Written Hieratic Script": ["ISO 639-6 entity"], "Demotic": ["ISO 639-6 entity"], "Demotic Written": ["ISO 639-6 entity"], "Demotic Written Hieroglyphic Script": ["ISO 639-6 entity"], "Demotic Written Demotic Script": ["ISO 639-6 entity"], "Coptic Written": ["Variants of the Coptic language used in written communication."], "Coptic Written Hieroglyphic Script": ["ISO 639-6 entity"], "Coptic Written Hieratic Script": ["ISO 639-6 entity"], "Coptic Written Demotic Script": ["ISO 639-6 entity"], "Coptic Written Coptic Script": ["ISO 639-6 entity"], "Saidhic Written": ["Variants of the Saidhic language used in written communication."], "Bohairic-Coptic'": ["ISO 639-6 entity"], "Akhmimic": ["ISO 639-6 entity"], "Lycopolitan": ["ISO 639-6 entity"], "Fayyumic": ["ISO 639-6 entity"], "Oxyrhynchite": ["ISO 639-6 entity"], "Revived 'Coptic'": ["ISO 639-6 entity"], "Zeniyah": ["ISO 639-6 entity"], "Biu Mandara": ["A group of languages of the Afro-Asiatic family spoken in Nigeria, Chad and Cameroon."], "Biu Mandara Group B": ["ISO 639-6 entity"], "Musgu": ["A Chadic language spoken in the north of Cameroon in the department of Diamar\u00e9, in the communes of Yagoua and Kouss\u00e9ri and in the Mora plains, as well as in Chad, up to Chari."], "Musuk": ["ISO 639-6 entity"], "Mpus": ["ISO 639-6 entity"], "Beege": ["ISO 639-6 entity"], "Mulwi": ["ISO 639-6 entity"], "Muskum": ["ISO 639-6 entity"], "Gwai": ["ISO 639-6 entity"], "Ngilemong": ["ISO 639-6 entity"], "Maniling": ["ISO 639-6 entity"], "Abi": ["ISO 639-6 entity", "A Kwa language spoken by the Ab\u00e9 people primarily in the Department of Agboville in C\u00f4te d'Ivoire."], "Luggong": ["ISO 639-6 entity"], "Mbara (Chad)": ["ISO 639-6 entity"], "Jina Majera": ["ISO 639-6 entity"], "Majera": ["An Afro-Asiatic language of Chad and Cameroon."], "Mazra": ["A dialect of the Majera language."], "Kajire-'Dulo": ["ISO 639-6 entity"], "Hwalem": ["ISO 639-6 entity"], "Jina": ["A language of Cameroon."], "Sarassara": ["ISO 639-6 entity"], "Tchide": ["ISO 639-6 entity"], "Muxule": ["ISO 639-6 entity"], "Mae": ["ISO 639-6 entity"], "Kotoko Complex": ["ISO 639-6 entity"], "Kotoko Proper Cluster": ["ISO 639-6 entity"], "Lagwan": ["A language of Cameroon and Chad."], "Lagwan Spoken": ["ISO 639-6 entity"], "Logone-W": ["ISO 639-6 entity"], "Logone-Birni": ["ISO 639-6 entity"], "Logone-Gana": ["ISO 639-6 entity"], "Mser": ["A language of Cameroon and Chad."], "Mser Spoken": ["ISO 639-6 entity"], "Mser-A": ["ISO 639-6 entity"], "Kalo": ["ISO 639-6 entity"], "Gawi": ["ISO 639-6 entity"], "Huluf": ["ISO 639-6 entity"], "Kabe": ["ISO 639-6 entity"], "Klasmu": ["ISO 639-6 entity"], "Maslam- Sao": ["ISO 639-6 entity"], "Maslam": ["ISO 639-6 entity"], "Maslam Spoken": ["ISO 639-6 entity"], "Maltam": ["ISO 639-6 entity"], "Sao": ["ISO 639-6 entity"], "Afade": ["A language of Cameroon and Nigeria."], "Malgbe": ["ISO 639-6 entity"], "Malgbe Spoken": ["ISO 639-6 entity"], "Gulfei": ["ISO 639-6 entity"], "Mara": ["ISO 639-6 entity", "ISO 639-6 entity"], "Dro": ["ISO 639-6 entity"], "Dugiya": ["ISO 639-6 entity"], "Mpade": ["ISO 639-6 entity"], "Mpade Spoken": ["ISO 639-6 entity"], "Mpade-A": ["ISO 639-6 entity"], "Shoe": ["ISO 639-6 entity"], "Bodo": ["ISO 639-6 entity", "ISO 639-6 entity", "A language of Ghana.", "A language of India and Nepal."], "Wulki": ["ISO 639-6 entity"], "Digam": ["ISO 639-6 entity"], "Jilbe": ["ISO 639-6 entity"], "buduma": ["ISO 639-6 entity"], "Buduma Spoken": ["ISO 639-6 entity"], "buduma N": ["ISO 639-6 entity"], "Yidena": ["ISO 639-6 entity"], "Kakaa": ["ISO 639-6 entity"], "Biu Mandara Group A": ["ISO 639-6 entity"], "Bura Mandara": ["ISO 639-6 entity"], "Mandara Matakam": ["ISO 639-6 entity"], "Mandara Proper Complex": ["ISO 639-6 entity"], "Wandala": ["ISO 639-6 entity"], "Mora": ["ISO 639-6 entity"], "Mora-V": ["ISO 639-6 entity"], "Masfeima": ["ISO 639-6 entity"], "Jampalam": ["ISO 639-6 entity"], "Zlogba": ["ISO 639-6 entity"], "Zlogba Spoken": ["The dialects of the Zlogba language."], "Mazagwa": ["ISO 639-6 entity"], "Mazagwa Spoken": ["ISO 639-6 entity"], "Gamargu": ["ISO 639-6 entity"], "Gamargu Spoken": ["ISO 639-6 entity"], "Gwanje": ["ISO 639-6 entity"], "Gwanje Spoken": ["The dialects of the Gwanje language."], "Ngaslawe": ["ISO 639-6 entity"], "Ngaslawe Spoken": ["ISO 639-6 entity"], "Kirawa": ["ISO 639-6 entity"], "Kirawa Spoken": ["ISO 639-6 entity"], "Kamburwama": ["ISO 639-6 entity"], "Kamburwama Spoken": ["ISO 639-6 entity"], "Parkwa": ["ISO 639-6 entity"], "Parkwa Written": ["ISO 639-6 entity"], "Parkwa Spoken": ["ISO 639-6 entity"], "Kudala": ["ISO 639-6 entity"], "Kudala Spoken": ["ISO 639-6 entity"], "Glavda Cluster": ["ISO 639-6 entity"], "Glavda": ["A language of Nigeria and Cameroon"], "Glavda Written": ["ISO 639-6 entity"], "Glavda Spoken": ["ISO 639-6 entity"], "Ngoshe": ["ISO 639-6 entity"], "Ngoshe Spoken": ["ISO 639-6 entity"], "Vale": ["ISO 639-6 entity", "ISO 639-6 entity"], "Vale Spoken": ["The dialects of the Vale language.", "ISO 639-6 entity"], "Bokwa": ["ISO 639-6 entity"], "Bokwa Spoken": ["The dialects of the Bokwa language."], "Guduf-Gava": ["ISO 639-6 entity", "A language of Nigeria."], "Guduf -Gava Written": ["ISO 639-6 entity"], "Guduf -Gava Spoken": ["ISO 639-6 entity"], "Kudupa-Xa": ["ISO 639-6 entity"], "Kudupa-Xa Spoken": ["ISO 639-6 entity"], "Yaghwatada-Xa": ["ISO 639-6 entity"], "Yaghwatada-Xa Spoken": ["ISO 639-6 entity"], "Chikide": ["ISO 639-6 entity"], "Chikide Spoken": ["ISO 639-6 entity"], "Cineni": ["A language of Nigeria."], "Cineni Spoken": ["ISO 639-6 entity"], "Mandara": ["ISO 639-6 entity"], "Lamang": ["A language of Nigeria."], "Lamang Written": ["ISO 639-6 entity"], "Lamang Spoken": ["ISO 639-6 entity"], "Zaladava": ["ISO 639-6 entity"], "Zaladava Spoken": ["The dialects of the Zaladava language."], "Dzuba": ["ISO 639-6 entity"], "Dzuba Spoken": ["ISO 639-6 entity"], "Leghva": ["ISO 639-6 entity"], "Leghva Spoken": ["ISO 639-6 entity"], "Gwozo": ["ISO 639-6 entity"], "Gwozo Spoken": ["The dialects of the Gwozo language."], "Wakane": ["ISO 639-6 entity"], "Wakane Spoken": ["ISO 639-6 entity"], "Dlige": ["ISO 639-6 entity"], "Dlige Spoken": ["ISO 639-6 entity"], "Hi'dkala": ["ISO 639-6 entity"], "Hi'dkala Spoken": ["ISO 639-6 entity"], "Waga": ["ISO 639-6 entity"], "Waga Spoken": ["ISO 639-6 entity"], "Dghwede": ["A language of Nigeria."], "Dghwede Spoken": ["ISO 639-6 entity"], "Hdi": ["ISO 639-6 entity"], "Hdi Written": ["ISO 639-6 entity"], "Hdi Spoken": ["ISO 639-6 entity"], "Turu": ["ISO 639-6 entity"], "Vizik": ["ISO 639-6 entity"], "Vizik Spoken": ["ISO 639-6 entity"], "Vemgo-Mabas": ["ISO 639-6 entity"], "Vemgo-Mabas Spoken": ["ISO 639-6 entity"], "Vemgo": ["ISO 639-6 entity"], "Vemgo Spoken": ["ISO 639-6 entity"], "Mabas": ["ISO 639-6 entity"], "Mabas Spoken": ["ISO 639-6 entity"], "Gvoko": ["ISO 639-6 entity"], "Gvoko Spoken": ["ISO 639-6 entity"], "Ngweshe": ["ISO 639-6 entity"], "Ngweshe Spoken": ["ISO 639-6 entity"], "Sukur": ["ISO 639-6 entity"], "Sukur Spoken": ["ISO 639-6 entity"], "Matakam Cluster": ["ISO 639-6 entity"], "Vame": ["ISO 639-6 entity"], "Vame Spoken": ["The dialects of the Vame language."], "Pelasla": ["The dialects of the Vame language."], "Gwendele": ["ISO 639-6 entity"], "Damlale": ["The dialects of the Vame language."], "Ndreme": ["ISO 639-6 entity"], "Ndreme Spoken": ["ISO 639-6 entity"], "Mbreme-Vame": ["ISO 639-6 entity"], "Mbreme-Vame Spoken": ["ISO 639-6 entity"], "Mbreme": ["ISO 639-6 entity"], "Vame-Mora-A": ["ISO 639-6 entity"], "Maslava": ["ISO 639-6 entity"], "Demwa": ["ISO 639-6 entity"], "Demwa Spoken": ["ISO 639-6 entity"], "Hurza": ["ISO 639-6 entity"], "Hurza Spoken": ["ISO 639-6 entity"], "Mbuko": ["ISO 639-6 entity"], "Mbuko Spoken": ["ISO 639-6 entity"], "Matal": ["ISO 639-6 entity"], "Matal Spoken": ["ISO 639-6 entity"], "Baldemu": ["A language of Cameroon"], "Baldemu Spoken": ["The spoken Baldemu language and its dialects."], "Wuzlam": ["ISO 639-6 entity"], "Wuzlam Spoken": ["ISO 639-6 entity"], "Muyang": ["ISO 639-6 entity"], "Muyang Spoken": ["ISO 639-6 entity"], "Mada (Cameroon)": ["ISO 639-6 entity"], "Mada (Cameroon) Written": ["ISO 639-6 entity"], "Mada (Cameroon) Spoken": ["ISO 639-6 entity"], "Mikiri": ["ISO 639-6 entity"], "Mikiri Spoken": ["ISO 639-6 entity"], "Zulgwa": ["ISO 639-6 entity"], "Zulgwa Spoken": ["ISO 639-6 entity"], "Mineo": ["ISO 639-6 entity"], "Mineo Spoken": ["ISO 639-6 entity"], "Mukuno": ["ISO 639-6 entity"], "Mukuno Spoken": ["ISO 639-6 entity"], "Merey": ["ISO 639-6 entity"], "Merey Written": ["ISO 639-6 entity"], "Merey Spoken": ["ISO 639-6 entity"], "Dugwor": ["ISO 639-6 entity"], "Dugwor Written": ["ISO 639-6 entity"], "Dugwor Spoken": ["ISO 639-6 entity"], "Mikere": ["ISO 639-6 entity"], "Zulgo-Gemzek": ["A language of Cameroon"], "Zulgo-Gemzek Written": ["The written forms of the Zulgo-Gemzek language."], "Zulgo-Gemzek Spoken": ["The dialects of the Zulgo-Gemzek language."], "Gaduwa": ["ISO 639-6 entity", "ISO 639-6 entity"], "Gaduwa Spoken": ["ISO 639-6 entity"], "North Giziga": ["A language of Cameroon"], "North Giziga Written": ["The written forms of the North Giziga language."], "North Giziga Spoken": ["The dialects of the North Giziga language."], "Mi-Marva": ["ISO 639-6 entity"], "Mi-Marva Spoken": ["ISO 639-6 entity"], "Mi-Dogba": ["ISO 639-6 entity"], "Mi-Dogba Spoken": ["ISO 639-6 entity"], "South Giziga": ["A language of Cameroon."], "Mi-Muturwa": ["ISO 639-6 entity"], "Mi-Mijivin": ["ISO 639-6 entity"], "Rum": ["ISO 639-6 entity"], "Lulu": ["ISO 639-6 entity"], "North Mofu": ["ISO 639-6 entity"], "Durum": ["ISO 639-6 entity"], "Duvangar": ["ISO 639-6 entity"], "Wazang": ["ISO 639-6 entity"], "Mofu-Gudur": ["ISO 639-6 entity"], "Mokong": ["ISO 639-6 entity"], "Masagal": ["ISO 639-6 entity"], "Zidim": ["ISO 639-6 entity"], "Njeleng": ["ISO 639-6 entity"], "Dimeo": ["ISO 639-6 entity"], "Gudal": ["ISO 639-6 entity"], "Mafa": ["A Chadic language spoken by the Mafa people in the state of Mayo-Tsanaga in northern Cameroon and in the state of Borno in eastern Nigeria."], "Mafa Spoken": ["ISO 639-6 entity"], "Mafa-W": ["ISO 639-6 entity"], "Mafa-C": ["ISO 639-6 entity"], "Magumaz": ["ISO 639-6 entity"], "Mavumay": ["ISO 639-6 entity"], "Uzal": ["ISO 639-6 entity"], "Koza": ["ISO 639-6 entity"], "Moloko": ["ISO 639-6 entity"], "Ldamtsai": ["ISO 639-6 entity"], "Sulede": ["ISO 639-6 entity"], "Rua": ["ISO 639-6 entity"], "Mefele": ["ISO 639-6 entity"], "Sirak": ["ISO 639-6 entity"], "Muhura": ["ISO 639-6 entity"], "Shugule": ["ISO 639-6 entity"], "Cuvok": ["ISO 639-6 entity"], "Daba Complex": ["ISO 639-6 entity"], "Buwal": ["A language of Cameroon"], "Gavar": ["ISO 639-6 entity"], "Kortchi": ["ISO 639-6 entity"], "Gadala": ["ISO 639-6 entity"], "Mbedam": ["ISO 639-6 entity"], "Mina (Cameroon)": ["ISO 639-6 entity"], "Mina (Cameroon) Spoken": ["ISO 639-6 entity"], "Besleri": ["ISO 639-6 entity"], "Jingjing": ["ISO 639-6 entity"], "Gamdugun": ["ISO 639-6 entity"], "Daba": ["ISO 639-6 entity"], "Nive": ["ISO 639-6 entity"], "Pologozom": ["ISO 639-6 entity"], "Mazagway": ["ISO 639-6 entity"], "Mazagway Spoken": ["ISO 639-6 entity"], "Musgoi": ["ISO 639-6 entity"], "Kpala": ["ISO 639-6 entity"], "Bura Higi": ["ISO 639-6 entity"], "Higi Cluster": ["ISO 639-6 entity"], "Kamwe": ["ISO 639-6 entity"], "Kamwe Spoken": ["ISO 639-6 entity"], "Nkafa": ["ISO 639-6 entity"], "Nkafa Spoken": ["ISO 639-6 entity"], "Baza- Dakwa": ["ISO 639-6 entity"], "Baza-Dakwa Spoken": ["The dialects of the Baza-Dakwa language."], "Baza": ["A dialect of the Baza-Dakwa language."], "Dakwa": ["A dialect of the Baza-Dakwa language."], "Sina": ["ISO 639-6 entity"], "Sina Spoken": ["ISO 639-6 entity"], "Futu": ["ISO 639-6 entity"], "Futu Spoken": ["ISO 639-6 entity"], "Tili-Pte": ["ISO 639-6 entity"], "Tili-Pte Spoken": ["ISO 639-6 entity"], "Modi": ["ISO 639-6 entity"], "Modi Spoken": ["ISO 639-6 entity"], "Humsi": ["ISO 639-6 entity"], "Humsi Spoken": ["ISO 639-6 entity"], "Wula": ["ISO 639-6 entity"], "Wula Spoken": ["ISO 639-6 entity"], "Psikye": ["ISO 639-6 entity"], "Psikye Written": ["ISO 639-6 entity"], "Psikye Spoken": ["ISO 639-6 entity"], "Kamale": ["ISO 639-6 entity"], "Mogode": ["ISO 639-6 entity"], "Zlenge": ["ISO 639-6 entity"], "Zlenge Spoken": ["The dialects of the Zlenge language."], "Ghye": ["ISO 639-6 entity"], "Ghye Spoken": ["ISO 639-6 entity"], "Za": ["ISO 639-6 entity"], "Za Spoken": ["The dialects of the Za language."], "Hya": ["A language of Cameroon and Nigeria."], "Hya Spoken": ["ISO 639-6 entity"], "Bana": ["ISO 639-6 entity"], "Bana Written": ["ISO 639-6 entity"], "Bana Spoken": ["The dialects of the Bana language."], "Thlukufu": ["ISO 639-6 entity"], "Thlukufu Spoken": ["ISO 639-6 entity"], "Bwagira-'Fali'": ["ISO 639-6 entity"], "Bwagira-'Fali' Spoken": ["ISO 639-6 entity"], "Gambura": ["ISO 639-6 entity"], "Gambura Spoken": ["ISO 639-6 entity"], "Gili": ["ISO 639-6 entity"], "Gili Spoken": ["ISO 639-6 entity"], "Kiria-'Fali'": ["ISO 639-6 entity"], "Kiria-'Fali' Spoken": ["ISO 639-6 entity"], "Mijilu-'Fali'": ["ISO 639-6 entity"], "Mijilu-'Fali' Spoken": ["ISO 639-6 entity"], "Bura Complex": ["ISO 639-6 entity"], "Bura Group 2 Cluster": ["ISO 639-6 entity"], "huba": ["ISO 639-6 entity"], "Huba Written": ["ISO 639-6 entity"], "Huba Spoken": ["ISO 639-6 entity"], "Hong": ["ISO 639-6 entity"], "Hong Spoken": ["ISO 639-6 entity"], "Gashala": ["ISO 639-6 entity"], "Gashala Spoken": ["ISO 639-6 entity"], "Gaya": ["The presumed language of the Gaya confederacy (1st to 6th century CE) in the south of the Korean peninsula."], "Gaya Spoken": ["ISO 639-6 entity"], "Luwa": ["ISO 639-6 entity"], "Luwa Spoken": ["ISO 639-6 entity"], "Marghi South": ["ISO 639-6 entity"], "Marghi South Spoken": ["ISO 639-6 entity"], "Wamdiu": ["ISO 639-6 entity"], "Wamdiu Spoken": ["ISO 639-6 entity"], "Hildi": ["ISO 639-6 entity"], "Hildi Spoken": ["ISO 639-6 entity"], "Marghi Central": ["ISO 639-6 entity"], "Marghi Central Written": ["ISO 639-6 entity"], "Marghi Central Spoken": ["ISO 639-6 entity"], "Wurga": ["ISO 639-6 entity"], "Marghi-V": ["ISO 639-6 entity"], "Marghi-V Spoken": ["ISO 639-6 entity"], "Babul": ["ISO 639-6 entity"], "Lasa": ["ISO 639-6 entity"], "Minthla": ["ISO 639-6 entity"], "Molgoy": ["ISO 639-6 entity"], "Gulak- Dzer": ["ISO 639-6 entity"], "Gulak- Dzer Spoken": ["ISO 639-6 entity"], "Gulak": ["ISO 639-6 entity"], "Dzer": ["ISO 639-6 entity"], "Bura Group 1": ["ISO 639-6 entity"], "Cibak": ["ISO 639-6 entity"], "Cibak Spoken": ["ISO 639-6 entity"], "Nggwahyi": ["ISO 639-6 entity"], "Nggwahyi Spoken": ["ISO 639-6 entity"], "Putai": ["ISO 639-6 entity"], "Putai Spoken": ["ISO 639-6 entity"], "Bura-Pabir": ["A language of Nigeria."], "Bura-Pabir Written": ["ISO 639-6 entity"], "Bura-Pabir Spoken": ["ISO 639-6 entity"], "Pabir": ["ISO 639-6 entity"], "Pabir Spoken": ["ISO 639-6 entity"], "Kwojeffa": ["ISO 639-6 entity"], "Huve": ["ISO 639-6 entity"], "Hyil-Hawul": ["ISO 639-6 entity"], "Hyil-Hawul Spoken": ["ISO 639-6 entity"], "Pela": ["A language of China."], "Pela Spoken": ["ISO 639-6 entity"], "Kofa": ["A language of Nigeria.", "ISO 639-6 entity"], "Kofa Spoken": ["ISO 639-6 entity", "ISO 639-6 entity"], "Tera Complex": ["ISO 639-6 entity"], "Tera Group 1 Cluster": ["ISO 639-6 entity"], "Tera": ["ISO 639-6 entity"], "Tera Written": ["ISO 639-6 entity"], "Tera Spoken": ["ISO 639-6 entity"], "Nyimatli": ["ISO 639-6 entity"], "Nyimatli Spoken": ["ISO 639-6 entity"], "Pidlimdi": ["ISO 639-6 entity"], "Pidlimdi Spoken": ["ISO 639-6 entity"], "Kokura": ["ISO 639-6 entity"], "Kokura Spoken": ["ISO 639-6 entity"], "Jara": ["A language of Nigeria."], "Jara Spoken": ["ISO 639-6 entity"], "Tera Group 2 Cluster": ["ISO 639-6 entity"], "Ga'anda": ["ISO 639-6 entity"], "Ga'anda Written": ["ISO 639-6 entity"], "Ga'anda Spoken": ["ISO 639-6 entity"], "Gabin": ["ISO 639-6 entity"], "Gabin Spoken": ["ISO 639-6 entity"], "Boga": ["A language of Nigeria."], "Boga Spoken": ["The dialects of the Boga language."], "Hwana": ["A language of Nigeria."], "Hwana Spoken": ["ISO 639-6 entity"], "Bata Complex": ["ISO 639-6 entity"], "Gudu": ["A language of Nigeria."], "Gudu Spoken": ["ISO 639-6 entity"], "Kumbi": ["ISO 639-6 entity"], "Kumbi Spoken": ["ISO 639-6 entity"], "Bata Proper Cluster": ["ISO 639-6 entity"], "Chede": ["ISO 639-6 entity"], "Chede Spoken": ["ISO 639-6 entity"], "Cheke": ["ISO 639-6 entity"], "Cheke Spoken": ["ISO 639-6 entity"], "Gude": ["ISO 639-6 entity"], "Gude Written": ["ISO 639-6 entity"], "Gude Spoken": ["ISO 639-6 entity"], "Jimi (Cameroon)": ["ISO 639-6 entity"], "Jimi (Cameroon) Spoken": ["ISO 639-6 entity"], "Mapodi": ["ISO 639-6 entity"], "Mapodi Spoken": ["ISO 639-6 entity"], "Mubi": ["ISO 639-6 entity", "ISO 639-6 entity"], "Mubi Spoken": ["ISO 639-6 entity", "ISO 639-6 entity"], "Mucella": ["ISO 639-6 entity"], "Mucella Spoken": ["ISO 639-6 entity"], "Mudaye": ["ISO 639-6 entity"], "Mudaye Spoken": ["ISO 639-6 entity"], "Ngwaba": ["ISO 639-6 entity"], "Ngwaba Spoken": ["ISO 639-6 entity"], "Sharwa": ["ISO 639-6 entity"], "Sharwa Spoken": ["ISO 639-6 entity"], "Tchevi": ["ISO 639-6 entity"], "Sherwin": ["ISO 639-6 entity"], "Sarwaye": ["ISO 639-6 entity"], "Terki": ["ISO 639-6 entity"], "Terki Spoken": ["ISO 639-6 entity"], "Tsuvan": ["ISO 639-6 entity"], "Tsuvan Spoken": ["ISO 639-6 entity"], "Fali": ["ISO 639-6 entity"], "Fali Spoken": ["ISO 639-6 entity"], "Vin": ["ISO 639-6 entity"], "Huli": ["ISO 639-6 entity", "A language of Papua New Guinea."], "Madazarin": ["ISO 639-6 entity"], "Bween": ["ISO 639-6 entity"], "Zizilivaken": ["ISO 639-6 entity"], "Zizilivaken Spoken": ["The dialects of the Zizilivaken language."], "Nzanyi": ["ISO 639-6 entity"], "Nzanyi Written": ["ISO 639-6 entity"], "Nzanyi Spoken": ["ISO 639-6 entity"], "Rogede": ["ISO 639-6 entity"], "Nggwoli": ["ISO 639-6 entity"], "Hoode": ["ISO 639-6 entity"], "Maiha": ["ISO 639-6 entity"], "Magara": ["ISO 639-6 entity"], "Dede": ["ISO 639-6 entity"], "Mutidi": ["ISO 639-6 entity"], "Lovi": ["ISO 639-6 entity"], "Kobochi": ["ISO 639-6 entity"], "Kobochi Spoken": ["ISO 639-6 entity"], "Paka": ["ISO 639-6 entity"], "Paka Spoken": ["ISO 639-6 entity"], "Holma": ["ISO 639-6 entity"], "Bata": ["A language of Nigeria and Cameroon."], "Bata Written": ["ISO 639-6 entity"], "Bata Spoken": ["The dialects of the bata language."], "Ribow": ["A dialect of the bata language."], "Demsa": ["A dialect of the bata language."], "Garua": ["A dialect of the bata language."], "Jirai": ["ISO 639-6 entity"], "Jirai Spoken": ["ISO 639-6 entity"], "Kobotachi": ["ISO 639-6 entity"], "Kobotachi Spoken": ["ISO 639-6 entity"], "Malabu": ["ISO 639-6 entity"], "Malabu Spoken": ["ISO 639-6 entity"], "Ndeewe": ["ISO 639-6 entity"], "Ndeewe Spoken": ["ISO 639-6 entity"], "Wadi": ["ISO 639-6 entity"], "Wadi Spoken": ["ISO 639-6 entity"], "Zumu": ["A dialect of the Bata language."], "Bacama": ["An Afro-Asiatic language spoken in Nigeria in Adamawa State in the Numan and Guyuk LGAs, and in Kaduna State northeast of Kaduna town."], "Bacama Spoken": ["The spoken Bacama language and its dialects."], "Mulyen": ["A dialect of the bacama language."], "Opalo": ["A dialect of the bacama language."], "Wa-Duku": ["A dialect of the bacama language."], "Caucasian": ["A large language family spoken in and around the Caucasus Mountains."], "Circassian": ["A language continuum spoken in the Caucasus, comprising the Adyghe and Kabardian languages."], "Adyghe": ["One of the two official languages of the Republic of Adygea in the Russian Federation."], "Adyghe Written": ["Written forms of the Adyghe language."], "Adyghe Wriiten Cyrillic Script Temirgoi Model": ["ISO 639-6 entity"], "Adyghe Written Arabic Script": ["ISO 639-6 entity"], "Adyghe Written Latin Script": ["A written form of the Adyghe language."], "Adyghe Spoken": ["ISO 639-6 entity"], "Adyghe-Formal": ["ISO 639-6 entity"], "Natukhaj": ["ISO 639-6 entity"], "Abadzekh": ["ISO 639-6 entity"], "Shapsug": ["ISO 639-6 entity"], "Hakuchi Adyghe": ["ISO 639-6 entity"], "Neo-Ubykh": ["ISO 639-6 entity"], "Cherkes": ["ISO 639-6 entity"], "Cherkes Spoken": ["ISO 639-6 entity"], "Beslenej": ["ISO 639-6 entity"], "Kuban": ["ISO 639-6 entity"], "Kuma": ["ISO 639-6 entity"], "Urup": ["ISO 639-6 entity"], "Cherkes-T\u00fcrkiye": ["ISO 639-6 entity"], "Kabardian": ["A language of Russia (Europe) and Turkey"], "Kabardian Spoken": ["The dialects of the Kabardian language."], "Qaberdey-Formal": ["A dialect of the Kabardian language."], "Malka": ["A dialect of the Kabardian language."], "Baksan": ["A dialect of the Kabardian language."], "Qaberdey-C": ["A dialect of the Kabardian language."], "Qaberdey-E": ["A dialect of the Kabardian language."], "Mozdok": ["A dialect of the Kabardian language."], "Abxaz-Abaza Cluster": ["ISO 639-6 entity"], "Abkhazian Spoken": ["The spoken variants of the Abkhazian language."], "Abkhaz-Formal": ["A dialect of the Abkhazian language."], "Bzyb": ["A dialect of the Abkhazian language spoken in the Caucasus and in Turkey.", "A mountain range in Abkhazia on the Southern slope of the Western part of Caucasus Major, running in parallel to it."], "Abzhui": ["A dialect of the Abkhazian language spoken in the Cuacasus."], "Samurzakan": ["A dialect of the Abkhazian language."], "Sadz": ["A dialect of the Abkhazian language spoken in Turkey.", "A people or a sub-ethnic group of the Abkhazians."], "Abaza": ["A language of the Caucasus mountains in the Russian Karachay-Cherkess Republic spoken by the Abazins."], "Abaza Written": ["Written forms of the Abaza language."], "Abaza Cyrillic Script Tapanta Model": ["ISO 639-6 entity"], "Abaza Latin Script": ["A written form of the Abaza language."], "Abaza Spoken": ["The spoken variants of the Abaza language."], "Abazin-Formal": ["ISO 639-6 entity"], "Ashkhar": ["ISO 639-6 entity"], "Tapanta": ["ISO 639-6 entity"], "Bezshagh": ["ISO 639-6 entity"], "Abazin": ["ISO 639-6 entity"], "Ubykh": ["A language of the Northwestern Caucasian group, spoken by the Ubykh people up until the early 1990s."], "Ubykh Written": ["Written forms of the Ubykh language."], "Ubykh Written Latin Script": ["A written form of the Ubykh language."], "Ubykh Written Cyrillic Script": ["ISO 639-6 entity"], "Ubykh Written IPA Script": ["ISO 639-6 entity"], "Ubykh-Caucasus": ["ISO 639-6 entity"], "Ubykh-Istanbul": ["ISO 639-6 entity"], "Nax": ["A small family of languages spoken chiefly by the Nakh peoples, in Russia (Chechnya and Ingushetia), in Georgia, and in the Chechen diaspora (mainly in Europe, Middle East and Central Asia)."], "Chechen-Ingush": ["A family of languages comprising the Chechen and Ingush languages, mainly spoken in the Russian republics of Chechnya and Ingushetia, as well as in the Chechen diaspora."], "Ingush": ["Northeast Caucasian language spoken mainly in the autonomous Republic of Ingushetia in the Russian Federation."], "Mielxiin": ["ISO 639-6 entity"], "Chechen Written": ["Written forms of the Chechen language."], "Chechen Written Cyrillic Script": ["ISO 639-6 entity"], "Chechen Written Latin Script": ["A written form of the Chechen language."], "Chechen Written Arabic Script": ["ISO 639-6 entity"], "Chechen Spoken": ["ISO 639-6 entity"], "Ghalghaay-Formal": ["ISO 639-6 entity"], "Ghalghaay-C": ["ISO 639-6 entity"], "Akkin": ["ISO 639-6 entity"], "Chitumkala": ["ISO 639-6 entity"], "Cheberloj": ["ISO 639-6 entity"], "Chechen-T\u00fcrkiye": ["ISO 639-6 entity"], "Kistiina": ["ISO 639-6 entity"], "Bats": ["A nakho-daghestian language spoken by the Bats people in the provinces of Tusheti and Kakheti in Georgia."], "Bats Written Georgian Script": ["The Bats language written with the Georgian script."], "Bats Written Latin Script": ["The Bats language written with the Latin script."], "Bats Spoken": ["The Bats spoken language and its dialects."], "Avaro-Andi-Dido": ["A group of the Northeast Caucasian languages."], "Avaro": ["ISO 639-6 entity"], "Avar Written": ["Written forms of the Avar language."], "Avar Written Cyrillic Script": ["ISO 639-6 entity"], "Avar Written Latin Script": ["A written form of the Avar language."], "Avar Written Georgian Script": ["ISO 639-6 entity"], "Avar Written Arabic Script": ["ISO 639-6 entity"], "Avar Spoken": ["ISO 639-6 entity"], "Avar-Formal": ["ISO 639-6 entity"], "Salatav": ["ISO 639-6 entity"], "Khunzakh": ["ISO 639-6 entity"], "Avar-NE": ["ISO 639-6 entity"], "Avar-C": ["ISO 639-6 entity"], "Avar-C Spoken": ["ISO 639-6 entity"], "Keleb": ["ISO 639-6 entity"], "Bachadin": ["ISO 639-6 entity"], "Untib": ["ISO 639-6 entity"], "Shulanin": ["ISO 639-6 entity"], "Kachib": ["ISO 639-6 entity"], "Avar-S": ["ISO 639-6 entity"], "Avar-S Spoken": ["ISO 639-6 entity"], "Hid": ["ISO 639-6 entity"], "Andalal-Gkhdatl": ["ISO 639-6 entity"], "Karakh": ["ISO 639-6 entity"], "Antsukh": ["ISO 639-6 entity"], "Batlukh": ["ISO 639-6 entity"], "Car": ["ISO 639-6 entity"], "Andi": ["A language of Russia (Europe)."], "Andi Spoken": ["The Andi spoken language and its dialects."], "Qwannab": ["A dialect of the Andi language."], "Munin": ["A dialect of the Andi language."], "Rikvani": ["A dialect of the Andi language."], "Kvankhidatl": ["A dialect of the Andi language."], "Gagatl": ["A dialect of the Andi language."], "Zilo": ["A dialect of the Andi language."], "Botlikh": ["A language of Russia (Europe)."], "Zibirikhalin": ["ISO 639-6 entity"], "Ghodoberi": ["A language of Russia (Europe)"], "Karatin": ["A language of Russia (Europe)."], "Karata": ["An Andic language spoken in southern Dagestan, Russia."], "Tokita": ["A dialect of the Karata language."], "Anchikh": ["A dialect of the Karata language."], "Tindi": ["Northeast Caucasian language spoken in the Russian republic of Dagestan."], "Bagvalal": ["An Avar\u2013Andic language spoken by the Bagvalals in southwestern Dagestan, Russia"], "Kvanadin": ["A dialect of Bagvalal spoken in the Kvanadin village."], "Tlisi": ["A dialect of Bagvalal spoken in the Tlisi village."], "Chamalal": ["An Andic language spoken in southwestern Dagestan, Russia."], "Badukh": ["A language of Russia (Europe)."], "Gadyri": ["A language of Russia (Europe)."], "Gachitl": ["A dialect of the Gadyri language."], "Kvankhi": ["A dialect of the Gadyri language."], "Gakvari": ["A language of Russia (Europe)."], "Agvali": ["A language of Russia (Europe)."], "Richaganik": ["A language of Russia (Europe)."], "Tsumada": ["A language of Russia (Europe)."], "Urukh": ["A language of Russia (Europe)."], "Gigatl": ["A language of Russia (Europe)."], "Akhvakh": ["A language of Russia (Europe)."], "Akhvakh Spoken": ["The Akhvakh spoken language and its dialects."], "Kakhib": ["A dialect of the Akhvakh language."], "Akhvakh-N": ["A dialect of the Akhvakh language."], "Akhvakh-S": ["A dialect of the Akhvakh language."], "Tlyanub": ["A dialect of the Akhvakh language."], "Tsegob": ["A dialect of the Akhvakh language."], "Dido Branch": ["ISO 639-6 entity"], "Dido-Hinux": ["ISO 639-6 entity"], "Dido": ["A Northeast Caucasian language spoken by the Tsez, a Muslim people in the mountainous Tsunta district of southern and western Dagestan in Russia."], "Dido Spoken": ["ISO 639-6 entity"], "Didoi": ["ISO 639-6 entity"], "Asakh": ["ISO 639-6 entity"], "Tsuntin": ["ISO 639-6 entity"], "Sagada": ["ISO 639-6 entity"], "Kidero": ["ISO 639-6 entity"], "Shapikh": ["ISO 639-6 entity"], "Shaitl": ["ISO 639-6 entity"], "Khvarshi": ["A language of Russia (Europe)."], "Khvarshi Spoken": ["ISO 639-6 entity"], "Inkhokvari": ["ISO 639-6 entity"], "Hinukh": ["A language of Russia (Europe)"], "Bezhta-Hunzib Cluster": ["ISO 639-6 entity"], "Bezhta": ["A language of Russia"], "Bezhta Spoken": ["The dialects of the Bezhta language."], "Kapuchin": ["A dialect of the Bezhta language."], "Tlyadaly": ["A dialect of the Bezhta language."], "Khocharkhotin": ["A dialect of the Bezhta language."], "Hunzib": ["A language of Russia (Europe)"], "Hunzib Spoken": ["ISO 639-6 entity"], "Khunzal": ["ISO 639-6 entity"], "Lak-Dargwa": ["ISO 639-6 entity"], "Lak Spoken": ["Dialects of the Lak language."], "Lak-Formal": ["ISO 639-6 entity"], "Kumukh": ["ISO 639-6 entity"], "Vitskhin": ["ISO 639-6 entity"], "Vikhlin": ["ISO 639-6 entity"], "Ashtikulin": ["ISO 639-6 entity"], "Balkhar - Calakan": ["ISO 639-6 entity"], "Dargwa": ["A language of Russia (Europe)"], "Dargwa Spoken": ["ISO 639-6 entity"], "Dargwa-Formal": ["ISO 639-6 entity"], "Chirag": ["ISO 639-6 entity"], "Khiurkilin": ["ISO 639-6 entity"], "Chudakhar": ["ISO 639-6 entity"], "Akhusha - Urakha": ["ISO 639-6 entity"], "Kajtak": ["ISO 639-6 entity"], "Kubachi": ["ISO 639-6 entity"], "Ughbug": ["ISO 639-6 entity"], "Dejbuk": ["ISO 639-6 entity"], "Kharbuk": ["ISO 639-6 entity"], "Muirin": ["ISO 639-6 entity"], "Sirkhin": ["ISO 639-6 entity"], "Lezgian": ["A language spoken by the Lezgins, who live in southern Dagestan (Russia) and northern Azerbaijan."], "Lezgian Proper": ["ISO 639-6 entity"], "Lezghian": ["ISO 639-6 entity", "A language spoken by the Lezgins, who live in southern Dagestan (Russia) and northern Azerbaijan."], "Lezghian Spoken": ["ISO 639-6 entity"], "Lezgin-Formal": ["ISO 639-6 entity"], "Kiuri": ["ISO 639-6 entity"], "Akhty": ["ISO 639-6 entity"], "Kuba": ["ISO 639-6 entity"], "Gjunej": ["ISO 639-6 entity"], "Garkin": ["ISO 639-6 entity"], "Anykh": ["ISO 639-6 entity"], "Staly": ["ISO 639-6 entity"], "Aghul": ["A language of Russia (Europe)."], "Aghul Spoken": ["The Aghul spoken language and its dialects."], "Koshan": ["A dialect of the Aghul language."], "Keren": ["A dialect of the Aghul language."], "Gekxun": ["A dialect of the Aghul language."], "Rutul": ["ISO 639-6 entity"], "Rutul Spoken": ["ISO 639-6 entity"], "Shina": ["ISO 639-6 entity", "ISO 639-6 entity"], "Borch": ["ISO 639-6 entity"], "Ireko - Muxrek": ["ISO 639-6 entity"], "Tabassaran": ["A Northeast Caucasian language spoken by the Tabasaran people in southern part of the Russian Republic of Dagestan."], "Tabassaran Spoken": ["ISO 639-6 entity"], "Tabarasan-Formal": ["ISO 639-6 entity"], "Khanag": ["ISO 639-6 entity"], "Ghumghum": ["ISO 639-6 entity"], "Archi": ["A Northeast Caucasian language spoken by the Archi people in and around the village of Archib, southern Dagestan, Russia."], "Tsakhur": ["ISO 639-6 entity"], "Tsakhur Spoken": ["ISO 639-6 entity"], "Kirmico-Lek": ["ISO 639-6 entity"], "Mikik": ["ISO 639-6 entity"], "Mishlesh": ["ISO 639-6 entity"], "Budukh": ["A language of Azerbaijan."], "Budukh Spoken": ["ISO 639-6 entity"], "Alyk": ["ISO 639-6 entity"], "Yergyudzh": ["ISO 639-6 entity"], "Kryts": ["A language of Azerbaijan."], "Kryts Spoken": ["The dialects of the Kryts language."], "Dzhek": ["A dialect of the Kryts language."], "Khaput": ["A dialect of the Kryts language."], "Udi": ["A language of Azerbaijan and Georgia."], "Udi Written": ["ISO 639-6 entity"], "Udi Written Cyrillic Script": ["ISO 639-6 entity"], "Udi Spoken": ["ISO 639-6 entity"], "Vartashen": ["ISO 639-6 entity"], "Nidzh": ["ISO 639-6 entity"], "Oktomberi": ["ISO 639-6 entity"], "Khinalugh": ["A language of Azerbaijan."], "Khinalugh Spoken": ["The dialects of the Khinalugh language."], "Zan Cluster": ["ISO 639-6 entity"], "Mingrelian": ["A South Caucasian language spoken in Georgia."], "Mingrelian Written": ["ISO 639-6 entity"], "Mingrelian Written Georgian Script": ["ISO 639-6 entity"], "Mingrelian Spoken": ["ISO 639-6 entity"], "Samurzaka-Zugdidi": ["ISO 639-6 entity"], "Senaki": ["ISO 639-6 entity"], "Laz": ["A South Caucasian language spoken in northwestern Turkey and southwestern Georgia by the Laz people.", "A person from the ethnographic group Laz.", "Of or relating to Lazi or the Laz language.", "A South Caucasian ethnogaphic group in Turkey and Georgia."], "Laz Written": ["ISO 639-6 entity"], "Laz Written Georgian Script": ["ISO 639-6 entity"], "Laz Written Latin Script": ["Laz language written with the Latin Script."], "Laz Spoken": ["ISO 639-6 entity"], "Vitse-Arkabian": ["ISO 639-6 entity"], "Atina": ["ISO 639-6 entity"], "Ardeshenian": ["ISO 639-6 entity"], "Khopa": ["ISO 639-6 entity"], "Chkhala": ["ISO 639-6 entity"], "Georgian Cluster": ["ISO 639-6 entity"], "Imeruli": ["ISO 639-6 entity"], "Imeruli Spoken": ["ISO 639-6 entity"], "Imeretian": ["ISO 639-6 entity"], "Imerkhev": ["ISO 639-6 entity"], "Rachuli": ["ISO 639-6 entity"], "Rachuli Spoken": ["ISO 639-6 entity"], "Lechkhum": ["ISO 639-6 entity"], "Lechkhum Spoken": ["ISO 639-6 entity"], "Guruli": ["ISO 639-6 entity"], "Guruli Spoken": ["ISO 639-6 entity"], "Adzhar": ["A dialect of the Georgian language spoken in Adjara, an autonomous republic of Georgia."], "Georgian Written Georgian Script": ["ISO 639-6 entity"], "Georgian Spoken": ["Dialects of the Georgian language."], "Kharthuli-Formal": ["ISO 639-6 entity"], "Kharthuli": ["ISO 639-6 entity"], "Kakhuri": ["ISO 639-6 entity"], "Ingilo": ["ISO 639-6 entity"], "Tush": ["ISO 639-6 entity"], "Khevsur": ["ISO 639-6 entity"], "Mokhev": ["ISO 639-6 entity"], "Pshav": ["ISO 639-6 entity"], "Mtiul": ["ISO 639-6 entity"], "Ferejdan": ["ISO 639-6 entity"], "Judeo-Georgian": ["A Jewish South Caucasian language presently spoken in Israel, and to a lesser extent in Georgia. The only South Caucasian Jewish language."], "Svan Cluster": ["ISO 639-6 entity"], "Svan": ["A South Caucasian language spoken in Georgia.", "A person from the ethnographic group Svans.", "Of or relating to Svans or the Svan language."], "Svan Spoken": ["ISO 639-6 entity"], "Bal-NE": ["ISO 639-6 entity"], "Bal-SW": ["ISO 639-6 entity"], "Lashkhuri": ["ISO 639-6 entity"], "Lentekhuri": ["ISO 639-6 entity"], "Celtic": ["ISO 639-6 entity"], "Celtic Continental": ["ISO 639-6 entity"], "Lepontic": ["ISO 639-6 entity"], "Gaulish": ["ISO 639-6 entity", "Of or relating to Gaul."], "Galatian": ["ISO 639-6 entity"], "Celitberian": ["ISO 639-6 entity"], "Insular": ["ISO 639-6 entity"], "Goidelic": ["ISO 639-6 entity"], "Hiberno-Scottish Gaelic": ["An extinct language of United Kingdom"], "Hiberno-Scottish Gaelic Written": ["Written forms of the Hiberno-Scottish Gaelic language."], "Hiberno-Scottish Gaelic Written Latin Script": ["A written form of the Hiberno-Scottish Gaelic language."], "Gaelic (Scots)": ["ISO 639-6 entity"], "Gaelic (Scots) Written": ["Written forms of the Gaelic language."], "Gaelic (Scots) Written Latin Script": ["A written form of the Gaelic language."], "Gaelic (Scots) Written Latin Script Medieval": ["A written form of the Gaelic language."], "Gaelic (Scots) Written Latin Script Church": ["A written form of the Gaelic language."], "Gaelic (Scots) Written Latin Script Standardised": ["A written form of the Gaelic language."], "Gaelic (Scots) Spoken": ["ISO 639-6 entity"], "G\u00e0idhlig-NE": ["ISO 639-6 entity"], "G\u00e0idhlig-N": ["ISO 639-6 entity"], "Wester Ross": ["ISO 639-6 entity"], "Ross SW": ["ISO 639-6 entity"], "Ross NW": ["ISO 639-6 entity"], "Cataibhach": ["ISO 639-6 entity"], "Cataibhach NW": ["ISO 639-6 entity"], "Easter Ross Black Isle": ["ISO 639-6 entity"], "Easter Ross": ["ISO 639-6 entity"], "Black Isle": ["ISO 639-6 entity"], "Leodhaisach": ["ISO 639-6 entity"], "Lewis W": ["ISO 639-6 entity"], "Lewis N": ["ISO 639-6 entity"], "Lewis E": ["ISO 639-6 entity"], "Lewis SE": ["ISO 639-6 entity"], "Hearadhach": ["ISO 639-6 entity"], "Hearadhach N": ["ISO 639-6 entity"], "Scalpeigh": ["ISO 639-6 entity"], "Hearadhach S": ["ISO 639-6 entity"], "Hiort": ["ISO 639-6 entity"], "Uibhistach": ["ISO 639-6 entity"], "Uibhistach-N": ["ISO 639-6 entity"], "Bearnaraigh": ["ISO 639-6 entity"], "Beinn-Na-Faoghla": ["ISO 639-6 entity"], "Uibhistach-S": ["ISO 639-6 entity"], "Barraighach": ["ISO 639-6 entity"], "Sgianach": ["ISO 639-6 entity"], "Skye N": ["ISO 639-6 entity"], "Skye C": ["ISO 639-6 entity"], "Sleat": ["ISO 639-6 entity"], "Raasay": ["ISO 639-6 entity"], "Rhumach Eiggach": ["ISO 639-6 entity"], "Eiggach": ["ISO 639-6 entity"], "Rhumach": ["ISO 639-6 entity"], "Tiriodhach Muileach": ["ISO 639-6 entity"], "Collach": ["ISO 639-6 entity"], "Muileach": ["ISO 639-6 entity"], "Tiriodhach": ["ISO 639-6 entity"], "West Highlands Gaelic": ["ISO 639-6 entity"], "Murchan- M\u00f2rar": ["ISO 639-6 entity"], "West Loch Abar": ["ISO 639-6 entity"], "G\u00e0idhlig-SW": ["ISO 639-6 entity"], "Loch Leven-Lios Mor": ["ISO 639-6 entity"], "Oban-Lorn": ["ISO 639-6 entity"], "Ileach": ["ISO 639-6 entity"], "Earra-Ghaidheal": ["ISO 639-6 entity"], "Cinn Tyre": ["ISO 639-6 entity"], "Aranach": ["ISO 639-6 entity"], "Central Highlands Gaelic": ["ISO 639-6 entity"], "Nis": ["ISO 639-6 entity"], "N\u00e0rann": ["ISO 639-6 entity"], "Strath Sp\u00e9": ["ISO 639-6 entity"], "B\u00e0ideanach": ["ISO 639-6 entity"], "Glen Dee": ["ISO 639-6 entity"], "G\u00e0idhlig Ann Am Peairt": ["ISO 639-6 entity"], "East Loch Aber": ["ISO 639-6 entity"], "G\u00e0idhlig-Na-Halba-Nuadh": ["ISO 639-6 entity"], "Cap Breton": ["ISO 639-6 entity"], "North Shore": ["ISO 639-6 entity"], "Mabou": ["ISO 639-6 entity"], "Early Modern Irish": ["ISO 639-6 entity"], "Early Modern Irish Written": ["Written forms of the Early Modern Irish language."], "Early Modern Irish Written Latin Script": ["A written form of the Early Modern Irish language."], "Irish Written": ["Written forms of the Irish language."], "Irish Written Latin Script": ["Irish language written with the Latin Script."], "Irish Spoken": ["Dialects of the Irish language."], "Gaeilge-\u00c9ire": ["ISO 639-6 entity"], "Gaeilge Ulster": ["ISO 639-6 entity"], "Gaeilge-NE": ["ISO 639-6 entity"], "Rathlin": ["ISO 639-6 entity"], "Antrim-Glens": ["ISO 639-6 entity"], "Sperrin": ["ISO 639-6 entity"], "Gaeilge-NW": ["ISO 639-6 entity"], "Ard-Macha": ["ISO 639-6 entity"], "D\u00fan-Na-Ngall NW": ["ISO 639-6 entity"], "Toraigh": ["ISO 639-6 entity"], "F\u00e0naid": ["ISO 639-6 entity"], "Cloch-Chionnaola": ["ISO 639-6 entity"], "Gaoth-Dobhair": ["ISO 639-6 entity"], "Na Rosa": ["ISO 639-6 entity"], "\u00c5rainn Mh\u00f3r": ["ISO 639-6 entity"], "Tir Chonaill-L\u00e1ir": ["ISO 639-6 entity"], "Shliabh-Tuaidh": ["ISO 639-6 entity"], "Gaeilge-W": ["ISO 639-6 entity"], "Maigh-Eo": ["ISO 639-6 entity"], "Lorras": ["ISO 639-6 entity"], "Cnoc-An-Daimh": ["ISO 639-6 entity"], "An Mhuirthead": ["ISO 639-6 entity"], "Acaill-An Corr\u00e1n": ["ISO 639-6 entity"], "Tuar Mhic \u00c8adaigh": ["ISO 639-6 entity"], "D\u00faiche Sheoighe": ["ISO 639-6 entity"], "R\u00e1th-Cairn": ["ISO 639-6 entity"], "Gaillimh": ["ISO 639-6 entity"], "Aran": ["ISO 639-6 entity"], "Gaeilge-S": ["ISO 639-6 entity"], "Ciarra\u00ed": ["ISO 639-6 entity"], "Corca-Dhuibne": ["ISO 639-6 entity"], "M\u00fascrai": ["ISO 639-6 entity"], "Cl\u00e9ire": ["ISO 639-6 entity"], "Corcaigh": ["ISO 639-6 entity"], "Phort-L\u00e1irge": ["ISO 639-6 entity"], "M\u00ed": ["ISO 639-6 entity"], "Manx Written": ["Written forms of the Manx language."], "Manx Written Latin Script Historical": ["Manx language written with the Latin Script."], "Manx Written Latin Script Modern": ["Manx language written with the Latin Script."], "Manx Spoken": ["Dialects of the Manx language."], "Revived Manx": ["ISO 639-6 entity"], "Manx Traditional": ["ISO 639-6 entity"], "Manninagh-NW": ["ISO 639-6 entity"], "Manninagh-SE": ["ISO 639-6 entity"], "Manninagh-S": ["ISO 639-6 entity"], "Brythonic Cluster": ["ISO 639-6 entity"], "Welsh Written": ["The written forms of the Welsh language."], "Welsh Written Latin Script Old": ["A written form of the Welsh language."], "Welsh Written Latin Script Middle": ["A written form of the Welsh language."], "Welsh Written Latin Script Pre-Modern": ["A written form of the Welsh language."], "Welsh Written Latin Script Modern": ["A written form of the Welsh language."], "Welsh Spoken": ["The dialects of the Welsh language."], "Cymraeg-N": ["A dialect of the Welsh language."], "Cymraeg-N Written": ["Written forms of the Cymraeg-N language."], "Cymraeg-N Written Latin Script": ["A written form of the Cymraeg-N language."], "Cymraeg-N Spoken": ["A dialect of the Welsh language."], "Cymraeg Sir-Gaernarfon": ["A dialect of the Welsh language."], "Lleyn": ["A dialect of the Welsh language."], "Bangor": ["A dialect of the Welsh language.", "A Welsh university city."], "Conwy": ["A dialect of the Welsh language."], "Eryi": ["A dialect of the Welsh language."], "Cymraeg-NE": ["A dialect of the Welsh language."], "Meirionydd": ["A dialect of the Welsh language."], "Drefaldwyn": ["A dialect of the Welsh language."], "Amwythig": ["A dialect of the Welsh language."], "Cymraeg-S": ["A dialect of the Welsh language."], "Cymraeg-S Written": ["Written forms of the Cymraeg-S language."], "Cymraeg-S Written Latin Script": ["A written form of the Cymraeg-S language."], "Cymraeg-S Spoken": ["A dialect of the Welsh language."], "Cymraeg-CS": ["A dialect of the Welsh language."], "Gwy Uchaf": ["A dialect of the Welsh language."], "Brycheiniog": ["A dialect of the Welsh language."], "Cymraeg-W": ["A dialect of the Welsh language."], "Aberystwyth": ["A dialect of the Welsh language."], "Aberteifi": ["A dialect of the Welsh language."], "Cymraeg-SW": ["ISO 639-6 entity"], "Caerfyrddin": ["ISO 639-6 entity"], "Llanymddyfri": ["ISO 639-6 entity"], "Llanelli": ["ISO 639-6 entity"], "Iaith Sir Benfro": ["ISO 639-6 entity"], "Preseli": ["ISO 639-6 entity"], "Ty Ddewi": ["ISO 639-6 entity"], "Cwm Gwuan": ["ISO 639-6 entity"], "Gwenhwyseg": ["A dialect of the Welsh language spoken in Gwent county."], "Tawe": ["A dialect of the Welsh language."], "Nedd": ["A dialect of the Welsh language."], "T\u00e2f Rhondda": ["A dialect of the Welsh language."], "Rhymni": ["A dialect of the Welsh language."], "Cymlish": ["A dialect of the Welsh language."], "Cymraeg \u00c9migr\u00e9": ["A dialect of the Welsh language."], "Lerpwi-Caerllion": ["A dialect of the Welsh language."], "Llundain": ["A dialect of the Welsh language."], "Cymraeg Americanaidd": ["A dialect of the Welsh language."], "Cymraeg-Y-Wladfa": ["A dialect of the Welsh language."], "Chubut Coast": ["A dialect of the Welsh language spoken in Argentina."], "Chubut Upstream": ["A dialect of the Welsh language spoken in Argentina."], "Cornish": ["A Celtic language spoken in Cornwall, Uk; it's an almost extinct language related to Welsh.", "Of or relating to Cornwall, the Cornish people, or the Cornish language.", "Of or relating to Cornish language.", "Of or relating to Cornwales or Cornish people."], "Cornish Written": ["The written versions of the Cornish language."], "Cornish Written Latin Script Old": ["The Cornish language written with the old Latin script."], "Cornish Written Latin Script Pre-Modern": ["The Cornish language written with the pre-moderm Latin script."], "Cornish Written Latin Script Modern": ["The Cornish language written with the modern Latin script."], "Cornish Spoken": ["The Cornish spoken language and its dialects."], "Modern Revived Cornish": ["A modernized version of the Cornish language spoken since the XXth century."], "Kemmyn": ["A modern dialect of the Cornish language."], "Breton Written": ["Written forms of the Breton language."], "Breton Written Latin Script Medieval": ["A written form of the Breton language."], "Breton Written Latin Script Pre-Modern": ["A written form of the Breton language."], "Breton Written Latin Script Modern": ["A written form of the Breton language."], "Breton Spoken": ["ISO 639-6 entity"], "Brezhoneg-Beleg": ["ISO 639-6 entity"], "Brezhoneg-Kerneweg": ["ISO 639-6 entity"], "Brezhoneg-Peurunvan": ["ISO 639-6 entity"], "Brezhoneg-Falhuneg": ["ISO 639-6 entity"], "Tregereg": ["ISO 639-6 entity"], "Tregereg Written": ["Written forms of the Tregereg language."], "Tregereg Written Latin Script": ["A written form of the Tregereg Written language."], "Tregereg-W": ["ISO 639-6 entity"], "Tregereg-C": ["ISO 639-6 entity"], "Tregereg-SE": ["ISO 639-6 entity"], "Goelo": ["ISO 639-6 entity"], "Leoneg": ["ISO 639-6 entity"], "Leoneg Written": ["ISO 639-6 entity"], "Leoneg Written Latin Script": ["Leoneg language written with the Latin Script."], "Batz": ["ISO 639-6 entity"], "Leoneg-E": ["ISO 639-6 entity"], "Leoneg-C": ["ISO 639-6 entity"], "Leoneg-W": ["ISO 639-6 entity"], "Uchant": ["ISO 639-6 entity"], "Mol\u00e8ne": ["ISO 639-6 entity"], "Kerneweg": ["ISO 639-6 entity"], "Kerneweg Written": ["Written forms of the Kerneweg language."], "Kerneweg Written Latin Script": ["A written form of the Kerneweg language."], "Kerneweg-NE": ["ISO 639-6 entity"], "Kerneweg-N": ["ISO 639-6 entity"], "Kerneweg-NW": ["ISO 639-6 entity"], "Kerneweg-W": ["ISO 639-6 entity"], "S\u00e9nan": ["ISO 639-6 entity"], "Kerneweg-SW": ["ISO 639-6 entity"], "Kerneweg-SE": ["ISO 639-6 entity"], "Gwenedeg-W": ["ISO 639-6 entity"], "Gwenedeg-E": ["ISO 639-6 entity"], "Gwenedeg-E Written": ["Written forms of the Gwenedeg-E dialect of Breton."], "Gwenedeg-E Written Latin Script": ["A written form of the Gwenedeg-E dialect of Breton."], "Gwenedeg-E Spoken": ["The dialects of the Gwenedeg-E language."], "Vannes": ["A dialect of the Gwenedeg-E language."], "Groix": ["A dialect of the Gwenedeg-E language."], "Houat": ["A dialect of the Gwenedeg-E language."], "Shelta": ["ISO 639-6 entity"], "Shelta Spoken": ["ISO 639-6 entity"], "Sheldruu-W": ["ISO 639-6 entity"], "American Travellers\u2019 Cant": ["ISO 639-6 entity"], "Australian Travellers\u2019 Cant": ["ISO 639-6 entity"], "Sheldruu\u2013N": ["ISO 639-6 entity"], "Central Sudanic ": ["A grouping of languages of the Nilo-Saharan language family spoken in the Central African Republic, Chad, Sudan, Uganda, and Congo (DRC)."], "Central Sudanic West": ["A group of Central Sudanic languages."], "Bongo Bagirmi": ["ISO 639-6 entity"], "Sara Bagirmi": ["ISO 639-6 entity"], "Birri": ["A language of Central African Republic"], "Birri Spoken": ["The spoken variant of the Birri language"], "Mboto": ["ISO 639-6 entity"], "Munga": ["ISO 639-6 entity"], "Fongoro": ["A language of Chad."], "Bagirmi Cluster": ["ISO 639-6 entity"], "Bagirmi": ["A Nilo-Saharan language spoken by the Baguirmi people mainly in the Chari-Baguirmi Prefecture of Chad. It was the language of the kingdom of Baguirmi."], "Bagirmi Written": ["The written versions of the Bagirmi language."], "Bagirmi Written Latin Script": ["The Bagirmi language written with the Latin script."], "Bagirmi Spoken": ["The Bagirmi spoken language and its dialects."], "Gol": ["A dialect of the Bagirmi language."], "Kibar": ["A dialect of the Bagirmi language."], "Bangri": ["A dialect of the Bagirmi language."], "Dam": ["A dialect of the Bagirmi language."], "Masenya": ["A dialect of the Bagirmi language."], "Buso": ["A dialect of the Bagirmi language.", "ISO 639-6 entity"], "Barma-W": ["A dialect of the Bagirmi language."], "Berakou": ["A language of Chad."], "Berakou Spoken": ["ISO 639-6 entity"], "Gulfey": ["ISO 639-6 entity"], "Lairi": ["ISO 639-6 entity"], "Bolo Djarma": ["ISO 639-6 entity"], "Mondogossou": ["ISO 639-6 entity"], "Manawadji": ["ISO 639-6 entity"], "Yiryo": ["ISO 639-6 entity"], "Naba": ["ISO 639-6 entity"], "Naba Spoken": ["ISO 639-6 entity"], "Kuka": ["ISO 639-6 entity"], "Kuka Spoken": ["ISO 639-6 entity"], "Masakori": ["ISO 639-6 entity"], "Batha": ["ISO 639-6 entity"], "Ras-El-Fil": ["ISO 639-6 entity"], "Bilala": ["ISO 639-6 entity"], "Bilala Spoken": ["ISO 639-6 entity"], "Kodoi": ["ISO 639-6 entity", "ISO 639-6 entity"], "Kodoi Spoken": ["ISO 639-6 entity", "ISO 639-6 entity"], "Kenga": ["A language of Chad."], "Kenga Written": ["ISO 639-6 entity"], "Kenga Spoken": ["ISO 639-6 entity"], "Bidjir": ["ISO 639-6 entity"], "Tar-Cenge": ["ISO 639-6 entity"], "Tar-Binama": ["ISO 639-6 entity"], "Tar-Binama Spoken": ["ISO 639-6 entity"], "Tar-Bolongo": ["ISO 639-6 entity"], "Tar-Bolongo Spoken": ["ISO 639-6 entity"], "Bernde": ["A language of Chad."], "Bernde Spoken": ["The spoken Amdang language and its dialects."], "Jaya": ["A language of Chad."], "Jaya Spoken": ["ISO 639-6 entity"], "Disa": ["ISO 639-6 entity", "A language of Chad."], "Disa Spoken": ["ISO 639-6 entity"], "Sara": ["ISO 639-6 entity"], "Sara Proper": ["ISO 639-6 entity"], "Murum": ["ISO 639-6 entity"], "Murum Spoken": ["ISO 639-6 entity"], "Ngambay": ["ISO 639-6 entity"], "Ngambay Written": ["ISO 639-6 entity"], "Ngambay Spoken": ["ISO 639-6 entity"], "Lara": ["ISO 639-6 entity", "One of the 23 states (estados) into which Venezuela is divided. Its capital is Barquisimeto."], "Benoye": ["ISO 639-6 entity"], "Kere": ["ISO 639-6 entity", "ISO 639-6 entity"], "Bemar": ["ISO 639-6 entity"], "Bemar Spoken": ["ISO 639-6 entity"], "Mbai-Doba": ["ISO 639-6 entity"], "Mango": ["ISO 639-6 entity"], "Mango Written": ["ISO 639-6 entity"], "Mango Spoken": ["ISO 639-6 entity"], "Mbai-Koro": ["ISO 639-6 entity"], "Gor": ["A language of Chad."], "Gor Written": ["ISO 639-6 entity"], "Gor Spoken": ["ISO 639-6 entity"], "Yamod": ["ISO 639-6 entity"], "Laka": ["A language of the Central African Republic and Chad", "A language of Nigeria."], "Laka Written": ["ISO 639-6 entity"], "Laka Spoken": ["ISO 639-6 entity"], "Laka-Ba\u00efbokoum": ["ISO 639-6 entity"], "Laka-W": ["ISO 639-6 entity"], "Laka-SE": ["ISO 639-6 entity"], "Mbay": ["ISO 639-6 entity"], "Mbay Written": ["ISO 639-6 entity"], "Mbay Written Latin Script": ["Mbay language written with the Latin Script."], "Mbay Spoken": ["ISO 639-6 entity"], "B\u00e9mour": ["ISO 639-6 entity"], "Ma\u03cangao": ["ISO 639-6 entity"], "Goula": ["ISO 639-6 entity"], "Pa\u03ca": ["ISO 639-6 entity"], "Mbai-Kan": ["ISO 639-6 entity"], "Mbai-Kan Spoken": ["ISO 639-6 entity"], "Dagba": ["A language of Central African Republic and Chad"], "Dagba Spoken": ["ISO 639-6 entity"], "Sar": ["ISO 639-6 entity"], "Sar Spoken": ["ISO 639-6 entity"], "Majingay": ["ISO 639-6 entity"], "Nar": ["ISO 639-6 entity"], "No (Sara)": ["ISO 639-6 entity"], "Peni": ["ISO 639-6 entity"], "Bedjond": ["A language of Chad."], "Bedjond Spoken": ["The spoken Bedjond language and its dialects."], "B\u00e9bote": ["A dialect of the Bedjond language."], "Yom": ["A dialect of the Bedjond language."], "Gulay": ["A language of Chad."], "Gulay Spoken": ["ISO 639-6 entity"], "Lai": ["ISO 639-6 entity"], "Koumra": ["ISO 639-6 entity"], "Sahr": ["ISO 639-6 entity"], "Gula (Chad)": ["ISO 639-6 entity"], "Ngam": ["ISO 639-6 entity", "ISO 639-6 entity"], "Ngam Spoken": ["ISO 639-6 entity", "ISO 639-6 entity"], "Ngam Tel": ["ISO 639-6 entity"], "Ngam Tira": ["ISO 639-6 entity"], "Kon Ngam": ["ISO 639-6 entity"], "Kle": ["ISO 639-6 entity"], "Ngam Gir Bor": ["ISO 639-6 entity"], "Gama": ["ISO 639-6 entity"], "Sara-Kaba Cluster": ["ISO 639-6 entity"], "Kaba": ["A language of Central African Republic and Chad.", "ISO 639-6 entity"], "Kaba Spoken": ["ISO 639-6 entity"], "Kaba-Pawa": ["ISO 639-6 entity"], "Kaba-Ba\u00efbokum": ["ISO 639-6 entity"], "Sara Dunjo": ["A language of Central African Republic"], "Sara Dunjo Spoken": ["The dialects of the Sara Dunjo language."], "Kuki": ["A dialecta of the Sara Dunjo language."], "Markunda": ["A dialecta of the Sara Dunjo language."], "Kaba Deme": ["A language of Chad."], "Sime": ["ISO 639-6 entity"], "Kuruwer": ["ISO 639-6 entity"], "Bumayga": ["ISO 639-6 entity"], "Boho": ["ISO 639-6 entity"], "Jaha": ["ISO 639-6 entity"], "Ndoko": ["ISO 639-6 entity"], "Kulfa": ["A language of Chad."], "Kulfa Spoken": ["ISO 639-6 entity"], "Kumi": ["ISO 639-6 entity"], "Male": ["ISO 639-6 entity"], "Kurumi": ["ISO 639-6 entity"], "Soko": ["ISO 639-6 entity"], "Sara Kaba": ["ISO 639-6 entity"], "Kaba Na": ["A language of Chad"], "Kaba Na Spoken": ["ISO 639-6 entity"], "Dunje": ["ISO 639-6 entity"], "Na": ["ISO 639-6 entity"], "Dana": ["ISO 639-6 entity"], "Banga": ["ISO 639-6 entity"], "Tye": ["ISO 639-6 entity"], "Jinge": ["ISO 639-6 entity"], "Joko": ["ISO 639-6 entity"], "Horo": ["An extinct language of Chad."], "Vale-Lutos Cluster": ["ISO 639-6 entity"], "Lutos": ["ISO 639-6 entity"], "Lutos Spoken": ["ISO 639-6 entity"], "Wada": ["ISO 639-6 entity"], "Konga": ["ISO 639-6 entity"], "Vale-A": ["ISO 639-6 entity"], "Vale-Dagba": ["ISO 639-6 entity"], "Nduka": ["ISO 639-6 entity"], "Tana": ["ISO 639-6 entity", "ISO 639-6 entity", "A dialect of the Dahalo language.", "The longest river in Kenya."], "Tele": ["ISO 639-6 entity"], "Tele Spoken": ["ISO 639-6 entity"], "Kara": ["The presumed language of the Gaya confederacy (1st to 6th century CE) in the south of the Korean peninsula.", "A language of Central African Republic.", "An Austronesian language spoken in the Kavieng District of New Ireland Province, Papua New Guinea."], "Gula (Central African Republic)": ["ISO 639-6 entity"], "Gula (Central African Republic) Spoken": ["ISO 639-6 entity"], "Mele": ["ISO 639-6 entity"], "Mot-Mar": ["ISO 639-6 entity"], "Mere": ["ISO 639-6 entity"], "Kara Southern": ["ISO 639-6 entity"], "Kara Southern Spoken": ["ISO 639-6 entity"], "Nguru": ["ISO 639-6 entity"], "Bubu": ["ISO 639-6 entity"], "Yulu": ["ISO 639-6 entity"], "Yulu Spoken": ["The dialects of the Yulu language."], "Yulu-W": ["A dialect of the Yulu language."], "Yulu-E": ["A dialect of the Yulu language."], "Binga": ["ISO 639-6 entity"], "Binga Spoken": ["ISO 639-6 entity"], "Binga-N": ["ISO 639-6 entity"], "Binga-S": ["ISO 639-6 entity"], "Furu": ["A language of Democratic Republic of the Congo and the Central Afican Republic"], "Furu Spoken": ["ISO 639-6 entity"], "Sinyar": ["ISO 639-6 entity"], "Sinyar Spoken": ["ISO 639-6 entity"], "Bongo-Baka Cluster": ["ISO 639-6 entity"], "Baka (Sudan)": ["ISO 639-6 entity"], "Baka (Sudan) Written": ["ISO 639-6 entity"], "Baka (Sudan) Spoken": ["ISO 639-6 entity"], "Bongo": ["A Central Sudanic language spoken by the Bongo people in sparsely populated areas of South Sudan."], "Bongo Written": ["The written forms of the Bongo language."], "Sinyar Written Latin Script": ["The Bongo language written with the Latin script."], "Bongo Spoken": ["The Bongo spoken language and its dialects."], "Busere-Bongo": ["A dialect of the Bongo language."], "Tonj-Bongo": ["A dialect of the Bongo language."], "Bungo": ["ISO 639-6 entity"], "Bungo Spoken": ["ISO 639-6 entity"], "Morokodo-Beli Cluster": ["ISO 639-6 entity"], "Beli (Sudan)": ["ISO 639-6 entity"], "Beli Spoken": ["The dialects of the Beli language.", "The Bideyat spoken language and its dialects."], "Wulu": ["ISO 639-6 entity"], "Wulu Spoken": ["ISO 639-6 entity"], "Bahri-Girinti": ["ISO 639-6 entity"], "Bahri-Girinti Spoken": ["ISO 639-6 entity"], "Sopi": ["ISO 639-6 entity"], "Sopi Spoken": ["ISO 639-6 entity"], "Jur-Modo": ["ISO 639-6 entity"], "Jur-Modo Written": ["ISO 639-6 entity"], "Jur-Modo Spoken": ["ISO 639-6 entity"], "Modo-Lali": ["ISO 639-6 entity"], "Modo-Kirim": ["ISO 639-6 entity"], "Lori": ["ISO 639-6 entity"], "Lori Spoken": ["ISO 639-6 entity"], "Wira": ["ISO 639-6 entity"], "Wira Spoken": ["ISO 639-6 entity"], "Mittu": ["ISO 639-6 entity"], "Morokodo-Mo\u2019da Cluster": ["ISO 639-6 entity"], "Nyamusa-Molo": ["ISO 639-6 entity"], "Nyamusa-Molo Spoken": ["ISO 639-6 entity"], "Nyamusa": ["ISO 639-6 entity"], "Nyamusa Spoken": ["ISO 639-6 entity"], "Molo": ["ISO 639-6 entity", "ISO 639-6 entity"], "Molo Spoken": ["ISO 639-6 entity", "ISO 639-6 entity"], "Mo'da": ["A language of Sudan."], "Mo\u2019da Spoken": ["The dialects of the mo'da language."], "Morokodo": ["ISO 639-6 entity"], "Biti": ["ISO 639-6 entity"], "M\u00e4du": ["ISO 639-6 entity"], "Kresh": ["ISO 639-6 entity"], "Gbaya (Sudan)": ["ISO 639-6 entity"], "Dongo": ["ISO 639-6 entity"], "Naka": ["ISO 639-6 entity"], "Gbaya-Ngbongbo": ["ISO 639-6 entity"], "Gbaya-Ndogo": ["ISO 639-6 entity"], "Gbaya-Gboko": ["ISO 639-6 entity"], "Gbaya-Dara": ["ISO 639-6 entity"], "Aja (Sudan)": ["A Nilo-Saharan language of the Central Sudanic subgroup, spoken in the southern Sudanese province of Bahr el Ghazal and along the Sudanese border in the Central African Republic."], "Orlo": ["ISO 639-6 entity"], "Central Sudanic East": ["A group of Central Sudanic languages."], "Moru-Madi Cluster": ["ISO 639-6 entity"], "Moru-Madi North": ["ISO 639-6 entity"], "Moru": ["ISO 639-6 entity"], "Moru Spoken": ["ISO 639-6 entity"], "Miza": ["ISO 639-6 entity"], "Kala-K\u00e4diro-Si": ["ISO 639-6 entity"], "Kadiro-E": ["ISO 639-6 entity"], "Laka-Madi": ["ISO 639-6 entity"], "Andri": ["ISO 639-6 entity"], "B\u00e4lib\u00e4": ["ISO 639-6 entity"], "Kala-\u00c4gi": ["ISO 639-6 entity"], "Wadi-Ti": ["ISO 639-6 entity"], "Moru-Madi Central": ["ISO 639-6 entity"], "Avokaya": ["A language of Sudan and the Democratic Republic of the Congo"], "Odzila-Ti": ["ISO 639-6 entity"], "Ajiga-Ti": ["ISO 639-6 entity"], "Logo": ["A language of Democratic Republic of the Congo."], "Logo Spoken": ["ISO 639-6 entity"], "Oga-Muru": ["ISO 639-6 entity"], "Lolya": ["ISO 639-6 entity"], "Tabulaga": ["ISO 639-6 entity"], "Tabuloba": ["ISO 639-6 entity"], "Obi-Lebha": ["ISO 639-6 entity"], "Bhagira": ["ISO 639-6 entity"], "Doka": ["ISO 639-6 entity", "ISO 639-6 entity"], "Ogambi": ["ISO 639-6 entity"], "B\u00e4ri-Ti": ["ISO 639-6 entity"], "Dida- Dogo": ["ISO 639-6 entity"], "Dida- Dogo Spoken": ["ISO 639-6 entity"], "Didi": ["ISO 639-6 entity"], "Dogo": ["ISO 639-6 entity"], "Keliko": ["ISO 639-6 entity"], "Keliko Spoken": ["ISO 639-6 entity"], "Keliko-W": ["ISO 639-6 entity"], "Keliko-E": ["ISO 639-6 entity"], "Omi": ["ISO 639-6 entity"], "Aringa": ["ISO 639-6 entity"], "Kulu-Ti": ["ISO 639-6 entity"], "Andre-Leba-Ti": ["ISO 639-6 entity"], "Andre-Leba-Ti Spoken": ["The dialects of the Andre-Leba-Ti language."], "Andre-Leba-N": ["A dialect of the Andre-Leba-Ti language."], "Andre-Leba-S": ["A dialect of the Andre-Leba-Ti language."], "Lugbara": ["A language of the Democratic Republic of the Congo and Uganda."], "Vura- Aluru": ["ISO 639-6 entity"], "Vura- Aluru Spoken": ["ISO 639-6 entity"], "Vura- Opia": ["ISO 639-6 entity"], "Otsho": ["ISO 639-6 entity"], "Aluru": ["ISO 639-6 entity"], "Padzulu": ["ISO 639-6 entity"], "Nyo": ["ISO 639-6 entity"], "Zaki- Maratsa": ["ISO 639-6 entity"], "Maratsa": ["A dialect of the Zaki-Maratsa language."], "Zaki": ["A dialect of the Zaki-Maratsa language."], "Moru-Madi South": ["ISO 639-6 entity"], "Southern Ma\u2019di ": ["ISO 639-6 entity"], "Okollo": ["ISO 639-6 entity"], "Ogoko": ["ISO 639-6 entity"], "Rigbo": ["ISO 639-6 entity"], "Ma\u2019di": ["A Moru\u2013Madi language spoken by the Ma'di people in Magwi County in the Sudan, and in Adjumani and Moyo districts in Uganda."], "Moyo": ["ISO 639-6 entity"], "Oyuwi": ["ISO 639-6 entity"], "Lokai": ["ISO 639-6 entity"], "Pandikeri": ["ISO 639-6 entity"], "Burulo": ["ISO 639-6 entity"], "Olu\u2019bo": ["ISO 639-6 entity"], "Ki-Mangbetu Cluster": ["ISO 639-6 entity"], "Mangbetu": ["ISO 639-6 entity"], "Na-Meje-Ti": ["ISO 639-6 entity"], "Na-Meje-Ti Spoken": ["ISO 639-6 entity"], "Rungu": ["ISO 639-6 entity"], "Nala": ["ISO 639-6 entity"], "Telly": ["ISO 639-6 entity"], "Nepoko": ["ISO 639-6 entity"], "Na-Makere-Ti": ["ISO 639-6 entity"], "Ba-Kango": ["ISO 639-6 entity"], "Na-Ma-Popoi-Ti": ["ISO 639-6 entity"], "Na-Aberu-Ti": ["ISO 639-6 entity"], "Na-Mabisanga": ["ISO 639-6 entity"], "Ma-Ngbele": ["ISO 639-6 entity"], "Ma-Ngbele Spoken": ["ISO 639-6 entity"], "Watsa": ["ISO 639-6 entity"], "Gombari": ["ISO 639-6 entity"], "Na-Majuu": ["ISO 639-6 entity"], "Lombi": ["A language of Democratic Republic of the Congo."], "Asoa": ["A language of Democratic Republic of the Congo."], "Mangbutu Efe": ["ISO 639-6 entity"], "Amengi": ["ISO 639-6 entity"], "Amengi Spoken": ["The dialects of the Amengi language."], "Muledre ": ["A dialect of the Amengi language."], "Maijiru": ["A dialect of the Amengi language."], "Mamvu": ["ISO 639-6 entity"], "Mamvu Spoken": ["ISO 639-6 entity"], "Karuka- Lendu": ["ISO 639-6 entity"], "Mamvu-Kebo": ["ISO 639-6 entity"], "Mari- Minza": ["ISO 639-6 entity"], "Andobi": ["ISO 639-6 entity"], "Bari": ["A language of Sudan and Uganda.", "A province in the Apulia (or Puglia) region of Italy."], "Mamvu-Karo": ["ISO 639-6 entity"], "Ande-Gofa": ["ISO 639-6 entity"], "Lese": ["A language of Democratic Republic of the Congo."], "Lese Spoken": ["ISO 639-6 entity"], "Lese-Otsodu": ["ISO 639-6 entity"], "N-Dese": ["ISO 639-6 entity"], "Andali": ["ISO 639-6 entity"], "Lese-Karo": ["ISO 639-6 entity"], "Obi": ["ISO 639-6 entity"], "Arumbi": ["ISO 639-6 entity"], "Fare": ["ISO 639-6 entity"], "Mvuba": ["ISO 639-6 entity"], "Mvuba Spoken": ["ISO 639-6 entity"], "Oicha": ["ISO 639-6 entity"], "Obi-Ye": ["ISO 639-6 entity"], "Mangbutu": ["ISO 639-6 entity"], "Mangbutu Spoken": ["ISO 639-6 entity"], "Mongbutu": ["ISO 639-6 entity"], "Mangbutu-Karo": ["ISO 639-6 entity"], "Mangbutu-Lobo": ["ISO 639-6 entity"], "Awimeri": ["ISO 639-6 entity"], "Awimeri Spoken": ["ISO 639-6 entity"], "Angwe": ["ISO 639-6 entity"], "Angwe Spoken": ["The dialects of the Angwe language."], "Makutana": ["ISO 639-6 entity"], "Makutana Spoken": ["ISO 639-6 entity"], "Andinai": ["ISO 639-6 entity"], "Andinai Spoken": ["The dialects of the Andinai language."], "Bamodo": ["ISO 639-6 entity"], "Bamodo Spoken": ["The dialects of the Bamodo language."], "Ndo": ["ISO 639-6 entity"], "Ndo Written": ["ISO 639-6 entity"], "Ndo Spoken": ["ISO 639-6 entity"], "Ke\u2019bu-Tu": ["ISO 639-6 entity"], "Ke\u2019bu-Tu Spoken": ["ISO 639-6 entity"], "Avari-Tu Spoken": ["ISO 639-6 entity"], "Membi": ["ISO 639-6 entity"], "Membi Spoken": ["ISO 639-6 entity"], "Ki-Lendu Cluster": ["ISO 639-6 entity"], "Lendu": ["A language of Democratic Republic of the Congo and Uganda"], "Lendu Written": ["ISO 639-6 entity"], "Lendu Spoken": ["ISO 639-6 entity"], "Jo-Dha": ["ISO 639-6 entity"], "Jo-Dha Spoken": ["ISO 639-6 entity"], "Bale-Dha": ["ISO 639-6 entity"], "Bale-Dha Spoken": ["ISO 639-6 entity"], "Go-Dha": ["ISO 639-6 entity"], "Go-Dha Spoken": ["ISO 639-6 entity"], "Ta-Dha": ["ISO 639-6 entity"], "Ta-Dha Spoken": ["ISO 639-6 entity"], "Pi-Dha": ["ISO 639-6 entity"], "Pi-Dha Spoken": ["ISO 639-6 entity"], "Ke-Dha": ["ISO 639-6 entity"], "Ke-Dha Spoken": ["ISO 639-6 entity"], "Ddra-Lo": ["ISO 639-6 entity"], "Ddra-Lo Spoken": ["ISO 639-6 entity"], "Njaw-Lo": ["ISO 639-6 entity"], "Njaw-Lo Spoken": ["ISO 639-6 entity"], "Lendu South": ["ISO 639-6 entity"], "N-Dru-Na": ["ISO 639-6 entity"], "N-Dru-Na Spoken": ["ISO 639-6 entity"], "Zadu": ["ISO 639-6 entity"], "Monobi": ["ISO 639-6 entity"], "Kabona": ["ISO 639-6 entity"], "Ngiti": ["ISO 639-6 entity"], "Ngiti Spoken": ["ISO 639-6 entity"], "Bendi": ["A language of Democratic Republic of the Congo."], "Bendi Spoken": ["ISO 639-6 entity"], "Chadic": ["A Afroasiatic language belonging to a language family spoken across northern Nigeria, Niger, Chad, Central African Republic and Cameroon, belonging to the Afroasiatic phylum."], "Chadic East Group B": ["ISO 639-6 entity"], "Dangala Complex": ["ISO 639-6 entity"], "Dangala Group 2 Cluster": ["ISO 639-6 entity"], "Masmaje": ["ISO 639-6 entity"], "Masmaje Spoken": ["ISO 639-6 entity"], "Zirenkel": ["ISO 639-6 entity"], "Zirenkel Spoken": ["The dialects of the Zirenkel language."], "Kajakse": ["A language of Chad."], "Kajakse Spoken": ["ISO 639-6 entity"], "Birgit": ["A language of Chad."], "Birgit Spoken": ["The dialects of the Birgit language."], "Abgue": ["A dialect of the Birgit language."], "Duguri": ["A dialect of the Birgit language."], "Agrab": ["A dialect of the Birgit language."], "Birgit E": ["A dialect of the Birgit language."], "Toram": ["ISO 639-6 entity"], "Toram Spoken": ["ISO 639-6 entity"], "Dangala Group 1 Cluster": ["ISO 639-6 entity"], "Jonkor Bourmataguil": ["A language of Chad."], "Jonkor Bourmataguil Spoken": ["ISO 639-6 entity"], "mogum": ["ISO 639-6 entity"], "Mogum Spoken": ["ISO 639-6 entity"], "Mogum-E": ["ISO 639-6 entity"], "Mogum-E Spoken": ["ISO 639-6 entity"], "Mogum-W": ["ISO 639-6 entity"], "Mogum-W Spoken": ["ISO 639-6 entity"], "Jegu": ["ISO 639-6 entity"], "Jegu Spoken": ["ISO 639-6 entity"], "Mabire": ["ISO 639-6 entity"], "Mabire Spoken": ["ISO 639-6 entity"], "Bidiyo": ["A Chadic language spoken in Chad, in the departments of Gu\u00e9ra, south of Mongo."], "Bidiyo Written": ["The written forms of the Bidiyo language."], "Bidiyo Spoken": ["The spoken Bidiyo language and its dialects."], "Garaw-Gino": ["A dialect of the bidiyo language."], "Jek-Kino": ["A dialect of the bidiyo language."], "Waana": ["ISO 639-6 entity"], "Waana Spoken": ["ISO 639-6 entity"], "Bigaw-Guno": ["ISO 639-6 entity"], "Nal-Guno": ["ISO 639-6 entity"], "Oboy-Guno": ["ISO 639-6 entity"], "Migaama": ["ISO 639-6 entity"], "Migaama Spoken": ["ISO 639-6 entity"], "Dambiya": ["ISO 639-6 entity"], "Gamiya": ["ISO 639-6 entity"], "Doga": ["ISO 639-6 entity", "A language of Papua New Guinea."], "Dangal\u00e9at": ["A Chadic language spoken in Chad, in the departments of Abtouyour and Gu\u00e9ra, between Bitkine and Mongo."], "Dangal\u00e9at Written": ["ISO 639-6 entity"], "Dangal\u00e9at Spoken": ["ISO 639-6 entity"], "Bogrom": ["ISO 639-6 entity"], "Bara": ["ISO 639-6 entity", "ISO 639-6 entity", "An ethnicity in central southern Madagascar speaking the Bara Malagasy dialect."], "Korlongo": ["ISO 639-6 entity"], "Tialo-Zoudou": ["ISO 639-6 entity"], "Dangla-C": ["ISO 639-6 entity"], "Dangla-C Spoken": ["ISO 639-6 entity"], "Bokare": ["ISO 639-6 entity"], "Tyoro": ["ISO 639-6 entity", "ISO 639-6 entity"], "Adougoul": ["ISO 639-6 entity"], "Barlo": ["ISO 639-6 entity"], "Dangla-W": ["ISO 639-6 entity"], "Dangla-W Spoken": ["ISO 639-6 entity"], "Aranha": ["ISO 639-6 entity"], "Korbo": ["ISO 639-6 entity"], "Gole": ["ISO 639-6 entity"], "Tialo-Ideba": ["ISO 639-6 entity"], "Mawa (Chad)": ["ISO 639-6 entity"], "Ubi": ["ISO 639-6 entity"], "Mukulu": ["ISO 639-6 entity"], "Segin-Ki": ["ISO 639-6 entity"], "Doli-Ki": ["ISO 639-6 entity"], "Mori-Ko": ["ISO 639-6 entity"], "Mezim-Ko": ["ISO 639-6 entity"], "Gugi-Ko": ["ISO 639-6 entity"], "Samrai Cluster": ["ISO 639-6 entity"], "Barein": ["A language of Chad."], "Barein Spoken": ["The dialects of the Barein language."], "Jalkia": ["A dialect of the Barein language."], "Guilia": ["A dialect of the Barein language."], "Sokoro": ["ISO 639-6 entity"], "Sokoro Spoken": ["ISO 639-6 entity"], "Bedanga": ["ISO 639-6 entity"], "Saba": ["ISO 639-6 entity", "An island in the Caribbean Netherlands, which is a part of the Kingdom of the Netherlands \\n\\n(Coordinates: 17\u00b0 38\u2032 0\u2033 N, 63\u00b0 14\u2032 0\u2033 W)"], "Tamki": ["ISO 639-6 entity"], "Somrai": ["An East Chadic language spoken in the southwestern Chadian prefectures of Tandjil\u00e9 and Lai."], "Somrai Group 2 Cluster": ["ISO 639-6 entity"], "Sarua": ["ISO 639-6 entity"], "Gadang": ["ISO 639-6 entity"], "Miltu": ["An East Chadic language spoken in southwestern Chad."], "Boor": ["A language of Chad."], "Somrai Group 1 Cluster": ["ISO 639-6 entity"], "ndam": ["ISO 639-6 entity"], "Dik-Ndam": ["ISO 639-6 entity"], "Ndam-Ndam": ["ISO 639-6 entity"], "Mawer": ["ISO 639-6 entity"], "Mire": ["ISO 639-6 entity"], "Tumak": ["ISO 639-6 entity"], "Nancere": ["ISO 639-6 entity", "ISO 639-6 entity"], "Nancere Group 1 Cluster": ["ISO 639-6 entity"], "kimr\u00e9": ["ISO 639-6 entity"], "Kimr-Uwa": ["ISO 639-6 entity"], "Bordo": ["ISO 639-6 entity"], "Tchere-Aiba": ["ISO 639-6 entity"], "Nancere Group 2": ["ISO 639-6 entity"], "gabri": ["ISO 639-6 entity"], "Moonde": ["ISO 639-6 entity"], "Dormo": ["ISO 639-6 entity"], "Darbe": ["ISO 639-6 entity"], "Tobanga": ["ISO 639-6 entity"], "Kabalai": ["A language of Chad."], "Lele (Chad)": ["ISO 639-6 entity"], "Kera Cluster": ["ISO 639-6 entity"], "Kwang": ["A language of Chad."], "Ngam-A": ["ISO 639-6 entity"], "Aloa": ["ISO 639-6 entity"], "Modgel": ["ISO 639-6 entity"], "Tchagin": ["ISO 639-6 entity"], "Mobu": ["ISO 639-6 entity"], "Masa Cluster": ["ISO 639-6 entity"], "masana": ["ISO 639-6 entity"], "Yagwa": ["ISO 639-6 entity"], "Domo": ["ISO 639-6 entity"], "Walya": ["ISO 639-6 entity"], "Bugudum": ["ISO 639-6 entity"], "Viri": ["ISO 639-6 entity"], "Gizay": ["ISO 639-6 entity"], "Bongor-N": ["ISO 639-6 entity"], "Gumay": ["ISO 639-6 entity"], "Ham": ["ISO 639-6 entity"], "May-Mbara": ["ISO 639-6 entity"], "Zumaya": ["ISO 639-6 entity"], "Musey": ["ISO 639-6 entity"], "Musey Spoken": ["ISO 639-6 entity"], "Bongor-S": ["ISO 639-6 entity"], "Ngame": ["ISO 639-6 entity"], "Jaraw-Domo": ["ISO 639-6 entity"], "Lew": ["ISO 639-6 entity"], "Marba": ["ISO 639-6 entity"], "Monogoy": ["ISO 639-6 entity"], "mesme": ["ISO 639-6 entity"], "Bero": ["ISO 639-6 entity"], "Zamre": ["ISO 639-6 entity"], "Pala-Wa": ["ISO 639-6 entity"], "Sorga": ["ISO 639-6 entity"], "Ngete": ["ISO 639-6 entity"], "Ngoy": ["ISO 639-6 entity"], "Batna ": ["ISO 639-6 entity"], "Herd": ["ISO 639-6 entity"], "Cimiang": ["ISO 639-6 entity"], "Taari": ["ISO 639-6 entity"], "P\u00e9vs\u00e9": ["ISO 639-6 entity"], "P\u00e9v\u00e9 Spoken": ["ISO 639-6 entity"], "Lame": ["A language of Chad and Cameroon.", "A language of Nigeria."], "Doe": ["ISO 639-6 entity"], "Gidar": ["A language of Cameroon and Chad."], "Gidar Spoken": ["ISO 639-6 entity"], "Lam": ["ISO 639-6 entity"], "Lam Spoken": ["ISO 639-6 entity"], "Chadic West Group A": ["ISO 639-6 entity"], "Bole Angas": ["ISO 639-6 entity"], "Bole Tangale": ["ISO 639-6 entity"], "Tangale Complex": ["ISO 639-6 entity"], "Dera (Nigeria)": ["ISO 639-6 entity"], "Dera (Nigeria) Written": ["ISO 639-6 entity"], "Dera (Nigeria) Spoken": ["ISO 639-6 entity"], "Shani": ["ISO 639-6 entity"], "Kiri": ["ISO 639-6 entity"], "Kiri Spoken": ["ISO 639-6 entity"], "Gasi": ["ISO 639-6 entity"], "Gasi Spoken": ["ISO 639-6 entity"], "Tangale Proper Cluster": ["ISO 639-6 entity"], "Tangale": ["ISO 639-6 entity"], "Tangale Written": ["ISO 639-6 entity"], "Tangale Spoken": ["ISO 639-6 entity"], "Ture": ["ISO 639-6 entity"], "Biliri": ["ISO 639-6 entity"], "Biliri Spoken": ["ISO 639-6 entity"], "Kaltungo": ["ISO 639-6 entity"], "Kaltungo Spoken": ["ISO 639-6 entity"], "Shongom": ["ISO 639-6 entity"], "Shongom Spoken": ["ISO 639-6 entity"], "Pero": ["A West Chadic language spoken in the south-west of Billiri in the Gombe State of Nigeria."], "Kushi": ["A language of Nigeria.", "ISO 639-6 entity"], "Kushi Spoken": ["ISO 639-6 entity"], "Piya-Kwonci": ["ISO 639-6 entity"], "Piya-Kwonci Written": ["ISO 639-6 entity"], "Piya-Kwonci Spoken": ["ISO 639-6 entity"], "Piya": ["ISO 639-6 entity"], "Kwonci": ["ISO 639-6 entity"], "Kutto": ["A language of Nigeria."], "Kutto Spoken": ["ISO 639-6 entity"], "Kwaami": ["A language of Nigeria."], "Kwaami Spoken": ["ISO 639-6 entity"], "Bole Complex": ["ISO 639-6 entity"], "Bure": ["A language of Nigeria."], "Bure Spoken": ["ISO 639-6 entity"], "Bole Proper Cluster": ["ISO 639-6 entity"], "Maaka": ["ISO 639-6 entity"], "Maaka Spoken": ["ISO 639-6 entity"], "Bole": ["A Western Chadic language spoken by the Bole people in Yobe and Gombe States of northeastern Nigeria."], "Bole Written": ["The written forms of the Bole language."], "Bole Spoken": ["The Bole spoken language and its dialects."], "Bor-Pika": ["ISO 639-6 entity"], "Bor-Pika Spoken": ["ISO 639-6 entity"], "Ngara": ["ISO 639-6 entity"], "Ngara Spoken": ["ISO 639-6 entity"], "Beele": ["A language of Nigeria."], "Ngamo": ["ISO 639-6 entity"], "Ngamo Spoken": ["ISO 639-6 entity"], "Giiwo": ["A language of Nigeria."], "Giiwo Spoken": ["ISO 639-6 entity"], "Kubi": ["ISO 639-6 entity", "ISO 639-6 entity"], "Deno": ["A language of Nigeria."], "Deno-N": ["ISO 639-6 entity"], "Deno-S": ["ISO 639-6 entity"], "Galambu": ["ISO 639-6 entity", "A language of Nigeria."], "Gera": ["A language of Nigeria"], "Gera Spoken": ["ISO 639-6 entity"], "Geruma": ["A language of Nigeria."], "Geruma Spoken": ["ISO 639-6 entity"], "Surum": ["ISO 639-6 entity"], "Duurum": ["ISO 639-6 entity"], "Geruma-Bauchi": ["ISO 639-6 entity"], "Geruma-Bauchi Spoken": ["ISO 639-6 entity"], "Geruma-Darazo": ["ISO 639-6 entity"], "Geruma-Darazo Spoken": ["ISO 639-6 entity"], "Kholok": ["A language of Nigeria."], "Kholok Spoken": ["ISO 639-6 entity"], "Nyam": ["ISO 639-6 entity"], "Nyam Spoken": ["ISO 639-6 entity"], "Karekare": ["A language of Nigeria."], "Karekare Written": ["ISO 639-6 entity"], "Karekare Spoken": ["ISO 639-6 entity"], "Birkai": ["ISO 639-6 entity"], "Kwarta Mataci": ["ISO 639-6 entity"], "Jalalum": ["ISO 639-6 entity"], "Jalalum Spoken": ["ISO 639-6 entity"], "Pakaro": ["ISO 639-6 entity"], "Pakaro Spoken": ["ISO 639-6 entity"], "Ngwajum": ["ISO 639-6 entity"], "Ngwajum Spoken": ["ISO 639-6 entity"], "Chadic West Group B": ["ISO 639-6 entity"], "Bade Warji": ["ISO 639-6 entity"], "Bade": ["A language of Nigeria.", "ISO 639-6 entity"], "Bade Proper Cluster": ["ISO 639-6 entity"], "Ngizim": ["ISO 639-6 entity"], "Ngizim Spoken": ["ISO 639-6 entity"], "Gashua": ["ISO 639-6 entity"], "Gashua Spoken": ["ISO 639-6 entity"], "Mazgarwa": ["ISO 639-6 entity"], "Mazgarwa Spoken": ["ISO 639-6 entity"], "Bade-Kado": ["ISO 639-6 entity"], "Magwaram": ["ISO 639-6 entity"], "Magwaram Spoken": ["ISO 639-6 entity"], "Duwai": ["A language of Nigeria."], "Auyokawa": ["ISO 639-6 entity"], "Shirawa": ["ISO 639-6 entity"], "Mober": ["ISO 639-6 entity"], "Warji Cluster": ["ISO 639-6 entity"], "Warji": ["ISO 639-6 entity"], "Warji Spoken": ["ISO 639-6 entity"], "Gala": ["ISO 639-6 entity", "ISO 639-6 entity"], "Siri": ["ISO 639-6 entity"], "Siri Spoken": ["ISO 639-6 entity"], "Siri-N": ["ISO 639-6 entity"], "Siri-N Spoken": ["ISO 639-6 entity"], "Siri-S": ["ISO 639-6 entity"], "Siri-S Spoken": ["ISO 639-6 entity"], "Diri": ["A language of Nigeria."], "Diri-W": ["ISO 639-6 entity"], "Diri-E": ["ISO 639-6 entity"], "Ciwogai": ["ISO 639-6 entity"], "Pa'a": ["ISO 639-6 entity"], "Pa'a Written": ["ISO 639-6 entity"], "Pa'a Spoken": ["ISO 639-6 entity"], "Miya": ["ISO 639-6 entity"], "Miya Written": ["ISO 639-6 entity"], "Miya Spoken": ["ISO 639-6 entity"], "Faishang": ["ISO 639-6 entity"], "Fursum": ["ISO 639-6 entity"], "Federe": ["ISO 639-6 entity"], "Demshin": ["ISO 639-6 entity"], "Kariya": ["ISO 639-6 entity"], "Kariya Spoken": ["ISO 639-6 entity"], "Mburku": ["ISO 639-6 entity"], "Mburku Spoken": ["ISO 639-6 entity"], "Zumbun": ["ISO 639-6 entity"], "Zumbun Spoken": ["ISO 639-6 entity"], "Ajawa": ["ISO 639-6 entity"], "Jimi (Nigeria)": ["ISO 639-6 entity"], "Jimi (Nigeria) Spoken": ["ISO 639-6 entity"], "Zumo": ["ISO 639-6 entity"], "Zumo Spoken": ["ISO 639-6 entity"], "Zaar Complex": ["ISO 639-6 entity"], "Guruntum Cluster": ["ISO 639-6 entity"], "Guruntum- Mbaaru": ["ISO 639-6 entity"], "Guruntum- Mbaaru Spoken": ["ISO 639-6 entity"], "Dooka": ["ISO 639-6 entity"], "Gayar": ["ISO 639-6 entity"], "Karakara": ["ISO 639-6 entity"], "Kuuku": ["ISO 639-6 entity"], "Kuuku Spoken": ["ISO 639-6 entity"], "Guruntum": ["ISO 639-6 entity"], "Guruntum Spoken": ["ISO 639-6 entity"], "Mbaaru": ["ISO 639-6 entity"], "Mbaaru Spoken": ["ISO 639-6 entity"], "Ju": ["A language of Nigeria."], "Ju Spoken": ["ISO 639-6 entity"], "Zangwal": ["ISO 639-6 entity"], "Tala Spoken": ["ISO 639-6 entity"], "Luri": ["A language of Nigeria.", "An Indo-European language spoken by 3.5 million people mostly in western Iran and eastern Iraq."], "Luri Spoken": ["ISO 639-6 entity"], "Zaar Proper Cluster": ["ISO 639-6 entity"], "Geji": ["A language of Nigeria."], "Geji Spoken": ["ISO 639-6 entity"], "Bolu": ["ISO 639-6 entity"], "Bolu Spoken": ["ISO 639-6 entity"], "Magong": ["ISO 639-6 entity"], "Magong Spoken": ["ISO 639-6 entity"], "Pelu": ["ISO 639-6 entity"], "Pelu Spoken": ["ISO 639-6 entity"], "Zaranda": ["ISO 639-6 entity"], "Buu": ["ISO 639-6 entity"], "Buu Spoken": ["ISO 639-6 entity"], "Polci": ["ISO 639-6 entity"], "Polci Written": ["ISO 639-6 entity"], "Polci Spoken": ["ISO 639-6 entity"], "Zul": ["ISO 639-6 entity"], "M-Barmi": ["ISO 639-6 entity"], "M-Barmi Spoken": ["ISO 639-6 entity"], "M-Baram": ["ISO 639-6 entity"], "M-Baram Spoken": ["ISO 639-6 entity"], "Diir": ["ISO 639-6 entity"], "Diir Spoken": ["ISO 639-6 entity"], "Dra": ["ISO 639-6 entity"], "Dra Spoken": ["ISO 639-6 entity"], "Buli": ["ISO 639-6 entity", "A language of Indonesia (Maluku)."], "Buli Spoken": ["ISO 639-6 entity"], "Langas": ["ISO 639-6 entity"], "Langas Spoken": ["ISO 639-6 entity"], "Nyamzax": ["ISO 639-6 entity"], "Nyamzax Spoken": ["ISO 639-6 entity"], "Lundur": ["ISO 639-6 entity"], "Lundur Spoken": ["ISO 639-6 entity"], "Zumbul": ["ISO 639-6 entity"], "Zumbul Spoken": ["ISO 639-6 entity"], "Boodla": ["ISO 639-6 entity"], "Boodla Spoken": ["ISO 639-6 entity"], "Dass": ["ISO 639-6 entity"], "Dass Spoken": ["ISO 639-6 entity"], "Wandi": ["ISO 639-6 entity"], "Wandi Spoken": ["ISO 639-6 entity"], "Lukshi": ["ISO 639-6 entity"], "Lukshi Spoken": ["ISO 639-6 entity"], "Durr": ["ISO 639-6 entity"], "Durr Spoken": ["ISO 639-6 entity"], "Baraza": ["ISO 639-6 entity"], "Baraza Spoken": ["The dialects of the Baraza language."], "Zeem": ["ISO 639-6 entity"], "Zeem Spoken": ["The dialects of the Zeem language."], "Tulai": ["ISO 639-6 entity"], "Tulai Spoken": ["ISO 639-6 entity"], "Danshe": ["ISO 639-6 entity"], "Danshe Spoken": ["ISO 639-6 entity"], "Chaari": ["ISO 639-6 entity"], "Chaari Spoken": ["ISO 639-6 entity"], "Zakshi": ["ISO 639-6 entity"], "Zakshi Spoken": ["The dialects of the Zakshi language."], "Zari": ["ISO 639-6 entity"], "Zari Spoken": ["The dialects of the Zari language."], "Kopti": ["ISO 639-6 entity"], "Kopti Spoken": ["ISO 639-6 entity"], "Kwapm": ["ISO 639-6 entity"], "Kwapm Spoken": ["ISO 639-6 entity"], "Boto": ["ISO 639-6 entity"], "Boto Spoken": ["ISO 639-6 entity"], "Saya": ["ISO 639-6 entity"], "Saya Spoken": ["ISO 639-6 entity"], "Sigidi": ["ISO 639-6 entity"], "Sigidi Spoken": ["ISO 639-6 entity"], "Vikzar": ["ISO 639-6 entity"], "Vikzar Spoken": ["ISO 639-6 entity"], "Kal": ["ISO 639-6 entity"], "Kal Spoken": ["ISO 639-6 entity"], "Gambar-Leere": ["ISO 639-6 entity"], "Gambar-Leere Spoken": ["ISO 639-6 entity"], "Lusa": ["ISO 639-6 entity"], "Lusa Spoken": ["ISO 639-6 entity"], "Boghom Complex": ["ISO 639-6 entity"], "Kir-Bala Cluster": ["ISO 639-6 entity"], "Kir": ["ISO 639-6 entity"], "Kir Spoken": ["ISO 639-6 entity"], "Bala Spoken": ["ISO 639-6 entity"], "Mangas": ["ISO 639-6 entity"], "Mangas Spoken": ["ISO 639-6 entity"], "Boghom": ["A language of Nigeria."], "Boghom Written": ["ISO 639-6 entity"], "Boghom Spoken": ["The dialects of the Boghom language."], "Angas": ["ISO 639-6 entity", "An Afro-Asiatic language spoken by the Anga people in Plateau State, Nigeria."], "Angas Proper Complex": ["ISO 639-6 entity"], "Yiwom": ["ISO 639-6 entity"], "Angas Proper Group 1 Cluster": ["ISO 639-6 entity"], "Ngas": ["An Afro-Asiatic language spoken by the Anga people in Plateau State, Nigeria."], "N-Ngas-W": ["ISO 639-6 entity"], "N-Ngas-W Spoken": ["ISO 639-6 entity"], "Pankshin": ["ISO 639-6 entity"], "Wukkos": ["ISO 639-6 entity"], "Garram": ["ISO 639-6 entity"], "N-Ngas-E": ["ISO 639-6 entity"], "N-Ngas-E Spoken": ["ISO 639-6 entity"], "Kabwir": ["ISO 639-6 entity"], "Amper": ["ISO 639-6 entity"], "Mwaghavul": ["ISO 639-6 entity"], "Mwaghavul Written": ["ISO 639-6 entity"], "Mwaghavul Spoken": ["ISO 639-6 entity"], "Mapun": ["A language of the Philippines."], "Mapun Spoken": ["ISO 639-6 entity"], "Panyam": ["ISO 639-6 entity"], "Panyam Spoken": ["ISO 639-6 entity"], "Cakfem-Mushere": ["A language of Nigeria."], "Cakfem-Mushere Spoken": ["The dialects of the Cakfem-Mushere language."], "Jajura": ["A dialect of the Cakfem-Mushere language."], "Kadim-Kaban": ["A dialect of the Cakfem-Mushere language."], "Mushere": ["ISO 639-6 entity"], "Mushere Spoken": ["ISO 639-6 entity"], "Kofyar": ["A language of Nigeria."], "Kofyar Written": ["ISO 639-6 entity"], "Kofyar Spoken": ["ISO 639-6 entity"], "Kwagallak": ["ISO 639-6 entity"], "Kwagallak Spoken": ["ISO 639-6 entity"], "Dimmuk": ["ISO 639-6 entity"], "Dimmuk Spoken": ["ISO 639-6 entity"], "Mirriam": ["ISO 639-6 entity"], "Mirriam Spoken": ["ISO 639-6 entity"], "Bwol": ["ISO 639-6 entity"], "Bwol Spoken": ["ISO 639-6 entity"], "Gworam": ["ISO 639-6 entity"], "Gworam Spoken": ["The dialects of the Gworam language."], "Jipal": ["ISO 639-6 entity"], "Jipal Spoken": ["ISO 639-6 entity"], "Jorto": ["A language of Nigeria."], "Jorto Spoken": ["ISO 639-6 entity"], "Miship": ["ISO 639-6 entity"], "Angas Proper Group 2 Cluster": ["ISO 639-6 entity"], "Goemai": ["An Afro-Asiatic language spoken in the Plateau state of Central Nigeria by the Goemai people."], "Tal": ["ISO 639-6 entity"], "Kwabzak": ["ISO 639-6 entity"], "Pyapun": ["ISO 639-6 entity"], "Montol": ["ISO 639-6 entity"], "Baltap": ["ISO 639-6 entity"], "Koenoem": ["A language of Nigeria."], "Ron Complex": ["ISO 639-6 entity"], "Fyer": ["A language of Nigeria."], "Tambas": ["ISO 639-6 entity", "ISO 639-6 entity"], "Ron Proper Cluster": ["ISO 639-6 entity"], "Daffo- Batura": ["ISO 639-6 entity"], "Daffo- Batura Spoken": ["ISO 639-6 entity"], "Daffo": ["ISO 639-6 entity"], "Batura": ["ISO 639-6 entity"], "Nafunia": ["ISO 639-6 entity"], "Shagawu": ["ISO 639-6 entity"], "Maleni": ["ISO 639-6 entity"], "Mangar": ["ISO 639-6 entity"], "Monguna": ["ISO 639-6 entity"], "Ron": ["A language of Nigeria."], "Ron Spoken": ["ISO 639-6 entity"], "Bokkos-A": ["ISO 639-6 entity"], "Chala": ["ISO 639-6 entity", "A language of Ghana."], "Daffo-Butura": ["ISO 639-6 entity"], "Sha": ["ISO 639-6 entity"], "Mundat": ["ISO 639-6 entity"], "Duhwa": ["A language of Nigeria."], "Kulere": ["An Afro-Asiatic language spoken in Plateau State, Nigeria."], "Richa": ["A dialect of the Kulere language."], "Ambul": ["ISO 639-6 entity"], "Tof": ["A dialect of the Kulere language."], "Hausa Cluster": ["ISO 639-6 entity"], "Gwandara": ["A language of Nigeria."], "Karshi": ["ISO 639-6 entity"], "Kyankyara": ["ISO 639-6 entity"], "Toni": ["ISO 639-6 entity"], "Koro": ["ISO 639-6 entity", "A dialect of the Daasanach language.", "A language of Vanuatu.", "A language of Papua New Guinea."], "Gitata": ["ISO 639-6 entity"], "Nimbia": ["ISO 639-6 entity"], "Hausa Written": ["Written forms of the Hausa language."], "Hausa Spoken": ["Dialects of the Hausa language."], "Hausa-Formal": ["ISO 639-6 entity"], "Hausa-E": ["ISO 639-6 entity"], "Kano": ["ISO 639-6 entity", "The second largest city in Nigeria after Lagos and the capital of Kano State."], "Hadejiya": ["ISO 639-6 entity"], "Katagum": ["ISO 639-6 entity"], "Hausa-C": ["ISO 639-6 entity"], "Hausa-N": ["ISO 639-6 entity"], "Hausa-V": ["ISO 639-6 entity"], "Barikanchi": ["A language of Nigeria."], "Chukchi-Kamchatkan": ["ISO 639-6 entity"], "Chukchi-Kamchatkan Northern": ["ISO 639-6 entity"], "Chukchi Cluster": ["ISO 639-6 entity"], "Chukot": ["A Palaeosiberian language spoken by Chukchi people in the easternmost extremity of Siberia, mainly in Chukotka Autonomous Okrug."], "Chukot Written": ["The written forms of the Chukot language."], "Chukot Written Cyrillic Script": ["A written form of the Chukot language."], "Chukot Spoken": ["The dialects of the Chukot language."], "Chukot-Formal": ["A dialect of the Chukot language."], "Uellan": ["A dialect of the Chukot language."], "Pevek": ["A dialect of the Chukot language."], "Enmylin": ["A dialect of the Chukot language."], "Nunligran": ["A dialect of the Chukot language."], "Xatyr": ["A dialect of the Chukot language."], "Chaun": ["A dialect of the Chukot language."], "Enurmin": ["A dialect of the Chukot language."], "Yanrakinot": ["A dialect of the Chukot language."], "Koryak Alutor Cluster": ["ISO 639-6 entity"], "Kerek": ["A Chukotko-Kamchatkan language spoken around the Bearing Sea in Russia."], "Kerek Written": ["The written forms of the Kerek language."], "Kerek Written Cyrillic Script": ["The Kerek language written with the Cyrillic script."], "Kerek Spoken": ["The dialects of the Kerek language."], "Mayna-Pilgin": ["A dialect of the Kerek language."], "Khatyrka": ["A dialect of the Kerek language."], "Koryak": ["A Chukotko-Kamchatkan language spoken by the Koryak people (Koryak) in the easternmost extremity of Siberia, mainly in Koryak Okrug."], "Koryak Written": ["ISO 639-6 entity"], "Koryak Written Cyrillic Script": ["ISO 639-6 entity"], "Koryak Spoken": ["ISO 639-6 entity"], "Koryak-Formal": ["ISO 639-6 entity"], "Gin": ["ISO 639-6 entity"], "Xatyrskij": ["ISO 639-6 entity"], "Chavchuven": ["ISO 639-6 entity"], "Apokin": ["ISO 639-6 entity"], "Kamen": ["ISO 639-6 entity"], "Palan": ["ISO 639-6 entity"], "Itkan": ["ISO 639-6 entity"], "Alutor": ["A language of the Chukotkan branch spoken in the northern part of the Kamchatka Peninsula, Russia."], "Alutor Written": ["The written forms of the Alutor language."], "Alutor Written Cyrillic Script": ["The Alutor language written with the Cyrillic script."], "Alutor Spoken": ["The Alutor spoken language and its dialects."], "Alutor-Proper": ["A dialect of the Alutor language."], "Ukin": ["A language of Russia (Asia)."], "Karagin": ["A dialect of the Alutor language."], "Palana": ["A dialect of the Alutor language."], "Chukchi-Kamchatkan Southern": ["ISO 639-6 entity"], "Itelmen": ["A language of Russia (Asia)"], "Itelmen Written": ["ISO 639-6 entity"], "Itelmen Written Cyrillic Script": ["ISO 639-6 entity"], "Itelmen Spoken": ["ISO 639-6 entity"], "Sedanka": ["ISO 639-6 entity"], "Kharyuzovskiy": ["ISO 639-6 entity"], "Xayryuz": ["ISO 639-6 entity"], "Napan": ["ISO 639-6 entity"], "Sopocnov": ["ISO 639-6 entity"], "Cushitic": ["A branch of the Afroasiatic language family spoken in the Horn of Africa, Tanzania, Kenya, Sudan and Egypt."], "Cushtic Proper": ["ISO 639-6 entity"], "Cushtic Central": ["ISO 639-6 entity"], "Cushtic Central North Complex": ["ISO 639-6 entity"], "Bilin-Xamta Cluster": ["ISO 639-6 entity"], "Senhit": ["ISO 639-6 entity"], "Halhal": ["ISO 639-6 entity"], "Qimant": ["A Central Cushitic language language spoken by a small fraction of the Qemant people in Northern Ethiopia mainly in Chilga Woreda in Semien Gondar Zone between Gondar and Metemma."], "Qimant Written": ["Written versions of the Qimant language."], "Qimant Written Ethiopic Script": ["Qimant language written with the Ethiopic Script."], "Qimant Spoken": ["The dialects of the Qimant language."], "Kemant": ["A dialect of the Qimant language."], "Semyen": ["A dialect of the Qimant language."], "Achpar": ["A dialect of the Qimant language."], "Ci'elga": ["A dialect of the Qimant language."], "Karkar": ["A dialect of the Qimant language."], "Dembiya": ["ISO 639-6 entity"], "Kwara": ["ISO 639-6 entity"], "Kwara-Addis": ["ISO 639-6 entity"], "Xamtanga": ["ISO 639-6 entity"], "Xamtanga Spoken": ["ISO 639-6 entity"], "Xamta": ["ISO 639-6 entity"], "Xamir": ["ISO 639-6 entity"], "Waag": ["ISO 639-6 entity"], "Soqota ": ["ISO 639-6 entity"], "Abergelle-Agaw": ["ISO 639-6 entity"], "Abergelle-Agaw Spoken": ["The dialects of the Abergelle-Agaw Spoken language."], "Cushtic Central South": ["ISO 639-6 entity"], "Awngi": ["A language of Ethiopia"], "Awngi Spoken": ["The Awngi spoken language and its dialects."], "Dangla": ["A dialect of the Awngi language."], "Damot": ["A dialect of the Awngi language."], "Metekkel": ["A dialect of the Awngi language."], "Agew-Midir": ["A dialect of the Awngi language."], "Kunfel": ["ISO 639-6 entity"], "Kunfel Spoken": ["ISO 639-6 entity"], "Eastern Cushtic": ["ISO 639-6 entity"], "Eastern Cushtic Lowland": ["ISO 639-6 entity"], "Afar Saho Cluster": ["ISO 639-6 entity"], "Saho": ["ISO 639-6 entity"], "Saho Written": ["Written forms of the Saho language."], "Saho Written Arabic Script": ["ISO 639-6 entity"], "Saho Written Latin Script": ["A written form of the Saho language."], "Saho Written Ethiopic Script": ["ISO 639-6 entity"], "Saho Spoken": ["ISO 639-6 entity"], "Assaorta": ["ISO 639-6 entity"], "Miniferi": ["ISO 639-6 entity"], "Irob": ["ISO 639-6 entity"], "Hazu": ["ISO 639-6 entity"], "Afar Written": ["The written forms of the Afar language."], "Afar Spoken": ["The dialects of the Afar language."], "Afar-NW": ["A dialect of the Afar language."], "Afar-C": ["A dialect of the Afar language."], "Afar-NE": ["A dialect of the Afar language."], "Ba'adu": ["A dialect of the Afar language."], "Aussa": ["A dialect of the Afar language."], "Eastern Cushtic Highland": ["ISO 639-6 entity"], "Kambata Hadiyya Cluster": ["ISO 639-6 entity"], "Hadiyya": ["ISO 639-6 entity"], "Hadiyya Written": ["Written forms of the Hadiyya language."], "Hadiyya Written Latin Script": ["A written form of the Hadiyya language."], "Hadiyya Written Ethiopic Script": ["ISO 639-6 entity"], "Hadiyya Spoken": ["The dialects of the Hadiyya language."], "Leemo": ["A dialect of the Hadiyya language."], "Shashago": ["A dialect of the Hadiyya language."], "Soro": ["A dialect of the Hadiyya language."], "Libido Spoken": ["ISO 639-6 entity"], "Libido-A": ["ISO 639-6 entity"], "Maroqo": ["ISO 639-6 entity"], "Timbara- Qebena": ["ISO 639-6 entity"], "Timbara- Qebena Spoken": ["ISO 639-6 entity"], "Timbara": ["ISO 639-6 entity"], "Qebena": ["ISO 639-6 entity"], "Kambaata": ["A language of Ethiopia."], "Kambaata Written": ["Written forms of the Kambaata language."], "Kambaata Written Latin Script": ["A written form of the Kambaata language."], "Kambaata Written Ethiopic Script": ["ISO 639-6 entity"], "Kambaata Spoken": ["ISO 639-6 entity"], "Alaba": ["A Cushitic language of Ethiopia"], "Alaba Written": ["Written forms of the Alaba language."], "Alaba Written Latin Script": ["Alaba language written with the Latin Script."], "Alaba Written Ethiopic Script": ["Alaba language written with the Ethiopic Script."], "Alaba Spoken": ["The dialects of the Alaba language."], "Sidaamo Written": ["Written forms of the Sidaamo language."], "Sidaamo Written Latin Script": ["Sidaamo language written with the Latin Script."], "Sidaamo Written Ethiopic Script": ["Sidaamo language written with the Ethiopic Script."], "Sidaamo Spoken": ["Dialects of the Sidaamo language."], "Sidaamo-N": ["ISO 639-6 entity"], "Sidaamo-SW": ["ISO 639-6 entity"], "Sidaamo-E": ["ISO 639-6 entity"], "Gedeo": ["A language of Ethiopia"], "Gedeo Written": ["ISO 639-6 entity"], "Gedeo Written Latin Script": ["Gedeo language written with the Latin Script."], "Gedeo Written Ethiopic Script": ["ISO 639-6 entity"], "Gedeo Spoken": ["ISO 639-6 entity"], "Gede'o-N": ["ISO 639-6 entity"], "Gede'o-S": ["ISO 639-6 entity"], "Burji": ["A cushitic language spoken in Ethiopia and Kenya", "One of the 79 woredas in the Southern Nations, Nationalities, and Peoples Region (SNNPR) of Ethiopia."], "Burji Written": ["Written forms of the Burji language."], "Burji Written Latin Script": ["Burji language written with the Latin Script."], "Burji Written Ethiopic Script": ["Burji language written with the Ethiopic Script."], "Burji Spoken": ["The dialects of the Burji language."], "Burji-A": ["A dialect of the Burji language."], "Hagere-Maryam": ["A dialect of the Burji language."], "Burji-Marsabit": ["A dialect of the Burji language."], "Yaakuan Dullay": ["ISO 639-6 entity"], "Dullay Cluster": ["ISO 639-6 entity"], "Go-Waze": ["ISO 639-6 entity"], "Go-Waze Spoken": ["ISO 639-6 entity"], "Bussa": ["A language of Ethiopia"], "Bussa Spoken": ["ISO 639-6 entity"], "Mashili": ["ISO 639-6 entity"], "Bussa-E": ["ISO 639-6 entity"], "Lohu": ["ISO 639-6 entity"], "Harso": ["ISO 639-6 entity"], "Harso Spoken": ["ISO 639-6 entity"], "Go-Lango": ["ISO 639-6 entity"], "Go-Lango Spoken": ["ISO 639-6 entity"], "Go-Rose": ["ISO 639-6 entity"], "Go-Rose Spoken": ["ISO 639-6 entity"], "Dihina": ["ISO 639-6 entity"], "Dihina Spoken": ["ISO 639-6 entity"], "Gaba": ["ISO 639-6 entity"], "Gaba Spoken": ["ISO 639-6 entity"], "Gergere": ["ISO 639-6 entity"], "Gergere Spoken": ["ISO 639-6 entity"], "Gawwada": ["A language of Ethiopia"], "Gawwada Written": ["Written forms of the Gawwada language."], "Gawwada Written Latin Script": ["A written form of the Gawwada language."], "Gawwada Written Ethiopic Script ": ["ISO 639-6 entity"], "Gawwada Spoken": ["ISO 639-6 entity"], "Dalpena": ["ISO 639-6 entity"], "Isharkuta": ["ISO 639-6 entity"], "Tsamai": ["ISO 639-6 entity"], "Tsamai Written": ["Written forms of the Tsamai language."], "Tsamai Written Latin Script": ["A written form of the Tsamai language."], "Tsamai Written Ethiopic Script": ["ISO 639-6 entity"], "Tsamai Spoken": ["ISO 639-6 entity"], "Dume": ["ISO 639-6 entity"], "Kuwile": ["ISO 639-6 entity"], "Yaaku Cluster": ["ISO 639-6 entity"], "Yaaku": ["ISO 639-6 entity"], "Yaaku Spoken": ["ISO 639-6 entity"], "Oromoid": ["ISO 639-6 entity"], "Konsoid Cluster": ["ISO 639-6 entity"], "Mosiya": ["ISO 639-6 entity"], "Mosiya Spoken": ["ISO 639-6 entity"], "Dirasha": ["A language of Ethiopia."], "Dirasha Spoken": ["ISO 639-6 entity"], "Mashile": ["ISO 639-6 entity"], "Mashile Spoken": ["ISO 639-6 entity"], "Gato": ["ISO 639-6 entity"], "Gato Spoken": ["ISO 639-6 entity"], "Turo": ["ISO 639-6 entity"], "Turo Spoken": ["ISO 639-6 entity"], "Komso": ["An East Cushitic language spoken in southwest Ethiopia."], "Komso Written": ["The written forms of the Komso language."], "Komso Written Latin Script": ["Komso language written with the Latin Script."], "Komso Written Ethiopic Script": ["ISO 639-6 entity"], "Komso Spoken": ["The dialects of the Komso language."], "Tulema": ["ISO 639-6 entity"], "Tulema Spoken": ["ISO 639-6 entity"], "Tulema-A": ["ISO 639-6 entity"], "Kereyu": ["ISO 639-6 entity"], "Selale": ["ISO 639-6 entity"], "West Central Oromo": ["A language of Ethiopia."], "West Central Oromo Written": ["The written forms of the West Central Oromo language."], "West Central Oromo Written Latin Script": ["A written form of the West Central Oromo language."], "West Central Oromo Spoken": ["The dialects of the West Central Oromo language."], "Mecha-A": ["A dialect of the West Central Oromo language."], "Wellegga": ["A dialect of the West Central Oromo language."], "Raya": ["ISO 639-6 entity"], "Raya Spoken": ["ISO 639-6 entity"], "Wello": ["ISO 639-6 entity"], "Wello Spoken": ["ISO 639-6 entity"], "Eastern Oromo": ["A language of Ethiopia."], "Eastern Oromo Spoken": ["The dialects of the Eastern Oromo language."], "Qottu-A": ["A dialect of the Eastern Oromo language."], "Nole": ["A dialect of the Eastern Oromo language."], "Jarso": ["A dialect of the Eastern Oromo language."], "Ala": ["A dialect of the Eastern Oromo language."], "Babile": ["A dialect of the Eastern Oromo language."], "Ania": ["A dialect of the Eastern Oromo language."], "Arusi": ["ISO 639-6 entity"], "Arusi Spoken": ["ISO 639-6 entity"], "Guji": ["ISO 639-6 entity"], "Guji Spoken": ["ISO 639-6 entity"], "Guji-A": ["ISO 639-6 entity"], "Jemjem": ["ISO 639-6 entity"], "Borana-Arsi-Guji Oromo": ["A language of Ethiopia, Kenia and Somalia."], "Borana-Arsi-Guji Oromo Spoken": ["The dialects of the Borana-Arsi-Guji Oromo language."], "Borena-A": ["A dialect of the Borana-Arsi-Guji Oromo language."], "Garreh-Ajuran": ["A language of Kenya."], "Garreh-Ajuran Spoken": ["The dialects of the Garreh-Ajuran language."], "Garre": ["A language of Somalia", "ISO 639-6 entity"], "Gabra": ["A dialect of the Garreh-Ajuran language."], "Sakuye": ["A dialect of the Garreh-Ajuran language."], "Ajuran": ["A dialect of the Garreh-Ajuran language."], "Orma": ["ISO 639-6 entity"], "Orma Written": ["ISO 639-6 entity"], "Orma Written Ethiopic Script": ["ISO 639-6 entity"], "Orma Spoken": ["ISO 639-6 entity"], "Orma-A": ["ISO 639-6 entity"], "Munyo": ["ISO 639-6 entity"], "Waata": ["ISO 639-6 entity"], "Sanye": ["A language of Kenya."], "Sanye Spoken": ["The dalects of the Sanye language."], "Omo-Tana": ["ISO 639-6 entity"], "Bayso Cluster": ["ISO 639-6 entity"], "Baiso": ["A language of Ethiopia."], "Baiso Spoken": ["The dialects of the Baiso language."], "Galaboid Cluster": ["ISO 639-6 entity"], "Arbore": ["ISO 639-6 entity", "A language of Ethiopia"], "Arbore Spoken": ["ISO 639-6 entity"], "Daasanach": ["A language of Ethiopia and Kenia"], "Daasanach Written": ["Written forms of the Daasanach language."], "Daasanach Written Latin Script": ["A written form of the Daasanach language."], "Daasanach Written Ethiopic Script": ["A written form of the Daasanach language."], "Daasanach Spoken": ["Dialects of the Daasanach language."], "Inkabelo": ["A dialect of the Daasanach language."], "Inkoria": ["A dialect of the Daasanach language."], "Naritch": ["A dialect of the Daasanach language."], "Elele": ["A dialect of the Daasanach language."], "Randal": ["A dialect of the Daasanach language."], "Oro": ["A dialect of the Daasanach language."], "Rele": ["A dialect of the Daasanach language."], "El Molo": ["A language of Kenya"], "El Molo Spoken": ["The dialects of the El Molo language."], "Sam": ["ISO 639-6 entity"], "Rendille": ["ISO 639-6 entity"], "Rendille Written": ["Written forms of the Rendille language."], "Rendille Written Latin Script": ["A written form of the Rendille language."], "Rendille Spoken": ["ISO 639-6 entity"], "Rudolf": ["ISO 639-6 entity"], "Marsabit": ["ISO 639-6 entity"], "Arial": ["ISO 639-6 entity"], "Somali-Aweer Cluster": ["ISO 639-6 entity"], "Boni": ["A language of Kenya and Somalia."], "Boni Written": ["The written forms of the Boni language."], "Boni Spoken": ["The dialects of the Boni language."], "Lamu": ["A dialects of the Boni language.", "A dialect of the Dahalo language."], "Juba": ["A dialects of the Boni language."], "Somali Written": ["ISO 639-6 entity"], "Somali Latin Script": ["A written form of the Somali language."], "somali Arabic Script": ["ISO 639-6 entity"], "somali Osmania Script": ["ISO 639-6 entity"], "Somali Spoken": ["ISO 639-6 entity"], "Af-Soomaali-G": ["ISO 639-6 entity"], "Af-Soomaali-G Spoken": ["The dialects of the Af-Soomaali-G language."], "Soomaali-Formal": ["A dialect of the Af-Soomaali-G language."], "Soomaali-V": ["A dialect of the Af-Soomaali-G language."], "Af-'Iise": ["ISO 639-6 entity"], "Af-'Iise Spoken": ["The dialects of the Af-'Iise language."], "Af-Geedabuursi": ["ISO 639-6 entity"], "Af-Geedabuursi Spoken": ["The dialects of the Af-Geedabuursi language."], "Af-Isaaq": ["ISO 639-6 entity"], "Af-Isaaq Spoken": ["The dialects of the Af-Isaaq language."], "Af-Daarood": ["ISO 639-6 entity"], "Af-Daarood Spoken": ["The dialects of the Af-Daarood language."], "Af-Majeerteen": ["A dialect of the Af-Daarood language."], "Af-Warsangeli": ["A dialect of the Af-Daarood language."], "Af-Dolbohaante": ["A dialect of the Af-Daarood language."], "Af-Ogadeen": ["A dialect of the Af-Daarood language."], "Af-Degodiya": ["A dialect of the Af-Daarood language."], "Af-Hawiyya": ["ISO 639-6 entity"], "Af-Hawiyya Spoken": ["The dialects of the Af-Hawiyya language."], "Af-Benaadir": ["ISO 639-6 entity"], "Af-Benaadir Spoken": ["The dialects of the Af-Benaadir language."], "Af-Benaadir-A": ["A dialect of the Af-Benaadir language."], "Af-Abgaal": ["A dialect of the Af-Benaadir language."], "Af-Gaaljaal": ["A dialect of the Af-Benaadir language."], "Af-Ashraaf": ["ISO 639-6 entity"], "Af-Ashraaf Spoken": ["The dialects of the Af-Ashraaf language."], "Af-Ajuraan": ["ISO 639-6 entity"], "Af-Ajuraan Spoken": ["The dialects of the Af-Ajuraan language."], "Af-Digil": ["ISO 639-6 entity"], "Af-Digil Spoken": ["The dialects of the Af-Digil language."], "Maay": ["ISO 639-6 entity"], "Maay Written": ["ISO 639-6 entity"], "Maay Written Latin Script": ["Maay language written with the Latin Script."], "Maay Spoken": ["ISO 639-6 entity"], "Tunni": ["ISO 639-6 entity"], "Tunni Written": ["Written forms of the Tunni language."], "Tunni Written Latin Script": ["A written form of the Tunni language."], "Tunni Spoken": ["ISO 639-6 entity"], "Jiddu": ["ISO 639-6 entity"], "Jiddu Spoken": ["ISO 639-6 entity"], "Af-Helledi": ["ISO 639-6 entity"], "Af-Helledi Spoken": ["The dialects of the Af-Helledi language."], "Dabarre": ["A language of Somalia."], "Dabarre Written": ["ISO 639-6 entity"], "Dabarre Spoken": ["ISO 639-6 entity"], "Af-Iroole": ["ISO 639-6 entity"], "Af-Iroole Spoken": ["The dialects of the Af-Iroole language."], "Boon": ["An East Cushitic language spoken by a few people in Jilib District, Middle Jubba Region, Somalia."], "Boon Spoken": ["The Boon spoken language and its dialects."], "Garre Written": ["ISO 639-6 entity"], "Garre Written Latin Script": ["Garre language written with the Latin Script."], "Garre Spoken": ["ISO 639-6 entity"], "Cushtic South": ["ISO 639-6 entity"], "Cushtic South Rift": ["ISO 639-6 entity"], "Cushtic South Rift West": ["ISO 639-6 entity"], "Iraqw": ["ISO 639-6 entity"], "Iraqw Written": ["ISO 639-6 entity"], "Iraqw Spoken": ["ISO 639-6 entity"], "Asa": ["ISO 639-6 entity"], "Gorowa": ["A language of Tanzania."], "Gorowa Written": ["The written forms of the Gorowa language."], "Alagwa": ["A Cushitic language spoken in the Dodoma region of Tanzania."], "Burunge": ["A language of Tanzania."], "Cushtic South Rift East": ["ISO 639-6 entity"], "Kw\u2019adza": ["ISO 639-6 entity"], "Aas\u00e1x": ["A language of Tanzania."], "Ma'a Cluster": ["ISO 639-6 entity"], "Mbugu": ["ISO 639-6 entity"], "Mbugu Spoken": ["ISO 639-6 entity"], "Cha Ndani": ["ISO 639-6 entity"], "Cha Kawaida": ["ISO 639-6 entity"], "Dahalo Cluster": ["ISO 639-6 entity"], "Dahalo": ["A language of Kenya"], "Dahalo Spoken": ["The dialects of the Dahalo language."], "Indic": ["A language family originating from India, Pakistan, Bangladesh, Nepal, Sri Lanka and the Maldives."], "Northern India": ["ISO 639-6 entity"], "Dardic": ["A sub-group of the Indo-Aryan languages spoken in northern Pakistan, eastern Afghanistan, and the Indian region of Jammu and Kashmir."], "Kunar": ["ISO 639-6 entity"], "Northwest Pashayi": ["A language of Afghanistan."], "Gulbahar": ["ISO 639-6 entity"], "Sanjan": ["ISO 639-6 entity"], "Bolaghain": ["ISO 639-6 entity"], "Nangarach": ["ISO 639-6 entity"], "Parya": ["ISO 639-6 entity"], "Alingar": ["ISO 639-6 entity"], "Laurowan": ["ISO 639-6 entity"], "Shutul": ["ISO 639-6 entity"], "Alasai": ["ISO 639-6 entity"], "Shamakot": ["ISO 639-6 entity"], "Uzbin": ["ISO 639-6 entity"], "Pandau": ["ISO 639-6 entity"], "Najil": ["ISO 639-6 entity"], "Parazhghan": ["ISO 639-6 entity"], "Wadau": ["ISO 639-6 entity"], "Wadau Spoken": ["ISO 639-6 entity"], "Pachagan": ["ISO 639-6 entity"], "Southeast Pashayi": ["ISO 639-6 entity"], "Kohnadeh": ["ISO 639-6 entity"], "Darrai-Nur": ["ISO 639-6 entity"], "Darrai-Nur Spoken": ["ISO 639-6 entity"], "Bamba-Kot": ["ISO 639-6 entity"], "Lamatek": ["ISO 639-6 entity"], "Sutan": ["ISO 639-6 entity"], "Pashagar": ["ISO 639-6 entity"], "Grangali": ["A Kunar language spoken in Afghanistan."], "Nangalami": ["A Kunar language spoken in Afghanistan."], "Zemiaki": ["A dialect of Nangalami spoken in the Kunar region of Afghanistan."], "Wegal": ["ISO 639-6 entity"], "Gawar-Bati": ["A Dardic language spoken in the Kunar Province of Afghanistan."], "Narsati": ["A dialect of the Gawar-Bati language."], "Arandui": ["A dialect of the Gawar-Bati language."], "Shumasti": ["ISO 639-6 entity"], "Northeast Pashayi": ["A language of Afghanistan"], "Northeast Pashayi Spoken": ["The Northeast Pashayi spoken language and its dialects."], "Aret": ["A dialect of the Northeast Pashayi language."], "Kurdar": ["A dialect of the Northeast Pashayi language."], "Kandak": ["A dialect of the Northeast Pashayi language."], "Shemul": ["A dialect of the Northeast Pashayi language."], "Chalas": ["ISO 639-6 entity"], "Southwest Pashayi": ["A Pashayi language spoken Northeast of Kabul in Afghanistan."], "Tagau-A": ["A dialect of the Southwest Pashayi language."], "Ishpi": ["A dialect of the Southwest Pashayi language."], "Isken": ["A dialect of the Southwest Pashayi language."], "Dameli": ["A Dardic language spoken in the Domel Valley, in the Chitral District of Khyber-Pakhtunkhwa province of Pakistan."], "Dameli Spoken": ["The dialects of the Dameli language."], "Shintari": ["A dialect of the Dameli language."], "Swati": ["A dialect of the Dameli language.", "A language of Swaziland, Lesotho, Mozambique and South Africa."], "Khowar": ["A Dardic language spoken in Chitral, Pakistan."], "Kho-War-N": ["A dialect of the Khowar language."], "Kho-War-S": ["A dialect of the Khowar language."], "Khowar-E": ["A dialect of the Khowar language."], "Arniya": ["A dialect of the Khowar language."], "Patu": ["A dialect of the Khowar language."], "Qashqari": ["A dialect of the Khowar language."], "Kalasha": ["A Dardic language spoken in the Chitral District of Pakistan."], "Kalasha Spoken": ["ISO 639-6 entity"], "Kalasha-N": ["ISO 639-6 entity"], "Kalasha-S": ["ISO 639-6 entity"], "Dardic-Central": ["ISO 639-6 entity"], "Wotapuri-Katarqalai": ["ISO 639-6 entity"], "Wotapuri": ["ISO 639-6 entity"], "Katarqalai": ["ISO 639-6 entity"], "Tirahi": ["ISO 639-6 entity"], "Kalami": ["A language of Pakistan."], "Kalami Spoken": ["Dialects of the Kalami language."], "Kalami-A": ["A dialect of the Kalami language."], "Ushu": ["A dialect of the Kalami language."], "Thal": ["A dialect of the Kalami language."], "Lamuti": ["A dialect of the Kalami language."], "Patrak": ["A dialect of the Kalami language."], "Dashwa": ["A dialect of the Kalami language."], "Kalkoti": ["ISO 639-6 entity"], "Indus Kohistani": ["ISO 639-6 entity"], "Mani": ["ISO 639-6 entity"], "Mani Spoken": ["ISO 639-6 entity"], "Mani-A": ["ISO 639-6 entity"], "Patan": ["ISO 639-6 entity"], "Seo": ["ISO 639-6 entity"], "Jijal": ["ISO 639-6 entity"], "Manzeri": ["ISO 639-6 entity"], "Manzeri Spoken": ["ISO 639-6 entity"], "Duberi": ["ISO 639-6 entity"], "Kandia": ["ISO 639-6 entity"], "Chilisso": ["A language of Pakistan"], "Chilisso Spoken": ["Dialects of the Chilisso language."], "Gowro": ["A language of Pakistan."], "Gowro Spoken": ["Dialects of the Gowro language."], "Bateri": ["A language of Pakistan and India"], "Bateri Spoken": ["Dialects of the Bateri language."], "Torwali": ["ISO 639-6 entity"], "Behrain": ["ISO 639-6 entity"], "Behrain Spoken": ["The dialects of the Behrain language."], "Chail": ["ISO 639-6 entity"], "Savi": ["ISO 639-6 entity"], "Phalura": ["ISO 639-6 entity"], "Phalura Spoken": ["ISO 639-6 entity"], "Phalura-A": ["ISO 639-6 entity"], "PhaluraN": ["ISO 639-6 entity"], "Ashreti": ["ISO 639-6 entity"], "Biyori": ["ISO 639-6 entity"], "Gilgiti": ["ISO 639-6 entity"], "Gilgiti Spoken": ["ISO 639-6 entity"], "Gilgit": ["ISO 639-6 entity"], "Shina-NW": ["ISO 639-6 entity"], "Chilasi- Darel": ["ISO 639-6 entity"], "Chilasi- Darel Spoken": ["ISO 639-6 entity"], "Chilasi": ["ISO 639-6 entity"], "Darel": ["ISO 639-6 entity"], "Dras": ["ISO 639-6 entity"], "Dah": ["ISO 639-6 entity"], "Hanu": ["ISO 639-6 entity"], "Hanu Spoken": ["ISO 639-6 entity"], "Kyango": ["ISO 639-6 entity"], "Anderkaro": ["ISO 639-6 entity"], "Kohistani Shina": ["ISO 639-6 entity"], "Kohistani Shina Spoken": ["ISO 639-6 entity"], "Palasi-A": ["ISO 639-6 entity"], "Kolai": ["ISO 639-6 entity"], "Jalkoti": ["ISO 639-6 entity"], "Astori- Gurezi": ["ISO 639-6 entity"], "Astori- Gurezi Spoken": ["ISO 639-6 entity"], "Astori": ["ISO 639-6 entity"], "Gurezi": ["ISO 639-6 entity"], "Brokskat": ["A Dardic language spoken by the Brokpa people in the Ladakh mountains of India."], "Brokskat Written": ["The written forms of the Brokskat language."], "Brokskat Written Balti Script": ["The Brokskat language written with the Balti Script."], "Brokskat Spoken": ["The Brokskat spoken language and its dialects."], "Ushojo": ["A Dardic language spoken in Kohistan and Swat districts of the Khyber-Pakhtunkhwa province of Pakistan."], "Nepal Dardic Cluster": ["ISO 639-6 entity"], "Dhanwar (Nepal)": ["ISO 639-6 entity"], "Rai": ["ISO 639-6 entity"], "Done": ["ISO 639-6 entity"], "Done Spoken": ["ISO 639-6 entity"], "Done-N": ["ISO 639-6 entity"], "Done-S": ["ISO 639-6 entity"], "Kachariya": ["ISO 639-6 entity"], "Darai": ["A language of Nepal."], "Kashmiri Written": ["Written forms of the Kashmiri language."], "Kashmiri Written Kashtawari Model": ["ISO 639-6 entity"], "Kashmiri Written Sharda Script": ["ISO 639-6 entity"], "Kashmiri Written Perso-Arabic Script": ["ISO 639-6 entity"], "Kashtawari": ["ISO 639-6 entity"], "Kashtawari Spoken": ["ISO 639-6 entity"], "Muslim-Kashmiri": ["ISO 639-6 entity"], "Hindu-Kashmiri": ["ISO 639-6 entity"], "Bunjwali": ["ISO 639-6 entity"], "Ri\u0101si": ["ISO 639-6 entity"], "Ramb\u0101ni": ["ISO 639-6 entity"], "Sir\u0101ji-O\u0101": ["ISO 639-6 entity"], "Sir\u0101ji-Kashmiri": ["ISO 639-6 entity"], "Bakaw\u0101li": ["ISO 639-6 entity"], "Bunjw\u0101li": ["ISO 639-6 entity"], "Miraski": ["ISO 639-6 entity"], "Poguli": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "Sh\u0101h-Mans\u016bri": ["ISO 639-6 entity"], "Z\u0101y\u014dli": ["ISO 639-6 entity"], "Zir\u0101k-Boli": ["ISO 639-6 entity"], "Northern India Central": ["ISO 639-6 entity"], "Western Pahari": ["ISO 639-6 entity"], "Pahari-Potwari": ["ISO 639-6 entity"], "Pahari-Potwari Spoken": ["ISO 639-6 entity"], "Potwari": ["ISO 639-6 entity"], "Dhuni": ["ISO 639-6 entity"], "Chibh\u0101li": ["ISO 639-6 entity"], "Mur\u012b": ["ISO 639-6 entity"], "Punchhi": ["ISO 639-6 entity"], "Bhadrawahi": ["A language of India"], "Bhadrawahi Spoken": ["ISO 639-6 entity"], "Padari": ["ISO 639-6 entity"], "Padar": ["ISO 639-6 entity"], "Bh\u0101lesi": ["ISO 639-6 entity"], "Pangwali": ["ISO 639-6 entity"], "Mandeali": ["ISO 639-6 entity"], "Kullu Pahari": ["A language of India."], "Kullu Pahari Spoken": ["Dialects of the Kullu Pahari language."], "Kului-A": ["A dialect of the Kullu Pahari language."], "Sir\u0101ji-C": ["A dialect of the Kullu Pahari language."], "Sainji": ["A dialect of the Kullu Pahari language."], "Satlaji": ["ISO 639-6 entity"], "Satlaji Spoken": ["ISO 639-6 entity"], "Satlaji-A": ["ISO 639-6 entity"], "Sir\u0101ji-Outer": ["ISO 639-6 entity"], "Sodochi": ["ISO 639-6 entity"], "Mahasu Pahari": ["A language of India."], "Kiunth\u0101li": ["ISO 639-6 entity"], "Kiunth\u0101li Spoken": ["ISO 639-6 entity"], "Kiunth\u0101li-A": ["ISO 639-6 entity"], "Kochi": ["ISO 639-6 entity"], "Sor\u0101choli": ["ISO 639-6 entity"], "Kirni": ["ISO 639-6 entity"], "Bar\u0101ri": ["ISO 639-6 entity"], "Siml\u0101-Sir\u0101ji": ["ISO 639-6 entity"], "Baghli\u0101ni": ["ISO 639-6 entity"], "Hinduri": ["A language of India."], "Sirmauri": ["ISO 639-6 entity"], "Sirmauri Spoken": ["ISO 639-6 entity"], "Sirmauri-A": ["ISO 639-6 entity"], "Bissau": ["ISO 639-6 entity", "The capital of Guinea-Bissau."], "Girip\u0101ri": ["ISO 639-6 entity"], "Dh\u0101rthi": ["ISO 639-6 entity"], "Chambeali": ["A language of India."], "Chambeali Spoken": ["ISO 639-6 entity"], "Bansbali": ["ISO 639-6 entity"], "Bansyari": ["ISO 639-6 entity"], "Gadi Chameali": ["ISO 639-6 entity"], "Chameali-N": ["ISO 639-6 entity"], "Chameali-S": ["ISO 639-6 entity"], "Harijan Kinnauri": ["ISO 639-6 entity"], "Harijan Kinnauri Spoken": ["ISO 639-6 entity"], "Garhwali Cluster": ["ISO 639-6 entity"], "Jaunsari": ["A language of India"], "Jaunsari Written": ["Written forms of the Jaunsari language"], "Jaunsari Written Devanagari Script": ["Written form of the Jaunsari language"], "Jaunsari Spoken": ["Dialects of the jaunsari language of India."], "Garhwali": ["A language of India."], "Garhwali Written": ["Written versions of the Garhwali language."], "Garhwali Written Devanagari Script": ["Garhwali language written with the Devanagari script."], "Garhwali Spoken": ["Dialects of the Garhwali language."], "Sal\u0101ni": ["Dialect of the Garhwali language."], "N\u0101gpuriy\u0101": ["Dialect of the Garhwali language."], "Majh-Kumaiy\u0101": ["Dialect of the Garhwali language."], "Badh\u0101ni": ["Dialect of the Garhwali language."], "Dasauly\u0101": ["ISO 639-6 entity"], "Lobhy\u0101": ["Dialect of the Garhwali language."], "Rathi": ["Dialect of the Garhwali language."], "Srinagariy\u0101": ["Dialect of the Garhwali language."], "Bhatti\u0101ni": ["Dialect of the Garhwali language."], "Ravai": ["Dialect of the Garhwali language."], "Bangani": ["Dialect of the Garhwali language."], "Parvati": ["Dialect of the Garhwali language."], "Jaunpari": ["Dialect of the Garhwali language."], "Gangadi": ["Dialect of the Garhwali language."], "Chandpuri": ["Dialect of the Garhwali language."], "Tehri": ["ISO 639-6 entity"], "Tehri Spoken": ["ISO 639-6 entity"], "Kumauni ": ["ISO 639-6 entity"], "Kumauni Written": ["ISO 639-6 entity"], "Kumauni Written Kumauni Script": ["ISO 639-6 entity"], "Kumauni Spoken": ["ISO 639-6 entity"], "Kumanoi ": ["ISO 639-6 entity"], "Johari": ["ISO 639-6 entity"], "Sir\u0101li": ["ISO 639-6 entity"], "Askoti": ["ISO 639-6 entity"], "Soriy\u0101li": ["ISO 639-6 entity"], "D\u0101npuriy\u0101": ["ISO 639-6 entity"], "Gangol\u0101": ["ISO 639-6 entity"], "Chaugarkhiy\u0101": ["ISO 639-6 entity"], "Kumaiy\u0101-Pachh\u0101i": ["ISO 639-6 entity"], "R\u0101mpur-Bhabari": ["ISO 639-6 entity"], "Rau-Chaubhaisi": ["ISO 639-6 entity"], "Pashchimi": ["ISO 639-6 entity"], "Phaldako\u0163iy\u0101": ["ISO 639-6 entity"], "Khasparjiy\u0101": ["ISO 639-6 entity"], "Pahari-E Cluster": ["ISO 639-6 entity"], "Palpa": ["A language of Nepal."], "Palpa Spoken": ["The dialects of the Palpa language."], "Nepali Written": ["The written forms of the Nepali language."], "Nepali Written Nagari Script": ["A written form of the Nepali language."], "Nepali Spoken": ["The dialects of the Nepali language."], "Nep\u0101li Middle": ["A dialect of the Nepali language."], "Nep\u0101li Generalised": ["A dialect of the Nepali language."], "Gorkhali": ["A dialect of the Nepali language."], "Bait\u0101di": ["A dialect of the Nepali language."], "Bajhangi": ["A dialect of the Nepali language."], "Bajur\u0101li": ["A dialect of the Nepali language."], "Doteli": ["A dialect of the Nepali language."], "Sor\u0101di": ["A dialect of the Nepali language."], "Acchami": ["A dialect of the Nepali language."], "Jumli": ["A language of Nepal."], "Jumli Spoken": ["The dialects of the Jumli language."], "Assi": ["A dialect of the Jumli language."], "Chaudhabis": ["A dialect of the Jumli language."], "Paachsai": ["A dialect of the Jumli language."], "Sinja": ["A dialect of the Jumli language."], "Darjul\u0101": ["A dialect of the Jumli language."], "Panj\u0101bi Cluster": ["ISO 639-6 entity"], "Panjabi": ["An Indic language spoken mainly in the Punjab regions of India and Pakistan."], "Panjabi Written": ["Written forms of the Panjabi language."], "Panjabi Written Gurmukhi Script": ["ISO 639-6 entity"], "Panjabi Written Lahnda Script": ["ISO 639-6 entity"], "Panjabi Written Perso-Arabic Script": ["ISO 639-6 entity"], "Panjabi Spoken": ["Dialects of the Panjabi language."], "Muslim-Panj\u0101bi": ["ISO 639-6 entity"], "Sikh-Panj\u0101bi": ["ISO 639-6 entity"], "Hindu-Panj\u0101bi": ["ISO 639-6 entity"], "Panj\u0101bi Colloquial": ["ISO 639-6 entity"], "Panj\u0101bi Colloquial Spoken": ["ISO 639-6 entity"], "Panj\u0101bi-Pakistan": ["ISO 639-6 entity"], "Panj\u0101bi-India": ["ISO 639-6 entity"], "Panj\u0101bi-Fiji": ["ISO 639-6 entity"], "Panj\u0101bi-England": ["ISO 639-6 entity"], "Panjabi-E": ["ISO 639-6 entity"], "Panjabi-E Spoken": ["ISO 639-6 entity"], "L\u0101hore": ["ISO 639-6 entity"], "Amritsar": ["ISO 639-6 entity"], "Gurd\u0101spur": ["ISO 639-6 entity"], "Kuchbandhi": ["ISO 639-6 entity"], "Lahnd\u0101 Cluster": ["ISO 639-6 entity"], "West Panjabi": ["ISO 639-6 entity"], "West Panjabi Written": ["ISO 639-6 entity"], "West Panjabi Written Perso-Arabic Script": ["ISO 639-6 entity"], "West Panjabi Spoken": ["ISO 639-6 entity"], "Potoh\u0101ri": ["ISO 639-6 entity"], "B\u0101lmiki": ["ISO 639-6 entity"], "Jhelum": ["ISO 639-6 entity"], "Sargodh\u0101": ["ISO 639-6 entity"], "Gujr\u0101t": ["ISO 639-6 entity"], "Gujr\u0101nw\u0101l\u0101": ["ISO 639-6 entity"], "Si\u0101lkot": ["ISO 639-6 entity"], "Shekhupur\u0101": ["ISO 639-6 entity"], "L\u0101yalpuri": ["ISO 639-6 entity"], "Chinawari": ["ISO 639-6 entity"], "Nisw\u0101ni": ["ISO 639-6 entity"], "Bardi-Boli": ["ISO 639-6 entity"], "Jatatardi-Boli": ["ISO 639-6 entity"], "Do\u0101bi": ["ISO 639-6 entity"], "Do\u0101bi Spoken": ["ISO 639-6 entity"], "Hoshi\u0101rpur": ["ISO 639-6 entity"], "Jullundur": ["ISO 639-6 entity"], "Malw\u0101i": ["ISO 639-6 entity"], "Malw\u0101i Spoken": ["ISO 639-6 entity"], "Pati\u0101lwi": ["ISO 639-6 entity"], "Pati\u0101lwi Spoken": ["ISO 639-6 entity"], "Pati\u0101l\u0101": ["ISO 639-6 entity"], "Sangrur": ["ISO 639-6 entity"], "Awank\u0101ri-Ghebi": ["ISO 639-6 entity"], "Awank\u0101ri-Ghebi Spoken": ["ISO 639-6 entity"], "Salt-Range": ["ISO 639-6 entity"], "Awank\u0101ri": ["ISO 639-6 entity"], "Ghebi": ["ISO 639-6 entity"], "Gaddi": ["A language of India"], "Gaddi Spoken": ["Dialects of the Gaddi language of India."], "Macleod Ganj": ["Dialect of the Gaddi language of India."], "Bharmauri": ["Dialect of the Gaddi language of India."], "Churahi": ["A language of India."], "Bhattiyali": ["A language of India."], "Bhattiyali Written": ["The written forms of the Bhattiyali language."], "Bhattiyali Written Bengali Script": ["The Bhattiyali language written with the Bengali Script."], "Bhattiyali Spoken": ["The spoken Bhattiyali language and its dialects."], "Bhatbali": ["ISO 639-6 entity"], "Dogri-N": ["ISO 639-6 entity"], "Dogri-E": ["ISO 639-6 entity"], "Kandi\u0101li": ["ISO 639-6 entity"], "K\u0101ngri": ["ISO 639-6 entity"], "K\u0101ngri Written": ["ISO 639-6 entity"], "K\u0101ngri Written Devanagari Script": ["ISO 639-6 entity"], "K\u0101ngri Spoken": ["ISO 639-6 entity"], "Mirpur Panjabi": ["ISO 639-6 entity"], "Mirpur Panjabi Spoken": ["ISO 639-6 entity"], "Northern Hindko": ["A language of Pakistan."], "Northern Hindko Spoken": ["Dialects of the Northern Hindko language."], "Haz\u0101r\u0101-Hindko": ["A dialect of the Northern Hindko language."], "Koh\u0101ti": ["A dialect of the Northern Hindko language."], "Tinauli": ["A dialect of the Northern Hindko language."], "Southern Hindko": ["A language of Pakistan."], "Southern Hindko Spoken": ["Dialects of the Southern Hindko language."], "Peshawari": ["A dialect of the Southern Hindko language."], "Attock Hindko": ["A dialect of the Southern Hindko language."], "Bilaspuri": ["A language of India."], "Seraiki": ["An Indo-Aryan language spoken in Pakistan."], "Seraiki Written": ["ISO 639-6 entity"], "Seraiki Written Devanagari Script": ["ISO 639-6 entity"], "Seraiki Written Perso-Arabic Script": ["ISO 639-6 entity"], "Seraiki Spoken": ["ISO 639-6 entity"], "Der\u0101w\u0101li": ["ISO 639-6 entity"], "Mult\u0101ni": ["ISO 639-6 entity"], "Bahawalpuri": ["ISO 639-6 entity"], "Khetr\u0101ni": ["ISO 639-6 entity"], "Jangli": ["ISO 639-6 entity"], "Jafiri": ["ISO 639-6 entity"], "Th\u0101li-N": ["ISO 639-6 entity"], "Khetrani": ["ISO 639-6 entity"], "Khetrani Written": ["ISO 639-6 entity"], "Khetrani Spoken": ["ISO 639-6 entity"], "Sir\u0101iki-Sindhi": ["ISO 639-6 entity"], "Northern India Western": ["ISO 639-6 entity"], "Northern India Western North West": ["ISO 639-6 entity"], "Jakati": ["A language of Ukraine and Afghanistan."], "Jakati Spoken": ["ISO 639-6 entity"], "Sindhi Cluster": ["ISO 639-6 entity"], "Sindhi Spoken": ["Dialects of the Sindhi language."], "Muslim-Sindhi": ["ISO 639-6 entity"], "Hindu-Sindhi": ["ISO 639-6 entity"], "Sindhi-Colloquial": ["ISO 639-6 entity"], "Sindhi- Colloquial Spoken": ["ISO 639-6 entity"], "Sindhi-P\u0101kist\u0101n": ["ISO 639-6 entity"], "Sindhi-Bh\u0101rat": ["ISO 639-6 entity"], "Vicholi": ["ISO 639-6 entity"], "Vicholi Spoken": ["ISO 639-6 entity"], "Vicholi-A": ["ISO 639-6 entity"], "Siro": ["ISO 639-6 entity"], "Th\u0101reli": ["ISO 639-6 entity"], "Lasi": ["A language of Pakistan."], "Lasi Spoken": ["The dialects of the Lasi language."], "Lari": ["A dialect of the Lasi language."], "Machari\u0101": ["A dialect of the Lasi language."], "Sindhi Bhil": ["ISO 639-6 entity"], "Sindhi Bhil Spoken": ["ISO 639-6 entity"], "Mohrano": ["ISO 639-6 entity"], "Jadgali": ["A language of Pakistan and Iran."], "Jadgali Spoken": ["ISO 639-6 entity"], "Ja-Gali-W": ["ISO 639-6 entity"], "Ja-Gali-E": ["ISO 639-6 entity"], "Kachhi": ["A dialect of the Sindhi language spoken in the Kutch region of the Indian state of Gujarat as well as in the Pakistani province of Sindh."], "Kachhi Spoken": ["ISO 639-6 entity"], "M\u0101nvi": ["ISO 639-6 entity"], "K\u0101yasthi-N": ["ISO 639-6 entity"], "B\u0101ni": ["ISO 639-6 entity"], "Bh\u0101\u0163i": ["ISO 639-6 entity"], "Vaghri": ["ISO 639-6 entity"], "Vaghri Spoken": ["The dialects of the Vaghri language."], "Niardiay": ["A dialect of the Vaghri language."], "Baj\u0101\u00e9i\u0101": ["A dialect of the Vaghri language."], "Kavah": ["A dialect of the Vaghri language."], "Rav\u0101ri\u0101": ["A dialect of the Vaghri language."], "K\u0101ri\u0101": ["A dialect of the Vaghri language."], "Aer": ["A language of Pakistan."], "Aer Spoken": ["The Aer spoken language and its dialects."], "Rah\u0101b\u0101ri": ["A dialect of the Aer language."], "Kachchi-\u00c9migr\u00e9": ["A dialect of the Aer language."], "Kachi Koli": ["A language of Pakistan."], "Kachi Koli Written": ["The written forms of the Kachi Koli language."], "Kachi Koli Written Arabic Script": ["The written forms of the Kachi Koli language."], "Kachi Koli Written Devanagari Script": ["The written forms of the Kachi Koli language."], "Wadiyara Koli": ["ISO 639-6 entity"], "Wadiyara Koli Spoken": ["ISO 639-6 entity"], "Mew\u0101si": ["ISO 639-6 entity"], "Th\u0101rad\u0101ri-Koli": ["ISO 639-6 entity"], "Th\u0101rad\u0101ri-Koli Spoken": ["ISO 639-6 entity"], "Th\u0101rad\u0101ri-Koli-N": ["ISO 639-6 entity"], "Th\u0101rad\u0101ri-Koli-S": ["ISO 639-6 entity"], "Parkari Koli": ["A language of Pakistan."], "Parkari Koli Spoken": ["ISO 639-6 entity"], "N\u0101g\u0101-Park\u0101r": ["ISO 639-6 entity"], "Th\u0101i": ["ISO 639-6 entity"], "Badin": ["ISO 639-6 entity"], "Bhaya": ["A language of Pakistan."], "Rajasthani": ["ISO 639-6 entity"], "Marwari Cluster": ["A group of languages of India and Pakistan."], "Marwari (India)": ["An Indo-Aryan language spoken in the Indian state of Rajasthan, and also in the neighboring state of Gujarat and in Eastern Pakistan."], "Marwari (India) Written": ["Written forms of the Marwari language of India."], "Marwari (India) Written Nagari Script": ["Marwari language of India written with the Nagari Script."], "Marwari (India) Written Perso-Arabic Script": ["Marwari language of India written with the Perso-Arabic Script."], "Marwari (India) Spoken": ["ISO 639-6 entity"], "Sindhi-M\u0101rw\u0101\u00f1i-NW": ["ISO 639-6 entity"], "Sindhi-M\u0101rw\u0101\u00f1i-NE": ["ISO 639-6 entity"], "D\u0101du": ["ISO 639-6 entity"], "Naw\u0101bsh\u0101h": ["ISO 639-6 entity"], "Tando-Muhammad-Kh\u0101n": ["ISO 639-6 entity"], "Loarki": ["ISO 639-6 entity"], "Loarki Spoken": ["ISO 639-6 entity"], "Tando-Ghul\u0101m-Ali": ["ISO 639-6 entity"], "Dhakti": ["ISO 639-6 entity"], "Dhakti Spoken": ["ISO 639-6 entity"], "Barage": ["ISO 639-6 entity"], "Eastern Dhakti": ["ISO 639-6 entity"], "Southern Dhakti": ["ISO 639-6 entity"], "Central Dhakti": ["ISO 639-6 entity"], "Malhi": ["ISO 639-6 entity"], "Th\u0101r": ["ISO 639-6 entity"], "Gurgula": ["ISO 639-6 entity"], "Ghera": ["A language of Pakistan."], "R\u0101jasth\u0101ni-M\u0101rw\u0101\u00f1i": ["ISO 639-6 entity"], "R\u0101jasth\u0101ni-M\u0101rw\u0101\u00f1i Spoken": ["ISO 639-6 entity"], "R\u0101jasth\u0101ni Formal": ["ISO 639-6 entity"], "R\u0101jasth\u0101ni-C": ["ISO 639-6 entity"], "R\u0101jasth\u0101ni-C Spoken": ["ISO 639-6 entity"], "Jaisalmer": ["ISO 639-6 entity"], "Godwari": ["A language of India."], "Godwari Spoken": ["Dialects of Godwari."], "Sirohi": ["Dialect of Godwari."], "Balvi": ["Dialect of Godwari."], "Khuni": ["Dialect of Godwari."], "Deor\u0101wati": ["Dialect of Godwari."], "Saeth-Ki-Boli": ["Dialect of Godwari."], "Marwari (Pakistan)": ["A language spoken in Pakistan."], "Marwari (Pakistan) Written": ["ISO 639-6 entity"], "Marwari (Pakistan) Written Sindhi Script": ["ISO 639-6 entity"], "Marwari (Pakistan) Written Urdu Script": ["ISO 639-6 entity"], "Marwari (Pakistan) Spoken": ["ISO 639-6 entity"], "Jodhpuri-M\u0101rw\u0101\u00f1i": ["ISO 639-6 entity"], "Sindh-M\u0101rw\u0101\u00f1i": ["ISO 639-6 entity"], "Bik\u0101neri": ["ISO 639-6 entity"], "Bik\u0101neri Spoken": ["ISO 639-6 entity"], "Bik\u0101neri-A": ["ISO 639-6 entity"], "Shekhawati": ["ISO 639-6 entity"], "Shekhawati Spoken": ["ISO 639-6 entity"], "Mew\u0101ti": ["ISO 639-6 entity"], "Mew\u0101ti Spoken": ["ISO 639-6 entity"], "Mew\u0101ti-A": ["ISO 639-6 entity"], "Hirw\u0101ti": ["ISO 639-6 entity"], "Dhundari": ["A language of India."], "Dhundari Written": ["Written forms of the Dhundari language of India."], "Dhundari Written Devanagari Script": ["Written form of the Dhundari language of India."], "Dhundari Spoken": ["ISO 639-6 entity"], "Jaipuri-A": ["ISO 639-6 entity"], "Tor\u0101wati": ["ISO 639-6 entity"], "Kathair\u0101": ["ISO 639-6 entity"], "Chaur\u0101si": ["ISO 639-6 entity"], "R\u0101j\u0101wati": ["ISO 639-6 entity"], "Kishanga\u00f1hi": ["ISO 639-6 entity"], "Merwari": ["ISO 639-6 entity"], "Merwari Spoken": ["ISO 639-6 entity"], "Harauti": ["A language of India."], "Harauti Written": ["ISO 639-6 entity"], "Harauti Written Devangari Script": ["ISO 639-6 entity"], "Harauti Spoken": ["ISO 639-6 entity"], "Harauti-A": ["ISO 639-6 entity"], "Sip\u0101ri": ["ISO 639-6 entity"], "Mewari": ["ISO 639-6 entity"], "Mewari Written": ["ISO 639-6 entity"], "Mewari Written Devanagari Script": ["ISO 639-6 entity"], "Mewari Spoken": ["ISO 639-6 entity"], "Mew\u0101\u00f1i-A": ["ISO 639-6 entity"], "Gor\u0101wati": ["ISO 639-6 entity"], "Sarw\u0101ri": ["ISO 639-6 entity"], "Khair\u0101ri": ["ISO 639-6 entity"], "G\u0101meti\u0101-Mew\u0101\u00f1i": ["ISO 639-6 entity"], "Malvi": ["A Rajasthani language with ten million speakers spoken in the Malva region of India."], "Malvi Written": ["ISO 639-6 entity"], "Malvi Written Devanagari Script": ["ISO 639-6 entity"], "Malvi Spoken": ["ISO 639-6 entity"], "M\u0101lvi-A": ["ISO 639-6 entity"], "Bach\u0101di": ["ISO 639-6 entity"], "Dholew\u0101ri": ["ISO 639-6 entity"], "Hoshang\u0101b\u0101d": ["ISO 639-6 entity"], "Jamral": ["ISO 639-6 entity"], "Katiy\u0101i": ["ISO 639-6 entity"], "P\u0101tvi": ["ISO 639-6 entity"], "R\u0101ngri": ["ISO 639-6 entity"], "Ujjaini": ["ISO 639-6 entity"], "Bhoy\u0101ri": ["ISO 639-6 entity"], "Sondw\u0101ri": ["ISO 639-6 entity"], "Sondw\u0101ri Spoken": ["ISO 639-6 entity"], "Nimadi": ["ISO 639-6 entity"], "Nimadi Written": ["ISO 639-6 entity"], "Nimadi Written Devanagari Script": ["ISO 639-6 entity"], "Nimadi Spoken": ["ISO 639-6 entity"], "Nim\u0101di-A": ["ISO 639-6 entity"], "Bhu\u0101ni": ["ISO 639-6 entity"], "Gujari": ["A language of India"], "Gujari Written": ["ISO 639-6 entity"], "Gujari Written Nastaliq Script": ["ISO 639-6 entity"], "Gujari Written Devangari Script": ["ISO 639-6 entity"], "Gujari Spoken": ["Dialects of the Gujari language."], "R\u0101jasth\u0101ni-Gujuri": ["Dialect of the Gujari language."], "Pooch": ["Dialect of the Gujari language."], "Plains-Gujuri": ["Dialect of the Gujari language."], "Mountain-Gujuri": ["Dialect of the Gujari language."], "Western Gujari": ["Dialect of the Gujari language."], "Eastern Gujari": ["Dialect of the Gujari language."], "Ajiri": ["Dialect of the Gujari language."], "Bagri": ["A language of India and Pakistan."], "Bagri Written": ["The written forms of the Bagri language."], "Bagri Spoken": ["The dialects of the Bagri language."], "Jandavra": ["A language of Pakistan."], "Jandavra Spoken": ["ISO 639-6 entity"], "Lambadi": ["A language of India."], "Lambadi Written": ["ISO 639-6 entity"], "Lambadi Spoken": ["ISO 639-6 entity"], "Lamb\u0101di-Mah\u0101r\u0101shtra": ["ISO 639-6 entity"], "Lamb\u0101di-Mah\u0101r\u0101shtra Written Devanagari Script": ["ISO 639-6 entity"], "Lamb\u0101di-\u0100ndhra-Pradesh": ["ISO 639-6 entity"], "Lamb\u0101di-\u0100ndhra-Pradesh Written Telugu Script": ["ISO 639-6 entity"], "Lamb\u0101di-Maisur": ["ISO 639-6 entity"], "Lamb\u0101di-Maisur Written Kannada Script": ["ISO 639-6 entity"], "Lahul Lohar": ["A language of India."], "Lahul Lohar Written": ["The written forms of the Lahul Lohar language."], "Lahul Lohar Spoken": ["The dialects of the Lahul Lohar language."], "Gade Lohar": ["A language of India."], "Gade Lohar Spoken": ["Dialects of the Gade Lohar language."], "Loh\u0101ri-Lohpitt\u0101-R\u0101jput": ["Dialect of the Gade Lohar language."], "Loh\u0101ri-B\u0101gri": ["Dialect of the Gade Lohar language."], "Bhubaliy\u0101-Loh\u0101ri": ["Dialect of the Gade Lohar language."], "Mina (India)": ["ISO 639-6 entity"], "Mina (India) Spoken": ["ISO 639-6 entity"], "Sansi": ["ISO 639-6 entity"], "Sansi Written": ["ISO 639-6 entity"], "Sansi Written Devanagari Script": ["ISO 639-6 entity"], "Sansi Spoken": ["ISO 639-6 entity"], "Bh\u0101ntu": ["ISO 639-6 entity"], "Bh\u0101ntu Spoken": ["ISO 639-6 entity"], "Kabutra": ["ISO 639-6 entity"], "Kabutra Spoken": ["ISO 639-6 entity"], "Gujarati Cluster": ["ISO 639-6 entity"], "Gujar\u0101ti-Formal": ["ISO 639-6 entity"], "Gujarati": ["An Indic language spoken mainly in India."], "Hindu-Gujar\u0101ti": ["A dialect of the Gujarati language."], "Musalm\u0101ni-Gujar\u0101ti": ["A dialect of the Gujarati language."], "P\u0101rsi-Gujar\u0101ti": ["A dialect of the Gujarati language."], "Pa\u0163\u0163ani": ["ISO 639-6 entity"], "Pa\u0163\u0163ani Spoken": ["ISO 639-6 entity"], "Jh\u0101l\u0101w\u0101I": ["ISO 639-6 entity"], "Sora\u0163hi": ["ISO 639-6 entity"], "H\u0101l\u0101ri": ["ISO 639-6 entity"], "Gohilw\u0101I": ["ISO 639-6 entity"], "Bh\u0101vnagari": ["ISO 639-6 entity"], "Kh\u0101rw\u0101": ["ISO 639-6 entity"], "Gujar\u0101ti-C": ["ISO 639-6 entity"], "Gujar\u0101ti-C Spoken": ["ISO 639-6 entity"], "Gr\u0101mya": ["ISO 639-6 entity"], "G\u0101maI\u0101": ["ISO 639-6 entity"], "Charotari": ["ISO 639-6 entity"], "P\u0101\u0163id\u0101ri": ["ISO 639-6 entity"], "VaOdari": ["ISO 639-6 entity"], "Dalit": ["ISO 639-6 entity"], "Bharuchi": ["ISO 639-6 entity"], "Surti": ["ISO 639-6 entity"], "An\u0101wl\u0101": ["ISO 639-6 entity"], "Mumbai-U": ["ISO 639-6 entity"], "Vhor\u0101s\u0101i": ["ISO 639-6 entity"], "Kak\u0101ri": ["ISO 639-6 entity"], "Ghis\u0101I": ["ISO 639-6 entity"], "Saurashtra": ["An Indo-Aryan language spoken in parts of the Southern Indian State of Tamil Nadu."], "Saurashtra Spoken": ["The dialects of the Saurashtra language."], "Southern Saurashtra": ["A dialect of the Saurashtra language."], "Northern Saurashtra": ["A dialect of the Saurashtra language."], "Bhili": ["A language of India."], "Bauria": ["A language of India."], "Magra-Ki-Boli": ["ISO 639-6 entity"], "Adiwasi Garasia": ["A language of India."], "Wagdi": ["A Bhil language spoken in the Vagad region of Rajasthan, India."], "Wagdi Spoken": ["ISO 639-6 entity"], "Khewara": ["ISO 639-6 entity"], "Sagwara": ["ISO 639-6 entity"], "Adivasi Wagdi": ["ISO 639-6 entity"], "Dungra Bhil": ["A language of India"], "Noiri": ["ISO 639-6 entity"], "M\u012bn\u0101-Bhili ": ["ISO 639-6 entity"], "Panchmah\u0101li-Bhili": ["ISO 639-6 entity"], "Rathawi": ["ISO 639-6 entity"], "Pah\u0101I": ["ISO 639-6 entity"], "Chodri": ["A language of India."], "Gamit": ["A language of India."], "N\u0101ikaI": ["ISO 639-6 entity"], "Chara\u00e9i": ["ISO 639-6 entity"], "Vasavi": ["ISO 639-6 entity"], "Vasavi Written": ["ISO 639-6 entity"], "Vasavi Written Gujarati Script": ["ISO 639-6 entity"], "Vasavi Written Marathi Script": ["ISO 639-6 entity"], "Vasavi Spoken": ["The dialects of the Vasavi language."], "Adiw\u0101si-Girasia": ["A dialect of the Vasavi language."], "Dhogri-Bhili": ["A dialect of the Vasavi language."], "Kaski-Bhili": ["A dialect of the Vasavi language."], "BhiloI-Bhili": ["A dialect of the Vasavi language."], "Padwi-Bhilori": ["A dialect of the Vasavi language."], "Ambodia-Bhili": ["A dialect of the Vasavi language."], "Vas\u0101va-Bhili": ["A dialect of the Vasavi language."], "Mawchi": ["ISO 639-6 entity"], "Mawchi Spoken": ["ISO 639-6 entity"], "Mawchi Proper": ["ISO 639-6 entity"], "Padvi": ["ISO 639-6 entity"], "Dhanki": ["ISO 639-6 entity"], "Dhanki Spoken": ["ISO 639-6 entity"], "Dh\u0101nk\u0101": ["ISO 639-6 entity"], "Tadavi": ["ISO 639-6 entity"], "Valvi": ["ISO 639-6 entity"], "Pateli\u0101-Bhili": ["ISO 639-6 entity"], "Bhilali": ["A language of India."], "Dubli": ["A language of India."], "Dhodia": ["A language of India."], "Kukna": ["ISO 639-6 entity"], "Kukna Written": ["ISO 639-6 entity"], "Kukna Written Gujarati Script": ["ISO 639-6 entity"], "Kukna Written Devanagari Script": ["ISO 639-6 entity"], "Dehw\u0101li": ["ISO 639-6 entity"], "Nahari": ["ISO 639-6 entity"], "Ahirani": ["A language of India."], "Rajput Garasia": ["A language of India."], "Rajput Garasia Written": ["ISO 639-6 entity"], "Rajput Garasia Written Gujarati Script": ["ISO 639-6 entity"], "Rajput Garasia Written Devanagari Script": ["ISO 639-6 entity"], "Ko\u0163\u0101li": ["ISO 639-6 entity"], "Bhimchaura": ["ISO 639-6 entity"], "Haburi": ["ISO 639-6 entity"], "R\u0101n\u0101-Bhili": ["ISO 639-6 entity"], "Pauri Bareli": ["A language of India."], "Rathwi Bareli": ["A language of India."], "Palya Bareli": ["A language of India."], "Pardhi": ["ISO 639-6 entity"], "Pardhi Spoken": ["ISO 639-6 entity"], "Chita-P\u0101rdhi": ["ISO 639-6 entity"], "Lango-P\u0101rdhi": ["ISO 639-6 entity"], "Phanse-P\u0101rdhi": ["ISO 639-6 entity"], "Taran-Kari": ["ISO 639-6 entity"], "N\u0113lishi-Kari": ["ISO 639-6 entity"], "Pittala-Bhasha": ["ISO 639-6 entity"], "Kh\u0101ndesi": ["ISO 639-6 entity"], "Kh\u0101ndesi Spoken": ["ISO 639-6 entity"], "Kotali Bhil": ["ISO 639-6 entity"], "Ahir\u0101ni": ["ISO 639-6 entity"], "Kunabi": ["ISO 639-6 entity"], "\u0100ngri": ["ISO 639-6 entity"], "Nahali": ["ISO 639-6 entity"], "N\u0101hale": ["ISO 639-6 entity"], "Northern Indian Western": ["ISO 639-6 entity"], "Northern Indian Western South": ["ISO 639-6 entity"], "Mar\u0101thi Written": ["Written forms of the Mar\u0101thi language."], "Mar\u0101thi Written Modi Script": ["ISO 639-6 entity"], "Mar\u0101thi Written Nagari-Type Script": ["ISO 639-6 entity"], "Mar\u0101thi Written Devanagari Script": ["ISO 639-6 entity"], "Mar\u0101thi Spoken": ["Dialects of the Mar\u0101thi language."], "Cochin": ["ISO 639-6 entity", "ISO 639-6 entity"], "Gawdi": ["ISO 639-6 entity"], "Kasargod": ["ISO 639-6 entity"], "Kosti": ["ISO 639-6 entity"], "N\u0101gpuri-Hindi": ["ISO 639-6 entity"], "Varhadi -Nagpuri Spoken": ["The dialects of the Varhadi-Nagpuri language."], "Varh\u0101di-A": ["The dialects of the Varhadi-Nagpuri language."], "Dhangari": ["The dialects of the Varhadi-Nagpuri language."], "Varh\u0101di-Br\u0101hmani": ["The dialects of the Varhadi-Nagpuri language."], "Jarpi": ["The dialects of the Varhadi-Nagpuri language."], "Govari": ["The dialects of the Varhadi-Nagpuri language."], "Jhadbi": ["The dialects of the Varhadi-Nagpuri language."], "Katia": ["The dialects of the Varhadi-Nagpuri language."], "Rangari": ["The dialects of the Varhadi-Nagpuri language."], "Kumbh\u0101ri": ["The dialects of the Varhadi-Nagpuri language."], "Kunabau": ["ISO 639-6 entity"], "Mah\u0101ri": ["The dialects of the Varhadi-Nagpuri language."], "M\u0101rheti": ["The dialects of the Varhadi-Nagpuri language."], "Natakani": ["The dialects of the Varhadi-Nagpuri language."], "R\u0101ipur": ["The dialects of the Varhadi-Nagpuri language."], "Kunbi": ["The dialects of the Varhadi-Nagpuri language."], "Gowli": ["A language of India."], "Nand": ["A dialect of the Gowli language."], "Ranya": ["A dialect of the Gowli language."], "Ling\u0101yat": ["A dialect of the Gowli language."], "Kh\u0101ml\u0101": ["A dialect of the Gowli language."], "Ikr\u0101ni": ["ISO 639-6 entity"], "Katkari": ["ISO 639-6 entity"], "Katkari Spoken": ["ISO 639-6 entity"], "Katkari N": ["ISO 639-6 entity"], "Katkari S": ["ISO 639-6 entity"], "Katkari C": ["ISO 639-6 entity"], "Varli": ["ISO 639-6 entity"], "Varli Spoken": ["The dialects of the Varli language."], "Davari": ["A dialect of the Varli language."], "Nihiri E": ["A dialect of the Varli language."], "Nihiri W": ["A dialect of the Varli language."], "Samvedi": ["ISO 639-6 entity"], "Mangelas": ["ISO 639-6 entity"], "Vadval- Phudagi": ["ISO 639-6 entity"], "Vadval- Phudagi Spoken": ["The dialects of the Vadval-Phudagi language."], "Vadval": ["A dialect of the Vadval-Phudagi language."], "Phudagi": ["ISO 639-6 entity"], "Phudagi Spoken": ["ISO 639-6 entity"], "Bhalay": ["A language of India."], "Bhalay Spoken": ["The spoken Bhalay language and its dialects."], "Th\u0101kuri": ["ISO 639-6 entity"], "Th\u0101kuri Spoken": ["ISO 639-6 entity"], "Deccan": ["A language of India."], "Deccan Written": ["ISO 639-6 entity"], "Deccan Written Modi Script Historical": ["ISO 639-6 entity"], "Deccan Written Modi Script": ["ISO 639-6 entity"], "Deccan Written Balbodh Nagari-Type Script": ["ISO 639-6 entity"], "Deccan Written Deshi Script Poona Model": ["ISO 639-6 entity"], "Deccan Spoken": ["ISO 639-6 entity"], "Mar\u0101thi-Formal": ["ISO 639-6 entity"], "Deshi": ["ISO 639-6 entity"], "Kalvadi": ["ISO 639-6 entity"], "Bij\u0101puri": ["ISO 639-6 entity"], "Konkani (Generic)": ["An Indo-Aryan language group belonging to the Indo-European family of languages spoken in the Konkan coast of India, consisting of two individual languages: Konkani and Goan Konkani."], "Konkani (Specific)": ["A language of India."], "Konkani (Specific) Written": ["ISO 639-6 entity"], "Konkani (Specific) Written Kannada Script": ["ISO 639-6 entity"], "Konkani (Specific) Spoken": ["ISO 639-6 entity"], "K\u0101yasthi-S": ["ISO 639-6 entity"], "Damani": ["ISO 639-6 entity"], "Koli-E": ["ISO 639-6 entity"], "Kiristav": ["ISO 639-6 entity"], "Kungabi": ["ISO 639-6 entity"], "Ag\u0101ri": ["ISO 639-6 entity"], "Dhanag\u0101ri": ["ISO 639-6 entity"], "Bhand\u0101ri": ["ISO 639-6 entity"], "Thak\u0101ri": ["ISO 639-6 entity"], "Karh\u0101di": ["ISO 639-6 entity"], "Sangamesvari": ["ISO 639-6 entity"], "Gh\u0101ti": ["ISO 639-6 entity"], "Dhed": ["ISO 639-6 entity"], "Holia": ["ISO 639-6 entity"], "Parv\u0101ri": ["ISO 639-6 entity"], "Goanese Konkani": ["A language of India and Kenia."], "Goanese Konkani Written": ["Written forms of the Goanese Konkani language."], "Goanese Konkani Written Nagari Script": ["ISO 639-6 entity"], "Goanese Konkani Written Kannada Script": ["ISO 639-6 entity"], "Goanese Konkani Written Latin Script": ["A written form of the Goanese Konkani language."], "Goanese Konkani Written Malayalam Script": ["ISO 639-6 entity"], "Goanese Konkani Spoken": ["Dialects of the Goanese Konkani language."], "Standard Goanese": ["A dialect of the Goanese Konkani language."], "Daldi-Nawaits": ["A dialect of the Goanese Konkani language."], "Chiatpavani": ["A dialect of the Goanese Konkani language."], "Bardeshi": ["A dialect of the Goanese Konkani language."], "Antruzi": ["A dialect of the Goanese Konkani language."], "Sash\u0163i": ["A dialect of the Goanese Konkani language."], "Karw\u0101ri": ["A dialect of the Goanese Konkani language."], "S\u0101rasvat-Brahmin": ["A dialect of the Goanese Konkani language."], "Kudali": ["A dialect of the Goanese Konkani language."], "Malvani": ["A dialect of the Goanese Konkani language."], "Manglluri": ["A dialect of the Goanese Konkani language spoken in the city of Mangalore."], "Sanskrit Cluster": ["ISO 639-6 entity"], "Sanskrit Written": ["Written forms of the Sanskrit language."], "Historical Sanskrit Written Sanskrit Script": ["ISO 639-6 entity"], "Sanskrit Written Brahmi Script": ["

[http://onlinepill.in/order-brahmi-online-en.html?q=brahmi multilingual]


[http://onlinepill.in/order-brahmi-online-en.html?q=brahmi >>multilingual<<]


[http://onlinepill.in/order-brahmi-online-en.html?q=brahmi multilingual!]




ISO 639-6 entity"], "Sanskrit Written Kharosthi Script": ["ISO 639-6 entity"], "Sanskrit Written Nagari Script": ["ISO 639-6 entity"], "Sanskrit Written Bengali Script": ["ISO 639-6 entity"], "Sanskrit Written Oriya Script": ["ISO 639-6 entity"], "Sanskrit Written Malayalam Script": ["ISO 639-6 entity"], "Sanskrit Written Tamil Script": ["ISO 639-6 entity"], "Sanskrit Written Kannada Script": ["ISO 639-6 entity"], "Sanskrit Spoken": ["Dialects of the Sanskrit language."], "Modern Literary Sanskrit": ["ISO 639-6 entity"], "Pali": ["An extinct Indo-Iranian language used in early Buddhist texts and as the liturgical language of Theravada Buddhism."], "Pali Written": ["Written forms of the Pali language."], "Pali Written Sinhalese Script Historical": ["An written form of the Pali language using the ancient Sinhalese script."], "Pali Spoken": ["Dialects of the Pali language."], "P\u0101li-Tipi\u0163\u0101k\u0101": ["ISO 639-6 entity"], "P\u0101li-S": ["ISO 639-6 entity"], "P\u0101li-SE": ["ISO 639-6 entity"], "Pr\u0101krta": ["ISO 639-6 entity"], "Pr\u0101krta Written": ["ISO 639-6 entity"], "Pr\u0101krta Written Nagari Script": ["ISO 639-6 entity"], "Hindustani Cluster": ["A group of several closely related idioms in the northern, central and northwestern part of the Indian subcontinent."], "Historical Urdu Written Arabic Script": ["ISO 639-6 entity"], "Historical Urdu Written": ["ISO 639-6 entity"], "Rekht\u0101": ["ISO 639-6 entity"], "Dakhini-L": ["ISO 639-6 entity"], "Gujari-L": ["ISO 639-6 entity"], "Hindawi-L": ["ISO 639-6 entity"], "Urdu Written": ["Written forms of the Urdu language."], "Urdu Written Perso-Arabic Script": ["Urdu language written with the Perso-Arabic Script."], "Urdu Spoken": ["Dialects of the Urdu language."], "Urdu Formal": ["ISO 639-6 entity"], "Kha\u00f1i-Boli": ["ISO 639-6 entity"], "Kha\u00f1i-Boli Spoken": ["ISO 639-6 entity"], "Delhi-U": ["ISO 639-6 entity"], "Meerut": ["ISO 639-6 entity"], "Terai-Urdu": ["ISO 639-6 entity"], "Dakhini": ["ISO 639-6 entity"], "Formal Hindi": ["ISO 639-6 entity"], "Formal Hindi Written": ["ISO 639-6 entity"], "Formal Hindi Spoken": ["ISO 639-6 entity"], "Dehlavi": ["ISO 639-6 entity"], "Samskrta-Hindi": ["ISO 639-6 entity"], "Hindi Written": ["Variants of the Hindi language used in written communication."], "Hindi Written Devanagari Script": ["ISO 639-6 entity"], "Hindi Spoken": ["Variants of the Hindi language used in oral communication."], "Hindi-Uttar-Pradesh-W": ["ISO 639-6 entity"], "Hindi-Hary\u0101n\u0101": ["ISO 639-6 entity"], "Hindi-Uttar-Pradesh-E": ["ISO 639-6 entity"], "Hindi-Panj\u0101b": ["ISO 639-6 entity"], "Hindi-Bih\u0101r": ["ISO 639-6 entity"], "Hindi-Beng\u0101l": ["ISO 639-6 entity"], "Hindi-Oriss\u0101": ["ISO 639-6 entity"], "Hindi-Madhya-Pradesh": ["ISO 639-6 entity"], "Hindi-Mah\u0101r\u0101shtra": ["ISO 639-6 entity"], "Hindi-Gujar\u0101t": ["ISO 639-6 entity"], "Hindi-Rajasth\u0101n": ["ISO 639-6 entity"], "Hindi-Him\u0101chal-Pradesh": ["A dialect of Hindi spoken in Himachal Pradesh, India."], "Hindi-\u0100s\u0101m": ["ISO 639-6 entity"], "Hindi-Arun\u0101chal-Pradesh": ["A dialect of Hindi spoken in Arunachal Pradesh, India."], "Hindi-\u0100ndhra-Pradesh": ["A dialect of Hindi spoken in Andhra Pradesh, India."], "Hindi-Tamil-N\u0101du": ["A dialect of Hindi spoken in Tamil Nadu, India."], "Hindi-Ker\u0101l\u0101": ["A dialect of Hindi spoken in Kerala, India."], "Hindi-Karn\u0101taka": ["A dialect of Hindi spoken in Karnataka, India."], "Hindi-Him\u0101laya": ["A dialect of Hindi spoken in The Himalayas, India."], "Hindi-N\u0101t\u0101l": ["ISO 639-6 entity"], "Hindi-Purva-\u0100frik\u0101": ["ISO 639-6 entity"], "Gowlan": ["A language of India."], "Gowlan Spoken": ["ISO 639-6 entity"], "Haryanvi": ["A Western-Hindi language spoken in the state of Haryana."], "Haryanvi Written": ["Written versions of the Haryanvi language."], "Haryanvi Written Hindi Script": ["Haryanvi language written with the Hindi Script."], "Haryanvi Spoken": ["The dialects of the Haryanvi language."], "Bangaru Proper": ["A dialect of the Haryanvi language."], "Deswali": ["A dialect of the Haryanvi language."], "Bagdi": ["A dialect of the Haryanvi language."], "Khadar": ["A dialect of the Haryanvi language."], "Mewati": ["An hindustani language spoken by about five million speakers in Alwar, Bharatpur and Dholpur districts of Rajasthan, and Faridabad and Gurgaon districts of Haryana states of India."], "Mewati Spoken": ["ISO 639-6 entity"], "Braj ": ["A Central Indo-Aryan language closely related to Hindi, usually considered to be a dialect of Hindi."], "Braj Spoken": ["Braj Spoken."], "Braj-Bh\u0101kh\u0101-Formal": ["ISO 639-6 entity"], "Jadob\u0101\u0163i": ["ISO 639-6 entity"], "Sikarw\u0101\u00f1i": ["ISO 639-6 entity"], "Bhuksa": ["ISO 639-6 entity"], "D\u0101ngi-N": ["ISO 639-6 entity"], "Dugar-W\u0101\u00f1a": ["ISO 639-6 entity"], "K\u0101lim\u0101l": ["ISO 639-6 entity"], "Kanauji": ["An hindustani language spoken in India with about 6 million speakers in the Kanauj area of Uttar Pradesh."], "Kanauji Written": ["ISO 639-6 entity"], "Kanauji Written Devanagari Script": ["ISO 639-6 entity"], "Kanauji Spoken": ["ISO 639-6 entity"], "D\u0101ngbh\u0101ng": ["ISO 639-6 entity"], "Kannauji-A": ["ISO 639-6 entity"], "Hardoi-E": ["ISO 639-6 entity"], "K\u0101npur-Kannauji": ["ISO 639-6 entity"], "Tirh\u0101ri-N": ["ISO 639-6 entity"], "Bundeli": ["An hindustani language spoken in the Bundelkhand region of Madhya Pradesh and in Uttar Pradesh, in India."], "Bundeli Written": ["ISO 639-6 entity"], "Bundeli Written Devanagari Script": ["ISO 639-6 entity"], "Bundeli Spoken": ["ISO 639-6 entity"], "Bhadauri": ["ISO 639-6 entity"], "Bundeli-A": ["ISO 639-6 entity"], "Powari": ["ISO 639-6 entity"], "Powari Spoken": ["ISO 639-6 entity"], "Marari": ["ISO 639-6 entity"], "Kumbhari": ["ISO 639-6 entity"], "Khalari": ["ISO 639-6 entity"], "Vyneganga": ["ISO 639-6 entity"], "Gaoli": ["ISO 639-6 entity"], "Kir\u0101ri": ["ISO 639-6 entity"], "Koshti": ["ISO 639-6 entity"], "Kha\u0163ola": ["ISO 639-6 entity"], "Lodh\u0101nti": ["ISO 639-6 entity"], "Ban\u0101phari": ["ISO 639-6 entity"], "KunRi": ["ISO 639-6 entity"], "Nagpuri Hindi": ["ISO 639-6 entity"], "Raghobansi": ["ISO 639-6 entity"], "Nibhatta": ["ISO 639-6 entity"], "Northernindia East Central": ["ISO 639-6 entity"], "Awadhi": ["A language of India."], "Awadhi Written": ["The written forms of the Awadhi language."], "Awadhi Written Devanagari Script Historical": ["ISO 639-6 entity"], "Awadhi Written Devanagari Script": ["ISO 639-6 entity"], "Awadhi Spoken": ["The spoken Awadhi language and its dialects."], "Mirzapuri": ["A dialect of the Awadhi language."], "Awadhi-Tharu": ["A dialect of the Awadhi language."], "Uttari": ["A dialect of the Awadhi language."], "Gangapari": ["A dialect of the Awadhi language."], "Pardesi": ["A dialect of the Awadhi language."], "Fijian Hindustani": ["An Indo-Iranian language spoken in Fiji by most Fijian citizens of Indian descent."], "Dangaura Tharu": ["ISO 639-6 entity"], "Dangaura Tharu Spoken": ["ISO 639-6 entity"], "Dangali": ["ISO 639-6 entity"], "Kailali": ["ISO 639-6 entity"], "Deokhuri": ["ISO 639-6 entity"], "Banke": ["ISO 639-6 entity"], "Bardiya": ["ISO 639-6 entity"], "Surkhet": ["ISO 639-6 entity"], "Kachanpur": ["ISO 639-6 entity"], "Kathoriya Tharu": ["A language of Nepal."], "Kathoriya Tharu Spoken": ["ISO 639-6 entity"], "Bagheli": ["A language of India and Nepal."], "Bagheli Written": ["The written versions of the Bagheli language."], "Bagheli Written Devanagari Script": ["The Bagheli language written with the Devanagari script."], "Bagheli Spoken": ["The dialects of the Bagheli language."], "Bagheli-Formal": ["A dialect of the Bagheli language."], "Tirhari-S": ["A dialect of the Bagheli language."], "Ju\u00f1ar": ["A dialect of the Bagheli language."], "Gahora": ["A dialect of the Bagheli language."], "Bagheli-A": ["A dialect of the Bagheli language."], "GorW\u0101ni": ["A dialect of the Bagheli language."], "Mar\u0101ri": ["A dialect of the Bagheli language."], "Ojhi": ["A dialect of the Bagheli language."], "Sonpari": ["A dialect of the Bagheli language."], "Nagpuri-Marathi": ["A dialect of the Bagheli language."], "Dhanwar": ["A language of India."], "Dhanwar Spoken": ["The dialects of the Dhanwar language."], "Bihari Cluster": ["ISO 639-6 entity"], "Bhojpuri": ["A language of India, Mauritius and Nepal."], "Bhojpuri Written": ["ISO 639-6 entity"], "Bhojpuri Written Nagari Script": ["ISO 639-6 entity"], "Bhojpuri Written Kaithi Script": ["ISO 639-6 entity"], "Bhojpuri Spoken": ["ISO 639-6 entity"], "Bhojpuri-Formal": ["ISO 639-6 entity"], "Ban\u0101rasi": ["ISO 639-6 entity"], "Azamgarhi": ["ISO 639-6 entity"], "Kharwari": ["ISO 639-6 entity"], "Sarawaria": ["ISO 639-6 entity"], "Gorakhpuri": ["ISO 639-6 entity"], "Saran": ["ISO 639-6 entity"], "Madhesi": ["ISO 639-6 entity"], "Bhojpuri-Tharu": ["ISO 639-6 entity"], "Domra": ["ISO 639-6 entity"], "Musahari": ["ISO 639-6 entity"], "Mauritian-Bhojpuri": ["ISO 639-6 entity"], "Mauritian-Bhojpuri Spoken": ["ISO 639-6 entity"], "Caribbean Hindustani": ["A language of Suriname, Guyana and Trinidad and Tobego"], "Caribbean Hindustani Written": ["The written forms of the Caribbean Hindustani language."], "Caribbean Hindustani Spoken": ["The dialects of the Caribbean Hindustani language."], "Trinidad-Hindi": ["A dialect of the Caribbean Hindustani language."], "Guyana-Hindi": ["A dialect of the Caribbean Hindustani language."], "Sarnami-Hindi": ["A dialect of the Caribbean Hindustani language."], "Cayenne-Hindi": ["A dialect of the Caribbean Hindustani language."], "Maithili": ["ISO 639-6 entity", "A language spoken in the eastern part of India, mainly in the Indian state of Bihar and in the eastern Terai region of Nepal. It is an offshoot of the Indo-Aryan languages which are part of the Indo-Iranian, a branch of the Indo-European languages."], "Maithili Written": ["ISO 639-6 entity"], "Maithili Written Historical Script": ["ISO 639-6 entity"], "Maithili Written Maithili Script": ["ISO 639-6 entity"], "Maithili Written Nagari Script": ["ISO 639-6 entity"], "Maithili Written Devanagari Script": ["ISO 639-6 entity"], "Maithili Spoken": ["ISO 639-6 entity"], "Formalised Maithili": ["ISO 639-6 entity"], "Kisan": ["ISO 639-6 entity", "A dialect of the Kurux language."], "Surajpuri": ["ISO 639-6 entity"], "Surajpuri Spoken": ["ISO 639-6 entity"], "Sotipura": ["ISO 639-6 entity"], "Maithili-W": ["ISO 639-6 entity"], "Khotta": ["ISO 639-6 entity"], "Maithili-S": ["ISO 639-6 entity"], "Johahi": ["ISO 639-6 entity"], "Bantar": ["ISO 639-6 entity"], "Barei": ["ISO 639-6 entity"], "Barmeli": ["ISO 639-6 entity"], "Kyabrat": ["ISO 639-6 entity"], "Makrana": ["ISO 639-6 entity"], "Musar": ["ISO 639-6 entity"], "Sadri": ["ISO 639-6 entity", "ISO 639-6 entity"], "Tati": ["ISO 639-6 entity"], "Dehati": ["ISO 639-6 entity", "ISO 639-6 entity"], "Bote-Majhi": ["A language of Nepal."], "Bote-Majhi Spoken": ["The dialects of the Bote-Majhi language."], "Majhi": ["ISO 639-6 entity"], "Majhi Written": ["ISO 639-6 entity"], "Majhi Written Devanagari Script": ["ISO 639-6 entity"], "Majhi Spoken": ["ISO 639-6 entity"], "Musasa": ["ISO 639-6 entity"], "Musasa Spoken": ["ISO 639-6 entity"], "Dehati Spoken": ["ISO 639-6 entity"], "Magahi": ["A Bihari language spoken in the southern part of the Bihar state of India."], "Magahi Written": ["The written forms of the Magahi language."], "Magahi Spoken": ["The dialects of the Magahi language."], "Magahi Formal": ["A dialect of the Magahi language."], "Magahi-N": ["A dialect of the Magahi language."], "Magahi-C": ["A dialect of the Magahi language spoken in Patna, Gaya and Hazaribagh, in the middle of the state of Bihar."], "Panchpargania": ["ISO 639-6 entity"], "Panchpargania Spoken": ["ISO 639-6 entity"], "Kortha": ["ISO 639-6 entity"], "Kortha Spoken": ["ISO 639-6 entity"], "Kudmali": ["A language of India."], "Kudmali Spoken": ["ISO 639-6 entity"], "Angika": ["A language of India and Nepal."], "Angika Written": ["The written versions of the Angika language."], "Angika Written Kaithi Script": ["The Angika language written with the Kaithi Script."], "Angika Written Anga Script": ["The Angika language written with the Anga script."], "Angika Written Devanagari Script": ["The Angika language written with the Devanagari Script."], "Angika Spoken": ["The dialects of the Angika language."], "Goaria": ["A language of Pakistan."], "Goaria Spoken": ["Dialects of the Goaria language of Pakistan."], "Sadriq Written": ["ISO 639-6 entity"], "Sadri Written Nagari Script": ["ISO 639-6 entity"], "Sadri Spoken": ["ISO 639-6 entity"], "Sadri Nagpuri": ["ISO 639-6 entity"], "Sadani": ["ISO 639-6 entity"], "Lower Sadri": ["ISO 639-6 entity"], "Oraon Sadri": ["A language of Bangladesh."], "Oraon Sadri Spoken": ["The spoken Oraon Sadri language and its dialects."], "Borail Sadri": ["A dialect of the Oraon Sadri language."], "Nurpur Sadri": ["A dialect of the Oraon Sadri language."], "Uchai Sadri": ["A dialect of the Oraon Sadri language."], "Mokkan Tila Sadri": ["A dialect of the Oraon Sadri language."], "Chhattisgarhi Written": ["Chhattisgarhi used in written communications."], "Chhattisgarhi Written Devanagari Script": ["Chhattisgarhi written with devanagari script."], "Chhattisgarhi Spoken": ["Chhattisgarhi used in oral communications."], "Chhattisga\u00f1hi Proper": ["ISO 639-6 entity"], "Surgujia": ["ISO 639-6 entity"], "Sadri-Korwa": ["ISO 639-6 entity"], "Baigani": ["ISO 639-6 entity"], "Binjhwari": ["ISO 639-6 entity"], "Kalanga": ["ISO 639-6 entity", "A language of Zimbabwe and Botswana."], "Bhuli\u0101": ["ISO 639-6 entity"], "Kavardi": ["ISO 639-6 entity"], "Khairagarhi": ["ISO 639-6 entity"], "Northern India Eastern": ["ISO 639-6 entity"], "Bengali Cluster": ["ISO 639-6 entity"], "Halbi": ["An Eastern zone Indo-Aryan language of the Bengali-Assamese subgroup, spoken by about 500,000 individuals across the central part of India."], "Halbi Written": ["The written forms of the Halbi language."], "Halbi Written Devanagari Script": ["A written form of the Halbi language."], "Halbi Spoken": ["The dialects of the Halbi language."], "Halbi-A": ["A dialect of the Halbi language."], "Adkuri": ["A dialect of the Halbi language."], "Bastari": ["A dialect of the Halbi language."], "Chandari": ["A dialect of the Halbi language."], "Gachikolo": ["A dialect of the Halbi language."], "Mehari": ["A dialect of the Halbi language."], "Muria": ["A dialect of the Halbi language."], "Sundi": ["A dialect of the Halbi language."], "Bhunjia": ["A language of India"], "Bhunjia Spoken": ["The Bhunjia spoken language and its dialects."], "N\u0101hari-E": ["ISO 639-6 entity"], "N\u0101hari-E Spoken": ["ISO 639-6 entity"], "Mirgan": ["ISO 639-6 entity"], "Mirgan Written": ["ISO 639-6 entity"], "Mirgan Written Oriya Script": ["ISO 639-6 entity"], "Mirgan Written Telugu Script": ["ISO 639-6 entity"], "Mirgan Spoken": ["ISO 639-6 entity"], "Kurmukar": ["A language of India and Nepal."], "Kurmukar Spoken": ["Dialects of the Kurmukar language."], "Bishnupriya": ["An Indo-Aryan language spoken in parts of the Indian states of Assam, Tripura, Manipur and others, as well as in Bangladesh, Burma, and other countries."], "Bishnupriya Written": ["Written forms of the Bishnupriya language."], "Bishnupriya Written Bengali Script": ["The Bishnupriya language written with the Bengali Script."], "Bishnupriya Spoken": ["The dialects of the Bishnupriya language."], "Bengali ": ["An Indic language spoken mainly in Bangladesh and India."], "Bengali Written": ["The written forms of the Bengali language."], "Bengali Written Bengali Script Historical": ["A written form of the Bengali language."], "Bengali Written Bengali Script": ["A written form of the Bengali language."], "Bengali Spoken": ["The dialects of the Bengali language."], "Sadhu-Bhasha": ["A dialect of the Bengali language with longer verb inflections and a more Sanskrit-derived vocabulary."], "B\u0101ngl\u0101-Musulmani": ["A dialect of the Bengali language."], "Colit-Bhasha-E": ["A dialect of the Bengali language."], "Barikl": ["A dialect of the Bengali language."], "Bhatiari": ["A dialect of the Bengali language."], "Chirmar": ["A dialect of the Bengali language."], "B\u0101ngl\u0101-C": ["ISO 639-6 entity"], "B\u0101ngl\u0101-W": ["ISO 639-6 entity"], "B\u0101ngl\u0101-W Spoken": ["ISO 639-6 entity"], "B\u0101ngl\u0101-Burdwan": ["ISO 639-6 entity"], "Sar\u0101ki": ["ISO 639-6 entity"], "Kharia Thar": ["A language of India."], "Kharia Thar Spoken": ["ISO 639-6 entity"], "Pah\u0101\u00f1ia-Thar": ["ISO 639-6 entity"], "Mal Paharia": ["ISO 639-6 entity"], "Mal Paharia Written": ["ISO 639-6 entity"], "Mal Paharia Written Devanagari Script": ["ISO 639-6 entity"], "Mal Paharia Spoken": ["ISO 639-6 entity"], "Lohari-M\u0101lpah\u0101\u00f1ia": ["ISO 639-6 entity"], "B\u0101ngl\u0101-SW": ["ISO 639-6 entity"], "B\u0101ngl\u0101-N": ["ISO 639-6 entity"], "B\u0101ngl\u0101-N Spoken": ["ISO 639-6 entity"], "B\u0101ngl\u0101-Dinajpur": ["ISO 639-6 entity"], "K\u014dch-SW": ["ISO 639-6 entity"], "K\u014dch-NE": ["ISO 639-6 entity"], "Kishanganjia": ["ISO 639-6 entity"], "Siripuria": ["ISO 639-6 entity"], "Bogra": ["ISO 639-6 entity"], "Kamarupa-W": ["ISO 639-6 entity"], "Kamarupa-W Spoken": ["ISO 639-6 entity"], "Rajbanshi": ["An Eastern Indic language spoken in India, Bangladesh, and Nepal."], "Rajbanshi Spoken": ["The dialects of the Rajbanshi language."], "Rajbanshi-W": ["A dialect of the Rajbanshi language."], "Rajbanshi-C": ["A dialect of the Rajbanshi language."], "Rajbanshi-E": ["A dialect of the Rajbanshi language."], "Bahe": ["A dialect of the Rajbanshi language."], "B\u0101ngl\u0101-E": ["ISO 639-6 entity"], "B\u0101ngl\u0101-E Spoken": ["ISO 639-6 entity"], "Rajshahi": ["ISO 639-6 entity"], "Dhaka-U": ["ISO 639-6 entity"], "B\u0101ngl\u0101-Delta": ["ISO 639-6 entity"], "Chittagonian": ["A language of Bangladesh and Myanmar."], "Chittagonian Written": ["ISO 639-6 entity"], "Chittagonian Written Bengali Script": ["ISO 639-6 entity"], "Chittagonian Spoken": ["ISO 639-6 entity"], "Rohinga": ["ISO 639-6 entity"], "Chakma": ["An Indo-European language spoken in southeastern Bangladesh and neighboring areas of India.", "A community inhabiting the Chittagong Hill Tracts of Bangladesh, and India."], "Chakma Written": ["Written forms of the Chakma language."], "Chakma Written Latin Script": ["Written form of the Chakma language."], "Chakma Written Bengali Script": ["A written form of the Chakma language."], "Sylhetti": ["ISO 639-6 entity"], "Sylhetti Written": ["Written forms of the Sylhetti language."], "Sylhetti Written Latin Script": ["A written form of the Sylhetti language."], "Sylhetti Written Bengali Script": ["ISO 639-6 entity"], "Sylhetti Spoken": ["ISO 639-6 entity"], "Sylhetti-A": ["ISO 639-6 entity"], "Hajong": ["An Indo-Aryan language spoken by the Hajong people in the states of Assam, Meghalaya, Arunachal Pradesh and West Bengal in India and the Mymensingh District in Bangladesh."], "Hajong Written": ["The written forms of the Hajong language."], "Hajong Written Assamese Script": ["A written form of the Hajong language."], "Hajong Spoken": ["The dialects of the Hajong language."], "Tangchangya": ["ISO 639-6 entity"], "Tangchangya Spoken": ["ISO 639-6 entity"], "Nepal-Tharu cluster": ["ISO 639-6 entity"], "Mahottari": ["ISO 639-6 entity"], "Mahottari Spoken": ["ISO 639-6 entity"], "Sonha": ["ISO 639-6 entity"], "Sonha Spoken": ["ISO 639-6 entity"], "Kochila Tharu": ["ISO 639-6 entity"], "Kochila Tharu Written": ["ISO 639-6 entity"], "Kochila Tharu Spoken": ["ISO 639-6 entity"], "Saptari-A": ["ISO 639-6 entity"], "Morangia": ["ISO 639-6 entity"], "Sarhali": ["ISO 639-6 entity"], "Udayapur": ["ISO 639-6 entity"], "Sunsari": ["ISO 639-6 entity"], "Siraha": ["ISO 639-6 entity"], "Dhaunsa": ["ISO 639-6 entity"], "Rana Tharu": ["ISO 639-6 entity"], "Rana Tharu Written": ["ISO 639-6 entity"], "Rana Tharu Spoken": ["ISO 639-6 entity"], "Buksa": ["ISO 639-6 entity"], "Deokri": ["ISO 639-6 entity"], "Deokri Spoken": ["ISO 639-6 entity"], "Deokri-A": ["ISO 639-6 entity"], "Don": ["ISO 639-6 entity", "One of the major rivers of Russia which rises in the town of Novomoskovsk southeast of Moscow, and flows for a distance of about 1,950 kilometres to the Sea of Azov."], "Chitwan Tharu": ["ISO 639-6 entity"], "Chitwan Tharu Written": ["ISO 639-6 entity"], "Chitwan Tharu Spoken": ["ISO 639-6 entity"], "Assamese Cluster": ["ISO 639-6 entity"], "Assamese Spoken": ["ISO 639-6 entity"], "Axamiy\u0101-Formal": ["ISO 639-6 entity"], "Axamiy\u0101 Standard": ["ISO 639-6 entity"], "Sibsagar": ["ISO 639-6 entity"], "Kamarupa": ["ISO 639-6 entity"], "Jiharwa": ["ISO 639-6 entity"], "Jiharwa Spoken": ["ISO 639-6 entity"], "Oriya Cluster": ["ISO 639-6 entity"], "Oriya Written": ["Written forms of the Oriya language."], "Oriya Written Oriya Script Historical": ["ISO 639-6 entity"], "Oriya Written Oriya Script": ["ISO 639-6 entity"], "Oriya Spoken": ["Dialects of the Oriya language."], "Formal Oriya": ["ISO 639-6 entity"], "Mughalbandi": ["ISO 639-6 entity"], "Oryia -NW": ["ISO 639-6 entity"], "Sambalpuri": ["ISO 639-6 entity"], "Oriyia -E": ["ISO 639-6 entity"], "Balasore-N": ["ISO 639-6 entity"], "Napore-C": ["ISO 639-6 entity"], "Oriya -S": ["ISO 639-6 entity"], "Reli": ["ISO 639-6 entity"], "Reli Spoken": ["ISO 639-6 entity"], "Bhuiya-O\uf0bcIa": ["ISO 639-6 entity"], "Bhuiya-Oriya Spoken": ["ISO 639-6 entity"], "Bodo Parja": ["A language of India."], "Bodo Parja Written": ["The written forms of the Bodo Parja language."], "Bodo Parja Written Oriya Script": ["The Bodo Parja language written with the Oriya Script."], "Bodo Parja Spoken": ["The Bodo Parja spoken language and its dialects."], "Jagannathi-Oriya": ["ISO 639-6 entity"], "Jagannathi- Oriya Spoken": ["ISO 639-6 entity"], "Bhatri": ["A language of India."], "Bhatri Spoken": ["The spoken Bhatri language and its dialects."], "Desiya Oriya": ["A language of India."], "Desiya Oriya Written": ["ISO 639-6 entity"], "Desiya Oriya Written Oriya Script": ["ISO 639-6 entity"], "Desiya Oriya Spoken": ["ISO 639-6 entity"], "Adivasi Oriya": ["ISO 639-6 entity"], "Adivasi Oriya Written": ["ISO 639-6 entity"], "Adivasi Oriya Written Telugu Script": ["ISO 639-6 entity"], "Adivasi Oriya Spoken": ["The dialects of the Adivasi Oriya language."], "Valmiki-OIa": ["ISO 639-6 entity"], "Valmiki-OIa Spoken": ["The dialects of the Valmiki-OIa language."], "Kupia": ["A language of India."], "Kupia Spoken": ["Dialects of the Kupia language."], "Bagata-OIa": ["ISO 639-6 entity"], "Bagata-OIa Spoken": ["ISO 639-6 entity"], "Mali-OIa": ["ISO 639-6 entity"], "Mali-OIa Spoken": ["ISO 639-6 entity"], "Degaru": ["A language of India."], "Degaru Spoken": ["ISO 639-6 entity"], "Sinhalese-Maldivian": ["ISO 639-6 entity"], "Maldivian Cluster": ["ISO 639-6 entity"], "Divehi": ["ISO 639-6 entity", "An Indo-Aryan language spoken in the Republic of Maldives and also in the island of Maliku (Minicoy) in Union territory of Lakshadweep, India."], "Divehi Written": ["ISO 639-6 entity"], "Divehi Written Dhivehi-Tana Script": ["ISO 639-6 entity"], "Divehi Written Thaana Script": ["ISO 639-6 entity"], "Divehi Spoken": ["ISO 639-6 entity"], "Maldive": ["ISO 639-6 entity"], "Minicoy": ["ISO 639-6 entity"], "Sinhala Cluster": ["ISO 639-6 entity"], "Sinhalese Written": ["Written forms of the Sinhalese language."], "Sinhalese Written Sinhalese Script Historical": ["ISO 639-6 entity"], "Sinhalese Written Sinhalese Script": ["ISO 639-6 entity"], "Sinhalese Spoken": ["ISO 639-6 entity"], "Sinhala-Formal": ["ISO 639-6 entity"], "Sinhala-Formal Written": ["ISO 639-6 entity"], "Generalised Colloquial Sinhalese": ["ISO 639-6 entity"], "Colombo-U": ["ISO 639-6 entity"], "Sinhala-SW": ["ISO 639-6 entity"], "Sinhala-NW": ["ISO 639-6 entity"], "Sinhala-E": ["ISO 639-6 entity"], "Kandyan": ["ISO 639-6 entity"], "Rodiya": ["ISO 639-6 entity"], "Veddah Cluster": ["ISO 639-6 entity"], "Veddah": ["ISO 639-6 entity"], "Domaaki": ["A Dardic language spoken in the Northern Areas of Pakistan."], "Dom Cluster": ["ISO 639-6 entity"], "Domari": ["ISO 639-6 entity"], "Domari Spoken": ["ISO 639-6 entity"], "Wogri-Boli": ["ISO 639-6 entity"], "Churi-Wali": ["ISO 639-6 entity"], "Luli": ["ISO 639-6 entity"], "Jugi": ["ISO 639-6 entity"], "Maznoug": ["ISO 639-6 entity"], "Multoni": ["ISO 639-6 entity"], "Qinati": ["ISO 639-6 entity"], "Koli-W": ["ISO 639-6 entity"], "Barake": ["ISO 639-6 entity"], "Kurbati": ["ISO 639-6 entity"], "Karachi": ["ISO 639-6 entity", "The largest city, main seaport and the financial capital of Pakistan."], "Beludj": ["ISO 639-6 entity"], "Marashi": ["ISO 639-6 entity"], "Y\u00fcr\u00fck": ["ISO 639-6 entity"], "Nablos": ["ISO 639-6 entity"], "Nawar": ["ISO 639-6 entity"], "Helebi": ["ISO 639-6 entity"], "Romani": ["A group of languages spoken by the Romani people."], "Vlax - Balkan Romani Cluster": ["A group of Romani languages."], "Vlax Romani Spoken": ["The dialects of the Vlax Romani language."], "Vlax Standard": ["A dialect of the Vlax Romani language."], "Churari": ["A dialect of the Vlax Romani language."], "Lovari": ["A dialect of the Vlax Romani language."], "Zagundzi": ["A dialect of the Vlax Romani language."], "Ghagar": ["A dialect of the Vlax Romani language."], "Vlach-NW": ["A dialect of the Vlax Romani language."], "Vlach-N": ["A dialect of the Vlax Romani language."], "Kalderashicqo": ["A dialect of the Vlax Romani language."], "Rusicqo": ["A dialect of the Vlax Romani language."], "Vlach-SE": ["A dialect of the Vlax Romani language."], "Kalderash-Machvanicqo": ["A dialect of the Vlax Romani language."], "Kalderash-S": ["A dialect of the Vlax Romani language."], "Grekurja": ["A dialect of the Vlax Romani language."], "Vlach-Albania-N": ["A dialect of the Vlax Romani language."], "Vlach-Albania-S": ["A dialect of the Vlax Romani language."], "Vlach-Sieve": ["A dialect of the Vlax Romani language."], "Vlach-Deutschland": ["A dialect of the Vlax Romani language."], "Vlach-France": ["A dialect of the Vlax Romani language."], "Vlach-Espa\u00f1a": ["A dialect of the Vlax Romani language."], "Vlach-Portugal": ["A dialect of the Vlax Romani language."], "Vlach-Brasil": ["A dialect of the Vlax Romani language."], "Vlach-Colombia": ["A dialect of the Vlax Romani language."], "Vlach-America": ["A dialect of the Vlax Romani language."], "Balkan Romani": ["A language of Serbia, Montenegro, Bulgaria, France, Germany, Greece, Hungary, Iran, Italy, Macedonia, Moldova, Romania and Turkey"], "Balkan Romani Written Cyrillic Script": ["A written form of the Balkan Romani language."], "Balkan Romani Written Latin Script": ["A written form of the Balkan Romani language."], "Balkan Romani Spoken": ["Dialects of the Balkan Romani language."], "Us\u00e1ri": ["Dialect of the Balkan Romani language."], "Karamtika": ["Dialect of the Balkan Romani language."], "Arlija": ["Dialect of the Balkan Romani language."], "Romani-Tinsmiths": ["Dialect of the Balkan Romani language."], "Khorakhane": ["Dialect of the Balkan Romani language."], "Dzambazi": ["Dialect of the Balkan Romani language."], "Jerdes": ["Dialect of the Balkan Romani language."], "Drind\u00e1ri": ["Dialect of the Balkan Romani language."], "Romani-Bulgaria-E": ["Dialect of the Balkan Romani language."], "Paspatian": ["Dialect of the Balkan Romani language."], "Romani-Ironsmiths": ["Dialect of the Balkan Romani language."], "Shiptari": ["Dialect of the Balkan Romani language."], "Zargari": ["Dialect of the Balkan Romani language."], "Northern Romani Cluster": ["A sub-group of the Romani languages spoken in various Northern European, Central European and Eastern European countries."], "Carpathian Romani": ["A language of Czech Republic."], "Carpathian Romani Written": ["Written forms of the Carpathian Romani language."], "Carpathian Romani Written Cyrillic Script": ["A written form of the Carpathian Romani language."], "Carpathian Romani Written Latin Script": ["A written form of the Carpathian Romani language."], "Carpathian Romani Spoken": ["The dialects of the Carpathian Romani language."], "Romani-Transylvania": ["A dialecta of the Carpathian Romani language."], "Romungre": ["A dialecta of the Carpathian Romani language."], "Sarvika": ["A dialecta of the Carpathian Romani language."], "Slovakian-E": ["A dialecta of the Carpathian Romani language."], "Slovakian-W": ["A dialecta of the Carpathian Romani language."], "Moravian": ["A dialecta of the Carpathian Romani language."], "Romani-Moravia": ["A dialecta of the Carpathian Romani language."], "Romani-Bohemia": ["A dialecta of the Carpathian Romani language."], "Galician Romani": ["A dialecta of the Carpathian Romani language."], "Sinte Romani Written": ["Written forms of the Sinte Romani language."], "Sinte Romani Written Latin Script": ["A written form of the Sinte Romani language."], "Sinte Romani Written Cyrillic Script": ["A written form of the Sinte Romani language."], "Sinte Romani Spoken": ["The dialects of the Sinte Romani language."], "Sinti-Volga": ["A dialect of the Sinte Romani language."], "Lallere": ["A dialect of the Sinte Romani language."], "Sinti-N": ["A dialect of the Sinte Romani language."], "Sinti-C": ["A dialect of the Sinte Romani language."], "Gadschkene": ["A dialect of the Sinte Romani language."], "Estracharia": ["A dialect of the Sinte Romani language."], "Krantiki": ["A dialect of the Sinte Romani language."], "Kranaria": ["A dialect of the Sinte Romani language."], "Eftawagaria": ["A dialect of the Sinte Romani language."], "Praistiki": ["A dialect of the Sinte Romani language."], "Sinti-SE": ["A dialect of the Sinte Romani language."], "Sinti-Piemonte": ["A dialect of the Sinte Romani language."], "Sinti-Abruzzo": ["A dialect of the Sinte Romani language."], "Sinti-France": ["A dialect of the Sinte Romani language."], "Baltic Romani": ["A Romany language in Poland, Belarus, Latvia, Lithuania and other countries."], "Baltic Romani Written": ["Written forms of the Baltic Romani language."], "Baltic Romani Written Cyrillic Script": ["A written form of the Baltic Romani language."], "Baltic Romani Written Latin Script": ["A written form of the Baltic Romani language."], "Baltic Romani Spoken": ["The dialects of the Baltic Romani language."], "Lotfitka-Rom\u00e1": ["A dialect of the Baltic Romani language."], "Lajenge-Rom\u00e1": ["A dialect of the Baltic Romani language."], "R\u00faska-Rom\u00e1": ["A dialect of the Baltic Romani language."], "Rom\u00e1-S": ["A dialect of the Baltic Romani language."], "Kalo Finnish Romani": ["A language of the Romani language family spoken by the Finnish Kale people in Finland."], "Kalo Finnish Romani Written": ["The written forms of the Kalo Finnish Romani language."], "Kalo Finnish Romani Written Latin Script": ["A written form of the Kalo Finnish Romani language."], "Kalo Finnish Romani Spoken": ["The dialects of the Kalo Finnish Romani language."], "Welsh Romani": ["A variety of the Romani language which was spoken fluently in Wales until at least 1950."], "Welsh Romani Spoken": ["The dialects of the Welsh Romani language."], "Iranian Unclassified": ["ISO 639-6 entity"], "Chinali": ["A language of India."], "Chinali Written": ["ISO 639-6 entity"], "Chinali Written Devangari Script": ["ISO 639-6 entity"], "Chinali Spoken": ["ISO 639-6 entity"], "Kanjari": ["A language of India."], "Kanjari Spoken": ["Dialects of the Kanjari language."], "Kumhali": ["A language of Nepal."], "Kumhali Spoken": ["ISO 639-6 entity"], "Memoni": ["ISO 639-6 entity"], "Memoni Spoken": ["ISO 639-6 entity"], "Od": ["ISO 639-6 entity"], "Od Written": ["ISO 639-6 entity"], "Od Written Sindhi Script": ["ISO 639-6 entity"], "Od Spoken": ["ISO 639-6 entity"], "Tippera": ["ISO 639-6 entity"], "Tippera Spoken": ["ISO 639-6 entity"], "Usui": ["ISO 639-6 entity"], "Usui Spoken": ["The dialects of the Usui language."], "Vaagria Booli": ["ISO 639-6 entity"], "Romany": ["ISO 639-6 entity"], "Lomavren Cluster": ["ISO 639-6 entity"], "Lomavren": ["ISO 639-6 entity"], "Lomavren Spoken": ["ISO 639-6 entity"], "Cal\u00f3 Cluster": ["A group of Romany languages."], "Cal\u00f3 Written": ["Written forms of the Cal\u00f3 language."], "Cal\u00f3 Written Latin Script": ["A written form of the Cal\u00f3 language."], "Cal\u00f3 Spoken": ["The dialects of the Cal\u00f3 language."], "Cal\u00f3-C": ["A dialect of the Cal\u00f3 language."], "Cala\u00f3": ["A dialect of the Cal\u00f3 language."], "Catalonian Cal\u00f3": ["A dialect of the Cal\u00f3 language spoken in Catalonia."], "Gitano": ["A dialect of the Cal\u00f3 language."], "Cal\u00f3-S": ["A dialect of the Cal\u00f3 language."], "Cal\u00f3-Brasil": ["A dialect of the Cal\u00f3 language."], "Rodi Cluster": ["ISO 639-6 entity"], "Traveller Danish": ["ISO 639-6 entity"], "Traveller Danish Spoken": ["ISO 639-6 entity"], "Dansk-Rodi": ["ISO 639-6 entity"], "Sk\u00e5nsk-Rodi": ["ISO 639-6 entity"], "Svenska-Rodi": ["ISO 639-6 entity"], "Travellers Norwegian": ["ISO 639-6 entity"], "Anglicised- Romani Cluster": ["ISO 639-6 entity"], "Angloromani": ["A language of United Kingdom, Australia and the USA."], "Angloromani Spoken": ["The dialects of the Angloromani language."], "Pogadi-Chib-A": ["A dialect of the Angloromani language."], "Anglo-Romani-America": ["A dialect of the Angloromani language spoken in America."], "Anglo-Romani-Africa": ["A dialect of the Angloromani language spoken in Africa."], "Anglo-Romani-Australia": ["A dialect of the Angloromani language spoken in Australia."], "Elamo Dravidian ": ["ISO 639-6 entity"], "Elamite": ["ISO 639-6 entity"], "Elamite Written": ["ISO 639-6 entity"], "Elamite Written Proto-Elamite Inscription": ["ISO 639-6 entity"], "Elamite Written Linear-Elamite Inscription": ["ISO 639-6 entity"], "Dravidian": ["A family of languages spoken by around 200 million people mainly in southern India and parts of eastern and central India as well as in northeastern Sri Lanka, Pakistan, Nepal, Bangladesh, Afghanistan, Iran, and overseas in other countries such as Malaysia and Singapore."], "Dravidian Northwest Cluster": ["A sub-group of Dravidian languages spoken in the Northwest of India."], "Brahui": ["A Dravidian language spoken primarily in the Balochistan region of Pakistan, as well as in Afghanistan and Iran."], "Brahui Written": ["Written forms of the Brahui language."], "Brahui Written Nastaliq Script": ["A written form of the Brahui language with the Nastaliq Script."], "Brahui Written Perso-Arabic Script: Kalat Model": ["The Brahui Language written in Perso-Arabic writing."], "Brahui Spoken": ["Dialects of the Brahui language."], "Bra'uidi-Formal": ["A dialect of the Brahui language."], "Jharawian": ["A dialect of the Brahui language."], "Kalat": ["A dialect of the Brahui language."], "Sarawan": ["A dialect of the Brahui language."], "Dravidian Proper": ["ISO 639-6 entity"], "Dravidian Northeast Cluster": ["A sub-group of the Dravidian languages family."], "Kurux": ["A Dravidian language spoken by the Oraon and Kisan tribal peoples of Bihar, Jharkhand, Orissa, Madhya Pradesh, Chhattisgarh, and West Bengal, India, as well as in northern Bangladesh."], "Kurux Written": ["The written forms of the Kurux language."], "Kurux Written Devanagari Script": ["The Kurux language written with the Devanagari script."], "Kurux Spoken": ["The dialects of the Kurux language."], "Oraon": ["A Dravidian language spoken by the Oraon tribe, in the states of Bihar, Jharkhand, Orissa, Madhya Pradesh, Chhattisgarh, and West Bengal, in eastern India, as well as in northern Bangladesh."], "Chota-Nagpur-Kurukh": ["ISO 639-6 entity"], "Chota-Nagpur-Kurukh Spoken": ["ISO 639-6 entity"], "Nepali Kurux": ["A language of Nepal."], "Sauria Paharia": ["ISO 639-6 entity"], "Sauria Paharia Spoken": ["ISO 639-6 entity"], "Sahibganj": ["ISO 639-6 entity"], "Godda": ["ISO 639-6 entity"], "Hiranpur": ["ISO 639-6 entity"], "Litipara": ["ISO 639-6 entity"], "Kumarbhag Paharia": ["A Dravidian language spoken by the Komhar Bhag Paharia tribe in Rajmahal Hills, India."], "Kumarbhag Paharia Spoken": ["ISO 639-6 entity"], "Malpaharia-Malto": ["ISO 639-6 entity"], "Sawriya-Malto": ["ISO 639-6 entity"], "Dravidian Central": ["ISO 639-6 entity"], "Kolami Parij": ["ISO 639-6 entity"], "Kolami Naiki Cluster": ["ISO 639-6 entity"], "Northwestern Kolami": ["A language of India."], "Northwestern Kolami Spoken": ["Dialects of the Northwestern Kolami language."], "Wardha": ["ISO 639-6 entity"], "Naikri": ["ISO 639-6 entity"], "Madka-Kinwat": ["ISO 639-6 entity"], "Pulgaon": ["ISO 639-6 entity"], "Wani": ["ISO 639-6 entity"], "Maregaon": ["ISO 639-6 entity"], "Southwestern Kolami": ["ISO 639-6 entity"], "Naiki-P": ["ISO 639-6 entity"], "Metla-Kinwat": ["ISO 639-6 entity"], "Utnur": ["ISO 639-6 entity"], "Asifabad-Naiki": ["ISO 639-6 entity"], "Adilabad-Naiki": ["ISO 639-6 entity"], "Parji Gadaba Cluster": ["ISO 639-6 entity"], "Duruwa": ["ISO 639-6 entity"], "Duruwa Written": ["ISO 639-6 entity"], "Duruwa Written Devanangari Script": ["ISO 639-6 entity"], "Duruwa Written Oriya Script": ["ISO 639-6 entity"], "Duruwa Spoken": ["ISO 639-6 entity"], "Tiriya": ["ISO 639-6 entity"], "Nethanar": ["ISO 639-6 entity"], "Dhurwa": ["ISO 639-6 entity"], "Kukanar": ["ISO 639-6 entity"], "Mudhili Gadaba": ["A language of India."], "Pottangi Ollar Gadaba": ["A language of India."], "Pottangi Ollar Gadaba Written": ["ISO 639-6 entity"], "Pottangi Ollar Gadaba Written Telugu Script": ["ISO 639-6 entity"], "Pottangi Ollar Gadaba Written Oriya Script": ["ISO 639-6 entity"], "Pottangi Ollar Gadaba Spoken": ["ISO 639-6 entity"], "Konekor": ["ISO 639-6 entity"], "Telugu Kui": ["ISO 639-6 entity"], "Gondi Kui": ["ISO 639-6 entity"], "Gondi Koya Cluster": ["ISO 639-6 entity"], "Southern Gondi": ["A language of India."], "Southern Gondi Spoken": ["The dialects of the Southern Gondi language."], "Sironcha": ["A dialect of the Southern Gondi language."], "Aheri": ["A dialect of the Southern Gondi language."], "Rajura": ["A dialect of the Southern Gondi language."], "Etapally-Gondi": ["A dialect of the Southern Gondi language."], "Adilabad-Gondi": ["A dialect of the Southern Gondi language."], "Northern Gondi": ["A language of India."], "Northern Gondi Spoken": ["ISO 639-6 entity"], "Betul": ["ISO 639-6 entity"], "Chhindwara": ["ISO 639-6 entity"], "Mandla": ["ISO 639-6 entity"], "Seoni": ["ISO 639-6 entity"], "Utnoor-Gondi": ["ISO 639-6 entity"], "Amravati": ["ISO 639-6 entity"], "Bhandara": ["ISO 639-6 entity"], "Nagpur": ["ISO 639-6 entity", "A city in the state of Maharashtra, and the largest city in the tribal central India."], "Yavatmal": ["ISO 639-6 entity"], "Koya": ["A language of India."], "Koya Spoken": ["Dialects of the Koya language."], "Malakanagiri-Koya": ["A dialect of the Koya language."], "Podia-Koya": ["A dialect of the Koya language."], "Chintoor-Koya": ["A dialect of the Koya language."], "Jaganathapuram-Koya": ["A dialect of the Koya language."], "Racha-Koya": ["A dialect of the Koya language."], "Konda-Rajulu": ["A dialect of the Koya language."], "Maria Written": ["The written forms of the Maria language."], "Maria Written Telugu Script": ["The Maria language written with the Telugu script."], "Maria Spoken": ["The dialects of the Maria language."], "Bhamani-Maria": ["A dialect of the Maria language."], "Adewada": ["A dialect of the Maria language."], "Etapally Maria": ["A dialect of the Maria language."], "Abuj-Maria": ["A dialect of the Maria language."], "Gatte-Maria": ["A dialect of the Maria language."], "Kondagaon-Muria": ["A dialect of the Maria language."], "Ghotul-Muria": ["A dialect of the Maria language."], "Dandami Maria": ["A language of India."], "Raj-Gondi": ["ISO 639-6 entity"], "Pardhan": ["ISO 639-6 entity"], "Eastern Muria": ["A language of India."], "Lanjoda": ["A dialect of the Eastern Muria language."], "Western Muria": ["ISO 639-6 entity"], "Far Western Muria": ["ISO 639-6 entity", "A language of India."], "Khirwar": ["A language spoken by the Khirwar people in the Surguja district at the borders of Madhya Pradesh and Uttar Pradesh, in India."], "Khirwar Spoken": ["The dialects of the Khirwar language."], "Nagarchal": ["ISO 639-6 entity"], "Konda Kui": ["ISO 639-6 entity"], "Konda Cluster": ["ISO 639-6 entity"], "Konda-Dora": ["A Dravidian language spoken in the Indian state of Andhra Pradesh, Assam and Orissa."], "Konda-Dora Spoken": ["Dialects of the Konda-Dora language."], "Mukha-Dora": ["ISO 639-6 entity"], "Mukha-Dora Spoken": ["ISO 639-6 entity"], "Nuka-Dora": ["ISO 639-6 entity"], "Reddi-Dora": ["ISO 639-6 entity"], "Manna-Dora": ["ISO 639-6 entity"], "Manna-Dora Spoken": ["ISO 639-6 entity"], "Godavari-E": ["ISO 639-6 entity"], "Srikakulam": ["ISO 639-6 entity"], "Visakhapatman": ["ISO 639-6 entity"], "Manna-S": ["ISO 639-6 entity"], "Manda Kui": ["ISO 639-6 entity"], "Kui-Kuvi Cluster": ["ISO 639-6 entity"], "Kui Spoken": ["ISO 639-6 entity"], "Khondi": ["ISO 639-6 entity"], "Kuttiya-Kandh": ["ISO 639-6 entity"], "Gumsai": ["ISO 639-6 entity"], "Kuvi": ["A language of India."], "Manda Pengo Cluster": ["ISO 639-6 entity"], "Manda": ["ISO 639-6 entity"], "Pengo": ["ISO 639-6 entity"], "Telugu Cluster": ["ISO 639-6 entity"], "Telugu Written Telugu Script Modern": ["The Telugu language written with the modern Telugu script."], "Telugu Written Latin Script": ["A written form of the Telugu language."], "Telugu Spoken": ["The dialects of the Telugu language."], "Telugu-Formal": ["A dialect of the Telugu language."], "Telugu-General": ["A dialect of the Telugu language."], "Srikaukulam": ["A dialect of the Telugu language."], "Visakhapatnam": ["A dialect of the Telugu language."], "Gunter": ["A dialect of the Telugu language."], "Telangana": ["A dialect of the Telugu language."], "East Godveri": ["A dialect of the Telugu language."], "Nellore": ["A dialect of the Telugu language."], "Beradi": ["A dialect of the Telugu language."], "Dasari": ["A dialect of the Telugu language."], "Dommara": ["A dialect of the Telugu language."], "Golari": ["A dialect of the Telugu language."], "Kamathi": ["A dialect of the Telugu language."], "Komtao": ["A dialect of the Telugu language."], "Salewari": ["A dialect of the Telugu language."], "Vadaga": ["A dialect of the Telugu language."], "Vadari": ["A dialect of the Telugu language."], "Yanadi": ["A dialect of the Telugu language."], "Konda-Reddi": ["A dialect of the Telugu language."], "Chenchu": ["A language spoken by the Chenchu people, an aboriginal tribe of the central hill regions of Andhra Pradesh, India."], "Chenchu Written": ["Written forms of the Chenchu language."], "Chenchu Written Telugu Script": ["A written form of the Chenchu language using the Telugu Script."], "Chenchu Spoken": ["Dialects of the Chenchu language."], "Savara": ["ISO 639-6 entity"], "Savara Written": ["ISO 639-6 entity"], "Savara Written Oriya Script": ["ISO 639-6 entity"], "Savara Written Telugu Script": ["ISO 639-6 entity"], "Waddar": ["ISO 639-6 entity"], "Holiya": ["A language of India."], "Dravidian South": ["ISO 639-6 entity"], "Tulu Cluster": ["ISO 639-6 entity"], "Tulu": ["A Dravidian language spoken by 1.95 million native speakers (1997) mainly in the southwest part of India known as Tulu Nadu."], "Tulu Written": ["The written forms of the Tulu language."], "Tulu Written Kannada Script": ["The Tulu language written with the Kannada script."], "Tulu Spoken": ["The dialects of the Tulu language."], "Bellari": ["A language of India."], "Kudiya": ["A language of India."], "Kudiya Written": ["Written forms of the Kudiya language."], "Kudiya Written Kannada Script": ["ISO 639-6 entity"], "Kudiya Written Malayalam Script": ["ISO 639-6 entity"], "Kudiya Spoken": ["Dialects of the Kudiya language."], "Korra Koraga": ["A language of India."], "Korra Koraga Spoken": ["Dialects of the Korra Koraga language."], "Ande": ["ISO 639-6 entity"], "Mudu": ["ISO 639-6 entity"], "Onti": ["ISO 639-6 entity"], "Tappu": ["ISO 639-6 entity"], "Mudu Koraga": ["ISO 639-6 entity"], "Tamil Kannada": ["ISO 639-6 entity"], "Kannada Cluster": ["ISO 639-6 entity"], "Kannada Written Kannada Script Modern": ["The Kannada language written with the modern Kannada script."], "Kannada Spoken": ["The dialects of the Kannada language."], "Aine Kuruba": ["A dialect of the Kannada language."], "Kannada-Formal": ["A dialect of the Kannada language."], "Kannada-Brahmin": ["A dialect of the Kannada language."], "Kannada-General": ["A dialect of the Kannada language."], "Gulbarga": ["A northern dialect of the Kannada language."], "Bijapur": ["A northern dialect of the Kannada language."], "Dharwar": ["A northern dialect of the Kannada language."], "Kannada-C": ["A dialect of the Kannada language."], "Mysore": ["A central dialect of the Kannada language."], "Havyaka": ["A central dialect of the Kannada language."], "Mangalore": ["A central dialect of the Kannada language."], "Gowda": ["A central dialect of the Kannada language."], "Sholaga": ["ISO 639-6 entity"], "Badaga": ["A language of India."], "Tamil Nadu": ["A dialect of Badaga spoken in Tamil Nadu, India.", "A state at the southern tip of India. Its capital and largest city is Chennai."], "Madras-Nilgiri": ["A language of India."], "Kunda": ["A language of India.", "A language of Zimbabwe, Mozambique and Zambia."], "Tamil-Kodagu": ["ISO 639-6 entity"], "Kodagu Cluster": ["ISO 639-6 entity"], "Kurumba": ["ISO 639-6 entity", "A language of India."], "Kurumba-C": ["ISO 639-6 entity"], "Kurumba-C Spoken": ["ISO 639-6 entity"], "Naik-Kurumba": ["ISO 639-6 entity"], "Urali": ["ISO 639-6 entity"], "Urali Spoken": ["The dialects of the Urali language."], "Ponai-Kurumba": ["A dialect of the Urali language."], "Jennu Kurumba": ["ISO 639-6 entity"], "Betta Kurumba Spoken": ["ISO 639-6 entity"], "Betta-Kurumba-A": ["ISO 639-6 entity"], "Betta-Kuruba": ["ISO 639-6 entity"], "Mullu Kurumba": ["A language of India."], "Mullu Kurumba Spoken": ["ISO 639-6 entity"], "Alu Kurumba": ["ISO 639-6 entity"], "Alu Kurumba Spoken": ["The dialects of the Alu Kurumba language."], "Toda-Kota Cluster": ["ISO 639-6 entity"], "Toda": ["ISO 639-6 entity"], "Toda Written": ["ISO 639-6 entity"], "Toda Written Tamil Script": ["ISO 639-6 entity"], "Toda Spoken": ["ISO 639-6 entity"], "Kota": ["A language of India.", "A language of Gabon and Congo-Brazzaville."], "Kota Written": ["Written forms of the Kota language."], "Kota Written Tamil Script": ["ISO 639-6 entity"], "Kota Spoken": ["Dialects of the Kota language."], "Kota-A": ["A dialect of the Kota language."], "Ko-Bashai": ["A dialect of the Kota language."], "Kodagu": ["A dravidian language spoken by the Kodava people in the district of Coorg, in the State of Karnataka, India."], "Kodagu Written": ["Written forms of the Kodagu language."], "Kodagu Written Kannada Script": ["a written form of the Kodagu language."], "Kodagu Spoken": ["Dialects of the Kodagu language."], "Tamil Irula": ["A dravidian language spoken by the Irula people, living in the hills of Nilgiri, in the State of Tamil Nadu and Karnataka in India."], "Irula": ["A language of India."], "Irula Written": ["ISO 639-6 entity"], "Irula Spoken": ["ISO 639-6 entity"], "Irula South": ["ISO 639-6 entity"], "Irula North": ["ISO 639-6 entity"], "Irula Pallar": ["ISO 639-6 entity"], "Vette Kada Irula": ["ISO 639-6 entity"], "Yerukula": ["ISO 639-6 entity"], "Yerukula Written": ["ISO 639-6 entity"], "Yerukula Written Telugu Script": ["ISO 639-6 entity"], "Yerukula Spoken": ["ISO 639-6 entity"], "Parikala": ["ISO 639-6 entity"], "Sankara": ["ISO 639-6 entity"], "Kapparalatippa": ["ISO 639-6 entity"], "Katherollu": ["ISO 639-6 entity"], "Korcha": ["ISO 639-6 entity"], "Kunceti": ["ISO 639-6 entity"], "Tamil Cluster": ["ISO 639-6 entity"], "Centamil": ["ISO 639-6 entity"], "Centamil Written Tamil Script": ["ISO 639-6 entity"], "Centamil Spoken": ["The dialects of the Centamil language."], "Konduntamil": ["ISO 639-6 entity"], "Konduntamil Written Tamil Script": ["ISO 639-6 entity"], "Konduntamil Spoken": ["ISO 639-6 entity"], "Tamil Written": ["The written forms of the Tamil language."], "Tamil Written Tamil Script Pre-Modern": ["A written form of the Tamil language."], "Tamil Written Tamil Script Modern": ["A written form of the Tamil language."], "Tamil Spoken": ["The dialects of the Tamil language."], "Adi Dravida": ["A dialect of the Tamil language."], "Aiyar": ["A dialect of the Tamil language."], "Aiyangar": ["A dialect of the Tamil language."], "Arava": ["A dialect of the Tamil language."], "Burgandi": ["A dialect of the Tamil language."], "Kongar": ["A dialect of the Tamil language."], "Madurai": ["A dialect of the Tamil language."], "Pattapau Bhasha": ["A dialect of the Tamil language."], "Burma Tamil": ["A dialect of the Tamil language."], "Tigalu": ["A dialect of the Tamil language."], "Harijan": ["A dialect of the Tamil language."], "Sanketi": ["A dialect of the Tamil language."], "Madras Bashae": ["A dialect of the Tamil language."], "Kumari": ["A dialect of the Tamil language."], "Hebbar": ["A dialect of the Tamil language."], "Sri-Lanka-Tamil-N": ["ISO 639-6 entity"], "Sri-Lanka-Tamil-NE": ["ISO 639-6 entity"], "Sri-Lanka-Tamil-SE": ["ISO 639-6 entity"], "Kaikadi": ["A language of India."], "Kaikadi Spoken": ["Dialects of the Kaikadi language."], "Kadar": ["ISO 639-6 entity"], "Kadar Spoken": ["ISO 639-6 entity"], "Mannan": ["ISO 639-6 entity"], "Mannan Spoken": ["ISO 639-6 entity"], "Muthuvan": ["ISO 639-6 entity"], "Muthuvan Spoken": ["ISO 639-6 entity"], "Malayalam Written": ["Written forms of the Malayalam language."], "Malayalam Written Vazhappalli Script": ["ISO 639-6 entity"], "Malayalam Written Malayalam Script Pre-Modern": ["ISO 639-6 entity"], "Malayalam Written Malayalam Script Modern": ["ISO 639-6 entity"], "Malayalam Written Arabic Script": ["ISO 639-6 entity"], "Malayalam Spoken": ["Dialects of the Malayalam language."], "Malayalam-Formal": ["ISO 639-6 entity"], "Malayalam-G": ["ISO 639-6 entity"], "South Kerela": ["ISO 639-6 entity"], "North Kerela": ["ISO 639-6 entity"], "Central Kerela": ["ISO 639-6 entity"], "Moplah": ["ISO 639-6 entity", "ISO 639-6 entity"], "Nagari-Malayalam": ["ISO 639-6 entity"], "Kayavar": ["ISO 639-6 entity"], "Palayan": ["ISO 639-6 entity"], "Namboodiri": ["ISO 639-6 entity"], "Nayar": ["ISO 639-6 entity"], "Nasrani": ["ISO 639-6 entity"], "Aranadan": ["A language spoken by the Aranadan people in Nilambur Valley, Malappuram\\ndistrict, Kerala State of India."], "Aranadan Spoken": ["The Aranadan spoken language and its dialects."], "Malapandaram": ["ISO 639-6 entity"], "Malapandaram Spoken": ["ISO 639-6 entity"], "Malankuravan": ["ISO 639-6 entity"], "Malankuravan Spoken": ["ISO 639-6 entity"], "Malankuravan-A": ["ISO 639-6 entity"], "Malayadiars": ["ISO 639-6 entity"], "Malaryan": ["ISO 639-6 entity"], "Malaryan Written": ["ISO 639-6 entity"], "Malaryan Written Malayalam Script": ["ISO 639-6 entity"], "Malaryan Spoken": ["ISO 639-6 entity"], "Malavedan": ["ISO 639-6 entity"], "Malavedan Spoken": ["ISO 639-6 entity"], "Malavedan-A": ["ISO 639-6 entity"], "Vettuvan": ["ISO 639-6 entity"], "Paniya": ["ISO 639-6 entity"], "Paniya Spoken": ["ISO 639-6 entity"], "Paliyan": ["ISO 639-6 entity"], "Paliyan Spoken": ["ISO 639-6 entity"], "Mala Pulayan": ["ISO 639-6 entity"], "Ravula": ["ISO 639-6 entity"], "Ravula Written": ["ISO 639-6 entity"], "Ravula Written Kannada Script": ["ISO 639-6 entity"], "Ravula Written Malayalam Script": ["ISO 639-6 entity"], "Ravula Spoken": ["ISO 639-6 entity"], "Adiya": ["ISO 639-6 entity"], "Pani Yerava": ["ISO 639-6 entity"], "Panjiri Yerava": ["ISO 639-6 entity"], "Southern Dravidian Unclassified": ["ISO 639-6 entity"], "Ullatan": ["ISO 639-6 entity"], "Ullatan Written": ["ISO 639-6 entity"], "Ullatan Written Malayalam Script": ["ISO 639-6 entity"], "Ullatan Spoken": ["ISO 639-6 entity"], "Dravidian Unclassified": ["ISO 639-6 entity"], "Allar": ["ISO 639-6 entity"], "Allar Written": ["ISO 639-6 entity"], "Allar Spoken": ["The dialects of the Allar language."], "Bazigar": ["A language of India."], "Bazigar Written": ["The written forms of the Bazigar language."], "Bazigar Spoken": ["The spoken Bazigar language and its dialects."], "Bharia": ["A language of India.", "One of tribes of Madhya Pradesh in India."], "Bharia Written": ["The written forms of the Bharia language."], "Bharia Written Devanagari Script": ["The Bharia language written with the devanagari Script."], "Bharia Spoken": ["The spoken Bharia language and its dialects."], "Kamar": ["A language of India."], "Kamar Spoken": ["ISO 639-6 entity"], "Kanikkaren": ["ISO 639-6 entity"], "Kanikkaren Spoken": ["ISO 639-6 entity"], "Kurichiya": ["A language spoken by the Kurichiya people, one of the earliest inhabitants of the Wyanad forest areas in the Indian state of Kerala."], "Vishavan": ["ISO 639-6 entity"], "Vishavan Spoken": ["ISO 639-6 entity"], "Hadza": ["A language of Tanzania"], "Hadza Written": ["The written forms of the Hadza language."], "Hadza Written Latin Script": ["A written form of the Hadza language."], "Hadza Spoken": ["The dialects of the Hadza language."], "Merilu": ["A dialect of the Hadza language."], "Sandawe Cluster": ["ISO 639-6 entity"], "Sandawe": ["ISO 639-6 entity"], "Sandawe Written": ["ISO 639-6 entity"], "Sandawe Written Latin Script": ["A written form of the Sandawe language."], "Sandawe Spoken": ["ISO 639-6 entity"], "Bisa": ["ISO 639-6 entity"], "Telha": ["ISO 639-6 entity"], "Southern Africa Central": ["ISO 639-6 entity"], "Nama Cluster": ["ISO 639-6 entity"], "Nama (Nambia)": ["ISO 639-6 entity"], "Nama (Nambia) Written": ["ISO 639-6 entity"], "Nama (Nambia) Spoken": ["ISO 639-6 entity"], "Nama-Formal": ["ISO 639-6 entity"], "Nama-Forma Spoken": ["ISO 639-6 entity"], "Nama-G": ["ISO 639-6 entity"], "Nama-G Spoken": ["ISO 639-6 entity"], "Damara-E": ["ISO 639-6 entity"], "L\u2019xau-C\u2019g\u00f5a": ["ISO 639-6 entity"], "T\u2019ao-Ni": ["ISO 639-6 entity"], "Mun-L\u2019i": ["ISO 639-6 entity"], "Q\u2019xara-Kai-Kxoe": ["ISO 639-6 entity"], "Q\u2019ami-Nt\u2019u": ["ISO 639-6 entity"], "Kai-L\u2019xau": ["ISO 639-6 entity"], "L\u2019o-Kai": ["ISO 639-6 entity"], "L\u2019ghapope": ["ISO 639-6 entity"], "Kxaro-Q\u2019oa": ["ISO 639-6 entity"], "L\u2019aixa-L\u2019ae": ["ISO 639-6 entity"], "Kai-L\u2019xaua": ["ISO 639-6 entity"], "C\u2019xope-Si": ["ISO 639-6 entity"], "T\u2019ama": ["ISO 639-6 entity"], "C\u2019hai-C\u2019xaua": ["ISO 639-6 entity"], "T\u2019au": ["ISO 639-6 entity"], "Ao-Kupu": ["ISO 639-6 entity"], "T\u00e3una-Tama": ["ISO 639-6 entity"], "Q\u2019oe-T\u2019g\u00e3": ["ISO 639-6 entity"], "\u00c3i Cluster": ["ISO 639-6 entity"], "C\u2019oo-Xoo": ["ISO 639-6 entity"], "T\u2019nam-L\u2019ae": ["ISO 639-6 entity"], "Q\u2019ao": ["ISO 639-6 entity"], "C\u2019h\u00f5a": ["ISO 639-6 entity"], "Q\u2019kabe": ["ISO 639-6 entity"], "Xiri": ["ISO 639-6 entity"], "Korana": ["An extinct language of South Africa."], "Korana Written": ["The written forms of the Korana language."], "T\u2019nuu-L\u2019ae": ["ISO 639-6 entity"], "Kai-Q\u2019ora": ["ISO 639-6 entity"], "Kx\u2019am-L\u2019\u00f5a": ["ISO 639-6 entity"], "L\u2019are-M\u00e3a-L\u2019ae": ["ISO 639-6 entity"], "C\u2019hoa-L\u2019ae": ["ISO 639-6 entity"], "Tshu-Kwe": ["ISO 639-6 entity"], "Tshu-Khwe Southwest Cluster": ["ISO 639-6 entity"], "Naro": ["ISO 639-6 entity"], "Q\u2019ko-Khoe": ["ISO 639-6 entity"], "Q\u2019ave-Khoe": ["ISO 639-6 entity"], "L\u2019ai-Khoe": ["ISO 639-6 entity"], "C\u2019am-Kwe": ["ISO 639-6 entity"], "Ts\u2019auru-Khoe": ["ISO 639-6 entity"], "Q\u2019gin-Khoe": ["ISO 639-6 entity"], "Ts\u2019ao- Nc\u2019hai": ["ISO 639-6 entity"], "Ts\u2019ao-Khoe": ["ISO 639-6 entity"], "Nc\u2019hai": ["ISO 639-6 entity"], "Nc\u2019hai-Tse": ["ISO 639-6 entity"], "Nyive-Kxo": ["ISO 639-6 entity"], "T\u2019heva-Khoe": ["ISO 639-6 entity"], "K\u2019ere-Khoe": ["ISO 639-6 entity"], "Dom-Khoe": ["ISO 639-6 entity"], "Du-Kwe": ["ISO 639-6 entity"], "L\u2019gaa-Khoe": ["ISO 639-6 entity"], "//Gana": ["A Khoisan language of Botswana"], "//Gana Spoken": ["The dialects of the //Gana language."], "/Gwi": ["ISO 639-6 entity"], "Mo-Lepolole": ["ISO 639-6 entity"], "Tshu-Khwe Northeast Cluster": ["ISO 639-6 entity"], "L\u2019goro-Khwe": ["ISO 639-6 entity"], "L\u2019gulu": ["ISO 639-6 entity"], "L\u2019gulu Spoken": ["ISO 639-6 entity"], "L\u2019golo": ["ISO 639-6 entity"], "L\u2019golo Spoken": ["ISO 639-6 entity"], "Ganadi ": ["ISO 639-6 entity"], "Ganadi Spoken": ["ISO 639-6 entity"], "Kwe-E-Tsho-Ri": ["ISO 639-6 entity"], "Kwe-E-Tsho-Ri Spoken": ["ISO 639-6 entity"], "Kua": ["ISO 639-6 entity"], "Kua Spoken": ["ISO 639-6 entity"], "Tsoa": ["A language of Botswana and Zimbabwe."], "Tsoa Spoken": ["The dialects of the Tsoa language."], "L\u2019gabake-Tsho-Ri": ["ISO 639-6 entity"], "L\u2019gabake-Tsho-Ri Spoken": ["ISO 639-6 entity"], "Mohisa": ["ISO 639-6 entity"], "Mohisa Spoken": ["ISO 639-6 entity"], "Kovee-N-Tsho-Ri": ["ISO 639-6 entity"], "Kovee-N-Tsho-Ri Spoken": ["ISO 639-6 entity"], "Tshu-Khwe Cluster": ["ISO 639-6 entity"], "Nl\u2019oo-Khoe": ["ISO 639-6 entity"], "Nl\u2019oo-Khoe Spoken": ["ISO 639-6 entity"], "Ts\u2019ixa-Khoe": ["ISO 639-6 entity"], "Ts\u2019ixa-Khoe Spoken": ["ISO 639-6 entity"], "Bore-Khoe": ["ISO 639-6 entity"], "Bore-Khoe Spoken": ["ISO 639-6 entity"], "Danisa": ["ISO 639-6 entity"], "Danisa Spoken": ["ISO 639-6 entity"], "Shua": ["ISO 639-6 entity"], "Shua Written": ["ISO 639-6 entity"], "Shua Spoken": ["ISO 639-6 entity"], "L\u2019aiye": ["ISO 639-6 entity"], "L\u2019aiye Spoken": ["ISO 639-6 entity"], "Tshuma-Khoe": ["ISO 639-6 entity"], "Tshuma-Khoe Spoken": ["ISO 639-6 entity"], "L\u2019oree-Khoe": ["ISO 639-6 entity"], "L\u2019oree-Khoe Spoken": ["ISO 639-6 entity"], "C\u2019haise": ["ISO 639-6 entity"], "C\u2019haise Spoken": ["ISO 639-6 entity"], "Tcaiti-Khoe": ["ISO 639-6 entity"], "Tcaiti-Khoe Spoken": ["ISO 639-6 entity"], "Hura": ["ISO 639-6 entity"], "Hura Spoken": ["ISO 639-6 entity"], "Tshu-Khwe Central Cluster": ["ISO 639-6 entity"], "Deti-Khoe ": ["ISO 639-6 entity"], "Deti-Khoe Spoken": ["ISO 639-6 entity"], "Tshu-Khwe Northwest Cluster": ["ISO 639-6 entity"], "//Ani Spoken": ["ISO 639-6 entity"], "Gali-Kwe": ["ISO 639-6 entity"], "Gali-Kwe Spoken": ["ISO 639-6 entity"], "Goe-Kwe": ["ISO 639-6 entity"], "Goe-Kwe Spoken": ["ISO 639-6 entity"], "Gari-Kwe": ["ISO 639-6 entity"], "Gari-Kwe Spoken": ["ISO 639-6 entity"], "L\u2019kani-Kxoe": ["ISO 639-6 entity"], "L\u2019kani-Kxoe Spoken": ["ISO 639-6 entity"], "Boga-Kxoe": ["ISO 639-6 entity"], "Boga-Kxoe Spoken": ["The dialects of the Boga-Kxoe language."], "Buma-Kxoe": ["ISO 639-6 entity"], "Buma-Kxoe Spoken": ["ISO 639-6 entity"], "Kxoe": ["ISO 639-6 entity"], "Kxoe Written": ["ISO 639-6 entity"], "Kxoe Spoken": ["ISO 639-6 entity"], "[[Xo-Kxoe": ["ISO 639-6 entity"], "Q\u2019hu-Kwe": ["ISO 639-6 entity"], "Zama": ["ISO 639-6 entity"], "Kwengo": ["ISO 639-6 entity"], "Glanda-Khwe": ["ISO 639-6 entity"], "Schekere": ["ISO 639-6 entity"], "Hain//Um Cluster": ["ISO 639-6 entity"], "Hai//\u2019Om": ["ISO 639-6 entity"], "Hain//Um": ["ISO 639-6 entity"], "Kedi": ["ISO 639-6 entity"], "Cwaga": ["ISO 639-6 entity"], "Strandl\u00e4ufer'": ["ISO 639-6 entity"], "Kwadi Cluster": ["ISO 639-6 entity"], "Kwadi": ["An extinct language of Angola."], "Kwise": ["ISO 639-6 entity"], "Zorotua": ["ISO 639-6 entity"], "Khoisan Southern Africa": ["ISO 639-6 entity"], "Khoisan Southern Africa Northern Cluster": ["ISO 639-6 entity"], "!O!Ung": ["A language of Angola."], "Maligo": ["ISO 639-6 entity"], "Q\u2019o-Q\u2019xung-C": ["ISO 639-6 entity"], "Q\u2019o-Q\u2019xung-S": ["ISO 639-6 entity"], "Kung-Ekoka": ["A language of Namibia and Angola."], "Xung-Ukuambi": ["ISO 639-6 entity"], "Xung-Ukuambi Spoken": ["ISO 639-6 entity"], "Uukualuthi": ["ISO 639-6 entity"], "Ukuambi": ["ISO 639-6 entity"], "Xung-Heikum": ["ISO 639-6 entity"], "Xung-Heikum Spoken": ["ISO 639-6 entity"], "Heil\u2019um": ["ISO 639-6 entity"], "Heikum": ["ISO 639-6 entity"], "Xung-Chu": ["ISO 639-6 entity"], "Xung-T\u2019kung-N": ["ISO 639-6 entity"], "Xung-T\u2019k\u0165": ["ISO 639-6 entity"], "Xung-T\u2019ung-S": ["ISO 639-6 entity"], "L\u2019khau-L\u2019en": ["ISO 639-6 entity"], "Au-Kwe": ["ISO 639-6 entity"], "Au-San": ["ISO 639-6 entity"], "No-Gau": ["ISO 639-6 entity"], "Ju/\u2019Hoan": ["ISO 639-6 entity"], "Zhu-Oase": ["ISO 639-6 entity"], "Ho\u00e3": ["ISO 639-6 entity"], "Southern Africa Southern": ["ISO 639-6 entity"], "Ta\u2019a Cluster": ["ISO 639-6 entity"], "C\u2019gwi": ["ISO 639-6 entity"], "Q\u2019xony-E": ["ISO 639-6 entity"], "P\u2019kha": ["ISO 639-6 entity"], "Sasi": ["ISO 639-6 entity"], "L\u2019nah": ["ISO 639-6 entity"], "P\u2019ha": ["ISO 639-6 entity"], "!X\u00f2\u00f6": ["A Khoisan language spoken in Botswana and Namibia."], "Tsha-Si": ["ISO 639-6 entity"], "Q\u2019xony-W": ["ISO 639-6 entity"], "Q\u2019gao-Kx\u2019a": ["ISO 639-6 entity"], "Q\u2019kong": ["ISO 639-6 entity"], "Nc\u2019u-L\u2019en": ["ISO 639-6 entity"], "Nc\u2019u-San": ["ISO 639-6 entity"], "Nc\u2019u-Mde": ["ISO 639-6 entity"], "Nl\u2019ahnsa": ["ISO 639-6 entity"], "Nl\u2019ahnsa Spoken": ["ISO 639-6 entity"], "Tuu-Nl\u2019ahnsa": ["ISO 639-6 entity"], "Lala": ["ISO 639-6 entity"], "Owa": ["ISO 639-6 entity"], "L\u2019naheh": ["ISO 639-6 entity"], "L\u2019gui": ["ISO 639-6 entity"], "Q\u2019ama": ["ISO 639-6 entity"], "Q\u2019ohju": ["ISO 639-6 entity"], "Unka-Te": ["ISO 639-6 entity"], "L\u2019oal\u2019ei": ["ISO 639-6 entity"], "Kic\u2019hazi- Kakia": ["ISO 639-6 entity"], "Kic\u2019hazi- Kakia Spoken": ["ISO 639-6 entity"], "Kic\u2019hazi": ["ISO 639-6 entity"], "Kakia": ["ISO 639-6 entity"], "T\u2019atia": ["ISO 639-6 entity"], "Nc\u2019hu-Ki-A": ["ISO 639-6 entity"], "T\u2019khomani": ["ISO 639-6 entity"], "Nl\u2019-T\u2019ke": ["ISO 639-6 entity"], "C\u2019auni": ["ISO 639-6 entity"], "Kic\u2019hasi": ["ISO 639-6 entity"], "T\u2019kaurure-Nl\u2019ai": ["ISO 639-6 entity"], "N|U": ["ISO 639-6 entity"], "Vasekela Bushman": ["ISO 639-6 entity"], "!Wi Cluster": ["ISO 639-6 entity"], "Seroa": ["An extinct language of South Africa."], "L\u2019kul\u2019e": ["ISO 639-6 entity"], "Boshof'": ["ISO 639-6 entity"], "Qacha\u2019s-Neck'": ["ISO 639-6 entity"], "Q\u2019\u00e3nq\u2019e": ["ISO 639-6 entity"], "//Xegwi": ["ISO 639-6 entity"], "L\u2019xogwi": ["ISO 639-6 entity"], "C\u2019xam": ["ISO 639-6 entity"], "Katkop'": ["ISO 639-6 entity"], "Strontbergen'": ["ISO 639-6 entity"], "Kordofanian": ["ISO 639-6 entity"], "Kordofanian Proper": ["ISO 639-6 entity"], "Katla Cluster": ["ISO 639-6 entity"], "Katla": ["A Kordofanian language of Sudan."], "Betel-Gali-A-Kalak": ["ISO 639-6 entity"], "Betel-Gali-A-Kalak Spoken": ["ISO 639-6 entity"], "Bombori- Kiddu": ["ISO 639-6 entity"], "Kirkpong-Karoka": ["ISO 639-6 entity"], "Koldrong": ["ISO 639-6 entity"], "Julud": ["ISO 639-6 entity"], "Tima": ["ISO 639-6 entity"], "Tima Spoken": ["ISO 639-6 entity"], "Heiban": ["ISO 639-6 entity", "A language of Sudan"], "Heiban-West Central": ["ISO 639-6 entity"], "Heiban-West Central Western": ["ISO 639-6 entity"], "Moro": ["ISO 639-6 entity"], "Moro Spoken": ["ISO 639-6 entity"], "Logorban": ["ISO 639-6 entity"], "Morong-A": ["ISO 639-6 entity"], "Umm-Gabralla": ["ISO 639-6 entity"], "Acheron": ["ISO 639-6 entity", "A language of Sudan."], "Nderre": ["ISO 639-6 entity"], "Laiyen": ["ISO 639-6 entity"], "Nubwa": ["ISO 639-6 entity"], "Ulba": ["ISO 639-6 entity"], "Werria": ["ISO 639-6 entity"], "Lebu": ["ISO 639-6 entity"], "Tira": ["ISO 639-6 entity"], "Ngarta-Nga-Tiro": ["ISO 639-6 entity"], "Ngarta-Nga-Tiro Spoken": ["ISO 639-6 entity"], "Tira-El-Akhdar": ["ISO 639-6 entity"], "Tira-Mandi": ["ISO 639-6 entity"], "Kinderma": ["ISO 639-6 entity"], "Tira-Lumun": ["ISO 639-6 entity"], "Shirumba Cluster": ["ISO 639-6 entity"], "Nguron-Ngadi-Ngi-Shirumba": ["ISO 639-6 entity"], "Shwai": ["ISO 639-6 entity"], "Sheibun": ["ISO 639-6 entity"], "Ndano": ["ISO 639-6 entity"], "Heiban Westcentral Central ": ["ISO 639-6 entity"], "Ebang-Logol": ["ISO 639-6 entity"], "Utoro Cluster": ["ISO 639-6 entity"], "Otoro": ["ISO 639-6 entity"], "Dhi-Jama": ["ISO 639-6 entity"], "Dhu-Gwujur": ["ISO 639-6 entity"], "Dhu-Kwara": ["ISO 639-6 entity"], "Dhu-Gurila": ["ISO 639-6 entity"], "Dho-Rombe": ["ISO 639-6 entity"], "Dha-Garro": ["ISO 639-6 entity"], "Dh\u00f6-G\u00f6rindi": ["ISO 639-6 entity"], "Eebang Laaru Cluster": ["ISO 639-6 entity"], "Dhu-Gun-Dha-Dhi-L-Abla-A": ["ISO 639-6 entity"], "Laro": ["ISO 639-6 entity"], "Igwormany": ["ISO 639-6 entity"], "Tunduli": ["ISO 639-6 entity"], "Logol Cluster": ["ISO 639-6 entity"], "Logol": ["ISO 639-6 entity", "A language of Sudan."], "Rere Cluster": ["ISO 639-6 entity"], "Koalib": ["A Niger-Congo language in the Heiban family spoken by the Koalib Nuba, Turum, and Umm Heitan ethnic groups in Sudan."], "Koalib Written": ["The written forms of the Koalib language."], "Koalib Spoken": ["The dialects of the Koalib language."], "Ngu-Qwurang": ["ISO 639-6 entity"], "Ngi-Reere": ["ISO 639-6 entity"], "Ngu-Nduna": ["ISO 639-6 entity"], "Ngi-Nyukwur": ["ISO 639-6 entity"], "Ngi-Nyukwur Spoken": ["ISO 639-6 entity"], "Nyukwur-A": ["ISO 639-6 entity"], "Hadra": ["ISO 639-6 entity"], "Heiban Eastern Cluster": ["ISO 639-6 entity"], "Warnang": ["ISO 639-6 entity"], "Ko": ["A language of Sudan."], "Nyaro": ["ISO 639-6 entity"], "Fungor": ["ISO 639-6 entity"], "Talodi": ["ISO 639-6 entity", "ISO 639-6 entity"], "Talodi Proper": ["ISO 639-6 entity"], "Ngile- Dengebu Cluster": ["ISO 639-6 entity"], "Ngile": ["A language of Sudan."], "Ngile Spoken": ["The dialects of the Ngile language."], "Masakin-Qusar": ["A dialect of the Ngile language."], "Masakin-Buram": ["A dialect of the Ngile language."], "Masakin-Tuwal": ["A dialect of the Ngile language."], "Aheima": ["A dialect of the Ngile language."], "Daloka": ["A dialect of the Ngile language."], "Dagik": ["A language of Sudan."], "Dengebu": ["ISO 639-6 entity"], "Tocho Cluster": ["ISO 639-6 entity"], "East Acheron": ["A dialect of the Acheron language."], "West Acheron": ["A dialect of the Acheron language."], "Lumun": ["A language of Sudan."], "Tocho": ["ISO 639-6 entity"], "Torona": ["ISO 639-6 entity"], "Jomang Cluster": ["ISO 639-6 entity"], "Tasomi": ["ISO 639-6 entity"], "Ga-Jomang": ["ISO 639-6 entity"], "Nding Cluster": ["ISO 639-6 entity"], "Nding": ["A language of Sudan."], "Lafofa": ["A language of Sudan."], "Kidie-Lafofa": ["A language spoken in and aroung the Lafofa village in Sudan."], "Lafofa-C ": ["ISO 639-6 entity"], "Umm-Shatta": ["ISO 639-6 entity"], "Amira": ["ISO 639-6 entity"], "Tegem": ["A Niger\u2013Congo language spoken in Kordofan, Sudan."], "Rashad Cluster": ["ISO 639-6 entity"], "Tagoi": ["ISO 639-6 entity"], "Orig": ["ISO 639-6 entity"], "Tu-Male": ["ISO 639-6 entity"], "Moreb": ["ISO 639-6 entity"], "Ta-Gogen": ["ISO 639-6 entity"], "Wadelka": ["ISO 639-6 entity"], "Tegali": ["ISO 639-6 entity"], "Nge-Kom": ["ISO 639-6 entity"], "Tingal": ["ISO 639-6 entity"], "Korean-Japanese": ["ISO 639-6 entity"], "Korean Written": ["Written forms of the Korean language."], "Korean Written Chinese Hyanchal Script": ["A written form of the Korean language."], "Korean Written Chinese Kwukyel Script": ["A written form of the Korean language."], "Korean Written Chinese Itwu Script": ["A written form of the Korean language."], "Korean Written Hanja Script": ["A written form of the Korean language."], "Korean Written Han-G\u016dl Script": ["A written form of the Korean language."], "Korean Spoken": ["Dialects of the Korean language."], "Korean-S": ["ISO 639-6 entity"], "Korean-S Written": ["ISO 639-6 entity"], "Korean-S Written Hanja Script": ["ISO 639-6 entity"], "Korean-S Written Han-G\u016dl Script": ["ISO 639-6 entity"], "Korean-N": ["ISO 639-6 entity"], "Hankukmal-CW": ["ISO 639-6 entity"], "Hwanghae-Puk-Do": ["ISO 639-6 entity"], "Hwanghae-Nam-Do": ["ISO 639-6 entity"], "Kanghwa": ["ISO 639-6 entity"], "Ky\u014fnggi-Do": ["ISO 639-6 entity"], "S\u014ful-U ": ["ISO 639-6 entity"], "Ch'ungch'\u014fng-Puk-Do": ["ISO 639-6 entity"], "Ch'ungch'\u014fng-Nam-Do": ["ISO 639-6 entity"], "Hankukmal-CE": ["ISO 639-6 entity"], "Yonghung": ["ISO 639-6 entity"], "Kangw\u014fn-Do": ["ISO 639-6 entity"], "Hankukmal-SW": ["ISO 639-6 entity"], "Cholla-Puk-Do": ["A dialect of the Hankukmal-SW language."], "Cholla-Nam-Do": ["A dialect of the Hankukmal-SW language."], "Hankukmal-NW": ["ISO 639-6 entity"], "P'y\u014fngyang-U": ["ISO 639-6 entity"], "P'y\u014fng'an-Nam-Do": ["ISO 639-6 entity"], "P'y\u014fng'an-Puk-Do": ["ISO 639-6 entity"], "Liaoning-S": ["ISO 639-6 entity"], "Hankukmal-CN": ["ISO 639-6 entity"], "Chagang-Do": ["A dialect of the Hankukmal-CN language."], "Yanggang-Do": ["A dialect of the Hankukmal-CN language."], "Hankukmal-NE": ["ISO 639-6 entity"], "Hamgyong-Nam-Do": ["A dialect of the Hankukmal-NE language."], "Hamgyong-Puk-Do": ["A dialect of the Hankukmal-NE language."], "Jilin": ["A dialect of the Hankukmal-NE language.", "The second largest city in Jilin Province in China."], "Hankukmal-SE": ["ISO 639-6 entity"], "Hankukmal-SE Spoken": ["The dialects of the Hankukmal-SE language."], "Ky\u014fngsang-Puk-Do": ["A dialect of the Hankukmal-SE language."], "Ky\u014fngsang-Nam-Do": ["A dialect of the Hankukmal-SE language."], "Hankukmal-'\u00c9migr\u00e9'": ["ISO 639-6 entity"], "Hankukmal-'\u00c9migr\u00e9' Spoken": ["The dialects of the Hankukmal-'\u00c9migr\u00e9' language."], "Hankukmal-'Japan- Russia'": ["ISO 639-6 entity"], "Hankukmal-'Central-Asia'": ["ISO 639-6 entity"], "Hankukmal-'America'": ["ISO 639-6 entity"], "Chejumal": ["A variety of Korean spoken on Jeju Island in South Korea."], "Sakhalin": ["ISO 639-6 entity", "Island in the North Pacific which belongs to Russia."], "Sakhalin Spoken": ["ISO 639-6 entity"], "Nairo": ["ISO 639-6 entity"], "Raichishka": ["ISO 639-6 entity"], "Shiraura": ["ISO 639-6 entity"], "Maoka": ["ISO 639-6 entity"], "Tarantomari": ["ISO 639-6 entity"], "Ochiho": ["ISO 639-6 entity"], "Taraika": ["ISO 639-6 entity"], "Ezo": ["ISO 639-6 entity"], "Soya": ["ISO 639-6 entity"], "Nayoro- Ashikawa": ["ISO 639-6 entity"], "Nayoro": ["ISO 639-6 entity"], "Asahikawa": ["ISO 639-6 entity"], "Ishikari": ["ISO 639-6 entity"], "Ezo-E": ["ISO 639-6 entity"], "Bihoro": ["ISO 639-6 entity"], "Kushiro": ["ISO 639-6 entity"], "Obihiro": ["ISO 639-6 entity"], "Samani": ["ISO 639-6 entity"], "Ezo-S": ["ISO 639-6 entity"], "Saru": ["ISO 639-6 entity"], "Niikapu": ["ISO 639-6 entity"], "Shizunai": ["ISO 639-6 entity"], "Nukkibetsu": ["ISO 639-6 entity"], "Biratori": ["ISO 639-6 entity"], "Horobetsu": ["ISO 639-6 entity"], "Ezo-SW": ["ISO 639-6 entity"], "Oshamambe": ["ISO 639-6 entity"], "Yakumo": ["ISO 639-6 entity"], "Kurile": ["ISO 639-6 entity"], "Yukar": ["ISO 639-6 entity"], "Japanese Ryukyuan": ["ISO 639-6 entity"], "Hy\u014dzyun-Go": ["ISO 639-6 entity"], "Koku-Go": ["ISO 639-6 entity"], "Yamanote-Kotoba": ["ISO 639-6 entity"], "Ky\u014dt\u016b-Go": ["ISO 639-6 entity"], "Ky\u014dt\u016b-Go Spoken": ["ISO 639-6 entity"], "T\u014dky\u014d- Yokohama-G ": ["ISO 639-6 entity"], "Honsh\u016b-N ": ["ISO 639-6 entity"], "Honsh\u016b-E ": ["ISO 639-6 entity"], "Honsh\u016b-W ": ["ISO 639-6 entity"], "Shikoku-G ": ["ISO 639-6 entity"], "Hokkaid\u014d-G ": ["ISO 639-6 entity"], "Izu-G ": ["ISO 639-6 entity"], "Ky\u016bsh\u016b-G ": ["ISO 639-6 entity"], "Ry\u016bkyu-G ": ["ISO 639-6 entity"], "Nihongo-Korea": ["ISO 639-6 entity"], "Nihongo-Taiwan": ["ISO 639-6 entity"], "Nihongo-America": ["ISO 639-6 entity"], "Nihongo-Brazil": ["ISO 639-6 entity"], "Shitamachi-Kotoba": ["ISO 639-6 entity"], "Kant\u014d": ["ISO 639-6 entity"], "Kant\u014d Spoken": ["ISO 639-6 entity"], "Kant\u014d-A ": ["ISO 639-6 entity"], "Kant\u014d-W ": ["ISO 639-6 entity"], "Kant\u014d-N ": ["ISO 639-6 entity"], "T\u014dhoku": ["ISO 639-6 entity"], "T\u014dhoku Spoken": ["ISO 639-6 entity"], "Hoku\u014d": ["ISO 639-6 entity"], "Hokuetsu": ["ISO 639-6 entity"], "Nan\u014d": ["ISO 639-6 entity"], "Hokkaid\u014d-SW ": ["ISO 639-6 entity"], "Kansai": ["A group of Japanese dialects spoken in the Kansai region of Japan."], "Kansai Spoken": ["ISO 639-6 entity"], "Bun-Go": ["ISO 639-6 entity"], "Kinki-A ": ["ISO 639-6 entity"], "Maizuru- Ako": ["ISO 639-6 entity"], "Awaji- Shikoku": ["ISO 639-6 entity"], "Wakayama- Nara": ["ISO 639-6 entity"], "Hokuriku": ["ISO 639-6 entity"], "Sado": ["ISO 639-6 entity"], "Totsugawa- Kumano": ["ISO 639-6 entity"], "Wadayama- Okayama": ["ISO 639-6 entity"], "Kagawa": ["ISO 639-6 entity"], "Manabe-Shima": ["ISO 639-6 entity"], "Awa-Shima": ["ISO 639-6 entity"], "Ibuki-Jima": ["ISO 639-6 entity"], "Yashiro-Jima": ["ISO 639-6 entity"], "Hiji": ["ISO 639-6 entity"], "K\u014dchi-SW ": ["ISO 639-6 entity"], "Ch\u016bgoku": ["ISO 639-6 entity"], "Matsue": ["ISO 639-6 entity"], "San-In ": ["ISO 639-6 entity"], "Ky\u016bsh\u016b": ["ISO 639-6 entity"], "Ky\u016bsh\u016b Spoken": ["ISO 639-6 entity"], "Ky\u016bsh\u016b-N ": ["ISO 639-6 entity"], "Ky\u016bsh\u016b-NW ": ["ISO 639-6 entity"], "Ky\u016bsh\u016b-C ": ["ISO 639-6 entity"], "Ky\u016bsh\u016b-W ": ["ISO 639-6 entity"], "Satsuma": ["ISO 639-6 entity"], "Hachij\u014d-Jima": ["ISO 639-6 entity"], "Ko-Jima": ["ISO 639-6 entity"], "Ryukyuan": ["ISO 639-6 entity"], "Northern Amami Okinawago Cluster": ["ISO 639-6 entity"], "Kikai": ["A language of Japan."], "Northern Amami- Oshima": ["ISO 639-6 entity"], "Northern Amami- Oshima Spoken": ["ISO 639-6 entity"], "Naze": ["ISO 639-6 entity"], "Sani": ["ISO 639-6 entity"], "Southern Amami- Oshima": ["ISO 639-6 entity"], "Southern Amami- Oshima Spoken": ["ISO 639-6 entity"], "Setouchi": ["ISO 639-6 entity"], "Kakeroma-Shima": ["ISO 639-6 entity"], "Uke-Shima": ["ISO 639-6 entity"], "Yoro-Shima": ["ISO 639-6 entity"], "Toku-No-Shima": ["ISO 639-6 entity"], "Toku-No-Shima Spoken": ["ISO 639-6 entity"], "Kametsu": ["ISO 639-6 entity"], "Amagi": ["ISO 639-6 entity"], "Southern Amami Okinawago": ["ISO 639-6 entity"], "Oki-No-Erabu": ["ISO 639-6 entity"], "Oki-No-Erabu Spoken": ["ISO 639-6 entity"], "Okino-Erabu-NE": ["ISO 639-6 entity"], "Okino-Erabu-SW": ["ISO 639-6 entity"], "Yoron": ["ISO 639-6 entity"], "Iheya-Shima": ["ISO 639-6 entity"], "Iheya-Shima Spoken": ["ISO 639-6 entity"], "Iheya-Shima-A ": ["ISO 639-6 entity"], "Izena-Shima": ["ISO 639-6 entity"], "Ie-Shima": ["ISO 639-6 entity"], "Kunigami": ["ISO 639-6 entity"], "Kunigami Spoken": ["ISO 639-6 entity"], "Kunigami-W": ["ISO 639-6 entity"], "Kunigami-E": ["ISO 639-6 entity"], "Ogimi": ["ISO 639-6 entity"], "Haneji": ["ISO 639-6 entity"], "Nakijin": ["ISO 639-6 entity"], "Kouri": ["ISO 639-6 entity"], "Sesoko": ["ISO 639-6 entity"], "Nago": ["ISO 639-6 entity"], "Kin": ["ISO 639-6 entity"], "Onna-N": ["ISO 639-6 entity"], "Central Okinawan": ["A Northern Ryukyuan language spoken primarily in the southern half of the island of Okinawa, as well as the surrounding islands of Kerama, Kumejima, Tonaki, Aguni, and a number of smaller peripheral islands."], "Central Okinawan Written": ["Written forms of the Central Okinawan language."], "Central Okinawan Written Japanese Script": ["The Central Okinawan written with the Japanese script."], "Central Okinawan Written Sunagawa-Kisoushi Script": ["The Central Okinawan language written with the Sunagawa-Kisoushi script."], "Central Okinawan Written Toki-Kisoushi Script": ["The Central Okinawan written with the Toki-Kisoushi script."], "Central Okinawan Spoken": ["The dialects of the Central Okinawan language."], "Torishima": ["A dialect of the Central Okinawan language."], "Kaikutuba": ["A dialect of the Central Okinawan language."], "Yomitan": ["A dialect of the Central Okinawan language."], "Goeku": ["A dialect of the Central Okinawan language."], "Gushikawa": ["A dialect of the Central Okinawan language."], "Haebaru": ["A dialect of the Central Okinawan language."], "Yonagusuku": ["A dialect of the Central Okinawan language."], "Katsuren": ["A dialect of the Central Okinawan language."], "Nakagusuku": ["A dialect of the Central Okinawan language."], "Ginowan": ["A dialect of the Central Okinawan language."], "Urasoe": ["A dialect of the Central Okinawan language."], "Nishihara": ["A dialect of the Central Okinawan language."], "Mawashi": ["A dialect of the Central Okinawan language."], "Oroku": ["A dialect of the Central Okinawan language."], "Tomigusuku": ["A dialect of the Central Okinawan language."], "Kanegusuku": ["A dialect of the Central Okinawan language."], "Kochinda": ["A dialect of the Central Okinawan language."], "Ozato": ["A dialect of the Central Okinawan language."], "Sashiki": ["A dialect of the Central Okinawan language."], "Chinen": ["A dialect of the Central Okinawan language."], "Tamagusuku": ["A dialect of the Central Okinawan language."], "Gushikami": ["A dialect of the Central Okinawan language."], "Itoman Mabuni": ["ISO 639-6 entity"], "Itoman": ["ISO 639-6 entity"], "Takamine": ["ISO 639-6 entity"], "Makabe": ["ISO 639-6 entity"], "Kiyan": ["ISO 639-6 entity"], "Mabuni": ["ISO 639-6 entity"], "Kerama Kumejima": ["ISO 639-6 entity"], "Kerama": ["ISO 639-6 entity"], "Tonaki": ["ISO 639-6 entity"], "Aguni": ["ISO 639-6 entity"], "Kume-Jima": ["ISO 639-6 entity"], "Ikei Kudaka": ["ISO 639-6 entity"], "Ikei": ["ISO 639-6 entity"], "Miyagi": ["ISO 639-6 entity"], "Henza": ["ISO 639-6 entity"], "Tsuken": ["ISO 639-6 entity"], "Kudaka": ["ISO 639-6 entity"], "Miyako": ["A language spoken on the Miyako islands in the Japanese Okinawa Prefecture."], "Miyako Written": ["The written forms of the Miyako language."], "Miyako Written Japanese Script": ["The Miyako language written with the Japanese script."], "Miyako Spoken": ["The dialects of the Miyako language."], "Miyako-Jima": ["A dialect of the Miyako language."], "Ogami-Jima": ["A dialect of the Miyako language."], "Ikema-Jima": ["A dialect of the Miyako language."], "Kurema-Jima": ["A dialect of the Miyako language."], "Irabu-Jima": ["A dialect of the Miyako language."], "Yaeyama": ["A Ryukyuan language, most closely related to Miyako, spoken by around 44,650 people in the Yaeyama Islands, south of the Miyako area of the Ryukyus."], "Yaeyama Written Kaidaa-Di Script": ["The Yaeyama language written with the Kaidaa-Di script."], "Yaeyama Written Yaahan Script": ["The Yaeyama language written with the Yaahan script."], "Yaeyama Written Japanese Script": ["The Yaeyama language written with the Japanese script."], "Yaeyama Spoken": ["The dialects of the Yaeyama language."], "Ishigaki-Jima": ["A dialect of the Yaeyama language."], "Kabira": ["A dialect of the Yaeyama language."], "Shiraho": ["A dialect of the Yaeyama language."], "Taketomi": ["A dialect of the Yaeyama language.", "An island in the Yaeyama District of Okinawa Prefecture, Japan."], "Kohama": ["A dialect of the Yaeyama language.", "An island in the Yaeyama Islands group at the southwestern end of the Ryukyu Islands chain, and part of Okinawa Prefecture, Japan."], "Hatoma": ["A dialect of the Yaeyama language."], "Sonai": ["A dialect of the Yaeyama language."], "Aragusuku": ["A dialect of the Yaeyama language."], "Kuro-Shima": ["A dialect of the Yaeyama language."], "Hateruma-Shima": ["A dialect of the Yaeyama language."], "Yonaguni": ["A Ryukyuan language, most closely related to Yaeyama, spoken by around 1,800 people on the island of Yonaguni, in Japan, just east of Taiwan.", "The westernmost island of Japan."], "Yonaguni Written Kaidaa-Zi Script": ["The Yonaguni language written with the Kaidaa-Zi script."], "Yonaguni Written Sanninnudai Script": ["The Yonaguni language written with the Sanninnudai script."], "Yonaguni Written Daahan Script": ["The Yonaguni language written with the Daahan script."], "Yonaguni Written Japanese Script": ["The Yonaguni language written with the Japanese script."], "Ket": ["A Siberian language of Russia (Asia)"], "Ket Spoken": ["ISO 639-6 entity"], "Imbat": ["ISO 639-6 entity"], "Imbat Surgut": ["ISO 639-6 entity"], "Imbat Suloma": ["ISO 639-6 entity"], "Imbat Kureika": ["ISO 639-6 entity"], "Yugh": ["ISO 639-6 entity"], "Kot": ["ISO 639-6 entity", "A dialect of the Alur language."], "Kishtim": ["ISO 639-6 entity"], "Asan": ["ISO 639-6 entity"], "Arin": ["ISO 639-6 entity"], "Gilyak": ["ISO 639-6 entity"], "Gilyak Written": ["ISO 639-6 entity"], "Gilyak Written Latin Script": ["Gilyak language written with the Latin Script."], "Gilyak Written Cyrillic Script": ["ISO 639-6 entity"], "Gilyak Spoken": ["ISO 639-6 entity"], "Amur": ["ISO 639-6 entity"], "North Sakhalin Gilyak": ["ISO 639-6 entity"], "East Sakhalin Gilyak": ["ISO 639-6 entity"], "Burushaski Cluster": ["ISO 639-6 entity"], "Burushaski": ["A language isolate spoken by the Burusho people in the Hunza, Nagar, Yasin, and Ishkoman Valley-Barjungle and some parts of the Gilgit valleys in the Northern areas in Pakistan."], "Burushaski Written": ["The written versions of the Burushaski language."], "Burushaski Written Perso-Arabic Script": ["The Burushaski language written with the Perso-Arabic script."], "Burushaski Written Latin Script": ["The Burushaski language written with the Latin script."], "Burushaski Written IPA Script": ["The Burushaski language written with the IPA script."], "Burushaski Spoken": ["The Burushaski spoken language and its dialects."], "Nagar": ["ISO 639-6 entity"], "Hunza": ["ISO 639-6 entity"], "Yasin": ["A dialect of Wakhi spoken in Pakistan."], "Nihali": ["ISO 639-6 entity"], "Nihali Proper": ["ISO 639-6 entity"], "Chikaldara": ["ISO 639-6 entity"], "Akola": ["ISO 639-6 entity"], "Miao-Yao": ["ISO 639-6 entity"], "Hmong": ["A dialect continuum of the West Hmongic branch of the Hmong-Mien/Miao-Yao language family spoken by the Hmong people of Sichuan, Yunnan, Guizhou, Guangxi, northern Vietnam, Thailand, and Laos."], "Hmong Written": ["ISO 639-6 entity"], "Hmong Written Pahawh Pa Script": ["ISO 639-6 entity"], "Hmong Written Pahawh Njia Dua O Script": ["ISO 639-6 entity"], "Hmong Written Pahawh Njia Dua Pe Script": ["ISO 639-6 entity"], "Hmong Written Pahawh Tsa Script": ["ISO 639-6 entity"], "Western Hmong": ["ISO 639-6 entity", "A Hmong language spoken mostly in China in the area where Guizhou, Sichuan and Yunnan provinces meet, and spoken also in Myanmar, Laos and Vietnam."], "Western Hmong Written": ["Written forms of the Western Hmong language."], "Western Hmong Written Hmong Script": ["ISO 639-6 entity"], "Western Hmong Written Latin Script": ["A written form of the Western Hmong language."], "Hmong D\u00f4": ["A language of Viet Nam."], "Hmong D\u00f4 Written": ["The written forms of the Hmong D\u00f4 language."], "Hmong D\u00f4 Written Hmong Script": ["A written form of the Hmong D\u00f4 language."], "Hmong D\u00f4 Written Latin Script": ["A written form of the Hmong D\u00f4 language."], "Hmong Daw": ["A Hmong language spoken mainly in the Chinese regions of central and western Guizhou, southern Sichuan and Yunnan."], "Hmong Daw Written": ["Written forms of the Hmong Daw language."], "Hmong Daw Written Hmong Script": ["ISO 639-6 entity"], "Hmong Daw Written Latin Script": ["A written form of the Hmong Daw language."], "Hmong Daw Spoken": ["ISO 639-6 entity"], "Mong Leng": ["ISO 639-6 entity"], "Peh": ["ISO 639-6 entity"], "Petchabun": ["ISO 639-6 entity"], "Hmong-Qua-Mba": ["ISO 639-6 entity"], "Hmong Njua": ["A Hmong language spoken mostly in China in the area where Guizhou, Sichuan and Yunnan provinces meet, and spoken also in Myanmar, Laos and Vietnam."], "Hmong Njua Written": ["Written forms of the Hmong Njua language."], "Hmong Njua Written Hmong Script": ["ISO 639-6 entity"], "Hmong Njua Written Latin Script": ["A written form of the Hmong Njua language."], "Hmong Njua Spoken": ["ISO 639-6 entity"], "Hua-Hwa": ["ISO 639-6 entity"], "Khiao-Hua": ["ISO 639-6 entity"], "Ta-Hua": ["ISO 639-6 entity"], "Tak": ["ISO 639-6 entity"], "Central Huishui Hmong": ["A language of China."], "Central Huishui Hmong Written": ["ISO 639-6 entity"], "Central Huishui Hmong Written Hmong Script": ["ISO 639-6 entity"], "Central Huishui Hmong Written Latin Script": ["A written form of the Central Huishui Hmong language."], "Northeastern Dian Hmong": ["A language of China."], "Northeastern Dian Hmong Written": ["Written forms of the Northeastern Dian Hmong language."], "Northeastern Dian Hmong Written Hmong Script": ["ISO 639-6 entity"], "Northeastern Dian Hmong Written Latin Script": ["A written form of the Northeastern Dian Hmong language."], "Eastern Huishui Hmong": ["A language of China."], "Eastern Huishui Hmong Written": ["Written forms of the Eastern Huishui Hmong language."], "Eastern Huishui Hmong Written Hmong Script": ["ISO 639-6 entity"], "Eastern Huishui Hmong Written Latin Script": ["A written form of the Eastern Huishui Hmong language."], "Hmong Don": ["A language of Viet Nam"], "Hmong Don Written": ["The written forms of the Hmong Don language."], "Hmong Don Written Hmong Script": ["A written form of the Hmong Don language."], "Hmong Don Written Latin Script": ["A written form of the Hmong Don language."], "Southern Mashan Hmong": ["A language of China."], "Southern Mashan Hmong Written": ["Written forms of the Southern Mashan Hmong language."], "Southern Mashan Hmong Written Hmong Script": ["ISO 639-6 entity"], "Southern Mashan Hmong Written Latin Script": ["A written form of the Southern Mashan Hmong language."], "Southern Mashan Hmong Spoken": ["ISO 639-6 entity"], "Southwestern Guiyang Hmong": ["A language spoken by the Guiyang Miao people living on the mountaintops in Pingba, Qingzhen and Changshun counties as well as in the Guiyang and Anshun municipalities in Guizhou Province of China."], "Southwestern Guiyang Hmong Written": ["Written forms of the Southwestern Guiyang Hmong language."], "Southwestern Guiyang Hmong Written Hmong Script": ["The Southwestern Guiyang Hmong language written with the Hmong script."], "Southwestern Guiyang Hmong Written Latin Script": ["A written form of the Southwestern Guiyang Hmong language."], "Southwestern Guiyang Hmong Spoken": ["Dialects of the Southwestern Guiyang Hmong language."], "Southwestern Huishui Hmong": ["A language of China."], "Southwestern Huishui Hmong Written": ["Written forms of the Southwestern Huishui Hmong language."], "Southwestern Huishui Hmong Written Hmong Script": ["ISO 639-6 entity"], "Southwestern Huishui Hmong Written Latin Script": ["A written form of the Southwestern Huishui Hmong language."], "Southwestern Huishui Hmong Spoken": ["ISO 639-6 entity"], "Northern Huishui Hmong": ["A language of China."], "Northern Huishui Hmong Written": ["Written forms of the Northern Huishui Hmong language."], "Northern Huishui Hmong Written Hmong Script": ["ISO 639-6 entity"], "Northern Huishui Hmong Written Latin Script": ["A written form of the Northern Huishui Hmong language."], "Northern Huishui Hmong Spoken": ["ISO 639-6 entity"], "Chonganjiang Hmong": ["A language of China."], "Chonganjiang Hmong Written": ["ISO 639-6 entity"], "Chonganjiang Hmong Written Hmong Script": ["ISO 639-6 entity"], "Chonganjiang Hmong Written Latin Script": ["A written form of the Chonganjiang Hmong language."], "Chonganjiang Hmong Spoken": ["ISO 639-6 entity"], "Gejiahua": ["ISO 639-6 entity"], "Luopohe Hmong": ["A language of China."], "Luopohe Hmong Written": ["Written forms of the Luopohe Hmong language."], "Luopohe Hmong Written Hmong Script": ["ISO 639-6 entity"], "Luopohe Hmong Written Latin Script": ["A written form of the Luopohe Hmong language."], "Central Mashan Hmong": ["A language of China."], "Central Mashan Hmong Written": ["ISO 639-6 entity"], "Central Mashan Hmong Written Hmong Script": ["ISO 639-6 entity"], "Central Mashan Hmong Written Latin Script": ["A written form of the Central Mashan Hmong language."], "Northern Mashan Hmong": ["A language of China."], "Northern Mashan Hmong Written": ["Written forms of the Northern Mashan Hmong language."], "Northern Mashan Hmong Written Hmong Script": ["ISO 639-6 entity"], "Northern Mashan Hmong Written Latin Script": ["A written form of the Northern Mashan Hmong language."], "Northern Mashan Hmong Spoken": ["ISO 639-6 entity"], "Western Mashan Hmong": ["A language of China."], "Western Mashan Hmong Written": ["Written forms of the Western Mashan Hmong language."], "Western Mashan Hmong Written Hmong Script": ["ISO 639-6 entity"], "Western Mashan Hmong Written Latin Script": ["A written form of the Western Mashan Hmong language."], "Western Mashan Hmong Spoken": ["ISO 639-6 entity"], "Southern Guiyang Hmong": ["A language of China."], "Southern Guiyang Hmong Written": ["Written forms of the Southern Guiyang Hmong language."], "Southern Guiyang Hmong Written Hmong Script": ["ISO 639-6 entity"], "Southern Guiyang Hmong Written Latin Script": ["A written form of the Southern Guiyang Hmong language."], "Southern Guiyang Hmong Spoken": ["ISO 639-6 entity"], "Hmong Shua": ["A language of Viet Nam."], "Hmong Shua Written": ["The written forms of the Hmong Shua language."], "Hmong Shua Written Hmong Script": ["A written form of the Hmong Shua language."], "Hmong Shua Written Latin Script": ["A written form of the Hmong Shua language."], "Northern Guiyang Hmong": ["A language of China."], "Northern Guiyang Hmong Written": ["Written forms of the Northern Guiyang Hmong language."], "Northern Guiyang Hmong Written Hmong Script": ["ISO 639-6 entity"], "Northern Guiyang Hmong Written Latin Script": ["A written form of the Northern Guiyang Hmong language."], "Western Xiangxi Hmong": ["ISO 639-6 entity"], "Western Xiangxi Hmong Written": ["Written forms of the Western Xiangxi Hmong language."], "Western Xiangxi Hmong Written Hmong Script": ["ISO 639-6 entity"], "Western Xiangxi Hmong Written Latin Script": ["A written form of the Western Xiangxi Hmong language."], "Western Xiangxi Hmong Spoken": ["ISO 639-6 entity"], "Meo-Do-Vietnam": ["ISO 639-6 entity"], "Meo-Do-Thailand": ["ISO 639-6 entity"], "Meo-Do-China": ["ISO 639-6 entity"], "Central Hmong": ["ISO 639-6 entity"], "Eastern Qiandong Hmong": ["ISO 639-6 entity", "A language of China."], "Eastern Qiandong Hmong Written": ["Written forms of the Eastern Qiandong Hmong language."], "Eastern Qiandong Hmong Written Hmong Script": ["ISO 639-6 entity"], "Eastern Qiandong Hmong Written Latin Script": ["A written form of the Eastern Qiandong Hmong language."], "Eastern Qiandong Hmong Spoken": ["ISO 639-6 entity"], "Northern Qiandong Hmong": ["A language of China."], "Northern Qiandong Hmong Written": ["Written forms of the Northern Qiandong Hmong language."], "Northern Qiandong Hmong Written Hmong Script": ["ISO 639-6 entity"], "Northern Qiandong Hmong Written Latin Script": ["A written form of the Northern Qiandong Hmong language."], "Northern Qiandong Hmong Spoken": ["ISO 639-6 entity"], "Southern Qiandong Hmong": ["A language of China."], "Southern Qiandong Hmong Written": ["Written forms of the Southern Qiandong Hmong language."], "Southern Qiandong Hmong Written Hmong Script": ["ISO 639-6 entity"], "Southern Qiandong Hmong Written Latin Script": ["A written form of the Southern Qiandong Hmong language."], "Southern Qiandong Hmong Spoken": ["ISO 639-6 entity"], "Northern Hmong": ["ISO 639-6 entity"], "Eastern Xiangxi Hmong": ["ISO 639-6 entity"], "Eastern Xiangxi Hmong Spoken": ["Dialects of the Eastern Xiangxi Hmong language."], "Chi-Wei": ["ISO 639-6 entity"], "Layi-Ping": ["ISO 639-6 entity"], "Danan-Shan": ["ISO 639-6 entity"], "East Guizhou Cluster": ["ISO 639-6 entity"], "Bu-Nao Bunu": ["A language of China."], "Bu-Nao Bunu Spoken": ["ISO 639-6 entity"], "Dongnu": ["ISO 639-6 entity"], "Nunu": ["ISO 639-6 entity"], "Pu No": ["ISO 639-6 entity"], "Nao Kloa": ["ISO 639-6 entity"], "Qiung-Nai": ["ISO 639-6 entity"], "Pa-Wu": ["ISO 639-6 entity"], "Wunai Bunu": ["A language of China."], "Wunai Bunu Spoken": ["ISO 639-6 entity"], "Younuo Bunu": ["A language of China."], "Jiongnai Bunu": ["ISO 639-6 entity"], "Jiongnai Bunu Spoken": ["ISO 639-6 entity"], "Patengic Cluster": ["ISO 639-6 entity"], "Pa-Hng": ["ISO 639-6 entity"], "Pa-Hng Spoken": ["ISO 639-6 entity"], "Mein": ["ISO 639-6 entity"], "Biao-Jiao Mien": ["A language of China."], "Biao-Jiao Mien Spoken": ["The Biao-Jiao Mien spoken language and its dialects."], "Bio Min": ["A dialect of the Biao-Jiao Mien language."], "Jiaogong Mian": ["A dialect of the Biao-Jiao Mien language."], "Iu Mien": ["A language of China, Laos, Thailand and Viet Nam."], "Iu Mien Written": ["Written forms of the Iu Mien language."], "Lu Mien Written Latin Script": ["ISO 639-6 entity"], "Lu Mien Spoken": ["Dialects of the Lu Mien language."], "Ao-Yao": ["A dialect of the Iu Mien language."], "Chasan-Yao": ["A dialect of the Iu Mien language."], "Shanzi-Yao": ["A dialect of the Iu Mien language."], "Ling-Yun": ["A dialect of the Iu Mien language."], "Hua-Lan": ["A dialect of the Iu Mien language."], "Hua": ["A dialect of the Iu Mien language."], "Sung": ["A dialect of the Iu Mien language."], "Tien-Tiao-Tchaine": ["A dialect of the Iu Mien language."], "Hsing-An": ["A dialect of the Iu Mien language."], "Chiangrai": ["A dialect of the Iu Mien language."], "Tai-Pan": ["A dialect of the Iu Mien language."], "Hai-Ninh": ["A dialect of the Iu Mien language."], "Cao-Long": ["A dialect of the Iu Mien language."], "Man-Do": ["A dialect of the Iu Mien language."], "Deo-Tien": ["A dialect of the Iu Mien language."], "Quan-Chet": ["A dialect of the Iu Mien language."], "Quan-Coc": ["A dialect of the Iu Mien language."], "Quan-Trang": ["A dialect of the Iu Mien language."], "Son-Trang": ["A dialect of the Iu Mien language."], "Iu-Mien-Laos": ["A dialect of the Iu Mien language."], "Kim Mun": ["ISO 639-6 entity"], "Kim Mun Written": ["Written forms of the Kim Mun language."], "Kim Mun Written Latin Script": ["A written form of the Kim Mun language."], "Kim Mun Spoken": ["ISO 639-6 entity"], "Dao Quan": ["ISO 639-6 entity"], "Dao Ho": ["ISO 639-6 entity"], "Kim-Mun-Guangxi": ["ISO 639-6 entity"], "Kim-Mun-Guizhou": ["ISO 639-6 entity"], "Kim-Mun-Laos": ["ISO 639-6 entity"], "Kim-Mun-Vietnam": ["ISO 639-6 entity"], "Biao Mon": ["A language of China."], "Biao Mon Spoken": ["The Biao Mon spoken language and its dialects."], "Min Yao": ["A dialect of the Biao Mon language."], "Shi Mun": ["A dialect of the Biao Mon language."], "Dzao Min": ["A language of China."], "Ho Nte": ["ISO 639-6 entity"], "She": ["ISO 639-6 entity"], "She Spoken": ["ISO 639-6 entity"], "Luo-Fu": ["ISO 639-6 entity"], "Luo-Fu Spoken": ["ISO 639-6 entity"], "Lian-Hua": ["ISO 639-6 entity"], "Lian-Hua Spoken": ["ISO 639-6 entity"], "Nilo-Saharan": ["A family of African languages spoken in the northern half of Africa."], "Maban": ["ISO 639-6 entity"], "Mabang": ["ISO 639-6 entity"], "Kendeje": ["A language of Chad."], "Kendeje Spoken": ["ISO 639-6 entity"], "Yali": ["ISO 639-6 entity"], "Faranga": ["ISO 639-6 entity"], "Maba Cluster": ["ISO 639-6 entity"], "Maba": ["ISO 639-6 entity"], "Maba Written": ["ISO 639-6 entity"], "Maba Written Latin Script": ["Maba language written with the Latin Script."], "Maba Spoken": ["ISO 639-6 entity"], "Ndaba": ["ISO 639-6 entity"], "Ndala": ["ISO 639-6 entity"], "Langa": ["ISO 639-6 entity"], "Kajangan": ["ISO 639-6 entity"], "Nyabadan": ["ISO 639-6 entity"], "Kelingan": ["ISO 639-6 entity"], "Abkar": ["ISO 639-6 entity"], "Bakha": ["ISO 639-6 entity", "ISO 639-6 entity"], "Uled-Jemaa": ["ISO 639-6 entity"], "Uled-Jemaa Spoken": ["ISO 639-6 entity"], "Kujinga": ["ISO 639-6 entity"], "Kujinga Soken": ["ISO 639-6 entity"], "Kondongo": ["ISO 639-6 entity"], "Kondongo Spoken": ["ISO 639-6 entity"], "Keshmere": ["ISO 639-6 entity"], "Keshmere Spoken": ["ISO 639-6 entity"], "Ab-Sharin": ["ISO 639-6 entity"], "Ab-Sharin Spoken": ["The dialects of the Ab-Sharin language."], "Marfa": ["ISO 639-6 entity"], "Marfa Spoken": ["ISO 639-6 entity"], "Marfa-A": ["ISO 639-6 entity"], "Karanga": ["A language of Chad."], "Karanga Written": ["ISO 639-6 entity"], "Karanga Spoken": ["ISO 639-6 entity"], "Mooyo": ["ISO 639-6 entity"], "Mooyo Spoken": ["ISO 639-6 entity"], "Faala": ["ISO 639-6 entity"], "Faala Spoken": ["ISO 639-6 entity"], "Bakha Spoken": ["ISO 639-6 entity"], "Konyare": ["ISO 639-6 entity"], "Konyare Spoken": ["ISO 639-6 entity"], "Mesalit Cluster": ["ISO 639-6 entity"], "Massalat": ["A language of Chad."], "Massalat Spoken": ["ISO 639-6 entity"], "Surbakhal": ["ISO 639-6 entity"], "Surbakhal Spoken": ["ISO 639-6 entity"], "Masalit": ["ISO 639-6 entity"], "Masalit Spoken": ["ISO 639-6 entity"], "Masala-N": ["ISO 639-6 entity"], "Masala-W": ["ISO 639-6 entity"], "Masala-S": ["ISO 639-6 entity"], "Runga-Kibet Cluster": ["ISO 639-6 entity"], "Runga": ["ISO 639-6 entity"], "Runga Spoken": ["ISO 639-6 entity"], "Aykin-Dang": ["ISO 639-6 entity"], "Aykin-Dang Spoken": ["ISO 639-6 entity"], "Runga-Ndele": ["ISO 639-6 entity"], "Runga-Ndele Spoken": ["ISO 639-6 entity"], "Muro": ["ISO 639-6 entity"], "Muro Spoken": ["ISO 639-6 entity"], "Dagel": ["ISO 639-6 entity"], "Dagel Spoken": ["ISO 639-6 entity"], "Kibet": ["A language of Chad."], "Kibet Spoken": ["ISO 639-6 entity"], "Mige": ["ISO 639-6 entity"], "Mige Spoken": ["ISO 639-6 entity"], "Mimi Gaudefroy-Demboyne's": ["ISO 639-6 entity"], "Mimi Gaudefroy-Demboyne\u2019s Written": ["ISO 639-6 entity"], "Mimi Gaudefroy-Demboyne\u2019s Written Latin Script": ["ISO 639-6 entity"], "Fur Cluster": ["ISO 639-6 entity"], "Fur": ["A language of Sudan and Chad."], "Fur Written": ["The written forms of the Fur language."], "Fur Written Arabic Script": ["A written form of the Fur language."], "Fur Written Latin Script": ["A written form of the Fur language."], "Fur Spoken": ["The dialects of the Fur language."], "Amdang": ["A language of Chad."], "Amdang Spoken": ["The spoken Amdang language and its dialects."], "Mimi": ["ISO 639-6 entity"], "Mimi Spoken": ["The spoken Mimi language and its dialects."], "Mimi-Goz": ["A dialect of the Mimi language."], "Mimi-Bel": ["A dialect of the Mimi language."], "East Sudanic": ["ISO 639-6 entity"], "Kuliak": ["ISO 639-6 entity"], "Ik Cluster": ["ISO 639-6 entity"], "Ik": ["A language of the Kuliak subgroup of Nilo-Saharan languages spoken by the Ik people living in the mountains of northeastern Uganda near the border with Kenya."], "IK Written": ["The written forms of the IK language."], "Ik Written Latin Script": ["Ik language written with the Latin Script."], "Ik Spoken": ["The dialects of the Ik language."], "Ngangea-So Cluster": ["ISO 639-6 entity"], "Nyang\u2019i": ["ISO 639-6 entity"], "Nyang\u2019i Spoken": ["ISO 639-6 entity"], "So (Democratic Republic Of Congo)": ["ISO 639-6 entity"], "So (Democratic Republic Of Congo) Written": ["ISO 639-6 entity"], "So (Democratic Republic Of Congo) Spoken": ["ISO 639-6 entity"], "Eastern Sudanic Western": ["ISO 639-6 entity"], "Tama": ["A Nilo-Saharan language spoken in western Sudan and eastern Chad."], "Tama Sungor Cluster": ["A cluster of Tama languages."], "Tama (Chad)": ["Tama of Chad."], "Tama (Chad) Written": ["ISO 639-6 entity"], "Tama (Chad) Written Latin Script": ["A language written with the latin alphabet."], "Tama (Chad) Spoken": ["The spoken variants of the Tama language of Chad."], "Jabaal": ["Tama dialect spoken at west of Jabal Muun in Sudan, centered in Sali'a."], "Jabaal Spoken": ["ISO 639-6 entity"], "Haura": ["A dialect of the Tama language."], "Shale": ["A language of Sudan."], "Shale Spoken": ["The dialects of the Shaale language."], "Assangori": ["A Nilo-Saharan language spoken in western Sudan and eastern Chad."], "Assangori Spoken": ["The dialects of the Assangori language."], "Songor-A": ["A dialect of the Assangori language."], "Girga": ["Assangori as spoken by Girga people.", "An ethnic group of Chad."], "Wallad-Dulla": ["A dialect of the Assangori language.", "An ethnic group of Chad."], "Bognak": ["ISO 639-6 entity"], "Bognak Spoken": ["ISO 639-6 entity"], "Erenga": ["A Tama dialect spoken by the Erenga ethnic group of Sudan.", "An ethnic group of Sudan."], "Erenga Spoken": ["The spoken variants of the Erenga language."], "Merarit Cluster": ["A cluster of Tama languages."], "Mararit": ["ISO 639-6 entity"], "Mararit Spoken": ["ISO 639-6 entity"], "Abu-Sharib": ["ISO 639-6 entity"], "Abu-Sharib Spoken": ["The dialects of the Abu-Sharib language."], "Daju": ["Languages spoken in isolated pockets across a wide area of Sudan and Chad, in parts of the regions of Kordofan, Darfur, and Wadai."], "Daju Western": ["ISO 639-6 entity"], "Saarong-Ge": ["ISO 639-6 entity"], "Saarong-Ge Spoken": ["ISO 639-6 entity"], "Bokor-U-Ge": ["ISO 639-6 entity"], "Bokor-U-Ge Spoken": ["ISO 639-6 entity"], "Dar Sila Daju": ["Language spoken around Goz-Be\u00efda, in the border between Chad and Sudan."], "Dar Sila Daju Spoken": ["ISO 639-6 entity"], "Dar Daju Daju": ["Language of the Saaronge people of Chad."], "Dar Daju Daju Spoken": ["ISO 639-6 entity"], "Eref": ["ISO 639-6 entity"], "Bardangal": ["ISO 639-6 entity"], "Gadjira": ["ISO 639-6 entity"], "Zalingei": ["ISO 639-6 entity", "Town in Sudan."], "Zalingei Spoken": ["ISO 639-6 entity"], "Dar Fur Daju": ["Language spoken in the Daju Hills, in the region of Nyala and other regions of Sudan."], "Dar Fur Daju Spoken": ["ISO 639-6 entity"], "Baygo": ["An extinct language once spoken in Sudan."], "Lagowa": ["Language spoken in the Daju Hills, in the region of Nyala and other regions of Sudan."], "Lagowa Spoken": ["ISO 639-6 entity"], "Njalgulgule": ["Language spoken in Southern Sudan."], "Njalgulgule Spoken": ["ISO 639-6 entity"], "Nyool-Sopo": ["ISO 639-6 entity"], "Nyool-Nyukri": ["ISO 639-6 entity"], "Daju Eastern Cluster": ["ISO 639-6 entity"], "Logorik": ["Language spoken at the northeast of Kadugli in northern Sudan."], "Logorik Spoken": ["ISO 639-6 entity"], "Liguri": ["ISO 639-6 entity"], "Saburi": ["ISO 639-6 entity"], "Saburi Spoken": ["ISO 639-6 entity"], "Tallau": ["ISO 639-6 entity"], "Tallau Spoken": ["ISO 639-6 entity"], "Shatt": ["Language spoken in the Shatt Hills in northern Sudan.", "An ethnic group of Sudan who speak the Shatt Language."], "Shatt Written": ["ISO 639-6 entity"], "Shatt Spoken": ["ISO 639-6 entity"], "Daman-Shatt": ["ISO 639-6 entity"], "Safia-Shatt": ["ISO 639-6 entity"], "Tebeldia-Shatt": ["ISO 639-6 entity"], "East Sudanic Eastern": ["ISO 639-6 entity"], "Nubian": ["A group of languages considered to be a subfamily within Eastern Sudanic, and ultimately within Nilo-Saharan. Within Eastern Sudanic, it is thought to be most closely related to the Taman languages."], "Nubian Northern Cluster": ["ISO 639-6 entity"], "Nobiin": ["A Northern Nubian language of the Nilo-Saharan phylum, currently spoken along the banks of the Nile river in southern Egypt and northern Sudan by approximately 495,000 Nubians."], "Nobiin Written": ["The written forms of the Nobiin language."], "Nobiin Written Arab Script": ["A written form of the Nobiin language."], "Nobiin Written Latin Script": ["A written form of the Nobiin language."], "Nobiin Spoken": ["The dialects of the Nobiin language."], "Fiadidja": ["ISO 639-6 entity"], "Fiadidja Spoken": ["ISO 639-6 entity"], "Mahas": ["ISO 639-6 entity"], "Mahas Spoken": ["ISO 639-6 entity"], "Nubian Central": ["ISO 639-6 entity"], "Kenuz": ["ISO 639-6 entity"], "Kenuz Written": ["ISO 639-6 entity"], "Kenuz Spoken": ["ISO 639-6 entity"], "Dongola": ["ISO 639-6 entity"], "Dongola Spoken": ["ISO 639-6 entity"], "Hill Nubian": ["ISO 639-6 entity"], "Kithoniri- Wunci Cluster": ["ISO 639-6 entity"], "El Hugeirat": ["A language of Sudan."], "El Hugeirat Spoken": ["The dialects of the El Hugeirat language."], "Kodin-Ni-Ai": ["ISO 639-6 entity"], "Kodin-Ni-Ai Spoken": ["ISO 639-6 entity"], "Dair": ["A language of Sudan."], "Dair Spoken": ["The dialects of the Dair language."], "Kadaru-Ghulfan Cluster": ["ISO 639-6 entity"], "Ghulfan": ["A language of Sudan."], "Ghulfan Spoken": ["The dialects of the Ghulfan language."], "Kurgul": ["The dialects of the Ghulfan language."], "Morung": ["The dialects of the Ghulfan language."], "Debri": ["ISO 639-6 entity"], "Debri Spoken": ["ISO 639-6 entity"], "Kadaru": ["ISO 639-6 entity"], "Kadaru Spoken": ["ISO 639-6 entity"], "Kururuu": ["ISO 639-6 entity"], "Kurtala": ["ISO 639-6 entity"], "Dabatna": ["ISO 639-6 entity"], "Kuldaji": ["ISO 639-6 entity"], "Karko": ["A language of Sudan."], "Karko Spoken": ["ISO 639-6 entity"], "Wali": ["ISO 639-6 entity"], "Wali Spoken": ["ISO 639-6 entity"], "Ginuk": ["ISO 639-6 entity"], "Ginuk Spoken": ["ISO 639-6 entity"], "Tabaq": ["ISO 639-6 entity"], "Tabaq Spoken": ["ISO 639-6 entity"], "Dilling": ["A language of Sudan."], "Dilling Spoken": ["The Dilling spoken language and its dialects."], "Nubian Western Cluster": ["ISO 639-6 entity"], "Midob": ["ISO 639-6 entity"], "Midob Spoken": ["ISO 639-6 entity"], "Urrti": ["ISO 639-6 entity"], "Torti": ["ISO 639-6 entity"], "Shalkota": ["ISO 639-6 entity"], "Birked Cluster": ["ISO 639-6 entity"], "Birked": ["An extinct language of Sudan."], "Haraza": ["ISO 639-6 entity"], "Nyimang Cluster": ["ISO 639-6 entity"], "Ama (Sudan)": ["ISO 639-6 entity"], "Ama (Sudan) Written": ["ISO 639-6 entity"], "Ama (Sudan) Written Latin Script": ["ISO 639-6 entity"], "Ama (Sudan) Spoken": ["ISO 639-6 entity"], "I-Nyimang": ["ISO 639-6 entity"], "Mandal": ["ISO 639-6 entity"], "Afitti": ["Language of the ethnic group in Shamal Kurdufan in Sudan."], "Afitti Spoken": ["ISO 639-6 entity"], "Ditti": ["ISO 639-6 entity"], "Ditti Spoken": ["ISO 639-6 entity"], "Unietti": ["ISO 639-6 entity"], "Dinik": ["ISO 639-6 entity"], "Temein Cluster": ["ISO 639-6 entity"], "Temein": ["ISO 639-6 entity"], "Temein Written": ["ISO 639-6 entity"], "Temein Written Latin Script": ["ISO 639-6 entity"], "Temein Spoken": ["ISO 639-6 entity"], "Keiga-Jirru": ["ISO 639-6 entity"], "Keiga-Jirru Spoken": ["ISO 639-6 entity"], "Tese": ["A language of Sudan."], "Tese Spoken": ["The dialects of the Tese language."], "Umm-Danab": ["ISO 639-6 entity"], "Umm-Danab Spoken": ["ISO 639-6 entity"], "Thoma-Ma-Miri": ["ISO 639-6 entity"], "Thoma-Ma-Miri Written": ["Written forms of the Thoma-Ma-Miri language."], "Thoma-Ma-Miri Written Latin Script": ["A written form of the Thoma-Ma-Miri language."], "Thoma-Ma-Miri Spoken": ["ISO 639-6 entity"], "Thoma-Ma-Dhalla": ["ISO 639-6 entity"], "Thoma-Ma-Dhalla Spoken": ["ISO 639-6 entity"], "Thoma-Ma-Dholubi": ["ISO 639-6 entity"], "Thoma-Ma-Dholubi Spoken": ["ISO 639-6 entity"], "Kufo": ["ISO 639-6 entity"], "Kufo Spoken": ["ISO 639-6 entity"], "Kanga": ["A Kadu language spoken in Kordofan.", "A language of Sudan."], "Kanga Spoken": ["ISO 639-6 entity"], "Abu-Sinun": ["ISO 639-6 entity"], "Chiroro- Kursi": ["ISO 639-6 entity"], "Kufa- Lima": ["ISO 639-6 entity"], "Krongo Abdalla": ["ISO 639-6 entity"], "Tumma- Sangali": ["ISO 639-6 entity"], "Katcha-Kadugli-Miri": ["A Kadu language spoken in Kordofan."], "Katcha-Kadugli-Miri Spoken": ["ISO 639-6 entity"], "Damba": ["ISO 639-6 entity"], "Sangali": ["ISO 639-6 entity"], "Belanya": ["ISO 639-6 entity"], "Krongo-Abdallah": ["ISO 639-6 entity"], "Tulishi": ["ISO 639-6 entity"], "Kamdang": ["ISO 639-6 entity"], "Kamdang Spoken": ["ISO 639-6 entity"], "Turuj": ["ISO 639-6 entity"], "Turuj Spoken": ["ISO 639-6 entity"], "Turuj-A": ["ISO 639-6 entity"], "Logoke": ["ISO 639-6 entity"], "Minjimmina": ["ISO 639-6 entity"], "Krongo": ["ISO 639-6 entity", "A language of Sudan."], "Krongo Spoken": ["ISO 639-6 entity"], "Tabanya": ["ISO 639-6 entity"], "Dimodongo": ["ISO 639-6 entity"], "Fama": ["ISO 639-6 entity"], "Tumtum": ["ISO 639-6 entity"], "Talasa": ["ISO 639-6 entity"], "Karondi": ["ISO 639-6 entity"], "Keiga": ["A language of Sudan."], "Keiga Spoken": ["The dialects of the Keiga language."], "Keiga-El-Kheil": ["A dialect of the Keiga language."], "Kalda": ["A dialect of the Keiga language."], "Lubun": ["A dialect of the Keiga language."], "Tummero": ["A dialect of the Keiga language."], "Sani-Mo-Rofik": ["ISO 639-6 entity"], "Nera Cluster": ["ISO 639-6 entity"], "Nara": ["ISO 639-6 entity"], "Higir": ["ISO 639-6 entity"], "Higir Written": ["ISO 639-6 entity"], "Higir Written Ethiopic Script": ["ISO 639-6 entity"], "Higir Written Latin Script": ["Higir language written with the Latin Script."], "Mogareb": ["ISO 639-6 entity"], "Koyta": ["ISO 639-6 entity"], "Santora": ["ISO 639-6 entity"], "Kunama Cluster": ["ISO 639-6 entity"], "Kunama ": ["ISO 639-6 entity"], "Kunama Written": ["ISO 639-6 entity"], "Kunama Written Latin Script": ["Kunama language written with the Latin Script."], "Kunama Written Ethiopic Script": ["ISO 639-6 entity"], "Marda": ["ISO 639-6 entity"], "Aimara": ["A macro language consisting of two languages spoken by the Aymara people of the Andes. It is a Native American language with over a million speakers.", "A native ethnic group in the Andes and Altiplano regions of South America; about 1.6 million live in Bolivia, Peru, Northern Chile, and Northwestern Argentina (in particular in Salta Province)."], "Aimara Spoken": ["The dialects of the Aimara language."], "Sokodasa": ["ISO 639-6 entity"], "Barka": ["ISO 639-6 entity"], "Setiit": ["ISO 639-6 entity"], "Tiika": ["ISO 639-6 entity"], "Bitaama": ["ISO 639-6 entity"], "Ilit": ["ISO 639-6 entity"], "Komuz": ["A family of languages along the Sudan-Ethiopia border. They are believed to belong to the Nilo-Saharan family,"], "Gumuz Cluster": ["A group of languages of the Komuz family."], "Gumuz": ["A language of the Gumuz Cluster spoken in Ethiopia."], "Gumuz Spoken": ["The dialects of the Gumuz language."], "Guba": ["A dialect of the Gumuz language.", "ISO 639-6 entity"], "Wenbera": ["A dialect of the Gumuz language.", "One of the 21 woredas in the Benishangul-Gumuz Region of Ethiopia."], "Sirba": ["A dialect of the Gumuz language."], "Agalo": ["A dialect of the Gumuz language."], "Yaso": ["A dialect of the Gumuz language.", "Of the 21 woredas in the Benishangul-Gumaz Region of Ethiopia."], "Dibate": ["A dialect of the Gumuz language.", "One of the 21 woredas, or districts, in the Benishangul-Gumaz Region of Ethiopia.", "A town in western Ethiopia."], "Metemma": ["A dialect of the Gumuz language.", "One of the 105 woredas in the Amhara Region of Ethiopia.", "A village in northeastern Ethiopia, on the border with Sudan."], "Dakunza": ["A language of the Gumuz Cluster spoken in Ethiopia."], "Sai": ["A language of the Gumuz Cluster spoken in Ethiopia."], "Sese": ["A language of the Gumuz Cluster spoken in Sudan."], "Disoha": ["A language of the Gumuz Cluster spoken in Ethiopia."], "Dekoka": ["A language of the Gumuz Cluster spoken in Sudan."], "Dewiya": ["A language of the Gumuz Cluster spoken in Sudan."], "Kukwaya": ["A language of the Gumuz Cluster spoken in Sudan."], "Gombo": ["A language of the Gumuz Cluster spoken in Ethiopia."], "Jemhwa": ["A language of the Gumuz Cluster spoken in Sudan."], "Modea": ["A language of the Gumuz Cluster spoken in Sudan."], "Welqita": ["A language of the Gumuz Cluster spoken in Ethiopia."], "Eastern Jebel": ["ISO 639-6 entity"], "Aka-Kelo- Molo Cluster": ["ISO 639-6 entity"], "Aka": ["A Nilo-Saharan language spoken in Sudan.", "A Bantu language spoken in Central African Republic and Congo."], "Aka Written": ["Written forms of the Aka language."], "Aka Written Latin Script": ["Aka language written with the Latin Script."], "Aka Written Ethiopic Script": ["Aka language written with the Ethiopic Script."], "Kelo": ["ISO 639-6 entity"], "Ndu-Faa-Kelo": ["ISO 639-6 entity"], "Beni-Sheko": ["ISO 639-6 entity"], "Tornasi": ["ISO 639-6 entity"], "Gaam Cluster": ["ISO 639-6 entity"], "Gaam": ["ISO 639-6 entity"], "Gaam Spoken": ["ISO 639-6 entity"], "Agadi": ["ISO 639-6 entity"], "Bagis": ["ISO 639-6 entity"], "Beek": ["ISO 639-6 entity"], "Bulmut": ["ISO 639-6 entity"], "Kilgu": ["ISO 639-6 entity"], "Kukuli": ["ISO 639-6 entity"], "Mugum": ["ISO 639-6 entity"], "Sidak": ["ISO 639-6 entity"], "Berta Cluster": ["ISO 639-6 entity"], "Berta": ["A language spoken in Sudan and Ethiopia."], "Berta Spoken": ["The Berta spoken language and its dialects."], "Shuru": ["A dialect of the Berta language."], "Bake": ["A dialect of the Berta language."], "Undu": ["A dialect of the Berta language."], "Mayu": ["A dialect of the Berta language."], "Fadashi": ["A dialect of the Berta language."], "Dabuso": ["A dialect of the Berta language."], "Gamila": ["ISO 639-6 entity"], "Gobato": ["ISO 639-6 entity"], "Koman Cluster": ["A group of languages of the Komuz family."], "Gule": ["A Nilo-Saharan language that used to be spoken by the Gule people.", "An ethnic group belonging to the Shilluk in Northern Sudan."], "Anej Written": ["Written forms of the Anej language."], "Anej Written Latin Script": ["Anej language written with the Latin Script."], "Anej Written Ethiopic Script": ["Anej language written with the Ethiopic Script."], "Uduk": ["ISO 639-6 entity"], "Uduk Spoken": ["ISO 639-6 entity"], "Twam-Pa-C": ["ISO 639-6 entity"], "Twam-Pa-S": ["ISO 639-6 entity"], "Kwama": ["A language of Ethiopia."], "Komo (Sudan)": ["ISO 639-6 entity"], "Komo (Sudan) Spoken": ["ISO 639-6 entity"], "Beilla": ["ISO 639-6 entity"], "Koma Of Begi": ["ISO 639-6 entity"], "Koma Of Daga": ["ISO 639-6 entity"], "Madiin": ["ISO 639-6 entity"], "Opuuo": ["A language of Ethiopia and Sudan."], "Buldiit": ["ISO 639-6 entity"], "Kusgilo": ["ISO 639-6 entity"], "Surma": ["ISO 639-6 entity"], "Surmic South": ["ISO 639-6 entity"], "Surmic Southwest": ["ISO 639-6 entity"], "Didinga -Murle ": ["ISO 639-6 entity"], "Didinga Longarim Cluster": ["ISO 639-6 entity"], "Narim": ["A language of Sudan."], "Narim Written": ["Written forms of the Narim language."], "Narim Written Latin Script": ["A written form of the Narim language."], "Narim Written Ethiopic Script": ["ISO 639-6 entity"], "Didinga": ["ISO 639-6 entity", "A language of Sudan."], "Didinga Written": ["Written forms of the Didinga language."], "Didinga Written Latin Script": ["A written form of the Didinga language."], "Didinga Written Ethiopic Script": ["ISO 639-6 entity"], "Didinga Spoken": ["ISO 639-6 entity"], "Lowudo": ["ISO 639-6 entity", "ISO 639-6 entity"], "Chukudom": ["ISO 639-6 entity"], "Murle Cluster": ["ISO 639-6 entity"], "Murle": ["A language of Sudan and Ethiopia."], "Murle Spoken": ["ISO 639-6 entity"], "Ol-Ci-Lotilla": ["ISO 639-6 entity"], "Ol-Ci-Bom": ["ISO 639-6 entity"], "Olam": ["ISO 639-6 entity"], "Murle-Omo": ["ISO 639-6 entity"], "Tenet Cluster": ["ISO 639-6 entity"], "Tennet": ["ISO 639-6 entity"], "Tennet Written": ["ISO 639-6 entity"], "Tennet Spoken": ["ISO 639-6 entity"], "Kacipo- Balesi Cluster": ["ISO 639-6 entity"], "Zilmamu": ["ISO 639-6 entity"], "Zilmamu Spoken": ["The dialects of the Zilmamu language."], "Bale-Si": ["ISO 639-6 entity"], "Bale-Si Spoken": ["ISO 639-6 entity"], "Kacipo-Balesi": ["A language of Sudan and Ethiopia."], "Kacipo Spoken": ["ISO 639-6 entity"], "Kwegu": ["ISO 639-6 entity", "ISO 639-6 entity"], "Pastoral": ["ISO 639-6 entity"], "Me'en Cluster": ["ISO 639-6 entity"], "Me\u2019en": ["ISO 639-6 entity"], "Me\u2019en Written": ["ISO 639-6 entity"], "Me\u2019en Written Ethiopic Script": ["ISO 639-6 entity"], "Me\u2019en Spoken": ["ISO 639-6 entity"], "Bodi": ["ISO 639-6 entity"], "Tishena": ["ISO 639-6 entity"], "Suri Cluster": ["ISO 639-6 entity"], "Mursi": ["ISO 639-6 entity"], "Mursi Written": ["ISO 639-6 entity"], "Mursi Spoken": ["ISO 639-6 entity"], "Tirma": ["ISO 639-6 entity"], "Tirma Spoken": ["ISO 639-6 entity"], "Suri": ["ISO 639-6 entity"], "Suri Written": ["ISO 639-6 entity"], "Suri Spoken": ["ISO 639-6 entity"], "Kwegoi Cluster": ["ISO 639-6 entity"], "Kwegu Spoken": ["ISO 639-6 entity"], "Muguji-Apo": ["ISO 639-6 entity"], "Muguji-Apo Spoken": ["ISO 639-6 entity"], "Majang-Shabo Cluster": ["ISO 639-6 entity"], "Majang": ["ISO 639-6 entity", "ISO 639-6 entity"], "Majang Spoken": ["ISO 639-6 entity"], "Shabo": ["ISO 639-6 entity"], "Shabo Spoken": ["ISO 639-6 entity"], "Nilotic": ["ISO 639-6 entity"], "Nilotic Western": ["ISO 639-6 entity"], "Dinka Nuer": ["ISO 639-6 entity"], "Dinka Cluster": ["ISO 639-6 entity"], "Northeastern Dinka": ["A language of Sudan."], "Northeastern Dinka Written": ["The written versions of the Northeastern Dink language."], "Northeastern Dinka Written Latin Script": ["The Northeastern Dinka language written with the Latin script."], "Northeastern Dinka Spoken": ["The Northeastern Dinka spoken language and its dialects."], "Abialang": ["A dialect of the Northeastern Dinka language."], "Paloc": ["A dialect of the Northeastern Dinka language."], "Dongjol": ["A dialect of the Northeastern Dinka language."], "Ngok": ["ISO 639-6 entity"], "Ngok Spoken": ["ISO 639-6 entity"], "Thoi- Luac": ["ISO 639-6 entity"], "Thoi- Luac Spoken": ["ISO 639-6 entity"], "Thoi": ["ISO 639-6 entity"], "Luac": ["ISO 639-6 entity"], "Rut": ["ISO 639-6 entity"], "Rut Spoken": ["ISO 639-6 entity"], "Northwestern Dinka": ["A language of Sudan."], "Northwestern Dinka Written": ["The written versions of the Northwestern Dinka language."], "Northwestern Dinka Written Latin Script": ["The Northwestern Dinka language written with the Latin script."], "Northwestern Dinka Spoken": ["The Northwestern Dinka spoken language and its dialects."], "Pawang": ["A dialect of the Northwestern Dinka language."], "Kwil": ["A dialect of the Northwestern Dinka language."], "Awet": ["A dialect of the Northwestern Dinka language."], "Alor": ["A dialect of the Northwestern Dinka language.", "A language of Indonesia (Nusa Tenggara)."], "Jok": ["A dialect of the Northwestern Dinka language."], "Pan-Aru": ["A dialect of the Northwestern Dinka language."], "Malual- Tuic": ["ISO 639-6 entity"], "Malual- Tuic Spoken": ["ISO 639-6 entity"], "Malual": ["ISO 639-6 entity"], "Abiem": ["ISO 639-6 entity"], "Tuic": ["ISO 639-6 entity"], "Palioupiny": ["ISO 639-6 entity"], "Palioupiny Spoken": ["ISO 639-6 entity"], "Gomjuer": ["ISO 639-6 entity"], "Cimel": ["ISO 639-6 entity"], "Ajuet": ["ISO 639-6 entity"], "Akuang-Ayat": ["ISO 639-6 entity"], "Southwestern Dinka": ["A language of Sudan."], "Southwestern Dinka Written": ["The written versions of the Southwestern Dinka language."], "Southwestern Dinka Written Latin Script": ["The Southwestern Dinka language written with the Latin script."], "Southwestern Dinka Spoken": ["The Southwestern Dinka spoken language and its dialects."], "Rek-C": ["A dialect of the Southwestern Dinka language."], "Paliet": ["A dialect of the Southwestern Dinka language."], "Luac-W": ["A dialect of the Southwestern Dinka language."], "Aguok": ["A dialect of the Southwestern Dinka language."], "Apuk": ["A dialect of the Southwestern Dinka language."], "Awan": ["A dialect of the Southwestern Dinka language."], "Lau-SW": ["A dialect of the Southwestern Dinka language."], "Rek-V": ["A dialect of the Southwestern Dinka language."], "Gok": ["ISO 639-6 entity"], "Gok Spoken": ["ISO 639-6 entity"], "South Central Dinka": ["A language of Sudan."], "South Central Dinka Spoken": ["The South Central Dinka spoken language and its dialects."], "Agar": ["A dialect of the South Central Dinka language."], "Ciec": ["A dialect of the South Central Dinka language."], "Aliap": ["ISO 639-6 entity"], "Aliap Spoken": ["The dialects of the Aliap language."], "Aker": ["A dialect of the Aliap language."], "Thany": ["A dialect of the Aliap language."], "Southeastern Dinka": ["A language of Sudan."], "Southeastern Dinka Spoken": ["The Southeastern Dinka spoken language and its dialects."], "Bor-Gok": ["A dialect of the Southeastern Dinka language."], "Athoc": ["A dialect of the Southeastern Dinka language."], "Twi": ["A language of the Niger-Congo family spoken in Ghana."], "Nyarueng- Ghol": ["ISO 639-6 entity"], "Nyarueng- Ghol Spoken": ["ISO 639-6 entity"], "Nyarueng": ["ISO 639-6 entity"], "Ghol": ["ISO 639-6 entity"], "Nuer Cluster": ["ISO 639-6 entity"], "Nuer": ["ISO 639-6 entity"], "Thiang": ["ISO 639-6 entity"], "Gawaar": ["ISO 639-6 entity"], "Door- Nyuong": ["ISO 639-6 entity"], "Door- Nyuong Spoken": ["ISO 639-6 entity"], "Door": ["ISO 639-6 entity"], "Nyuong": ["ISO 639-6 entity"], "Dar-Cieng": ["ISO 639-6 entity"], "Dar-Cieng Spoken": ["ISO 639-6 entity"], "Aak": ["ISO 639-6 entity"], "Dok": ["ISO 639-6 entity"], "Jagei": ["ISO 639-6 entity"], "Leek- Laak": ["ISO 639-6 entity"], "Leek- Laak Spoken": ["ISO 639-6 entity"], "Leek": ["ISO 639-6 entity"], "Laak": ["ISO 639-6 entity"], "Bul": ["ISO 639-6 entity"], "Jikany-W": ["ISO 639-6 entity"], "Nuer-East": ["ISO 639-6 entity"], "Jikany-E": ["ISO 639-6 entity"], "Reel": ["A language of Sudan."], "Reel Spoken": ["The Reel spoken language and its dialects."], "Kuek-Rorkec": ["A dialect of the Reel language."], "Apak": ["A dialect of the Reel language."], "Aril": ["A dialect of the Reel language."], "Jilek": ["A dialect of the Reel language."], "Akot": ["A dialect of the Reel language."], "Luo": ["A language of Cameroon and Tanzania", "ISO 639-6 entity"], "Luo Northern": ["ISO 639-6 entity"], "Shilluk Cluster": ["ISO 639-6 entity"], "Shilluk": ["ISO 639-6 entity"], "Dho-Colo-Western": ["ISO 639-6 entity"], "Dho-Colo-Eastern": ["ISO 639-6 entity"], "Anuak Cluster": ["ISO 639-6 entity"], "Anuak": ["A language of Sudan and Ethiopia."], "Adongo": ["ISO 639-6 entity"], "Lul": ["ISO 639-6 entity"], "Openo": ["ISO 639-6 entity"], "Ciro": ["ISO 639-6 entity"], "Pari Cluster": ["ISO 639-6 entity"], "P\u00e4ri": ["ISO 639-6 entity"], "Thuri Cluster": ["ISO 639-6 entity"], "Thuri": ["ISO 639-6 entity"], "Dhe-Bodho": ["ISO 639-6 entity"], "Dhe-Colo-S": ["ISO 639-6 entity"], "Jur Manangeer": ["ISO 639-6 entity"], "Jur Cluster": ["ISO 639-6 entity"], "Luwo": ["ISO 639-6 entity"], "Bor Cluster": ["ISO 639-6 entity"], "Belanda Bor": ["A language of Sudan."], "Dhe-Bor-N": ["ISO 639-6 entity"], "Dhe-Bor-W": ["ISO 639-6 entity"], "Dhe-Bor-E": ["ISO 639-6 entity"], "Luo Southen": ["ISO 639-6 entity"], "Luo Acholi": ["ISO 639-6 entity"], "Alur Acholi Cluster": ["ISO 639-6 entity"], "Alur": ["A language of Democratic Republic of the Congo and Uganda"], "Alur Spoken": ["The Alur spoken language and its dialects."], "Aluur-A": ["A dialect of the Alur language."], "Nam": ["A dialect of the Alur language."], "Ma-Mbisa": ["A dialect of the Alur language."], "Nyoro": ["A dialect of the Alur language."], "Lango Acholi Cluster": ["ISO 639-6 entity"], "Dok-Acholi": ["ISO 639-6 entity"], "Log-Acholi": ["ISO 639-6 entity"], "Log-Me-Labwor": ["ISO 639-6 entity"], "Dho-Pa-Lwo": ["ISO 639-6 entity"], "Nyakwai": ["ISO 639-6 entity"], "Lango": ["A language of Uganda.", "A language of Sudan."], "Kumam Cluster": ["ISO 639-6 entity"], "Kumam": ["ISO 639-6 entity"], "Adhola Cluster": ["ISO 639-6 entity"], "Adhola": ["A language of Uganda."], "Adhola Written": ["The written versions of the Adhola language."], "Adhola Spoken": ["The dialects of the Adhola language."], "Luo Cluster": ["ISO 639-6 entity"], "Maban-Burun": ["ISO 639-6 entity"], "Burun Cluster": ["ISO 639-6 entity"], "Ragreig": ["ISO 639-6 entity"], "Burun": ["A language of Sudan."], "Burun Spoken": ["The Burun spoken language and its dialects."], "Maiak": ["ISO 639-6 entity"], "Mughaja": ["ISO 639-6 entity"], "Bogon": ["ISO 639-6 entity"], "Bogon Spoken": ["The dialects of the Bogon language."], "Tarak": ["ISO 639-6 entity"], "Mufwa": ["ISO 639-6 entity"], "Maban Cluster": ["ISO 639-6 entity"], "Gerawi": ["ISO 639-6 entity"], "Begu": ["ISO 639-6 entity"], "Begu Spoken": ["The dialects of the Begu language."], "Jumjum": ["A language of Sudan."], "Jumjum Spoken": ["The dialects of the Jumjum language."], "Tunya": ["A dialect of the Jumjum language."], "Terta": ["A dialect of the Jumjum language."], "Wadega": ["ISO 639-6 entity"], "Mabaan": ["ISO 639-6 entity"], "Mabaan Spoken": ["ISO 639-6 entity"], "Nilotic-Eastern": ["ISO 639-6 entity"], "Bari Cluster": ["ISO 639-6 entity"], "Mandari ": ["ISO 639-6 entity"], "Mandari Written": ["Written forms of the Mandari language."], "Mandari Written Latin Script": ["A written form of the Mandari language."], "Mandari Spoken": ["ISO 639-6 entity"], "Kutuk-Na-Mundari": ["ISO 639-6 entity"], "Kutuk-Na-Mundari Spoken": ["ISO 639-6 entity"], "Bari Written": ["ISO 639-6 entity"], "Bari Spoken": ["The dialects of the Bari language."], "Nyangbara": ["ISO 639-6 entity"], "Nyangbara Spoken": ["ISO 639-6 entity"], "Nyangbara-NW": ["ISO 639-6 entity"], "Nyangbara-NE": ["ISO 639-6 entity"], "Nyangbara-S": ["ISO 639-6 entity"], "P\u00f6julu": ["ISO 639-6 entity"], "P\u00f6julu Spoken": ["ISO 639-6 entity"], "P\u00f6julu-N": ["ISO 639-6 entity"], "P\u00f6julu-C": ["ISO 639-6 entity"], "P\u00f6julu-S": ["ISO 639-6 entity"], "P\u00f6julu-SW": ["ISO 639-6 entity"], "P\u00f6julu-SE": ["ISO 639-6 entity"], "Nyepu": ["ISO 639-6 entity"], "Nyepu Spoken": ["ISO 639-6 entity"], "Kutuk-Na-Kuku": ["ISO 639-6 entity"], "Kutuk-Na-Kuku Spoken": ["ISO 639-6 entity"], "Ligo": ["ISO 639-6 entity"], "Ligo Spoken": ["ISO 639-6 entity"], "Kakwa": ["A language of the Bari family spoken by the Kakwa people in northwestern Uganda, South Sudan and Orientale province of the Democratic Republic of the Congo."], "Kakwa Written": ["The written forms of the Kakwa language."], "Kakwa Spoken": ["The dialects of the Kakwa language."], "Yei": ["A dialect of the Kakwa language.", "A language of Indonesia (Papua)"], "Aba": ["A dialect of the Kakwa language."], "Yumbe": ["A dialect of the Kakwa language."], "Lotuxo-Teso": ["ISO 639-6 entity"], "Lotuxo-Maa": ["ISO 639-6 entity"], "Lotuxo Cluster": ["ISO 639-6 entity"], "Otuho": ["An Eastern Nilotic language spoken by the Lotuko ethnic group of Eastern Equatoria, an area in Southern Sudan."], "Otuho Written": ["ISO 639-6 entity"], "Otuho Spoken": ["ISO 639-6 entity"], "Lokoya": ["ISO 639-6 entity"], "Lokoya Spoken": ["ISO 639-6 entity"], "O-Irya": ["ISO 639-6 entity"], "O-Bolong": ["ISO 639-6 entity"], "Netuk-On-O-Ghoriuk": ["ISO 639-6 entity"], "Netuk-On-O-Ghoriuk Spoken": ["ISO 639-6 entity"], "Tuxo": ["ISO 639-6 entity"], "Tuxo Spoken": ["ISO 639-6 entity"], "Lowudo Spoken": ["ISO 639-6 entity"], "Logotok": ["ISO 639-6 entity"], "Logotok Spoken": ["ISO 639-6 entity"], "Lopit": ["A language of Sudan."], "Lopit Spoken": ["ISO 639-6 entity"], "Lomya": ["ISO 639-6 entity"], "Lomya Spoken": ["ISO 639-6 entity"], "Dongotono": ["A language of Sudan."], "Dongotono Spoken": ["The Dongotono spoken language and its dialects."], "Lorwama": ["ISO 639-6 entity"], "Lorwama Spoken": ["ISO 639-6 entity"], "Lokathan": ["ISO 639-6 entity"], "Lokathan Spoken": ["ISO 639-6 entity"], "Lango (Sudan)": ["ISO 639-6 entity"], "Lango (Sudan) Written": ["ISO 639-6 entity"], "Lango (Sudan) Spoken": ["ISO 639-6 entity"], "Imatong": ["ISO 639-6 entity"], "Langgo-Dongotono": ["ISO 639-6 entity"], "Acholi-Torit": ["ISO 639-6 entity"], "Acholi-Torit Spoken": ["The dialects of the Acholi-Torit language."], "Logiri-Dongotono": ["A dialect of the Acholi-Torit language."], "Lolibai": ["A dialect of the Acholi-Torit language."], "Logir": ["ISO 639-6 entity"], "Logir Spoken": ["ISO 639-6 entity"], "Ongamo-Maa Cluster": ["ISO 639-6 entity"], "Masai": ["ISO 639-6 entity"], "Masai Written": ["ISO 639-6 entity"], "Masai Spoken": ["ISO 639-6 entity"], "Sirya": ["ISO 639-6 entity"], "Wuasinkishu": ["ISO 639-6 entity"], "Maasai-C": ["ISO 639-6 entity"], "Oytai": ["ISO 639-6 entity"], "Ooddo-Kila-Ni": ["ISO 639-6 entity"], "Kankere": ["ISO 639-6 entity"], "Kore": ["ISO 639-6 entity"], "Kaputiei": ["ISO 639-6 entity"], "Matapato": ["ISO 639-6 entity"], "Kisongo": ["ISO 639-6 entity"], "Arusha": ["ISO 639-6 entity"], "Baraguyu": ["ISO 639-6 entity"], "Sikirari": ["ISO 639-6 entity"], "Kwavi": ["ISO 639-6 entity"], "Oigob": ["ISO 639-6 entity"], "Samburu": ["ISO 639-6 entity"], "Samburu Written": ["ISO 639-6 entity"], "Samburu Spoken": ["ISO 639-6 entity"], "Chamus": ["ISO 639-6 entity"], "Chamus Spoken": ["ISO 639-6 entity"], "Ngasa": ["ISO 639-6 entity"], "Ngasa Spoken": ["ISO 639-6 entity"], "Teso-Turkana": ["ISO 639-6 entity"], "Turkana Cluster": ["ISO 639-6 entity"], "Jiye-N": ["ISO 639-6 entity"], "Jiye-N Spoken": ["ISO 639-6 entity"], "Toposa": ["ISO 639-6 entity"], "Toposa Written": ["ISO 639-6 entity"], "Toposa Spoken": ["ISO 639-6 entity"], "Toposa-W": ["ISO 639-6 entity"], "Toposa-E": ["ISO 639-6 entity"], "Nyangatom": ["ISO 639-6 entity"], "Nyangatom Spoken": ["ISO 639-6 entity"], "Puma Spoken": ["ISO 639-6 entity"], "Turkana": ["ISO 639-6 entity"], "Turkana Spoken": ["ISO 639-6 entity"], "Turkana-N": ["ISO 639-6 entity"], "Turkana-S": ["ISO 639-6 entity"], "Ketebo": ["ISO 639-6 entity"], "Ketebo Spoken": ["ISO 639-6 entity"], "O-Rom": ["ISO 639-6 entity"], "O-Rom Spoken": ["ISO 639-6 entity"], "Na-Pore": ["ISO 639-6 entity"], "Na-Pore Spoken": ["ISO 639-6 entity"], "I-Dodotho": ["ISO 639-6 entity"], "I-Dodotho Spoken": ["ISO 639-6 entity"], "Jiye-S": ["ISO 639-6 entity"], "Jiye-S Spoken": ["ISO 639-6 entity"], "Karamojong": ["ISO 639-6 entity"], "Karamojong Written": ["ISO 639-6 entity"], "Karamojong Spoken": ["ISO 639-6 entity"], "Teso Cluster": ["ISO 639-6 entity"], "Teso": ["ISO 639-6 entity"], "Teso Written": ["ISO 639-6 entity"], "Teso Spoken": ["ISO 639-6 entity"], "Ngora": ["ISO 639-6 entity"], "Pallisa": ["ISO 639-6 entity"], "Tesyo": ["ISO 639-6 entity"], "Tesyo Spoken": ["ISO 639-6 entity"], "Tororo": ["ISO 639-6 entity"], "Busia": ["ISO 639-6 entity"], "Nilotic-Southern": ["ISO 639-6 entity"], "Wider Kalenjin": ["ISO 639-6 entity"], "Pakot Cluster": ["ISO 639-6 entity"], "P\u00f6koot": ["A language of Kenya and Uganda."], "P\u00f6koot Written": ["Written forms of the P\u00f6koot language."], "P\u00f6koot Written Latin Script": ["A written form of the P\u00f6koot language."], "P\u00f6koot Spoken": ["The dialects of the P\u00f6koot language."], "Suk-W": ["A dialecta of the P\u00f6koot language."], "Suk-E": ["A dialecta of the P\u00f6koot language."], "Ngi-Kadama": ["ISO 639-6 entity"], "Ngi-Kadama Spoken": ["ISO 639-6 entity"], "Markweta Cluster": ["ISO 639-6 entity"], "Markwet": ["ISO 639-6 entity"], "Markwet Spoken": ["ISO 639-6 entity"], "Markwet-N": ["ISO 639-6 entity"], "Markwet-S": ["ISO 639-6 entity"], "Endo": ["A language of Kenya"], "Endo Written": ["The written forms of the Endo language."], "Endo Spoken": ["The dialects of the Endo language."], "Sambirir": ["ISO 639-6 entity"], "Sambirir Spoken": ["ISO 639-6 entity"], "Talai": ["ISO 639-6 entity"], "Talai Written": ["ISO 639-6 entity"], "Talai Spoken": ["ISO 639-6 entity"], "North Tugen": ["ISO 639-6 entity"], "North Tugen Spoken": ["ISO 639-6 entity"], "Elgon Cluster": ["ISO 639-6 entity"], "Kupsabiny": ["A language of Uganda."], "Kupsabiny Spoken": ["The dialects of the Kupsabiny language."], "Mbai": ["ISO 639-6 entity"], "Mbai Spoken": ["ISO 639-6 entity"], "Ki-P-Sorai": ["ISO 639-6 entity"], "Ki-P-Sorai Spoken": ["ISO 639-6 entity"], "Sabaot": ["ISO 639-6 entity", "ISO 639-6 entity"], "Sabaot Spoken": ["ISO 639-6 entity"], "Pok": ["ISO 639-6 entity"], "Pok Spoken": ["ISO 639-6 entity"], "Nga-Lek-Ap-L-Kony": ["ISO 639-6 entity"], "Nga-Lek-Ap-L-Kony Spoken": ["ISO 639-6 entity"], "Ng\u2019oma": ["ISO 639-6 entity"], "Ng\u2019oma Spoken": ["ISO 639-6 entity"], "Kalenjin": ["ISO 639-6 entity", "A language of Kenya."], "South Tugen": ["ISO 639-6 entity"], "South Tugen Spoken": ["ISO 639-6 entity"], "Keyyo": ["ISO 639-6 entity"], "Keyyo Spoken": ["ISO 639-6 entity"], "Ngalek-Ap-Naandi": ["ISO 639-6 entity"], "Ngalek-Ap-Naandi Spoken": ["ISO 639-6 entity"], "Nandi-A": ["ISO 639-6 entity"], "Kapsabet": ["ISO 639-6 entity"], "Terik": ["ISO 639-6 entity"], "Ngalek-Ap-Kipsigiis": ["ISO 639-6 entity"], "Cherangany": ["ISO 639-6 entity"], "Okiek Cluster": ["ISO 639-6 entity"], "Okiek": ["ISO 639-6 entity"], "Sogoo": ["ISO 639-6 entity"], "Suiei": ["ISO 639-6 entity"], "Mosiro": ["ISO 639-6 entity"], "Aramanik": ["A language of Tanzania."], "Kisankasa": ["A language of Tanzania."], "Mediak": ["ISO 639-6 entity"], "Tato Cluster": ["ISO 639-6 entity"], "Omotik": ["A language of Kenya."], "Datooga": ["ISO 639-6 entity"], "Kangara": ["ISO 639-6 entity"], "Buraa-Diiga": ["ISO 639-6 entity"], "Rooti-Gaanga": ["ISO 639-6 entity"], "Bian-Jida": ["ISO 639-6 entity"], "Darora-Jega": ["ISO 639-6 entity"], "Bajut": ["ISO 639-6 entity"], "Gisam-Janga": ["ISO 639-6 entity"], "Baraba-Yiiga": ["ISO 639-6 entity"], "Tsima-Jeega": ["ISO 639-6 entity"], "Daragwa-Jega": ["ISO 639-6 entity"], "Reimo-Jik": ["ISO 639-6 entity"], "Manga-Tiga": ["ISO 639-6 entity"], "Ghumbi-Ega": ["ISO 639-6 entity"], "Bisi-Yeda": ["ISO 639-6 entity"], "Gidang'o-Diga": ["ISO 639-6 entity"], "Salawa-Jega": ["ISO 639-6 entity"], "Omotic": ["Group of languages spoken in northeastern Africa."], "Hamer-Banna": ["An Omotic language spoken primarily in the southern part of Ethiopia by the Hamer, Banna people, and Karo peoples."], "Bana-Apo": ["ISO 639-6 entity"], "Karo (Ethipopoa)": ["ISO 639-6 entity"], "Bashada-Apo": ["ISO 639-6 entity"], "Aari": ["An Omotic language of Ethiopia"], "Gozza": ["ISO 639-6 entity"], "Biyo": ["ISO 639-6 entity", "A language of China."], "Laydo": ["ISO 639-6 entity"], "Seyki": ["ISO 639-6 entity"], "Shangama": ["ISO 639-6 entity"], "Sido": ["ISO 639-6 entity"], "Wubahamer": ["Language spoken in Ethiopia."], "Zeddo": ["Language spoken in Ethiopia."], "Galila": ["Language spoken in Ethiopia."], "Dime": ["A South Omotic language spoken in the northern part of the Selamago district in Ethiopia."], "Gonga Gimojan": ["A group of North Omotic languages."], "Gimojan": ["An omotic language."], "Ometo-Gimira Complex": ["A group of Gimojan languages."], "Chara Cluster": ["ISO 639-6 entity"], "Chara": ["A language of Ethiopia."], "Ometo": ["An African language from the group of Omotic languages, spoken mostly in southwestern Ethiopia."], "Ometo East Cluster": ["ISO 639-6 entity"], "Zayse- Zergulla": ["ISO 639-6 entity"], "Zayse": ["ISO 639-6 entity"], "Zergulla": ["ISO 639-6 entity"], "Koorete": ["A language of Ethiopia."], "Koorete Written": ["Written forms of the Koorete language."], "Koorete Written Latin Script": ["A written form of the Koorete language."], "Koorete Written Ethiopic Script": ["ISO 639-6 entity"], "Gidicho": ["ISO 639-6 entity"], "Kachama-Ganjule": ["A language of Ethiopia."], "Ganjule": ["ISO 639-6 entity"], "Ometo Central": ["ISO 639-6 entity"], "Walamo": ["An Omotic language spoken in the Wolaita Zone of Ethiopia."], "Walamo Spoken": ["ISO 639-6 entity"], "Laha": ["ISO 639-6 entity", "A language of Viet Nam.", "A language of Indonesia (Maluku)."], "Zala": ["ISO 639-6 entity"], "Dache": ["ISO 639-6 entity"], "Dorze": ["A language of Ethiopia."], "Dorze Spoken": ["ISO 639-6 entity"], "Dorze-S": ["ISO 639-6 entity"], "Dorze-U": ["ISO 639-6 entity"], "Gamo-Gofa-Dawro": ["An Afro-Asiatic language spoken in the Dawro, Gamo Gofa and Wolayita Zones in Ethiopia."], "Gofa": ["ISO 639-6 entity"], "Gofa Spoken": ["ISO 639-6 entity"], "Gamo": ["ISO 639-6 entity"], "Dawro": ["ISO 639-6 entity"], "Kulo-Kale": ["ISO 639-6 entity"], "Jimma": ["ISO 639-6 entity"], "Gene": ["ISO 639-6 entity"], "Waka": ["ISO 639-6 entity"], "Kucha": ["ISO 639-6 entity"], "Konta": ["ISO 639-6 entity"], "Oyda": ["ISO 639-6 entity"], "Melo": ["ISO 639-6 entity"], "Ometo South": ["ISO 639-6 entity"], "Male (Ethiopia)": ["ISO 639-6 entity"], "Ometo West": ["A group of Ometo languages."], "Basketo": ["A variety of the Ometo language spoken in Basketo, Ethiopia.", "One of the 77 woredas in the Southern Nations, Nationalities and Peoples' Region of Ethiopia."], "Basketo Written": ["Written forms of the Basketo language."], "Doko": ["A dialect of the Basketo language."], "Mongombo": ["A dialect of the Basketo language."], "Dolo": ["A dialect of the Basketo language."], "Gimira Cluster": ["ISO 639-6 entity"], "Bench": ["A language of Ethiopia"], "Mieru": ["ISO 639-6 entity"], "Mieru Spoken": ["ISO 639-6 entity"], "Siiz-Dod": ["ISO 639-6 entity"], "Siiz-Dod Spoken": ["ISO 639-6 entity"], "Janjero Cluster": ["ISO 639-6 entity"], "Yemsa": ["ISO 639-6 entity", "A language of Ethiopia."], "Yemsa Spoken": ["ISO 639-6 entity"], "Fuga": ["ISO 639-6 entity"], "Fuga Spoken": ["ISO 639-6 entity"], "Gonga Complex": ["ISO 639-6 entity"], "Gonga South Cluster": ["ISO 639-6 entity"], "Kafa": ["A language of Ethiopia."], "Kafa Spoken": ["ISO 639-6 entity"], "Shekkacho": ["ISO 639-6 entity"], "Shekkacho Written": ["Written forms of the Shekkacho language."], "Shekkacho Written Latin Script": ["A written form of the Shekkacho language."], "Shekkacho Spoken": ["ISO 639-6 entity"], "Bosha": ["ISO 639-6 entity"], "Gonga Central Cluster": ["ISO 639-6 entity"], "Anfillo": ["ISO 639-6 entity"], "Anfillo Spoken": ["The dialects of the Anfillo language."], "Gonga North": ["ISO 639-6 entity"], "Guba Spoken": ["ISO 639-6 entity"], "Boro": ["A language of the Gonga North group spoken in Ethiopia."], "Boro Spoken": ["Variants of the Boro language used in oral communication."], "Naga": ["ISO 639-6 entity"], "Naga Spoken": ["ISO 639-6 entity"], "Amuru ": ["ISO 639-6 entity"], "Amuru Spoken": ["The dialects of the Amuru language."], "Wambera": ["ISO 639-6 entity"], "Wambera Spoken": ["ISO 639-6 entity"], "Dizo\u00efd Cluster": ["ISO 639-6 entity"], "Dizi": ["ISO 639-6 entity"], "Dizi Spoken": ["ISO 639-6 entity"], "Aro-Duku": ["ISO 639-6 entity"], "Maji-Damt": ["ISO 639-6 entity"], "Jiaba-Gai": ["ISO 639-6 entity"], "Kolu-Kontakolu": ["ISO 639-6 entity"], "Mui": ["ISO 639-6 entity"], "Nayi": ["ISO 639-6 entity"], "Nayi Spoken": ["ISO 639-6 entity"], "Sheko": ["ISO 639-6 entity"], "Sheko Written": ["ISO 639-6 entity"], "Sheko Spoken": ["ISO 639-6 entity"], "Bulla": ["ISO 639-6 entity"], "Dorsha": ["ISO 639-6 entity"], "Mao Cluster": ["ISO 639-6 entity"], "Didessa": ["ISO 639-6 entity"], "Mao-Koole": ["ISO 639-6 entity"], "Mao-Koole Spoken": ["ISO 639-6 entity"], "Bambeshi-A": ["ISO 639-6 entity"], "Hozo": ["A language of Ethiopia."], "Sezo": ["ISO 639-6 entity"], "Ganza Spoken": ["ISO 639-6 entity", "ISO 639-6 entity"], "Yabus": ["ISO 639-6 entity"], "Asosa": ["ISO 639-6 entity"], "Gallo-Ibero-Romance": ["A subgroup of the Western Continental Romance."], "Ibero-Romance": ["A group of dialects derived from Latin, originating in the territory of Hispania."], "Ibero-Romance North": ["ISO 639-6 entity"], "Ibero-Romance Northwestern": ["ISO 639-6 entity"], "Galician Written": ["Written forms of the Galician language."], "Galician Written Latin Script": ["A written form of the Galician language."], "Galician Spoken": ["ISO 639-6 entity"], "Galego-Formal": ["ISO 639-6 entity"], "Galego-W": ["ISO 639-6 entity"], "Galego-E": ["ISO 639-6 entity"], "Galego-Argentina": ["ISO 639-6 entity"], "Fala": ["A Romance language from the Portuguese-Galician subgroup spoken in Spain by about 10,500 people, of which 5,500 live in a valley of the northwestern part of Extremadura near the border with Portugal."], "Fala Written": ["The written forms of the Fala language."], "Fala Written Latin Script": ["Fala language written with the Latin Script."], "Fala Spoken": ["The dialects of the Fala language."], "Valvideiru": ["ISO 639-6 entity"], "Ma\u0148egu": ["ISO 639-6 entity"], "Lagarteiru": ["ISO 639-6 entity"], "Portugu\u00eas-N": ["ISO 639-6 entity"], "Portugu\u00eas-N Spoken": ["ISO 639-6 entity"], "Portugu\u00eas-NE": ["ISO 639-6 entity"], "Portugu\u00eas-CN": ["ISO 639-6 entity"], "Beira": ["ISO 639-6 entity"], "Portuguese Spoken": ["Dialects of the Portuguese language."], "Portuguese-Formal": ["ISO 639-6 entity"], "Estremenho": ["ISO 639-6 entity"], "Brasil-F": ["ISO 639-6 entity"], "Portugu\u00eas-G": ["Generalised colloquial luso-portuguese."], "Riodonor\u00e9s": ["A dialect of Portuguese spoken at the frontier between Spain and Portugal."], "Portugu\u00eas-Africa-W": ["A dialect of Portuguese spoken in Cape Verde, Guinea-Bissau and S\u00e3o Tom\u00e9."], "Pr\u00eatogu\u00eas": ["A dialect of Portuguese spoken in Angola, South Africa and Mozambique."], "Portugu\u00eas-Goa": ["A dialect of Portuguese spoken in Goa (India)."], "Portugu\u00eas-Mac\u00e3o": ["A dialect of Portuguese spoken in Mac\u00e3o."], "Portugu\u00eas-Timor": ["A dialect of Portuguese spoken in East Timor."], "Madeirense": ["ISO 639-6 entity"], "Madeirense Spoken": ["ISO 639-6 entity"], "Funchal": ["ISO 639-6 entity"], "Porto-Santo": ["ISO 639-6 entity"], "A\u00e7oriano": ["ISO 639-6 entity"], "A\u00e7oriano-E": ["ISO 639-6 entity"], "A\u00e7oriano-C": ["ISO 639-6 entity"], "A\u00e7oriano-NW": ["ISO 639-6 entity"], "Brasileiro-G": ["ISO 639-6 entity"], "Brasileiro-G Spoken": ["ISO 639-6 entity"], "Brasileiro-NE": ["ISO 639-6 entity"], "Brasileiro-E": ["ISO 639-6 entity"], "Rio-De-Janeiro": ["ISO 639-6 entity"], "S\u00e3o-Paolo": ["ISO 639-6 entity"], "Brasileiro-SE": ["ISO 639-6 entity"], "Mato-Grosso": ["ISO 639-6 entity"], "Amazonas": ["ISO 639-6 entity"], "Falares-Baianos": ["ISO 639-6 entity"], "Mineiro": ["ISO 639-6 entity"], "Carioca": ["ISO 639-6 entity"], "Carioca Spoken": ["The dialects of the Carioca language."], "Paulista": ["ISO 639-6 entity"], "Fronteiri\u00e7o": ["ISO 639-6 entity"], "Ibero-Romance North Central": ["ISO 639-6 entity"], "Spanish Spoken": ["Variants of the Spanish language used in oral communication."], "Castellano-Formal": ["ISO 639-6 entity"], "Americano-Formal": ["ISO 639-6 entity"], "Espa\u00f1ol-G": ["ISO 639-6 entity"], "Espa\u00f1ol-G Spoken": ["ISO 639-6 entity"], "Espa\u00f1a-G": ["ISO 639-6 entity"], "Castilla- L\u00e9on": ["ISO 639-6 entity"], "Cantabrica": ["ISO 639-6 entity"], "Rioja": ["ISO 639-6 entity"], "Vasco": ["ISO 639-6 entity"], "Navarra": ["ISO 639-6 entity"], "La-Mancha": ["ISO 639-6 entity"], "Estremadura": ["ISO 639-6 entity"], "Espa\u00f1ol-Arag\u00f3n": ["ISO 639-6 entity"], "Espa\u00f1ol-Valencia": ["ISO 639-6 entity"], "Espa\u00f1ol-Catalu\u00f1a": ["ISO 639-6 entity"], "Espa\u00f1ol-Baleares": ["ISO 639-6 entity"], "Andaluz Spoken": ["The dialects of the Andaluz language."], "Espa\u00f1ol-Canario": ["ISO 639-6 entity"], "Espa\u00f1ol-Sahariano": ["ISO 639-6 entity"], "Espa\u00f1ol-Guineo": ["ISO 639-6 entity"], "Americano-S": ["ISO 639-6 entity"], "Americano-S Spoken": ["The Spanish language dialects of the Americano-S branch."], "Mexicano": ["A Spanish language dialect of the Americano-S branch."], "Belice\u00f1o": ["A Spanish language dialect of the Americano-S branch."], "Salvadore\u00f1o": ["A Spanish language dialect of the Americano-S branch."], "Hondure\u00f1o": ["A Spanish language dialect of the Americano-S branch."], "Nicarag\u00fcense": ["A Spanish language dialect of the Americano-S branch."], "Costarricense": ["A Spanish language dialect of the Americano-S branch."], "Paname\u00f1o": ["A Spanish language dialect of the Americano-S branch."], "Cubano": ["A Spanish language dialect of the Americano-S branch."], "Dominicano": ["A Spanish language dialect of the Americano-S branch."], "Puertorrique\u00f1o": ["A Spanish language dialect of the Americano-S branch."], "Virgenense": ["A Spanish language dialect of the Americano-S branch."], "Trinidade\u00f1o": ["A Spanish language dialect of the Americano-S branch."], "Venezolano": ["A Spanish language dialect of the Americano-S branch."], "Colombiano": ["A Spanish language dialect of the Americano-S branch."], "Ecuatoriano": ["A Spanish language dialect of the Americano-S branch."], "Peruano": ["A Spanish language dialect of the Americano-S branch spoken in Peru."], "Chileno": ["A Spanish language dialect of the Americano-S branch."], "Boliviano": ["A Spanish language dialect of the Americano-S branch."], "Paraguayo": ["A Spanish language dialect of the Americano-S branch."], "Uruguayo": ["A Spanish language dialect of the Americano-S branch."], "Argentino": ["A Spanish language dialect of the Americano-S branch."], "Filipino": ["A Tagalog language which is an official language of the Philippines.", "A person who originated from or is a citizen of the Philippines.", "From or relating to the Philippines."], "Rioplatense": ["ISO 639-6 entity"], "Rioplatense Spoken": ["ISO 639-6 entity"], "Cocoliche": ["ISO 639-6 entity"], "Lunfardo": ["ISO 639-6 entity"], "Loreto-Ucayali Spanish": ["ISO 639-6 entity"], "Chicano": ["ISO 639-6 entity"], "Chicano Spoken": ["ISO 639-6 entity"], "Chicano-California": ["ISO 639-6 entity"], "Chicano-Arizona": ["ISO 639-6 entity"], "Chicano-New-Mexico": ["ISO 639-6 entity"], "Chicano-Colorado": ["ISO 639-6 entity"], "Chicano-Texas": ["ISO 639-6 entity"], "Chicano-Louisiana": ["ISO 639-6 entity"], "Chicano-Tampa": ["ISO 639-6 entity"], "Chicano-Miami": ["ISO 639-6 entity"], "Chicano-DC": ["ISO 639-6 entity"], "Chicano-New-York": ["ISO 639-6 entity"], "Chicano-Illinois": ["ISO 639-6 entity"], "Extremaduran": ["A language in the autonomous community of Extremadura and the province of Salamanca, in Spain."], "Extremaduran Written": ["Written forms of the Extremaduran language."], "Extremaduran Spoken": ["Dialects of the Extremaduran language."], "Artu Ehtreme\u0148u": ["ISO 639-6 entity"], "Bahu Ehtreme\u0148u": ["ISO 639-6 entity"], "Mayu Ehtreme\u0148u": ["ISO 639-6 entity"], "Asturo Leon\u00e9se Cluster": ["Language cluster belonging to the Latin language family, spoken in the North-East of the Iberian peninsula."], "Astur": ["A Romance language spoken in various parts of Spain."], "Astur Written": ["The written forms of the Astur language."], "Astur Written Latin Script": ["Astur language written with the Latin Script."], "Astur Spoken": ["The Astur spoken language and its dialects."], "Astur-Formal": ["A dialect of the Astur language."], "Astur-Formal Written Latin Script Oviedo Model": ["The Astur-Formal language written with the Latin script."], "Astur-E": ["A variant of the Astur language close to the mountain dialect of Cantabria."], "Astur-C": ["A variant of the Astur language, the model for the written language and the most widely speaked."], "Astur-W": ["A variant of the Astur language."], "Astur-Gallaico": ["A dialect of the Astur language."], "Mirandese": ["A Romance language spoken by some 15,000 people around Miranda do Douro in northeastern Portugal."], "Leon\u00e9s": ["A Romance language directly derived from latin, actually spoken by some 20,000 people mostly in the Province of Le\u00f3n and in some other regions of Spain."], "Leon\u00e9s Spoken": ["ISO 639-6 entity"], "Leon\u00e9s-N": ["ISO 639-6 entity"], "Leon\u00e9s-S": ["ISO 639-6 entity"], "Leon\u00e9s-W": ["ISO 639-6 entity"], "Leon\u00e9s-E": ["ISO 639-6 entity"], "Ibero-Romance South Cluster": ["ISO 639-6 entity"], "Navarro-Aragon\u00e9s": ["ISO 639-6 entity"], "Aragonese Written": ["The written forms of the Aragonese language."], "Aragonese Written Latin Script": ["The Aragonese language written with the Latin script."], "Aragonese Spoken": ["ISO 639-6 entity"], "Aragon\u00e9s-Formal": ["ISO 639-6 entity"], "Fobano": ["ISO 639-6 entity"], "Semontan\u00e9s": ["ISO 639-6 entity"], "Aragon\u00e9s-Pre-Pirenaico": ["ISO 639-6 entity"], "Chaqu\u00e9s": ["ISO 639-6 entity"], "Sarrabl\u00e9s": ["ISO 639-6 entity"], "Sobrarb\u00e9s": ["ISO 639-6 entity"], "Ribagorzano-W": ["ISO 639-6 entity"], "Ansotano": ["ISO 639-6 entity"], "Cheso": ["ISO 639-6 entity"], "Tensino\u2013Pandicuto": ["ISO 639-6 entity"], "Tensino\u2013Pandicuto Spoken": ["ISO 639-6 entity"], "Tensino": ["ISO 639-6 entity"], "Pandicuto": ["ISO 639-6 entity"], "Belset\u00e1n": ["ISO 639-6 entity"], "Chistab\u00edn": ["ISO 639-6 entity"], "Benasqu\u00e9s": ["ISO 639-6 entity"], "Mozarabic": ["Either of the Iberian Romance dialects spoken in the Muslim kingdoms of al-Andalus between the 9th and 16th centuries AD."], "Ibero-Romance Northeastern": ["ISO 639-6 entity"], "Catalan Spoken": ["ISO 639-6 entity"], "Catal\u00e0-Formal": ["ISO 639-6 entity"], "Catal\u00e0-C": ["ISO 639-6 entity"], "Salat": ["ISO 639-6 entity"], "Rossellon\u00e8s": ["ISO 639-6 entity"], "Capcin\u00e8s": ["ISO 639-6 entity"], "Puigcerda": ["ISO 639-6 entity"], "Andorr\u00e8s": ["ISO 639-6 entity"], "Pallar\u00e8s": ["ISO 639-6 entity"], "Barrab\u00e8s": ["ISO 639-6 entity"], "Ribagor\u00e7an-E": ["ISO 639-6 entity"], "Lliter\u00e0": ["ISO 639-6 entity"], "Catal\u00e0-NW": ["ISO 639-6 entity"], "Alguer\u00e8s": ["ISO 639-6 entity"], "Valenci\u00e0": ["ISO 639-6 entity"], "Eivissenc": ["ISO 639-6 entity"], "Mallorqu\u00ed": ["ISO 639-6 entity"], "Menorqu\u00ed": ["ISO 639-6 entity"], "Gallo-Romance South": ["ISO 639-6 entity"], "Gascon": ["A language of France and Spain.", "Of or pertaining to Gascony, the Gascon people or the Gascon language."], "Gascon Spoken": ["ISO 639-6 entity"], "Medoquin": ["ISO 639-6 entity"], "Bordal\u00e9s": ["ISO 639-6 entity"], "Bazad\u00e9s": ["ISO 639-6 entity"], "Land\u00e9s": ["ISO 639-6 entity"], "Neraqu\u00e9s": ["ISO 639-6 entity"], "Gascon-Lomagne": ["ISO 639-6 entity"], "Armagnaqu\u00e9s": ["ISO 639-6 entity"], "Astaraqu\u00e9s": ["ISO 639-6 entity"], "Biarn\u00e9s": ["ISO 639-6 entity"], "Biarn\u00e9s Spoken": ["ISO 639-6 entity"], "Palois": ["ISO 639-6 entity"], "Biarn\u00e9s-Ossau": ["ISO 639-6 entity"], "Asp\u00e9s": ["ISO 639-6 entity"], "Bigordan": ["ISO 639-6 entity"], "Bigordan Spoken": ["ISO 639-6 entity"], "Tarbais": ["ISO 639-6 entity"], "Argel\u00e8s": ["ISO 639-6 entity"], "Bagn\u00e8res": ["ISO 639-6 entity"], "Aure": ["ISO 639-6 entity"], "Comeng\u00e9s": ["ISO 639-6 entity"], "Couseran\u00e9s": ["ISO 639-6 entity"], "Aran\u00e9s": ["ISO 639-6 entity"], "Aran\u00e9s Spoken": ["ISO 639-6 entity"], "Pujolo": ["ISO 639-6 entity"], "Canejan": ["ISO 639-6 entity"], "Proensal-L": ["ISO 639-6 entity"], "Transalpin": ["ISO 639-6 entity"], "Languedocian": ["An Occitan dialect spoken by some people in the part of southern France known as Languedoc, Rouergue, Quercy, Agenais and Southern P\u00e9rigord."], "Languedocian Spoken": ["The dialects of the Languedocian language."], "Bas-Languedocian": ["A dialect of the Languedocian language."], "Languedocian Moyen": ["A dialect of the Languedocian language."], "Occitan-Formal": ["A dialect of the Languedocian language."], "Agen\u00e9s": ["A dialect of the Languedocian language."], "Brageiragu\u00e9s": ["A dialect of the Languedocian language."], "Carcin\u00f2l": ["A dialect of the Languedocian language."], "Ro\u00ebrg\u00e0s": ["A dialect of the Languedocian language."], "Barrasenc": ["A dialect of the Languedocian language."], "Gavaudan\u00e9s": ["A dialect of the Languedocian language."], "Loz\u00e9rien-NE": ["A dialect of the Languedocian language."], "Mendois": ["A dialect of the Languedocian language."], "Ceben\u00f2l": ["A dialect of the Languedocian language."], "Lengadocian-E": ["A dialect of the Languedocian language."], "Lengadocian-C": ["A dialect of the Languedocian language."], "Foissenc": ["A dialect of the Languedocian language."], "Arieg\u00e9s-S": ["A dialect of the Languedocian language."], "Proven\u00e7al": ["One of several dialects of Occitan spoken by a minority of people, mostly in Provence (in southern France)."], "Proven\u00e7al Written": ["The written forms of the Proven\u00e7al language."], "Proven\u00e7al Written Latin Script": ["A written form of the Proven\u00e7al language."], "Proven\u00e7al Written Latin Script Mistral Model": ["A written form of the Proven\u00e7al language."], "Proven\u00e7al Spoken": ["The dialects of the Proven\u00e7al language."], "Proven\u00e7al Maritime": ["A dialect of the Proven\u00e7al language."], "Prouven\u00e7au-Formal": ["A dialect of the Proven\u00e7al language."], "Coumtadin": ["A dialect of the Proven\u00e7al language."], "Arlaten": ["A dialect of the Proven\u00e7al language."], "Camarguen": ["A dialect of the Proven\u00e7al language."], "Bagnoulen": ["A dialect of the Proven\u00e7al language."], "Nimou\u00e9s": ["A dialect of the Proven\u00e7al language."], "Aptois": ["A dialect of the Proven\u00e7al language."], "Sestian": ["A dialect of the Proven\u00e7al language."], "Prouven\u00e7au-Castellane": ["A dialect of the Proven\u00e7al language."], "Marsih\u00e9s": ["A dialect of the Proven\u00e7al language."], "Toulounen": ["A dialect of the Proven\u00e7al language."], "Maures": ["A dialect of the Proven\u00e7al language."], "Grassenc": ["A dialect of the Proven\u00e7al language."], "Canenc": ["A dialect of the Proven\u00e7al language."], "Nissart": ["ISO 639-6 entity"], "Nissart Spoken": ["ISO 639-6 entity"], "Nissart-U": ["ISO 639-6 entity"], "Nissart-N": ["ISO 639-6 entity"], "Esteron": ["ISO 639-6 entity"], "Haute-V\u00e9subie": ["ISO 639-6 entity"], "Oc-Cisalpin'": ["ISO 639-6 entity"], "Oc-Cisalpin' Spoken": ["ISO 639-6 entity"], "Limunenc": ["ISO 639-6 entity"], "Antraigin": ["ISO 639-6 entity"], "Aisonenc\u2013Berbezan": ["ISO 639-6 entity"], "Val-Grana": ["ISO 639-6 entity"], "Val-M\u00e1ira": ["ISO 639-6 entity"], "Val-Var\u00e1ita": ["ISO 639-6 entity"], "Chisone": ["ISO 639-6 entity"], "Gavouot": ["ISO 639-6 entity"], "Gavouot Spoken": ["ISO 639-6 entity"], "Brian\u00e7onnais": ["ISO 639-6 entity"], "Queirassenc": ["ISO 639-6 entity"], "Embrun\u00e9s": ["ISO 639-6 entity"], "Valeien": ["ISO 639-6 entity"], "Gavuout-Tin\u00e9e": ["ISO 639-6 entity"], "Gavouot-Verdon": ["ISO 639-6 entity"], "Gavouot-Var": ["ISO 639-6 entity"], "Gavouot-La-Blanche": ["ISO 639-6 entity"], "Dign\u00e9s": ["ISO 639-6 entity"], "Sisteroun\u00e9s": ["ISO 639-6 entity"], "Gavouot-Bochaine": ["ISO 639-6 entity"], "Gapian": ["ISO 639-6 entity"], "Vivaro-Dauphinois'": ["ISO 639-6 entity"], "Vivaro-Dauphinois' Spoken": ["ISO 639-6 entity"], "Ard\u00e8che-SE": ["ISO 639-6 entity"], "Albenassien": ["ISO 639-6 entity"], "Privadois": ["ISO 639-6 entity"], "Boutierot": ["ISO 639-6 entity"], "Vernoux- Doux": ["ISO 639-6 entity"], "Annon\u00e9en": ["ISO 639-6 entity"], "Valentinois": ["ISO 639-6 entity"], "Dr\u00f4mois-NE": ["ISO 639-6 entity"], "Dr\u00f4mois-SE": ["ISO 639-6 entity"], "Montilien": ["ISO 639-6 entity"], "Auvergnat": ["A Northern Occitan language spoken mostly in Auvergne, France."], "Auvergnat-S": ["A dialect of Auvergnat spoken in the departments of Cantal, Haute-Loire, a part of Ard\u00e8che and most of Loz\u00e8re."], "Auvergnat-S Written": ["Written versions of the Auvergnat-S language."], "Auvergnat-S Written Latin Script": ["Auvergnat-S language written with the Latin Script."], "Auvergnat-S Spoken": ["The dialects of the Auvergnat-S language."], "Cantal\u00e9s": ["A dialect of the Auvergnat-S language."], "Vellave-N": ["A dialect of the Auvergnat-S language."], "Vellave-S": ["A dialect of the Auvergnat-S language."], "Yssingelais": ["A dialect of the Auvergnat-S language."], "Auvergnat-N": ["The north Auvergnat language."], "Auvergnat-N Spoken": ["The dialects of the north Auvergnat language."], "Livradois": ["A dialect of the north Auvergnat language."], "Clermontois": ["A dialect of the north Auvergnat language."], "Issoirien": ["A dialect of the north Auvergnat language."], "Brivadois": ["A dialect of the north Auvergnat language."], "Monts-D\u00f4mes": ["A dialect of the north Auvergnat language."], "Combraillais": ["A dialect of the north Auvergnat language."], "Limousin": ["A Occitan language spoken or understood by about 401,000 people in the part of southern France known as Limousin.", "A breed of beef cattle bred in the Limousin region and recognisable by their chestnut red colouring."], "Limousin Spoken": ["The dialects of the Limousin language."], "Lemozin-N": ["A dialect of the Limousin language."], "Lemojaud": ["A dialect of the Limousin language."], "Millevaches": ["A dialect of the Limousin language."], "Corr\u00e9zien": ["A dialect of the Limousin language."], "Sarlad\u00e9s": ["A dialect of the Limousin language."], "Peiregordin": ["A dialect of the Limousin language."], "Nontron\u00e9s": ["A dialect of the Limousin language."], "Montberon\u00e9s": ["A dialect of the Limousin language."], "Saint-Eutrope": ["A dialect of the Limousin language."], "Marchois": ["ISO 639-6 entity"], "Marchois Spoken": ["ISO 639-6 entity"], "Croissant-W": ["ISO 639-6 entity"], "Marchois-C": ["ISO 639-6 entity"], "Montlu\u00e7onnais": ["ISO 639-6 entity"], "Croissant-E": ["ISO 639-6 entity"], "Gallo-Romance": ["A branch of Romance languages that includes French and several other languages spoken in modern France and northern Italy and Spain."], "Galo-Romance North": ["A group of Gallo-Romance languages originating from North of Gaul."], "Parlange": ["ISO 639-6 entity"], "Parlange Spoken": ["ISO 639-6 entity"], "Mara\u00eechin": ["ISO 639-6 entity"], "Poitevin-N": ["ISO 639-6 entity"], "Poitevin-W": ["ISO 639-6 entity"], "Poitevin-C": ["ISO 639-6 entity"], "Poitevin-S": ["ISO 639-6 entity"], "Aunisien": ["ISO 639-6 entity"], "Saintongeais": ["ISO 639-6 entity"], "Angoumois": ["ISO 639-6 entity"], "Gavache": ["ISO 639-6 entity"], "Gallo": ["ISO 639-6 entity"], "Gallo Spoken": ["ISO 639-6 entity"], "Malouin": ["ISO 639-6 entity"], "Bocage": ["ISO 639-6 entity"], "Rennais": ["ISO 639-6 entity"], "Ch\u00e2teaubriantais": ["ISO 639-6 entity"], "Nantais": ["ISO 639-6 entity"], "Sercquais": ["A Norman dialect spoken in the the Channel Island of Sark."], "Normand": ["A Romance language spoken in Normandy and in the Channel islands."], "Coutan\u00e7ais": ["A Norman language spoken in Coutances in Normandy, France."], "Calvadosien": ["A Norman language spoken in Calvados, Normandy, France."], "Vexinois": ["A Norman language spoken in the region of Vexin, Normandy, France."], "Roumois": ["A Norman language spoken in the Roumois region of Normandy, France."], "Cauchois": ["A Norman language spoken in the Pays de Caux region of the Seine-Maritime d\u00e9partment, France."], "Picard": ["A Romance language spoken in two regions in the far north of France \u2013 Nord-Pas-de-Calais and Picardie \u2013 and in parts of the Belgian region Wallonia."], "Picard Spoken": ["ISO 639-6 entity"], "Belgium Picard": ["ISO 639-6 entity"], "Artois": ["ISO 639-6 entity"], "Laonnois": ["ISO 639-6 entity"], "Vermandois": ["ISO 639-6 entity"], "Noyonnais": ["ISO 639-6 entity"], "Ami\u00e9nois": ["ISO 639-6 entity"], "Vimeu": ["ISO 639-6 entity"], "Marquenterre": ["ISO 639-6 entity"], "Boulonnais-Paysan": ["ISO 639-6 entity"], "Boulonnais-Marin": ["ISO 639-6 entity"], "Calaisien": ["ISO 639-6 entity"], "Cambresis": ["ISO 639-6 entity"], "Ternois": ["ISO 639-6 entity"], "Arrageois": ["ISO 639-6 entity"], "Ch-Ti-Mi": ["ISO 639-6 entity"], "Hennuyer": ["ISO 639-6 entity"], "Walloon Spoken": ["Dialects of the Walloon language."], "Wallon-W": ["ISO 639-6 entity"], "Wallon-C": ["ISO 639-6 entity"], "Wallon-E": ["ISO 639-6 entity"], "Wallon-S": ["ISO 639-6 entity"], "Wallon-Am\u00e9ricain": ["ISO 639-6 entity"], "Champaignat": ["ISO 639-6 entity"], "Champaignat Spoken": ["ISO 639-6 entity"], "Bassignot- Langrois": ["ISO 639-6 entity"], "Sennonais": ["ISO 639-6 entity"], "Vallage": ["ISO 639-6 entity"], "Troyen": ["ISO 639-6 entity"], "Bri\u00e2d": ["ISO 639-6 entity"], "C\u00f4te-Champenoise": ["ISO 639-6 entity"], "Der- Perthois": ["ISO 639-6 entity"], "R\u00e9mois": ["ISO 639-6 entity"], "Argonnais-W": ["ISO 639-6 entity"], "Porcien": ["ISO 639-6 entity"], "Ardennais": ["ISO 639-6 entity"], "Sugny": ["ISO 639-6 entity"], "Lorrain": ["ISO 639-6 entity"], "Lorrain Spoken": ["ISO 639-6 entity"], "Argonnais": ["ISO 639-6 entity"], "Longovicien": ["ISO 639-6 entity"], "Gaumais": ["ISO 639-6 entity"], "Nanc\u00e9in": ["ISO 639-6 entity"], "Spinalien": ["ISO 639-6 entity"], "D\u00e9odatien": ["ISO 639-6 entity"], "Welche": ["ISO 639-6 entity"], "Welche Spoken": ["ISO 639-6 entity"], "Bruche": ["ISO 639-6 entity"], "Vill\u00e9": ["ISO 639-6 entity"], "Li\u00e8pvre": ["ISO 639-6 entity"], "Kaysersberg": ["ISO 639-6 entity"], "Orbey": ["ISO 639-6 entity"], "Jurassien": ["ISO 639-6 entity", "ISO 639-6 entity"], "Jurassien Spoken": ["ISO 639-6 entity"], "Sa\u00f4ne-N": ["ISO 639-6 entity"], "Doubs- Ognon": ["ISO 639-6 entity"], "Lomont- Doubs": ["ISO 639-6 entity"], "Ajulot": ["ISO 639-6 entity"], "V\u00e2dais": ["ISO 639-6 entity"], "Taignon": ["ISO 639-6 entity"], "Bourguignon": ["An O\u00efl language spoken in Burgundy, France."], "Bourguignon Spoken": ["ISO 639-6 entity"], "Charollais": ["ISO 639-6 entity"], "Beaunois": ["ISO 639-6 entity"], "Auxois": ["ISO 639-6 entity"], "Morvandiau": ["A dialect of Bourguignon spoken in Morvan (Bourgogne, France)."], "Bourbonnais- Berrichon": ["ISO 639-6 entity"], "Bourbonnais- Berrichon Spoken": ["ISO 639-6 entity"], "Bourbonnais": ["ISO 639-6 entity"], "Nivernais": ["ISO 639-6 entity"], "Auxerrois": ["ISO 639-6 entity"], "Haut-Berrichon": ["ISO 639-6 entity"], "Bas-Berrichon": ["ISO 639-6 entity"], "Orl\u00e9anais": ["An O\u00efl language spoken around the city of Orleans in France."], "Bl\u00e9sois": ["An O\u00efl language spoken around the city of Blois in France."], "Tourangeau": ["An O\u00efl language spoken around the city of Tours in France."], "Manceau": ["An O\u00efl language spoken around the city of Mans in France."], "Angevin": ["An O\u00efl language formerly spoken in the former province of Anjou, France.", "Of or pertaining to Anjou, Angers, the people of Anjou or the Angevin language."], "Mayennais": ["An O\u00efl language spoken in the Mayenne department of France."], "Virois": ["An O\u00efl language spoken around the city of Vire in France."], "Falaisien": ["An O\u00efl language spoken around the city of Falaise in Calvados, France."], "Varenne": ["A dialect of the Angevin-Orl\u00e9anais language."], "Hi\u00e9mois\u2013S\u00e9ois": ["An O\u00efl language formerly spoken in the Comte of Hi\u00e9mois and the city of S\u00e9es, Lower Normandy, France."], "Percheron": ["An O\u00efl language formerly spoken in the former comte of Perche, North of France."], "Saint-Andr\u00e9": ["A dialect of the Angevin-Orl\u00e9anais language."], "Thimerais": ["An O\u00efl language formerly spoken in the Thymerais region, Eure-et-Loir, France."], "Chartrain": ["An O\u00efl language formerly spoken around the city of Chartres, France."], "Acadjin": ["A variety or dialect of French spoken by francophone Acadians in the Canadian Maritime provinces, the Saint John River Valley in northern Maine, the Magdalen Islands and Havre-Saint-Pierre, along the St. Lawrence's north shore."], "Acadjin Spoken": ["The dialects of the Acadjin language."], "Acadien-D'acadie": ["A dialect of the Acadjin language."], "Acadien-Qu\u00e9bequois": ["A dialect of the Acadjin language."], "Cajun French": ["A variety of the French spoken primarily in Louisiana, USA."], "Cajun French Written": ["Written forms of the Cajun French language."], "Cajun French Written Latin Script": ["A written form of the Cajun French language."], "Cajun French Spoken": ["The dialects of the Cajun French language."], "Marsh-French'": ["A dialect of the Cajun French language."], "Prairie-French'": ["A dialect of the Cajun French language."], "Big-Woods-French'": ["A dialect of the Cajun French language."], "Canadien": ["ISO 639-6 entity"], "Canadien Spoken": ["The dialects of the Canadien language."], "Qu\u00e9becois": ["A dialect of the Canadien language."], "Joual": ["A dialect of the Canadien language."], "Francien": ["ISO 639-6 entity"], "French Spoken": ["Variants of the French language used in oral communication."], "Parisien-F": ["ISO 639-6 entity"], "Canadien-F": ["ISO 639-6 entity"], "Fran\u00e7ais-G": ["ISO 639-6 entity"], "Fran\u00e7ais-G Spoken": ["ISO 639-6 entity"], "Fran\u00e7ais-A": ["ISO 639-6 entity"], "Parisien-U": ["ISO 639-6 entity"], "Banlieue": ["ISO 639-6 entity"], "Fran\u00e7ais-De-Normandie": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Nord": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Nord-Est": ["ISO 639-6 entity"], "Fran\u00e7ais-De-L'est": ["ISO 639-6 entity"], "Fran\u00e7ais-De-Bourgogne": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Centre": ["ISO 639-6 entity"], "Fran\u00e7ais-De-L'ouest": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Nord-Ouest": ["ISO 639-6 entity"], "Fran\u00e7ais-Breton": ["ISO 639-6 entity"], "Fran\u00e7ais-D'auvergne": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Limousin": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Sud-Ouest": ["ISO 639-6 entity"], "Fran\u00e7ais-Basque": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Sud": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Sud-Est": ["ISO 639-6 entity"], "Fran\u00e7ais-De-Corse": ["ISO 639-6 entity"], "Fran\u00e7ais-Belge": ["ISO 639-6 entity"], "Fran\u00e7ais-Suisse": ["ISO 639-6 entity"], "Fran\u00e7ais-D'aoste": ["ISO 639-6 entity"], "Fran\u00e7ais-Germanique": ["ISO 639-6 entity"], "Fran\u00e7ais-Germanique Spoken": ["ISO 639-6 entity"], "Fran\u00e7ais-Flamand": ["ISO 639-6 entity"], "Fran\u00e7ais-Francique": ["ISO 639-6 entity"], "Fran\u00e7ais-Alsacien": ["ISO 639-6 entity"], "Fran\u00e7ais-Suisse-Allemand": ["ISO 639-6 entity"], "Fran\u00e7ais-Nord-Am\u00e9ricain": ["ISO 639-6 entity"], "Fran\u00e7ais-Nord-Am\u00e9ricain Spoken": ["ISO 639-6 entity"], "Fran\u00e7ais-De-Saint-Pierre": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Canada": ["ISO 639-6 entity"], "Fran\u00e7ais-Des-Maritimes": ["ISO 639-6 entity"], "Fran\u00e7ais-De-Nouvelle-Angleterre": ["ISO 639-6 entity"], "Fran\u00e7ais-De-Louisiane": ["ISO 639-6 entity"], "Fran\u00e7ais-Antillais": ["ISO 639-6 entity"], "Fran\u00e7ais-Antillais Spoken": ["ISO 639-6 entity"], "Fran\u00e7ais-Ha\u00eftien": ["ISO 639-6 entity"], "Fran\u00e7ais-Guadeloup\u00e9en": ["ISO 639-6 entity"], "Fran\u00e7ais-Martiniquais": ["ISO 639-6 entity"], "Fran\u00e7ais-Guyanais": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Levant": ["ISO 639-6 entity"], "Fran\u00e7ais-Du-Levant Spoken": ["ISO 639-6 entity"], "Fran\u00e7ais-De-Gr\u00e8ce": ["ISO 639-6 entity"], "Fran\u00e7ais-De-Liban-Syrie": ["ISO 639-6 entity"], "Fran\u00e7ais-D'\u00e9gypte": ["ISO 639-6 entity"], "Fran\u00e7ais-Maghrebin": ["ISO 639-6 entity"], "Fran\u00e7ais-Maghrebin Spoken": ["ISO 639-6 entity"], "Fran\u00e7ais-Tunisien": ["ISO 639-6 entity"], "Fran\u00e7ais-Alg\u00e9rien": ["ISO 639-6 entity"], "Fran\u00e7ais-Marocain": ["ISO 639-6 entity"], "Maghrebin-France": ["ISO 639-6 entity"], "Pied-Noir-France": ["ISO 639-6 entity"], "Fran\u00e7ais-D'afrique": ["A group of languages derived from French and spoken in Africa."], "Fran\u00e7ais-D'afrique Spoken": ["The dialects of the French language spoken in Africa."], "Fran\u00e7ais-De-Mauritanie": ["French dialect spoken in Mauritanie."], "Fran\u00e7ais-De-Mali": ["French dialect spoken in Mali."], "Fran\u00e7ais-De-Guin\u00e9e": ["French dialect spoken in Guinea."], "Fran\u00e7ais-De-Burkina-Faso": ["French dialect spoken in Burkina Faso."], "Fran\u00e7ais-De-C\u00f4te-D'ivoire": ["French dialect spoken in C\u00f4te d'Ivoire."], "Fran\u00e7ais-De-Togo": ["French dialect spoken in Togo."], "Fran\u00e7ais-De-B\u00e9nin": ["French dialect spoken in Benin."], "Fran\u00e7ais-De-Niger": ["French dialect spoken in Niger."], "Fran\u00e7ais-De-Cameroun": ["French dialect spoken in Cameroon."], "Fran\u00e7ais-De-Gabon": ["French dialect spoken in Gabon."], "Fran\u00e7ais-De-Congo": ["French dialect spoken in Congo."], "Fran\u00e7ais-De-Tchad": ["Spoken french of Chad."], "Fran\u00e7ais-De-Centrafrique": ["Dialect of the French language spoken in Central African Republic."], "Fran\u00e7ais-De-Za\u00efre": ["Spoken french of the Republic of Zaire."], "Fran\u00e7ais-De-Ruanda-Burundi": ["Spoken french of Rwanda and Burundi."], "Fran\u00e7ais-De-Djibouti": ["Spoken french of Djibouti."], "Fran\u00e7ais-Des-Comores": ["French dialect spoken in The Comoros."], "Fran\u00e7ais-De-Madagascar": ["French dialect spoken in Madagascar."], "Fran\u00e7ais-De-Maurice": ["French dialect spoken in Maurice."], "Africain-France": ["ISO 639-6 entity"], "Fran\u00e7ais-D'inde": ["Dialects of the French language used in India."], "Fran\u00e7ais-D'inde Spoken": ["Dialects of the Fran\u00e7ais-D'inde language."], "Fran\u00e7ais-De-Mah\u00e9": ["Dialect of the French language used in the district of Mah\u00e9 in India."], "Fran\u00e7ais-De-Pondich\u00e9ry": ["Dialect of the French language used in the district of Pondich\u00e9ry in India."], "Fran\u00e7ais-De-Karikal": ["Dialect of the French language used in the district of Karikal in India."], "Fran\u00e7ais-De-Yanaon": ["Dialect of the French language used in the district of Yanaon in India."], "Fran\u00e7ais-De-Chandernagore": ["Dialect of the French language used in the city of Chandernagore in India."], "Fran\u00e7ais-Du-Sudest-Asiatique": ["Dialects of the French language used in South-East of Asia."], "Fran\u00e7ais-Du-Sudest-Asiatique Spoken": ["Dialects of the Fran\u00e7ais-Du-Sudest-Asiatique language."], "Fran\u00e7ais-De-Vi\u00eat-Nam": ["Dialect of the French language spoken in Vi\u00eat Nam."], "Fran\u00e7ais-De-Laos": ["Dialect of the French language spoken in Laos."], "Fran\u00e7ais-De-Cambodge": ["Dialect of the French language spoken in Cambodia."], "Fran\u00e7ais-D'oc\u00e9anie": ["Dialects of the French language used in Oceania."], "Fran\u00e7ais-D'oc\u00e9anie Spoken": ["Dialects of the French language spoken in Oceania."], "Fran\u00e7ais-Caldoche": ["Dialect of the French language spoken by the Caldoche people in New Caledonia."], "Fran\u00e7ais-Canaque": ["Dialect of the French language spoken by the Kanak people in New Caledonia."], "Fran\u00e7ais-De-Vanuatu": ["Dialect of the French language spoken in Vanuatu."], "Fran\u00e7ais-De-Wallis-Futuna": ["Dialect of the French language spoken in Wallis and Futuna."], "Fran\u00e7ais-De-Polyn\u00e9sie": ["Dialect of the French language spoken in Polynesia."], "Franco-Proven\u00e7al Written": ["Written forms of the Franco-Proven\u00e7al language."], "Franco Proven\u00e7al Written Latin Script": ["A written form of the Franco Proven\u00e7al language."], "Franco-Proven\u00e7al Spoken": ["Dialects of the Franco-Proven\u00e7al language."], "Franc-Comtois": ["An O\u00efl language spoken in Franche-Comt\u00e9 and Suisse Romande."], "Franc-Comtois Spoken": ["ISO 639-6 entity"], "Neuch\u00e2telois": ["ISO 639-6 entity"], "Vaudois-NW": ["ISO 639-6 entity"], "Pontissalien": ["ISO 639-6 entity"], "Ain-N": ["ISO 639-6 entity"], "Valserine": ["ISO 639-6 entity"], "Lyonnais": ["ISO 639-6 entity"], "Lyonnais Spoken": ["ISO 639-6 entity"], "Bugey": ["ISO 639-6 entity"], "For\u00e8zien": ["ISO 639-6 entity"], "Bressan": ["ISO 639-6 entity"], "Burgondan": ["ISO 639-6 entity"], "M\u00e2connais": ["ISO 639-6 entity"], "Lyonnais-Rural": ["ISO 639-6 entity"], "Roannais- St\u00e9phanois": ["ISO 639-6 entity"], "Dauphinois-N": ["ISO 639-6 entity"], "Dauphinois-N Spoken": ["ISO 639-6 entity"], "Dauphinois-Rhodanien": ["ISO 639-6 entity"], "Cr\u00e9mieu": ["ISO 639-6 entity"], "Terres-Froides": ["ISO 639-6 entity"], "Chambaran": ["ISO 639-6 entity"], "Gr\u00e9sivaudan": ["ISO 639-6 entity"], "Savoyard": ["ISO 639-6 entity"], "Savoyard Spoken": ["ISO 639-6 entity"], "Bessan\u00e8is": ["ISO 639-6 entity"], "Langrin": ["ISO 639-6 entity"], "Matchutin": ["ISO 639-6 entity"], "Tarentaise": ["ISO 639-6 entity"], "Arly": ["ISO 639-6 entity"], "Chamb\u00e9rien": ["ISO 639-6 entity"], "Annecien": ["ISO 639-6 entity"], "Faucigny": ["ISO 639-6 entity"], "Chablais- Genevois": ["ISO 639-6 entity"], "Vaudois": ["ISO 639-6 entity"], "Vaudois Spoken": ["ISO 639-6 entity"], "Vaudois-Interlacustre": ["ISO 639-6 entity"], "Gruy\u00e8re": ["ISO 639-6 entity"], "Enupper": ["ISO 639-6 entity"], "Genevois": ["ISO 639-6 entity"], "Fribourgeois": ["ISO 639-6 entity"], "Valaisan": ["ISO 639-6 entity"], "Vald\u00f4tain": ["ISO 639-6 entity"], "Vald\u00f4tain Spoken": ["The dialects of the Vald\u00f4tain language."], "Faetar": ["A dialect of the Vald\u00f4tain language."], "Val-Veni": ["A dialect of the Vald\u00f4tain language."], "Val-Di-Ferret": ["A dialect of the Vald\u00f4tain language."], "Doire-Balt\u00e9e-C": ["A dialect of the Vald\u00f4tain language."], "Val-Du-Grand-Saint-Bernard": ["A dialect of the Vald\u00f4tain language."], "Val-Pelline": ["A dialect of the Vald\u00f4tain language."], "Val-Tournanche": ["A dialect of the Vald\u00f4tain language."], "Ayassin": ["A dialect of the Vald\u00f4tain language."], "Val-De-La-Thuile": ["A dialect of the Vald\u00f4tain language."], "Val-Grisanche": ["A dialect of the Vald\u00f4tain language."], "Val-De-Rh\u00eames": ["A dialect of the Vald\u00f4tain language."], "Val-Savaranche": ["A dialect of the Vald\u00f4tain language."], "Val-De-Cogne": ["A dialect of the Vald\u00f4tain language."], "Val-De-Camporcher": ["A dialect of the Vald\u00f4tain language."], "Rhaeto-Romance": ["A Romance language sub-family which includes multiple languages spoken in north and north-eastern Italy, and Switzerland."], "Sursilvan": ["A group of dialects of the Romansh language spoken in the Surselva, on the western bank of the Rhine."], "Sursilvan Spoken": ["ISO 639-6 entity"], "Tujetsch": ["ISO 639-6 entity"], "Medel": ["ISO 639-6 entity"], "Cad\u00ed": ["ISO 639-6 entity"], "Ilanz": ["ISO 639-6 entity"], "Lumnezia": ["ISO 639-6 entity"], "Flims": ["ISO 639-6 entity"], "Plaun": ["ISO 639-6 entity"], "Sutsilvan- Surmiran": ["ISO 639-6 entity"], "Sutsilvan- Surmiran Spoken": ["ISO 639-6 entity"], "Sutsilvan-N": ["ISO 639-6 entity"], "Sutsilvan-S": ["ISO 639-6 entity"], "Surmiran-N": ["ISO 639-6 entity"], "Surmiran-C": ["ISO 639-6 entity"], "Surmiran-S": ["ISO 639-6 entity"], "Upper Engadine": ["ISO 639-6 entity"], "Grischun": ["The pan-regional variety of the Rumansh languages, artificially designed by the linguist Heinrich Schmid on behalf of the secretary of the Lia Rumantscha which should be as equally acceptable as possible to speakers of the different idioms of Rumansch in Grisons."], "Grischun Spoken": ["ISO 639-6 entity"], "Bravuogn": ["ISO 639-6 entity"], "Put\u00e8r-S": ["ISO 639-6 entity"], "Put\u00e8r-N": ["ISO 639-6 entity"], "Vallader-W": ["ISO 639-6 entity"], "Vallader-E": ["ISO 639-6 entity"], "Vallader-SE": ["ISO 639-6 entity"], "Atesino": ["A dialect of the Ladin language."], "Nones": ["A dialect of Ladin spoken in Non Valley, Trentino, northern Italy."], "Badio": ["ISO 639-6 entity"], "Badio Spoken": ["ISO 639-6 entity"], "Badia": ["ISO 639-6 entity"], "Mareo": ["ISO 639-6 entity"], "Gr\u00fcndno": ["ISO 639-6 entity"], "Fassa- Fiamazzo": ["ISO 639-6 entity"], "Fassa- Fiamazzo Spoken": ["ISO 639-6 entity"], "Fassa": ["ISO 639-6 entity"], "Fiamazzo": ["ISO 639-6 entity"], "Cadorino": ["A dialect of the Ladin language spoken in Cadore."], "Cadorino Spoken": ["The dialects of the Cadorino language."], "Santa-Lucia": ["A dialect of the Cadorino language."], "Livinallongo": ["A dialect of the Cadorino language."], "Com\u00e8lico": ["A dialect of the Cadorino language."], "Carnico": ["ISO 639-6 entity"], "Carnico Spoken": ["ISO 639-6 entity"], "Degano": ["ISO 639-6 entity"], "Fella": ["ISO 639-6 entity"], "Tagliamento": ["ISO 639-6 entity"], "Spilimbergo": ["ISO 639-6 entity"], "Pordenone": ["ISO 639-6 entity", "A province in the Friuli-Venezia Giulia region of Italy.", "A comune of Pordenone province of northeast Italy in the Friuli-Venezia Giulia region."], "Udin": ["ISO 639-6 entity"], "Civid\u00e2t": ["ISO 639-6 entity"], "Gurizze": ["ISO 639-6 entity"], "Istrioto Spoken": ["ISO 639-6 entity"], "Rovigno": ["ISO 639-6 entity"], "Dignano": ["ISO 639-6 entity"], "Sissano": ["ISO 639-6 entity"], "Venetian Spoken": ["Dialects of the Venetian language."], "Bisiacco": ["ISO 639-6 entity"], "Veneto-Giuliano": ["ISO 639-6 entity"], "Feltrino\u2013Bellunese": ["ISO 639-6 entity"], "Trevigiano": ["ISO 639-6 entity"], "Veneziano-U": ["ISO 639-6 entity"], "Veneziano-Della-Laguna": ["ISO 639-6 entity"], "Veneziano-Rural": ["ISO 639-6 entity"], "Vicentino- Padovano": ["ISO 639-6 entity"], "Veronese": ["ISO 639-6 entity"], "Rovigo": ["A dialect of Venetian spken in Rovigo.", "A province in the Veneto region of Italy."], "Gallo-Italian Cluster": ["A group of Gallo-Romance languages."], "Trentino": ["ISO 639-6 entity"], "Ticinese": ["ISO 639-6 entity"], "Ticinese Spoken": ["ISO 639-6 entity"], "Lugano": ["ISO 639-6 entity"], "Bellinazona": ["ISO 639-6 entity"], "Locarno": ["ISO 639-6 entity"], "Lombardo-Alpino": ["ISO 639-6 entity"], "Anaunico": ["ISO 639-6 entity"], "Cremonese": ["A dialect of Western Lombard language group spoken in the city and province of Cremona in Lombardy, Italy."], "Bresciano": ["A dialect of Eastern Lombard spoken around the city of Brescia, in Lombardy, northern Italy."], "Bergamasco": ["ISO 639-6 entity"], "Comasco": ["ISO 639-6 entity"], "Varese": ["A dialect of Lombard spoken in Varese.", "A province in the Lombardy region of Italy."], "Milanese": ["A central variety of the Western Lombard language spoken in the city and province of Milan."], "Milanese-U": ["ISO 639-6 entity"], "Milanese-Rural": ["ISO 639-6 entity"], "Pavese": ["ISO 639-6 entity"], "Novarese": ["ISO 639-6 entity"], "Domodossolano": ["ISO 639-6 entity"], "Lombardo-Siculo": ["ISO 639-6 entity"], "Piemontese Written": ["Variants of the Piemontese language used in written communication."], "Piemontese Written Latin Script": ["A written form of the Piemontese language."], "Piemontese Spoken": ["Dialects of the Piemontese language."], "Alto Piemontese": ["ISO 639-6 entity"], "Basso Piemontese": ["ISO 639-6 entity"], "Vercelli": ["A dialect of Piemontese spoken in Vercelli.", "A province in the Piedmont region of Italy.", "Italian city situated in the north of the country, in the region of Piedmon and capital of the province with the same name."], "Canavese": ["ISO 639-6 entity"], "Torino-U": ["ISO 639-6 entity"], "Dora-Riparia": ["ISO 639-6 entity"], "Alto-Po": ["ISO 639-6 entity"], "Cuneo": ["ISO 639-6 entity", "A province in the southwest of the Piedmont region of Italy."], "Langhe": ["ISO 639-6 entity"], "Asti": ["Piemontese of Asti.", "A province in the Piedmont region of Italy."], "Aless\u00e1ndria": ["ISO 639-6 entity"], "Brigasc": ["ISO 639-6 entity"], "Brigasc Spoken": ["ISO 639-6 entity"], "Roya": ["ISO 639-6 entity"], "Tanaro": ["ISO 639-6 entity"], "Ligurian": ["A Romance language, currently spoken in Liguria, northern Italy, and parts of the Mediterranean coastal zone of France, and Monaco.", "Of, or pertaining to Liguria.", "An extinct language spoken in pre-Roman times and into the Roman era by an ancient people of north-western Italy and south-eastern France known as the Ligures."], "Ligurian Written": ["The written forms of the Ligurian language."], "Ligurian Written Latin Script": ["The Ligurian language written with the Latin script."], "Ligurian Spoken": ["The Ligurian spoken language and its dialects."], "Monegasc": ["A Romance language and a dialect of the modern Ligurian language spoken in Monaco."], "Monegasc Written": ["The written forms of the Monegasc language."], "Monegasc Written Latin Script": ["The Monegasc language written with the Latin script."], "Imperia": ["A dialect of the Ligurian language.", "A province in the Liguria region of Italy"], "Savona": ["A Ligurian dialect spoken in Savona.", "A province in the Liguria region of Italy."], "Genovesi-Rural": ["A dialect of the Ligurian language."], "Genovesi-U": ["A dialect of the Ligurian language."], "Lunigiano": ["A dialect of the Ligurian language."], "Genovesi-Di-Corsica": ["ISO 639-6 entity"], "Genovesi-Di-Corsica Spoken": ["ISO 639-6 entity"], "Cargese": ["ISO 639-6 entity"], "Bonifacien": ["ISO 639-6 entity"], "Genovesi-Di-Sardegna": ["ISO 639-6 entity"], "Genovesi-Di-Sardegna Spoken": ["ISO 639-6 entity"], "Carloforte": ["ISO 639-6 entity"], "Calasetta": ["ISO 639-6 entity"], "Vogherese": ["ISO 639-6 entity"], "Mantovano": ["ISO 639-6 entity"], "Piacenza": ["ISO 639-6 entity", "A province in the Emilia-Romagna region of Italy.", "The capital of the province of Piacenza in the Emilia-Romagna region of northern Italy."], "Parma": ["ISO 639-6 entity", "A province in the Emilia-Romagna region of Italy."], "Reggio": ["ISO 639-6 entity"], "Modena": ["ISO 639-6 entity", "A province in the Emilia-Romagna region of Italy"], "Bologna": ["ISO 639-6 entity", "A province in the Emilia-Romagna region of Italy."], "Ferrara": ["ISO 639-6 entity", "A province in the Emilia-Romagna region of Italy."], "Ravenna": ["ISO 639-6 entity", "A province in the Emilia-Romagna region of Italy."], "Forli": ["ISO 639-6 entity"], "San-Marino": ["ISO 639-6 entity"], "Marchigiano-N": ["ISO 639-6 entity"], "Corsican Cluster": ["A Romance language group related to Corsican."], "Corsu-N": ["ISO 639-6 entity"], "Corsu-N Spoken": ["ISO 639-6 entity"], "Cortenais": ["ISO 639-6 entity"], "Castagniccia": ["ISO 639-6 entity"], "Casinca": ["ISO 639-6 entity"], "Bastiais": ["ISO 639-6 entity"], "Nebbio": ["ISO 639-6 entity"], "Balanin": ["ISO 639-6 entity"], "Gal\u00e9ria": ["ISO 639-6 entity"], "Corsu-C": ["ISO 639-6 entity"], "Corsu-C Spoken": ["ISO 639-6 entity"], "Vicu": ["ISO 639-6 entity"], "Ajaccien": ["ISO 639-6 entity"], "Tavarais": ["ISO 639-6 entity"], "Petreto-Bicchisano": ["ISO 639-6 entity"], "Bastelica": ["ISO 639-6 entity"], "Fiumorbais": ["ISO 639-6 entity"], "Solenzara": ["ISO 639-6 entity"], "Corsu-S": ["ISO 639-6 entity"], "Corsu-S Spoken": ["ISO 639-6 entity"], "Zonza": ["ISO 639-6 entity"], "Sart\u00e8": ["ISO 639-6 entity"], "Purtivechju": ["ISO 639-6 entity"], "Gallurese": ["A dialect of Sardinian spoken in northeastern Sardinia."], "Sassarese": ["A Southern Romance language and transitional between Sardinian and Corsican."], "Sassarese Spoken": ["Dialects of the Sassarese language."], "Italo-Romance": ["A group of Romance languages spoken in Italy and Sicilia."], "Italian Cluster": ["ISO 639-6 entity"], "Toscano": ["ISO 639-6 entity"], "Toscano Spoken": ["ISO 639-6 entity"], "Fiorentino-U": ["ISO 639-6 entity"], "Fiorentino-Rural": ["ISO 639-6 entity"], "Lucca": ["ISO 639-6 entity", "A province in the Tuscany region of Italy."], "Pistoia": ["ISO 639-6 entity", "A province in the Tuscany region of Italy.", "A city in the Tuscany region of Italy."], "Pisa": ["ISO 639-6 entity", "A province in the Tuscany region of Italy.", "A city in Tuscany, central Italy."], "Livorno": ["ISO 639-6 entity", "A province in the Tuscany region of Italy."], "Aretino": ["ISO 639-6 entity"], "Senese": ["ISO 639-6 entity"], "Grosseto": ["Dialect of Toscan spoken in Grosseto.", "A province in the Tuscany region of Italy."], "Romano-Rural": ["ISO 639-6 entity"], "Italian Spoken": ["The dialects of the Italian language."], "Abruzzese": ["A dialect of the Italian language.", "A dialect of the Neapolitan language."], "Marchigiano C": ["A dialect of the Italian language."], "Laziale": ["A dialect of the Italian language."], "Italiano-G": ["ISO 639-6 entity"], "Italiano-G Spoken": ["ISO 639-6 entity"], "Italiano-Di-Torino": ["ISO 639-6 entity"], "Italiano-Di-Genova": ["ISO 639-6 entity"], "Italiano-Di-Milano": ["ISO 639-6 entity"], "Italiano-Di-Venezia": ["ISO 639-6 entity"], "Italiano-Di-Trieste": ["ISO 639-6 entity"], "Italiano-Di-Roma": ["ISO 639-6 entity"], "Italiano-Di-Napoli": ["ISO 639-6 entity"], "Italiano-Di-Palermo": ["ISO 639-6 entity"], "Sicilian Spoken": ["Dialects of the Sicilian language."], "Sicilianw": ["ISO 639-6 entity"], "Metafonetica C": ["ISO 639-6 entity"], "Metafonetica SE": ["ISO 639-6 entity"], "Nonmetafonetie": ["ISO 639-6 entity"], "Isole Eolie": ["ISO 639-6 entity"], "Pantesco": ["ISO 639-6 entity"], "Calabro S": ["ISO 639-6 entity"], "Umbro\u2013Romanesco": ["ISO 639-6 entity"], "Umbro\u2013Romanesco Spoken": ["ISO 639-6 entity"], "Umbro": ["ISO 639-6 entity"], "Romanesco-Rural": ["ISO 639-6 entity"], "Neapolitan Written": ["The written forms of the Neapolitan language."], "Neapolitan Written Latin Script": ["A written forms of the Neapolitan language."], "Neapolitan Spoken": ["The dialects of the Neapolitan language."], "Marchigiano-S": ["A dialect of the Neapolitan language."], "Molisano": ["A dialect of the Neapolitan language."], "Campano": ["A dialect of the Neapolitan language."], "Napoletano-U": ["A dialect of the Neapolitan language."], "Pugliese-N": ["A dialect of the Neapolitan language."], "Lucano": ["A dialect of the Neapolitan language."], "Salentino": ["ISO 639-6 entity"], "Calabrese": ["ISO 639-6 entity"], "Siciliano-CE": ["ISO 639-6 entity"], "Siciliano-CE Spoken": ["ISO 639-6 entity"], "Messinese": ["ISO 639-6 entity"], "Catanese- Siracusano": ["ISO 639-6 entity"], "Siciliano-NE": ["ISO 639-6 entity"], "Siciliano-SE": ["ISO 639-6 entity"], "Agrigentino-E": ["ISO 639-6 entity"], "Nisseno-Ennese": ["ISO 639-6 entity"], "Siciliano-Delle-Madon\u00ece": ["ISO 639-6 entity"], "Siciliano-W": ["ISO 639-6 entity"], "Siciliano-W Spoken": ["ISO 639-6 entity"], "Agrigentino-CW": ["ISO 639-6 entity"], "Trapanese": ["ISO 639-6 entity"], "Palermitano": ["ISO 639-6 entity"], "Sardinian": ["The main language spoken in the island of Sardinia, Italy, remarkable for being the most conservative of the Romance languages in terms of phonology and for its Paleosardinian substratum."], "Sassarese Sardinian": ["A Southern Romance language and transitional between Sardinian and Corsican."], "Logudorese Sardinian": ["A Sardinian language spoken in the center-North of the island of Sardinia."], "Barbaricino": ["A dialect of Logudorese Sardinian."], "Gallurese Sardinian": ["A dialect of Sardinian spoken in northeastern Sardinia."], "Nuorese": ["A dialect of Logudorese Sardinian."], "Gennargentese": ["A language of Italy."], "Campidanese Sardinian": ["A Sardinian language spoken in the south of the island of Sardinia."], "Campidanese W": ["ISO 639-6 entity"], "Cagliare": ["A dialect of the Campidanese Sardinian language spoken around the city of Cagliari."], "Ogliastrino": ["A dialect of the Campidanese Sardinian language spoken in the province of Ogliastra."], "Sulcitano": ["A dialect of the Campidanese Sardinian language."], "Meridionale": ["A dialect of the Campidanese Sardinian language."], "Dalmatian Cluster": ["ISO 639-6 entity"], "Dalmatian": ["An extinct Romance language formerly spoken in the Dalmatia region of Croatia, and as far south as Kotor in Montenegro.", "A native or inhabitant of Dalmatia.", "Of or relating to Dalmatia or its inhabitants."], "Vegliot": ["ISO 639-6 entity"], "Ragusan": ["ISO 639-6 entity"], "Latino-Faliscan": ["ISO 639-6 entity"], "Latin Spoken": ["Dialects of the Latin language."], "Latine-A": ["ISO 639-6 entity"], "Latine-A Spoken": ["ISO 639-6 entity"], "Latin-V": ["ISO 639-6 entity"], "Hebraicised Romance": ["ISO 639-6 entity"], "Shaudit": ["ISO 639-6 entity"], "Zarphatic": ["ISO 639-6 entity"], "Judeo-Spanish": ["ISO 639-6 entity", "A Jewish Romance language spoken in Israel and Turkey, developed from Spanish."], "Judeo-Spanish Written": ["Written forms of the Judeo-Spanish language."], "Judeo-Spanish Written Hebrew Script": ["ISO 639-6 entity"], "Judeo-Spanish Written Latin Script": ["A written form of the Judeo-Spanish language."], "Hakitia": ["ISO 639-6 entity"], "Tetauni": ["ISO 639-6 entity"], "Ladino": ["A Jewish Romance language spoken in Israel and Turkey, developed from Spanish."], "Ladino Written": ["Variants of the Ladino language used in written communication."], "Ladino Written Latin Script": ["Ladino language written with the Latin Script."], "Ladino Written Hebrew Script": ["The Ladino language written with the Hebrew script."], "Ladino Spoken": ["Variants of the Ladino language used in oral communication."], "Djudezmo-Formal": ["A dialect of the Ladino language."], "La\u2019az": ["A dialect of the Ladino language."], "Djudezmo-K\u00e9rkira": ["A dialect of the Ladino language."], "Djudezmo-Thessalon\u00edki": ["A dialect of the Ladino language."], "Djudezmo-T\u00fcrkiye": ["A dialect of the Ladino language."], "Djudezmo-Sofiya": ["A dialect of the Ladino language."], "Djudezmo-Skopje": ["A dialect of the Ladino language."], "Djudezmo-Bosnia- Serbia": ["A dialect of the Ladino language."], "Djudezmo-New-York": ["A dialect of the Ladino language."], "Djudezmo-Buenos-Aires": ["A dialect of the Ladino language."], "Djudezmo-Israel": ["A dialect of the Ladino language."], "Judeo-Arogonese": ["ISO 639-6 entity"], "Catalanic": ["ISO 639-6 entity"], "Lusitanic": ["ISO 639-6 entity"], "Judeo-Italian": ["A language of Italy."], "Judeo-Italian Written": ["Written forms of the Judeo-Italian language."], "Judeo-Italian Written Hebrew Script": ["A written form of the Judeo-Italian language."], "Judeo-Italian Written Latin Script": ["A written form of the Judeo-Italian language."], "Judeo-Italian Spoken": ["Dialects of the Judeo-Italian language."], "Judeo-Veneziano": ["A dialect of the Judeo-Italian language."], "Judeo-Ferraran": ["A dialect of the Judeo-Italian language."], "Judeo-Florentine": ["A dialect of the Judeo-Italian language."], "Judeo-Mantaun": ["A dialect of the Judeo-Italian language."], "Judeo-Piedmontese": ["A dialect of the Judeo-Italian language."], "Judeo-Reggian": ["A dialect of the Judeo-Italian language."], "Judeo-Roman": ["A dialect of the Judeo-Italian language."], "Lingua-Franca": ["An extinct language of Tunisia."], "Esperanto Spoken": ["Variants of the Esperanto language used in oral communication."], "Ido Written": ["Written forms od the Ido language."], "Ido Written Latin Script": ["Ido language written with the Latin Script."], "Ido Spoken": ["The dialects of the Ido language."], "Novial": ["A constructed international auxiliary language (IAL) intended to facilitate international communication and friendship, without displacing anyone's native language."], "Pidgins And Creoles": ["ISO 639-6 entity"], "Creole-Romance": ["A family of Creole languages based on Romance languages."], "Kabuverdianu": ["A Portuguese-based Creole language spoken in the Cape Verde Islands."], "Kabuverdianu Written": ["Written forms of the Kabuverdianu language."], "Kabuverdianu Written Latin Script": ["A written form of the Kabuverdianu language."], "Kabuverdianu Spoken": ["Spoken variants of the Kabuverdianu language."], "Barlavento": ["ISO 639-6 entity"], "Sotavento": ["ISO 639-6 entity"], "Upper Guinea Crioulo": ["A group of Portuguese-based creoles spoken around Cape Verde and Guinea-Bissau."], "Upper Guinea Crioulo Spoken": ["Variants of the Upper Guinea Creole used in oral communication."], "Guineense-N": ["ISO 639-6 entity"], "Guineense-Bissau": ["ISO 639-6 entity"], "Guineense-Bijago": ["ISO 639-6 entity"], "Guineense-C": ["ISO 639-6 entity"], "S\u00e3otomense": ["A language of S\u00e3o Tom\u00e9 e Pr\u00edncipe."], "S\u00e3otomense Spoken": ["The dialects of the S\u00e3otomense language."], "Forro": ["A dialect of the S\u00e3otomense language."], "Principense": ["ISO 639-6 entity"], "Angolar": ["A language of S\u00e3o Tom\u00e9 e Pr\u00edncipe."], "Fa D'ambu": ["A language of Equatorial Guinea."], "Cafundo Creole": ["A language of Brazil."], "Indo-Portugues": ["ISO 639-6 entity"], "Indo-Portugues Spoken": ["ISO 639-6 entity"], "Diu": ["ISO 639-6 entity"], "Daman": ["ISO 639-6 entity"], "Korlai Creole Portugese": ["ISO 639-6 entity"], "Korlai Creole Portugese Written": ["Written forms of the Korlai Creole Portugese language."], "Korlai Creole Portugese Written Latin Script": ["A written form of the Korlai Creole Portugese language."], "Korlai Creole Portugese Written Devanagari Script": ["ISO 639-6 entity"], "Korlai Creole Portugese Spoken": ["ISO 639-6 entity"], "Ceil\u00e3o": ["ISO 639-6 entity"], "Malaccan Creole Potuguese": ["ISO 639-6 entity"], "Malaccan Creole Potuguese Spoken": ["ISO 639-6 entity"], "Malaquense": ["ISO 639-6 entity"], "Sumatra": ["ISO 639-6 entity"], "Java": ["ISO 639-6 entity", "An island of Indonesia and the site of its capital city, Jakarta.", "An object-oriented programming language originally developed by Sun Microsystems and released in 1995 as a core component of Sun's Java platform."], "Flores- Adonara": ["ISO 639-6 entity"], "Timor Pidgin": ["ISO 639-6 entity"], "Maluku": ["ISO 639-6 entity"], "Ternate\u00f1o": ["ISO 639-6 entity"], "Ternate\u00f1o Spoken": ["ISO 639-6 entity"], "Sulawesi": ["ISO 639-6 entity"], "Borneo": ["ISO 639-6 entity", "The third largest island in the world and is located at the centre of Maritime Southeast Asia."], "Macanese": ["A creole language derived mainly from Malay, Sinhalese, Cantonese, and Portuguese, which is spoken in Macau and Hong Kong."], "Macanese Spoken": ["Spoken dialects of the Macanese language."], "Makista-Mac\u00e3o": ["ISO 639-6 entity"], "Makista-Hong-Kong": ["ISO 639-6 entity"], "Spanish Based Creole": ["ISO 639-6 entity"], "Chavacano": ["A language of the Philippines and Malaysia (Sabah)."], "Chavacano Spoken": ["ISO 639-6 entity"], "Cavite\u00f1o": ["ISO 639-6 entity"], "Cotabato-Chabacano": ["ISO 639-6 entity"], "Ternate\u00f1o-Chabacano": ["ISO 639-6 entity"], "Davao-Chabacano": ["ISO 639-6 entity"], "Zamboangue\u00f1o": ["ISO 639-6 entity"], "Ermita\u00f1o": ["ISO 639-6 entity"], "Chabacano-Sabah": ["ISO 639-6 entity"], "Chocoano": ["ISO 639-6 entity"], "Palanquero": ["ISO 639-6 entity"], "Criollo-De-Bobures": ["ISO 639-6 entity"], "Iberian Based Creole": ["ISO 639-6 entity"], "Papiamento Spoken": ["Variants of the Papiamento language used in spoken communication."], "Curassese": ["Variety of Papiamento spoken in Cura\u00e7ao."], "Bonaire": ["An island in the southern part of the Caribbean Sea off the north coast of Venezuela (12\u00b0 11\u2032 7\u2033 N, 68\u00b0 15\u2032 43\u2033 W), which is part of the Kingdom of the Netherlands."], "Ma\u00edz": ["ISO 639-6 entity"], "French Based Cr\u00e9ole": ["A Cr\u00e9ole language based on the French vocabulary."], "Louisiana Creole French": ["A French-based cr\u00e9ole spoken in Louisiana, USA."], "Louisiana Creole French Spoken": ["Dialects of the Louisiana Creole language."], "Saint-Martin": ["ISO 639-6 entity"], "New-Roads-Edgard": ["ISO 639-6 entity"], "Houma": ["ISO 639-6 entity"], "Gombo-Texas": ["ISO 639-6 entity"], "Gombo-California": ["ISO 639-6 entity"], "Haitian Creole French": ["A language of Haiti, the Dominican Republic and Guadeloupe"], "Port-Au-Prince": ["A dialect of the Haitian Creole French language."], "Fablas": ["A dialect of the Haitian Creole French language."], "Plateau-Haitien": ["A dialect of the Haitian Creole French language."], "Haitien-N": ["A dialect of the Haitian Creole French language."], "Guadeloupean Creole French": ["A French-based Cr\u00e9ole language spoken in Guadeloupe."], "Guadeloupean Creole French Spoken": ["Dialects of the Guadeloupean Creole French language."], "Saint-Barth\u00e9lemy": ["ISO 639-6 entity"], "Grande-Terre": ["ISO 639-6 entity"], "Basse-Terre": ["ISO 639-6 entity"], "Marie-Galante": ["ISO 639-6 entity"], "Dominiquais": ["A French-based cr\u00e9ole spoken in Dominica."], "Martiniquais": ["A French-based cr\u00e9ole language spoken in Martinique."], "Saint Lucian Creole French": ["A Antillean creole language spoken in Saint Lucia, Dominica, Grenada and Trinidad and Tobago."], "San Miguel Creole French": ["A French creole spoken by St. Lucian immigrants in Panama City."], "San Miguel Creole French Spoken": ["ISO 639-6 entity"], "Carriacou": ["ISO 639-6 entity"], "Grenadien": ["ISO 639-6 entity"], "Trinidadien": ["An Antillean Creole spoken in Trinidad and Tobago."], "Guianese Creole French": ["A French-lexified creole language spoken in French Guiana, and to a lesser degree, in Suriname and Guyana."], "Guianese Creole French Spoken": ["The dialects of the Guianese Creole French language."], "Guyanais-C": ["A dialect of the Guianese Creole French language."], "Guyanais-NW": ["A dialect of the Guianese Creole French language."], "Guyanais-SE": ["A dialect of the Guianese Creole French language."], "Amap\u00e1": ["ISO 639-6 entity"], "Karip\u00fana": ["ISO 639-6 entity"], "Seselwa Creole French": ["A French-based creole language of Seychelles."], "Seselwa Creole French Spoken": ["The dialects of the Seselwa Creole French language."], "Seychellois": ["A dialect of the Seselwa Creole French language."], "Aldabra": ["A dialect of the Seselwa Creole French language."], "Morisyen": ["A creole language spoken in Mauritius."], "Morisyen Written": ["The written forms of the Morisyen language."], "Morisyen Written Latin Script": ["A written form of the Morisyen language."], "Morisyen Spoken": ["The dialects of the Morisyen language."], "Rodriguais": ["A dialect of the Morisyen language."], "Agalega": ["A dialect of the Morisyen language."], "Chagos": ["A dialect of the Morisyen language."], "R\u00e9union Creole French, Spoken": ["Dialects of the R\u00e9union Creole language."], "R\u00e9union Creole French, Urban": ["ISO 639-6 entity"], "R\u00e9union Creole French, Popular": ["ISO 639-6 entity"], "Tayo": ["A French-based creole language spoken in the commune of Mont-Dore, in New Caledonia."], "Tayo Spoken": ["The dialects of the Tayo language."], "Continental Eastern": ["ISO 639-6 entity"], "Continental North Eastern": ["ISO 639-6 entity"], "Istro-Romanian": ["ISO 639-6 entity"], "Istro-Romanian Written": ["Written forms of the Istro-Romanian language."], "Istro-Romanian Written Latin Script": ["A written form of the Istro-Romanian language."], "Istro-Romanian Spoken": ["ISO 639-6 entity"], "Jeiani": ["ISO 639-6 entity"], "Jeiani Spoken": ["ISO 639-6 entity"], "Susnjevica": ["ISO 639-6 entity"], "Susnjevica Spoken": ["ISO 639-6 entity"], "Continental Southeastern": ["ISO 639-6 entity"], "Macedo Romanian": ["An Eastern Romance language spoken in Southeastern Europe."], "Macedo Romanian Written": ["The written forms of the Macedo Romanian language."], "Macedo Romanian Written Latin Script": ["The Macedo Romanian language written with the Latin script."], "Macedo Romanian Written Greek Script": ["The Macedo Romanian language written with the Greek script."], "Macedo Romanian Spoken": ["The dialects of the Macedo Romanian language."], "Bitolia": ["A dialect of the Macedo Romanian language."], "Muscopola": ["A dialect of the Macedo Romanian language spoken in and around the Albanian city of Muscopola."], "Pindhos": ["A dialect of the Macedo Romanian language spoken in the Pinde mountains of Greece."], "Olympo-Vlach": ["A dialect of the Macedo Romanian language."], "Ali\u00e1kmon": ["A dialect of the Macedo Romanian language."], "Megleno Romanian": ["An Eastern Romance language which is spoken in Greece and Macedonia."], "Megleno Romanian Written": ["ISO 639-6 entity"], "Megleno Romanian Written Latin Script": ["ISO 639-6 entity"], "Megleno Romanian Spoken": ["ISO 639-6 entity"], "Romanaian Written Latin Script Romania Model": ["ISO 639-6 entity"], "Romanaian Written Cyrillic Script: Moldova Model": ["ISO 639-6 entity"], "Limba-Rom\u00e2neasca-G": ["ISO 639-6 entity"], "Limba-Rom\u00e2neasca-G Spoken": ["ISO 639-6 entity"], "Muntenia": ["ISO 639-6 entity"], "Muntenia Spoken": ["ISO 639-6 entity"], "Oltenia": ["ISO 639-6 entity"], "Oltenia Spoken": ["ISO 639-6 entity"], "Banat": ["ISO 639-6 entity"], "Banat Spoken": ["The dialects of the Banat language."], "Bayash": ["ISO 639-6 entity"], "Transilvania-S": ["ISO 639-6 entity"], "Transilvania-S Spoken": ["ISO 639-6 entity"], "Transilvania-N": ["ISO 639-6 entity"], "Transilvania-N Spoken": ["ISO 639-6 entity"], "Cri\u015fana": ["ISO 639-6 entity"], "Cri\u015fana Spoken": ["ISO 639-6 entity"], "Maramure\u015f": ["ISO 639-6 entity"], "Maramure\u015f Spoken": ["ISO 639-6 entity"], "Bucovina": ["ISO 639-6 entity"], "Bucovina Spoken": ["ISO 639-6 entity"], "Moldavian Written": ["Written forms of the Moldavian language."], "Moldavian Written Latin Script": ["A variety of latin script used for writing Moldavian language."], "Moldavian Written Cyrillic Script": ["A variety of cyrillic script used for writing in the Moldavian language."], "Moldavian Spoken": ["Dialects of the Moldavian language."], "Saharan": ["ISO 639-6 entity"], "Western Saharan Cluster": ["ISO 639-6 entity"], "Bilma Kanuri": ["ISO 639-6 entity"], "Bilma Kanuri Spoken": ["ISO 639-6 entity"], "Fachi": ["ISO 639-6 entity"], "Bilma": ["ISO 639-6 entity"], "Tumari Kanuri": ["A language of Niger."], "Manga Kanuri": ["A language of Niger and Nigeria."], "Manga Kanuri Spoken": ["ISO 639-6 entity"], "Manga-N": ["ISO 639-6 entity"], "Manga-S": ["ISO 639-6 entity"], "Central Kanuri": ["ISO 639-6 entity", "A language of Nigeria, Cameroon, Chad, Niger, and Sudan."], "Central Kanuri Written": ["Written forms of the Central Kanuri language."], "Central Kanuri Written Arab Script": ["The Central Kanuri langue written with the Arab Script."], "Central Kanuri Spoken": ["The dialects of the Central Kanuri language."], "Dagara": ["A dialect of the Central Kanuri language."], "Njesko": ["A dialect of the Central Kanuri language."], "Kabari": ["A dialect of the Central Kanuri language."], "Sugurti": ["A dialect of the Central Kanuri language."], "Lare": ["A dialect of the Central Kanuri language."], "Ngazar": ["A dialect of the Central Kanuri language."], "Guvja": ["A dialect of the Central Kanuri language."], "Kagama": ["A dialect of the Central Kanuri language."], "Fadawa": ["A dialect of the Central Kanuri language."], "Maiduguri": ["A dialect of the Central Kanuri language spoken in the city of Maiduguri in Borno State, Nigeria."], "Mao": ["A dialect of the Central Kanuri language."], "Kwayyamo": ["ISO 639-6 entity"], "Mavar": ["ISO 639-6 entity"], "Kanembu": ["A language of Chad."], "Kanembu Written": ["The written forms of the Kanembu language."], "Kanembu Written Latin Script": ["A written form of the Kanembu language."], "Kanembu Written Arabic Script": ["A written form of the Kanembu language."], "Kanembu Spoken": ["The dialects of the Kanembu language."], "Karkawu": ["A dialect of the Kanembu language."], "Mando": ["A dialect of the Kanembu language."], "Nguri": ["A dialect of the Kanembu language."], "Haddad": ["ISO 639-6 entity"], "Tubu Cluster": ["ISO 639-6 entity"], "Tedaga": ["ISO 639-6 entity"], "Tedaga Written": ["Written forms of the Tedaga language."], "Tedaga Written Arab Script": ["ISO 639-6 entity"], "Tedaga Written Latin Script": ["A written form of the Tedaga language."], "Tedaga Spoken": ["ISO 639-6 entity"], "Gunda": ["ISO 639-6 entity"], "Brawia": ["ISO 639-6 entity"], "Chigaa": ["ISO 639-6 entity"], "Tomagra": ["ISO 639-6 entity"], "Daza": ["ISO 639-6 entity"], "Daza Written": ["ISO 639-6 entity"], "Daza Written Latin Script": ["Daza language written with the Latin Script."], "Daza Written Arab Script": ["ISO 639-6 entity"], "Dazaga Spoken": ["ISO 639-6 entity"], "Kasherda": ["ISO 639-6 entity"], "Wannala": ["ISO 639-6 entity"], "Chitati": ["ISO 639-6 entity"], "Kreda": ["ISO 639-6 entity"], "Kreda Spoken": ["ISO 639-6 entity"], "Yorda": ["ISO 639-6 entity"], "Karda": ["ISO 639-6 entity"], "Norea": ["ISO 639-6 entity"], "Iria": ["ISO 639-6 entity"], "Eastern Saharan Cluster": ["ISO 639-6 entity"], "Zaghawa": ["Language of the Zaghawa ethnic group of Chad and Sudan.", "An African ethnic group, mainly living in eastern Chad and western Sudan, including the Darfur province of Sudan."], "Zaghawa Written": ["ISO 639-6 entity"], "Zaghawa Written Latin Script": ["A written form of the Zaghawa language."], "Zaghawa Written Arabic Script": ["ISO 639-6 entity"], "Zaghawa Spoken": ["ISO 639-6 entity"], "Tuer-Gala": ["ISO 639-6 entity"], "Dirong-Guruf": ["ISO 639-6 entity"], "Kobe-Kapka": ["ISO 639-6 entity"], "Bideyat": ["A dialect of the Zaghawa language found in Chad and western Sudan."], "Beli Written": ["The written forms of the Beli language."], "Beli Written Arab Script": ["The Beli language written with the Arab script."], "Beli Written Latin Script": ["The Beli language written with the Latin script."], "Baele": ["A dialect of the Bideyat language."], "Anna": ["A dialect of the Bideyat language."], "Awe": ["A dialect of the Bideyat language."], "Terawia": ["A dialect of the Bideyat language."], "Berti": ["An extinct language of Sudan."], "Balto-Slavic": ["ISO 639-6 entity"], "Slavic": ["ISO 639-6 entity"], "Slavic South": ["ISO 639-6 entity"], "Old Church Slavic": ["ISO 639-6 entity"], "Old Church Slavic Written": ["ISO 639-6 entity"], "Old Church Slavic Written Glagolitic Script": ["ISO 639-6 entity"], "Old Church Slavic Written Cyrillic Script": ["ISO 639-6 entity"], "Church Slavic Written": ["Written forms of the Church Slavic language."], "Church Slavic Written Cyrillic Script": ["ISO 639-6 entity"], "Church Slavic Written Latin Script": ["A written form of the Church Slavic language."], "Church Slavic Spoken": ["ISO 639-6 entity"], "Russian Church Slavonic": ["ISO 639-6 entity"], "Serbian Church Slavonic": ["ISO 639-6 entity"], "Bulgarian Church Slavonic": ["Language spoken in Bulgaria from the 12th to the 15th centuries, evolved from the Old Church Slavonic."], "Macedonian Church Slavonic": ["ISO 639-6 entity"], "Ukrainska-L Church Slavonic": ["ISO 639-6 entity"], "Croation Church Slavonic": ["ISO 639-6 entity"], "Slavic West": ["ISO 639-6 entity"], "Slavic West Central": ["ISO 639-6 entity"], "Lower Sorbian Spoken": ["Dialects of the Lower Sorbian language."], "Dolno-Serbska Formal": ["ISO 639-6 entity"], "Lub\u0144ow": ["ISO 639-6 entity"], "Ch\u00f3\u015bebuz": ["ISO 639-6 entity"], "Rogow": ["ISO 639-6 entity"], "Z\u0142y-Komarow": ["ISO 639-6 entity"], "Bukojna- K\u00f3\u0161ynka": ["ISO 639-6 entity"], "Grodk": ["ISO 639-6 entity"], "Slepe": ["ISO 639-6 entity"], "Upper Sorbian Spoken": ["Dialects of the Upper Sorbian language."], "Hornjo-Serb\u0161\u0107ina Formal": ["ISO 639-6 entity"], "Ko\u0161yna\u2013\u0141uta": ["ISO 639-6 entity"], "Budy\u0161in": ["ISO 639-6 entity"], "\u0160prejcy": ["ISO 639-6 entity"], "T\u0159elno\u2013Wochozy": ["ISO 639-6 entity"], "Mu\u017eakow": ["ISO 639-6 entity"], "Slavic West North": ["ISO 639-6 entity"], "Polabian": ["An extinct West Slavic language that was spoken by the Slavs of North-Eastern Germany around the Elbe or Labe River (hence the name), until the mid-18th century."], "Pomeranian Cluster": ["A group of dialects from the Lechitic cluster of the West Slavic languages."], "S\u0142owi\u0144cki": ["ISO 639-6 entity"], "Kashubian Written": ["Written forms of the Kashubian language."], "Kashubian Written Latin Script Kashubuan Model": ["A written form of the Kashubian language."], "Kashubian Spoken": ["Dialects of the Kashubian language."], "Polish Spoken": ["Dialects of the Polish language."], "Formal Polish": ["ISO 639-6 entity"], "Generalised Polish": ["ISO 639-6 entity"], "Bory": ["ISO 639-6 entity"], "Kociewie": ["ISO 639-6 entity"], "Krajna": ["ISO 639-6 entity"], "Kujawy": ["ISO 639-6 entity"], "Wie\u0142ko-Polska": ["ISO 639-6 entity"], "L\u0119czyckie": ["ISO 639-6 entity"], "Sieradzkie": ["ISO 639-6 entity"], "\u015a\u0142\u0105ski": ["ISO 639-6 entity"], "Orawa-N": ["ISO 639-6 entity"], "Podhale": ["ISO 639-6 entity"], "Spisz-N": ["ISO 639-6 entity"], "Ma\u0142o-Polska": ["ISO 639-6 entity"], "Mazowiecki": ["ISO 639-6 entity"], "Podlasie": ["ISO 639-6 entity"], "Mazury": ["ISO 639-6 entity"], "Warmia": ["ISO 639-6 entity"], "Che\u0142mi\u0144sko- Dobrzy\u0144ska": ["ISO 639-6 entity"], "Polski-Amerikanski": ["ISO 639-6 entity"], "Slavic West South": ["ISO 639-6 entity"], "Czech Spoken": ["ISO 639-6 entity"], "Formal Czech": ["ISO 639-6 entity"], "Generalised Czech": ["ISO 639-6 entity"], "\u010ce\u0161tina-W": ["ISO 639-6 entity"], "\u010ce\u0161tina-S": ["ISO 639-6 entity"], "Doudlebski": ["ISO 639-6 entity"], "\u010ce\u0161tina-C": ["ISO 639-6 entity"], "Praha-U": ["ISO 639-6 entity"], "\u010ce\u0161tina-NE": ["ISO 639-6 entity"], "\u010cesko-Moravsk\u00e1": ["ISO 639-6 entity"], "Han\u00e1k": ["ISO 639-6 entity"], "Dolsky": ["ISO 639-6 entity"], "Lasky": ["ISO 639-6 entity"], "Slovak Spoken": ["Dialects of the Slovak language."], "Sloven\u010dina Formal": ["ISO 639-6 entity"], "Sloven\u010dina -General": ["ISO 639-6 entity"], "Moravsko- Sloven\u010dina": ["ISO 639-6 entity"], "Doln\u00e1-Morava": ["ISO 639-6 entity"], "Tren\u010d\u00edn-N": ["ISO 639-6 entity"], "Tren\u010d\u00edn-S": ["ISO 639-6 entity"], "Orava-S": ["ISO 639-6 entity"], "Liptov": ["ISO 639-6 entity"], "Turiec": ["Dialect of the Slovak lnguage spoken in Turiec.", "A region in central Slovakia."], "Zvole\u0148": ["ISO 639-6 entity"], "Tekov": ["Dialect of the Slovak lnguage spoken in Tekov.", "A region situated in southern and central Slovakia."], "Hont": ["Dialect of the Slovak lnguage spoken in Hont.", "A historic administrative county (comitatus) of the Kingdom of Hungary and then shortly of Czechoslovakia. Its territory is presently in southern Slovakia (\u00be) and northern Hungary (\u00bc)."], "Novohrad": ["Dialect of the Slovak lnguage spoken in Novohrad.", "A historic administrative county (comitatus) of the Kingdom of Hungary. Its territory is presently in southern Slovakia and in northern present-day Hungary."], "Gemer": ["Dialect of the Slovak lnguage spoken in Gemer.", "A historic administrative county (comitatus) of the Kingdom of Hungary. ts territory is presently in southern Slovakia and northern Hungary."], "Spi\u0161-S": ["ISO 639-6 entity"], "\u0160ari\u0161": ["ISO 639-6 entity"], "Zemplin": ["ISO 639-6 entity"], "U\u017e": ["ISO 639-6 entity"], "Sloven\u010dina-Amerika": ["ISO 639-6 entity"], "Slavic East": ["ISO 639-6 entity"], "Slavic East North": ["ISO 639-6 entity"], "Russian Spoken": ["Variants of the Russian language used in oral communication."], "Russkiy Formal": ["A variant of the Russian language used in oral communication."], "Russkiy General": ["A variant of the Russian language used in oral communication."], "Arkhangelskiy": ["A variant of the Russian language used in oral communication."], "Olonetskiy": ["ISO 639-6 entity"], "Novgorodskiy": ["ISO 639-6 entity"], "Vologdo-Viatkiy": ["ISO 639-6 entity"], "Povolzhskiy": ["ISO 639-6 entity"], "Sankt-Peterburgskiy": ["ISO 639-6 entity"], "Moskovskiy": ["A variant of the Russian language used in oral communication."], "Pskovskiy": ["A variant of the Russian language used in oral communication."], "Russkiy-CW": ["A variant of the Russian language used in oral communication."], "Russkiy-CE": ["A variant of the Russian language used in oral communication."], "Bryanskiy": ["A variant of the Russian language used in oral communication."], "Tulskiy": ["A variant of the Russian language used in oral communication."], "Orlovskiy": ["A variant of the Russian language used in oral communication."], "Tambovskiy": ["A variant of the Russian language used in oral communication."], "Donskiy": ["A variant of the Russian language used in oral communication."], "Doukhobor-Emigr\u00e9": ["ISO 639-6 entity"], "Molokan-Emigr\u00e9": ["ISO 639-6 entity"], "Belarusan Spoken": ["ISO 639-6 entity"], "Belaruskaya-F": ["ISO 639-6 entity"], "Belaruskaya-G": ["ISO 639-6 entity"], "Polotsk": ["ISO 639-6 entity"], "Vitebsk- Mogilev": ["ISO 639-6 entity"], "Minsk-U": ["ISO 639-6 entity"], "Grodno- Baranovichi": ["ISO 639-6 entity"], "Slutsk- Mozyr": ["ISO 639-6 entity"], "Rusyn": ["ISO 639-6 entity"], "Rusyn Written": ["ISO 639-6 entity"], "Rusyn Spoken": ["ISO 639-6 entity"], "Rusyn-N": ["ISO 639-6 entity"], "Rusyn-W": ["ISO 639-6 entity"], "Rusyn-SE": ["ISO 639-6 entity"], "Slavic East South": ["ISO 639-6 entity"], "Ukrainian Written": ["Written forms of the Ukrainian language."], "Ukrainian Written Cyrillic Script Historical": ["The Ukrainian language written with the historical Cyrillic script."], "Ukrainian Written Cyrillic Script": ["The Ukrainian language written with the Cyrillic script."], "Ukrainian Spoken": ["The dialects of the Ukrainian language."], "Ukrainska-F": ["A dialect of the Ukrainian language."], "Ukrainska-G": ["A dialect of the Ukrainian language."], "Ukrainska- Belaruskaya": ["A dialect of the Ukrainian language."], "Ukrainska-NW": ["A dialect of the Ukrainian language."], "Kiev-U": ["A dialect of the Ukrainian language."], "Ukrainska-NE": ["A dialect of the Ukrainian language."], "Ukrainska-SW": ["A dialect of the Ukrainian language."], "Dnestr-NW": ["A dialect of the Ukrainian language."], "Lviv-U": ["A dialect of the Ukrainian language."], "Turka": ["A dialect of the Ukrainian language."], "Kuty": ["A dialect of the Ukrainian language."], "Prut-N": ["A dialect of the Ukrainian language."], "Dnestr-M": ["A dialect of the Ukrainian language."], "Ukrainska-SE": ["A dialect of the Ukrainian language."], "Surzhik": ["A dialect of the Ukrainian language."], "Slavic South West": ["ISO 639-6 entity"], "Slovenian Written": ["Written forms of the Slovenian language."], "Slovenian Written Latin Script Historical": ["ISO 639-6 entity"], "Slovenian Written Latin Script": ["ISO 639-6 entity"], "Slovenian Spoken": ["Dialects of the Slovenian language."], "Slovenian-F": ["ISO 639-6 entity"], "Slovenian-Sava": ["ISO 639-6 entity"], "Slovenian-G": ["ISO 639-6 entity"], "Slovenian-\"Amerika\"": ["ISO 639-6 entity"], "Slovenian Argentina": ["ISO 639-6 entity"], "Koro\u0161ko": ["ISO 639-6 entity"], "Koro\u0161ko Spoken": ["ISO 639-6 entity"], "Ziljsko": ["ISO 639-6 entity"], "Ro\u017eansko": ["ISO 639-6 entity"], "Krksko": ["ISO 639-6 entity"], "Obirsko": ["ISO 639-6 entity"], "Me\u00f9zi\u015bko": ["ISO 639-6 entity"], "Podjunsko": ["ISO 639-6 entity"], "Rem\u0161ni\u0161ko": ["ISO 639-6 entity"], "Primorsko Littoral Sub Cluster": ["ISO 639-6 entity"], "Resian": ["A distinct dialect of Slovene spoken in the Resia Valley, Province of Udine, Italy, close to the border with Slovenia."], "Resian Written": ["ISO 639-6 entity"], "Resian Written Latn Script": ["ISO 639-6 entity"], "Resian Spoken": ["ISO 639-6 entity"], "Bene\u0161ko": ["ISO 639-6 entity"], "Bene\u0161ko Spoken": ["ISO 639-6 entity"], "Tersko": ["ISO 639-6 entity"], "Nadi\u0161ko": ["ISO 639-6 entity"], "Brisko": ["ISO 639-6 entity"], "Obo\u0161ko": ["ISO 639-6 entity"], "Obo\u0161ko Spoken": ["ISO 639-6 entity"], "Bov\u0161ko": ["ISO 639-6 entity"], "Kobari\u0161ko": ["ISO 639-6 entity"], "Borjansko": ["ISO 639-6 entity"], "Kra\u0161ko": ["ISO 639-6 entity"], "Kra\u0161ko Spoken": ["ISO 639-6 entity"], "Kra\u0161ko-NW": ["ISO 639-6 entity"], "Kra\u0161ko-SE": ["ISO 639-6 entity"], "Istrsko": ["ISO 639-6 entity"], "Istrsko Spoken": ["ISO 639-6 entity"], "Brkinsko": ["ISO 639-6 entity"], "\u0160avrinsko": ["ISO 639-6 entity"], "Notranjsko": ["ISO 639-6 entity"], "Notranjsko Spoken": ["ISO 639-6 entity"], "Gorenjsko- Rovtarsko": ["ISO 639-6 entity"], "Gorenjsko- Rovtarsko Spoken": ["ISO 639-6 entity"], "Gorenjsko": ["ISO 639-6 entity"], "Sel\u0161ko": ["ISO 639-6 entity"], "Tolminsko": ["ISO 639-6 entity"], "Cerkljansko": ["ISO 639-6 entity"], "\u010crnovr\u0161ko": ["ISO 639-6 entity"], "Loga\u0161ko": ["ISO 639-6 entity"], "Vrhni\u0161ko- Horjuljsko": ["ISO 639-6 entity"], "Poljansko": ["ISO 639-6 entity"], "\u0160kofjelo\u0161ko": ["ISO 639-6 entity"], "Dolenjsko": ["ISO 639-6 entity"], "Dolenjsko Spoken": ["The dialects of the Dolenjsko language."], "Dolenjsko-C": ["A dialect of the Dolenjsko language."], "Dolenjsko-E": ["A dialect of the Dolenjsko language."], "Posavsko": ["A dialect of the Dolenjsko language."], "Belo-Krajinsko": ["A dialect of the Dolenjsko language."], "Belo-Krajinsko Spoken": ["The dialects of the Belo-Krajinsko language."], "Kostelsko": ["A dialect of the Dolenjsko language."], "Belo-Krajinsko-C": ["A dialect of the Dolenjsko language."], "Privr\u0161ko": ["A dialect of the Dolenjsko language."], "Poljsko": ["A dialect of the Dolenjsko language."], "\u0160okarsko": ["A dialect of the Dolenjsko language."], "\u0160tajersko-W": ["ISO 639-6 entity"], "\u0160tajersko-W Spoken": ["ISO 639-6 entity"], "Sotelsko": ["ISO 639-6 entity"], "\u0160tajersko-C": ["ISO 639-6 entity"], "Savinjsko": ["ISO 639-6 entity"], "Pohorsko": ["ISO 639-6 entity"], "Kozja\u0161ko": ["ISO 639-6 entity"], "\u0160tajersko-E": ["ISO 639-6 entity"], "\u0160tajersko-E Spoken": ["ISO 639-6 entity"], "Gori\u010dansko": ["ISO 639-6 entity"], "Prle\u0161ko": ["ISO 639-6 entity"], "Halo\u0161ko": ["ISO 639-6 entity"], "Prle\u0161ko-E": ["ISO 639-6 entity"], "Sredi\u0161\u010dansko": ["ISO 639-6 entity"], "Prekmursko Transmural": ["ISO 639-6 entity"], "Serbo-Croatian Cluster": ["ISO 639-6 entity"], "Srpsko- Hrvatski-L": ["ISO 639-6 entity"], "Srpsko- Hrvatski-L Written": ["ISO 639-6 entity"], "Srpsko-Hrvatski-L Written Cyrillic Script": ["ISO 639-6 entity"], "Srpsko- Hrvatski-L Written Glagolitic Script": ["ISO 639-6 entity"], "Srpsko- Hrvatski-L Written Latin Script": ["ISO 639-6 entity"], "Serbian Written": ["Written forms of the Serbian language."], "Serbian Written Latin Script": ["Serbian language written with the Latin Script."], "Serbian Written Cyrillic Script": ["Serbian language written with the Cyrillic Script."], "Serbian Spoken": ["Dialects of the Serbian language."], "Ikavski-Formalised": ["ISO 639-6 entity"], "Ikavski-Formalised Spoken": ["ISO 639-6 entity"], "Bosnian Written": ["The written forms of the Bosnian language."], "Bosnian Written Latin Script": ["The Bosnian language written with the Latin script."], "Bosnian Spoken": ["Spoken dialects of Bosnian."], "Srpski-G": ["ISO 639-6 entity"], "Srpski-G Spoken": ["ISO 639-6 entity"], "Hrvatski-G": ["ISO 639-6 entity"], "Hrvatski-G Spoken": ["ISO 639-6 entity"], "Kajkavski": ["A dialect of Croatian spoken in the northern and northwestern parts of Croatia."], "Kajkavski Spoken": ["Dialects of the Kajkavski language."], "Kajkavski-E": ["ISO 639-6 entity"], "Kajkavski- SW": ["ISO 639-6 entity"], "Kajkavski-NW": ["ISO 639-6 entity"], "\u010cakavski": ["ISO 639-6 entity"], "\u010cakavski Spoken": ["ISO 639-6 entity"], "Buzet": ["ISO 639-6 entity"], "\u0160tokavian-\u010cakavian": ["ISO 639-6 entity"], "Ekavian \u010cakavian": ["ISO 639-6 entity"], "Ikavian-Ekavian": ["ISO 639-6 entity"], "Ikavian \u010cakavian": ["ISO 639-6 entity"], "Ijekavian \u010cakavian": ["ISO 639-6 entity"], "\u0160tokavski": ["ISO 639-6 entity"], "\u0160tokavski Spoken": ["ISO 639-6 entity"], "\u0160tokavski-NW": ["ISO 639-6 entity"], "\u0160tokavski-W": ["ISO 639-6 entity"], "\u0160tokavski-C": ["ISO 639-6 entity"], "\u0160tokavski-N": ["ISO 639-6 entity"], "\u0160tokavski-CE": ["ISO 639-6 entity"], "\u0160tokavski-NE": ["ISO 639-6 entity"], "\u0160tokavski-E": ["ISO 639-6 entity"], "\u0160tokavski-S": ["ISO 639-6 entity"], "Italo-\u0160tokavski": ["ISO 639-6 entity"], "Torlakski": ["ISO 639-6 entity"], "Slavic South East": ["ISO 639-6 entity"], "Macedonian Written": ["Written forms of the Macedonian language."], "Macedonian Written Cyrillic Script Skopje Model": ["ISO 639-6 entity"], "Macedonian Spoken": ["Dialects of the Macedonian language."], "Makedonski-F": ["ISO 639-6 entity"], "Makedonski-N": ["ISO 639-6 entity"], "Makedonski-C": ["ISO 639-6 entity"], "Makedonski-CW": ["ISO 639-6 entity"], "Makedonski-W": ["ISO 639-6 entity"], "Makedonski-E": ["ISO 639-6 entity"], "Pirinski": ["ISO 639-6 entity"], "Makedonski-CE": ["ISO 639-6 entity"], "Makedonski-SE": ["ISO 639-6 entity"], "Makedonski-SW": ["ISO 639-6 entity"], "Bulgarian Written": ["ISO 639-6 entity"], "Bulgarian Written Cyrillic Script": ["ISO 639-6 entity"], "Bulgarian Spoken": ["The dialects of the Bulgarian language."], "Bulgarski-F": ["ISO 639-6 entity"], "Bulgarski-G": ["ISO 639-6 entity"], "Bulgarski-NW": ["ISO 639-6 entity"], "Bulgarski-SW": ["ISO 639-6 entity"], "Bulgarski-SE": ["ISO 639-6 entity"], "Pomakika": ["ISO 639-6 entity"], "Bulgarski-NE": ["ISO 639-6 entity"], "Palityan": ["ISO 639-6 entity"], "Pomak": ["ISO 639-6 entity"], "Songhai": ["A group of closely related languages/dialects centered on the middle stretches of the Niger River in the west African states of Mali, Niger, Benin, Burkina Faso, and Nigeria."], "Southern Songhai Cluster": ["ISO 639-6 entity"], "Koyra Chiini Songhay": ["A language of Mali."], "Koyra Chiini Songhay Written": ["ISO 639-6 entity"], "Koyra Chiini Songhay Spoken": ["ISO 639-6 entity"], "Koyra Chiini": ["ISO 639-6 entity"], "Jenekine": ["ISO 639-6 entity"], "Timbuktu": ["ISO 639-6 entity"], "Araouane": ["ISO 639-6 entity"], "Tombata": ["ISO 639-6 entity"], "Humburi Senni Songhay": ["Dialect of the Songhay language spoken around the city of Hombori in Mali"], "Humburi Senni Songhay Written": ["The written forms of the Humburi Senni Songhay language."], "Humburi Senni Songhay Spoken": ["The dialects of the Humburi Senni Songhay language."], "Homborikine": ["A dialect of the Humburi Senni Songhay language."], "Tinie": ["A dialect of the Humburi Senni Songhay language."], "Marense": ["A dialect of the Humburi Senni Songhay language spoken by the Marense people in Burkina Faso."], "Kaado": ["A dialect of the Humburi Senni Songhay language, spoken in the north of Niger up to the border with Mali."], "Koyraboro Senni Songhay": ["ISO 639-6 entity"], "Koyraboro Senni Songhay Written": ["ISO 639-6 entity"], "Koyraboro Senni Songhay Written Arab Script": ["ISO 639-6 entity"], "Koyraboro Senni Songhay Written Latin Script": ["ISO 639-6 entity"], "Koyraboro Senni Songhay Spoken": ["ISO 639-6 entity"], "Bamba": ["ISO 639-6 entity"], "Gaokine": ["ISO 639-6 entity"], "Alkaseybaten": ["ISO 639-6 entity"], "Gabero": ["ISO 639-6 entity"], "Zarma ": ["ISO 639-6 entity"], "Zarma Spoken": ["The dialects of the Zarma language."], "Dosso": ["A dialect of the Zarma language."], "Karimama": ["A dialect of the Zarma language."], "Wogo": ["A dialect of the Zarma language."], "Dendi": ["A language of Benin and Nigeria.", "A language of Central African Republic."], "Dendi Spoken": ["ISO 639-6 entity"], "Dendi-N": ["ISO 639-6 entity"], "Kandi": ["ISO 639-6 entity"], "Paraku": ["ISO 639-6 entity"], "Jugu": ["ISO 639-6 entity"], "Tagdal": ["ISO 639-6 entity"], "Tagdal Written": ["ISO 639-6 entity"], "Tagdal Written Arabic Script": ["ISO 639-6 entity"], "Tagdal Spoken": ["ISO 639-6 entity"], "Tihisit": ["ISO 639-6 entity"], "Tagdalt": ["ISO 639-6 entity"], "Taborog": ["ISO 639-6 entity"], "Northern Songhai Cluster": ["ISO 639-6 entity"], "Tadaksahak": ["A language of Mali."], "Tadaksahak Written": ["ISO 639-6 entity"], "Tadaksahak Spoken": ["ISO 639-6 entity"], "Tasawaq": ["ISO 639-6 entity"], "Tasawaq Spoken": ["ISO 639-6 entity"], "Korandje": ["A language of Algeria"], "Korandje Written": ["The written forms of the Korandje language."], "Korandje Spoken": ["The dialects of the Korandje language."], "beekeeping": ["The agricultural practice of intentional maintenance of honey bee colonies."], "superconductor": ["Material whose electrical resistance becomes zero below a certain temperature"], "trilby": ["A hat made of felt."], "boater": ["Personnel who drives or rides in a boat."], "failed state": ["A state in which the government has litte or no control over its territory and cannot fulfill basic national duties anymore."], "Nobel prize laureate": ["A person who has been awarded a Nobel Prize."], "prevention": ["A behavior, act or measure aimed at preventing the occurrence of something negative."], "bowler": ["A stiff felt hat with a round crown and a narrow brim."], "biological clock": ["The internal clock in the body of a human or animal that regulates sleep, hunger, and other biological functions."], "fist": ["The closed hand with the fingers on the palm."], "question mark": ["Punctuation mark that replaces the full stop (period) at the end of an interrogative sentence"], "bird's nest": ["A nest built by birds out of moss, twigs, grass etc. which is used to raise their offspring."], "rescue": ["Act of rescuing from a danger.", "To free from harm or evil."], "sue": ["To institute legal proceedings against (a person or institution)."], "angrily": ["In an angry manner."], "certified mail": ["A special type of mail offered by a postal service that allows the sender proof of mailing."], "radius": ["A circular region whose area is indicated by the length of its radius.", "Bone of the forearm that extends from the elbow to the thumb side of the wrist."], "\u00c5land Islands": ["An archipelago of islands off the coast of Sweden in the Baltic Sea, forming an autonomous province of Finland."], "American Samoa": ["A group of islands in the South Pacific, southeast of Samoa and constituting a territory of the United States of America."], "Commonwealth of the Bahamas": ["A country in the Caribbean with capital Nassau."], "People's Republic of Bangladesh": ["A country in South Asia. It is surrounded by India on all sides except for a small border with Myanmar to the far southeast and the Bay of Bengal to the south."], "Republic of Botswana": ["A country in Southern Africa whose capital is Gaborone."], "Union of the Comoros": ["A country in Eastern Africa whose capital is Moroni. Comoros consists of four islands in the Indian Ocean located between northern Madagascar and northeastern Mozambique."], "Republic of Djibouti": ["A country in Eastern Africa whose capital is Djibouti."], "Kingdom of Cambodia": ["A country in Southeast Asia. The country shares a border with Thailand to its west and northwest, with Laos to its northeast, and with Vietnam to its east and southeast. In the south it faces the Gulf of Thailand. Its capital is Phnom Penh."], "Cisalpine Celtic": ["ISO 639-6 entity"], "Federal Democratic Republic of Ethiopia": ["A country in Eastern Africa, bordered by Eritrea, Djibouti, Somalia, Kenya and Sudan. Its capital is Addis Ababa."], "Republic of Kenya": ["A country in Eastern Africa whose capital is Nairobi."], "Republic of Latvia": ["One of the Baltic countries, whose capital is Riga."], "Republic of Lithuania": ["A baltic European country with a northern border with Latvia, eastern border with Belarus, southern border with Poland, southwestern border with the Russian enclave of Kaliningrad, and western border with the Baltic Sea."], "Republic of Madagascar": ["An island country in the Indian Ocean off the southeastern coast of Africa"], "Republic of Peru": ["A country in South America, with capital Lima."], "Rwandese Republic": ["A country in Eastern Africa whose capital is Kigali."], "Kingdom of Saudi Arabia": ["Country on the Arabian Peninsula, with capital Riyadh."], "as far as": ["Up to a certain limit."], "Republic of Seychelles": ["A country of 158 islands 1,000 miles off the coast of East Africa, northeast of Madagascar. Its capital is Victoria."], "Republic of Uganda": ["Country in Eastern Africa whose capital is Kampala."], "Wellington": ["The capital of New Zealand."], "top hat": ["Man's silk hat with high cylindrical crown."], "Republic of Belarus": ["A country in Eastern Europe whose capital is Minsk."], "Kingdom of Belgium": ["A country in Western Europe at the North Sea, south of The Netherlands, north of France, and west of Germany, with capital city Brussels."], "Republic of Benin": ["A country in Western Africa whose capital is Porto Novo."], "Bermuda": ["A group of islands 1,000 kilometers off the coast of the United States, comprising an overseas territory of the United Kingdom. The capital is Hamilton."], "Kingdom of Bhutan": ["A country in South Asia whose capital is Thimphu."], "Republic of Bolivia": ["A country in South America, with administrative capital La Paz and official capital Sucre."], "Bouvet Island": ["Uninhabited island in the South Atlantic, a dependency of Norway."], "British Indian Ocean Territory": ["An overseas territory of the United Kingdom in the Indian Ocean, consisting of six island groups located south of India and about halfway between Africa and Indonesia."], "BIOT": ["An overseas territory of the United Kingdom in the Indian Ocean, consisting of six island groups located south of India and about halfway between Africa and Indonesia."], "Negara Brunei Darussalam": ["A country in Southeast Asia whose capital is Bandar Seri Begawan."], "Republic of Cameroon": ["Country in Central Africa whose capital is Yaound\u00e9."], "Kingdom of Denmark": ["Country in western Europe whose capital is Copenhagen."], "Republic of Bulgaria": ["A country in southeastern Europe. It borders five countries: Romania to the north mostly along the Danube, Serbia and the Republic of Macedonia to the west, and Greece and Turkey to the south, as well as the Black Sea, which comprises its entire eastern border. Its capital is Sofia."], "Republic of Cape Verde": ["An island country located in the Atlantic about 500 kilometers off the coast of Western Africa. Its capital is Praia."], "ISO 15924": ["The ISO code to indicate scripts."], "Cayman Islands": ["An overseas territory of the United Kingdom, comprising three islands in the Caribbean, about 150 miles south of Cuba and 170 miles northwest of Jamaica. Its capital is George Town."], "Republic of Chad": ["A country in Central Africa whose capital is N'Djamena."], "Republic of Chile": ["A country in South America, with capital Santiago de Chile."], "Christmas Island": ["A non-self-governing territory of Australia, located in the Indian Ocean about 225 (500 km) miles south of Java and 800 miles (2.360 km) northwest of Australia.", "A Pacific Ocean atoll in the northern Line Islands and part of the Republic of Kiribati."], "rosarium": ["A garden where rose bushes are planted."], "rosery": ["A garden where rose bushes are planted."], "Anguilla": ["The Caribbean island of Anguilla plus several smaller islands, together constituting an overseas territory of the United Kingdom, located east of Puerto Rico."], "Republic of Colombia": ["A country in northwestern South America, with capital Bogot\u00e1."], "Cook Islands": ["A group of islands in the South Pacific, midway between Hawaii and New Zealand."], "sardine": ["Any one of several small species of herring which are commonly preserved in olive oil or in tins for food."], "merely": ["Nothing more than."], "simply": ["Nothing more than.", "Without someone or something else.", "In a simple manner or state.", "Not wisely or sensibly, foolishly."], "kidnapping": ["The wrongful, and usually the forcible, carrying off of a human being."], "absorb": ["To completely consume.", "To include so that it no longer has separate existence."], "reluctant": ["Lacking desire or willingness."], "anchovy": ["A small saltwater fish of the Engraulidae family."], "revise": ["To modify or improve something previously written."], "researcher": ["A scientist who devotes himself to doing research."], "dolphin": ["A carnivorous aquatic mammal inhabiting mostly in the shallower seas of the continental shelves."], "reuse": ["The action of reusing an item again after it has been used."], "reconnaissance aircraft": ["A military aircraft used for inspecting the enemy territory."], "archaeometry": ["The examination of archaeological discoveries with scientific techniques and methodologies."], "archaeological science": ["The examination of archaeological discoveries with scientific techniques and methodologies."], "radiocarbon dating": ["A method to determine the age of carbonaceous organic materials up to about 60,000 years based on the radioactive decay of the isotope carbon-14."], "Menasser-Metmata": ["ISO 639-6 entity"], "Menasser-Metmata Spoken": ["ISO 639-6 entity"], "organ trade": ["The illegal trade with human organs from living donors for the purpose of transplantation."], "Republic of Costa Rica": ["A country in Central America, with capital San Jos\u00e9."], "Cote d'Ivoire": ["A country in Western Africa whose capital is Abidjan."], "Republic of Cote d'Ivoire": ["A country in Western Africa whose capital is Abidjan."], "Republic of Croatia": ["A country in Europe with capital Zagreb."], "Central Atlas Tamazight": ["A Berber language of the Afro-Asiatic language family, spoken by 3 to 5 million people in Central Morocco, as well as by much smaller communities in Algeria and France."], "Republic of Cuba": ["A country and the largest island in the Caribbean with capital Havana."], "Central Atlas Tamazight Spoken": ["Dialects of the Central Atlas Tamazight language."], "Republic of Cyprus": ["Country between Europe and the Middle East, in the Mediterranean Sea, with capital Nicosia."], "sister-in-law": ["The sister of one's husband or wife.", "The wife of one's brother.", "The sister of one's wife.", "The sister of one's husband.", "The wife of one's husband's brother.", "The wife of one's wife's brother."], "Kingdom of Morocco": ["A country in Northern Africa whose capital is Rabat."], "Andamanese": ["Language family spoken by the Andamanese peoples of the Andaman Islands, a union territory of India."], "Republic of Estonia": ["One of the Baltic countries that has land borders to the south with Latvia and to the east with Russia. It is separated from Finland in the north by the Gulf of Finland and from Sweden in the west by the Baltic Sea."], "Ravello": ["City on the Amalfi Coast, province of Salerno, region Campania, Italy."], "nail clippers": ["A mechanical device used to trim fingernails and toenails."], "nail trimmer": ["A mechanical device used to trim fingernails and toenails."], "Commonwealth of Dominica": ["A country in the Caribbean."], "Republic of Ecuador": ["A country in South America, with capital Quito."], "Arab Republic of Egypt": ["A country in North Africa."], "Republic of El Salvador": ["Country in Central America, with capital San Salvador."], "Republic of Equatorial Guinea": ["A country in Western Africa whose capital is Malabo."], "Faroe Islands": ["A group of 18 islands situated northwest of Scotland and midway between Iceland and Norway and constituting a self-governing overseas administrative division of Denmark. Its capital is Torshavn."], "Republic of the Fiji Islands": ["A country in Oceania comprising over 300 islands."], "Republic of Finland": ["One of the Nordic countries having borders with Sweden, Norway and Russia."], "disc brake": ["A type of brake where the friction is produced by brake pads which are pressed against a disk."], "French Guiana": ["An overseas region of France, located on the northern coast of South America. Its capital is Cayenne."], "French Polynesia": ["An overseas collectivity (and formally designated an \"overseas country\") of France in the Southern Pacific, about midway between South America and Australia. Its capital is Papeete, on the island of Tahiti."], "French Southern Territories": ["An overseas territory of France, including Ad\u00e9lie Land on Antarctica and islands in the southern Indian Ocean that are southeast of Africa and equidistant between that continent, Australia and Artarctica."], "French Southern and Antarctic Lands": ["An overseas territory of France, including Ad\u00e9lie Land on Antarctica and islands in the southern Indian Ocean that are southeast of Africa and equidistant between that continent, Australia and Artarctica."], "Territory of the French Southern and Antarctic Lands": ["An overseas territory of France, including Ad\u00e9lie Land on Antarctica and islands in the southern Indian Ocean that are southeast of Africa and equidistant between that continent, Australia and Artarctica."], "Gabonese Republic": ["A country in Western Africa whose capital is Libreville."], "The Gambia": ["A country in Western Africa whose capital is Banjul."], "Republic of The Gambia": ["A country in Western Africa whose capital is Banjul."], "Federal Republic of Germany": ["A central European country, with capital Berlin."], "Republic of Ghana": ["Country in Western Africa whose capital is Accra."], "Hellenic Republic": ["Country in southeastern Europe having borders with Albania, the Former Yugoslav Republic of Macedonia, Bulgaria, and Turkey."], "Republic of Guatemala": ["Country in Central America, with capital Guatemala City."], "drum brake": ["A brake in which the friction is caused by a set of shoes or pads that press against the inner surface of a rotating drum."], "overcast": ["Covered with clouds."], "overcloud": ["To cover with clouds."], "cuddle": ["To move close to somebody for affection or comfort.", "A close and affectionate embrace."], "Republic of Guinea": ["Country in Western Africa whose capital is Conakry."], "streamlet": ["A small stream which flows on the earth."], "bind": ["A difficult situation.", "To sewing together sheets or booklets that make up a book and apply a cover.", "To confine by any ligature.", "To stick to firmly."], "detect": ["To spot, detect, recognize, capture, or see something or someone having been unknown, invisible, obscured, too distant, or otherwise not found before.", "To see, discover or determine something, unclear, distant or hidden, by looking carefully."], "Republic of Guinea-Bissau": ["A country in Western Africa whose capital is Bissau."], "Karaim E": ["ISO 639-6 entity"], "Karachay-Balkar": ["A Turkic language spoken in Russia by the Karachays and Balkars."], "Karachay-Balkar Spoken": ["Dialects of the Karachay-Balkar language."], "Karachay-Balkar Written": ["Written forms of the Karachay-Balkar language."], "Karachay-Balkar Written Cyrillic Script": ["The Karachay-Balkar written with the cyrillic script."], "go back": ["To belong to an earlier time.", "To drive, ride, or go back; to return."], "date back": ["To belong to an earlier time."], "stagnate": ["To cease to flow; to stand without moving."], "retreat": ["To retreat unwillingly and/or suddenly, often caused by sudden pain, shock, scare, fright, surprise, or similar."], "pour": ["To cause a liquid to flow into a container."], "pain in the neck": ["Something which annoys."], "tricycle": ["A cycle with three wheels, powered by pedals and usually intended for young children."], "Tuvan": ["A Turkic languages spoken in the Republic of Tuva in south-central Siberia in Russia, in China and Mongolia."], "ruby": ["A dynamic, reflective, general purpose object-oriented programming language that combines syntax inspired by Perl with Smalltalk-like features.", "Red gemstone that varies from a light pink to a blood red, a variety of the mineral corundum (aluminium oxide)."], "continuous rain": ["Prolonged rain."], "State of Israel": ["A country in Southwest Asia, with capital Jerusalem."], "Hashemite Kingdom of Jordan": ["A country in the Middle East, with capital Amman."], "Republic of Kazakhstan": ["A country in Central Asia whose capital is Astana."], "snooker": ["A form of billiards."], "cue ball": ["(Snooker, pool, billiards) The white ball which is struck by the cue."], "billiard cue": ["A straight tapering rod used to impel the balls in games such as billiards, snooker, and pool."], "Saghalien": ["Island in the North Pacific which belongs to Russia."], "Qabala": ["ISO 639-6 entity", "A rayon of Azerbaijan"], "State of Kuwait": ["A country on the Arabian peninsula in Asia on the coast of the Persian Gulf, with Saudi Arabia in the South and Iraq in the North; Its capital is Kuwait City."], "German-speaking": ["Speaking the German language."], "German-language": ["Pertaining to the German language."], "rural": ["Of or related to the country."], "excavator": ["A machine used to dig the ground and to lift and carry dirt and debris."], "French-speaking": ["Speaking the French language."], "French-language": ["Pertaining to the French language."], "metallic": ["Consisting of metal."], "Shaky": ["A city in North-west Azerbaijan, in the rayon of the same name."], "Karapapak": ["A small ethnic group who mainly live in the province of West Azerbaijan of northwest Iran."], "Garapapag": ["A small ethnic group who mainly live in the province of West Azerbaijan of northwest Iran."], "Yerazi": ["An Azerbaijani sub-group, also referred to as a clan, consisting of Azeris originally from present-day Armenia."], "Nakhchivan": ["A landlocked exclave of Azerbaijan between Armenia, Turkey and Iran. Its capital is Nakhchivan City."], "churchyard": ["Square in front of the main facade of a church", "A place or area for burying the dead."], "socialite": ["A socially prominent person who is well-known in fashionable society."], "Kyrgyz Republic": ["A country in Central Asia whose capital is Bishkek."], "Lao People's Democratic Republic": ["A country in Southeast Asia whose capital is Vientiane."], "Lebanese Republic": ["A country in Southwest Asia with capital Beirut."], "Ionic": ["Ancient Greek dialect mainly spoken in Ionia, an ancient region in Anatolia."], "Ionic Greek": ["Ancient Greek dialect mainly spoken in Ionia, an ancient region in Anatolia."], "Cappadocian": ["Joint Greco-Turkish language, formerly spoken in Cappadocia (now central Turkey), today there are speakers in central and northern Greece."], "Pontic Greek": ["A language of Greece and Turkey."], "Newah Bhaye": ["One of the major languages of Nepal"], "Newari": ["One of the major languages of Nepal"], "Romaniote": ["The dialect of the Romaniotes, the group of Greek Jews whose existence in Greece is documented since the Hellenistic period. (source: Wikipedia)"], "Judeo-Greek": ["The dialect of the Romaniotes, the group of Greek Jews whose existence in Greece is documented since the Hellenistic period. (source: Wikipedia)"], "walking frame": ["A framework device used to support either an infant learning to walk, or a person with walking difficulties"], "Arumanian": ["An Eastern Romance language spoken in Southeastern Europe."], "safeguard": ["Permit issued by an authority which guarantees a person to enter and spend time in a place in which otherwise she could not enter.", "Something that serves as a guard or protection; a defense."], "Kingdom of Lesotho": ["A country in Southern Africa, entirely surrounded by the Republic of South Africa. Its capital is Maseru."], "Republic of Liberia": ["Country in Western Africa whose capital and largest city is Monrovia."], "expert": ["Showing knowledge and skill and aptitude in performing some activity.", "A very knowledgeable person in a particular area or subject."], "outlet": ["A passage or gate from inside someplace to the outside, that permits escape or release.", "A wall-mounted power socket."], "unwrap": ["To remove the paper around something.", "To remove from a package or container, particularly with respect to items that had previously been arranged closely and securely in a pack."], "Constructed Romance": ["A language inspired and based in Latin and Romance Languages."], "Great Socialist People's Libyan Arab Jamahiriya": ["A country in Northern Africa whose capital is Tripoli."], "letter scale": ["A small scale to weigh letters."], "dumb": ["Unable to speak; lacking power of speech.", "Marked by lack of intellectual acuity or somewhat mentally limited."], "Tashelhiyt": ["Berber language spoken by the Chleuh in Morocco."], "Tashelhit": ["Berber language spoken by the Chleuh in Morocco."], "Tachelhiyt": ["Berber language spoken by the Chleuh in Morocco."], "Shilha": ["A language of Libya and Tunesia."], "Grand Duchy of Luxembourg": ["A country (Grand Duchy) in north west Europe, bordered by Belgium, Germany and France. The capital of the same name is Luxembourg."], "Republic of Macedonia": ["A country in Europe."], "Republic of Mala\u0175i": ["A country in Southern Africa whose capital is Lilongwe."], "Lilongwe": ["The capital city of Malawi."], "Republic of the Maldives": ["A country in South Asia, more particularly an island nation in the Indian Ocean, located about 700 kilometers southwest of Sri Lanka. Its capital is Male."], "letter opener": ["A knife like device with a blunt edge, used for slicing letters open."], "letterhead": ["Paper which has the name of the person or company it is from printed on the top."], "European Central Bank": ["One of the world's most important central banks, located in Frankfurt, Germany, which is responsible for the monetary policy for the member countries of the Eurozone."], "ECB": ["One of the world's most important central banks, located in Frankfurt, Germany, which is responsible for the monetary policy for the member countries of the Eurozone."], "Anglo-Norman": ["An ancient language spoken in the Middle Ages at the royal court in England and by the Anglo-Norman aristocracy."], "Sarkese": ["A Norman dialect spoken in the the Channel Island of Sark."], "Sark-French": ["A Norman dialect spoken in the the Channel Island of Sark."], "sunburn": ["A burn on skin produced by exposition to the sun.", "A browning of the skin obtained from exposure to the sun."], "soap opera": ["A television serial about the lives of melodramatic characters, which are often filled with strong emotions, highly dramatic situations and suspense."], "splinter": ["A sharp fragment of a larger object, animal spine, or any foreign body that can penetrate into one's body.", "To break up into many small splinters."], "clash": ["A minor short-term fight.", "To strike together with great force.", "(For clothes) To not look good together.", "To disagree violently."], "notepaper": ["Relatively small writing paper used for writing notes or letters; often provided with matching envelopes."], "ringed": ["Wearing one or several rings."], "chair leg": ["A single leg of a chair."], "purchasing power": ["The value of a currency as measured by the amount of goods one can buy with it.", "The disposable income which can be used for consumption in private households."], "goatling": ["Young goat"], "amputate": ["To surgically remove a part of the body, especially a limb."], "section": ["Graphical representation of an architectural cutting in the direction of the length or width, carried out to reveal the internal structure.", "To cut, divide or separate into pieces.", "An image that shows an object as if cut along a plane, usually at right angles to a main axis."], "fragment": ["A small fragment of something broken off from the whole.", "To cause to be broken into pieces."], "perforate": ["To pass into or through.", "To make a hole or several holes into something, such as a sheet of paper to be filed away."], "penetrate": ["To pass into or through."], "drill": ["To create a hole by removing material with a drill.", "To repeat an idea frequently in order to encourage someone to remember it.", "A tool used to create holes."], "cut out": ["To remove or shape by cutting."], "curtail": ["To cut out the extreme parts of something."], "laryngitis": ["An inflammation of the larynx."], "hourglass": ["A device that measures the passage of a few minutes or an hour of time thanks to sand flowing through a narrow passage from one vessel to another."], "sandglass": ["A device that measures the passage of a few minutes or an hour of time thanks to sand flowing through a narrow passage from one vessel to another."], "sand timer": ["A device that measures the passage of a few minutes or an hour of time thanks to sand flowing through a narrow passage from one vessel to another."], "strengthen": ["To strengthen; to make firm.", "To become strong or stronger.", "To make strong or stronger."], "hair removal cream": ["Cream that one applies on the skin to remove hairs."], "composer": ["Artist who creates musical works."], "portrait": ["Representation of a person, for example on a painting, or on a photograph."], "photo album": ["Book into which photos are pasted."], "attract": ["To encourage someone to go to a specific place.", "To draw by a physical force causing or tending to cause to approach, adhere, or unite.", "To dispose or incline or entice to; to be attractive by arousing hope or desire."], "dome": ["Common structural element of architecture that resembles the hollow upper half of a sphere."], "tanned": ["Having skin darkened by exposure to sunlight."], "sun-tanned": ["Having skin darkened by exposure to sunlight."], "bronzed": ["Having skin darkened by exposure to sunlight."], "light-skinned": ["Having light skin."], "fair-skinned": ["Having light skin."], "dark-skinned": ["Having dark skin."], "swart": ["Having dark skin."], "swarthy": ["Having dark skin."], "greet": ["To address with salutations or expressions of kind wishes."], "dial": ["To select a number on a telephone.", "A round disk with numbers of 0 to 9 that is used to dial the phone number at old telephones"], "mark": ["To pay attention and perceive something.", "To indicate in some way for later reference.", "A perceptible indication of something not immediately apparent, as a visible clue that something has happened.", "A person who is gullible and easy to take advantage of."], "Achaemenid Empire": ["The first of the Persian Empires to rule over significant portions of the Middle East."], "Achaemenid Persian Empire": ["The first of the Persian Empires to rule over significant portions of the Middle East."], "TTM": ["The time it takes from the time a product is envisioned or defined until it is available to the customer.", "A disorder characterized by the impulse to pull out one's hairs, resulting in noticeable bald patches."], "Tetum": ["An Austronesian language spoken in East Timor."], "stock market crash": ["Sudden dramatic decline of stock prices at stock markets."], "tulip mania": ["A time in Holland in the 17th century when tulip bulbs became an object of speculation."], "tulipomania": ["A time in Holland in the 17th century when tulip bulbs became an object of speculation."], "chereme": ["The basic unit of a sign language."], "if ever": ["If there is a need."], "batter": ["To strike or hit somebody heavily and repeatedly."], "background": ["That which is farthest away from the front."], "exploiter": ["Impoverishing the land or other natural resources using them beyond their capacity."], "impoverish": ["To become poor or poorer.", "To make poor."], "reverse": ["To become the opposite one of what it was before.", "To turn around, go in the opposite direction.", "A relation of direct opposition.", "To rotate [a container] so that its opening be below; to turn upside down."], "hare": ["Mammal of the family hares and rabbits (Leporidae) with long ears, short tail and hindlegs which are shorter than the forelegs and permit running quickly."], "Guadeloupe": ["An overseas French territory located in the eastern Caribbean Sea."], "Guam": ["An island in the Western Pacific Ocean and an organized unincorporated territory of the United States of America. Its capital is Hag\u00e5t\u00f1a."], "Mayotte": ["An overseas collectivity of France located at the northern end of the Mozambique Channel in the Indian Ocean."], "ladybird": ["Any of the Coccinellidae family of beetles, having a round shape and a red or yellow spotted shell."], "tap": ["A device applied to the end of a pipe in order to interrupt and regulate the flow of a liquid or gas."], "Republic of Malta": ["A country in Europe, an island nation between Italy, Tunisia and Libya. Its capital is Valletta."], "Republic of Mali": ["A country in Western Africa whose capital is Bamako."], "Republic of Kiribati": ["Country in Oceania with capital Tarawa."], "croak": ["To cease to live.", "To utter the sound of a frog."], "quack": ["To utter the sound of a duck.", "The sound made by a duck.", "Someone who practices medicine without proper qualifications and/or promotes ineffective medical treatments.", "To practice medicine without proper qualifications and/or promote ineffective medical treatments."], "defy": ["To resist or object firmly to norms, customs, constraints, etc."], "coastal state": ["A state with access to the ocean."], "in the day": ["In the day."], "at noon": ["At noon."], "refute": ["To demonstrate the falsity or lack of foundation of what has been said or written.", "To prove to be false or invalid."], "Tintin": ["Young reporter, main character of the French comics \"The Adventures of Tintin\" written by Herg\u00e9."], "hacking": ["Being in the process to accomplish a difficult programming task.", "Being in the process to gain unauthorized access to a computer system."], "mosquito": ["A small flying insect (of the family Culicidae) known for biting and sucking blood."], "Republic of the Marshall Islands": ["A country in Oceania with capital Majuro."], "tsetse fly": ["A large biting fly from Africa which live by feeding on the blood of vertebrate animals (of the family Glossinidae)."], "prompt": ["To insist the someone does something as soon as possible."], "suspicious": ["Raising suspicion.", "Openly distrustful and unwilling to confide."], "Crimean Tatar Spoken": ["The dialects of the Crimean Tatar"], "cicada": ["An insect of the order Hemiptera."], "drug dealer": ["A person who deals with illegal drugs."], "sweep": ["To touch with a sweeping motion.", "To clean a surface with a broom."], "mirror inverted": ["That reproduces a model by reversing its characteristics or basics."], "stand out": ["To appear in way very clearly and distinguished, to distinguish themselves from the rest of the group."], "wasp": ["A flying stinging insect related to the bee, which is usually coloured yellow and black.", "A member of the dominant American upper-class culture, a white Anglo-Saxon Protestant."], "despoilment": ["The act of taking illegitimatly possession of something that belongs to others."], "Niue": ["An island nation in the south Pacific, about 400 km (250 miles) east of Tonga. Its capital is Alofi.", "A language of Niue."], "The Holy See": ["A sovereign city-state in Rome."], "State of the Vatican City": ["A sovereign city-state in Rome."], "botfly": ["A dipterous insect of the family Oestridae."], "bumblebee": ["A flying insect of the genus Bombus."], "shanty": ["A small crude shelter used as a dwelling."], "tear off": ["To pull away with force."], "arsehole": ["A strongly disliked person who behaves disgustingly, underhandedly, or nastily, etc.", "An insulting exclamation directed at a vile, stupid or a worthless person.", "The lower opening of the digestive tract, through which feces pass."], "Democratic Republic of Timor-Leste": ["A republic in Southeast Asia whose capital is Dili."], "Bandar Seri Begawan": ["The capital of the Sultanate of Brunei."], "Syrian Arab Republic": ["A country in the Middle East, with capital Damascus."], "Federated States of Micronesia": ["A country in Oceania."], "water strider": ["(Gerris Lacustris) A insect of the family Gerridae."], "Devanagari": ["An abugida script used to write several Indian languages."], "Himalayas": ["A mountain range in Asia, separating the Indian subcontinent from the Tibetan Plateau."], "Karnataka": ["One of the four southern states of India. Its capital city is Bangalore."], "Kerala": ["A state on the Malabar Coast of southwestern India. Its capital city is \\tThiruvananthapuram."], "Andhra Pradesh": ["A state in southern India. Its capital city is Hyderabad."], "Arunachal Pradesh": ["A disputed state currently administered by India and claimed by China."], "Himachal Pradesh": ["A state in the north-west of India. Its capital and largest city is Shimla."], "Perso-Arabic": ["A writing system based on the Arabic alphabet, modified to match the demands of being a writing system for the Persian language."], "Arabo-Persian": ["A writing system based on the Arabic alphabet, modified to match the demands of being a writing system for the Persian language."], "Conakry": ["The capital city of Guinea and a port on the Atlantic Ocean."], "Latin alphabet": ["An alphabetic writing system with 26 letters used with some modifications, in most of the languages of the European Union, America, Subsaharian Africa and the Islands of the Pacific Ocean."], "Roman": ["An alphabetic writing system with 26 letters used with some modifications, in most of the languages of the European Union, America, Subsaharian Africa and the Islands of the Pacific Ocean.", "Of or from Roman empire.", "Of or from Rome."], "Roman alphabet": ["An alphabetic writing system with 26 letters used with some modifications, in most of the languages of the European Union, America, Subsaharian Africa and the Islands of the Pacific Ocean."], "Kadu Kuruba": ["A language spoken in the Indian states of Karnataka, Kerala and Tamil Nadu."], "Cyrillic alphabet": ["An alphabet used for several East and South Slavic languages and many other languages of the former Soviet Union, Asia and Eastern Europe."], "Arabic alphabet": ["A script used for writing languages such as Arabic, Persian, Urdu, and others."], "Tifinagh": ["An alphabetic script used by some Berbers to write their language."], "tick": ["A small arachnid which lives on and sucks the blood of other animals including man.", "A mark made to indicate agreement, correctness or acknowledgement.", "To mark with a tick or ticks."], "babe": ["A very young human being, from birth to a year old.", "A woman that is considered sexually attractive by a man, or many men."], "Hebrew alphabet": ["A set of 22 letters used for writing the Hebrew language."], "deceitful": ["Characterized by insincerity or deceit."], "scarcely": ["Only a very short time before."], "sweaty": ["Wet or covered with sweat, smelling of sweat."], "Krymchak": ["The language spoken in Crimea by the Krymchak people."], "crab spider": ["A spider of the Thomisidae family."], "gaseous": ["Relating to, or existing as, a gas."], "shear": ["To remove the fleece from a sheep etc. by clipping.", "To deform because of shearing forces."], "deform": ["To deform because of shearing forces.", "To assume a different shape or form.", "To mar the appearance or beauty of.", "To alter the shape of (something) by stress."], "Babylon": ["An ancient city in Mesopotamia (modern Al Hillah, Iraq), the ruins of which can be found in present-day Babil Province, about 80km south of Baghdad. (source: Wikipedia)"], "Mesopotamia": ["The region now occupied by modern Iraq, eastern Syria, southeastern Turkey, and Southwest Iran. (source: Wikipedia)"], "water spider": ["Argyroneta aquatica, a spider which lives entirely under water."], "Euphrates": ["The western of the two great rivers that define Mesopotamia and which flows from Anatolia through Iraq into the Persian Gulf."], "Tigris": ["The eastern member of the pair of great rivers that define Mesopotamia and which flows from Anatolia through Iraq into the Persian Gulf."], "unisexual": ["Higher organisms (animals or plants) possessing either male or female reproductive organs, but not both."], "uniparental inheritance": ["The inheritance of genes exclusively from one parent, e.g. chloroplast DNA is inherited either maternally (many angiosperms) or paternally (most gymnosperms). (source: FAO)"], "universality": ["Referring to the genetic code, the triplet codons are translated to the same amino acid, with minor exceptions, in virtually all species. (source:FAO)", "The property of being universal, common to all members of a class."], "codon": ["One of the groups of three consecutive nucleotides in mRNA, which represent the unit of genetic coding by specifying a particular amino acid during the synthesis of polypeptides in a cell. (source: FAO)"], "mRNA": ["The RNA molecule resulting from transcription of a protein-encoding gene, following any splicing. (source: FAO)"], "messenger RNA": ["The RNA molecule resulting from transcription of a protein-encoding gene, following any splicing. (source: FAO)"], "tRNA": ["Small RNA molecules that transfer amino acids to the ribosome during protein synthesis."], "transfer RNA": ["Small RNA molecules that transfer amino acids to the ribosome during protein synthesis."], "genetic code": ["The correspondence between the set of 64 possible nucleotide triplets and the amino acids and stop codons that they specify."], "stop codon": ["A set of three nucleotides for which there is no corresponding tRNA molecule to insert an amino acid into the polypeptide chain."], "aerobic": ["Active in the presence of free oxygen, e.g. aerobic bacteria that can live in the presence of oxygen. (source: FAO)"], "anaerobic": ["An environment or condition in which molecular oxygen is not available for chemical, physical or biological processes."], "cell culture": ["The in vitro growth of cells isolated from multi-cellular organisms. (source FAO)"], "biotransformation": ["The conversion of one chemical or material into another using a biological catalyst: a near synonym is biocatalysis, and hence the catalyst used is called a biocatalyst."], "melting temperature": ["The temperature at which a double-stranded DNA molecule denatures into separate single strands. (source:FAO)"], "double-stranded DNA": ["Two complementary strands of DNA annealed in the form of a double helix. Synonym: duplex DNA. (fuente: FAO)"], "dsDNA": ["Two complementary strands of DNA annealed in the form of a double helix. Synonym: duplex DNA. (fuente: FAO)"], "double helix": ["The coiling of the two strands of the double-stranded DNA molecule, resembling a spiral staircase in which the base pairs form the steps and the sugar-phosphate backbones form the rails on each side."], "overheat": ["To get excessively hot."], "debasement": ["Estimation of the value of something or someone inferior to its real value.", "The act of abasing."], "keen": ["Full of or characterized by enthusiasm."], "tachycardia": ["Accelerated beating of the heart, (greater than 100 beats per minute)."], "indecent": ["Not adhering to the high moral standards expected of a gentleman.", "Contrary to decency."], "only to": ["Having only as an intention to."], "Cree": ["A group of closely-related Algonquian languages spoken by approximately 50,000 speakers across Canada, from Alberta to Labrador."], "Greek alphabet": ["An alphabet that has been used to write the Greek language since about the 9th century BC."], "reheat": ["To heat again something that has cooled down."], "utility model": ["Patents or certificate granted in the mechanical field in many developing countries that differ from inventions because they require a lower threshold of technological progress (inventive step) and are granted for a shorter term of protection. (source: OAS)"], "well-known mark": ["A highly reputed mark that receives special protection due to its reputation that extends beyond a specific market, sector or country. (Source: OAS)"], "conciliation": ["An alternative dispute resolution mechanism in which a neutral person meets with the the parties to a dispute and explores how the dispute might be resolved. (source: OAS)"], "party to the dispute": ["Complaining Party or the Party complained against."], "alternative dispute resolution": ["A procedure for settling a dispute by means other than litigation, such as arbitration, mediation, or mini-trial."], "mediation": ["A method of non-binding dispute resolution involving a neutral third party who tries to help the disputing parties reach a mutually agreeable solution."], "ethnic group": ["A population of human beings whose members identify with each other, either on the basis of a presumed common genealogy or ancestry, or recognition by others as a distinct group, or by common cultural, linguistic, religious, or territorial traits."], "Magyar": ["An ethnic group primarily associated with Hungary."], "origanum": ["Genus of about 20 species of aromatic herbs in the family Lamiaceae."], "diplodocus": ["A genus of diplodocid sauropod dinosaur of North America."], "dinosaur": ["A vertebrate animal that dominated terrestrial ecosystems for over 160 million years, first appearing approximately 230 million years ago. (source: Wikipedia)"], "triceratops": ["A herbivorous genus of ceratopsid dinosaur that lived during the Late Cretaceous Period, around 68 to 65 million years ago in North America."], "inflection point": ["Mathematics: Point where a graph of a function changes either from a right hand bend to a left hand bend or vice versa."], "inflexion": ["Mathematics: Point where a graph of a function changes either from a right hand bend to a left hand bend or vice versa."], "velociraptor": ["A genus of dromaeosaurid theropod dinosaur that existed approximately 83 to 70 million years ago during the later part of the Cretaceous Period."], "stegosaurus": ["An herbivorous dinosaur who lived in North America and Europe during the Late Jurassic period."], "garden spider": ["(Araneus diadematus) A very common and well-known orb-weaver spider in Western Europe."], "Mexican redknee tarantula": ["(Brachypelma smithi) A species of burrowing tarantula native to Mexico."], "power": ["Physics: ratio of the performed work to the time needed for it; the rate of doing work, measured in watts.", "capability of doing or accomplishing something.", "Muscular capacity to modify the speed of an external physical object, to deform it or to oppose another force."], "scorpion": ["An arthropod with eight legs, belonging to the order Scorpiones in the class Arachnida."], "conclude": ["To end something, to bring something to a conclusion.", "To draw a conclusion, to infer one thing from another."], "demolish": ["To tear down completely.", "To tear down, to destroy a building."], "polling station": ["Place where those entitled to vote in general elections may go to vote."], "tax collection": ["The collection of unpaid taxes.", "Taking of the tax by the state."], "file": ["A series of persons or objects placed in a line, one behind the other, usually at regular intervals.", "To record (a computer file) on a computer storage medium.", "A hand tool used to shape material by abrasion.", "To place in an archive in a logical place and order.", "A collection of papers collated and archived together.", "An aggregation of data on a storage device, identified by a name.", "To commit official papers to some office.", "(Chess) One of the eight vertical lines of squares on a chessboard.", "To shape a material with a file."], "wood frog": ["(Lithobates sylvaticus) A frog of the family Ranidae."], "cancellation": ["The act of cancelling; calling off some arrangement."], "cancel": ["To remove a common factor from both the numerator and denominator of a fraction, or from both sides of an equation.", "To make something legally invalid or void.", "To draw a line or something else through something.", "To decide that a planned event will not take place."], "ground fault circuit interrupter": ["An electrical wiring device that disconnects a circuit whenever it detects that the electric current is not balanced between the energized conductor and the return neutral conductor."], "eyelash": ["One of the hairs that grows on the eyelid, around the eyes."], "probable": ["Likely to be true.", "Having a good chance to happen."], "improbable": ["Hard to believe (a story, a tale).", "Not likely to happen; not to be reasonably expected."], "cerebral tissue": ["Aggregate of cells in the brain similar to each other and covering a specific function."], "lovechild": ["A child born to parents who aren't married to one another."], "pulmonary tuberculosis": ["A common and deadly infectious disease that is caused by mycobacteria, primarily Mycobacterium tuberculosis."], "grab": ["To seize and keep prisoner.", "To take hold of, especially in the hands, so as to seize or restrain or stop the motion of.", "To capture the attention or imagination of."], "all-party": ["In reference to a deployment of opinion, not coinciding with any particular political group and involving people from different sides."], "crosswise": ["Across something in a perpendicular or oblique way.", "In a transverse manner."], "cultivate": ["To grow plants."], "Ouagadougou": ["The capital of Burkina Faso."], "Porto Novo": ["The capital of Benin."], "Luanda": ["The capital and largest city of Angola."], "Bangui": ["Capital of the Central African Republic."], "Pyongyang": ["The capital of North Korea."], "Seoul": ["The capital of and largest city in South Korea."], "accompany": ["To go or travel in the company of someone.", "To perform an accompanying part or parts in a composition.", "To be present or associated with an event or entity (e.g. a dish or a disease)."], "enlarge": ["To make larger."], "snail": ["(Gastropoda) Ventral footed mollusk, including land snails, terrestrial pulmonate gastropod mollusks."], "expand": ["To change (something) from a smaller form to a larger one.", "To extend in one or more directions."], "widen": ["To make wide or wider.", "To become wide or wider."], "dynasty": ["A familiar descendance, for example, a Royal House."], "cooperate": ["To work together, especially for a common purpose or benefit."], "collaborate": ["To work together, especially for a common purpose or benefit."], "overwhelm": ["To subdue by superior force."], "ugly": ["Not good looking.", "Morally reprehensible."], "tribe": ["Group of people linked by the same linguistic and cultural traditions that usually live far from urban areas and practice their own legal rules and have their own political system."], "grim": ["Seeming threatening, haunting, fierce.", "Making despondent or depressive."], "cathode ray tube": ["Electron tube which can display\\ttelevision pictures"], "ciliary": ["One of the hairs that grows on the eyelid, around the eyes."], "galaxy cluster": ["A group of galaxies that are gravitationally-bound."], "logographic": ["Related to logographs."], "logograph": ["A single grapheme which represents a word or a morpheme (a meaningful unit of language)."], "logogram": ["A single grapheme which represents a word or a morpheme (a meaningful unit of language)."], "hieroglyph": ["A character from a logographic or partly logographic writing system."], "hieroglyphics": ["A writing system used by the Ancient Egyptians, that contained a combination of logographic and alphabetic elements."], "egyptian hieroglyphs": ["A writing system used by the Ancient Egyptians, that contained a combination of logographic and alphabetic elements."], "chameleon": ["(Chamaeleonidae)A squamate that belong to one of the best-known lizard families."], "Maseru": ["The capital city of Lesoto."], "Pretoria": ["The administrative capital of South Africa."], "Cape Town": ["The legislative capital of South Africa."], "Bloemfontein": ["The Judicial Capital of South Africa."], "Harare": ["The capital and largest city in Zimbabwe."], "Southern France": ["Geographical area consisting of the regions of France that border the Atlantic Ocean south of the Gironde, Spain, the Mediterranean Sea, Italy, and Switzerland south of the Jura."], "Sahidic": ["The Coptic dialect in which most known Coptic texts are written."], "Thebaic": ["The Coptic dialect in which most known Coptic texts are written."], "flowered": ["Decorated with a floral pattern."], "Jersey": ["One of the Channel Islands, located off the coast of Normandy and a dependency of the British crown since 1066. It is not, however, formally a part of the U.K."], "Bailiwick of Jersey": ["One of the Channel Islands, located off the coast of Normandy and a dependency of the British crown since 1066. It is not, however, formally a part of the U.K."], "Netherlands Antilles": ["Two island groups in the Caribbean that constituted until October 2010 an autonomous country within the Kingdom of the Netherlands. The capital was Willemstad on the island of Cura\u00e7ao."], "Pitcairn Islands": ["A group of four islands in the South Pacific that form a British overseas territory. Only Pitcairn Island itself is inhabited."], "Pitcairn, Henderson, Ducie, and Oeno Islands": ["A group of four islands in the South Pacific that form a British overseas territory. Only Pitcairn Island itself is inhabited."], "fa\u00e7ade": ["The face of a building."], "Republic of Zambia": ["A country in southern Africa. Its capital is Lusaka."], "Republic of Zimbabwe": ["A country in Southern Africa. Its capital city is Harare."], "Cura\u00e7ao": ["An island in the southern part of the Caribbean Sea off the north coast of Venezuela (12\u00b0 11\u2032 10\u2033 N, 68\u00b0 59\u2032 22\u2033 W), which is part of the Kingdom of the Netherlands."], "abstract art": ["The Art that does not depict objects in the natural world, but instead uses shapes and colours in a non-representational or subjective way."], "yell": ["To speak with a loud, excited voice.", "To utter a sudden and loud outcry."], "gloomy": ["A bit sad.", "Making despondent or depressive.", "Having the tendency to judge things by their most unfavorable or negative qualities."], "Wallis and Futuna": ["Two separate groups of islands in the South Pacific forming a French overseas collectivity (collectivit\u00e9 d'outre-mer). The capital is Mata-Utu, on Uv\u00e9a, one of the Futuna Islands."], "Territory of the Wallis and Futuna Islands": ["Two separate groups of islands in the South Pacific forming a French overseas collectivity (collectivit\u00e9 d'outre-mer). The capital is Mata-Utu, on Uv\u00e9a, one of the Futuna Islands."], "Santo Domingo": ["First city founded by Europeans in America, capital city of the Dominican Republic."], "Turks and Caicos Islands": ["Two groups of islands in the Caribbean located north of Haiti and east of Cuba that are a British Overseas Territory. The capital is Cockburn Town, located on Grand Turk Island."], "Tokelau": ["Three coral atolls in the South Pacific that are a self-administering territory of New Zealand."], "\u00c9vora": ["A Portuguese city in Alentejo, capital of the District of \u00c9vora.", "District of Portugal, located in the south."], "XDR TB": ["A subtype of multiple-drug resistant tuberculosis."], "multiple-drug resistant tuberculosis": ["A subtype of multiple-drug resistant tuberculosis."], "enact": ["To issue and approve, by a public authority, an act that has legal value."], "varix": ["A permanently enlarged vein due to genetic factors or alterations of the venous circulation."], "upazila": ["The lowest level of administrative government in Bangladesh, just under District divisions."], "Orissa": ["A state situated on the east coast of India."], "Oriya script": ["A script used to write the Oriya language and several other Indian languages, for example, Sanskrit."], "dressing gown": ["A garment open at the front worn before dressing or while lounging."], "cartoon": ["Humorous or satirical cartoon or drawing", "A film created from a sequence of several drawings giving the illusion of movement."], "python": ["(Pythonidae) The common name for a group of non-venomous constricting snakes."], "vice": ["A bad habit."], "fish finger": ["Breaded oblong pieces of fish which are usually offered as frozen food."], "fishstick": ["Breaded oblong pieces of fish which are usually offered as frozen food."], "United Mexican States": ["A country in North America, to the south of the United States and to the north of Guatemala and Belize."], "Sultanate of Oman": ["A country in the Middle East, in the south-east corner of the Arabian peninsula, with capital Muscat."], "ISO 3166-2:US": ["The subset of ISO 3166-2 which applies to the United States of America."], "Islamic Republic of Pakistan": ["A country in South Asia with capital Islamabad."], "Puerto Rico": ["An unincorporated territory of the United States, located in the Caribbean east of the Dominican Republic and consisting of the island of Puerto Rico and several smaller islands. The capital is San Juan."], "District of Columbia": ["The federal district coextensive with the city of Washington."], "Northern Mariana Islands": ["A commonwealth in political union with the United States of America at a strategic location in the western Pacific Ocean."], "Heiligendamm": ["A German seaside resort on the Baltic Sea coast of Mecklenburg-Vorpommern."], "demonstrator": ["Someone who takes part in a demonstration."], "double bass": ["The largest and lowest pitched bowed string instrument used in the modern symphony orchestra."], "contrabass": ["The largest and lowest pitched bowed string instrument used in the modern symphony orchestra."], "ISO 3166-2:DE": ["ISO 3166-2:DE"], "Bremen": ["The Free Hanseatic City of Bremen is the smallest of Germany's 16 Federal States"], "Hamburg": ["The second largest city in Germany and a city state of Germany."], "Stockholm": ["The capital and largest city of Sweden."], "Rhineland-Palatinate": ["A Federal state of Germany. Its capital is Mainz."], "Schleswig-Holstein": ["A Federal state of Germany. The capital is Kiel."], "Saarland": ["A Federal state of Germany. The capital is Saarbr\u00fccken."], "Thuringia": ["A Federal state of Germany. The capital is Erfurt."], "United States Virgin Islands": ["A group of islands in the Caribbean that are an insular area of the United States."], "United States Minor Outlying Islands": ["Nine insular United States possessions, Palmyra Atoll is the only incorporated territory among them."], "the Commonwealth of the Northern Mariana Islands": ["A commonwealth in political union with the United States of America at a strategic location in the western Pacific Ocean."], "Lombard Spoken": ["Dialects of the Lombard language."], "ISO 3166-2:AT": ["ISO 3166-2:AT"], "ISO 3166-2:NL": ["ISO 3166-2:NL"], "Limburg": ["A province of the Netherlands."], "Friesland": ["A province of the Netherlands."], "Drenthe": ["A province of the Netherlands."], "Flevoland": ["A province of the Netherlands."], "Gelderland": ["A province of the Netherlands."], "Groningen": ["A province of the Netherlands."], "Noord Brabant": ["A province of the Netherlands."], "Zeeland": ["A province of the Netherlands."], "Utrecht": ["A province of the Netherlands."], "Overijssel": ["A province of the Netherlands."], "Styria": ["The second biggest federal state of Austria."], "Carinthia": ["The southernmost federal state of Austria."], "Lord Voldemort": ["The archvillian of the Harry Potter series by JK Rowling, and nemesis of Harry Potter. His aim is to achieve unmatched power and immortality."], "drug-addicted": ["Addicted to drugs."], "organ donation": ["The act of making available organs or tissues from a recently deceased person or a living donor in order to transplant them into another person."], "donor organ": ["Organ which has been taken from a living donor or dead person with prior consent and will be or has been transplanted into another person."], "organ donor": ["Person who agrees to donate organs either alive or after death."], "Ain": ["A department named after the Ain River on the eastern edge of France in the region of Rh\u00f4ne-Alpes."], "ISO 3166-2:FR": ["ISO 3166-2:FR"], "Aisne": ["A department in the northern part of France named after the Aisne River."], "Allier": ["A department in south-central France named after the Allier River."], "Alpes-de-Haute-Provence": ["A French department in the south of France, it was formerly part of the province of Provence."], "Hautes-Alpes": ["A department in southeastern France named after the Alps mountain range."], "Alpes-Maritimes": ["A department in the extreme southeast corner of France."], "Ard\u00e8che": ["A department in south-central France named after the Ard\u00e8che River."], "Ardennes": ["A department in the northeast of France named after the Ardennes area."], "Ari\u00e8ge": ["A department in southwestern France named after the Ari\u00e8ge River."], "Aube": ["A department in the northeastern part of France named after the Aube River."], "Aude": ["A department in south-central France named after the Aude River."], "Aveyron": ["A department in southern France named after the Aveyron River."], "Bouches-du-Rh\u00f4ne": ["A department in the south of France named after the mouth of the Rh\u00f4ne River."], "Calvados": ["The French department of Calvados forms part of the region of Basse-Normandie in Normandy. It takes its name from a cluster of rocks off the coast."], "Cantal": ["A department in south-central France."], "Charente": ["A department in the region of Poitou-Charentes, in central France, named after the Charente River.", "A river in western France, flowing into the Atlantic Ocean. It is 360 km long."], "Charente-Maritime": ["A department on the west coast of France named after the Charente River."], "Cher": ["A department located in the centre of France. It is named after the Cher River."], "Corr\u00e8ze": ["A department in the central part of France, named after the Corr\u00e8ze River."], "C\u00f4te-d'Or": ["A department in the eastern part of France."], "C\u00f4tes-d'Armor": ["A department in the north of Brittany, in northwestern France."], "Creuse": ["A department in central France named after the Creuse River."], "Dordogne": ["A department in central France named after the Dordogne River."], "Doubs": ["A department in eastern France named after the Doubs River."], "Dr\u00f4me": ["A department in southeastern France named after the Dr\u00f4me River."], "Eure": ["A department in the north of France named after the Eure River."], "Eure-et-Loir": ["A French department of the center region, named after the Eure and Loir rivers."], "Finist\u00e8re": ["One of the fifth d\u00e9partement of Brittany in France."], "Corse-du-Sud": ["A French department that is composed of the southern part of the island of Corsica."], "Haute-Corse": ["A French department that constitutes the northern part of the island of Corsica."], "Gard": ["A department located in southern France, named after the river Gardon."], "Haute-Garonne": ["A department in the southwest of France named after the Garonne river."], "Gironde": ["A department in the Aquitaine region situated in southwest France named after the Gironde Estuary.", "A navigable estuary, but often referred to as a river, in southwest France and is formed from the meeting of the rivers Dordogne and Garonne just below the centre of Bordeaux."], "H\u00e9rault": ["A department in the southwest of France named after the H\u00e9rault river."], "Ille-et-Vilaine": ["A department of France, located in the region of Bretagne in the northwest of France."], "Indre": ["A department in the center of France named after the Indre river.", "A river in central France, left tributary of the Loire."], "Indre-et-Loire": ["A departement in west-central France named after the Indre and the Loire rivers."], "Kingdom of Norway": ["A country in Northern Europe, and part of Scandinavia."], "Is\u00e8re": ["A department, in the Rh\u00f4ne-Alpes region in the east of France named after the Is\u00e8re river."], "Jura": ["A department in the east of France named after the Jura mountains.", "A canton in northwestern Switzerland."], "Loir-et-Cher": ["A department in north-central France named after the Loir and the Cher river."], "Loire": ["A department in the east-central part of France occupying the River Loire's upper reaches."], "Haute-Loire": ["A department in south-central France named after the Loire River."], "Loire-Atlantique": ["A department on the west coast of France named after the Loire River and the Atlantic Ocean."], "Loiret": ["A department in north-central France named after the Loiret river."], "Lot": ["A department in the southwest of France named after the Lot river"], "Lot-et-Garonne": ["A department in the southwest of France named after the Lot and Garonne rivers."], "Loz\u00e8re": ["A department in southeast France near the Massif Central."], "Manche": ["A French department in Normandy named after La Manche, the English Channel."], "Landes": ["A d\u00e9partement in southern France."], "Maine-et-Loire": ["A department in west-central France."], "Marne": ["A department in north-eastern France named after the Marne River"], "Haute-Marne": ["A department in the northeast of France named after the Marne river."], "Mayenne": ["A department in northwest France named after the Mayenne river."], "Meurthe-et-Moselle": ["A department in the northeast of France named after the Meurthe and Moselle rivers."], "Meuse": ["A department in northeast France, named after the Meuse River.", "A major European river, rising in France and flowing through Belgium and the Netherlands before draining into the North Sea. It has a total length of 925 km."], "Morbihan": ["A department in the northwest of France named after the Morbihan, a small enclosed sea in Bretagne."], "Moselle": ["A departement in the east of France named after the Moselle River."], "Ni\u00e8vre": ["A department in the center of France named after the Ni\u00e8vre river."], "Nord": ["A department in the far north of France."], "Oise": ["A department in the north of France named after the Oise river."], "Orne": ["A department in the northwest of France named after the Orne river."], "Pas-de-Calais": ["A department in northern France named after the Strait of Dover, which it borders."], "Puy-de-D\u00f4me": ["A department in the center of France named after the dormant volcano."], "Pyr\u00e9n\u00e9es-Atlantiques": ["A department in the southwest of France which takes its name from the Pyrenees mountains and the Atlantic Ocean."], "Hautes-Pyr\u00e9n\u00e9es": ["A department in southwestern France."], "Pyr\u00e9n\u00e9es-Orientales": ["A department of southern France adjacent to the northern Spanish frontier and the Mediterranean Sea."], "Bas-Rhin": ["A d\u00e9partement of France, named after the Rhin river."], "Haut-Rhin": ["A departement of France, named after the Rhine river."], "Rh\u00f4ne": ["A French department located in the central eastern region of Rh\u00f4ne-Alpes, named after the Rh\u00f4ne river."], "Haute-Sa\u00f4ne": ["A French department of the Franche-Comt\u00e9 r\u00e9gion, named after the Sa\u00f4ne river."], "Sa\u00f4ne-et-Loire": ["A French department, named after the Sa\u00f4ne and the Loire rivers."], "Sarthe": ["A French department, named after the Sarthe river."], "Savoie": ["A French department located in the Rh\u00f4ne-Alpes region in the French Alps."], "Haute-Savoie": ["A French department, named for its location in the Alps mountain range."], "Seine-Maritime": ["A French department in Normandy."], "Seine-et-Marne": ["A French department, named after the Seine and Marne rivers."], "Yvelines": ["A French department in the region of \u00cele-de-France."], "Deux-S\u00e8vres": ["A French department named after the S\u00e8vre Nantaise and the S\u00e8vre Niortaise, two rivers which have their sources in the department."], "Somme": ["A French department, named after the Somme River, located in the north of France."], "Tarn": ["A department in the south-west of France, named after the Tarn River."], "stent": ["A tiny tube used to hold open a diseased blood vessel."], "Tarn-et-Garonne": ["A department in the southwest of France."], "flywheel": ["A mechanical device with a significant moment of inertia used as a storage device for rotational energy."], "Corsica": ["The fourth largest island in the Mediterranean Sea (after Sicily, Sardinia, and Cyprus). It is located west of Italy, southeast of France, and north of the island of Sardinia."], "Var": ["A department of southeastern France."], "Vaucluse": ["A department in the southeast of France."], "Vend\u00e9e": ["A department in west central France named after the Vend\u00e9e river."], "Vienne": ["A departement of France, named after the Vienne river."], "Haute-Vienne": ["A French department named after the Vienne River."], "Vosges": ["A French department, named after the Vosges mountain range."], "Yonne": ["A French department named after the Yonne River."], "Territoire de Belfort": ["A department in the Franche-Comt\u00e9 region of eastern France."], "Essonne": ["A French department in the region of \u00cele-de-France named after the Essonne river."], "Hauts-de-Seine": ["A department in France."], "Seine-Saint-Denis": ["A French department located in the \u00cele-de-France region."], "Val-de-Marne": ["A French department, named after the Marne River."], "Val-d'Oise": ["A French department named after the Oise river."], "abolishment": ["The cancellation or suspension of something by a decision of an authority."], "New Caledonia": ["An overseas territory of France, made up of a main island (Grande Terre) and several smaller islands."], "Saint-Pierre and Miquelon": ["A group of small islands off the eastern coast of Canada near Newfoundland that form a French territorial collectivity."], "Gers": ["A department in the southwest of France named after the Gers river."], "ISO 3166-2:IT": ["ISO 3166-2:IT"], "Agrigento": ["A province in the autonomous island region of Sicily in Italy.", "City in the province of Agrigento, in the autonomous island region of Sicily in Italy."], "Chihuahua": ["The largest state in Mexico."], "chihuahua": ["The smallest breed of dog in the world and is named after the Chihuahua State in Mexico."], "ISO 3166-2:MX": ["ISO 3166-2:MX"], "North Holland": ["A province of the Netherlands."], "South Holland": ["A province of the Netherlands."], "entrust": ["To give the custody, care, use etc., to leave in the hands of.", "To confer a trust upon."], "Alessandria": ["An Italian province which forms the south-western part of the region of Piedmont.", "A city in Piedmont, Italy, and the capital of the Province of Alessandria."], "Aosta Valley": ["A mountainous region in north-western Italy."], "agile": ["Refers to the speed of operations within an organization and speed in responding to customers.", "Moving quickly and lightly."], "Ascoli Piceno": ["A province in the Marche region of Italy."], "L'Aquila": ["A mountainous province in the Abruzzo region of Italy."], "admire": ["To look at something with great approval, pleasure or wonder; to watch with admiration.", "To feel respect or admiration for."], "Banteay Mean Chey": ["One of the 20 Cambodian khet or provinces, located in the northwest and bordering Thailand."], "extention": ["The act of making bigger, broader."], "in advance": ["Period of time previous to the moment in which something is expected to happen.", "At an earlier or preceding time than a mentioned event."], "on the contrary": ["[Phrase implying that the following clause is contrary to prior belief].", "An adverb used especially after a negation or to give emphasis to what has just been said."], "Kracheh": ["One of the 20 Cambodian khet or provinces, located in the eastern part of the country."], "clue": ["Evidence that supports a hypothesis or helps to solve a problem."], "Krati\u00e9": ["One of the 20 Cambodian khet or provinces, located in the eastern part of the country."], "Arezzo": ["The easternmost province in the Tuscany region of Italy.", "An old city in central Italy, capital of the province of the same name, located in Tuscany."], "Avellino": ["A province in the Campania region of Italy."], "lay": ["To put one thing over another.", "To cause (as an end result, not a process) an object to be in a new place.", "To place down in a position of rest, or in a horizontal position."], "Bergamo": ["a province in the Lombardy region of Italy."], "Biella": ["A province of Italy located in Piedmont."], "Belluno": ["A province in the Veneto region of Italy."], "Ancona": ["A province in the Marche region of central Italy.", "A city and a seaport in the Marche, a region of central Italy."], "iguana": ["(Iguanidae)A lizard family."], "Rhine": ["A river with a length of 1.320 km that flows through 5 countries: Switzerland, Liechtenstein, Germany, France and the Netherlands"], "ISO 3166-2:KH": ["ISO 3166-2:KH"], "Battambang": ["One of the twenty Cambodian khet or provinces, located in the northwest and bordering on Thailand."], "Baat Dambang": ["One of the twenty Cambodian khet or provinces, located in the northwest and bordering on Thailand."], "Kampong Cham": ["One of the twenty Cambodian khet or provinces, located in the eastern half of the country."], "Kampong Chaam": ["One of the twenty Cambodian khet or provinces, located in the eastern half of the country."], "Kampong Chhnang": ["One of the twenty Cambodian khet or provinces, located in the center of the country."], "Kampong Speu": ["One of the twenty Cambodian khet or provinces, located in the south central part of the country."], "Kampong Spueu": ["One of the twenty Cambodian khet or provinces, located in the south central part of the country."], "Brindisi": ["A province in the Apulia region of Italy."], "Brescia": ["A Province in the region of Lombardy, Italy."], "Barletta-Andria-Trani": ["A province in Apulia, Italy, that will be started in 2009."], "Bolzano": ["An autonomous province of Italy."], "exhausting": ["That makes somebody exhausted."], "within a stone's throw": ["Very close."], "Pyrenees": ["A range in Victoria, Australia near the town of Avoca and a wine growing region."], "Kampong Thom": ["The second-largest of Cambodia's twenty khet or provinces, located in the central area of the country."], "Kampot": ["One of Cambodia's twenty khet or provinces, located in the south."], "alligator": ["(Alligatoridae) A reptile belonging to the order Crocodilia."], "Kandal": ["One of Cambodia's twenty khet or provinces, located in the south and encircling the national capital of Phnom Penh."], "Kandaal": ["One of Cambodia's twenty khet or provinces, located in the south and encircling the national capital of Phnom Penh."], "daring": ["Not knowing fear; fearless.", "Disposed to venture or take risks."], "subdivide": ["Divide into smaller and smaller pieces."], "subdivision": ["A division of some larger or more complex organization."], "in ascending order": ["Moving or going upward."], "axis": ["In architecture: imaginary line that passes through the centre of a building or its parts", "The second cervical vertebra of the spine."], "Alps": ["A mountain range in Europe which extends itself over the northern Italy, southwestern France, Switzerland, Liechtenstein, Austria, the southern Germany and Slovenia."], "Koh Kong": ["One of the twenty Cambodian khet or provinces, located in the southwest."], "Mondolkiri": ["One of the twenty Cambodian khet or provinces, located in the eastern part of the country bordering on Vietnam."], "Mondulkiri": ["One of the twenty Cambodian khet or provinces, located in the eastern part of the country bordering on Vietnam."], "Preah Vihear": ["One of the twenty Cambodian khet or provinces, located in the north and bordering on Thailand."], "Prey Veng": ["One of the twenty Cambodian khet or provinces, located in the south."], "Prey Veaeng": ["One of the twenty Cambodian khet or provinces, located in the south."], "Mason-Dixon line": ["At the time of the American Civil War the demarcation line between the Union and the Southern states."], "Pursat": ["One of the twenty Cambodian khet or provinces, located in the west and bordering on Thailand."], "Pousaat": ["One of the twenty Cambodian khet or provinces, located in the west and bordering on Thailand."], "Ratanakiri": ["One of Cambodia's twenty khet or provinces, located in the northeast and bordering Laos and Vietnam."], "R\u00f4t\u00e2n\u00f4kiri": ["One of Cambodia's twenty khet or provinces, located in the northeast and bordering Laos and Vietnam."], "Siem Reap": ["One of Cambodia's twenty khet or provinces, located in the northwestern part of the country and site of Angkor Wat."], "Stung Treng": ["One of Cambodia's twenty khet or provinces, located in the northwest and bordering on Laos."], "Stueng Traeng": ["One of Cambodia's twenty khet or provinces, located in the northwest and bordering on Laos."], "Cagliari": ["A dialect of the Campidanese Sardinian language spoken around the city of Cagliari.", "A province in the autonomous island region of Sardinia in Italy."], "Campobasso": ["A province in the Molise region of Italy."], "Caserta": ["A province in the Campania region of Italy."], "Chieti": ["A province in the Abruzzo region of Italy."], "Carbonia-Iglesias": ["A province in the autonomous region of Sardinia, Italy."], "Caltanissetta": ["A province in the southern part of Sicily, Italy."], "Como": ["A province in the north of the Lombardy region of Italy"], "Cremona": ["A province in the Lombardy region of Italy."], "Cosenza": ["A province in the Calabria region of Italy."], "Catania": ["A province in the autonomous island region of Sicily in Italy."], "Catanzaro": ["A province of the Calabria region, in Italy."], "Enna": ["A province in the autonomous island region of Sicily in Italy."], "Foggia": ["A province in the Apulia (Puglia) region of Italy."], "Fermo": ["The fifth province of the Marche Region, Italy."], "Forl\u00ec-Cesena": ["A province in the Emilia-Romagna region of Italy."], "Gorizia": ["A province in the autonomous Friuli-Venezia Giulia region of Italy."], "Isernia": ["A province in the Molise region of Italy."], "Crotone": ["A province in the Calabria region of Italy."], "Lecco": ["A province in the Lombardy region of Italy."], "Lecce": ["A province in the Apulia region of Italy."], "Lodi": ["A province in the Lombardy region of Italy."], "Latina": ["A province in the Lazio region of Italy"], "Medio Campidano": ["A province in the autonomous region of Sardinia, Italy."], "Macerata": ["A province in the Marche region of Italy."], "Mantua": ["A province in the Lombardy region of Italy."], "Svay Rieng": ["One of Cambodia's twenty khet or provinces, located in the country's southeast and bordering Vietnam."], "Svaay Rieng": ["One of Cambodia's twenty khet or provinces, located in the country's southeast and bordering Vietnam."], "Takeo": ["One of Cambodia's twenty khet or provinces, located in the south and bordering on Vietnam."], "Taakaev": ["One of Cambodia's twenty khet or provinces, located in the south and bordering on Vietnam."], "Oddar Meancheay": ["One of Cambodia's twenty khet or provinces, located in the northeast and bordering Thailand."], "Otdar Mean Chey": ["One of Cambodia's twenty khet or provinces, located in the northeast and bordering Thailand."], "Eiffel Tower": ["An iron tower beside the River Seine in Paris which was built on the occasion of the Exposition Universelle in 1889."], "Massa-Carrara": ["A province in the Tuscany region of Italy."], "Matera": ["A province in the Basilicata region of Italy."], "Monza and Brianza": ["A province of the Lombardy region in Italy."], "Champ de Mars": ["Large public green-space in Paris, located in the 7th arrondissement, between the Eiffel Tower to the northwest and the \u00c9cole Militaire to the southeast."], "accomplish": ["To bring to a succesful end; to gain with effort.", "To satisfy, carry out, bring to completion (an obligation, a requirement, etc.)."], "The Assumption": ["The taking up of the body and soul of the Virgin Mary when her earthly life had ended."], "assign": ["To give something to (a person), or assign a task to (a person).", "To select something or someone for a specific purpose.", "To assign to someone as his or her lot.", "To attribute or credit to.", "To legally transfer one's right to.", "To associate ownership of (something) to someone."], "aura": ["Distinctive but intangible quality that seems to surround someone or something."], "austerity": ["Reported to one architectonic style: that it avoids every excess, simple and sober."], "Nuoro": ["A province in the autonomous island region of Sardinia in Italy"], "ISO 3166-2:PT": ["The subset of ISO 3166-2 which applies to Portugal", "ISO 3166-2:PT"], "hummingbird": ["A small bird in the family Trochilidae."], "Aveiro": ["A Portuguese city in Beira Litoral, capital of the District of Aveiro.", "District of Portugal, located on the west coast."], "Gerbera": ["(Gerbera) Genus of ornamental plants from the sunflower family (Asteraceae)."], "aquatic bird": ["A bird which lives on or at water."], "ISO 3166-2:GE": ["The code for Georgia in ISO 3166-2.", "ISO 3166-2:GE"], "Ogliastra": ["A province in eastern Sardinia, Italy."], "Olbia-Tempio": ["A province in the autonomous region of Sardinia, Italy."], "Oristano": ["A province in the autonomous island region of Sardinia in Italy."], "Palermo": ["A province in the autonomous region of Sicily, Italy.", "A city in the autonomous region of Sicily, Italy."], "finch": ["(Fringilla coelebs) A songbird."], "Viseu": ["District of Portugal, located in the central inland."], "Adjara": ["An autonomous republic of Georgia, in the southwestern corner of the country, bordered by Turkey to the south and the eastern end of the Black Sea."], "Pescara": ["A province in the Abruzzo region of Italy.", "A city in central Italy, in the region of Abruzzo."], "Guria": ["A region in Georgia, in the western part of the country, bordered by the eastern end of the Black Sea."], "Imereti": ["A province in the western part of Georgia situated along the middle and upper reaches of the Rioni river."], "Kakheti": ["A region in Eastern Georgia bordered by the province of Tusheti and mountain-range of Greater Caucasus to the north, Azerbaijan to the east and the south, and the Georgian region of Kartli to the west."], "Pesaro and Urbino": ["A province in the Marche region of Italy."], "Pesaro e Urbino": ["A province in the Marche region of Italy."], "Samegrelo-Zemo Svaneti": ["A region in western Georgia which includes the historical Georgian provinces of Samegrelo (Mingrelia) and Zemo Svaneti (Upper Svaneti)."], "Racha-Lechkhumi and Kvemo Svaneti": ["A region in the northwest of Georgia which includes the historical provinces of Racha, Lechkhumi and Kvemo Svaneti (Lower Svaneti)."], "Kvemo Kartli": ["A historic province and current administrative region in southeastern Georgia."], "Mtskheta-Mtianeti": ["A region in eastern Georgia which includes the town and the District of Mtskheta together with the adjoining mountainous provinces."], "Shida Kartli": ["A region in Georgia, located on the north of Kartli, between the river Mtkvari and the mountains of Caucasus."], "Samtskhe-Javakheti": ["A region in southern Georgia, bordered by the Autonomous Republic of Adjara to the west and Armenia and Turkey to the South."], "Rabat": ["The capital of Morocco."], "North Brabant": ["A province of the Netherlands."], "archaic": ["Of very old age."], "melancholy": ["A longing for the past, often idealized."], "atavistic": ["Real or supposed evolutionary throwback."], "a very long time ago": ["Describes a period that has passed a long time ago."], "Tripoli": ["The capital of Libya."], "Pavia": ["A province in the Lombardy region of Italy."], "Potenza": ["A province in the Basilicata region of Italy."], "Reggio Calabria": ["A province in the Calabria region of Italy."], "Reggio Emilia": ["A province in the region of Emilia-Romagna in Italy."], "Ragusa": ["A province in the autonomous island region of Sicily in Italy."], "Rieti": ["A province in the Latium region of Italy."], "genuflection": ["An act of reverence consisting of falling onto (usually) one knee."], "Reggio di Calabria": ["A province in the Calabria region of Italy."], "kingfisher": ["(Alcedo atthis) Colourful fish eating bird."], "Lower Kartli": ["A historic province and current administrative region in southeastern Georgia."], "gourde": ["Currency of Haiti (HTG)."], "Haitian gourde": ["Currency of Haiti (HTG)."], "Sungor": ["A Nilo-Saharan language spoken in western Sudan and eastern Chad."], "Rimini": ["A province in the Emilia-Romagna region of Italy."], "Siena": ["A province in the Tuscany region of Italy."], "Sondrio": ["A province in the Lombardy region of Italy."], "La Spezia": ["A province in the Liguria region of Italy.", "The capital city of the province of La Spezia, Italy."], "Syracuse": ["A province in the autonomous island region of Sicily in Italy."], "Sassari": ["A province in the autonomous island region of Sardinia in Italy."], "Taranto": ["A province in the Apulia region of Italy.", "Italian city with about 200,000 inhabitants in the Apulia region of Italy."], "Teramo": ["A province in the Abruzzo region of Italy."], "Trento": ["An autonomous province in the autonomous Trentino-Alto Adige/S\u00fcdtirol region of Italy."], "Turin": ["A province in the Piedmont region of Italy.", "Large city in northern Italy, capital of the Piedmont region and of the province of Turin."], "Trapani": ["A province in the autonomous island region of Sicily in Italy."], "Terni": ["A province in the Umbria region of Italy"], "Trieste": ["A province in the autonomous Friuli-Venezia Giulia region of Italy.", "A city of Italy located on the Adriatic Sea at the eastern part of the Po valley."], "Treviso": ["A province in the Veneto region of Italy."], "Udine": ["A province in the autonomous Friuli-Venezia Giulia region of Italy."], "Verbano-Cusio-Ossola": ["A province in the Italian region of Piedmont."], "Walad Dulla": ["A dialect of the Assangori language.", "An ethnic group of Chad."], "Bognak-Asungorung": ["ISO 639-6 entity"], "Vicenza": ["A province in the Veneto region of northern Italy."], "Verona": ["A province in the Veneto region of Italy."], "Viterbo": ["A province in the Lazio region of Italy."], "Vibo Valentia": ["A province in the Calabria region in Italy."], "nightingale": ["(Luscinia megarhynchos) A songbird."], "Caucasus": ["A mountain system in Eurasia between the Black and the Caspian sea in the Caucasus region.", "A region in Eurasia bordered on the south by Iran, on the southwest by Turkey, on the west by the Black Sea, on the east by the Caspian Sea, and on the north by Russia."], "Caucasia": ["A region in Eurasia bordered on the south by Iran, on the southwest by Turkey, on the west by the Black Sea, on the east by the Caspian Sea, and on the north by Russia."], "Tetun": ["An Austronesian language spoken in East Timor."], "Karelian": ["A language spoken in Karelia, closely related to Finnish, with which it is not necessarily mutually intelligible."], "Ghotuo": ["A language spoken in the Edo State, Owan, and Akoko-Edo areas of Nigeria and surrounding areas."], "Alumu-Tesu": ["A language of Nigeria."], "Ari": ["A language of Papua New Guinea"], "Amal": ["A language of Papua New Guinea."], "Arifama-Miniafia": ["A language of Papua New Guinea"], "Ankave": ["A language of Papua New Guinea."], "Anamb\u00e9": ["A language of Brazil."], "Par\u00e1 Ar\u00e1ra": ["A language of Brazil"], "Eastern Abnaki": ["An extinct language of the USA."], "Abau": ["A language of Papua New Guinea."], "Solong": ["A language of Papua New Guinea."], "Mandobo Atas": ["A language of Indonesia (Papua)."], "Aariya": ["A language of India."], "Amarasi": ["A language of Indonesia (Nusa Tenggara)."], "Ab\u00e9": ["A Kwa language spoken by the Ab\u00e9 people primarily in the Department of Agboville in C\u00f4te d'Ivoire."], "Bankon": ["A language of Cameroon."], "Ambala Ayta": ["A language of Philippines."], "Camarines Norte Agta": ["A language of the Philippines."], "Western Abnaki": ["A language of Canada."], "Abai Sungai": ["A language of Malaysia (Sabah)."], "Abaga": ["A language of Papua New Guinea."], "Abidji": ["A language of C\u00f4te d'Ivoire."], "Abung": ["A language of Indonesia (Sumatra)."], "Abanyom": ["A language of Nigeria."], "Abua": ["A language of Nigeria."], "Abon": ["A language of Nigeria."], "Abenlen Ayta": ["A language of the Philippines."], "celebrate oneself": ["To celebrate or praise themselves (in a solemn manner)."], "Free Trade Agreement": ["Economic integration in which countries eliminate substantially all tariffs and non-tariff barriers among themselves."], "abdominal": ["Relating to or pertaining to the abdomen", "The muscles of the abdomen."], "abrupt": ["Happening quickly and with little or no warning."], "plinth": ["An architectural support or base (as for a column or statue)."], "accidental": ["Happening unexpectedly or by chance."], "accommodation": ["Provision of accommodation for rest or for residence in a room or rooms or in a dwelling place.", "Adjustment, especially that of the eye for various distances."], "headless": ["Without a head."], "Abron": ["A language of Ghana and C\u00f4te d'Ivoire."], "Ambonese Malay": ["A language of Indonesia (Maluku)."], "Ambulas": ["A language of Papua New Guinea."], "Abure": ["A language of C\u00f4te d'Ivoire."], "Pal": ["A language of Papua New Guinea."], "Inabaknon": ["A language of the Philippines."], "Aneme Wake": ["A language of Papua New Guinea"], "Abui": ["A language of Indonesia (Nusa Tenggara)"], "Reggio nell'Emilia": ["A province in the region of Emilia-Romagna in Italy."], "Achagua": ["A language of Colombia."], "\u00c1nc\u00e1": ["A language of Nigeria."], "Cubulco Achi'": ["A language of Guatemala."], "Gikyode": ["A language of Ghana."], "Aceh": ["A Malayo-Polynesian language spoken by the indigenous population of the Aceh province in Indonesia, in the northern part of the Sumatra Island."], "Akar-Bale": ["An extinct language of India."], "Mesopotamian Spoken Arabic": ["A language of Iraq, Iran and Syria."], "Eastern Acipa": ["A language of Nigeria."], "Ta'izzi-Adeni Spoken Arabic": ["A language of Yemen and Djibouti."], "Acro\u00e1": ["An extinct language of Brazil."], "Achterhoeks": ["A language of Netherlands."], "Achuar-Shiwiar": ["A language of Peru and Equador."], "Achumawi": ["A language of the Palaihnihan family spoken by the Pit River people in northeastern California, USA."], "Hijazi Spoken Arabic": ["A language of Saudi Arabia and Eritrea."], "Omani Spoken Arabic": ["A language of Oman, Kenya and Tanzania."], "Cypriot Spoken Arabic": ["A language of Cyprus."], "possessive": ["Desiring to possess and control a beloved being."], "Adabe": ["A language of East Timor."], "Dzodinka": ["A language of Cameroon and Nigeria."], "Adele": ["A language spoken in central eastern Ghana and central western Togo by about 21000 people."], "Dhofari Spoken Arabic": ["A language of Oman."], "Andegerebinha": ["A language of Australia"], "Adi": ["A language of India"], "Adioukrou": ["A language of C\u00f4te d'Ivoire."], "Galo Adi": ["A language of India."], "Adang": ["A language of Indonesia (Nusa Tenggara)."], "Abu": ["A language of Papua New Guinea."], "Adap": ["A language of Bhutan."], "Adonara": ["A language of Indonesia (Nusa Tenggara)."], "Adamorobe Sign Language": ["An indigenous sign language used in Adamorobe, an Akan village in eastern Ghana."], "Adynyamathanha": ["An Australian Aboriginal language spoken by the Adnyamathanha people from the Flinders Ranges in South Australia."], "Aduge": ["A Benue-Congo language spoken by the Aduge people in the Anambra State of Nigeria."], "Amundava": ["A language of Brazil."], "Amdo Tibetan": ["A Tibetan language spoken by the majority of the people of Amdo in North Eastern Tibet, and in the Chinese states of Qinghai and some parts of Sichuan (Aba) and Gansu (Ganlho)."], "Areba": ["A language of Australia."], "Tunisian Spoken Arabic": ["A language of Tunisia."], "Sa`idi Spoken Arabic": ["A language of Egypt."], "Argentine Sign Language": ["A sign language of Argentina."], "Haeke": ["A language of New Caledonia."], "Ambele": ["A language of Cameroon."], "Armenian Sign Language": ["A sign language of Armenia."], "Eastern Arrarnta": ["A language of Australia."], "Alsea": ["An extinct language of the USA."], "Ambakich": ["A language of Papua New Guinea"], "Amerax": ["A language of the USA."], "Amele": ["A language of the Trans-New Guinea branch of the Indo-Pacific family, spoken in Madang District (Madang Province, Papua New Guinea)."], "adaptation": ["Change of a product in order to make sure that it corresponds to the specific requirements of the customers.", "The quality of being adapted.", "The fit of an organism to its environment, which allows successful survival and reproduction."], "Aosta": ["The principal city of the bilingual Aosta Valley in the Italian Alps, 110km north-northwest of Turin."], "amethyst": ["A purple variety of quartz often used as an ornament."], "Gulf Spoken Arabic": ["A language of Iraq, Bahrain, Iran, Kuwait, Om\u00e1n, Quatar, Saudi Arabia and the United Arab Emirates."], "Putukwam": ["A Benue-Congo language spoken in the Cross River state of Nigeria."], "Afrihili": ["A constructed language designed in 1970 to be used as a lingua franca in all of Africa."], "Akrukay": ["A language of Papua New Guinea."], "Defaka": ["An Ijoid language spoken by the Defaka people, in the eastern part of the Niger Delta, Rivers State, Nigeria."], "Eloyi": ["A Benue-Congo language spoken by the Eloyi people, in the Benue, and Plateau Provinces in central Nigeria."], "Afro-Seminole Creole": ["A language of the USA and Mexico."], "Awutu": ["A language of Ghana."], "Obokuitai": ["A language of Indonesia (Papua)."], "Aguano": ["An extinct language of Peru."], "Legbo": ["A language of Nigeria."], "Agatu": ["A language of Nigeria."], "Agarabi": ["A language of Papua New Guinea."], "Angal": ["A language of Papua New Guinea."], "Arguni": ["A language of Indonesia (Papua)."], "Angor": ["A language of Papua New Guinea."], "Ngelima": ["A language of the Democratic Republic of the Congo."], "Argobba": ["A language of Ethiopia."], "Isarog Agta": ["A language of the Philippines."], "Fembe": ["A language of Papua New Guinea."], "Angaatiha": ["A language of Papua New Guinea."], "Agutaynen": ["A language of the Philippines."], "Tainae": ["A language of Papua New Guinea."], "Aghem": ["A language of Cameroon."], "Aguaruna": ["A Jivaroan language of Peru."], "Esimbi": ["A language of Cameroon."], "Central Cagayan Agta": ["A language of the Philippines."], "Awakateko": ["A language of Guatemala."], "Remontado Agta": ["A language of the Philippines."], "Kahua": ["A language of the Solomon Islands."], "Southern Alta": ["A language of the Philippines."], "Mt. Iriga Agta": ["A language of the Philippines."], "Ahanta": ["A language of Ghana."], "Axamb": ["A language of Vanuatu."], "Ahe": ["A language of Indonesia (Kalimantan)."], "Aghu": ["A language of Indonesia (Papua)."], "Tiagbamrin Aizi": ["A language of C\u00f4te d'Ivoire"], "Akha": ["A language of Myanmar, China, Laos, Thailand and Vietnam."], "Mediterranean island": ["An island in the Mediterranean Sea."], "Igo": ["A language of Togo."], "aggressor": ["Male person who has committed an act of aggression", "A person who attacks."], "Mobumrin Aizi": ["A language of C\u00f4te d'Ivoire."], "\u00c0h\u00e0n": ["A language of Nigeria."], "Aproumu Aizi": ["A language of C\u00f4te d'Ivoire."], "Ashe": ["A language of Nigeria."], "Ahtena": ["A language of the USA."], "multinational corporation": ["A business company operating in multiple countries."], "antioxidant": ["Molecules that slow or prevent the oxidation of other chemicals."], "Arosi": ["A language of the Solomon Islands."], "starling": ["(Sturnus vulgaris) A passerine bird in the family Sturnidae."], "complex": ["Hard to accomplish."], "publication": ["Act of publishing."], "prostitute": ["A woman who sells sexual services for money."], "elderly": ["A person that has been living for a relatively long period of time."], "humerus": ["The long bone in the arm that runs from the shoulder to the elbow."], "sacrum": ["Large and triangular bone at the base of the spine and at the upper and back part of the pelvic cavity, where it is inserted like a wedge between the two hip bones. Its upper part connects with the last lumbar vertebra, and bottom part with the coccyx (tailbone)."], "French horn": ["A wind instrument made of a wound copper tube with a wide sound bucket and valves."], "ISO 3166-2:BR": ["The subset of ISO 3166-2 which applies to Brazil."], "ISO 3166-2:CN": ["ISO 3166-2:CN"], "ISO 3166-2:NO": ["ISO 3166-2:NO"], "Miranda do Douro": ["A Romance language spoken by some 15,000 people around Miranda do Douro in northeastern Portugal."], "Ainbai": ["A language of Papua New Guinea."], "Alngith": ["A language of Australia"], "Amara": ["A language of Papua New Guinea."], "Agi": ["A language of Papua New Guinea."], "Antigua and Barbuda Creole English": ["A creole language of Antigua and Barbuda, Anguilla, Dominica, Montserrat and Saint Kitts and Nevis."], "Saint Kitts Creole English": ["A creole language of Antigua and Barbuda, Anguilla, Dominica, Montserrat and Saint Kitts and Nevis."], "Montserrat Creole English": ["A creole language of Antigua and Barbuda, Anguilla, Dominica, Montserrat and Saint Kitts and Nevis."], "Kokoy Creole English": ["A creole language of Antigua and Barbuda, Anguilla, Dominica, Montserrat and Saint Kitts and Nevis."], "Anguillan Creole English": ["A creole language of Antigua and Barbuda, Anguilla, Dominica, Montserrat and Saint Kitts and Nevis."], "Ai-Cham": ["A language spoken in Libo County, Qiannan Buyei and Miao Autonomous Prefecture, Guizhou Province, People's Republic of China.", "A language of China."], "Ake": ["A language of Nigeria."], "Aimele": ["A language of Papua New Guinea."], "Aimol": ["A language of India."], "Burumakok": ["A language of Indonesia (Papua)."], "Aimaq": ["A language of Afghanistan and Iran."], "Airoran": ["A language of Indonesia (Papua)."], "Nataoran Amis": ["A language of Taiwan."], "Arikem": ["An extinct language of Brazil."], "Aigon": ["A language of Papua New Guinea."], "Ali": ["A Gbaya language of the southwestern Central African Republic."], "South Levantine Spoken Arabic": ["A language of Jordan, Israel and Palestine."], "Aja": ["A Nilo-Saharan language of the Central Sudanic subgroup, spoken in the southern Sudanese province of Bahr el Ghazal and along the Sudanese border in the Central African Republic.", "A language of Sudan.", "A language of Benin and Togo."], "Aji\u00eb": ["A language of New Caledonia."], "Judeo-Tunisian Arabic": ["A language of Israel and Tunisia."], "Judeo-Moroccan Arabic": ["A language of Israel and Morocco."], "Amri": ["A language of India."], "Crimean Turkish": ["A Turkic language of Crimea and Uzbekistan."], "porthole": ["A circular window set in the hull of a ship."], "vitreous": ["Relating to or resembling glass or material in a glassy state."], "senator": ["Member of the senate."], "Sergipe": ["The smallest Brazilian state, located in the northeast, on the Atlantic Coast. Its capital is Aracaju."], "Aracaju": ["Capital of the Brazilian state of Sergipe."], "vivid": ["Full of life."], "Par\u00e1": ["One of the 26 Brazilian states, located in the north and bordering on Guyana and Suriname. Its capital is Bel\u00e9m."], "Bel\u00e9m": ["Capital of the Brazilian state of Par\u00e1."], "acidosis": ["A pathologic condition resulting from accumulation of acid or depletion of the alkaline reserve in the blood and body tissues, and characterized by an increase in hydrogen ion concentration."], "retrieve": ["To regain or get back something."], "rectify": ["To correct or amend something; set straight or right."], "Batak Angkola": ["A language of Indonesia (Sumatra)."], "Mpur": ["A language of Indonesia (Papua)."], "Ukpet-Ehom": ["A language of Nigeria."], "Ingarik\u00f3": ["A language of Guyana, Brazil and Venezuela."], "Akpa": ["A language of Nigeria."], "Anakalangu": ["A language of Indonesia (Nusa Tenggara)."], "Angal Heneng": ["A language of Papua New Guinea."], "Aiome": ["A language of Papua New Guinea."], "cockchafer soup": ["A soup made out of maybugs which are roasted without wings and legs and which was eaten in France and Germany until the middle of the 20th century."], "Pyrrhic victory": ["A victory which was achieved with great sacrifice and possibly amounts to a defeat."], "although": ["Despite the fact that.\\n[Expression to indicate that something occurs or is done in the opposite way than what is required or sensible.]", "In defiance of.", "In spite of being."], "Minas Gerais": ["The second-most populous Brazilian state, located in the southeast. The capital is Belo Horizonte."], "Belo Horizonte": ["Capital of the Brazilian state Minas Gerais."], "Roraima": ["The northernmost state of Brazil and also the least populated, bordering Venezuela and Guyana. Its capital is Boa Vista."], "Boa Vista": ["Capital of the Brazilian state of Roraima."], "Mato Grosso do Sul": ["One of the 26 Brazilian states, located in the south (and part of the Center-West economic reporting region) and bordering Paraguay and Bolivia to the west. Its capital is Campo Grande."], "Campo Grande": ["Capital of the Brazilian state of Mato Grosso do Sul."], "Aklanon": ["A language of the Philippines."], "Amikoana": ["A language of Brazil."], "Akurio": ["A language of Suriname."], "Siwu": ["A language of Ghana."], "Ak": ["A language of Papua New Guinea."], "Araki": ["An Oceanic language spoken in the Araki Island in Vanuatu."], "Akaselem": ["A language of Togo."], "Akolet": ["A language of Papua New Guinea."], "Akum": ["A language of Cameroon and Nigeria."], "Akwa": ["A language of Congo."], "Model-view-controller": ["An architectural pattern used in software engineering that decouples data access and business logic from data presentation and user interaction by introducing an intermediate component: the controller."], "software engineering": ["The application of a systematic, disciplined, quantifiable approach to the development, operation, and maintenance of software. (source: IEEE)"], "architectural pattern": ["A software pattern that offers well-established solutions to architectural problems in software engineering."], "user interface": ["The aggregate of means by which people interact with a particular machine, device, computer program or other complex tool."], "man-machine interaction": ["The study of interaction between people (users) and computers."], "human-computer interaction": ["The study of interaction between people (users) and computers."], "business logic": ["The functional algorithms which handle information exchange between a database and a user interface."], "database management system": ["Computer software designed for the purpose of managing databases."], "fault-tolerance": ["The property that enables a system (often computer-based) to continue operating properly in the event of the failure of some of its components."], "computer networking": ["The engineering discipline concerned with communication between computer systems or devices."], "query language": ["A computer language used to make queries into databases and information systems."], "SQL": ["A language in a computer designed for the retrieval and management of data in relational database management systems as well as database schema and access control management."], "Structured Query Language": ["A language in a computer designed for the retrieval and management of data in relational database management systems as well as database schema and access control management."], "workflow": ["The movement of information and/or tasks through a work process."], "bioinformatics": ["The use of techniques including applied mathematics, informatics, statistics, computer science, artificial intelligence, chemistry, and biochemistry to solve biological problems usually on the molecular level."], "computational biology": ["The use of techniques including applied mathematics, informatics, statistics, computer science, artificial intelligence, chemistry, and biochemistry to solve biological problems usually on the molecular level."], "anodyne": ["Capable of alleviating or eliminating pain."], "analgesic": ["Capable of alleviating or eliminating pain.", "Any medicine, such as aspirin, that reduces pain."], "analgetic": ["Capable of alleviating or eliminating pain."], "applied mathematics": ["A branch of mathematics that concerns itself with the mathematical techniques typically used in the application of mathematical knowledge to other domains."], "antiphlogistic": ["Counteracting inflammation.", "A medicine intended to reduce inflammation."], "anti-inflammatory": ["Counteracting inflammation.", "A medicine intended to reduce inflammation."], "antipyretic": ["Preventing or reducing fever."], "febrifuge": ["Preventing or reducing fever."], "febrifugal": ["Preventing or reducing fever."], "fever-reducing": ["Preventing or reducing fever."], "data mining": ["The nontrivial extraction of implicit, previously unknown, and potentially useful information from data."], "cross-validation": ["The statistical practice of partitioning a sample of data into subsets such that the analysis is initially performed on a single subset, while the other subset(s) are retained for subsequent use in confirming and validating the initial analysis."], "machine learning": ["A broad subfield of artificial intelligence concerned with the design and development of algorithms and techniques that allow computers to \"learn\"."], "set theory": ["The mathematical theory of sets, which represent collections of abstract objects."], "fuzzy set": ["An extension of classical set theory used in fuzzy logic."], "fuzzy logic": ["A logic dealing with reasoning that is approximate rather than precisely deduced from classical predicate logic."], "Yinglish": ["A language of the USA and the United Kingdom."], "Western Yiddish": ["A language of Germany."], "Eastern Yiddish": ["A language of Israel."], "quantitative research": ["The systematic scientific investigation of quantitative properties and phenomena and their relationships."], "negate": ["Say no to something."], "sommelier": ["Trained and knowledgeable wine professional."], "qualitative research": ["Research involving detailed, verbal descriptions of characteristics, cases, and settings."], "case study": ["A method for learning about a complex instance, based on a comprehensive understanding of that instance, obtained by extensive description and analysis of the instance, taken as a whole and in its context."], "reliability": ["The consistency in results of a measuring instrument."], "cartel": ["A group of organisations in an industry which agree on maintaining high prices and effectively killing competition."], "direct marketing": ["Marketing a product through direct channels of communication with the customer."], "focus group": ["A form of qualitative research in which a group of people are asked about their attitude towards a product, service, concept, advertisement, idea, or packaging."], "business intelligence": ["A business management term which refers to applications and technologies which are used to gather, provide access to, and analyze data and information about company operations."], "reverse engineering": ["The process of discovering the technological principles of a device or object or system through analysis of its structure, function and operation."], "Antikythera mechanism": ["An astronomical computer used to predict the positions of heavenly bodies in the sky, dated to about 150-100 BC."], "planetarium": ["A theatre built primarily for presenting educational and entertaining shows about astronomy and the night sky, or for training in celestial navigation."], "astrolabe": ["A historical astronomical instrument used by classical astronomers and astrologers."], "Alago": ["A language of Nigeria."], "Qawasqar": ["A language spoken by the Qawasqar people in the Chilean Patagonia."], "Alladian": ["A language of C\u00f4te d'Ivoire."], "Aleut": ["A language of the Eskimo\u2013Aleut language family spoken by the Aleut people living in the Aleutian Islands, Pribilof Islands, and Commander Islands."], "Alege": ["A language of Nigeria."], "Alawa": ["A language of Australia."], "Amaimon": ["A language of Papua New Guinea."], "Alangan": ["A language of Philippines."], "Amblong": ["A language of Vanuatu."], "hyperlink": ["A reference or navigation element in a document to another section of the same document, another document, or a specified section of another document, that automatically brings the referred information to the user when the navigation element is selected by the user."], "hypermedia": ["A generally non-linear medium of information produced by the combination of graphics, audio, video, plain text and hyperlinks."], "SVG": ["An XML markup language for describing two-dimensional vector graphics, both static and animated."], "Scalable Vector Graphics": ["An XML markup language for describing two-dimensional vector graphics, both static and animated."], "XML": ["A general-purpose markup language."], "Extensible Markup Language": ["A general-purpose markup language."], "vector graphics": ["The use of geometrical primitives such as points, lines, curves, and polygons, which are all based upon mathematical equations to represent images in computer graphics."], "computer graphics": ["A sub-field of computer science and is concerned with digitally synthesizing and manipulating visual content."], "rendering": ["The result of converting words and texts from one language to another.", "The process of generating the pixels of an image from a high-level description of the image's components.", "An explanation of something that is not immediately obvious."], "GPU": ["A dedicated graphics rendering device for a personal computer, workstation, or game console."], "Graphics Processing Unit": ["A dedicated graphics rendering device for a personal computer, workstation, or game console."], "video game console": ["An interactive entertainment computer or electronic device that manipulates the video display signal of a display device (a television, monitor, etc.) to display a game."], "Larike-Wakasihu": ["A language of Indonesia (Maluku)."], "Alune": ["A language of Indonesia (Maluku)."], "Algonquin": ["A language of Canada."], "'Are'are": ["A language spoken by the 'Are'are people in the Solomon Islands."], "Alatil": ["A language of Papua New Guinea."], "Alyawarr": ["A language of Australia."], "Kinaray-A": ["A language of Philippines."], "video game": ["A game that involves interaction with a user interface to generate visual feedback on a video device, most commonly a television or monitor."], "Black Peter": ["One of the many aids to Sinterklaas."], "Amanay\u00e9": ["A language of Brazil."], "Ambo": ["A language of Nigeria."], "Amahuaca": ["A language of Peru and Brazil"], "Amap\u00e1 Creole": ["A language of Brazil."], "Yanesha'": ["A language of Peru."], "Amarag": ["A language of Australia."], "Amis": ["A language of Taiwan."], "liquidation": ["The process by which a company (or part of a company) is brought to an end, and the assets and property of the company redistributed."], "creditor": ["A party (e.g. person, organization, company, or government) that has a claim to the properties or services of a second party."], "partridge": ["(Perdix perdix)A resident bird which occurs in the major part of Europe.", "A medium-sized non-migratory bird of the family Phasianidae."], "apogee": ["The point at which an object in orbit around the Earth is furthest away from the Earth."], "perigee": ["The point at which an object in orbit around the Earth comes closest to the Earth."], "Ambai": ["A language of Indonesia (Papua)."], "Amanab": ["A language of Papua New Guinea."], "Amo": ["A language of Nigeria."], "Alamblak": ["A language of Papua New Guinea"], "Amahai": ["A language of Indonesia (Maluku)."], "Amarakaeri": ["A language of Peru."], "Southern Amami-Oshima": ["A language of Japan."], "Amto": ["A language of Papua New Guinea"], "Ambelau": ["A language of Indonesia (Maluku)."], "Western Neo-Aramaic": ["A modern Aramaic language spoken today in three villages in the Anti-Lebanon mountains of western Syria."], "Anmatyerre": ["A language of Australia."], "Ami": ["A language of Australia."], "Atampaya": ["A language of Australia."], "bovine spongiform enecelophalopathy": ["Cattle disease caused by proteinaceous infectious particles."], "placebo": ["A preparation which is pharmacologically inert but which may have a medical effect based solely on the power of suggestion."], "biota": ["The total collection of organisms of a geographic region or a time period."], "anomaly": ["A deviation from the common rule, type, or form."], "Andaqui": ["An extinct language of Colombia."], "asteroid": ["A small, mostly rocky body orbiting the Sun."], "astrobiology": ["Study of the origin, distribution, and destiny of life in the universe."], "astronomical unit": ["The average Earth-Sun distance, equal to 149.5 million kilometers or 93 million miles."], "AU": ["The average Earth-Sun distance, equal to 149.5 million kilometers or 93 million miles."], "Andoa": ["An extinct language of Peru."], "Ansus": ["A language of Indonesia (Papua)."], "X\u00e2r\u00e2c\u00f9\u00f9": ["A language spoken in the X\u00e2r\u00e2c\u00f9\u00f9 custom area of New Caledonia."], "Animere": ["A language of Ghana."], "Nend": ["A language of Papua New Guinea."], "Anor": ["A language of Papua New Guinea."], "Anu": ["A language of Myanmar."], "Anal": ["A language of India and Myanmar."], "Obolo": ["A language of Nigeria."], "Andoque": ["A language of Colombia."], "sneeze": ["To expel air rapidly as a reflex, usually induced by an irritation in the nose."], "mad cow disease": ["Cattle disease caused by proteinaceous infectious particles."], "Celsius": ["A temperature scale that assigns the value 0\u00b0 C to the freezing point of water and the value of 100\u00b0 C to the boiling point of water at standard pressure."], "absolute zero": ["A theoretical system that neither emits nor absorbs energy. The Absolute zero temperature is known to be 0 K (\u2013273.15 \u00b0C)."], "crater": ["A hole or depression. Most are roughly circular or oval in outline."], "impact crater": ["A circular or oval depression on a surface caused by a collision of a smaller body (meteor) with the surface."], "Jarawa": ["A language of India.", "A language of Nigeria."], "Andh": ["A language of India."], "Anserma": ["An extinct language of Colombia."], "Antakarinya": ["A language of Australia."], "Denya": ["A language of Cameroon."], "Anaang": ["A language of Nigeria."], "Andra-Hus": ["A language of Papua New Guinea"], "Anyin": ["A language of C\u00f4te d'Ivoire and Ghana"], "Anem": ["A language of Papua New Guinea."], "Fahrenheit": ["A temperature scale with the freezing point of water assigned the value 32\u00b0 F and the boiling point of water 212\u00b0 F."], "active volcano": ["A volcano that is currently erupting, or has erupted during recorded history."], "crust": ["The outer layers of the Earth's structure, varying between 6 and 48 km in thickness."], "contour lines": ["Lines used on topographic maps to show the shape and elevation of the land. They connect points of equal elevation."], "isohypse": ["Lines used on topographic maps to show the shape and elevation of the land. They connect points of equal elevation."], "cryosphere": ["The ice and snow on the Earth's surface, such as glaciers; sea, lake, and river ice; snow; and permafrost."], "dormant volcano": ["An active volcano that is in repose but is expected to erupt in the future."], "extinct volcano": ["A volcano that is not expected to erupt again."], "hot spot": ["An area in the middle of a lithospheric plate where magma rises from the mantle and erupts at the Earth's surface."], "mulberry": ["Any tree of the genus Morus, native to warm temperate and subtropical regions of Asia, Africa and North America.", "Fruit of the mulberry tree (genus Morus)."], "lava": ["The magma, once it has erupted onto the Earth's surface."], "magma": ["Molten rock containing liquids, crystals, and dissolved gases that forms within the upper part of the Earth's mantle and crust."], "mudflow": ["A flowing mixture of water and debris (intermediate between a volcanic avalanche and a water flood) that forms on the slopes of a volcano."], "tephra": ["Solid material of all sizes explosively ejected from a volcano into the atmosphere. (source: USGS)"], "volcanic avalanche": ["A large, chaotic mass of soil, rock, and volcanic debris moving swiftly down the slopes of a volcano."], "snowline": ["The lowest elevation at which snow remains from year to year and does not melt during the summer."], "mantle": ["A zone in the Earth's interior between the crust and the core that is 2,900 kilometers (1,740 miles) thick."], "geosphere": ["The nonliving parts of the Earth: the lithosphere, the atmosphere, the cryosphere, and the hydrosphere."], "prevailing winds": ["The direction from which winds most frequently blow at a specific geographic location."], "seismograph": ["A scientific instrument that detects and records vibrations (seismic waves) produced by earthquakes."], "windward": ["The side of a land mass facing the direction from which the wind is blowing."], "asteroid belt": ["A region of space lying between Mars (1.5 AU) and Jupiter (5.2 AU), where the great majority of the asteroids are found."], "geocentric": ["Having the Earth at the center."], "heliocentric": ["Having the Sun at the center."], "magnification": ["The effect of an optical system on the apparent angular size of an object."], "reflecting telescope": ["Telescope that uses mirrors to magnify and focus an image onto an eyepiece."], "refraction": ["The bending of light as it passes from one medium to another."], "refracting telescope": ["Telescope that uses lenses to magnify and focus an image onto an eyepiece."], "rotation": ["A transformation which linearly changes the angle between the vector to a point and one of the axes, without changing the distance of the point from the origin."], "sensitivity": ["The capacity to respond to stimulation."], "spacecraft": ["A vehicle that can travel in outer space."], "planetary orbit": ["The path in space followed by a planet."], "brightness": ["The amount of light coming from an object."], "celestial body": ["A solid object found in space."], "cyclic": ["Moving or recurring in cycles or periods."], "photometry": ["The measurement of light."], "fuzzy variable": ["In fuzzy logic, a quantity that can take on linguistic rather than precise numerical values."], "nephoscope": ["An instrument for determining the direction and relative speed of cloud motion."], "barograph": ["A recording aneroid barometer."], "ceiling balloon": ["An instrument used by meteorologists to determine the height of the base of clouds above ground level during daylight hours."], "ceiling projector": ["An instrument used to measure the height of the base of clouds above the ground."], "ceilometer": ["A device that uses a laser or other light source to determine the height of a cloud base."], "dark adaptor goggles": ["Clear, red tinted, plastic goggles with an adjustable elastic strap to hold them in place that can be used for either adapting the eyes to the dark prior to an observation at night or to aid with the identification of clouds during bright sunshine or glare from snow."], "scaling": ["A transformation in which each coordinate is multipled by a factor."], "ellipse": ["A curved planar figure, the locus of all points which have the same total distance from two fixed points called the foci."], "hue": ["A pure color - one without added white or black."], "Vila Real": ["District of Portugal, located in the north."], "achromatic": ["Without color, as black, white, and shades of gray."], "rectangle": ["A plane figure with 4 sides and 4 right angles."], "main belt": ["A region of space lying between Mars (1.5 AU) and Jupiter (5.2 AU), where the great majority of the asteroids are found."], "snow line": ["The lowest elevation at which snow remains from year to year and does not melt during the summer."], "Copernican system": ["A heliocentric model of the universe."], "anti-aliasing": ["A form of interpolation used in graphics display technology when combining images."], "snowbank": ["A mound of snow accumulated by the wind."], "snowdrift": ["A mound of snow accumulated by the wind."], "snow bank": ["A mound of snow accumulated by the wind."], "snow drift": ["A mound of snow accumulated by the wind."], "llama": ["A South American camelid (Lama glama), widely used as a pack animal by the Incas."], "camelid": ["Members of the biological family Camelidae."], "squirrel": ["A small or medium-sized rodent of the family Sciuridae."], "hamster": ["A rodent belonging to the subfamily Cricetinae."], "domestic rabbit": ["Any of the several varieties of European rabbit that has been domesticated by humans."], "fancy rat": ["A domesticated breed of the Brown Rat (Rattus norvegicus) or, more rarely, of the Black Rat (R. rattus)"], "fancy mouse": ["Domesticated breeds of the common or house mouse (Mus musculus)."], "alpaca": ["A domesticated species of South American camelid developed from the wild alpacas."], "fennec": ["A small fox found in the Sahara Desert of North Africa."], "ferret": ["Small domesticated carnivore of the family Mustelidae (weasel)."], "prostate": ["The exocrine gland of the male mammalian reproductive system responsible for storing and secreting a clear, slightly alkaline fluid that constitutes 10-30% of the volume of the seminal fluid that, along with spermatozoa, constitutes semen."], "specious": ["Seemingly factual but actually misleading."], "British Virgin Islands": ["A British overseas territory, located in the Caribbean to the east of Puerto Rico."], "Abom": ["A language of Papua New Guinea."], "Pemon": ["A language of Venezuela, Brazil and Guyana"], "Andarum": ["A language of Papua New Guinea"], "Angal Enen": ["A language of Papua New Guinea."], "Bragat": ["A language of Papua New Guinea"], "Angoram": ["A language of Papua New Guinea"], "Arma": ["An extinct language of Colombia."], "Anindilyakwa": ["An indigenous Australian language isolate spoken by the Warnindhilyagwa people on Groote Eylandt in the Gulf of Carpentaria in northern Australia."], "Mufian": ["A language of Papua New Guinea"], "Arh\u00f6": ["A language of New Caledonia."], "\u00d6mie": ["A language of Papua New Guinea"], "Bumbita Arapesh": ["A language of Papua New Guinea"], "Aore": ["A language of Vanuatu."], "Taikat": ["A language of Indonesia (Papua)."], "A'tong": ["A language of India."], "Atorada": ["A language of Guyana and Brazil"], "Uab Meto": ["A language of Indonesia (Nusa Tenggara)."], "Sa'a": ["A language of the Solomon Islands."], "green tea": ["A type of tea where the leaves have undergone minimal oxidation in contrast to black tea."], "cockatoo": ["Any of the 21 bird species belonging to the family Cacatuidae."], "subtropical": ["Pertaining to or characteristic of the subtropics."], "canary": ["A small songbird (Serinus canaria) in the finch family originating from Madeira and the Canary Islands."], "subtropics": ["Zones of the Earth situated between the tropics and the temperate latitudes, approximately between latitudes 25\u00b0 and 40\u00b0 north and south."], "macaw": ["Large colorful parrots of the Americas, classified into six of the many Psittacidae genera: Ara, Anodorhynchus, Cyanopsitta, Primolius, Orthopsittaca, and Diopsittaca."], "wild duck": ["A duck (Anas platyrhynchos) which breeds throughout the temperate and sub-tropical areas of America, Europe, Asia, and Australia."], "mallard": ["A duck (Anas platyrhynchos) which breeds throughout the temperate and sub-tropical areas of America, Europe, Asia, and Australia."], "North Levantine Spoken Arabic": ["A language of Syria and Lebanon."], "Sudanese Spoken Arabic": ["A language of Sudan."], "Bukiyip": ["A language of Papua New Guinea"], "Ampanang": ["A language of Indonesia (Kalimantan)."], "Athpariya": ["A language of Nepal."], "Apiac\u00e1": ["A language of Brazil."], "Jicarilla Apache": ["A language of the USA."], "cockatiel": ["A diminutive cockatoo (Nymphicus hollandicus) endemic to Australia and prized as a household pet."], "Kiowa Apache": ["A language of the USA."], "Lipan Apache": ["A language of the USA."], "Mescalero-Chiricahua Apache": ["A language of the USA."], "Apinay\u00e9": ["A language of Brazil."], "lovebird": ["A very social and affectionate parrot of the genus Agapornis."], "Apalik": ["A language of Papua New Guinea."], "Apma": ["A language of Vanuatu."], "Arop-Lukep": ["A language of Papua New Guinea"], "Arop-Sissano": ["A language of Papua New Guinea."], "Apatani": ["A language of India."], "Apurin\u00e3": ["A language of Brazil."], "budgerigar": ["The only species in the Australian genus Melopsittacus (Melopsittacus undulatus), prized as a household pet."], "Western Apache": ["A language of the USA."], "Aputai": ["A language of Indonesia (Maluku)."], "Apala\u00ed": ["A Cariban language spoken in Brazil."], "Safeyoka": ["A language of Papua New Guinea"], "tropical": ["Pertaining to or characteristic of the tropics."], "lamiales": ["An order in the asterid group of dicotyledonous flowering plants."], "temperate zone": ["Those parts of the Earth's surface between the tropics and the polar regions."], "Arigidi": ["A language of Nigeria."], "Atohwaim": ["A language of Indonesia (Papua)."], "Northern Alta": ["A language of Philippines."], "Atakapa": ["An extinct language of the USA"], "Arh\u00e2": ["A language of New Caledonia."], "Arabana": ["A language of Australia."], "Western Arrarnta": ["A language of Australia."], "Arafundi": ["A language of Papua New Guinea"], "Arhuaco": ["A language of Colombia."], "Arapaso": ["A language of Brazil."], "Arikap\u00fa": ["A language of Brazil."], "Arabela": ["A language of Peru."], "Araona": ["An Tacanan language spoken by the Araona people in the headwaters of the Manupari river in northwest Bolivia."], "Arapaho": ["A language of the Algonquian family that is still spoken today by about 1,000 members of the Arapaho people.", "Tribe of Native Americans historically living on the eastern plains of Colorado and Wyoming."], "scrotal": ["Relating to the scrotum."], "Karo": ["A language of Brazil.", "A language of Ethiopia."], "Najdi Spoken Arabic": ["A language of Saudi Arabia, Iraq, Jordan and Syria."], "Arua": ["An extinct language of Brazil."], "Arawak": ["A language of Suriname, French Guiana, Guyana and Venezuela."], "Aru\u00e1": ["A language of Brazil."], "Asu": ["A language of Tanzania."], "Arikara": ["A language of the USA."], "Assiniboine": ["A language of Canada and the USA."], "Casuarina Coast Asmat": ["A language of Indonesia (Papua)."], "Asas": ["A language of Papua New Guinea."], "Australian Sign Language": ["A sign language used in Australia."], "Cishingini": ["A language of Nigeria."], "Abishira": ["An extinct language of Peru."], "Buruwai": ["A language of Indonesia (Papua)."], "Nsari": ["A language of Cameroon."], "Ashkun": ["A language of Afghanistan."], "Asilulu": ["A language of Indonesia (Maluku)."], "Xing\u00fa Asurin\u00ed": ["A language of Brazil"], "Dano": ["A language of Papua New Guinea."], "Algerian Sign Language": ["A sign language used in Algeria."], "Austrian Sign Language": ["A sign language used in Austria."], "Ipulo": ["A language of Cameroon."], "Asurin\u00ed": ["A language of Brazil."], "Australian Aborigines Sign Language": ["A sign language used by Australian Aborigines."], "Muratayak": ["A language of Papua New Guinea."], "Yaosakor Asmat": ["A language of Indonesia (Papua)."], "As": ["A language of Indonesia (Papua)."], "Pele-Ata": ["A language of Papua New Guinea."], "Zaiwa": ["A language of China and Myanmar."], "Atsahuaca": ["An extinct language of Peru."], "Ata Manobo": ["A language of Philippines."], "Atemble": ["A language of Papua New Guinea."], "Palembang": ["A language of Indonesia (Sumatra)."], "slap in the face": ["A blow on the cheek with the open hand."], "Atuence": ["A language of China."], "Ivbie North-Okpela-Arhe": ["A language of Nigeria."], "Atti\u00e9": ["A language of C\u00f4te d'Ivoire."], "Atikamekw": ["A variety of the Cree language spoken by the Atikamekw people of southwestern Quebec."], "bold": ["Text attribute specifing that the letters must be darker than the surrounding text.", "Strong in the face of fear.", "Having or characterized by courage.", "Formatted for emphasis by increasing the width of glyphs."], "Ati": ["A language of Philippines."], "Mt. Iraya Agta": ["A language of Philippines."], "slap": ["To strike on the cheek with the open hand.", "A blow, usually on the cheek, with an open hand."], "Ata": ["A language of the Philippines"], "Ashtiani": ["A language of Iran."], "Atong": ["A language of Cameroon."], "Pudtol Atta": ["A language of the Philippines."], "Aralle-Tabulahan": ["A language of Indonesia (Sulawesi)."], "Atruah\u00ed": ["A language of Brazil."], "Gros Ventre": ["A language of the USA."], "Pamplona Atta": ["A language of the Philippines."], "farewell letter": ["Letter in which someone says goodbye before leaving for a long time or forever."], "suicide note": ["Letter in which someone says goodbye before attempting or committing suicide."], "sea robin": ["Ordinary and commercial name for several species of fish, especially in the genus Prionotus. All of them produce a sound when taken out of the water (produced by deflating the swim bladder), they have a big pyramidal head and pectoral fins with legs to walk at seabed."], "halitosis": ["The condition of having stale or foul-smelling breath."], "femur": ["The bone that extends from the pelvis to the knee in the vertebrate tetrapods, including humans."], "Atsugewi": ["A language of the USA."], "Arutani": ["A language of Brazil and Venezuela"], "Aneityum": ["A language of Vanuatu"], "Arta": ["A language of the Philippines."], "Asumboa": ["A language of the Solomon Islands."], "Waorani": ["A language of Ecuador."], "Aushi": ["A language of Zambia and the Democratic Republic of the Congo"], "Anuki": ["A language of Papua New Guinea."], "Heyo": ["A language of Papua New Guinea."], "Aulua": ["A language of Vanuatu."], "oral malodor": ["The condition of having stale or foul-smelling breath."], "breath odor": ["The condition of having stale or foul-smelling breath."], "foul breath": ["The condition of having stale or foul-smelling breath."], "fetor oris": ["The condition of having stale or foul-smelling breath."], "bad breath": ["The condition of having stale or foul-smelling breath."], "thigh bone": ["The bone that extends from the pelvis to the knee in the vertebrate tetrapods, including humans."], "femoral": ["Of or pertaining to the thigh or femur."], "Molmo One": ["A language of Papua New Guinea."], "Makayam": ["A language of Papua New Guinea."], "Anus": ["A language of Indonesia (Papua)."], "Aruek": ["A language of Papua New Guinea."], "Austral": ["A language of French Polynesia."], "Mangareva": ["A language of French Polynesia."], "North Marquesan": ["The Marquesic, East Central Polynesian language spoken in the northern Marquesas Islands."], "motionless": ["Not moving."], "immobile": ["Not moving.", "Fixed; closely compressed."], "South Marquesan": ["A language of French Polynesia."], "apsis": ["Point of greatest or least distance of the elliptical orbit of an astronomical object from the center of mass of the system, e. g. perihelion or aphelion"], "Rapa": ["A language of French Polynesia."], "Tuamotuan": ["A Tahitic language spoken by about 6700 people in the Tuamotu Islands and an additional 2000 in Tahiti."], "Auye": ["A language of Indonesia (Papua)."], "Rapa Nui": ["An Eastern Polynesian language spoken by the Rapanui, the inhabitants of Easter Island.", "An inhabitant of Easter Island.", "Relating to Easter Island, its inhabitants or their culture."], "Awyi": ["A language of Indonesia (Papua)."], "Aur\u00e1": ["A language of Brazil."], "Awiyaana": ["A language of Papua New Guinea."], "Avau": ["A language of Papua New Guinea."], "Alviri-Vidari": ["A language of Iran."], "Avikam": ["A language of C\u00f4te d'Ivoire."], "Avatime": ["A language of Ghana."], "Galaxy": ["Spiral galaxy in which the Solar System is located."], "Agavotaguerra": ["A language of Brazil."], "Aushiri": ["An extinct language of Peru."], "Au": ["A language of Papua New Guinea."], "Av\u00e1-Canoeiro": ["A language of Brazil."], "Awa": ["A language of Papua New Guinea."], "Western Acipa": ["A language of Nigeria."], "Awet\u00ed": ["A language of Brazil."], "Awbono": ["A language of Indonesia (Papua)."], "Aekyom": ["A language of Papua New Guinea."], "Awabakal": ["An extinct Australian Aboriginal language that was spoken by the Awabakal people around Lake Macquarie and Newcastle in New South Wales."], "Arawum": ["A language of Papua New Guinea."], "Awak": ["A language of Nigeria."], "Awera": ["A language of Indonesia (Papua)."], "South Awyu": ["A language of Indonesia (Papua)."], "Arawet\u00e9": ["A language of Brazil."], "hairless": ["Without hair."], "Central Awyu": ["A language of Indonesia (Papua)."], "nutritionist": ["A health professional with special training in nutrition who can help with dietary choices."], "Mapping": ["A relationship in OmegaWiki as part of data lineage analysis."], "Jair Awyu": ["A language of Indonesia (Papua)."], "Awun": ["A language of Papua New Guinea."], "Awara": ["A language of Papua New Guinea."], "Edera Awyu": ["A language of Indonesia (Papua)."], "Abipon": ["An extinct Guaicuruan language formerly spoken in the eastern province of Chaco, Argentina."], "Mato Grosso Ar\u00e1ra": ["An extinct language of Brazil."], "Yaka": ["A Bantu language spoken in Central African Republic and Congo.", "A language of Congo."], "Xaragure": ["A language spoken in the X\u00e2r\u00e2c\u00f9\u00f9 custom area of New Caledonia, in particular at Thio-Mission (St-Philippo II), in parts of St-Michel, St-Pierre and St-Paul and in all the coastal villages between Thio and N\u2019goye as well as in Ouinan\u00e9, on the West coast of the main island."], "Awar": ["A language of Papua New Guinea."], "Ayizo Gbe": ["A language of Benin."], "Southern Aymara": ["A branch of the Aymaran language spoken in Peru between Lake Titicaca and the Pacific Ocean."], "Ayabadhu": ["A language of Australia."], "Ayere": ["A language of Nigeria."], "Ginyanga": ["A language of Togo."], "Leyigha": ["A language of Nigeria."], "Akuku": ["A language of Nigeria."], "Ayoreo": ["A language of Paraguay and Bolivia"], "North Mesopotamian Spoken Arabic": ["A language of Iraq, Syria and Turkey"], "Ayi": ["A language of Papua New Guinea.", "A language of China."], "Central Aymara": ["A branch of the Aymara language spoken in Bolivia, Argentina, Chile and Peru."], "Sorsogon Ayta": ["A language of the Philippines."], "Bataan Ayta": ["A language of the Philippines."], "Ayu": ["A language of Nigeria."], "Tayabas Ayta": ["An extinct language of the Philippines."], "Mai Brat": ["A language of Indonesia (Papua)."], "Solar System": ["The Sun and the all celestial objects and matter gravitationally bound to it."], "solar system": ["The Sun and the all celestial objects and matter gravitationally bound to it."], "skew": ["Geometry: spatial situation of two straight lines that are not both in the same plane"], "photogenic": ["Looking good or favorable on photographs."], "photochemical": ["Relating to the chemical effects of light."], "Taamim": ["One of the Governorates of Iraq located in north of the country."], "At-Ta'mim": ["One of the Governorates of Iraq located in north of the country."], "Khorasan": ["A region located in north eastern Iran."], "South Azerbaijan": ["A region in northwestern Iran and south of Armenia and the Republic of Azerbaijan."], "Southern Azerbaijan": ["A region in northwestern Iran and south of Armenia and the Republic of Azerbaijan."], "Kerman": ["A city in Iran in the center of Kerman province.", "One of the 30 provinces of Iran located in the south-east of the country."], "Shiraz": ["A city in southwest Iran."], "Fars": ["One of the 30 provinces of Iran, located in the south of the country."], "Pars": ["One of the 30 provinces of Iran, located in the south of the country."], "F\u0101rs": ["One of the 30 provinces of Iran, located in the south of the country."], "Afshar": ["A Turkic language spoken in parts of Afghanistan and Iran."], "East Azerbaijan": ["One of the 30 provinces of Iran, located in the northwest of the country."], "Georgian alphabet": ["The script currently used to write the Georgian language and other Kartvelian languages."], "Abzhywa": ["A dialect of the Abkhazian language spoken in the Cuacasus."], "Ge'ez": ["An abugida script which was originally developed to write Ge'ez, a Semitic language."], "Ge'ez alphabet": ["An abugida script which was originally developed to write Ge'ez, a Semitic language."], "San Pedro Amuzgos Amuzgo": ["A dialect of the Amuzgo language spoken in Southwest Oaxaca, Putla District and San Pedro Amuzgos of Mexico."], "Ipalapa Amuzgo": ["A language of Mexico."], "Awing": ["A language of Cameroon."], "Adzera": ["A language of Papua New Guinea."], "Faire Atta": ["A language of the Philippines."], "Highland Puebla Nahuatl": ["A language of Mexico."], "anamnesis": ["The case history of a medical patient as recalled or known by the patient.", "(Liturgy) The solemn commemoration of death and resurrection of Jesus Christ during the Eucharist."], "Babatana": ["A language of the Solomon Islands."], "Bainouk-Gunyu\u00f1o": ["A language of Guinea-Bissau."], "Badui": ["A language of Indonesia (Java and Bali)."], "Bar\u00e9": ["An extinct language of Venezuela."], "Nubaca": ["A language of Cameroon."], "Tuki": ["A language of Cameroon."], "Bahamas Creole English": ["A language of the Bahamas."], "Barakai": ["A language of Indonesia (Maluku)."], "Waimaha": ["A language of Colombia and Brazil"], "Bantawa": ["A language of Nepal."], "memento": ["An object that helps remembering something."], "Bada": ["A language of Nigeria.", "A language of Indonesia (Sulawesi)"], "Vengo": ["A language of Cameroon."], "Bambili-Bambui": ["A language of Cameroon"], "Bamun": ["A language of Cameroon."], "Batuley": ["A language of Indonesia (Maluku)."], "Tunen": ["A language of Cameroon."], "Baatonum": ["A language of Benin and Nigeria."], "Barai": ["A language of Papua New Guinea."], "Batak Toba": ["A language of Indonesia (Sumatra)."], "Bau": ["A language of Papua New Guinea."], "Bangba": ["A language of Democratic Republic of the Congo."], "Ottoman Turkish": ["A historic language of the Ottoman empire."], "Old Japanese": ["The oldest attested stage of the Japanese language, used until 794."], "Pfaelzisch": ["A language of Germany."], "tender": ["Special procedure to generate competing offers from different bidders.", "Given to sympathy or gentleness or sentimentality.", "Hurting.", "Young and immature.", "Easy to cut or chew."], "WiMAX": ["(Worldwide Interoperability for Microwave Access) A telecommunications protocol that provides fixed and fully mobile internet access."], "daybreak": ["The beginning of the day; the first appearance of daylight in the morning."], "dawn": ["A period of time at the beginning of the day shortly before sunrise during which the light gradually becomes stronger.", "The beginning of the day; the first appearance of daylight in the morning."], "nightfall": ["The beginning of the night; the approach of darkness."], "praying mantis": ["(Mantis religiosa) Insect of the order Mantodea originating in Southern Europe."], "European mantis": ["(Mantis religiosa) Insect of the order Mantodea originating in Southern Europe."], "daylight": ["The light, the brightness of day."], "night air": ["The air during nighttime."], "Baibai": ["A language of Papua New Guinea."], "Barama": ["A language of Gabon."], "Bugan": ["A language of China."], "Barombi": ["A language of Cameroon."], "night owl": ["A person who likes to stay up until late at night."], "Ghom\u00e1l\u00e1'": ["A language of Cameroon."], "Babanki": ["A language of Cameroon."], "Babango": ["A language of the Democratic Republic of the Congo."], "Uneapa": ["A language of Papua New Guinea."], "Northern Bobo Madar\u00e9": ["A language of Burkina Faso and Mali."], "West Central Banda": ["A language of Central African Republic and Sudan."], "Bamali": ["A language of Cameroon"], "Girawa": ["A language of Papua New Guinea"], "Bakpinka": ["A language of Nigeria."], "Ama": ["A language of Papua New Guinea."], "Kulung": ["A language of Nigeria.", "A language of Nepal and India."], "Karnai": ["A language of Papua New Guinea."], "Baba": ["A language of Cameroon."], "biocontrol": ["The use of natural predators or diseases to reduce the damage caused by a pest population."], "Bubia": ["A language of Cameroon."], "Befang": ["A language of Cameroon."], "biotic": ["Relating to life or living organisms."], "Babalia Creole Arabic": ["A language of Chad."], "botanical": ["Of or relating to plants or botany."], "abiotic": ["Of inorganic matter."], "pedology": ["The sub-discipline of soil science that studies soils as a component of natural systems."], "Central Bai": ["A language of China."], "Bainouk-Samik": ["A language of Senegal."], "Southern Balochi": ["A language of Pakistan, Iran, Oman and the United Arab Emirates."], "alien species": ["An organism that is not indigenous to a given place or area and instead has been accidentally or deliberately transported to this new location by human activity."], "North Babar": ["A language of Indonesia (Maluku)."], "Bamenyam": ["A language of Cameroon."], "introduced species": ["An organism that is not indigenous to a given place or area and instead has been accidentally or deliberately transported to this new location by human activity."], "Bamu": ["A language of Papua New Guinea."], "Baga Binari": ["A language of Guinea."], "Bariai": ["A language of Papua New Guinea."], "Baoul\u00e9": ["A language of C\u00f4te d'Ivoire"], "Bardi": ["A language of Australia."], "Bunaba": ["A language of Australia."], "Central Bicolano": ["A Bikol language spoken in the Bicol Region of the Philippines."], "Bannoni": ["A language of Papua New Guinea."], "Kaluli": ["A language of Papua New Guinea."], "Babine": ["A language of Canada."], "Kohumono": ["A language of Nigeria."], "Awad Bing": ["A language of Papua New Guinea."], "Shoo-Minda-Nye": ["A language of Nigeria."], "carrying capacity": ["The maximum number of organisms, in a given species, that can use a given area of habitat without degrading the habitat and without causing stresses that result in the population being reduced."], "bathymetric": ["Of or having to do with the depth of large bodies of water."], "random": ["Having an undefined distribution."], "remediation": ["The process of correcting environmental degradation."], "amelioration": ["The process of correcting environmental degradation."], "symbiotic": ["Refers to a close and mutually beneficial association of organisms of different species."], "Pamona": ["A language of Indonesia (Sulawesi)."], "microhabitat": ["A small area with physical and ecological characteristics that distinguish it from its immediate surrounding area."], "Bainouk-Gunyaamolo": ["A Niger-Congo language spoken north of the Casamance river, in the area delimited by the three cities of Bignona, Tobor and Niamone (Senegal) as well as in Gambia."], "microsite": ["A small area with physical and ecological characteristics that distinguish it from its immediate surrounding area."], "microenvironment": ["A small area with physical and ecological characteristics that distinguish it from its immediate surrounding area."], "mutualism": ["A symbiotic relationship between two organisms in which both organisms benefit from the relationship."], "oligotrophic": ["Refers to a body of water which is poor in dissolved nutrients and usually rich in dissolved oxygen."], "eutrophic": ["Refers to a body of water which is excessively rich in dissolved nutrients and usually poor in dissolved oxygen."], "ephemeral": ["Lasting but one day.", "Lasting or existing for a short time only.", "Anything short-lived, as an insect that lives only for a day in its winged form."], "torrential": ["Referring to rainfall: Very strong, similar to a deluge."], "summer night": ["A night in summer."], "tarantula": ["The common name for a group of hairy, sometimes very large spiders belonging to the family Theraphosidae, of which 800 species have been identified."], "concestor": ["The most recent individual from which all organisms in a group are directly descended."], "most recent common ancestor": ["The most recent individual from which all organisms in a group are directly descended."], "MRCA": ["The most recent individual from which all organisms in a group are directly descended."], "Bayot": ["A language of Senegal and Guinea-Bissau."], "Basap": ["A language of Indonesia (Kalimantan)."], "Ember\u00e1-Baud\u00f3": ["A language of Colombia."], "Bunama": ["A language of Papua New Guinea."], "Bonggi": ["A language of Malaysia (Sabah)."], "Baka": ["A language of Sudan and the Democratic Republic of the Congo.", "A language of Cameroon and Gabon."], "dusk": ["A period of time at the end of the day shortly after sunset during which the light fades gradually."], "Bai": ["A Niger-Congo language spoken by the Bai people in the Southern Sudanese state of Western Bahr el Ghazal."], "Indonesian Bajau": ["A language of Indonesia (Sulawesi)."], "Buduma": ["A language of Chad, Cameroon and Nigeria"], "Yedina": ["A language of Chad, Cameroon and Nigeria"], "perihelion": ["The point in the elliptical orbit of a planet or comet etc where it is nearest to the sun."], "aphelion": ["The point in the elliptical orbit of a planet or comet etc where it is farthest to the sun"], "summer morning": ["A morning in summer."], "native species": ["Species that evolved in a particular region or that evolved nearby and migrated to the region without help from humans."], "naturalized species": ["A non-native species that is reproducing in a new region without help from humans."], "non-native species": ["A species that evolved in one region but has gotten to another distant region, where it would not naturally have migrated because of some barrier, such as an ocean."], "qualitative data": ["Information expressed through words and examples."], "quantitative data": ["Information expressed through numbers."], "wastewater": ["Water that has been used and contains dissolved or suspended waste materials."], "oxygen cycle": ["Cyclic movement of oxygen in different chemical forms from the environment, to organisms, and then back to the environment."], "El Ni\u00f1o": ["A climatic phenomenon occurring irregularly, but generally every 3 to 5 years in the surface waters of the eastern tropical Pacific Ocean."], "combustion": ["Chemical oxidation accompanied by the generation of light and heat."], "cognitive approach": ["An approach to understanding psychology that emphasizes mental processes."], "biological approach": ["An approach to understanding psychology in terms of physiological and molecular mechanisms."], "behaviorist approach": ["An orientation in psychology that emphasizes the importance of environmental determinants on behavior."], "behaviorism": ["A philosophy of psychology based on the proposition that all things which organisms do\u2014including acting, thinking and feeling\u2014can and should be regarded as behaviors."], "clinical psychology": ["A field of psychology that focuses on diagnosis and treatment of psychological disorders."], "psychometric psychology": ["A field of psychology that specializes in the measurement of specific behaviors."], "experimental psychology": ["A field of psycholgoy that typically involves laboratory research in basic areas of the discipline."], "developmental psychology": ["A field of psychology that examines the impact of maturational processes and experience on behavior."], "rationalism": ["A philosophical approach that argues that human behavior can be best understood by the application of reason, logic, and common sense."], "structuralism": ["A psychological approach that emphasized studying the elemental structures of consciousness."], "epistemology": ["The study of the nature of knowledge."], "theism": ["The claim that one God created the world and sustains it while transcending it."], "valid": ["A deductive argument is valid if and only if it is impossible for the conclusion to be false when the premises are true."], "Titan": ["The largest moon of the planet Saturn."], "interface": ["A shared boundary across which information is passed. (Source IEEE)", "A common means for unrelated objects to communicate with each other."], "interoperability": ["The capability of two or more components or component implementations to interact."], "paradigm": ["An outstandingly clear or typical example or pattern that can serve as a model.", "A set of all forms related to a common linguistic element, such as the set of all inflectional forms of a word.", "A person or thing that is typical of or possesses to a high degree the features of a whole class."], "reengineering": ["An engineering process to transform an existing system into a new form through a combination of reverse engineering, restructuring, and forward engineering."], "specification": ["A document that prescribes, in a complete, precise, verifiable manner, the requirements, design, behavior, or characteristics of a system or system component. (source IEEE)"], "concurrent engineering": ["A systematic approach to integrated and concurrent development of a product and its related processes."], "maintainability": ["The effort needed to make specified modifications to a component implementation."], "supportability": ["Those actions related to the reliability, maintainability, and affordability of component implementations, and the integrated logistics support and configuration management required."], "retargeting": ["The engineering process of transforming and hosting or porting the existing system in a new configuration."], "Eboli": ["Town in the province of Salerno, region Campania, Italy."], "Acerno": ["Town in the province of Salerno, region Campania, Italy."], "Bende": ["A language of Tanzania."], "West Coast Bajau": ["A language of Malaysia (Sabah)."], "Bokoto": ["A language of Central African Republic."], "Oroko": ["A language of Cameroon"], "Baham": ["A language of Indonesia (Papua)."], "Budong-Budong": ["A language of Indonesia (Sulawesi)"], "Bandjalang": ["A language of Australia."], "Badeshi": ["A language of Pakistan."], "winter evening": ["An evening in winter."], "winter night": ["A night in winter."], "nightcap": ["A cap which is worn on the head at night in bed."], "word processor": ["Software for entering, editing and printing primarily textual information."], "spreadsheet": ["Software for entering, editing, manipulating and printing structured, tabular information, such as accounting ledger sheets."], "computer aided design": ["Software with the capability of performing standard engineering drawings."], "boycott": ["Social, economic, or political noncooperation.", "To refuse to buy products of or do business with."], "nonviolent struggle": ["A technique of action in conflicts in which participants conduct the struggle by doing - or refusing to do - certain acts without using physical violence."], "nonviolence": ["The behavior of people who in a conflict refrain from violent acts."], "pacifism": ["Several types of belief systems of principled rejection of violence."], "civil disobedience": ["Deliberate, open, and peaceful violation of particular laws, decrees, regulations, military or police orders, or other governmental directives."], "civil society": ["Non-governmental, non-profit making organisations, networks and voluntary associations."], "karyogamy": ["The fusion of nuclei or nuclear material that occurs at fertilization during sexual reproduction."], "karyogram": ["A diagrammatic representation of the full chromosome set of a species, highlighting characteristic physical features of individual chromosomes."], "karyotype": ["The chromosome constitution of a cell, an individual, or of a related group of individuals, as defined both by the number and the morphology of the chromosomes, usually in mitotic metaphase"], "transgenesis": ["The introduction of a gene or genes into animal or plant cells, which leads to the transmission of the input gene (transgene) to successive generations. (source: FAO)"], "transgene": ["An isolated gene sequence used to transform an organism."], "Beaver": ["A language of Canada."], "Bebele": ["A language of Cameroon."], "Iceve-Maci": ["A language of Cameroon and Nigeria"], "Bedoanas": ["A language of Indonesia (Papua)."], "Byangsi": ["A language of India and Nepal."], "Benabena": ["A language of Papua New Guinea."], "Belait": ["A language of Brunei."], "Biali": ["A language of Benin and Burkina Faso"], "Bekati'": ["A language of Indonesia (Kalimantan)."], "Bedawi": ["A language of Sudan and Etitrea."], "Bebeli": ["A language of Papua New Guinea"], "Beami": ["A language of Papua New Guinea."], "Besoa": ["A language of Indonesia (Sulawesi)."], "Beembe": ["A language of Congo."], "Besme": ["A language of Chad."], "Guiberoua B\u00e9te": ["A language of the C\u00f4te d'Ivoire."], "Blagar": ["A language of Indonesia (Nusa Tenggara)."], "Daloa B\u00e9t\u00e9": ["A language of C\u00f4te d'Ivoire."], "Betawi": ["A language of Indonesia (Java and Bali)."], "Jur Modo": ["A language of Sudan."], "Beli": ["A language of Papua New Guinea.", "A language of Sudan."], "Bena": ["A language of Tanzania."], "Northern Bai": ["A language of China."], "Bafut": ["A language of Cameroon"], "Betaf": ["A language of Indonesia (Papua)."], "Bofi": ["A language of the Central African Republic"], "Busang Kayan": ["A language of Indonesia (Kalimantan)."], "Blafe": ["A language of Papua New Guinea."], "Bafanji": ["A language of Cameroon."], "Ban Khor Sign Language": ["A sign language used by about 1,000 people of a rice-farming community in remote areas of Isan (northeastern Thailand)."], "Banda-Nd\u00e9l\u00e9": ["A language of the Central African Republic and Sudan."], "Mmen": ["A language of Cameroon."], "Bunak": ["A language of East Timor and Indonesia (Nusa Tenggara)."], "Malba Birifor": ["A language of Burkina Faso."], "Beba": ["A language of Cameroon."], "Southern Bai": ["A language of China."], "Balti": ["A language of Pakistan and India."], "Gahri": ["A Sino-Tibetan language spoken by the Gahri people on both sides of the India-China border in the western Himalayan mountains."], "Gwamhi-Wuri": ["A language of Nigeria."], "Bobongko": ["A language of Indonesia (Sulawesi)."], "Bangandu": ["A language of Cameroon and Congo."], "Bugun": ["A language of India."], "Giangan": ["A language of the Philippines."], "Bangolan": ["A language of Cameroon"], "Bo": ["A language of Laos.", "A language of Papua New Guinea."], "Baga Mboteni": ["A language of Guinea."], "Western Balochi": ["A language of Pakistan, Afghanistan, Iran and Turkmenistan."], "Baga Koga": ["A language of Guinea."], "Eastern Balochi": ["A language of Pakistan and India."], "Benishangul-Gumuz": ["One of the nine ethnic divisions (kililoch) of Ethiopia, located at the Center West of the country."], "Benshangul/Gumaz": ["One of the nine ethnic divisions (kililoch) of Ethiopia, located at the Center West of the country."], "Guba Koricha": ["One of the 180 woredas in the Oromia Region of Ethiopia."], "Oromia": ["One of the nine ethnic divisions (kililoch) of Ethiopia, covering 353,632 km\u00b2 from the east to the southwest of the country."], "Sirba Abbay": ["One of the 21 woredas in the Benishangul-Gumaz Region of Ethiopia."], "Agalo Mite": ["One of the 21 woredas in the Benishangul-Gumaz Region of Ethiopia."], "Mandura": ["A dialect of the Gumuz language.", "One of the 21 woredas in the Benishangul-Gumaz Region of Ethiopia."], "Amhara": ["One of the nine ethnic divisions (kililoch) of Ethiopia, containing the homeland of the Amhara people.", "An ethnic group in the central highlands of Ethiopia, numbering about 23 million."], "minimum crew": ["The minimal number of people keeping something operational."], "Aboriginal art": ["Art created by indigenous people of a geographical area that is not influenced by any other cultural group or outside people."], "batik": ["A fabric dyeing technique in which the pattern is first drawn with melted beeswax onto the cloth with a metal tool."], "collage": ["Any artistic composition made by gluing assorted materials to a flat surface."], "diorama": ["A three-dimensional replicated scene in which figures, stuffed wildlife, or other objects are arranged in a thematic setting against a painted or decorated background."], "Cubism": ["An art movement which came into being circa 1909, led by Picasso and Braque."], "fisticuff": ["A blow to someone or something with the fist."], "punch": ["To write by entering characters on a keyboard or a typewriter.", "A blow to someone or something with the fist.", "To deliver a blow with the fist.", "To make a hole or several holes into something, such as a sheet of paper to be filed away."], "appliqu\u00e9": ["A sewing technique in which a piece of fabric or textile decoration is attached to a larger piece of material."], "portfolio": ["A collection of works done by a single artist."], "propaganda": ["Psychological images and rhetoric developed to specifically persuade the masses to a particular point of view."], "acetate": ["A manufactured fiber formed by a compound of cellulose.", "Salt or ester of acetic acid."], "silk": ["One of the finest textiles, obtained from cocoons of certain species of caterpillars; it is soft, very strong and absorbent and has a brilliant sheen.", "Made of silk."], "taffeta": ["A lustrous, medium-weight, plain-weave fabric with a slight ribbed appearance in the filling direction."], "nylon": ["A generic designation for a family of synthetic polymers.", "A textile fiber, synthetic, elastic and resistant."], "elastane": ["A synthetic fiber known for its exceptional elasticity."], "spandex": ["A synthetic fiber known for its exceptional elasticity."], "Bawm Chin": ["A language of India, Bangladesh and Myanmar"], "Tagabawa": ["A language of Philippines."], "Bughotu": ["A language of the Solomon Islands."], "Mbongno": ["A language of Nigeria and Cameroon."], "Kamkam": ["A language of Nigeria and Cameroon."], "Warkay-Bipim": ["A language of Indonesia (Papua)."], "Benggoi": ["A language of Indonesia (Maluku)."], "Banggai": ["A language of Indonesia (Sulawesi)."], "zenith": ["Direction pointing vertically above a given location."], "Biga": ["A language of Indonesia (Papua)."], "Odiai": ["A language of Papua New Guinea."], "Binandere": ["A language of Papua New Guinea."], "Bukharic": ["A language of Israel and Uzbekistan."], "Bahing": ["A language of Nepal."], "Albay Bicolano": ["A language of the Philippines."], "Bimin": ["A language of Papua New Guinea."], "Bathari": ["A language of Yemen and Oman."], "Bohtan Neo-Aramaic": ["A modern Eastern Aramaic language spoken originally in a region of Turkey but nowadays in one village in Georgia."], "Bima": ["A language of Indonesia (Nusa Tenggara)."], "Tukang Besi South": ["A language of Indonesia (Sulawesi)."], "Bara Malagasy": ["A language of Madagascar."], "Bahau": ["A language of Indonesia (Kalimantan)."], "Biak": ["A language of Indonesia (Papua)."], "Bhele": ["A language of the Democratic Republic of the Congo."], "Badimaya": ["An Australian Aboriginal language, member of the Kartu subgroup of the Southwest branch of the Pama-Nyungan family, spoken in the area between Mount Magnet and Dalwallinu in Western Australia."], "Bissa": ["A language of Burkina Faso, Ghana and Togo."], "Bikaru": ["A language of Papua New Guinea."], "Bepour": ["A language of Papua New Guinea."], "Biafada": ["A language of Guinea-Bissau."], "Biangai": ["A language of Papua New Guinea."], "Bisu": ["A language of China and Thailand."], "Vaghat-Ya-Bijim-Legeri": ["A language of Nigeria."], "Bile": ["A language of Nigeria."], "Salarpur Khadar": ["A town in Gautam Buddha Nagar district in the Indian state of Uttar Pradesh."], "Uttar Pradesh": ["The most populous and fifth largest state in the Republic of India."], "Bimoba": ["A language of Ghana."], "Edo": ["A language of Nigeria."], "Nai": ["A language of Papua New Guinea."], "Bila": ["A language of Democratic Republic of the Congo"], "Bipi": ["A language of Papua New Guinea."], "Bisorio": ["A language of Papua New Guinea."], "Berinomo": ["A language of Papua New Guinea."], "Biete": ["A language of India."], "Southern Birifor": ["A language of Ghana and the C\u00f4te d'Ivoire-"], "Kol": ["A language of Cameroon.", "A language of Papua New Guinea."], "Baloi": ["A language of Democratic Republic of the Congo."], "Budza": ["A language of the Democratic Republic of the Congo."], "Banggarla": ["An extinct language of Australia."], "Bariji": ["A language of Papua New Guinea."], "boxer": ["A person who engages in a boxing match."], "Bandjigali": ["A language of Australia."], "Barzani Jewish Neo-Aramaic": ["A modern Jewish Aramaic language spoken today only by a few people in Israel."], "Bidyogo": ["A language of Guinea-Bissau"], "Bahinemo": ["A language of Papua New Guinea."], "Barok": ["A language of Papua New Guinea."], "Bulu": ["A language of Papua New Guinea.", "A language of Cameroon."], "Bajelani": ["A language of Iraq."], "Banjar": ["A Malayo-Polynesian language of Indonesia (Kalimantan) and Malaysia (Sabah)."], "Mid-Southern Banda": ["A language of Central African Republic, the Democratic Republic of the Congo and Sudan"], "Southern Betsimisaraka Malagasy": ["A language of Madagascar."], "Binumarien": ["A language of Papua New Guinea."], "Bajan": ["An English-based creole language spoken on the island of Barbados."], "Balanta-Ganja": ["A language of Senegal."], "Busuu": ["A language of Cameroon."], "Bakw\u00e9": ["A language of C\u00f4te d'Ivoire."], "Banao Itneg": ["A language of the Philippines."], "Bayali": ["An extinct language of Australia."], "Baruga": ["A language of Papua New Guinea"], "interdisciplinary": ["Combining or involving several academic disciplines."], "integrity": ["Accordance with the relevant moral values, norms and rules.", "Assuring information will not be accidentally or maliciously altered or destroyed."], "LDAP": ["A protocol for accessing information directories such as organizations, individuals, phone numbers, and addresses."], "Lightweight Directory Access Protocol": ["A protocol for accessing information directories such as organizations, individuals, phone numbers, and addresses."], "hashing": ["A numeric summary that can be used to provide message integrity, popular because it is simple and small."], "marmalade": ["A sweet, gelatinous substance (made from fruit juice, sugar and pectin) that is commonly spread on bread and toast."], "MD5": ["Hashing technique that creates 128-bit message digest."], "Message Digest 5": ["Hashing technique that creates 128-bit message digest."], "microchip": ["A small silicon object containing microscopic circuitry."], "smartcard": ["A pocket-sized card with embedded integrated circuits which can process information."], "smart card": ["A pocket-sized card with embedded integrated circuits which can process information."], "cryptography": ["The study of message secrecy."], "decryption": ["The process of converting encrypted text back into its original form."], "VPN": ["A virtually private network that is constructed by using public wires to connect nodes.", "A computer network that uses a public telecommunication infrastructure such as the Internet to provide remote offices or individual users with secure access to their organization's network."], "Virtual Private Network": ["A virtually private network that is constructed by using public wires to connect nodes."], "Kyak": ["A language of Nigeria"], "Finallig": ["A language of the Philippines."], "Binukid": ["A language of the Philippines."], "byte": ["A unit of measurement of information storage, most often consisting of eight bits."], "Bengkulu": ["A language of Indonesia (Sumatra)."], "Beeke": ["A language of Democratic Republic of the Congo."], "Buraka": ["A language of the Central African Republic and the Democratic Republic of the Congo."], "Bakoko": ["A Bantou language of the Bassa group spoken in the coastal region south-east of Douala, Cameroon."], "Baki": ["A language of Vanuatu."], "Pande": ["A language of Central African Republic."], "kilobyte": ["A unit of information or computer storage equal to either 1,000 bytes or 1,024 bytes (2^10), depending on context."], "Berik": ["A language of Indonesia (Papua)."], "Kom": ["A language spoken by the Kom people of Cameroon.", "A language of India."], "Bukitan": ["A language of Indonesia (Kalimantan) and Malaysia (Sarawak)."], "Kwa'": ["A language of Cameroon."], "Boko": ["A language of Democratic Republic of the Congo.", "A language of Benin and Nigeria"], "Bakair\u00ed": ["A language of Brazil."], "Bakumpai": ["A language of Indonesia (Kalimantan)."], "Masbate Sorsogon": ["A language of the Philippines."], "Buhid": ["A language of the Philippines."], "Bekwarra": ["A language of Nigeria."], "Bekwil": ["A language of Congo, Cameroon and Gabon."], "Baikeno": ["A language of East Timor."], "Bokyi": ["A language of Nigeria and Cameroon"], "Bungku": ["A language of Indonesia (Sulawesi)."], "Bilua": ["A language of the Solomon Islands."], "Bella Coola": ["A language of Canada."], "Bolango": ["A language of Indonesia (Sulawesi)"], "Balanta-Kentohe": ["A language of Guinea-Bissau."], "Buol": ["A language of Indonesia (Sulawesi)."], "Balau": ["A language of Malaysia (Sarawak)."], "Kuwaa": ["A language of Liberia."], "Bolia": ["A language of Democratic Republic of the Congo."], "Boloki": ["A language of Democratic Republic of the Congo."], "Boma": ["A language of Democratic Republic of the Congo."], "Bolondo": ["A language of Democratic Republic of the Congo"], "cladistics": ["A philosophy of classification that arranges organisms only by their order of branching in an evolutionary tree and not by their morphological similarity."], "phylogenetics": ["The study of evolutionary relatedness among various groups of organisms."], "computational phylogenetics": ["The application of computational algorithms, methods and programs to phylogenetic analyses."], "molecular phylogeny": ["The use of the structure of molecules to gain information on an organism's evolutionary relationships."], "evolutionary biology": ["A sub-field of biology concerned with the origin and descent of species, as well as their change, multiplication, and diversity over time."], "monophyletic": ["Of, pertaining to, or affecting a single phylum (or other taxon) of organisms.", "Deriving from a single clade (monophylum)."], "polyphyletic": ["Of or related to a taxonomic group that consists of members that have in common a trait that evolved separately in different places in the phylogenetic tree."], "clade": ["A taxonomic group of organisms consisting of a single common ancestor and all the descendants of that ancestor."], "biological classification": ["A method by which biologists group and categorize species of organisms."], "scientific classification": ["A method by which biologists group and categorize species of organisms."], "taxon": ["Name for a group of organisms that form a systematic unit, e.g. species, genus."], "Bolongan": ["A language of Indonesia (Kalimantan)."], "Pa'o Karen": ["A language of Myanmar and Thailand."], "Biloxi": ["An extinct language of the USA."], "Southern Catanduanes Bicolano": ["A language of the Philippines"], "Anii": ["A language of Benin and Togo."], "starve": ["To die from lack of food.", "To suffer from hunger, to not get enough to eat for an extended amount of time; to feel the need to eat."], "famish": ["To die from lack of food.", "To suffer from hunger, to not get enough to eat for an extended amount of time; to feel the need to eat."], "die of thirst": ["To die from lack of potable liquid."], "Yonggom": ["A language of Papua New Guinea."], "Yopno": ["A language of Papua New Guinea."], "Zenag": ["A language of Papua New Guinea."], "Zimakani": ["A Papuan language spoken in Papua New Guinea by around 1500 people."], "death from starvation": ["Death because of undernutrition."], "hundred euro note": ["A banknote worth one hundred Euro."], "one-hundred euro note": ["A banknote worth one hundred Euro."], "euro banknote": ["Banknote of the single European currency euro, which is in use in the 13 countries of the Eurozone."], "euro coin": ["Coin of the single European currency euro, which is in use in the 15 countries of the Eurozone."], "coinage": ["A means of payment in the form of small pieces of metal."], "hard cash": ["A means of payment in the form of small pieces of metal."], "fifty-cent piece": ["A coin worth fifty cent."], "two-euro coin": ["A coin worth two euro."], "fifty-cent coin": ["A coin worth fifty cent."], "two-euro piece": ["A coin worth two euro."], "one-euro coin": ["A coin worth one euro."], "one-euro piece": ["A coin worth one euro."], "one-cent coin": ["A coin worth one cent."], "two-cent coin": ["A coin worth two cent."], "five-cent coin": ["A coin worth five cent."], "ten-cent coin": ["A coin worth ten cent."], "twenty-cent coin": ["A coin worth twenty cent."], "one-cent piece": ["A coin worth one cent."], "two-cent piece": ["A coin worth two cent."], "five-cent piece": ["A coin worth five cent."], "ten-cent piece": ["A coin worth ten cent."], "twenty-cent piece": ["A coin worth twenty cent."], "Bengali script": ["A variant of the Eastern Nagari script used for writing several languages of India."], "Blablanga": ["A language of the Solomon Islands."], "Baluan-Pam": ["A language of Papua New Guinea."], "Balaesang": ["A language of Indonesia (Sulawesi)."], "Bolo": ["A language of Angola."], "Balangao": ["A language of the Philippines.", "A small local government unit in the Philippines in the Natonin, Mountain Province, and the tribe that inhabit it."], "Mag-Indi Ayta": ["A language of the Philippines spoken within Aeta communities in San Marcelino, Zambales, and in the Pampango municipalities of Floridablanca and Porac."], "Notre": ["A language of Benin."], "Balantak": ["A language of Indonesia (Sulawesi)."], "combine": ["To join or unite, as one thing to another, or as several particulars, so as to increase the number, augment the quantity, enlarge the magnitude, or so as to form into one aggregate; to sum up; to put together mentally, as, to add numbers; to add up a column.", "A group of organisations in an industry which agree on maintaining high prices and effectively killing competition.", "To bring two or more things or activities together.", "To mix together different elements."], "Bembe": ["A language of Democratic Republic of the Congo and Tanzania."], "Biem": ["A language of Papua New Guinea."], "Baga Manduri": ["A language of Guinea."], "Limassa": ["A language of Central African Republic."], "Bom": ["A language of Sierra Leone."], "Bamwe": ["A language of Democratic Republic of the Congo."], "Kein": ["A language of Papua New Guinea."], "Ghayavi": ["A language of Papua New Guinea."], "Bomboli": ["A language of the Democratic Republic of the Congo"], "Northern Betsimisaraka Malagasy": ["A language of Madagascar."], "Bambalang": ["A language of Cameroon."], "Bulgebi": ["A language of Papua New Guinea."], "Bomu": ["A language of Mali and Burkina Faso."], "Muinane": ["A language of Colombia."], "Burum-Mindik": ["A language of Papua New Guinea."], "Bum": ["A language of Cameroon."], "Bomwali": ["A language of Congo and Cameroon"], "Baimak": ["A language of Papua New Guinea."], "Baramu": ["A language of Papua New Guinea."], "Bonerate": ["A language of Indonesia (Sulawesi)."], "Bookan": ["A language of Malaysia (Sabah)."], "Central Bontoc": ["A language of the Philippines."], "rut": ["A settled and monotonous routine that is hard to escape.", "A depression made by the passage of a vehicle or equipment."], "Banda": ["A language of Indonesia (Maluku)."], "Bintauna": ["A language of Indonesia (Sulawesi)."], "Masiwang": ["A language of Indonesia (Maluku)."], "Benga": ["A West Bantu family language spoken by the Benga people in Equatorial Guinea and Gabon."], "Banaw\u00e1": ["A language of Brazil."], "Bangi": ["A language of the Democratic Republic of the Congo and Congo."], "Eastern Tawbuid": ["A language of Philippines."], "Bierebo": ["A language of Vanuatu."], "Patrician house": ["House that was built during the Patrician period."], "lightyear": ["Astronomical unit of length equal to the distance light travels in a vacuum in one year."], "light-year": ["Astronomical unit of length equal to the distance light travels in a vacuum in one year."], "instructional design": ["A system of developing well-structured instructional materials using objectives, related teaching strategies, systematic feedback, and evaluation."], "organizational": ["Of, relating to, or produced by an organization."], "organizational intelligence": ["The ability of an organization to perceive, interpret, and respond to its environment in a manner that simultaneously meets its organizational goals while satisfying its stakeholders, that is, its employees, customers, investors, community, and environment."], "team sport": ["A sport that is practiced between opposing teams, where the players interact directly and simultaneously between them to achieve an objective."], "CRM": ["All aspects of interaction a company has with its customer, whether it be sales or service related."], "customer relationship management": ["All aspects of interaction a company has with its customer, whether it be sales or service related."], "Patrician villa": ["Villa that was built during the Patrician period."], "small harbour": ["Harbour of small dimension."], "brigant": ["Outlaw person."], "prestigious": ["Highly estimated."], "give a new interpretation": ["Take up and give a new meaning."], "Cilento": ["Geographical region in the region of Campania, Italy."], "key to success": ["The central point that leads to success."], "footboard": ["Surface, often of wood or iron, where you can walk on."], "first course": ["First dish served within a meal."], "traditional dishes": ["Way of cooking that recalls the traditions of the place."], "wine list": ["List with all the wines that one can order in a restaurant."], "ecological integrity": ["The ability of an ecosystem to function healthily and continue to\\nprovide natural goods and services and maintain biodiversity."], "orographic": ["Associated with or induced by the presence of mountains."], "silviculture": ["Branch of forestry dealing with the cultivation and care of forests."], "Nunavik": ["Region that occupies the northern third of the province of Quebec, in Canada."], "Bryansk": ["A city in Russia, located 379 km southwest from Moscow."], "Tula": ["An industrial city in the European part of Russia, located 165 km south of Moscow, on the river Upa."], "Orlov": ["A town in Kirov Oblast, Russia."], "Tambov": ["A city in Russia, the administrative center of Tambov Oblast."], "Batanga": ["A language of Equatorial Guinea and Cameroon."], "Bunun": ["A language of Taiwan."], "Bantoanon": ["A language of the Philippines."], "Bola": ["A language of Papua New Guinea."], "Donskoy": ["A town in Tula Oblast, Russia, located in the upper streams of the Don River, 65 km south-east of Tula."], "Bantik": ["A language of Indonesia (Sulawesi)."], "Butmas-Tur": ["A language of Vanuatu."], "Bentong": ["A language of Indonesia (Sulawesi)."], "Bonerif": ["A language of Indonesia (Papua)."], "Bisis": ["A language of Papua New Guinea."], "Bintulu": ["A language of Malaysia (Sarawak)."], "Beezen": ["A Jukunoid language of Cameroon"], "Pskov": ["An ancient city, located in the north-west of Russia about 20 km east from the Estonian border, on the Velikaya River."], "Gan": ["A Chinese language spoken primarily in central China's Jianxi Province and the south-eastern corner of Hubei Province."], "Mandinka": ["A language of Senegal, Gambia and Guinea-Bissau."], "Rotuman": ["An Austronesian language spoken in the island group of Rotuma of Fiji."], "South Saami": ["A language of Sweden and Norway."], "Arkhangelsk": ["A city and the administrative center of Arkhangelsk Oblast, Russia."], "Novosibirsk": ["Russia's third largest city, after Moscow and Saint Petersburg, and the administrative center of Novosibirsk Oblast."], "Bora": ["A language of Peru, Brazil and Colombia."], "Mira\u00f1a": ["A language of Peru, Brazil and Colombia."], "Bakung Kenyah": ["A language of Indonesia (Kalimantan) and Malaysia (Sarawak)."], "Central Tibetan": ["A variety of Tibetan spoken in Central Tibet."], "Mundabli": ["A Bantoid language of Cameroon."], "Bolon": ["A Manding language of Burkina Faso."], "Bamako Sign Language": ["A sign language of Mali."], "Barbare\u00f1o": ["An extinct language of the USA."], "Anjam": ["A language of Papua New Guinea."], "Bonjo": ["An Ubangian language of Congo."], "Berom": ["A language of Nigeria."], "Bine": ["A language of Papua New Guinea."], "Ti\u00e8ma Ci\u00e8w\u00e8 Bozo": ["A Bozo language spoken in Mali."], "Bonkiman": ["A language of Papua New Guinea."], "Nizhny Novgorod": ["The fourth largest city in Russia. It is the economic and cultural center of the vast Volga-Vyatka economic region, and also the administrative center of Nizhny Novgorod Oblast and Volga Federal District."], "Yekaterinburg": ["A major city in the central part of Russia, the administrative center of Sverdlovsk Oblast."], "Bogaya": ["A language of Papua New Guinea."], "Bor\u00f4ro": ["A Macro-G\u00ea language spoken by the Bororo people in the Central Mato Grosso region of Brazil."], "Bondei": ["A language of Tanzania."], "Tuwuli": ["A Kwa language spoken in the Volta Region of Ghana."], "Buamu": ["A language of Burkina Faso."], "thunderclap": ["Short, violent thunder."], "clap of thunder": ["Short, violent thunder."], "peal of thunder": ["Short, violent thunder."], "rolling thunder": ["Prolonged and distant thunder."], "roll of thunder": ["Prolonged and distant thunder."], "thunder machine": ["Machine used to create the sound of thunder in a theatre."], "Tumbuka": ["A language of Malawi and Zambia."], "plasma": ["An extremely hot gas that is composed of free-floating ions and free electrons.", "The clear, yellowish fluid portion of the blood in which cells are suspended.", "Flat-panel display technology that ignites small pockets of gas to light phosphors."], "Sines": ["City of Portugal, in the district of Set\u00fabal."], "ultraviolet": ["The invisible part of the light spectrum whose rays have wavelengths shorter than the violet end of the visible spectrum and longer than X rays.", "Of electromagnetic radiation beyond (higher in frequency than) light visible to the human eye."], "ultraviolet radiation therapy": ["A form of radiation used in the treatment of cancer."], "ulceration": ["The formation of a break on the skin or on the surface of an organ. An ulcer forms when the surface cells die and are cast off. Ulcers may be associated with cancer and other diseases."], "ulcerative colitis": ["A chronic inflammation of the colon that produces ulcers in its lining."], "colon": ["The long, coiled, tubelike organ that removes water from digested food.", "A punctuation mark (:) used after a word introducing a series or an example or an explanation."], "coil": ["Something wound in the form of a helix or spiral."], "colitis": ["Inflammation of the colon."], "colon cancer": ["Cancer that develops in the tissues of the colon."], "colonoscope": ["A thin, lighted tube used to examine the inside of the colon."], "colonoscopy": ["An examination of the inside of the colon using a colonoscope, inserted into the rectum."], "rectum": ["The terminal part of the large intestine through which feces pass."], "colorectal": ["Having to do with the colon or the rectum."], "colostomy": ["An opening into the colon from the outside of the body."], "myeloma": ["Cancer that arises in plasma cells, a type of white blood cell."], "malignant": ["Tumors that can invade and destroy nearby tissue and spread to other parts of the body."], "cancerous": ["Tumors that can invade and destroy nearby tissue and spread to other parts of the body."], "medical castration": ["The use of drugs to suppress the function of the ovaries or testicles."], "mammary": ["Having to do with the breast."], "mammography": ["The use of x-rays to create a picture of the breast."], "melanin": ["The substance that gives color to skin and eyes."], "melanocyte": ["A cell in the skin and eyes that produces and contains the pigment called melanin."], "pigment": ["A highly colored, insoluble substance that impart color to other materials."], "melanoma": ["A form of skin cancer that begins in melanocytes."], "menopause": ["The time of life when a woman's menstrual periods stop."], "from now on": ["Starting at this moment and continuing indefinitely."], "metabolic": ["Having to do with metabolism."], "metastatic": ["Having to do with metastasis, which is the spread of cancer from one part of the body to another."], "metastatic cancer": ["Cancer that has spread from the place in which it started to other parts of the body."], "morphine": ["A narcotic drug used in the treatment of pain."], "vaccinated": ["Treated with a vaccine."], "vaginal": ["Relating to the vagina."], "vasectomy": ["An operation to cut or tie off the two tubes that carry sperm out of the testicles."], "ventricle": ["A fluid-filled cavity in the heart or brain."], "cavity": ["A, often round, piece of nothingness in some solid.", "A hole or hollow area.", "A hollow area within the body.", "A hollow space or pit in a tooth cause by decay."], "video-assisted surgery": ["Surgery that is aided by the use of a video camera that projects and enlarges the image on a television screen."], "viral": ["Relating to a virus."], "virulence": ["The ability of a microorganism to cause damage to its host."], "viscera": ["The soft internal organs of the body, including the lungs, the heart, and the organs of the digestive, excretory, and reproductive systems."], "vitamin A": ["A nutrient essential for proper vision and healthy skin and mucous membranes."], "vitamin B12": ["A vitamin that is needed to make red blood cells and DNA (the genetic material in cells) and to keep nerve cells healthy."], "vitamin C": ["A key nutrient that the body needs to fight infection, heal wounds, and keep tissues healthy, including the blood vessels, cartilage, ligaments, tendons, bones, muscle, skin, teeth, and gums."], "vitamin D": ["A nutrient that helps the body use calcium and phosphorus and make strong bones and teeth."], "vitamin E": ["A substance used in cancer prevention. It belongs to the family of drugs called tocopherols."], "vitamin K": ["A substance that promotes the clotting of blood."], "vitamin Q10": ["A substance found in most tissues in the body, and in many foods. It can also be made in the laboratory. It is used by the body to produce energy for cells, and as an antioxidant."], "vocal cord": ["One of two small bands of muscle within the larynx that vibrates to produce the voice.", "One of the two mucuous membranes in the larynx that vibrate and modulate the flow of air from the lungs during phonation."], "vulvar cancer": ["Cancer of the vulva."], "video-assisted resection": ["Surgery that is aided by the use of a video camera that projects and enlarges the image on a television screen."], "umbra": ["The dark central zone created by an eclipse.", "Central, darkest region of a sunspot."], "penumbra": ["Outer and lighter part of the shadow created by an eclipse."], "nebula": ["A cluster of stars, or a cloud of dust particles and gases."], "magnetosphere": ["The region around an astronomical object which is dominated by its magnetic field."], "infrared": ["An invisible part of light, with longer wavelengths that are felt as heat radiation."], "solar flare": ["A sudden, short lived, burst of energy on the Sun's surface, lasting from minutes to hours."], "sunspot": ["A darker and slightly cooler region on the surface of the sun, created when powerful magnetic fields stop the circulation of gases."], "solar wind": ["A stream of charged particles emitted from the sun."], "infrared lamp": ["An electrical device that emits infrared rays - invisible rays just beyond red in the visible spectrum."], "infrared filter": ["A filter mainly used in infrared photography to remove visible light and only pass infrared light in different wavelengths.", "A substance introduced into a polymer which absorb infrared light."], "infrared spectroscopy": ["The study of the absorption of infrared light by substances."], "completeness": ["The inclusion of all necessary parts or elements.", "An attribute of a logical system that is so constituted that a contradiction arises if any proposition is introduced that cannot be derived from the axioms of the system."], "fecundity": ["The number of young produced per female per unit of time.", "The intellectual productivity of a creative imagination.", "The quality of something that causes or assists healthy growth."], "fertilization": ["The union of male and female cells (e.g. sperm and egg) to form a new individual."], "fire cycle": ["The average time between fires in a given area."], "fjord": ["A long, narrow arm of the sea, usually formed by entrance of the sea into a deep glacial trough."], "forest health": ["A measure of the robustness of forest ecosystems."], "pelagic": ["Refers to fish and animals that live in the open sea, away from the sea bottom."], "pleistocene": ["An epoch of the Quaternary Period characterized by several glacial ages."], "doctor of philosophy": ["A research-oriented doctoral degree which indicates the recipient has done, and is prepared to do, original research in a major discipline."], "Ph.D.": ["A research-oriented doctoral degree which indicates the recipient has done, and is prepared to do, original research in a major discipline.", "One of the highest earned academic degrees conferred by a university."], "natural philosophy": ["The objective study of nature and the physical universe before the development of modern science."], "analytic philosophy": ["A currently dominant form of philosophy in the English speaking world which maintains that philosophy is a (logical) analysis of concepts."], "toy soldier": ["Any of various metal, wooden or primarily plastic figurine toys manufactured to commemorate soldiers who served in any war from the beginning of time to the most recent wars and also imaginary wars (source: Wikipedia)."], "matrushka doll": ["A Russian nesting doll. A set of Matryoshka dolls consists of a wooden figure which can be pulled apart to reveal another figure of the same sort inside, and so on. The number of nested figures is usually six or more."], "complementary colors": ["Two hues directly opposite one another on a color wheel."], "eclecticism": ["The practice of selecting or borrowing from earlier styles and combining the borrowed elements.", "A conceptual approach that does not hold rigidly to a single paradigm or set of assumptions, but instead draws upon multiple theories, styles, or ideas to gain complementary insights into a subject, or applies different theories in particular cases (source: Wikipedia)."], "folk art": ["The art of people who have had no formal, academic training, but whose works are part of an established tradition of style and craftsmanship."], "fresco": ["A painting technique in which pigments suspended in water are applied to a damp lime-plaster surface. The pigments dry to become part of the plaster wall or surface.", "Painting on a wall or ceiling which was created by applying pigments on damp lime-plaster."], "humanism": ["A cultural and intellectual movement during the Renaissance, following the rediscovery of the art and literature of ancient Greece and Rome.", "The broad movement in philosophy and psychology that recognized the person and subjective dimensions of the human experience as central to knowing and valuing (Roy, 1988)."], "humanitarianism": ["The view that all people should be treated with the respect and dignity they deserve as human beings, and that advancing the well-being of humanity is a noble goal."], "kinetic art": ["Art that incorporates actual or apparent movement as part of the design."], "lithograph": ["A printing technique based on the chemical antipathy of oil and water."], "monochromatic": ["A color scheme limited to variations of one hue, a hue with its tints and/or shades.", "Having only one color."], "polychromatic": ["Having many colors; random or intuitive use of color combinations as opposed to color selection based on a specific color scheme."], "stupa": ["The earliest form of Buddhist architecture, probably derived from Indian funeral mounds."], "Buddhism": ["A religion and philosophy based on the teachings of Gautama Buddha."], "Buddhist": ["Of or relating to or supporting Buddhism.", "A practitioner of the religion and philosophy of Buddhism."], "vacancy": ["An empty room at a hotel or motel.", "A defect in the form of an unoccupied lattice position in a crystal."], "vacancy rate": ["The percentage of housing units that are unoccupied in a particular area."], "valuation": ["An estimated value or worth of something."], "wall fresco": ["A fresco on a wall."], "ceiling fresco": ["Fresco on a ceiling."], "well-wooded": ["With lots of forest."], "garden cress": ["(Lepidium sativum) Plant in the family of the Brassicaceae which is used in food preparation."], "potato salad": ["A dish made from cooked and sliced potatoes and other ingredients which vary throughout different regions."], "cow milk": ["Milk from a cow."], "cow's milk": ["Milk from a cow."], "eurocentric": ["Consciously or unconsciously placing emphasis on European (and, generally, Western) concerns, culture and values at the expense of those of other cultures."], "strait": ["A narrow body of water connecting two larger bodies of water."], "peninsula": ["A piece of land extending into the sea almost entirely surrounded by water."], "oasis": ["A spot in a desert where water comes up from an underground spring and trees grow."], "isthmus": ["A narrow strip of land that separates two bodies of water or connects two pieces of land."], "Ti\u00e9yaxo Bozo": ["A Bozo language spoken in Mali."], "Dakaka": ["A language of Vanuatu."], "Barbacoas": ["An extinct language of Colombia."], "Banda-Banda": ["A language of Central African Republic and Sudan"], "Bonggo": ["A language of Indonesia (Papua)."], "Bagupi": ["A language of Papua New Guinea."], "Binji": ["A language of the Democratic Republic of the Congo."], "Orowe": ["A language of New Caledonia"], "Broome Pearling Lugger Pidgin": ["A pidgin developed by the workers in the pearling industry in Broome, Western Australia."], "Biyom": ["A language of Papua New Guinea."], "cape": ["A piece of land extending into water."], "Anasi": ["A language of Indonesia (Papua)."], "Kaure": ["A Papuan language spoken in West Papua, Indonesia."], "Banda Malay": ["A language of Indonesia (Maluku),"], "Koronadal Blaan": ["A language of the Philippines."], "Sarangani Blaan": ["A language of the Philippines."], "Barrow Point": ["A Paman language spoken in Queensland, Australia."], "Bongu": ["A language of Papua New Guinea."], "Bian Marind": ["A language of Indonesia (Papua)."], "ecoregion": ["A relatively large unit of land or water that is characterized by a distinctive climate, ecological features and plant and animal communities."], "Bishnupriya Manipuri": ["An Indo-Aryan language spoken in parts of the Indian states of Assam, Tripura, Manipur and others, as well as in Bangladesh, Burma, and other countries."], "Bilba": ["A language of Indonesia (Nusa Tenggara)."], "indigenous species": ["A species that occurs naturally in an area or habitat."], "threatened species": ["A species that is likely to become endangered in the near future."], "genetic drift": ["Random change in allele frequencies in a population from one generation to the next because of small population size (source: Schmidt, L. 1997)."], "random drift": ["Random change in allele frequencies in a population from one generation to the next because of small population size (source: Schmidt, L. 1997)."], "Tchumbuli": ["A language of Benin."], "Albay": ["A province of the Philippines located in the Bicol Region in Luzon."], "Easter Island": ["An island in the south Pacific Ocean belonging to Chile."], "Eurocentrism": ["The practice, conscious or otherwise, of placing emphasis on European (and, generally, Western) concerns, culture and values at the expense of those of other cultures."], "sheep's milk": ["Milk from sheep."], "sheep milk": ["Milk from sheep."], "cherry tomato": ["A smaller garden variety of tomato which is marketed at a premium to ordinary tomatoes, and is popular as a snack and in salads."], "current": ["A body of air, water, etc. that moves in a definite direction.", "The flow of electrons through a conductor caused by a potential difference.", "A tendency or a course of events.", "Of short expected duration (usually less than one year).", "Being or existing at the present moment.", "Existing or occurring at the moment.", "Generally accepted, used or practiced at the moment.", "Generally reported or known.", "(Of money) Acceptable as a medium of exchange.", "Belonging to the current period of time."], "alternating current": ["A current that flows alternately in one direction and then in the reverwse direction."], "direct current": ["Electricity that flows through a conductor in a single direction."], "current asset": ["Includes cash and those items that can be turned into cash in the near future, usually within one year."], "current liability": ["Debts that the business expects to pay within one year."], "dolt": ["A person with poor judgment or little intelligence."], "Linzer Torte": ["Cake made from shortpastry with ground hazelnuts, a filling of jam and a lattice of dough strips as top layer."], "Linzertorte": ["Cake made from shortpastry with ground hazelnuts, a filling of jam and a lattice of dough strips as top layer."], "cash flow": ["Incoming cash less outgoing cash during a given period."], "cash flow forecast": ["A projection of the cash flows, in and out, over the fiscal period of projection, to determine net cash balances at particular points in time and the need for either additional cash infusions or the opportunities for additional cash investments."], "undercurrent": ["A current flowing underneath another current at a different speed or in the opposite direction."], "Caribbean Current": ["A warm water current that flows into the Caribbean Sea from the east along the coast of South America."], "Caribbean Sea": ["A tropical sea in the Western Hemisphere, part of the Atlantic Ocean, southeast of the Gulf of Mexico."], "Gulf Stream": ["A powerful, warm, and swift Atlantic ocean current that originates in the Gulf of Mexico, exits through the Strait of Florida, and follows the eastern coastlines of the United States and Newfoundland before crossing the Atlantic Ocean."], "Norwegian Current": ["A cold water current that flows north-easterly along the Atlantic coast of Norway."], "Antarctic Circumpolar Current": ["An ocean current that flows from west to east around Antarctica."], "Oyashio Current": ["A cold subarctic ocean current that flows south and circulates counterclockwise in the western North Pacific Ocean."], "Humboldt Current": ["A cold, low salinity ocean current that extends along the West Coast of South America from Northern Peru to the southern tip of Chile."], "starry": ["Abounding with stars."], "star-studded": ["Abounding with stars."], "star-covered": ["Abounding with stars."], "calcareous": ["Containing calcium carbonate."], "correlate": ["To show a definite correspondence in character and stratigraphic position between geologic formations in two or more separated areas.", "To establish a correspondance to something.", "A numeric measure of the strength of linear relationship between two random variables.", "Mutually related."], "glacial": ["Pertaining to the activities of glaciers, or to the features or materials produced thereby."], "glaciation": ["The formation, movement, and recession of glaciers or ice sheets."], "laminated": ["Very thinly layered."], "Quaternary": ["The geologic period beginning two to three million years ago and extending to the present."], "tectonic": ["Pertaining to the forces involved in, or the resulting structures of, tectonics."], "Cape Horn Current": ["A cold water current that flows west-to-east around Cape Horn."], "Cape Horn": ["The southernmost headland of the Tierra del Fuego archipelago of southern Chile."], "adabtability": ["The potential or ability of a population to adapt to changes in the environmental conditions through changes of its genetic structure (source: Koski, V. et al. 1997)."], "adaptedness": ["The state of being adapted that allows a population to survive, reproduce and permanently exist in certain conditions of the environment (source: Koski, V. et al.)."], "agricultural biodiversity": ["The variety and variability of animals, plants and micro-organisms which are necessary to sustain key functions of the agro-ecosystem, its structure and processes for, and in support of, food production and food security."], "agrobiodiversity": ["The variety and variability of animals, plants and micro-organisms which are necessary to sustain key functions of the agro-ecosystem, its structure and processes for, and in support of, food production and food security."], "forest biodiversity": ["The variability among living organisms and the ecological processes of which they are part; this includes diversity of living in forests within species, between species, and of ecosystems."], "gene flow": ["The movement of genes by pollen (dispersal of gametes), seeds (through zygotes) and plants from one population to another."], "absolute error": ["The absolute value of the difference between the measured value of a quantity and its true value."], "bar graph": ["A graph in which the length of a bar (rectangle) is used to represent a numerical amount."], "coefficient": ["The numeric factor in a term."], "cone": ["A three-dimensional figure whose base is a circle and whose shell tapers to a point.", "A photoreceptor cell in the retina of the eye which function best in relatively bright light.", "An animal of the family Conidae, consisting of sea snails, marine gastropod mollusks.", "The fruit of a pine or fir tree."], "correlation": ["The relation between two sets of data."], "cylinder": ["A three-dimensional figure with two congruent bases in parallel planes.", "A three-dimensional figure with two congruent circular bases in parallel planes.", "A single track location on all the platters making up a hard disk.", "A printing plate used on a modern rotary printing press.", "The cylindric chamber or hole in the cylinder block of a combustion engine that houses the pistons and where combustion takes place."], "equilateral": ["In a given shape, all sides have the same length."], "equiangular": ["In a given shape, all angles have the same measure."], "factoring": ["Rewriting a mathematical expression as a product of factors."], "histogram": ["A graph that uses bars to show the frequency of data within equal intervals."], "isosceles triangle": ["A triangle with at least two congruent sides."], "obtuse": ["(An angle measure) greater than 90\u00b0 and less than 180\u00b0."], "probability": ["The chance of an event occurring."], "proportion": ["An equation showing that two ratios are equal.", "A principle of design that refers to the relative size of the parts of a work of art.", "To adjust in size so as to establish a correct relationship with other things."], "random variable": ["A variable that takes any of a range of values that cannot be predicted with certainty."], "relative error": ["The error or uncertainty in a measurement expressed as a fraction of the true value."], "standard deviation": ["The measure of the dispersion of a distribution is equal to the square root of the variance."], "conjecture": ["A tentative solution or generalisation inferred from collected data.", "To believe especially on uncertain or tentative grounds.", "To suppose with contestable premises."], "exchange rate": ["The price of a unit of the currency of one country in terms of the currency of another."], "inflation rate": ["A quantitative measure which indicates the rate at which the price of consumer goods are increasing over time."], "variety show": ["A show with a variety of acts, often including music and comedy skits, especially on television."], "variety of algebras": ["The class of all algebraic structures of a given signature satisfying a given set of identities."], "universal algebra": ["The field of mathematics that studies the ideas common to all algebraic structures."], "genetic variance": ["Variation in a trait within populations, as measured by the variance that is due to genetic differences among individuals."], "additive genetic variance": ["That component of the genetic variance in a character that is attributable to additive effects of alleles."], "dominance genetic variance": ["The component of non-additive genetic variance that is due to within-locus dominance deviations."], "locus": ["Place (locale) of an action or event.", "A site on a chromosome occupied by a specific gene; more loosely, the gene itself, in all its allelic states.", "A small area of a place."], "dominance": ["Of an allele, the extent to which it produces when heterozygous the same phenotype as when homozygous.", "The principle of visual organization that suggests certain elements should assume more importance than others in the same composition or design.", "Of a species, the extent to which it is numerically (or otherwise) predominant in a community."], "homozygote": ["An individual organism that has the same allele at each of its copies of a genetic locus."], "out do": ["(Colloquial) Tu surpass, to take advantage of somebody else."], "heterozygote": ["An individual organism that possesses different alleles at a locus."], "intelligent design": ["The idea that an intelligent designer played a role in some aspect of the evolution of life on earth, usually the origin of life itself."], "dominant allele": ["One of a pair of alleles that is expressed and that suppresses the expression of the other member of the pair when both are present."], "dominant gene": ["A gene that is fully expressed in a heterozygote."], "dorsal": ["On or relating to the back or outer surface of an organ."], "ventral": ["Relating to or pertaining to the abdomen", "Pertaining to the under surface of the abdomen. On the anterior or inner surface of an organ."], "blowhole": ["In cetaceans, the single or paired respiratory opening."], "Masbate": ["An island province of the Philippines located in the Bicol Region."], "shell fish": ["A culinary term for aquatic invertebrates used as food: molluscs, crustaceans, and echinoderms."], "caress": ["To touch or kiss lovingly."], "fondle": ["To touch or kiss lovingly."], "cajole": ["To encourage, influence or persuade by effort."], "coax": ["To encourage, influence or persuade by effort."], "caries": ["The progressive destruction of bone or tooth by decay.\\nAn infection of the teeth that causes demineralization of the hard tissues and destruction of the organic matter of the tooth."], "Cassiopeia": ["A circumpolar constellation of the northern sky representing Queen Cassiopeia from Greek myth.", "In Greek mythology, proud wife of Cepheus and mother of Andromeda, queen of Eritrea."], "cataclysm": ["A sudden, violent event.", "A sudden violent change in the earth's surface."], "Andromeda": ["A constellation in the northern sky named for the princess Andromeda (which is Greek for Ruler over men).", "A Greek mythological figure who was chained to a rock to be eaten by a sea monster and was saved by Perseus, whom she later married."], "macroinvertebrate": ["An organism without a backbone that is large enough to be seen with the unaided eye."], "oil field": ["Area where petroleum is or was removed from the Earth."], "oilfield": ["Area where petroleum is or was removed from the Earth."], "rapid": ["Fast flowing section of a stream, often shallow and with exposed rock or boulders.", "Characterized by speed; acting or moving quickly."], "crossing": ["A place where two or more routes of transportation form a junction or intersection.", "A place where pedestrians can cross a street here - e.g. zebra crossing."], "cemetery": ["A place or area for burying the dead."], "Bagusa": ["A language of Indonesia (Papua)."], "Bung": ["A language of Cameroon."], "Bago-Kusuntu": ["A language of Togo."], "Baima": ["A language of China."], "Bakhtiari": ["A language of Iran", "A group of southwestern Iranian people."], "Banda-Mbr\u00e8s": ["A language of Central African Republic and Sudan."], "Bilakura": ["A language of Papua New Guinea."], "Wumboko": ["A language of Cameroon."], "Bulgarian Sign Language": ["A sign language of Bulgaria."], "Balo": ["A language of Cameroon."], "Busa": ["A language of Nigeria."], "Burusu": ["A language of Indonesia (Kalimantan)."], "Bosngun": ["A language of Papua New Guinea."], "Bamukumbit": ["A language of Cameroon."], "Boguru": ["A language of Sudan."], "Begbere-Ejar": ["A language of Nigeria."], "Buru": ["A language of Nigeria."], "Baangi": ["A language of Nigeria."], "Bali Sign Language": ["A sign language of Indonesia (Java and Bali)."], "Bakaka": ["A language of Cameroon."], "Braj Bhasha": ["A language of India."], "Baraamu": ["A language of Nepal."], "Bera": ["A language of Democratic Republic of the Congo."], "Baure": ["An Arawakan language spoken by the Baure people of the Beni department in Bolivia."], "Mokpwe": ["A language of Cameroon."], "Bieria": ["A language of Vanuatu."], "Birwa": ["A language of Botswana and South Africa."], "Barambu": ["A language of the Democratic Republic of the Congo."], "Boruca": ["A language of Costa Rica"], "Brokkat": ["A Southern Tibetan language spoken by some of the Brokpa people in Dur, in the Bumthang District, in the north-central part of Bhutan."], "Barapasi": ["A language of Indonesia (Papua)."], "Breri": ["A language of Papua New Guinea."], "Birao": ["A language of the Solomon Islands."], "Baras": ["A language of Indonesia (Sulawesi)."], "Bitare": ["A language of Nigeria and Cameroon"], "Burui": ["A language of Papua New Guinea."], "Bilbil": ["A language of Papua New Guinea."], "Abinomn": ["A language isolate spoken in the Papua province of Indonesia."], "Brunei Bisaya": ["A language of Brunei."], "Bassari": ["A language of Senegal, Guinea and Guinea-Bissau"], "Sarawak Bisaya": ["A language of Malaysia (Sarawak)."], "Wushi": ["A language of Cameroon."], "Bauchi": ["A language of Nigeria."], "Bashkardi": ["A language of Iran."], "Kati": ["A dialect of the Kamkata-viri language spoken by the Kata people in Afghanistan and Pakistan."], "Bassossi": ["A language of Cameroon."], "Bangwinji": ["A language of Nigeria."], "Busami": ["A language of Indonesia (Papua)."], "Barasana": ["A language of Colombia."], "Sochi": ["South Russian city on the coast of the Black Sea situated in Krasnodar Krai."], "Baga Sitemu": ["A language of Guinea."], "Bolivian Sign Language": ["A sign language of Bolivia."], "Belgian Sign Language": ["A sign language of Belgium,"], "Brazilian Sign Language": ["A sign language of Brazil."], "Chadian Sign Language": ["A sign language of Chad."], "devil": ["Title given to the supernatural being, who is believed to be a powerful, evil entity and the tempter of humankind.", "To make someone rather angry or impatient; to cause annoyance."], "testosterone": ["A hormone that promotes the development and maintenance of male sex characteristics."], "thalamus": ["An area of the brain that helps process information from the senses and transmit it to other parts of the brain."], "therapeutic": ["Having to do with treating disease and helping healing take place."], "Bassa": ["A language of Liberia and Sierra Leone."], "Bassa-Kontagora": ["A language of Nigeria."], "Bahonsuai": ["A language of Indonesia (Sulawesi)."], "Yangkam": ["A language of Nigeria."], "Sabah Bisaya": ["A language of Malaysia (Sabah)."], "Beti": ["A language of Cameroon.", "A language of the C\u00f4te d'Ivoire"], "Bati": ["A language of Cameroon.", "A language of Indonesia (Maluku)."], "Batak Dairi": ["A language of Indonesia (Sumatra)."], "Gagnoa B\u00e9t\u00e9": ["A language of the C\u00f4te d'Ivoire."], "Biatah": ["A language of Malaysia (Sarawak) and Indonesia (Kalimantan)."], "Burate": ["A language of Indonesia (Papua)."], "thoracic": ["Having to do with the chest."], "thrombocyte": ["A type of blood cell that helps prevent bleeding by causing blood clots to form."], "platelet": ["A type of blood cell that helps prevent bleeding by causing blood clots to form."], "thrombophlebitis": ["Inflammation of a vein that occurs when a blood clot forms."], "phlebitis": ["An inflammation of a vein, usually in the legs."], "photophobia": ["A condition in which the eyes are more sensitive than normal to light."], "physiologic": ["Having to do with the functions of the body."], "pituitary gland": ["The main endocrine gland. It produces hormones that control other glands and many body functions, especially growth."], "outrageous": ["Constituting a grave offense in action or speech.", "Extraordinary in some bad way."], "adaptable": ["Able to adjust easily to new conditions."], "scenery": ["Set of objects that make up a scene."], "specific": ["Distinguishing something particular."], "serene": ["Showing no trouble or agitation.", "Of the weather or the skies: Completely clear and fine."], "contaminated": ["With the presence of something not desired."], "at disposal": ["Which is available."], "back of the hand": ["The upper side of the hand without the fingers."], "intracranial": ["Situated within the cranium."], "requirement": ["In engineering, a singular documented need of what a particular product or service should be or do.", "Indispensable circumstance that makes possible a specific condition."], "genetic programming": ["An evolutionary algorithm based methodology inspired by biological evolution to find computer programs that perform a user-defined task."], "heuristic": ["Pertaining to how something is discovered.", "Any method found through discovery and observation."], "Turing machine": ["Extremely basic abstract symbol-manipulating devices which, despite their simplicity, can be adapted to simulate the logic of any computer that could possibly be constructed."], "linear programming": ["A mathematical procedure for minimizing or maximizing a linear function of several variables, subject to a finite number of linear restrictions on these variables."], "optimization": ["In mathematics, the study of problems in which one seeks to minimize or maximize a real function by systematically choosing the values of variables from within an allowed set."], "monologue": ["A part of a play in which one character speaks alone."], "soliloquy": ["A speech in a play in which a character tells his thoughts by talking aloud as if to himself."], "theme": ["The main idea or ideas emerging from a literary work.", "An important melody that occurs several times throughout a piece of music."], "theme park": ["An amusement park that is designed to carry a theme in one or more areas of the park."], "accompaniment": ["The subordinate music that supports the principal voice or instrument in a piece of music."], "baritone": ["The range of male voice pitch that is deeper than tenor, but not so deep as bass.", "A cylindrical bore instrument, member of the brass instrument family, pitched in B\u266d."], "baroque": ["The period of European music from the early to mid 1600's to the mid 1700's.", "The seventeenth-century period in Europe characterized in the visual arts by dramatic light and shade, turbulent composition, and exaggerated emotional expression."], "classical": ["The period in European music from roughly the mid 1700's to the early 1800's.", "Referring to the culture, art and architecture of ancient Greece and Rome.", "A traditional genre of music conforming to an established form and appealing to critical interest and developed musical taste."], "crescendo": ["In music, a progressive increase in loudness."], "diminuendo": ["Getting progressively softer."], "vibrato": ["The slightly wavering quality that a singer has in his voice while sustaining a tone.", "On string instruments, small but rapid fluctuations in pitch used to intensify a sound."], "periodic": ["Characterized by repetition of patterns in fixed intervals of space or time."], "industrial design": ["An applied art whereby the aesthetics and usability of products may be improved."], "graphic design": ["The use of graphic elements and text to communicate an idea or concept."], "upgrade": ["An improved component or replacement item.", "To replace a program with a later version of itself."], "Bacanese Malay": ["A language of Indonesia (Maluku)."], "Bhatola": ["A language of India."], "terrace": ["An element where a raised flat paved or gravelled section overlooks a prospect."], "Batak Mandailing": ["A language of Indonesia (Sumatra)."], "Ratagnon": ["A language of the Philippines."], "at home": ["At ones house."], "Iriga Bicolano": ["A language of the Philippines."], "Budibud": ["A language of Papua New Guinea."], "Montepertusan": ["A male person from Montepertuso.", "A person from Montepertuso."], "Baetora": ["A language of Vanuatu."], "Batak Simalungun": ["A language of Indonesia (Sumatra)."], "Bete-Bendi": ["A language of Nigeria."], "Batu": ["A language of Nigeria."], "Butuanon": ["A language of the Philippines."], "Batak Karo": ["A language of Indonesia (Sumatra)."], "Bobot": ["A language of Indonesia (Maluku)"], "Batak Alas-Kluet": ["A language of Indonesia (Sumatra)."], "Bua": ["A language of Chad."], "consumer": ["An organism requiring complex organic compounds for food which it obtains by preying on other organisms or by eating particles of organic matter.", "An individual or organization who purchases and uses goods or services."], "electric circuit": ["The complete path of an electric current including usually the source of electric energy."], "circuit": ["The complete path of an electric current including usually the source of electric energy.", "Courts whose jurisdiction extends over one or more counties in the United States with at least one courthouse in each county."], "electric current": ["The flow of electrons through a conductor caused by a potential difference."], "inherited": ["Received from ancestors by genetic transmission."], "kinetic energy": ["Energy that a body has as a result of its motion."], "relativistic kinetic energy": ["Kinetic energy at very high speeds approaching the speed of light."], "special theory of relativity": ["A physical theory of relativity based on the assumption that the speed of light in a vacuum is a constant and the assumption that the laws of physics are invariant in all inertial systems."], "inertial system": ["A non-accelerating coordinate system."], "lightspeed": ["The speed of light in a vacuum which is equal to 299,792,458 metres per second."], "light speed": ["The speed of light in a vacuum which is equal to 299,792,458 metres per second."], "general theory of relativity": ["A fundamental physical theory of gravitation which corrects and extends Newtonian gravitation, especially at the macroscopic level of stars and planets."], "thermal energy": ["A form of energy that is transferred by a difference in temperature: it is equal to the total kinetic energy of the atoms or molecules of a system.", "The kinetic energy of molecular motion. Measured as temperature and perceived as heat."], "Ntcham": ["A language of Togo and Ghana."], "Beothuk": ["An extinct language of Canada."], "Bushoong": ["A language of the Democratic Republic of the Congo."], "fingertip": ["The end or tip of a finger."], "Bugis": ["A language spoken by people mainly in the southern part of Sulawesi, Indonesia and in Malaysia (Sabah)"], "radiant energy": ["Energy traveling in electromagnetic waves, measured in joules."], "potential energy": ["The energy which a body possesses as a consequence of it's position in the field of gravity, the work required to bring the body up against gravity from a standard level."], "chemical energy": ["Energy inherent in the chemical bonds which hold molecules together. Examples are coal and oil, which have energy potential that is released upon combustion."], "renewable energy": ["Energy obtained from sources that are essentially inexhaustible, unlike, for example, the fossil fuels, of which there is a finite supply."], "wind energy": ["Energy obtained from turbine engines powered by wind."], "apastron": ["Point of greatest distance of the elliptical orbit of a star in a binary star system from the center of mass of the system"], "periastron": ["Point of least distance of the elliptical orbit of a star in a binary star system from the center of mass of the system."], "constellation": ["Any one of the 88 areas into which the sky \u2014 or the celestial sphere \u2014 is divided."], "Scorpio": ["One of the twelve constellations of the zodiac."], "Capricorn": ["One of the twelve constellations of the zodiac."], "Aquarius": ["One of the twelve constellations of the zodiac."], "Pisces": ["One of the twelve constellations of the zodiac."], "Aries": ["One of the twelve constellations of the zodiac.", "The first sign of the zodiac which the sun enters at the vernal equinox; the sun is in this sign from about March 21 to April 19.", "A person who is born while the sun is in Aries."], "Taurus": ["One of the twelve constellations of the zodiac.", "The second sign of the zodiac; the sun is in this sign from about April 20 to May 20.", "A person who is born while the sun is in Taurus."], "Gemini": ["One of the twelve constellations of the zodiac.", "The third sign of the zodiac; the sun is in this sign from about May 21 to June 20.", "A person who is born while the sun is in Gemini."], "Leo": ["One of the twelve constellations of the zodiac.", "Male first name."], "Libra": ["One of the twelve constellations of the zodiac."], "Sagittarius": ["One of the twelve constellations of the zodiac."], "speed of light": ["The speed of light in a vacuum which is equal to 299,792,458 metres per second."], "receipt": ["A commercial document issued by a seller to the buyer, indicating products or services already provided to the buyer as well as the corresponding price that the buyer has to pay.", "A written or printed acknowledgement that a specified amount of money or goods has been received as an exchange.", "To report the receipt of."], "Antlia": ["A relatively new constellation as it was only created in the 18th century, being too faint to be acknowledged by the ancient Greeks."], "Apus": ["A faint southern constellation, not visible to the ancient Greeks."], "Aquila": ["A constellation listed by Ptolemy, which lies roughly at the celestial equator."], "Ara": ["A southern constellation situated between the constellations Scorpius and Triangulum Australe."], "Camelopardalis": ["A large and faint northern constellation."], "Caelum": ["A minor southern constellation first recognized in the 17th century."], "Bongili": ["A language of Congo."], "Basa-Gurmana": ["A language of Nigeria."], "Bugawac": ["A language of Papua New Guinea."], "Sherbro": ["A language of Sierra Leone."], "Terei": ["A language of Papua New Guinea."], "Busoa": ["A language of Indonesia (Sulawesi)."], "Brem": ["A language of Papua New Guinea."], "Bokobaru": ["A language of Nigeria."], "Bungain": ["A language of Papua New Guinea."], "Budu": ["A language of Democratic Republic of the Congo."], "Bun": ["A language of Papua New Guinea."], "Bubi": ["A language of Gabon."], "Bullom So": ["A language of Sierra Leone and Guinea."], "Bukwen": ["A language of Nigeria."], "avaricious": ["Immoderately desirous of accumulating property.", "Excessively desirous of money, wealth or possessions."], "Bube": ["A language of Equatorial Guinea."], "Baelelea": ["A language of the Solomon Islands."], "Baeggu": ["A language of the Solomon Islands."], "Berau Malay": ["A language of Indonesia (Kalimantan)."], "Bonkeng": ["A language of Cameroon."], "Belanda Viri": ["A language of Sudan."], "Baan": ["A language of Nigeria."], "Bukat": ["A language of Indonesia (Kalimantan)."], "Bamunka": ["A language of Cameroon."], "Buna": ["A language of Papua New Guinea."], "Bolgo": ["A language of Chad."], "burst": ["To break from internal pressure.", "A sudden increase in brightness along the path of a meteor.", "To cause to burst.", "A radar term for a single pulse of radio energy.", "An instance of, or the act of bursting.", "Break, burst in to pieces violently."], "Burarra": ["A language of Australia."], "Bukit Malay": ["A language of Indonesia (Kalimantan)."], "Baniva": ["An extinct language of Venezuela."], "Dibole": ["A language of Congo."], "Bauzi": ["A language of Indonesia (Papua)."], "year of marriage": ["One year during a marriage."], "cable modem": ["A modulator-demodulator at subscriber locations intended for use in conveying data communications on a cable television system."], "cable television": ["A transmission system that distributes broadcast television signals and other services by means of a cable."], "caller ID": ["A telephony service that transmits the caller's telephone number and in some places the caller's name to the called party's telephone equipment during the ringing signal or when the call is being set up but before the call is answered."], "Bwatoo": ["A language of New Caledonia."], "Namosi-Naitasiri-Serua": ["A language of Fiji."], "Bwile": ["A language of Zambia and the Democratic Republic of the Congo"], "Bwaidoka": ["A language of Papua New Guinea."], "Bwe Karen": ["A language of Myanmar."], "Boselewa": ["A language of Papua New Guinea."], "Barwe": ["A language of Mozambique."], "Bishuo": ["A language of Cameroon."], "Baniwa": ["A language of Brazil and Venezuela."], "L\u00e1\u00e1 L\u00e1\u00e1 Bwamu": ["A language of Burkina Faso."], "Bauwaki": ["A language of Papua New Guinea."], "Bwela": ["A language of the Democratic Republic of the Congo."], "Biwat": ["A language of Papua New Guinea."], "Mandobo Bawah": ["A language of Indonesia (Papua)."], "Southern Bobo Madar\u00e9": ["A language of Burkina Faso."], "Bomboma": ["A language of the Democratic Republic of the Congo"], "Bafaw-Balong": ["A language of Cameroon."], "elastic collision": ["A collision in which no kinetic energy is lost."], "collision detection": ["The use of algorithms for checking for intersection between two given solids, to calculating trajectories, impact times and impact points in a physical simulation."], "virtual reality": ["A computer-based technology for simulating visual, auditory, and other sensory aspects of complex environments."], "Bahau River Kenyah": ["A language of Indonesia (Borneo). (IMPORTANT: Prevoius description said that it is one of the languages of Ghana. However, two different sources are saying different: http://en.wikipedia.org/wiki/Kenyah and http://www.peoplegroups.org/SearchResults.aspx?PID=Kenyah%2C+Bahau+River+-+(bwv)&SelTbl=Language) -- remove this if you solved this issue.)"], "Bwa": ["A language of Democratic Republic of the Congo."], "Cwi Bwamu": ["A language of Burkina Faso."], "Bwisi": ["A language of Congo and Gabon."], "Bauro": ["A language of the Solomon Islands."], "Molengue": ["A language of Equatorial Guinea."], "Birale": ["A language of Ethiopia."], "Bilur": ["A language of Papua New Guinea."], "Bangala": ["A language of Democratic Republic of the Congo."], "Buhutu": ["A language of Papua New Guinea."], "Pirlatapa": ["An extinct language of Australia."], "Bayungu": ["A language of Australia."], "Bukusu": ["A language of Kenya."], "Jalkunan": ["A language of Burkina Faso."], "Burduna": ["A language of Australia."], "Bebil": ["A language of Cameroon."], "Busam": ["A language of Cameroon."], "Buxinhua": ["A language of China."], "Bankagooma": ["A language of Mali."], "Borna": ["A language of the Democratic Republic of the Congo."], "Binahari": ["A language of Papua New Guinea."], "cord": ["A long, thin, flexible length of twisted strands of fibre/fiber, for example rope; (uncountable) such a length of twisted strands considered as a commodity.", "A cross-section measurement of an aircraft's wing.", "A unit of measurement used for firewood, equal to 128 cubic feet (4 x 4 x 8 feet).", "A small flexible conductor assembly of insulated wires, \"lamp\" or \"sweeper\" cords."], "harmony": ["A pleasing combination of elements, or arrangement of sounds.", "Two or more musical notes played simultaneously to produce a chord."], "Batak": ["A language of the Philippines.", "The script used to write the language Batak spoken in the Philippines."], "Bikya": ["A language of Cameroon."], "Ubaghara": ["A language of Nigeria."], "Benyadu'": ["A language of Indonesia (Kalimantan)."], "Pouye": ["A language of Papua New Guinea."], "Bete": ["A language of Nigeria."], "Bujhyal": ["A language of Nepal."], "Buyu": ["A language of the Democratic Republic of the Congo."], "Bina": ["A language of Nigeria."], "Bayono": ["A language of Indonesia (Papua)."], "Bidyara": ["A language of Australia."], "gamut": ["A complete range.", "The subset of colors which can be accurately represented in a given circumstance, such as within a given color space or by a certain output device."], "vocation": ["An occupation, either professional or voluntary, that is seen more to those who carry it out than simply financial reward. Vocations can be seen as providing a psychological or spiritual need for the worker, and are often assumed to carry some form of altruistic intent."], "water main": ["Duct for conveying water to a given place."], "conduit": ["Duct for conveying water to a given place."], "main pipe": ["Duct for conveying water to a given place."], "bounding main": ["The mass of water occupying all of the Earth's surface not occupied by land, but excluding all lakes and inland seas."], "Colorado potato beetle": ["(Leptinotarsa decemlineata) Yellow and black striped beetle from the family of the Chrysomelidae which originates from America and feeds upon parts of the potato plant."], "Colorado beetle": ["(Leptinotarsa decemlineata) Yellow and black striped beetle from the family of the Chrysomelidae which originates from America and feeds upon parts of the potato plant."], "ten-striped spearman": ["(Leptinotarsa decemlineata) Yellow and black striped beetle from the family of the Chrysomelidae which originates from America and feeds upon parts of the potato plant."], "ten-lined potato beetle": ["(Leptinotarsa decemlineata) Yellow and black striped beetle from the family of the Chrysomelidae which originates from America and feeds upon parts of the potato plant."], "potato beetle": ["(Leptinotarsa decemlineata) Yellow and black striped beetle from the family of the Chrysomelidae which originates from America and feeds upon parts of the potato plant."], "charge card": ["A card which requires payment in full upon receipt of the statement."], "debit card": ["A payment method that allows immediate settlement of a payment through direct withdrawal from the cardholder\u2019s account and which comes in form of a rectangle of plastic containing machine-readable information."], "prepaid card": ["A card paid for at point of sale permitting the holder to buy goods and services up to the prepaid value."], "point of sale": ["The location at which a transaction takes place."], "Aconcagua": ["A river in Chile that rises from the joint of two minor tributary rivers at 1430 metres over sea level in the Andes, flows eastward through the Aconcagua's Valley, and enters the Pacific ocean 20 km north of Valpara\u00edso.", "The highest mountain in the Americas, and the highest mountain outside Asia. It is located in the Andes mountain range, in the Argentine province of Mendoza."], "Amazon": ["A river of South America and the largest river in the world by volume, with greater total river flow than the next eight largest rivers combined, and with the largest drainage basin in the world."], "Orinoco": ["One of the longest rivers in South America at 2,410 km, (1,497.5 miles). Its drainage basin covers 880,000 km\u00b2, in Venezuela and Colombia."], "Magdalena": ["The principal river of Colombia, running about 1,540 kilometres (950 miles) from South to North through the western half of the country."], "Caron\u00ed": ["A major river of the Orinoco basin in South America, having its source in South Eastern Venezuela, in the Guiana Highlands."], "Paran\u00e1": ["A river in south central South America, running through Brazil, Paraguay and Argentina over a course of some 2,570 kilometers (1,600 miles)."], "Bilen": ["A Central Cushitic language which is spoken in central Eritrea.", "A language of Eritrea."], "Bumaji": ["A language of Nigeria."], "Baruya": ["A language of Papua New Guinea."], "Burak": ["A language of Nigeria."], "Medumba": ["A language of Cameroon."], "Belhariya": ["A Kiranti language spoken in Eastern Nepal."], "Qaqet": ["A language of Papua New Guinea."], "Buya": ["A language of the Democratic Republic of the Congo."], "Banaro": ["A language of Papua New Guinea."], "Bandi": ["A language of Liberia."], "Andio": ["A language of Indonesia (Sulawesi)."], "Bribri": ["A language of Costa Rica"], "Jenaama Bozo": ["A Bozo language of Mali and Nigeria."], "Sorko": ["A Bozo language of Mali and Nigeria."], "Boikin": ["A language of Papua New Guinea."], "Babuza": ["A language of Taiwan."], "Mapos Buang": ["A language of Papua New Guinea."], "Belize Kriol English": ["A language of Belize."], "Nicaragua Creole English": ["A language of Nicaragua."], "Boano": ["A language of Indonesia (Sulawesi).", "A language of Indonesia (Maluku)"], "Bozaba": ["A language of the Democratic Republic of the Congo."], "Kemberano": ["A language of Indonesia (Papua)."], "Brithenig": ["An attempt to create the Romance language that might have evolved if Latin speakers had been a sufficient number to displace Celtic as the spoken language of the people in Great Britain."], "Burmeso": ["A language of Indonesia (Papua)."], "Bebe": ["A language of Cameroon."], "Basa": ["A language of Nigeria."], "Hainyaxo Bozo": ["A Bozo language spoken in Mali."], "Obanliku": ["A language of Nigeria"], "Evant": ["A language of Nigeria and Cameroon."], "tunnel vault": ["Semi-cylindrical vault."], "magnanimity": ["Liberality in bestowing gifts; extremely liberal and generous of spirit."], "Ch'orti'": ["A Mayan language spoken in Guatemala in the municipalities of Jocot\u00e1n and d'Olopa, located in the department of Chiquimula, as well as in the department of Zacapa."], "Garifuna": ["A language of Honduras, Belize, Guatemala and Nicaragua"], "Lehar": ["A language of Senegal."], "capacity": ["The amount that can be contained (either persons or things)."], "basalt": ["A dense black or grey igneous rock."], "conservationist": ["Someone who advocates the protection of a natural resource, usually by planned management, to prevent its depletion or destruction."], "Arthur Range": ["A mountain range in the South West Wilderness, Tasmania, Australia."], "Australian Alps": ["The highest mountain ranges of mainland Australia. They are located in south-eastern Australia, straddling far southern New South Wales and eastern Victoria."], "Great Dividing Range": ["Australia's most substantial mountain range, it stretches more than 3500km from the northeastern tip of Queensland, running the entire length of the eastern coastline through New South Wales, then into Victoria and turning west, before finally fading into the central plain at the Grampians in western Victoria."], "Eastern Highlands": ["Australia's most substantial mountain range, it stretches more than 3500km from the northeastern tip of Queensland, running the entire length of the eastern coastline through New South Wales, then into Victoria and turning west, before finally fading into the central plain at the Grampians in western Victoria."], "Blue Mountains": ["A range of sandstone geological structures that reach to at least 1190 metres, situated approximately 100 kilometres west of Sydney."], "West Coast Range": ["A group of mountains in the West Coast area of Tasmania in Australia."], "astigmatism": ["A distortion of the image on the retina caused by irregularities in the cornea or lens."], "load": ["To fill to excess so that function is impaired.", "The weight (materials, products, etc.) to be borne or conveyed.", "To transfer from a storage device to a computer's memory.", "To fill or place a load on.", "To provide (a device or weapon) with something necessary."], "helmet": ["any of various forms of protective head covering worn e.g. by soldiers, firefighters, divers, cyclists, etc."], "chiaroscural": ["Relating to the use of chiaroscuro in painting."], "Ubuntu": ["A Linux distribution, based on Debian GNU/Linux.", "An ethic or humanist philosophy focusing on people's allegiances and relations with each other."], "in spite of that": ["in opposition to this fact (Re. restriction, opposition)"], "buckle up": ["To fasten the safety belt (as a driver or passenger in a car, plane etc.)."], "wear one's safety belt": ["To fasten the safety belt (as a driver or passenger in a car, plane etc.)."], "Debian": ["A major Linux distribution, noted for its open development and strict adherence to the open-software philosophy."], "router": ["A networking device that enables one network to connect with another; typically, routers allow several computers to share an internet connection."], "Novell": ["A computer software company, distributor of Novell Netware and SuSE Linux."], "SuSE": ["A retail Linux distribution."], "Windows": ["A microcomputer operating system used on the majority of desktop computers in the world, developed by Microsoft."], "Microsoft": ["The largest computer software company in the world, developer of the Windows operating system and a widely used office suite."], "serif": ["Typeface whose characters include ornamental strokes (called serifs) at the end of a stroke."], "sans serif": ["Typeface whose characters do not include serifs."], "monochrome": ["Having only a single color. Used particularly in computing to describe non-color monitors.", "Having only one color."], "Unix": ["A powerful computer operating system, first developed at AT&T."], "webcam": ["A small video camera attached to a computer and whose output is viewed over the internet."], "downsample": ["To lower the resolution of a digital image, generally to make a file smaller and match the expected output device resolution."], "boilerplate": ["The standard and typically uncustomized legal verbiage included in a computer program\u2019s license agreement.", "An expression or wording that is often and repeatedly used.", "A text template, specifically a sentence repeatedly used as the finishing last one.", "A sentence repeatedly used in speeches, talks, and interviews.", "The always identical final part of an e-mail.", "A piece of text, used as a standard template at the end of a message or notification."], "Tennis Court Oath": ["The oath taken on June 20, 1789 in a tennis court in Versailles by the members of the Third Estate not to separate until France has a constitution."], "French Revolution": ["A period of political and social upheaval in France and Europe which begins with the storming of the Bastille on July 14, 1789 and ends with the coup d'\u00e9tat of 18 Brumaire (November 9, 1799) by Napoleon Bonaparte and marks France's transition from absolute monarchy to republic."], "waist": ["In human beings, the part between the thorax and hips."], "remit": ["A set of responsibilities."], "absolutism": ["Form of government where the monarch has the power to rule his or her state without being restricted or controlled by other persons, institutions or laws."], "absolute monarchy": ["Form of government where the monarch has the power to rule his or her state without being restricted or controlled by other persons, institutions or laws."], "absolutistic": ["Pertaining to or based on absolutism."], "absolutist": ["Pertaining to or based on absolutism."], "Southern Carrier": ["A language of Canada."], "immeasurable": ["Impossible to measure."], "Nivacl\u00e9": ["A language of Paraguay and Argentina"], "Cahuarano": ["A language of Peru."], "Chan\u00e9": ["An extinct language of Argentina."], "Cemuh\u00ee": ["A language of New Caledonia."], "Chambri": ["A language of Papua New Guinea."], "Ch\u00e1cobo": ["A language of Bolivia."], "Chipaya": ["A language of Bolivia."], "Carib": ["A language of Venezuela, Brazil, French Guiana and Guyana"], "Tsiman\u00e9": ["A language of Bolivia."], "Cavine\u00f1a": ["A language of Bolivia."], "Callawalla": ["A language of Bolivia."], "Chiquitano": ["A language of Bolivia."], "Cayuga": ["A Northern Iroquoian language spoken on Six Nations of the Grand River First Nation, Ontario, Canada."], "Canichana": ["An extinct language of Bolivia."], "Cabiyar\u00ed": ["A language of Colombia."], "Karapan\u00e3": ["A language of Colombia and Brazil."], "Carijona": ["A language of Colombia."], "Chipiajes": ["An extinct language of Colombia."], "Chimila": ["A language of Colombia."], "Cagua": ["An extinct language of Colombia."], "Chachi": ["A language of Ecuador."], "Ede Cabe": ["A language of Benin."], "guilty": ["Having committed an offense, crime, violation, or wrong, especially against moral or penal law."], "Bualkhaw Chin": ["A language of Myanmar."], "ordering party": ["A person who orders the realization of an artwork or a work and pays for it."], "Yepocapa Southwestern Kaqchikel": ["A language of Guatemala."], "Izora": ["A language of Nigeria."], "Cashibo-Cacataibo": ["A language of Peru."], "Cashinahua": ["A language of Peru and Brazil."], "Chayahuita": ["A language of Peru."], "Candoshi-Shapra": ["A language of Peru."], "Cacua": ["A language of Colombia."], "Carabayo": ["A language of Colombia."], "abase": ["To lower in level (rank, office, etc). (Re. Military)"], "abate": ["To take one thing from another.", "To make smaller."], "lessen": ["To make smaller."], "chronometer": ["An extremely accurate clock that is relatively unaffected by movement or temperature changes."], "colony": ["A group of the same species of plants or animals that live or grow close together.", "A settlement of people who leave their country to go live in a new land.", "A territory under the immediate political control of a state."], "rift valley": ["A valley created by the formation of a rift."], "Silicon Valley": ["The southern part of the San Francisco Bay Area in northern California, USA, originally referring to the concentration of silicon chip innovators and manufacturers, but eventually becoming a metaphor for the entire concentration of high tech businesses."], "projection": ["The method by which the curved surface of the globe is represented on a flat sheet of paper.", "A magnified image created by light thrown upon a semireflective surface.", "A forecast of future trends in the operation of a business."], "perspective": ["An approximate representation, on a flat surface (such as paper), of an image as it is perceived by the eye."], "Varennes-en-Argonne": ["French city in the d\u00e9partement of Meuse in the Lorraine region."], "Varennes": ["French city in the d\u00e9partement of Meuse in the Lorraine region."], "French Republican Calendar": ["A calendar created during the French Revolution which introduced new conventions for counting hours, days and months."], "French Revolutionary Calendar": ["A calendar created during the French Revolution which introduced new conventions for counting hours, days and months."], "Democratic People's Republic of Korea": ["A country in East Asia whose capital is Pyeongyang."], "Republic of Korea": ["A country in East Asia whose capital is Seul."], "compositional": ["Arranging or grouping."], "Republic of Guyana": ["A country in South America, with capital Georgetown."], "Republic of Mauritius": ["A country in the Indian Ocean with capital Port-Louis."], "Republic of Nauru": ["A country in Oceania."], "Republic of Yemen": ["A country in the Middle East located at the most Southern point of the Arabic peninsula, with capital San\u2018a\u2019."], "prevail": ["To emerge; to be visible or larger in number, quantity, power, status or importance.", "To show or prove superior.", "To be valid, applicable, or true."], "impulse": ["A wish or urge, particularly a sudden one."], "warlock": ["A man who performs witchcraft; performer of the black arts."], "male witch": ["A man who performs witchcraft; performer of the black arts."], "bewitcher": ["A man who performs witchcraft; performer of the black arts."], "abominable": ["Highly detestable. (Source: IPDF)"], "loathsome": ["Highly detestable. (Source: IPDF)"], "abominate": ["To detest on a high degree; to hate completely."], "abomination": ["Extreme hatred or detestation; the feeling of utter dislike.", "Objective cause of extreme disgust and revulsion."], "disgust": ["Extreme hatred or detestation; the feeling of utter dislike.", "A feeling of extreme dislike accompanied by nausea.", "To provoke disgust or strong distaste."], "Bastille": ["Former fort in Paris which was used as a prison and stormed by the people at the beginning of the French Revolution."], "probity": ["Quality of having strong moral principles."], "inadvertent": ["Without intention."], "Cauca": ["An extinct language of Colombia."], "Chamicuro": ["A Western Maipuran language spoken by the Chamicuro people living close to Pampa Hermosa in Peru."], "Chopi": ["A language of Mozambique."], "Samba Daka": ["A language of Nigeria."], "Atsam": ["A language of Nigeria."], "Kasanga": ["A language of Guinea-Bissau."], "Cutchi-Swahili": ["A language of Kenya and Tanzania"], "Malaccan Creole Malay": ["A language of Malaysia (Peninsular)."], "Comaltepec Chinantec": ["A language of Mexico."], "Chaungtha": ["A Tibeto-Burman language spoken by the Chaungtha people in central parts of Myanmar."], "Southern Zhuang": ["A language of China."], "Choni": ["A language of China."], "Chiru": ["A language of India."], "miniskirt": ["Very short skirt, ending several inches above the knee."], "mini-skirt": ["Very short skirt, ending several inches above the knee."], "Chamari": ["A language of India"], "Chepang": ["A language of Nepal."], "Chaudangsi": ["A language of India and Nepal"], "Min Dong": ["A Chinese language mainly spoken in the eastern part of Fujian Province in China, in and near Fuzhou and Ningde. It is also spoken in Brunei, Indonesia (Java and Bali), Malaysia (Peninsular), Singapore and Thailand."], "Cinda-Regi-Tiyal": ["A language of Nigeria."], "bud": ["A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect.", "An undeveloped or embryonic shoot and normally occurs in the axil of a leaf or at the tip of the stem."], "sole of foot": ["The underside of the human foot."], "plantar": ["Of or pertaining to the sole of the foot."], "bridge of the nose": ["The ridge of the nose running from the root of the nose down to the tip."], "iced": ["Chilled with ice."], "water-cooled": ["Chilled with water."], "Lower Chehalis": ["An extinct Tsamosan language formerly spoken in the south of Olympic Peninsula, Washington, USA."], "Chamacoco": ["A language of Paraguay."], "Cent\u00fa\u00fam": ["A language of Nigeria."], "Dijim-Bwilim": ["A language of Nigeria."], "Cara": ["A language of Nigeria."], "Como Karim": ["A language of Nigeria."], "Changriwa": ["A language of Papua New Guinea."], "Kagayanen": ["A language of the Philippines."], "Chiga": ["A language of Uganda."], "Chocangacakha": ["A language of Bhutan."], "Catawba": ["An extinct language of USA."], "Highland Oaxaca Chontal": ["A language of Mexico."], "shadeless": ["Without shade, offering no shade."], "Tabasco Chontal": ["A Mayan language spoken by the Chontal Maya people, an indigenous people of the Mexican state of Tabasco."], "Chinook": ["A language of the USA."], "Ojitl\u00e1n Chinantec": ["A language of Mexico."], "shady": ["Raising suspicion.", "Abounding in shade.", "Offering shade, located in the shade."], "Chuukese": ["A language of Micronesia."], "Cahuilla": ["A language of USA"], "Chinook Wawa": ["A language of Canada and the USA."], "unshaded": ["Without shade, offering no shade."], "Chipewyan": ["A language of Canada."], "Quiotepec Chinantec": ["A language of Mexico."], "Chumash": ["An extinct language of the USA."], "Chol\u00f3n": ["An extinct language of Peru."], "shaded": ["Offering shade, located in the shade."], "Chuwabu": ["A language of Mozambique."], "Chantyal": ["A language of Nepal."], "Ozumac\u00edn Chinantec": ["A language of Mexico."], "Cia-Cia": ["A language of Indonesia (Sulawesi)."], "Ci Gbe": ["A language of Benin."], "Chimariko": ["An extinct language of the USA."], "Earth's crust": ["The outer layers of the Earth's structure, varying between 6 and 48 km in thickness."], "archdiocese": ["Diocese administered by an archbishop."], "downhill": ["Down the slope of a hill or mountain."], "uphill": ["Up the slope of a hill or mountain."], "Kinnauri Chitkuli": ["A language of India."], "Cimbrian": ["An Upper German language spoken in northeastern Italy."], "Cinta Larga": ["A language of Brazil."], "Chiapanec": ["A language of Mexico."], "Tiri": ["A language of New Caledonia."], "Chippewa": ["A language of the USA."], "Chaima": ["A language of Venezuela."], "Western Cham": ["A language of Cambodia, Viet Nam and Thailand"], "Chru": ["A language of Viet Nam."], "Upper Chehalis": ["An extinct language of the USA."], "Chokwe": ["A language of the Democratic Republic of the Congo, Angola and Zambia"], "Eastern Cham": ["A language of Viet Nam."], "Chenapian": ["A language of Papua New Guinea."], "Ash\u00e9ninka Pajonal": ["A language of Peru."], "Cab\u00e9car": ["A language of Costa Rica."], "Chuave": ["A language of Papua New Guinea."], "Jinyu": ["A language of China."], "Tzimbrisch": ["An Upper German language spoken in northeastern Italy."], "Khumi Awa Chin": ["A language of Myanmar."], "Central Kurdish": ["A language of Iraq and Iran."], "Northern Kaqchikel": ["A language of Guatemala."], "Santo Domingo Xenacoj Kaqchikel": ["A language of Guatemala."], "Eastern Kaqchikel": ["A language of Guatemala."], "Southern Kaqchikel": ["A language of Guatemala."], "Chak": ["A language of Myanmar and Bangladesh."], "Santa Mar\u00eda de Jes\u00fas Kaqchikel": ["A language of Guatemala."], "Akatenango Southwestern Kaqchikel": ["A language of Guatemala."], "flow together": ["To merge, to join, or to come out at the same point coming from different points of origin."], "conformity": ["Acting according to certain accepted standards."], "unitary": ["Relating to or characterized by or aiming toward unity."], "promoter": ["The section of DNA that controls the initiation of RNA transcription as a product of a gene.", "An accelerator of a catalyst, though not a catalyst itself"], "consecrate": ["To give entirely to a specific person, activity, or cause."], "exhausted": ["Who lived a hard experience and is therefore drained of energy or effectiveness, or extremely tired."], "praise": ["the act of expressing approval or admiration; commendation; laudation.", "To extol in speech or writing."], "Yucat\u00e1n Maya": ["A Mayan language spoken in the Yucat\u00e1n Peninsula, northern Belize and parts of Guatemala."], "philology": ["The study of a language together with its literature and the historical and cultural contexts that are indispensable for an understanding of the literary works and other culturally significant texts."], "historical": ["Related to history."], "generalization": ["The process of arriving at some general notion from the individual instances belonging to some class."], "legend": ["A table on a map, chart, or the like, listing and explaining the symbols used."], "player": ["A person that plays a designated role in a film or play.", "A person that plays games."], "care about": ["To take the responsibility to look after something."], "administrative": ["Related to administration."], "regional": ["Related to region."], "delimitation": ["Enclosure within boundaries of time, space, etc."], "disappointed": ["Disappointingly unsuccessful; suffering from frustration."], "customer satisfaction": ["A measure of the degree to which a product or service meets the customer's expectations."], "customer care": ["The set of behaviors that a business undertakes during its interaction with its customers."], "customer loyalty": ["The behaviour customers exhibit when they make frequent repeat purchases of a brand."], "fate": ["The power or agency that, according to certain belief systems, predetermines and orders unalterably the course of events.", "Event that unavoidably happens to a person, country, institution, etc.", "An outcome, condition or event that is predetermined by fate [the power that predetermines events].", "To make inevitable."], "Kyoto Climate Change Treaty": ["An international treaty on global warming ratified by 141 countries. Countries which ratify this protocol commit to reduce their emissions of carbon dioxide and five other greenhouse gases, or engage in emissions trading if they maintain or increase emissions of these gases."], "impersonal verb": ["A verb that cannot take a true subject, because it does not represent an action, occurrence, or state-of-being of any specific person, place, or thing (source: Wikipedia)"], "Kyoto Protocol": ["An international treaty on global warming ratified by 141 countries. Countries which ratify this protocol commit to reduce their emissions of carbon dioxide and five other greenhouse gases, or engage in emissions trading if they maintain or increase emissions of these gases."], "devoutness": ["The continuity and perseverance in observing religious practices by virtue of being devout."], "diameter": ["Distance between the intersections of a circle with a straight line through its center"], "shortcoming": ["An imperfection in a device or machine."], "propagation": ["The dissemination of something to a larger area or greater number."], "quadrangular": ["Having four angles."], "gradation": ["(Of colors and sounds) A decrease in intensity."], "curve": ["A term indicating the curvature of an arc.", "Set of points that form an one-dimensional and continuous object."], "languoid": ["ISO.639.4: language object that can be distinguished from other language objects. NOTE: Can be used as a cover-all term for language groups, macrolanguages, languages, dialects and so on."], "Anufo": ["A language of Ghana, Benin and Togo."], "Kairak": ["A language of Papua New Guinea."], "Koasati": ["A language of the USA."], "Kavalan": ["A language of Taiwan."], "Western Kaqchikel": ["A language of Guatemala."], "Caka": ["Language of Cameroon."], "Kaqchikel-K'iche' Mixed Language": ["A language of Guatemala."], "Chilcotin": ["A language of Canada."], "Chaldean Neo-Aramaic": ["A modern Eastern Aramaic language spoken on the Plain of Mosul in northern Iraq."], "Lealao Chinantec": ["A language of Mexico."], "Chakali": ["A language of Ghana."], "Idu-Mishmi": ["A language of India."], "Clallam": ["A language of the USA"], "Lowland Oaxaca Chontal": ["A language of Mexico."], "Caluyanun": ["A language of the Philippines."], "Eastern Highland Chatino": ["A language of Mexico."], "Cerma": ["A language of Burkina Faso and the C\u00f4te d'Ivoire."], "Ember\u00e1-Cham\u00ed": ["A language of Colombia."], "Chimakum": ["An extinct language of USA"], "Campalagian": ["A language of Indonesia (Sulawesi)."], "Mro Chin": ["A language of Myanmar."], "Camtho": ["A language of South Africa."], "Changthang": ["A language of India."], "Chinbon Chin": ["A language of Myanmar."], "C\u00f4\u00f4ng": ["A language of Viet Nam."], "Northern Qiang": ["A language of China."], "Haka Chin": ["A language of Myanmar, Bangladesh and India."], "Ash\u00e1ninka": ["A language of Peru."], "Khumi Chin": ["A language of Myanmar, Bangladesh and India."], "Lalana Chinantec": ["A language of Mexico."], "Ixtat\u00e1n Chuj": ["A language of Guatemala and Mexico"], "Central Asmat": ["A language of Indonesia (Papua)."], "Tepetotutla Chinantec": ["A language of Mexico."], "Ngawn Chin": ["A language of Myanmar."], "lect": ["Usually considered to be a language or specialized form of language such as a dialect."], "abrade": ["To wear down by friction. (V.t.; Re. Geology; Source: IPDF);"], "water-soluble": ["Soluble in water."], "soluble": ["Capable of dissolving in a liquid."], "home run": ["In baseball, a hit in which the batter is able to circle all the bases, ending at home plate and scoring a run himself (along with a run scored by each runner who was already on base), with no errors by the defensive team on the play which result in the batter advancing for extra bases."], "Cocos Islands Malay": ["A dialect of the Malay language spoken in the state of Sabah in Malaysia, as well as in the Cocos Islands and Christmas Islands of Australia."], "Cocopa": ["A language of Mexico and the USA."], "Cocama-Cocamilla": ["A language of Peru, Brazil and Colombia."], "Koreguaje": ["A language of Colombia."], "Chonyi": ["A language of Kenya."], "Santa Teresa Cora": ["A language of Mexico."], "Columbia-Wenatchi": ["A language of the USA."], "Comanche": ["A language of the USA."], "Cof\u00e1n": ["A language of Ecuador and Colombia"], "Comox": ["A language of Canada."], "Coptic": ["A direct descendant of the ancient Egyptian language."], "Coquille": ["An extinct language of the USA."], "Caquinte": ["A language of Peru."], "Wamey": ["A language of Senegal and Guinea."], "Cowlitz": ["An extinct language of the USA."], "Nanti": ["A language of Peru."], "Coyaima": ["An extinct language of Colombia."], "Chochotec": ["A language of Mexico."], "Palantla Chinantec": ["A language of Mexico."], "Ucayali-Yur\u00faa Ash\u00e9ninka": ["A language of Peru and Brazil."], "Ajy\u00edninka Apurucayali": ["A language of Peru."], "Chinese Pidgin English": ["A language of Nauru."], "Cherepon": ["A language of Ghana."], "Capiznon": ["A language of the Philippines."], "Pichis Ash\u00e9ninka": ["A language of Peru."], "Pu-Xian": ["A language of China, Malaysia (Peninsular), Singapore."], "South Ucayali Ash\u00e9ninka": ["A language of Peru."], "Chilean Quechua": ["A language of Chile."], "comfort": ["A consolation; something relieving suffering or worry.", "To provide comfort or moral strength to or relieve suffering."], "destruction": ["Process in which an object is irreversibly reduced in smaller parts or driven to a state where its function cannot be performed anymore.", "The act of devastating."], "elastic": ["Easily resuming original shape after being stretched or expanded."], "Lonwolwol": ["A language of Vanuatu."], "abrasion": ["Act of wearing down by friction. (Noun; Re. Geology; Source: IPDF);", "A broad, shallow injury left by scraping."], "Abraham": ["The father of Isaac. (Noun, given name; Christianity; Source: IPDF);"], "water-insoluble": ["Not soluble in water."], "insoluble": ["Incapable of dissolving in a liquid."], "fat-soluble": ["Soluble in fats or oils."], "lipophilic": ["Soluble in fats or oils."], "hydrophilic": ["Soluble in water."], "hydrophobic": ["Not soluble in water."], "fat-insoluble": ["Not soluble in fats or oils."], "lipophobic": ["Not soluble in fats or oils."], "Coeur d'Alene": ["A language of the USA."], "Caramanta": ["An extinct language of Colombia."], "Michif": ["A language of the USA and Canada."], "Southern East Cree": ["A language of Canada."], "fundraising": ["The soliciting or receiving of monies, resources or other benefits from organisations, trusts or individuals."], "Plains Cree": ["An Algonquian language, often considered a dialect of Cree, spoken in Manitoba, Saskatchewan, Alberta (Canada) and Montana (United States)."], "disciple": ["Someone who believes and helps to spread the doctrine of another."], "fairly good": ["Good enough."], "disgregate": ["Figuratively, to break or detach an entity."], "Northern East Cree": ["A language of Canada."], "Moose Cree": ["A language of Canada."], "El Nayar Cora": ["A language of Mexico."], "Crow": ["A language of the USA."], "Iyo'wujwa Chorote": ["A language of Argentina, Bolivia and Paraguay."], "Carolina Algonquian": ["An extinct Algonquian language formerly spoken in North Carolina, United States."], "Iyojwa'ja Chorote": ["A language of Argentina."], "Car\u00fatana": ["A language of Brazil."], "Carrier": ["A language of Canada."], "Cori": ["A language of Nigeria."], "Cruze\u00f1o": ["An extinct language of USA."], "Chiltepec Chinantec": ["A language of Mexico."], "Catalonian Sign Language": ["A sign language used in Spain, mainly in Catalonia."], "anemoclinometer": ["An instrument that measures the inclination of the wind to the horizontal plane."], "Chiangmai Sign Language": ["A sign language used in Chiang Mai, in Thailand."], "linear": ["Confined to first-degree algebraic terms in the relevant variables.", "Having the form of a line; straight."], "Czech Sign Language": ["A language of Czech Republic"], "Cuba Sign Language": ["A language of Cuba."], "linearity": ["The property of being linear."], "Chilean Sign Language": ["A language of Chile."], "Asho Chin": ["A language of Myanmar and Bangladesh."], "Coast Miwok": ["An extinct language of the USA."], "Jola-Kasa": ["A language of Senegal."], "Chinese Sign Language": ["A language of China."], "Central Sierra Miwok": ["A language of the USA"], "Colombian Sign Language": ["A language of Colombia."], "Sochiapan Chinantec": ["A language of Mexico."], "Croatia Sign Language": ["A language of Croatia."], "Costa Rican Sign Language": ["A language of Costa Rica."], "Southern Ohlone": ["An extinct language of USA."], "Northern Ohlone": ["An extinct language of the USA."], "Swampy Cree": ["A language of Canada."], "Siyin Chin": ["A language of Myanmar"], "Coos": ["A language of USA."], "Tataltepec Chatino": ["A language of Mexico."], "Chetco": ["A language of the USA."], "Tedim Chin": ["A language of Myanmar and India."], "Tepinapa Chinantec": ["A language of Mexico."], "Tila Chol": ["A language of Mexico."], "Tlacoatzintepec Chinantec": ["A language of Mexico."], "Chitimacha": ["An extinct language of the USA."], "Chhintange": ["A language of Nepal."], "Ember\u00e1-Cat\u00edo": ["A language of Colombia and Panama."], "Western Highland Chatino": ["A language of Mexico."], "Northern Catanduanes Bicolano": ["A language of the Philippines."], "Zacatepec Chatino": ["A language of Mexico."], "Cubeo": ["A language of Colombia and Brazil."], "Usila Chinantec": ["A language of Mexico."], "Cung": ["A language of Cameroon."], "Chuka": ["A language of Kenya."], "Cuiba": ["A language of Colombia and Venezuela"], "San Blas Kuna": ["A language of Panama."], "Culina": ["A language of Brazil and Peru."], "Cumeral": ["An extinct language of Colombia."], "Cune'n K'iche'": ["A language of Guatemala."], "Cumanagoto": ["An extinct language of Venezuela."], "Cupe\u00f1o": ["An extinct language of the USA."], "Chhulung": ["A language of Nepal."], "Teutila Cuicatec": ["A language of Mexico."], "Chukwa": ["A language of Nepal."], "Tepeuxila Cuicatec": ["A language of Mexico."], "Valle Nacional Chinantec": ["A language of Mexico."], "Kabwa": ["A language of Tanzania."], "Maindo": ["A language of Mozambique."], "Woods Cree": ["A language of Canada."], "Kwere": ["A language of Tanzania."], "Kuwaataay": ["A language of Senegal."], "Nopala Chatino": ["A language of Mexico."], "Cayubaba": ["An extinct language of Bolivia."], "Cuyonon": ["A language of the Philippines."], "Huizhou": ["A Chinese language spoken in eastern China, primarily in the southern part of Anhui Province on the banks of the Xi'nan River."], "Zenzontepec Chatino": ["A language of Mexico."], "Min Zhong": ["A language of China."], "Zotung Chin": ["A language of Myanmar."], "correctness": ["Conformity to the truth or to fact.", "The state of an algorithm that correctly mirrors its specification."], "culmination": ["The highest level or degree attainable.", "A final climactic stage."], "planetary ring": ["Ring of dust and other small particles orbiting around a planet in a flat disc-shaped region."], "Dambi": ["A language of Papua New Guinea."], "Marik": ["A language of Papua New Guinea."], "Duupa": ["A language of Cameroon."], "Dan": ["A language of C\u00f4te d'Ivoire, Guinea and Liberia."], "Dagbani": ["A Gur language spoken in Ghana."], "Gwahatike": ["A language of Papua New Guinea."], "Day": ["A language of Chad."], "Dakota": ["A Siouan language of the USA and Canada."], "tome": ["One book in a series of volumes."], "Daai Chin": ["A language of Myanmar."], "Nisi": ["A language of India."], "Daho-Doo": ["A language of the C\u00f4te d'Ivoire."], "Darang Deng": ["A language of China."], "Taita": ["A language of Kenya."], "Davawenyo": ["A language of the Philippines."], "Dayi": ["A language of Australia."], "Dao": ["A language of Indonesia (Papua)."], "stance": ["Judgement or belief not founded on certainty or proof.", "The manner, or pose in which one stands.", "A rationalized mental attitude.", "In martial arts, the distribution, foot orientation and body position adopted when attacking, defending, advancing or retreating."], "posture": ["The manner, or pose in which one stands.", "A manner of positioning one's body or a part of it.", "Manner of behaving oneself; manner of acting.", "A rationalized mental attitude.", "To behave affectedly or unnaturally in order to impress other."], "Emiliano-Romagnolo": ["A language of Italy and San Marino"], "depict": ["To represent or show in, or as in, a picture.", "To give a description of."], "apetalous": ["Having no petals."], "Vai": ["A language of Liberia and Sierra Leone."], "Bondum Dom Dogon": ["A language of Mali."], "Dadiya": ["A language of Nigeria."], "Dabe": ["A language of Indonesia (Papua)."], "Edopi": ["A language of Indonesia (Papua)"], "Dogul Dom Dogon": ["A language of Mali."], "Ida'an": ["A language of Malaysia (Sabah)."], "Dyirbal": ["An Australian Aboriginal language spoken in northeast Queensland by about 5 speakers of the Dyirbal tribe."], "Duriankere": ["A language of Indonesia (Papua)."], "Dulbu": ["A language of Nigeria."], "fence": ["To delimit, to mark the boundary of an area.", "Delimitation for an area."], "divinity": ["A supernatural, typically immortal being with superior powers."], "deity": ["A divine being.", "A supernatural, typically immortal being with superior powers."], "dominate": ["To emerge; to be visible or larger in number, quantity, power, status or importance.", "To look down on.", "To rule over; to be in control."], "reproduce": ["To render something by means of a certain material."], "remuneration": ["A fixed amount of money paid to a worker, usually measured on a monthly or annual basis.", "Monetary compensation for a carried out job."], "rectangular": ["Having the form of a rectangle."], "Dungu": ["A language of Nigeria."], "Dibiyaso": ["A language of Papua New Guinea."], "Doondo": ["A language of Congo."], "Fataluku": ["A Papuan language spoken by approximately 30,000 people of Fataluku ethnicity in the eastern areas of East Timor, especially around Lospalos and a dialect of it, Oirata, is spoken in Kisar, Moluccas in Indonesia."], "Diodio": ["A language of Papua New Guinea."], "Jaru": ["A Southwest Pama\u2013Nyungan language spoken in the Western Australia."], "Donno So Dogon": ["A language of Mali."], "Dawera-Daweloor": ["A language of Indonesia (Maluku)."], "Dedua": ["A language of Papua New Guinea."], "Dewoin": ["A language of Liberia."], "Dezfuli": ["A language of Iran."], "Degema": ["A language of Nigeria."], "Dehwari": ["A language of Pakistan."], "Demisa": ["A language of Indonesia (Papua)."], "Dek": ["A language of Cameroon."], "Dem": ["A language of Indonesia (Papua)."], "Pidgin Delaware": ["An extinct language of the USA."], "Deori": ["A language of India."], "Desano": ["A Tucanoan language spoken in Brazil and Colombia."], "Domung": ["A language of Papua New Guinea."], "Dengese": ["A language of Democratic Republic of the Congo."], "Southern Dagaare": ["A language of Ghana"], "Casiguran Dumagat Agta": ["A language of the Philippines."], "Dagaari Dioula": ["A dialect of the Dagaare language spoken mainly in Burkina Faso."], "Degenan": ["A language of Papua New Guinea."], "Northern Dagara": ["A language of Burkina Faso."], "Dagoman": ["An extinct language of Australia."], "Dogri": ["A language of India."], "Dogrib": ["A Northern Athabaskan language spoken by the First Nations T\u0142\u0131\u0328ch\u01eb people of the Canadian territory Northwest Territories."], "Dogoso": ["A language of Burkina Faso."], "Doghoro": ["A language of Papua New Guinea."], "Daga": ["A language of Papua New Guinea."], "docile": ["Being easily influenced by others."], "indulgent": ["Being easily influenced by others."], "Austro-Hungarian Empire": ["A dual-monarchic union state in Central Europe from 1867 to 1918, dissolved at the end of World War I."], "Dhangu": ["An Yol\u014bu language, spoken in Australia's Northern Territory."], "Dhimal": ["A language of Nepal and India."], "Dhalandji": ["A Southwest Pama\u2013Nyungan language of Australia."], "Zemba": ["A Bantu language of Angola and Namibia."], "Dhargari": ["A language of Australia."], "Dhaiso": ["A language of Tanzania."], "Dhurga": ["An extinct language of Australia."], "Dehu": ["A language of New Caledonia."], "due to": ["due to; because of; caused by;", "[Used to indicate the cause of a mentioned outcome of negative connotation.]"], "duchy": ["A territory ruled by a duke or duchess."], "elaboration": ["A political or social construction."], "within": ["To the inside of a place.", "Before the end of a time period."], "heir": ["A person who acquires or has the right to acquire goods, rights or obligations from another person after her death."], "inherit": ["To receive all the propertes belonging to a deceased person."], "repossess": ["To regain possession of something."], "reception": ["A celebration after the wedding ceremony where people congratulate and meet the newlyweds and their families.", "The act of receiving someone or something.", "The act of receiving radio or similar signals.", "The desk of a hotel or office where guests are received.", "The ability to receive radio or similar signals.", "The manner in which someone or something, such as a book, an idea, etc., is received."], "surrender": ["The act of surrendering to the enemy.", "To give up or agree to forgo to the power or possession of another.", "To relinquish possession or control of to another because of demand or compulsion."], "reconstitute": ["To construct, restore or form anew."], "curved": ["Something that is bent as to form an arch"], "Dia": ["A language of Papua New Guinea."], "Lakota Dida": ["A language of the C\u00f4te d'Ivoire."], "Dieri": ["An extinct language of Australia."], "Digo": ["A language of Kenya and Tanzania."], "Kumiai": ["A language of Mexico and the USA."], "Dimbong": ["A language of Cameroon."], "Dai": ["A language of Indonesia (Maluku)."], "Dibo": ["A language of Nigeria."], "Dimli": ["A language of Turkey (Asia)."], "Dirim": ["A language of Nigeria."], "Dimasa": ["A language of India."], "Dirari": ["A language of Australia."], "Diriku": ["A language of Namibia, Angola and Botswana."], "Maldivian": ["A person who originated from or who is a citizen of the Maldives."], "Dixon Reef": ["A language of Vanuatu."], "Diuwe": ["A language of Indonesia (Papua)."], "Ding": ["A language of Democratic Republic of the Congo"], "lingua franca": ["A common language used by speakers of different languages."], "ISO 4217 codes": ["OmegaWiki collection of ISO 4217 currency codes.", "Three-letters codes to define the names of currencies."], "US Dollar": ["The official currency of the United States of America, with symbol \"$\"."], "Aruban guilder": ["The currency of Aruba"], "Swiss franc": ["The currency of Switzerland and Liechtenstein."], "Brazilian real": ["The Brazilian currency."], "desire": ["To express a desire for something or somebody arousing appreciation.", "An inclination to want things."], "ridicule": ["To treat or speak of with contempt."], "regard": ["To account; to esteem; to think; to judge; to hold in opinion; to regard. (Source Webster 1913)", "The establishment of a relationship between two related arguments.", "A long fixed look.", "An attitude of admiration or esteem.", "To look at attentively."], "renew": ["To replace something old with something new of the same type."], "renunciation": ["The resignation of an ecclesiastical office."], "Djinba": ["An Australian Aboriginal language of the Yolngu group spoken in Ngangalala, the Northern Territory."], "prominence": ["Condition of importance and relief."], "Djamindjung": ["An Australian language spoken around the Victoria River in the Northern Territory of Australia."], "Zarma": ["A language of Niger, Burkina Faso, Mali and Nigeria."], "Djangun": ["A language of Australia."], "Djinang": ["A language of Australia."], "Djeebbana": ["A language of Australia."], "Aukan": ["A English Creole language spoken by the Ndyuka people of Suriname."], "Djiwarli": ["An extinct Australian Aboriginal language, of the Mantharta group of the large Southwest branch of the Pama-Nyungan family, formerly spoken in Western Australia."], "Jamsay Dogon": ["A language of Mali and Burkina Faso."], "Djauan": ["A language of Australia."], "Djongkang": ["A language of Indonesia (Kalimantan)."], "Djambarrpuyngu": ["A language of Australia."], "Kapriman": ["A language of Papua New Guinea."], "Djawi": ["A language of Australia."], "aspersion": ["A slanderous remark.", "An abusive attack of a person's reputation by any slanderous communication.", "An abusive attack on a person's character or good name"], "slur": ["A slanderous remark."], "calumny": ["A slanderous remark.", "An abusive attack of a person's reputation by any slanderous communication.", "A false accusation of an offense or a malicious misrepresentation of someone's words or actions."], "unknown": ["Not familiar, not known."], "exultant": ["Being joyful and proud especially because of triumph or success."], "gable roof": ["A single-ridge roof that terminates at gable ends."], "distort": ["To restore or reproduce in any way which is not original or true.", "To twist of natural or regular shape.", "To alter the shape of (something) by stress."], "believer": ["Person that believes in a religion."], "fabulous": ["Causing wonder, admiration or astonishment.", "Characteristic of fables."], "commit adultery": ["As a married person, to have sex with a person other than the spouse."], "Dakpakha": ["A language of Bhutan."], "reorganisation": ["The granting of a new organizational arrangement or a substantial modification of an existing one."], "Kolum So Dogon": ["A language of Mali."], "Kuijau": ["A language of Malaysia (Sabah)."], "awakening": ["Renewed impulse or activity fervor, after one long inertia."], "finishing touch": ["A task performed at the end of a work, to make it complete and refined."], "dense": ["Consisting of components very close to each other.", "Consisting of many people very close to each other."], "variation": ["A partial change in the form, position, state, or qualities of a thing."], "Darlong": ["A language of Bangladesh and India."], "Duma": ["A language of Gabon."], "Dimir": ["A language of Papua New Guinea."], "educate oneself": ["To acquire knowledge and skills in performing a job."], "Upper Kinabatangan": ["A language of Malaysia (Sabah)."], "rosy": ["Of blush color."], "revolve": ["To move in the scope of something or someone.", "To move in an orbit."], "holy": ["Specially recognized as or declared sacred by religious use or authority."], "hectic": ["Very active and nervous."], "splendour": ["Great beauty, splendor or honor."], "finding": ["Something that is found; the final result of a search."], "plunder": ["A violent appropriation made by soldiers in enemy territory after a victory.", "To take the goods of.", "To deprive of something valuable by force."], "firmly": ["Without showing hesitation, indecision, doubt.", "In a steadfast way, without giving in.", "In a steadfast, decided, resolute, determined way."], "scarcity": ["A lack or short supply."], "scale": ["A tool to measure the weight of something.", "The relationship between the dimensions of one graphical representation and the real dimensions of the same figure.", "One of the small flat pieces of skin that cover the bodies of fish."], "cosmological": ["Related to cosmology."], "cosmologist": ["Person specialized in cosmology."], "chisel": ["To cause someone to believe an untruth; to practice trickery or fraud.", "A tool with a cutting edge at the end."], "break up": ["To delay or put off an event or an appointment.", "To end a relationship."], "frame": ["A decorative band that delimits a door, a window, a furniture, etc.", "A rigid structure that is used to support something.", "A rigid and load-bearing structure that is used to support pannels or doors.", "A container for a painting or photograph.", "A data packet that includes frame synchronization, i.e. a sequence of bits or symbols making it possible for the receiver to detect the beginning and end of the packet.", "One of the many still images that compose a video.", "The fixed part of a bicycle, on to which wheels and other components are fitted.", "The part of a snooker match between initial setup of all balls on the table and all balls pocketed or a player having given up or one player cannot win the frame any more."], "screen": ["To protect, hide, or conceal from danger or harm.", "A white or silvered surface where pictures can be projected for viewing.", "The display that is electronically created on the surface of the large end of a cathode-ray tube or some other display technology.", "To test or examine for the presence of disease or infection."], "succession": ["A large group of people or things lined up in a certain way."], "carved": ["Ornamented with protruding shapes."], "thoughtless": ["Without care or thought for others.", "Showing lack of careful thought."], "shock": ["To strike with horror or terror.", "An unpleasant or disappointing surprise."], "blond": ["A light and yellowish, brownish or golden color.", "Having a light and yellowish, brownish or golden color.", "A light and yellowish, brownish or golden hair color."], "cupreous": ["Consisting of copper.", "Having the colour of copper.", "Of, resembling, or containing copper."], "coppery": ["Consisting of copper.", "Having the colour of copper.", "Of, resembling, or containing copper."], "copper-colored": ["Having the colour of copper."], "blackish": ["Having a dark colour, somewhat black."], "cross oneself": ["To trace the shape of a cross over front, shoulders and chest with the hand."], "press conference": ["An event to which corporations, politicians, institutions, celebrities etc. invite representative of the press in order to give a statement and/or answer questions of the journalists."], "news conference": ["An event to which corporations, politicians, institutions, celebrities etc. invite representative of the press in order to give a statement and/or answer questions of the journalists."], "Caribbean": ["A geographical region bordered on the south by South America and Panama, and on the west by Central America, and consisting of the West Indian, and nearby, islands and the Caribbean Sea, a part of the western Atlantic Ocean.", "Of, relating to, characteristic of or located in the Caribbean."], "marmoset": ["A genus of small New World monkeys."], "Middle High German": ["An older stage of the German language, including all High German varieties, which was spoken between circa 1050 and 1350."], "MHG": ["An older stage of the German language, including all High German varieties, which was spoken between circa 1050 and 1350."], "Early New High German": ["An older stage of the German language, which was spoken between circa 1350 and 1650."], "ENHG": ["An older stage of the German language, which was spoken between circa 1350 and 1650."], "casting": ["A manufacturing process which consists of pouring liquid material into a mold and solidifying it to create an object."], "cast iron": ["Alloy of iron and carbon."], "Old High German": ["The earliest stage of the German language attested in written form, used in the period from around 750 to 1050."], "OHG": ["The earliest stage of the German language attested in written form, used in the period from around 750 to 1050."], "Chibemba": ["A Bantu language spoken in Zambia and the Democratic Republic of the Congo by the Bemba people."], "Cibemba": ["A Bantu language spoken in Zambia and the Democratic Republic of the Congo by the Bemba people."], "Ichibemba": ["A Bantu language spoken in Zambia and the Democratic Republic of the Congo by the Bemba people."], "Chiwemba": ["A Bantu language spoken in Zambia and the Democratic Republic of the Congo by the Bemba people."], "go far": ["To succeed in a big way; to get to the top."], "Dama": ["A language of Cameroon."], "Kemezung": ["A language of Cameroon."], "East Damar": ["A language of Indonesia (Maluku)."], "Dampelas": ["A language of Indonesia (Sulawesi)."], "Dubu": ["A language of Indonesia (Papua)."], "Dumpas": ["A language of Malaysia (Sabah)."], "Dema": ["A language of Mozambique."], "Demta": ["A language of Indonesia (Papua)."], "Upper Grand Valley Dani": ["A language of Indonesia (Papua)."], "Daonda": ["A language of Papua New Guinea."], "Ndendeule": ["A language of Tanzania."], "Dungan": ["A language of Kyrgyzstan and Kazakhstan."], "Lower Grand Valley Dani": ["A language of Indonesia (Papua)."], "Dengka": ["A language of Indonesia (Nusa Tenggara)."], "Dz\u00f9\u00f9ngoo": ["A language of Burkina Faso."], "Danaru": ["A language of Papua New Guinea."], "Mid Grand Valley Dani": ["A language of Indonesia (Papua)."], "Western Dani": ["A language of Indonesia (Papua)."], "Den\u00ed": ["A language of Brazil."], "photographic": ["Of or relating to photography."], "Dobu": ["A language of Papua New Guinea."], "upload": ["To send a file from a user workstation to a server.", "The process of sending a file from a user workstation to a server."], "integrate": ["To bring several things into one."], "tell": ["To communicate orally, using a particular language; to express in words.", "To talk about a story giving its details; to give a detailed account of.", "To see someone or something as different from others; to discern or comprehend.", "To give instructions to or direct somebody to do something with authority.", "To give information; to let something be known."], "Domu": ["A language of Papua New Guinea."], "Dondo": ["A language of Indonesia (Sulawesi)."], "Doso": ["A language of Papua New Guinea."], "Toura": ["A language of Papua New Guinea"], "Lukpa": ["A language spoken by some 65500 people of Benin and Togo."], "Dominican Sign Language": ["A language of Dominican Republic."], "oath": ["Promise or solemn declaration in front of an authority, another person or to oneself."], "stimulus": ["Something external that elicits or influences a physiological or psychological activity or response."], "Dori'o": ["A language of Solomon Islands."], "Dogos\u00e9": ["A language of Burkina Faso."], "Dombe": ["A language of Zimbabwe."], "Doyayo": ["A language of Cameroon."], "Dompo": ["A language of Ghana."], "pretentious": ["Having extreme self-confidence and overbearing pride."], "crystal": ["Solid in which the constituent atoms, molecules, or ions are packed in a regularly ordered, repeating pattern extending in all three spatial dimensions.", "An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "contaminate": ["To introduce radioactive pollutants into the environment.", "To make impure."], "violate": ["To force sexual intercourse or other sexual activity upon another person, without their consent.", "To break, disregard or act not according to rules, conventions, etc.", "To remove the consecration from a person or an object."], "popular music": ["Music belonging to any of a number of musical styles that are accessible to the general public and mostly distributed commercially."], "crystal glass": ["High grade, smoothed glass which gleams intensely."], "coarse": ["In reference to a material or quality of something: unrefined."], "populism": ["A political philosophy or rhetorical style that holds that the common person is oppressed by the \"elite\" in society, and that the instruments of the State need to be grasped from this self-serving elite and used for the benefit and advancement of the people as a whole."], "crystalline": ["Made of crystal glass.", "Composed of crystals.", "Clear and transparent like crystal."], "devilish": ["Resembling or characteristic of a devil.", "Pertaining to, or characteristic of a demon or evil spirit."], "diabolic": ["Resembling or characteristic of a devil."], "download": ["Transfer data from a server to the local computer."], "imaginary": ["Existing only in the mind and not in reality."], "Middle French": ["Historical division of the French language which covers the period from roughly 1340 to 1610."], "Late Old Japanese": ["The stage of the Japanese language spoken and written during the Heian Period between 794 and 1185."], "Proto-Indo-European": ["The hypothetical common ancestor of the Indo-European languages."], "PIE": ["The hypothetical common ancestor of the Indo-European languages."], "Community": ["Placeholder for the Community database"], "OmegaWiki functionality": ["Omegawiki internal defined meaning."], "bury": ["To put in the ground and cover with earth."], "semicircular": ["Having the shape of a semicircle"], "serenity": ["A disposition free from stress or emotion."], "slavish": ["Resembling a vassal.", "Abjectly submissive; characteristic of a slave or servant.", "Blindly imitative."], "installation": ["A formal entry into an organization or position or office.", "The act of installing something."], "set up": ["Come to a mutual understanding or agreement or a common plan, to create an appointment, harmonize mutual ideas about a presumed future.", "Position or status with regard to conditions and circumstances.", "To place."], "imprint": ["A concavity in a surface produced by pressing."], "assignment": ["A duty assigned to someone."], "according": ["In agreement with or accordant with.", "As reported or stated by."], "embed": ["To fix in a support or decoration structure.", "To fix or set securely or deeply."], "exploit": ["To usefully and effectively use what is available.", "A piece of software, a chunk of data, or sequence of commands that take advantage of a bug, glitch or vulnerability in order to cause unintended or unanticipated behavior to occur on computer software, hardware, or something electronic (usually computerized). (source: Wikipedia)", "To use for one's own advantage."], "give vent to": ["To show explicitly, forcefully, feelings, sensations and passions."], "exploitation": ["The act of employing some area of land or water in a way that is more profitable or productive or useful."], "inconsistent": ["Not always acting or behaving in the same way."], "become": ["To be convenient or apt to someone or something.", "To begin to be; to come to be; to turn into.", "To undergo a change or development."], "concentrate": ["To increase the strength and diminish the bulk of, as of a liquid or an ore.", "A substance that is in a condensed form.", "To make more concise (e.g. the contents of a book or an article)."], "whitish": ["Referring to a colour: Tending to white."], "anticonstitutionally": ["In a manner that is contrary to the constitution."], "enamel": ["Glossy paint to be applied as protective or decorative coating on wood, metal, glass and other similar materials.", "The hard, glossy, calcareous covering of the crown of a tooth, containing only a slight amount of organic substance."], "intersection": ["A point where two lines or, more in general, two elements intersect.", "A place where several roads meet."], "in fact": ["As an actual or existing fact."], "Israeli Sign Language": ["A language of Israel."], "cluttered": ["Filled or scattered with a disorderly accumulation of objects or rubbish."], "elude": ["To escape or avoid something."], "take place": ["To come to pass."], "stretch": ["To fill the distance between two limit points; to extend to full length.", "To lengthen or become longer when pulled.", "To lengthen by pulling; to make long or longer.", "To get more use than expected from a limited resource.", "To expand unduly the meaning (of a word).", "To expand unduly the meaning of a rule, law, etc.", "To extend one\u2019s limbs or body in order to stretch the muscles.", "To fill a space up to a limit point."], "bevel": ["An edge that is canted, one that is not a 90 degree angle."], "bald patch": ["Hairless patch on the head which is due to hair loss and increases gradually."], "meant": ["Comprised or interpreted."], "interlace": ["to unite or arrange (threads, strips, parts, branches, etc.) so as to intercross one another passing it alternately over and under."], "supporter": ["Someone who defends with conviction one thesis, ideal or plan."], "underground": ["An electric passenger railway operated in underground tunnels.", "Located below the ground level."], "electron beam": ["A stream of electrons (small negatively charged particles found in atoms) that can be used for radiation therapy."], "cathode ray": ["A stream of electrons (small negatively charged particles found in atoms) that can be used for radiation therapy."], "vacuum pump": ["A pump that removes gas molecules from a sealed volume in order to leave behind a partial vacuum."], "electron beam treatment": ["A form of radiotherapy using a special type of rays for which it is easy to control the depth of penetration."], "electron beam welding": ["A welding process where the energy to melt the material is applied by an electron beam."], "electron beam gun": ["Device that produces and accelerates electrons to use in welding and cutting operations."], "electron beam coating": ["A clear coating that dries when exposed to an electron radiation."], "engraving": ["Using an acid or other chemical to form an elevated image on a printing plate or cylinder.", "The practice of incising a design onto a hard, flat surface, by cutting grooves into it."], "virgin fiber": ["A material used to make paper that has not been recycled from previous paper or other materials."], "inscription": ["A laudatory or memorial text about a person or a special event engraved in stone or other materials."], "laser engraving": ["A paper cutting technique whereby laser technology is utilized to cut away certain unmasked areas of the paper.", "An imprinting method by which electronic artwork is etched into acrylic surface by a laser beam."], "foil": ["A piece of thin and flexible sheet metal.", "A device consisting of a flat or curved piece (as a metal plate) so that its surface reacts to the water it is passing through.", "Anything that serves by contrast to call attention to another thing's good qualities.", "A light slender flexible sword tipped by a button.", "A picture consisting of a positive photograph or drawing on a transparent base; viewed with a projector.", "To cover or back with foil.", "To enhance by contrast.", "To hinder or prevent (the efforts, plans, or desires) of."], "data conversion": ["Changing digital data from one format to another so it can be used in another software application or printed on a specific output device."], "data compression": ["A technique to shrink or reduce the size of a data file so it takes up less storage space and is faster to move electronically."], "lasciviousness": ["Feeling morbid sexual desire or a propensity to lewdness."], "data compression ratio": ["The reduction in data quantity produced by a data compression algorithm."], "accentuate": ["To stress, single out as important.", "To put stress on; to utter with an accent."], "overlap": ["To extend over and partly cover something."], "spatial": ["Of or pertaining to the space."], "cathodic": ["Of or pertaining to a cathode.", "Proceeding from a nerve centre."], "cathode": ["The electron-emitting electrode of an electron tube.", "The positive terminal of a galvanic cell.", "The negative terminal of an electrolytic cell."], "two-lane": ["Of roads: Having one lane for traffic in each direction."], "single-lane": ["Of roads: Having a single lane for traffic in both directions."], "cobbled": ["Referred to road pavement: made of stone blocks usually of square or rectangular shape."], "relationship": ["Connection or relationship between two or more elements."], "licentiousness": ["Excessive indulgence in sensual pleasures."], "spinning machine": ["A machine that performs several operations to transform a textile fiber into a thread."], "masterly": ["That has been executed in the manner of one who is a master; extremely competently."], "mortar": ["Paste made of a mixture of a binder (cement, plaster or lime), sand and water used in masonry to make bricks, stones, etc. stick together.", "A bowl used to crush and grind ingredients with a pestle.", "An indirect fire weapon that fires explosive projectiles.", "To use mortar to bond objects together.", "To fire a mortar (weapon)."], "carnation": ["A flowering plant in the family Caryophyllaceae."], "cad": ["Someone who is morally reprehensible."], "dirty dog": ["Someone who is morally reprehensible."], "ethnography": ["The branch of anthropology that scientifically describes specific human cultures and societies."], "smitten": ["Feeling love for someone or something."], "stateless": ["Not having citizenship or nationality in any state."], "forenoon": ["The time of day between morning and noon."], "foot-and-mouth disease": ["A highly contagious and sometimes fatal viral disease of cattle and pigs."], "hoof-and-mouth disease": ["A highly contagious and sometimes fatal viral disease of cattle and pigs."], "FMD": ["A highly contagious and sometimes fatal viral disease of cattle and pigs."], "maturation": ["The process after which a decision, a project, an idea or other, is fully developed and can be brought to fruition.", "The process of an individual organism growing organically."], "pomegranate": ["The red, round fruit of the pomegranate tree, having many red seeds with a tangy flavor."], "crenelated": ["Referred to walls, fortifications, towers, etc.: that is equipped with masonry placed at regular intervals for the purpose of defense or decoration."], "thrust": ["To impose urgently, importunately, or inexorably.", "The act of applying force to propel something.", "A strong blow with a knife or other sharp pointed instrument.", "Verbal criticism.", "The force used in pushing.", "To push forcefully.", "To press or force."], "monasticism": ["A religious way of life in which one renounces worldly pursuits to devote oneself fully to spiritual work."], "admonishment": ["The act of putting on guard from dangers and errors in an authoritative manner."], "grave monument": ["Architecture or sculpture to adorn a tomb."], "pounce": ["To apply an art technique used for transferring an image from one surface to another."], "protrude": ["To extend out or project in space."], "shift": ["To change the position of something or someone.", "To move slightly."], "rip": ["To tear or be torn violently.", "An opening made forcibly as by pulling apart."], "vivisection": ["Dissection on a living animal, as a scientific experiment."], "sleep in": ["To fail to wake up at the intended time."], "oversleep": ["To fail to wake up at the intended time."], "subordination": ["The state of being subordinate to something or someone."], "oblique": ["Neither perpendicular nor parallel.", "Not straightforward.", "Not expressed directly, by opposition to the accepted or proper way."], "superstition": ["A false, irrational belief arising from ignorance or fear."], "stonecutter": ["Someone who cuts or carves stone."], "scene": ["The structure on which a spectacle or play is exhibited.", "To exhibit as a scene.", "An element of fiction writing."], "undulated": ["Having a wavelike or rippled form, surface, edge, etc."], "matte": ["Not bright, not shiny."], "operate": ["To direct or control (e.g. projects, businesses, etc.).", "To handle and cause to function.", "To perform surgery on."], "tortuosity": ["A property of curve having many twists or turns."], "art of goldsmithing": ["The art of working with gold and other precious metals."], "adorn": ["To make more attractive by adding ornament, colour, etc.", "To be beautiful to look at."], "taking place": ["The occurrence and development of an event."], "supporting formwork": ["Structure that has the function of supporting most of the weight (of a building, of a machinery etc.)."], "pavilion": ["The visible part of the ear that resides outside of the head"], "command": ["To look down on.", "That which is enjoined or ordered to one or several persons by a superior authority."], "tablet": ["A flat mobile computer, larger than a mobile phone, with a touch screen for accessing multimedia applications.", "A pill; a small, easily swallowed portion of a substance."], "Papar": ["A language of Malaysia (Sabah)."], "tight": ["Pulled, striving towards something.", "Manifesting, exercising, or favoring rigor.", "(For clothes) Fitting very closely to the body, sometimes in an uncomfortable manner."], "testify": ["To provide evidence for."], "Darmiya": ["A language of India and Nepal."], "Dolpo": ["A Tibetan language spoken by the Dolpo people in the Himalayan range of Dhaulagiri near the Tibetan border, Nepal."], "Rungus": ["A language of Malaysia (Sabah)."], "C'lela": ["A language of Nigeria."], "Darling": ["A language of Australia."], "West Damar": ["A language of Indonesia (Maluku)."], "Daro-Matu": ["A language of Malaysia (Sarawak)."], "Drents": ["A language of the Netherlands."], "Rukai": ["A language of Taiwan."], "Darwazi": ["A dialect of Persan spoken in the Darwaz town of northern Afghanistan."], "Baiji": ["(Lipotes vexillifer) A freshwater dolphin found only in the Yangtze River in China which is probably extinct since circa 2006."], "Chinese River Dolphin": ["(Lipotes vexillifer) A freshwater dolphin found only in the Yangtze River in China which is probably extinct since circa 2006."], "Yangtze River Dolphin": ["(Lipotes vexillifer) A freshwater dolphin found only in the Yangtze River in China which is probably extinct since circa 2006."], "Whitefin Dolphin": ["(Lipotes vexillifer) A freshwater dolphin found only in the Yangtze River in China which is probably extinct since circa 2006."], "Yangtze Dolphin": ["(Lipotes vexillifer) A freshwater dolphin found only in the Yangtze River in China which is probably extinct since circa 2006."], "Pai-chi": ["(Lipotes vexillifer) A freshwater dolphin found only in the Yangtze River in China which is probably extinct since circa 2006."], "so much": ["A great degree or amount of.", "In such a high number or quantity."], "Danish Sign Language": ["A language of Denmark."], "Dusner": ["A language of Indonesia (Papua)."], "terracotta": ["A hard red-brown unglazed earthenware, used for pottery and building construction."], "terra cotta": ["A hard red-brown unglazed earthenware, used for pottery and building construction."], "complacent": ["Contented to a fault with oneself or one's actions.", "Eager to please."], "smug": ["Contented to a fault with oneself or one's actions."], "self-satisfied": ["Contented to a fault with oneself or one's actions."], "South Korean": ["Of or related to South Korea.", "A person originating from or a citizen of South Korea."], "North Korean": ["Of or related to North Korea.", "A person originating from or a citizen of North Korea."], "maroon": ["To leave stranded or isolated with little hope of rescue.", "An exploding firework used as a warning signal."], "trapezoidal": ["Whose shape resembles a trapezoid."], "Labuk-Kinabatangan Kadazan": ["A language of Malaysia (Sabah)."], "Tene Kan Dogon": ["A language of Mali."], "Tomo Kan Dogon": ["A language of Mali and Burkina Faso."], "Central Dusun": ["A language of Malaysia (Sabah)."], "Lotud": ["A language of Malaysia (Sabah)."], "Toro So Dogon": ["A language of Mali."], "Toro Tegu Dogon": ["A language of Mali."], "blass": ["Referred to a work of art and similar: poorly endowed with expressive power and low value."], "papacy": ["Period of time during which a certain pope is in office."], "incline": ["At an angle relative to a level plane or to another plane of reference.", "To bend or move (something) out of a given plane or direction, often the horizontal or vertical.", "To be at an angle; to move downwards."], "putz": ["The male sexual organ for copulation and urination; the tubular portion of the male genitalia (excluding the scrotum).", "A person with poor judgment or little intelligence."], "suburban": ["Relating to or characteristic of or situated in suburbs."], "perpendicularly": ["In a perpendicular way."], "tripartition": ["A division into three parts."], "Duala": ["A language of Cameroon."], "Duna": ["A language of Papua New Guinea."], "Hun-Saare": ["A language of Nigeria."], "Umiray Dumaget Agta": ["A language of Philippines."], "Dumbea": ["A language of New Caledonia."], "Duruma": ["A language of Kenya."], "Dumun": ["A language of Papua New Guinea."], "Dhuwal": ["An Australian Aboriginal language of the Yolngu group spoken in the Northern Territory."], "pine": ["Evergreen coniferous tree of the genus Pinus.", "Wood of the pine tree."], "Duduela": ["A language of Papua New Guinea."], "Alabat Island Agta": ["A language of the Philippines."], "Dusun Deyah": ["A language of Indonesia (Kalimantan)."], "Dupaninan Agta": ["A language of the Philippines."], "Duano'": ["A language of Malaysia (Peninsular)."], "Dusun Malang": ["A language of Indonesia (Kalimantan)."], "Dii": ["A language of Cameroon."], "Dumi": ["A language of Nepal."], "Drung": ["A language of China."], "Duvle": ["A language of Indonesia (Papua)."], "Dusun Witu": ["A language of Indonesia (Kalimantan)."], "Duungooma": ["A language of Mali."], "Dicamay Agta": ["An extinct language of Philippines."], "Duli": ["An extinct language of Cameroon."], "meat loaf": ["Roast dish from hash mixed with spices, white bread and egg."], "meatloaf": ["Roast dish from hash mixed with spices, white bread and egg."], "Duau": ["A language of Papua New Guinea."], "Dutton World Speedwords": ["A language intended to be an international auxiliary language that can also be used as a universal shorthand system."], "Dawawa": ["A language of Papua New Guinea."], "Western honey bee": ["A stinging, social, domesticated insect (Apis mellifera) kept by humans for the creation of beeswax and honey."], "European honey bee": ["A stinging, social, domesticated insect (Apis mellifera) kept by humans for the creation of beeswax and honey."], "hominid": ["Any living or extinct member of the family Hominidae characterized by superior intelligence, articulate speech, and erect carriage.", "Any primate of the family Hominidae, consisting of Homo sapiens, his ancestors and the apes."], "Dyan": ["A language of Burkina Faso."], "Dyaberdyaber": ["A language of Australia."], "Dyugun": ["A language of Australia."], "Villa Viciosa Agta": ["An extinct language of the Philippines."], "Djimini Senoufo": ["A language of the C\u00f4te d'Ivoire."], "Land Dayak": ["A language of Indonesia (Kalimantan)."], "Dyangadi": ["A language of Australia."], "Jola-Fonyi": ["A language of Senegal, Gambia and Guinea-Bissau."], "Jula": ["A language of Burkina Faso and the C\u00f4te d'Ivoire."], "Dyaabugay": ["A language of Australia."], "Duguza": ["A language of Nigeria."], "Dazaga": ["A language of Chad and Niger."], "Dzalakha": ["A language of Bhutan."], "Dzando": ["A language of Democratic Republic of the Congo."], "plenipotentiary": ["Invested with full power regarding a particular decision, treaty or agreement."], "massive": ["Imposing in size or bulk or solidity.", "Being the same substance throughout (e.g. gold, silver, etc.).", "Imposing in scale or scope or degree or power."], "Ebughu": ["A language of Nigeria."], "Eboo Teke": ["A language of Congo and the Democratic Republic of the Congo."], "Ebri\u00e9": ["A language of C\u00f4te d'Ivoire."], "Embu": ["A language of Kenya"], "rest on": ["To have a place in relation to something else."], "Ecuadorian Sign Language": ["A sign language used in Ecuador."], "Efai": ["A language of Nigeria."], "Efik": ["A language of Nigeria."], "Ega": ["A language of the C\u00f4te d'Ivoire."], "Eggon": ["A language of Nigeria."], "archway": ["Architectural structure ajar large of which at least one side is constituted by a series of columns."], "arcade": ["Architectural structure ajar large of which at least one side is constituted by a series of columns."], "Virgin Mary": ["The mother of Jesus Christ."], "uniformity": ["Characteristic of someone or something with coherence and organic unity."], "benefit": ["The advantageous quality of being beneficial.", "To be a benefit.", "A payment made in accordance with an insurance policy or a public assistance scheme."], "efficaciously": ["In an efficacious manner.", "In an efficient or effective manner; with powerful effect."], "venerate": ["To attribute to someone or something a particular devoutness or veneration."], "hold back": ["To resist doing something.", "To hold back, as of a danger or an enemy; check the expansion or influence of."], "restrain": ["To confine by any ligature."], "check": ["An act of testing or checking.", "To see if something is correct.", "An additional proof that something that was believed (some fact or hypothesis or theory) is correct.", "To be compatible, similar or consistent; coincide in their characteristics.", "To develop behaviour by instruction and practice.", "In games such as chess, the threat to capture the king.", "To hold back, as of a danger or an enemy; check the expansion or influence of."], "abstain": ["To refrain from doing something."], "symbol": ["One or a few characters, a picture or an other concrete representation of an idea, a concept and the like."], "vigorous": ["Strong and active physically or mentally."], "brown rat": ["The common rat, Rattus norvegicus, often used as an experimental organism."], "Norway rat": ["The common rat, Rattus norvegicus, often used as an experimental organism."], "Norwegian rat": ["The common rat, Rattus norvegicus, often used as an experimental organism."], "wharf rat": ["The common rat, Rattus norvegicus, often used as an experimental organism."], "black rat": ["A common species of rat, Rattus rattus."], "house mouse": ["A mouse of the species Mus musculus."], "spleen": ["A ductless vascular gland, located in the left upper abdomen near the stomach."], "tea plantation": ["A plantation where tea grows."], "curb oneself": ["To control one's feelings in order not to do something."], "moderate oneself": ["To control one's feelings in order not to do something.", "To curb oneself."], "restrain oneself": ["To control one's feelings in order not to do something.", "To curb oneself (v.)"], "control oneself": ["To control one's feelings in order not to do something.", "curb oneself (v.)"], "repress oneself": ["To control one's feelings in order not to do something.", "To curb oneself."], "refrain oneself": ["To control one's feelings in order not to do something.", "To curb oneself or resist.", "curb oneself (v.)"], "abstain oneself": ["To control one's feelings in order not to do something."], "Ehueun": ["A language of Nigeria."], "Eipomek": ["A language of Indonesia (Papua)."], "Eitiep": ["A language of Papua New Guinea."], "Askopan": ["A language of Papua New Guinea."], "Ejamat": ["A language of Guinea-Bissau and Senegal."], "cadmium sulfide": ["Compound of cadmium and sulfur (CdS)"], "cadmium sulfite": ["Cadmium salt of the sulfurous acid (CdSO3)."], "flux": ["The amount of particles, mass, energy, etc., that are moving through a specific area per timespan.", "To move as a fluid from one position to another (e.g. of people).", "To mix together different elements."], "homograde": ["(Statistics) Concerned with qualitative differences."], "metamorphosis": ["A change from one form to another."], "heterograde": ["(Statistics) Concerned with quantitative differences."], "tibia": ["The larger and stronger of the two bones below the knee of the leg of a biped or hind limb of quadruped."], "shin bone": ["The larger and stronger of the two bones below the knee of the leg of a biped or hind limb of quadruped."], "hip": ["The outward-projecting parts of the pelvis and top of the femur and the overlying tissue."], "visual": ["Pertaining to the sense of sight."], "vivaciously": ["With vivacity and vigour.", "With vivacity and roughness."], "contradictory": ["That which is not coherent, or doesn't follow logical order."], "Ekajuk": ["A language of Nigeria."], "Ekit": ["A language of Nigeria."], "Ekari": ["A language of Indonesia (Papua)."], "Eki": ["A language of Nigeria."], "Elip": ["A language of Cameroon."], "Koti": ["A language of Mozambique."], "Ekpeye": ["A language of Nigeria."], "Yace": ["A language of Nigeria."], "Eastern Kayah": ["A language of Myanmar and Thailand."], "Elepi": ["A language of Papua New Guinea."], "Elkei": ["A language of Papua New Guinea."], "Eleme": ["A language of Nigeria."], "Elpaputih": ["A language of Indonesia (Maluku)."], "Elu": ["A language of Papua New Guinea."], "Emai-Iuleha-Ora": ["A language of Nigeria."], "Embaloh": ["A language of Indonesia (Kalimantan)."], "Emerillon": ["A language of French Guiana."], "Eastern Meohang": ["A language of Nepal."], "convent": ["Place of residence of a religious community.", "A convent for women."], "Mussau-Emira": ["A language of Papua New Guinea."], "Eastern Maninkakan": ["A language of Guinea and Sierra Leone"], "Eman": ["A language of Cameroon."], "Emok": ["An extinct language of Paraguay."], "Northern Ember\u00e1": ["A language of Panama and Colombia."], "Pacific Gulf Yupik": ["A language of the USA."], "Emplawas": ["A language of Indonesia (Maluku)."], "bladder": ["A hollow muscular balloon-shaped organ that stores urine until it is excreted from the body."], "cornice": ["The topmost projecting architectural element of a building, originally used as an ornament or as a means of directing rainwater away from the building's walls."], "custom": ["A pattern of behavior inherited or acquired through frequent repetition."], "ridge": ["Elevated zone of a mountain range, that frequently coincides with the watershed."], "cradle": ["Place of origin and development."], "urinary bladder": ["A hollow muscular balloon-shaped organ that stores urine until it is excreted from the body."], "Apali": ["A language of Papua New Guinea."], "curvilinear": ["Having the form of a curved line."], "truncated cone": ["Having the form of a cone frustum."], "doctoress": ["A female person who has completed a study in mainstream medicine, and and whose profession is to diagnose and cure diseases in patients."], "chimpanzee": ["A great ape of the genus Pan, native to Africa."], "diadromous": ["(aquatic animals:) traveling between fresh and salt water"], "catadromous": ["(Aquatic animal) living in fresh water mostly and traveling into the sea, particularly for breeding."], "anadromous": ["(Aquatic animals:) living in the sea mostly and traveling into fresh water, particularly for breeding"], "ununtrium": ["The temporary name for a synthetic superheavy element in the periodic table with symbol Uut and atomic number 113."], "ununquadium": ["The temporary name for a synthetic superheavy element in the periodic table with symbol Uuq and atomic number 114."], "ununpentium": ["The temporary name for a synthetic superheavy element in the periodic table with symbol Uup and atomic number 115."], "ununhexium": ["The temporary name for a synthetic superheavy element in the periodic table with symbol Uuh and atomic number 116."], "ununseptium": ["The temporary name for a synthetic superheavy element in the periodic table with symbol Uus and atomic number 117."], "Ende": ["A language of Indonesia (Nusa Tenggara)."], "Forest Enets": ["A language of Russia (Asia)."], "Tundra Enets": ["A language of Russia (Asia)"], "Enim": ["A language of Indonesia (Sumatra)."], "Engenni": ["A language of Nigeria."], "Enggano": ["A language of Indonesia (Sumatra)."], "Enga": ["A language of Papua New Guinea."], "Emumu": ["A language of Indonesia (Papua)."], "Enwan": ["A language of Nigeria.", "A language of Nigeria."], "wheat": ["Plant belonging to genus Triticum and to family Poaceae (also known as Gramineae)."], "Epie": ["A language of Nigeria."], "Eruwa": ["A language of Nigeria."], "Ogea": ["A language of Papua New Guinea."], "South Efate": ["A language of Vanuatu."], "Horpa": ["A language of China."], "Erre": ["A language of Australia."], "Eritai": ["A language of Indonesia (Papua)."], "Erokwanas": ["A language of Indonesia (Papua)."], "Ese Ejja": ["A language of Bolivia and Peru."], "Eshtehardi": ["A Tati language spoken in Eshtehard, Iran."], "North Alaskan Inupiatun": ["A language of the USA and Canada."], "Northwest Alaska Inupiatun": ["A language of the USA."], "Egypt Sign Language": ["Sign language used in Egypt."], "Esuma": ["An extinct language of C\u00f4te d'Ivoire."], "Salvadoran Sign Language": ["A sign language used in El Salvador."], "Estonian Sign Language": ["A sign language used in Estonia."], "Esselen": ["An extinct language of USA."], "Central Siberian Yupik": ["A language of USA and Russia."], "Central Yupik": ["A language of USA"], "Etebi": ["A language of Nigeria."], "Ethiopian Sign Language": ["A language of Ethiopia."], "Edolo": ["A language of Papua New Guinea."], "Yekhee": ["A language of Nigeria."], "Ejagham": ["A language of Nigeria and Cameroon."], "Eten": ["A language of Nigeria."], "Semimi": ["A language of Indonesia (Papua)."], "Europanto": ["An artificial language which as a joke was invented by the journalist and interpreter at the European Union headquarter, Diego Marani in Brussels, Belgium, in the year 1996. It biolds a ot on English, but also to a large extent incorporates worda and other elements from each of the official languages of the EU. Specific choices are basically left pretty freely to the user under the premise that the goal is understandability for the actual audience."], "Uvbie": ["A language of Nigeria."], "Ewondo": ["A language of Cameroon."], "Eyak": ["An extinct Na-Den\u00e9 language that was spoken by the Eyak people, indigenous to southcentral Alaska, near the mouth of the Copper River."], "Uzekwe": ["A language of Nigeria."], "Degexit'an": ["A language of the USA."], "Hutterite German": ["A language of Canada and the USA."], "Gwich'in": ["A language of Canada and the USA."], "Northern Haida": ["A language of Canada and the USA."], "Halkomelem": ["A language of Canada and the USA."], "Han": ["A language of USA and Canada."], "Dawson": ["A language of USA and Canada."], "Havasupai-Walapai-Yavapai": ["A native American language of the Yuman family spoken by the Havasupai, Walapai and Yavapai people in western Arizona, USA."], "Upland Yuman": ["A native American language of the Yuman family spoken by the Havasupai, Walapai and Yavapai people in western Arizona, USA."], "Hawai'i Creole English": ["A language of the USA."], "Hawaiian": ["Austronesian language which developed in the island of Hawai'i, and is, along with English, an official language of the State of Hawaii, in the United States of America."], "Hidatsa": ["A language of the USA"], "Ho-Chunk": ["A language of the USA."], "Holikachuk": ["An Athabaskan language formerly spoken at the village of Holikachuk on the Innoko River in central Alaska."], "Hopi": ["A Uto-Aztecan language spoken by the Hopi people in northeastern Arizona, USA."], "Hupa": ["A language of the USA."], "Hoopa": ["A language of the USA."], "Jemez": ["A language of the USA."], "Kalapuya": ["A language of the USA."], "Kalispel-Pend D'oreille": ["A Salish language spoken in northwestern USA."], "Kalispel": ["A Salish language spoken in northwestern USA."], "Kansa": ["A language of the USA"], "Karok": ["A language of the USA."], "Kashaya": ["A language of the USA."], "Kawaiisu": ["A language of the USA."], "Eastern Keres": ["A language of the USA."], "Western Keres": ["A language of the USA."], "Kickapoo": ["A language of the USA and Mexico."], "Kiowa": ["A language of the USA."], "Klamath-Modoc": ["A language of the USA"], "Koyukon": ["A language of the USA."], "Upper Kuskokwim": ["A language of the USA."], "Mcgrath Ingalik": ["A language of the USA."], "Kutenai": ["A language of Canada and the USA"], "Kootenai": ["A language of Canada and the USA"], "Ktunaxa": ["A language of Canada and the USA"], "Lakota": ["A language of the USA and Canada."], "Teton": ["A language of the USA and Canada."], "Lakhota": ["A language of the USA and Canada."], "Luise\u00f1o": ["A language of the USA."], "Lushootseed": ["A language of the USA."], "Northeast Maidu": ["A language of the USA."], "Northwest Maidu": ["A language of the USA."], "Malecite-Passamaquoddy": ["A language of Canada and the USA."], "Mandan": ["A language of the USA."], "Maricopa": ["A Native American language spoken in Arizona, USA."], "Menominee": ["A language of the USA."], "Mesquakie": ["A language of the USA."], "Micmac": ["An Eastern Algonquian language spoken by the Mi'kmaq people in Canada and the United States."], "Mikasuki": ["A language of the USA."], "Hawai'i Pidgin Sign Language": ["A sign language used in Hawaii."], "Lake Miwok": ["A language of the USA"], "Northern Sierra Miwok": ["An Utian language spoken by the Northern Miwok people in the the upper watersheds of the Mokelumne River and the Calaveras River, California, USA."], "Plains Miwok": ["A language of the USA."], "Southern Sierra Miwok": ["A Utian language spoken by the Southern Sierra Miwok, a Native American people in Northern California."], "Meewoc": ["A Utian language spoken by the Southern Sierra Miwok, a Native American people in Northern California."], "Mohave": ["A language of the USA."], "Mohawk": ["A language of Canada and the USA."], "terminator": ["Line between the illuminated and the dark side of a celestial body."], "Mono": ["A language of the USA.", "A free and open source project led by Novell (formerly by Ximian) to create an Ecma standard compliant, .NET-compatible set of tools, including among others a C# compiler and a Common Language Runtime. Mono can be run on Linux, BSD, Unix, Mac OS X, Solaris and Windows operating systems."], "Muskogee": ["A language of the USA."], "Nez Perce": ["A language of the USA."], "Nisenan": ["A language of the USA."], "Neeshenam": ["A language of the USA."], "Okanagan": ["A language of the Interior Salish group of Salishan languages spoken by the Okanagan people of the Southern Interior region of the Canadian province of British Columbia and North Central Washington State."], "Omaha-Ponca": ["A language of the USA."], "Oneida": ["A Northern Iroquoian language spoken primarily by the Oneida people in the U.S. states of New York and Wisconsin, and the Canadian province of Ontario."], "Onondaga": ["A Northern Iroquoian language spoken by the Onondaga people, in the United States and Canada, primarily on the reservation in central New York state, and near Brantford, Ontario."], "Osage": ["A language of the USA."], "Ottawa": ["A dialect of the Ojibwe language, spoken by the Ottawa people in southern Ontario in Canada, and northern Michigan in the United States.", "The capital of Canada"], "Northern Paiute": ["A language of the USA."], "contested": ["That encounters obstacles and impediments."], "composed": ["Made of certain elements.", "(For a person) Serenely self-possessed and free from agitation especially in times of stress."], "Panamint": ["A language of the USA."], "Pawnee": ["A language of USA."], "Plains Indian Sign Language": ["A sign language formerly used as an auxiliary international language between Native Americans of the Great Plains of the United States of America and Canada."], "Central Pomo": ["A language of the USA."], "crusader": ["A Christian who participated in the crusades."], "apex": ["Highest and most elevated point."], "short-sleeved": ["Having short sleeves."], "at the latest": ["Designates the latest possible date on which an event may or must occur."], "not later than": ["Designates the latest possible date on which an event may or must occur."], "Southeastern Pomo": ["A language of the USA."], "Southern Pomo": ["A language of the USA."], "Potawatomi": ["A Central Algonquian language spoken by the Potawatomi people around the Great Lakes in Michigan and Wisconsin, as well as in Kansas in the United States, and in southern Ontario in Canada."], "Quapaw": ["A language of the USA."], "Quechan": ["A language of the USA."], "Quileute": ["A Chimakuan language spoken on the western coast of the Olympic peninsula in Washington state, USA."], "Southern Puget Sound Salish": ["A language of the USA."], "Straits Salish": ["A language of Canada and the USA."], "Sea Island Creole English": ["A language of the USA.", "A creole language based on English and several African languages which is spoken by the Gullah people in the coastal region of the eastern USA."], "Seneca": ["An Iroquoian language of the USA."], "Serrano": ["A language of the USA."], "Shawnee": ["A language of the USA."], "Shoshoni": ["A language of the USA."], "Skagit": ["A language of the USA."], "Snohomish": ["A language of the USA."], "Spokane": ["A language of the USA."], "Tanacross": ["A language of the USA."], "Tanaina": ["An Athabaskan language spoken in the region surrounding Cook Inlet in Alaska, USA."], "Lower Tanana": ["A language of the USA."], "Upper Tanana": ["A language of the USA and Canada."], "Tenino": ["A language of the USA."], "Tewa": ["A language of the USA.", "A language of Indonesia (Nusa Tenggara)."], "Northern Tiwa": ["A language of the USA."], "Southern Tiwa": ["A language of the USA."], "Tlingit": ["A Na-Den\u00e9 language spoken by the Tlingit people of Southeast Alaska and Western Canada."], "Tohono O'odham": ["A language of the USA."], "Tolowa": ["A language of the USA."], "Tsimshian": ["A Tsimshianic language spoken by the Tsimshian nation in northwestern British Columbia and southeastern Alaska."], "T\u00fcbatulabal": ["A language of the USA."], "Tuscarora": ["A Northern Iroquoian language spoken by the Tuscarora people in southern Ontario, Canada, and northwestern New York around Niagara Falls, in the United States."], "Tututni": ["A language of the USA."], "Umatilla": ["A language of the USA."], "Ute-Southern Paiute": ["A language of the USA."], "Walla Walla": ["A language of the USA,"], "Northeast Sahaptin": ["A language of the USA,"], "Wasco-Wishram": ["A language of the USA."], "Washo": ["A language of the USA."], "Wichita": ["An indigenous people of the USA who formed a loose confederation on the Southern Plains of several tribes.", "A language of the USA."], "Wintu": ["A language of the USA."], "Yakima": ["A language of the USA."], "Yaqui": ["A language of Mexico and the USA"], "Yokuts": ["A language of the USA."], "Yuchi": ["A language of the USA."], "Yurok": ["A language of the USA."], "Zuni": ["A language of the Zuni people, indigenous to western New Mexico and eastern Arizona in the United States.", "A Native American tribe, one of the Pueblo peoples, most of whom live in the Pueblo of Zuni on the Zuni River, a tributary of the Little Colorado River, in western New Mexico, United States."], "Lazepe": ["A South Caucasian ethnogaphic group in Turkey and Georgia."], "Jud\u00e6o-Georgian": ["A Jewish South Caucasian language presently spoken in Israel, and to a lesser extent in Georgia. The only South Caucasian Jewish language."], "Gruzinic": ["A Jewish South Caucasian language presently spoken in Israel, and to a lesser extent in Georgia. The only South Caucasian Jewish language."], "Kivruli": ["A Jewish South Caucasian language presently spoken in Israel, and to a lesser extent in Georgia. The only South Caucasian Jewish language."], "Megrelian": ["A South Caucasian language spoken in Georgia."], "Jud\u00e6o-Spanish": ["A Jewish Romance language spoken in Israel and Turkey, developed from Spanish."], "not concrete": ["Art that looks as if it contains little or no recognizable or realistic forms from the physical world."], "nonconcrete": ["Art that looks as if it contains little or no recognizable or realistic forms from the physical world."], "inconcrete": ["Art that looks as if it contains little or no recognizable or realistic forms from the physical world."], "cheesegrater": ["A kitchen implement used to cut food products (such as cheese and carrots) into small strips."], "Thai Sign Language": ["A language of Thailand."], "revert": ["To go back to a previous state."], "neurology": ["The branch of medicine that deals with the nervous system and its disorders."], "tarantella": ["Traditional dance in Campania, Italy."], "ethnic": ["Of or related to a group of people having common racial, national, religious, or cultural origins."], "revaluate": ["To increase the value of."], "recuperate": ["To get something back.", "To return to health and strength after illness."], "physiotherapy": ["Therapy that uses physical techniques such as massage and exercise."], "physical therapy": ["Therapy that uses physical techniques such as massage and exercise."], "Fasu": ["A language of Papua New Guinea."], "Wagi": ["A language of Papua New Guinea."], "Fagani": ["A language of the Solomon Islands."], "Finongan": ["A language of Papua New Guinea."], "Fali of Baissa": ["A language of Nigeria."], "Faiwol": ["A language of Papua New Guinea."], "Faita": ["A language of Papua New Guinea."], "Fang": ["A language of Cameroon.", "A language of Equatorial Guinea, Cameroon, Congo and Gabon"], "South Fali": ["A language of Cameroon."], "Fam": ["A language of Nigeria."], "Palor": ["A language of Senegal."], "Fataleka": ["A language of the Solomon Islands."], "lemon squeezer": ["Kitchen utensil for extracting juice from citrus fruit, such as a lemon or orange."], "bracelet": ["Piece of jewellery worn around the wrist."], "wristlet": ["Piece of jewellery worn around the wrist."], "undress": ["To take off all of one's clothes."], "Duchenne muscular dystrophy": ["An eventually fatal disorder that is characterized by rapidly progressive muscle weakness and atrophy of muscle tissue."], "Fayu": ["A language of Indonesia (Papua)."], "Southwestern Fars": ["A language of Iran."], "Northwestern Fars": ["A language of Iran."], "Quebec Sign Language": ["A language of Canada."], "sloth": ["A herbivorous, arboreal South American mammal of the families Megalonychidae and Bradypodidae, noted for its slowness and inactivity."], "homeostasis": ["That property of either an open system or a closed system, especially a living organism, which regulates its internal environment so as to maintain a stable, constant condition."], "Feroge": ["A language of Sudan."], "Fijian": ["A language of Fiji"], "Fipa": ["A Bantu language of Tanzania spoken by the Fipa people, who live on the Ufipa plateau in the Rukwa Region of South West Tanzania between Lake Tanganyika and Lake Rukwa."], "Firan": ["A language of Nigeria."], "Tornedalen Finnish": ["A language of Sweden and Finland"], "Fiwaga": ["A language of Papua New Guinea."], "Izere": ["A language of Nigeria."], "Kven Finnish": ["A language of Norway."], "Foau": ["A language of Indonesia (Papua)."], "North Fali": ["A language of Nigeria."], "Falam Chin": ["A Kukish language of Myanmar, Bangladesh and India."], "Flinders Island": ["A language of Australia."], "Fuliiru": ["A language of the Democratic Republic of the Congo."], "Tsotsitaal": ["A language of South Africa."], "Fe'fe'": ["A language of Cameroon."], "Fanagalo": ["A language of South Africa, Zambia and Zimbabwe."], "Fania": ["A language of Chad."], "Foodo": ["A Guang language spoken in and around the town of S\u00e8m\u00e8r\u00e8 in the north of Benin."], "Foi": ["A language of Papua New Guinea."], "Foma": ["A language of the Democratic Republic of the Congo."], "Fon": ["A Gbe language spoken mainly in Benin by the Fon people."], "Fore": ["A language of Papua New Guinea."], "Fernando Po Creole English": ["A language of Equatorial Guinea."], "Fas": ["A language of Papua New Guinea"], "Fordata": ["A language of Indonesia (Maluku)."], "ungentlemanly": ["Not adhering to the high moral standards expected of a gentleman."], "impolite": ["Not adhering to the high moral standards expected of a gentleman.", "Bad mannered.", "Exhibiting no courtesy."], "unchivalrous": ["Not adhering to the high moral standards expected of a gentleman."], "unbeknownst": ["Happening or existing without the knowledge of a specified party."], "pretzel": ["A toasted bread or cracker usually in the shape of a loose knot."], "drummer": ["A musician who plays the drums."], "Pirah\u00e3": ["Hunter-gatherer tribe living in the rain forest of northwestern Brazil, mainly on the banks of the Maici River.", "Language spoken by the Pirah\u00e3 tribe in Brazil."], "gallant": ["Very polite with women."], "governing body": ["An assembly of persons that is legally constituted to oversee the operation of an organization."], "ethnic music": ["The traditional and typically anonymous music that is an expression of the life of people in a community."], "traditional music": ["The traditional and typically anonymous music that is an expression of the life of people in a community."], "widow": ["A woman whose spouse has died.", "To make a widow or a widower of."], "septic shock": ["A life-threatening condition caused by infection and sepsis, often after surgery or trauma."], "hypotension": ["An abnormally low blood pressure."], "conglomerate": ["A corporation formed by the combination of several smaller corporations whose activities are unrelated to the corporation's primary activity."], "hypertension": ["Persistently high arterial blood pressure."], "ice hockey": ["A form of hockey played on an ice rink with a puck rather than ball."], "gland": ["Any of various organs that synthesize substances needed by the body and release it through ducts or directly into the bloodstream."], "capillary": ["A minute vessel that connects the arterioles and venules."], "Cushing's syndrome": ["An endocrine disorder caused by high levels of cortisol in the blood."], "hypercortisolism": ["An endocrine disorder caused by high levels of cortisol in the blood."], "adrenal gland": ["The triangle-shaped endocrine glands that sit on top of the kidneys."], "suprarenal gland": ["The triangle-shaped endocrine glands that sit on top of the kidneys."], "World Health Organization": ["A specialized agency of the United Nations designed as a coordinating authority on international health issues."], "sclerotherapy": ["A procedure used to treat blood vessels or blood vessel malformations (vascular malformations) and also those of the lymphatic system."], "syringe": ["A device used to inject fluid into or withdraw fluid from the body.", "To spray liquid into (a body part) with a syringe."], "intravenous": ["Into a vein."], "Achomawi": ["A language of the Palaihnihan family spoken by the Pit River people in northeastern California, USA."], "Ahtna": ["A language of the USA."], "Atna": ["A language of the USA."], "Ahtna-khotana": ["A language of the USA."], "Copper River": ["A language of the USA."], "even-toed ungulate": ["Ungulate mammal from the order Artiodactyla having an even number of toe on each leg."], "revolution": ["A single complete turn.", "A sudden, vast change in a situation, a discipline, or the way of thinking and behaving."], "calcite": ["A widely distributed crystalline form of calcium carbonate, CaCO3, found as limestone, chalk and marble"], "Pirah\u00e1": ["Language spoken by the Pirah\u00e3 tribe in Brazil."], "Pirah\u00e1n": ["Language spoken by the Pirah\u00e3 tribe in Brazil."], "nyctalopia": ["A condition making it difficult or impossible to see in relatively low light."], "night blindness": ["A condition making it difficult or impossible to see in relatively low light."], "landmark": ["A notable building or place with historical, cultural, or geographical significance."], "health insurance": ["Insurance whereby the insurer pays the medical costs of the insured if the insured becomes sick due to covered causes, or due to accidents."], "lesion": ["An area of abnormal tissue change."], "charity": ["Social welfare organisation with programs designed to assist individuals in times of need."], "charitable organization": ["Social welfare organisation with programs designed to assist individuals in times of need."], "multidrug resistance": ["The ability of pathologic cells to withstand chemicals that are designed to aid in the eradication of such cells."], "Forak": ["A language of Papua New Guinea."], "Northern Frisian": ["A minority language of Germany spoken by about 10,000 people on the western coast of Schleswig-Holstein."], "Eastern Frisian": ["A language of Germany."], "Fortsenal": ["A language of Vanuatu."], "Western Frisian": ["A West Germanic language spoken in Friesland in the northwestern Netherlands."], "Finnish Sign Language": ["A language of Finland."], "French Sign Language": ["French Sign Language and Togo."], "Finnish-Swedish Sign Language": ["A language of Finland."], "Adamawa Fulfulde": ["A language of Cameroon, Chad, Nigeria and Sudan."], "East Futuna": ["A language of Wallis and Futuna and New Caledonia."], "Borgu Fulfulde": ["A language of Benin, Nigeria and Togo."], "Pular": ["A language of Guinea, Mali, Senegal and Sierra Leone."], "Northeastern Burkina Faso Fulfulde": ["A language of Niger, Benin and Burkina Faso."], "Bagirmi Fulfulde": ["A language of Chad and the Central African Republic."], "Fum": ["A language of Nigeria."], "Fulni\u00f4": ["An isolated language of Brazil, and the only indigenous language remaining in the northeastern part of that country."], "Futuna-Aniwa": ["A language of Vanuatu."], "Kano-Katsina-Bororro Fulfulde": ["A language of Nigeria, Cameroon and Chad"], "Fuyug": ["A language of Papua New Guinea."], "Fw\u00e2i": ["A language of New Caledonia."], "Fwe": ["A Bantu language spoken by 10,000 people along the Okavango River in Namibia and in the Western Province in Zambia."], "trauma center": ["Specialized hospital facility which provides diagnostic and therapeutic services for trauma patients."], "spoil": ["To hinder or prevent (the efforts, plans, or desires) of.", "Of food, to become bad, sour or rancid; to decay."], "pamper": ["To treat with excessive indulgence.", "To treat with excessive indulgence."], "starfish": ["(Asteroidea) Animals belonging to the echinoderms characterized by five arms extending from a central disk."], "sepia": ["A rich brown pigment produced from the ink of cuttlefish.", "Synthetic pigment that corresponds to the color of the ink of cuttlefish."], "Patello Femoral Pain Syndrome": ["A degenerative condition of the cartilage surface of the back of the knee cap, or patella."], "runner's knee": ["A degenerative condition of the cartilage surface of the back of the knee cap, or patella."], "chondromalacia patellae": ["A degenerative condition of the cartilage surface of the back of the knee cap, or patella."], "CMP": ["A degenerative condition of the cartilage surface of the back of the knee cap, or patella."], "Runner's Knee": ["A degenerative condition of the cartilage surface of the back of the knee cap, or patella."], "Ga": ["A language of Ghana."], "Gabri": ["A language of Chad."], "Gaddang": ["A language of the Philippines."], "Guarequena": ["A language of Venezuela and Brazil."], "Gende": ["A language of Papua New Guinea."], "Alekano": ["A language of Papua New Guinea."], "first language": ["The first language learnt; the language one grew up with."], "great cormorant": ["Medium sized, black water bird from the family of the cormorants (Phalacrocoracidae), scientific name: Phalacrocorax carbo"], "Blissymbols": ["An artificial language that has is a written language only.", "A pictotraphic writing system using a set of symbols created by Charles Kasiel Bliss in the 1940s as a written language."], "death mask": ["A plaster or wax cast made of a person's face following death."], "Rett syndrome": ["A progressive disorder affecting the cerebral cortex of females; present from birth; manifested by autistic behavior, ataxia, dementia, seizures, loss of purposeful usefulness of the hands, cerebral atrophy, and mild hyperammonemia."], "Borei": ["A language of Papua New Guinea."], "Gadsup": ["A language of Papua New Guinea."], "Gamkonora": ["A language of Indonesia (Maluku)."], "Galoli": ["A language of East Timor."], "Kandawo": ["A language of Papua New Guinea."], "Gants": ["A language of Papua New Guinea."], "Gal": ["A language of Papua New Guinea."], "Gata'": ["A language of India."], "Galeya": ["A language of Papua New Guinea."], "Kenati": ["A language of Papua New Guinea."], "Gabutamon": ["A language of Papua New Guinea."], "Nobonob": ["A language of Papua New Guinea."], "Gayo": ["A language of Indonesia (Sumatra)."], "Kaytetye": ["A language of Australia."], "Garawa": ["A language of Australia."], "Karadjeri": ["A language of Australia."], "Niksek": ["A language of Papua New Guinea."], "Gaikundi": ["A language of Papua New Guinea."], "Gbanziri": ["A Ubangian language of the Central African Republic and the Democratic Republic of the Congo."], "Defi Gbe": ["A language of Benin."], "Galela": ["A language of Indonesia (Maluku)."], "Northern Grebo": ["A language of Liberia."], "Gbaya-Bossangoa": ["A language of Central African Republic."], "Gbaya-Bozoum": ["A language of Central African Republic."], "Gbagyi": ["A language of Nigeria."], "Gbesi Gbe": ["A language of Benin."], "Gagadu": ["A language of Australia."], "Gbanu": ["A Gbaya language of the Central African Republic."], "Kinetoscope": ["A device invented by Thomas Edison to view a movie recorded using a kinetograph."], "Eastern Xwla Gbe": ["A language of Benin."], "Gbari": ["A language of Nigeria."], "Zoroastrian Dari": ["A language of Iran."], "sextant": ["A navigational device for deriving angular distances between objects so as to determine latitude and longitude."], "zygomatic bone": ["Paired bone of the human skull, situated on the lateral edge of the eye sockets."], "malar bone": ["Paired bone of the human skull, situated on the lateral edge of the eye sockets."], "cheekbone": ["Paired bone of the human skull, situated on the lateral edge of the eye sockets."], "vetiver": ["Species of grass whose roots are used in perfumery"], "disobedient": ["Not obeying"], "cirrhosis": ["Consequence of chronic liver disease characterized by replacement of liver tissue by fibrotic scar tissue as well as regenerative nodules, leading to progressive loss of liver function."], "Stone Pine": ["High, evergreen tree in the genus Pinus and in the family Pinaceae with an umbrella-shaped crown, long needles and edible seeds."], "Italian Stone Pine": ["High, evergreen tree in the genus Pinus and in the family Pinaceae with an umbrella-shaped crown, long needles and edible seeds."], "Umbrella Pine": ["High, evergreen tree in the genus Pinus and in the family Pinaceae with an umbrella-shaped crown, long needles and edible seeds."], "evergreen": ["(Of plants) Having green leaves or needles throughout the entire year."], "Ganggalida": ["A language of Australia."], "Galice": ["An extinct language of the USA."], "Grenadian Creole English": ["A language of Grenada."], "Gaina": ["A language of Papua New Guinea."], "Colonia Tovar German": ["A language of Venezuela."], "Gugu Badhun": ["A language of Australia."], "Gedaged": ["A language of Papua New Guinea."], "Ga'dang": ["A language of the Philippines."], "Gadjerawang": ["A language of Australia."], "Gundi": ["A language of Central African Republic."], "Gurdjar": ["A language of Australia."], "Laal": ["A language of Chad."], "Umanakaina": ["A language of Papua New Guinea."], "Lomonosov Ridge": ["Circa 1800 km long oceanic ridge in the Arctic Ocean."], "Mehri": ["A language of Yemen and Kuwait."], "Wipi": ["A language of Papua New Guinea."], "Kire": ["A language of Papua New Guinea"], "Gboloo Grebo": ["A language of Liberia."], "Gade": ["A language of Nigeria."], "Gengle": ["A language of Nigeria."], "Gebe": ["A language of Indonesia (Maluku)."], "cudgel": ["A short heavy club with a rounded head used as a weapon."], "club": ["A short heavy club with a rounded head used as a weapon.", "Group of persons meeting or organizing for a common hobby or interest.", "A formal association of people with similar interests."], "truncheon": ["A short heavy club with a rounded head used as a weapon."], "baton": ["A short heavy club with a rounded head used as a weapon."], "night stick": ["A short heavy club with a rounded head used as a weapon."], "Kag-Fer-Jiir-Koor-Ror-Us-Zuksun": ["A language of Nigeria."], "Geman Deng": ["A language of China."], "Geme": ["A language of Central African Republic."], "Geser-Gorom": ["A language of Indonesia (Maluku)."], "Enya": ["A language of Democratic Republic of the Congo."], "Geez": ["An extinct language of Ethiopia and Eritrea"], "Patpatar": ["A language of Papua New Guinea."], "Gafat": ["An extinct language of Ethiopia."], "Gao": ["A language of Solomon Islands."], "in vain": ["Without success, without the desired effect."], "vainly": ["Without success, without the desired effect."], "impalpable": ["Regarding abstractions, namely, concepts, ideas, thoughts etc.(Adj.; Re. Philosophy; Source: IPDF)"], "intangible": ["Regarding abstractions, namely, concepts, ideas, thoughts etc.(Adj.; Re. Philosophy; Source: IPDF)"], "untouchable": ["Regarding abstractions, namely, concepts, ideas, thoughts etc.(Adj.; Re. Philosophy; Source: IPDF)"], "Wolof": ["A language from the Atlantic branch of the Niger-Congo language family spoken in Senegal, Mauritania and the Gambia."], "Aaron": ["A brother of Moses according to the Bible."], "Gbii": ["A language of Liberia."], "Gugadj": ["A language of Australia."], "Guragone": ["An Australian Aboriginal language spoken in Arnhem Land."], "Kungarakany": ["An extinct language of Australia."], "Ganglau": ["A Rai Coast language spoken in Madang Province, Papua New Guinea."], "Eastern Gurung": ["A language of Nepal."], "Aghu Tharnggalu": ["An extinct language of Australia."], "Gogodala": ["A language of Papua New Guinea, close to the Ari language."], "ordeal": ["A primitive method of determining a person's guilt or innocence by subjecting the accused person to dangerous or painful tests believed to be under divine control; escape was usually taken as a sign of innocence.", "A severe or trying experience."], "Peloponnese": ["A large peninsula in southern Greece, forming the part of the country south of the Gulf of Corinth."], "Peloponnesus": ["A large peninsula in southern Greece, forming the part of the country south of the Gulf of Corinth."], "Mount Vesuvius": ["A volcano at the Gulf of Naples in the Southern Italian region of Campania."], "Herculaneum": ["An ancient Roman town in the Italian region of Campania at the Gulf of Naples which was destroyed during the eruption of Mount Vesuvius in 79 CE."], "leatherback sea turtle": ["(Dermochelys coriacea) A sea turtle species of the group of Dermochelyoidae, measuring up to 2 meters long whose skin is very dark blue. This is the only species of this group still existing and the largest living species of turtles."], "cold-blooded": ["(Zoology) Having a body temperature that varies according to the outside temperature.", "Without emotion or feeling.", "Without compunction or human feeling."], "Oscan": ["The language of the Osci in the Sabellic branch of the Italic language family which was spoken in the South of the Italian peninsula in ancient times."], "Osci": ["Ancient Italic people who lived in the Southern Italian region Campania."], "Southern Ghale": ["A Tibetic language spoken by the Southern Ghale people in the Gorkha District of the Gandaki Zone in Nepal."], "Northern Ghale": ["A Tibetic language spoken by the Northern Ghale people in the Gorkha District of the Gandaki Zone in central Nepal."], "Geko Karen": ["A language of Myanmar."], "Ghanongga": ["A language of the Solomon Islands."], "Guhu-Samane": ["A language of Papua New Guinea."], "Kutang Ghale": ["A Tibetic language spoken by the Kutang Ghale people in the northern Gorkha District of the Gandaki Zone in central Nepal."], "Kitja": ["A language of Australia."], "Gibanawa": ["A language of Nigeria."], "Gail": ["A language of South Africa."], "Gimi": ["A Papuan language spoken in Eastern Highlands Province, Papua New Guinea.", "An Austronesian dialect chain of West New Britain, Papua New Guinea."], "Gitxsan": ["A language of Canada."], "Gilima": ["A language of the Democratic Republic of the Congo."], "Giyug": ["A language of Australia."], "Gonja": ["A language of Ghana."], "Guya": ["A language of Papua New Guinea."], "Ndai": ["A language of Cameroon."], "Gokana": ["A language of Nigeria."], "Guinea Kpelle": ["A language of Guinea."], "Scottish Gaelic": ["A language in the Goidelic branch of Celtic languages spoken in Scotland."], "Bon Gula": ["A language of Chad"], "Gula Iro": ["A language of Chad."], "Glaro-Twabo": ["A language of Liberia."], "Gula": ["A language of Chad.", "A language of Central African Republic and Sudan."], "Gambera": ["A language of Australia."], "Gula'alaa": ["A language of the Solomon Islands."], "M\u00e1ghd\u00ec": ["An Adamawa language of Nigeria."], "Gimnime": ["A language of Cameroon."], "Gumalu": ["A language of Papua New Guinea."], "Magoma": ["A Bantu language of Tanzania."], "Kaansa": ["A language of Burkina Faso."], "Gangte": ["A language of India and Myanmar."], "lady's cloak": ["Type of warm and wide garment for women, worn over other clothing."], "shepherdess": ["Woman who tends sheep."], "concomitant": ["Following as a consequence."], "Capri": ["Italian island in the Gulf of Naples."], "Francophile": ["Having a special fondness for France, the French and French culture.", "A person having a special fondness for France, the French and French culture."], "francophobe": ["Having a strong dislike for France, the French and French culture."], "common vole": ["(Microtus arvalis) Rodent in the genus Microtus in the subfamily Arvicolinae which lives primarily in fields and meadows in Europe and some regions of Asia."], "zircon": ["Mineral in the group of silicates, with chemical formula ZrSiO4."], "Gambian Wolof": ["A language of Gambia."], "Ngangam": ["A language of Togo and Benin."], "Lere": ["A nearly extinct Kainji dialect cluster of Nigeria."], "Gooniyandi": ["A language of Australia."], "Gangulu": ["An extinct language of Australia."], "Ginuman": ["A language of Papua New Guinea."], "Gumatj": ["A language of Australia."], "Gureng Gureng": ["An extinct language of Australia."], "Guntai": ["A language of Papua New Guinea."], "Gnau": ["A language of Papua New Guinea."], "Western Bolivian Guaran\u00ed": ["A language of Bolivia."], "Ganzi": ["A language of the Central African Republic."], "Guro": ["A language of C\u00f4te d'Ivoire."], "Playero": ["A language of Colombia."], "Gorakor": ["A language of Papua New Guinea."], "Godi\u00e9": ["A language of C\u00f4te d'Ivoire."], "Gongduk": ["A Tibetic language spoken by the Gongduk people in a few isolated villages located near the Kurichu river in the Mongar District in eastern Bhutan."], "Gogo": ["A Bantu language spoken by the Gogo people of Dodoma Region in Tanzania."], "Gobasi": ["A language of Papua New Guinea."], "Gola": ["A language of Liberia and Sierra Leone."], "Gone Dau": ["A language of Fiji."], "Yeretuar": ["A language of Indonesia (Papua)"], "Gorap": ["A language of Indonesia (Maluku)."], "Gorontalo": ["A language of Indonesia (Sulawesi)."], "Gronings": ["A language of the Netherlands"], "Gobu": ["A dialect of the Banda language spoken by the Banda people in the Democratic Republic of the Congo and the Central African Republic."], "Goundo": ["A language of Chad."], "Gozarkhani": ["A language of Iran."], "17th century": ["The century which lasted from 1601-1700 in the Gregorian calendar."], "metropolitan area": ["An area of population usually with a central or core city and surrounding towns or suburbs."], "subsidiary": ["That is being added as integratory part.", "A company owned by a parent company or holding company.", "Furnishing aid.", "Functioning in a supporting capacity."], "Protestantism": ["The forms of Christian faith and practice that originated with the doctrines of the Reformation."], "textbook": ["Book used in the study of a subject that contains a systematic presentation of the principles and vocabulary of a subject."], "immune response": ["The body's integrated response to an antigen, mediated by lymphocytes"], "macrophage": ["Cell within the tissues that originates from specific white blood cells called monocytes.", "Cells within the tissues that originate from specific white blood cells called monocytes."], "psychologist": ["A practitioner in the field of psychology."], "propinquity": ["The tendency for people to work better or bond with those geographically near them."], "orifice": ["An aperture or hole that opens into a bodily cavity."], "ontogeny": ["The entire sequence of events involved in the development of an individual organism.", "The description of the origin and the development of an organism from the fertilized egg to its mature form and death."], "retirement": ["Withdrawal from one's occupation or active working life: having concluded one's working or professional career."], "Gupa-Abawa": ["A language of Nigeria."], "Taiap": ["A language of Papua New Guinea."], "Guiqiong": ["A language of China."], "Guana": ["An extinct language of Brazil.", "A language of Paraguay."], "Guruntum-Mbaaru": ["A language of Nigeria."], "Gbiri-Niragu": ["A language of Nigeria."], "Ghari": ["A language of the Solomon Islands."], "Southern Grebo": ["A language of Liberia and the C\u00f4te d'Ivoire."], "Kota Marudu Talantang": ["A language of Malaysia (Sabah)."], "Groma": ["A Tibetan language spoken by the Groma people living in southern Tibet in the Chambi Valley between Bhutan and the Indian state of Sikkim."], "Gorovu": ["A language of Papua New Guinea."], "Gresi": ["A language of Indonesia (Papua)."], "Garo": ["A language of India and Bangladesh."], "Kistane": ["A language of Ethiopia."], "Central Grebo": ["A language of Liberia."], "Gweda": ["A language of Papua New Guinea."], "Guriaso": ["A language of Papua New Guinea."], "Barclayville Grebo": ["A language of Liberia"], "Guramalum": ["A language of Papua New Guinea."], "footnote": ["A short piece of text, often numbered, placed at the bottom of a printed page, that adds a comment, citation, reference etc, to a designated part of the main text."], "ornithologist": ["A male person who studies or practices ornithology", "A female person who studies or practices ornithology", "A person who studies or practices ornithology"], "genus": ["A rank in the classification of organisms, below family and above species.", "A number measuring some aspect of the complexity of any of various manifolds or graphs."], "Aztecs": ["All the people linked by trade, custom, religion, and language to the Mexica state and the Triple Alliance."], "Gulf of Tonkin": ["The northwest arm of the South China Sea."], "orthodontics": ["Dental specialty concerned with the prevention and correction of dental and oral anomalies, irregularities and malocclusions."], "adolescent": ["A male juvenile between the onset of puberty and maturity; in the state of development between puberty and maturity.", "A female juvenile between the onset of puberty and maturity; in the state of development between puberty and maturity.", "A juvenile between the onset of puberty and maturity; in the state of development between puberty and maturity."], "sphincter": ["A ring-shaped muscle that relaxes or tightens to open or close a passage or opening in the body."], "18th century": ["The century which lasted from 1701-1800 in the Gregorian calendar."], "Ao Naga": ["A language of India."], "Sudoku": ["A game whose objective is to fill a 9x9 grid so that each column, each row, and each of the nine 3x3 boxes (also called blocks or regions) contains the digits 1 to 9."], "ligature": ["A special character that is used to represent a sequence of characters.", "A symbol that connects multiple notes in some way.", "A device, similar to a tourniquet, usually of thread or string, tied around a limb, blood vessel or similar to restrict blood flow. (source: Wikipedia)"], "Ghanaian Sign Language": ["A language of Ghana."], "German Sign Language": ["The sign language of the deaf community in Germany."], "Gusilay": ["A language of Senegal."], "Guatemalan Sign Language": ["A language of Guatemala."], "Gusan": ["A language of Papua New Guinea."], "Wasembo": ["A language of Papua New Guinea."], "Greek Sign Language": ["A language of Greece."], "Guat\u00f3": ["A possible language isolate spoken by the about 10% Guat\u00f3 people of Brazil."], "retch": ["To regurgitate the contents of the stomach.", "To make a effort to vomit."], "Gbati-ri": ["A language of the Democratic Republic of the Congo."], "Shiki": ["A language of Nigeria."], "reduction": ["Chemical reaction in which an element gains an electron.", "Act of reducing a quantity or a number.", "The amount by which something is reduced.", "The process of thickening a liquid mixture such as a sauce by evaporation", "The act of abating or the state of being abated."], "reduce": ["To thicken a liquid mixture such as a sauce by evaporation.", "To cut down on; to make a reduction in (especially costs, jobs, e.g. with financial and administrative acts).", "Euphemism for \"reduce\", \"make worse, smaller or less\", \"give up\"."], "Guajaj\u00e1ra": ["A language of Brazil."], "Yocobou\u00e9 Dida": ["A language of the C\u00f4te d'Ivoire."], "Gurinji": ["A language of Australia."], "Gupapuyngu": ["A language of Australia."], "Paraguayan Guaran\u00ed": ["The primary variety of Guaran\u00ed which is spoken in Paraguay."], "Guahibo": ["A language of Colombia and Venezuela."], "Eastern Bolivian Guaran\u00ed": ["A language of Bolivia, Argentina and Paraguay"], "Guambiano": ["A language of Colombia."], "Mby\u00e1 Guaran\u00ed": ["A language of Brazil, Argentina and Paraguay"], "Guayabero": ["A language of Colombia."], "Gunwinggu": ["A language of Australia."], "Farefare": ["A language of Ghana and Burkina Faso."], "Ninkare": ["A language of Ghana and Burkina Faso."], "Guinean Sign Language": ["A sign language used in Guinea."], "Mal\u00e9ku Ja\u00edka": ["A language of Costa Rica."], "Yanomam\u00f6": ["A language of Venezuela and Brazil."], "Gey": ["An extinct language of Cameroon."], "Gun": ["A language of Benin and Nigeria"], "Gourmanch\u00e9ma": ["A language of Burkina Faso, Benin, Niger and Togo."], "Gusii": ["A language of Kenya."], "diocese": ["In Christian religions, a region administered by a bishop."], "grid": ["A system for delivery of electricity, consisting of various substations, transformers and generators, connected by wire.", "A pattern of regularly spaced horizontal and vertical lines."], "painkiller": ["Any medicine, such as aspirin, that reduces pain."], "oxytocin": ["(C43H66N12O12S2) Mammalian peptide hormone that acts as a neurotransmitter in the brain."], "immigration": ["The action of coming to a foreign country or region, to which one is not native, in order to settle there."], "significant": ["Worth paying attention to."], "consideration": ["The act or an instance of considering."], "impression": ["The overall effect of something.", "A vague idea in which some confidence is placed."], "rugby": ["A sport originally from Rugby, England where players in a team of 15 attempt to score points by touching an ovid ball to the ground in the area past their opponent\u2019s territory or kicking the ball between goalposts and over a crossbar"], "settle": ["To cause a boat to go down in the water.", "To have permanent residence.", "To bring to an end; to settle conclusively.", "To bring to an agreement.", "To establish a colony.", "To come to an agreement or settlement of a dispute or argument, to attempt to sort something out between parties or to settle a case, to finish animosities."], "accord": ["To bring to an agreement."], "Guanano": ["A language of Brazil and Colombia."], "Duwet": ["A language of Papua New Guinea."], "Golin": ["A language of Papua New Guinea."], "Guaj\u00e1": ["A language of Brazil."], "perfect pitch": ["The ability to identify a musical note without having to hear a reference note previously."], "absolute pitch": ["The ability to identify a musical note without having to hear a reference note previously."], "cuneiform": ["An ancient writing system originating in Mesopotamia."], "Gurmana": ["A language of Nigeria."], "Kuku-Yalanji": ["A language of Australia."], "Gavi\u00e3o do Jiparan\u00e1": ["A language of Brazil."], "Par\u00e1 Gavi\u00e3o": ["A language of Brazil."], "Western Gurung": ["A language of Nepal and India."], "Gumawana": ["A language of Papua New Guinea."], "Guyani": ["An extinct language of Australia."], "instrumental": ["Serving as a means.", "A musical composition or recording without lyrics or any other sort of vocal music."], "sumo": ["A stylised Japanese form of wrestling in which a wrestler loses if he is forced from the ring, or if any part of his body except the soles of his feet touch the ground."], "falsetto": ["A singing technique that produces sounds pitched higher than the singer's normal range."], "Mbato": ["A language of the C\u00f4te d'Ivoire."], "Gwa": ["A language of Nigeria."], "Gweno": ["A Bantu language spoken in the North Pare Mountains in the Kilimanjaro Region of Tanzania."], "Moo": ["A language of Nigeria."], "Gwere": ["A language of Uganda."], "Guwamu": ["A language of Australia."], "Kwini": ["A language of Australia."], "Gua": ["A language of Ghana."], "W\u00e8 Southern": ["A language of the C\u00f4te d'Ivoire."], "Northwest Gbaya": ["A language of the Central African Republic, Cameroon, Congo, Nigeria"], "Garus": ["A language of Papua New Guinea."], "Kayardild": ["A language of Australia."], "Gyem": ["A language of Nigeria."], "Gungabula": ["A language of Australia."], "Gbayi": ["A language of the Central African Republic."], "Gyele": ["A language of Gabon and Equatorial Guinea."], "Ng\u00e4bere": ["A language of Panama."], "Guyanese Creole English": ["A language of Guyana and Suriname"], "Guarayu": ["A language of Bolivia."], "Gunya": ["A language of Australia."], "Ganza": ["A language of Ethiopia"], "Gazi": ["A language of Iran"], "Gane": ["A language of Indonesia (Maluku)."], "Hanoi Sign Language": ["A sign language used in the city of Hanoi in Viet Nam."], "Gurani": ["A language of Iraq and Iran."], "Hawrami": ["A language of Iraq and Iran."], "Hatam": ["A language of Indonesia (Papua)."], "closet": ["An enclosed space or piece of furniture where clothes are kept."], "sprain": ["Injury which occurs to ligaments or joints caused by a sudden overstretching.", "To get an injury to a ligament or a joint caused by a sudden overstretching."], "ecchymosis": ["Injury to biological tissue, generally caused by an impact, in which the capillaries are damaged, allowing blood to seep into the surrounding tissue."], "subsistence": ["Minimal or marginal resources for subsisting."], "substantiate": ["To make real or concrete; give reality or substance to.", "To establish or strengthen with new evidence or facts."], "outspoken": ["Given to expressing yourself freely or insistently.", "Characterized by directness in manner or speech; without subtlety or evasion."], "vocal": ["Given to expressing yourself freely or insistently."], "graduate student": ["A university student, usually already possessing a four year degree, who is working on a master's degree or Ph.D."], "producer": ["An individual or organization that creates goods or services."], "disseminate": ["To make known or public.", "To cause to become widely known."], "bland": ["Lacking in taste or vigor."], "tasteless": ["Having no flavour."], "texture": ["The feel of a surface or a fabric."], "census": ["An official periodic count of a population including such information as sex, age, occupation, etc.", "A count of members of a population, not necessarily human, usually residents in a particular region, often done at regular intervals."], "wrestling": ["A sport consisting of hand-to-hand combat between two unarmed contestants seeking to pin or press each other's shoulders to the ground."], "spirometry": ["The measurement of volume of air inhaled or exhaled by the lung."], "median income": ["The amount which divides the income distribution into two equal groups, half having income above that amount, and half having income below that amount."], "per capita income": ["The mean income computed for every man, woman, and child in a particular group. It is derived by dividing the total income of a particular group by the total population in that group."], "chronic obstructive respiratory disease": ["A group of diseases characterized by the pathological limitation of airflow in the airway that is not fully reversible. COPD is the umbrella term for chronic bronchitis, emphysema and a range of other lung disorders."], "Haiphong Sign Language": ["A sign language used in the city of Haiphong in Viet Nam."], "Hanga": ["A language of Ghana."], "abstruse": ["Difficult to understand."], "vague": ["Expressed in an unclear fashion."], "uncertain": ["Lacking or indicating lack of confidence or assurance."], "complicated": ["Hard to accomplish."], "anode": ["The electron-absorbing electrode of an electron tube.", "The negative terminal of a galvanic cell", "The positive terminal of an electrolytic cell."], "wrestler": ["A person who wrestles."], "weightlifting": ["A form of exercise in which weights are lifted."], "weightlifter": ["A person who uses weights to train the muscles."], "Parkinson disease": ["Progressive, degenerative disorder of the nervous system characterized by tremors, rigidity, bradykinesia, postural instability, and gait abnormalities; caused by a loss of neurons and a decrease of dopamine in the basal ganglia."], "subcapsular sinus": ["The portion of the lymph node between the capsule and cortex. It receives lymph from the afferent lymph vessels and passes it to the cortical sinus."], "afferent": ["Conveying towards a center."], "lateral": ["Situated at or extending to the side."], "boxing": ["A combat sport in which two participants of similar weight fight each other with their fists."], "boxing glove": ["A padded mitten, designed to protect the hand while punching, and worn in boxing."], "Lyme disease": ["Infection by a bacterium of the genus Borrelia which is transmitted by ticks."], "checkmark": ["A mark made to indicate agreement, correctness or acknowledgement."], "19th century": ["The century which lasted from 1801-1900 in the Gregorian calendar."], "linguistic": ["Of or relating to the study of language (linguistics).", "Of or pertaining to language."], "category": ["A group to which items are assigned based on similarity or defined criteria."], "acrolect": ["The variety of speech that is considered the standard form and has the highest prestige."], "censor": ["A person who is authorized to read publications or correspondence or to watch performances and suppress in whole or in part anything considered obscene or unacceptable.", "To read publications or correspondence or to watch performances and suppress in whole or in part anything considered obscene or unacceptable."], "hoax": ["Anything deliberately intended to deceive or trick."], "extinct": ["Of an species of organisms that no longer exist alive."], "insidious": ["Working or spreading in a hidden and usually injurious way."], "woolly rhinoceros": ["(Coelodonta antiquitatis) An extinct species of rhinoceros that lived during the Pleistocene epoch, but survived the last ice age."], "Ming dynasty": ["The ruling dynasty of China from 1368 to 1644."], "bull terrier": ["A breed of dog in the terrier family that is thick-set and muscular with a short, dense coat."], "acupuncture": ["Treatment of pain or disease by inserting the tips of needles at specific points on the skin."], "magnet": ["A material or object that produces a magnetic field."], "glycolysis": ["The breakdown of a monosaccharide, generally glucose, into simpler components, including pyruvate."], "Irish Sign Language": ["A language of Ireland."], "Indonesian Sign Language": ["A language of Indonesia."], "Hahon": ["A language of Papua New Guinea."], "Hakka": ["A Chinese language spoken primarily in South China and in Taiwan by the Hakka people, but also in Brunei, French Guiana, French Polynesia, Indonesia, Malaysia, Panama, Singapore, Suriname and Thailand."], "Norwegian Sign Language": ["A language of Norway."], "Natagaimas": ["An extinct language of Colombia."], "Indian Sign Language": ["A sign language used in India and Bangladesh."], "Salang": ["A Bahnaric language spoken in the southern Laotian province of Attapu and in the neighboring Kon Tum Province of Vietnam."], "Hewa": ["A language of Papua New Guinea."], "Hangaza": ["A language of Tanzania."], "Hak\u00f6": ["A language of Papua New Guinea."], "Hupla": ["A language of Indonesia (Papua)."], "Harari": ["A language of Ethiopia."], "Haisla": ["A language of Canada."], "Havu": ["A language of Democratic Republic of the Congo."], "Southern Haida": ["A language of Canada."], "Haya": ["A language of Tanzania."], "Hazaragi": ["A language of Afghanistan, Iran and Pakistan."], "decennial": ["The tenth anniversary of an event or happening.", "Happening every ten years."], "centenary": ["The 100th anniversary of an event or happening."], "Usher's syndrome": ["An innate reciprocal congenital deafness and progressing loss of vision due to retinitis pigmentosa."], "synthetic": ["Produced by synthesis instead of being isolated from a natural source."], "cognitive": ["Of or being or relating to or involving cognition."], "goldfish": ["A relatively small member of the carp family, the goldfish is a domesticated version of a dark-gray/brown carp native to East Asia."], "equivalence": ["The condition of being essentially equal."], "formal education": ["The process of training and developing people in knowledge, skills, mind, and character in a structured and certified program."], "humorous": ["Arousing laughter.", "Full of or characterized by humour."], "nationalist": ["A man that advocates nationalism.", "A woman that advocates nationalism.", "A person that advocates nationalism.", "Pertaining to nationalism."], "CTLA4": ["Cell marker on the surface of some immune cells."], "cell marker": ["Biochemical or genetic characteristics which distinguish and discriminate between different cell types."], "rope ladder": ["A ladder with side pieces of rope."], "haggard": ["Looking exhausted and unwell."], "retract": ["To take back something one has said."], "prediction": ["An estimate of a future condition.", "A statement of what will happen in the future."], "parsimonious": ["Excessively unwilling to spend."], "penurious": ["Excessively unwilling to spend."], "stingy": ["Excessively unwilling to spend."], "hallucination": ["Subjectively experienced sensations in the absence of an appropriate stimulus, but which are regarded by the individual as real."], "business partner": ["A man who is involved, as a partner, with someone else in a legal general partnership and shares in the management of a business.", "A woman who is involved, as a partner, with someone else in a legal general partnership and shares in the management of a business.", "An individual who is involved, as a partner, with someone else in a legal general partnership and shares in the management of a business."], "drowning": ["Death as caused by suffocation when a liquid causes interruption of the body's absorption of oxygen from the air leading to asphyxia."], "playwright": ["A writer of plays for the theatre."], "shame": ["The consciousness or awareness of dishonor, disgrace, or condemnation."], "step": ["A flat surface or support that facilitates the ascent or descent of a stairway.", "An advance or movement made from one foot to the other.", "To move the foot in walking; to advance or recede by raising and moving one of the feet to another resting place, or by moving both feet in succession."], "searchlight": ["An apparatus with reflectors for projecting a powerful beam of light of approximately parallel rays in a particular direction, usually devised so that it can be swiveled about."], "workload": ["The total amount of work to be performed by an individual, a department, or other group of workers in a period of time."], "oceanographer": ["A man who studies oceanography, the science of oceans.", "A woman who studies oceanography, the science of oceans.", "A person who studies oceanography, the science of oceans."], "plate tectonics": ["A theory of geology that has been developed to explain the observed evidence for large scale motions of the Earth's lithosphere."], "asthenosphere": ["The zone of the Earth's upper mantle, below the lithosphere."], "birthday cake": ["A cake often decorated with candles, made to celebrate someone's birthday."], "instantaneous": ["Happening within an imperceptibly brief period of time."], "divergent": ["Moving in different directions."], "aortic valve stenosis": ["A constriction in the opening of the aortic valve or of the supravalvular or subvalvular regions."], "corpulent": ["Very fat; pretty obese."], "bulky": ["Very fat; pretty obese.", "Being large in size, mass, or volume."], "heavily built": ["Very fat; pretty obese."], "thickset": ["Very fat; pretty obese."], "toothpick": ["A small, usually wooden stick, often pointed at both ends, for removing food residue from the area between the teeth."], "Hamba": ["A language of the Democratic Republic of the Congo."], "Huba": ["A language of Nigeria."], "Habu": ["A language of East Timor."], "Andaman Creole Hindi": ["A language of India."], "Huichol": ["A language of Mexico."], "Honduras Sign Language": ["A language of Honduras."], "Herd\u00e9": ["A language of Chad."], "Helong": ["A language of Indonesia (Nusa Tenggara)."], "Hehe": ["A language of Tanzania."], "Heiltsuk": ["A language of Canada."], "Hemba": ["A language of the Democratic Republic of the Congo."], "Herero": ["A language of the Bantu family spoken by Herero people in Namibia, parts of Botswana and also sporadically in Angola."], "Saan": ["A language of Namibia."], "Haigwai": ["A language of Papua New Guinea."], "Kerak": ["A language of Senegal."], "Hibito": ["An extinct language of Peru."], "Pamosu": ["A language of Papua New Guinea."], "Hijuk": ["A language of Cameroon."], "Seit-Kaitetu": ["A language of Indonesia (Maluku)."], "rant": ["A declamation written, or more often oral, where emotionality supersedes rationality. Its purpose is a call to action, often identifying a target for ire and a path to resolution. Due to the pejorative connotation of the term it is a descriptor that is often subjective, most often applied to messages disagreed with."], "Hiligaynon": ["An Austronesian language spoken in Western Visayas in the Philippines."], "Hietshware": ["A language of Botswana and Zimbabwe."], "Himarim\u00e3": ["A language of Brazil."], "Hiw": ["A language of Vanuatu."], "Kahe": ["A language of Tanzania."], "Hunde": ["A language of the Democratic Republic of the Congo."], "Halia": ["A language of Papua New Guinea."], "pelotte": ["A game played between two or four players, against one or two walls, with a hard wooden racquet and a ball of a size mid-way between a tennis ball and a golf ball."], "Matu Chin": ["A language of Myanmar and India."], "apostate": ["A person who renounces a religion or faith."], "ephemeris": ["A table giving the apparent position of celestial bodies throughout the year."], "Eastern Farsi": ["A dialect of the Persian language spoken in Afghanistan, where it is an official language, and in Pakistan."], "Dari": ["A dialect of the Persian language spoken in Afghanistan, where it is an official language, and in Pakistan."], "conundrum": ["Any problem where the answer is very complex, possibly unsolvable without deep investigation."], "diaphragm": ["An opening in the lightpath of a lens or objective that can regulate the amount of light that passes."], "lens": ["An optical device with perfect or approximate axial symmetry which transmits and refracts light, concentrating or diverging the beam.", "Transparent, biconvex natural lens inside the eye that, along with the cornea, refracts light to be focused on the retina, and whose shape can be modified by muscles to adapt the focal distance."], "Ebola": ["A severe and often fatal disease in humans and nonhuman primates, monkeys and chimpanzees, caused by the Ebola virus.", "The viral genus Ebolavirus (EBOV) named after the Ebola River, where the first recognized outbreak occurred."], "Ebola hemorrhagic fever": ["A severe and often fatal disease in humans and nonhuman primates, monkeys and chimpanzees, caused by the Ebola virus."], "resemble": ["To be like or similar to something else."], "glaucoma": ["A group of diseases characterized by increased intraocular pressure resulting in damage to the optic nerve and retinal nerve fibers."], "spokesman": ["A person who speaks on behalf of others, but is understood not to be necessarily part of the others."], "thermobaric device": ["A bomb that generally detonate in two stages: a small blast creates a cloud of explosive material, which is then ignited with devastating effect."], "fuel-air bomb": ["A bomb that generally detonate in two stages: a small blast creates a cloud of explosive material, which is then ignited with devastating effect.", "A bomb that uses a fuel-air explosive."], "approximate": ["To come near to; to move towards.", "To calculate roughly, often from imperfect data.", "Not quite exact or correct."], "fickle": ["Liable to sudden unpredictable change.", "Marked by erratic changeableness in affections or attachments."], "javelin": ["A metal-tipped spear thrown for distance in an athletic field event"], "porcelain": ["A white translucent dense ceramic material produced by fusing under high temperature a mixture of feldspar, kaolin, quartz, whiting and other substances.", "Made of porcelain."], "alpha male": ["The dominant male in a group of animals."], "prowess": ["A superior skill that can be learned by study, practice and observation."], "intercontinental": ["Taking place between two or more continents."], "untenable": ["Not able to be held, as of an opinion or position."], "junta": ["The ruling council of a military dictatorship."], "baby face": ["A face resembling that of a baby."], "worldwide": ["Involving the entire earth; not limited or provincial in scope.", "Spanning or extending throughout the entire world."], "transparency": ["An openness and willingness to accept public scrutiny that diminishes the capacity for an organisation to practice or harbor deception or deceit.", "A picture consisting of a positive photograph or drawing on a transparent base; viewed with a projector."], "Songhay": ["A group of closely related languages/dialects centered on the middle stretches of the Niger River in the west African states of Mali, Niger, Benin, Burkina Faso, and Nigeria."], "racquet": ["An implement with a handle connected to a round frame strung with wire, sinew, or plastic cords, and used to hit a ball, such as in tennis or a birdie in badminton."], "optic nerve": ["Either of a pair of nerves that carry visual information from the retina to the brain."], "clandestine": ["Kept or done in secret, often in order to conceal an illicit or improper purpose."], "Hiri Motu": ["A language of Papua New Guinea"], "Hmar": ["A language of India."], "Hamtai": ["A language of Papua New Guinea."], "Hamap": ["A language of Indonesia (Nusa Tenggara)."], "Mina": ["A chadic language spoken in Northern Cameroon."], "Hani": ["A language of China, Laos and Viet Nam."], "Hanunoo": ["A language of the Philippines."], "corporal": ["A non-commissioned officer rank in the U.S.A army."], "tenant": ["One who pays a fee (rent) in return for the use of land, buildings, or other property owned by others."], "rostrum": ["The platform a speaker stands on while giving a speech.", "External anatomical structure of birds which is used for taking food and for eating.", "The beak or snout of a Cetacea, such as a dolphin."], "beatboxing": ["The art of vocal percussion."], "Hoava": ["A language of the Solomon Islands."], "Mari": ["A language of Papua New Guinea."], "Horom": ["A language of Nigeria."], "Hoby\u00f3t": ["A language of Oman."], "Holu": ["A language of Angola and the Democratic Republic of the Congo."], "Homa": ["An extinct language of Sudan."], "Holoholo": ["A language of the Democratic Republic of the Congo."], "Ho Chi Minh City Sign Language": ["A sign language used in Ho Chi Minh City in Viet Nam."], "Hote": ["A language of Papua New Guinea."], "Hovongan": ["A language of Indonesia (Kalimantan)."], "Honi": ["A language of China."], "Hpon": ["A language of Myanmar."], "Hrangkhol": ["A language of Myanmar and India."], "Haruku": ["A language of Indonesia (Maluku)."], "Haroi": ["A language of Viet Nam."], "Horuru": ["A language of Indonesia (Maluku)."], "H\u00e9rtevin": ["A modern Eastern Aramaic language spoken in Turkey."], "Hruso": ["A language of India."], "Harzani": ["A language of Iran."], "Southeastern Huastec": ["A language of Mexico."], "Hungarian Sign Language": ["A language of Hungary."], "Hausa Sign Language": ["A language of Nigeria."], "Xiang": ["A Chinese language spoken mainly in Hunan province, but also in Sichuan and Guangxi provinces."], "javeling thrower": ["An athlete who throws a javeling."], "nudism": ["The practice of living unclothed for reasons of comfort or health."], "Harsusi": ["A language of Oman."], "Hoti": ["A language of Indonesia (Maluku)."], "Minica Huitoto": ["A language of Colombia and Peru."], "meltdown": ["Accidental overheating of the core of a nuclear reactor resulting in the core melting and radiation escaping."], "square root": ["Of a number, a number which, when squared, yields the given number; sometimes constrained to be the positive number where two solutions exist."], "Nazi Germany": ["Germany under the government of Adolf Hitler and the National Socialist German Workers Party."], "Third Reich": ["Germany under the government of Adolf Hitler and the National Socialist German Workers Party."], "Ankole-Watusi cattle": ["(Bos primigenius taurus) Breed of cattle native to East Africa with long curved horns."], "Ankole cattle": ["(Bos primigenius taurus) Breed of cattle native to East Africa with long curved horns."], "theorem": ["A mathematical statement of some importance that has been proved to be true."], "on-the-job training": ["Training undertaken in the workplace as part of the productive work of the learner."], "Central Pashto": ["A language of Pakistan."], "Northern Pashto": ["A language of Pakistan and Afghanistan."], "Southern Pashto": ["A language of Pakistan, Afghanistan, Iran and the United Arab Emirates."], "poverty line": ["The minimum level of income deemed necessary to achieve an adequate standard of living."], "astringent": ["A substance which draws tissue together thus restricting the flow of blood.", "Causing the constriction of soft organic tissue."], "reservation": ["A tract of land set apart by the US government for the use of a Native American people.", "An arrangement made in advance to have something at a certain time where only a limited number are available, such as a seat in a transport, a table at a restaurant or a room in a hotel."], "imprisonment": ["Putting someone in prison or in jail as lawful punishment."], "incarceration": ["Putting someone in prison or in jail as lawful punishment."], "civil parish": ["A subnational entity forming the lowest unit of English local government, lower than districts or counties."], "cricketer": ["A person who plays cricket, particularly on a high level."], "qirad": ["One of the financial instruments of the Islamic world."], "discourse": ["A formal lengthy exposition of some subject."], "Hitu": ["An Austronesian spoken on Ambon Island in eastern Indonesia."], "Huambisa": ["A Jivaroan language spoken by the Huambisa people in Amazonas and Loreto, Peru."], "Huaulu": ["A language of Indonesia (Maluku)."], "San Francisco del Mar Huave": ["A language of Mexico."], "Humene": ["A language of Papua New Guinea."], "Huachipaeri": ["A language of Peru."], "Huilliche": ["A language of Chile."], "Hulung": ["A language of Indonesia (Maluku)."], "Hula": ["A language of Papua New Guinea."], "Hungana": ["A language of the Democratic Republic of the Congo."], "Tsat": ["A language of China."], "Humla": ["A language of Nepal."], "Murui Huitoto": ["A language of Peru and Colombia"], "San Mateo del Mar Huave": ["A language of Mexico."], "Hukumina": ["A language of Indonesia (Maluku)"], "N\u00fcpode Huitoto": ["An indigenous American language spoken in Peru."], "Hulaul\u00e1": ["A modern Jewish Aramaic language spoken in Israel."], "San Lu\u00eds Potos\u00ed Huastec": ["A language of Mexico."], "Haitian Vodoun Culture Language": ["A language of Haiti."], "San Dionisio del Mar Huave": ["A language of Mexico."], "Haveke": ["A language of New Caledonia."], "Sabu": ["A language of Indonesia (Nusa Tenggara)."], "Santa Mar\u00eda del Mar Huave": ["A language of Mexico."], "Wan\u00e9": ["A language of C\u00f4te d'Ivoire"], "diversity": ["The presence of a wide range of variation in the qualities or attributes that are being observed."], "expound": ["To lay open the meaning of, to explain or discuss at length."], "damnation": ["Condemnation to everlasting punishment in the future state.", "The state of being damned."], "random assignment": ["An experimental technique for assigning subjects to different treatments, or no treatment."], "replace": ["Making a substitution with a similar object.", "To use in place of something else, with the same function.", "Put something back where it belongs."], "dermatology": ["A medical specialty concerned with the skin, its structure, functions, diseases, and treatment."], "Medieval Latin": ["Medieval form of Latin which was used as literary language and language of education from circa 550 to 1500 in Western Europe."], "differential calculus": ["The branch of calculus that studies how functions change when their inputs are varied."], "Islamabad": ["Capital city of Pakistan."], "Iaai": ["A language of New Caledonia."], "Iatmul": ["A language of Papua New Guinea."], "Iapama": ["A language of Brazil."], "Purari": ["A language of Papua New Guinea."], "times": ["Number of times."], "regular": ["ordered; conform a fixed procedure."], "Lake Karachay": ["Lake in the southern Ural mountains near the city of Kyshtym in the Russian Chelyabinsk Oblast."], "Lake Karachai": ["Lake in the southern Ural mountains near the city of Kyshtym in the Russian Chelyabinsk Oblast."], "tribulation": ["A trying period or event."], "adversity": ["A trying period or event."], "Old Latin": ["Stage of the Latin language in the period before the age of Classical Latin; that is, all Latin before 75 BC."], "Early Latin": ["Stage of the Latin language in the period before the age of Classical Latin; that is, all Latin before 75 BC."], "Archaic Latin": ["Stage of the Latin language in the period before the age of Classical Latin; that is, all Latin before 75 BC."], "bleeding": ["A heavy release of blood within or from the body."], "Etruscans": ["Ancient people which lived in nothern central Italy in today's regions of Tuscany, Umbria and Latium."], "dare": ["To have enough courage (to do something)."], "carnage": ["A ruthless killing of a great number of people."], "Maroon": ["A runaway slave in the West Indies, Central America, South America, or North America."], "Society of Jesus": ["A Christian religious order of the Catholic Church at the service of the universal Church."], "freshet": ["The sudden flooding of a stream because of heavy rain."], "drawback": ["A negative or unwanted consequence or side effect of a solution.", "Something that detracts or takes away.", "Something that detracts or takes away."], "Edman degradation": ["A method of sequencing amino acids in a peptide."], "snakepit": ["A historical European means of imposing capital punishment."], "mountainous": ["Abounding in mountains."], "Ibibio": ["A language of Nigeria."], "Iwaidja": ["A language of Australia."], "Akpes": ["A language of Nigeria."], "Ibanag": ["A language of the Philippines."], "Ibilo": ["A language of Nigeria."], "Ibaloi": ["A language of the Philippines."], "Agoi": ["A language of Nigeria."], "Ibino": ["A language of Nigeria."], "Ibuoro": ["A language of Nigeria."], "Ibu": ["A language of Indonesia (Maluku)."], "Ibani": ["A language of Nigeria."], "Ede Ica": ["A language of Benin."], "Etkywan": ["A language of Nigeria."], "Icelandic Sign Language": ["A language of Iceland."], "Islander Creole English": ["A language of Colombia."], "Wakhi": ["A language of Pakistan, Afghanistan, China and Tajikistan."], "Idakho-Isukha-Tiriki": ["A language of Kenya."], "Indo-Portuguese": ["A language of Sri Lanka."], "Idon": ["A language of Nigeria."], "Ede Idaca": ["A language of Benin."], "Idere": ["A language of Nigeria."], "Dacia": ["The land of the Daci. Dacia was a large district of South-eastern Europe, bounded on the north by the Carpathians, on the south by the Danube, on the west by the Tisia or Tisa, on the east by the Tyras or Nistru"], "supreme": ["Having power over all others."], "facebook": ["A social networking website launched on 2004.", "A college publication distributed at the start of the academic year by university administrations with the intention of helping students get to know each other better."], "Idi": ["A language of Papua New Guinea."], "Indri": ["A language of Sudan."], "Idesa": ["A language of Nigeria."], "Idat\u00e9": ["A language of East Timor."], "Idoma": ["A language of Nigeria."], "elderberry juice": ["Juice made from elderberries."], "pincer": ["Pliers made of steel for removing nails from wood."], "Amganad Ifugao": ["A language of Philippines."], "Batad Ifugao": ["A language of the Philippines."], "If\u00e8": ["A language of Togo and Benin."], "Ifo": ["An extinct language of Vanuatu."], "Tuwali Ifugao": ["A language of Philippines."], "Teke-Fuumu": ["A language of Congo."], "Mayoyao Ifugao": ["A language of Philippines."], "claw hammer": ["A tool primarily used for pounding nails into, or extricating nails from, some other object."], "have fun": ["To enjoy oneself doing something."], "children's home": ["Institution where orphaned children are raised and cared for."], "paternal": ["Of or pertaining to the father, his genes, his relatives, or his side of a family."], "maternal": ["Of or pertaining to the mother, her genes, her relatives, or her side of a family."], "clarification": ["An interpretation that removes obstacles to understanding."], "elucidation": ["An interpretation that removes obstacles to understanding."], "ventive": ["A grammatical category of the verb in some languages indicating that the action is performed in the direction of the speaker."], "affiliate": ["An entity with a relationship with a peer or a larger entity.", "To adopt or accept as a member, subordinate associate, or branch."], "diacritical mark": ["A special mark added to a letter to indicate a different pronunciation, stress, tone, or meaning."], "lemon tree": ["Evergreen tree in the genus Citrus which produces yellow fruits with sour taste."], "kurgan": ["A prehistoric burial mound once used by peoples in Siberia and Central Asia."], "one-eyed": ["Having but one eye."], "monocular": ["Having but one eye."], "panniers": ["Women's undergarments worn in the eighteenth century that extend the width of the skirts at the side while leaving the front and back flat."], "side hoops": ["Women's undergarments worn in the eighteenth century that extend the width of the skirts at the side while leaving the front and back flat."], "bile": ["A bitter brownish-yellow or greenish-yellow secretion produced by the liver, stored in the gallbladder, and discharged into the duodenum where it aids the process of digestion."], "gastrointestinal tract": ["The system of digestive organs stretching from the mouth to the anus, but does not include the accessory glandular organs."], "alimentary canal": ["The system of digestive organs stretching from the mouth to the anus, but does not include the accessory glandular organs."], "jaundice": ["A clinical manifestation of hyperbilirubinemia, consisting of deposition of bile pigments in the skin, resulting in a yellowish staining of the skin and mucous membranes."], "icterus": ["A clinical manifestation of hyperbilirubinemia, consisting of deposition of bile pigments in the skin, resulting in a yellowish staining of the skin and mucous membranes."], "bittern": ["A bird of the family Ardeidae that lives in marshy areas, feeds on amphibians, reptiles, insects and fish and flies with its neck retracted rather than outstretched."], "jaundiced eye": ["A prejudiced view."], "Keley-I Kallahan": ["A language of the Philippines."], "Ebira": ["A language of Nigeria."], "Igede": ["A language of Nigeria."], "Igana": ["A language of Papua New Guinea."], "Igala": ["A language of the Yoruboid branch of the Volta\u2013Niger language family, spoken by the Igala ethnic group of Nigeria."], "Kanggape": ["A language of Papua New Guinea."], "Ignaciano": ["A language of Bolivia."], "Isebe": ["A language of Papua New Guinea."], "Interglossa": ["A constructed language whose vocabulary consists entirely of roots from Greek yet whose grammar was borrowed from Chinese."], "Igwe": ["A language of Nigeria."], "Iha Based Pidgin": ["A language of Indonesia (Papua)."], "Ihievbe": ["A language of Nigeria."], "Iha": ["A language of Indonesia (Papua)."], "Sichuan Yi": ["A sino-tibetan language spoken by the Yi people in rural areas of Sichuan, Yunnan, Guizhou, and Guangxi, in China."], "Kalabari": ["A language of Nigeria."], "Southeast Ijo": ["A language of Nigeria."], "Eastern Canadian Inuktitut": ["A language spoken in Canada by the Inuit people in most of Nunavut, and Nunavik, Quebec."], "Iko": ["A language of Nigeria."], "Ikulu": ["A language of Nigeria."], "Olulumo-Ikom": ["A language of Nigeria."], "Ikpeshi": ["A language of Nigeria."], "Western Canadian Inuktitut": ["A language using the Latin alphabet spoken in the Northwest Territories and in some regions of Nunavut, in Canada."], "Iku-Gora-Ankwa": ["A language of Nigeria."], "Pompeian": ["Pertaining to Pompeii."], "glass splinter": ["A splinter of broken glass."], "stark-naked": ["Absolutely naked."], "glass table": ["Table with a table top made of glass."], "glass door": ["Door made of glass or with inset glass panes."], "glass noodle": ["Thin, almost transparent type of noodle in Asian cuisine made from from mung bean starch and water."], "cellophane noodle": ["Thin, almost transparent type of noodle in Asian cuisine made from from mung bean starch and water."], "autumn rain": ["The rain in autumn."], "tonal language": ["A language where a high-low pitch pattern is permanently associated with the meaning of words."], "tonogenesis": ["The appearance of contrasting tone in a previously non-tonal language"], "atonal": ["Lacking a tonal center or key."], "adhesive bandage": ["A small dressing used for injuries not serious enough to require a full-size bandage."], "philanthropist": ["Someone who makes charitable donations intended to increase human well-being"], "Ikwere": ["A language of Nigeria."], "Ikizu": ["A language of Tanzania."], "gambler": ["Someone who risks loss or injury in the hope of gain or excitement"], "in-band signaling": ["The sending of metadata and control information in the same band, on the same channel, as used for data."], "bellows": ["A device for delivering pressurized air in a controlled quantity to a controlled location.", "A device consisting of a deformable air container which has an outlet nozzle for delivering a current of air to a controlled location such as a fireplace."], "stoning": ["A form of capital punishment whereby an organized group throws stones at the convicted individual until the person dies."], "post office": ["A building, office or shop concerned with the business of delivering letters, post or mail and selling stamps etc."], "oscillation": ["The variation, typically in time, of some measure about a central value, often a point of equilibrium, or between two or more different states."], "ginger": ["Perennial plants having thick branching aromatic rhizomes and leafy reedlike stems.", "To season with ginger."], "judoka": ["A practitioner of the Japanese martial art of Judo."], "doe": ["A female rabbit.", "A female deer.", "A female Roe Deer"], "brazen": ["Having no shame.", "Unrestrained by convention or propriety."], "papal": ["Of, relating to, or issued by the pope."], "martial art": ["Any of several fighting styles which contain systematised methods of training for combat, both armed and unarmed; often practised as a sport."], "faucet": ["A valve with the function of regulating the flow of a liquid or gas through a pipe.", "A device applied to the end of a pipe in order to interrupt and regulate the flow of a liquid or gas."], "stopcock": ["A device applied to the end of a pipe in order to interrupt and regulate the flow of a liquid or gas.", "A valve with the function of regulating the flow of a liquid or gas through a pipe."], "set off": ["To fire a bullet from a firearm."], "bourgeoisie": ["The middle class."], "shameless": ["Without any attempt at concealment; completely obvious.", "Having no shame."], "hepatic portal vein": ["De ader die zuurstofarm, voedingsstofrijk bloed van de darmen, maag en milt naar de lever voert"], "Ile Ape": ["A language of Indonesia (Nusa Tenggara)."], "Ila": ["A language of Zambia."], "Garig-Ilgar": ["A language of Australia."], "Ili Turki": ["A language of China and Kazakhstan"], "Ilongot": ["A language of the Philippines."], "Iranun": ["A language of Malaysia (Sabah)."], "Ili'uun": ["A language of Indonesia (Maluku)."], "Ilue": ["A language of Nigeria."], "Talur": ["A language of Indonesia (Maluku)."], "Imeraguen": ["A language of Mauritania."], "Anamgura": ["A language of Papua New Guinea."], "Imonda": ["A language of Papua New Guinea."], "Imbongu": ["A language of Papua New Guinea."], "Imroing": ["A language of Indonesia (Maluku)."], "Inga": ["A language of Colombia."], "Jungle Inga": ["A language of Colombia."], "heart failure": ["The inability of the heart to pump blood at an adequate rate to fill tissue metabolic requirements or the ability to do so only at an elevated filling pressure."], "atherosclerosis": ["A condition that results from the gradual build-up of fatty substances, including cholesterol, on the walls of the arteries."], "ischemia": ["Blood deficiency in an organ or tissue caused by a constriction or obstruction of its blood vessels."], "bailiff": ["An officer of the court who is employed to execute writs and processes and make arrests."], "bluff": ["A high, steep bank, as by a river or the sea, or beside a ravine or plain; a cliff with a broad face"], "coronary heart disease": ["The imbalance between myocardial functional requirements and the capacity of the coronary vessels to supply sufficient blood flow."], "coronary artery disease": ["The imbalance between myocardial functional requirements and the capacity of the coronary vessels to supply sufficient blood flow."], "drain": ["A conduit allowing liquid to flow out of an otherwise contained volume.", "To cause liquid to flow out.", "An artificial waterway for carrying storm water or industrial discharge.", "A street drainage system building component that serves as intake of surface water on paved surfaces and leads it to underground drainage facilities, such as the sewer tunnel."], "sharpshooter": ["A person trained to shoot precisely with a certain type of rifle."], "marksman": ["A person trained to shoot precisely with a certain type of rifle.", "A man trained to shoot precisely with a certain type of rifle."], "aftermath": ["That which happens after, that which follows."], "Community Database class": ["Community Database class."], "is spoken in": ["Defines a relation between a linguistic entity and a geographic entity."], "Niamey": ["The capital of Niger."], "Saint John's": ["The capital and largest city of Antigua and Barbuda."], "Nassau": ["Capital city of the Bahamas."], "Bridgetown": ["The capital city of Barbados."], "Thimphu": ["The capital of Bhutan"], "Sallands": ["A language of the Netherlands."], "Stellingwerfs": ["A language of the Netherlands."], "Twents": ["A language of the Netherlands"], "tusk": ["An extremely long tooth of certain mammals that protrudes when the mouth is closed."], "Oktoberfest": ["The world's biggest beer festival, taking place in Munich since 1810, during the two week-long period between late September and early October."], "ball-peen hammer": ["A hammer having, besides the normal flat head, an opposite, rounded or peening head."], "Isinai": ["A language of the Philippines."], "Inoke-Yate": ["A language of Papua New Guinea."], "Port Moresby": ["The capital of Papua New Guinea."], "borders on": ["Indicates countries and seas a country is bordering on"], "I\u00f1apari": ["A language of Peru."], "pea": ["An annual plant originally from the Mediterranean basin and the Near East."], "Intha": ["A Burmish language spoken by the Intha in south-west Shan State of Myanmar.", "The members of a Tibeto-Burman ethnic group living around Inle Lake."], "flows through": ["Indicates that a river flows through a country."], "flows into": ["Indicates where a river ends."], "smuggler": ["A man who imports or exports without paying the lawful customs charges or duties.", "A woman who imports or exports without paying the lawful customs charges or duties.", "Someone who imports or exports without paying the lawful customs charges or duties."], "Gulf of Guinea": ["The part of the Atlantic Ocean southwest of Africa."], "Douro": ["One of the major rivers of the Iberian Peninsula, flowing from its source in the province of Soria across northern-central Spain and Portugal to its outlet at Porto."], "is situated at the": ["Indicates that a geographic phenomena is situated at the banks of the river."], "Koblenz": ["A German city situated on both banks of the Rhine at its confluence with the Moselle."], "Kura": ["River in the Caucasus Mountains, starting in Eastern Turkey and flowing through Turkey to Georgia, then to Azerbaijan."], "gallbladder": ["Pear-shaped organ that stores bile, releasing it when the body needs it for digestion."], "Inese\u00f1o": ["An extinct language of USA."], "Inor": ["A language of Ethiopia."], "Tuma-Irumu": ["A language of Papua New Guinea."], "Iowa-Oto": ["An extinct language of the United States of America."], "Ipili": ["A language of Papua New Guinea."], "Ipiko": ["A language of Papua New Guinea."], "Iquito": ["A language of Peru."], "Iresim": ["A language of Indonesia (Papua)."], "Irarutu": ["A language of Indonesia (Papua)."], "Irigwe": ["A language of Nigeria."], "Ikoma": ["A language of Tanzania."], "quay": ["A mole, bank, or wharf, formed toward the sea, or parallel to shoreline, at the side of a harbor, river, or other navigable water, for convenience in loading and unloading vessels."], "Ir\u00e1ntxe": ["A language of Brazil."], "Vientiane": ["The capital of Laos."], "Taipei": ["The capital of Taiwan."], "New Delhi": ["The capital of India."], "Bay of Bengal": ["A bay that forms the northeastern part of the Indian Ocean."], "trailer": ["Any vehicle designed to be towed, with the exception of a caravan."], "is written in the": ["Indicates in what script a language is written in."], "affectionate": ["Having affection or warm regard; loving."], "Kamberau": ["A language of Indonesia (Papua)."], "Iraya": ["A language of the Philippines."], "Manila": ["The capital of the Philippines."], "Isabi": ["A language of Papua New Guinea."], "Persian Gulf": ["An extension of the Indian Ocean located between Iran and the Arabian Peninsula."], "Gulf of Oman": ["A gulf that connects the Arabian Sea with the Strait of Hormuz which then runs to the Persian Gulf"], "Isconahua": ["A language of Peru."], "Isnag": ["A language of the Philippines."], "Italian Sign Language": ["A sign language of Italy."], "signing": ["Communicating in a sign language."], "Esan": ["A language of Nigeria."], "Nkem-Nkum": ["A language of Nigeria."], "Masimasi": ["A language of Indonesia (Papua)."], "Isanzu": ["A language of Tanzania."], "Isoko": ["A language of Nigeria."], "Tunis": ["Capital city of Tunesia."], "Istriot": ["A language of Croatia."], "Isu": ["A language of Cameroon."], "Bight of Bonny": ["A bight off the West African coast, in the easternmost part."], "bight": ["A broad bay formed by an indentation (a bight) in the shoreline."], "Ionian Sea": ["An arm of the Mediterranean Sea, south of the Adriatic Sea."], "Tyrrhenian Sea": ["Part of the Mediterranean Sea off of the western coast of Italy and the east coast of Sardinia."], "Binongan Itneg": ["A language of the Philippines."], "Itene": ["An endangered Chapacuran language spoken in the Beni Department of Bolivia."], "Inlaod Itneg": ["A language of the Philippines."], "strawberry pear": ["The fruit of certain cacti, cultivated in Southeast Asia and Central and South America, having cerise-pink- or yellow-coloured skin and a white or pink sweet fleshy interior with black seeds."], "pitaya": ["The fruit of certain cacti, cultivated in Southeast Asia and Central and South America, having cerise-pink- or yellow-coloured skin and a white or pink sweet fleshy interior with black seeds."], "dragon fruit": ["The fruit of certain cacti, cultivated in Southeast Asia and Central and South America, having cerise-pink- or yellow-coloured skin and a white or pink sweet fleshy interior with black seeds."], "pitahaya": ["The fruit of certain cacti, cultivated in Southeast Asia and Central and South America, having cerise-pink- or yellow-coloured skin and a white or pink sweet fleshy interior with black seeds."], "attach": ["To make something fixed or stable; to cause to be firmly attached.", "To associate ownership of (something) to someone."], "touching": ["Provoking sadness and pity."], "moving": ["Provoking sadness and pity.", "In motion."], "Russian Sign Language": ["A language of Russia (Europe) and Bulgaria"], "mental reservation": ["A deception that does not actually tell an untruth."], "passenger train": ["A train that is equiped to transport people."], "Itu Mbon Uzo": ["A language of Nigeria."], "Itonama": ["A language of Bolivia."], "Iteri": ["A language of Papua New Guinea."], "Isekiri": ["A language of Nigeria."], "Maeng Itneg": ["A language of the Philippines"], "Itutang": ["A language of Papua New Guinea."], "Itawit": ["A language of the Philippines."], "Ito": ["A language of Nigeria."], "Itik": ["A language of Indonesia (Papua)."], "Moyadan Itneg": ["A language of the Philippines"], "Itza'": ["A language of Guatemala."], "Ibatan": ["A language of the Philippines"], "Ivatan": ["A language of the Philippines."], "I-Wak": ["A language of Philippines."], "Iwam": ["A language of Papua New Guinea."], "Iwur": ["A language of Indonesia (Papua)."], "Sepik Iwam": ["A language of Papua New Guinea."], "Ixcatec": ["A language of Mexico."], "Nebaj Ixil": ["A language of Guatemala."], "Chajul Ixil": ["A language of Guatemala."], "Iyayu": ["A language of Nigeria."], "Mesaka": ["A language of Cameroon"], "Ingrian": ["A language of Russia (Europe)."], "Izi-Ezaa-Ikwo-Mgbo": ["A language of Nigeria."], "Jamamad\u00ed": ["A language of Brazil."], "continuous": ["Without break, cessation or interruption."], "Hyam": ["A language of Nigeria."], "non-stop": ["Without break, cessation or interruption."], "endless": ["Without break, cessation or interruption."], "tighten": ["To make tighter."], "turn on": ["To cause to operate by flipping a switch."], "detention": ["A temporary state of custody or confinement, especially of a prisoner awaiting trial."], "gold-plated": ["Coated with a gold layer. (a ring, e.g.) (Re. electroplating)"], "silver-plated": ["Coated with a silver layer (e.g., a ring). (Re. electroplating)"], "shortage": ["A lack or short supply."], "licence plate": ["Metal sheet for alphanumerical identification of vehicles, on their front and/or rear parts."], "slate": ["An official list of candidates during an election."], "pal": ["Close friend."], "comrade": ["Close friend.", "A fellow male member of the Communist Party.", "A fellow female member of the Communist Party.", "A fellow member of the Communist Party."], "chum": ["Close friend."], "radiograph": ["A photograph with x-rays."], "radiogram": ["A photograph with x-rays."], "roentgenogram": ["A photograph with x-rays."], "smash-up": ["Circumstance in which two or more vehicles accidentally collide."], "daiquiri": ["A cocktail made of \u201ccacha\u00e7a\u201d (Brazilian-style tequila) or rum, with fruit juice (lemon) and sugar, all mixed in an electric blender."], "shake": ["Fruit pulp mixed with water or milk and sugar in a blender.", "To cause (something) to move rapidly from side to side.", "To arouse or stir up emotions or feelings.", "To clasp hands to communicate a greeting, feeling, or cognitive state."], "egg-yolk shake": ["Egg yolk mixed by hand or in electric mixer; if by hand it moves rather fast over and over through the yolk in a circular manner until it becomes very firm, when finally one adds sugar and manioc meal or cornmeal to it."], "Jahanka": ["A language of Guinea and Mali"], "Yabem": ["A language of Papua New Guinea."], "Kuala Lumpur": ["Capital of Malaysia."], "Western Jacaltec": ["A language of Guatemala and Mexico."], "Jakun": ["A language of Malaysia (Peninsular)."], "Yalahatan": ["A language of Indonesia (Maluku)."], "Jamaican Creole English": ["A language of Jamaica."], "Lim\u00f3n Creole English": ["A language of Jamaica."], "Panamanian Creole English": ["A language of Jamaica."], "Jaru\u00e1ra": ["A language of Brazil."], "Yaqay": ["A language of Indonesia (Papua)."], "New Caledonian Javanese": ["A language of New Caledonia."], "Caac": ["A language of New Caledonia."], "Hmwaveke": ["A language of New Caledonia."], "Yaur": ["A language of Indonesia (Papua)."], "Singapore City": ["Capital of Singapore."], "Jambi Malay": ["A language of Indonesia (Sumatra)."], "Jarnango": ["A language of Australia."], "Jawe": ["A language of New Caledonia."], "crepitation": ["A crackling sound heard in certain conditions such as the rale heard in pneumonia or the grating sound heard on movement of ends of a broken bone."], "laparoscopy": ["The examination of the abdominal interior with a laparoscope."], "prolapse": ["A condition where organs, such as the uterus, fall down or slip out of place."], "national anthem": ["A generally patriotic musical composition that is formally recognized by a country's government as their state's official national song."], "motto": ["A phrase or a short list of words meant formally to describe the general motivation or intention of an entity, social group, or organization."], "Arandai": ["A language of Indonesia (Papua)."], "Blue Planet": ["The third planet (counted from the center) of our solar system."], "citreous": ["Having the color of a lemon."], "lemon-yellow": ["Having the color of a lemon."], "Lojban": ["A constructed language designed to be culturally neutral, and based on the principles of logic."], "Jabut\u00ed": ["A language of Brazil."], "Jukun Takum": ["A language of Cameroon and Nigeria."], "Jamaican Country Sign Language": ["A sign language used in Jamaica."], "Jad": ["A language of India."], "Judeo-Tat": ["A language of Israel, Azerbaijan and Russia"], "Jebero": ["A language of Peru."], "Jerung": ["A language of Nepal."], "Kathmandu": ["The capital of Nepal."], "accentuation": ["Act of accentuating; applications of accent."], "frolic": ["To behave playfully and uninhibitedly."], "abasement": ["The act of abasing."], "translatable": ["Capable of being translated into another language."], "untranslatable": ["Not capable of being translated into another language."], "Lyons Sign Language": ["A sign language used in the city of Lyon in France."], "appendectomy": ["The surgical removal of the vermiform appendix."], "embolism": ["A block in an artery caused by blood clots, fat globules, infected tissue, or cancer cells."], "fat embolism": ["A type of embolism that is often, but not always, caused by physical trauma."], "ISO 4217 Code": ["Currency standard"], "Danish krone": ["The currency of Denmark."], "McBurney's incision": ["A short diagonal abdominal incision in the lower right quadrant in which the muscle fibers are separated rather than cut; used for appendectomy."], "abash": ["To make ashamed."], "Lao kip": ["The currency of Laos."], "Jeri Kuo": ["A language of C\u00f4te d'Ivoire."], "CFA franc": ["The currency of Benin, Burkina Faso, C\u00f4te d'Ivoire, Guinea-Bissau, Mali, Niger, Senegal and Togo.", "The currency of Cameroon, Central African Republic, Chad, Republic of the Congo, Equatorial Guinea and Gabon."], "fad": ["A fashion that is taken up with great enthusiasm for a brief period of time."], "Yelmek": ["A language of Indonesia (Papua)"], "Dza": ["A language of Nigeria."], "Jere": ["A language of Nigeria."], "Manem": ["A language of Papua New Guinea and Indonesia (Papua)."], "abatement": ["The amount abeted.", "An interruption in the intensity or amount of something.", "The act of abating or the state of being abated."], "Amstel": ["A canalised river in the south of North Holland."], "Ngbee": ["An extinct language of Democratic Republic of the Congo."], "Ngomba": ["A language of Cameroon."], "demonym": ["A word that denotes the members of a people or the inhabitants of a place."], "Cameroonian": ["A person who is living in or is from Cameroon."], "Frenchman": ["A man of French birth or nationality."], "Amsterdammer": ["A person who lives or was born in Amsterdam."], "abduct": ["To take away secretly by force; to carry away (a human being) wrongfully and usually by violence; to kidnap."], "kidnap": ["To take away secretly by force; to carry away (a human being) wrongfully and usually by violence; to kidnap."], "Jibu": ["A language of Nigeria."], "Tol": ["A language of Honduras."], "Gulf of Honduras": ["A large inlet of the Caribbean Sea, indenting the coasts of Belize, Honduras and Guatemala."], "Gulf of Fonseca": ["A gulf in Central America, bordering El Salvador, Honduras and Nicaragua."], "Lempira": ["The currency of Honduras."], "Honduran": ["A person from Honduras or of Honduran descent."], "Bu": ["A language spoken in the Nasarawa State in Nigeria."], "Nigerian": ["A person from Nigeria or of that ancestry.", "Of, from, or pertaining to Nigeria or the Nigerian people."], "Nigerian naira": ["The currency of Nigeria."], "Djingili": ["A language of Australia."], "Jiiddu": ["A language of Somalia"], "Gulf of Aden": ["A gulf located in the Arabian Sea (Indian Ocean) between Yemen on the south coast of the Arabian Peninsula and Somalia in the Horn of Africa."], "Somali shilling": ["The currency of Somalia."], "Jilim": ["A language of Papua New Guinea."], "Jimi": ["A language of Cameroon.", "A language of Nigeria."], "Guanyinqiao": ["A language of China."], "Tok Pisin": ["An English-based creole language spoken throughout Papua New Guinea."], "Papua New Guinean kina": ["The currency of Papua New Guinea."], "Mlomp": ["A language of Senegal."], "Kung-Gobabis": ["A language of Namibia and Botswana"], "pula": ["The currency of Botswana."], "Namibian dollar": ["The currency of Namibia."], "Jita": ["A language of Tanzania."], "Tanzanian shilling": ["The currency of Tanzania."], "Youle Jinuo": ["A language of China."], "Shuar": ["A language of Ecuador."], "Ecuadorian": ["A person of Ecuadorian origin or a person with the Ecuadorian nationality.", "Of or relating to Ecuador or to Ecuadorians."], "Buyuan Jinuo": ["A language of China."], "Kubo": ["A language of Papua New Guinea."], "Labir": ["A language of Nigeria."], "tuber": ["A fleshy, thickened under-ground stem of a plant, usually containing stored starch."], "emerald-green": ["Having the green color of emerald."], "abductor": ["One who abducts.", "Muscle whose function is to move away from the central line of the body the part to which it is connected."], "kidnapper": ["One who abducts."], "abhorrent": ["Causing disgust or detestation."], "Dima": ["A South Omotic language spoken in the northern part of the Selamago district in Ethiopia.", "A language of Papua New Guinea."], "Machame": ["A language of Nigeria."], "Yamdena": ["A language of Indonesia (Maluku)."], "Kamara": ["A language of Ghana."], "Mashi": ["A language of Nigeria."], "Vietnamese \u0111\u1ed3ng": ["The Vietnamese currency."], "abiding": ["Lasting a long time."], "Korea Bay": ["A bay separated from the Bohai Sea by the Liaodong Peninsula, with Dalian at its southernmost point."], "Luzon Strait": ["A strait connecting the Philippine Sea, in the western Pacific, to the South China Sea, between Taiwan and Luzon in the Philippines."], "Taiwan Strait": ["A 180km-wide strait between mainland China and the island of Taiwan."], "dear": ["Having a high price, cost.", "Precious to or greatly valued by someone.", "A formal way of addressing somebody at the beginning of a letter.", "A formal way of addressing somebody one likes or regards kindly.", "Greatly loved."], "Western Juxtlahuaca Mixtec": ["A language of Mexico."], "Ulan Bator": ["The capital of Mongolia."], "T\u00f6gr\u00f6g": ["The currency of Mongolia."], "Kazakhstani tenge": ["The currency of Kazakhstan."], "Tashkent": ["The capital of Uzbekistan."], "Jangshung": ["A language of India."], "Janji": ["A language of Nigeria."], "Rawat": ["A language of Nepal and India."], "Joba": ["A language of Democratic Republic of the Congo."], "Congolese franc": ["The official currency of the Democratic Republic of Congo since 1997."], "aboriginal": ["Species that evolved in a particular region or that evolved nearby and migrated to the region without help from humans.", "Indigenous Australian who is a descendant of the first known human inhabitants of the Australian continent and its nearby islands.", "A descendant of the first known human inhabitants of a region or country.", "Having existed from the beginning; in an earliest or original stage or state."], "enantiomer": ["A stereoisomer that is nonsuperimposable complete mirror images of each other."], "edible part": ["The part of something bigger that is edible."], "Wojenaka": ["A language of C\u00f4te d'Ivoire."], "Jor\u00e1": ["An extinct language of Bolivia."], "Jordanian Sign Language": ["A sign language used in Jordan."], "abstemious": ["Eating and drinking in moderation."], "Jordanian": ["A person who is a citizen of Jordan or originated from Jordan.", "Of or pertaining to Jordan or its inhabitants.", "A woman who is a citizen of Jordan or originated from Jordan."], "Jordanian dinar": ["The currency of Jordan."], "Jowulu": ["A language of Mali."], "stereoisomer": ["Isomeric molecule whose atomic connectivity is the same but whose atomic arrangement in space is different."], "Network Time Protocol": ["A protocol for synchronizing the clocks of computer systems over packet-switched, variable-latency data networks."], "claymore": ["A term used to describe two distinct types of Scottish swords."], "Legendre's conjecture": ["A prime number between n2 and (n+1)2 exists for every positive integer n."], "Dzhidi": ["A language of Israel and Iran."], "Jaqaru": ["A language of Peru."], "Jarai": ["A language of Viet Nam and Cambodia."], "Cambodian riel": ["The currency of Cambodia."], "Gulf of Thailand": ["A gulf that borders but is not part of the South China Sea."], "Cambodian": ["An austroasiatic language spoken primarily in Cambodia where it is an official language, and in the nearby regions of Vietnam.", "A citizen of Cambodia or someone who originates from Cambodia."], "Jiru": ["A language of Nigeria."], "Japrer\u00eda": ["A language of Venezuela."], "abasia": ["The inability to walk due to impaired muscle coordination."], "Japanese Sign Language": ["A language of Japan."], "J\u00fama": ["A language of Brazil."], "slaughter-house": ["A place where animals are butchered for food."], "slaughter": ["The killing and butchering of animals for food or other animal products.", "A ruthless killing of a great number of people.", "To kill animals for food."], "Dili": ["The capital of East Timor."], "pessmism": ["A belief that the experienced world is the worst possible."], "optimism": ["A general disposition to expect the best in all things."], "Norwegian krone": ["The currency of Norway."], "launder": ["To disguise the source of ill-gotten wealth and funds by various means and convert them to legal ones.", "To cleanse with a cleaning agent, such as soap, and water."], "laundrette": ["A place that has facilities for washing and drying clothes that the public may pay to use."], "Wannu": ["A language of Nigeria"], "Worodougou": ["A language of C\u00f4te d'Ivoire."], "H\u00f5ne": ["A language of Nigeria."], "Wapan": ["A language of Nigeria"], "Jirel": ["A Tibetan language spoken by the Jirel tribe in eastern Nepal.", "An ethnic group both ethnically and linguistically related to both the Sherpas and Sunuwars, with a population of 5,300 centered on the Jiri Valley."], "Nepalese rupee": ["The currency of Nepal."], "Jiba": ["A language of Nigeria."], "Hupd\u00eb": ["A language of Brazil and Colombia"], "Jur\u00fana": ["A language of Brazil."], "Jutish": ["A language of Denmark."], "W\u00e3pha": ["A language of Nigeria."], "gentilic": ["A word that denotes the members of a people or the inhabitants of a place."], "Caribbean Javanese": ["A language of Suriname and French Guiana"], "Surinamese dollar": ["The currency of Suriname."], "Jwira-Pepesa": ["A language of Ghana."], "Jiarong": ["A language of China."], "Judeo-Yemeni Arabic": ["A language of Israel and Jemen"], "tessitura": ["Distance from the lowest to the highest pitch a musical instrument can play."], "Guyanese dollar": ["The currency of Guyana."], "Guyanese": ["A person from or a national of Guyana."], "Karakalpak": ["A Turkic language mainly spoken by Karakalpaks in Karakalpakstan (Uzbekistan), as well as by Kazakhs, Bashkirs and Nogay."], "Uzbekistani som": ["The currency of Uzbekistan."], "Jingpho": ["A Tibeto-Burman language mainly spoken in Kachin State, Burma (Myanmar) and Yunnan Province, China."], "Naypyidaw": ["The capital of Myanmar."], "kyat": ["The currency of Myanmar."], "Andaman Sea": ["A body of water to the southeast of the Bay of Bengal, south of Myanmar, west of Thailand and east of the Andaman Islands; it is part of the Indian Ocean."], "Kadara": ["A language of Nigeria."], "Kajaman": ["A language of Malaysia (Sarawak)."], "sampling frequency": ["The number of samples per second, or per other unit, taken from a continuous signal to make a discrete signal."], "Jju": ["A language of Nigeria."], "Kayapa Kallahan": ["A language of the Philippines."], "slaughterer": ["A person who slaughters or dresses meat to be sold."], "annual ring": ["An annual formation of wood in plants, consisting of two concentric layers, one of springwood and one of summerwood."], "archer": ["Someone who shoots an arrow from a bow or a bolt from a crossbow."], "butcher": ["A retailer of meat."], "bakery": ["A baker's shop."], "hedgehog": ["Small mammal characterized by its spiny back and by its habit of rolling itself into a ball when attacked."], "baking powder": ["Any of various powdered mixtures used in baking as a substitute for yeast."], "porcupine": ["A large rodent with long quills that stand straight up when it is attacked or surprised."], "gunpowder": ["An explosive in the form of a powder."], "request stop": ["A stop, where a public means of transport stopped only if a passenger wants it."], "demand stop": ["A stop, where a public means of transport stopped only if a passenger wants it."], "flag stop": ["A stop, where a public means of transport stopped only if a passenger wants it."], "Xaasongaxango": ["A language of Mali and Senegal"], "Xasonga": ["A language of Mali and Senegal"], "Capanahua": ["A language of Peru."], "Katuk\u00edna": ["A language of Brazil."], "Kaxui\u00e2na": ["A language of Brazil."], "Kadiw\u00e9u": ["A language of Brazil."], "Kanju": ["A language of Australia."], "Kakauhua": ["An extinct language of Chile."], "Khamba": ["A language of India."], "Cams\u00e1": ["A language of Colombia."], "Kari": ["A language of Democratic Republic of the Congo."], "Grass Koiari": ["A language of Papua New Guinea."], "radioactively contaminated": ["Contaminated by radioactivity."], "lynx": ["Any of several medium-sized wild cats, mostly of the genus Lynx."], "ocelot": ["(Leopardus pardalis) An American feline carnivore covered with blackish ocellated spots and blotches which are variously arranged."], "top-level domain": ["The last part of an Internet domain name; that is, the letters which follow the final dot of any domain name."], "country code top-level domain": ["An Internet top-level domain generally used or reserved for a country or a dependent territory."], "impala": ["A medium-sized African antelope, Aepyceros melampus."], "hyena": ["A large carnivore of the family Hyaenidae, similar in appearance to a dog and native to Africa and Asia, best known for the sound resembling laughter that it makes when excited."], "hatchling": ["A newborn of animals that develop within eggs."], "secular": ["Not connected with spiritual or religious matters."], "serendipity": ["The act of finding something by looking for something else."], "darkroom": ["A room in which photographs are developed."], "Iwal": ["A language of Papua New Guinea."], "Kare": ["A language of Central African Republic and Cameroon", "A language of Papua New Guinea."], "Kaliko": ["A language of Sudan and the Democratic Republic of the Congo"], "Kabiy\u00e9": ["A language of Togo, Benin and Ghana"], "dazzle": ["To prevent from seeing properly by means of excessive brightness.", "Something that dazzles."], "spa gardens": ["Park for guests in a health resort."], "faithless": ["Not faithful.", "Having no religious faith."], "aback": ["Surprised and usually rather upset."], "marsh tit": ["(Poecile palustris) Bird species in the tit family Paridae which is common in central Europe and northern Asia."], "bird feeder": ["Small house used to supply food for birds, especially in winter."], "birdfeeder": ["Small house used to supply food for birds, especially in winter."], "Gulf of Finland": ["An arm of the Baltic Sea that extends between Finland (to the north) and Estonia (to the south) all the way to the city of Saint Petersburg in Russia."], "Swedish krona": ["The currency of Sweden."], "Skagerrak": ["A strait that runs between Norway and the southwest coast of Sweden and the Jutland peninsula of Denmark, connecting the North Sea and the Kattegat strait, which leads to the Baltic Sea."], "Dalecarlian": ["A language of Sweden."], "Jamtska": ["A language of Sweden."], "Scanian": ["A language of Sweden and Denmark."], "Swedish Sign Language": ["A sign language used in Sweden."], "despondency": ["A feeling of depression or disheartenment.", "Loss of hope."], "serval": ["(Leptailurus serval) A medium-sized African wild cat."], "timezone": ["A range of longitudes where a common standard time is used."], "Kamano": ["A language of Papua New Guinea."], "Kande": ["A language of Gabon."], "Libreville": ["The capital of Gabon."], "N'Djamena": ["The capital of Chad."], "abet": ["To help or encourage to do something wrong.", "The act of inciting or encouraging someone to commit a crime."], "minor": ["A person who is too young to be considered legally competent according to the laws of a jurisdiction."], "Malabo": ["The capital of Equatorial Guinea."], "Bight of Benin": ["A bight on the western African coast that extends eastward for about 640 km (400 miles) from Cape St. Paul to the Nun outlet of the Niger River."], "Aegean Sea": ["A sea arm of the Mediterranean Sea located between the southern Balkan and Anatolian peninsulas."], "Irish Sea": ["A sea that separates the islands of Ireland and Great Britain."], "Mazanderani": ["A language of Iran."], "Icelandic kr\u00f3na": ["The currency of Iceland."], "Nicaraguan c\u00f3rdoba": ["The currency of Nicaragua."], "discriminating": ["The way of treating something or someone differently."], "Libyan dinar": ["The currency of Libya."], "Libyan": ["A person from Libya.", "From or relating to Libya, the Libyan people or the Libyan language."], "Libyan Sign Language": ["A sign language used in Libya."], "Kuwaiti dinar": ["The currency of Kuwait."], "Egyptian pound": ["The currency of Egypt."], "Egyptian Sign Language": ["Sign language used in Egypt."], "gazetteer": ["A geographical dictionary, an important reference for information about places and place-names, used in conjunction with an atlas."], "Ophir": ["Port or region mentioned in the Old Testament of the Bible, famous for its wealth, notably gold."], "ablation": ["Surgical excision or amputation of a body part or tissue."], "ably": ["In an able manner; with great ability."], "ablaze": ["Burning strongly.", "Very bright."], "abnegation": ["Renunciation of your own interests in favor of the interests of others."], "abnormality": ["An anomaly, malformation, or difference from the normal.", "The state or quality of being abnormal."], "Strait of Otranto": ["Strait in the Mediterranean Sea which connects the Adriatic Sea with the Ionian Sea and measures 71km at the narrowest point."], "border river": ["A river which forms a border."], "Costa Rican col\u00f3n": ["The currency of Costa Rica."], "Chorotega": ["An extinct language of Costa Rica."], "general strike": ["Strike action by a critical mass of the labour force and other citizens in a city, region or country."], "Indonesian rupiah": ["The currency of Indonesia."], "aboard": ["On a ship, train, plane or other vehicle."], "Abadi": ["A language of Papua New Guinea."], "abound": ["To occur or exist in great quantities or numbers."], "Dera": ["A language of Indonesia (Papua) and Papua New Guinea", "A language of Nigeria."], "Kaiep": ["A language of Papua New Guinea."], "Ap Ma": ["A language of Papua New Guinea."], "Khanty": ["A language of Russia (Asia)"], "Kawacha": ["A language of Papua New Guinea."], "Lubila": ["A language of Nigeria."], "Ngk\u00e2lmpw Kanum": ["A language of Indonesia (Papua)."], "abortive": ["Failing to accomplish an intended objective."], "abreast": ["Alongside each other, facing in the same direction."], "side by side": ["Alongside each other, facing in the same direction."], "Kaivi": ["A language of Nigeria."], "Ukaan": ["A language of Nigeria."], "Tyap": ["A language of Nigeria."], "Vono": ["A language of Nigeria."], "Kamantan": ["A language of Nigeria."], "Kobiana": ["A language of Guinea-Bissau and Senegal."], "writing system": ["A system of characters used to write one or several languages."], "abridge": ["To reduce in scope while retaining essential elements."], "Kela": ["A language of Papua New Guinea.", "A language of Democratic Republic of the Congo."], "abrogate": ["To annul or rescend."], "abscond": ["To depart secretly."], "Nubi": ["A language of Uganda and Kenya."], "Kenyan shilling": ["The currency of Kenya."], "Parthian shot": ["A military tactic employed by the Parthians, mounted on light horses, they would feign retreat; then, while at a full gallop, turn their bodies back to shoot at the pursuing enemy."], "Yemeni": ["A person who is from Yemen."], "Yemeni rial": ["The currency of Yemen."], "Ethiopic script": ["An abugida script which was originally developed to write Ge'ez, a Semitic language."], "country calling code": ["The numbers that identify a country or a territory at the beginning of a telephone number."], "Omani rial": ["The currency of Oman."], "Omani": ["A person from Oman origin or an Omani citizen."], "Wikipedia article": ["An article in Wikipedia about the concept in that language."], "Croatian kuna": ["The official currency of Croatia."], "convertible mark": ["The currency of Bosnia and Herzegovina."], "Latvian lats": ["The currency of Latvia."], "Daugava": ["A river rising in the Valdai Hills, Russia, flowing through Russia, Belarus, and Latvia, draining into the Gulf of Riga"], "Gulf of Riga": ["A bay of the Baltic Sea between Latvia and Estonia."], "Kinalakna": ["A language of Papua New Guinea."], "Lithuanian litas": ["The currency of Lithuania."], "Estonian kroon": ["The official currency of Estonia."], "dandelion": ["A species of the genus Taraxacum, a large genus of flowering plants in the family Asteraceae."], "potassium nitrate": ["The potassium salt of nitric acid, KNO3"], "magnolia": ["A tree or shrub in any species of the genus Magnolia, many with large flowers and simple leaves."], "Dutch gulden": ["The Dutch currency until the introduction of the euro in 2002."], "paraffin": ["Paraffins. A homologous series of saturated hydrocarbons having the general formula CnH2n+2. Their systematic names end in -ane. They are chemically inert, stable, and flammable. The first four members of the series (methane, ethane, propane, butane) are gases at ordinary temperatures; the next eleven are liquids, and form the main constituents of paraffin oil; the higher members are solids. Paraffin waxs consists mainly of higher alkanes.\\n(Source: UVAROV)", "A group of high molecular weight alkane hydrocarbons with the general formula CnH2n+2, where n is between 22 and 27. Paraffin is also a technical name for an alkane in general, but in most cases it refers specifically to a linear, or normal alkane. It is mostly found as a white, odorless, tasteless, waxy solid, with a melting point between 47C and 65C. It is insoluble in water, but soluble in ether, benzene, and certain esters. Paraffin is unaffected by most common chemical reagents but oxidizes readily."], "screencast": ["A digital recording of computer screen output often containing audio narration."], "Kyrgyzstani som": ["The currency of Kyrgystan."], "Tajikistani somoni": ["The currency of Tajikistan."], "Turkish new lira": ["The currency of Turkey."], "Sea of Marmara": ["The inland sea that connects the Black Sea to the Aegean Sea, thus separating the Asian part of Turkey from its European part."], "Ashgabat": ["The capital of Turkmenistan."], "Turkmenistani manat": ["The currency of Turkmenistan."], "operates on": ["Produces the appropriate effect on."], "screw": ["A shaft with a helical groove or thread formed on its surface. Its main use is as a threaded fastener used to hold objects together.", "To connect or assemble pieces using a screw."], "Bhutanese ngultrum": ["The currency of Bhutan."], "Bulgarian lev": ["The currency of Bulgaria."], "Macedonian denar": ["The currency of Macedonia."], "Albanian lek": ["The currency of Albania."], "Serbian dinar": ["The currency of Serbia"], "Romanian leu": ["The currency of Romania."], "Hungarian forint": ["The Hungarian currency."], "Vorarlberg": ["The westernmost federal state of Austria. It is the second smallest state by both area and population."], "Burgenland": ["The easternmost and least populated federal state of Austria."], "Kamo": ["A language of Nigeria."], "Kaian": ["A language of Papua New Guinea."], "Kami": ["A language of Tanzania.", "A language of Nigeria."], "Dar es Salaam": ["The former capital and largest city of Tanzania."], "Kete": ["A language of Democratic Republic of the Congo"], "Kabwari": ["A language of Democratic Republic of the Congo."], "Konongo": ["A language of Tanzania."], "Worimi": ["An extinct language of Australia."], "Kutu": ["A language of Tanzania"], "Makonde": ["A language of Tanzania and Mozambique."], "Maputo": ["The capital of Mozambique."], "Mozambican": ["A person of Mozambican origin or with the Mozambican nationality."], "Mozambican metical": ["The currency of Mozambique."], "Mozambican Sign Language": ["A sign language used in Mozambique."], "Angolan kwanza": ["The currency of Angola."], "geographic unit": ["An OmegaWiki class for indicating an entity in geography."], "contrail": ["An artificial cloud made by the exhaust of jet aircraft or wingtip vortices that precipitate a stream of tiny ice crystals in moist, frigid upper air."], "Kondensstreifen": ["An artificial cloud made by the exhaust of jet aircraft or wingtip vortices that precipitate a stream of tiny ice crystals in moist, frigid upper air."], "vapor trail": ["An artificial cloud made by the exhaust of jet aircraft or wingtip vortices that precipitate a stream of tiny ice crystals in moist, frigid upper air."], "subcontractor": ["An individual or a business that signs a contract to perform part or all of the obligations of another's contract."], "contractor": ["A person who contracts to supply certain materials or do certain work for a stipulated sum."], "homograph": ["A word that is spelled the same as another, but has a different meaning and usually a different etymology."], "transliterate": ["To rewrite in a different script."], "trancribe": ["To write out from speech or from another text."], "Moldovan leu": ["The currency of Moldova."], "Suva": ["The capital of Fiji."], "Lesotho loti": ["The currency of Lesotho."], "Southern Sotho": ["A Bantu language, belonging to the Niger-Congo language family spoken by the Basotho nation (modern Lesotho)."], "Praia": ["The capital of Cape Verde."], "Cape Verdean escudo": ["The currency of Cape Verde."], "Cape Verdean Creole": ["A Portuguese-based Creole language spoken in the Cape Verde Islands."], "Qatari": ["A person with the Qatari nationality or someone who originated from Qatar.", "From or relating to Qatar."], "Qatari riyal": ["The currency of Qatar."], "Maltese lira": ["The currency of Malta until the end of 2007 when it was replaced by the euro"], "Maltese Sign Language": ["A language of Malta."], "Down syndrome": ["A genetic disorder caused by the presence of all or part of an extra 21st chromosome."], "Down\u2019s syndrome": ["A genetic disorder caused by the presence of all or part of an extra 21st chromosome."], "Brushfield spots": ["Small white spots on the periphery of the iris in the human eye due to aggregation of a normal iris element"], "hypoplasia": ["An incomplete or arrested development of an organ or a part of an organ."], "mental retardation": ["A lack of normal development of intellectual capacities; the diagnosis demands an IQ score below 70."], "Asperger syndrome": ["A neuropsychiatric disorder whose major manifestation is an inability to interact socially; other features include poor verbal and motor skills, single mindedness, and social withdrawal."], "Asperger's syndrome": ["A neuropsychiatric disorder whose major manifestation is an inability to interact socially; other features include poor verbal and motor skills, single mindedness, and social withdrawal."], "pyromania": ["A compulsive disorder characterised by obsession with fire or uncontrollable urges to start fires."], "kleptomania": ["The inability or great difficulty in resisting impulses of stealing"], "agoraphobia": ["An anxiety disorder which primarily consists of the fear of certain settings or unfamiliar environments that may present unexpected challenges or demands."], "New Zealand Sign Language": ["A sign language used in New Zealand."], "New Zealand Dollar": ["The currency of New Zealand"], "shunt": ["A passage that is made to allow blood or other fluid to move from one part of the body to another.", "(Electricity) To divert a part of a current by connecting a circuit element in parallel with another."], "Nobel Prize": ["Award founded by Alfred Nobel which is given yearly for outstanding achievements in the fields of physics, chemistry, physiology or medicine, literature, peace and economics."], "K\u00e9l\u00e9": ["A Bantu language spoken by the Akele people, living along the Ogoou\u00e9 and Ngounie rivers, and in the lake region around Lambar\u00e9n\u00e9, in Gabon."], "Kerewe": ["A language of Tanzania."], "Kpessi": ["A language of Togo."], "Lom\u00e9": ["The capital of Togo."], "Togolese": ["A person with the Togolese nationality or who originated from Togo."], "Kei": ["A language of Indonesia (Maluku)."], "artificial language": ["A language of which the phonology, grammar and/or vocabulary has been specifically devised by an individual or small group."], "created by": ["Indicates the person or authoritative body who brought the item into existence."], "ampoule": ["A small hermetically sealed glass vial containing a sterile chemical substance suitable for injection."], "ampule": ["A small hermetically sealed glass vial containing a sterile chemical substance suitable for injection."], "phial": ["A small hermetically sealed glass vial containing a sterile chemical substance suitable for injection.", "A small bottle."], "injection": ["A method of putting liquid into the body with a hollow needle and a syringe which is pierced through the skin long enough for the material to be forced into the body."], "intravenous infusion": ["A liquid administered directly into the bloodstream via a vein."], "encephalitis": ["Inflammation of the brain due to infection, autoimmune processes, toxins, and other conditions; viral infections are a relatively frequent cause of this condition."], "exude": ["To release a liquid in drops or small quantities."], "eclectic": ["Selecting a mixture of what appear to be best of various doctrines, methods, or styles."], "Kekch\u00ed": ["A Mayan language of Guatemala, Belize and El Salvador."], "Kemak": ["A language of East Timor and Indonesia"], "Kenyang": ["A language of Cameroon."], "was formerly known as": ["Indicates the previous name of an entity. This may co-occur with other changes."], "Rhodesia": ["The common name of the erstwhile British colony of Southern Rhodesia between the renaming of Northern Rhodesia as Zambia in 1964 and the establishment of Zimbabwe-Rhodesia in 1979."], "Zimbabwean": ["A person with the Zimbabwean nationality.", "Relating to Zimbabwe."], "Zimbabwean dollar": ["The currency of Zimbabwe."], "Lusaka": ["The capital of Zambia."], "Zambian": ["A person with the nationality of Zambia or, who originates from Zambia"], "Zambian kwacha": ["The currency of Zambia."], "Zambian Sign Language": ["A language of Zambia"], "profession": ["An occupation requiring specialized knowledge."], "active in": ["Indicates that a profession is active in a particular industry."], "Becker's muscular dystrophy": ["An X-linked recessive inherited disorder characterized by slowly progressive muscle weakness of the legs and pelvis."], "dehydration": ["A condition that results from excessive loss of water from a living organism."], "tree-ring dating": ["The science of dating the age of a tree by studying annual growth rings."], "Vin\u010da culture": ["Early European culture which existed along the Danube in Serbia, Western Romania, Southern Hungary and Eastern Bosnia between 5400 and 4500 BCE."], "Malawian kwacha": ["The currency of Malawi."], "genuflect": ["Bend the knee, as in servitude or worship."], "pidgin": ["A simplified language that develops as a means of communication between two or more groups who do not share a common language, in situations such as trade."], "aseptic meningitis": ["A condition in which the layers lining of the brain, or meninges, become inflamed and a pyogenic bacterial source is not to blame."], "pyogenic": ["Producing pus."], "absenteeism": ["Frequent absence from work etc. without good reason.", "Frequent absence from work or school without good reason."], "Old European Script": ["Markings on prehistoric artifacts found in south-eastern Europe which are believed by some to be a writing system of the Vin\u010da culture, which inhabited the region around 6000-4000 BCE."], "Vin\u010da alphabet": ["Markings on prehistoric artifacts found in south-eastern Europe which are believed by some to be a writing system of the Vin\u010da culture, which inhabited the region around 6000-4000 BCE."], "Vin\u010da script": ["Markings on prehistoric artifacts found in south-eastern Europe which are believed by some to be a writing system of the Vin\u010da culture, which inhabited the region around 6000-4000 BCE."], "Vin\u010da-Turda\u015f script": ["Markings on prehistoric artifacts found in south-eastern Europe which are believed by some to be a writing system of the Vin\u010da culture, which inhabited the region around 6000-4000 BCE."], "Barnard's Star": ["A very low-mass red dwarf star in the constellation Ophiuchus."], "non sequitur": ["A kind of pun that uses a change of word, subject, or meaning to make a joke of the listener's expectation.", "An invalid argument; one in which the conclusion cannot be logically deduced from the premises."], "dowsing": ["Refers to practices which some people claim enables them to detect hidden water, metals, gemstones or other objects, usually obstructed by land or sometimes located on a map (source Wikipedia)."], "ophiuchus": ["One of the 88 constellations and was also one of the 48 listed by Ptolemy."], "diuretic": ["A drug that increases the production of urine.", "Increasing the production of urine."], "Kugbo": ["A language of Nigeria."], "Akebu": ["A language of Togo."], "Kanikkaran": ["A language of India."], "Indian": ["A citizen of India or a person who originated from India."], "Indian rupee": ["The currency of India."], "absolution": ["Forgiveness, especially of sins."], "pus": ["A whitish-yellow or yellow substance produced during inflammatory responses of the body that can be found in regions of pyogenic bacterial infections."], "purulent": ["Producing pus.", "Containing pus."], "suppurative": ["Producing pus."], "pimple": ["A painful, local inflammation of the skin, caused by infection of a hair follicle. Usually, a hard core and pus are present.", "A result of a blockage of the skin's pore."], "desalinate": ["To completely or partially remove salt from."], "desalt": ["To completely or partially remove salt from."], "absolve": ["To pardon or remit (a sin)."], "West Kewa": ["A language of Papua New Guinea."], "Kukele": ["A language of Nigeria."], "get a divorce": ["To have one's marriage legally dissolved."], "get divorced": ["To have one's marriage legally dissolved."], "divorc\u00e9e": ["A divorced woman."], "divorcee": ["A divorced woman."], "divorc\u00e9": ["A divorced man."], "fianc\u00e9e": ["A woman who is engaged to be married."], "fiancee": ["A woman who is engaged to be married."], "fianc\u00e9": ["A man who is engaged to be married."], "fiance": ["A man who is engaged to be married."], "general practitioner": ["Name for a general physician who does peripheral work (not in a hospital) and who is the first station for people with problems with their health in the broadest sence."], "absorbent": ["Capable of absorbing.", "A substance that is capable of absorbing."], "abstention": ["The act of abstaining."], "abusive": ["Using insulting language.", "Containing defamation."], "phagocyte": ["A cell that ingest microorganisms, foreign particles, other cells, or dead tissue."], "abysmal": ["Very great (in a bad sense); very bad.", "Very deep."], "rhinoplasty": ["A plastic surgical operation on the nose, either reconstructive, restorative, or cosmetic."], "get engaged": ["To enter an agreement to marry."], "affiance": ["To enter an agreement to marry.", "To promise to give in marriage."], "accede": ["To agree to."], "betroth": ["To enter an agreement to marry.", "To promise to give in marriage."], "Lozi": ["A language of Zambia, Zimbabwe and Namibia"], "trothplight": ["To promise to give in marriage."], "betrothed": ["A woman who is engaged to be married.", "A man who is engaged to be married.", "A person who is engaged to be married.", "Having formally promised to be married."], "Seri": ["A language of Mexico."], "Lezgi": ["A language spoken by the Lezgins, who live in southern Dagestan (Russia) and northern Azerbaijan."], "suture": ["Thread like material used in surgical procedures to close, ligate, or fasten tissues or structures."], "episiotomy": ["A surgical incision through the perineum made to enlarge the vagina and assist childbirth."], "perineum": ["The body region lying between the genital area and the anus. It is between the vulva and the anus in the female, and between the scrotum and the anus in the male."], "unassisted childbirth": ["A birth without the aid of medical or professional birth attendants."], "acceleration lane": ["A lane, typically on the right side of a roadway, that lets a vehicle increase its speed to where it can safely merge with traffic."], "access code": ["A combination of characters that is used to obtain permission to enter a computer or a communication network."], "papery": ["Resembling paper in texture and thickness."], "paperlike": ["Resembling paper in texture and thickness.", "Of or like paper."], "common walnut": ["Large deciduous tree (Juglans regia) in the Walnut Family (Juglandaceae) which produces an edible fruit with a hard shell and oil-rich seed."], "English walnut": ["Large deciduous tree (Juglans regia) in the Walnut Family (Juglandaceae) which produces an edible fruit with a hard shell and oil-rich seed."], "Persian walnut": ["Large deciduous tree (Juglans regia) in the Walnut Family (Juglandaceae) which produces an edible fruit with a hard shell and oil-rich seed."], "walnut tree": ["Large deciduous tree (Juglans regia) in the Walnut Family (Juglandaceae) which produces an edible fruit with a hard shell and oil-rich seed."], "accessible": ["Able to be reached or approached easily."], "acclaim": ["To applaud or welcome enthusiastically.", "To declare someone ruler, winner etc. by enthusiastic approval.", "Enthusiastic approval.", "To praise or show approval, by clapping the hands."], "acclamation": ["Enthusiastic approval."], "acclimatization": ["Adaptation to a new climate, a new temperature or altitude or environment."], "curettage": ["The removal of tissue with a curette, a spoon-shaped instrument with a sharp edge."], "extravasation": ["The unwanted discharge of a fluid from some container or vessel."], "Kemiehua": ["A language of China."], "Kinnauri": ["A language of India."], "Kung": ["A language of Cameroon"], "Khunsari": ["A language of Iran."], "Kuk": ["A language of Cameroon"], "Korlai Creole Portuguese": ["A language of India."], "acclimatize": ["Get used to a certain climate."], "Kachchi": ["A language of India, Kenia, Malawi and Pakistan."], "accommodating": ["Obliging; helpful."], "Kharam Naga": ["A language of India."], "Kumauni": ["A language of India and Nepal."], "Koromf\u00e9": ["A language of Burkina Faso and Mali."], "accompanist": ["A person who provides musical accompaniment."], "accomplished": ["Highly skilled.", "Successfully completed or brought to an end.", "Past participle of accomplish."], "accordance": ["In agreement with."], "Koyaga": ["A language of C\u00f4te d'Ivoire."], "Kawe": ["A language of Indonesia (Papua)."], "Komering": ["A language of Indonesia (Sumatra)."], "Kube": ["A language of Papua New Guinea."], "Upper Tanudan Kalinga": ["A language of Philippines."], "Selangor Sign Language": ["A sign language used mainly in the state of Selangor in Malaysia."], "Gamale Kham": ["A language of Nepal."], "palliative care": ["Care alleviating symptoms without curing the underlying disease."], "progress": ["The idea of an advance that occurs within the limits of mankind's collective morality and knowledge of its respective environment."], "neglect": ["To fail to attend to."], "baud": ["The number of symbols per second sent over a channel."], "bandwidth": ["A measure for the speed (amount of data) that can be sent through an Internet connection."], "streaming": ["A method of sending audio and video files over the Internet in such a way that the user can view the file while it is being transferred."], "accordingly": ["In agreement."], "according to": ["In agreement with or accordant with.", "In a manner conforming or corresponding to.", "As reported or stated by."], "Kaiw\u00e1": ["A language of Brazil and Argentina."], "accost": ["To approach and speak to, especially in an unfriendly way."], "accountability": ["Responsibility to someone or for some activity."], "accountable": ["Subject to the obligation to report, explain, or justify something."], "accountancy": ["The work of an accountant."], "accrual": ["The act of accumulating.", "(of accounting method) including binding economic flows, property and facts even before they are paid."], "short-lived": ["Lasting or existing for a short time only."], "deciduous": ["(Of plants) Shedding foliage at the end of the growing season, i.e. having green leaves only in spring and summer."], "traditionally": ["In a traditional manner."], "Accra": ["The capital of Ghana."], "accrue": ["To be added as a matter of periodic gain or advantage, as interest on money.", "To heap up; to collect or gather (e.g. work, magazines, etc.)."], "Ghanaian cedi": ["The currency of Ghana."], "accurate": ["Exactly right."], "Ghanaian": ["An citizen of Ghana or someone who is originally from Ghana", "Of, from, or pertaining to Ghana or the Ghanaian people."], "exactly": ["Without diversion from the desired or agreed specification; neither exceeding nor failling short in any way.", "In an exact manner; without approximation."], "precisely": ["In a precise manner."], "accursed": ["Under a curse.", "Hateful."], "Maasina Fulfulde": ["A language of Mali and Ghana."], "Kunggari": ["A language of Australia."], "Karingani": ["A language of Iran."], "Kaing\u00e1ng": ["An indigenous language spoken in the South of Brazil, belonging to the J\u00ea-Kaingang language family."], "Kamoro": ["A language of Indonesia (Papua)."], "Abun": ["A language of Indonesia (Papua)."], "Kumbainggar": ["A language of Australia."], "Somyev": ["A language of Nigeria."], "Kobol": ["A language of Papua New Guinea."], "Karas": ["A language of Indonesia (Papua)."], "Karon Dori": ["A language of Indonesia (Papua)."], "Kamaru": ["A language of Indonesia (Sulawesi)."], "Kyerung": ["A Tibetan language spoken by the Kyerung people on both sides of the Tibet-Nepal border close to Mt Everest."], "Nouakchott": ["The capital of Mauretania."], "accusal": ["An act of accusing or the state of being accused."], "Mauritanian ouguiya": ["The currency of Mauretania."], "accusation": ["An act of accusing or the state of being accused."], "Moroccan dirham": ["The currency of Morocco."], "Moroccan": ["A citizen of Morocco or someone who is originally from Morocco."], "Strait of Gibraltar": ["The strait that connects the Atlantic Ocean to the Mediterranean Sea and separates Spain from Morocco."], "accusatory": ["Containing an accusation."], "Western Sahara": ["A territory in Northwestern Africa."], "bottom line": ["The summary or result; the most important information."], "is administered by": ["Indicates for a territory what country is responsible for its administration."], "central station": ["The biggest and most important passenger train station of a city."], "main station": ["The biggest and most important passenger train station of a city."], "Swiss French": ["The variety of French spoken in the French-speaking area of Switzerland known as Romandy."], "accustomed": ["That has become a habit.", "According to or depending on custom."], "Nuuk": ["The capital of Greenland."], "accuse": ["To lay a charge against; bring an accusation against.", "To blame for, make a claim of wrongdoing against."], "Stanley": ["The capital of the Falkland Islands."], "The Valley": ["The capital of Anguila."], "acetic": ["Relating to or containing acetic acid or vinegar."], "ache": ["A continuous pain.", "To be in continuous pain.", "To have a great desire."], "achievable": ["Possible to do."], "achieve": ["To bring to a succesful end; to gain with effort."], "Iu Mien Written Chinese Script": ["A written form of the Iu Mien language."], "Laos Sign Language": ["A sign language used in Laos."], "Valencian": ["The historical, traditional and official name used in the Valencian Community (Spain) to refer to the language spoken therein."], "acoustic": ["Having to do with hearing or with sound."], "Nostratic": ["Hypothetical language superfamily which is controversial among historical linguists and includes Indo-European, Uralic and Altaic, and according to other opinions also Kartvelian, Dravidian, Afro-Asiatic and Eskimo-Aleut."], "inaugurate": ["To formally start something."], "fluid": ["A substance which deforms continuously under the action of a shear force, however small."], "acquaint": ["To make (usually oneself) familiar (with).", "To inform (somebody) of something."], "beside": ["Having the position next to a given place, location or object"], "acquisitive": ["Eager to get possessions.", "Excessively desirous of money, wealth or possessions."], "acrid": ["Being harsh or corrosive in tone.", "Harsh in smell or taste."], "acrimonious": ["Bitter and sharp in language or tone."], "loquacious": ["Full of trivial conversation."], "chatty": ["Full of trivial conversation."], "paramecium": ["A group of unicellular ciliate protozoa."], "acrimony": ["A rough and bitter manner."], "acrobatic": ["Of, pertaining to, or like an acrobat or acrobatics."], "acrobatics": ["Performance of acrobatic feats."], "Golden Rule": ["Moral rule, according to which it is forbidden to cause somewhat to someone which one does not want to suffer."], "ethic of reciprocity": ["Moral rule, according to which it is forbidden to cause somewhat to someone which one does not want to suffer."], "actionable": ["Giving cause for legal action."], "activate": ["To put into force or operation."], "actively": ["Characterized by energetic work, participation, etc."], "homophonous": ["Having the same pronunciation."], "actuality": ["An actual condition or circumstance."], "actually": ["As an actual or existing fact.", "[Used as sentence modifier to indicate that it is of interest, or contrary to what one might think.]", "In reality, as opposed to possibly, potentially, theoretically, apparently, imaginably, etc."], "indigenous": ["Characteristic of or relating to people inhabiting a region from the beginning.", "A descendant of the first known human inhabitants of a region or country."], "acumen": ["A quick and penetrating intelligence.", "Quickness, accuracy, and keenness of judgment or insight."], "adage": ["A wise saying or proverb."], "addict": ["A drugs addict, someone using drugs.", "A person who has become physiologically dependent on a substance, especially drugs.", "A person who is so ardently devoted to something that it resembles an addiction."], "chicken soup": ["Any soup made with pieces of chicken or chicken broth."], "T\u00f3rshavn": ["The capital of the Faroe Islands."], "tomato soup": ["Soup made from tomatoes."], "exsanguination": ["The fatal process of total blood loss."], "addition sign": ["Sign +."], "plus sign": ["Sign +."], "addressee": ["The person to whom a letter etc is addressed."], "works in a": ["Indicates the location where a profession is practiced."], "butcher shop": ["A shop that is specialized in meat and meat products."], "adept": ["A highly skilled person.", "Very skilled."], "adequacy": ["Sufficiency for a particular purpose."], "Tukang Besi North": ["A language of Indonesia (Sulawesi)."], "adherence": ["Faithful support for a cause or political party or religion."], "B\u00e4di Kanum": ["A language of Indonesia (Papua)"], "adherent": ["Someone who believes and helps to spread the doctrine of another."], "Korowai": ["A language of Indonesia (Papua)."], "Khams Tibetan": ["A language of China."], "Kehu": ["A language of Indonesia (Papua)."], "Kuturmi": ["A language of Nigeria."], "New York City": ["The largest city in the state of New York and the largest city in the United States."], "adjacent": ["Close to; lying near."], "adjournment": ["Suspension until a later stated time."], "adjudge": ["To determine or declare to be by judicial procedure."], "Ukrainian hryvnia": ["The currency of the Ukraine."], "Sea of Azov": ["A northern section of the Black Sea, linked to the larger body through the Strait of Kerch."], "Ukrainian Sign Language": ["A sign language used in Ukraine."], "Dnieper": ["A river which flows from Russia, through Belarus and Ukraine, ending its flow in the Black Sea."], "Moskva": ["A river that flows through the Moscow and Smolensk Oblasts in Russia, and is a tributary of the Oka River.", "A river that flows through the Moscow and Smolensk Oblasts in Russia, and is a tributary of the Oka River."], "Volga": ["The largest river in Europe flowing through the western part of Russia."], "adjudicate": ["To bring to an end; to settle conclusively.", "To act as a judge.", "To put on trial, hear the case and act as the judge."], "Little Bittern": ["A wading bird, Ixobrychus minutus, in the heron family Ardeidae, native to the Old World."], "Squacco Heron": ["A small heron, 40-49 cm long with 82-95 cm wingspan of Old World origins."], "Black-crowned Night Heron": ["A medium-sized heron (Nycticorax nycticorax)."], "Kotava": ["An artificial language created by Staren Fetcey in 1978."], "adjustable": ["Capable to being adjusted."], "predation": ["Instinctual behavior pattern in which food is obtained by killing and consuming other animals."], "Lusi": ["A language of Papua New Guinea."], "administer": ["To have charge of; manage.", "To give or apply (medications).", "To divide something into portions and dispense it."], "administrator": ["Someone who administers a business.", "Someone who administers a computer system or computer network and who has special rights and tasks.", "Someone who manages a government agency or department."], "admissibility": ["Possibility or capability of being admitted."], "admittance": ["The right or permission to enter."], "located in": ["Indicates that something exists in a geographical entity."], "Apennine Mountains": ["A mountain range stretching 1000 km from the north to the south of Italy along its east coast, traversing the entire peninsula, and forming the backbone of the country."], "Tiber": ["The third-longest river in Italy."], "stipulation": ["Something that is stated as a condition for an agreement."], "Ganges": ["A major river in the Indian subcontinent flowing east through the plains of northern India into Bangladesh."], "Shatt al-Arab": ["A river in Iraq of some 200 km in length, formed by the confluence of the Euphrates and the Tigris."], "Melbourne": ["The second most populous city in Australia."], "Yarra": ["A river in southern Victoria, Australia."], "Port Phillip Bay": ["A large bay in southern Victoria, Australia."], "Port Phillip": ["A large bay in southern Victoria, Australia."], "Massif Central": ["A mountainous plateau in southern France that covers almost one sixth of the country."], "admittedly": ["As is generally accepted."], "admonition": ["A gentle reproof.", "A gentle advice or warning given to someone to tell him to be cautious about something."], "Ural Mountains": ["A mountain range that runs roughly north and south through western Russia."], "Rocky Mountains": ["A broad mountain range in western North America."], "isokinetic dynamometry": ["Isokinetic measurements are measurements of muscular torque at a constant velocity"], "Po": ["A river that flows 652 kilometers eastward across northern Italy."], "Dutch auction": ["An auction that starts at a high price that is gradually reduced by the auctioneer until someone is willing to buy."], "auctioneer": ["A person who takes bids to find the best price for a vendor."], "commission": ["A duty that involves fulfilling a request.", "A fee charged for carrying out a transaction.", "A body or group of people, officially tasked with carrying out a particular function.", "To charge with a task."], "adorable": ["Very attractive or delightful."], "adore": ["Love intensely."], "adornment": ["Something that beautifies or adorns."], "adrenaline": ["A hormone secreted by the adrenal medulla which stimulates the heart pulse and provokes the constriction of blood vessels."], "adrift": ["Without direction or purpose."], "adroit": ["Nimble in the use of the hands or body."], "dark red": ["Having a dark red colour."], "justice of the peace": ["A judicial officer with authority to determine minor criminal offences and civil proceedings as set out in a particular statute."], "adroitness": ["Nimble in the use of the hands and body."], "adulate": ["To flatter in an obsequious manner."], "adulteration": ["The product of adulterating."], "adulterer": ["A person who commits adultery."], "adulterous": ["Relating to adultery."], "adulthood": ["(Of a human or animal) state of having attained full size and strength."], "advanced": ["Having made a lot of progress.", "Ahead of the times.", "Comparatively late in a course or stage of development.", "At a higher level in education or knowledge or skill."], "advancement": ["A forward step; an improvement."], "ambition": ["Drive to achieve something."], "communicable diseases": ["A disease caused by a microorganism or other agent, such as a bacterium, fungus, or virus, that enters the body of an organism."], "spokeswoman": ["A female person who represents someone else's policy or purpose."], "Beringia": ["Continuous land bridge which joined present-day Alaska and present-day Siberia until circa 10,000 years ago."], "olympic": ["Of or relating to the Olympic Games."], "Bering land bridge": ["Continuous land bridge which joined present-day Alaska and present-day Siberia until circa 10,000 years ago."], "Olympic Games": ["An international multi-sport event taking place every fourth year."], "quantity": ["A unit that expresses a mass or number."], "corps": ["Closed group of people that belong to the same category."], "police service": ["Someone that works for the police."], "tabletennis player": ["Male person who plays tabletennis.", "A female person who plays tabletennis.", "Person who plays tabletennis."], "tabletennis": ["A sport where two or four players use a bat to play a small, light plastic ball over a net onto a table."], "table tennis": ["A sport where two or four players use a bat to play a small, light plastic ball over a net onto a table."], "Auriga": ["A northern constellation. It was one of the 48 constellations listed by Ptolemy, and counts as one of the 88 modern constellations."], "Bo\u00f6tes": ["One of the 88 modern constellations and was also one of the 48 constellations listed by Ptolemy (source: Wikipedia)."], "Canes Venatici": ["A small northern constellation that represents the dogs Chara and Asterion held on a leash by Bo\u00f6tes."], "Canis Major": ["One of the 88 modern constellations, and was also in Ptolemy's list of 48 constellations."], "Canis Minor": ["One of the 88 modern constellations, and was also in Ptolemy's list of 48 constellations."], "Carina": ["A southern constellation which forms part of the old constellation of Argo Navis. It contains Canopus, the second brightest star in the night sky (source: Wikipedia)."], "canopy": ["A high cover providing shelter, such as a cloth supported above an object, particularly over a bed.", "The layer formed naturally by the leaves and branches of trees and plants."], "advantaged": ["In a position of superiority."], "advantageous": ["Productive, conducive, helpful or good to something or someone.", "Providing an advantage."], "Advent": ["The period beginning four Sundays before Christmas, observed in commemoration of the coming of Christ into the world."], "poly peptide": ["Any of a class of high-molecular weight polymer compounds composed of a variety of alfa-amino acids joined by peptide linkages."], "prolly": ["In all likelihood; in a probable manner"], "spring tide": ["The tide with the most variation in water level, occurring during new moons and full moons."], "mistaken": ["Containing one error or several errors."], "erroneous": ["Containing one error or several errors.", "Contradicting the facts."], "faulty": ["Containing one error or several errors."], "unsound": ["Containing one error or several errors."], "defective": ["Containing one error or several errors."], "foul": ["An act that violates the rules of a sport."], "execrable": ["Highly detestable. (Source: IPDF)"], "repulsive": ["Unpleasant, offensive, or causing dislike."], "cursed": ["Sentenced to eternal punishment in hell."], "heinous": ["Totally reprehensible."], "despicable": ["Morally reprehensible."], "contemptible": ["Deserving of contempt or scorn."], "wretched": ["Morally reprehensible."], "lousy": ["Of very poor quality."], "stinking": ["Having a bad smell."], "vile": ["Morally reprehensible."], "atrocious": ["Totally reprehensible."], "repugnant": ["Unpleasant, offensive, or causing dislike."], "disgusting": ["Causing disgust or detestation.", "Unpleasant to the taste."], "repellent": ["A substance to repel insects."], "awful": ["Dreadful; causing alarm and fear."], "Hercules": ["The fifth largest of the 88 modern constellations. It was also one of Ptolemy's 48 constellations. It was named after the Roman name (Hercules) of the Greek mythological hero Herakles (source: Wikipedia).", "The Roman name for the mythical Greek hero Heracles, son of Zeus and the mortal Alcmena."], "Markov Chain": ["A model that is suitable for modelling a sequence of random variables, in which the probability that a variable assumes any specific value depends only on the value of a specified number of most recent variables that precede it (source: Nature)."], "statistical inference": ["The process whereby data are observed and then statements are made about unknown features of the system that gave rise to the data."], "meteor shower": ["A celestial event where a group of meteors are observed to radiate from one point in the sky."], "novelist": ["Someone who writes novels."], "neap tide": ["The tide with the least variation in water level, occurring during half moons."], "tidal range": ["Difference between the highest water level at high tide and the lowest water level at low tide"], "adventure": ["An exciting or very unusual experience."], "Khandesi": ["A language of India."], "Kapori": ["A language of Indonesia (Papua)."], "Kasua": ["A language of Papua New Guinea."], "Nkhumbi": ["A Bantu language of Angola."], "adventurer": ["A person who has, enjoys, or seeks adventures."], "Kanu": ["A language of Democratic Republic of the Congo."], "Kele": ["A language of Democratic Republic of the Congo."], "Keapara": ["A language of Papua New Guinea."], "Netherlands Antillean gulden": ["The currency of the Netherlands Antilles."], "adventurous": ["Liking or eager for adventure."], "short story": ["Fictional narrative prose that tends to be more concise and to the point than novels."], "novella": ["A narrative work of prose fiction longer than a short story but shorter than a novel."], "Kim": ["A language of Chad."], "Koshin": ["A language of Cameroon."], "Eastern Parbate": ["A language of Nepal."], "Kimaama": ["A language of Indonesia (Papua)."], "Kilmeri": ["A language of Papua New Guinea."], "adversarial": ["Of a person, group or force that opposes or attacks."], "advertise": ["\u0422o make known or popularize (e.g. a product) by announcement or publicity in a paper or journal or on TV.", "To call attention to."], "advertiser": ["Someone whose business is advertising."], "Hag\u00e5t\u00f1a": ["The capital of Guam."], "Kitsai": ["An extinct Caddoan language which was spoken in Oklahoma and became extinct in the 1930s."], "Kilivila": ["A language of Papua New Guinea."], "Gikuyu": ["A Bantu language spoken by the Kikuyu people in the area between Nyeri and Nairobi of Kenya."], "advisable": ["Desirable or wise."], "Kenyan Sign Language": ["A language of Kenya."], "South African Sign Language": ["A language of South Africa."], "advisedly": ["After careful or thorough consideration.", "With intention; in an intentional manner."], "adviser": ["One who gives advice."], "Maritime Sign Language": ["A sign language, derived from British Sign Language, that was formerly used in Nova Scotia, New Brunswick, and Prince Edward Island, Canada."], "Nova Scotian Sign Language": ["A sign language, derived from British Sign Language, that was formerly used in Nova Scotia, New Brunswick, and Prince Edward Island, Canada."], "advocacy": ["The profession or work of an advocate."], "Yucatec Maya Sign Language": ["A sign language used in Mexico."], "aerial": ["A wire or rod (or a set of these) able to send or receive radio waves, etc.", "Of, in, or from the air."], "Alofi": ["The capital of Niue."], "is member of": ["Indicates the membership of an organisation."], "consort": ["The spouse, usually of royalty or of a deity."], "aerobatics": ["Acrobatics performed by an aircraft."], "aerobics": ["A physical fitness program based on such exercises."], "aerodrome": ["An airfield equipped with control tower and hangars as well as accommodations for passengers and cargo."], "Sheshi Kham": ["A language of Nepal."], "Kosadle": ["A language of Indonesia (Papua)."], "Kis": ["A language of Papua New Guinea."], "Agob": ["A language of Papua New Guinea."], "Kirmanjki": ["A language of Turkey (Asia)."], "Kimbu": ["A language of Tanzania."], "Northeast Kiwai": ["A language of Papua New Guinea."], "Kirikiri": ["A language of Indonesia (Papua)."], "Kisi": ["A language of Tanzania."], "aerodynamic": ["Of or relating to aerodynamics."], "aeronautic": ["Of or relating to aeronautics."], "aeronautics": ["The science or practice of flying."], "aesthete": ["One who professes great sensitivity to the beauty of art and nature."], "aesthetic": ["Relating to esthetics.", "Relating to the philosophy or theories of aesthetics."], "homoglyph": ["One of two or more characters with shapes that are either identical, or cannot be differentiated by quick visual inspection."], "lexical category": ["The category a word is assigned to based on its syntactic function within a specified language."], "rolling pin": ["A cylindrical food preparation utensil used to shape and flatten dough."], "Black Sea coast": ["The coast of the Black Sea."], "impluvium": ["Basin used to collect rainwater in the atrium of a Roman house."], "compluvium": ["Rectangular opening in the roof of the atrium of a Roman house which serves as source of light and is used to collect rainwater in the impluvium underneath."], "sweet mustard": ["Mustard made of ground and partially roasted grains of mustard seed, sweetened with sugar, sweetener or apple sauce."], "weisswurst": ["Traditional Bavarian boiled sausage made from finely minced veal and pork bacon flavored with parsley, lemon, mace, onions, ginger and cardamom."], "today's": ["Of the present day"], "present-day": ["Of the present day"], "material name": ["The name for a physical material, such as Gases, Fluids, etc."], "Benelux": ["An economic union in Western Europe comprising three neighbouring monarchies, Belgium, the Netherlands, and Luxembourg."], "affability": ["Showing warmth and friendliness."], "affair": ["Happenings which are connected with a particular person or thing.", "A vaguely specified subject, question, situation, etc. that is or may be an object of consideration or action.", "A love relationship."], "microstraining": ["A process consisting of physical straining of solids through a screen with continuous backwashing, utilizing a rotating drum to support the screen. Static screens are also used in particular applications."], "affecting": ["Moving or exciting the feelings or emotions."], "Mlap": ["A language of Indonesia (Papua)."], "Coastal Konjo": ["A language of Indonesia (Sulawesi)."], "Southern Kiwai": ["A language of Papua New Guinea."], "Kisar": ["A language of Indonesia (Maluku)."], "Khalaj": ["A language of Iran and Azerbaijan."], "Zabana": ["A language of Solomon Islands."], "Honiara": ["The capital of the Salomon Islands."], "Solomon Islands dollar": ["The currency of the Solomon Islands."], "Anuta": ["A language of Solomon Islands."], "Gela": ["A language of Solomon Islands."], "tomato knife": ["Special knife with a serrated edge for cutting tomatoes."], "bread knife": ["Knife for cutting bread with a relatively long and serrated edge."], "Canadian Ukrainian": ["A variety of the Ukrainian language specific to the Ukrainian Canadian community descended from the first two waves of historical Ukrainian emigration to Western Canada."], "affective": ["Causing emotion or feeling."], "Qumuq": ["A Turkic language, spoken by about 200 thousand speakers (the Kumyks) in the Dagestan republic of Russian Federation."], "Kumuk": ["A Turkic language, spoken by about 200 thousand speakers (the Kumyks) in the Dagestan republic of Russian Federation."], "Kumuklar": ["A Turkic language, spoken by about 200 thousand speakers (the Kumyks) in the Dagestan republic of Russian Federation."], "Kumyki": ["A Turkic language, spoken by about 200 thousand speakers (the Kumyks) in the Dagestan republic of Russian Federation."], "affiliated": ["Connected with or joined to (a larger group etc) as a member."], "singulare tantum": ["A noun that appears only in the singular form."], "collective noun": ["Noun that summarizes several similar objects in one term."], "Old Irish": ["Oldest form of the Irish language, used from circa 600 to 900."], "Old Norse": ["Collective name for the North Germanic languages spoken between 800 (begin of Viking era) and 1500 in Scandinavia."], "Police Motu": ["A language of Papua New Guinea"], "Pidgin Motu": ["A language of Papua New Guinea"], "number of days": ["The fixed number of days of a period."], "phosphorus removal": ["The process of conversion of polyphosphates to soluble forms and then to insoluble forms, and subsequent separation of the insoluble phosphorus forms from the wastewater accomplished through chemical percipitation using lime or mineral additives such as alum or ferric chloride (source: USACE)."], "Tuvin": ["A Turkic languages spoken in the Republic of Tuva in south-central Siberia in Russia, in China and Mongolia."], "moiety": ["In organic chemistry, a specific grouping of elements that is characteristic of a class of compounds, and determines some properties and reactions of that class"], "affiliation": ["A social or business relationship."], "affinity": ["An inherent similarity between persons or things."], "affirm": ["To establish or strengthen with new evidence or facts.", "Maintain as true.", "To declare or affirm solemnly and formally as true."], "affirmation": ["The assertion that something exists or is true."], "beehive": ["A box or receptable in which bees are kept for their honey.", "A structure that provides a natural habitation for bees; as in a hollow tree.", "A backcombed hairdo of the Sixties."], "affirmative": ["Expressing agreement or consent."], "afflux": ["A flow to or toward an area, especially of blood or other fluid toward a body part: an afflux of blood to the head."], "afford": ["To be the cause or source of (feeling, effect, etc.)", "To be able to spend money, time etc. on or for something."], "affray": ["The fighting of two or more persons in a public place."], "affront": ["An offense to one's dignity or self-respect.", "To insult or offend.", "To put someone down, or show disrespect by the use of insulting language or dismissive behaviour."], "afresh": ["Once more."], "vesical": ["Pertaining to the urinary bladder."], "Saterfriesisch": ["Frisian language spoken mainly in the municipality Saterland in Germany"], "aftercare": ["Care and treatment of a convalescent patient."], "aftereffect": ["A delayed effect of a drug or therapy."], "afterpains": ["Cramps or pains following childbirth, caused by contractions of the uterus."], "aftertaste": ["A taste remaining after the substance causing it is no longer in the mouth."], "Chttash": ["A Turkic language spoken in the federal subject of Chuvashia, located in central Russia."], "Mar\u0101thi": ["An Indic language spoken mainly in western and southern India."], "afterthought": ["Thinking again about a choice previously made."], "afterwards": ["Later or after something else has happened or happens."], "aged": ["(For a person or an animal) Having lived for a relatively long period of time.", "Being of advanced age."], "ageless": ["Never growing old or never looking older.", "Not showing any signs of age."], "is followed by": ["Indicates the next in a normal succession."], "Community class attributes": ["Community class attributes."], "is played by": ["Names the musician that plays an instrument."], "daf": ["A large-sized frame drum used to accompany both popular and classical music in countries of the Middle East."], "Persian calendar": ["A solar calendar currently used in Iran and Afghanistan."], "Iranian calendar": ["A solar calendar currently used in Iran and Afghanistan."], "saxophonist": ["Someone who plays the saxophone."], "trombonist": ["A person who plays or practices the trombone."], "partners with": ["Indicates that it goes together on the same level."], "brother-in-law": ["The husband of one's sister.", "The brother of one's wife.", "The husband of one's spouse's sister.", "The husband of the sister of one's husband.", "The husband of the sister of one's wife"], "age-old": ["Very old or of long standing."], "flautist": ["A musician who plays the flute.", "A man or boy who plays the flute.", "A woman or girl who plays the flute."], "flutist": ["A musician who plays the flute.", "A man or boy who plays the flute.", "A woman or girl who plays the flute."], "aggression": ["Any offensive action, attack, or procedure."], "autotrophic": ["An organism able to produce its own food through photosynthesis."], "clarinetist": ["A player of the clarinet"], "aggressiveness": ["Behaviour characterized by or tending toward unprovoked offensives."], "aggrieved": ["Unhappy or hurt because of unjust treatment."], "Muharram": ["The first month of the Muslim calendar."], "Dhu al-Hijjah": ["The twelfth month of the Muslim calendar"], "Dhu al-Qa'dah": ["The eleventh month of the Muslim calendar."], "Shawwal": ["The tenth month of the Muslim calendar."], "Sha'aban": ["The eighth month of the Muslim calendar"], "Rajab": ["The seventh month of the Muslim calendar."], "Jumada al-thani": ["The sixth month of the Muslim calendar."], "Jumada al-awwal": ["The fifth month of the Muslim calendar."], "Rabi' al-thani": ["The fourth month of the Muslim calendar."], "Apure": ["A river of western Venezuela, formed by the confluence of the Sarare and Uribante near Guasdualito, in Venezuela.", "One of the 23 states (estados) into which Venezuela is divided, located in de south west of the country."], "Rabi' al-awwal": ["The third month of the Muslim calendar."], "Safar": ["The second month of the Muslim calendar."], "heterotroph": ["An organism that obtains its food though other organisms."], "Arauca": ["A river of Colombia and Venezuela, it rises in the Andes Mountains of north-central Colombia and ends at the Orinoco in Venezuela (soure: Wikipedia).", "A Department of Colombia located in the extreme north of the Orinoco part of Colombia (the Llanos Oriental), bordering Venezuela.", "A municipality and capital city of the Arauca Department of Colombia."], "aghast": ["Struck with horror."], "Barima": ["A tributary of the Orinoco River, entering 4 miles from the Atlantic Ocean. It originates in Guyana, flowing for approximately 210 miles before entering Venezuela about 50 miles from its mouth."], "Casiquiare": ["A distributary of the upper Orinoco, which flows southward into the Rio Negro. As such, it forms a unique natural canal between the Orinoco and Amazon river systems."], "Catatumbo": ["A river rising in northern Colombia, flowing into Lake Maracaibo in Venezuela."], "Maracaibo": ["The largest lake in South America, at 13,210 km\u00b2, and one of the oldest lakes on Earth. It is a large brackish lake in Venezuela, it is connected to the Gulf of Venezuela by a 55km strait on the northern edge of the lake, and fed by numerous rivers.", "The second-largest city in Venezuela after the national capital Caracas and is the capital of Zulia state."], "Black River": ["The largest left tributary of the Amazon and the largest blackwater river in the world. It has its sources along the watershed between the Orinoco and the Amazon basins, and also connects with the Orinoco by way of the Casiquiare canal. In Colombia, where their sources are, it is called the Guain\u00eda River."], "glass fibre": ["Long and thin fibre made of glass"], "quotidian": ["Occurring or returning in the ordinary course of events."], "teddy bear": ["A stuffed toy in the shape of a bear.", "A stuffed toy in the shape of a bear."], "paroxysm": ["A sudden recurrence of a disease."], "recur": ["To occur again."], "relapse": ["The reappearance of a disease after a period of improvement."], "forge": ["To use the intellect to plan or design something.", "A workshop in which metals are shaped by heating and hammering them.", "To make a copy of with the intent to deceive.", "To create and mold by hammering.", "To create something, usually for a specific function."], "smithy": ["A workshop in which metals are shaped by heating and hammering them."], "gauss": ["The unit of magnetic field strength in cgs systems of units, equal to 0.0001 tesla."], "unit of": ["Indicates what is measured by this unit."], "electric charge": ["The fundamental conserved property of some subatomic particles, which determines their electromagnetic interaction, expressed in coulomb."], "amount of substance": ["A physical quantity which is proportional to the number of elementary entities present."], "agility": ["The power of moving quickly and easily."], "agitate": ["To make someone excited and anxious.", "To try to arouse public feeling and action.", "Move or cause to move back and forth."], "miller": ["A person who owns or operates a mill, especially a flour mill."], "cameraman": ["Somebody who operates a movie camera or television camera."], "agog": ["Eager and excited."], "agonize": ["To suffer extreme pain or anguish."], "knock over": ["To cause something to overturn by hitting it."], "fatally ill": ["Suffering from a grave and probably fatal illness."], "terminally ill": ["Suffering from a grave and probably fatal illness."], "drive round": ["To drive round something, particularly in order to avoid it."], "cloture": ["A motion or process aimed at bringing debate to a quick end in a parliamentary procedure."], "Biseni": ["A language of Nigeria."], "inductance": ["Property of an electric circuit: The ratio of the magnetic flux to the current that causes it.", "An electrical phenomenon whereby an electromotive force (EMF) is generated in a closed circuit by a change in the flow of current."], "agonized": ["Showing agony."], "agony": ["Great pain or suffering."], "aid agency": ["An organisation dedicated to distributing aid."], "ailing": ["Unsound or troubled."], "aimless": ["Without purpose."], "airbrush": ["An atomizer to spray paint by means of compressed air."], "air cargo": ["Cargo transported or to be transported by an air carrier."], "skerry": ["Small rocky island off the coast."], "airing": ["Exposure to air for freshening or drying."], "irrational": ["Not characterized by truth or logic.", "Of a real number, that cannot be written as the ratio of two integers.", "Extremely foolish or unwise."], "rational": ["Characterized by truth or logic."], "airer": ["A frame on which clothes are aired or dried."], "Highland Konjo": ["A language of Indonesia (Sulawesi)."], "Western Parbate": ["A language of Nepal."], "Kunjen": ["A language of Australia."], "bank of the Rhine": ["The bank of the Rhine."], "Kinnauri Harijan": ["A language of India."], "Pwo Eastern Karen": ["A language of Myanmar and Thailand."], "Kurudu": ["A language of Indonesia (Papua)."], "East Kewa": ["A language of Papua New Guinea."], "red kite": ["A medium-large bird of prey of the species Milvus milvus."], "Phrae Pwo Karen": ["A language of Thailand."], "Ramopa": ["A language of Papua New Guinea."], "Erave": ["A language of Papua New Guinea."], "Bumthangkha": ["A language of Bhutan."], "echidna": ["Echidnas, also known as \"spiny anteaters\", are the only surviving monotremes apart from the Platypus."], "airless": ["Without wind, without airflow.", "Poorly ventilated, without fresh air."], "stuffy": ["Poorly ventilated, without fresh air."], "airliner": ["A passenger aircraft operated by an airline."], "bruschetta": ["Italian appetizer consisting of roasted bread slices with garlic, salt and olive oil, often also tomatoes and basil."], "perception threshold": ["Threshold above which a stimulus is perceived."], "airlock": ["An airtight chamber, usually located between two regions of unequal pressure, in which air pressure can be regulated."], "Kakanda": ["A language of Nigeria."], "Kwerisa": ["A language of Indonesia (Papua)."], "Odoodee": ["A language of Papua New Guinea."], "Kinuku": ["A language of Nigeria."], "Kakabe": ["A language of Guinea."], "Mabaka Valley Kalinga": ["A language of Philippines."], "Kako": ["A language of Cameroon, Central African Republic and Congo."], "CAS registry number": ["A unique numerical identifier for chemical compounds, polymers, biological sequences, mixtures and alloys as assigned by the Chemical Abstracts Service."], "magnetic flux": ["The measure of quantity of magnetism, taking account of the strength and the extent of a magnetic field."], "airmail": ["A system of carrying mail by air."], "air-raid": ["An attack by aircraft."], "airspace": ["The space in the atmosphere immediately above the earth."], "on Saturdays": ["Every Saturday."], "on Sundays": ["Every Sunday."], "on Tuesdays": ["Every Tuesday."], "on Mondays": ["Every Monday."], "on Wednesdays": ["Every Wednesday."], "on Thursdays": ["Every Thursday."], "on Fridays": ["Every Friday."], "airtight": ["Preventing the entrance or escape of air or gas."], "air trap": ["A contrivance for shutting off foul air or gas from drains, sewers, etc."], "airway": ["A regular course followed by aircraft."], "airy": ["With plenty of (fresh) air.", "Light-hearted and not serious."], "Nobles of the Robe": ["French aristocrats under the Old Regime who owed their titles and rank to administrative posts in the royal government."], "Nobles of the Gown": ["French aristocrats under the Old Regime who owed their titles and rank to administrative posts in the royal government."], "vesicovaginal fistula": ["An abnormal anatomical passage between the urinary bladder and the vagina."], "fistula": ["Abnormal communication most commonly seen between two internal organs, or between an internal organ and the surface of the body."], "electrical conductance": ["Physics: Reciprocal of electrical resistance, measure of the ability of an object to conduct electric current"], "conductance": ["Physics: Reciprocal of electrical resistance, measure of the ability of an object to conduct electric current"], "on Tuesday evenings": ["Every Tuesday evening."], "Tuesday evening": ["The evening of Tuesday."], "Tuesday noon": ["The noon of Tuesday."], "cruise ship": ["Passenger ship for sea voyages where not the transport from one harbor to another is important but rather the stay on the usually comfortably equipped ship."], "cruise liner": ["Passenger ship for sea voyages where not the transport from one harbor to another is important but rather the stay on the usually comfortably equipped ship."], "vacuum cleaner": ["Electronic device that cleans dirt on a surface through suction."], "skyscraper": ["A very tall building with a great number of floors."], "Volturno": ["River in the South of Italy."], "aisle": ["A walkway between or along sections of seats in a theater, classroom, airplane or the like.", "A corridor in a supermarket with shelves on both sides."], "ajar": ["Partly open."], "nasal septum": ["The partition separating the two nasal cavities in the midplane, composed of cartilaginous, membranous and bony parts."], "TaqMan": ["TaqMan single nucleotide polymorphism version of PCR."], "alacrity": ["Cheerful willingness."], "Orang Seletar": ["A language of Malaysia (Peninsular) and Singapore."], "immunoglobulin": ["A protein that acts as an antibody."], "albino": ["A person with pale skin, light hair, pinkish eyes, and visual abnormalities resulting from a hereditary inability to produce the pigment melanin."], "penguin": ["An aquatic, flightless bird living almost exclusively in the Southern Hemisphere."], "drum kit": ["A collection of drums, cymbals and sometimes other percussion instruments arranged for convenient playing by a single drummer."], "albumen": ["The white of an egg, which consists mainly of albumin dissolved in water."], "alchemist": ["A practitioner of alchemy."], "alcoholism": ["The condition suffered by an alcoholic."], "albinism": ["A general term for a number of inherited defects of amino acid metabolism in which there is a deficiency or absence of pigment in the eyes, skin, or hair."], "alias": ["A false name.", "Otherwise called."], "alibi": ["The fact or a statement that a person accused of a crime was somewhere else when it was committed."], "scald": ["To burn oneself through contact with hot or boiling liquid.", "To burn through contact with hot or boiling liquid."], "Yaren": ["The unofficial capital of Nauru."], "transition metal": ["One of a group of metallic elements in which the members have the filling of the outermost shell to 8 electrons interrupted to bring the penultimate shell from 8 to 18 or 32 electrons; includes elements 21 through 29 (scandium through copper), 39 through 47 (yttrium through silver), 57 through 79 (lanthanum through gold), and 89 through 112 (actinium through ununbium) on."], "Afaka script": ["A syllabary of 56 glyphs (letters) devised in 1908 for the Aukan language."], "autonomous": ["Independent of the conscious will, associated in general with the nature of the unconscious and in particular with activated complexes.", "Functioning independently of other components or systems", "Existing or capable of existing independently."], "autonomic nervous system": ["Nerves that control involuntary muscles."], "Big Bang Theory": ["A theory explaining the formation and operation of the Universe."], "biodegradable": ["Subject to decay by microorganisms."], "biotic potential": ["The maximum growth rate of which a population is physiologically capable."], "aquitard": ["A zone within the earth that restricts the flow of groundwater from one aquifer to another."], "boiling point elevation": ["The addition of a nonvolatile solute making a solution boil at a higher temperature."], "Avogadro's Number": ["6.02 X 10^23. An honorary name attached to the calculated value of the number of atoms, molecules, etc. in a gram mole of any chemical substance."], "Avogadro's Principle": ["At equal temperature and pressure, equal volumes of gases contain the same number of molecules."], "antimatter": ["Matter composed of antiparticles."], "Mariotte-Boyle law": ["The volume of a fixed amount of gas varies inversely with the pressure of the gas."], "Boyle's law": ["The volume of a fixed amount of gas varies inversely with the pressure of the gas."], "adenine": ["One of two double carbon ring nitrogen bases in DNA."], "atomic mass number": ["The total number of nucleons (protons and neutrons) found in a nucleus."], "atomic mass unit": ["Unit of mass defined by the convention that the atom 12C has a mass of exactly 12 u; the mass of 1 u is 1.67 x 10^-27 kg."], "Cherenkov radiation": ["Light emitted by particles that move through a medium in which the speed of light is slower than the speed of the particles."], "cyclotron": ["Circular accelerator in which the particle is bent in traveling through a magnetic field, and an oscillating potential difference causes the particles to gain energy."], "curie": ["The original unit used to describe the intensity of radioactivity in a sample of material. One curie equals thirty-seven billion disintegrations per second, or approximately the radioactivity of one gram of radium. This unit is no longer recognized as part of the International System of units. It has been replaced by the becquerel."], "guanine": ["One of the five main nucleobases found in the nucleic acids DNA and RNA."], "adipose": ["Composed of animal fat."], "carcinoma": ["Cancer of the skin or nerve cells."], "cephalothorax": ["The fused head and thorax region of some segmented animals."], "cerebellum": ["The lower back of the brain, responsible for muscle coordination and balance."], "chloroplast": ["The sites of photosynthesis in plants."], "centrifugal force": ["The force that impels a material outward from a center of rotation."], "electromagnetic radiation": ["Radiation consisting of electric and magnetic fields that travel at the speed of light. Examples: light, radio waves, gamma rays, x-rays."], "chromosome mutation": ["A mutation involving some piece of a chromosome."], "fission": ["The splitting of a heavy nucleus into two roughly equal parts (which are nuclei of lower-mass elements), accompanied by the release of a relatively large amount of energy in the form of kinetic energy of the two parts and in the form of emission of neutrons and gamma rays (source: LBL)."], "cloaca": ["A cavity which collects deposits from intestine, urinary bladder, and sex organs."], "Geiger counter": ["A measuring instrument that consists of a gas-filled tube that discharges electrically when ionizing radiation passes through it and a device that records the events."], "coevolution": ["Two or more species changing because of changes in a species with which they are interacting."], "Hubble Constant": ["Ratio of outward speed of galaxies to their distances from Earth."], "induced radioactivity": ["Radioactivity that is created by bombarding a substance with neutrons in a reactor or with charged particles produced by particle accelerators."], "radioisotope": ["An unstable isotope of an element that decays or disintegrates spontaneously, emitting radiation."], "neutrino": ["An electrically neutral particle with negligible mass. It is produced in processes such as beta decay and reactions that involve the weak force (source: LBL)."], "linear accelerator": ["Particle accelerator laid out in a straight line."], "karma": ["The idea that the like results of the good and evil a person does will return either in this life or in a later one."], "astrophysics": ["The branch of astronomy that deals with the physics of the universe, including the physical properties (luminosity, density, temperature, and chemical composition) of celestial objects such as stars, galaxies, and the interstellar medium, as well as their interactions."], "observational astronomy": ["A division of the astronomical science that is concerned with getting data, in contrast with theoretical astrophysics which is mainly concerned with finding out the measurable implications of physical models. (source: Wikipedia)"], "physical cosmology": ["A branch of astronomy, is the study of the large-scale structure of the universe and is concerned with fundamental questions about its formation and evolution. (source Wikipedia)"], "geochemistry": ["Science that involves study of the chemical composition of the Earth and other planets, chemical processes and reactions that govern the composition of rocks and soils, and the cycles of matter and energy that transport the Earth's chemical components in time and space, and their interaction with the hydrosphere and the atmosphere."], "paleobiology": ["A growing and comparatively new discipline which combines the methods and findings of the natural science biology with the methods and findings of the earth science paleontology."], "planetary science": ["The science of planets, or planetary systems, and the solar system."], "earth sciences": ["The sciences related to the planet Earth such as geology and meteorology."], "is practiced by a": ["Indicates the practitioner that is associated with an activity."], "paleontologist": ["Someone who studies or practices paleontology."], "terminologist": ["Someone who studies terminology."], "Ndyuka": ["A English Creole language spoken by the Ndyuka people of Suriname."], "geomorphologist": ["Someone who studies geomorphology."], "alien": ["Being or from or characteristic of another place or part of the world.", "A person who comes from a foreign country.", "A creature from another planet.", "From another planet."], "animal communications": ["Any behaviour on the part of one animal that has an effect on the current or future behaviour of another animal."], "ethnobotany": ["The study of the relationship between plants and people."], "cell biology": ["A branch of the biological sciences which deals with the structure, behaviour, growth, and reproduction of cells and the functions and chemistry of cell components."], "chronobiology": ["A field of science that examines periodic (cyclic) phenomena in living organisms and their adaptation to solar and lunar related rhythms."], "cryobiology": ["The study of living organisms, organs, biological tissues or biological cells at low temperatures."], "entomology": ["The scientific study of insects."], "linnaean taxonomy": ["A method of classifying living things, originally devised by (and named for) Carl Linnaeus, although it has changed considerably since his time."], "neuroscience": ["A field that is devoted to the scientific study of the nervous system."], "phycology": ["A subdiscipline of botany, is the scientific study of algae."], "cryptozoology": ["The search for animals believed to exist, but for which conclusive evidence is missing as well as for known animals believed to be extinct."], "herpetology": ["The branch of zoology concerned with the study of reptiles and amphibians."], "oology": ["The branch of zoology that deals with the study of eggs, especially birds' eggs."], "primatology": ["The study of primates."], "zootomy": ["The dissection of animals."], "physiologist": ["A person who studies or specializes in physiology."], "astrophysicist": ["Someone who studies or practices astrophysics"], "alienate": ["To make withdrawn or isolated or emotionally dissociated.", "To cause to feel less close or friendly.", "To pass to someone else property or other rights about something."], "flush toilet": ["A toilet bowl that can be flushed with water supplied under pressure and that is equipped with a water-sealed trap above the floor level."], "parallel computing": ["A form of computing in which many instructions are carried out simultaneously (source: Almasi and Gottlieb)."], "alienation": ["Emotional isolation or dissociation."], "alight": ["To get down from or out of a vehicle.", "To settle or stay after descending.", "Lighted up by or as by fire or flame."], "philosopher": ["Someone who studies or practices philosophy"], "cheminformatics": ["The use of computer and informational techniques, applied to a range of problems in the field of chemistry."], "chemical informatics": ["The use of computer and informational techniques, applied to a range of problems in the field of chemistry."], "computational chemistry": ["A branch of chemistry that uses rules of theoretical chemistry, incorporated into efficient computer programs, to calculate the structures and properties of molecules."], "quantum chemistry": ["A branch of theoretical chemistry which applies quantum mechanics and quantum field theory to address issues and problems in chemistry. (source: Wikipedia)"], "theoretical chemistry": ["The branch of chemistry that involves the use of physics to explain or predict chemical phenomena."], "theoretical physics": ["Branch of physics that employs mathematical models and abstractions of physics in an attempt to explain experimental data taken of the natural world."], "computational physics": ["The study and implementation of numerical algorithms in order to solve problems in physics for which a quantitative theory already exists."], "cryogenics": ["The study of the production of very low temperatures (below \u2013150 \u00b0C, \u2013238 \u00b0F or 123 K) and the behavior of materials at those temperatures."], "theology": ["The study of religion and religious belief, or a particular system or school of religious beliefs and teachings."], "theologian": ["Someone who studies theology."], "parasitologist": ["Someone who studies or practices parasitology."], "open-pit mining": ["The extraction of metal ores and minerals that lie near the surface by removing the overlying material and breaking and loading the ore."], "especially": ["Mainly.", "In a special manner.", "[Used to indicate a notable or particular example of a previous mentioned group]."], "fluid dynamics": ["The sub-discipline of fluid mechanics dealing with fluids (liquids and gases) in motion."], "fluid mechanics": ["The study of how fluids move."], "fluid statics": ["A field within fluid mechanics that studies fluids at rest."], "hydrostatics": ["A field within fluid mechanics that studies fluids at rest."], "hydrodynamics": ["Fluid dynamics applied to liquids, such as water, alcohol, oil, and blood."], "align": ["To arrange in a straight line.", "To bring into cooperation or agreement with a particular group, party, cause, etc. Be or come into adjustment with.", "To align oneself with a group or a way of thinking.", "To bring (components or parts, e.g., a car's wheels) into proper or desirable coordination correlation."], "eukaryote": ["Any organism whose cells contain a nucleus and other organelles enclosed within membranes."], "prokaryote": ["A group of organisms that lack a cell nucleus (karyon), or any other membrane-bound organelles. Most are unicellular, but some prokaryotes are multicellular organisms. (source: Wikipedia)"], "allay": ["To lessen the intensity of or calm."], "mathematical physics": ["The scientific discipline concerned with the application of mathematics to problems in physics and the development of mathematical methods suitable for such applications and for the formulation of physical theories. (source: Wikipedia)"], "medical physics": ["A branch of applied physics concerning the application of physics to medicine."], "Taurids": ["An annual meteor shower associated with the comet Encke."], "molecular physics": ["The study of the physical properties of molecules and of the chemical bonds between atoms that bind them."], "quantum mechanics": ["The study of the relationship between energy quanta (radiation) and matter, in particular that between valence shell electrons and photons."], "solid-state physics": ["The largest branch of condensed matter physics, is the study of rigid matter, or solids."], "statistical mechanics": ["The application of probability theory, which includes mathematical tools for dealing with large populations, to the field of mechanics, which is concerned with the motion of particles or objects when subjected to a force."], "vehicle dynamics": ["The dynamics of vehicles, here assumed to be ground vehicles."], "acantholysis": ["A breakdown of a cell layer in the epidermis."], "probability theory": ["The branch of mathematics concerned with analysis of random phenomena."], "number theory": ["The branch of pure mathematics concerned with the properties of numbers in general, and integers in particular, as well as the wider classes of problems that arise from their study."], "Rabi`-ul-Akhir": ["The fourth month of the Muslim calendar."], "Jumaada-ul-Akhir": ["The sixth month of the Muslim calendar."], "Jumada-l-Akhra": ["The sixth month of the Muslim calendar."], "allegedly": ["According to what has been alleged."], "allegiance": ["Loyalty or devotion to some person, group, cause, or the like."], "allegorical": ["Of an allegory, expressed with an allegory."], "allegory": ["A representation of an abstract or spiritual meaning through concrete or material forms."], "foreword": ["An introductory section preceding the main text of a book or other document"], "scrutiny": ["A close, careful examination or study."], "scrutinize": ["To examine carefully."], "dial plate": ["A round disk with numbers of 0 to 9 that is used to dial the phone number at old telephones"], "Middle Irish": ["A Goidelic language spoken in Ireland, Scotland and the Isle of Man from the 10th to 12th centuries."], "all-embracing": ["Applying to or including everything."], "allergic": ["Characterized by or caused by allergy."], "alleviate": ["To make easier to endure; provide physical relief, as from pain.", "To make easy or easier."], "alleviation": ["The feeling that comes when something burdensome is removed or reduced."], "zoologist": ["Someone who studies or practices zoology."], "alley cat": ["A homeless cat that scavenges for food in alleys, streets, etc."], "rheumatology": ["A subspecialty of internal medicine and pediatrics devoted to the diagnosis and therapy of rheumatic diseases. Rheumatologists mainly deal with problems involving the joints and the allied conditions of connective tissue."], "Surinamese": ["A creole language spoken in Suriname.", "A person born in Surinam."], "emirate": ["The quality, dignity, office or territorial competence of any Emir."], "Arabian Peninsula": ["A peninsula in Southwest Asia at the junction of Africa and Asia consisting mainly of desert."], "Persian Empire": ["A series of historical empires that ruled over the Iranian plateau, the original Persian homeland, and beyond in Western Asia, Central Asia and the Caucasus. (source:Wikipedia)"], "Ottoman Empire": ["A multi-ethnic and multi-religious Turkish-ruled state. At the height of its power (16th \u2013 17th century), it spanned three continents, controlling much of Southeastern Europe, the Middle East and North Africa, stretching from the Strait of Gibraltar (and, in 1553, the Atlantic coast of Morocco beyond Gibraltar) in the west to the Caspian Sea and Persian Gulf in the east, from the edge of Austria, Slovakia and parts of Ukraine in the north to Sudan, Eritrea, Somalia and Yemen in the south. (source: Wikipedia)"], "protectorate": ["A political entity that formally agrees by treaty to enter into an unequal relationship with another, stronger state, called the protector, which engages to protect it against third parties, in exchange for which the protectorate usually accepts specified obligations, which may vary greatly, depending on the real nature of their relationship. (source: Wikipedia)"], "Arab League": ["A regional organization of Arab States in the Middle East and North Africa."], "freedom of religion": ["A guarantee by a government for freedom of belief for individuals and freedom of worship for individuals and groups."], "Iranian Revolution": ["The revolution that transformed Iran from a monarchy under Shah Mohammad Reza Pahlavi, to an Islamic republic under Ayatollah Ruhollah Khomeini, the leader of the revolution and founder of the Islamic Republic. (source Wikipedia)"], "Muslim": ["An adherent of the religion of Islam."], "Christianity": ["A monotheistic religion centered on the life and teachings of Jesus of Nazareth as depicted in the New Testament."], "Bedouin": ["A desert-dwelling Arab nomadic pastoralist, found throughout most of the desert belt extending from the Atlantic coast of the Sahara via the Western Desert, Sinai, and Negev to the Arabian Desert. (source Wikipedia)"], "pearl": ["A hard, rounded object produced within the soft tissue (specifically the mantle) of a living shelled mollusk."], "Wahhabism": ["A conservative 18th century reform movement of Sunni Islam founded by Muhammad ibn Abd-al-Wahhab, after whom the movement is named."], "Qur'an": ["The central religious text of Islam."], "Sunnah": ["Those religious actions that were instituted by Muhammad during the 23 years of his ministry and which Muslims initially received through consensus of companions of Muhammad (Sahaba), and further through generation-to-generation transmission. (source: Wikipedia)"], "cacao": ["(Theobroma cacao) A small (4\u20138 m tall (15-26 ft)) evergreen tree in the family Sterculiaceae (alternatively Malvaceae), native to the deep tropical region of the Americas."], "Key lime": ["Small tree of the genus Citrus, scientific name: Citrus aurantifolia"], "sexual reproduction": ["A union that results in increasing genetic diversity of the offspring. It is characterized by two processes: meiosis, involving the halving of the number of chromosomes; and fertilization, involving the fusion of two gametes and the restoration of the original number of chromosomes. During meiosis, the chromosomes of each pair usually cross over to achieve genetic recombination. (source:Wikipedia)"], "nucleotide": ["A chemical compound that consists of 3 portions: a heterocyclic base, a sugar, and one or more phosphate groups."], "human genome": ["The genome of Homo sapiens, which is composed of 23 distinct pairs of chromosomes (22 autosomal + X + Y) with a total of approximately 3 billion DNA base pairs containing an estimated 20,000\u201325,000 genes. (source: Wikipedia)"], "thymine": ["One of the four bases in the nucleic acid of DNA. The others are adenine, guanine, and cytosine. Thymine always pairs with adenine."], "cytosine": ["One of the five main nucleobases found in the nucleic acids DNA and RNA."], "molecular mass": ["The mass of one molecule of that substance, relative to the unified atomic mass unit u (equal to 1/12 the mass of one atom of carbon-12)."], "spermatozoon": ["The haploid cell that is the male gamete."], "spermatozoan": ["The haploid cell that is the male gamete."], "sperm cell": ["The haploid cell that is the male gamete."], "herpetologist": ["Someone who studies or practices herpetology."], "chromatin": ["The complex of DNA and protein that makes up chromosomes."], "protein biosynthesis": ["The process in which cells build proteins. The term is sometimes used to refer only to protein translation but more often it refers to a multi-step process, beginning with amino acid synthesis and transcription which are then used for translation. (source: Wikipedia)"], "allied": ["Joined by political agreement or treaty."], "phylum": ["A biological taxon, a group of species, part of a kingdom and consisting of one or more classes."], "allot": ["To appropriate for a special purpose.", "To assign to someone as his or her lot."], "Kokota": ["A language of Solomon Islands."], "Kosarek Yale": ["A language of Indonesia (Papua)."], "Kiong": ["A language of Nigeria."], "Transfer RNA": ["A small RNA chain (73-93 nucleotides) that transfers a specific amino acid to a growing polypeptide chain at the ribosomal site of protein synthesis during translation."], "telomere": ["A region of highly repetitive DNA at the end of a linear chromosome that functions as a disposable buffer."], "centromere": ["A region in the middle of the chromosome involved in cell division and the control of gene expression."], "ribosomal RNA": ["A type of RNA synthesized in the nucleolus by RNA polymerase I, is the central component of the ribosome, the protein manufacturing machinery of all living cells. (source: Wikipedia)"], "RNA Interference": ["A mechanism that inhibits gene expression by causing the degradation of specific RNA molecules or inhibits the transcription of specific genes."], "pseudogene": ["Defunct relatives of known genes that have lost their protein-coding ability or are otherwise no longer expressed in the cell."], "restriction enzyme": ["An enzyme that cuts double-stranded DNA. The enzyme makes two incisions, one through each of the sugar-phosphate backbones (i.e., each strand) of the double helix without damaging the nitrogenous bases."], "genetic fingerprinting": ["Techniques used to distinguish between individuals of the same species using only samples of their DNA."], "DNA testing": ["Techniques used to distinguish between individuals of the same species using only samples of their DNA."], "DNA typing": ["Techniques used to distinguish between individuals of the same species using only samples of their DNA."], "DNA profiling": ["Techniques used to distinguish between individuals of the same species using only samples of their DNA."], "alluring": ["That attracts or tempts by something flattering or desirable.", "That entices."], "oligonucleotide": ["Short sequences of nucleotides (RNA or DNA), typically with twenty or fewer bases."], "recombinant DNA": ["A form of artificial DNA which is engineered through the combination or insertion of one or more DNA strands, thereby combining DNA sequences which would not normally occur together."], "electrical conductivity": ["The ratio of the electric current density to the electric field in a material."], "Zipaquir\u00e1": ["A municipality and town of Colombia in the department of Cundinamarca."], "Via Crucis": ["The depiction of the final hours (or Passion) of Jesus, and the devotion commemorating the Passion."], "Stations of the Cross": ["The depiction of the final hours (or Passion) of Jesus, and the devotion commemorating the Passion."], "diabetes mellitus type 2": ["A metabolic disorder that is primarily characterized by insulin resistance, relative insulin deficiency, and hyperglycemia."], "beta cell": ["A type of cell in the pancreas in areas called the islets of Langerhans. They make up 65-80% of the cells in the islets."], "lutenist": ["Someone who plays the lute."], "lutanist": ["Someone who plays the lute."], "lutist": ["Someone who plays the lute."], "New Orleans": ["Largest city in the U.S. state of Louisiana."], "enumerate": ["To specify each member of a sequence individually in a given order."], "body mass index": ["A statistical measure of the weight of a person scaled according to height, used to estimate if a person is underweight or overweight."], "allusion": ["Passing reference or indirect mention."], "allusive": ["Containing, abounding in, or characterized by allusions."], "Gugubera": ["A language of Australia."], "almanac": ["An annual publication containing a calendar for the coming year, the times of such events and phenomena as anniversaries, sunrises and sunsets, phases of the moon, tides, etc., and other statistical information and related topics."], "Kaiku": ["A language of Democratic Republic of the Congo"], "Kir-Balar": ["A language of Nigeria."], "Koi": ["A language of Nepal."], "Tumi": ["A language of Nigeria."], "Kangean": ["A language of Indonesia (Java and Bali)."], "Teke-Kukuya": ["A language of Congo."], "Kohin": ["A language of Indonesia (Kalimantan)."], "Guguyimidjir": ["A language of Australia."], "Kaska": ["A Northern Athabaskan language spoken by the Kaska people in the southeastern Yukon territory and northern British Columbia in Canada."], "Kiliwa": ["A language of Mexico."], "Kolbila": ["A language of Cameroon."], "Gamilaraay": ["A Pama-Nyungan language of the Wiradhuric subgroup found mostly in South East Australia, traditionally spoken by the Kamilaroi people."], "English (United Kingdom)": ["English as spoken and written in the United Kingdom."], "English (United States)": ["English as spoken and written in the United States of America"], "Serbian (Latin script)": ["Serbian language written in the Latin script."], "concrete noun": ["Noun that denotes a concrete (touchable) object."], "Mandarin (simplified)": ["The Mandarin language written in the simplified script."], "Mandarin (traditional)": ["The Mandarin language written in the traditional script."], "heritability": ["The proportion of phenotypic variation in a population that is attributable to genetic variation among individuals."], "horizontal gene transfer": ["Any process in which an organism transfers genetic material to another cell that is not its offspring."], "reproductive isolation": ["A category of mechanisms that prevent two or more populations from exchanging genes."], "predictive power": ["The ability of a scientific theory to generate testable predictions."], "sun tanning": ["A darkening of the skin (especially of fair-skinned individuals) in a natural physiological response stimulated by exposure to ultraviolet radiation from sunshine (or a sunbed)."], "fixation": ["Condition that occurs when every individual within a population has the same allele at a particular locus."], "RNA world": ["A theory which proposes that a world filled with RNA (ribonucleic acid) based life predates current DNA (deoxyribonucleic acid) based life. (source: Wikipedia)"], "randomness": ["Lack of order, purpose, cause, or predictability in non-scientific parlance."], "radioactive decay": ["The property possessed by some atomic nuclei of disintegrating spontaneously, with loss of energy through emission of a charged particle and/or gamma radiation."], "transposon": ["Sequence of DNA that can move around to different positions within the genome of a single cell in a process called transposition."], "gene family": ["A set of genes defined by presumed homology, i.e. evidence that the genes evolved from a common ancestral gene."], "hazelnut oil": ["Vegetable oil pressed from the nuts of the common hazel (Corylus avellana)."], "epidemiologist": ["Person who studies the frequency and distribution of diseases within populations and environments."], "pharmacologist": ["A physician, scientist, or healthcare provider that investigates the mechanisms underlying the effects of drugs and chemicals on biological or living systems."], "ophthalmology": ["A surgical specialty concerned with the structure and function of the eye and the medical and surgical treatment of its defects and diseases."], "aloft": ["Up in the air."], "aloof": ["Separately, in regard to space or company; in a state of separation.", "Apart or at a distance from other people.", "Not sociable and friendly."], "Tagakaulu Kalagan": ["A language of Philippines."], "Weliki": ["A language of Papua New Guinea."], "binomial nomenclature": ["The formal system of naming specific species."], "Kalumpang": ["A language of Indonesia (Sulawesi)."], "Kono": ["A language of Nigeria.", "A language of Sierra Leone.", "A dialect of the Kpelle language spoken in southern Guinea, in particular in Lola and Doromou."], "alphabetical": ["Relating to an alphabet."], "Alsatian": ["Of or pertaining to Alsace or its inhabitants.", "A breed of dog."], "Kagan Kalagan": ["A language of Philippines."], "Kolom": ["A language of Papua New Guinea."], "alterable": ["Capable of being altered."], "Kapya": ["A language of Nigeria."], "Kamasa": ["A language of Papua New Guinea."], "altercation": ["A heated or angry dispute."], "consumer price index": ["An index number measuring the average price of consumer goods and services purchased by households."], "altimeter": ["An instrument that measures and indicates the height above sea level at which an object, such as an airplane, is located."], "filmic": ["Pertaining to or characteristic of motion pictures, illustrated by means of film."], "cinematic": ["Pertaining to or characteristic of motion pictures, illustrated by means of film."], "alpenhorn": ["A wind instrument, consisting of a natural wooden horn of conical bore, having a cup-shaped mouthpiece, used by mountain dwellers in Switzerland and elsewhere."], "Human Genome Project": ["An international scientific research project whose goal is to understand the genetic make-up of the human species by determining the sequence of chemical base pairs which make up DNA, and to identify the 20,000-25,000 genes of the human genome. (source: Wikipedia)"], "Rumu": ["A language of Papua New Guinea."], "Khaling": ["A language of Nepal and India."], "Nukna": ["A language of Papua New Guinea."], "Klao": ["A language of Liberia and Sierra Leone."], "Maskelynes": ["A language of Vanuatu."], "Lindu": ["A Malayo-Polynesian language spoken around Lindu Lake in Central Sulawesi, Indonesia."], "Koluwawa": ["A language of Papua New Guinea."], "Kalao": ["A language of Indonesia (Sulawesi)."], "Kabola": ["A language of Indonesia (Nusa Tenggara)."], "Konni": ["A Gur language spoken in Ghana."], "Mbundu": ["A Bantu language spoken by the Ambundu in the north-west of Angola."], "Madukayang Kalinga": ["A language of Philippines."], "Bakole": ["A language of Cameroon."], "K\u00e2te": ["A language of Papua New Guinea."], "Kalam": ["A language of Papua New Guinea."], "Limos Kalinga": ["A language of Philippines."], "castanets": ["A percussion instrument consisting of a pair of concave shells joined on one edge by a string, held in the hand and used to produce clicking sounds."], "Lower Tanudan Kalinga": ["A language of Philippines."], "Quebec": ["A province in Canada, and the only province whose people have been recognized as a nation within a united Canada.", "Capital and second biggest city in the province of Quebec, in Canada."], "guayusa": ["A tree of the holly genus, native to the Ecuadorian Amazon Rainforest. Its leaves have the highest caffeine content of any known plant."], "yerba mate": ["A species of holly (family Aquifoliaceae) native to subtropical South America in Argentina, eastern Paraguay, western Uruguay and southern Brazil. (source: Wikipedia)"], "mate": ["A caffeinated infusion prepared by steeping dried leaves of yerba mate (Ilex paraguariensis) in hot water.", "To copulate.", "To fit together without space between.", "To bring two objects, ideas, or people together.", "A ship's officer, subordinate to the master on a commercial ship.", "To copulate with (of male animals)."], "Alu sequence": ["A short stretch of DNA originally characterized by the action of the Alu restriction endonuclease. Alu sequences reveal details of ancestry because individuals will only share a particular Alu sequence insertion if they have a common sexual ancestor."], "Mitochondrial Eve": ["The name given by researchers to the woman who is defined as the matrilineal most recent common ancestor (MRCA) for all living humans."], "Alzheimer's disease": ["A common form of dementia of unknown cause, usually beginning in late middle age, characterized by memory lapses, confusion, emotional instability, and progressive loss of mental ability."], "Masikoro Malagasy": ["A dialect of Malagasy spoken in the Toliara Province of Madagascar."], "Antankarana Malagasy": ["A Barito language spoken by the Antankaranas in the Antsiranana region of northern Madagascar."], "Plateau Malagasy": ["A dialect of Malagasy spoken in the capital of Madagascar and in the central highlands."], "Sakalava Malagasy": ["A dialect of the Malagasy language spoken by the Sakalavas in the western coast of Madagascar."], "Tandroy-Mahafaly Malagasy": ["A dialect of Malagasy spoken in the Toliara Province of Madagascar."], "Tanosy Malagasy": ["A dialect of Malagasy spoken by the Antanosy people in the Anosy region of southeastern Madagascar."], "Tsimihety Malagasy": ["A language of Madagascar."], "tambourine": ["A percussion instrument consisting of a frame, often of wood or plastic, with pairs of small metal jingles."], "bonobo": ["A chimpanzee of the species Pan paniscus."], "amateurish": ["Characteristic of an amateur; not professional."], "common spoonbill": ["(Platalea leucorodia) A wading bird of the ibis and spoonbill family."], "Awtuw": ["A language of Papua New Guinea."], "Kwoma": ["A language of Papua New Guinea."], "Gimme": ["A language of Cameroon."], "Northern Kurdish": ["An Iranian language spoken by the Kurds of northern Syria, Iraq, Turkey and some of the former Soviet republics."], "Kamasau": ["A language of Papua New Guinea."], "Kemtuik": ["A language of Indonesia (Papua)."], "Kanite": ["A language of Papua New Guinea."], "amaze": ["To overwhelm with surprise or sudden wonder."], "amazed": ["Greatly surprised."], "amazement": ["Overwhelming surprise or astonishment.", "A dazed condition."], "amazing": ["Causing wonder, admiration or astonishment.", "Causing great surprise or sudden wonder."], "Karip\u00fana Creole French": ["A Creole French language spoken in the Brazilian state of Amap\u00e1."], "raven": ["A large black bird, similar to the crow, but larger.", "To prey on or hunt for."], "amber": ["A hard yellow or brownish substance, formed from resin, used in making jewellery etc."], "ambiance": ["The set of all natural and human-made surroundings that affect individuals, social groupings, and other life.", "The special atmosphere or mood created by a particular environment."], "ambience": ["The special atmosphere or mood created by a particular environment."], "ambient": ["Of the surrounding area or environment."], "bloom": ["The reproductive structure of angiosperm plants, consisting of stamens and carpels surrounded by petals and sepals all borne on the receptacle.", "The blooming of flowers on a plant.", "(Of a plant) To produce blooms or flowers."], "blossom": ["The reproductive structure of angiosperm plants, consisting of stamens and carpels surrounded by petals and sepals all borne on the receptacle.", "A flower on a tree or bush.", "(Of a plant) To produce blooms or flowers."], "ethanal": ["Aldehyde of ethanol"], "acetaldehyde": ["Aldehyde of ethanol"], "Komo": ["A language of Democratic Republic of the Congo"], "Waboda": ["A language of Papua New Guinea."], "Koma": ["A Gur language spoken in Ghana.", "A language of Nigeria and Cameroon."], "ambit": ["An area in which something acts or operates or has power or control."], "amble": ["To go at a slow, easy pace."], "semiology": ["The study of sign processes, or signification and communication, signs and symbols, both individually and grouped into sign systems."], "amen": ["Interjection said or sung by Jews or Christians to express a wish that the prayer should be fulfilled."], "amenable": ["Ready or willing to answer, act, agree, or yield."], "amenity": ["Something that makes life more pleasant or convenient."], "amiability": ["Sweet and friendly disposition."], "amiable": ["Deserving to be loved.", "Diffusing warmth and friendliness."], "amicalibility": ["Disposition characterized by warmth and friendliness."], "organelle": ["A specialized subunit within a cell that has a specific function, and is separately enclosed within its own lipid membrane."], "Y-chromosomal Adam": ["The patrilineal human most recent common ancestor (mrca) from whom all Y chromosomes in living men are descended."], "population bottleneck": ["An evolutionary event in which a significant percentage of a population or species is killed or otherwise prevented from reproducing, and the population is reduced by 50% or more, often by several orders of magnitude."], "ribosome": ["Complex of RNA and protein that is found in all cells. The ribosomes in the mitochondrion of eukaryotic cells resemble those in bacteria, reflecting the evolutionary origin of this organelle."], "coenzyme": ["Small organic non-protein molecule that carry chemical groups between enzymes."], "amnesia": ["Partial or total loss of memory."], "amniocentesis": ["A medical procedure used in prenatal diagnosis of genetic risk factors."], "amoral": ["Not involving questions of right or wrong."], "amorphous": ["Having no specific shape."], "amp": ["The standard SI unit of electrical current with symbol \"A\"."], "ampersand": ["A punctuation mark (&) used to represent conjunction (and)."], "amphetamine": ["A prescription stimulant commonly used to treat Attention-deficit hyperactivity disorder (ADHD) in adults and children."], "amphibious": ["Living or able to live both on land and in water."], "epithelium": ["Tissue, which consists of one or more layers of epithelial cells and a basement membrane; it covers the external surface of the body and lines the internal surfaces of the anatomical structures. Examples: simple squamous epithelium, glandular cuboidal epithelium, transitional epithelium, myoepithelium."], "amphitheatre": ["An oval or circular building with rows of seats surrounding a central space, used as a theatre or arena."], "ample": ["Abundant, fully sufficient or more than adequate in supply for the purpose or needs.", "More than enough in size or scope or capacity."], "amply": ["In a way that is of large or great size, amount, extent, or capacity."], "amuse": ["To occupy in an agreeable, entertaining or pleasant fashion."], "amusing": ["Arousing laughter.", "Causing laughter or mirth.", "Affording entertainment."], "scaled reptile": ["(Sauria) A reptile of the order Squamata."], "anaemic": ["Lacking vitality and energy."], "anaesthetic": ["A substance, used in surgery etc, that causes lack of feeling in a part of the body or unconsciousness."], "breed": ["A domesticated subspecies or infrasubspecies of an animal."], "is a breed of": ["Indicated what species it is a breed of."], "Toggenburger": ["A breed of goat, named after the region in Switzerland where the breed originated, the Toggenburg valley."], "stridulation": ["The act of producing sound by rubbing together certain body parts."], "anaesthetize": ["To make someone unable to feel pain by giving an anaesthetic."], "snowboarding": ["A sport that involves descending a snow-covered slope on a snowboard that is attached to one's feet using a boot/binding interface."], "karateka": ["A practitioner of karate."], "judoist": ["A practitioner of the Japanese martial art of Judo."], "burglary": ["A crime involves breaking into a house, outbuilding , business, school, place of worship, boat, aircraft, rail car, or motor vehicle with an intent to commit a theft or a felony."], "Flemish Giant": ["A type of rabbit, most famous for its unusually large size compared to other rabbits."], "anatomical": ["Of or pertaining to anatomy."], "ancestral": ["Of or relating to ancestors."], "cross-country skiing": ["A winter sport popular in many countries with large snowfields, primarily Northern Europe and Canada."], "anchorage": ["A place which is safe, or used, for anchoring boats."], "anemone": ["A plant or flower of the genus Anemone."], "anew": ["Again but in a new or different way."], "angelic": ["Like an angel."], "angler": ["A person who fishes with a hook and line."], "nameless": ["Having no name.", "Unknown by name."], "Anglican": ["A member of the Church of England.", "Of or pertaining to the Church of England."], "Anglican Communion": ["The world-wide affiliation of Anglican Churches."], "smoking ban": ["A ban on smoking tobacco in certain locations, issued by legislature or landlords, restaurant owners etc."], "stays": ["Third-person singular indicative present form of the verb 'to stay'."], "curling": ["A team sport with similarities to bowls and bocce, played on a rectangular sheet of carefully prepared ice by two teams of four players each."], "anglophile": ["One who admires England, its people, and its culture."], "anguish": ["Extreme mental distress."], "anise": ["A Mediterranean plant, Pimpinella anisum."], "annalist": ["One who writes annals."], "annals": ["Yearly historical accounts of events."], "figure skating": ["A sport in which individuals, couples, or groups perform spins, jumps, footwork and other choreography on ice."], "dogsled racing": ["A winter dog sport involving the timed competition of teams of sleddogs that pull a sled with the dog driver or musher standing on the runners."], "Lubuagan Kalinga": ["A language of the Philippines."], "Konda": ["A language of Indonesia (Papua)."], "Kankanaey": ["A language of Philippines."], "Mankanya": ["A Bak language spoken in Senegal, Guinea-Bissau, and the Gambia."], "annihilate": ["To destroy completely.", "To kill in large numbers."], "annihilation": ["Total destruction."], "normative": ["Refers to value judgments as to \"what ought to be,\" in contrast to positive which is about \"what is.\""], "nowhere": ["In no place."], "annotate": ["To supply with critical or explanatory notes."], "announcer": ["A person who introduces programmes or reads the news on radio or television."], "annoy": ["To make someone rather angry or impatient; to cause annoyance."], "annoyance": ["Something which annoys."], "annoyed": ["Aroused to impatience or anger.", "Troubled persistently especially with petty annoyances."], "annoying": ["Causing vexation, irritation or annoyance."], "annuity": ["The annual payment of an allowance or income."], "annul": ["To cancel or eliminate officially.", "To make something legally invalid or void.", "To declare that something is not valid and cancel (especially a marriage or legal contract)."], "Moksha": ["A Volga-Finnic language spoken primarily in the western part of Mordovia (Russia) and by the Moksha people worldwide."], "Rinconada Bicolano": ["A language of the Philippines."], "tropic of Cancer": ["The most northern latitude at which the sun can appear directly overhead at noon."], "tropic": ["The farthest points at which the sun can be directly overhead; the boundaries of the torrid zone or tropics."], "torrid zone": ["The region of the earth's surface lying between two parallels of latitude on the earth, one 23\u00b027' north of the equator and the other 23\u00b027' south of the equator, representing the points farthest north and south at which the sun can shine directly overhead and constituting the boundaries of the Torrid Zone.\\n(Source: AMHER)"], "tropic of Capricorn": ["The most southerly latitude at which the sun can appear directly overhead at noon."], "Koongo": ["A language of Democratic Republic of the Congo and Angola"], "anoint": ["To smear or cover with ointment or oil especially in a religious ceremony."], "Kayan River Kenyah": ["A language of Indonesia (Kalimantan)."], "Kanufi": ["A language of Nigeria."], "anomalous": ["Deviating from the normal or common order, form, or rule."], "Akateko": ["Mayan language spoken primarily in the municipality of San Miguel Acat\u00e1n in the western highlands of Guatemala, and by some people in Mexico."], "Western Kanjobal": ["Mayan language spoken primarily in the municipality of San Miguel Acat\u00e1n in the western highlands of Guatemala, and by some people in Mexico."], "Kuranko": ["A language of Sierra Leone and Guinea."], "Keninjal": ["A language of Indonesia (Kalimantan)."], "anorak": ["A kind of heavy jacket."], "Kanamar\u00ed": ["A language of Brazil."], "anorexia nervosa": ["An eating disorder characterized by low body weight and body image distortion with an obsessive fear of gaining weight.", "A psychiatric diagnosis that describes an eating disorder characterized by low body weight and body image distortion with an obsessive fear of gaining weight."], "answerable": ["Having responsibility."], "answering machine": ["A machine that take messages for you when you cannot answer the phone."], "Kwanja": ["A language of Cameroon."], "Kaningra": ["A language of Papua New Guinea."], "Panoan Katuk\u00edna": ["A language of Brazil."], "antagonistic": ["Indicating opposition or resistance."], "Romansch": ["A language of Switzerland."], "intertrigo": ["An inflammation (rash) of the body folds (adjacent areas of skin)."], "fanboy": ["Someone who is utterly devoted to a single subject or hobby, typically to the point where it is considered an obsession."], "vertigo": ["The sensation of spinning or swaying while the body is stationary with respect to the earth or surroundings.", "A sensation of irregular or whirling motion, either of oneself or of external objects."], "meatpuppet": ["Someone who edits on behalf of or as proxy for someone else in a forum or wiki."], "Antarctic": ["At or near the South Pole."], "antelope": ["Any of several ruminants of the family Bovidae, chiefly of Africa and Asia, having permanent, hollow, unbranched horns."], "waterboarding": ["A torture technique that simulates drowning in a controlled environment."], "cheetah": ["A member of the cat family, a poor climber that hunts by speed and stealth."], "sockpuppet": ["An online identity used for purposes of deception within an Internet community.", "A puppet made from a sock (or similar garment) which is placed over the hand of a puppeteer."], "Antartica": ["The area round the South Pole."], "Tabo": ["A language of Papua New Guinea."], "anthill": ["A mound of earth made by ants as they dig their nest."], "anther": ["The pollen-bearing part of a stamen."], "stamen": ["In flowering plants, the male organ in a flower, typically consisting of an anther and a filament."], "anthrax": ["An infectious, usually fatal disease of warm-blooded animals, especially of cattle and sheep, caused by the bacterium Bacillus anthracis."], "spermatophyte": ["Plants that produce seeds. The group comprises the Gymnospermae and the Angiospermae.\\n(Source: ALL)"], "auxiliary": ["A person or persons who provide assistance with some task.", "A verb that accompanies the main verb in a clause in order to make distinctions in tense, mood, voice or aspect.", "That is being added as integratory part.", "Functioning in a supporting capacity."], "Kendayan": ["A language of Indonesia (Kalimantan)."], "Kanyok": ["A language of Democratic Republic of the Congo"], "Kalams\u00e9": ["A language of Burkina Faso and Mali"], "S\u00e0m\u00f2m\u00e1": ["A language of Burkina Faso and Mali"], "Konomala": ["A language of Papua New Guinea."], "perturb": ["To disturb in mind or make uneasy or cause to be worried or alarmed."], "artificial selection": ["The intentional breeding for certain traits, or combinations of traits, over others."], "domestication": ["The process whereby a population of animals or plants becomes accustomed to human provision and control."], "evolutionary algorithm": ["An algorithm that uses some mechanisms inspired by biological evolution: reproduction, mutation, recombination, and selection."], "substrate": ["A molecule upon which an enzyme acts."], "metabolic pathway": ["A series of chemical reactions occurring within a cell where a principal chemical is modified by chemical reactions."], "activation energy": ["The energy that must be overcome in order for a chemical reaction to occur."], "chemical equilibrium": ["The state in which the chemical activities or concentrations of the reactants and products do not change over time."], "artificial enzyme": ["A synthetic, organic molecules prepared to recreate the active site of an enzyme."], "enzyme activator": ["Molecules that bind to enzymes and increase their activity."], "feedback": ["A process whereby some proportion of the output signal of a system is passed (fed back) to the input. This is often used to control the dynamic behavior of the system."], "anticlimax": ["A dull or disappointing ending to a play, activity etc after increasing excitement."], "anticorrosive": ["Something that prevents or counteracts corrosion."], "compulsive": ["With an uncontrolled need to do things."], "obsessive": ["With an uncontrolled need to do things."], "anticyclone": ["A circulation of winds around a central region of high atmospheric pressure, clockwise in the Northern Hemisphere, counterclockwise in the Southern Hemisphere."], "antifreeze": ["A liquid used in the radiator of an internal-combustion engine to lower the freezing point of the cooling medium."], "Northern Sotho": ["A language of South Africa."], "North Saami": ["An Uralic language spoken in the northern parts of Norway, Sweden and Finland as well as northwestern parts of Russia."], "Northern Sami": ["An Uralic language spoken in the northern parts of Norway, Sweden and Finland as well as northwestern parts of Russia."], "Scots": ["A language of the United Kingdom and Ireland."], "antithesis": ["The direct opposite."], "ad nauseam": ["To a nauseating or sickening degree."], "affidavit": ["A signed document wherein someone makes a sworn statement."], "affiant": ["A individual whose statement is contained in an affidavit."], "Congo": ["River in Central Africa."], "half-opened": ["Partly open."], "antler": ["The large and complex horn-like appendages of male deer."], "anxious": ["Worried about what may happen or have happened."], "anymore": ["Any longer."], "aorta": ["The main trunk of the arterial system, conveying blood from the left ventricle of the heart to all of the body except the lungs."], "Aymara": ["A macro language consisting of two languages spoken by the Aymara people of the Andes. It is a Native American language with over a million speakers.", "A native ethnic group in the Andes and Altiplano regions of South America; about 1.6 million live in Bolivia, Peru, Northern Chile, and Northwestern Argentina (in particular in Salta Province)."], "synonymous": ["Having the same meaning."], "apathetic": ["Having or showing little or no emotion.", "Not caring."], "aphrodisiac": ["A drug or other agent that stimulates sexual desire."], "Zazaki": ["An Indo-European language spoken primarily in eastern Turkey."], "Middle Dutch": ["A language of the Netherlands and Belgium, the ancestor of Modern Dutch. 1150-1500 AD."], "Guarani": ["A macro language consisting of five South American languages"], "libido": ["Sexual urge or drive."], "apiece": ["For each piece or thing."], "apnoea": ["Temporary absence or cessation of breathing."], "apnea": ["Temporary absence or cessation of breathing."], "neurofibromatosis": ["An autosomal dominant genetic disorder encompassing a set of distinct genetic disorders that cause tumors to grow along types of nerves and, in addition, can affect the development of non-nervous tissues such as bones and skin."], "apocrypha": ["Various religious writings of uncertain origin regarded by some as inspired, but rejected by most authorities."], "ancient Rome": ["a civilization that grew from a small agricultural community founded on the Italian Peninsula in the 9th century BC to a large empire straddling the Mediterranean Sea. In its 12 centuries of existence, Roman civilization shifted from a monarchy, to a republic based on a combination of oligarchy and democracy, to an autocratic empire. It came to dominate Western Europe and the area surrounding the Mediterranean Sea through conquest and assimilation. (source: Wikipedia)."], "Western Roman Empire": ["The western half of the Roman Empire, from its division by Diocletian in 286. Its capital was in Mediolanum (modern Milan), until it was moved to Ravenna in 402. (source: Wikipedia)", "The western half of the Roman Empire which emerged after the division in 395 AD and ended in 476."], "Eastern Roman Empire": ["The eastern part of the Roman Empire after its division in the 3rd century AD. Its capital city was Constantinople (or New Rome). It represented an administrative division of the Roman Empire, but after the fall of the western part it survived until the fall of Constantinople in 1453. (source: Wikipedia)", "Empire in the eastern Mediterranean which emerged from the eastern part of the Roman Empire in 395 AD and ended with the conquest of Constantinople by the Ottomans in 1453."], "Byzantine Empire": ["The eastern part of the Roman Empire after its division in the 3rd century AD. Its capital city was Constantinople (or New Rome). It represented an administrative division of the Roman Empire, but after the fall of the western part it survived until the fall of Constantinople in 1453. (source: Wikipedia)", "Empire in the eastern Mediterranean which emerged from the eastern part of the Roman Empire in 395 AD and ended with the conquest of Constantinople by the Ottomans in 1453."], "Heian Palace": ["The original imperial palace of Heian-ky\u014d (present-day Kyoto), the capital of Japan from 794 to 1227."], "Heian period": ["The last division of classical Japanese history, running from 794 to 1185."], "Tiananmen Square": ["The large plaza near the center of Beijing, China, named after the Tiananmen (literally, Gate of Heavenly Peace) which sits to its north, separating it from the Forbidden City."], "Forbidden City": ["The Chinese imperial palace from the mid-Ming Dynasty to the end of the Qing Dynasty. It is located in the middle of Beijing, China and now houses the Palace Museum. For almost five centuries, it served as the home of the Emperor and his household, and the ceremonial and political centre of Chinese government. (source: Wikipedia)"], "Great Wall of China": ["A series of stone and earthen fortifications in China, built, rebuilt, and maintained between the 5th century BC and the 16th century to protect the northern borders of the Chinese Empire during the rule of successive dynasties."], "Moscow Kremlin": ["A historic fortified complex at the very heart of Moscow, overlooking the Moskva River (to the south), Saint Basil's Cathedral and Red Square (to the east) and the Alexander Garden (to the west). (source: Wikipedia)"], "apocryphal": ["Being of questionable authenticity."], "apodictic": ["Incontestable because of having been demonstrated or proved to be demonstrable."], "apologetic": ["Containing an apology or excuse for a fault, failure, insult, injury, etc."], "elevator pitch": ["An overview of an idea that be delivered in the time span of an elevator ride or roughly thirty seconds or 100-150 words."], "Krio": ["The national language of Sierra Leone."], "apologize": ["To offer an apology or excuse for some fault, insult, failure, or injury."], "Freetown": ["The capital of Sierra Leone"], "Sierra Leonean leone": ["The currency of Sierra Leone."], "apology": ["An expression of regret at having caused trouble for someone.", "A formal justification, defence."], "anticlockwise": ["In the opposite direction of how the hands of an analogue clock move."], "apoplexy": ["A blockage or hemorrhage of a blood vessel leading to the brain, causing inadequate oxygen supply and, depending on the extent and location of the abnormality, such symptoms as weakness, paralysis of parts of the body, speech difficulties, and, if severe, loss of consciousness or death."], "Kohoroxitari": ["A Yanomam language spoken in Venezuela and Brazil."], "Kodi": ["A language of Indonesia (Nusa Tenggara)."], "Cogui": ["A language of Colombia."], "Koyo": ["A language of Congo."], "Komi-Permyak": ["An Uralic language spoken in Perm Krai of Russia."], "Konjo": ["A language of Uganda and the Democratic Republic of the Congo"], "Kwato": ["A language of Papua New Guinea."], "Kosraean": ["A language of Micronesia."], "Palikir": ["The capital of Micronesia."], "sanctimonious": ["Making a show of being morally better than others."], "expatiate": ["To write or speak at length; to be copious in argument or discussion."], "Pitjantjatjara": ["A language of Australia."], "elicit": ["To obtain information from someone or something."], "apostrophe": ["A mark (') which is used to show that a letter or letters has/have been omitted from a word."], "apotheosis": ["The elevation or exaltation of a person to the rank of a god."], "appal": ["Strike with disgust or revulsion."], "appalling": ["Causing dismay or horror."], "Koke": ["A language of Chad."], "Kudu-Camo": ["A language of Nigeria."], "Kugama": ["A language of Nigeria."], "Coxima": ["An extinct language of Colombia."], "Korak": ["A language of Papua New Guinea."], "l\u00e1ngos": ["A Hungarian speciality, a deep fried flat bread made of potato-based dough, served with toppings of for example sour cream, cheese, powdered sugar etc."], "Comorian": ["Bantu language of the Niger-Congo language family spoken in the Comoros archipelago, as well as the islands of Madagascar and Mayotte", "A person who originated from or is a citizen of the Comoros."], "Moroni": ["The capital of the Comoros."], "Comorian franc": ["The currency of the Comoros."], "appease": ["To bring to a state of peace, quiet, ease, calm, or contentment."], "Malagasy": ["A person from Madagascar or of that ancestry.", "An Austronesian language, national language of Madagascar and also spoken in the Comoros and Mayotte."], "extant": ["Still in existence or alive."], "append": ["To state in addition; to say further.", "To add to the very end, as a supplement, accessory, or appendix."], "appendage": ["A subordinate part attached to something."], "sleepwalking": ["A category of sleep disorders where the sufferer engages in activities that are normally associated with wakefulness while he or she is asleep or in a sleeplike state."], "somnambulism": ["A category of sleep disorders where the sufferer engages in activities that are normally associated with wakefulness while he or she is asleep or in a sleeplike state."], "appendicitis": ["The inflammation of the appendix in the body which usually causes pain and often requires the removal of the appendix by surgery."], "apperception": ["Conscious perception."], "appertain": ["Be a part or attribute of ..."], "appetite": ["A desire for food."], "Curripaco": ["A language of Colombia, Brazil and Venezuela"], "Koba": ["A language of Indonesia (Maluku)."], "Komba": ["A language of Papua New Guinea."], "Kapingamarangi": ["A language of Micronesia."], "Kplang": ["A language of Ghana."], "Kofei": ["A language of Indonesia (Papua)."], "Karaj\u00e1": ["A language of Brazil."], "Kpan": ["A language of Nigeria."], "Tongan": ["A language of Tonga."], "Nuku\u02bbalofa": ["The capital of Tonga."], "pa\u02bbanga": ["The currency of Tonga."], "appetizer": ["A small portion of a food or drink served before or at the beginning of a meal to stimulate the desire to eat."], "appetizing": ["Which increases the appetite."], "Kepkiriw\u00e1t": ["An extinct language of Brazil."], "applaud": ["To praise or show approval, by clapping the hands.", "To strike the palms of the hands together, creating a sharp sound.", "To express approval of."], "GRP": ["Plastic strengthened by fibres of glass and used for making structures such as the outsides of cars and boats"], "glass-reinforced plastic": ["Plastic strengthened by fibres of glass and used for making structures such as the outsides of cars and boats"], "applause": ["Praise or approval, expressed by clapping the hands."], "Mednovskiy": ["A language of the USA."], "Erzya": ["A language of Russia spoken by about 500,000 people in the northern and eastern and north-western parts of the Republic of Mordovia and adjacent regions of Nizhniy Novgorod, Chuvashia, Penza, Samara, Saratov, Orenburg, Ulyanovsk, Tatarstan and Bashkortostan."], "applesauce": ["Puree of stewed apples usually sweetened and spiced."], "reindeer": ["An Arctic and Subarctic-dwelling deer (Rangifer tarandus), of which a number of subspecies exist."], "Kwanyama": ["A language of Angola and Namibia."], "Ndonga": ["A Bantu language spoken in Namibia and parts of Angola."], "Marshallese": ["A language of Marshall Islands.", "A person who originated from or is a citizen of the Marshall Islands."], "Ebon": ["A language of Marshall Islands."], "Majuro": ["The capital of the Marshall Islands."], "appliance": ["An instrument or tool used for a particular job."], "applicability": ["The quality of being applicable or capable of being applied."], "applicable": ["That can be applied."], "Narom": ["A language of Malaysia (Sarawak)."], "Pangasinan": ["A language of Philippines."], "Pitcairn-Norfolk": ["A language of Norfolk Island, Australia, New Zealand and Pitcairn."], "applicant": ["A person who applies."], "Paku Karen": ["A language of Myanmar."], "Korupun-Sela": ["A language of Indonesia (Papua)."], "Korafe": ["A language of Papua New Guinea."], "Tehit": ["A language of Indonesia (Papua)."], "Kafoa": ["A language of Indonesia (Nusa Tenggara)."], "Komi-Zyrian": ["A language of Russia (Europe)."], "Mountain Koiali": ["A language of Papua New Guinea."], "Kiritimati": ["A Pacific Ocean atoll in the northern Line Islands and part of the Republic of Kiribati."], "apposition": ["A grammatical relation between a word and a noun phrase that follows."], "Rundi": ["A language of Burundi and Uganda."], "horse-sleigh": ["A sledge pulled by one or more animals like horses or reindeer."], "Tsonga": ["A language of South Africa, Mozambique, Swaziland and Zimbabwe."], "appraise": ["To estimate the monetary value of.", "To place a value on."], "appraiser": ["One who estimates officially the worth or value or quality of things."], "appreciable": ["Enough to be estimated or measured."], "marriageable": ["Old enough to marry."], "nubile": ["Old enough to marry."], "jejunal": ["Pertaining to the jejunum."], "jejunum": ["One of the three divisions of the small intestine, lying between the duodenum and the ileum."], "appreciative": ["Feeling or showing appreciation.", "Feeling or expressing gratitude."], "Tahitian": ["A language of French Polynesia"], "Papeete": ["The capital of \\tFrench Polynesia."], "CFP franc": ["The currency used in the French overseas possessions of French Polynesia, New Caledonia and Wallis and Futuna."], "apprentice": ["A person who works for another in order to learn a trade."], "apron": ["A piece of cloth, plastic, worn over the front of the clothes for protection against dirt."], "aquarium": ["A tank with transparent sides for keeping fish and other water animals.", "A public building where live fish and other aquatic animals are exhibited."], "archangel": ["An angel ranked above the highest rank in the celestial hierarchy."], "archaeological": ["Of or pertaining to archaeology."], "archaism": ["Something archaic, as a word or expression."], "archbishop": ["A bishop of the highest rank who presides over an archdiocese."], "Tasmanian Devil": ["Largest surviving carnivorous marsupial with usually black fur, squat and thick build and a body length of about 0.6m, native to Tasmania; scientific name: Sarcophilus harrisii"], "archduke": ["A rank above Duke and under King."], "marquis": ["A nobleman of hereditary rank in various European monarchies and some of their colonies."], "archery": ["The art or sport of shooting with a bow."], "archetype": ["The original pattern or model from which all things of the same kind are copied or on which they are based."], "archiepiscopal": ["Of or associated with an archbishop."], "archivist": ["A person in charge of collecting and cataloguing archives."], "Portuguese (Brazil)": ["Portuguese as it is spoken in Brazil"], "Portuguese (Portugal)": ["Portuguese as spoken in Portugal"], "ardent": ["Characterized by intense emotion."], "ardour": ["A feeling of strong eagerness, usually in favor of a person or cause.", "A feeling of strong eagerness."], "arguable": ["Subject, or open, to argument or discussion."], "baron": ["A member of the lowest grade of nobility."], "Arabic numeral": ["The symbolic representation of numbers using the characters 0123456789."], "Roman numeral": ["The symbolic representation of numbers using the characters IVXLCDM"], "viscount": ["A nobleman ranking below an count and above a baron."], "zester": ["A kitchen implement used to remove the zest of citrus fruit."], "megawatt": ["A unit of power, equal to one million watts. Abbreviation MW."], "viviparous eelpout": ["A predatory fish (Zoarces viviparus) whose young, which look like young eels, are born alive."], "gigawatt": ["A unit of power, equal to one milliard watts. Abbreviation GW."], "aristocracy": ["A class of persons holding exceptional rank and privileges, esp. the hereditary nobility.", "The most powerful members of a society."], "arid": ["Barren or unproductive because of lack of moisture."], "aridity": ["Being without moisture.", "The state of being dry, the lack of water or liquid."], "salsify": ["(Tragopogon) Genus of plants of the aster family with edible roots"], "black salsify": ["A plant native to southern Europe and the Near East with edible roots."], "scorzonera": ["A plant native to southern Europe and the Near East with edible roots."], "goatsbeard": ["(Tragopogon) Genus of plants of the aster family with edible roots"], "Dhivehi": ["An Indo-Aryan language spoken in the Republic of Maldives and also in the island of Maliku (Minicoy) in Union territory of Lakshadweep, India."], "Kirundi": ["A language of Burundi and Uganda."], "Fulah": ["A macro language consisting of nine languages"], "Kur\u00f3w": ["A village in South-Eastern Poland, located between Pu\u0142awy and Lublin, on the Kur\u00f3wka River."], "armadillo": ["(family Dasypodidae) Burrowing chiefly nocturnal mammal with body covered with strong horny plates."], "light pollution": ["The brightening of the night (especially of the night sky) by light sources created by humans."], "photopollution": ["The brightening of the night (especially of the night sky) by light sources created by humans."], "luminous pollution": ["The brightening of the night (especially of the night sky) by light sources created by humans."], "Mycenaean Greek": ["The most ancient attested form of the Greek language, spoken on the Greek mainland and on Crete in the 16th to 11th centuries BC."], "armhole": ["An opening in a garment for an arm."], "Mycenaean": ["The most ancient attested form of the Greek language, spoken on the Greek mainland and on Crete in the 16th to 11th centuries BC."], "armoured": ["Protected by armour."], "armourer": ["Someone who makes, sells and repairs arms."], "armpit": ["The hollow under the upper part of the arm at the shoulder."], "armoury": ["The place where weapons are made or kept."], "arms race": ["Competition between countries to achieve superiority in quantity and quality of military arms."], "arraign": ["To bring before a court to answer to an indictment."], "lark": ["Passerine bird of the family Alaudidae."], "arrowhead": ["The tip of an arrow, shaped to a point."], "Mum": ["A language of Papua New Guinea."], "Kovai": ["A language of Papua New Guinea."], "Doromu": ["A language of Papua New Guinea."], "arson": ["The crime of setting fire to a building or a property on purpose."], "tremendous": ["Extremely large."], "arsonist": ["A criminal who commits arson."], "Koy Sanjaq Surat": ["A modern Eastern Aramaic language spoken in Iraq."], "Kalagan": ["A language of the Philippines."], "Kakabai": ["A language of Papua New Guinea."], "apotheosic": ["Pertaining o related to the apotheosis."], "roller coaster": ["An amusement ride consisting of a buggy on a track that rises and falls and twists and turns."], "artful": ["Marked by skill in achieving a desidered goal, usually in a bad sense."], "arthritis": ["Pain and swelling in the joints of the body."], "artichoke": ["A tall, thistlelike composite plant, ''Cynara scolymus'', native to the Mediterranean region, of which the numerous scalelike bracts and receptacle of the immature flower head are eaten as a vegetable."], "artifice": ["A clever trick or stratagem.", "A deceptive maneuver (especially to avoid capture)."], "artificer": ["Someone who carries out work that requires a certain speciality or skill."], "artistry": ["Artistic skill."], "arum": ["Any plant of the family Araceae; have small flowers massed on a spadix surrounded by a large spathe."], "ascendancy": ["The state that exists when one person or group has power over another."], "ascent": ["The act of climbing or going up.", "A slope upwards."], "Sepedi": ["A language of South Africa."], "Sikule": ["A language of Indonesia (Sumatra)."], "ascertain": ["To learn or discover with certainty.", "To establish after a calculation, investigation, experiment, survey, or study."], "run over": ["To drive over someone with a motor vehicle and injure or kill the person."], "ascertainable": ["Capable of being ascertained or found out."], "G\u1ebd": ["A Gbe language spoken in the southeast of Togo in the Maritime Region, and in the Mono Department of Benin."], "Gen-Gbe": ["A Gbe language spoken in the southeast of Togo in the Maritime Region, and in the Mono Department of Benin."], "industrialized": ["Having highly developed industries."], "Chirip\u00e1": ["A language of Paraguay, Argentina and Brazil."], "denouement": ["The conclusion or resolution of the plot in a play, film, or the like."], "d\u00e9nouement": ["The conclusion or resolution of the plot in a play, film, or the like."], "ascetic": ["A person who dedicates his or her life to a pursuit of contemplative ideals and practices extreme self-denial or self-mortification for religious reasons."], "asexual": ["Having no sex or sexual organs."], "Zimbabwe Sign Language": ["A sign language used in Zimbabwe."], "Yugoslavian Sign Language": ["A language of Serbia and Montenegro."], "Yiddish Sign Language": ["A sign language used in Israel."], "Venezuelan Sign Language": ["A language of Venezuela."], "Uruguayan Sign Language": ["A sign language used in Uruguay."], "Urub\u00fa-Kaapor Sign Language": ["A sign language used by a small community of Indigenous Brazilians in the state of Maranh\u00e3o."], "Ugandan Sign Language": ["A language of Uganda."], "Turkish Sign Language": ["A language of Turkey."], "Tunisian Sign Language": ["A language of Tunisia."], "ashamed": ["Feeling shame or guilt."], "Australian dollar": ["The currency of Australia"], "ashen": ["Pale in color.", "Extremely pale.", "Consisting of or made of ash wood."], "chemical symbol": ["Internationally standardized abbreviation of the name of a chemical element"], "Sebat Bet Gurage": ["A language of Ethiopia."], "ashore": ["On or on to the shore."], "Tanzanian Sign Language": ["A language of Tanzania."], "Taiwan Sign Language": ["A language of Taiwan."], "Swiss-Italian Sign Language": ["A sign language used in Switzerland."], "Swiss-German Sign Language": ["A sign language used in Switzerland."], "Swiss-French Sign Language": ["A sign language used in Switzerland."], "Sri Lankan Sign Language": ["A language of Sri Lanka."], "Spanish Sign Language": ["A language of Spain."], "ashtray": ["A receptacle for tobacco ashes and cigarette and cigar butts."], "Slovakian Sign Language": ["A language of Slovakia."], "Singapore Sign Language": ["A language of Singapore."], "Sierra Leone Sign Language": ["A language of Sierra Leone."], "Saudi Arabian Sign Language": ["A language of Saudi Arabia."], "Romanian Sign Language": ["A language of Romania."], "Rennellese Sign Language": ["A language of the Solomon Islands."], "asleep": ["In a sleeping state."], "asp": ["Any of several venomous snakes of Africa, Asia, and Europe."], "asparagus": ["The tender young shoot of a Eurasian plant (Asparagus officinalis), eaten as a vegetable."], "engagement ring": ["Ring which a man gives to his fianc\u00e9e on the occasion of an engagement, sometimes also the woman gives one."], "almond-shaped": ["Having the shape of an almond."], "amygdaloid": ["Having the shape of an almond."], "amygdala": ["Almond-shaped group of neurons in the medial temporal lobes of the brain which plays a central role in the processing and memory of emotions, especially fear."], "optative": ["A grammatical mood that indicates a wish or hope."], "hunter-gatherer": ["Someone who lives off wild plants and animals and does not keep livestock or cultivate land."], "prisoner of war": ["A combatant who is imprisoned by an enemy power during or immediately after an armed conflict."], "POW": ["A combatant who is imprisoned by an enemy power during or immediately after an armed conflict."], "PoW": ["A combatant who is imprisoned by an enemy power during or immediately after an armed conflict."], "PW": ["A combatant who is imprisoned by an enemy power during or immediately after an armed conflict."], "asperse": ["To attack falsely or with malicious intent the good name and reputation of someone."], "Assam": ["A state in north east India."], "asphalt": ["A mixture containing tar, used to make roads, pavements etc.", "To cover with tar or asphalt."], "allotropy": ["A property, exhibited by some elements of existing in multiple forms with different atomic structures."], "asphyxiate": ["To cause to die or lose consciousness by impairing normal breathing."], "allotrope": ["A form of an element that has a distinctly different molecular structure to another form of the same element."], "graphite": ["An allotrope of carbon consisting of planes of carbon atoms arranged in hexagonal arrays with the planes stacked loosely."], "dopant": ["An impurity element added to a crystal or semiconductor lattice in low concentrations in order to alter the optical/electrical properties of a semiconductor."], "aneutronic fusion": ["Any form of fusion power where no more than 1% of the total energy released is carried by neutrons."], "aspiration": ["A will to succeed.", "The act of taking ambient air into the lungs."], "anisotropy": ["Direction dependence of a physical property."], "Thomson scattering": ["The scattering of electromagnetic radiation by a charged particle."], "baby boom": ["Any period of greatly increased birth rate, and usually within certain geographical bounds."], "is an allotrope of": ["Indicates that a substance is an allotrope of an element"], "palette": ["The collection of colors or shades available to a graphic system or program.", "A surface on which a painter mixes colour pigments."], "magenta": ["Purplish red color evoked by lights with less power in yellowish-green wavelengths than in blue and red wavelengths (complements of magenta have wavelength 500\u2013530 nm).", "Of deep purplish red."], "Bezier curve": ["A cubic polynomial curve defined by the end points and two control points which indirectly determine the tangent vectors at the end points."], "fullerene": ["One of a family of carbon allotropes sometimes called buckyballs, when in a spherical configuration."], "assailant": ["A person who attacks."], "assassin": ["A murderer, who kills by a surprise attack and often is hired to do the deed."], "mobilize": ["activate or cause to move.", "To make something mobile."], "isotropy": ["Direction independence of a physical property."], "bremsstrahlung": ["The electromagnetic radiation produced by the acceleration of a charged particle, such as an electron, when it is deflected by another charged particle, such as an atomic nucleus."], "triangulation": ["A method of determining distance based on the principles of geometry.", "The combination of methodologies in the study of the same phenomenon or construct; a method of establishing the accuracy of information by comparing three or more types of independent points of view on data sources."], "claw": ["A curved pointed appendage, found at the end of a toe or finger or, in arthropods, of the tarsus."], "assent": ["Agreement with a statement or proposal to do something.", "To agree or concur.", "To be in accord."], "Yellow": ["The second-longest river in China, after the Yangtze River with 5,464 kilometers (3,398 mi). Originating in the Bayankala Mountains in Qinghai Province in western China, it flows through nine provinces of China and empties into the Bohai Sea."], "Huang He": ["The second-longest river in China, after the Yangtze River with 5,464 kilometers (3,398 mi). Originating in the Bayankala Mountains in Qinghai Province in western China, it flows through nine provinces of China and empties into the Bohai Sea."], "assert": ["To say definitely and categorically.", "To maintain or defend opinions, claims, rights, etc.", "To declare or affirm solemnly and formally as true."], "assertion": ["A positive statement or declaration, often without support or reason."], "spallation": ["A process in which fragments of material (spall) are ejected from a body due to impact or stress."], "assertive": ["Inclined to assert oneself."], "assessment": ["An official valuation of property for the purpose of levying a tax."], "assessor": ["A person who makes assessments, esp. for purposes of taxation."], "assignable": ["Capable of being specified.", "Capable of being attributed.", "Capable of being assigned."], "assignation": ["The act of distributing by allotting or apportioning.", "An appointment for a meeting between lovers."], "bile soap": ["A soap product made of curd soap and bovine bile."], "assignee": ["A person appointed to act for another."], "assimilate": ["To bring into conformity with the customs, attitudes, etc., of a group, nation, or the like.", "To include so that it no longer has separate existence."], "anti-clockwise movement": ["A movement in the opposite direction to the way the hands of an analogue clock move."], "ballet tutu": ["A short skirt worn by ballet dancers."], "Swan Lake": ["A ballet by Pyotr Ilyich Tchaikovsky which premiered in Moscow in 1877."], "craquelure": ["Fine cracks on paintings which form when a painting is subject to temperature fluctuations."], "Forest of Argonne": ["Wooden highland in north-eastern France."], "assist": ["To give assistance or aid to."], "crwth": ["6-string musical instrument of Welsh or Irish origin and played with a bow."], "Kalmyk-Oirat": ["A Mongolic language spoken by the Kalmyk people of the Republic of Kalmykia, a federal subject of the Russian Federation."], "assort": ["Arrange or order by classes or categories."], "low hanging fruit": ["Easily obtained gains; what can be obtained by readily available means."], "paradigm shift": ["A change in basic assumptions within the ruling theory."], "assorted": ["Of or containing various different kinds."], "asterisk": ["A star-shaped mark (*) used in printing to draw attention to a note, etc."], "Luganda": ["Language of Niger-Congo family, spoken in Uganda."], "astern": ["In a position behind a specified vessel or aircraft.", "In a backward direction."], "Nenets": ["A language of Russia (Asia)."], "asthmatic": ["A person suffering from asthma.", "Pertaining to asthma."], "astute": ["Intelligent, smart and capable of taking advantage of a situation."], "astonish": ["To surprise greatly."], "overuse": ["Use excessively and so rendering banal, for ex. a word."], "Mithilakshar": ["The traditional script of the Maithili language."], "jaws": ["The two opposable structures forming, or near the entrance to, the mouth."], "astonishing": ["Causing wonder, admiration or astonishment.", "Causing astonishment or surprise."], "nuclear spallation": ["Smashing of a atomic nucleus into smaller nuclei and neutrons caused by the impact of high energy particles (or radiation)"], "transuranium element": ["Chemical element with an atomic number greater than 92 (the atomic number of uranium)"], "furball": ["A ball of fur, particularly one coughed up by a cat."], "hairball": ["A ball of fur, particularly one coughed up by a cat."], "astonishment": ["Overpowering wonder or surprise."], "astound": ["To make someone very surprised."], "astounding": ["Bewildering or striking dumb with wonder."], "principle": ["A fundamental assumption."], "bilge": ["The compartment at the bottom of the hull of a ship or boat where water collects so that it may be pumped out of the vessel at a later time."], "acute-angled": ["Of a corner: having an angle of less than 90\u00b0."], "Berezina": ["A ca. 613 km long river in Belarus and a tributary of the Dnieper River."], "Beresina": ["A ca. 613 km long river in Belarus and a tributary of the Dnieper River."], "kurchatovium": ["The name proposed by the Russians in honour of Igor Vasilevich Kurchatov for the chemical element that became in the end rutherfordium. (atomic number: 104)"], "astral": ["Being or relating to or resembling or emanating from stars."], "aristocratic": ["Belonging to or characteristic of the nobility or aristocracy."], "aristocratical": ["Belonging to or characteristic of the nobility or aristocracy."], "aristocratically": ["In an aristocratic manner."], "Aristolochia": ["A large plant genus with over 500 species, of the family Aristolochiaceae."], "arithmetically": ["With respect to arithmetic."], "astride": ["With one leg on each side.", "With the legs stretched far apart."], "astrological": ["Relating to or concerned with astrology."], "astrology": ["The study of the stars and their influence on people's lives."], "astonished": ["Filled with the emotional impact of overwhelming surprise or shock."], "astonishingly": ["In an amazing manner; to everyone's surprise."], "additionally": ["By way of addition; in addition to; also."], "highly": ["In a high or esteemed manner."], "academical": ["Belonging to an academy.", "Belonging to a higher institution of learning; scholarly."], "academically": ["In an academic manner."], "academic costume": ["A costume worn on formal occasions by the faculty or students of a university or college."], "academic degree": ["An award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of studies. (source: UMLS)"], "academic year": ["The period of time each year when the school is open and people are studying."], "academic department": ["A division of a school or university that is responsible for a given subject."], "academic advisor": ["A faculty or professional staff member trained to help students select courses and plan programs of study for degree or program completion."], "academic freedom": ["The belief that the freedom of inquiry by students and faculty members is essential to the mission of the academy."], "astronomical": ["Of, pertaining to, or connected with astronomy.", "Extremely large."], "astronomic": ["Of, pertaining to, or connected with astronomy."], "astuteness": ["Intelligence manifested by being astute."], "administrable": ["Capable of being administered or managed."], "administratively": ["From an administrative point of view."], "dispense": ["To give or apply (medications).", "To divide something into portions and dispense it."], "asylum seeker": ["An individual who seeks refuge, esp. political asylum, in a foreign country."], "asymmetric": ["Not identical on both sides of a central line."], "antiquity": ["Ancient times; former ages; times long since past."], "asymmetrical": ["Not identical on both sides of a central line."], "asymmetry": ["The quality or state of being asymmetric."], "symmetry": ["Balance among the parts of something."], "atheistic": ["Relative to atheism or an atheist."], "Colombo": ["The capital city of Sri Lanka."], "atheistical": ["Relative to atheism or an atheist."], "athletic": ["With a strong, well-proportioned body and able to move easily and quickly.", "Vigorously active.", "Relating to or befitting athletics or athletes."], "Atlantic": ["The ocean lying between the Americas to the west and Europe and Africa to the east.", "Relating to or bordering the Atlantic Ocean."], "atmospheric": ["Pertaining to, existing in, or consisting of the atmosphere."], "atmospherical": ["Pertaining to, existing in, or consisting of the atmosphere."], "atomize": ["To reduce to fine particles or spray."], "atomizer": ["An apparatus for reducing liquids to a fine spray, as for medicinal or cosmetic application."], "atrocity": ["An atrocious act, thing, or circumstance.", "An excessively violent or vicious attack."], "weedy scorpionfish": ["(Rhinopias frondosa) A carnivorous ray-finned fish with venomous spines that lives in the Indian and Western Pacific oceans"], "world wide web": ["A graphical, interactive, hypertext information system that is cross-platform and can be run locally or over the global Internet. The Web consists of Web servers offering pages of information to Web browsers who view and interact with the pages. Pages can contain formatted text, background colors, graphics, as well as audio and video clips."], "attachable": ["Capable of being fastened or added to something else."], "attach\u00e9 case": ["A flat, usually rigid, rectangular briefcase for carrying business papers, documents, or the like."], "attached": ["Fond and affectionate."], "bedside lamp": ["Lamp on a bedside table near the bed."], "self-inductance": ["Property of an electric circuit: The ratio of the magnetic flux to the current that causes it."], "Samoan": ["The traditional language of Samoa and American Samoa. It is a member of the Austronesian family, and more specifically the Samoic branch of the Polynesian subphylum.", "Someone who is a citizen of Samoa or who is of Samoan origin."], "Apia": ["The capital city of Samoa."], "myocardium": ["The muscular tissue of the heart."], "attacker": ["A person who attacks."], "attain": ["To bring to a succesful end; to gain with effort.", "To arrive at or succeed in reaching or obtaining something (e.g. an objective, a goal)."], "nulliparous": ["Never having given birth to a child."], "nullipara": ["A woman who has never given birth."], "nulligravid": ["Never having been pregnant."], "Quirinal Palace": ["A palace built in 1573 upon the Quirinal Hill in Rome, the official residence of the President of the Italian Republic."], "patchouli oil": ["Essential oil obtained from the leaves of the patchouli plant (Pogostemon cablin or Pogostemon heyneanus)."], "shipowner": ["Someone who owns a ship or a share in a ship."], "attainable": ["Capable of being attained or accomplished."], "arrowsmith": ["A maker of arrows."], "attend": ["To care for medicinally or surgically; to apply medical care to.", "To go to or be present at (e.g. meetings, church services, university, etc.).", "To listen or give attention to.", "To be in charge of or deal with.", "To be a servant for, to work for, to be employed by."], "betray": ["To give away information about somebody.", "To cause someone to believe an untruth; to practice trickery or fraud.", "To be sexually unfaithful to one's spouse or lover."], "denounce": ["To give away information about somebody.", "To report (publicly or not) a dishonest, immoral or illegitimate person or entity."], "deceive": ["To cause someone to believe an untruth; to practice trickery or fraud."], "symmetric": ["With equal distribution about one or more axes."], "symmetrical": ["With equal distribution about one or more axes."], "symmetrically": ["In a symmetrical manner."], "anthropological": ["Of or concerned with the science of anthropology."], "swelling": ["Abnormal protuberance or localized enlargement."], "drown": ["To be suffocated in water or other fluid; to perish by suffocation in water.", "To kill by immersion in water or other liquid."], "eagle": ["Any of several large carnivorous birds in the family Accipitridae, having a powerful hooked bill and keen vision."], "sharpness": ["A quick and penetrating intelligence."], "agronomic": ["Of or pertaining to agronomy."], "agronomical": ["Of or pertaining to agronomy."], "agronomist": ["A scientist whose speciality is agronomy."], "aggressively": ["In an aggressive manner."], "sour": ["Having an acid, sharp or tangy taste.", "To make or become sour or disenchanted.", "Moody and melancholic."], "turn sour": ["To go sour or spoil."], "bittersweet": ["Both bitter and sweet.", "Expressing contrasting emotions of pain and pleasure."], "absolute": ["Loosed from any limitation or condition.", "Viewed apart from modifying influences or without comparison with other objects.", "Complete in itself."], "attendance": ["The act of attending.", "The persons or number of persons present."], "absorbed": ["Taken in through the pores of a surface.", "Fully occupied with one's thoughts.", "Taken in by a body without reflection."], "attendant": ["Following as a consequence.", "A person employed to look after someone or something."], "Sorani": ["A language of Iraq and Iran."], "prepare": ["To make ready for a specific future purpose.", "To make oneself ready.", "To make ready for eating or drinking.", "To produce or make by combining elements.", "To arrange by systematic planning and united effort (e.g. a plot, a strike, a plan).", "To teach by training.", "To undergo training or instruction for a particular role, function, or profession.", "To educate for a future role or function."], "conditioner": ["Anything that improves the condition of something.", "Someone who trains athletes.", "A substance used in washing (clothing or hair) to make things softer.", "A hair care product that improves the texture and appearance of human hair, usually applied after washing."], "attentive": ["Giving attention."], "attenuate": ["To weaken or reduce in force, intensity, effect, quantity."], "attic": ["A room at the top of a house under the roof."], "attire": ["To dress, array, or adorn, esp. for special occasions, ceremonials, etc.", "Clothing of a distinctive style or for a particular occasion."], "agent": ["An active power or cause.", "A representative who acts on behalf of other persons or organizations."], "art gallery": ["A room or series of rooms where works of art are exhibited.", "An institution, building, or room for the exhibition and conservation of works of art."], "arteriosclerosis": ["Hardening, narrowing or loss of elasticity in arteries or blood vessels."], "arthritic": ["Of, or affected by arthritis."], "ruse": ["A deceptive maneuver (especially to avoid capture)."], "gadget": ["A clever device designed for a specific practical use.", "A complicated or awkward device."], "osteoarthritis": ["Chronic breakdown of cartilage in the joints; the most common form of arthritis occurring usually after middle age."], "degenerative arthritis": ["Chronic breakdown of cartilage in the joints; the most common form of arthritis occurring usually after middle age."], "arthrosis": ["Chronic breakdown of cartilage in the joints; the most common form of arthritis occurring usually after middle age."], "stratagem": ["An elaborate or deceitful scheme contrived to deceive or evade.", "A maneuver in a game or conversation."], "subterfuge": ["An indirect or deceptive device or stratagem."], "arable": ["Suitable for cultivation, such as by ploughing."], "arbitrager": ["One who participates in arbitrage."], "arbitrariness": ["State of being arbitrary."], "arbitrate": ["To make a judgment (on a dispute) as an arbitrator or arbiter."], "arbitrator": ["A person to whom the authority to settle or judge a dispute is delegated."], "arboreal": ["Relating to, or resembling a tree.", "Living on or in trees."], "arcane": ["Understood by only a few; obscure; requiring secret or mysterious knowledge."], "triumphal arch": ["Monumental arch that commemorates a victory."], "archetypal": ["Of or pertaining to an archetype."], "arctic": ["Being extremely cold, snowy, or having other properties of extreme winter associated with the Arctic."], "arduously": ["In an arduous manner."], "Argentinian": ["A person from Argentina or of Argentinian descent."], "arguably": ["That is a plausible proposition; defensible because of solid reasons."], "argumentative": ["Prone to argue or dispute."], "arise": ["To get up.", "To start to exist."], "arranger": ["Person who arranges."], "arrogantly": ["In an arrogant manner."], "articulate": ["To pronounce (individual sounds or words) correctly and with good or true diction.", "Clear, effective.", "To make clear or effective.", "Able to bend or hinge at certain points or intervals.", "To bend or hinge something at intervals.", "To speak clearly."], "articulately": ["In an articulate manner."], "artless": ["Having or displaying no guile, cunning, or deceit."], "lattice steel pylon": ["Pylon, consisting of a steel famework, that supports high voltage power lines"], "indigo": ["A blue dye obtained from certain plants (the indigo plant or woad), or a similar synthetic dye.", "A color, between blue and violet, having an electromagnetic spectrum between about 420 and 450 nm in wavelength.", "Having indigo as a color."], "sponsor": ["To donate money to."], "put aside": ["To save money.", "To ignore or intentionally forget something, temporarily or permanently, so that more important things can have one's attention.", "Euphemism for \"ignore\", that is, postpone until the hell freezes over."], "unlikely": ["Not likely to happen; not to be reasonably expected.", "In an improbable manner."], "isolated": ["Distant or otherwise inaccessible."], "look away": ["To look to another place."], "aside": ["To one side so as to be out of the way."], "passionate": ["Characterized by intense emotion.", "(For a person) Given to strong feeling."], "ap\u00e9ritif": ["An alcoholic drink served before a meal as an appetiser."], "Meitei": ["A language of India, Bangladesh and Myanmar."], "Manupuri": ["A language of India, Bangladesh and Myanmar."], "clap": ["To praise or show approval, by clapping the hands.", "To strike the palms of the hands together, creating a sharp sound."], "postponement": ["A delay, as a formal delay in a proceeding.", "Act of putting off to a future time."], "application program": ["Software that has the scope to solve a specific problem."], "representative": ["One who may speak for another in a particular capacity, especially in negotation.", "Capturing the overall sense of a thing; representing something by a form, model, or resemblance.", "An item of information that is representative of a type or class."], "German (Switzerland)": ["The German language as spoken in Switzerland."], "German (Austria)": ["German as spoken in Austria."], "French (Switzerland)": ["French as spoken in Switzerland."], "French (France)": ["French as spoken in France."], "French (Canada)": ["French as spoken in Canada."], "noticeable": ["Capable of being seen or noticed."], "esteem": ["To account; to esteem; to think; to judge; to hold in opinion; to regard. (Source Webster 1913)", "Favourable regard.", "Regard with respect or admiration."], "lean": ["(Of a person or animal) Narrow in size, and usually indicating carrying little fat."], "learning": ["The cognitive process of acquiring skill or knowledge.", "Profound scholarly knowledge."], "apprehension": ["Anticipation, mostly of things unfavorable."], "Nagold": ["City in Baden-W\u00fcrttemberg, Germany, 50km to the south of Pforzheim.", "92 km long river in Baden-W\u00fcrttemberg, Germany, which has its source in the Northern Black Forest and flows into the Enz in Pforzheim."], "atypical": ["Deviating from the normal or common order, form, or rule."], "Linear A": ["A script used in ancient Crete from the 17th until the 15th century BCE which has only been partially deciphered."], "Linear B": ["A syllabary that was used for writing Mycenaean from the 15th until the 12th century BCE."], "katakana": ["A syllabary used in the Japanese language and one component of the Japanese writing system along with hiragana and kanji."], "kana": ["A general term for the syllabic Japanese scripts hiragana, katakana, as well as the old system known as man'y\u014dgana."], "auburn": ["A moderate reddish brown to brown."], "audacious": ["Fearlessly, often recklessly daring.", "Not being daunted or intimidated.", "Disposed to venture or take risks.", "Unrestrained by convention or propriety."], "audibility": ["Capacity of being heard."], "butchery": ["A place where animals are butchered for food.", "A ruthless killing of a great number of people.", "A shop that is specialized in meat and meat products."], "abattoir": ["A place where animals are butchered for food."], "shambles": ["A place where animals are butchered for food."], "archimandrite": ["The head of a monastery of monks."], "venter": ["The lower part of the front of the torso (or a comparable part of an animal), confined by the upper side by the midriff and the lowerside by the pelvis. Contains the intestines."], "fearsome": ["Dreadful; causing alarm and fear."], "frightening": ["Dreadful; causing alarm and fear."], "horrendous": ["Dreadful; causing alarm and fear."], "horrific": ["Dreadful; causing alarm and fear."], "direful": ["Dreadful; causing alarm and fear."], "aweary": ["In need of some rest or sleep, usually as a result of hard work or physical activity."], "weary": ["In need of some rest or sleep, usually as a result of hard work or physical activity.", "To become tired through overuse or great strain or stress.", "To make tired."], "precipitous": ["Happening quickly and with little or no warning."], "absinthe": ["An extract of absinthium and other bitter herbs, containing 60% alcohol."], "absinth": ["An extract of absinthium and other bitter herbs, containing 60% alcohol."], "ridiculous": ["Deserving of ridicule; foolish; absurd."], "speedup": ["The amount by which a speed or velocity increases."], "atom smasher": ["A device that uses electric fields to propel electrically charged particles to high speeds."], "apse": ["A semicircular projection from a building, especially the rounded east-end of a church that contains the altar."], "abundant": ["Abundant, fully sufficient or more than adequate in supply for the purpose or needs.", "Present in great quantity."], "acetylene": ["Any organic compound having one or more carbon-carbon triple bond; an alkyne."], "nitric acid": ["A toxic, corrosive, colorless liquid used to make fertilizers, dyes, explosives, and other chemicals."], "audible": ["Being able to be heard."], "fir": ["An evergreen coniferous tree of the genus Abies."], "grannie": ["The mother of one of someone's parents."], "couple": ["To bring two objects, ideas, or people together.", "Two persons considered as joined together, as a married or engaged pair, lovers, or dance partners."], "chord": ["A combination of three or more notes that blend harmoniously when sounded together."], "acropolis": ["The raised fortified area of an ancient Greek city."], "Adelaide": ["The fifth-largest city in Australia, with a population of over 1.1 million in 2006, and the capital and most populous city of the state of South Australia."], "Ceres": ["Dwarf planet in the asteroid belt"], "auditorium": ["The part of a theatre etc. where the audience sits."], "salpetre acid": ["A toxic, corrosive, colorless liquid used to make fertilizers, dyes, explosives, and other chemicals."], "Mentawai": ["A language of Indonesia (Sumatra)."], "Modest": ["Male Russian first name."], "Fyodor": ["Male Russian first name."], "gill": ["The breathing organ of fish and other aquatic animals."], "aikido": ["A Japanese martial art developed from jujitsu and making use of holds and throws."], "syrup": ["Any thick liquid that is added to or poured over food as a flavouring and has a high sugar content."], "aloe": ["The resin of the trees Aquilaria agallocha and Aquilaria malaccensis, known for their fragrant odour,", "A plant of the genus Aloe."], "friendship": ["The condition of being friends."], "Latin America": ["Those countries in the Americas and related islands which speak Latin-derived languages, mostly Spanish and Portuguese."], "augment": ["To increase in amount or make bigger in size or number."], "snow cover": ["A mass of snow which covers something, for example the soil"], "snow mantle": ["A mass of snow which covers something, for example the soil"], "gain weight": ["To become fatter, heavier."], "put on weight": ["To become fatter, heavier."], "Sater Frisian": ["Frisian language spoken mainly in the municipality Saterland in Germany"], "American Civil War": ["1861-1865 conflict between the Union (Northern states) and the 11 Southern states that seceded and were organized as the Confederate States of America."], "War between the States": ["1861-1865 conflict between the Union (Northern states) and the 11 Southern states that seceded and were organized as the Confederate States of America."], "decoration": ["Something that beautifies or adorns.", "Something that embellishes.", "An award for winning a championship or commemorating some other event."], "encourage": ["To mentally support; to motivate."], "ASCII": ["A 7-bit character set and character encoding."], "American Standard Code for Information Interchange": ["A 7-bit character set and character encoding."], "anti-Semitism": ["Prejudice, discrimination or hostility directed against Jews."], "antisemitism": ["Prejudice, discrimination or hostility directed against Jews."], "torch": ["A stick with a flame on one end used as a light source."], "circulatory system": ["The parts of a animal body comprising the heart, veins, capillaries and arteries."], "counterpoison": ["A remedy to counteract the effects of poison."], "plough": ["An agricultural device pulled through the ground in order to break it open into furrows for planting.", "To use a plough on to prepare for planting."], "St. Kitts and Nevis": ["A country in the Caribbean."], "aupair": ["A young person from abroad employed by a family to look after the children and help with the housework in return for room, meals, pocket money and an opportunity to learn the language."], "capacitance": ["Measure of the amount of electric charge an object can store at a given electric potential."], "uranium hexafluoride": ["Compound of uranium and flourine used in the uranium enrichment process."], "sandstone": ["A sedimentary rock produced by the consolidation and compaction of sand, cemented with clay etc."], "herring": ["A type of small, oily fish of the genus Clupea, often used as food."], "concord": ["Agreement of opinions.", "To be in accord."], "liberal arts": ["Those areas of learning that require and cultivate general intellectual ability rather than technical skills."], "humanities": ["Those areas of learning that require and cultivate general intellectual ability rather than technical skills."], "creative person": ["A person with creative talent who produces artworks."], "artiodactyl": ["Ungulate mammal from the order Artiodactyla having an even number of toe on each leg."], "artiodactyl mammal": ["Ungulate mammal from the order Artiodactyla having an even number of toe on each leg."], "Arctic": ["A region of the Earth above the Arctic Circle, containing the North Pole."], "Red Admiral": ["(Vanessa atalanta) Widespread butterfly with a wingspan of up to 60mm"], "aural": ["Of or pertaining to the ear.", "Of or pertaining to the sense of hearing.", "Relating to or characterized by an aura."], "aurist": ["A physician specializing in the treatment of ear diseases"], "ear specialist": ["A physician specializing in the treatment of ear diseases"], "auspicious": ["Giving hope of success."], "fragance": ["A pleasant smell."], "aroma": ["A pleasant smell."], "archeology": ["The scientific study of the material remains of the cultures of historical or prehistorical peoples.\\n(Source: MGH)"], "arch\u00e6ology": ["The scientific study of the material remains of the cultures of historical or prehistorical peoples.\\n(Source: MGH)"], "repent": ["To feel pain, sorrow, or regret for what one has done or omitted to do."], "fake": ["To cheat; to swindle; to steal; to rob.", "Not genuine; imitating something superior.", "To make a copy of with the intent to deceive."], "artillery": ["Part of the war material that includes guns, mortars, bombs, etc.", "An army unit that uses big guns."], "artillery unit": ["An army unit that uses big guns."], "calumniate": ["To attack falsely or with malicious intent the good name and reputation of someone."], "denigrate": ["To attack falsely or with malicious intent the good name and reputation of someone."], "assaulter": ["A person who attacks."], "inhalation": ["The act of taking ambient air into the lungs."], "breathing in": ["The act of taking ambient air into the lungs."], "opposer": ["Man who is hostile to, feels hatred towards, opposes the interests of, or intends injury to someone else."], "Bronze Age": ["A period in human cultural development when the most advanced metalworking (at least in systematic and widespread use) consists of techniques for smelting copper and tin from naturally occurring outcroppings of ore, and then alloying those metals in order to cast bronze."], "Iron Age": ["The stage in the development of any people in which tools and weapons whose main ingredient was iron were prominent."], "wrinkle": ["A small furrow, ridge or crease in an otherwise smooth surface."], "crease": ["A line or mark made by folding or doubling any pliable substance; hence, a similar mark, however produced."], "Assyria": ["An ancient region on the Upper Tigris river, with capital city of Assur."], "rough": ["Having a texture that has much friction. Not smooth.", "(of sea) With large waves."], "Khe": ["A language of Burkina Faso."], "Asteraceae": ["The second largest family of flowering plants, after Orchidaceae, in terms of number of species. The family comprises more than 1,600 genera and 23,000 species. (source: wikipedia)"], "sunflower family": ["The second largest family of flowering plants, after Orchidaceae, in terms of number of species. The family comprises more than 1,600 genera and 23,000 species. (source: wikipedia)"], "Compositae": ["The second largest family of flowering plants, after Orchidaceae, in terms of number of species. The family comprises more than 1,600 genera and 23,000 species. (source: wikipedia)"], "daisy family": ["The second largest family of flowering plants, after Orchidaceae, in terms of number of species. The family comprises more than 1,600 genera and 23,000 species. (source: wikipedia)"], "Koitabu": ["A language of Papua New Guinea."], "Koromira": ["A language of Papua New Guinea."], "aster family": ["The second largest family of flowering plants, after Orchidaceae, in terms of number of species. The family comprises more than 1,600 genera and 23,000 species. (source: wikipedia)"], "Kotafon Gbe": ["A language of Benin."], "Kyenele": ["A language of Papua New Guinea."], "Khisa": ["A language of C\u00f4te d'Ivoire and Burkina Faso."], "star divination": ["The study of the stars and their influence on people's lives."], "shrewd": ["Intelligent, smart and capable of taking advantage of a situation."], "godlessness": ["The position that no God or gods exist."], "heed": ["To perceive with the ear (paying attention to what is heard)."], "Atlas Mountains": ["A mountain range in northwest Africa extending about 2,400 km (1,500 miles) through Morocco, Algeria, and Tunisia."], "attractiveness": ["The state of being attractive or engaging."], "attractive": ["Pleasing to the eye or mind.", "Pleasing or appealing to the senses.", "Causing attraction; having the quality of attracting by inherent force."], "gravitational attraction": ["Physics: the force of mutual attraction between all masses in the universe."], "barbarian": ["Living outside of civilized societies.", "A person living an uncivilized life, in an original state viewed from a standpoint of the development of mankind from their infestation til today, having had no education in the narrow sense of modern civilisation's education."], "autism": ["Abnormal self-absorption, first observed in childhood, characterised by lack of response to people and limited ability to communicate."], "autobiography": ["A book about the life of a person written by himself or herself."], "autocrat": ["A cruel and oppressive dictator."], "despot": ["A cruel and oppressive dictator."], "tyrant": ["In ancient Greece, a ruler who had seized power without legal right to it.", "Any person who exercises power in a cruel way.", "A cruel and oppressive dictator."], "Kaonde": ["A language of Zambia and the Democratic Republic of the Congo"], "Eastern Krahn": ["A language of Liberia."], "Kimr\u00e9": ["A language of Chad."], "assassinator": ["A murderer, who kills by a surprise attack and often is hired to do the deed."], "Krenak": ["A language of Brazil."], "gather": ["To collect in one place, usually for a purpose.", "To call or bring together.", "To heap up; to collect or gather (e.g. work, magazines, etc.).", "To conclude or infer from evidence."], "Kimaragang": ["A language of Malaysia (Sabah)."], "Northern Kissi": ["A language of Guinea and Sierra Leone."], "Klias River Kadazan": ["A language of Malaysia (Sabah)."], "technical analysis": ["An effort to forecast prices by analyzing market data, ie historical price trends and averages, volumes, open interest, etc."], "factor analysis": ["A statistical technique reducing large data sets to the smallest number of factors required to explain the pattern of relationships in the data."], "SWOT analysis": ["A planning tool used to take a snapshot of a company or project at a point in time. SWOT is an acronym for Strengths, Weaknesses, Opportunities, and Threats."], "quantitative analysis": ["The determination of the absolute or relative abundance (often expressed as a concentration) of one, several or all particular substance(s) present in a sample. (source: Wikipedia)"], "financial analysis": ["An assessment of the viability, stability and profitability of a business, sub-business or project. (source: Wikipedia)"], "vulnerability analysis": ["The process of identifying how people, properties and structures will be damaged by a disastrous event."], "content analysis": ["A standard methodology in the social sciences for studying the content of communication."], "textual analysis": ["A standard methodology in the social sciences for studying the content of communication."], "requirements analysis": ["An analysis that encompasses those tasks that go into determining the needs or conditions to meet for a new or altered product, taking account of the possibly conflicting requirements of the various stakeholders, such as beneficiaries or users."], "numerical analysis": ["The study of algorithms for the problems of continuous mathematics."], "regression analysis": ["A technique that examines the relation of a dependent variable (response variable) to specified independent variables (explanatory variables)."], "profiling": ["The investigation of a program's behavior using information gathered as the program runs."], "performance analysis": ["The investigation of a program's behavior using information gathered as the program runs."], "analysis of algorithms": ["Determination of the amount of resources (such as time and storage) necessary to execute an algorithm."], "image analysis": ["The extraction of meaningful information from images; mainly from digital images by means of digital image processing techniques."], "aviator": ["A person who flies an aircraft."], "warn": ["To scold or rebuke; to counsel in terms of someone's behavior.", "To make someone aware of impending danger, etc."], "saffron": ["A seasoning made from the stigma of the saffron plant.", "A yellow color that resembles that of saffron.", "Having a yellow color, like that of saffron."], "Miluk": ["An extinct language of the United States."], "Karkin": ["An extinct language of the Unites States."], "Kato": ["An extinct language of the United States."], "authenticity": ["The quality or condition of being authentic, trustworthy, or genuine."], "attributable": ["Capable of being attributed."], "Abraham Lincoln": ["The sixteenth President of the United States, serving from 4 March 1861 until his assassination."], "baseball game": ["A bat-and-ball sport played between two teams usually of nine players each."], "authoritarian": ["Considering obedience to authority more important than personal freedom."], "Lumbee": ["An extinct language of the United States."], "fortune": ["Something positive that happens to someone by chance.", "A large amount of possesions or money.", "An outcome, condition or event that is predetermined by fate [the power that predetermines events].", "A prediction or set of predictions about a person's future provided by a fortune teller.", "A small slip of paper with wise or vaguely prophetic words printed on it, baked into a fortune cookie.", "The amount of money one has; especially, if it is vast."], "Azores": ["A Portuguese archipelago in the Atlantic Ocean, about 1,500 km (950 mi) from Lisbon and about 3,900 km (2,400 mi) from the east coast of North America."], "cod": ["A marine fish of the family Gadidae."], "selbri": ["The capacity of a word in the Lojban language to describe a relationship. The definition of a selbri gives a fixed structure and word-order between the relationship and its arguments."], "Bahama Islands": ["A country in the Caribbean with capital Nassau."], "ballet": ["A classical form of dance accompanied by music."], "basketball game": ["A sport in which two opposing teams of five players strive to throw a ball through a hoop."], "ointment": ["A semisolid preparation intended for external application to the skin or mucous membranes. (source: UMLS)"], "unction": ["A semisolid preparation intended for external application to the skin or mucous membranes. (source: UMLS)"], "unguent": ["A semisolid preparation intended for external application to the skin or mucous membranes. (source: UMLS)"], "balm": ["A semisolid preparation intended for external application to the skin or mucous membranes. (source: UMLS)"], "salve": ["A semisolid preparation intended for external application to the skin or mucous membranes. (source: UMLS)"], "bamboo": ["A group of woody perennial evergreen plants in the true grass family Poaceae, subfamily Bambusoideae, tribe Bambuseae."], "Kaxarar\u00ed": ["A language of Brazil."], "Okolod": ["A language of Indonesia (Kalimantan) and Malaysia."], "tray": ["A shallow platform designed for carrying things."], "banquet": ["A large public meal, complete with main courses and desserts."], "feast": ["A large public meal, complete with main courses and desserts."], "inexpensive": ["Low in price."], "authoritative": ["Having authority, ascendancy or influence."], "rod": ["A photoreceptor cell in the retina of the eye that can function in less intense light than can the other type of photoreceptor, cone cells.", "A straight, round stick, shaft or bar.", "A long thin implement made of metal or wood."], "rod cell": ["A photoreceptor cell in the retina of the eye that can function in less intense light than can the other type of photoreceptor, cone cells."], "cone cell": ["A photoreceptor cell in the retina of the eye which function best in relatively bright light."], "pious": ["Of or pertaining to piety, devout, exhibiting piety.", "Believing in and showing reverence for God or a deity."], "abstraction": ["The act of leaving out of consideration one or more properties of a complex object so as to attend to others."], "cease": ["To have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical.", "To put an end to a state or an activity."], "full moon": ["The lunar phase during which the moon is in opposition to the sun, making it completely visible."], "Phobos": ["The larger and closer of Mars' two moons."], "aleurone": ["A protein found in protein granules of maturing seeds and tubers."], "Tigrigna": ["A language of Ethiopia, Eritrea and Israel."], "Tigrinya": ["A language of Ethiopia, Eritrea and Israel."], "cyanobacteria": ["Microorganisms, formerly classified as algae but now regarded as bacteria, including nostoc, which contain a blue pigment in addition to chlorophyll.\\n(Source: CED)"], "algaecide": ["Any substance or chemical applied to kill or control algal growth."], "muriatic acid": ["A solution of hydrogen chloride gas in water."], "authorship": ["The state or fact of being an author."], "anatid": ["Member of the bird familly anatidae."], "autobiographical": ["Relating to or in the style of an autobiography."], "South Asia": ["A geographic region of the Asian continent bordered in the north by the countries of Central Asia and in the south by the Arabian Sea and the Bay of Bengal, extending westward into Iran and eastward into China, including Afghanistan, Pakistan, India, Nepal, Bangladesh, Burma, Bhutan and Sri Lanka."], "Southwest Asia": ["A geographic region of Asia that includes Turkey, Iran and other countries of the Middle East and the Arabian peninsula."], "East Asia": ["A geographic region of the Asian continent bordered by the Pacific Ocean in the east that includes China, Japan, Korea, Macao, Taiwan and Siberia."], "downwards": ["From an higher position to a lower one."], "downward": ["From an higher position to a lower one."], "downwardly": ["From an higher position to a lower one."], "birch tree": ["A tree of the genus Betula, with small leaves and a trunk that is white with darker blotches."], "fir tree": ["An evergreen coniferous tree of the genus Abies."], "opened": ["Not closed, something that has been opened."], "tied": ["Bound or restrained by one or more ropes, cords, strings, or the like."], "electric locomotive": ["Locomotive that is propelled by electric motors"], "chetah": ["A member of the cat family, a poor climber that hunts by speed and stealth."], "connect": ["To establish connection between two or more things."], "link up": ["To establish connection between two or more things."], "mentum": ["The bottom of the face, below the mouth."], "ravine": ["A deep narrow valley or gorge in the earth's surface worn by running water."], "bayonet": ["A pointed instrument of the dagger kind fitted on the muzzle of a musket or rifle, so as to give the soldier increased means of offence and defence."], "net profit": ["Income following the deduction of all expenses, taxes, and the like."], "lucre": ["Income following the deduction of all expenses, taxes, and the like."], "profits": ["Income following the deduction of all expenses, taxes, and the like."], "earnings": ["Income following the deduction of all expenses, taxes, and the like."], "glucinium": ["A corrosion-resistant, toxic silvery-white metallic element that occurs chiefly in beryl and is used mainly in x-ray windows and in the manufacture of alloys. Symbol: Be, atomic number: 4."], "autocracy": ["Government by a single person having unlimited power.", "The rule of a despot."], "Bible": ["The collections of canonical religious writings of Judaism and of Christianity.", "The sacred writings of the Christian religions."], "Christian Bible": ["The sacred writings of the Christian religions."], "Book": ["The sacred writings of the Christian religions."], "Good Book": ["The sacred writings of the Christian religions."], "Holy Scripture": ["The sacred writings of the Christian religions."], "Holy Writ": ["The sacred writings of the Christian religions."], "Scripture": ["The sacred writings of the Christian religions."], "Word of God": ["The sacred writings of the Christian religions."], "Word": ["The sacred writings of the Christian religions."], "bovines": ["Medium-sized to large ungulates, including domestic cattle, Bison, the Water Buffalo, the Yak, and the four-horned and spiral-horned antelopes."], "biography": ["A written account of a person's life and the branch of literature concerned with the lives of people."], "aurochs": ["A bison species, Bison bonasus, and the heaviest land animal in Europe."], "bike": ["A vehicle with two wheels in tandem, pedals connected to the rear wheel by a chain, handlebars for steering, and a saddlelike seat."], "cycle": ["A vehicle with two wheels in tandem, pedals connected to the rear wheel by a chain, handlebars for steering, and a saddlelike seat.", "An interval of space or time in which one set of events or phenomena is completed.", "To ride a bicycle.", "To ride a motorcycle."], "biological science": ["A division of the natural sciences concerned with the study of life and living organisms."], "whiteness": ["The quality or state of being white; white color, or freedom from darkness or obscurity on the surface."], "web log": ["A frequent and chronological publication of comments and thoughts on the web."], "blues": ["A musical form, African-American in origin, generally featuring an eight-bar or twelve-bar structure and using the blues scale."], "blouse": ["An outer garment, usually loose, that is similar to a shirt and reaches from the neck to the waist or below."], "billiard": ["A shot in billiards or snooker in which the cue ball strikes two other balls."], "fire fighter": ["A person who is trained to put out fires."], "fire-eater": ["A person who is trained to put out fires."], "lightbulb": ["A filament surrounded by glass which is screwed into the socket of a lamp and which emits light when supplied with current."], "incandescent lamp": ["A filament surrounded by glass which is screwed into the socket of a lamp and which emits light when supplied with current."], "electric light": ["A filament surrounded by glass which is screwed into the socket of a lamp and which emits light when supplied with current."], "electric-light bulb": ["A filament surrounded by glass which is screwed into the socket of a lamp and which emits light when supplied with current."], "incandescent light bulb": ["A filament surrounded by glass which is screwed into the socket of a lamp and which emits light when supplied with current."], "Kalimantan": ["The third largest island in the world and is located at the centre of Maritime Southeast Asia."], "yak": ["To regurgitate the contents of the stomach.", "A long-haired bovine found throughout the Himalayan region of south Central Asia, the Qinghai-Tibetan Plateau and as far north as Mongolia."], "Republic of Bosnia and Herzegovina": ["A country on the Balkan peninsula of southern Europe whose capital is Sarajevo."], "automate": ["To follow or to utilize the principles of automation."], "automobile": ["A four-wheeled motor vehicle used for land transport."], "buoy": ["A float moored in water to mark a location, warn of danger, or indicate a navigational channel.", "A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "botanic": ["Of or relating to plants or botany."], "wedding ceremony": ["A ceremony celebrating the beginning of a marriage, during which the marrying parties exchanges vows."], "nuptials": ["A ceremony celebrating the beginning of a marriage, during which the marrying parties exchanges vows."], "hymeneals": ["A ceremony celebrating the beginning of a marriage, during which the marrying parties exchanges vows."], "marriage ceremony": ["A ceremony celebrating the beginning of a marriage, during which the marrying parties exchanges vows."], "autopsy": ["Inspection and dissection of a body after death, as for determination of the cause of death.", "To perform an autopsy."], "okapi": ["(Okapia johnstoni) Ungulate of the Ituri Rainforest in central Africa, closely related to the giraffe"], "Adonis": ["A genus of about 20-30 species of flowering plants of the family Ranunculaceae, native to Europe and Asia.", "A figure of West Semitic origin, where he is a central cult figure in various mystery religions, who enters Greek mythology in Hellenistic times.", "A handsome young man."], "methane series": ["Paraffins. A homologous series of saturated hydrocarbons having the general formula CnH2n+2. Their systematic names end in -ane. They are chemically inert, stable, and flammable. The first four members of the series (methane, ethane, propane, butane) are gases at ordinary temperatures; the next eleven are liquids, and form the main constituents of paraffin oil; the higher members are solids. Paraffin waxs consists mainly of higher alkanes.\\n(Source: UVAROV)"], "alkane series": ["Paraffins. A homologous series of saturated hydrocarbons having the general formula CnH2n+2. Their systematic names end in -ane. They are chemically inert, stable, and flammable. The first four members of the series (methane, ethane, propane, butane) are gases at ordinary temperatures; the next eleven are liquids, and form the main constituents of paraffin oil; the higher members are solids. Paraffin waxs consists mainly of higher alkanes.\\n(Source: UVAROV)"], "Alberta": ["One of Canada's prairie provinces located in western Canada."], "stud": ["To adorn or garnish with nails.", "A piece of jewelry consisting of a small ornament mounted on a metal post that is passed through the pierced earlobe.", "A vertical member of wood, steel, etc., forming the frame of a wall and covered with plasterwork, siding, etc."], "luncheon": ["Meal usually eaten at midday."], "edible bean": ["A common name for large edible plant seeds of several genera of ''Fabaceae''."], "avail": ["To be of use or value to."], "unfasten": ["To make undone or untied; to free from any fastening."], "unfastened": ["Not closed, something that has been opened."], "Ibrahim": ["The father of Isaac. (Noun, given name; Christianity; Source: IPDF);"], "steep": ["Of a near-vertical gradient; of a slope, surface, curve, etc. that proceeds upward at an angle near vertical."], "beggar": ["A person who begs.", "To make poor."], "lighter": ["A small, reusable, handheld device for creating fire."], "squeeze box": ["A portable, keyed wind instrument, whose tones are generated by play of the wind from a squeezed bellows upon free metallic reeds.", "A musical instrument, such as the accordion and the concertina, that produces sound by compressing and decompressing a flexible bag."], "piano accordion": ["A portable, keyed wind instrument, whose tones are generated by play of the wind from a squeezed bellows upon free metallic reeds."], "comptroller": ["A person who maintains the financial records of other people."], "controller": ["A person who maintains the financial records of other people.", "A mechanism that controls or regulates the operation of a machine, especially a peripheral device in a computer."], "precise": ["Exactly right."], "rigorous": ["Manifesting, exercising, or favoring rigor."], "ethyne": ["Any organic compound having one or more carbon-carbon triple bond; an alkyne."], "availability": ["The state of being suitable or ready for use"], "available": ["Suitable or ready for use."], "avenge": ["To take vengeance or exact satisfaction for."], "avenger": ["Someone who takes vengeance."], "Snow Leopard": ["(Uncia uncia) A large cat native to the mountain ranges of Central Asia."], "ounce": ["(Uncia uncia) A large cat native to the mountain ranges of Central Asia."], "snow leopard": ["(Uncia uncia) A large cat native to the mountain ranges of Central Asia."], "\u00e5ngstr\u00f6m": ["A internationally recognised unit of length that is equal to 0.1 nanometre (nm)."], "angstrom": ["A internationally recognised unit of length that is equal to 0.1 nanometre (nm)."], "elver": ["The young offspring of the eel."], "young eel": ["The young offspring of the eel."], "anus": ["The lower opening of the digestive tract, through which feces pass."], "deixis": ["A process whereby words or expressions rely absolutely on context."], "common year": ["A calendar year with 365 days."], "oil mill": ["A mill where oil is obtained by grinding and squeezing plants."], "oil plant": ["Plant that is used to make vegetable oil and fats."], "coumarin": ["A toxin found in many plants, notably in high concentration in the tonka bean, woodruff, and bison grass."], "aversion": ["Extreme hatred or detestation; the feeling of utter dislike.", "Natural and unrational aversion for someone or something."], "avert": ["To turn away, especially one's eyes.", "Prevent the occurrence of."], "aviary": ["A large cage or a house or enclosure in which birds are kept."], "folate": ["A salt derived from folic acid."], "folic acid": ["A form of the water-soluble Vitamin B9 which occurs naturally in food and can also be taken as supplements."], "avid": ["Having an ardent desire or unbounded craving.", "Marked by active interest and enthusiasm."], "excise tax": ["A tax charged on goods produced within the country."], "avidity": ["Ardent desire or craving.", "A positive feeling of wanting to push ahead with something."], "avionics": ["The science and technology of the development and use of electrical and electronic devices in aviation."], "copyright": ["The right by law to be the entity which determines who may publish, copy and distribute a piece of writing, music, picture or other work of authorship."], "de facto standard": ["A standard that has come into use by general acceptance, custom or convention but have no formal recognition."], "backward compatibility": ["Compatible with earlier models or versions of the same product. A new version of a program is said to be backward compatible if it can use files and data created with an older version of the same program. (source: IEEE)"], "compliance": ["Acting according to certain accepted standards."], "conformation": ["Acting according to certain accepted standards."], "abidance": ["Acting according to certain accepted standards."], "non-conformity": ["The non-fulfillment of a specified requirement."], "stakeholder": ["Any organisation or individual that has a direct interest in actions or decisions."], "Himbeergeist": ["A clear, mild eau-de-vie (brandy) made from double distillation of the fermented juice of rasberries."], "sandbar": ["A somewhat linear landform within or extending into a body of water, typically composed of sand, silt or small pebbles."], "sandbank": ["A somewhat linear landform within or extending into a body of water, typically composed of sand, silt or small pebbles."], "avoidance": ["The act of avoiding or keeping away from."], "avow": ["To declare or affirm solemnly and formally as true.", "To declare or affirm solemnly and formally as true.", "To admit to the truth, particularly in the context of sins or crimes committed."], "avowal": ["An open statement of affirmation."], "protium": ["Hydrogen isotope whose atomic nucleus only consists of a proton"], "prime": ["A natural number which has exactly two natural number divisors, namely 1 and the prime number itself.", "Being a natural number greater than 1 that has only two different divisors: itself and 1."], "abbreviated": ["Cut short."], "briefly": ["In an abbreviated form.", "[Used to introduce a short summary statement.]", "For a brief period."], "antiproton": ["Physics: antiparticle of the proton."], "Tierra del Fuego": ["Archipelago at the southernmost tip of South America."], "amphidromous": ["(aquatic animals:) moving between fresh and salt water during some part of life cycle, but not for breeding."], "awash": ["Overflowing with water."], "potamodromous": ["(aquatic animals:) Migrating within fresh water only."], "short circuit": ["An unintentional electrical connection of low resistance or impedance in a circuitry or installation."], "oceanodromous": ["(aquatic animals) Migrating within salt water only."], "square number": ["Mathematics: An integer that is the product of some integer with itself."], "tavern": ["Establishment where you can get a drink."], "geometric series": ["Sequence of numbers, whose elements are the sum of the first n elements of an geometric sequence."], "hypotenuse": ["Geometry: The side of a right triangle opposite the right angle."], "aberration": ["An optical phenomenon resulting from the failure of a lens or mirror to produce a good image.", "The effect by which the apparent direction of distant astronomical bodies is altered by the velocity of the Earth and the finite speed of light.", "Deviation from what is regarded as normal, correct, or natural."], "optical aberration": ["An optical phenomenon resulting from the failure of a lens or mirror to produce a good image."], "aperture": ["In photography, the camera lens opening and its relative diameter. Measured in f-stops, such as f/8, etc. As the number increases, the size of the aperture decreases, thereby reducing the amount of light passing through the lens and striking the film. (source: Ackland Art Museum)"], "arabesque": ["An elaborate design of intertwined floral figures or complex geometrical patterns, manly used in Islamic Art and architecture."], "automatism": ["Automatic, mechanical, and apparently undirected behavior which is outside of conscious control. (source UMLS)"], "acrylic": ["A group of related thermoplastic or thermosetting plastic substances derived from acrylic acid, methacrylic acid or other related compounds."], "acrylic resin": ["A group of related thermoplastic or thermosetting plastic substances derived from acrylic acid, methacrylic acid or other related compounds."], "analemma": ["A curve representing the angular offset of a celestial body (usually the Sun) from its mean position on the celestial sphere as viewed from another celestial body."], "astrometry": ["The precise measurement of the position and motion of astronomical objects."], "apparition": ["The period of time when it is possible to observe an object in the sky.", "An act of appearing or becoming visible unexpectedly.", "The appearance of a ghostlike figure.", "A ghostly appearing figure.", "Something existing in perception only."], "100BaseTX": ["IEEE physical layer network specification for 100 Mbps over two pairs of Category 5 UTP or STP wire."], "10BaseT": ["IEEE 802.3 Ethernet LAN specification, using unshielded twisted pair wiring running at 10Mbps."], "authentication server": ["A server that provides the management and services of authentication."], "Central Authentication Service": ["A single sign-on protocol designed to allow untrusted web applications to authenticate users against a trusted central server."], "biometric passport": ["A combined paper and electronic identity document that uses biometrics to authenticate the citizenship of travelers."], "biometric": ["Of, pertaining to or using biometrics."], "grater": ["A kitchen implement used to cut food products (such as cheese and carrots) into small strips."], "cheese grater": ["A kitchen implement used to cut food products (such as cheese and carrots) into small strips."], "awe": ["An overwhelming feeling of wonder or admiration."], "awhile": ["For a short time or period."], "Emma": ["Female first name."], "Matilda": ["Female first name."], "Mathilda": ["Female first name."], "Maud": ["Female first name."], "cathetus": ["Either one of the two sides in a right triangle, which form the right angle."], "Betelgeuse": ["The second brightest star in the constellation Orion."], "Bamberg": ["A town in Bavaria, Germany, located in Upper Franconia on the river Regnitz, close to its confluence with the river Main."], "Regnitz": ["A river in Bavaria, Germany. It is a left tributary of the Main and is 58 km in length."], "Main": ["A river in Germany, 524 km (329 miles) long, and one of the more significant tributaries of the Rhine."], "awning": ["A canopy made of canvas to shelter people or things from rain or sun."], "Kandas": ["A language of Papua New Guinea."], "awry": ["Away from the expected or proper direction.", "In an oblique manner."], "axiomatic": ["Of or relating to or derived from axioms."], "azalea": ["Any of various shrubs of the genus Rhododendron having showy, variously colored flowers."], "Kairui-Midiki": ["A language of East Timor."], "Kreen-Akarore": ["A language of Brazil."], "baa": ["To make the sound of a sheep.", "The bleating cry of a sheep."], "babbler": ["An obnoxious and foolish and loquacious talker."], "auto racing": ["Any of various sports in which automobiles (motor cars) are raced, either around a track, on roads or across country."], "hitchhike": ["To try to get a ride in a passing vehicle while standing at the side of a road. Generally by either sticking out ones thumb or holding a sign with one's stated destination."], "hitch": ["To try to get a ride in a passing vehicle while standing at the side of a road. Generally by either sticking out ones thumb or holding a sign with one's stated destination.", "To hook or entangle."], "backgammon": ["A board game for two players, pieces move according to throws of the dice.", "A victory in the game backgammon when the loser has not borne off a stone, and still has one or more stones in the winner's inner home row or on the bar."], "affect": ["To act as if something is true.", "To have an effect upon.", "To have an emotional or cognitive impact upon."], "animate": ["To impart motion or the appearance of motion to (e.g. a cartoon)."], "cheer": ["To show approval or good wishes by shouting.", "To spur on or encourage especially by cheers and shouts."], "backlog": ["A pile of uncompleted work which has been collected."], "Agave": ["A succulent plant of a large botanical genus of the same name, belonging to the family Agavaceae."], "electric motor": ["Electromechanic engine that converts eletrical energy into mechanical energy."], "Almer\u00eda": ["The capital of the province of Almer\u00eda, Spain. It is located in southeastern Spain on the Mediterranean Sea.", "A province of southern Spain. It is bordered by the provinces of Granada, Murcia, and the Mediterranean Sea. Its capital is Almer\u00eda."], "atomic": ["Deriving destructive energy from the release of atomic energy.", "Unable to be split or made any smaller."], "nuclear": ["Deriving destructive energy from the release of atomic energy."], "\u00c1vila": ["The capital of the province of the same name, part of the autonomous community of Castile and Le\u00f3n, Spain.", "A province of central-western Spain, in the southern part of the autonomous community of Castile and Le\u00f3n. It is bordered by the provinces of Toledo, C\u00e1ceres, Salamanca, Valladolid, Segovia, and Madrid."], "Acapulco": ["A city and major sea port in the state of Guerrero on the Pacific coast of Mexico, 300 km (190 miles) southwest from Mexico City."], "accidentally": ["Without advance planning."], "by chance": ["Without advance planning."], "circumstantially": ["Without advance planning."], "unexpectedly": ["Without advance planning."], "aquatic": ["Relating to water; living in or near water, taking place in water."], "African": ["A native of Africa or ethnologically belonging to an African race.", "Of or pertaining to Africa."], "contrite": ["Sincerely penitent or feeling regret or sorrow, especially for one\u2019s own actions."], "repentant": ["Sincerely penitent or feeling regret or sorrow, especially for one\u2019s own actions."], "take in": ["To ingest food, medicine, drugs, etc.", "To express willingness to have (one) in one's home or environment.", "To take into one's family.", "To earn, to gain (money)."], "tributary": ["A river that flows into a larger river or other body of water."], "Alexandria": ["The second-largest city in Egypt, and its largest seaport, with a population of 3.5 to 5 million."], "Adam": ["The first man created by God, according to Book of Genesis."], "Eve": ["Adam's wife, created for and named by Adam, according to Book of Genesis."], "Aguascalientes": ["The capital of the state of Aguascalientes in western central Mexico.", "A state of Mexico, situated in the center of the country."], "isolate": ["To set apart or cut off from others."], "insulate": ["To set apart or cut off from others."], "agglomerate": ["To wind or collect into a ball; hence, to gather into a mass or anything like a mass; to form into one cluster.", "Clustered together but not coherent.", "To heap up; to collect or gather (e.g. work, magazines, etc.)."], "backrest": ["A support that you can lean against while sitting."], "bacon": ["The flesh of the back and sides of a pig, salted and dried, used as food."], "baddie": ["A villainous or criminal person."], "fortress": ["A fortified place; a large and permanent fortification, sometimes including a town."], "baddy": ["A villainous or criminal person."], "Albacete": ["A city and municipality in southeastern Spain, 278 km southeast of Madrid, the capital of the province of Albacete in the autonomous community of Castilla-La Mancha.", "A province of central Spain, in the southern part of the autonomous community of Castila-La Mancha. It is bordered by the provinces of Granada, Murcia, Alicante, Valencia, Cuenca, Ciudad Real and Ja\u00e9n."], "Alpine": ["Of or pertaining to the Alps, or to any lofty mountain."], "Andean": ["Of or pertaining to the Andes mountains in South America."], "analytical": ["Using or skilled in using analysis."], "analytic": ["Using or skilled in using analysis."], "angular": ["Relating to an angle or to angles; having an angle or angles; forming an angle or corner."], "Anzo\u00e1tegui": ["One of the 23 component states of Venezuela, located in the northeastern region of the country."], "Aragua": ["One of the 23 component states of Venezuela, located in the north-central region of the country."], "Antwerp": ["A city and municipality in Belgium and the capital of the Antwerp province in Flanders, one of Belgium's three regions."], "width": ["The extent of something from side to side."], "breadth": ["The extent of something from side to side."], "badmouth": ["To criticize or disparage, often spitefully or unfairly."], "bad-tempered": ["Annoyed and irritable."], "common quail": ["(Coturnix coturnix) Small (17 cm) rotund bird from the pheasant family (Phasianidae)"], "Alzheimers": ["A common form of dementia of unknown cause, usually beginning in late middle age, characterized by memory lapses, confusion, emotional instability, and progressive loss of mental ability."], "breast cancer": ["A cancer that starts in the cells of the breast."], "abdominal pain": ["Sensation of discomfort, distress, or agony in the abdominal region; generally associated with functional disorders, tissue injuries, or diseases. (source: UMLS)"], "attention deficit disorder": ["Behavior disorder originating in childhood in which the essential features are signs of developmentally inappropriate inattention, impulsivity, and hyperactivity."], "environmental": ["Concerned with the ecological effects of altering the environment."], "North Korowai": ["A language of Indonesia (Papua)."], "Kurama": ["A language of Nigeria."], "Krim": ["A language of Sierra Leone."], "Sapo": ["A language of Liberia."], "Korop": ["A language of Nigeria and Cameroon."], "Krui": ["A language of Indonesia (Sumatra)."], "Kru'ng 2": ["A language of the northeastern, Rattanakiri Province and eastern Stung Treng, Cambodia."], "Gbaya": ["A language of Sudan."], "al-Andalus": ["The Arabic name given to those parts of the Iberian Peninsula governed by Muslims, or Moors, at various times in the period between 711 and 1492."], "Western Krahn": ["A language of Liberia and the C\u00f4te d'Ivoire"], "Karon": ["A Niger-Congo language spoken by the Karoninka people, mostly in southern Senegal."], "Sota Kanum": ["A language of Indonesia (Papua)."], "Shuwa-Zamani": ["A language of Nigeria."], "Shambala": ["A language of Tanzania."], "Southern Kalinga": ["A language of Philippines."], "Kuanua": ["A language of Papua New Guinea."], "gammon": ["A victory in the game backgammon when the loser has not borne off any stone"], "audition": ["A trial performance for an actor, singer, musician etc."], "epicontinental": ["Located on a plateau or on continental platform."], "celestial mechanics": ["Division of astronomy dealing with the motions and gravitational effects of celestial objects."], "balding": ["Becoming bald."], "epeiric": ["Located on a plateau or on continental platform."], "supervise": ["To keep under surveillance.", "To be in charge of, direct and control a work done by others."], "ride herd on": ["To keep under surveillance."], "admonisher": ["Someone who gives a warning so that a mistake can be avoided."], "reminder": ["Someone who gives a warning so that a mistake can be avoided."], "unleaded gasoline": ["Petrol, which has no lead additives in it and therefore creates less lead pollution in the atmosphere."], "Andalusian": ["ISO 639-6 entity", "A person whose ancestors are from Andalusia or who resides in Andalusia.", "Of or pertaining to Andalusia or its inhabitants (present or past)."], "nucleon": ["Collective name for the constituents of the atomic nucleus: neutron and proton."], "community": ["A social group of organisms sharing an environment, normally with shared interests."], "concerto": ["A musical work in which one solo instrument is accompanied by an orchestra."], "mya": ["A unit of one million years, used in geology and astronomy."], "global cooling": ["A decrease in the average temperature of the Earth's near-surface air and oceans."], "cisalpine": ["Viewed from Rome: On this side of the Alps."], "transalpine": ["Viewed from Rome: Beyond the Alps."], "diss": ["To put someone down, or show disrespect by the use of insulting language or dismissive behaviour."], "Kuni": ["A language of Papua New Guinea."], "Bafia": ["A language of Cameroon."], "degenerate": ["To lose desirable qualities."], "waistcoat": ["A usually sleeveless garment worn over a shirt."], "whisker": ["A growth of facial hair between the nose and the upper lip.", "A monocrystalline filament that grows from a metallic surface and having a very high tensile strength."], "Cumae": ["Ancient Greek settlement lying to the northwest of Naples in the Italian region of Campania."], "Kusaghe": ["A language of the Solomon Islands."], "Krisa": ["A language of Papua New Guinea."], "Uare": ["A language of Papua New Guinea."], "Kumalu": ["A language of Papua New Guinea."], "Kumba": ["A language of Nigeria."], "bale": ["A large bundle of goods or material, cloth, hay etc. tied together for storage or transport."], "ballad": ["Any light, simple song, esp. one of sentimental or romantic character, having two or more stanzas all sung to the same melody."], "of business": ["Of or related to business."], "of the": ["The contraction of preposition \"de\" with the article \"el\"."], "CD": ["A flat, round, optical medium that can store up to 700 megabytes of digital data or 80 minutes of audio. Data stored is read using a laser."], "ball bearing": ["A bearing consisting of a number of hard balls running in grooves in the surfaces of two concentric rings, one of which is mounted on a rotating or oscillating shaft or the like."], "ball game": ["Any game played with a ball."], "ballistic": ["Of or pertaining to ballistics."], "ball lightning": ["A rare form of lightning, consisting of a bright, luminous ball that moves rapidly along objects or floats in the air."], "econometrics": ["A branch of economics concerned with the tasks of developing and applying quantitative or statistical methods to the study and elucidation of economic principles."], "quantitative": ["Of a measurement based on some quantity or number rather than on some quality."], "illumination": ["An interpretation that removes obstacles to understanding.", "The act of illuminating, or supplying with light; the state of being illuminated."], "interpreting": ["An explanation of something that is not immediately obvious."], "rendition": ["An explanation of something that is not immediately obvious."], "is made of": ["Indicates the material of which something is produced", "Indicates the material of which something consists"], "sawmill": ["A facility where logs are cut into boards."], "fruit product": ["A product containing or made of fruit."], "auspice": ["A favorable omen."], "grapefruit": ["A large yellow citrus fruit with somewhat acid juicy pulp."], "reactive hypoglycemia": ["Recurrent episodes of symptomatic hypoglycemia occurring 2-4 hours after a high carbohydrate meal or an oral glucose load."], "balloonist": ["Someone who flies a balloon."], "hymn": ["A song of praise or worship."], "ballot box": ["A box where voters deposit their ballots."], "ballroom": ["A large room used mainly for dancing.", "Any of a variety of social dances performed by couples in a ballroom."], "epinephrine": ["A hormone secreted by the adrenal medulla which stimulates the heart pulse and provokes the constriction of blood vessels."], "diabetes": ["An heterogeneous group of disorders in which blood glucose (sugar) levels are elevated."], "diabetes mellitus": ["An heterogeneous group of disorders in which blood glucose (sugar) levels are elevated."], "antihypertensive": ["An agent that reduces high blood pressure. (source UMLS)"], "pulse pressure": ["Difference between systolic and diastolic pressures."], "systolic pressure": ["The blood pressure during the contraction of the left ventricle of the heart. (source :UMLS)"], "diastolic pressure": ["The blood pressure after the contraction of the heart while the chambers of the heart refill with blood. (source: UMLS)"], "vasoconstrictor": ["A substance that constrict blood vessels."], "vasodilator": ["A substance that widen blood vessels."], "angioplasty": ["A procedure to widen the interior of a blood vessel with inflation of a balloon on the end of a catheter."], "stenosis": ["An abnormal narrowing in a blood vessel or other tubular organ or structure. (source: Wikipedia)"], "pulmonary valve": ["A valve situated at the entrance to the pulmonary trunk from the right ventricle. (source: UMLS)"], "pulmonic valve": ["A valve situated at the entrance to the pulmonary trunk from the right ventricle. (source: UMLS)"], "pulmonary artery": ["The large artery originating from the superior surface of right ventricle and carrying deoxygenated blood from heart to lung. (source UMLS)"], "arrhythmia": ["An abnormal rhythm of the heart."], "cardiac": ["Relating to the heart."], "fibrillation": ["The rapid, irregular, and unsynchronized contraction of the muscle fibers of the heart. (source: Wikipedia)"], "pericardium": ["A double-walled sac that contains the heart and the roots of the great vessels."], "pericarditis": ["An inflammation of the pericardium."], "inflammation": ["The complex biological response of vascular tissues to harmful stimuli, such as pathogens, damaged cells, or irritants."], "oximetry": ["A non invasive method of measuring the oxygen content of blood."], "pulse oximetry": ["A non invasive method of measuring the oxygen content of blood."], "hypertrophy": ["The increase of the size of an organ or in a select area of the tissue."], "defibrillator": ["A machine to treat abnormal heart rhythms."], "defibrillation": ["The definitive treatment for the life-threatening cardiac arrhythmias ventricular fibrillation and pulseless ventricular tachycardia. (source: Wikipedia)"], "cyanosis": ["A blue coloration of the skin and mucous membranes due to the presence of deoxygenated hemoglobin in blood vessels near the skin surface."], "congenital": ["Present at birth but not necessarily hereditary."], "anticoagulant": ["A drug that delays the clotting of blood.", "Delaying the clotting of blood."], "imperialism": ["Any instance of aggressive extension of authority."], "imperialist": ["A believer in imperialism."], "Grecian": ["Of or relating to Greece, the Greek people, or the Greek language."], "generally": ["Under normal conditions.", "Without reference to specific details.", "As a rule; usually.", "without distinction of one from others."], "broadly": ["Without reference to specific details."], "loosely": ["Without reference to specific details."], "broadly speaking": ["Without reference to specific details."], "by and large": ["As a rule; usually."], "more often than not": ["As a rule; usually."], "mostly": ["As a rule; usually."], "in general": ["without distinction of one from others."], "in the main": ["without distinction of one from others.", "For the most part."], "winner": ["One who has won or often wins."], "baptismal font": ["An article of church furniture or a fixture used for the baptism of children and adults."], "Kasiguranin": ["A language of the Philippines."], "Borong": ["A language of Papua New Guinea."], "Southern Kisi": ["A language of Liberia and Sierra Leone."], "Winy\u00e9": ["A language of Burkina Faso."], "Kusu": ["A language of Democratic Republic of the Congo"], "S'gaw Karen": ["A language of Myanmar and Thailand"], "Kedang": ["A language of Indonesia (Nusa Tenggara)."], "Kokata": ["A language of Australia."], "North Muyu": ["A language of Indonesia (Papua)."], "Plapo Krumen": ["A language of C\u00f4te d'Ivoire."], "Kaniet": ["An extinct language of Papua New Guinea."], "Koroshi": ["A language of Iran."], "Kurti": ["A language of Papua New Guinea."], "Kariti\u00e2na": ["A language of Brazil."], "Kuot": ["A language of Papua New Guinea."], "great-grandfather": ["The father of someone's mother's father", "The father of one's grandfather or grandmother."], "great-grandmother": ["The mother of one's grandfather or grandmother."], "balustrade": ["A railing at the side of a staircase or balcony to prevent people from falling."], "renal": ["Of or pertaining to the kidneys."], "retinitis": ["Inflammation of the retina."], "retrovirus": ["A type of virus that stores its genetic information in a single-\\nstranded RNA molecule, then constructs a double-stranded\\nDNA version of its genes using a special enzyme called\\nreverse transcriptase. (source: AIDSinfo)"], "provirus": ["A DNA version of HIV\u2019s genetic material that has been integrated into the host cell\u2019s own DNA. (source: AIDSinfo)"], "pruritus": ["An intense itching sensation that produces the urge to rub or\\nscratch the skin for relief."], "lactic acidosis": ["A condition caused by a buildup of lactate, a cellular waste\\nproduct, in the blood. (source SIDSinfo)"], "asymptomatic": ["Having no obvious signs or symptoms of disease."], "bilirubin": ["A yellowish substance excreted by the liver."], "biopsy": ["The surgical removal and examination of an organ or tissue to aid in diagnosis and treatment of a health condition."], "bronchoscopy": ["Visual examination of the bronchial passages of the lungs using an endoscope."], "benign": ["Not cancerous. Benign tumors may grow larger but do not spread to other parts of the body."], "beta carotene": ["A vitamin A precursor belonging to the family of fat-soluble vitamins called carotenoids."], "biological": ["Pertaining to biology or to life and living things."], "biologic": ["Pertaining to biology or to life and living things."], "judicial": ["Relating to the administration of justice or the function of a judge."], "juridical": ["Relating to the administration of justice or the function of a judge."], "juridic": ["Relating to the administration of justice or the function of a judge."], "barcode": ["A series of stripes located on a product which allows a scanning device to recognise the product."], "market leader": ["The company, product or brand of product that has the largest sales to the consumer in a particular market."], "seasonal merchandise": ["A line of goods sold in a specific season or period, e.g. summer, winter, Christmas and Easter."], "refund": ["The return of payment to the customer for goods that have been \u00adreturned."], "department store": ["A retail organization which carries a wide range of merchandise that is organized into separate departments for the purpose of promotion, service and control."], "barcode scanner": ["An electronic device used to read barcodes. May be and individual unit for stock processing or attached to Point of Sale systems for sales recording."], "bamboozle": ["To confuse completely by concealing one's true motives from, especially by elaborately feigning good intentions so as to gain an end."], "wagon vault": ["Semi-cylindrical vault."], "barrel vault": ["Semi-cylindrical vault."], "beta-carotene": ["A vitamin A precursor belonging to the family of fat-soluble vitamins called carotenoids."], "banality": ["A saying that is overused or used outside its original context, so that its original impact and meaning are lost.", "Something that is trite, obvious, or predictable."], "Quenya": ["One of the Elvish languages invented by J. R. R. Tolkien, and which were ultimately used in his Lord of the Rings cycle."], "monsoon": ["A seasonal prevailing wind which lasts for several months."], "business broker": ["The person being the intermediary among more people to facilitate the creation and conclusion of a contract."], "dividend": ["That part of the earnings of a corporation that is distributed to its shareholders; usually paid quarterly.", "A bonus or something extra.", "A number to be divided by another number."], "brand loyalty": ["The degree of consumer preference for one brand compared to close substitutes; it is often measured statistically in consumer marketing research."], "captive market": ["The potential clientele of retail or service businesses located in areas where consumers may have no reasonable alternative sources of supply."], "vending machine": ["A retailing format that involves the coin- or card-operated dispensing of goods and services."], "advertising": ["The action of drawing public attention to goods, services or events, often through paid announcements in newspapers, magazines, television or radio.\\n(Source: C / RHW)", "Any paid, nonpersonal communication transmitted through out-of-store mass media by an identified sponsor."], "chain store": ["A collection of business locations (e.g. restaurants or hotels) all related to the same company."], "convenience store": ["A food-oriented retailer that is well located, is open long hours, and carries a moderate number of items."], "data warehousing": ["The process of designing, building, and maintaining a data warehouse system."], "data warehouse": ["A repository of an organization's electronically stored data designed to facilitate reporting and analysis."], "youthful": ["Characteristic of young people."], "Jalisco": ["A state of Mexico. Its capital is the city of Guadalajara."], "Rio de Janeiro": ["The second major city of Brazil, behind S\u00e3o Paulo and the capital of the state of Rio de Janeiro.", "One of the 26 states of Brazil, located in the Brazilian geopolitical region of the Southeast."], "horsewoman": ["A woman who rides a horse."], "working day": ["A day of a week in which work is done."], "Jesus of Nazareth": ["A teacher and prophet born in Bethlehem and active in Nazareth; his life and sermons form the basis for Christianity (circa 4 BC - AD 29)."], "Jesus": ["A teacher and prophet born in Bethlehem and active in Nazareth; his life and sermons form the basis for Christianity (circa 4 BC - AD 29)."], "the Nazarene": ["A teacher and prophet born in Bethlehem and active in Nazareth; his life and sermons form the basis for Christianity (circa 4 BC - AD 29)."], "Jesus Christ": ["A teacher and prophet born in Bethlehem and active in Nazareth; his life and sermons form the basis for Christianity (circa 4 BC - AD 29)."], "Christ": ["A teacher and prophet born in Bethlehem and active in Nazareth; his life and sermons form the basis for Christianity (circa 4 BC - AD 29)."], "Jesuit": ["A member of the Society of Jesus, a Roman Catholic order founded by Ignatius Loyola in 1534."], "courtroom": ["The actual enclosed space in which a judge regularly holds court."], "tribunal": ["The actual enclosed space in which a judge regularly holds court."], "Jurassic": ["(geology) Of or pertaining to the second period of the Mesozoic era, a time still dominated by dinosaurs.", "From 190 million to 135 million years ago."], "curse": ["To use offensive language.", "An appeal or prayer for evil or misfortune to befall someone or something.", "An evil spell."], "cuss": ["To use offensive language.", "A persistently annoying person."], "depone": ["To make a deposition; to declare under oath."], "verify": ["To declare or affirm solemnly and formally as true."], "blaspheme": ["To use offensive language.", "To speak against God or religious doctrine."], "imprecate": ["To use offensive language."], "aver": ["To declare or affirm solemnly and formally as true.", "To report or maintain."], "JPEG": ["In computing, a commonly used method of compression for photographic images. The name JPEG stands for \"Joint Photographic Experts Group\"."], "JPG": ["In computing, a commonly used method of compression for photographic images. The name JPEG stands for \"Joint Photographic Experts Group\"."], "jpeg": ["In computing, a commonly used method of compression for photographic images. The name JPEG stands for \"Joint Photographic Experts Group\"."], "jpg": ["In computing, a commonly used method of compression for photographic images. The name JPEG stands for \"Joint Photographic Experts Group\"."], "Guadalajara": ["The capital city of the Mexican state of Jalisco.", "A province of central/north-central Spain, in the northern part of the autonomous community of Castile-La Mancha."], "motorway link": ["The link roads (sliproads / ramps) leading to and from a motorway. Normally with the same motorway restrictions. .."], "trunk link": ["The link roads (sliproads / ramps) leading to and from a trunk road."], "OpenStreetMap": ["A collaborative project to create free editable maps."], "primary link": ["The link roads (sliproads / ramps) leading to and from a primary road."], "secondary": ["Administrative classification in the UK for a road, generally linking smaller towns and villages", "Succeeding next in order to the first; of second place, origin, rank, etc."], "tertiary": ["A \"C\" road in the UK. Generally for use on roads wider than 4 metres (13') in width, and for faster/wider minor roads that aren't A or B roads. In the UK, they tend to have dashed lines down the middle, whereas unclassified roads don't."], "unsurfaced": ["A road which typically has the same status as an unclassified road. It is part of the public highway (unlike a track) but does not have a paved surface."], "residential": ["Roads accessing or around residential areas but which are not a classified or unclassified highway."], "living street": ["A street where pedestrians have priority over cars, children can play on the street, maximum speed is low."], "bridleway": ["A road for horses, (in the UK, generally footpaths on which horses are also permitted)", "A trail for horses."], "cycleway": ["For designated cycleways, i.e. mainly/exclusively for bicycles."], "footway": ["For designated footpaths, i.e. mainly/exclusively for pedestrians. This includes walking tracks and gravel paths."], "steps": ["For flights of steps on footways", "Plural of step."], "bus guideway": ["A busway that is side guided \"rails like\", not suitable for other traffic."], "mini roundabout": ["Very small roundabout, in contrast to larger ones, which should be junction roundabout. In the UK, mini-roundabouts have a circular sign with a blue background, instead of the usual triangular sign."], "traffic signals": ["Lights that control the traffic."], "stile": ["To allow pedestrians to cross a wall or fence."], "geographic": ["Pertaining to geography.", "Determined by geography (as opposed to magnetic)."], "geographical": ["Pertaining to geography.", "Determined by geography (as opposed to magnetic)."], "cattle grid": ["Bars in the road surface that allow wheeled vehicles but not animals to cross. Sometimes known as a Texas Gate, even outside of Texas."], "toll booth": ["A booth on a toll road or toll bridge where the toll is collected"], "screenplay": ["The text of a film or a television program."], "picture gallery": ["An institution, building, or room for the exhibition and conservation of works of art."], "art museum": ["An institution, building, or room for the exhibition and conservation of works of art."], "Tamanrasset": ["City in Southern Algeria in an oasis of the Sahara."], "pastoral people": ["Ethnic group living primarily of stock-breeding, usually not sedentary."], "pastoral tribe": ["Ethnic group living primarily of stock-breeding, usually not sedentary."], "clothes dryer": ["Household appliance which dries textiles with hot air after washing."], "tumble dryer": ["Household appliance which dries textiles with hot air after washing."], "triclinium": ["The formal dining room in a Roman building."], "protohistory": ["A period between prehistory and history, during which a culture or civilization has not yet developed writing, but other cultures mention it in their writings."], "bass guitar": ["A bass stringed instrument played primarily with the fingers (either by plucking, slapping, popping, or tapping) or using a pick."], "Gothic": ["A style of architecture developed in northern France that spread throughout Europe between the 12th and 16th centuries.", "An extinct language, once spoken by the Goths in what is now Ukraine and Bulgaria."], "Gothic architecture": ["A style of architecture developed in northern France that spread throughout Europe between the 12th and 16th centuries."], "gothic": ["Of or related to the architectural style favored in western Europe in the 12th to 16th centuries."], "Guerrero": ["A state in the southern meridional region of Mexico."], "aerostat": ["Means of air transport, an aircraft lighter than air."], "hot air balloon": ["Means of air transport, an aircraft lighter than air."], "warrior": ["A person who is actively engaged in battle, conflict or warfare."], "etc": ["Continuing in the same way."], "and so forth": ["Continuing in the same way."], "etcetera": ["Continuing in the same way."], "and so on": ["Continuing in the same way."], "petrol engine": ["An internal combustion engine that uses a mixture of air and gasoline vapour as a fuel."], "electric power line": ["Wires conducting electric power from one location to another."], "electric power transmission": ["Wires conducting electric power from one location to another."], "banish": ["To send away, especially as a punishment.", "To accept no longer in a community, group or country, e.g. by official decree.", "To send into exile."], "incline steep": ["Just as incline, only steeper."], "motorway junction": ["A location where traffic can change between different routes, directions, or sometimes modes, of travel."], "turning circle": ["A rounded, widened area usually, but not necessarily, at the end of a road to facilitate easier turning of a vehicle."], "distance": ["The amount of space between two points.", "A considerable amount of space."], "sportive": ["Relating to sports."], "banishment": ["The act of expelling or relegating someone to a country or place by authoritative decree."], "bank account": ["An account with a bank."], "time to come": ["The time ahead; those moments yet to be experienced."], "federal": ["Pertaining to the national government level, as opposed to state, provincial, county, city, or town."], "recluse": ["A person who lives in self-imposed isolation or seclusion from the world."], "format": ["The form of presentation of something.", "The layout of a document."], "formula": ["Any mathematical rule expressed symbolically.", "A plan of action intended to solve a problem."], "Wedding": ["A locality in the borough of Mitte, Berlin, Germany."], "reading glasses": ["Glasses especially suited for reading."], "left-wing": ["Pertaining to the political left; liberal."], "left wing": ["Pertaining to the political left; liberal."], "inferior": ["Of lower quality.", "Of lower rank.", "Located below."], "Maundy Thursday": ["The Thursday before Easter that commemorates the Last Supper of Jesus Christ with the Apostles."], "Holy Thursday": ["The Thursday before Easter that commemorates the Last Supper of Jesus Christ with the Apostles."], "internal": ["Inside of something.", "Of or concerned with matters within the boundaries of a nation, as opposed to its relations with other nations.", "Within the body.", "Concerned with the non-public affairs of a company or other organisation."], "cultural": ["Denoting or deriving from or distinctive of the ways of living built up by a group of people.", "Of or relating to the arts and manners that a group favors.", "Of or relating to the shared knowledge and values of a society."], "Catholic": ["Of the Roman Catholic church.", "A follower of Catholicism.", "Being a follower Catholicism."], "singer": ["A male person who sings, is able to sing, or earns a living by singing.", "A person who sings, is able to sing, or earns a living by singing."], "champion": ["Someone who has been winner in a contest."], "Tibet": ["A plateau region in Central Asia and the home to the indigenous Tibetan people."], "Tibetan Plateau": ["A vast, elevated plateau in Central Asia covering most of the Tibet Autonomous Region, Qinghai Province in the People's Republic of China and Ladakh in Kashmir."], "Qinghai-Tibetan Plateau": ["A vast, elevated plateau in Central Asia covering most of the Tibet Autonomous Region, Qinghai Province in the People's Republic of China and Ladakh in Kashmir."], "Qingzang Plateau": ["A vast, elevated plateau in Central Asia covering most of the Tibet Autonomous Region, Qinghai Province in the People's Republic of China and Ladakh in Kashmir."], "cinema": ["A building where movies are shown to an audience."], "Tibet Autonomous Region": ["Autonomous region of the People's Republic of China."], "Wylie transliteration": ["Method for transliterating the Tibetan script using the keys on a typical English language typewriter."], "Cordova": ["A province of southern Spain, in the north-central part of the autonomous community of Andalusia."], "Cuban": ["A male person from Cuba, or of Cuban ancestry.", "Of or relating to Cuba or Cubans.", "A person from Cuba, or of Cuban ancestry."], "Chilean": ["A male person from Chile, or of Chilean ancestry.", "A female person from Chile, or of Chilean ancestry.", "Of or relating to Chile or Chileans.", "A person from Chile, or of Chilean ancestry."], "critic": ["A male person who appraises on the works of others.", "A female person who appraises on the works of others.", "A person who appraises on the works of others."], "critical": ["Extremely important.", "Inclined to find faults and flaws."], "criticism": ["A negative judgement about something or someone."], "lodge": ["A formal association of people with similar interests."], "Chilean peso": ["The currency of Chile."], "Cuban peso": ["The currency of Cuba."], "Argentine peso": ["The currency of Argentine"], "bank balance": ["The sum of money in a bank account at a specific time."], "banknote": ["A piece of paper money."], "Chehalis": ["A city in Lewis County, Washington, United States."], "Coast Salish": ["A subgroup of the Salishan language family."], "Salishan": ["A language family consisting of twenty-three languages in western Canada and the Pacific Northwest of the United States."], "Salish": ["A language family consisting of twenty-three languages in western Canada and the Pacific Northwest of the United States."], "fictitious": ["Existing only in the mind and not in reality."], "Holy Friday": ["The Friday before Easter Sunday, the day that Christians commemorate the crucifixion of Jesus Christ."], "Great Friday": ["The Friday before Easter Sunday, the day that Christians commemorate the crucifixion of Jesus Christ."], "Uruguayan peso": ["The currency of Uruguay."], "Uruguayan": ["A person from Uruguay, or of Uruguay ancestry.", "Of or relating to Uruguay, or Uruguayan."], "bankrupt": ["Having insufficient assets to cover one's debts.", "Without money."], "weather vane": ["A movable device attached to an elevated object such as a roof for showing the direction of the wind."], "weather cock": ["A wind indicator with the form of a cock."], "barbell": ["A bar to which heavy discs are attached at each end, used in weightlifting."], "bareheaded": ["With the head uncovered."], "Mauritian rupee": ["The currency of Mauritius."], "Mauritian": ["A person from Mauritius, or of Mauritian ancestry."], "barely": ["Scarcely or only just.", "Only a very short time before."], "bareness": ["Without covering or clothing."], "dog-ear": ["To fold over at the corner a page of a book.", "A corner of a page in a book that has been folded down."], "dogear": ["To fold over at the corner a page of a book.", "A corner of a page in a book that has been folded down."], "weathercock": ["A movable device attached to an elevated object such as a roof for showing the direction of the wind."], "weathervane": ["A movable device attached to an elevated object such as a roof for showing the direction of the wind."], "routing": ["A process for sorting and grouping of shipments by destination"], "barn": ["A building in which grain, hay etc are stored."], "hesitant": ["Tending to hesitate, wait, or proceed with caution or reservation."], "crown": ["A royal, imperial or princely headdress; a diadem.", "A restoration of teeth using materials that are fabricated by indirect methods which are cemented into place.", "In bird anatomy, the top of the head."], "Cantabria": ["A Spanish province and autonomous community with Santander as its capital city."], "characterize": ["To depict someone or something a particular way (usually negative.)", "To determine the characteristics of."], "component": ["A smaller, self-contained part of a larger entity. Often refers to a manufactured object that is part of a larger device.", "Something determined in relation to something that includes it.", "An abstract part of something."], "constituent": ["A smaller, self-contained part of a larger entity. Often refers to a manufactured object that is part of a larger device.", "An abstract part of something."], "component part": ["Something determined in relation to something that includes it."], "factor": ["An abstract part of something.", "An integral part", "A cognitive phenomenon that tends to affect the nature, the magnitude, and/or the timing of a consequence."], "live up to": ["To satisfy, carry out, bring to completion (an obligation, a requirement, etc.)."], "animated cartoon": ["A film created from a sequence of several drawings giving the illusion of movement."], "contact": ["The act of touching physically.", "Someone with whom one is in communication.", "The establishment of communication (with).", "To bring something into contact.", "To establish communication with something or someone"], "comedy": ["A light and humorous drama with a happy ending."], "completely": ["To a complete degree or to the full or entire extent.", "In a whole or complete manner."], "cannon": ["A large artillery gun."], "caricature": ["Humorous or satirical cartoon or drawing"], "description": ["The result of putting something in words; a synopsis of what something is.", "A set of characteristics by which someone or something can be recognized."], "classmate": ["A student who is in the same class in a school.", "The person, or a person, sitting next to one in school. ['one' in this context is usually the person speaking]"], "surrogate": ["A person appointed to represent or act on behalf of others."], "idol": ["A representation of a deity, notably a statue or a statuette."], "graven image": ["A representation of a deity, notably a statue or a statuette."], "god": ["A supernatural, typically immortal being with superior powers.", "A representation of a deity, notably a statue or a statuette."], "digital": ["Having to do with digits (fingers or toes); performed with a finger.", "Of or relating to computers or the Computer Age.", "Property of representing values as discrete numbers rather than a continuous spectrum."], "detail": ["Something small enough to escape casual notice.", "To explain in detail."], "discography": ["A methodical repertoire of musical works recorded on a disc."], "phase": ["A particular appearance or state in a regularly recurring cycle of changes."], "P\u00e1ez": ["A language of Colombia."], "Nasa Yuwe": ["A language of Colombia."], "momentum": ["Vectorial physical quantity: the product of mass and velocity of a body."], "officiate": ["To perform duties attached to a particular office or place or function."], "baseless": ["Without foundation or reason."], "encroachment": ["Any entry into an area not previously occupied."], "bashful": ["Uncomfortably diffident and easily embarrassed."], "bastard": ["A strongly disliked person who behaves disgustingly, underhandedly, or nastily, etc.", "A child born of parents not married to each other."], "Kuwaiti": ["Of or relating to Kuwait or Kuwaitis.", "A person from Kuwait, or of Kuwaiti ancestry."], "Kenyan": ["Of or relating to Kenya, or Kenyans.", "A person from Kenya, or of Kenyan ancestry."], "kilohertz": ["The SI unit of frequency, equal to one thousand hertz, with symbol \"kHz\"."], "posca": ["Popular beverage among Roman soldiers which consisted of vinegar or sour wine diluted with water."], "Easter Monday": ["The day after Easter Sunday, celebrated as a holiday in many largely Christian countries."], "miscarriage": ["The premature end of a pregnancy for natural reasons at a stage where the embryo or the fetus is incapable of surviving."], "spontaneous abortion": ["The premature end of a pregnancy for natural reasons at a stage where the embryo or the fetus is incapable of surviving."], "Bretagne": ["One of the six Celtic Nations; a former independent kingdom and duchy, and a province of France."], "Veps": ["A Finnic language spoken by the Vepsians in Russia (Europe)."], "bathing cap": ["A tight-fitting cap that keeps hair dry while swimming."], "sinification": ["The assimilation of peoples to Chinese culture and language.", "The transliteration of foreign scripts to Chinese."], "bathing suit": ["A tight-fitting garment worn for swimming."], "bathrobe": ["A loose-fitting robe worn before and after bathing and for lounging."], "battalion": ["A ground force unit composed of a headquarters and two or more companies or similar units."], "Asherah": ["Goddess of fertility in the ancient Near East, also mentioned in the Bible."], "Aeolian Islands": ["Archipelago in the Tyrrhenian Sea north of Sicily."], "Lipari Islands": ["Archipelago in the Tyrrhenian Sea north of Sicily."], "garment": ["A single item of clothing."], "Parkinson's disease": ["Progressive, degenerative disorder of the nervous system characterized by tremors, rigidity, bradykinesia, postural instability, and gait abnormalities; caused by a loss of neurons and a decrease of dopamine in the basal ganglia."], "remarry": ["To marry again after divorce or death of the spouse."], "battering ram": ["An ancient military device with a heavy horizontal ram for battering down walls, gates, etc."], "battery charger": ["A device for charging or recharging batteries."], "irreversible": ["Impossible to reverse."], "Queensland": ["A state of Australia, occupying the north-eastern corner of the mainland continent."], "Kaduo": ["A language of Laos and China."], "Katabaga": ["An extinct language of the Philippines"], "Kota Marudu Tinagas": ["A language of Malaysia (Sabah)."], "Occitan": ["A Gallo-Romance language spoken in Occitania, that is, Southern France, the Occitan Valleys of Italy, Monaco and in the Aran Valley of Spain."], "South Muyu": ["A language of Indonesia (Papua)."], "Ketum": ["A language of Indonesia (Papua)."], "battle cruiser": ["A large warship with lighter armor but greater maneuverability than a battleship."], "musth": ["A period in which male elephants display aggressive and dominant behaviour."], "Dalai Lama": ["The supreme head of Tibetan Buddhism."], "egg yolk": ["The yellow, spherical part of an egg that is surrounded by the white albumen, and serves as nutriment for the growing young."], "egg white": ["The white of an egg, which consists mainly of albumin dissolved in water."], "glair": ["The white of an egg, which consists mainly of albumin dissolved in water."], "glaire": ["The white of an egg, which consists mainly of albumin dissolved in water."], "refer": ["To refer briefly to; to make reference to.", "To be relevant or of importance to.", "To direct the attention of; to send or direct for treatment, information, or a decision."], "North China Plain": ["Plain in northern China which borders on the Yanshan Mountains in the north, the Taihang Mountains in the west and the Yangtze Plain in the south."], "Shaanxi": ["Province in north-central China with the Capital Xi'an."], "Sichuan": ["A province in western China with its capital at Chengdu."], "Muslim Tat": ["A language of Azerbaijan, Iran and Russia."], "bay leaf": ["The dried leaf of the laurel (Laurus nobilis), used in cookery."], "battle cry": ["A cry or shout of troops in battle."], "battle dress": ["A military uniform designed for field service."], "Kango": ["A language spoken in the Bas-U\u00e9l\u00e9 District of Democratic Republic of the Congo", "A language spoken in the Tshopo District of the Democratic Republic of the Congo"], "Kung-Tsumkwe": ["A language of Botswana and Namibia."], "Venezuelan": ["A citizen of Venezuela or someone of Venezuelan origin.", "Of or relating to Venezuela or Venezuelans."], "Kutep": ["A language of Nigeria and Cameroon."], "'Auhelawa": ["A language of Papua New Guinea."], "Kuman": ["A language of Papua New Guinea."], "Kupa": ["A language of Nigeria."], "coleslaw": ["Salad consisting primarily of shredded cabbage."], "cole slaw": ["Salad consisting primarily of shredded cabbage."], "fat-free": ["Containing no fat."], "nonfat": ["Containing no fat."], "carrot salad": ["Salad made from raw rasped carrots."], "yeast dough": ["Dough made from flour, water, baker's yeast and sometimes other ingredients as well."], "carrot": ["A yellow-orange, longish-rounded root vegetable, which is eaten raw or boiled."], "avouchment": ["An open statement of affirmation."], "computer engineering": ["The discipline that embodies the science and technology of design, construction, implementation, and maintenance of software and hardware components of modern computing systems and computer-controlled equipment. (Source: ACM)"], "Kuria": ["A language of Tanzania and Kenya."], "Kepo'": ["A language of Indonesia (Nusa Tenggara)."], "Kunama": ["A language of Eritrea."], "Kumukio": ["A Papuan language spoken in the Morobe Province of Papua New Guinea."], "Kunimaipa": ["A language of Papua New Guinea."], "Karipun\u00e1": ["A Tupi language spoken in Rond\u00f4nia, Brazil"], "Kusaal": ["A language of Ghana and Burkina Faso."], "Upper Egypt": ["The part of Egypt from modern-day Aswan to modern-day Luxor on both sides of the Nile."], "Lower Egypt": ["The part of Egypt from the Nile Delta near Cairo to the Mediterranean."], "pinacotheca": ["In ancient Rome, the room in a house which contained paintings."], "botulinum toxin": ["Highly poisonous neurotoxin which is produced by the bacterium Clostridium botulinum and is used in medicine and cosmetics."], "Kur": ["A language of Indonesia (Maluku)."], "Kpagua": ["A language of Central African Republic."], "Kukatja": ["A language of Australia."], "Kuuku-Ya'u": ["A language of Australia."], "Kunza": ["An extinct language of Chile."], "Kubu": ["A language of Indonesia (Sumatra)."], "Kove": ["A language of Papua New Guinea."], "Kalabakan": ["A language of Malaysia (Sabah)."], "Kuni-Boazi": ["A language of Papua New Guinea."], "Komodo": ["A language of Indonesia (Nusa Tenggara).", "One of the 17,508 islands that make up the Republic of Indonesia."], "beachcomber": ["A vagrant who lives on the seashore."], "beacon": ["A lighthouse, signal buoy, etc., on a shore or at a dangerous area at sea to warn and guide vessels."], "Three Gorges Dam": ["River dam that spans the Yangtze River in China and that is in use since 2006."], "Yangtze": ["The third longest river in the world which flows from its source in the Chinese Qinghai Province, eastwards into the East China Sea at Shanghai."], "Chang Jiang": ["The third longest river in the world which flows from its source in the Chinese Qinghai Province, eastwards into the East China Sea at Shanghai."], "balise": ["A lighthouse, signal buoy, etc., on a shore or at a dangerous area at sea to warn and guide vessels."], "Qinghai": ["Province in the People's Republic of China located on the northeastern part of the Tibetan Plateau."], "Anno Domini": ["Designates the years after the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "AD": ["Designates the years after the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "A.D.": ["Designates the years after the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "CE": ["Designates the years after the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "Before Christ": ["Designates the years before the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "BC": ["Designates the years before the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "B.C.": ["Designates the years before the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "BCE": ["Designates the years before the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "French fried potatoes": ["A dish of fried strips of potatoes."], "April Fools' Day": ["A day marked by the commission of hoaxes and other practical jokes of varying sophistication on friends, enemies and neighbors, or sending them on fools' errands, the aim of which is to embarrass the gullible"], "beanpole": ["A tall pole for a bean plant to climb on.", "A tall, lanky person."], "Hong Kong": ["One of the two special administrative regions of the People's Republic of China (PRC). It lies on the eastern side of the Pearl River Delta, bordering Guangdong province in the north and facing the South China Sea in the east, west and south. (source: Wikipedia)", "From or relating to Hong Kong."], "The City of New York": ["The largest city in the state of New York and the largest city in the United States."], "Zeus": ["In Greek mythology, the king of the gods, the ruler of Mount Olympus, and the god of the sky and thunder."], "Zulia": ["One of Venezuela's 23 states (estados), located in the northwestern part of the country. Its capital is Maracaibo."], "Zen": ["A school of Mah\u0101y\u0101na Buddhism notable for its emphasis on mindful acceptance of the present moment, spontaneous action, and letting go of self-conscious and judgmental thinking.", "A powerful hallucinogenic drug manufactured from lysergic acid."], "maximum": ["The highest limit."], "computer data storage": ["Computer components, devices and recording media that retain data for some interval of time."], "manga": ["A comic; a non-animated cartoon, especially one done in a Japanese style."], "stomach pain": ["A pain in the stomach area."], "stomachache": ["A pain in the stomach area."], "stomach ache": ["A pain in the stomach area."], "gastralgia": ["A pain in the stomach area."], "gastral": ["Of, or pertaining to the stomach."], "gastric": ["Of, or pertaining to the stomach."], "Extremadura": ["Autonomous community of western Spain with the capital city M\u00e9rida."], "M\u00e9rida": ["The capital of the autonomous community of Extremadura, Spain.", "The capital of the municipality of Libertador and the state of M\u00e9rida, in Venezuela.", "The capital and largest city of the Mexican state of Yucat\u00e1n.", "One of the 23 states (estados) into which Venezuela is divided. Its capital is M\u00e9rida."], "Common Era": ["Designates the years after the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "Before the Common Era": ["Designates the years before the birth of Jesus Christ in the Gregorian and Julian calendar systems."], "two hundred": ["The cardinal number that is equal to two times hundred, represented in Roman numerals as CC and in Arabic numerals as 200."], "seismic wave": ["Wave that travels through the Earth, most often as the result of a tectonic earthquake, sometimes from an explosion"], "Navarre": ["a region in northern Spain, constituting one of its autonomous communities"], "beardless": ["Lacking hair on the face."], "bearskin": ["The skin or pelt of a bear."], "ocean surface wave": ["A moving ridge or swell of water occurring close to the surface of the sea, characterized by oscillating and rising and falling movements, often as a result of the frictional drag of the wind.\\n(Source: OED / INP)"], "beast": ["Any nonhuman animal, esp. a large, four-footed mammal."], "production": ["The presentation of a theatrical work.", "The act of producing.", "The total amount produced."], "Sahel": ["A semi-arid tropical savanna ecoregion in Africa, which forms the transition between the Sahara desert to the north and the more fertile region to the south."], "prince consort": ["The husband of a queen regnant."], "queen regnant": ["A female monarch."], "queen consort": ["The wife of a king."], "Portuguesa": ["One of the 23 states (estados) into which Venezuela is divided. Its capital is Guanare."], "Zaragoza": ["The capital city of the autonomous community of Aragon and the province of Saragossa, Spain, situated on the river Ebro."], "dill": ["(Anethum graveolens) A medical and spice plant originally from Central Asia in the the family of the Apiaceae."], "rosemary": ["(Rosmarinus officinalis) Everygreen perennial herb of the family of the Lamiaceae which is used as ornamental and spice plant."], "Axis powers": ["Those countries opposed to the Allies during World War II, primarily Nazi Germany, Fascist Italy and Imperial Japan."], "Axis alliance": ["Those countries opposed to the Allies during World War II, primarily Nazi Germany, Fascist Italy and Imperial Japan."], "Axis nations": ["Those countries opposed to the Allies during World War II, primarily Nazi Germany, Fascist Italy and Imperial Japan."], "Axis countries": ["Those countries opposed to the Allies during World War II, primarily Nazi Germany, Fascist Italy and Imperial Japan."], "Axis": ["Those countries opposed to the Allies during World War II, primarily Nazi Germany, Fascist Italy and Imperial Japan.", "An open source, XML based Web service framework."], "ornamental plant": ["A plant that is grown for its ornamental qualities."], "Saragossa": ["The capital city of the autonomous community of Aragon and the province of Saragossa, Spain, situated on the river Ebro."], "Salamanca": ["A city in western Spain, the capital of the province of Salamanca, which belongs to the autonomous community of Castile-Leon.", "A province of western Spain, in the western part of the autonomous community of Castile and Le\u00f3n."], "pattern": ["The visual representation of a person or an object.", "Anything proposed for imitation.", "A plan of action intended to solve a problem."], "programming": ["The act of writing a computer program."], "beastly": ["Of or resembling a beast."], "south-southeast": ["The compass point halfway between south and southeast, specifically 157.5\u00b0."], "sou'-sou'-east": ["The compass point halfway between south and southeast, specifically 157.5\u00b0."], "beauty salon": ["A shop where hairdressers and beauticians work."], "man's voice": ["The voice of a man."], "male voice": ["The voice of a man."], "woman's voice": ["The voice of a woman."], "Tibetan script": ["An abugida of Indic origin used to write the Tibetan language as well as the Dzongkha language, Ladakhi language and sometimes the Balti language."], "bedbug": ["A small blood-sucking insect that lives in houses, especially beds."], "unaffordable": ["So expensive that it cannot be afforded."], "unpayable": ["So expensive that it cannot be afforded."], "priceless": ["So precious that the value cannot be measured with money."], "invaluable": ["So precious that the value cannot be measured with money."], "inestimable": ["So precious that the value cannot be measured with money."], "potassium cyanide": ["Very toxic inorganic compound with the formula KCN, it is a salt of hydrogen cyanide in the form of colorless crystals."], "dan": ["A rank of black belt in martial arts.", "Someone who has achieved a level of black belt."], "bedclothes": ["Coverings, such as sheets and blankets, that are ordinarily used on a bed."], "bedding": ["Coverings, such as sheets and blankets, that are ordinarily used on a bed."], "bedding plant": ["An ornamental plant suitable for planting in a flowerbed."], "Korean Sign Language": ["A sign language used in South Korea."], "Brek Karen": ["A language of Myanmar."], "Kendem": ["A language of Cameroon."], "Border Kuna": ["A language of Colombia and Panama."], "Dobel": ["A language of Indonesia (Maluku)."], "Kompane": ["A language of Indonesia (Maluku)."], "Geba Karen": ["A language of Myanmar."], "Kunggara": ["A language of Australia."], "Lahta Karen": ["A language of Myanmar."], "Yinbaw Karen": ["A language of Myanmar."], "Kola": ["A language of Indonesia (Maluku)."], "Wersing": ["A language of Indonesia (Nusa Tenggara)."], "Yintale Karen": ["A language of Myanmar."], "Tsakwambo": ["A language of Indonesia (Papua)."], "D\u00e2w": ["A Nadahup language spoken in the northwestern part of the Amazonas state of Brazil."], "Kwa": ["A language of Nigeria."], "Likwala": ["A language of Congo."], "Kwaio": ["A language of Solomon Islands."], "Kwerba": ["A language of Indonesia (Papua)."], "Kwara'ae": ["A language of Solomon Islands."], "Kowiai": ["A language of Indonesia (Papua)."], "Awa-Cuaiquer": ["A language of Southwest Colombia and Ecuador"], "Kwanga": ["A language of Papua New Guinea."], "Kwakiutl": ["An indigenous language of the Wakashan family spoken by the Kwakwaka'wakw on northern Vancouver Island."], "Kwambi": ["A language of Namibia."], "Kwangali": ["A language of Namibia and Angola."], "Kwomtari": ["A language of Papua New Guinea."], "Kodia": ["A language of C\u00f4te d'Ivoire."], "Kwak": ["A language of Nigeria."], "Kwer": ["A language of Indonesia (Papua)."], "Kwese": ["A language of Democratic Republic of the Congo."], "Kwesten": ["A language of Indonesia (Papua)."], "Kwakum": ["A language of Cameroon."], "Kwinti": ["A language of Suriname."], "San Salvador Kongo": ["A language of Democratic Republic of the Congo and Angola."], "Kairiru": ["A language of Papua New Guinea."], "Krobu": ["A language of C\u00f4te d'Ivoire."], "bedspread": ["A decorative cover for a bed.", "Decorative cover for a bed."], "Kakihum": ["A language of Nigeria."], "statistical": ["Of or pertaining to statistics."], "Manumanaw Karen": ["A language of Myanmar."], "Katingan": ["A language of Indonesia (Kalimantan)."], "Keningau Murut": ["A language of Malaysia (Sabah)."], "Zayein Karen": ["A language of Myanmar."], "Kanowit": ["A language of Malaysia (Sarawak)."], "beech": ["Any tree of the genus Fagus, of temperate regions, having a smooth gray bark and bearing small, edible, triangular nuts.", "Wood of a beech tree."], "Kano\u00e9": ["An extinct language of Brazil."], "Sm\u00e4rky Kanum": ["A language of Indonesia (Papua)."], "Koiwat": ["A language of Papua New Guinea."], "Konai": ["A language of Papua New Guinea."], "Likuba": ["A language of Congo."], "Kerewo": ["A language of Papua New Guinea."], "Magnoliophyta": ["The division of seed plants that includes all the flowering plants, characterized by the possession of flowers. The ovules, which become seeds after fertilization, are enclosed in ovaries. The xylem contains true vessels. The angiospermae are divided into two subclasses: Monocotyledoneae and Dycotiledoneae.\\n(Source: ALL)"], "jackdaw": ["(Corvus monedula) One of the smallest species (34\u201339 cm in length) in the genus of crows and ravens"], "daw": ["(Corvus monedula) One of the smallest species (34\u201339 cm in length) in the genus of crows and ravens"], "Kwaya": ["A language of Tanzania."], "Butbut Kalinga": ["A language of Philippines."], "Kyaka": ["A language of Papua New Guinea."], "Karey": ["A language of Indonesia (Maluku)."], "Krache": ["A language of Ghana."], "Lingua Franca Nova": ["A constructed language created by George Boeree."], "Southern Yukaghir": ["A language of Russia (Asia)."], "Kouya": ["A language of C\u00f4te d'Ivoire."], "Kiput": ["A language of Malaysia (Sarawak)."], "Keyagana": ["A language of Papua New Guinea."], "Karao": ["A language of the Philippines."], "Kamayo": ["A language of the Philippines."], "Kpatili": ["A language of the Central African Republic."], "Karolanos": ["A language of the Philippines."], "Kelon": ["A language of Indonesia (Nusa Tenggara)."], "Kuik\u00faro-Kalap\u00e1lo": ["A language of Brazil."], "Baram Kayan": ["A language of Malaysia (Sarawak)."], "Kayagar": ["A language of Indonesia (Papua)."], "Western Kayah": ["A Tibeto-Burman language spoken by the Western Kayah people in the Kayah State in eastern Myanmar."], "Kayort": ["A language of Nepal."], "Rapoisi": ["A language of Papua New Guinea."], "Kambaira": ["A language of Papua New Guinea."], "Kayab\u00ed": ["A language of Brazil."], "Western Karaboro": ["A language of Burkina Faso."], "Kaibobo": ["A language of Indonesia (Maluku)."], "Bondoukou Kulango": ["A language Niger\u2013Congo spoken around the city of Bondoukou in C\u00f4te d'Ivoire, and Ghana."], "Kosena": ["A language of Papua New Guinea."], "Da'a Kaili": ["A language of Indonesia (Sulawesi)."], "Kenuzi-Dongola": ["A language of Sudan and Egypt."], "Kelabit": ["A language of Malaysia (Sarawak) and Indonesia (Kalimantan)."], "Coastal Kadazan": ["A language of Malaysia (Sabah)."], "Kazukuru": ["An extinct language of the Solomon Islands."], "Kayeli": ["A language of Indonesia (Maluku)."], "Kais": ["A language of Indonesia (Papua)."], "Kokola": ["A language of Malawi and Mozambique."], "Kaningi": ["A language of Gabon."], "Kaidipang": ["A language of Indonesia (Sulawesi)."], "Kaike": ["A Kanauri language spoken in the village of Tichurong and nearby villages in the Dolpa District in the Karnali Zone of north-west Nepal."], "Karang": ["A language of Cameroon and Chad."], "Sugut Dusun": ["A language of Malaysia (Sabah)."], "Tambunan Dusun": ["A language of Malaysia (Sabah)."], "Kayupulau": ["A language of Indonesia (Papua)."], "sake": ["Traditional Japanese alcoholic beverage made from rice."], "Komyandaret": ["A language of Indonesia (Papua)."], "Japanese sake": ["Traditional Japanese alcoholic beverage made from rice."], "Karir\u00ed-Xoc\u00f3": ["An extinct language of Brazil."], "Kamarian": ["A language of Indonesia (Maluku)."], "Kalabra": ["A language of Indonesia (Papua)."], "Lapuyan Subanun": ["A language of the Philippines."], "Lacandon": ["A mayan language spoken by the Lacand\u00f3n people who live in the jungles of the Mexican state of Chiapas."], "Pattani": ["A language of India."], "Langi": ["A language of Tanzania."], "Lambya": ["A language of Malawi and Tanzania."], "beef": ["The flesh of a cow, steer, or bull raised and killed for its meat."], "human being": ["A member of the human species."], "dock": ["An enclosed area of water used for loading, unloading, building or repairing ships."], "dry dock": ["Dock, from which the water can be pumped off"], "boatyard": ["A place for constructing, repairing and storing vessels out of the water."], "weir": ["An adjustable dam placed across a river to regulate the flow of water downstream."], "lowhead dam": ["An adjustable dam placed across a river to regulate the flow of water downstream."], "drydock": ["Dock, from which the water can be pumped off"], "Sundanese script": ["A writing system which is currently used by some Sundanese people."], "Saurashtra script": ["An abugida script used to write the Saurashtra language."], "Colombian": ["A person from Colombia, or of Colombian ancestry.", "Of or relating to Colombia, or Colombians."], "beefy": ["Muscular and heavily built."], "Nhengatu": ["A Tupi language spoken in the Upper Rio Negro region of Amazonas state of Brazil, and in neighboring portions of Colombia and Venezuela."], "familiar": ["Known to one.", "Closely acquainted or intimate.", "Inappropriately intimate or friendly."], "monetary aggregates": ["The total amount of money in a particular economy."], "money stock": ["The total amount of money in a particular economy."], "Lalia": ["A language of Democratic Republic of the Congo."], "Lamba": ["A Bantu language spoken in the northern parts of Zambia and southern fringes of the Democratic Republic of the Congo."], "torture": ["The intentional infliction of physical or mental suffering upon a person or an animal in order to punish, to coerce or for sheer cruelty.", "To intentionally inflict physical or mental suffering upon a person or an animal in order to punish, to coerce or for sheer cruelty."], "tease": ["(Fabric) To use a card device or machine to separate the fibers of a fabric.", "The act of harassing someone playfully or maliciously.", "To harass with persistent criticism or carping."], "impregnate": ["To make pregnant."], "rainwater": ["Water which falls as rain from clouds."], "male choir": ["A choir which consists only of men."], "female choir": ["A choir which consists only of women."], "bioengineering": ["The application of engineering principles and techniques to biology and medicine. It is largely concerned with the design of replacement body parts, such as limbs, heart valves, etc."], "excursion": ["A brief recreational trip; a journey out of the usual way."], "Ingrid": ["Female first name."], "beforehand": ["Being ahead of time or need.", "At an earlier or preceding time than a mentioned event."], "begrudge": ["To envy someone or something."], "Silesian": ["A language of Poland, the Czech Republic and Germany."], "Upper Silesian": ["A language of Poland, the Czech Republic and Germany."], "camel hair coat": ["Coat made of camel hair."], "camel hair": ["The fur of a camel, ranging in color from yellow to reddish brown, which is used to fabricate various textiles."], "fur coat": ["A coat made from animal fur."], "key species": ["A species who by its effect on the ecosystem determines the existence of the niches of other species."], "beguile": ["To charm or amuse a person.", "To attract, arouse and hold attention and interest, as by charm or beauty."], "beguiling": ["Highly attractive and able to arouse hope or desire."], "consent": ["To agree in opinion or sentiment; to consider or hold as true.", "Voluntary agreement or permission.", "To give an affirmative reply to; respond favorably to."], "Animalia": ["A group of multicellular organisms whose classification is based on tissues or organ arrangement; heterotrophic; use sexual reproduction in which a fertilized egg develops in stages; vertebrate and invertebrate types. (source:UMLS)"], "C\u00e1diz": ["Capital of the province C\u00e1diz in the autonomous community of Andalusia in southern Spain."], "mink coat": ["Coat made of the fur of a mink."], "republican": ["Of or belonging to a republic.", "Someone who favours a republic; an anti-monarchist."], "Baal": ["A demon in Judeo-Christian mythology.", "In ancient times the name of several gods in the Levant."], "Ba'al": ["In ancient times the name of several gods in the Levant."], "grimoire": ["A textbook of magic."], "sexual": ["Of or relating to having sex.", "Of or relating to sexuality.", "Of or relating to the sex of an organism."], "manticore": ["A legendary creature in Persian and Greek mythology with the body of a lion, a human head and the tail of a dragon or a scorpion."], "intimate": ["Of or relating to having sex."], "mainly": ["For the most part."], "chiefly": ["For the most part."], "principally": ["For the most part."], "primarily": ["For the most part."], "bronze": ["A copper alloy, usually with tin as the main additive, but sometimes with other elements such as phosphorus, manganese, aluminium, or silicon. (source: Wikipedia)", "To get a tan, from wind or sun."], "eukaryotes": ["Organisms whose cells are organized into complex structures by internal membranes and a cytoskeleton. Animals, plants, fungi, and protists are eukaryotes."], "Weser": ["River in Germany which is formed at Hann. M\u00fcnden by the tributary of the Fulda and Werra and empties into the North Sea near Bremerhaven."], "Victoria Cross": ["The highest military decoration of the United Kingdom awarded for valour \"in the face of the enemy\"."], "VC": ["The highest military decoration of the United Kingdom awarded for valour \"in the face of the enemy\"."], "Baalist": ["A worshipper of Baal."], "happiness": ["Emotions experienced when in a state of well-being."], "behold": ["To have one's eyes, one's attention on something or someone.", "To perceive by the visual faculty.", "To see, discover or determine something, unclear, distant or hidden, by looking carefully."], "beholden": ["Under a moral obligation to someone."], "beige": ["A very light brown color."], "bacteria": ["Group of single-cell micro-organisms, the smallest of the living organisms. Some are vital to sustain life, while others are responsible for causing highly dangerous human diseases, such as anthrax, tetanus and tuberculosis. Bacteria are found everywhere, in the soil, water and air.\\n(Source: MGH / WRIGHT)"], "Ardisia": ["(Coralberry or Marlberry) A genus of flowering plants in the family Myrsinaceae (Myrsine family), native to warm temperate to tropical regions of the Americas, Asia, and Australasia. (source: Wikipedia)"], "being": ["Something that exists.", "Any living person or thing."], "belated": ["Occurring after the expected or usual time."], "belch": ["To give out air noisily from the stomach through the mouth."], "beleaguered": ["Surrounded with troops."], "belfry": ["A tower in which bells are hung."], "believable": ["Capable of eliciting belief or trust.", "Worthy of belief or confidence."], "compatriot": ["Someone from one's own country."], "Laru": ["A Kainji language of Nigeria."], "Laqua": ["A Tai-Kadai language of Viet Nam and China."], "Larteh": ["A language of Ghana."], "Laba": ["A language of Indonesia (Maluku)."], "Lauje": ["A language of Indonesia (Sulawesi)."], "Lemolang": ["A linguistic isolate spoken in Luwu (South Sulawesi, Indonesia)."], "Tiwa": ["A language of India."], "Aribwatsa": ["An extinct Busu language formerly spoken in the area of Lae of the Morobe Province in Papua New Guinea."], "Lui": ["A language of Myanmar."], "Label": ["A language of Papua New Guinea."], "Tinani": ["A language of India."], "Laopang": ["A language of Myanmar."], "La'bi": ["A language of Cameroon."], "Ladakhi": ["A Tibetan language spoken by the Ladakhi people in the northern part of state of Jammu and Kashmir in India and across the border in western Tibet."], "Wampar": ["A language of Papua New Guinea."], "Northern Lorung": ["A language of Nepal."], "Labu": ["A language of Papua New Guinea."], "Lavatbura-Lamusong": ["A language of Papua New Guinea."], "Tolaki": ["A language of Indonesia (Sulawesi)."], "Lawangan": ["A language of Indonesia (Kalimantan)."], "Lamu-Lamu": ["An extinct Paman language of Queensland, Australia."], "Lardil": ["A Tangkic language spoken on Mornington Island in northern Australia."], "Legenyem": ["A language of Indonesia (Papua)."], "Lola": ["A language of Indonesia (Maluku)."], "Loncong": ["A language of Indonesia (Sumatra)."], "Lubu": ["A language of Indonesia (Sumatra)."], "Luchazi": ["A Bantu language of Angola and Zambia."], "Lisela": ["A language of Indonesia (Maluku)."], "Tungag": ["A language of Papua New Guinea."], "Luhu": ["A language of Indonesia (Maluku)."], "Lisabata-Nuniali": ["A language of Indonesia (Maluku)."], "Idun": ["A language of Nigeria."], "billboard": ["A flat surface, as of a panel or of a fence, on which bills are posted."], "Lenyima": ["A language of Nigeria."], "Lamja-Dengsa-Tola": ["A language of Nigeria."], "Laadi": ["A language of Congo and Angola."], "Laari": ["A language of Congo and Angola."], "belittle": ["To make to seem unimportant."], "bellboy": ["Someone employed as an errand boy and luggage carrier around hotels."], "bellicose": ["Having or showing a ready disposition to fight."], "beta": ["The 2nd letter of the Greek alphabet.", "Preliminary, prerelease; refers to an incomplete version of a product released for initial testing."], "bellow": ["To make the deep roaring sound characteristic of a bull.", "The roar of a large animal, such as a bull."], "ferocious": ["Marked by extreme and violent energy."], "side": ["One among many similar or related, yet still distinct features or elements.", "One set of competitors in a game.", "A group having a particular allegiance in a conflict or competition.", "An extended outer surface of an object.", "A lateral surface of an object that is not one of the front, back, top, or bottom.", "A bounding straight edge of a two-dimensional shape.", "One half (left or right, top or bottom, front or back, etc.) of something or someone.", "A region in a specified position.", "A serving of food accompanying, and meant to be consumed with, the main course of a meal."], "handball": ["A team sport where two teams of seven players each (six players and a goalkeeper) pass and bounce a ball trying to throw it in the goal of the opposing team. (source: wikipedia)"], "Lower Silesian": ["A language of Poland, the Czech Republic and Germany"], "bass guitarist": ["A bass guitar player."], "Baltimore": ["An independent city and the largest city in the state of Maryland in the United States."], "sophism": ["A flawed argument superficially correct in its reasoning, usually designed to deceive. An intentional fallacy."], "bell push": ["A button, as on the front door of a house, that rings a bell when pushed."], "bell button": ["A button, as on the front door of a house, that rings a bell when pushed."], "bellyache": ["A pain in the abdomen or bowels."], "beloved": ["Greatly loved.", "A person who is greatly loved."], "bemoan": ["To express disapproval of or regret for."], "Bolivian": ["A person from Bolivia, or of Bolivian ancestry.", "Of or relating to Bolivia, or Bolivians."], "scales": ["A tool to measure the weight of something."], "weighing scale": ["A tool to measure the weight of something."], "bemused": ["Perplexed by many conflicting situations or statements; filled with bewilderment.", "Deeply absorbed in thought.", "Deeply absorbed in thought."], "Lemoro": ["A language of Nigeria."], "Leelau": ["A language of Nigeria."], "Kaan": ["A language of Nigeria."], "Landoma": ["A language of Guinea."], "L\u00e1adan": ["A constructed language for the women's language in Suzette Haden Elgin's novels."], "Loo": ["A language of Nigeria."], "Tso": ["A language of Nigeria."], "Lufu": ["A language of Nigeria."], "Lega-Shabunda": ["A language of Democratic Republic of the Congo"], "Lala-Bisa": ["A language of Zambia and the Democratic Republic of the Congo."], "Leco": ["A language isolate spoken in areas east of Lake Titicaca, Bolivia."], "Ly\u00e9l\u00e9": ["A language of Burkina Faso."], "Lelemi": ["A language of Ghana."], "Lengua": ["A language of Paraguay."], "Lenje": ["A language of Zambia"], "Lemio": ["A language of Papua New Guinea."], "Lengola": ["A language of Democratic Republic of the Congo."], "bend": ["A angular or rounded shape in a thin material (such as paper) where the material abruptly changes direction, typically back toward itself.", "An angle or sharp curve in the course of a road, river, etc.", "Movement that causes the formation of a curve.", "To bend one's back forward.", "To bend a joint."], "beneath": ["In a lower position than."], "benediction": ["An invocation of divine blessing, usually at the end of a church service."], "dead language": ["A language which no longer undergoes changes in grammar and vocabulary."], "modern language": ["A language which has native speakers and is currently in use as a means of communication."], "living language": ["A language which has native speakers and is currently in use as a means of communication."], "goddess": ["A female deity."], "sesame oil": ["A vegetable oil derived from sesame seeds."], "ziggurat": ["Temple tower of the ancient Mesopotamian valley having the form of a terraced pyramid."], "Bilbao": ["The largest city in the Basque Country, Spain and the capital of the province of Biscay."], "normally": ["Under normal conditions.", "Under normal conditions or circumstances."], "originally": ["As it was in the beginning."], "subsequently": ["Coming after; in a subsequent manner."], "rapidly": ["With speed; in a rapid manner."], "quickly": ["With speed; in a rapid manner."], "speedily": ["In a near future.", "With speed; in a rapid manner."], "totally": ["To a complete degree or to the full or entire extent.", "In a whole or complete manner."], "passively": ["In a passive or acquiescent manner; resignedly or submissively."], "submissively": ["In a submissive manner."], "automatically": ["In an automatic manner."], "manually": ["By hand."], "explicitly": ["In an explicit manner."], "attentively": ["In an attentive manner."], "respectfully": ["In a respectful manner."], "respectful": ["Marked or characterized by respect.", "Showing deference."], "gentle": ["Tender and amiable; of a considerate or kindly disposition."], "passive": ["(Something) That is not active, but rather is acted upon.", "Lacking in energy or will.", "Peacefully resistant in response to injustice.", "Expressing that the subject of the sentence is the patient of the action denoted by the verb."], "bequeath": ["To dispose of personal property, esp. money, by last will."], "ethyl alcohol": ["A colorless liquid, miscible with water, used as a reagent and solvent.", "A flammable, colorless liquid which is used amongst others as solvent, disinfectant and intoxicant."], "grain alcohol": ["A colorless liquid, miscible with water, used as a reagent and solvent.", "A flammable, colorless liquid which is used amongst others as solvent, disinfectant and intoxicant."], "bequest": ["A gift of personal property by will."], "alcohol addict": ["A person who regularly consumes a lot of alcohol and is addicted to it."], "deafening": ["Loud enough to cause temporary or permanent hearing loss."], "earsplitting": ["Loud enough to cause temporary or permanent hearing loss."], "roaring": ["Loud enough to cause temporary or permanent hearing loss."], "thunderous": ["Loud enough to cause temporary or permanent hearing loss."], "thundery": ["Loud enough to cause temporary or permanent hearing loss."], "perceptive": ["Having or showing keenness of perception, insight, understanding, or intuition.", "Having or revealing keen insight and good judgment."], "respective": ["Involving two or more people or things, in reference to them as individuals."], "noisy": ["Making a noise, esp. a loud sound."], "egg spoon": ["Small spoon for eating boiled eggs."], "habitual": ["Behaving in a regular manner, as a habit.", "According to or depending on custom."], "abrasive stone": ["A sandstone slab used for grinding and polishing."], "monocausal explanation": ["The attribution of only one cause to the existence of a phenomenon."], "Maya calendar": ["A system of distinct calendars and almanacs used by the Maya civilization of pre-Columbian Mesoamerica, and by some modern Maya communities in highland Guatemala. (source: Wikipedia)"], "life expectancy": ["The average number of years people of a given age are expected to live."], "volcanic ash": ["Finely pulverized pyroclastic material ejected from a volcano in eruption."], "uniformitarianism": ["The assumption that the natural processes operating in the past are the same as those that can be observed operating in the present. (source: Wikipedia)"], "theodolite": ["An instrument for measuring both horizontal and vertical angles, as used in triangulation networks. (source: Wikipedia)"], "diachronic": ["Referring to a chronological perspective that refers to phenomena as they change over time."], "sociobiology": ["A neo-Darwinian synthesis of scientific disciplines that attempts to explain social behavior in all species by considering the evolutionary advantages the behaviors may have."], "solifluction": ["A type of mass wasting where waterlogged sediment slowly moves downslope over impermeable material. (source: Wikipedia)"], "unconformity": ["A buried erosion surface separating two rock masses or strata of different ages, indicating that sediment deposition was not continuous. (source: Wikipedia)"], "petroglyph": ["An image created by removing part of a rock surfaces by incising, pecking, carving, and abrading."], "Paralympic Games": ["A multi-sport event for athletes with physical, mental and sensorial disabilities."], "bereft": ["Deprived of something."], "beret": ["A soft, visorless cap with a close-fitting headband and a wide round top."], "berth": ["A place in a port etc where a ship can be moored.", "Tie up the boat."], "sewer": ["System of pipes, usually underground, for carrying waste water and human waste away from houses and other buildings, to a place where they can be safely get rid of."], "beseech": ["To make urgent appeal."], "low-cost": ["Having a price that can be paid with one's financial means."], "low-priced": ["Having a price that can be paid with one's financial means."], "proscription": ["The act of expelling or relegating someone to a country or place by authoritative decree."], "cinerary urn": ["A container into which cremated remains are placed and kept."], "funerary urn": ["A container into which cremated remains are placed and kept."], "coffee plantation": ["A plantation which grows coffee plants."], "plantation": ["A large farm or estate, especially in a tropical or semitropical country, on which cotton, tobacco, coffee, sugar cane, or trees and the like are cultivated, often includes housing for the owner and workers."], "nail polish": ["A lacquer available in many colors that is applied to the nails of the fingers or toes and serves as decoration, but also as protection for the nails."], "nail varnish": ["A lacquer available in many colors that is applied to the nails of the fingers or toes and serves as decoration, but also as protection for the nails."], "preclude": ["Remove the possibility of."], "cotton plantation": ["A plantation which grows cotton."], "sugar cane plantation": ["A plantation which grows sugar cane."], "eye shadow": ["Make-up article in form of colored powder which is applied on the eyelids and under the eyebrows."], "rouge": ["A cosmetic consisting of red powder which is applied to the cheeks so as to provide a more youthful appearance and to emphasise the cheekbones."], "blusher": ["A cosmetic consisting of red powder which is applied to the cheeks so as to provide a more youthful appearance and to emphasise the cheekbones."], "bot": ["An automated software program that can execute certain commands when it receives a specific input."], "besmear": ["To smear all over."], "besmirch": ["To smear all over."], "besom": ["A broom made of twigs tied together on a long handle."], "bestowal": ["A gift that is bestowed or conferred."], "best-seller": ["A book which sells very many copies."], "boulevard": ["A broad, well-paved and landscaped thoroughfare."], "betide": ["(For an event) Have a real existence."], "betoken": ["To give evidence of."], "betrothal": ["A mutual promise to marry."], "engagement": ["A mutual promise to marry."], "betterment": ["The act or process of bettering."], "bewail": ["To express deep sorrow for."], "grieve": ["To express deep sorrow for.", "To cause to feel sorrow."], "deplore": ["To express deep sorrow for."], "beware": ["To be cautious, wary or careful; to be alert to."], "bewilder": ["To overwhelm with surprise or sudden wonder."], "bewildering": ["Causing dismay or horror."], "anseriformes": ["An order (Anseriformes) of birds with webbed feet; most of them still dwelling in water."], "bibliographer": ["A person who compiles bibliographies."], "bibliophile": ["Someone who loves and usually collects books."], "bibulous": ["Given to or marked by the consumption of alcoholic drink."], "bidet": ["A basin for washing genitals and anal area."], "billy goat": ["A male goat."], "binoculars": ["An instrument for making distant objects look nearer, with separate eyepieces for each eye."], "binominal": ["Having or being characterized by two names, especially those of genus and species in taxonomies."], "biographer": ["A writer of someone's biography."], "biographical": ["Of or relating to biography."], "biographic": ["Of or relating to biography."], "Acehnese": ["A Malayo-Polynesian language spoken by the indigenous population of the Aceh province in Indonesia, in the northern part of the Sumatra Island."], "survive": ["To continue to live or exist in spite of an accident or ordeal."], "bionic": ["Of or relating to bionics."], "bionics": ["The application of biological principles to the study and design of engineering systems, especially electronic systems."], "bipartite": ["Divided into or consisting of two parts."], "biped": ["A two-footed animal.", "Having two feet."], "elementary charge": ["The electric charge of a single proton, or equivalently, the negative of the electric charge of a single electron."], "Kikuyu": ["A Bantu language spoken by the Kikuyu people in the area between Nyeri and Nairobi of Kenya."], "Kuanyama": ["A language of Angola and Namibia."], "web engineering": ["A scientific discipline concerned with the application of systematic and quantifiable approaches (concepts, methods, techniques, tools) to cost-effective requirement analysis, design, implementation, testing, operation and maintenance of high-quality web applications. (source: Kappel et. al.)"], "Leipon": ["A language of Papua New Guinea."], "Nomaande": ["A language of Cameroon."], "Lenca": ["A language of Honduras and El Salvador."], "Leti": ["A language of Cameroon.", "A language of Indonesia (Maluku)."], "Lepcha": ["A language of India, Bhutan and Nepal.", "A person of Lepcha ethnic origin."], "Lembena": ["A language of Papua New Guinea."], "Lenkau": ["A language of Papua New Guinea."], "Lesing-Gelimi": ["A language of Papua New Guinea."], "Lamma": ["A language of Indonesia (Nusa Tenggara)."], "Ledo Kaili": ["A language of Indonesia (Sulawesi)."], "Luang": ["A language spoken on the islands of Luang, Wetang, Moa and Lakor in the Maluku Province, Indonesia."], "Lefa": ["A language of Cameroon."], "Lungga": ["A language of Solomon Islands."], "Laghu": ["A language of Solomon Islands."], "Laghuu": ["A language of Viet Nam."], "Lengilu": ["A language of Indonesia (Kalimantan)."], "Lingarak": ["A language of Vanuatu."], "Wala": ["A language of Solomon Islands."], "Lega-Mwenga": ["A language of Democratic Republic of the Congo."], "Logba": ["A language of Ghana."], "Lengo": ["A language of the Solomon Islands."], "Pahi": ["A language of Papua New Guinea."], "Longgu": ["A language of Solomon Islands."], "Ligenza": ["A language of the Democratic Republic of the Congo."], "biplane": ["An airplane having two pairs of wings fixed at different levels, especially one above and one below the fuselage."], "birdcage": ["A cage for confining birds."], "chocolate pudding": ["Pudding with chocolate flavour."], "vanilla pudding": ["Pudding with vanilla flavour."], "methyl vanillin": ["Organic compound which is used as flavoring agent, it occurs naturally in vanilla beans and can be produced synthetically."], "vanillin": ["Organic compound which is used as flavoring agent, it occurs naturally in vanilla beans and can be produced synthetically."], "Adygei": ["One of the two official languages of the Republic of Adygea in the Russian Federation."], "amenorrh\u0153a": ["The absence of a menstrual period in a woman of reproductive age."], "Victoria": ["A state located in the south-eastern corner of Australia.", "The capital city of the Seychelles."], "amphora": ["A jar with two handles."], "sunflower": ["Annual plant with a large yellow flowering head of the genus Helianthus and the family of the Asteraceae."], "sunflower oil": ["A vegetable oil pressed from sunflower seeds."], "birthplace": ["The place where someone was born."], "cordierite": ["A silicate mineral containing magnesium, iron and aluminium."], "iolite": ["A silicate mineral containing magnesium, iron and aluminium."], "bread machine": ["Electric kitchen appliance which can automatically bake bread after adding the ingredients."], "breadmaker": ["Electric kitchen appliance which can automatically bake bread after adding the ingredients."], "toad in the hole": ["Traditional British dish comprising sausages in Yorkshire pudding batter, usually served with vegetables and gravy."], "toad-in-the-hole": ["Traditional British dish comprising sausages in Yorkshire pudding batter, usually served with vegetables and gravy."], "bisect": ["To divide into two (equal) parts."], "trichoptilosis": ["The splitting of hairs at the ends."], "pizza oven": ["Oven specifically constructed to bake pizzas."], "bisector": ["A line that divides an angle or line into two equal parts."], "bisectrix": ["A line that divides an angle or line into two equal parts."], "bitch": ["A female dog.", "A female fox."], "Lyngngam": ["A language of India and Bangladesh, spoken in the West Khasi hills in Mawshynrut block."], "dark circles": ["Dark areas of skin around the eyes, caused for example by lack of sleep."], "eye circles": ["Dark areas of skin around the eyes, caused for example by lack of sleep."], "electronics assembly": ["Electronic part of a device."], "bivouac": ["A makeshift camp or camping place."], "blab": ["An incessant or indiscreet talker.", "To chatter thoughtlessly or indiscreetly."], "blabbermouth": ["An incessant or indiscreet talker."], "blabber": ["To chatter thoughtlessly or indiscreetly."], "blackboard": ["A dark-coloured board for writing on in chalk used especially in schools."], "blacklist": ["A list of people who are out of favour."], "chalkboard": ["A dark-coloured board for writing on in chalk used especially in schools."], "Live CD": ["A generic term for an operating system distribution that is executed upon boot, without installation on a hard drive."], "classroom": ["A room in a school where lessons are given."], "blackmailer": ["A criminal who extorts money from someone by threatening to expose embarrassing information about him.", "A person who engages in extortion."], "Rubus": ["Genus of flowering plants in the family Rosaceae."], "blameless": ["Free of blame or guilt."], "Lhomi": ["A Tibetan language spoken by the Lhomi people in Nepal, India and China (Tibet)."], "Lahanan": ["A language of Malaysia (Sarawak)."], "Lhokpu": ["A Sino-Tibetan language spoken by the Lhop people in Bhutan."], "Mlahs\u00f6": ["An extinct language of Syria."], "Toga": ["An Austronesian language spoken in Vanuatu, in the Torres islands."], "Lahu": ["A language of China, Laos, Myanmar, Thailand and Vietnam."], "West-Central Limba": ["A language of Sierra Leone."], "Likum": ["A language of Papua New Guinea."], "Nyindrou": ["A language of Papua New Guinea."], "Likila": ["A language of the Democratic Republic of the Congo."], "Limbu": ["A language of Nepal and India."], "Ligbi": ["A language of Ghana and the C\u00f4te d'Ivoire."], "Lihir": ["A language of Papua New Guinea."], "Lingkhim": ["A language of Nepal."], "Lika": ["A language of Democratic Republic of the Congo."], "Lillooet": ["A language of Canada."], "Liki": ["A language of Indonesia (Papua)."], "Sekpele": ["A language of Ghana."], "Liberian English": ["A language of Liberia."], "Lisu": ["A language of China, India, Myammar and Thailand."], "Liv": ["A language of Latvia."], "Lembak": ["A language of Indonesia (Sumatra)."], "Liabuku": ["A language of Indonesia (Sulawesi)."], "Banda-Bambari": ["A language of Central African Republic."], "Libinza": ["A language of Democratic Republic of the Congo."], "Laiyolo": ["A language of Indonesia (Sulawesi)."], "Li'o": ["A language of Indonesia (Nusa Tenggara)."], "Lampung": ["A language of Indonesia (Sumatra)."], "Buffalo": ["The second largest city in New York State. Located in Western New York on the eastern shores of Lake Erie and at the head of the Niagara River. (source Wikipedia)"], "Ayacucho": ["The capital city of Huamanga Province, Ayacucho Region, Peru.", "A region of Peru, located in the south-central Andes of the country. Its capital is the city of Ayacucho."], "blameworthy": ["Deserving blame."], "continental": ["Of or relating to a continent or continents."], "grant": ["To bestow the possession or title of."], "Siouan": ["A native American language family of North America."], "blasphemy": ["The crime of assuming to oneself the rights or qualities of God."], "West African CFA franc": ["The currency of Benin, Burkina Faso, C\u00f4te d'Ivoire, Guinea-Bissau, Mali, Niger, Senegal and Togo."], "Central African CFA franc": ["The currency of Cameroon, Central African Republic, Chad, Republic of the Congo, Equatorial Guinea and Gabon."], "blatant": ["Without any attempt at concealment; completely obvious.", "Conspicuously and offensively loud; given to vehement outcry."], "Bundesliga": ["The name for the premier league of any sport in Germany or Austria."], "basketball player": ["A person who plays basketball, especially professionally."], "blaze": ["To be on fire, especially producing a lot of flames and light.", "To shine like a flame."], "bleach": ["A chemical that removes colors or whitens.", "To treat with bleach, especially so as to whiten (fabric, paper, etc) or lighten (hair)."], "nodule": ["Small aggregation of cells in a body."], "Pap test": ["A method for the early detection of cancer and other abnormalities of the female genital tract. A Pap smear is done by placing a speculum in the vagina, locating the cervix, and then scraping a thin layer of cells from the cervix. The cells are placed on a slide, sent to a laboratory, and analyzed for abnormalities."], "Papanikolaou test": ["A method for the early detection of cancer and other abnormalities of the female genital tract. A Pap smear is done by placing a speculum in the vagina, locating the cervix, and then scraping a thin layer of cells from the cervix. The cells are placed on a slide, sent to a laboratory, and analyzed for abnormalities."], "Papanicolaou test": ["A method for the early detection of cancer and other abnormalities of the female genital tract. A Pap smear is done by placing a speculum in the vagina, locating the cervix, and then scraping a thin layer of cells from the cervix. The cells are placed on a slide, sent to a laboratory, and analyzed for abnormalities."], "cervical smear": ["A method for the early detection of cancer and other abnormalities of the female genital tract. A Pap smear is done by placing a speculum in the vagina, locating the cervix, and then scraping a thin layer of cells from the cervix. The cells are placed on a slide, sent to a laboratory, and analyzed for abnormalities."], "smear test": ["A method for the early detection of cancer and other abnormalities of the female genital tract. A Pap smear is done by placing a speculum in the vagina, locating the cervix, and then scraping a thin layer of cells from the cervix. The cells are placed on a slide, sent to a laboratory, and analyzed for abnormalities."], "bronchocele": ["Enlargement of the thyroid gland."], "pumice": ["A volcanic rock that consists of highly vesicular volcanic glass, which may or may not contain crystals."], "cicatrice": ["A permanent mark on the skin resulting from a wound."], "scar over": ["To form a scar when healing."], "greater white-toothed shrew": ["(Crocidura russula) A small shrew, found in Europe and North Africa."], "beeswax": ["A yellowish or dark brown wax secreted by honeybees for constructing honeycombs."], "blender": ["A tool for mixing things together."], "blessing": ["A prayer for happiness or success."], "blindworm": ["A limbless lizard (Anguis fragilis) of the family Anguidae."], "slowworm": ["A limbless lizard (Anguis fragilis) of the family Anguidae."], "blindfold": ["A bandage to cover the eyes."], "blizzard": ["A very heavy snowstorm with high winds."], "bloater": ["A large salted and smoked herring."], "kipper": ["A large salted and smoked herring.", "To expose food to the smoke of wood fires in order to preserve it."], "fan": ["A hand-held device to agitate or move air or other gas.", "A device that provides air circulation in a closed environment by rotating an helix, in order to cool down someone or something.", "A follower or admirer who likes, knows about, and appreciates a particular interest or activity.", "To blow air on (something) by means of a fan (hand-held, mechanical or electrical) or otherwise."], "Aberdeen": ["Scotland's third largest city with an official population of 202,370, and one of Scotland's 32 local government council areas."], "bioluminescent": ["Of an organism: able to produce light."], "blonde": ["A woman with blond-coloured hair."], "blood heat": ["Temperature of the body; normally 37\u00b0C in humans."], "blood money": ["Money obtained ruthlessly and at a cost of suffering to others.", "Compensation paid by the killer or the killer's family to the family of the killed person."], "blood poisining": ["An infection of the blood."], "Lakalei": ["A language of East Timor."], "Kenyi": ["A language of Uganda."], "Laki": ["A language of Iran."], "Remun": ["A language of Malaysia (Sarawak)."], "Laeko-Libuat": ["A language of Papua New Guinea."], "Lakona": ["A language of Vanuatu."], "Lala-Roba": ["A language of Nigeria."], "Lolo": ["A language of Mozambique."], "Lele": ["A language of Guinea.", "A language of Chad."], "Hermit": ["An extinct language of Papua New Guinea."], "hermit": ["A religious recluse; someone who lives alone for religious reasons."], "Lole": ["A language of Indonesia (Nusa Tenggara)."], "Teke-Laali": ["A language of Congo."], "Lelak": ["A language of Malaysia (Sarawak)."], "Lilau": ["A language of Papua New Guinea."], "Lasalimu": ["A language of Indonesia (Sulawesi)."], "North Efate": ["A language of Vanuatu."], "Lolak": ["A language of Indonesia (Sulawesi)."], "Lithuanian Sign Language": ["A sign language used in Lithuania."], "Lau": ["A language of Solomon Islands."], "Lauan": ["A language of Fiji."], "East Limba": ["A language of Guinea and Sierra Leone."], "Merei": ["A language of Vanuatu."], "Limilngan": ["An extinct indigenous language of Australia formerly spoken in the Arnhem Land region."], "P\u00e9v\u00e9": ["A language of Chad and Cameroon."], "South Lembata": ["A language of Indonesia (Nusa Tenggara)."], "Lamogai": ["A language of Papua New Guinea."], "Lambichhong": ["A language of Nepal."], "West Lembata": ["A language of Indonesia (Nusa Tenggara)."], "Lamkang": ["A language of India and Myanmar."], "Hano": ["A language of Vanuatu."], "Limbum": ["A language of Cameroon and Nigeria."], "Lamatuka": ["A language of Indonesia (Nusa Tenggara)."], "blood-red": ["The deep-red color of blood."], "Lamalera": ["A language of Indonesia (Nusa Tenggara)."], "Lematang": ["A language of Indonesia (Sumatra)."], "Lamenu": ["A language of Vanuatu."], "Lomaiviti": ["A language of Fiji."], "Laimbue": ["A language of Cameroon."], "Lamboya": ["A language of Indonesia (Nusa Tenggara)."], "Langbashe": ["A song of the Central African Republic and the Democratic Republic of the Congo."], "Mbalanhu": ["A language of Namibia."], "Languedocien": ["An Occitan dialect spoken by some people in the part of southern France known as Languedoc, Rouergue, Quercy, Agenais and Southern P\u00e9rigord.", "A language of France."], "Lundayeh": ["A language of Indonesia (Kalimantan), Brunei and Malaysia."], "Langobardic": ["An ancient language of Hungary and Northern Italy. 4th - 9th century AD."], "unripe": ["That is not yet ripe (edible fruit), usually hard and sour."], "raw": ["That has not been cooked (food).", "Bare-bones; nothing else."], "blood sausage": ["A dark sausage made of pig's blood, diced pork fat, and other ingredients such as onions and breadcrumbs."], "bloodstain": ["A spot or stain made by blood."], "blower": ["A device that produces a current of air."], "Cleopatra VII": ["A Hellenistic ruler of Egypt, originally sharing power with her father Ptolemy XII and later with her brothers/husbands Ptolemy XIII and Ptolemy XIV; eventually gaining sole rule of Egypt. (source: Wikipedia)"], "bluebottle": ["A composite plant, Centaurea cyanus, having narrow leaves and blue flower heads.", "A jelly-like marine invertebrate of the family Physaliidae."], "cornflower": ["A composite plant, Centaurea cyanus, having narrow leaves and blue flower heads.", "A shade of blue found in cornflowers."], "Lantanai": ["A language of Papua New Guinea."], "Leningitij": ["An extinct language of Australia."], "blueprint": ["A photographic print of technical drawings."], "blunder": ["A foolish error, especially one made in public."], "blunderer": ["Someone who makes mistakes because of incompetence."], "bristle": ["A stiff or coarse animal hair.", "A stiff, tapering feather with a large rachis but few barbs."], "European garden spider": ["(Araneus diadematus) A very common and well-known orb-weaver spider in Western Europe."], "necklace": ["An article of jewelry that is worn around the neck."], "Las Vegas": ["The most populous city in the state of Nevada, United States, the seat of Clark County, and an internationally renowned major resort city for gambling, shopping, and entertainment. (source: Wikipedia)"], "boarder": ["Someone who temporarily lives, and takes his meals, in someone else's house."], "boarding-house": ["A house where someone can live and takes meals as paying guest."], "child murderer": ["Someone who has murdered a child."], "Saint-Jean-de-Luz": ["ISO 639-6 entity"], "Toulon": ["French commune, located in the department of Var and the Provence-Alpes-C\u00f4te d'Azur."], "commemoration": ["An observance or celebration designed to honor the memory of some person or event."], "oval": ["Any curve resembling an egg or an ellipse."], "ovoid": ["Any curve resembling an egg or an ellipse.", "Shaped like an egg."], "boarding school": ["A school at which the pupils receive board and lodging during the school term."], "pentagram": ["The shape of a five-pointed star drawn with five straight strokes."], "pentalpha": ["The shape of a five-pointed star drawn with five straight strokes."], "pentangle": ["The shape of a five-pointed star drawn with five straight strokes."], "San Sebasti\u00e1n": ["The capital city of the province of Gipuzkoa, in the Basque Country, Spain."], "Valladolid": ["An industrial city and it is a municipality in north-central Spain. The capital of the province of Valladolid and of the autonomous community of Castile and Leon,", "A province of central/northwest Spain, in the central part of the autonomous community of Castile and Le\u00f3n."], "Soviet": ["Pertaining to the Soviet Union or its constituent republics."], "nominate": ["To name someone for a particular role or position, including that of an office."], "Burgos": ["A city of northern Spain, at the edge of the central plateau. It is the capital of the province of Burgos in the autonomous community of Castilla y Le\u00f3n.", "A province of northern Spain, in the northeastern part of the autonomous community of Castile and Le\u00f3n."], "coordinate": ["A number representing the position of a point along a line, arc, or similar one-dimensional figure.", "To bring order and organization to.", "To bring (components or parts, e.g., a car's wheels) into proper or desirable coordination correlation."], "creator": ["One who creates or makes something."], "larva": ["A stage of growth for some insects, in which they are wingless and resemble a caterpillar or grub after hatching from their egg.", "An animal at the larva stage."], "boathouse": ["A building, usually built partly over water, for sheltering a boat or boats."], "boatswain": ["A petty officer on a ship, responsible for the ship's equipment and for controlling the work of the crew."], "shipyard": ["A place for constructing, repairing and storing vessels out of the water."], "neonaticide": ["The killing of a newborn, usually immmediately after birth."], "bobbin": ["A winder around which thread can be wound."], "bodyguard": ["A guard to protect an important person."], "uroscopy": ["The historic medical practice of visually examining a patient's urine in order to make a diagnosis."], "bollard": ["A short post on a wharf around which ropes are fastened.", "A strong vertical post of timber or iron, fixed on the deck of a ship, to which the ship's mooring lines etc. are secured."], "grill": ["To cook food, often meat or fish, over glowing charcoal.", "To cook without any added liquid and at high temperature, such as on a electric grill, a barbecue or an oven."], "roast": ["To cook (food, commonly bread) using a dry heat.", "To expose to heat without adding fat or water until it is cooked, has a brown crust and becomes crispy."], "compact": ["Consisting of components very close to each other."], "packed": ["Consisting of many people very close to each other."], "crowded": ["Consisting of many people very close to each other."], "glorious": ["That has achieved glory.", "Deserving praise; worth to be praised."], "Union of Myanmar": ["A country in Southeast Asia that is located partially on the Indian subcontinent and has borders with Bangladesh, China, India, Laos and Thailand."], "bombardment": ["An attack with bombs."], "bomber": ["A combat aircraft designed to carry and drop bombs."], "quintet": ["A musical composition scored for five voices or instruments."], "quintette": ["A musical composition scored for five voices or instruments."], "yoga": ["A Hindu discipline aimed at training the consciousness for a state of perfect spiritual insight and tranquillity; especially a system of exercises practiced to promote control of the body and mind."], "bookshop": ["A store where books are sold."], "glass eye": ["An artificial eye made of glass."], "flip-flop": ["A flat sandal, usually of rubber, secured by two straps mounted between the big toe and its neighbour."], "arms": ["The two arms of a human being considered as a whole."], "debtee": ["A party (e.g. person, organization, company, or government) that has a claim to the properties or services of a second party."], "mob": ["Disparaging term for the common people.", "To press tightly together or cram."], "freight": ["The goods transported by a vehicle such as a truck, a ship, a train, an airplane, etc."], "torment": ["Anger produced by some annoying irritation", "Pain, anguish or misery, either physical or mental.", "to cause or inflict pain or suffering."], "freight train": ["A train which is exclusively intended for the transport of goods."], "boredom": ["The state of being bored."], "botcher": ["Someone who makes mistakes because of incompetence."], "bothersome": ["Causing vexation, irritation or annoyance.", "Causing bother or annoyance."], "bungler": ["Someone who makes mistakes because of incompetence."], "continuation": ["That act or state of continuing.", "That which extends, increases, supplements, or carries on.", "Any work of literature, film, theater, or music that continues and extends the story of some earlier work."], "officially": ["In an official manner."], "practically": ["In practice, in effect. Not necessarily officially the case but what actually occurs.", "Almost, not completely."], "uniquely": ["In a unique manner."], "immediate": ["Happening right away, instantly, with no delay.", "Very close; direct or adjacent."], "immediately": ["In an immediate manner; instantly or without delay.", "Bearing an immediate relation.", "Near or close by.", "In the time directly following on the present moment."], "relatively": ["Proportionally, in relation to some larger scale thing."], "definitive": ["Definite, authoritative and complete."], "definitively": ["In a definitive manner."], "delay": ["Time during which some action is awaited.", "To put off until a later time.", "Act of putting off to a future time."], "easily": ["With ease."], "exclusively": ["Without any others being included or involved."], "entirely": ["Without any others being included or involved.", "In a whole or complete manner."], "solely": ["Without any others being included or involved."], "clearly": ["In a clear manner."], "previously": ["At a time before that."], "slightly": ["To a small extent or degree."], "somewhat": ["To a small extent or degree."], "partial": ["Existing as a part or portion; incomplete.", "Biased in favor of a person, side, or point of view, especially when dealing with a competition or dispute."], "unfair": ["Biased in favor of a person, side, or point of view, especially when dealing with a competition or dispute."], "partially": ["In part, to some degree, not totally or wholly.", "In part; in some degree; not wholly."], "specifically": ["For a specific purpose or reason.", "For a specific purpose or reason."], "constant": ["Unchanged through time or space; permanent.", "Not subject or susceptible to change or variation in form or quality or nature."], "constantly": ["At all times.", "Constantly during a certain period, or regularly at stated intervals.", "In a constant manner; occurring continuously; persistently."], "historically": ["In a historic manner; as has been done most often in the past."], "concretely": ["In a concrete manner, physically, definitely."], "appropriately": ["In an appropriate manner."], "perfectly": ["In a perfect manner or degree."], "popularly": ["In a popular manner; so as to be generally favored or accepted by the people."], "necessarily": ["In a necessary manner; by necessity.", "In a manner that is impossible to avoid or prevent."], "substantially": ["To a great extent or degree."], "considerably": ["To a great extent or degree."], "noteworthy": ["Worthy of notice."], "notably": ["In a notable manner.", "[Used to indicate a notable or particular example of a previous mentioned group]."], "lynch": ["To commit an act of violence by a mob upon the body of another person.", "To commit an act of violence by a mob upon the body of another person."], "formally": ["In a formal manner."], "with formality": ["In a formal manner."], "bottleneck": ["A narrow entrance or passageway.", "The narrow portion near the opening of a bottle."], "bottle opener": ["An opener for removing caps or corks from bottles."], "typical": ["Capturing the overall sense of a thing; representing something by a form, model, or resemblance."], "typically": ["In a typical or common manner."], "deeply": ["At depth, in a deep way."], "profoundly": ["At depth, in a deep way."], "simultaneous": ["Occurring or transpiring at the same time."], "simultaneously": ["Occurring at the same time.", "At the same time."], "occasional": ["Limited to certain occasions; not very often."], "occasionally": ["From time to time."], "slowly": ["At a slow pace."], "jointly": ["Together, acting as one."], "independently": ["In an independent manner."], "surely": ["With certainty."], "for sure": ["With certainty."], "for certain": ["With certainty."], "sure enough": ["With certainty."], "sure as shooting": ["With certainty."], "elongated": ["Extensive in length.", "Having a shape with one dimension of much greater length than the others."], "Brighton": ["A city located on the south coast of England, and together with its immediate neighbour Hove forms the city of Brighton and Hove."], "Belfast": ["The capital of Northern Ireland. It is the largest urban area in Northern Ireland and the province of Ulster and the second-largest city in Ireland."], "Brisbane": ["The state capital of Queensland. Brisbane is the third largest city in Australia and most populous city of Queensland."], "Cartagena": ["A Spanish Mediterranean city and naval station in the southeast of the Iberian Peninsula in the autonomous community of Region of Murcia.", "A large city seaport on the northern coast of Colombia and the capital of the Bol\u00edvar Department."], "gay": ["Characteristic of homosexual appearance or behavior.", "In good spirits."], "GPL": ["A widely used free software license, originally written by Richard Stallman for the GNU project."], "GNU General Public License": ["A widely used free software license, originally written by Richard Stallman for the GNU project."], "Castell\u00f3n": ["A province in the northern part of the Valencian Community, Spain. It is bordered by the provinces of Valencia, Teruel, Tarragona, and the Mediterranean Sea."], "healing": ["The act or process of regaining health."], "bottomless": ["Having no bottom."], "bottommost": ["Farthest down."], "Germania": ["The Latin exonym for a geographical area of land on the east bank of the Rhine (inner Germania), which included regions of Sarmatia, as well as an area under Roman control on the west bank of the Rhine. (source: Wikipedia)"], "botulism": ["A rare, but serious paralytic illness caused by a toxin, botulin, that is produced by the bacteria Clostridium botulinum."], "gust": ["Sudden, violent and short blast of wind."], "squall": ["Sudden, violent and short blast of wind."], "flurry": ["Sudden short airflow."], "bounty": ["The trait of being willing to give.", "Generosity in giving."], "Faith": ["Female first name."], "Faithe": ["Female first name."], "duplicate key": ["A key which is a copy of another key (often made without permission)."], "bowsprit": ["A spar, extending forward from the stem of a sailing vessel, to which the stays of the foremast are fastened."], "brainchild": ["A product of one's creative work or thought."], "brake fluid": ["The fluid used in a brake system."], "brandy": ["An alcoholic liquor distilled from wine or fermented fruit juice.", "Alcoholic beverage that is produced by distillation as opposed to ethanol fermentation."], "Darling's disease": ["A lung disease caused by the fungus Histoplasma capsulatum with symptoms similar to those of influenza."], "South Central Banda": ["A language of the Central African Republic and the Democratic Republic of the Congo."], "Langam": ["A language of Papua New Guinea."], "Lorediakarkar": ["A language of Vanuatu."], "Lamnso'": ["A language of Cameroon and Nigeria"], "Lintang": ["A language of Indonesia (Sumatra)."], "Longuda": ["A language of Nigeria."], "Lonzo": ["A language of Democratic Republic of the Congo."], "Loloda": ["A language of Indonesia (Maluku)."], "Lobi": ["A Gur language spoken in Burkina Faso and the Ivory Coast."], "Inonhan": ["A language of Philippines."], "Berawan": ["A language of Malaysia (Sarawak)."], "Coastal Saluan": ["A language of Indonesia (Sulawesi)."], "Loma": ["A language of the C\u00f4te d'Ivoire.", "A language of Liberia."], "breakfast room": ["A room where breakfast is eaten."], "have breakfast": ["To eat breakfast."], "Deauville": ["French seaside resort in the Calvados d\u00e9partement in the Basse-Normandie region."], "erectile dysfunction": ["A sexual dysfunction characterized by the inability to develop or maintain an erection of the penis."], "ED": ["A sexual dysfunction characterized by the inability to develop or maintain an erection of the penis.", "A medical treatment facility specialized in treating patients that need to be taken care of quickly without prior appointment."], "male impotence": ["A sexual dysfunction characterized by the inability to develop or maintain an erection of the penis."], "impotence": ["A sexual dysfunction characterized by the inability to develop or maintain an erection of the penis."], "impotent": ["Unable to develop or maintain an erection of the penis."], "breadwinner": ["The member of a household who earns all or most of the income."], "break-in": ["The act of entering with the intent to steal."], "break in": ["The act of entering with the intent to steal.", "To make obedient, docile and tractable; to train to follow orders of the owner. \u2003"], "breakneck": ["Dangerously fast."], "breakout": ["An escape from any restrictive or confining situation."], "breakwater": ["A construction in or around a harbour designed to break the force of the sea and to provide shelter for vessels lying inside."], "bream": ["A European fresh-water cyprinoid fish of the genus Abramis."], "breastbone": ["The central narrow bone in the front of the chest."], "wooden": ["Made or consisting of wood."], "breastplate": ["Armor plate that protects the chest.", "A armor plate that protects the chest; the front part of a cuirass."], "breastpocket": ["A pocket inside of a man's coat."], "breast pocket": ["A pocket inside of a man's coat."], "breaststroke": ["A swimming style swum on the breast."], "crisp up": ["To render crispy again using heat (for example pastry)."], "Christopher": ["Male first name."], "Christian name": ["Name that is given to a person after birth and usually precedes the family name."], "forename": ["Name that is given to a person after birth and usually precedes the family name."], "micturate": ["To allow urine to flow from the bladder out of the body."], "piss": ["To allow urine to flow from the bladder out of the body.", "Liquid excrement consisting of water, salts and urea, which is made in the kidneys, stored in the bladder, then released through the urethra."], "tinkle": ["To allow urine to flow from the bladder out of the body."], "wee": ["To allow urine to flow from the bladder out of the body.", "(used informally) very small."], "deodorant": ["Substance applied to the body, most frequently the armpits, to reduce the body odor caused by the bacterial breakdown of perspiration."], "breathtaking": ["Thrillingly beautiful.", "Very surprising or shocking, causing astonishment."], "breechcloth": ["A cloth worn to cover the loins."], "loincloth": ["A thong underwear or swimsuit, a narrow piece of cloth, leather, or plastic, that covers or holds the genitals, passes between the buttocks, and is attached to a band around the hips.", "A cloth worn to cover the loins."], "breeze": ["A slight wind."], "brewery": ["A place where beer is brewed by fermentation."], "bribery": ["Practice of giving or accepting a bribe."], "xanthelasma": ["A sharply demarcated yellowish collection of cholesterol underneath the skin, usually on or around the eyelids."], "Mornay sauce": ["B\u00e9chamel sauce with shredded or grated cheese added."], "bridesmaid": ["A young woman who attends the bride at a wedding ceremony."], "bridle": ["A piece of equipment used to control a horse."], "bridle path": ["A trail for horses."], "bridle road": ["A trail for horses."], "briefcase": ["A flat, rectangular case with a handle, often of leather, used for carrying papers or books."], "brigade": ["Army unit smaller than a division."], "brilliance": ["Extreme brightness."], "brim": ["The top edge of anything hollow."], "brimful": ["Full to the brim."], "brimfull": ["Full to the brim."], "inability": ["The lack of ability to do something."], "brink": ["The upper edge of a steep."], "brisk": ["For a color or a light: particularly strong and attracting gaze."], "Briton": ["A native or inhabitant of Great Britain."], "broach": ["A spit for roasting meat."], "broad-minded": ["Free from prejudice or bigotry."], "brocade": ["Thick heavy expensive material, usually silk, with a raised pattern."], "broke": ["Without money."], "penniless": ["Without money."], "bronchitis": ["An inflammation of the bronchi."], "brunch": ["A meal that serves as both breakfast and lunch."], "brusqueness": ["An abrupt discourteous manner."], "brutal": ["Very cruel or severe."], "brutality": ["A brutal act or practice."], "budgetary": ["Of or relating to a budget."], "Makasar": ["A Malayo-Polynesian language spoken in the southern tip of South Sulawesi island in Indonesia.", "A city in South Sulawesi, Indonesia."], "buffer": ["A device for lessening the force with which a moving object strikes something.", "A region of memory used to temporarily hold data while it is being moved from one place to another."], "complaisant": ["Eager to please."], "bugler": ["Someone who plays a bugle."], "bulldozer": ["A large tractor for clearing obstacles and levelling ground."], "bulletproof": ["Impenetrable by bullets."], "bumper": ["A metal guard, for protecting the front or rear of an automobile."], "bunch": ["A group of things fastened or growing together.", "A number of things taken collectively; any collection in its entirety."], "bundle": ["Several objects bound together."], "bunk": ["A berth in a ship's cabin."], "bunker": ["An underground shelter against bombs."], "burble": ["Something to be carried."], "bureaucratic": ["Of or relating to a bureaucrat or bureaucracy."], "buttermilk": ["The sour liquid remaining after butter has been separated from cream."], "bullfight": ["A Spanish or Portuguese or Latin American spectacle; a matador baits and kills a bull in an arena before many spectators."], "patty": ["A disc-shaped serving of ground meat or meat substitutes."], "burger": ["A hot sandwich typically consisting of a patty of cooked ground beef placed inside a bun along with various vegetables and condiments."], "gas stove": ["A kitchen stove which uses natural gas as a fuel source."], "kitchen stove": ["A kitchen appliance used for cooking food."], "cookstove": ["A kitchen appliance used for cooking food."], "bullfighter": ["A person who participates in a bullfight."], "bullfinch": ["Pyrrhula pyrrhula, is a small passerine bird in the finch family Fringillidae."], "bullock": ["A castrated bull."], "bullring": ["An arena for a bullfight."], "bungle": ["To work or act ineptly or inefficiently."], "Westphalien": ["A language of Germany."], "burglar": ["A thief who enters a building with intent to steal."], "burqa": ["A loose, usually black or light blue robe that is worn by Muslim women, and that covers the body from head to toe."], "busman": ["A person who drives a bus."], "butane": ["A colourless, flammable gas, hydrocarbon with four carbon atoms."], "propane": ["A colourless, flammable gaseous hydrocarbon with three carbon atoms"], "Lou": ["A language of Papua New Guinea."], "cab": ["A vehicle that may be hired for single journeys by members of the public and driven by a taxi driver."], "cabaret": ["A nightclub providing short programs of live entertainment."], "Loko": ["A language of Sierra Leone.", "An Upper Cross River language of Nigeria."], "Mongo-Nkundu": ["A Bantu language spoken by several of the Mongo peoples in central Democratic Republic of the Congo, mostly south of the Congo River."], "Malawi Lomwe": ["A language of Malawi."], "Lombo": ["A language of Democratic Republic of the Congo."], "cackhanded": ["Lacking grace or skill in manner or movement or performance."], "ethane": ["A colourless, flammable gaseous hydrocarbon with two carbon atoms."], "pentane": ["A colourless, flammable liquid hydrocarbon with five carbon atoms."], "hexane": ["A colourless, flammable liquid hydrocarbon with six carbon atoms."], "heptane": ["A colourless, flammable liquid hydrocarbon with seven carbon atoms."], "octane": ["A colourless, flammable liquid hydrocarbon with eight carbon atoms."], "nonane": ["A colourless, liquid hydrocarbon with nine carbon atoms."], "decane": ["A colourless, liquid hydrocarbon with ten carbon atoms."], "procrustean": ["Marked by arbitrary often ruthless disregard of individual differences or special circumstances"], "cable railway": ["A railway on which the cars are pulled by a moving cable."], "cactaceous": ["Belonging to the Cactaceae, the cactus family of plants."], "caducity": ["The frailty of old age."], "senility": ["The frailty of old age."], "baffled": ["Perplexed by many conflicting situations or statements; filled with bewilderment."], "befuddled": ["Perplexed by many conflicting situations or statements; filled with bewilderment."], "bewildered": ["Perplexed by many conflicting situations or statements; filled with bewilderment."], "confounded": ["Perplexed by many conflicting situations or statements; filled with bewilderment."], "confused": ["Perplexed by many conflicting situations or statements; filled with bewilderment.", "Having lost your bearings; confused as to time or place or personal identity."], "at sea": ["Perplexed by many conflicting situations or statements; filled with bewilderment."], "mixed-up": ["Perplexed by many conflicting situations or statements; filled with bewilderment."], "lost": ["Perplexed by many conflicting situations or statements; filled with bewilderment.", "Past participle of the verb to lose.", "No longer in your possession or control; unable to be found or recovered.", "Spiritually or physically doomed or destroyed.", "Not gained or won.", "Incapable of being recovered or regained.", "Having lost your bearings; confused as to time or place or personal identity.", "Deeply absorbed in thought.", "Not caught with the senses or the mind.", "People who are destined to die soon.", "Unable to function without help."], "mazed": ["Perplexed by many conflicting situations or statements; filled with bewilderment."], "ghrelin": ["A hormone produced in the stomach lining and the pancreas that stimulates appetite."], "befall": ["(For an event) Have a real existence."], "bechance": ["(For an event) Have a real existence."], "low-calorie": ["Containing few calories."], "high-calorie": ["Containing a lot of calories."], "garlic powder": ["Dried ground garlic."], "aioli": ["A sauce made of garlic and olive oil."], "cafeteria": ["A business that sells various non-alcoholic drinks, and usually snacks and simple meals (such as breakfasts and lunches) with facilities to consume them."], "caiman": ["Any of several tropical American crocodilians of the genus Caiman."], "cayman": ["Any of several tropical American crocodilians of the genus Caiman."], "calciferous": ["Of, forming, or containing calcium."], "calculable": ["Capable of being calculated."], "calculate": ["To keep an account of.", "To make a mathematical calculation or computation."], "guacamole": ["Avocado-based dip in Mexican cuisine."], "vegan": ["Someone who does not use or consume animal products of any kind.", "Pertaining to vegans or veganism."], "violets": ["A genus of flowering plants in the family Violaceae."], "highness": ["Title used to address a royal person."], "cherry picking": ["Selecting only the best from a group or other range of choices."], "calender": ["A table showing the months and days of the year."], "calligrapher": ["Someone skilled in penmanship."], "callus": ["A hardened or thickened part of the skin."], "rice vinegar": ["A vinegar made from fermented rice or rice wine."], "cenotaph": ["Tomb or monument for a person or group of persons whose remains are elsewhere."], "mass grave": ["A grave containing multiple, often unidentified human corpses."], "binocular": ["Relating to both eyes."], "cambric": ["A finely woven white linen."], "camp bed": ["A small bed that folds up for storage or transport."], "Luwian": ["An extinct language of the Anatolian branch of the Indo-European language family which was spoken in the 2nd millennium BC."], "Luvian": ["An extinct language of the Anatolian branch of the Indo-European language family which was spoken in the 2nd millennium BC."], "Hieroglyphic Luwian": ["A variant of the Luwian language written in a hieroglyphic script known as Anatolian hieroglyphs."], "Cuneiform Luwian": ["A variant of the Luwian language written in the cuneiform script used in Hittite."], "camphor": ["A resin obtained from the camphor tree."], "mantou": ["Steamed bun made of flour, water and yeast originating from Chinese cuisine.", "A small dumpling filled with seasoned ground meat popular in Turkish cuisine."], "Chinese steamed bun": ["Steamed bun made of flour, water and yeast originating from Chinese cuisine."], "milk farmer": ["Farmer who specializes in the production of milk; the owner of a diary."], "dairy farmer": ["Farmer who specializes in the production of milk; the owner of a diary."], "Low Saxon": ["A language of Germany"], "camshaft": ["An engine shaft fitted with a cam or cams."], "candid": ["Free from prejudice; impartial.", "Characterized by directness in manner or speech; without subtlety or evasion.", "Informal or natural; especially caught off guard or unprepared.", "Straightforward and direct without reserve or secretiveness.", "A spontaneous or unposed photograph."], "candidacy": ["The state, or act of being a candidate."], "candlewick": ["A string that holds the flame of a candle."], "cane sugar": ["Sugar obtained from sugar cane."], "cannery": ["A factory where foodstuffs, as meat, fish, vegetables or fruit are canned."], "cannibalism": ["Eating other individuals of one's own species.", "The eating of human flesh."], "cannon ball": ["A round projectile fired from a cannon."], "canoe": ["A light narrow boat driven by a paddle."], "can opener": ["A device for opening cans."], "canteen": ["A place where meals are sold in a factory or school."], "whisper burner": ["An additional valve in the burner of hot air balloons conceived to make the burner less noisy, in order not to scare the cows or other grazing animals."], "cow burner": ["An additional valve in the burner of hot air balloons conceived to make the burner less noisy, in order not to scare the cows or other grazing animals."], "blazer": ["A sports jacket."], "immaculate": ["Without fault or error."], "impeccable": ["Without fault or error."], "capon": ["Castrated male chicken."], "caprice": ["A sudden, unpredictable change as of one's mind."], "quench one's thirst": ["To drink enough to satisfy thirst."], "quench thirst": ["To satisfy thirst.", "To drink enough to satisfy thirst."], "capriole": ["A playful leap."], "capsule": ["A gelatinous case enclosing a dose of medicine."], "captivity": ["The state or period of being held, imprisoned."], "carafe": ["A bottle with a stopper; for serving wine or water."], "caramel": ["An edible, sweet-tasting confection containing sugar."], "carat": ["A measure of weight for precious stones; 200 milligrams.", "The unit of measurement for the proportion of gold in an alloy."], "carbine": ["A lightweight rifle with a short barrel."], "carburettor": ["A device that blends air and fuel for an internal combustion engine."], "carcinogenic": ["A cancer-causing substance or agent.", "Causing cancer."], "cardboard": ["A stiff kind of paper often made up of several layers."], "carotid": ["Either of the two major arteries, one on each side of the neck, that carry blood to the head."], "oval track": ["A dedicated motorsport circuit, primarily in the USA, which differs from a road course in that it only has turns in one direction, which is almost always left. (source: Wikipedia)"], "Varadero": ["Resort town in the province of Matanzas, Cuba, and one of the largest resort areas in the Caribbean."], "carp": ["A tall freshwater fish from the species Cyprinus carpio with a high back, original from Asia.", "Any of various freshwater fish of the family Cyprinidae."], "triple sec": ["A strong, clear liqueur with an orange flavor similar to Cura\u00e7ao. It is used in making Margaritas."], "cashier": ["An employee in a shop.", "A person who receives and pays out money in a bank, a shop, etc.", "A woman who receives and pays out money in a bank, a shop, etc."], "Lopa": ["A language of Nigeria."], "Lobala": ["A language of Democratic Republic of the Congo."], "T\u00e9\u00e9n": ["A Niger\u2013Congo language of Ivory Coast and Burkina Faso."], "Loniu": ["An Austronesian language spoken on Los Negros Island, Papua New Guinea."], "Lopi": ["A language of Myanmar."], "Tampias Lobu": ["A language of Malaysia (Sabah)."], "Loun": ["A language of Indonesia (Maluku)."], "Lowa": ["A language of Nepal."], "Sylt": ["German island in the North Sea and biggest of the North Frisian Islands."], "cashmere": ["The fine, downy wool of the hair of the Kashmir goat."], "cassock": ["Long robe worn by clergymen."], "cashmere wool": ["The fine, downy wool of the hair of the Kashmir goat."], "cashmere shawl": ["Scarf made of cashmere wool."], "cashmere scarf": ["Scarf made of cashmere wool."], "Kashmir": ["A region in the northwest of the Indian subcontinent."], "simplified Chinese": ["The Mandarin language written in the simplified script."], "traditional Chinese": ["The Mandarin language written in the traditional script."], "Kichai": ["An extinct Caddoan language which was spoken in Oklahoma and became extinct in the 1930s."], "Pamlico": ["An extinct Algonquian language formerly spoken in North Carolina, United States."], "Pannonia": ["Ancient province of the Roman Empire bounded north and east by the Danube and encompassing parts of present-day Hungary, Austria, Serbia, Slowenia and Croatia."], "Roman Empire": ["The territory ruled by the city of Rome between the 6th century BC and the 5th or 6th century AD.", "The government at Rome characterized by an autocratic form of government and its subject territory in Europe and the Mediterranean, from 27 BC until 476 AD (Western Roman Empire) and 1453 AD (Eastern Roman Empire with capital in Constantinople)."], "Roman Republic": ["The government at Rome characterized by a republican form of government and its subject territories after the overthrow of the monarchy and before the establishment of the Empire, lasting from 509 BC to 27 BC."], "Kr\u0161ko": ["Town in the south-east part of Slovenia."], "castaway": ["A shipwrecked person."], "caste": ["A social class especially in India."], "Lelepa": ["A language of Vanuatu."], "Lepki": ["A language of Indonesia (Papua)."], "Lipo": ["A Lolo-Burmese language spoken by the Lisu people in the mountainous regions of Burma, Southwest China, Thailand, and the Indian state of Arunachal Pradesh."], "Lara'": ["A language of Malaysia (Sarawak) and Indonesia (Kalimantan)."], "Northern Luri": ["A language of Iran."], "Laurentian": ["An extinct language of Canada."], "Laragia": ["An extinct Australian language isolate formerly spoken near the city of Darwin in northern Australia."], "caster oil": ["A colorless or pale yellowish oil extracted from the seeds of the castor-oil plant, used pharmaceutically as a laxative and skin softener and industrially as a lubricant."], "casualty": ["A person who is wounded or killed in a battle, accident etc."], "catacomb": ["An underground cemetery consisting of chambers or tunnels with recesses for graves."], "kaftan": ["Traditional long garment worn in the countries east of the Mediterranean Sea."], "catafalque": ["A decorated bier on which a coffin rests in state during a funeral."], "cataract": ["An abnormality of the eye, characterized by opacity of the lens.", "A large and powerful waterfall."], "catarrh": ["Inflammation of mucous membranes, causing a discharge of thick fluid."], "catastrophic": ["Of, relating to, or involving a catastrophe."], "catechism": ["An elementary book containing a summary of the principles of the Christian religion."], "categorical": ["Without exceptions or conditions.", "Not modified or restricted by reservations."], "caterpillar": ["The wormlike larva of a butterfly or moth."], "catfish": ["Any of the numerous fishes of the order or suborder Siluroidei, characterized by barbels around the mouth and the absence of scales."], "Catholicism": ["The faith, system, and practice of the Catholic Church."], "iced tea": ["Drink made of cooled tea, often served with ice cubes, lemon juice and sugar."], "burek": ["Turkish pie made of yufka dough filled with minced meat, cheese, spinach or other vegetables."], "boereg": ["Turkish pie made of yufka dough filled with minced meat, cheese, spinach or other vegetables."], "b\u00f6rek": ["Turkish pie made of yufka dough filled with minced meat, cheese, spinach or other vegetables."], "Khmer numeral": ["The numerals used in the Khmer language."], "causality": ["The relation of cause and effect."], "caption": ["A piece of text appearing on screen as part of a film or broadcast."], "causation": ["The action of causing or producing."], "caution": ["Alertness and prudence in a hazardous situation."], "racist": ["An advocate of racism.", "Of, relating to, or advocating racism."], "caveman": ["A prehistoric or primitive human living in a cave.", "Prehistoric, primitive human living in caves."], "cavity wall": ["A wall built with an enclosed inner space to prevent penetration by water."], "cavy": ["Several species of mammal in the family Caviidae, a family of rodents native to South America."], "German South-West Africa": ["From 1884 until 1915 a German colony on the territory of present-day Namibia."], "German East Africa": ["From 1885 until 1918 a German colony, including present-day Burundi, Rwanda and Tanzania (without Zanibar)."], "catmab": ["An antibody with catalytic activity."], "celebrated": ["Widely known and esteemed."], "cellar": ["The lowermost portion of a building, partly or wholly below ground level, often used for storage."], "tsar": ["Title of the monarch of Russia, at times also of Bulgaria and Serbia."], "czar": ["Title of the monarch of Russia, at times also of Bulgaria and Serbia."], "tzar": ["Title of the monarch of Russia, at times also of Bulgaria and Serbia."], "tsarina": ["Title of a female monarch of Russia, Serbia or Bulgaria or the wife of the monarch."], "czarina": ["Title of a female monarch of Russia, Serbia or Bulgaria or the wife of the monarch."], "tzarina": ["Title of a female monarch of Russia, Serbia or Bulgaria or the wife of the monarch."], "tsarevich": ["Title of the sons of a Russian tsar."], "tsarevitch": ["Title of the sons of a Russian tsar."], "czarevitch": ["Title of the sons of a Russian tsar."], "tzarevitch": ["Title of the sons of a Russian tsar."], "tsesarevich": ["Title of the crown prince of Russia."], "fiend": ["Evil spirit or person that is wicked or cruel in their actions."], "cellophane": ["A thin, flexible, transparent cellulose material made from wood pulp and used as a moistureproof wrapping."], "cellulite": ["Lumpy fat deposits, esp. in the thighs and buttocks."], "Celt": ["A member of an Indo-European people now represented chiefly by the Irish, Gaels, Welsh, and Bretons."], "Kelt": ["A member of an Indo-European people now represented chiefly by the Irish, Gaels, Welsh, and Bretons."], "censer": ["A container, usually covered, in which incense is burned, esp. during religious services."], "thurible": ["A container, usually covered, in which incense is burned, esp. during religious services."], "centenarian": ["A person who is a hundred or more years old."], "meat grinder": ["A culinary tool for grinding meat."], "meat mincer": ["A culinary tool for grinding meat."], "measuring cup": ["A kitchen utensil used to measure the volume of liquid or powder-form cooking ingredients such as water, milk, juice, flour, and sugar"], "deep fryer": ["Electric kitchen appliance used to deep-fry food in hot oil or fat."], "pepper mill": ["A mechanical or electromechanical device used to grind peppercorn."], "salad spinner": ["Kitchen ustensil which removes excessive water from washed lettuce leafs via rotation."], "cheese cover": ["Cover made of glass used to protect cheese and other food from smell or bugs."], "garlic press": ["A kitchen utensil designed to crush garlic cloves efficiently by forcing them through a grid of small holes, usually with some type of piston."], "cheese slicer": ["Kitchen utensil used to cut thin slices from a piece of cheese."], "egg slicer": ["Food preparation utensil used to slice peeled, hard-boiled eggs quickly and evenly."], "potato masher": ["Food preparation utensil used to crush cooked potatoes or other vegetables."], "bean masher": ["Food preparation utensil used to crush cooked potatoes or other vegetables."], "waffle iron": ["Cooking appliance used to make waffles which consists of two heatable metal plates between which the batter is baked."], "rice cooker": ["An electric device used for cooking rice."], "rice steamer": ["An electric device used for cooking rice."], "breast augmentation": ["Surgical procedure where implants are inserted into a woman's breast in order to enlarge the size."], "breast enlargement": ["Surgical procedure where implants are inserted into a woman's breast in order to enlarge the size."], "mammoplasty enlargement": ["Surgical procedure where implants are inserted into a woman's breast in order to enlarge the size."], "boob job": ["Surgical procedure where implants are inserted into a woman's breast in order to enlarge the size."], "stalking": ["The crime of following or harassing another person, causing him or her to fear death or injury"], "centipede": ["Any of various flattened, wormlike arthropods of the class Chilopoda, whose bodies are divided into many segments, each with one pair of legs."], "hollow of the knee": ["Shallow depression at the back of the knee-joint."], "durian": ["The fruit of various trees of the genus Durio found throughout Southeast Asia."], "SS": ["Paramilitary organisation of the German Nazi Party which was instrumental in committing war crimes and genocide during the Second World War."], "Yalta": ["Health and holiday resort with subtropical climate on the southern coast of the Crimean peninsula in the Black Sea in the Ukraine."], "generosity": ["The trait of being willing to give."], "centralize": ["To make central; to bring under a single, central authority."], "centripetal": ["Directed toward the center."], "centurion": ["In the ancient Roman army, an officer who had the command of a hundred men."], "ceremony": ["A formal event performed on a special occasion."], "chaff": ["The dry bracts enclosing mature grains of wheat and some other cereal grasses, removed during threshing."], "engine break-in": ["A process that allows an engine to wear down the high spots of its internal irregularities, providing a smoother surface before the engine experiences the rigors of normal use."], "chainsaw": ["A power saw with cutting teeth linked in an endless chain."], "chain-smoker": ["A heavy smoker who lights one cigarette from the preceding one."], "chalice": ["A wine-cup, especially one used in religious services."], "challenger": ["A person or thing that challenges."], "chambermaid": ["A maid who cleans and cares for bedrooms, as in a hotel."], "chamber music": ["Music for a small group of players, suitable for a room rather than a large hall."], "chamber of horrors": ["A place for the exhibition of gruesome or horrible objects."], "thoracic diaphragm": ["A sheet of muscle extending across the bottom of the ribcage, it separates the diafragma from the abdominal cavity and performs an important function in respiration."], "chamomile": ["Any of several distinct species in the sunflower family (Asteraceae)."], "chandelier": ["A decorative, sometimes ornate, light fixture suspended from a ceiling, usually having branched supports for a number of lights."], "changeability": ["The quality of being changeable."], "trampoline": ["A sports device used to jump and perform acrobatic figures; it consists of a fabric stretched over a steel frame and fixed with coiled springs."], "minced meat": ["Meat finely chopped by a meat grinder."], "mince meat": ["Meat finely chopped by a meat grinder."], "ground beef": ["Beef finely chopped by a meat grinder."], "beef mince": ["Beef finely chopped by a meat grinder."], "minced pork": ["Pork finely chopped by a meat grinder."], "ground pork": ["Pork finely chopped by a meat grinder."], "augmentation mammoplasty": ["Surgical procedure where implants are inserted into a woman's breast in order to enlarge the size."], "changeless": ["Not subject or susceptible to change or variation in form or quality or nature."], "steadfast": ["Not subject or susceptible to change or variation in form or quality or nature.", "Marked by firm determination or resolution; not shakable."], "sunstroke": ["A serious illness caused by being in very hot sunshine for too long.", "A body temperature greater than 40.6 \u00b0C due to environmental heat exposure with lack of thermoregulation."], "changeover": ["A conversion to a different purpose or from one system to another, as in equipment or production techniques."], "vitiligo": ["Usually progressive, chronic pigmentary anomaly of the skin manifested by depigmented white patches that may be surrounded by a hyperpigmented border."], "crus": ["The part of the leg between knee and ankle."], "femoral neck fracture": ["Fracture of the neck of the femur (thigh bone)."], "choppy": ["Having many small, rough waves"], "chant": ["A short, simple melody."], "chaos": ["A state of utter confusion or disorder."], "chaotic": ["Completely confused or disordered."], "rollmops": ["Pickled herring fillet rolled around a piece of pickled cucumber or an onion."], "shankbone": ["The larger and stronger of the two bones below the knee of the leg of a biped or hind limb of quadruped."], "shinbone": ["The larger and stronger of the two bones below the knee of the leg of a biped or hind limb of quadruped."], "fibula": ["The thinner of the two bones of the lower leg, located on the lateral side of the tibia."], "calf bone": ["The thinner of the two bones of the lower leg, located on the lateral side of the tibia."], "home fries": ["Potato dish consisting of par-cooked, peeled and sliced potatoes fried in a pan."], "cottage fries": ["Potato dish consisting of par-cooked, peeled and sliced potatoes fried in a pan."], "BLT sandwich": ["A variety of sandwich containing bacon strips, lettuce leaves and sliced tomatoes between slices of bread. It is named after its main ingredients."], "BLT": ["A variety of sandwich containing bacon strips, lettuce leaves and sliced tomatoes between slices of bread. It is named after its main ingredients."], "dermatosis": ["An impairment of health or a condition of abnormal functioning of the skin."], "skin disease": ["An impairment of health or a condition of abnormal functioning of the skin."], "dressing shaker": ["Small bottle with a lid made from glass or plastic which is used to mix salad dressing."], "salad dressing shaker": ["Small bottle with a lid made from glass or plastic which is used to mix salad dressing."], "honey mustard": ["A blend of Dijon mustard and honey."], "charade": ["A piece of ridiculous pretence which is so obvious that it does not deceive anyone."], "charger": ["An apparatus that charges storage batteries."], "charisma": ["Personal magnetism or charm."], "charitable": ["Relating to or characterized by charity."], "charlatan": ["A person fraudulently claiming knowledge and skills not possessed.", "Someone who practices medicine without proper qualifications and/or promotes ineffective medical treatments."], "charmer": ["One who charms, or has power to charm."], "charnel": ["A place for the bones thrown up when digging new graves in old burial grounds."], "charnel house": ["A place for the bones thrown up when digging new graves in old burial grounds."], "charter": ["A formal written record of transactions, proceedings, etc., as of a society, committee, or legislative body.", "To hold under a lease or rental agreement of goods and services."], "chartreuse": ["A green or yellow liqueur made from herbs and flowers."], "chaste": ["Pure in thought and act."], "chasuble": ["A long sleeveless vestment worn by a priest when celebrating Mass"], "chat": ["To talk in a friendly and informal way.", "An instantaneous exchange of text messages through a computer network.", "To exchange text messages through a computer network in real-time."], "talk show": ["A radio or television show in which a host chats with celebrity guests."], "chat show": ["A radio or television show in which a host chats with celebrity guests."], "chatter": ["Purposeless or foolish talk."], "chatterbox": ["An extremely talkative person."], "insolation": ["A measure of solar radiation energy received on a given surface area in a given time."], "mett": ["Minced pork seasoned with salt and pepper which is consumed raw."], "cheapskate": ["A person who is stingy and miserly."], "lama": ["A master of Tibetan Buddhism."], "Lama": ["A language of Togo, Benin and Ghana.", "A language of Myanmar."], "creamery": ["A place where milk is processed and milk products like butter, cheese etc. are produced.", "A place where milk and milk products are sold."], "dairy": ["A place where milk is processed and milk products like butter, cheese etc. are produced."], "cheat": ["To cause someone to believe an untruth; to practice trickery or fraud.", "A person who acts dishonestly.", "A dishonest act.", "To act dishonestly.", "To be sexually unfaithful to one's spouse or lover.", "To be not totally honest when playing a game."], "impostor": ["A person who acts dishonestly."], "swindler": ["A person who acts dishonestly.", "Person who takes part in a deal to make a profit more or less illegally."], "circulation": ["The flow or motion of a fluid."], "pasta salad": ["A salad made of cooked, cold pasta with legumes, meat or seafood, served with vinaigrette or mayonnaise."], "ranch dressing": ["A condiment made of buttermilk or sour cream, mayonnaise, minced green onion, garlic powder, and other seasonings mixed into a sauce."], "ranch": ["A condiment made of buttermilk or sour cream, mayonnaise, minced green onion, garlic powder, and other seasonings mixed into a sauce."], "Abyssinia": ["Historical name of Ethiopia."], "convection": ["Transport of heat and moisture by the movement of a fluid."], "cumulonimbus": ["A cloud type that is dense and vertically developed and is associated with rain (particularly of a convective nature)."], "composite": ["Any material that consists of two or more components, typically one or more of high strength and one an adhesive binder."], "scallion": ["Any onion of the genus Allium that lacks a fully-developed bulb."], "spring onion": ["Any onion of the genus Allium that lacks a fully-developed bulb."], "green onion": ["Any onion of the genus Allium that lacks a fully-developed bulb."], "salad onion": ["Any onion of the genus Allium that lacks a fully-developed bulb."], "checkerboard": ["A board marked off into 100 squares of two alternating colors, arranged in ten vertical and ten horizontal rows, on which checkers is played."], "checklist": ["A list of items required or things to be done or considered."], "checkmate": ["A move that constitutes an inescapable and indefensible attack on a chess opponent's king."], "checkpoint": ["A place along a road or a border, where travelers are stopped for inspection."], "brick house": ["A house built with brick."], "waterlily": ["Any of various members of the Nymphaeaceae family that are tuberous plants, rooted in soil with leaves and flowers floating on the water surface."], "European white waterlily": ["Plant species (Nymphaea alba) from the water lily family (Nymphaeaceae) with white flowers, which grows in standing or slowly flowing waters in Europe, North Africa and the Middle East."], "white lotus": ["Plant species (Nymphaea alba) from the water lily family (Nymphaeaceae) with white flowers, which grows in standing or slowly flowing waters in Europe, North Africa and the Middle East."], "nenuphar": ["Plant species (Nymphaea alba) from the water lily family (Nymphaeaceae) with white flowers, which grows in standing or slowly flowing waters in Europe, North Africa and the Middle East."], "drowned body": ["Body of a drowned person, especially one which has been lying in the water for a long time and is bloated as a result."], "oxtail soup": ["Soup with oxtail as a main ingredient."], "oxtail": ["The tail of a beef animal."], "cheongsam": ["A body-hugging one-piece Chinese traditional dress for women."], "mandarin gown": ["A body-hugging one-piece Chinese traditional dress for women."], "thermocline": ["The layer of water where temperature rapidly changes from warmer to colder water."], "metalimnion": ["The layer of water where temperature rapidly changes from warmer to colder water."], "active sensor": ["A remote-sensing system that transmits its own radiation to detect an object or area for observation and receives the reflected or transmitted radiation."], "ice age": ["A glacial epoch or time of extensive glacial activity."], "isothermal": ["Of or indicating equality of temperature."], "jet stream": ["Fast flowing, relatively narrow air currents found at the tropopause, located at 10-15 kilometers above the surface of the Earth."], "wavelength": ["The distance between consecutive crests of a wave."], "vector-borne disease": ["A disease in which the pathogenic microorganism is transmitted from an infected individual to another individual by an arthropod or other agent, sometimes with other animals serving as intermediary hosts."], "tropopause": ["The zone of transition between the troposphere and the stratosphere."], "thermosphere": ["The second outermost shell of the atmosphere, between the mesosphere and the exosphere."], "check-up": ["An examination or inspection."], "exosphere": ["The uppermost layer of the atmosphere, its lower boundary is estimated at 500 km to 1000 km above the Earth's surface."], "mesosphere": ["The atmospheric layer above the stratosphere, extending from about 50 to 85 kilometers altitude."], "mesopause": ["The upper boundary of the mesosphere where the temperature of the atmosphere reaches its lowest point."], "photoreceptor": ["A sensor sensitive to light."], "Baloch": ["An Iranian people inhabiting the region of Balochistan in the southeast corner of the Iranian plateau in Southwest Asia, including parts of Iran, Afghanistan, and Pakistan."], "Mount Sipylus": ["A mountain rich in legends and history situated near the city of Manisa in Turkey's Aegean Region."], "cheeky": ["Impudent and audacious."], "advection": ["A transport mechanisms of a substance or a conserved property with a moving fluid."], "albedo": ["The fraction of incident light or radiation reflected by a surface or body, commonly expressed as percentage."], "anthropogenic": ["Of or related to the influence of human beings or their ancestors on natural objects."], "Arctic Circle": ["The parallel of latitude that is approximately 66.5 degrees north of the equator and that circumscribes the northern frigid zone."], "cheep": ["The short weak cry of a young bird.", "To make the shrill sound of a young bird."], "cheerful": ["In good spirits."], "cheery": ["In good spirits."], "colour sample": ["A piece of coloured material, a printed piece of paper or an image that is used to show how a certain colour looks like."], "atmospheric pressure": ["Weight of the earth's atmosphere over a unit area of the earth's surface, measured with a mercury barometer at sea level which corresponds to the pressure required to lift a column of mercury 760 mm."], "attenuation": ["The decrease in the magnitude of current, voltage, or power of a signal in transmission between points."], "azimuth": ["The angular distance of an object around or parallel to the horizon from a predefined zero point."], "bioassay": ["A measurement of the effects of a substance on living organisms."], "biological assay": ["A measurement of the effects of a substance on living organisms."], "biogenic": ["Produced by natural processes."], "boreal": ["Comprising or throughout far northern regions."], "cirrus": ["A type of cloud composed of ice crystals and shaped in the form of hairlike filaments."], "coccolithophore": ["A single-celled marine plant that lives in large numbers throughout the upper layers of the ocean."], "conduction": ["The transfer of heat from one substance to another by direct contact."], "Coriolis force": ["The apparent tendency of a freely moving particle to swing to one side when its motion is referred to a set of axes that is itself rotating in space, such as Earth."], "cumulus": ["Clouds forming in the troposphere which are vertically formed with flat bases and fluffy, rounded tops."], "water war": ["A war waged about the possession of or the access to water ressources."], "postwar": ["Belonging to or pertaining to the period after a war."], "prewar": ["Belonging to or pertaining to the period before a war."], "pre-war": ["Belonging to or pertaining to the period before a war."], "post-war": ["Belonging to or pertaining to the period after a war."], "Amagasaki": ["Industrial city located in the Hy\u014dgo Prefecture on Japan's main island Honshu."], "biopic": ["A film that tells the life story of an actual person."], "biographical motion picture": ["A film that tells the life story of an actual person."], "biographical film": ["A film that tells the life story of an actual person."], "misogamy": ["Hatred of or aversion to marriage."], "miso": ["A traditional Japanese paste produced by fermenting rice, barley and/or soybeans, with salt and the fungus k\u014djikin."], "olive green": ["Having the color of a ripe olive, a dark brownish or yellowish green.", "The color or a ripe olive, a dark brownish or yellowish green."], "olive grove": ["A grove of olive trees."], "olive orchard": ["A grove of olive trees."], "detritus": ["A mass of decomposing organic compounds."], "dew": ["Atmospheric moisture that condenses after a warm day and appears during the night on cool surfaces as small drops."], "diurnal": ["Performed in twenty-four hours, such as the diurnal rotation of the Earth."], "doldrums": ["Region near the equator characterized by low pressure and light shifting winds."], "Intertropical Convergence Zone": ["Region near the equator characterized by low pressure and light shifting winds."], "cheerless": ["Lacking cheer."], "cheeseburger": ["A hamburger cooked with a slice of cheese on top of it."], "cheesecake": ["A cake having a firm custardlike texture, made with cream cheese."], "paranoia": ["A personality disorder in which the individual exhibits extreme suspiciousness of the motives of others."], "paraplegia": ["Paralysis of the lower part of the body, including both legs; usually results from injury to, or disease of, the spinal cord."], "pediatrician": ["A doctor who specializes in the care of infants and children, usually until the age of sixteen."], "pediatrics": ["The branch of medicine that deals with the medical care of infants, children, and adolescents."], "rash": ["An area of reddened, irritated, and inflamed skin."], "perinatal": ["Occurring at or immediately after birth."], "perseveration": ["The repeating of words, motions, or tasks."], "postlingual": ["Occurring after the development of language; usually used to classify hearing losses that begin after a person has learned to speak."], "postnatal": ["Occurring after birth.", "The period beginning immediately after the birth of a child and extending for about six weeks in which the mother recovers from pregnancy and birth."], "postpartum": ["Occurring after birth."], "prelingual": ["Related to a hearing impairment acquired before the development of speech and language."], "prevalence": ["The number of people who have a certain condition at any given time."], "psychomotor": ["Of or pertaining to the function of muscles under the control of the mind."], "agnosia": ["An inability to recognize objects and interpret their meaning; typically resulting from damage to the brain."], "anoxia": ["Deficient amount of oxygen in the tissues of a part of the body or in the bloodstream supplying such a part."], "electrical resonance": ["An effect in which the resistance to the flow of an electrical current becomes very small over a narrow frequency range."], "electromagnetic spectrum": ["The range of wavelengths or frequencies over which electromagnetic radiation extends."], "emissivity": ["The ratio of the radiation emitted by a surface to that emitted by a black body at the same temperature."], "fly-off": ["Discharge of water from the earth's surface to the atmosphere by evaporation from lakes, streams and soil surfaces and by transpiration from plants."], "basic research": ["Research designed to produce new understanding of basic underlying principles and processes."], "pure research": ["Research designed to produce new understanding of basic underlying principles and processes."], "cherub": ["An angel with wings and the plump face and body of a child."], "chemo": ["Treatment using anti-cancer drugs, which kill or prevent the growth and division of cells."], "convalesce": ["To return to health and strength after illness."], "recover": ["To return to health and strength after illness.", "To get back or retrieve something."], "convalescent": ["A person who is recovering from illness."], "flatbread": ["Simple flat and round bread made of grain and water, often without yeast or sourdough."], "dystopia": ["A vision of a society with very bad conditions of life, characterized for example by poverty, discrimination, oppression, violence, totalitarian rule, disease, pollution."], "pearl necklace": ["A necklace made of pearls."], "pearl earring": ["Pearl earring."], "e-Government": ["The public sector's use of information and communication technologies with the aim of improving information and service delivery, encouraging citizen participation in the decision-making process and making government more accountable, transparent and effective. (source: UNESCO)"], "flat bread": ["Simple flat and round bread made of grain and water, often without yeast or sourdough."], "hybridization probe": ["(in genetics) A labelled DNA or RNA sequence used to detect the presence of a complementary sequence by hybridization with a nucleic acid sample.\\n(source:FAO)"], "germline": ["A lineage of cells which, during the development of an organism, are set aside as potential gamete-forming tissues."], "mons pubis": ["The small protuberance consisting of subcutaneous fat which protects the female pubic bone."], "mons veneris": ["The small protuberance consisting of subcutaneous fat which protects the female pubic bone."], "crop failure": ["The failure of crops to produce a marketable surplus."], "cigarette stub": ["The non-smoked stub of a cigarette."], "cigarette butt": ["The non-smoked stub of a cigarette."], "cigar butt": ["The non-smoked rest of a cigar."], "cigar stub": ["The non-smoked rest of a cigar."], "barbed wire": ["Intertwined wires with sharp edges or points arranged at regular intervals along the strand."], "liquid soap": ["Soap in liquid form."], "chervil": ["An herb, Anthriscus cerefolium, of the parsley family, having aromatic leaves used to flavor soups, salads, etc."], "chicory": ["A plant of the species Cichorium intybus whose leaves are used in salads and whose root is roasted, ground and mixed with coffee."], "andrology": ["A scientific or medical discipline concerning the study of male reproductive biology, diseases of the male genital organs, and male infertility."], "childproof": ["Made free of hazard for a child."], "physiatry": ["A branch of medicine dealing with functional restoration of a person affected by physical disability."], "physical medicine and rehabilitation": ["A branch of medicine dealing with functional restoration of a person affected by physical disability."], "geomorphological": ["Of or pertaining to geomorphology.", "Pertaining to geological structure."], "relief": ["The physical shape, configuration or general unevenness of a part of the Earth's surface, considered with reference to variation of height and slope or to irregularities of the land surface; the elevation or difference in elevation, considered collectively, of a land surface.", "Action given to provide assistance.", "A sculptured artwork where a modeled form is raised (or alternatively lowered) from a flattened background without being disconnected from it."], "World Network of Biosphere Reserves": ["A set of biosphere reserves established at the International Conference on Biosphere Reserves in Seville in 1995."], "conjugal": ["Of, or relating to marriage, or the relationship of spouses."], "chill": ["Coldness due to a cold environment.", "To make cold.", "To become less tense, rest, or take one's ease.", "To relax, to lie back."], "coffee mill": ["A mill that grinds coffee beans."], "vernacular architecture": ["Methods of construction which use locally available resources to address local needs."], "chiropodist": ["A specialist in care for the feet."], "pedicure": ["A specialist in care for the feet.", "Cosmetic treatment of the feet and toenails."], "chirpy": ["In good spirits."], "eco-friendly": ["Not or minimally harmful to the environment."], "environmentally friendly": ["Not or minimally harmful to the environment."], "environment-friendly": ["Not or minimally harmful to the environment."], "choreographer": ["A person who creates dance compositions especiallly for ballets."], "scientism": ["A pejorative term for the belief that the methods of natural science should be applied to all areas."], "scientistic": ["Of, or pertaining to scientism."], "succade": ["The candied peel of the citron, fruit of citrus medica."], "subphylum": ["A taxonomic rank intermediate between phylum and superclass."], "megaphone": ["A portable funnel-shaped device that is used to amplify a person\u2019s natural voice in a targeted direction."], "air mass": ["A large body of air having similar horizontal temperature and moisture characteristics."], "continental air mass": ["A dry air mass originating over a large land area."], "maritime air mass": ["Moist air mass originating over the ocean."], "barometric pressure": ["Weight of the earth's atmosphere over a unit area of the earth's surface, measured with a mercury barometer at sea level which corresponds to the pressure required to lift a column of mercury 760 mm."], "air pressure": ["Weight of the earth's atmosphere over a unit area of the earth's surface, measured with a mercury barometer at sea level which corresponds to the pressure required to lift a column of mercury 760 mm."], "time machine": ["A ficticious device that allows time travel to the past or future."], "dirty bomb": ["The use of common explosives to spread radioactive materials over a targeted area."], "malware": ["A program that have been designed with or can be used for malicious intent."], "pescetarianism": ["A semi-vegetarian dietary choice, in which a person only eats vegetables, fruit, and fish or other non-mammalian sea food, but will not eat mammals or birds."], "webinar": ["Online seminar that may contain audio and video."], "phytonutrient": ["Any substance, of plant origin, that provides nutrition."], "soju": ["A distilled beverage native to Korea."], "Europe-wide": ["In all of Europe, spanning all of Europe."], "wonton": ["Stuffed dough wrap found in Chinese cuisine."], "wantan": ["Stuffed dough wrap found in Chinese cuisine."], "wuntun": ["Stuffed dough wrap found in Chinese cuisine."], "Clarke Belt": ["Geostationary orbit; named in honour of Arthur C. Clarke."], "dynamics": ["The branch of physics dealing with the relationship between objects in motion and the forces affecting that motion."], "dynamo": ["A device that generates electric power from the engine's activity."], "geodynamics": ["The branch of geophysics that studies the deformation processes of planetary mantle and crust, and the resulting earthquakes and volcanism."], "geophysical": ["Relating to the study of the physical characteristics and properties of the solid earth, its air and waters, and its relationship to space phenomena."], "geostationary": ["Describing an orbit in which a satellite is always in the same position (appears stationary) with respect to the rotating Earth."], "choreography": ["The art of creating and arranging dances or ballets."], "gigabit": ["Amount of memory equal to 1024 Megabits (1,073,741,824 bits) of information. Abbreviated Gb."], "heat balance": ["An accounting of the distribution of the heat input and output."], "herbaceous": ["Of or pertaining to herbs."], "isobar": ["A line of equal or constant pressure on a graph, plot, or map."], "isotherm": ["A line that connects points on a map that have the same temperature."], "chorus": ["A singing group; a group of people who sing together."], "chronicle": ["A chronological record of events."], "two weeks": ["A period of two weeks."], "respect": ["The way something is manifested or presented.", "An attitude of admiration or esteem.", "To have respect for someone or something; to have regard for something, to observe a custom, practice, rule or right.", "To show respect towards."], "aria": ["A piece for one voice accompanied by instruments (usually an orchestra)."], "operatic aria": ["Piece for one voice which is part of an opera."], "coloratura aria": ["Aria which is ornamented with many coloraturas."], "operatic": ["Of or pertaining to opera.", "Resembling or typical of opera."], "fourteen days": ["A period of two weeks."], "open secret": ["Something which is officially secret and not talked about but is in reality widely known."], "cushion": ["A piece of cloth, or leather filled with a soft material like feathers, rubber foam or similar which is used to sit, lie or lean on."], "chronicler": ["Someone who writes chronicles."], "Andorran": ["Of or relating to Andorra or Andorrans.", "Person of Andorran nationality or descent.", "Woman of Andorran nationality or descent."], "chronological": ["Arranged in the order of time."], "counterfeit money": ["Imitated coins or banknotes which are circulated in order to deceive."], "bogus money": ["Imitated coins or banknotes which are circulated in order to deceive."], "Marburg virus": ["Highly contagious RNA virus which causes the Marburg haemorrhagic fever."], "metadata": ["Structured information that describes, explains, locates, and otherwise makes it easier to retrieve and use a data resource."], "millibar": ["A pressure unit of 1000 dynes/cm-2, often used for reporting atmospheric pressure."], "nautical mile": ["A unit of length which corresponds approximately to one minute of latitude along any meridian. (source: Wikipedia)"], "organic": ["In chemistry: of or relating to any covalently bonded compound containing carbon atoms.", "In biology: relating to or involving an organism or organisms.", "Of or relating to foodstuff grown or raised without synthetic fertilizers or pesticides or hormones."], "photodissociation": ["A chemical reaction in which a chemical compound is broken down by photons."], "photolysis": ["A chemical reaction in which a chemical compound is broken down by photons."], "photodecomposition": ["A chemical reaction in which a chemical compound is broken down by photons."], "meander": ["One curved portion of a sinuous or winding stream channel, consisting of two consecutive loops, one turning clockwise and the other anticlockwise. (source: UNESCO)"], "abrupt wave": ["Translatory wave or rapid increase in depth of water in an open channel caused by a sudden change in conditions of flow. (source: UNESCO)"], "absorption band": ["A range of wavelengths (or, equivalently, frequencies) in the electromagnetic spectrum which are able to excite a particular transition in a substance."], "acidity of water": ["The quantitative capacity of aqueous media to neutralize strong bases."], "adhesive water": ["Water retained by soil constituents as a result of the molecular attraction between the water and the soil."], "humidity": ["The amount of water vapor in the air."], "air humidity": ["The amount of water vapor in the air."], "alluvial": ["Of or relating to alluvium.", "Unconsolidated materials of recent time."], "anoxic": ["Suffering from a reduced supply of oxygen; lacking oxygen."], "IPA": ["An internationally recognized set of symbols for phonetic transcription."], "area of influence": ["The area within the cone of depression of a discharging well or the cone of impression of a recharging well."], "artesian aquifer": ["A confined aquifer containing groundwater that will flow upwards through a well without the need for pumping. (source: Wikipedia)"], "adipocyte": ["One of the cells that primarily compose adipose tissue, specialized in storing energy as fat."], "chrysalis": ["The form taken by some insects at an early stage in their development."], "Gujarati numeral": ["The symbolic representation of numbers using the characters \u0ae6\u0ae7\u0ae8\u0ae9\u0aea\u0aeb\u0aec\u0aed\u0aee\u0aef"], "Avari-Tu": ["ISO 639-6 entity"], "Balkan Turkic": ["A Turkic language spoken in European Turkey, Greece, and in the Kumanovo and Bitola areas of Macedonia."], "White Russian-Rom\u00e1": ["A dialect of the Baltic Romani language."], "chrysanthemum": ["A type of garden flower with a large, bushy head."], "agile software development": ["A methodology for software development that promotes development iterations, open collaboration, and adaptability throughout the life-cycle of the project."], "Uzbeks": ["A Turkic people of Central Asia. They comprise the majority population of Uzbekistan, and large populations can also be found in Afghanistan, Tajikstan, Kyrgyzstan, Turkmenistan, Kazakhstan, Russia and the Xinjiang Uyghur Autonomous Region of China. (source: Wikipedia)"], "recovery test": ["Pumping test consisting of the measurement, at pre-determined time intervals, of the rise of the piezometric level or water table in a pumped well or in the surrounding observation wells after stoppage of pumping. (source: IGH)"], "reflectivity": ["The ratio of the intensity of the total radiation reflected from a surface to the total incident on that surface.", "The fraction of incident radiation reflected by a surface."], "reservoir life expectancy": ["Period of time a reservoir can be expected to be economically usable determined by reduced capacity due to sedimentation processes. (source: UNESCO)"], "resurgence": ["A place where water from caves returns to the surface, usually much more substantial than a spring."], "rheology": ["The study of the deformation and flow of materials in terms of stress, strain, temperature, and time."], "Haitian Creole": ["A language of Haiti, the Dominican Republic and Guadeloupe"], "Salzburg": ["A federal state of Austria."], "Tyrol": ["A federal state of Austria which forms the Austrian part of the Tyrol region."], "Upper Austria": ["A federal state of Austria."], "Lower Austria": ["A federal state of Austria."], "ISO 3166-2:CH": ["ISO 3166-2:CH"], "Aargau": ["A canton in northern Switzerland."], "canton of Z\u00fcrich": ["A canton in the north of Switzerland."], "Romansh": ["A language of Switzerland."], "canton of Zug": ["A small canton in Switzerland."], "Zug": ["A small canton in Switzerland."], "chubby": ["Round and plump."], "sunflower seed": ["Edible seed of the sunflower plant."], "canton of Vaud": ["A canton in western Switzerland."], "Vaud": ["A canton in western Switzerland."], "canton of Valais": ["A canton in southern Switzerland."], "Valais": ["A canton in southern Switzerland."], "canton of Uri": ["A canton in Switzerland."], "Uri": ["A canton in Switzerland."], "canton of Ticino": ["A canton in southern Switzerland."], "Ticino": ["A canton in southern Switzerland."], "canton of Thurgau": ["A canton in northern Switzerland."], "Thurgau": ["A canton in northern Switzerland."], "canton of Solothurn": ["A canton in northern Switzerland."], "Solothurn": ["A canton in northern Switzerland."], "canton of Schwyz": ["A canton in central Switzerland."], "Schwyz": ["A canton in central Switzerland."], "canton of Schaffhausen": ["A canton in northern Switzerland."], "Schaffhausen": ["A canton in northern Switzerland."], "canton of Saint Gallen": ["A canton in eastern Switzerland."], "Saint Gallen": ["A canton in eastern Switzerland."], "St Gallen": ["A canton in eastern Switzerland."], "canton of Obwalden": ["A canton in central Switzerland."], "Obwalden": ["A canton in central Switzerland."], "canton of Nidwalden": ["A canton in central Switzerland."], "Nidwalden": ["A canton in central Switzerland."], "canton of Neuch\u00e2tel": ["A canton in western Switzerland."], "Neuch\u00e2tel": ["A canton in western Switzerland."], "canton of Lucerne": ["A canton in central Switzerland."], "Lucerne": ["A canton in central Switzerland."], "canton of Jura": ["A canton in northwestern Switzerland."], "canton of Graub\u00fcnden": ["The largest and easternmost canton of Switzerland."], "canton of Grisons": ["The largest and easternmost canton of Switzerland."], "Graub\u00fcnden": ["The largest and easternmost canton of Switzerland."], "Grisons": ["The largest and easternmost canton of Switzerland."], "canton of Glarus": ["A canton in eastern Switzerland."], "Glarus": ["A canton in eastern Switzerland."], "canton of Geneva": ["The westernmost canton of Switzerland."], "Geneva": ["The westernmost canton of Switzerland."], "canton of Fribourg": ["A canton in western Switzerland."], "Fribourg": ["A canton in western Switzerland."], "canton of Berne": ["A large canton in Switzerland."], "canton of Basel-City": ["The smallest canton in Switzerland."], "Basel-City": ["The smallest canton in Switzerland."], "canton of Basel-Country": ["A canton in northern Switzerland."], "Basel-Country": ["A canton in northern Switzerland."], "canton of Appenzell Innerrhoden": ["A small canton in northeastern Switzerland."], "Appenzell Innerrhoden": ["A small canton in northeastern Switzerland."], "canton of Appenzell Ausserrhoden": ["A small canton in northeast Switzerland."], "Appenzell Ausserrhoden": ["A small canton in northeast Switzerland."], "canton of Aargau": ["A canton in northern Switzerland."], "churchgoer": ["A religious person who goes to church regularly.", "A woman who goes to church regularly.", "A man who goes to church regularly."], "jersey": ["A thick, warm piece of clothing with long sleeves which is put on over the head."], "sweater": ["A thick, warm piece of clothing with long sleeves which is put on over the head."], "Norwegian Bokm\u00e5l": ["One of two official writing standards of Norwegian, derived from Danish, the other being Nynorsk."], "Norwegian Nynorsk": ["One of two official writing standards of Norwegian, derived from dialects, the other being Bokm\u00e5l."], "the Netherlands": ["A country in Europe, north of Belgium, officially the Kingdom of the Netherlands. Also existing of the Netherlands Antilles and Aruba, with capital Amsterdam."], "Netherlands": ["A country in Europe, north of Belgium, officially the Kingdom of the Netherlands. Also existing of the Netherlands Antilles and Aruba, with capital Amsterdam."], "Timor-Leste": ["A republic in Southeast Asia whose capital is Dili."], "high-quality": ["Possessing high quality."], "high-grade": ["Possessing high quality."], "karoshi": ["Sudden death caused by heavy stress and overload at work, the most common direct causes of death being heart attack and stroke."], "kar\u014dshi": ["Sudden death caused by heavy stress and overload at work, the most common direct causes of death being heart attack and stroke."], "fry cook": ["A cook specialized in fried foods."], "raw vegetables": ["A mix of uncooked vegetables cut into strips."], "chocoholic": ["Someone who craves chocolate and consumes large amounts of it."], "carrot bread": ["Bread with grated carrots in the dough."], "bran": ["The hard outer layers of cereal grain."], "buckwheat flour": ["Flour made from the seeds of buckwheat (Fagopyrum esculentum)."], "gluten-free": ["Not containing gluten."], "veggie burger": ["Hamburger with a patty consisting of vegetables, soy, nuts, mushrooms or similar instead of meat."], "soba": ["Thin Japanese noodles made of buckwheat flour."], "udon": ["A type of thick noodle in Japanese cuisine made out of wheat flour, salt and water."], "slurp": ["To eat or drink with a sucking noise."], "cinder track": ["A racetrack paved with fine cinders."], "cinnamon": ["The bark of a tree of the laurel family, used as a spice."], "cipher": ["A secret method of writing.", "To convert ordinary language into code."], "widow woman": ["A woman whose spouse has died."], "noodle soup": ["Dish consisting of noodles and other ingredients served in stock."], "widower": ["A man whose spouse has died."], "widowman": ["A man whose spouse has died."], "visitant": ["Someone who pays a visit to a specific place or event."], "Xinjiang": ["An autonomous region (Xinjiang Uyghur Autonomous Region) of the People's Republic of China. It is a large, sparsely populated area (spanning over 1.6 million sq. km) which takes up about one sixth of the country's territory. (source: Wikipedia)"], "Sinkiang": ["An autonomous region (Xinjiang Uyghur Autonomous Region) of the People's Republic of China. It is a large, sparsely populated area (spanning over 1.6 million sq. km) which takes up about one sixth of the country's territory. (source: Wikipedia)"], "Xinjiang Uighur Autonomous Region": ["An autonomous region (Xinjiang Uyghur Autonomous Region) of the People's Republic of China. It is a large, sparsely populated area (spanning over 1.6 million sq. km) which takes up about one sixth of the country's territory. (source: Wikipedia)"], "yogurt": ["A dairy product produced by bacterial fermentation of milk."], "yoghurt": ["A dairy product produced by bacterial fermentation of milk."], "yoghourt": ["A dairy product produced by bacterial fermentation of milk."], "yogourt": ["A dairy product produced by bacterial fermentation of milk."], "Yokohama": ["The capital of Kanagawa Prefecture, located in the Kant\u014d region of the main island of Honsh\u016b and is a major commercial hub of the Greater Tokyo Area. (source: Wikipedia)"], "disinherit": ["To exclude from inheritance."], "Yom Kippur": ["The conclusion of the Ten Days of Awe and the most solemn and important of the Jewish holidays."], "Day of Atonement": ["The conclusion of the Ten Days of Awe and the most solemn and important of the Jewish holidays."], "Vladivostok": ["Russia's largest port city on the Pacific Ocean and the administrative center of Primorsky Krai. It is situated at the head of the Golden Horn Bay not far from the Russo-Chinese border and North Korea. (source: Wikipedia)"], "volition": ["The capability of conscious choice and decision and intention."], "whiskey": ["Alcoholic beverage that is distilled from fermented grain mash and aged in wooden casks (generally oak)."], "whisky": ["Alcoholic beverage that is distilled from fermented grain mash and aged in wooden casks (generally oak)."], "Wiesbaden": ["A city in southwest Germany, is the capital of the state of Hesse."], "ignominy": ["The consciousness or awareness of dishonor, disgrace, or condemnation.", "A state of extreme dishonor, consisting in being an object of a very serious public reproach approved by the great majority of the population."], "disgrace": ["The consciousness or awareness of dishonor, disgrace, or condemnation.", "To make a person morally inferior."], "Macao": ["One of the special administrative regions of the People's Republic of China."], "Macau": ["One of the special administrative regions of the People's Republic of China."], "Viking": ["A member of the Norse (Scandinavian) peoples, famous as explorers, warriors, merchants, and pirates, who raided and colonized wide areas of Europe from the late 8th to the early 11th century. (source Wikipedia)"], "fraction": ["A small item or part of a whole."], "fiddle": ["A musical instrument of the strings family with four strings tuned in perfect fifths."], "oppress": ["To cause, inflict or threaten with suffering, need, distress, or pain."], "tearing": ["Taking actions, usually deliberate and characterized by violence, that cause or intend to cause injury to people, animals, or non-living objects - often associated with aggression."], "violation": ["The act of forcing sexual intercourse or other sexual activity upon another person against their will.", "An infraction or a failure to follow a rule.", "A crime less serious than a felony."], "ravishment": ["The act of forcing sexual intercourse or other sexual activity upon another person against their will."], "variola": ["A highly contagious viral disease characterized by fever and weakness and skin eruption with pustules that form scabs that slough off leaving scars."], "variola major": ["A highly contagious viral disease characterized by fever and weakness and skin eruption with pustules that form scabs that slough off leaving scars."], "menagerie": ["Area in which animals, especially wild animals, are kept so that people can go and look at them, or study them."], "Zoroaster": ["An ancient Iranian prophet and religious poet. The hymns attributed to him, the Gathas, are at the liturgical core of Zoroastrianism."], "Zarathushtra": ["An ancient Iranian prophet and religious poet. The hymns attributed to him, the Gathas, are at the liturgical core of Zoroastrianism."], "Zartosht": ["An ancient Iranian prophet and religious poet. The hymns attributed to him, the Gathas, are at the liturgical core of Zoroastrianism."], "Zoroastrianism": ["The religion and philosophy based on the teachings ascribed to the prophet Zoroaster."], "Mazdaism": ["The religion and philosophy based on the teachings ascribed to the prophet Zoroaster."], "zoological science": ["The study of animals, including their classification, structure, physiology, and history."], "Guernsey": ["A British Crown dependency in the Channel Islands which includes the islands of Guernsey, Alderney and Sark."], "Balliwick of Guernsey": ["A British Crown dependency in the Channel Islands which includes the islands of Guernsey, Alderney and Sark."], "island of Guernsey": ["A British Crown dependency in the Channel Islands which includes the islands of Guernsey, Alderney and Sark."], "Zambezi": ["The fourth-longest river in Africa, and the largest flowing into the Indian Ocean from Africa. The area of its basin is 1,390,000 km\u00b2 (537,000 miles\u00b2),"], "Yunnan": ["A province of the People's Republic of China, located in the far south of the country spanning approximately 394,000 square kilometers (152,000 square miles). (Source: Wikipedia)"], "congestion": ["A number of vehicles so obstructed that they can scarcely move.", "An excess of mucus or fluid in the respiratory system, consisting of the lungs and the nasal cavity."], "taxicab": ["A vehicle that may be hired for single journeys by members of the public and driven by a taxi driver."], "taksio": ["A vehicle that may be hired for single journeys by members of the public and driven by a taxi driver."], "natural yoghurt": ["Yoghurt produced only with milk or cream and lactobacillales which has a sourish taste."], "fruit yoghurt": ["Yoghurt with added fruit."], "municipal library": ["Library managed by the city which is open for the public."], "academic library": ["A library for students and lecturers operated by a university."], "Jugoslavija": ["Three separate political entities that existed on the Balkan Peninsula in Europe during most of the 20th century."], "marimba": ["Musical instrument made of wooden bars each shaped to resonate at a given pitch when struck."], "xenophobia": ["A pathological fear or hatred of strangers or foreigners."], "cookie cutter": ["Tool to cut out cookie dough in a particular shape."], "whirlpool": ["A rapidly rotating body of water."], "whispering": ["A simultaneous interpreting, whereby the interpreter sits close to the listener and whispers the translation without technical aids."], "for the time being": ["A means or measure or an action taken in preparation of."], "braid": ["a hair style formed by interweaving three or more strands of hair."], "related": ["Related by blood or marriage."], "kin": ["Related by blood or marriage."], "akin": ["Related by blood or marriage."], "splurge": ["To spend lavishly or extravagantly, especially money.", "Any act of immoderate indulgence."], "satellite telephone": ["A type of mobile phone that connects to orbiting satellites instead of terrestrial cell sites."], "satellite phone": ["A type of mobile phone that connects to orbiting satellites instead of terrestrial cell sites."], "satphone": ["A type of mobile phone that connects to orbiting satellites instead of terrestrial cell sites."], "Nanga Parbat": ["The ninth highest mountain on Earth with an elevation of 8,126 metres, situated in Kashmir, Pakistan."], "gold mine": ["A mine where gold is extracted."], "silver mine": ["A mine where silver is extracted."], "copper mine": ["A mine where copper is extracted."], "salt mine": ["A mine where salt is extracted."], "sedan chair": ["A seat mounted on a frame with two poles on which a person can be carried."], "circuitry": ["Electric circuits considered as a group."], "poll": ["An inquiry into public opinion conducted by interviewing a random sample of people."], "opinion poll": ["An inquiry into public opinion conducted by interviewing a random sample of people."], "public opinion poll": ["An inquiry into public opinion conducted by interviewing a random sample of people."], "damp": ["To reduce the intensity of a sound."], "deaden": ["To reduce the intensity of a sound."], "snore": ["Noise produced during sleep by vibration of soft respiratory tissues (soft palate, base of the tongue and pharyngeal walls), particularly during inhalation.", "To make a noise during sleep by vibration of soft respiratory tissues (soft palate, base of the tongue and pharyngeal walls), particularly during inhalation."], "maternal uncle": ["The brother of someone\u2019s mother."], "paternal uncle": ["The brother of someone\u2019s father."], "phonation": ["The process of producing vocal sounds by means of vocal cords vibrating in an expiratory blast of air. (source UMLS)"], "hyperactive": ["Having an increased state of activity"], "hyperactivity": ["Constant and excessive movement and motor activity."], "amniotic fluid": ["Fluid that surrounds and protects the developing fetus."], "tactile": ["Pertaining to sense of touch."], "strabismus": ["A condition in which the eyes are not properly aligned with each other."], "spasticity": ["A disorder of the body motor system, and especially the central nervous system (CNS), in which certain muscles are continuously contracted. (source: Wikipedia)"], "muscular hypertonicity": ["A disorder of the body motor system, and especially the central nervous system (CNS), in which certain muscles are continuously contracted. (source: Wikipedia)"], "sensory": ["Pertaining to reception of stimuli through the senses of smell, sight, hearing, touch, and taste."], "scoliosis": ["A medical condition in which a person's spine is curved from side to side, and may also be rotated. (source: Wikipedia)"], "quadriplegia": ["Severe or complete loss of motor function in all four limbs."], "tetraplegia": ["Severe or complete loss of motor function in all four limbs."], "circumspection": ["The trait of being circumspect and prudent.", "Knowing how to avoid embarrassment or distress."], "prognosis": ["A medical term denoting the doctor's prediction of how a patient's disease will progress, and whether there is chance of recovery."], "prenatal": ["Occurring or existing before birth."], "percentile": ["The value of a variable below which a certain percent of observations fall."], "quartile": ["Any of the three values which divide the sorted data set into four equal parts, so that each part represents 1/4th of the sampled population."], "optometry": ["A health care profession concerned with eyes and related structures, as well as vision, visual systems, and vision information processing in humans. (source: Wikipedia)"], "optometrist": ["A person skilled in testing for defects of vision in order to prescribe corrective glasses."], "oculist": ["A medical specialist who practises ophthalmology."], "neurological": ["Pertaining to the normal and abnormal functions of the nervous system."], "microcephaly": ["A neurological disorder in which the circumference of the head is more than two standard deviations smaller than average for the person's age and sex."], "limb": ["An arm or leg."], "in utero": ["Occurring during fetal development; inside the uterus or womb."], "in vitro": ["Refers to the technique of performing a given experiment in a controlled environment outside of a living organism."], "hemiplegia": ["A condition in which one-half of a patient's body is paralyzed."], "gastrostomy": ["A surgical opening into the stomach."], "flexion": ["A position that is made possible by the joint angle decreasing."], "flexor": ["A muscle whose primary function is flexion at a joint."], "etiology": ["The study of causes or origins of a disease or condition."], "echolalia": ["The repetition of vocalizations made by another person."], "developmental": ["Having to do with steps or stages in growth and development."], "cortex": ["Outermost or superficial layer of an organ, and especially in the brain."], "cerebral cortex": ["Outermost or superficial layer of an organ, and especially in the brain."], "cornea": ["The transparent front part of the eye that covers the iris, pupil, and anterior chamber. (source: Wikipedia)"], "atrophy": ["The partial or complete wasting away of a part of the body."], "aspic": ["A savory jelly made of clarified meat, fish, or vegetable stock and gelatin."], "brown sugar": ["A sucrose sugar product with a distinctive brown color due to the presence of molasses."], "cardamom": ["A pungent aromatic spice made of dried seeds of the cardamom plant. Widely used in Scandinavian and East Indian cooking."], "cayenne pepper": ["A red, hot chili pepper used to flavor dishes, and for medicinal purposes."], "coriander": ["An annual herb in the family Apiaceae whose seeds and leaves are often used in cooking.", "The dried seed of the coriander plant (Coriandrum sativum) which is used as a spice whole or ground."], "chutney": ["A term for a variety of sweet and spicy condiments, originally from the South Asia usually involving a fresh, chopped primary vegetable or fruit with added seasonings."], "cumin": ["A flowering plant in the family Apiaceae, native from the east Mediterranean to East India.", "Spice made from the dried seed of the herb Cuminum cyminum."], "grenadine": ["A red syrup used as an ingredient in cocktails, both for its flavor and to give a pink tinge to mixed drinks."], "kamoboko": ["A variety of Japanese fish paste cake."], "lactose": ["A sugar which is found most notably in milk."], "marinade": ["A highly seasoned liquid in which foods are soaked."], "nopal": ["A vegetable made from the young stem segments of prickly pear, carefully peeled to remove the spines."], "wasabi": ["A member of the Brassicaceae family, which originally grew in Japan and the island of Sakhalin and whose root is used as a hot spice."], "circumstance": ["A condition that influences some event or activity."], "Dom": ["A language of Papua New Guinea."], "Japanese script": ["A writing system using three main scripts: Kanji, characters of Chinese origin, Hiragana, a syllabary, and Katakana, a syllabary."], "hiragana": ["A Japanese syllabary and part of the Japanese writing system. Used, among others, to write particles, suffixes and inflections. Derived from the Grass script style of Chinese characters."], "Lawa-Yunnan": ["A dialect of the Western Lawa language."], "La-Oor Written": ["The written forms of the La-Oor language."], "La-Oor Written Thai Script": ["The La-Oor language written with the Thai Script."], "Western Lawa Written": ["The written forms of the Western Lawa language."], "citadel": ["A fortress in a commanding position in or near a city."], "citizenry": ["The body of citizens of a state or country."], "Northern Thai Written Thai Script": ["The Northern Thai language written with the Thai script."], "Northern Khmer Written": ["The written forms of the Northern Khmer language."], "Khmer script": ["A script used to write the Khmer language which is the official language of Cambodia."], "Northern Thai Written Yuan Script": ["The Northern Thai language written with the Yuan script."], "Khang-Xa": ["A dialect of the Kh\u00e1ng language."], "Kao": ["A dialect of the Western Katu language."], "Lahul Lohar Written Devanagari Script": ["The Lahul Lohar language written with the Devanagari script."], "citizenship": ["The state of being vested with the rights, privileges, and duties of a citizen in a country."], "universally": ["In a universal manner; without exception."], "supported": ["Held in position, especially from below."], "skipjack": ["Any of several unrelated fish, but especially several of the genus Euthynnus resembling tuna."], "skipjack tuna": ["Any of several unrelated fish, but especially several of the genus Euthynnus resembling tuna."], "rite": ["The act of performing divine or solemn service, as established by law, precept, or custom."], "Shinto": ["The native religion of Japan and was once its state religion."], "imperial": ["Related to an empire, emperor, or empress.", "Relating to the British imperial system of measurement."], "distinctly": ["In a distinct manner."], "lactic": ["Of, relating to, or derived from milk."], "chopsticks": ["A pair of small equal-length tapered sticks, which are generally believed to have originated in ancient China, and are the traditional eating utensils of China, Japan, Korea, Taiwan, and Vietnam. (source: Wikipedia)"], "dashi": ["A class of soup and cooking stocks considered fundamental to Japanese cooking."], "tsukemono": ["Japanese pickles, generally served with rice, and sometimes with beverages as an otsumami."], "japonica": ["A short-grain variety of rice (Oryza sativa var. japonica) which is characterized by its unique stickiness and texture.", "A thorny deciduous shrub whose apple-shaped fruits are a golden-yellow color containing red-brown seeds."], "japanese rice": ["A short-grain variety of rice (Oryza sativa var. japonica) which is characterized by its unique stickiness and texture."], "sashimi": ["A Japanese delicacy primarily consisting of very fresh raw seafood, sliced into thin pieces about 2.5cm (1.0in.) wide by 4.0cm (1.5in.) long by 0.5 cm (0.25in.) thick, but dimensions vary depending on the type of item and chef, and served with only a dipping sauce (soy sauce with wasabi paste and thinly-sliced ginger root or ponzu), and a simple garnish such as shiso and shredded daikon radish. (source: Wikipedia)"], "grilling": ["A form of cooking that involves direct heat."], "simmering": ["A cooking technique in which foods are cooked in hot liquids kept at or just barely below the boiling point of water (at average sea level air pressure), 100\u00b0C (212\u00b0F). (source: Wikipedia)"], "steaming": ["A method of cooking using steam that avoids overcooking or burning food."], "deep frying": ["A cooking method in which food is submerged in hot oil or fat."], "cookbook": ["A book containing recipes and instructions for cooking."], "sakana": ["A Japanese term referring to food eaten as an accompaniment to alcohol."], "daikon": ["A mild-flavored East Asian giant white radish."], "perilla": ["A genus of annual herb that is a member of the mint family, Lamiaceae."], "nori": ["The Japanese name for various edible seaweed species of the red alga Porphyra including most notably P. yezoensis and P. tenera.", "The food products created from the nori red alga, similar to the Korean gim. Finished products are made by a shredding and rack-drying process that resembles papermaking."], "makisu": ["A mat woven from bamboo and cotton string that is used in food preparation."], "teriyaki": ["A cooking technique used in Japanese cuisine in which foods are broiled or grilled in a sweet soy sauce marinade."], "frogs' legs": ["One of the better-known delicacies of French and Chinese cuisine. They are often said to taste like chicken because of their mild flavor, with a texture most similar to chicken wings. (source: Wikipedia)"], "turnip": ["A root vegetable commonly grown in temperate climates worldwide for its white, bulbous taproot."], "oyster mushroom": ["An edible basidiomycete mushroom of the Pleurotaceae family whose cap resembles the oyster."], "porcini": ["An edible basidiomycete mushroom found in pine forests and plantations in autumn, the cap of which may reach 25 cm in diameter and 1 kg in weight."], "king bolete": ["An edible basidiomycete mushroom found in pine forests and plantations in autumn, the cap of which may reach 25 cm in diameter and 1 kg in weight."], "penny bun": ["An edible basidiomycete mushroom found in pine forests and plantations in autumn, the cap of which may reach 25 cm in diameter and 1 kg in weight."], "plum": ["Fruit tree belonging to the genus Prunus of the Rosaceae family, cultivated for its fruits, plums", "A fruit of the plum tree."], "gage": ["Fruit tree belonging to the genus Prunus of the Rosaceae family, cultivated for its fruits, plums"], "redcurrant": ["A member of the genus Ribes in the gooseberry family Grossulariaceae, native to parts of western Europe (France, Belgium, Netherlands, Germany, and northern Italy). It is a deciduous shrub normally growing to 1-1.5 m tall, occasionally 2 m, with five-lobed leaves arranged spirally on the stems.", "Berry, fruit of the redcurrant shrub (Ribes rubrum), of the gooseberry family."], "foie gras": ["The liver of a duck or a goose that has been specially fattened by gavage."], "veal": ["Meat produced by a young cow and sold in a butcher's shop."], "horse meat": ["The meat cut from a horse. It is slightly sweet, tender, low in fat, and high in protein.", "The meat of a horse, usually for human consumption."], "cacti": ["The Cactaceae, the cactus family of plants."], "S\u00e3o Paulo": ["The capital of the state of S\u00e3o Paulo, Brazil, the largest city in Brazil and first in South America by population.", "One of the 26 Brazilian states, located in the center west. Its capital is S\u00e3o Paulo."], "Alagoas": ["A small state in northeastern Brazil lying between the states of Pernambuco and Sergipe. Its capital is Macei\u00f3."], "Macei\u00f3": ["The capital and the largest city of the coastal state Alagoas, Brazil."], "Dakka": ["A language of Indonesia (Sulawesi)."], "curry": ["A traditional medium strength Indian preparation utilizing wide variety of oriental spices to give rich flavor with abundant gravy."], "cityscape": ["The characteristic appearance of a city."], "Bristol Channel": ["A bay on the west coast of Great Britain, separating Cornwall and Wales."], "Weston-super-Mare": ["An English seaside resort on the Bristol Channel in North Somerset."], "contaminant": ["A substance that pollutes."], "tofu skin": ["A Chinese and Japanese food product made from soybeans."], "dried beancurd": ["A Chinese and Japanese food product made from soybeans."], "yuba": ["A Chinese and Japanese food product made from soybeans."], "germane": ["Related to the topic being discussed or considered."], "electric potential": ["The amount of electrostatic potential between two points in space. Unit: volt."], "potential difference": ["The amount of electrostatic potential between two points in space. Unit: volt."], "potential drop": ["The amount of electrostatic potential between two points in space. Unit: volt."], "tap water": ["Drinking water which gets to the end user through a network of water pipes and can be taken from a spigot."], "source text": ["Text which is to be translated to another language."], "target text": ["A text which which is the result of the translation of a text to another language."], "vodka": ["A clear, colorless, almost odorless unaged liquor made from potatoes, and sometimes from corn, rye, or wheat."], "money-printing machine": ["A machine which can fabricate money in unlimited quantities."], "source language": ["Language to be translated out of."], "target language": ["Language to be translated into."], "trigger-happy": ["Marked by extreme intensity of emotions or convictions."], "vinery": ["A grape plantation."], "Vilno": ["The capital of Lithuania."], "soporific": ["Something inducing sleep, especially a drug."], "civility": ["A polite action or expression."], "apple core": ["The inner part of an apple containing the seeds.", "The central less appetizing parts of an apple that normally are discarded."], "ankle-deep": ["Reaching up to the ankles."], "knee-deep": ["Reaching up to the knees."], "ankle-length": ["Extending to the knee from above."], "knee-length": ["Extending to the knees from above."], "floor-length": ["Reaching to the floor."], "work force": ["All the workers employed by a specific organisation or nation, or on a specific project."], "Aruban florin": ["The currency of Aruba"], "grape juice": ["Juice made from grapes."], "motherless": ["Having no living or known mother."], "fatherless": ["Having no living or known father."], "childless": ["Having no children."], "parentless": ["Having no living or known parents."], "clanger": ["A foolish error, especially one made in public."], "clarion": ["A medieval brass instrument with a clear shrill tone."], "wart": ["A small, rough tumor, typically on hands and feet, that can resemble a cauliflower or a solid blister."], "wheal": ["A firm, elevated, rounded or flat topped, generally pale red papule or plaque swellings of the skin."], "tinea": ["A group of mycosis infections of the skin caused by parasitic fungi (dermatophytes)."], "dermatophytosis": ["A group of mycosis infections of the skin caused by parasitic fungi (dermatophytes)."], "tungiasis": ["A skin infestation of the Tunga penetrans flea (also known as chigoe flea, jigger, nigua or sand flea), found in the tropical parts of Africa, Caribbean, Central and South America, and India."], "urticaria": ["A skin condition, commonly caused by an allergic reaction, that is characterized by raised red skin wheals (welts)."], "clarity": ["The quality of being clear or transparent to the eye.", "The state of being easy to see, hear or understand.", "The quality of comprehensible language or thought."], "skin tag": ["A small benign tumor that forms primarily in areas where the skin forms creases, such as the neck, armpits and groin. They may also occur on the face, usually on the eyelids. Though larger have been seen, they usually range in size from grain of rice to that of a golf ball."], "acrochordon": ["A small benign tumor that forms primarily in areas where the skin forms creases, such as the neck, armpits and groin. They may also occur on the face, usually on the eyelids. Though larger have been seen, they usually range in size from grain of rice to that of a golf ball."], "psoriasis": ["A disorder which affects the skin and joints. It commonly causes red scaly patches to appear on the skin."], "relative humidity": ["A term used to describe the amount of water vapor that exists in a gaseous mixture of air and water."], "so": ["Concurring with a given set of facts.", "[A word that expresses that something is or should be the consequence of something else].", "The goal being that.", "In truth.", "In such a degree as can not well be expressed.", "In the same manner or to the same extent as mentioned before.", "In the way or manner described, indicated, or suggested", "With the result that.", "[Used as an introductory particle to a consequence but with the causal statement not stated.]", "[Replaces the aforementioned adjective phrase.]", "[Used after a pause for thought to introduce a new topic, question or story.]", "[Used in the sense of \"what do you imply?\"]", "[Used in the beginning of a sentence with the sense of \"well then\", \"in that case\", \"very well\".]"], "refine": ["To reduce to a fine, unmixed, or pure state.", "To improve in accuracy, delicacy, or excellence."], "basic": ["A necessary commodity, a staple requirement.", "Necessary, essential for life or some process.", "An elementary building block.", "(chemistry) Of or pertaining to a base.", "Elementary, simple, fundamental, merely functional.", "Reduced to the simplest and most significant form possible without loss of generality."], "Antikythera": ["A Greek island community with a land area of 20.43 square kilometers, lying 38 kilometers south-east of Kythira."], "Kythira": ["An island of Greece, historically part of the Ionian Islands."], "upper": ["At a higher level, rank or position."], "unusual": ["Unlike what is expected; differing in some way from the norm.", "Out of the ordinary.", "Of strange or extraordinary character.", "Not easily found.", "Out of the ordinary."], "surprising": ["Causing surprise or wonder or amazement."], "surprisingly": ["In a way that causes surprise because it is unexpected, or unusual."], "suggest": ["To imply but stop short of saying explicitly; to intimate by a hint.", "To ask for without demanding.", "To make a proposal, declare a plan for something.", "To imply as a possibility.", "To call to mind."], "suggestive": ["Tending to suggest or imply."], "spiral": ["A curve that is the locus of a point that rotates about a fixed point while continuously increasing its distance from that point.", "That is shaped like a spiral", "To move in a spiral course."], "Saros cycle": ["An eclipse cycle with a period of about 18 years 11 days 8 hours (approximately 6585\u2153 days) that can be used to predict eclipses of the Sun and Moon."], "reconstruction": ["The act of restoring something to an earlier state.", "An attempt to understand in detail how certain events took place.", "A period of United States history from 1865-1877 during which southern states were reorganized politically, ending with the withdrawal of federal troops."], "panhellenic": ["Of or relating to all Greece or all the Greeks."], "output": ["(Economics) The quantity produced, created, or completed.", "(computing) data sent out of the computer, as to output device such as a monitor or printer.", "(computing) to send data out of a computer, as to an output device such as a monitor or printer.", "(economics) to generate, create, or complete."], "Olympiad": ["A period of four years, by which the ancient Greeks reckoned time, being the interval from one celebration of the Olympic games to another, beginning with the victory of Corbus in the foot race, which took place in the year 776 b.c."], "northwestern": ["Of or pertaining to the northwest.", "To the northwest.", "From the northwest."], "northeastern": ["Of or pertaining to the northeast.", "To the northeast.", "From the northeast."], "northeasterly": ["Situated in, or pointing towards the northeast.", "Coming from the northeast."], "northwesterly": ["Situated in, or pointing towards the northwest.", "Coming from the northwest."], "southwestern": ["Of or pertaining to the southwest.", "To the southwest.", "From the southwest."], "southeastern": ["Of or pertaining to the southeast.", "To the southeast.", "From the southeast."], "southeasterly": ["Situated in, or pointing towards the southeast.", "Coming from the southeast."], "southwesterly": ["Situated in, or pointing towards the southwest.", "Coming from the southeast."], "southwest": ["The compass point halfway between south and west, specifically 225\u00b0, abbreviated as SW."], "southeast": ["The direction of the cardinal compass point halfway between south and east, specifically 135\u00b0, abbreviated as SE."], "northeast": ["The cardinal compass point halfway between north and east, specifically 45\u00b0, abbreviated as NE."], "northwest": ["The cardinal compass point halfway between north and west, specifically 315\u00b0, abbreviated as NW."], "newly": ["In a new manner."], "metonic cycle": ["A particular approximate common multiple of the tropical year and the synodic (lunar) month."], "lunar": ["Of, or pertaining to, the moon."], "known": ["That whom other people know, renowned, famous."], "plausible": ["Seemingly or apparently valid, likely, or acceptable; credible."], "implausible": ["Not plausible; unlikely; dubious."], "explore": ["To examine or investigate something systematically."], "dismiss": ["To terminate the employment of one or more employees.", "To discharge; to end the employment or service of."], "correction": ["The act of correcting."], "Corinthian": ["Describing a person or object from Corinth.", "Of the Corinthian classical order, elaborate, ornate."], "contender": ["A woman who competes with one or more other people.", "A man who competes with one or more other people.", "Someone who competes with one or more other people."], "Callippic cycle": ["A particular approximate common multiple of the year (specifically the tropical year) and the synodic month, that was proposed by Callippus in 330 BC."], "in vivo": ["That which takes place inside an organism."], "glycolipid": ["A carbohydrate-attached lipid."], "genetic": ["Relating to genetics or genes."], "vesicle": ["A membrane-bound compartment found in a cell."], "translocate": ["To displace, or move from one place to another."], "reticulum": ["A pattern of interconnected objects.", "The second chamber in the alimentary canal of a ruminant animal"], "require": ["To demand or exact as indispensable.", "To consider obligatory; request and expect."], "itself": ["A thing, previously mentioned, as the object of a verb or preposition.", "A thing, previously mentioned, as an intensifier."], "endoplasm": ["The inner portion of the cytoplasm of a cell."], "endoplasmic": ["Of, or relating to endoplasm."], "endoplasmic reticulum": ["An organelle found in all eukaryotic cells that is an interconnected network of tubules, vesicles and cisternae."], "translocation": ["Removal of things from one place to another; displacement; substitution of one thing for another."], "polar": ["Of, relating to, measured from, or referred to a geographic pole (the North Pole or South Pole)."], "phospholipid": ["A class of lipids, and a major component of all biological membranes, along with glycolipids, cholesterol and proteins. (source: Wikipedia)"], "oligosaccharide": ["A saccharide polymer containing a small number (typically three to ten) of component sugars."], "simple sugar": ["A saccharide polymer containing a small number (typically three to ten) of component sugars."], "flippase": ["Enzyme located in the membrane responsible for aiding the movement of phospholipid molecules between the two leaflets that compose a cell's membrane (transverse diffusion)."], "polyisoprene": ["An elastic hydrocarbon polymer that naturally occurs as a milky colloidal suspension, or latex, in the sap of some plants."], "leaflet": ["One of the components of a compound leaf.", "A small sheet of paper containing information, used for dissemination of said information, often an advertisement."], "clinical": ["Of or pertaining to a medical clinic or facility."], "coincide": ["To occupy exactly the same space.", "To occur at the same time.", "To correspond, concur, or agree.", "To happen at the same time."], "contiguous": ["Very close or connected in space or time."], "dentition": ["The set of natural teeth of an individual.", "The eruption, through the gums of teeth, for example milk teeth."], "dermorphin": ["A hepta-peptide first isolated from the skin of South American frogs belonging to the family Phyllomedusa. (source: Wikipedia)"], "embryonic": ["Of or related to an embryo."], "endogenous": ["Produced, originating or growing from within."], "fibroblast": ["A type of cell that synthesizes and maintains the extracellular matrix of many animal tissues."], "subfamily": ["A biological taxon, a group of animals or plants, part of a family and consisting of one or more genera."], "hybrid": ["Offspring resulting from cross-breeding different entities, e.g. two different species or two purebreed parent strains."], "hypothesis": ["A tentative conjecture explaining an observation, phenomenon, or scientific problem that can be tested by further observation, investigation, and/or experimentation."], "whole-grain bread": ["Bread baked with whole-grain flour."], "whole wheat flour": ["Flour made from whole grain which retains bran, germ, and endosperm."], "incidence": ["The striking of a beam, radiation or projectile upon a surface.", "The extent, or the relative frequency of occurrence of something."], "infancy": ["The earliest period of childhood (crawling rather than walking)."], "infectious": ["Spreading quickly from one individual to another."], "insight": ["Clear or deep perception of a situation."], "intestinal": ["Relating to the intestines."], "intestine": ["The alimentary canal of an animal through which food passes after having passed all stomachs."], "scented candle": ["Perfumed candle which gives off an odour when burning."], "ISO 3166-2:VE": ["The subset of ISO 3166-2 which applies to Venezuela."], "lactone": ["A cyclic ester, the condensation product of an alcohol group and a carboxylic acid group in the same molecule."], "lymphoma": ["A type of solid neoplasm that originates in lymphocytes (a type of white blood cell in the vertebrate immune system). (source: Wikipedia)"], "fusion": ["A change of the state of a substance from the solid phase to the liquid phase. (Source: MGH)"], "misconduct": ["Bad behavior.", "To act improperly."], "more": ["[Used in forming the comparative form of many adjectives and almost all comparable adverbs.]", "In greater number.", "In greater quantity, amount, or proportion.", "That is in addition to (something else)."], "morphogenesis": ["One of three fundamental aspects of developmental biology along with the control of cell growth and cellular differentiation. It is concerned with the shapes of tissues, organs and entire organisms and the positions of the various specialized cell types. (source: Wikipedia)"], "mutagenesis": ["A process by which the genetic information of an organism is changed in a stable manner, either in nature or experimentally by the use of chemicals or radiation. (source: Wikipedia)"], "nanotechnology": ["A field of applied science whose theme is the control of matter on an atomic and molecular scale."], "neural": ["Of, or relating to the nerves, neurons or the nervous system.", "Of, or relating to a neuron."], "passion": ["Suffering; particularly in Christianity, the suffering of Jesus leading up to and during his crucifixion.", "Great emotion.", "A feeling of strong sexual desire."], "patient": ["Not losing one's temper while waiting.", "Someone who receives treatment from a doctor or other medically educated person.", "The noun or noun phrase that is semantically on the receiving end of a verb's action."], "percolation": ["Movement of water through the soil surface into the ground.", "The seepage or filtration of a liquid through a porous substance."], "pluripotent": ["Able to develop into or affect any cell type, i.e. not restricted to a specific system."], "prey": ["Animal hunted or caught for food.", "A person who is the aim of an attack (especially a victim of ridicule or exploitation) by some hostile person or influence.", "To profit from in an exploitatory manner.", "To prey on or hunt for."], "reading": ["Made or used for reading."], "receptor": ["A protein molecule, embedded in either the plasma membrane or cytoplasm of a cell, to which a mobile signaling (or \"signal\") molecule may attach.", "A structure that recognizes a stimulus in the internal or external environment of an organism."], "sensory receptor": ["A structure that recognizes a stimulus in the internal or external environment of an organism."], "response": ["A statement (either spoken or written) that is made in reaction to a question, a request, criticism or accusation"], "restricted": ["Limited within bounds."], "roundworm": ["One of the most common phyla of animals, with over 80,000 different described species (of which over 15,000 are parasitic). They are ubiquitous in freshwater, marine, and terrestrial environments, where they often outnumber other animals in both individual and species counts, and are found in locations as diverse as Antarctica and oceanic trenches."], "self": ["The essential qualities that make a person or a thing distinct from all others."], "running": ["Moving or issuing in a stream.", "The activity of running (moving quickly on foot)."], "abortifacient": ["A substance that induces abortion.", "Causing abortion."], "similarity": ["Closeness of appearance to something else."], "resemblance": ["Closeness of appearance to something else."], "silicate": ["Any salt of silica or of one of the silicic acids.", "Any mineral composed of silicates."], "sugar tongs": ["Small tongs used to grasp sugar cubes."], "lump sugar": ["Sugar pressed to form cubes or cuboids."], "cube sugar": ["Sugar pressed to form cubes or cuboids."], "sugar cube": ["A piece of sugar in form of a cube."], "analogic": ["Of or pertaining to analogy."], "analogical": ["Of or pertaining to analogy."], "autochthonous": ["Originating where it is found."], "stereotype": ["A conventional, formulaic, and oversimplified conception, opinion, or image.", "To make a stereotype of someone or something, or characterize someone by a stereotype."], "hysterectomy": ["The surgical removal of the uterus."], "termination": ["The process of terminating or the state of being terminated.", "A bringing or coming to an end."], "tonne": ["A metric unit of mass equal to 1000 kilograms."], "metric ton": ["A metric unit of mass equal to 1000 kilograms."], "toxic": ["Having a chemical nature that is harmful to health or lethal if consumed or otherwise entering into the body in sufficient quantities."], "transcription": ["The act or process of making a record.", "The process of creating an equivalent RNA copy of a sequence of DNA."], "triad": ["Grammatical number related to precisely 3 objects of the same type"], "turnover": ["The amount of business transacted in a specified time period.", "The act of overturning something."], "venom": ["Poisonous animal secretions forming fluid mixtures of many different enzymes, toxins, and other substances. These substances are produced in specialized glands and secreted through specialized delivery systems (nematocysts, spines, fangs, etc.) for disabling prey or predator. (source: UMLS)"], "agonist": ["The principal character in a work of fiction.", "A muscle that contracts while another relaxes."], "allometry": ["The science studying the differential growth rates of the parts of a living organism's body part or process."], "anteriorly": ["In an anterior direction."], "Amazonian": ["Relating to the Amazon River in South America, and its surrounding region."], "amplification": ["The act, or result of amplifying, enlarging, extending or adding to."], "backlight": ["To illuminate something from behind.", "A spotlight that illuminates a photographic subject from behind."], "blame": ["Culpability for something negative or undesirable."], "broad": ["Very large in expanse or scope."], "spacious": ["Very large in expanse or scope."], "burrow": ["A tunnel or hole, often as dug by a small creature."], "hutch": ["A small crude shelter used as a dwelling."], "immersion blender": ["Kitchen appliance in form of a wand which can be used to blend ingredients or puree food."], "stick blender": ["Kitchen appliance in form of a wand which can be used to blend ingredients or puree food."], "wand blender": ["Kitchen appliance in form of a wand which can be used to blend ingredients or puree food."], "hand blender": ["Kitchen appliance in form of a wand which can be used to blend ingredients or puree food."], "Bermixer": ["Kitchen appliance in form of a wand which can be used to blend ingredients or puree food."], "cornflower blue": ["Having the blue color of cornflowers.", "A shade of blue found in cornflowers."], "peanut allergy": ["A type of food allergy where contact with peanuts or traces of peanuts causes an overreaction of the immune system."], "food allergy": ["A type of allergy which causes an overreation of the immune system upon contact with a certain food."], "peanut oil": ["Vegetable oil derived from peanut seeds."], "smoke point": ["The lowest temperature at which a fat or oil begins to smoke."], "nut allergy": ["A type of allergy which causes an overreation of the immune system upon contact with nuts."], "Egyptology": ["The study of ancient Egyptian history, language, literature, religion, and art from the 5th millennium BC until the end of its native religious practices in the AD 4th century."], "calcic": ["Of, pertaining to, or derived from calcium or lime."], "canister": ["A cylindrical or rectangular container usually of lightweight metal, plastic, or laminated pasteboard used for holding a dry product (as tea, crackers, flour, matches)."], "carbonated": ["Containing carbon-dioxide gas under pressure."], "cellular": ["Of, relating to, consisting of, or resembling a cell or cells."], "Cenozoic": ["The most recent of the three classic geological eras and covers the period from 65.5 million years ago to the present."], "Mesozoic": ["One of three geologic eras of the Phanerozoic eon."], "Paleozoic": ["The earliest of three geologic eras of the Phanerozoic eon."], "carbonatite": ["Any intrusive igneous rock having a majority of carbonate minerals."], "clastic": ["Made up from parts that are easily removable.", "Made from fragments of pre-existing rocks."], "closely": ["In a close manner."], "coexist": ["To exist contemporaneously or in the same area."], "colleague": ["A fellow member of a profession, staff, academic faculty or other organization; an associate."], "colonize": ["To establish a colony."], "commonly": ["Under normal conditions.", "In a typical situation."], "computing": ["Science and technique of data elaboration and of automatic treatment of information."], "conditioned": ["Determined or dependent on some condition.", "Exhibiting a conditioned reflex.", "In good physical condition to perform a physical task, as a result of exercise.", "Prepared for a specific use."], "confined": ["Not free to move.", "Not invading healthy tissue."], "confinement": ["The act of confining or the state of being confined."], "conjugated": ["Joined together in pairs."], "claustrophobic": ["Pertaining to or suffering from claustrophobia."], "clavicle": ["Bone linking the scapula and sternum."], "collar bone": ["Bone linking the scapula and sternum."], "cleanser": ["A detergent, powder, or other chemical agent that removes dirt, grease, or stains."], "object-oriented programming language": ["A programming language that allows or encourages, to some degree, object-oriented programming techniques such as encapsulation, inheritance, modularity, and polymorphism."], "object-oriented programming": ["A programming paradigm that uses \"objects\" and their interactions to design applications and computer programs."], "static": ["Not able to change.", "Of or pertaining to static electricity."], "static analysis": ["The process of evaluating a system or component based on its form, structure, content, or documentation."], "dynamic analysis": ["The process of evaluating a system or component based upon its behaviour during execution. (source: IEEE)"], "reshape": ["To make into a different shape."], "inference": ["The act or process of inferring by deduction or induction."], "inheritance": ["That which a person in entitled to inherit.", "The mechanism whereby parts of a superclass are available to instances of its subclass.", "The hereditary passing of biological attributes from the parents to its offspring."], "Wiki terminology": ["Wiki terminology."], "clean-shaven": ["Closely shaved recently."], "clearance": ["The empty space between two objects."], "cling film": ["A thin plastic film that sticks to itself; used for wrapping food."], "clipboard": ["A small board having at the top a clip for holding papers and serving as a portable writing surface."], "facetious": ["Treating serious issues with deliberately inappropriate humour."], "flippant": ["Treating serious issues with deliberately inappropriate humour."], "clitoridectomy": ["The partial or total removal of the external part of the clitoris."], "actinides": ["A group of 15 radioactive elements some of which occur naturally while others are produced in nuclear reactions. They include plutonium, americium and neptunium. The health hazard presented by the actinides, if they are released into the environment, comes from the potency of their radioactive characteristics. They are alpha-emitters, and therefore can cause intense localized damage in tissues if absorbed into the body.\\n(Source: WRIGHT)"], "bytecode": ["Various forms of instruction sets designed for efficient execution by a software interpreter as well as being suitable for further compilation into machine code."], "heap": ["A great number or large amount of things not placed in a pile.", "An area of memory used for dynamic memory allocation.", "To fill to overflow (e.g. a platter).", "A specialized tree-based data structure that satisfies the heap property: if B is a child node of A, then key(A) \u2265 key(B).", "To put together several things in one pile; to arrange in stacks.", "To bestow in large quantities (e.g. work)."], "harelip": ["A congenital cleft in the middle of the upper lip."], "rupiah": ["The currency of Indonesia."], "denar": ["The currency of Macedonia."], "cleft lip": ["A congenital cleft in the middle of the upper lip."], "dispatch": ["To unlawfully and intentionally kill another human being.", "To send a shipment with promptness.", "To destroy quickly and efficiently.", "To pass on for further processing.", "The act of sending off something.", "An official report.", "The act of killing a person or animal."], "Italian lira": ["The former official currency of Italy, San Marino and the Vatican City."], "clement": ["Inclined to be lenient or merciful."], "despatch": ["To send a shipment with promptness.", "To destroy quickly and efficiently.", "To pass on for further processing.", "An official report.", "The act of killing a person or animal."], "send off": ["To pass on for further processing."], "shipment": ["The act of sending off something."], "communique": ["An official report."], "via": ["By way of; passing through."], "runtime": ["The time during which a program is executing.", "Of, relating to, or happening during run time."], "run time": ["The time during which a program is executing."], "run-time": ["Of, relating to, or happening during run time."], "polymorphic": ["Relating to polymorphism."], "loop": ["A length of thread, line or rope that is doubled over to make an opening; the opening so formed."], "polymorphous": ["Having, or assuming, a variety of forms, characters, or styles."], "atomicity": ["The abstract state of being atomic (that is, of being indivisible).", "The state of a system (often a database system) in which either all stages complete or none complete.", "The number of atoms in a molecule."], "verification": ["An additional proof that something that was believed (some fact or hypothesis or theory) is correct."], "tune up": ["To make adjustments to an engine in order to improve its performance."], "tune-up": ["A series of adjustments to an engine in order to improve its performance."], "them": ["Third personal plural pronoun used after a preposition or as the object of a verb.", "Third person singular accusative pronoun of indeterminate or irrelevant gender", "\"Them\", the plural masculine form of \"him\"."], "pointer": ["A mark to indicate a direction or relation.", "Anything that points or is used for pointing.", "A variable which holds the address of a memory location where, presumeably, a value is stored."], "orient": ["To find one's way (usually by means of a compass)."], "Orient": ["Eastern countries and regions."], "Occident": ["Western countries and regions."], "operator": ["One who operates.", "A function or other mapping that carries variables defined on a domain into another variable or set of variables in a defined range.", "A person who provides assistance to a telephone caller by establishing a network connection with the person to be reacher."], "compiler": ["A program that decodes instructions written in a higher order language and produces an assembly language program."], "evaluate": ["To express an opinion or a valuation, especially on esthetics, morality or the like.", "To draw conclusions from by examining.", "To compute an expression.", "To place a value on."], "expressive": ["Effectively conveying thought or feeling."], "lifetime": ["The duration of the life of someone or something.", "Lasting a lifetime.", "(Of prison sentences) Ending only with death."], "defect": ["A fault or malfunction.", "An imperfection in a device or machine.", "Unfortunate original gap in comparison with the ideal or expected state."], "context": ["The text in which a word or passage appears and which helps ascertain its meaning."], "verifier": ["One who verifies."], "variant": ["Something a little different from others of the same type."], "SAT": ["The problem of determining if the variables of a given Boolean formula can be assigned in such a way as to make the formula evaluate to TRUE."], "Boolean satisfiability problem": ["The problem of determining if the variables of a given Boolean formula can be assigned in such a way as to make the formula evaluate to TRUE."], "strategy": ["The science and art of military command as applied to the overall planning and conduct of warfare.", "A plan of action intended to accomplish a specific goal."], "motivation": ["The psychological feature that arouses an organism to action toward a desired goal."], "intermediate": ["Occurring between two extremes, or in the middle of a range."], "confidentiality": ["The property of being confidential.", "A set of rules or a promise that limits access or places restrictions on certain types of information."], "written": ["Of, relating or characteristic of writing."], "log": ["The trunk of a dead tree.", "To cut lumber, as in woods and forests.", "To add an entry (or more) in a log or logbook, as on ships and planes."], "screenshot": ["A picture or image captured from one's computer's screen."], "clergy": ["The body of people ordained for religious service."], "cleverness": ["The quality of being clever."], "well-read": ["Knowledgeable through having read extensively."], "polynomial": ["An algebraic expression consisting of one or more summed terms, each term consisting of a constant multiplier and one or more variables raised to integral powers.", "Of an algorithm whose performance is specified by a polynomial function."], "polynomial function": ["Any function whose value is the solution of a polynomial."], "proof": ["A sequence of statements (made up of axioms, assumptions and arguments) leading to the establishment of the truth of one final statement."], "optimal": ["Most favorable or desirable."], "query": ["Action of asking for information, a reply or response on a given subject.", "A request for information to a database application, a search engine, or another tool", "To ask for information, a reply or response on a given subject.", "A mapping from structures of one vocabulary to structures of another vocabulary."], "functor": ["A mapping from structures of one vocabulary to structures of another vocabulary.", "A special type of mapping between categories."], "competitive": ["Being inclined to compete.", "Of or pertaining to competition."], "sorting": ["An operation that segregates items into groups according to a specified criterion."], "sorting algorithm": ["An algorithm that puts elements of a list in a certain order."], "scheme": ["A systematic plan of future action.", "An orderly combination of related parts.", "To form intrigues in an underhand manner.", "A schematic or preliminary plan."], "ordering": ["Arrangement in a sequence."], "generalize": ["To draw from specific cases for more general cases."], "inexhaustible": ["So substantial that complete consumption is impossible."], "unexhaustible": ["So substantial that complete consumption is impossible."], "cooling system": ["A mechanism for keeping something cool."], "commodity": ["Anything movable (a good) that is bought and sold.", "Raw materials, agricultural and other primary products as objects of large-scale trading in specialized exchanges."], "bisimulation": ["A binary relation between state transition systems, associating systems which behave in the same way in the sense that one system simulates the other and vice-versa."], "climacteric": ["The time of life when a woman's menstrual periods stop."], "bisimilarity": ["A binary relation between state transition systems, associating systems which behave in the same way in the sense that one system simulates the other and vice-versa."], "tractable": ["Capable of being handled or touched; palpable; practicable; feasible."], "cloakroom": ["A room where coats, hats and other articles may be left temporarily, as in a theater or school."], "computation": ["The act or process of computing; calculation; reckoning."], "coatroom": ["A room where coats, hats and other articles may be left temporarily, as in a theater or school."], "XPath": ["A query language used to identify a set of nodes within a XML document."], "online": ["Accessible via a computer or computer network.", "Performed over the internet."], "on-line": ["Accessible via a computer or computer network.", "Performed over the internet."], "randomized": ["Set up or distributed in a deliberately random way."], "randomized trial": ["A study in which participants are randomly assigned to either a treatment arm or placebo arm of a clinical trial."], "tire": ["A rubber ring placed over the rim of a wheel of a road vehicle to provide traction and reduce road shocks.", "To become tired through overuse or great strain or stress.", "To make tired.", "The rubber covering on a wheel."], "fatigue": ["A state of physical and/or mental weakness and a lack of vigor.", "To become tired through overuse or great strain or stress.", "To make tired."], "war-weary": ["Unwilling to continue war and to commit to it."], "close-up": ["A photograph, film or television shot, taken near the subject and shown at a relatively large scale."], "scoop": ["Ice cream formed like a sphere."], "birthday present": ["A gift someone is given for their birthday."], "confluent": ["which converges."], "notion": ["A general inclusive concept.", "A vague idea in which some confidence is placed."], "computational": ["Of or related to computation."], "bound": ["To surround a territory.", "To spring away from an impact.", "Constrained by a quantifier.", "A value which is known to be greater or smaller than a given set of values."], "locally": ["By a particular locality."], "minimum": ["The lowest limit."], "homomorphism": ["A mapping between mathematical structures of the same type."], "parallel": ["Of two or more (straight) lines, (flat) surfaces etc: Equally distant from one another at all points."], "framework": ["The arrangement of support beams that represent a buildings general shape and size.", "A basic conceptual structure.", "An abstraction in which common code providing generic functionality can be selectively overridden or specialized by user code providing specific functionality."], "underlying": ["Involving basic facts or principles.", "Lying underneath."], "reasoning": ["Thinking that is coherent and logical."], "instance": ["Something that is representative of all such things in a group; an occurrence of something.", "An item of information that is representative of a type or class.", "In object-oriented programming: a created object, one that has had memory allocated for local data storage; an instantiation of a class."], "rank": ["Position of a person, place, thing, or idea in relation to others based on a shared property such as physical location, population, or quality"], "preservation": ["The process of maintaining a structure in its present condition and arresting further deterioration."], "authenticate": ["To establish or to confirm something (or someone) as authentic, that is, that claims made by or about the thing are true."], "exponential": ["Behaving with a pattern of change in which the amount of change that occurs in a quantity during a small interval of time is proportional to the amount of that quantity present."], "stable equilibrium": ["An equilibrium in which the system tends to return to that equilibrium condition whenever it is nudged off of that equilibrium."], "stochastic": ["Randomly determined or having a random probability distribution or pattern that may be analyzed statistically but may not be predicted precisely."], "theoretic": ["Concerned with theories or hypotheses rather than with practical matters."], "undecidable": ["Incapable of being algorithmically decided in finite time."], "recursive": ["Of or relating to a recursion.", "Describing a set for which there exists an algorithm that will determine whether any element is or is not within the set in a finite amount of time."], "recursion": ["The definition of an operation in terms of itself."], "splittable": ["Property of something that can be split."], "widely": ["Commonly; generally; to a great degree."], "automata": ["A self-operating machine or mechanism."], "cellular automaton": ["Simplified mathematical models of spatial interactions, in which sites or cells on a landscape are assigned a particular state, which then changes stepwise according to specific rules conditioned on the states of neighboring cells."], "pushdown automaton": ["A finite automaton that can make use of a stack containing data."], "clotheshorse": ["A frame on which to hang wet laundry for drying."], "finite state automaton": ["A model of behavior composed of a finite number of states, transitions between those states, and actions."], "finite state machine": ["A model of behavior composed of a finite number of states, transitions between those states, and actions."], "state machine": ["A model of behavior composed of a finite number of states, transitions between those states, and actions."], "asymptotically": ["In an asymptotical manner, in the way of an asymptote."], "clothesline": ["A cord on which clothes are hung to dry."], "asymptotical": ["Of, relating to, or being an asymptote."], "asymptotic": ["Of, relating to, or being an asymptote."], "tractability": ["The state of being tractable or docile."], "topological": ["Of or relating to topology."], "sequential": ["Succeeding or following in order."], "isomorphism": ["A bijective map f such that both f and its inverse f' are homomorphisms, i.e., structure-preserving mappings."], "relational": ["Relating to relations."], "deterministic": ["Of, or relating to determinism."], "scheduling": ["A function in many aspects of industry, commerce and computing in which events are timed to take place at the most opportune time."], "efficient": ["Being effective without wasting time or effort or expense."], "input": ["Something fed into a process with the intention of it shaping or affecting the outputs of that process.", "To enter data into a system."], "propose": ["To suggest a plan or course of action.", "To ask for a person's hand in marriage."], "peer": ["Somebody or something who/that is at an equal level.", "A noble with a hereditary title."], "XQuery": ["A query language (with some programming language features) that is designed to query collections of XML data."], "SIMD": ["A technique employed to achieve data level parallelism, as in a vector processor."], "Single Instruction, Multiple Data": ["A technique employed to achieve data level parallelism, as in a vector processor."], "significantly": ["In a significant manner; notably."], "skyline": ["The horizontal line that appears to separate the Earth from the sky.", "The silhouette of a city.", "An operation that filters out a set of interesting points from a potentially large set of data points (A point is interesting if it is not dominated by any other point)."], "aggregate": ["A mass, assemblage, or sum of particulars; something consisting of elements but considered as a whole.", "Formed by a collection of particulars into a whole mass or sum; collective; combined; added up.", "To bring together; to collect into a mass or sum.", "To heap up; to collect or gather (e.g. work, magazines, etc.)."], "congeries": ["A mass, assemblage, or sum of particulars; something consisting of elements but considered as a whole."], "conglomeration": ["A corporation formed by the combination of several smaller corporations whose activities are unrelated to the corporation's primary activity.", "A mass, assemblage, or sum of particulars; something consisting of elements but considered as a whole."], "ranking": ["Relative placement in a list."], "various": ["More than one indeterminate thing."], "selectivity": ["A measure of how selective something is."], "retrieval": ["The act of regaining or saving something lost (or in danger of becoming lost).", "The operation of accessing information from the computer's memory."], "nest": ["To build or settle into a nest.", "A structure built by vertebrates to hold its eggs, its offspring, or occasionally the animal itself and may be composed of organic material such as twigs, grass, and leaves, or may be a simple depression in the ground, or a hole in a rock, tree, or building."], "extensive": ["Large in number or quantity.", "Having broad range or effect."], "experimentally": ["In the manner of an experiment."], "estimator": ["A person who estimates, especially one who estimates costs."], "distribute": ["To divide something into portions and dispense it.", "To cause to become widely known.", "To distribute or disperse widely.", "To make available."], "cache": ["A collection of things that will be required in future, and can be retrieved rapidly, stored in a hidden or inaccessible place.", "A fast temporary storage where most recent or most frequent values are stored to avoid having to reload from a slower storage medium."], "bitmap": ["A series of bits that represents a rasterized graphic image, each pixel being represented as a group of bits."], "dependency": ["A state of being dependent; a refusal to exercise initiative:", "A territory that does not possess full political independence or sovereignty as a State.", "A dependence on a habit-forming substance such as a drug or alcohol."], "dataset": ["A collection of data, usually presented in tabular form."], "data set": ["A collection of data, usually presented in tabular form."], "adaptive": ["Of, pertaining to, characterized by or showing adaptation; making or made fit or suitable."], "schedules": ["Plural of schedule."], "recovery": ["The act or process of regaining or repossession of something lost."], "syntactic": ["Of, related to or connected with syntax."], "syntactical": ["Of, related to or connected with syntax."], "operations": ["Plural form of operation."], "instruction": ["The act of instructing, teaching, or furnishing with information or knowledge.", "That which is enjoined or ordered to one or several persons by a superior authority.", "A single operation of a processor defined by an instruction set architecture."], "consistent": ["Of a regularly occurring, dependable nature.", "Of a set of statements, such that no contradiction logically follows from them."], "documents": ["Plural form of document.", "Third-person singular simple present indicative form of document."], "wavelet": ["A mathematical function used to divide a given function or continuous-time signal into different frequency components and study each component with a resolution that matches its scale. (source: Wikipedia)"], "robust": ["Evincing strength; indicating vigorous health.", "Having a physically sound and strong body."], "robusta": ["An African coffee plant."], "relevant": ["Directly related, connected, or pertinent to a topic."], "software testing": ["The process of checking software, to verify that it satisfies its requirements and to detect errors."], "incomplete": ["Not yet finished."], "contents": ["That which is contained."], "compress": ["Any therapeutic material that is used to cover an injury.", "To make smaller; to press or squeeze together, or to make something occupy a smaller space or volume.", "A soft, cloth pad held in place by a bandage and used to provide pressure or to supply moisture, cold, heat, or medication."], "validate": ["To check or prove the validity of."], "suitably": ["In a suitable manner; fitly; agreeably; with propriety."], "theoretically": ["In a theoretical manner.", "In theory; on paper."], "unexpected": ["Not expected, anticipated or foreseen."], "synopsis": ["A brief summary of the major points of a written work, either as prose or as a table; an abridgment or condensation of a work."], "clothes peg": ["Wood or plastic fastener for holding clothes on a clothesline."], "use case": ["A description of a system\u2019s behaviour as it responds to a request that originates from outside of that system."], "cloudburst": ["A sudden and very heavy rainfall."], "cloudless": ["Free from clouds."], "notation": ["A comment or instruction.", "A system of characters, symbols, or abbreviated expressions used in an art or science or in mathematics or logic to express technical facts or quantities."], "dure": ["To last, continue, endure."], "thread of execution": ["A way for a program to fork (or split) itself into two or more simultaneously (or pseudo-simultaneously) running tasks. In general, a thread is contained inside a process and different threads in the same process share some resources while different processes do not. (source: Wikipedia)"], "grammatical": ["Acceptable as a correct sentence or clause as determined by the rules and conventions of the grammar, or morpho-syntax of the language."], "flexibility": ["The quality of being flexible.", "The quality of being adaptable."], "legacy": ["Something inherited from a predecessor."], "novelty": ["A new product; an innovation."], "overcome": ["To end in success a struggle or contest.", "To surmount a physical or an abstract obstacle."], "process": ["A way of proceeding or doing something, especially a systematic or regular one.", "A series of events to produce a result, especially as contrasted to product.", "To perform a particular process."], "efficiently": ["In an efficient manner."], "correctly": ["In a correct manner."], "construct": ["Something built up of distinct parts.", "To create something by combining or assembling materials or parts or by changing it.", "To build or form (something) by assembling parts.", "To make by combining materials and parts.", "To make things, usually on a large scale, with tools and either physical labor or machinery, out of artificial or natural components or parts."], "consistency": ["The property of holding together and retaining its shape.", "Logical coherence and accordance with the facts."], "conformance": ["Action or behavior in correspondence with current customs, rules, or styles."], "dependent": ["Relying upon; depending upon."], "clove": ["The aromatic flower bud of a clove tree, used as a spice."], "encapsulate": ["To cover something as if in a capsule."], "DBMS": ["Computer software designed for the purpose of managing databases."], "Boolean": ["Pertaining to data items that can have \u201ctrue\u201d and \u201cfalse\u201d (or, equivalently, 1 and 0 respectively) as their only possible values and to operations on such values."], "Kannada script": ["A syllabary (of the type sometimes called an abugida) of the Brahmic family, primarily to write the Kannada language, one of the Dravidian languages in India."], "Kannada Written": ["The written forms of the Kannada language."], "Kannada Written Kannada Script Historical": ["The Kannada language written with the historical Kannada script."], "Rayalasima": ["A dialect of the Telugu language."], "Telugu Written": ["Written forms of the Telugu language."], "Telugu Written Telugu Script Historical": ["The Telugu language written with the historical Telugu script."], "Telugu script": ["An abugida script from the Brahmic family of scripts used to write Telugu language."], "3D": ["Existing in three dimensions."], "three-dimensional": ["Existing in three dimensions."], "mesh": ["A flat, semi-permeable barrier made of connected strands of metal, fiber, or other flexible/ductile material.", "A structure made of connected strands of metal, fiber, or other flexible/ductile material, with evenly spaced openings between them."], "interactive": ["Acting with each other."], "2D": ["Existing in two dimensions."], "two-dimensional": ["Existing in two dimensions."], "synthesis": ["The formation of something complex or coherent by combining simpler things.", "Reasoning from the general to the particular (or from cause to effect)."], "realistic": ["Expressed or represented as being accurate."], "radiance": ["A radiometric measure that describes the amount of light that passes through or is emitted from a particular area, and falls within a given solid angle in a specified direction."], "reflectance": ["The fraction of incident radiation reflected by a surface."], "rigid": ["Incapable of or resistant to bending.", "Incapable of compromise or flexibility.", "Incapable of adapting or changing to meet circumstances."], "spline": ["A special function defined piecewise by polynomials."], "deformation": ["The act of deforming, or state of being deformed."], "physically": ["In a physical manner.", "According to the laws of physics."], "shading": ["Depicting depth in 3D models or illustrations by varying levels of darkness."], "blur": ["Something that appears hazy or indistinct.", "To make indistinct or hazy, to obscure or dim."], "compute": ["To make a mathematical calculation or computation."], "depth": ["The vertical distance below a surface; the amount that something is deep."], "dimensional": ["Of or relating to dimensions."], "discrete": ["Separate and distinct."], "geometric": ["Of, or relating to geometry."], "interactively": ["In an interactive manner."], "gradient": ["The rate of change of a function."], "sparse": ["Having widely spaced intervals.", "Occupied or populated by a small number of people."], "skeletal": ["Of, or relating to the skeleton."], "scan": ["To examine sequentially, part by part.", "To create a digital copy of an image using a scanner.", "To examine hastily (e.g. a newspaper).", "To make a wide, sweeping search of (e.g. the sky)."], "volumetric": ["Relating to the three dimensional qualities of a space."], "visually": ["By means of sight."], "vertex": ["The highest point of something.", "The common point of the two rays of the angle."], "viewpoint": ["The position from which an object is looked at.", "The mental position from which things are viewed.", "A place from which something can be viewed."], "unlike": ["Different from."], "tensor": ["An object which extends the notion of scalar, vector, and matrix.", "A muscle that stretches a body part, or renders it tense."], "successfully": ["In a successful manner; with success; without failing."], "spatially": ["With reference to space or arrangement in space."], "simulate": ["To model, replicate, duplicate the behavior, appearance or properties of.", "To follow as a model or a pattern."], "rotational": ["Of, pertaining to or caused by rotation."], "robustness": ["The property of being strong and healthy in constitution.", "The quality of being able to withstand stresses, pressures, or changes in procedure or circumstance."], "reconstruct": ["To rebuild: to build again."], "clover": ["A plant of the genus Trifolium."], "polymath": ["Person who studied a lot of different sciences."], "cloverleaf": ["A highway interchange at which two highways, one crossing over the other, have a series of entrance and exit ramps resembling the outline of a four-leaf clover and enabling vehicles to proceed in either direction on either highway.", "Shaped like or resembling a leaf of the clover plant."], "initial": ["The first letter of a word (especially a person's name).", "Occurring at the beginning.", "To mark with one's initials."], "clown": ["Someone who makes jokes.", "A comical performer, stereotypically characterized by its grotesque appearance: colored wigs, stylistic makeup, outlandish costumes, unusually large footwear, etc., who entertain spectators by acting in a hilarious fashion."], "incident": ["An event that has caused or has the potential to cause damage to an organization's business systems, facilities, or personnel.", "Falling on or striking a surface."], "perceptual": ["Of the depiction of an object based on direct observation."], "optical": ["Of, or relating to sight."], "minimal": ["The smallest possible amount, quantity, or degree."], "intuitive": ["Obtained through intuition rather than from reasoning or observation."], "indirect": ["Not direct."], "implicit": ["Implied though not directly expressed."], "sculpture": ["Three-dimensional artwork created by shaping hard or plastic material, commonly stone (either rock or marble), metal, or wood.", "Creating figures or designs in three dimensions."], "sculptress": ["A woman sculptor."], "sculptural": ["Related to sculpture."], "printmaking": ["The process of making artworks by printing, normally on paper."], "printmaker": ["An artist who designs and makes prints."], "photographer": ["A person who takes a photograph using a camera."], "fine arts": ["Any art form developed primarily for aesthetics rather than utility."], "stinging nettle": ["A herbaceous perennial flowering plant, native to Europe, Asia, northern Africa, and North America which causes a skin reaction upon touch."], "buckrams": ["Pungent, perennial weedy plant in Europa and north Asia which smells similar to garlic and is often used as cooking ingredient."], "ramsons": ["Pungent, perennial weedy plant in Europa and north Asia which smells similar to garlic and is often used as cooking ingredient."], "wild garlic": ["Pungent, perennial weedy plant in Europa and north Asia which smells similar to garlic and is often used as cooking ingredient."], "broad-leaved garlic": ["Pungent, perennial weedy plant in Europa and north Asia which smells similar to garlic and is often used as cooking ingredient."], "wood garlic": ["Pungent, perennial weedy plant in Europa and north Asia which smells similar to garlic and is often used as cooking ingredient."], "bear's garlic": ["Pungent, perennial weedy plant in Europa and north Asia which smells similar to garlic and is often used as cooking ingredient."], "double standard": ["A situation where, out of two classes of entities, only one is expected to follow a certain standard while the other is treated more leniently."], "blood diamond": ["A diamond mined in a war zone and used to finance armed conflicts."], "converted diamond": ["A diamond mined in a war zone and used to finance armed conflicts."], "conflict diamond": ["A diamond mined in a war zone and used to finance armed conflicts."], "hot diamond": ["A diamond mined in a war zone and used to finance armed conflicts."], "war diamond": ["A diamond mined in a war zone and used to finance armed conflicts."], "subspecies": ["The taxonomic rank immediately subordinate to a species."], "glare": ["To shine intensely."], "facial": ["Of or concerning the face"], "fluorescent": ["Having the ability to emit light when struck by electrons or another form of radiation."], "fluorescent lamp": ["A low pressure mercury electric discharge lamp, tubular in shape in which a fluorescent coating (phosphor) transforms ultraviolet energy into visible light."], "fluorescent tube": ["A low pressure mercury electric discharge lamp, tubular in shape in which a fluorescent coating (phosphor) transforms ultraviolet energy into visible light."], "hierarchical": ["Pertaining to a hierarchy."], "implement": ["To bring something to fulfilment.", "A tool or instrument for working with.", "To bring about; to put into practice."], "look after": ["To care for medicinally or surgically; to apply medical care to.", "To keep under careful scrutiny."], "media": ["Plural form of medium.", "Materials and tools used by the artist to create the visual elements perceived by the viewer.", "Storage and transmission tools used to store and deliver information or data.", "Mass communication means, including books, newspapers, magazines, radio, television, motion pictures and recordings."], "take care": ["To be in charge of or deal with."], "nonlinear": ["Not lying on a straight line.", "Not a linear function of the relevant variables."], "linear function": ["A first degree polynomial function of one variable.", "A function that is a linear map, that is, a map between two vector spaces that preserves vector addition and scalar multiplication."], "non-linear": ["Not a linear function of the relevant variables."], "offline": ["Not directly connected (with a computer, a network, etc.)."], "off-line": ["Not directly connected (with a computer, a network, etc.)."], "precomputed": ["Previously calculated, determined by a previous computation."], "pre-computed": ["Previously calculated, determined by a previous computation."], "powerful": ["Capable of producing great physical force.", "Having, or capable of exerting power, potency or influence.", "Possessing physical strength and weight; rugged and powerful."], "filtering": ["The process of controlling access to a network by analyzing the incoming and outgoing packets."], "packet filtering": ["The process of controlling access to a network by analyzing the incoming and outgoing packets."], "clumsiness": ["The quality of being clumsy."], "content filtering": ["The technique whereby content is blocked or allowed based on analysis of its content, rather than its source or other criteria. It is most widely used on the internet to filter email and web access. (source: Wikipedia)"], "Bayesian filtering": ["A statistical technique whereby the system assigns a spam probability based on training from users."], "recursive Bayesian estimation": ["A general probabilistic approach for estimating an unknown probability density function recursively over time using incoming measurements and a mathematical process model. (source: Wikipedia)"], "Bayesian network": ["A probabilistic graphical model that represents a set of variables and their probabilistic dependencies."], "Bayesian": ["Of or relating to statistical methods based on Bayes' theorem."], "procedural": ["Relating to a programming approach whereby the developer specifies exactly what must be done and in what sequence."], "prior": ["Of that which comes before.", "Making a beginning but not being the real thing."], "transport phenomenon": ["Any of various mechanisms by which particles or quantities move from one place to another. (source: Wikipedia)"], "anisotropic": ["Different in a physical property (absorbance, refractive index, density, etc.) for some material when measured along different axes."], "isotropic": ["Having properties that are identical in all directions; exhibiting isotropy."], "curvature": ["The amount of curving or bending of a line, figure, or body."], "curving": ["Something that is bent as to form an arch"], "bending": ["Movement that causes the formation of a curve."], "radius of curvature": ["The measure of how curved, or bent, a given curve or surface is."], "combination": ["A collection of things that have been combined."], "conventional": ["Following accepted customs and proprieties."], "computed": ["Calculated, determined by computation."], "constrained": ["Lacking spontaneity; not natural."], "coupling": ["The act of joining together to form a couple.", "The act of pairing a male and female for reproductive purposes."], "deformable": ["Capable of being reshaped."], "convolution": ["An image processing technique in which each pixel is altered by some function of the surrounding pixels.", "A mathematical operation on two functions, producing a third function that is typically viewed as a modified version of one of the original functions."], "deconvolution": ["An algorithm-based process used to reverse the effects of convolution on recorded data. (source: Wikipedia)"], "discuss": ["To converse or debate concerning a particular topic."], "derive": ["To reason or establish by deduction.", "To come from; to be connected by a relationship of blood."], "virtual": ["That has conceptual but not actual existence."], "symbolic": ["Pertaining to, of the nature of, or serving as an emblem."], "tetrahedron": ["A polyhedron with four faces."], "widespread": ["Affecting a large area."], "topologically": ["From the point of view of topology."], "translucent": ["Of a material or substance capable of transmitting some light, but not clear enough to be seen through."], "validation": ["The act of validating something."], "visualization": ["The act of visualizing, or something visualized."], "temporally": ["In a temporal manner."], "synchronized": ["Operating in unison."], "synthesize": ["To combine separate elements into one more complex element."], "segmentation": ["Breaking a solid structure into a number of usually equal size pieces."], "rigidity": ["The quality or state of being rigid."], "relaxation": ["The process in which a muscle loosens and returns to a resting stage.", "A period of lessening tension between rivals.", "Relief from work or other activity or responsibility."], "reliable": ["Suitable or fit to be relied on."], "scalability": ["The quality of being scalable."], "seamless": ["Having no seams."], "simplification": ["The elimination of superfluous details."], "smoothness": ["The condition of being smooth."], "statistically": ["In a statistical manner."], "specular": ["Having or relating to the qualities of a mirror."], "spectral": ["Of or relating to a spectrum."], "spectrum": ["A broad range of related objects or values or qualities or ideas or activities."], "smoothly": ["In a smooth manner."], "procedure": ["A series of defined steps or tasks.", "A part of a program that is abstracted as a unit and that can be called from multiple places, often with parameters.", "A particular means of accomplishing something."], "parabolic": ["Having the form of a parabola.", "Resembling or expressed by parables."], "parabolical": ["Having the form of a parabola.", "Resembling or expressed by parables."], "parametric": ["Of, relating to, or defined using parameters."], "particularly": ["Especially; to a great extent."], "perceptually": ["With regard to perception."], "poorly": ["In a poor or improper or unsatisfactory manner."], "programmable": ["Capable of being programmed."], "Realism": ["A visual art style that depicts the actuality of what the eyes can see."], "realism": ["A concern for fact or reality and rejection of the impractical and visionary."], "refractive": ["Capable of bending a light or sound wave as it passes through."], "purely": ["In a pure manner."], "psychophysical": ["Of or pertaining to psychophysics."], "psychophysics": ["The division of psychology that studies the physiological aspects of mental phenomena and in particular the quantitative relations between stimuli and the resultant sensations."], "progressive": ["Proceeding in small stages.", "Favouring or promoting progress.", "Gradually advancing in extent."], "overall": ["Including everything; universal.", "Generally; with everything considered."], "all-encompassing": ["Including everything; universal."], "mask": ["A cover, or partial cover, for the face, used for disguise or protection.", "A pattern of bits or characters that controls the keeping, deleting, or testing of portions of another pattern of bits or characters.", "To hide under a false appearance."], "interaction": ["A kind of action that occurs as two or more objects have an effect upon one another."], "fill": ["To have a right, title, or office.", "To make full."], "fidelity": ["Faithfulness to one's duties.", "Accuracy, or exact correspondence to some given quality or fact."], "extract": ["To remove, usually with some force or effort."], "diffuse": ["To spread over or through as in air, water, or other matter, especially by fluid motion or passive means.", "Not focused or concentrated.", "To cause to become widely known.", "To move outward (e.g. soldiers)."], "accurately": ["With few mistakes."], "affine transformation": ["A linear transformation between vector spaces followed by a translation."], "cluster bomb": ["A projectile that, when dropped from an aircraft or fired through the air, releases explosive fragments over a wide area."], "linear transformation": ["A function between two vector spaces that preserves the operations of vector addition and scalar multiplication."], "linear map": ["A function between two vector spaces that preserves the operations of vector addition and scalar multiplication."], "coherence": ["The quality of being orderly, logical and consistent."], "computationally": ["In a computational manner; Using computation.", "In a computational manner."], "conformal": ["Describing something that conforms, especially that matches the shape of something."], "coachwork": ["The body of a motor vehicle (automobile, bus or truck) which is built around a chassis."], "conformal map": ["An angle-preserving transformation."], "carrossery": ["The body of a motor vehicle (automobile, bus or truck) which is built around a chassis."], "continuously": ["Without pause."], "criterion": ["A standard or test by which individual things or people may be compared and judged."], "directional": ["Relating to or indicating directions in space.", "A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "discretization": ["Approximating the solution of a continuous problem by representing it in terms of a discrete set of elements."], "dissipation": ["The release of energy over time in dynamical systems by mechanical modes, such as waves or oscillations.", "Excessive indulgence in sensual pleasures."], "effectively": ["In an efficient or effective manner; with powerful effect."], "everyday": ["Occurring or returning in the ordinary course of events.", "Appropriate for ordinary use, rather than for special occasions."], "fully": ["In a full manner or degree."], "geometrically": ["With respect to geometry."], "globally": ["In all places or situations."], "greatly": ["To a great extent or degree."], "formulation": ["The quantities and the sources of ingredients used to make a product.", "The action of formulating an idea or explanation in a precise manner."], "encode": ["To convert plain text into code."], "Spanish salsify": ["A plant native to southern Europe and the Near East with edible roots."], "black oyster plant": ["A plant native to southern Europe and the Near East with edible roots."], "serpent root": ["A plant native to southern Europe and the Near East with edible roots."], "viper's herb": ["A plant native to southern Europe and the Near East with edible roots."], "viper's grass": ["A plant native to southern Europe and the Near East with edible roots."], "root vegetable": ["Plant which stores edible material in a root, corm or tuber."], "Facebook": ["A social networking website launched on 2004."], "social": ["Being extroverted or outgoing.", "Of or related to society.", "Of or pertaining to society or social groups and their activities and customs."], "sociable": ["Being extroverted or outgoing."], "Google": ["An American multinational corporation, earning revenue from advertising related to its Internet search, web-based e-mail, online mapping, office productivity, social networking, and video sharing services as well as selling advertising-free versions of the same technologies."], "review": ["A second or subsequent reading of a text or artifact.", "A critical evaluation of a publication such as a book, movie, musical composition or video game.", "To write a critical evaluation of a publication such as a book, movie, musical composition or video game."], "secure": ["Free from danger or risk.", "To make something fixed or stable; to cause to be firmly attached.", "To make certain of."], "flaw": ["An imperfection in a device or machine."], "flash": ["A set of multimedia software created by Macromedia and currently developed and distributed by Adobe Systems.", "A sudden, short, temporary burst of light.", "To display or act proudly, ostentatiously or pretentiously.", "A gaudy and proud outward display."], "Flash": ["A set of multimedia software created by Macromedia and currently developed and distributed by Adobe Systems."], "Adobe Flash": ["A set of multimedia software created by Macromedia and currently developed and distributed by Adobe Systems."], "vulnerability": ["The state of being weak.", "A defect or weakness in the feasibility, design, implementation, operation, or maintenance of a system. (Schneider)"], "Silverlight": ["A programmable web browser plugin that enables features such as animation, vector graphics and audio-video playback that characterize rich internet applications. (source: Wikipedia)"], "Microsoft Silverlight": ["A programmable web browser plugin that enables features such as animation, vector graphics and audio-video playback that characterize rich internet applications. (source: Wikipedia)"], "vendor": ["One who sells or offers to sell."], "Olympics": ["An international multi-sport event taking place every fourth year."], "pack": ["A bundle made up and prepared to be carried.", "To arrange in a container.", "To press tightly together or cram."], "meanwhile": ["During the time."], "holographic": ["In the form of a hologram or holograph.", "Written by a person's own hand."], "holography": ["A technique that allows the light scattered from an object to be recorded and later reconstructed so that it appears as if the object is in the same position relative to the recording medium as it was when recorded."], "hologram": ["The intermediate photograph (or photographic record) that contains information for reproducing a three-dimensional image by holography."], "issue": ["An important question that is in dispute and must be settled.", "Condition that which follows something on which it depends.", "A passage or gate from inside someplace to the outside, that permits escape or release.", "To come out of (e.g. water)."], "coverage": ["The extent to which something is covered."], "gesticulate": ["To show, express or direct through movements."], "coagulate": ["To change from a fluid into a thickened mass."], "coalition": ["An alliance, especially a temporary one, of people, factions, parties, or nations."], "mock strawberry": ["A species from Southeast Asia used as ornamental plant whose fruit looks similar to wild strawberries but has no taste."], "Indian strawberry": ["A species from Southeast Asia used as ornamental plant whose fruit looks similar to wild strawberries but has no taste."], "woodland strawberry": ["Wild strawberry species with edible fruits which grows on the edges and clearings of woods."], "wild strawberry": ["Wild strawberry species with edible fruits which grows on the edges and clearings of woods."], "European strawberry": ["Wild strawberry species with edible fruits which grows on the edges and clearings of woods."], "Alpine strawberry": ["Wild strawberry species with edible fruits which grows on the edges and clearings of woods."], "edge of the wood": ["The outer limit of a forest."], "edge of the forest": ["The outer limit of a forest."], "clearing": ["A tract of land in a forest not covered by trees and bushes."], "mulatto": ["Son of a black parent and a white parent.", "Daughter of a black parent and a white parent."], "quadroon": ["Son of a mulatto parent and a white parent.", "Daughter of a mulatto parent and a white parent."], "octoroon": ["Son of a quarteroon parent and a white parent.", "Daughter of a quarteroon parent and a white parent."], "quintroon": ["Son of an octoroon parent and a white parent.", "Daughter of an octoroon parent and a white parent."], "hexadecaroon": ["Son of an octoroon parent and a white parent.", "Daughter of an octoroon parent and a white parent."], "griffe": ["Son of a black parent and a mulatto parent.", "Daughter of a black parent and a mulatto parent."], "milk chocolate": ["Chocolate containing cocoa mass, cocoa butter, sugar and milk."], "chocolate liquor": ["Liquid mass made from roasted and ground cocoa beans."], "cocoa liquor": ["Liquid mass made from roasted and ground cocoa beans."], "cocoa mass": ["Liquid mass made from roasted and ground cocoa beans."], "cocoa butter": ["Pale yellow vegetable fat obtained by squeezing cocoa beans."], "theobroma oil": ["Pale yellow vegetable fat obtained by squeezing cocoa beans."], "smart": ["Not showing due respect.", "Of high or especially quick cognitive capacity.", "Exhibiting social ability or cleverness.", "Elegant and stylish."], "Symbian": ["An open operating system, designed for mobile devices, with associated libraries, user interface frameworks and reference implementations of common tools, produced by Symbian Ltd. It runs exclusively on ARM processors."], "Symbian OS": ["An open operating system, designed for mobile devices, with associated libraries, user interface frameworks and reference implementations of common tools, produced by Symbian Ltd. It runs exclusively on ARM processors."], "vulnerable": ["Exposed to attack or harm."], "Ruby": ["A dynamic, reflective, general purpose object-oriented programming language that combines syntax inspired by Perl with Smalltalk-like features.", "Female first name."], "garden strawberry": ["The most common strawberry species worldwide, created in the 18th century as a hybrid of the Virginia strawberry and the Chilean strawberry."], "Virginia strawberry": ["A strawberry species of North America."], "beach strawberry": ["Strawberry species with large fruits originating from the American Pacific coast."], "Chilean strawberry": ["Strawberry species with large fruits originating from the American Pacific coast."], "sand strawberry": ["Strawberry species with large fruits originating from the American Pacific coast."], "coastal strawberry": ["Strawberry species with large fruits originating from the American Pacific coast."], "strawberry plant": ["Plant of the family Rosaceae with white flowers and edible red fruits."], "lemon cake": ["Cake with lemons in form of lemon gelee, lemon juice or lemon zest."], "meatless": ["Lacking meat."], "discarnate": ["Having no physical body or form."], "incorporeal": ["Having no physical body or form."], "immaterial": ["Not pertinent to the matter under consideration.", "Having no physical body or form."], "asomatous": ["Having no physical body or form."], "lemon cream puff": ["Pastry made of choux pastry filled with lemon cream."], "limoncello": ["A lemon liqueur produced around the Gulf of Naples, along the Amalfi Coast and Sicily."], "penetration": ["An attack that penetrates into enemy territory.", "The ability to make way into or through something."], "preconference": ["The events scheduled previously to the opening of a conference."], "privacy": ["The ability of an individual or group to seclude themselves or information about themselves and thereby reveal themselves selectively."], "proprietary": ["Of or relating to property or ownership."], "proprietary software": ["Computer software on which the producer has set restrictions on use, private modification, copying, or republishing."], "realize": ["To make real or concrete; give reality or substance to.", "To become aware of a fact or situation.", "To earn, to gain (money)."], "randomization": ["Arrangement of data in such a way as to simulate chance occurrence."], "reputation": ["What somebody is known for."], "citrusy": ["Having the flavour or taste of a citrus fruit."], "lemony": ["Having the smell or taste of a lemon."], "lemonish": ["Having the smell or taste of a lemon."], "lemonlike": ["Having the smell or taste of a lemon."], "interview": ["A formal meeting, in person, for the assessment of a candidate or applicant.", "A conversation in which facts or opinions are sought."], "refrigerative": ["Causing cold or cooling."], "refrigerating": ["Causing cold or cooling."], "frigorific": ["Causing cold or cooling."], "chilling": ["Causing cold or cooling."], "IBM": ["A multinational computer technology and consulting corporation headquartered in Armonk, New York, USA."], "International Business Machines": ["A multinational computer technology and consulting corporation headquartered in Armonk, New York, USA."], "Thanatos": ["In Greek mythology, the god of death."], "Hypnos": ["In Greek mythology, the god of sleep."], "Nyx": ["In Greek mythology, the goddess of the night."], "Erebus": ["In Greek mythology, the god of darkness."], "Erebos": ["In Greek mythology, the god of darkness."], "coaster": ["A vessel engaged in coastal trade.", "A flat object on which beverages are put to protect the surface of a table.", "An optical disk that is useless because the data on it cannot be read."], "Hephaestus": ["In Greek mythology, the God of fire, blacksmiths and volcanoes."], "Hades": ["In Greek mythology, the underworld and abode of the dead.", "The ruler of the underworld in Greek mythology."], "cancer-causing": ["Causing cancer."], "cancer-producing": ["Causing cancer."], "alive": ["Having life."], "anywhere": ["In, at or to any place."], "beyond": ["Farther along in space or time or degree."], "canonical": ["In conformity with canon law.", "Reduced to the simplest and most significant form possible without loss of generality.", "Appearing in a biblical canon.", "Of or relating to or required by canon law.", "Conforming to orthodox or recognized rules."], "classic": ["Adhering to established standards and principles.", "A creation of the highest excellence."], "entitle": ["To bestow the right to do (to own, to demand, or to receive) something, to someone."], "equestrian": ["Of horseback riding or horseback riders.", "A person who rides horses."], "everything": ["All the things."], "International Prototype Kilogram": ["Cylinder consisting of a platinum-iridium alloy which is used as a reference for the SI unit kilogram and is kept in Paris."], "IPK": ["Cylinder consisting of a platinum-iridium alloy which is used as a reference for the SI unit kilogram and is kept in Paris."], "nobody": ["Not any person."], "anthropomorphic": ["Having the form of a man."], "anthropomorphous": ["Having the form of a man."], "humanlike": ["Having the form of a man."], "mechanical man": ["Autonomously operating machine with a stature which is based on the human stature."], "humanoid": ["Autonomously operating machine with a stature which is based on the human stature.", "Having the form of a man."], "coastline": ["The outline of a coast."], "shoreline": ["The outline of a coast."], "coat hanger": ["A triangular device made of wire, wood or plastic with a hook on top that is used to store an item of clothing by hanging."], "cockpit": ["A space, usually enclosed, in the forward fuselage of an airplane containing the flying controls, instrument panel, and seats for the pilot and copilot."], "visualize": ["To envisage, or form a mental picture.", "To make (something) visible."], "evolve": ["To change over time; to undergo development or evolution."], "evolutional": ["Of or pertaining to evolution."], "evolutionary": ["Of or pertaining to evolution."], "evolutionism": ["Any of several theories that explain the evolution of systems or organisms."], "fitness": ["The quality of being suitable.", "The ability to perform a function.", "Good physical condition; the condition of being in shape or in condition."], "replication": ["Process by which an object, person, place or idea may be copied mimicked or reproduced."], "regulatory": ["Of or pertaining to regulation."], "functional": ["In good working order.", "Having semantics defined purely in terms of mathematical functions, without side-effects."], "molecular": ["Pertaining to the smallest unit into which a substance can be divided without a change in its chemical nature."], "molecular formula": ["A chemical formula that shows the actual number and kinds of atoms present in a molecule of a compound."], "molecular evolution": ["The process of evolution at the scale of DNA, RNA, and proteins."], "molecular genetics": ["The area of knowledge concerned with the genetic aspects of molecular biology, especially with DNA, RNA and protein molecules."], "molecular clock": ["A technique in molecular evolution to relate the divergence time of two species diverged to the number of molecular differences measured between the species' DNA sequences or proteins. (source: Wikipedia)"], "replicate": ["To make a copy (replica) of.", "To make or do or perform again."], "protocell": ["A self-organized, endogenously ordered, spherical collection of polypeptides proposed as a stepping-stone to the origin of life."], "structural": ["Relating to or having or characterized by structure.", "Pertaining to geological structure."], "speciation": ["The development of one or more species from an existing species. (source: FAO)"], "suicidal": ["Very dangerous and likely to lead to disaster or death.", "Inclined to commit suicide."], "death drive": ["In Freudian psychoanalytic theory, the drive towards death, destruction and non-existence."], "suicidal tendency": ["A tendency to commit suicide."], "silver medal": ["The award presented after winning second place in a sporting event."], "bronze medal": ["The award presented after winning third place in a sporting event."], "sadden": ["To make sad.", "To become sad."], "plasticity": ["The quality or state of being plastic."], "Susan": ["Female first name."], "understood": ["Of things which have been comprehended."], "phenotypic": ["Of or relating to a phenotype."], "reaction": ["An action or statement in response to a stimulus or other event."], "scenario": ["An outline of an hypothesized chain of events.", "A synthetic description of an event or series of actions and events."], "toward": ["In the direction of."], "towards": ["In the direction of."], "replicator": ["Something capable of self-replication, like a gene or meme."], "meme": ["A cultural item or idea that is transmitted by repetition in a manner analogous to the propagation of biological genes."], "rewriting": ["A wide range of potentially non-deterministic methods of replacing subterms of a formula with other terms."], "hallmark": ["A distinguishing feature."], "illustrate": ["To provide a book or other publication with drawings and pictures.", "To clarify something by giving, or serving as, an example or a comparison."], "investigate": ["To look into carefully in order to uncover (find) facts or information."], "likely": ["Having a good chance to happen."], "phenomenom": ["An appearance or occurrence, usually one evoking curiosity."], "neutral": ["Not taking sides in a conflict such as war."], "neurocontroller": ["An artificial network acting as cognitive system within a body, like a robot or a physical computer simulations of such."], "multidimensional": ["Having more than two dimensions."], "multicellular": ["Composed of more than one cell."], "collective": ["Formed by gathering or collecting."], "Darwinian": ["Relating to the to Charles Darwin's theory of evolution.", "Adhering to Darwin's theory of the origin of species."], "classifier": ["Someone who classifies."], "creature": ["A living organism characterized by voluntary movement."], "auditory": ["Of, relating to, or experienced through hearing.", "Of or pertaining to the sense of hearing."], "auditory system": ["The anatomical system that transfers energy from sound waves to neural activity for processing by the auditory centres in the brain."], "evolvability": ["The ability of a particular organism to evolve."], "emergent": ["Protruding above the water surface.", "Becoming prominent."], "Agnes": ["Female first name."], "rewrite": ["To modify or improve something previously written.", "To write again.", "The act of rewriting something."], "miswrite": ["To make an error when writing."], "mistype": ["To make a mistake when writing on a keyboard."], "systematically": ["In a systematic and organized manner."], "unsystematically": ["In an unsystematic and unorganized manner."], "revision": ["The act of revising.", "The act of altering.", "The act of rewriting something."], "rescript": ["The act of rewriting something."], "propositional": ["Relating to, or limited to, propositions."], "propositional calculus": ["The formal logic system used to define the true or false values of objects."], "planner": ["A notebook in which one keeps notations of appointments and contacts.", "A person who makes plans."], "solve": ["To find an answer or solution to a problem or question."], "personality": ["A set of qualities that make a person (or thing) distinct from another."], "causal": ["Of, relating to, or being a cause of something."], "boolean": ["Pertaining to data items that can have \u201ctrue\u201d and \u201cfalse\u201d (or, equivalently, 1 and 0 respectively) as their only possible values and to operations on such values."], "combinatorial": ["Relating to or involving combinations."], "clause": ["Something that is stated as a condition for an agreement.", "A group of words that contains a verb and its subject and is used as a part of a sentence.", "A provision or condition affecting the terms of a contract."], "empirically": ["Based on experience as opposed to theoretical knowledge."], "graphical": ["Written, drawn or engraved."], "Markovian": ["Exhibiting the Markov property, in which the conditional probability distribution of future states of the process, given the present state and all past states, depends only upon the present state and not on any past states."], "qualitative": ["Based on observable qualities."], "transliteration": ["The practice of transcribing a word or text written in one writing system into another writing system or system of rules for such practice."], "presence": ["The fact or condition of being present."], "solver": ["One who solves."], "Greek underworld": ["In Greek mythology, the underworld and abode of the dead."], "Tarama-Minna": ["A dialect of the Miyako language."], "along with": ["Used to connect two homogeneous words or phrases."], "Hateruma": ["An island in the Yaeyama District of Okinawa Prefecture, Japan."], "Hateruma-jima": ["An island in the Yaeyama District of Okinawa Prefecture, Japan."], "Ishigaki": ["An island west of Okinawa Hont\u014d and the second-largest island of the Yaeyama Island group. It is also the name of the main and only city on the islands."], "Yaeyama Islands": ["An archipelago in the Okinawa Prefecture, Japan."], "Kohamajima": ["An island in the Yaeyama Islands group at the southwestern end of the Ryukyu Islands chain, and part of Okinawa Prefecture, Japan."], "Yaeyama Written": ["The written forms of the Yaeyama language."], "Yonaguni Written": ["The written forms of the Yonaguni language."], "Amami Okinawago": ["ISO 639-6 entity"], "coequal": ["Equal with one another, as in rank or size."], "Berlinerisch": ["A dialect spoken in Berlin and its surroundings."], "Berlinisch": ["A dialect spoken in Berlin and its surroundings."], "coercion": ["The use of force or intimidation to obtain compliance."], "coexistence": ["A policy of living peacefully with other nations, religions, etc., despite fundamental disagreements."], "coffee break": ["A break from work for coffee, a snack, etc."], "coffee grounds": ["The dregs remaining after brewing coffee."], "coffin": ["The box in which the body of a dead person is placed for burial."], "representations": ["Plural form of representation."], "relax": ["To make something loose.", "To amuse oneself in a light, frolicsome manner.", "To become less tense, formal, or restrained, and assume a friendlier attitude.", "To become less tense, rest, or take one's ease."], "formalism": ["Strict observance of the established rules.", "An emphasis on form over content or meaning in the arts, literature, or philosophy.", "One of several alternative computational paradigms for a given theory."], "welfare": ["Health, happiness and prosperity."], "reward": ["Something of value given in return for an act.", "Benefit resulting from some event or action.", "The result of an action, whether good or bad."], "regression": ["Retreat of the sea from land areas.", "A defense mechanism leading to the temporary reversion of the ego to an earlier stage of development rather than handling unacceptable impulses in a more adult way.", "A statistical technique used to find the linear relationship between an outcome (dependent) variable and several predictor (independent) variables."], "regression testing": ["Any type of software testing which seeks to uncover software regressions. Such regressions occur whenever software functionality that was previously working correctly stops working as intended. Typically regressions occur as an unintended consequence of program changes. (source: Wikipedia)"], "progression": ["A forward movement in a particular direction.", "A series with a definite pattern of advance."], "intractable problem": ["A problem that can be solved, but not fast enough for the solution to be usable."], "marginal": ["Of, relating to, or located at a margin or an edge."], "clique": ["An exclusive circle of people with a common purpose."], "anaphora": ["An instance of an expression referring to another."], "bipolar": ["Possessing two poles.", "Of or relating to manic depressive illness."], "bipolar disorder": ["A mood disorder with episodes of both depression and mania."], "convex": ["Raised or curved like the surface of a sphere."], "coalescence": ["The fusion or blending of parts."], "conformant": ["In accordance with a set of specifications."], "conjunctive": ["Conjugation form of a verb.", "Serving or tending to connect."], "conjunctiva": ["The delicate membrane that covers the front of the eyeball and lines the inside of the eyelids."], "conjunctive normal form": ["A conjunction of clauses, where clauses are literals or disjunctions of literals."], "disjunction": ["A logical operator that results in true when any of its operands is true."], "disjunctive": ["Serving or tending to divide or separate."], "disjunctive normal form": ["A disjunction of clauses, where clauses are liteals or conjunctions of literals."], "convergence": ["The act of moving toward union or uniformity.", "The simultaneous inward movement of both eyes toward each other, usually in an effort to maintain single binocular vision when viewing an object.", "A process by which unrelated organisms independently acquire similar characteristics while evolving in separate ecosystems."], "consequence": ["Condition that which follows something on which it depends."], "outcome": ["Condition that which follows something on which it depends."], "upshot": ["Condition that which follows something on which it depends."], "constructive": ["Carefully considered and meant to be helpful."], "decentralized": ["Related to an organizational structure in which decision-making authority is not located at the center but is dispersed."], "decentralize": ["To distribute responsibility from a central point to several local points of control."], "desirable": ["Worth having."], "examine": ["To observe or inspect carefully or critically."], "exponentially": ["(Growing or decaying) in an exponential manner."], "granularity": ["The quality of being composed of relatively large particles.", "The smallest size that can be set or addressed."], "graininess": ["The quality of being composed of relatively large particles."], "coarseness": ["The quality of being composed of relatively large particles."], "infinite": ["Having no end, limits or boundaries in time or space or extent or magnitude."], "cogency": ["The quality of being cogent."], "integer": ["A numeric value with no decimal places.", "A data type which stores integer values."], "interesting": ["Arousing or holding the attention or interest of someone."], "naturally": ["In a natural or normal manner.", "As would be expected."], "nondeterministic": ["Unpredictable in terms of observable antecedents and known laws."], "optimize": ["Make optimal."], "reasonable": ["Showing reason or sound judgment.", "Characterized by equity or fairness."], "recognition": ["The act of recognizing or the condition of being recognized.", "Approval."], "satisfying": ["That satisfies, gratifies, pleases or comforts."], "strongly": ["In a strong or powerful manner."], "transitive relation": ["In mathematics, a binary relation R over a set X is transitive if whenever an element a is related to an element b, and b is in turn related to an element c, then a is also related to c."], "unhealthy": ["Posing a risk to health."], "cogent": ["Powerfully persuasive."], "cogitate": ["To think carefully."], "cogitation": ["A carefully considered thought about something."], "cognoscente": ["A person with superior, usually specialized knowledge or highly refined taste."], "cogwheel": ["A wheel with cogs or teeth."], "gear wheel": ["A wheel with cogs or teeth."], "Thai Spoken": ["The dialects of the Thai language."], "cohabit": ["To live together as a couple without being married."], "Thai alphabet": ["An alphabet used to write the Thai language and other minority languages in Thailand. It has forty-four consonants, fifteen vowel symbols that combine into at least twenty-eight vowel forms, and four tone marks."], "serviceability": ["Those actions related to the reliability, maintainability, and affordability of component implementations, and the integrated logistics support and configuration management required."], "re-engineering": ["An engineering process to transform an existing system into a new form through a combination of reverse engineering, restructuring, and forward engineering."], "black box testing": ["A method of test design that takes an external perspective of the test object to derive test cases."], "black-box testing": ["A method of test design that takes an external perspective of the test object to derive test cases."], "acceptance testing": ["Black box testing performed on a system (e.g. software, lots of manufactured mechanical parts, or batches of chemical products) prior to its delivery."], "accidental complexity": ["Complexity that arises in computer programs or their development process (computer programming) which is non-essential to the problem to be solved."], "adaptive software": ["A type of specialized software that is programmed or created to respond to changes in the needs or desires of the user."], "agile development": ["A methodology for software development that promotes development iterations, open collaboration, and adaptability throughout the life-cycle of the project."], "agile method": ["A methodology for software development that promotes development iterations, open collaboration, and adaptability throughout the life-cycle of the project."], "antipattern": ["A design pattern that appears obvious but is ineffective or far from optimal in practice."], "anti-pattern": ["A design pattern that appears obvious but is ineffective or far from optimal in practice."], "domain-specific language": ["A programming language or specification language dedicated to a particular problem domain, a particular problem representation technique, and/or a particular solution technique. (source: Wikipedia)"], "audio processing": ["The processing of a representation of auditory signals, or sound."], "audio signal processing": ["The processing of a representation of auditory signals, or sound."], "automatic programming": ["A type of computer programming in which some mechanism generates a computer program rather than have human programmers write the code. (source: Wikipedia)"], "automatic test generation": ["The derivation of test cases from an object to be tested."], "roboticization": ["The act or practice of using machines that need little or no human control, especially to replace workers."], "autonomic computing": ["The development of computer systems capable of self-management, to overcome the rapidly growing complexity of computing systems management, and to reduce the barrier that that complexity poses to further growth."], "Asimov's Laws of Robotics": ["A set of three rules written by Isaac Asimov, which almost all positronic robots appearing in his fiction must obey."], "binary decision diagram": ["A data structure that is used to represent a Boolean function."], "BDD": ["A data structure that is used to represent a Boolean function."], "behavior-driven development": ["An agile software development technique in which the focus is the language and interactions used in the process of software development."], "Behavior Driven Development": ["An agile software development technique in which the focus is the language and interactions used in the process of software development."], "best practice": ["An idea that asserts that there is a technique, method, process, activity, incentive or reward that is more effective at delivering a particular outcome than any other technique, method, process, etc. (source: Wikipedia)"], "business model": ["A broad range of informal and formal descriptions that are used by enterprises to represent various aspects of its business, including its purpose, offerings, strategies, infrastructure, organizational structures, trading practices, and operational processes and policies."], "Business Process Execution Language": ["A language for specifying business process behavior based on Web Services."], "BPEL": ["A language for specifying business process behavior based on Web Services."], "business value": ["An informal term that includes all forms of value that determine the health and well-being of the firm in the long-run."], "Web service": ["A software system designed to support interoperable machine-to-machine interaction over a network. (source: W3C)"], "CMMI": ["A process improvement approach that provides organizations with the essential elements of effective processes, covering now two areas of interest: Development and Acquisition."], "Capability Maturity Model Integration": ["A process improvement approach that provides organizations with the essential elements of effective processes, covering now two areas of interest: Development and Acquisition."], "COCOMO": ["An algorithmic Software Cost Estimation Model which uses a basic regression formula, with parameters that are derived from historical project data and current project characteristics."], "code of ethics": ["A code of professional responsibility, which may dispense with difficult issues of what behavior is considered \"ethical\"."], "ethical code": ["A code of professional responsibility, which may dispense with difficult issues of what behavior is considered \"ethical\"."], "ethic": ["A code of professional responsibility, which may dispense with difficult issues of what behavior is considered \"ethical\"."], "deontology": ["The ethical study of morals, duties, obligations, and rights, with an approach focusing on the rightness or wrongness of actions themselves and not on the goodness or badness of the consequences of those actions. (source: Olson)"], "deontological ethics": ["The ethical study of morals, duties, obligations, and rights, with an approach focusing on the rightness or wrongness of actions themselves and not on the goodness or badness of the consequences of those actions. (source: Olson)"], "deontological": ["Of or relating to deontology."], "software quality": ["A measure of how well software is designed (quality of design), and how well the software conforms to that design (quality of conformance)."], "code quality": ["A measure of how well software is designed (quality of design), and how well the software conforms to that design (quality of conformance)."], "coding": ["The act of writing a computer program.", "The process of encoding or decoding."], "computer programming": ["The act of writing a computer program."], "cognitive bias": ["A person's tendency to make errors in judgment based on cognitive factors. It is a phenomenon studied in cognitive science and social psychology."], "collaboration": ["The process by which people or organizations work together to accomplish a common mission."], "component-based software engineering": ["A branch of the software engineering discipline, with emphasis on decomposition of the engineered systems into functional or logical components with well-defined interfaces used for communication across the components."], "component-based development": ["A branch of the software engineering discipline, with emphasis on decomposition of the engineered systems into functional or logical components with well-defined interfaces used for communication across the components."], "computational science": ["The field of study concerned with constructing mathematical models and numerical solution techniques and using computers to analyse and solve scientific, social scientific and engineering problems. (source: Wikipedia)"], "scientific computing": ["The field of study concerned with constructing mathematical models and numerical solution techniques and using computers to analyse and solve scientific, social scientific and engineering problems. (source: Wikipedia)"], "cross-platform": ["Computer programs, operating systems, computer languages, programming languages, or other computer software and their implementations which can be made to work on multiple computer platforms."], "multi-platform": ["Computer programs, operating systems, computer languages, programming languages, or other computer software and their implementations which can be made to work on multiple computer platforms."], "decision making": ["The process of making an informed choice among the alternative actions that are possible."], "cost engineering": ["The area of engineering practice where engineering judgment and experience are used in the application of scientific principles and techniques to problems of cost estimating, cost control, business planning and management science, profitability analysis, project management, and planning and scheduling. (source: AACE)"], "cost estimation": ["The area of engineering practice where engineering judgment and experience are used in the application of scientific principles and techniques to problems of cost estimating, cost control, business planning and management science, profitability analysis, project management, and planning and scheduling. (source: AACE)"], "cohabitation agreement": ["A form of legal agreement reached between a couple who have chosen to live together."], "dynamic language": ["A class of high level programming languages that execute at runtime many common behaviors that other languages might perform during compilation, if at all."], "coiffure": ["A style of fashion of wearing the hair."], "tit": ["The fleshy organ on the chest of a sexually mature human female containing mammary glands.", "A small passerine bird of the genus Parus or the family Paridae, common in the northern hemisphere."], "Reatino-Aquilano": ["A dialect of the Neapolitan language."], "Iaith Y Cofis": ["A dialect of the Welsh language."], "Cymraeg-C": ["A dialect of the Welsh language."], "Iaith Ynys M\u00f4n": ["A dialect of the Welsh language."], "T\u00fcrk\u00e7e-Formal": ["Turkish dialect."], "T\u00fcrk\u00e7e-Generalisd": ["Turkish dialect."], "T\u00fcrk\u00e7e-NW": ["Turkish dialect."], "coincidence": ["An event that might have been arranged although it was really accidental."], "coincidental": ["Occurring as or resulting from coincidence."], "colander": ["A bowl-shaped kitchen utensil with holes in it used for draining food."], "dispassionate": ["Without emotion or feeling."], "self-pity": ["Pity with oneself, self-indulgent preoccupation with one's own misfortunes and sorrows."], "self-pitying": ["Feeling pity with oneself."], "bullet hole": ["Spot where a bullet has penetrated and created a dent."], "cold-hearted": ["Lacking sympathy or feeling."], "colic": ["Severe pain in the abdomen."], "collaborator": ["Someone who collaborates with an enemy occupying force."], "collapsible": ["Able to be folded up."], "collar": ["The part of a garment that encircles the neck."], "collateral": ["Property acceptable as security for a loan or other obligation."], "collector": ["A person or thing that collects."], "collide": ["To strike together with great force.", "(For clothes) To not look good together.", "To cause to collide."], "collie": ["An active and agile, long-coated sheepdog."], "Norden": ["A town in the district of Aurich, in Lower Saxony, Germany."], "collier": ["Someone who works in a coal mine."], "coal miner": ["Someone who works in a coal mine."], "colliery": ["A workplace consisting of a coal mine plus all the buildings and equipment connected with it."], "colloquy": ["A formal conversation."], "collusion": ["A secret agreement between two or more parties for a fraudulent, illegal, or deceitful purpose."], "unprecedented": ["Without precedent."], "unparalleled": ["Without precedent."], "unexampled": ["Without precedent."], "colonel": ["An army officer in charge of a regiment."], "colonial": ["Of, concerning, or pertaining to a colony."], "murder victim": ["The victim of a murder."], "silk scarf": ["A scarf made of silk."], "colossal": ["Extraordinarily great in size, extent, or degree."], "pashmina scarf": ["A long and wide scarf with fringes made of pashmina."], "colossus": ["Anything colossal, gigantic, or very powerful."], "Buryats": ["The largest ethnic minority group in Siberia, numbering approximately 436,000, mainly concentrated in their homeland, the Buryat Republic, a federal subject of Russia."], "Buryat": ["A Mongolic macrolanguage spoken by the Buryats. The majority live in Russia along the northern border of Mongolia and speak Russia Buriat. There are also smaller, more distinct, communities in both Mongolia and the People's Republic of China."], "Buryat-Formal": ["A dialect of the Mongolia Buriat language."], "Buryat-S": ["A dialect of the Russia Buriat language."], "Russia Buriat Written": ["The written forms of the Russia Buriat language."], "Buriat Script": ["A variant of the Mongolian Script used to write the Russia Buriat language."], "Mongolian script": ["The first of many writing systems created for the Mongolian language, and the most successful until the introduction of Cyrillic to Mongolia in 1946. With minor modification, it is used in Inner Mongolia in China to this day to write Mongolian and the Evenk language.", "A script predominantly used to write the Monglolian language."], "China Buriat Written": ["The written forms of the China Buriat language."], "Mauritian Creole": ["A creole language spoken in Mauritius."], "Kreol Morisyen": ["A creole language spoken in Mauritius."], "French Guiana Creole": ["A French-lexified creole language spoken in French Guiana, and to a lesser degree, in Suriname and Guyana."], "Orlhagu\u00e9s-Carlad\u00e9senc": ["A dialect of the Languedocian language."], "combatant": ["A person who is actively engaged in battle, conflict or warfare.", "A person who is fighting.", "A person who fights or struggles using physical force or weapon."], "widowed": ["Single because of death of the spouse."], "combative": ["Having or showing a ready disposition to fight.", "Tending to argument or strife."], "orphaned": ["Having no living parents."], "combination lock": ["A lock that can be opened only by turning dials in a special sequence."], "combustion chamber": ["A chamber, as in an engine or boiler, where combustion occurs."], "comeback": ["A return to a former higher rank, popularity, position etc."], "Tamil script": ["A Vatteluttu script that is used to write the Tamil language."], "Tamil Written Tamil Script Historical": ["A written form of the Tamil language."], "insubstantial": ["Lacking material form or substance."], "unsubstantial": ["Lacking material form or substance."], "unreal": ["Lacking material form or substance."], "inlet": ["A broad bay formed by an indentation (a bight) in the shoreline."], "comely": ["Pleasant to look at, especially as conforming to ideals of form and proportion."], "handsome": ["Pleasant to look at, especially as conforming to ideals of form and proportion."], "good-looking": ["Pleasant to look at, especially as conforming to ideals of form and proportion."], "comer": ["One that arrives or comes."], "comfortless": ["Providing physical discomfort"], "commander": ["A person who commands."], "commanding": ["Being in command."], "commandment": ["A command given by God, especially one of the ten given to Moses."], "West Central Oromo Written Ethiopic Script": ["A written form of the West Central Oromo language."], "babble": ["Something said, which noone can understand.", "To chatter thoughtlessly or indiscreetly."], "Assamese script": ["A variant of the Eastern Nagari script also used for Bengali and Bishnupriya Manipuri."], "Chalti-Bhasa": ["A dialect of the Bengali language."], "commemorate": ["To keep alive the memory of someone or something, as in a ceremony."], "Andii": ["A language of Russia, part of the Avaro-Andi-Dido group of the Northeast Caucasian languages."], "Barjoulen-Draguignanen": ["A dialect of the Proven\u00e7al language."], "Fourcauquieren-Manousquin": ["A dialect of the Proven\u00e7al language."], "computational complexity theory": ["A branch of the theory of computation in computer science, investigates the problems related to the amounts of resources required for the execution of algorithms (e.g., execution time), and the inherent difficulty in providing efficient algorithms for specific computational problems. (source: Wikipedia)"], "cybersecurity": ["The field dealing with security issues connected to computers, such as privacy protection and measures against manipulation, data theft and sabotage."], "data visualization": ["The study of the visual representation of data, defined as information which has been abstracted in some schematic form, including attributes or variables for the units of information. (source: Wikipedia)"], "decision support system": ["A class of computer-based information systems including knowledge-based systems that support decision-making activities."], "DSS": ["A class of computer-based information systems including knowledge-based systems that support decision-making activities."], "database refactoring": ["A change to a database schema that improves its design while retaining both its behavioral and informational semantics."], "code refactoring": ["The process of changing a computer program's code to make it amenable to change, improve its readability, or simplify its structure, while preserving its existing functionality."], "decoupling": ["The general phenomenon in which the interactions between some physical objects (such as elementary particles) disappear.", "The preventing of undesired coupling between subsystems via the power supply connections.", "The separation of two railroad cars by manipulation of their couplers."], "design by contract": ["An approach to designing computer software that prescribes that software designers should define precise verifiable interface specifications for software components based upon the theory of abstract data types and the conceptual metaphor of a business contract."], "programming by contract": ["An approach to designing computer software that prescribes that software designers should define precise verifiable interface specifications for software components based upon the theory of abstract data types and the conceptual metaphor of a business contract."], "design pattern": ["A formal way of documenting a solution to a design problem in a particular field of expertise.", "A general reusable solution to a commonly occurring problem in software design."], "domain-driven design": ["An approach to the design of software, based on the two premises that complex domain designs should be based on a model, and that, for most software projects, the primary focus should be on the domain and domain logic (as opposed to being the particular technology used to implement the system)."], "ebXML": ["A family of XML based standards whose mission is to provide an open, XML-based infrastructure that enables the global use of electronic business information in an interoperable, secure, and consistent manner by all trading partners."], "Electronic Business using eXtensible Markup Language": ["A family of XML based standards whose mission is to provide an open, XML-based infrastructure that enables the global use of electronic business information in an interoperable, secure, and consistent manner by all trading partners."], "Eclipse": ["A software platform comprising extensible application frameworks, tools and a runtime library for software development and management."], "effort estimation": ["The ability to accurately estimate the time and/or cost taken for a project to come in to its successful conclusion."], "is located in the": ["Indicates a relation of a subject with a surrounding environment"], "empiricism": ["Empirical method or practice."], "enterprise resource planning": ["The planning of how business resources (materials, employees, customers etc.) are acquired and moved from one state to another."], "ERP": ["The planning of how business resources (materials, employees, customers etc.) are acquired and moved from one state to another."], "Management Information System": ["A system designed to provide information primarily concerned with the administrative functions associated with the provision and utilization of services; also includes program planning, etc. (source: UMLS)"], "knowledge base": ["A special kind of database for knowledge management that provides the means for the computerized collection, organization, and retrieval of knowledge."], "supply chain management": ["The process of planning, implementing and controlling the operations of the supply chain as efficiently as possible."], "SCM": ["The process of planning, implementing and controlling the operations of the supply chain as efficiently as possible."], "supply chain": ["The system of organizations, people, technology, activities, information and resources involved in moving a product or service from supplier to customer."], "logistics network": ["The system of organizations, people, technology, activities, information and resources involved in moving a product or service from supplier to customer."], "experimentation": ["The process of testing a hypothesis by collecting data under controlled, repeatable conditions."], "Extreme Programming": ["A software engineering methodology (and a form of agile software development) prescribing a set of daily stakeholder practices that embody and encourage traditional software engineering practices taken to so-called \"extreme\" levels."], "pair programming": ["A software development technique in which two programmers work together at one keyboard. One types in code while the other reviews each line of code as it's typed in. (source: Wikipedia)"], "test-driven development": ["A software development technique consisting of short iterations where new test cases covering the desired improvement or new functionality are written first, then the production code necessary to pass the tests is implemented, and finally the software is refactored to accommodate changes. (source: Wikipedia)"], "unit testing": ["A method of testing that verifies the individual units of source code are working properly."], "JUnit": ["A unit testing framework for the Java programming language."], "integrated development environment": ["A software application that provides comprehensive facilities to computer programmers for software development."], "IDE": ["A software application that provides comprehensive facilities to computer programmers for software development."], "software license": ["A legal instrument governing the usage or redistribution of copyright protected software."], "GNU GPL": ["A widely used free software license, originally written by Richard Stallman for the GNU project."], "functional programming": ["A programming paradigm that treats computation as the evaluation of mathematical functions and avoids state and mutable data."], "programming paradigm": ["A fundamental style of computer programming."], "logic programming": ["The use of mathematical logic for computer programming."], "functional language": ["A language that supports and encourages functional programming."], "commend": ["Express approval of.", "To express a good opinion of."], "commendable": ["Worthy of high praise."], "game design": ["The process of designing the content and rules of a game."], "generative programming": ["A type of computer programming in which some mechanism generates a computer program rather than have human programmers write the code. (source: Wikipedia)"], "graphical user interface": ["A type of user interface which allows people to interact with electronic devices like computers, hand-held devices (MP3 Players, Portable Media Players, Gaming devices), household appliances and office equipment."], "GUI": ["A type of user interface which allows people to interact with electronic devices like computers, hand-held devices (MP3 Players, Portable Media Players, Gaming devices), household appliances and office equipment."], "Google Web Toolkit": ["An open source Java software development framework that allows web developers to create Ajax applications in Java."], "GWT": ["An open source Java software development framework that allows web developers to create Ajax applications in Java."], "high-performance computing": ["The use of supercomputers and computer clusters to solve advanced computing problems."], "HPC": ["The use of supercomputers and computer clusters to solve advanced computing problems."], "Hubble": ["A space telescope that was carried into orbit by a Space Shuttle in April 1990."], "Hubble Space Telescope": ["A space telescope that was carried into orbit by a Space Shuttle in April 1990."], "incremental": ["Increasing gradually by regular degrees or additions."], "information visualization": ["The interdisciplinary study of the visual representation of large-scale collections of non-numerical information, such as files and lines of code in software systems, and the use of graphical techniques to help people understand and analyze data. (source: Wikipedia)"], "intuition": ["Instinctive knowledge without the use of rational processes.", "An impression that something might be the case."], "iPhone": ["An internet connected multimedia smartphone with a flush multi-touch screen and a minimal hardware interface."], "JavaScript": ["A scripting language most often used for client-side web development."], "PHP": ["A computer scripting language originally designed for producing dynamic web pages."], "Balkan Romani Written": ["The written forms of the Balkan Romani language."], "commendation": ["The act of commending."], "Sinte Romani": ["A variety of Romani spoken by the Sinti people in Germany, France, Austria, northern Italy and other adjacent regions."], "Cal\u00f3": ["A mixed language based on Spanish grammar, with an adstratum of Romani lexical items spoken by the Spanish, Portuguese, French, Bresilian and Catalan Romanies."], "legacy code": ["Source code that relates to a no-longer supported or manufactured operating system or other computer technology."], "markup language": ["An artificial language using a set of annotations to text that give instructions regarding how text is to be displayed."], "maven": ["A software tool for Java project management and build automation based on an XML format.", "A trusted expert in a particular field, who seeks to pass knowledge on to others."], "intenditore": ["A trusted expert in a particular field, who seeks to pass knowledge on to others."], "Maven": ["A software tool for Java project management and build automation based on an XML format."], "model-based testing": ["Software testing in which test cases are derived in whole or in part from a model that describes some (usually functional) aspects of the system under test."], "multitouch": ["A set of interaction techniques which allow computer users to control graphical applications with several fingers."], "multi-touch": ["A set of interaction techniques which allow computer users to control graphical applications with several fingers."], "functional requirement": ["A particular behavior or functionality required in a software system."], "non-functional requirement": ["A requirement which specify a criterion that can be used to judge the operation of a system, rather than specific behaviors."], "nonfunctional requirement": ["A requirement which specify a criterion that can be used to judge the operation of a system, rather than specific behaviors."], "outsourcing": ["Subcontracting a process, such as product design or manufacturing, to a third-party company."], "process control": ["A statistics and engineering discipline that deals with architectures, mechanisms, and algorithms for controlling the output of a specific process."], "process improvement": ["A series of actions taken to identify, analyze and improve existing processes within an organization to meet new goals and objectives."], "benchmarking": ["The process of comparing the cost, time or quality of what one organisation does against what another organisation does."], "Total Quality Management": ["A business management strategy aimed at embedding awareness of quality in all organizational processes."], "TQM": ["A business management strategy aimed at embedding awareness of quality in all organizational processes."], "project management": ["The discipline of planning, organizing, and managing resources to bring about the successful completion of specific project goals and objectives."], "Python": ["A general-purpose, high-level programming language."], "quality attribute": ["A requirement which specify a criterion that can be used to judge the operation of a system, rather than specific behaviors."], "insist": ["Be emphatic or resolute and refuse to budge."], "follower": ["Someone who believes and helps to spread the doctrine of another."], "permanent": ["Without break, cessation or interruption."], "run-up": ["The approach run during which an athlete gathers speed."], "suppose": ["To have as opinion, belief, or idea.", "To express a supposition.", "To believe especially on uncertain or tentative grounds."], "sorrel": ["Perennial herbaceous plant with edible leaves."], "spinach dock": ["Perennial herbaceous plant with edible leaves."], "common sorrel": ["Perennial herbaceous plant with edible leaves."], "pizza dough": ["Dough made of flour, water, yeast and sometimes salt, olive oil and sugar which is used to bake pizzas."], "contraception": ["The intentional prevention of pregnancy through the use of various devices, practices, surgical procedures or medication."], "dessication": ["The process of drying out."], "readjustment": ["The act of adjusting again to changed circumstances."], "poster": ["A sign posted in a public place as an advertisement."], "placard": ["A sign posted in a public place as an advertisement."], "bread dough": ["Dough made of flour, water, yeast or sourdough and other ingredients which is used to bake bread."], "rejoin": ["To join together again."], "reunite": ["To join together again."], "return to": ["To join together again."], "incite": ["To urge someone to do something.", "To urge on; to cause to act.", "To give an incentive for action."], "take on": ["To give someone work or a job.", "To contend against an opponent in a sport, game, or battle.", "To take on titles, offices, duties, responsibilities.", "To take on a certain form, attribute, or aspect.", "To admit into a group or community."], "commentator": ["A person who makes a living reporting on news and current events."], "shocking": ["Highly disturbing emotionally."], "recruit": ["To engage persons for military service.", "To have one's name formally recorded as a participant or member."], "recruitment": ["The act or process of recruiting."], "prestige": ["Reputation or influence due to success."], "considerable": ["Enough to be estimated or measured."], "terrestrial": ["Relating to Earth or its inhabitants."], "nabothian cyst": ["A benign mucus-filled cyst that develops on the cervix when a mucous gland is obstructed."], "nabothian follicle": ["A benign mucus-filled cyst that develops on the cervix when a mucous gland is obstructed."], "hesitation": ["A delay due to uncertainty of mind or fear.", "A certain degree of unwillingness.", "Indecision in speech or action."], "seism": ["A shaking of the Earth's surface; an earthquake or tremor."], "tremor": ["An unintentional, somewhat rhythmic, muscle movement involving to-and-fro movements (oscillations) of one or more parts of the body.", "A small earthquake."], "bait": ["Anything that serves as an enticement."], "subscriber": ["Someone who contracts to receive and pay for a service or a certain number of issues of a publication."], "diacritical": ["Capable of distinguishing."], "subscription": ["The right to receive a periodical for a sum paid, usually for an agreed number of issues.", "Agreement expressed by (or as if expressed by) signing your name.", "The act of signing your name; writing your signature (as on a document)."], "respectable": ["Having a good reputation or character."], "successive": ["Following one after the other."], "budding knife": ["A knife designed for budding."], "move back": ["To travel backward."], "rear-view mirror": ["A type of mirror found on automobiles and other vehicles, designed to allow the driver to see an area behind the vehicle."], "respite": ["A usually short interval of rest or relief.", "An interruption in the intensity or amount of something."], "phonebook": ["A directory containing an alphabetical list of telephone subscribers and their telephone numbers."], "telephone directory": ["A directory containing an alphabetical list of telephone subscribers and their telephone numbers."], "phone book": ["A directory containing an alphabetical list of telephone subscribers and their telephone numbers."], "advise": ["To inform (somebody) of something.", "To give counsel to.", "To give advice."], "descend": ["To go from a higher to a lower place.", "To come from; to be connected by a relationship of blood.", "To move downward and lower (e.g. of temperature values or falling objects)."], "go down": ["To cause a boat to go down in the water.", "To go from a higher to a lower place.", "[Of a heavenly body, essentially the Sun and the Moon] To disappear below the horizon of a planet or another heavenly body (most often the Earth).", "To move downward and lower (e.g. of temperature values or falling objects)."], "drift": ["To be carried along by currents of water or air.", "To move about aimlessly or without any destination."], "viviparous blenny": ["A predatory fish (Zoarces viviparus) whose young, which look like young eels, are born alive."], "emissary": ["A male person that negotiates something as a representative.", "A female person that negotiates something as a representative.", "A representative sent on a mission or errand."], "blocked": ["That is stopped or impeded the passage or movement through."], "cool down": ["To make cooler or colder."], "jealousy": ["A jealous feeling, disposition, state, or mood."], "depend on": ["To rely on for support; to be conditioned or contingent; to be connected with anything, as a cause of existence, or as a necessary condition."], "disapprove": ["Consider bad or wrong."], "radio-frequency identification": ["An automatic identification method, relying on storing and remotely retrieving data using devices called RFID tags or transponders."], "transponder": ["An automatic device that receives, amplifies, and retransmits a signal on a different frequency.", "A receiver-transmitter that will generate a reply signal upon proper electronic interrogation."], "requirements elicitation": ["The practice of obtaining the requirements of a system from users, customers and other stakeholders."], "requirements management": ["Management of the requirements of a project in order to identify inconsistencies between those requirements and the project's plans and work products. Its practices include change management and traceability."], "requirements specification": ["A complete description of the behavior of the system to be developed."], "scope": ["An area in which something acts or operates or has power or control.", "The sum total of all of the products of a project and their requirements or features.", "An enclosing context where values and expressions are associated."], "service-oriented architecture": ["A methodology for systems development and integration where functionality is grouped around business processes and packaged as interoperable services."], "SOA": ["A methodology for systems development and integration where functionality is grouped around business processes and packaged as interoperable services."], "cloud computing": ["Internet (the Cloud) based development and use of computer technology."], "silver bullet": ["A simple guaranteed solution for a difficult problem."], "software deployment": ["The set of all the activities that make a software system available for use."], "software design": ["A process of problem-solving and planning for a software solution."], "software development process": ["A structure imposed on the development of a software product."], "formal methods": ["Mathematically-based techniques for the specification, development and verification of software and hardware systems."], "programming tool": ["A program or application that software developers use to create, debug, maintain, or otherwise support other programs and applications."], "software development tool": ["A program or application that software developers use to create, debug, maintain, or otherwise support other programs and applications."], "software industry": ["The industry that comprises businesses involved in the development, maintenance and publication of computer software."], "software evolution": ["The process of developing software initially, then repeatedly updating it for various reasons."], "software factory": ["An organizational structure that specializes in producing computer software applications or software components according to specific, externally-defined end-user requirements through an assembly process."], "software maintenance": ["The modification of a software product after delivery to correct faults, to improve performance or other attributes, or to adapt the product to a modified environment. (source: Wikipedia)"], "code reuse": ["The use of existing software, or software knowledge, to build new software."], "software reuse": ["The use of existing software, or software knowledge, to build new software."], "native of": ["Born in a particular place or country."], "distract": ["To disturb in mind or make uneasy or cause to be worried or alarmed.", "Draw someone's attention away from something."], "divert": ["Draw someone's attention away from something.", "To withdraw (money) and move into a different location, often secretly and with dishonest intentions."], "statistical process control": ["An effective method of monitoring a process through the use of control charts which enable the use of objective criteria for distinguishing background variation from events of significance based on statistical techniques."], "strategic design": ["The application of future-orientated design principles in order to increase an organisation\u2019s innovative and competitive qualities."], "system architecture": ["The conceptual design that defines the structure and/or behavior of a system."], "systematic review": ["A literature review focused on a single question which tries to identify, appraise, select and synthesize all high quality research evidence relevant to that question."], "systems engineering": ["An interdisciplinary field of engineering that focuses on how complex engineering projects should be designed and managed."], "test automation": ["The use of software to control the execution of tests, the comparison of actual outcomes to predicted outcomes, the setting up of test preconditions, and other test control and test reporting functions."], "ubiquitous computing": ["A post-desktop model of human-computer interaction in which information processing has been thoroughly integrated into everyday objects and activities."], "version control": ["The management of multiple revisions of the same unit of information."], "revision control": ["The management of multiple revisions of the same unit of information."], "source control": ["The management of multiple revisions of the same unit of information."], "take from": ["To remove (e.g. money from an account) and carry elsewhere."], "software architecture": ["The various systems software tools used to construct and operate an application software product."], "quality of service": ["A collective measure of the level of service delivered to the customer."], "QoS": ["A collective measure of the level of service delivered to the customer."], "centric": ["Having or situated at or near a center."], "discipline": ["A subject area or branch of knowledge.", "To develop behaviour by instruction and practice.", "Controlled behavior resulting from disciplinary training."], "reasonably": ["In a reasonable manner."], "overview": ["A brief summary, as of a book or a presentation."], "markup": ["The amount by which price exceeds marginal cost.", "The identification of the components of a document to enable each component to be appropriately formatted, displayed, or used."], "driving": ["The controlled operation of a land vehicle."], "criteria": ["Standards on which a judgment or decision may be based."], "collaborative": ["Of, relating to, or done by collaboration."], "decreasing": ["Becoming less or smaller."], "advise against": ["To convince not to try or do."], "comatose": ["Affected with coma, characterized by coma."], "suppress": ["To cancel or eliminate officially."], "Sun": ["The particular star at the centre of our solar system, from which the Earth gets light and heat."], "preheat": ["To heat before using."], "interval": ["A period of time when something is available."], "abdicate": ["To renounce or relinquish a throne, right, power, claim, responsibility, or the like, in a formal manner."], "physiotherapist": ["A therapist who treats physical injury or dysfunction, usually with exercise."], "stupefy": ["To become stupid, to become intellectually dull.", "To make stupid, uncritical."], "deduction": ["The act or process of deducting.", "Reasoning from the general to the particular (or from cause to effect)."], "test suite": ["A collection of tests used to validate the behavior of a product."], "validation suite": ["A collection of tests used to validate the behavior of a product."], "imbroglio": ["A complicated situation"], "diverge": ["To differ in opinion, character, form, etc.", "To go in a different direction than what is expected."], "plot hole": ["A gap or inconsistency in a storyline which makes a story seem illogical."], "commercialism": ["The principles, practices, and spirit of commerce."], "commercialize": ["To apply methods of business for profit."], "commingle": ["To mix together different elements."], "commiseration": ["Deep awareness of the suffering of another, coupled with the wish to relieve it.", "An expression of sympathy with another's grief."], "diversify": ["To give variety to."], "cavalry": ["The military arm of service that fights while riding horses."], "intermittent": ["Being or succeeding by turns."], "greed": ["An excessive or inordinate desire of gain.", "Excessive desire for possessions and wealth.", "Excessive desire for something."], "greediness": ["Excessive desire for possessions and wealth."], "cupidity": ["An excessive or inordinate desire of gain.", "Excessive desire for possessions and wealth."], "covetousness": ["Excessive desire for possessions and wealth."], "air conditioner": ["A device that keeps air cool and dry."], "mammonism": ["Excessive desire for possessions and wealth.", "Excessive desire for money."], "conflate": ["To mix together different elements."], "immix": ["To mix together different elements."], "fuse": ["To mix together different elements.", "A device to prevent the overloading of an electrical circuit."], "coalesce": ["To mix together different elements."], "meld": ["To mix together different elements."], "greedy": ["Excessively desirous of something.", "Excessively desirous of money, wealth or possessions."], "moneygrubbing": ["Excessively desirous of money, wealth or possessions."], "cash-hungry": ["Excessively desirous of money, wealth or possessions."], "covetous": ["Excessively desirous of money, wealth or possessions."], "greed for power": ["Excessive pursuit of power."], "thirst for power": ["Excessive pursuit of power."], "machthungrig": ["Excessively pursuing power, obsessed with power."], "power hungry": ["Excessively pursuing power, obsessed with power."], "power-thirsty": ["Excessively pursuing power, obsessed with power.", "Consuming a lot of electricity."], "power thirsty": ["Excessively pursuing power, obsessed with power."], "commissionaire": ["A uniformed doorman."], "power-mad": ["Excessively pursuing power, obsessed with power."], "power-obsessed": ["Excessively pursuing power, obsessed with power."], "power- crazed": ["Excessively pursuing power, obsessed with power."], "Asterix": ["Main character of the Asterix comic strips, a brave, cunning warrior, of somewhat diminutive size."], "Obelix": ["Character of the Asterix comic strips, Asterix's closest friend a tall, obese man"], "Dogmatix": ["Character of the Asterix comic strips, Obelix's pet dog"], "Commons category": ["A category at Wikimedia Foundation's Commons, used for digital media files."], "magnetic field": ["A vector field that permeates space and which can exert a magnetic force on moving electric charges and on magnetic dipoles (such as permanent magnets)."], "Mir": ["A Soviet (and later Russian) orbital station. It was the world's first consistently inhabited long-term research station in space, constructed over a number of years with a modular design."], "parsec": ["The distance from which one arcsecond represents one astronomical unit. It equals to about 3.261633 light years."], "SI": ["A complete system of standardized units and prefixes for fundamental quantities of length, time, volume, mass, and so on."], "International System of Units": ["A complete system of standardized units and prefixes for fundamental quantities of length, time, volume, mass, and so on."], "allopathy": ["A method of treating disease with remedies that produce effects different from those caused by the disease itself."], "craftsman": ["Someone who carries out work that requires a certain speciality or skill.", "A person who practices or is highly skilled in a craft."], "door handle": ["A device attached to a door, the rotation of which permits the unlatching of a door."], "pineapple": ["Large sweet fleshy tropical fruit with a terminal tuft of stiff leaves."], "inorganic": ["Relating or belonging to the class of compounds not having a carbon basis."], "antique shop": ["A retail store specializing in the selling of antiques."], "whimsical": ["Given to fanciful idea."], "commissioned": ["Given official approval to act."], "authorized": ["Given official approval to act."], "tarmac": ["A mixture containing tar, used to make roads, pavements etc."], "automaton": ["A self-operating machine or mechanism."], "evening dress": ["Clothing worn for evening social events."], "commodore": ["A commissioned naval officer who ranks above a captain and below a rear admiral."], "Matricaria": ["(Matricaria) Genus of plants in the sunflower family (Asteraceae)"], "antique": ["An old collectible item, which is desirable because of its age, rarity, condition or other unique features."], "commotion": ["A disorderly outburst or tumult."], "bandit": ["A villainous or criminal person."], "moneyed aristocracy": ["Persons who ascended to the highest spheres of society because of their wealth."], "periodical publication": ["A printed work that appears regularly."], "force majeure": ["A non attributable impossibility to redeem an obligation."], "communicative": ["Inclined to communicate or impart."], "communiqu\u00e9": ["An official announcement."], "exile": ["A person banished from his or her native land.", "To send into exile.", "The act of expelling a person from his native land."], "barbaric": ["Of, relating to, or characteristic of barbarians."], "barricade": ["To render passage impossible by physical obstruction.", "A structure set up across a route of access to obstruct the passage of an enemy."], "comparable": ["Capable of being compared."], "thoughtful": ["Characterized by careful thought."], "wok": ["A cooking vessel in the shape of a hemisphere which is used in Chinese and Southeast Asian cusine.", "To cook using a wok."], "quirk": ["A persisting somewhat eccentric idea or habit of a person."], "hemisphere": ["Half of a sphere."], "\u00c9lys\u00e9e Palace": ["The official residence of the President of the French Republic in the center of paris."], "prostaglandin": ["Group of lipid compounds, containing 20 carbon atoms, including a 5-carbon ring, that are derived enzymatically from fatty acids and have important functions in the body."], "prostatectomy": ["Surgical removal of all or part of the prostate gland."], "prostatism": ["A set of urinary symptoms caused by an inflammation of the prostate gland."], "lower urinary tract symptoms": ["A set of urinary symptoms caused by an inflammation of the prostate gland."], "LUTS": ["A set of urinary symptoms caused by an inflammation of the prostate gland."], "powdered milk": ["Dairy product in powder form which is made by dehyrating milk."], "dehumidify": ["To remove moisture from."], "IEEE 802.11": ["A set of standards for wireless local area network (WLAN) computer communication, developed by the IEEE LAN/MAN Standards Committee (IEEE 802) in the 5 GHz and 2.4 GHz public spectrum bands."], "802.11": ["A set of standards for wireless local area network (WLAN) computer communication, developed by the IEEE LAN/MAN Standards Committee (IEEE 802) in the 5 GHz and 2.4 GHz public spectrum bands."], "access control": ["The ability to permit or deny the use of a particular resource by a particular entity."], "admission control": ["A network Quality of Service (QoS) procedure that determines how bandwidth and latency are allocated to streams with various requirements."], "application server": ["A server that hosts an API to expose Business Logic and Business Processes for use by other applications."], "BitTorrent": ["A peer-to-peer file sharing (P2P) communications protocol."], "Bluetooth": ["A wireless protocol utilizing short-range communications technology facilitating data transmission over short distances from fixed and/or mobile devices, creating wireless personal area networks (PANs)."], "Border Gateway Protocol": ["The core routing protocol of the Internet. It works by maintaining a table of IP networks or 'prefixes' which designate network reachability among autonomous systems."], "BGP": ["The core routing protocol of the Internet. It works by maintaining a table of IP networks or 'prefixes' which designate network reachability among autonomous systems."], "concurrency": ["A property of systems in which several computational processes are executing at the same time, and potentially interacting with each other. (source: Wikipedia)"], "distributed computing": ["A form of computing that deals with hardware and software systems containing more than one processing element or storage element, concurrent processes, or multiple programs, running under a loosely or tightly controlled regime."], "distributed systems": ["A form of computing that deals with hardware and software systems containing more than one processing element or storage element, concurrent processes, or multiple programs, running under a loosely or tightly controlled regime."], "e-commerce": ["The buying and selling of products or services over electronic systems such as the Internet and other computer networks."], "electronic commerce": ["The buying and selling of products or services over electronic systems such as the Internet and other computer networks."], "e-government": ["The use of internet technology as a platform for exchanging information, providing services and transacting with citizens, businesses, and other arms of government."], "electronic government": ["The use of internet technology as a platform for exchanging information, providing services and transacting with citizens, businesses, and other arms of government."], "e-learning": ["A type of education where the medium of instruction is computer technology."], "e-voting": ["Several different types of voting, embracing both electronic means of casting a vote and electronic means of counting votes."], "electronic voting": ["Several different types of voting, embracing both electronic means of casting a vote and electronic means of counting votes."], "event-driven architecture": ["A software architecture pattern promoting the production, detection, consumption of, and reaction to events."], "Erlang": ["A general-purpose concurrent programming language and runtime system."], "enterprise application integration": ["The uses of software and computer systems architectural principles to integrate a set of enterprise computer applications."], "EAI": ["The uses of software and computer systems architectural principles to integrate a set of enterprise computer applications."], "EDA": ["A software architecture pattern promoting the production, detection, consumption of, and reaction to events."], "exception handling": ["A programming language construct or computer hardware mechanism designed to handle the occurrence of a condition that changes the normal flow of execution."], "gifted": ["Endowed with talent or talents."], "free speech": ["The right of every person to speak and publish their opinion freely."], "talented": ["Endowed with talent or talents."], "first responder": ["The first medically-trained responder to arrive on scene of an emergency, accident, natural or human-made disaster, or similar event. Such people may be police or other law enforcement, firefighters, emergency medical services, or lay rescuers. (source: Wikipedia)"], "filmmaking": ["The process of making a film, from an initial story idea or commission through scriptwriting, shooting, editing and finally distribution to an audience. Typically it involves a large number of people and can take anywhere between a few months to several years to complete."], "HTML": ["The predominant markup language for Web pages. It provides a means to describe the structure of text-based information in a document \u2014 by denoting certain text as links, headings, paragraphs, lists, and so on \u2014 and to supplement that text with interactive forms, embedded images, and other objects. (source: Wikipedia)"], "covet": ["To feel immoderate desire for that which is another's."], "HyperText Markup Language": ["The predominant markup language for Web pages. It provides a means to describe the structure of text-based information in a document \u2014 by denoting certain text as links, headings, paragraphs, lists, and so on \u2014 and to supplement that text with interactive forms, embedded images, and other objects. (source: Wikipedia)"], "healthcare": ["The prevention, treatment, and management of illness and the preservation of mental and physical well being through the services offered by the medical, nursing, and allied health professions."], "grid computing": ["A form of distributed computing whereby a \"super and virtual computer\" is composed of a cluster of networked, loosely-coupled computers, acting in concert to perform very large tasks."], "green computing": ["The study and practice of using computing resources efficiently."], "identity theft": ["A fraud that involves stealing money or getting other benefits by pretending to be someone else."], "information retrieval": ["The science of searching for documents, for information within documents and for metadata about documents, as well as that of searching relational databases and the World Wide Web."], "IR": ["The science of searching for documents, for information within documents and for metadata about documents, as well as that of searching relational databases and the World Wide Web."], "hammock": ["A swinging couch or bed, usually made of netting or canvas about six feet (1.8 m) wide, suspended by clews or cords at the ends."], "rocking chair": ["A chair with a curved base which can be gently rocked (swung) back and forth."], "Internet pornography": ["Pornography that is distributed by means of various sectors of the Internet, primarily via websites, peer-to-peer file sharing, or Usenet newsgroups."], "Internet privacy": ["The ability to control what information one reveals about oneself over the Internet, and to control who can access that information."], "Internet radio": ["An audio broadcasting service transmitted via the Internet."], "paladin": ["An heroic champion."], "undersea": ["Located under the surface of the sea."], "ocean surface": ["The surface of the sea."], "subterranean": ["Located below the ground level.", "Lying beyond what is openly revealed or avowed (especially being kept in the background or deliberately concealed)."], "overground": ["Located above ground."], "aboveground": ["Located above ground."], "snowy": ["Covered by snow.", "Having the white color of snow.", "Marked by the presence of snow."], "snow-covered": ["Covered by snow."], "snow-clad": ["Covered by snow."], "gloved": ["Having the hands covered by gloves."], "gloveless": ["Not wearing gloves."], "ungloved": ["Not wearing gloves."], "snow-capped": ["Having the top covered by snow."], "snowcapped": ["Having the top covered by snow."], "ignorant": ["Someone who does not strive after knowledge and insight and thus stays unknowing.", "Uneducated in general; lacking knowledge or sophistication.", "Uneducated in the fundamentals of a given art or branch of learning; lacking knowledge of a specific field.", "Unaware because of a lack of relevant information or knowledge."], "teddy": ["A stuffed toy in the shape of a bear."], "bailout": ["A situation where a bankrupt or nearly bankrupt entity, such as a corporation or a bank, is given a fresh injection of liquidity, in order to meet its short term obligations."], "teapot": ["A container with a lid and handle which is used to prepare and serve tea."], "coffeepot": ["A container with a lid and handle used to serve coffee."], "coffee pot": ["A container with a lid and handle used to serve coffee."], "tired of life": ["Lacking joy in life, lacking the will to live."], "weary of life": ["Lacking joy in life, lacking the will to live."], "snow-white": ["Having the white color of snow."], "lumbago": ["Pain in the lower, or lumbar, region of the back or loins."], "hairy": ["Having many head hairs.", "Covered with hair."], "wallpaper": ["Paper often colored and printed with designs and pasted to a wall as a decorative covering."], "manage": ["To take charge or care of; to dispose of.", "To succeed in achieving a task (despite difficulties).", "To succeed in accomplishing (an action), usually with difficulty.", "To handle or produce effectively (something) with difficulty or effort.", "To handle or control (a situation, job).", "To handle with skill (a tool, weapon etc.)."], "stone louse": ["(Petrophaga lorioti) A fictitious animal created by German humorist Loriot to parody a very popular television series of the German zoologist Bernhard Grzimek on wildlife"], "European adder": ["European poison snake, Vipera berus."], "crossed viper": ["European poison snake, Vipera berus."], "common viper": ["European poison snake, Vipera berus."], "compassionate": ["Having or showing compassion.", "To feel regret and sorrow for someone else because of their suffering or misfortune."], "compatibility": ["Capacity of being connected to another device without the use of special equipment or software."], "attrition": ["A gradual, natural reduction in membership or personnel, as through retirement, resignation, or death."], "succinct": ["Expressed in few words."], "ratify": ["Approve and express assent, responsibility, or obligation."], "gravely ill": ["Suffering from a grave malady."], "railroad": ["To gain formal approval by manipulation of procedure and haste, as of a law or a formal resolution."], "criticize": ["To express negative criticism."], "ratification": ["Making something valid by formally ratifying or confirming it."], "competent": ["Highly skilled."], "duty-free": ["Exempt from duty."], "invest": ["To use a resource (money, time, energy, etc.) with the expectation of obtaining something of greater value."], "promised": ["Being declared that it will or will not be done."], "perambulation": ["An English legal ceremony in which an official from a town or parish walks around it to delineate and record its boundaries."], "bannering": ["An English legal ceremony in which an official from a town or parish walks around it to delineate and record its boundaries."], "carpetbagger": ["A candidate who runs in a district where he or she has not previously held residence."], "pithy": ["Concise and full of meaning."], "underprivileged": ["Lacking the rights and advantages of other members of society."], "gang": ["An association of criminals."], "compel": ["To force somebody to do something."], "compelling": ["Having a powerful and irresistible effect."], "sidekick": ["Close friend.", "An assistant to another person, usually the person's inferior."], "Fulliautomatix": ["Character of the Asterix comic strips, smith of the Gaulish village."], "split ends": ["The splitting of hairs at the ends."], "harvest festival": ["Traditional festival during harvest time to thank God."], "osteitis": ["Inflammation of bone."], "muliebrity": ["The quality or state of being a woman."], "womanhood": ["The quality or state of being a woman.", "Women collectively."], "maidenhood": ["The state or quality of being an unmarried and virgin young woman.", "The time during which one is an unmarried and virgin young woman."], "femininity": ["The quality of being feminine; qualities and behaviours deemed to be typical for women and girls.", "Women collectively."], "womanliness": ["The quality of being feminine; qualities and behaviours deemed to be typical for women and girls."], "womankind": ["Women collectively."], "multimorbid": ["Suffering from several illnesses simultaneously."], "bedsore": ["Lesion of the skin and underlying tissue caused by prolonged pressure, especially areas where skin is directly over bone."], "decubitus ulcer": ["Lesion of the skin and underlying tissue caused by prolonged pressure, especially areas where skin is directly over bone."], "pressure ulcer": ["Lesion of the skin and underlying tissue caused by prolonged pressure, especially areas where skin is directly over bone."], "abed": ["In bed.", "Forced to lie in bed, for example because of an illness or injury."], "bedridden": ["Forced to lie in bed, for example because of an illness or injury."], "bedfast": ["Forced to lie in bed, for example because of an illness or injury."], "bedriddenness": ["The state of being forced to lie in bed because of an illness or injury."], "bedfastness": ["The state of being forced to lie in bed because of an illness or injury."], "jacket text": ["Text on the backside or dust jacket of a book, which summarized the content."], "Ethnohistory": ["The study of ethnographic cultures and indigenous customs by examining historical records. It is also the study of the history of various ethnic groups that may or may not exist today."], "social philosophy": ["The philosophical study of questions about social behavior (typically, of humans)."], "despondence": ["A feeling of depression or disheartenment."], "heartsickness": ["A feeling of depression or disheartenment."], "disconsolateness": ["A feeling of depression or disheartenment."], "asshole": ["A strongly disliked person who behaves disgustingly, underhandedly, or nastily, etc.", "An insulting exclamation directed at a vile, stupid or a worthless person.", "The lower opening of the digestive tract, through which feces pass."], "wine waiter": ["Trained and knowledgeable wine professional."], "folding bicycle": ["A bicycle that can be folded to a smaller size."], "folder": ["A structured listing of the names and characteristics of the files on a storage device.", "A bicycle that can be folded to a smaller size.", "An flat organizer made of cardboard or plastic for storing paper documents together."], "temperature inversion": ["A weather phenomenon where the temperature in the atmosphere rises with increasing altitude."], "Prussia": ["A historic state originating out of the Duchy of Prussia and the Margraviate of Brandenburg."], "indemnities": ["Plural form of indemnity."], "compete": ["To attack as false or wrong.", "To strive against another or others to attain a goal, such as an advantage or a victory."], "stigmergy": ["A mechanism of spontaneous, indirect coordination between agents or actions, where the trace left in the environment by an action stimulates the performance of a subsequent action, by the same or a different agent."], "complacency": ["The feeling you have when you are satisfied with yourself."], "spigot": ["A device applied to the end of a pipe in order to interrupt and regulate the flow of a liquid or gas."], "valve": ["Device that controls the flow of a liquid through a passage or a pipe.", "Biological small structure letting a fluid pass through in one direction but blocking or slowing its flow down in the opposite direction."], "complainant": ["One who commences a legal process by a complaint."], "plaintiff": ["One who commences a legal process by a complaint."], "complementary": ["Forming or serving as a complement."], "complicate": ["To make more complicated."], "complication": ["Something that introduces, usually unexpectedly, some difficulty, problem, change, etc."], "snake pit": ["A historical European means of imposing capital punishment."], "complicity": ["Involvement as an accomplice in a questionable act or a crime."], "compliment": ["An expression of praise or admiration"], "complimentary": ["Obtainable without payment."], "comply": ["To act in accordance with someone's rules, commands, or wishes."], "comportment": ["Manner of behaving oneself; manner of acting.", "Any observable action or response of an organism, group or species to environmental factors."], "conduct": ["Any observable action or response of an organism, group or species to environmental factors.", "To carry, particularly to a particular destination.", "Manner of behaving oneself; manner of acting."], "teething": ["The eruption, through the gums of teeth, for example milk teeth."], "composure": ["Steadiness of mind under stress."], "compote": ["Fruit stewed or cooked in a syrup, usually served as a dessert."], "recession": ["The state of the economy declines."], "comprehend": ["To get the meaning of something."], "grasp": ["To get the meaning of something.", "To hold firmly.", "The understanding of the nature or meaning or quality or magnitude of something.", "An intellectual hold or understanding.", "The limit of capability.", "The act of grasping."], "comprehensibility": ["The quality of comprehensible language or thought."], "comprehensible": ["Capable of being comprehended or understood."], "intelligible": ["Capable of being comprehended or understood."], "compulsion": ["The use of force or intimidation to obtain compliance."], "compunction": ["Feeling of regret or sadness for doing wrong or sinning."], "remorse": ["Feeling of regret or sadness for doing wrong or sinning.", "The keen or hopeless anguish caused by a sense of guilt."], "engross": ["To completely engage the attention of."], "computerization": ["To furnish with a computer or computer system."], "concatenation": ["The state of being linked together as in a chain."], "concave": ["Curved inward like the inside of a bowl."], "conceal": ["To prevent from being seen or discovered."], "secrete": ["To prevent from being seen or discovered."], "concealment": ["The condition of being secret, concealed or hidden."], "concede": ["To concede as true.", "To admit to be true."], "condense": ["To increase the strength and diminish the bulk of, as of a liquid or an ore.", "To make more concise (e.g. the contents of a book or an article)."], "concentrated": ["Undiluted; having a high concentration.", "Intensely focused."], "troglodyte": ["A prehistoric or primitive human living in a cave.", "A person who chooses not to keep up-to-date with the latest software and hardware.", "Prehistoric, primitive human living in caves."], "concentric": ["Having a common center."], "concerned": ["Feeling or showing worry or solicitude."], "concerted": ["Done or performed together or in cooperation."], "concertina": ["A musical instrument resembling an accordion but having buttonlike keys, hexagonal bellows and ends."], "aerospace engineering": ["The branch of engineering behind the design, construction and science of aircraft and spacecraft."], "electronic engineering": ["A discipline dealing with the behavior and effects of electrons (as in electron tubes and transistors) and with electronic devices, systems, or equipment."], "conciliate": ["Make calm and content.", "To mediate in a dispute."], "conciliator": ["A person who conciliates."], "conciliatory": ["Willing to conciliate, or to make concessions."], "concision": ["The property of being concise."], "brevity": ["The property of being concise."], "conciseness": ["The property of being concise."], "terseness": ["The property of being concise."], "Medina": ["A city in the Hejaz region of western Saudi Arabia, and serves as the capital of the Al Madinah Province."], "conclave": ["An assembly or gathering, esp. one that has special authority, power, or influence.", "A meeting of the College of Cardinals in the Sistine Chapel in Rome convened to elect a new pope."], "conclusion": ["An opinion and judgment formed or emitted about something."], "conclusive": ["Pertaining to a conclusion."], "roux": ["A mixture of fat (usually butter) and flour used to thicken sauces and stews."], "age of majority": ["Legal adulthood."], "accompanying": ["Following as a consequence."], "adjoining": ["Following as a consequence."], "concordance": ["In agreement with."], "concordant": ["Being of the same opinion."], "agreeing": ["Being of the same opinion."], "correspondent": ["Being of the same opinion."], "harmonious": ["Being of the same opinion."], "concordat": ["A formal agreement between two nations."], "Lorang": ["A language of Indonesia (Maluku)."], "Larevat": ["A language of Vanuatu."], "concourse": ["A large group of people."], "Vanuatu vatu": ["The currency of Vanuatu."], "Lusengo": ["A language of Democratic Republic of the Congo."], "Latvian Sign Language": ["A sign language used in Latvia."], "Luba-Kasai": ["A language of Democratic Republic of the Congo."], "concupiscence": ["A desire for sexual intimacy."], "Ludian": ["A language of Russia (Europe)."], "Lunanakha": ["A language of Bhutan."], "Lunda": ["A Bantu language of Zambia, Angola and the Democratic Republic of the Congo."], "lust": ["A desire for sexual intimacy."], "Lucumi": ["A language of Cuba."], "Dholuo": ["A language of Cameroon and Tanzania"], "concupiscent": ["Having sexual lust."], "Levuka": ["A language of Indonesia (Nusa Tenggara)."], "Lewotobi": ["A language of Indonesia (Nusa Tenggara)."], "voluptuous": ["Full-figured."], "bifocals": ["Spectacles that have corrective lenses of two different powers; used by people who need both distance and reading glasses."], "gall": ["A bitter brownish-yellow or greenish-yellow secretion produced by the liver, stored in the gallbladder, and discharged into the duodenum where it aids the process of digestion."], "bickering": ["Petty quarreling."], "bicentenary": ["A two-hundred year anniversary."], "xenobiology": ["Study of the origin, distribution, and destiny of life in the universe."], "exobiology": ["Study of the origin, distribution, and destiny of life in the universe."], "concur": ["To be in accord.", "To happen at the same time."], "xenophobe": ["Someone who fears that which is unknown or who fears people who are different from oneself, especially in the case of foreign people."], "xenophile": ["A person infatuated with foreign people and culture."], "X-ray": ["Short wavelength electromagnetic wave usually produced by bombarding a metal target in a vacuum."], "radiography": ["The process of making radiographs.", "Photography that uses other kinds of radiation than visible light."], "zeppelin": ["A type of rigid airship using the relative weight of a gas to float."], "libidinous": ["Having sexual lust."], "lustful": ["Having sexual lust."], "lecherous": ["Having sexual lust."], "salacious": ["Having sexual lust."], "zoetrope": ["An optical toy, in which figures made to revolve on the inside of a cylinder, and viewed through slits in its circumference, appear like a single figure passing through a series of natural motions as if animated or mechanically moved."], "zombie": ["A legendary figure of a corpse reanimated by a supernatural force or a spell, with no soul and no will of its own."], "zeal": ["A feeling of strong eagerness."], "heavy water": ["Water containing deuterium, instead of normal hydrogen."], "pillage": ["A violent appropriation made by soldiers in enemy territory after a victory.", "To take the goods of.", "To deprive of something valuable by force."], "abigeat": ["Theft of cattle."], "rustle": ["To steal cattle or other livestock.", "A soft crackling sound similar to the movement of leaves."], "repudiate": ["To reject the truth or validity of something."], "condemnation": ["An expression of strong disapproval; pronouncing as wrong or morally culpable."], "disapprobation": ["An expression of strong disapproval; pronouncing as wrong or morally culpable."], "condenser": ["Any device for reducing gases or vapors to liquid form."], "condolence": ["An expression of sympathy with another's grief."], "condone": ["To overlook, forgive, or disregard an offence without protest or censure."], "conductive": ["Able to conduct electrical current."], "conductant": ["Able to conduct electrical current."], "confer": ["To have a conference in order to talk something over.", "To bestow upon as a gift, favor, honor, etc."], "Jalapa de D\u00edaz Mazatec": ["A language of Mexico."], "Maasai": ["A language of Kenya and Tanzania."], "Sater\u00e9-Maw\u00e9": ["A language of Brazil."], "Mazahua Central": ["A language of Mexico."], "Macushi": ["A language of Brazil, Guyana and Venezuela."], "Baba Malay": ["A language of Singapore and Malaysia."], "Ilianen Manobo": ["A language of Philippines."], "Maxakal\u00ed": ["A language of Brazil."], "confess": ["To admit to the truth, particularly in the context of sins or crimes committed.", "To declare or acknowledge one's sins, to God or a priest in order to obtain absolution.", "To admit to the truth, particularly in the context of sins or crimes committed."], "recognize": ["To admit to the truth, particularly in the context of sins or crimes committed.", "To detect with the senses."], "confession": ["The act of disclosing sins or faults to a priest in order to obtain sacramental absolution."], "pollock": ["Either of two lean, white marine food fishes, of the genus Pollachius, related to cod."], "stockfish": ["Unsalted fish, especially cod, dried by sun and wind."], "sprat": ["Any of various small, herring-like, marine fish of the genus Sprattus in the family Clupeidae."], "confessional": ["The place set apart for the hearing of confessions by a priest."], "confessor": ["A priest who hears confession and then gives absolution."], "confide": ["To have confidence or faith in.", "To confer a trust upon."], "confine": ["To shut or keep in a limited space or area."], "bonkers": ["Not characterized by truth or logic."], "irrational number": ["A number that cannot be represented as a fraction of two integers."], "confirmation": ["The assertion that something exists or is true.", "An additional proof that something that was believed (some fact or hypothesis or theory) is correct.", "A rite of initiation in Christian churches that confirms the appartenance to the religion established during the baptism."], "conflation": ["The process or result of fusing items into one entity."], "amalgamation": ["The process or result of fusing items into one entity."], "fusing": ["The process or result of fusing items into one entity."], "Spree": ["A river in Eastern Germany of approximately 400 kilometres in length."], "Havel": ["A right tributary of the Elbe river and 325 km in length."], "Elbe": ["One of the major rivers of Central Europe."], "maledictology": ["A branch of psychology, that does research about cursing and blustering."], "take the veil": ["To become a nun in a convent."], "conformist": ["Someone who conforms to established standards of conduct."], "confraternity": ["A group of people with a common interest."], "brotherhood": ["A formal association of people with similar interests.", "A group of people with a common interest."], "Lasi Written": ["The written forms of the Lasi language."], "confrontation": ["An open conflict of opposing ideas, forces, etc."], "confute": ["To prove to be false or invalid."], "disprove": ["To prove to be false or invalid."], "congenial": ["Having the same tastes and temperament."], "sympathetic": ["Having the same tastes and temperament."], "inborn": ["Present at birth but not necessarily hereditary."], "congratulate": ["To express pleasure to a person, as on a happy occasion."], "Magahi Written Kaithi Script": ["A written form of the Magahi language."], "Magahi Written Devanagari Script": ["A written form of the Magahi language."], "Magahi Written Nagari Script": ["A written form of the Magahi language."], "pictogram": ["A picture that represents a word or an idea by illustration."], "forgather": ["To collect in one place, usually for a purpose.", "To call or bring together."], "foregather": ["To collect in one place, usually for a purpose.", "To call or bring together."], "united": ["Done by two or more people or organisations working together.", "Characterized by unity; being or joined into a single entity."], "combined": ["Done by two or more people or organisations working together."], "associated": ["Done by two or more people or organisations working together."], "connubial": ["Of, or relating to marriage, or the relationship of spouses."], "conjuncture": ["A combination of events or circumstances.", "A set of circumstances causing a crisis."], "crisis": ["A set of circumstances causing a crisis.", "A crucial stage or turning point in the course of something."], "conjuror": ["Someone who performs magic tricks to amuse an audience."], "conjurer": ["Someone who performs magic tricks to amuse an audience."], "knitting": ["The process of producing knitted material."], "knit": ["To make fabric by knitting."], "connivance": ["Agreement on a secret plot."], "conspiracy": ["Agreement on a secret plot."], "undertone": ["The associated or secondary meaning of a word or expression in addition to its explicit or primary meaning."], "conqueror": ["A person who conquers or vanquishes."], "vanquisher": ["A person who conquers or vanquishes."], "willingness": ["Voluntary agreement or permission."], "conscience": ["The moral sense of right and wrong."], "conscientious": ["Thorough, careful, or vigilant; implies a desire to do a task well."], "scrupulous": ["Thorough, careful, or vigilant; implies a desire to do a task well."], "painstaking": ["Thorough, careful, or vigilant; implies a desire to do a task well."], "meticulous": ["Thorough, careful, or vigilant; implies a desire to do a task well."], "consciousness": ["The state of being conscious or aware."], "consequent": ["Following as a logical conclusion."], "instructional": ["Intended for purposes of instruction, for teaching."], "\u00e9p\u00e9e": ["The modern derivative of the original duelling sword, the rapier, used in sport fencing."], "ardor": ["A feeling of strong eagerness."], "elan": ["A feeling of strong eagerness."], "subclass": ["The taxonomic rank immediately subordinate to a classes."], "consequential": ["Following as a result."], "conservatism": ["The disposition and tendency to preserve what is established."], "infraclass": ["The taxonomic rank immediately subordinate to a subclass."], "Ho Chi Minh City": ["The largest city of Vietnam."], "conservative": ["A person who is conservative in principles, actions, habits, etc."], "considerate": ["Showing concern for the rights and feelings of others."], "considered": ["Thought about or decided upon with care."], "consolation": ["Someone or something that consoles."], "consonance": ["In agreement with.", "A rhyme that repeats the same consonants while the vowels change."], "conspirator": ["A person who is part of a conspiracy."], "constancy": ["The quality of being free from change or variation."], "consternation": ["A sudden, alarming amazement or dread that results in utter confusion."], "dread": ["An unpleasant, usually localised physical sensation that is often the result of an injury, disease or other ailment.", "A sudden, alarming amazement or dread that results in utter confusion."], "distraction": ["A sudden, alarming amazement or dread that results in utter confusion.", "Something that draws someone's attention away from something."], "fright": ["A sudden, alarming amazement or dread that results in utter confusion."], "constipated": ["Suffering from constipation.", "Suffering from constipation."], "Macanese pataca": ["The currency of Macao."], "offal": ["The rejected or waste parts of a butchered animal.", "The internal organs of an animal other than a bird, these organs being used as food."], "decry": ["Consider bad or wrong.", "To denounce as harmful."], "Burkinab\u00e9": ["A person or a citizen from Burkina Faso.", "From or relating to Burkina Faso."], "Tarawa": ["The capital of Kiribati."], "constructor": ["A person or thing that builds."], "Papua New Guinean": ["Someone who is from Papua New Guinea or who is a Papua New Guinean citizen."], "Luxembourger": ["A person who originated from or is a citizen of Luxembourg"], "construe": ["To give the meaning or intention of."], "Gambian": ["A person from or a citizen of Gambia."], "Dalasi": ["The currency of the Gambia."], "Gambian dalasi": ["The currency of the Gambia."], "consulting room": ["A doctor's room for discussions with patients."], "diaspora": ["Any population sharing common ethnic identity who were either forced to leave or voluntarily left their settled territory, and became residents in areas often far removed from the former."], "contagion": ["The entry and development or multiplication of an infectious agent in the body of a living organism.", "Process in which a disease is transmitted."], "Udmurt": ["A Finno-Permic language spoken by the Udmurts, natives of the Russian constituent republic of Udmurtia, where it is coofficial with the Russian language. It is written in the Cyrillic script with five additional characters."], "contemplation": ["Continued attention of the mind to a particular subject."], "musing": ["Continued attention of the mind to a particular subject."], "Mal\u00e9": ["The capital city of the Maldives."], "Laccadive Sea": ["A sea off the southwest coast of India, north of a line extending from the southern point of Sri Lanka to the southernmost of the Maldive Islands, and east of the Maldives."], "contemptuous": ["Showing contempt."], "washout": ["A sporting fixture that could not be completed because of rain.", "The sudden erosion of soft surfaces by a gush of water usually occurring during a heavy downpour of rain or flooding."], "rival": ["A woman who competes with one or more other people.", "A man who competes with one or more other people.", "Someone who competes with one or more other people.", "To be equal to in quality or ability."], "competitor": ["A woman who competes with one or more other people.", "A man who competes with one or more other people.", "Someone who competes with one or more other people.", "A person who takes part in a contest or competition."], "Port of Spain": ["The capital city of Trinidad and Tobago."], "Trinidad and Tobago dollar": ["The currency of Trinidad and Tobago."], "contentious": ["Tending to argument or strife.", "Marked by heated arguments or controversy."], "quarrelsome": ["Tending to argument or strife."], "belligerent": ["Tending to argument or strife.", "A person who fights or struggles using physical force or weapon."], "contentment": ["The state of being contented."], "satisfaction": ["The state of being contented."], "Roseau": ["The capital city of Dominica"], "East Caribbean dollar": ["The currency of eight of the nine members of the Organisation of Eastern Caribbean States."], "Dominican": ["A person who originated from or is a citizen of the Dominican Republic.", "A member of the religious order founded by St. Dominic.", "A person who originated from or is a citizen of the Commonwealth of Dominica."], "contend": ["To attack as false or wrong.", "To fight or argue in order to get a purpose."], "Barbadian dollar": ["The currency of Barbados."], "Barbadian": ["A person who originated from or is a citizen of Barbados."], "contestant": ["A person who takes part in a contest or competition."], "Birr": ["The currency of Ethiopia."], "Ethiopian": ["A person who originated from or is a citizen of Ethiopia."], "contextual": ["Of, pertaining to, or depending on the context."], "Guinean": ["A person who originated from or is a citizen of Guinea."], "backwards": ["In a backward direction."], "backward": ["In a backward direction."], "Philippine peso": ["The currency of the Philippines."], "Fort-de-France": ["The capital city of Martinique."], "Cayenne": ["The capital city of French Guiana."], "contingent": ["A quota of troops furnished."], "contort": ["To twist in a violent manner."], "X-radiation": ["A penetrating electromagnetic radiation, usually generated by accelerating electrons to high velocity and suddenly stopping them by collision with a solid body, or by inner-shell transitions of atoms with atomic number greater than 10; their wavelength ranges from about 10(-5) angstrom to 10(3) angstroms, the average wavelength used in research being 1 angstrom.\\n(Source: MGH)"], "contractable": ["Having a disease that can be easily passed on to others."], "catching": ["Having a disease that can be easily passed on to others."], "contractual": ["Relating to or part of a binding legal agreement."], "video projector": ["Equipment that takes a video signal and projects the corresponding image on a projection screen using a lens system."], "Lobamba": ["The royal and legislative capital of Swaziland."], "Lilangeni": ["The currency of Swaziland."], "contradistinction": ["Distinction by contrasting or opposing qualities."], "contralto": ["The lowest female singing voice."], "George Town": ["The capital of the Cayman Islands."], "Cayman Islands dollar": ["The currency of the Cayman Islands."], "contrariety": ["Something that is contrary."], "contrariwise": ["An adverb used especially after a negation or to give emphasis to what has just been said.", "In the opposite direction or way."], "contrary": ["The contrary; being opposed to something.", "A relation of direct opposition.", "Resistant to guidance or discipline.", "Resistant to guidance or discipline."], "toxicologist": ["A scientist or physician who speciality is toxicology."], "anklet": ["A piece of jewelry, resembling a bracelet but worn around the ankle."], "double entendre": ["A phrase that has two meanings, one innocent and literal, the other risqu\u00e9 or bawdy."], "sententious": ["Given to trite moralising."], "contravene": ["To exceed or overstep some limit or boundary."], "contravention": ["A breach, violation, or infringement; as of a law, a contract, a right or duty."], "Dutch Antilles": ["Two island groups in the Caribbean that constituted until October 2010 an autonomous country within the Kingdom of the Netherlands. The capital was Willemstad on the island of Cura\u00e7ao."], "Avarua": ["The capital city of the Cook Islands."], "Rarotongan": ["A language of the Cook Islands."], "contrition": ["The keen or hopeless anguish caused by a sense of guilt."], "Grenadian": ["A person who originated of or is a citizen of Grenada."], "Tunisian": ["A person who originated from or is a citizen of Tunisia."], "Tunisian dinar": ["The currency of Tunisia."], "controllable": ["Capable of being controlled."], "Wymysorys": ["A West Germanic language spoken in the small town of Wilamowice, Poland."], "Noum\u00e9a": ["The capital city of New Caledonia."], "Sammarinese": ["A person who originated from or is a citizen of San Marino."], "Waray-Waray": ["A language of Philippines."], "Adamstown": ["The capital city of Pitcairn Islands."], "Anguillian": ["A person who originated from or is a citizen of Anguilla."], "control stick": ["A lever by which a pilot controls the ailerons and elevator of an aircraft."], "control tower": ["A glass-enclosed, elevated structure for the visual observation and control of the air and ground traffic at an airport."], "Guamanian": ["A person who originated from or is a citizen of Guam."], "Tokelauan": ["A language of Tokelau.", "A person originating from or a citizen of Tokelau."], "inquire": ["To ask for information, a reply or response on a given subject."], "excoriate": ["To strongly denounce or censure."], "tithe": ["A one-tenth part of something, paid as a voluntary contribution or as a tax or levy"], "Hamilton": ["The capital city of Bermuda.", "A port city in the Canadian province of Ontario."], "Bermudian dollar": ["The currency of Bermuda."], "Bermudian": ["A person who originated from or is a citizen of Bermuda."], "contuse": ["To injure, esp. without breaking the skin."], "convene": ["To come together for a meeting, assembly etc."], "Cockburn Town": ["The capital city of the Turks and Caicos Islands."], "S\u00e3o Tom\u00e9": ["The capital city of S\u00e3o Tom\u00e9 and Pr\u00edncipe."], "S\u00e3o Tom\u00e9 and Pr\u00edncipe dobra": ["The currency of S\u00e3o Tom\u00e9 and Pr\u00edncipe."], "Futunian": ["A language of Wallis and Futuna and New Caledonia."], "Wallisian": ["A language of Wallis and Futuna and New Caledonia."], "Mata-Utu": ["The capital city of Wallis and Futuna."], "Tuvaluan": ["A language of Tuvalu."], "convenient": ["Requiring little skill or effort; posing no difficulty."], "expedient": ["Providing comfort."], "convergent": ["Tending to come together from different directions."], "conversant": ["Experienced and clever, profesional."], "converse": ["To talk informally with another or others."], "Castries": ["The capital city of Saint Lucia."], "Saint Lucian": ["A person who originated from or is a citizen of Saint Lucia."], "doggerel": ["A derogatory term for poetry considered of little literary value."], "graffiti": ["Writing or drawings scribbled, scratched, or sprayed illicitly on a wall or other surface in a public place."], "fungible": ["Assets, usually securities, that can be exchanged with similar assets and are capable of being \u201cloaned\u201d."], "Mamoudzou": ["The capital city of Mayotte."], "Diego Garcia": ["The capital city of the British Indian Ocean Territory."], "Road Town": ["The capital city of the British Virgin Islands."], "convexity": ["The property possessed by a convex shape."], "conveyance": ["Something that serves as a means of transportation."], "conveyor": ["A moving belt that transports objects."], "conveyor belt": ["A moving belt that transports objects."], "convincing": ["Persuading or assuring by argument or evidence."], "convival": ["Pertaining to a feast or to festivity."], "convivial": ["Pertaining to a feast or to festivity."], "convocation": ["In law, a writ requiring someone to appear in court to give testimony."], "cook book": ["A book containing recipes and instructions for cooking."], "cookery book": ["A book containing recipes and instructions for cooking."], "art of cooking": ["A specific set of cooking traditions and practices, often associated with a specific culture."], "gastronomy": ["A specific set of cooking traditions and practices, often associated with a specific culture."], "cooper": ["Someone who makes or repairs barrels."], "barrel-maker": ["Someone who makes or repairs barrels."], "id\u00e9e fixe": ["A recurring musical theme that is associated with a person or a concept."], "clout": ["The power to affect, control or manipulate something or someone.", "A blow to someone or something with the fist."], "Ganymede": ["The biggest moon circling Jupiter.", "In Greek mythology, a son of the Trojan king Tros."], "kale": ["A form of cabbage (Brassica oleracea Acephala Group), green in color, in which the central leaves do not form a head."], "borecole": ["A form of cabbage (Brassica oleracea Acephala Group), green in color, in which the central leaves do not form a head."], "spruitkool": ["A cultivar group of wild cabbage native to Belgium cultivated for its small (typically 2.5 - 4cm) leafy green buds, which resemble miniature cabbages."], "sauerkraut": ["Finely shredded cabbage that has been fermented by various lactic acid bacteria, including Leuconostoc, Lactobacillus, and Pediococcus."], "papaya": ["The fruit of the plant Carica papaya."], "copier": ["Apparatus that makes copies of typed, written or drawn material."], "duplicator": ["Apparatus that makes copies of typed, written or drawn material."], "photocopier": ["Apparatus that makes copies of typed, written or drawn material."], "copious": ["Abundant, fully sufficient or more than adequate in supply for the purpose or needs.", "Large in number or quantity (especially of discourse)."], "plenteous": ["Abundant, fully sufficient or more than adequate in supply for the purpose or needs."], "plentiful": ["Abundant, fully sufficient or more than adequate in supply for the purpose or needs."], "copiousness": ["An overflowing fullness."], "cop-out": ["Choose not to do something, as out of fear of failing."], "opt out": ["Choose not to do something, as out of fear of failing."], "cordage": ["Cords or ropes, especially the ropes in the rigging of a ship."], "cordate": ["Shaped like a heart.", "Shaped like a heart."], "delight": ["To give pleasure to; to make happy or satisfied.", "A feeling of extreme pleasure or satisfaction.", "To delight to a high degree; to hold spellbound."], "enjoyment": ["A feeling of extreme pleasure or satisfaction.", "The right to derive profit, advantages etc. from a property."], "pick": ["A selection of something from a collection of options or alternatives.", "To hit lightly with a picking motion.", "To look for and gather.", "To remove unwanted substances from (e.g. food), such as feathers, peels or pits."], "spend": ["To pass time in a specific way.", "To pay out or expend money."], "cordite": ["A smokeless propellent made by combining two high explosives: nitrocellulose and nitroglycerine, used in some firearm ammunition."], "corn salad": ["A small annual plant of the family Valerianaceae, used as salad or as a herb", "A plant, of the species Valerianella, used in salads or as a herb."], "rapunzel": ["A small annual plant of the family Valerianaceae, used as salad or as a herb"], "lamb's lettuce": ["A small annual plant of the family Valerianaceae, used as salad or as a herb"], "officious": ["Offensively intrusive or interfering"], "nanomaterial": ["A material with morphological features smaller than a one tenth of a micrometer in at least one dimension."], "fine particle": ["In nanotechnology, a particle whose size is between 100 and 2500 nanometers."], "ultrafine particle": ["In nanotechnology, a particle whose size is between 1 and 100 nanometers."], "Chinese cabbage": ["A Chinese leaf vegetable commonly used in Chinese cuisine."], "cordon": ["A line of police, sentinels, military posts, warships, etc., enclosing or guarding an area."], "cordless": ["(For an electric device) Having no cord, usually using batteries as a source of power."], "corduroy": ["A heavy fabric, usually made of cotton, with vertical ribs."], "cornel": ["Any tree or shrub of the genus Cornus."], "dogwood": ["Any tree or shrub of the genus Cornus.", "A flowering plant native to southern Europe and southwest Asia with edible berries."], "swede": ["A root vegetable that originated as a cross between the cabbage and the turnip."], "rutabaga": ["A root vegetable that originated as a cross between the cabbage and the turnip."], "cornerstone": ["A stone uniting two masonry walls at an intersection.", "Something that is essential, indispensable, or basic.", "The fundamental assumptions from which something is begun or developed or calculated or explained."], "cornet": ["A musical instrument of the brass family, slightly smaller than a trumpet."], "baker's ammonia": ["Leavening agent for flat pastries consisting of ammonium carbonate, ammonium bicarbonate and ammonium carbamate."], "salt of hartshorn": ["Leavening agent for flat pastries consisting of ammonium carbonate, ammonium bicarbonate and ammonium carbamate."], "kabaddi": ["A team sport where two teams occupy opposite halves of a field and take turns sending a \"raider\" into the other half, in order to win points by tagging or wrestling members of the opposing team; the raider then tries to return to his own half, holding his breath during the whole raid."], "ammonium carbonate": ["Leavening agent for flat pastries consisting of ammonium carbonate, ammonium bicarbonate and ammonium carbamate."], "chemical formula": ["A formalization which provides information about the atoms that constitute a particular chemical compound, and how the relationship between those atoms changes in chemical reactions."], "hartshorn": ["The antler of a male red deer."], "leavening agent": ["A substance used in doughs and batters that causes a foaming action intended to lighten and soften the finished product."], "corn poppy": ["A plant of the Papaver rhoeas species in the poppy family."], "field poppy": ["A plant of the Papaver rhoeas species in the poppy family."], "Flanders poppy": ["A plant of the Papaver rhoeas species in the poppy family."], "red poppy": ["A plant of the Papaver rhoeas species in the poppy family."], "corn rose": ["A plant of the Papaver rhoeas species in the poppy family."], "corolla": ["Part of a complete flower, consisting of petals, immediately enveloping organs of fertilization and is usually colored."], "Hertzsprung-Russell diagram": ["A diagram that shows the relationship between absolute magnitude, luminosity, classification, and effective temperature of stars."], "H-R diagram": ["A diagram that shows the relationship between absolute magnitude, luminosity, classification, and effective temperature of stars."], "absolute magnitude": ["The apparent magnitude an object would have if it were at a standard luminosity distance (10 parsecs, 1 AU, or 100 km depending on object type) away from the observer, in the absence of astronomical extinction."], "corporeal": ["Of, relating to, or characteristic of the body."], "bodily": ["Of, relating to, or characteristic of the body."], "tarpaulin": ["A heavy, waterproof sheet of material, often cloth, used as a cover."], "tuning": ["Configuration of an object so that it is able to generate and detect electric waves or sounds of a given frequency."], "receiver": ["A component of a hi-fi system: a combination of a tuner and an amplifier", "The listening device part of a telephone."], "blanch": ["To cook by dipping briefly into boiling water, then directly into cold water.", "To grow or become white."], "blanching": ["A process of food preparation wherein the food substance is plunged into boiling water, removed after a brief, timed interval and finally plunged into iced water or placed under cold running water (shocked) to halt the cooking process."], "lyre": ["A stringed instrument of the Middle Ages, precursor of harp."], "corrigible": ["Capable of being corrected."], "hurdy gurdy": ["A stringed musical instrument in which the strings are sounded by means of a rosined wheel which the strings of the instrument pass over."], "corroborate": ["To strengthen; to make firm.", "To establish or strengthen with new evidence or facts."], "viol": ["Any one of a family of bowed, fretted, stringed musical instruments developed in the 1400s and used primarily in the Renaissance and Baroque periods."], "corrosive": ["Having the capability or tendency to cause corrosion."], "viola da gamba": ["Any one of a family of bowed, fretted, stringed musical instruments developed in the 1400s and used primarily in the Renaissance and Baroque periods."], "pigborn": ["A reed instrument from Wales with generally six finger holes and a thumbhole giving a diatonic compass of an octave."], "corrugated iron": ["Sheet iron bent into a series of alternate ridges and grooves in parallel lines, giving it greater stiffness."], "corrupt": ["To give, or offer a bribe.", "Willing to act dishonestly in return for money or personal gain."], "corruptible": ["Capable of being corrupted."], "corsage": ["A small bouquet of flowers worn at the shoulder or waist or on the wrist."], "rational number": ["Number which can be expressed as quotient of two integers."], "kettledrums": ["A brass percussion instrument with a defined pitch."], "cosh": ["A piece of metal covered by leather with a flexible handle; used for hitting people."], "blackjack": ["A piece of metal covered by leather with a flexible handle; used for hitting people."], "cosine": ["Ratio of the adjacent side to the hypotenuse of a right-angled triangle."], "prevarication": ["A false statement made with the intention to deceive."], "cosmetic": ["A preparation, such as powder or a skin cream, designed to beautify the body by direct application.", "Pertaining only to the surface or external appearance of something.", "Imparting or improving beauty, particularly the beauty of the complexion."], "hammered dulcimer": ["A stringed musical instrument with the strings stretched over a trapezoidal sounding board that is played by tapping on them."], "santur": ["A hammered dulcimer from the Persian musical tradition."], "dulcimer": ["A stringed instrument, with strings stretched across a sounding board, usually trapezoidal played by plucking on the strings or by tapping on them."], "cosmic": ["Of or pertaining to the cosmos."], "cosmography": ["A science that describes and maps the main features of the heavens and the earth, including astronomy, geography, and geology."], "cosmopolitan": ["A sophisticated person who has travelled in many countries."], "cosset": ["To treat with excessive indulgence."], "cymbal": ["A concave plate of brass or bronze that produces a sharp, ringing sound when struck."], "cosy": ["Enjoying or affording comforting warmth and shelter especially in a small space."], "cozy": ["Enjoying or affording comforting warmth and shelter especially in a small space."], "cot": ["A small bed, for a baby.", "A simple portable bed intended to be used in tents during camping.", "A wooden bed frame, slung by its corners from a beam, in which naval officers slept in a ship."], "cot death": ["Sudden and unexpected death of an apparently healthy infant during sleep."], "crib death": ["Sudden and unexpected death of an apparently healthy infant during sleep."], "coterie": ["An exclusive circle of people with a common purpose."], "cotter pin": ["A cotter having a split end that is spread after being pushed through a hole to prevent it from working loose."], "cotter key": ["A cotter having a split end that is spread after being pushed through a hole to prevent it from working loose."], "spit pin": ["A cotter having a split end that is spread after being pushed through a hole to prevent it from working loose."], "countable": ["Able to be counted.", "That can be counted.", "(of a noun) Freely usable with the indefinite article and with numbers, and therefore having a plural form."], "counteraction": ["Action intended to nullify the effects of some previous action."], "neutralization": ["The act of making a solution neutral by adding a base to an acidic solution, or an acid to a basic solution.", "Action intended to nullify the effects of some previous action."], "counterbalance": ["A force or influence equally counteracting another."], "counterpoise": ["A force or influence equally counteracting another."], "counterweight": ["A force or influence equally counteracting another."], "gluteal cleft": ["The groove between the buttocks."], "natal cleft": ["The groove between the buttocks."], "anal cleft": ["The groove between the buttocks."], "butt-crack": ["The groove between the buttocks."], "butt crack": ["The groove between the buttocks."], "buttcrack": ["The groove between the buttocks."], "sudden infant death syndrome": ["Sudden and unexpected death of an apparently healthy infant during sleep."], "SIDS": ["Sudden and unexpected death of an apparently healthy infant during sleep."], "bloodless": ["Pale in color.", "Free from bloodshed."], "unbloody": ["Free from bloodshed."], "debut": ["A first public presentation."], "counterespionage": ["Spying on the spies."], "counterexample": ["Refutation by example."], "counterfeit": ["A copy that is represented as the original.", "Not genuine; imitating something superior.", "To make a copy of with the intent to deceive."], "forgery": ["A copy that is represented as the original."], "etymological dictionary": ["Dictionary which explains the origin and history of words and morphemes."], "muon": ["An elementary particle with negative electric charge and a spin of 1/2."], "lepton": ["One of the Standard Model's family of elementary particles, alongside quarks and gauge bosons ."], "countermeasure": ["An action taken to offset another action."], "countermove": ["A move made in opposition or retaliation to another."], "counteroffensive": ["An attack by an army against an attacking enemy force."], "counterpane": ["Decorative cover for a bed."], "counterpart": ["A person who closely resembles another or has the same function or characteristics as another."], "counterproductive": ["Tending to hinder rather than serve one's purpose."], "countersign": ["To sign a document that has been signed by someone else, in confirmation or authentication."], "unperilous": ["Not presenting any danger."], "innocuous": ["Not presenting any danger.", "Not injurious to physical or mental health.", "Not causing disapproval.", "Lacking intent or capacity to injure."], "harmless": ["Not presenting any danger."], "nonhazardous": ["Not presenting any danger."], "wintry": ["Of, relating to, or characteristic of winter."], "wintery": ["Of, relating to, or characteristic of winter."], "winterly": ["Of, relating to, or characteristic of winter."], "hibernal": ["Of, relating to, or characteristic of winter."], "brumal": ["Of, relating to, or characteristic of winter."], "cinnamon oil": ["Essential oil made from the leaves and bark of the cinnamon tree."], "countless": ["Incapable of being counted."], "innumerable": ["Incapable of being counted."], "coup": ["A sudden, decisive exercise of power whereby the existing government is subverted without the consent of the people."], "coup d\u2019\u00e9tat": ["A sudden, decisive exercise of power whereby the existing government is subverted without the consent of the people."], "lemon grass": ["An aromatic, lemon-flavoured tropical grass, widely used in Indonesian and South-East Asian cooking."], "fenugreek": ["An annual herb of southern Europe and eastern Asia having off-white flowers and aromatic seeds used medicinally and in curry."], "mustard": ["A powder or paste made from seeds of the mustard plant."], "thyme": ["A perennial plant with small grey-green aromatic leaves and small purple flowers and one of the basic herbs used in cooking."], "valiant": ["Having or characterized by courage."], "courier": ["A messenger sent with haste to convey letters or dispatches."], "court case": ["A judicial examination and determination of issues between parties to action; whether they need issues of law or of fact. A judicial examination, in accordance with law of the land, of a cause, either civil or criminal, of the issues between the parties, whether of law or fact, before a court that has proper jurisdiction."], "courtesy": ["A polite action or expression."], "courthouse": ["A building in which courts of law are held."], "aniseed": ["A Mediterranean plant, Pimpinella anisum."], "feudalism": ["A social system based on personal ownership of resources and personal fealty between a suzerain (lord) and a vassal (subject)."], "fellowship": ["A group of people that share the same interest or aim."], "druid": ["A pre-Christian priest among the Celts of ancient Gaul and Britain and Ireland."], "catnip": ["The members of the genus Nepeta who are known as catnip or catmint because of their famed effect on cats."], "catmint": ["The members of the genus Nepeta who are known as catnip or catmint because of their famed effect on cats."], "sangria": ["A cold drink, originating in Spain, consisting of red or white wine, brandy or sherry, fruit juice, sugar and soda water and garnished with orange and other fruit."], "tequila": ["A spirit made primarily in the area surrounding Tequila."], "lowrider": ["A car or truck which has had its suspension system modified (so that it rides as low to the ground as possible."], "suborder": ["The taxonomic rank immediately subordinate to an order."], "sesame": ["A flowering plant in the genus Sesamum with numerous species occurring in Africa and a smaller number in India."], "tabasco": ["A brand of hot sauce made from tabasco peppers (Capsicum frutescens var. tabasco), vinegar, and salt, and aged in white oak barrels for three years."], "fanaticism": ["An emotion of being filled with excessive, uncritical zeal, particularly for an extreme religious or political cause or with an obsessive enthusiasm for a pastime or hobby."], "fashionable": ["Characteristic of or influenced by the current popular trend or style.", "Generally accepted, used or practiced at the moment.", "Actual, fashionable, up to date."], "trendy": ["Characteristic of or influenced by the current popular trend or style."], "fascist": ["A proponent of fascism."], "fatalistic": ["Of or pertaining to the doctrine that all events are subject to fate or inevitable necessity, or predetermined."], "fencing": ["The art or sport of duelling with swords, especially the style that originated in Europe."], "courtly": ["Good mannered."], "court martial": ["A military court."], "flaccid": ["Yielding to the touch, and easily moved or shaken; hanging loose by its own weight."], "flabby": ["Yielding to the touch, and easily moved or shaken; hanging loose by its own weight."], "flee": ["Leaving a dangerous or unpleasant situation."], "run away": ["Leaving a dangerous or unpleasant situation.", "To flee; to take to one's heels; to cut and run."], "flock": ["A large number of animals, especially sheep or goats kept together."], "foundry": ["A factory which produces metal castings from either ferrous or non-ferrous alloys."], "fawn": ["A young deer.", "To act in a very submissive manner."], "courtyard": ["An area wholly or partly surrounded by walls or buildings."], "covenant": ["An international agreement in writing between two states or a number of states. They are binding in international law; some create law only for those states that are parties to them."], "coverlet": ["The top sheet of a bed."], "robotics": ["The science and technology of robots, and their design, manufacture, and application."], "scab": ["An incrustation over a sore, wound, vesicle, or pustule, formed during healing."], "audio engineering": ["A part of audio science dealing with the recording and reproduction of sound through mechanical and electronic means."], "software development methodology": ["A framework that is a used to structure, plan, and control the process of developing information systems."], "broadcast engineering": ["The field of electrical engineering, and now to some extent computer engineering, which deals with radio and television broadcasting."], "Rational Unified Process": ["An iterative software development process framework. It is not a single concrete prescriptive process, but rather an adaptable process framework, intended to be tailored by the development organizations and software project teams that will select the elements of the process that are appropriate for their needs."], "RUP": ["An iterative software development process framework. It is not a single concrete prescriptive process, but rather an adaptable process framework, intended to be tailored by the development organizations and software project teams that will select the elements of the process that are appropriate for their needs."], "bachelor's degree": ["An undergraduate academic degree awarded for a course or major that generally lasts for three, four, or in some cases and countries, five or six years."], "category theory": ["A theory that deals in an abstract way with mathematical structures and relationships between them: it abstracts from sets and functions to objects and morphisms."], "master's degree": ["A degree that provides a mastery or high-order overview of a relevant field of study or area of professional practice. Its graduates possess a range of academic and vocational skills including advanced knowledge of a specialist body of theoretical and applied topics; high order skills in analysis, critical evaluation and/or professional application; and the ability to solve complex problems and think rigorously and independently within the area studied. (source: Wikipedia)"], "tape hiss": ["Hissing noise on analogue magnetic tape."], "graduate school": ["A school that awards advanced academic degrees, such as doctoral degrees with the general requirement that students must have earned a previous undergraduate (bachelor's) degree."], "pneumoconiosis": ["Occupational lung disease caused by the inhalation of dust."], "spiral model": ["A software development process combining elements of both design and prototyping-in-stages, in an effort to combine advantages of top-down and bottom-up concepts."], "claqueur": ["Someone who is paid to praise without criticism.", "Someone who is paid to applaud in a theatre or other public performance."], "frontage road": ["Any street or narrow stretch of paved surface that leads to a specific destination, such as a main highway."], "abut": ["To touch by means of a mutual border, edge or end."], "Cook Islands Maori": ["A language of the Cook Islands."], "trade union": ["An organization whose members are wholly or mainly workers and whose principal purposes include the regulation of relations between workers and employers or employers' associations."], "Sindarin": ["One of the Elvish languages invented by J. R. R. Tolkien."], "Cirth": ["A script which was invented by J. R. R. Tolkien for the constructed languages he devised and used in his works."], "Buryat script": ["A variant of the Mongolian Script used to write the Russia Buriat language."], "Buriat script": ["A variant of the Mongolian Script used to write the Russia Buriat language."], "rote": ["The process of committing something to memory through repetition, in a mechanical way, usually by hearing and repeating aloud."], "marjoram": ["A perennial herb or undershrub with sweet pine and citrus flavours."], "cover-up": ["To attempt to prevent something scandalous from becoming public."], "cowardly": ["Lacking courage."], "cowboy": ["A man who herds and tends cattle on a ranch, esp. in the western U.S., and who traditionally goes about most of his work on horseback."], "cowlick": ["A tuft of hair that grows in a different direction from the rest of the hair and usually will not lie flat."], "abiogenesis": ["The study of how life on Earth emerged from inanimate organic and inorganic molecules."], "citric acid": ["A weak organic triprotic acid. It is a natural preservative and is also used to add an acidic, or sour, taste to foods and soft drinks."], "cowpox": ["A mild, contagious skin disease of cattle, usually affecting the udder, that is caused by a virus. When the virus is transmitted to humans, as by vaccination, it can confer immunity to smallpox."], "cowshed": ["A barn for cows."], "cowbarn": ["A barn for cows."], "prairie wolf": ["(Canis latrans) A member of the Canidae family native to North America."], "cozen": ["To cause someone to believe an untruth; to practice trickery or fraud."], "crabby": ["Annoyed and irritable."], "crabbed": ["Annoyed and irritable."], "power socket": ["A female electrical connector that have slots or holes which accept the pins or blades of power plugs inserted into them and deliver electricity to the plugs."], "socket": ["A female electrical connector that have slots or holes which accept the pins or blades of power plugs inserted into them and deliver electricity to the plugs.", "An endpoint of a bidirectional inter-process communication flow across an Internet Protocol-based computer network, such as the Internet."], "garrotte": ["A handheld weapon, most often referring to a ligature of chain, rope, scarf, wire or fishing line used to strangle someone to death.", "An execution device where the condemned is tied to a pole and strangulated from behind."], "gauge": ["The quantity, size, weight, distance or capacity of a substance compared to a designated standard."], "gazette": ["A publication (usually published daily or weekly and printed on cheap, low-quality paper) that contains news and other articles."], "gazelle": ["An antelope of the genus Gazella mostly native to Africa and capable of running at high speeds for long periods."], "Gibraltarian": ["A native or inhabitant of Gibraltar."], "Gibraltar pound": ["The currency of Gibraltar."], "godfather": ["A man present at the christening of a baby who promises to help raise the child in the Christian tradition."], "gondola": ["A small long, narrow boat with a high prow and stern, propelled by a single oar."], "craftsmanship": ["A man who practices a craft with great skill."], "crafty": ["Marked by skill in deception."], "gossip": ["Idle talk about someone\u2019s private or personal matters."], "cramp": ["A painful and involuntary muscular contraction."], "spasm": ["A painful and involuntary muscular contraction."], "fired up": ["Very emotional or excited, positively or negatively, regarding something."], "tachograph": ["A device that combines the functions of a clock and a speedometer.", "A device that combines the functions of a clock and a speedometer and records its measurements on paper."], "taekwondist": ["Someone who practices the sport of Taekwondo."], "Taekwondo": ["A martial arts originating in Korea."], "technocrat": ["An individual who makes decisions based solely on technical information and not personal or public opinion."], "crankcase": ["Housing for a crankshaft."], "crankshaft": ["The part of an engine which translates reciprocating linear piston motion into rotation or the other way around."], "telegram": ["A message transmitted by telegraph."], "zoogeography": ["The scientific study of the geographical distribution of animal species."], "zionism": ["An international movement originated for the establishment of a Jewish national or religious community in Palestine and later for the support of modern Israel."], "ramification": ["A consequence or development that complicates a problem.", "The divergence of the stem and limbs of a plant into smaller ones, meaning trunk into branches, branches into increasingly smaller branches."], "Mantoux test": ["A diagnostic tool for tuberculosis."], "galvanometer": ["An instrument for detecting and measuring electric current."], "gasify": ["To convert into gas, or an aeriform fluid."], "geodesist": ["Someone who practices or studies geodesy."], "crave": ["To plead with someone for help or for a favor; to request urgently or persistently."], "craven": ["A person who lacks courage.", "Lacking courage."], "cardamon": ["A pungent aromatic spice made of dried seeds of the cardamom plant. Widely used in Scandinavian and East Indian cooking."], "Yukaghir": ["A family of related languages spoken in the Russian Far East by the Yukaghir, an indigenous people in Eastern Siberia, living in the basin of the Kolyma River.", "A people in the north-eastern Russia."], "paraphyly": ["In phylogenetics, a group of organisms that contains its most recent common ancestor but does not contain all the descendants of that ancestor."], "Frenchwoman": ["A woman who is from France, or is of French ancestry."], "bagpiper": ["Someone who plays the bagpipe."], "countersignature": ["A signature made to confirm or endorse another"], "countryside": ["A rural area, or the rural part of a larger area."], "coup\u00e9": ["A two-seater car, normally a sports car"], "adstringent": ["A substance which draws tissue together thus restricting the flow of blood."], "camera-shy": ["Unwilling to be filmed or photographed."], "cinnamon tea": ["Tea made of cinnamon."], "bacteriologist": ["Person who studies or practices bacteriology."], "Balkans": ["A geographical region in the southeast of Europe."], "ballast": ["Heavy material that is placed in the hold of a ship, to provide stability."], "battleship": ["A large, heavily armoured warship with a main battery consisting of the largest calibre of guns."], "sacrament": ["A sacred act or ceremony in Christianity."], "sacrilege": ["The violation or injurious treatment of a sacred object."], "desecration": ["The violation or injurious treatment of a sacred object.", "Act not respecting the sacred character of a place, a time, an object, a person etc."], "sailboat": ["A boat propelled by the wind in its sails."], "sailing boat": ["A boat propelled by the wind in its sails."], "credibility": ["Capable of being believed."], "scree": ["Loose stony debris on a slope."], "credible": ["Worthy of belief or confidence."], "thrustworthy": ["Worthy of belief or confidence."], "creditable": ["Deserving or possessing reputation or esteem."], "credulity": ["Tendency to believe readily."], "credulous": ["Disposed to believe on little evidence."], "saddler": ["Someone who makes, repairs and sells saddles."], "creepy": ["Causing a sensation as of things crawling on your skin."], "crawly": ["Causing a sensation as of things crawling on your skin."], "eerie": ["Causing a sensation as of things crawling on your skin.", "Inspiring a feeling of fear; strange and frightening."], "macabre": ["Causing a sensation as of things crawling on your skin."], "cremate": ["To burn dead bodies."], "cremation": ["The burning of a dead body."], "crematorium": ["A mortuary where corpses are cremated."], "crematory": ["A mortuary where corpses are cremated."], "Slippery Jack": ["Edible mushroom with a brown, slimy cap which can be found all over the northern hemisphere."], "sticky bun": ["Edible mushroom with a brown, slimy cap which can be found all over the northern hemisphere."], "Sami": ["A people in Finland, Norway, Russia and Sweden."], "crestfallen": ["Brought low in spirit."], "chapfallen": ["Brought low in spirit."], "lipodystrophy": ["A condition characterized by the abnormal distribution of fat tissue."], "latte macchiato": ["Beverage consisting of hot milk with espresso and steamed milk on top."], "rift": ["A thin and usually jagged space opened in a previously solid material."], "crewman": ["Any member of a ship's crew."], "tea infuser": ["Kitchen device for brewing loose tea leaves consisting of a perforated metal container or mesh."], "teaball": ["Kitchen device for brewing loose tea leaves consisting of a perforated metal container or mesh."], "tea egg": ["Kitchen device for brewing loose tea leaves consisting of a perforated metal container or mesh."], "Thousand Islands": ["Archipelago of islands in the USA-Canada border region situated in the Saint Lawrence River as flows out of Lake Ontario.", "Indonesion chain of islands in the Java See."], "Thousand Island dressing": ["Salad dressing of American cusine with mayonnaise, ketchup or tomato paste and peppers seasoned with tabasco sauce."], "Tabasco sauce": ["Spicy hot sauce made from tabasco peppers."], "Tabasco": ["Spicy hot sauce made from tabasco peppers."], "tabasco pepper": ["A variety of the chili pepper species Capsicum frutescens."], "hot sauce": ["Spicy sauce made from chili peppers and other ingredients."], "chili sauce": ["Spicy sauce made from chili peppers and other ingredients."], "pepper sauce": ["Spicy sauce made from chili peppers and other ingredients."], "criminology": ["The scientific study of crime and criminal behaviour and law enforcement."], "crimson": ["A deep and vivid red color."], "crinite": ["Covered with hair."], "bible-abiding": ["Abiding by the commandments of the Bible."], "law-abiding": ["Abiding by the law."], "olive wood": ["Wood of the olive tree."], "oak wood": ["Wood of the oak tree."], "beech wood": ["Wood of a beech tree."], "beechwood": ["Wood of a beech tree."], "beechen": ["Consisting of or made of the wood of the beech tree."], "oaken": ["Consisting of or made of oak wood."], "ash wood": ["Wood of the ash tree."], "maple wood": ["Wood of the maple tree."], "maplewood": ["Wood of the maple tree."], "maple": ["Wood of the maple tree.", "Tree or shrub of the family Acer."], "teak": ["Wood of the teak tree."], "teakwood": ["Wood of the teak tree."], "teak wood": ["Wood of the teak tree."], "birch wood": ["Wood of the birch tree."], "birchwood": ["Wood of the birch tree."], "balsa wood": ["Wood of the balsa tree."], "balsa": ["Wood of the balsa tree."], "Kaingang": ["An indigenous language spoken in the South of Brazil, belonging to the J\u00ea-Kaingang language family."], "cripple": ["A person or animal that is partially unable to use a limb or limbs because of an injury or disability.", "A shortened wooden stud or brace used to construct the portion of a wall above a door or above and below a window."], "crises": ["A set of circumstances causing a crisis."], "crisp bread": ["A flat and dry Nordic type of bread or cracker, containing mostly rye flour."], "crispy": ["Having a crisp texture, brittle yet tender."], "pine wood": ["Wood of the pine tree."], "yew": ["Wood of the yew tree.", "Any tree or shrub of the genus Taxus.", "A species of coniferous tree with dark-green flat needle-like leaves and seeds bearing red arils, native to western, central and southern Europe, northwest Africa, northern Iran and southwest Asia."], "yew wood": ["Wood of the yew tree."], "cherry wood": ["Wood of the cherry tree."], "cherrywood": ["Wood of the cherry tree."], "nutwood": ["Wood of the nut tree."], "nut wood": ["Wood of the nut tree."], "criticise": ["To express negative criticism."], "dolmen": ["A prehistoric megalithic tomb typically having two large upright stones and a capstone."], "cromlech": ["A prehistoric megalithic tomb typically having two large upright stones and a capstone."], "crossfire": ["Fire from two or more points so that the lines of fire cross."], "crosspatch": ["A bad-tempered person."], "grouch": ["A bad-tempered person."], "cross-purpose": ["The understanding of something in a different way than it is meant."], "crotchety": ["Having a difficult and contrary disposition."], "buttercup": ["Any of various plants of the genus Ranunculus."], "crowfoot": ["Any of various plants of the genus Ranunculus."], "crucify": ["To put to death by nailing or binding the hands and feet to a cross."], "crucifixion": ["Execution on a cross."], "cruel": ["Indifference towards the suffering of another and even deriving a positive feeling from it."], "cruise": ["A voyage by sea in a liner for pleasure, usually calling at a number of ports.", "A pleasure voyage on a ship, usually with stops at various ports."], "crumb": ["A very small quantity of something."], "crunchy": ["Having a crisp texture, brittle yet tender."], "crusty": ["Having a crisp texture, brittle yet tender."], "cryptogram": ["A message or writing in code or cipher."], "crystallize": ["To assume a crystalline form."], "fruit infusion": ["Infusion of pieces of fruit without tea leaves."], "fruit tea": ["Infusion of pieces of fruit without tea leaves."], "amnesiac": ["A person suffering from amnesia.", "Suffering from partial loss of memory."], "amnesic": ["A person suffering from amnesia.", "Suffering from partial loss of memory."], "cubist": ["An artist who adheres to the principles of cubism."], "cubit": ["An ancient unit of length based on the length of the forearm."], "ell": ["An ancient unit of length based on the length of the forearm."], "Blin": ["A Central Cushitic language which is spoken in central Eritrea."], "Bilin": ["A Central Cushitic language which is spoken in central Eritrea."], "cuckoo": ["A common European bird, Cuculus canorus, of the family Cuculidae, noted for its characteristic call and its brood parasitism."], "previous year": ["The year before the current one."], "prior year": ["The year before the current one."], "previous month": ["The month before the current one."], "cuckoopint": ["Any plant of the family Araceae; have small flowers massed on a spadix surrounded by a large spathe."], "ultimo": ["In or of the month before the present one."], "ult.": ["In or of the month before the present one."], "thoughtcrime": ["An offense that is only committed in thought."], "panic": ["To be overcome by a sudden fear and lose control.", "To cause sudden fear and loss of control."], "hessian": ["Coarse fabric made from jute fibers."], "Hessian": ["An inhabitant of Hesse."], "bagel": ["Round bread product with a hole in the middle made of yeasted wheat dough."], "heated": ["Made warm or hot."], "cuff link": ["A fastening for a shirt cuff, usually consisting of two buttons or buttonlike parts connected with a chain or shank that passes through two slits in the cuff."], "cufflink": ["A fastening for a shirt cuff, usually consisting of two buttons or buttonlike parts connected with a chain or shank that passes through two slits in the cuff."], "culprit": ["A person who is guilty of a fault or crime."], "cult": ["A particular system of religious worship, esp. with reference to its rites and ceremonies."], "cultivated": ["Having good manners.", "Developed by human care and for human use.", "Prepared for growing crops (e.g. of land)."], "exonerate": ["To free from accusation or blame.", "To free from an obligation, responsibility or task."], "exculpatory": ["Excusing or clearing of any wrongdoing."], "exonerative": ["Excusing or clearing of any wrongdoing."], "cultured": ["Having good manners."], "cumulate": ["To heap up; to collect or gather (e.g. work, magazines, etc.)."], "garner": ["To heap up; to collect or gather (e.g. work, magazines, etc.)."], "acumulate": ["To heap up; to collect or gather (e.g. work, magazines, etc.)."], "cumulative": ["Increasing or growing by accumulation or successive additions."], "cunning": ["Intelligent, smart and capable of taking advantage of a situation.", "The quality of being clever."], "cup final": ["The final match of any cup competition."], "copperlike": ["Of, resembling, or containing copper."], "curable": ["Capable of being cured."], "curative": ["Intended to cure."], "dogma": ["The established belief or doctrine held by a religion, ideology or any kind of organization, thought to be authoritative and not to be disputed, doubted or diverged from."], "cure": ["To get healthy again.", "To remedy an illness using medical or medicamentous treatment; to provide a cure for.", "The act or process of regaining health.", "To return to health and strength after illness.", "A means of healing or restoring to health."], "remedy": ["To correct or amend something; set straight or right.", "A means of healing or restoring to health."], "curio": ["A strange and interesting object which invokes curiosity."], "login": ["The process by which individual access to a computer system is controlled by identification of the user using credentials provided by the user."], "log-in": ["The process by which individual access to a computer system is controlled by identification of the user using credentials provided by the user."], "log in": ["The process by which individual access to a computer system is controlled by identification of the user using credentials provided by the user."], "dogmatic": ["Stubbornly adhering to insufficiently proven beliefs."], "usefulness": ["The extend to which something is useful."], "curiosity": ["The desire to learn or know about anything."], "inquisitiveness": ["The desire to learn or know about anything."], "curler": ["A device on which hair is wound for curling."], "curly": ["(of hair) Curling or tending to curl."], "currant": ["A small kind of seedless raisin, used in cookery."], "imprecation": ["An appeal or prayer for evil or misfortune to befall someone or something."], "malediction": ["An appeal or prayer for evil or misfortune to befall someone or something."], "barbiturate": ["Any of a class of drugs that act as depressants of the central nervous system and are used as sedatives or hypnotics."], "ketamine": ["A pain-killing drug and anaesthetic."], "benzodiazepine": ["Any of a class of psychoactive drugs, structured upon diazepine, used in the treatment of anxiety, insomnia and other disorders"], "khat": ["The young leaves of the khat plant chewed or drunk as a tea for their stimulant effects."], "handwriting": ["The art of writing with the hand and a writing instrument.", "The writing which characterizes a particular person."], "curt": ["Brief or terse, especially to the point of being rude.", "Abruptly or brusquely short."], "curtain": ["A piece of cloth covering a window to keep the sun from shining inside."], "Egyptian Arabic": ["A variety of the Arabic language which is spoken in Egypt and understood across most of the Arab World."], "toilet paper": ["Soft single-use paper to clean after defecation or urination."], "TP": ["Soft single-use paper to clean after defecation or urination."], "leathery": ["Having the texture or appearance of leather."], "leathern": ["Having the texture or appearance of leather.", "Made of leather."], "cussed": ["Persisting in a reactionary stand."], "habit": ["A pattern of behavior inherited or acquired through frequent repetition.", "A dependence on a habit-forming substance such as a drug or alcohol.", "An action done on a regular basis; an established custom.", "An action performed repeatedly and automatically, usually without awareness.", "A long piece of clothing worn by members of a religious order, especially monks and nuns.", "A piece of clothing worn uniformly for a specific activity, e.g. by a horseback rider.", "Customary manner of dress."], "praxis": ["A pattern of behavior inherited or acquired through frequent repetition."], "wont": ["A pattern of behavior inherited or acquired through frequent repetition."], "customary": ["According to or depending on custom."], "normal": ["According to or depending on custom."], "impulse turbine": ["Steam turbine in which the stator is provided with nozzles in which the steam expands and issues at high velocity tangentially to the bucket blades of the rotor."], "Watubela": ["A language of Indonesia (Maluku)."], "cute": ["Lovely or loveable because it is small and pretty."], "colorectal polyp": ["Benign growth on the intestinal mucous membrane extending into the intestine."], "colon polyp": ["Benign growth on the intestinal mucous membrane extending into the intestine."], "cynic": ["Someone who is critical of the motives of others.", "Inclined to believe the worst about people."], "coloscope": ["A thin, lighted tube used to examine the inside of the colon."], "cynicism": ["A cynical feeling of distrust."], "Cypriot": ["A native or inhabitant of Cyprus.", "Of, from, or related to the country of Cyprus."], "cyst": ["A sac or bag-like structure, whether normal or containing morbid matter."], "dab hand": ["A highly skilled person."], "daddy": ["Children word for \"father\"."], "daft": ["Mentally ill; affected with madness or insanity."], "enunciate": ["To make known by stating or announcing.", "To speak clearly."], "pronounce.": ["To speak clearly."], "fanatical": ["Having an extreme, irrational zeal or enthusiasm for a specific cause."], "firewood": ["Wood intended to be burned."], "fraudulent": ["Based on fraud or deception."], "dishonest": ["Based on fraud or deception."], "fricassee": ["Meat or poultry cut into small pieces, stewed or fried and served in its own gravy."], "fugitive": ["A person who is fleeing or escaping from something.", "A person who is wanted by the law"], "furrier": ["A person who sells, makes, repairs, alters, cleans, or otherwise deals in clothing made of fur."], "fundamentalist": ["Someone who stresses strict and literal adherence to a set of basic principles."], "futile": ["Incapable of producing results"], "optional": ["Left to personal choice."], "elective": ["Left to personal choice."], "overdraft": ["The permission to have a minus balance on your bank account.", "A minus balance on a bank account."], "oxymoron": ["A figure of speech in which two words with opposing meanings are used together intentionally for effect."], "helmsman": ["A member of a ship's crew who is responsible for steering"], "heliport": ["A facility designed to let helicopters take off and land."], "hyphen": ["A symbol typically used to join two related words to form a compound noun, or to indicate that a word has been split at the end of a line."], "juxtaposition": ["A logical fallacy on the part of the observer, where two items placed next to each other imply a correlation, when none is actually claimed.", "A placing together done in order to compare or contrast."], "fecklessness": ["The state of general incompetence and ineffectiveness."], "valedictory": ["That is done for the last time to say farewell."], "disparate": ["Composed of inherently different or distinct elements."], "incongruous": ["Lacking in harmony or compatibility or appropriateness."], "damsel": ["A young unmarried woman."], "damson": ["The small, dark-blue or purple fruit of a plum, Prunus insititia."], "grey nomad": ["A person who travels the world in a caravan after retirement."], "dappled": ["Marked with spots of a different colour."], "mottled": ["Marked with spots of a different colour."], "spotted": ["Marked with spots of a different colour."], "speckled": ["Marked with spots of a different colour."], "wipe out": ["To kill in large numbers."], "daredevil": ["A recklessly daring person.", "Presumptuously daring."], "darknesss": ["Absence of light."], "obscurity": ["Absence of light."], "dashboard": ["Instrument panel on an automobile or airplane containing dials and controls.", "A set of icons or other computer visual elements inside a common area of geometrical shape (usually a rectangle), each one corresponding to a software tool."], "dashing": ["Possessing charm and attractiveness."], "unborn": ["Not yet born.", "A child not yet born in the mother's womb."], "antenatal": ["Occurring or existing before birth."], "dauntless": ["Not being daunted or intimidated.", "Not to be daunted or intimidated."], "fearless": ["Not being daunted or intimidated."], "intrepid": ["Not being daunted or intimidated."], "daydream": ["Absentminded dreaming while awake.", "To have a daydream."], "reverie": ["Absentminded dreaming while awake."], "bewildement": ["A dazed condition."], "bafflement": ["A dazed condition."], "perplexity": ["A dazed condition."], "dazzling": ["Extremely bright."], "deadlock": ["A situation in which no progress can be made or no advancement is possible."], "impasse": ["A situation in which no progress can be made or no advancement is possible."], "deal": ["A trading agreement or contract.", "A set of cards or pieces of a player at a given time during a game."], "dearth": ["A lack or short supply."], "paucity": ["A lack or short supply."], "death certificate": ["Form signed by the attending physician indicating an individual's time and cause of death."], "gravidity": ["The condition of being pregnant; the period from conception to birth when a woman carries a developing fetus in her uterus."], "gale": ["A very strong wind, more than a breeze, less than a storm."], "gallicism": ["A loanword borrowed from French."], "germanism": ["A word or idiom of the German language that has been borrowed by another language."], "gladiator": ["A person who entertained the public by engaging in mortal combat."], "balloon": ["Means of air transport, an aircraft lighter than air.", "A flexible bag which is inflated with gas that is lighter than the surrounding air, causing it to rise and float in the atmosphere."], "barter": ["An exchange of goods without the involvement of money.", "To exchange goods without involving money."], "bauxite": ["The principal ore of aluminium."], "bagatelle": ["An unsubstantial thing.", "A short, light-hearted piece of music."], "trifle": ["An unsubstantial thing."], "deficient": ["Lacking something essential."], "junior": ["The younger of two persons.", "A name suffix used after a child's name when his parent has the same name"], "younger": ["The younger of two persons."], "midday": ["Time of day when the sun is in its zenith."], "noon": ["Time of day when the sun is in its zenith."], "joy": ["The feeling of happiness."], "machination": ["A clever scheme or artful plot, usually crafted for evil purposes."], "madrigal": ["An Italian musical form of the 14th century.", "A type of secular vocal music composition, written during the Renaissance and early Baroque eras."], "deathly": ["Causing death or having the ability to cause death."], "deathless": ["Not susceptible to death or aging, never dying or growing older."], "death rate": ["The number of deaths per unit, usually 1000, of population in a given place and time."], "mortality rate": ["The number of deaths per unit, usually 1000, of population in a given place and time."], "debacle": ["A total, often ludicrous failure."], "debar": ["To refuse to accept as valid.", "To prevent from entering; to keep out (e.g. of membership)."], "debase": ["To insult or offend.", "To make a person morally inferior."], "debatable": ["Subject to nonconcordant interpretations.", "Capable of being disproved."], "pastel": ["An art medium in the form of a stick, consisting of pure powdered pigment and a binder."], "coloured pencil": ["A pencil with a coloured core."], "fountain pen": ["A pen with a refillable reservoir that provides a continuous supply of fluid ink to its point."], "breviary": ["A book containing prayers, hymns, and so on for everyday use at the canonical hours."], "debauched": ["Displaying the effect of excessive indulgence in sensual pleasure."], "dissipated": ["Displaying the effect of excessive indulgence in sensual pleasure.", "Unrestrained by convention or morality."], "dissolute": ["Displaying the effect of excessive indulgence in sensual pleasure.", "Unrestrained by convention or morality."], "libertine": ["Displaying the effect of excessive indulgence in sensual pleasure.", "Unrestrained by convention or morality."], "debauchery": ["A wild gathering involving excessive drinking and promiscuity."], "lechery": ["Excessive indulgence in sensual pleasures."], "riot": ["A wild gathering involving excessive drinking and promiscuity."], "voucher": ["A certificate that acknowledges a debt."], "gamble away": ["To lose in a game of chance."], "norovirus": ["A genus of RNA viruses of the Caliciviridae family which causes gastroenteritis."], "Lusophone": ["Someone who speaks the Portuguese language.", "Speaking the Portuguese language."], "terror": ["Extreme or intense fear.", "Something that causes extreme or intense fear."], "debilitate": ["To weaken or reduce in force, intensity, effect, quantity."], "weaken": ["To weaken or reduce in force, intensity, effect, quantity.", "To destroy property or hinder normal operations."], "enervate": ["To weaken or reduce in force, intensity, effect, quantity."], "debility": ["The state of being weak."], "infirmity": ["The state of being weak."], "decrepitude": ["The state of being weak."], "debilitation": ["The state of being weak."], "debonair": ["Courteous, gracious, and having a sophisticated charm."], "breezy": ["Courteous, gracious, and having a sophisticated charm."], "jaunty": ["Courteous, gracious, and having a sophisticated charm."], "buck": ["A male rabbit.", "A bill having a value of 1 American dollar."], "bunion": ["A bump or bulge on the first joint of the big toe caused by the swelling of a sac of fluid under the skin."], "buret": ["A vertical cylindrical piece of laboratory glassware with a volumetric graduation on its full length and a precision tap, or stopcock, on the bottom."], "burette": ["A vertical cylindrical piece of laboratory glassware with a volumetric graduation on its full length and a precision tap, or stopcock, on the bottom."], "rattle": ["A baby's toy designed to make sound when shaken, usually containing loose grains or pellets in a hollow container.", "A wooden instrument that makes a loud knocking noise [used by people watching football games]."], "barb": ["A backward-facing point on a fish hook or similar implement, rendering extraction from the victim's flesh more difficult.", "One of the side branches extending from the central axis of a feather."], "debtor": ["One that owes something to another."], "observance": ["The practice of complying with a law, custom, command or rule."], "knife point": ["The tip of a knife blade."], "decadence": ["Moral degeneration or decay."], "decadent": ["Characterized by decadence."], "decathlete": ["An athlete who takes part in or trains chiefly for a decathlon."], "decathlon": ["An athletic contest consisting of ten different events."], "roach coach": ["A small portable place to buy lunch and snacks at work."], "food truck": ["A small portable place to buy lunch and snacks at work."], "mobile kitchen": ["A small portable place to buy lunch and snacks at work."], "deceit": ["The act or practice of deceiving."], "disrespect": ["Lack of respect, disrespectful attitude."], "disrespectfulness": ["Lack of respect, disrespectful attitude.", "A disrespectful act or statement."], "decency": ["The state or quality of being decent."], "smell a rat": ["To suspect that something is wrong."], "decent": ["Showing integrity, fairness, or other characteristics associated with moral uprightness."], "yoke": ["A device for joining together a pair of draft animals."], "aardvark": ["A burrowing mammal (Orycteropus afer) of southern Africa, having a stocky, hairy body, large ears, a long tubular snout, and powerful digging claws."], "viral disease": ["Disease produced by viruses."], "otter": ["Any of several aquatic, furbearing, weasellike mammals of the genus Lutra , having webbed feet and a long, slightly flattened tail."], "gerontocracy": ["A form of government where power lies in the hands of old people."], "gentrification": ["The transformation of a neighbourhood's demographic and character that ensues when affluent individuals move in, causing real estate value (and thus rent and property taxes) to increase and forcing less affluent long-time resident to relocate."], "instrumentalist": ["A person who plays a musical instrument."], "deception": ["The act or practice of deceiving.", "Deceptive or false appearance; that which misleads the eye or the mind."], "deceptive": ["Not in keeping with the reality or the facts."], "beast of burden": ["An animal used for carrying heavy loads or pulling heavy equipment."], "gluttony": ["Habitual excessive eating and drinking."], "upset": ["In an unhappy and worried mental state."], "decided": ["Inclined to assert oneself."], "decimal": ["A number in the decimal system."], "fur seal": ["Any of several eared seals of the genera Callorhinus or Arctocephalus, having thick, soft underfur."], "declaim": ["To speak aloud in an oratorical manner."], "humpback whale": ["A large whalebone whale of the genus Megaptera."], "mating season": ["The time when animals pair."], "gangway": ["A temporary bridge such as one between a ship and the shore."], "test-tube baby": ["Baby conceived by in vitro fertilization."], "test tube baby": ["Baby conceived by in vitro fertilization."], "grudge": ["Deep-seated animosity or ill-feeling about something or someone."], "test tube": ["A glass tube, rounded at one end and open at the other; used for small-scale laboratory tests."], "fillet": ["A mesh of string, cord, or rope generally used for catching fish or trapping something."], "declamation": ["The act or art of declaiming."], "autoclave": ["A pressurized device designed to heat aqueous solutions above their boiling point at normal atmospheric pressure to achieve sterilization."], "V\u00e4rmlandic": ["A dialect of Swedish who in main is spoken in V\u00e4rmland, Sweden."], "Northern Pintail": ["A widely-occurring duck which breeds in the northern areas of Europe, Asia and North America."], "Pintail": ["A widely-occurring duck which breeds in the northern areas of Europe, Asia and North America."], "decorative": ["Serving or tending to decorate."], "ibex": ["Any of several wild goats of the genus Capra.", "A tahr of the species Nilgiritragus hylocrius endemic to the Nilgiri Hills in southern India."], "decorator": ["A person who decorates rooms, houses etc."], "vaporize": ["To transition from a liquid state into a gaseous state."], "exhalation": ["The act of breathing out."], "glucose": ["A simple monosaccharide sugar, which is a principal source of energy for most living things."], "vacant post": ["An unoccupied employment position."], "estradiol": ["A sex hormone belonging to the group of the estrogens."], "oestradiol": ["A sex hormone belonging to the group of the estrogens."], "Bohemian Waxwing": ["(Bombycilla garrulus) A sleek singing bird, 18-21 cm long with a pointed crest, from the genus Bombycilla."], "chest cavity": ["The cavity in the vertebrate body enclosed by the ribs between the diaphragm and the neck and containing the lungs and heart.", "The enclosed area created by and within the ribs."], "digestive system": ["Group of organs stretching from the mouth to the anus, serving to breakdown foods, assimilate nutrients, and eliminate waste."], "gravestone": ["A memorial stone on a grave which often bears an inscription with the name and date of birth and death of the deceased person."], "headstone": ["A memorial stone on a grave which often bears an inscription with the name and date of birth and death of the deceased person."], "tombstone": ["A memorial stone on a grave which often bears an inscription with the name and date of birth and death of the deceased person."], "date of death": ["The date on which a person has died."], "book review": ["The critical evaluation of a literary work."], "book report": ["The critical evaluation of a literary work."], "literary review": ["The critical evaluation of a literary work."], "bramble": ["A fruit-bearing shrub of the genus Rubus."], "gastric acid": ["The acidic secretion of the stomach; mostly hydrochloric acid."], "stomach acid": ["The acidic secretion of the stomach; mostly hydrochloric acid."], "deductible": ["Capable of being deducted or subtracted.", "An amount that can be deducted, especially for the purposes of calculating income tax."], "deductable": ["Capable of being deducted or subtracted."], "deductive": ["Of or based on deduction."], "small intestine": ["The longest part of the alimentary canal; where digestion is completed."], "thoracic cavity": ["The cavity in the vertebrate body enclosed by the ribs between the diaphragm and the neck and containing the lungs and heart.", "The enclosed area created by and within the ribs."], "ostracize": ["To accept no longer in a community, group or country, e.g. by official decree."], "deface": ["To mar the surface or appearance of."], "blemish": ["To mar the surface or appearance of.", "A small flaw which spoils the appearance of something."], "defamation": ["An abusive attack of a person's reputation by any slanderous communication.", "A false accusation of an offense or a malicious misrepresentation of someone's words or actions."], "slander": ["To attack falsely or with malicious intent the good name and reputation of someone.", "An abusive attack of a person's reputation by any slanderous communication."], "derogatory": ["An abusive attack of a person's reputation by any slanderous communication.", "Containing defamation.", "Having a negative denotation or connotation."], "sexuality": ["The sexual functions, activities, attitudes, and orientations of an individual."], "during": ["During a time"], "whilst": ["During a time"], "defame": ["To attack falsely or with malicious intent the good name and reputation of someone."], "defamatory": ["Containing defamation."], "injurious": ["Containing defamation.", "Causing damage or harm."], "invidious": ["Containing defamation."], "opprobrious": ["Containing defamation."], "libelous": ["Containing defamation."], "after-lunch nap": ["A short nap after lunch."], "afternoon nap": ["A short nap in the afternoon."], "numb": ["To become insensitive."], "deafen": ["To render deaf."], "go blind": ["To become blind."], "made-up": ["Consisting of a lie."], "fabricated": ["Consisting of a lie."], "concocted": ["Consisting of a lie."], "defeatism": ["A state of mind in which one expects and accepts defeat too easily."], "inauguration": ["The ceremonial induction into a position."], "windpipe": ["The passage for the breath from the larynx to the lungs."], "trachea": ["The passage for the breath from the larynx to the lungs."], "feces": ["Substance that human and animal bodies release from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon."], "faeces": ["Substance that human and animal bodies release from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon."], "f\u00e6ces": ["Substance that human and animal bodies release from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon."], "crap": ["Substance that human and animal bodies release from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon.", "To excrete feces from one's body through the anus.", "Worthless object of bad quality.", "Of poor quality."], "poo": ["Substance that human and animal bodies release from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon."], "poop": ["Substance that human and animal bodies release from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon."], "fecal matter": ["Substance that human and animal bodies release from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon."], "M\u00f6hne Reservoir": ["An artificial lake in North Rhine-Westphalia, Germany."], "Karlsruhe": ["Third-biggest city in Baden-W\u00fcrttemberg, Germany which was founded in the 18th century and whose streets form a fan."], "lie to": ["To tell someone a lie."], "defecation": ["The elimination of fecal waste through the anus."], "bladder stone": ["Stone-shaped deposits in the urinary bladder."], "shot to the head": ["A shot in the head with a projectile."], "shot in the head": ["A shot in the head with a projectile."], "shot in the leg": ["A shot in the leg with a projectile."], "bored": ["Feeling tired of a person or situation that is perceived as uninteresting."], "gullet": ["The tube by which food passes from the mouth to the stomach."], "oesophagus": ["The tube by which food passes from the mouth to the stomach."], "multiple sclerosis": ["An autoimmune condition in which the immune system attacks the central nervous system, leading to demyelination."], "autophagy": ["A function of cell metabolism which involves the degradation of cell components which are not needed anymore.", "Pathological desire to eat parts of one's own body."], "autophagocytosis": ["A function of cell metabolism which involves the degradation of cell components which are not needed anymore."], "esophagus": ["The tube by which food passes from the mouth to the stomach."], "computer-generated": ["Generated by a computer."], "self-cannibalism": ["Pathological desire to eat parts of one's own body."], "autocannibalism": ["Pathological desire to eat parts of one's own body."], "autosarcophagy": ["Pathological desire to eat parts of one's own body."], "defenceless": ["Helpless or without protection."], "defenseless": ["Helpless or without protection."], "defend": ["To keep something or someone safe or prevent harm coming to someone or something.", "To argue or speak in defense of."], "defender": ["Someone who defends with conviction one thesis, ideal or plan.", "The person or process that mitigates or prevents an attack."], "defensible": ["Capable of being defended."], "defendable": ["Capable of being defended."], "cerebral palsy": ["A loss or deficiency of motor control with involuntary spasms caused by permanent brain damage present at birth."], "antebellum": ["Belonging to or pertaining to the period before a war.", "In the United States: Pertaining to the period before the Civil War."], "brain haemorrhage": ["A bleeding in the brain caused by the rupture of a blood vessel within the head."], "pre-Civil War": ["In the United States: Pertaining to the period before the Civil War."], "cerebral haemorrhage": ["A bleeding in the brain caused by the rupture of a blood vessel within the head."], "pass gas": ["To emit digestive gases through the anus."], "let rip": ["To emit digestive gases through the anus."], "gasoline tank": ["Container used to store fuel, for example in a car."], "fuel tank": ["Container used to store fuel, for example in a car."], "fear of flying": ["Pathological fear of flying."], "aerophobia": ["Pathological fear of flying."], "aviatophobia": ["Pathological fear of flying."], "aviophobia": ["Pathological fear of flying."], "pteromechanophobia": ["Pathological fear of flying."], "water tank": ["A large container used to store water."], "mastication": ["The process by which food is crushed and ground by teeth."], "chewing": ["The process by which food is crushed and ground by teeth."], "wainscot": ["An area of wooden (especially oaken) panelling on the lower part of a room\u2019s walls."], "holistic": ["Relating to an analysis of the whole instead of a separation into parts."], "stomach cancer": ["A type of cancer that can develop in any part of the stomach and may spread throughout the stomach and to other organs; particularly the esophagus, lungs and the liver."], "gastric cancer": ["A type of cancer that can develop in any part of the stomach and may spread throughout the stomach and to other organs; particularly the esophagus, lungs and the liver."], "deference": ["Favourable regard."], "deferential": ["Showing deference."], "gastritis": ["Inflammation of the lining of the stomach."], "secretion": ["The regulated release of a substance by a cell or group of cells."], "elimination": ["The act of discharging or excreting from the body waste products that arise as a result of metabolic activity.", "The act of eliminating.", "The complete destruction of every trace of something."], "deferment": ["Act of putting off to a future time."], "defiance": ["The feeling, or spirit of being defiant."], "disrespectful": ["Showing a lack of deference.", "Exhibiting no courtesy."], "defiant": ["Boldly resisting opposition."], "recalcitrant": ["Boldly resisting opposition."], "deficiency": ["A shortage or absence of what is needed."], "inadequacy": ["A shortage or absence of what is needed."], "insufficiency": ["A shortage or absence of what is needed."], "good-bye": ["An interjection of parting."], "V\u00f5ro": ["a language belonging to the Baltic-Finnic branch of the Finno-Ugric languages spoken in Estonia."], "Gulf of Bothnia": ["The northernmost arm of the Baltic Sea."], "definable": ["Capable of being defined."], "orange flower water": ["Distillate of bitter-orange blossoms which is used to flavour desserts and pastry."], "orange blossom water": ["Distillate of bitter-orange blossoms which is used to flavour desserts and pastry."], "distillate": ["A purified liquid produced by condensation from vapor in distillation."], "deformed": ["Unusual of shape."], "deformity": ["The state of being badly shaped or formed."], "defrost": ["To remove frost from."], "dexterity": ["Nimble in the use of the hands and body."], "deftness": ["Nimble in the use of the hands and body."], "delectable": ["Pleasing to the taste.", "Capable of arousing desire."], "luscious": ["Pleasing to the taste.", "Capable of arousing desire."], "pleasant-tasting": ["Pleasing to the taste."], "scrumptious": ["Pleasing to the taste."], "toothsome": ["Pleasing to the taste."], "enchanting": ["Capable of arousing desire."], "predate": ["To assign to a date earlier than the actual date.", "To prey on or hunt for."], "antedate": ["To assign to a date earlier than the actual date."], "backdate": ["To assign to a date earlier than the actual date."], "postdate": ["To assign a date later than the acutal date."], "antiquise": ["To imitate the style of the classical antiquity."], "delegacy": ["A group of people authorised to represent a person or organisation."], "sinusitis": ["Inflammation of a sinus or the sinuses."], "cholera": ["A highly infectious, often fatal disease occurring in hot countries."], "nougat": ["A chewy or brittle candy containing almonds or other nuts and sometimes fruit."], "delicacy": ["Something delightful or pleasing.", "The state or quality of being delicate.", "An especially delicious comestible."], "delicate": ["Easily damaged or requiring careful handling."], "marzipan": ["A confection of almond paste and sugar."], "marchpane": ["A confection of almond paste and sugar."], "titbit": ["Something delightful or pleasing."], "fatty acid": ["Any of a large group of organic acids, especially those found in animal and vegetable fats and oils."], "prussic acid": ["An aqueous solution of hydrogen cyanide."], "dizziness": ["A sensation of irregular or whirling motion, either of oneself or of external objects."], "giddiness": ["A sensation of irregular or whirling motion, either of oneself or of external objects."], "cocoa": ["Dried and fully fermented fatty seed of the cacao tree from which chocolate is made.", "A brown powder made from roasted, ground cocoa beans, used in making chocolate, and in cooking."], "candy": ["Food item that is rich in sugar."], "alder": ["Any of several trees or shrubs of the genus Alnus, belonging to the birch family."], "vermiculite": ["Any of a group of platy minerals, hydrous silicates of aluminum, magnesium, and iron, that expand markedly on being heated: used in the expanded state for heat insulation and as a plant growth medium."], "overspend": ["To spend more money than one can afford."], "chicken wire": ["A mesh of wire commonly used to fence poultry livestock."], "poultry netting": ["A mesh of wire commonly used to fence poultry livestock."], "cloudberry": ["A low herb (Rubus chamaemorus) that bear edible yellow aggregate fruits.", "The fruit of the cloudberry plant."], "olive tree": ["A tree of the genus Olea cultivated for its fruit."], "stray dog": ["A dog without a home."], "foundling": ["An abandoned child."], "Blutenburg Castle": ["Castle in the west of Munich, Germany."], "anorexic": ["Suffering from anorexia nervosa.", "A person suffering from anorexia nervosa.", "Female person suffering from anorexia nervosa.", "Male person suffering from anorexia nervosa."], "anorectic": ["Suffering from anorexia nervosa.", "A person suffering from anorexia nervosa.", "Having no appetite.", "Causing a loss of appetite.", "A substance that reduces the appetite and causes a person to eat less."], "anorectous": ["Having no appetite."], "anoretic": ["Having no appetite.", "Causing a loss of appetite.", "A substance that reduces the appetite and causes a person to eat less."], "anorexigenic": ["Causing a loss of appetite.", "A substance that reduces the appetite and causes a person to eat less."], "appetite suppressant": ["A substance that reduces the appetite and causes a person to eat less."], "suicide attempt": ["An attempt to kill oneself."], "power-sapping": ["Consuming a lot of electricity."], "power-saving": ["Consuming little electricity."], "shelf warmer": ["Merchandise that is slow-selling or does not sell at all and therefore remains in the shop or storage."], "defecate": ["To excrete feces from one's body through the anus."], "deceased": ["No longer living."], "defunct": ["No longer living."], "departed": ["No longer living."], "sleeveless": ["Without sleeves."], "nephrectomy": ["The surgical removal of a kidney."], "insolvent": ["Having insufficient assets to cover one's debts."], "cash-strapped": ["Having insufficient money."], "orderly": ["Having a systematic arrangement."], "old-fashioned": ["Of a style that is no longer in vogue or fashionable."], "retirement home": ["A multi-residence housing facility intended for the elderly."], "sewer rat": ["Rat that lives in the sewers."], "epiphany": ["An appearance or manifestation of a deitiy or a superhuman being.", "A sudden realization or discovery which results in a feeling of elation and clarity."], "delead": ["To remove lead from."], "credit event": ["The event when a debtor is unable meet his obligations."], "coven": ["A clique that shares common interests or activities.", "A formal group or assembly of witches"], "road sign": ["A sign erected at the side of a road to provide information to road users."], "traffic sign": ["A sign erected at the side of a road to provide information to road users."], "long-distance relationship": ["Intimate relationship in which the partners live far away from each other."], "LDR": ["Intimate relationship in which the partners live far away from each other."], "weekend relationship": ["Intimate relationship with two partners who don't live together and see each other only on weekends."], "poke": ["To touch something lightly with a narrow pointed object, like a finger or a stick.", "To strike hard with the hand, fist, or some heavy instrument, usually repeatedly.", "To search or inquire intrusively.", "To poke or thrust abruptly."], "racehorse": ["A horse bred for racing."], "flatter": ["To flatter in an obsequious manner.", "To praise somewhat dishonestly."], "blandish": ["To flatter in an obsequious manner.", "To praise somewhat dishonestly."], "blarney": ["To encourage, influence or persuade by effort.", "To flatter in an obsequious manner."], "soaking wet": ["Very wet."], "become widowed": ["To become a widow or a widower."], "drenched": ["Very wet."], "dripping wet": ["Very wet."], "sopping wet": ["Very wet."], "wringing wet": ["Very wet."], "soppy": ["Very wet."], "sopping": ["Very wet."], "acerola": ["A tropical shrub or small tree in the family Malpighiaceae with edible fruit that are rich in vitamin C."], "acerolla": ["A tropical shrub or small tree in the family Malpighiaceae with edible fruit that are rich in vitamin C."], "Barbados cherry": ["A tropical shrub or small tree in the family Malpighiaceae with edible fruit that are rich in vitamin C.", "The small, red, round fruit of the acerola shrub which is rich in Vitamin C."], "wild crapemyrtle": ["A tropical shrub or small tree in the family Malpighiaceae with edible fruit that are rich in vitamin C."], "acerola juice": ["Juice made of the fruit of the acerola."], "lemon juice": ["The juice of lemons."], "lime juice": ["The juice of limes."], "paintbrush": ["A small brush used to paint artwork."], "is an ingredient of": ["an ingredient of foo is an item used to make foo."], "distilled beverage": ["Alcoholic beverage produced through destillation, regardless of alcohol content."], "thriller": ["A suspenseful, sensational story or film."], "demagogue": ["A political leader who seeks support by appealing to popular passions and prejudices."], "slum": ["A run-down area of a city where the poor and socially disadvantaged live and which is characterized by substandard housing, overpopulation and lack of infrastructure such as clean water, sanitation and electricity."], "informal settlement": ["Settlement on the outskirts of a city, often built without authorization, where poor people live in improvised dwellings made from carton, wood or corrugated metal."], "shanty town": ["Settlement on the outskirts of a city, often built without authorization, where poor people live in improvised dwellings made from carton, wood or corrugated metal."], "impoverished": ["Reduced to poverty, having lost one's wealth."], "pauperized": ["Reduced to poverty, having lost one's wealth."], "pauperize": ["To become poor or poorer.", "To make poor."], "legalize": ["To make legal, to authorize by law."], "decriminalize": ["To make legal, to authorize by law."], "criminalize": ["To make illegal, to make punishable as a crime."], "illegalize": ["To make illegal, to make punishable as a crime."], "outlaw": ["A person that has conducted a criminal act.", "To make illegal, to make punishable as a crime."], "nudge": ["To touch something lightly with a narrow pointed object, like a finger or a stick."], "demagogy": ["Impassioned appeals to the prejudices and emotions of the populace."], "demagoguery": ["Impassioned appeals to the prejudices and emotions of the populace."], "sled": ["A small sledge without runners intended for pleasure rides downslopes on snow.", "To ride a sled."], "kohlrabi": ["Cultivar of cabbage (Brassica oleracea var. Gongylodes) that is grown for its swollen, edible stem rather than its leaves."], "commuter": ["A person who travels to work daily."], "jockey": ["A person who rides horses professionally in races."], "dementia": ["Severe and progressive impairment or loss of intellectual capacity and personality integration, due to the loss of or damage to neurons in the brain."], "menopausal": ["Pertaining to or characteristic of menopause."], "post-menopausal": ["Pertaining to or characteristic of the time after menopause."], "postmenopausal": ["Pertaining to or characteristic of the time after menopause."], "pre-menopausal": ["Pertaining to or characteristic of the time before menopause."], "premenopausal": ["Pertaining to or characteristic of the time before menopause."], "credit-financed": ["Financed by means of credit."], "paternal grandfather": ["The father of someone's father."], "maternal grandfather": ["The father of someone's mother."], "Knesset": ["The parliament of Israel, located in Jerusalem."], "white cabbage": ["Form of cabbage (Brassica oleracea var. capitata f. alba) that forms large, tightly closed heads with light-colored leaves."], "cabbage turnip": ["Cultivar of cabbage (Brassica oleracea var. Gongylodes) that is grown for its swollen, edible stem rather than its leaves."], "glutinous rice": ["Asian rice which is especially sticky when cooked."], "sticky rice": ["Asian rice which is especially sticky when cooked."], "sweet rice": ["Asian rice which is especially sticky when cooked."], "waxy rice": ["Asian rice which is especially sticky when cooked."], "botan rice": ["Asian rice which is especially sticky when cooked."], "mochi rice": ["Asian rice which is especially sticky when cooked."], "pearl rice": ["Asian rice which is especially sticky when cooked."], "fiat currency": ["Money that does not have any intrinsic value and that is not backed up by real values such as gold or silver, it derives its value only from government decree."], "fiat money": ["Money that does not have any intrinsic value and that is not backed up by real values such as gold or silver, it derives its value only from government decree."], "propeller": ["A mechanical device, with shaped blades that turn on a shaft, to push against air or water, especially one used for propelling an aircraft or boat."], "fried sticky rice": ["A dish of Chinese cuisine consisting of sticky rice with Chinese sausage, chopped Chinese mushrooms and chopped barbecue pork."], "democrat": ["An advocate of democracy."], "new car": ["Car that was just recently built and that has no previous owners."], "oncological": ["Of or relating to oncology."], "caoutchouc": ["An elastic hydrocarbon polymer that naturally occurs as a milky colloidal suspension, or latex, in the sap of some plants."], "democratize": ["To make democratic.", "To become democratic."], "demonstrable": ["Capable of being demonstrated or proved."], "wheelchair-bound": ["Unable to walk and forced to sit in a wheelchair."], "confined to a wheelchair": ["Unable to walk and forced to sit in a wheelchair."], "cave dweller": ["Prehistoric, primitive human living in caves."], "pretext": ["Something serving to conceal plans."], "cloak": ["Something serving to conceal plans.", "A long outer garment worn over the shoulders covering the back; a cape, often with a hood. \u2003"], "demotivate": ["To make someone lose motivation."], "demur": ["To make objection.", "The act of making objection."], "demure": ["Characterized by shyness and modesty."], "denary": ["Containing or having as a basis the number ten."], "tenfold": ["Containing or having as a basis the number ten."], "grammatical property": ["Property of a word, as transitive or intransitive for a verb, countable for a noun or comparable for an adjective."], "pedagogue": ["A person who studies and practices the science of teaching."], "sandpaper": ["Strong paper coated with a layer of sand or other abrasive, used for smoothing or polishing."], "denigration": ["An abusive attack of a person's reputation by any slanderous communication.", "An abusive attack on a person's character or good name"], "denominator": ["(Mathematics) The expression written below the line in a common fraction that indicates the number of parts into which one whole is divided."], "body part": ["Part of the body of a human or an animal, as a head or a foot."], "denim": ["A kind of cotton cloth, often blue, used for making jeans, overalls and other work and leisure garments."], "of course": ["As would be expected."], "dent": ["A hollow or depression in a surface."], "exaggerate": ["To make something appear to be, or describe it as, greater than it really is."], "bedpan": ["A small quite flat bowl used f ex in health care to collect urine from those confined to bed."], "knuckle": ["The joint that connects the fingers to the back of the hand, and which on a closed fist stands out as protrusions from the back of the hand."], "midriff": ["A sheet of muscle extending across the bottom of the ribcage, it separates the diafragma from the abdominal cavity and performs an important function in respiration."], "big toe": ["The largest of the toes on the foot."], "eyelid": ["A skin flap that can be closed over an eye."], "dentures": ["A partial or complete set of artificial teeth for either the upper or lower jaw."], "sickness": ["A definite pathological process having a characteristic set of signs and symptoms which are detrimental to the well-being of the individual."], "depart": ["To go away from a place; to leave.", "To move away from a place into another direction."], "quit": ["To give up from a job or position.", "To go away from a place; to leave.", "To put an end to a state or an activity."], "departure": ["The act of departing."], "dependable": ["Worthy of being depended on."], "dependence": ["The state of relying on or being controlled by someone or something else.", "A compulsive or chronic need."], "ulna": ["The smaller of the two bones of the forearm, that connects to the wrist on the side opposite to the thumb."], "elbow bone": ["The smaller of the two bones of the forearm, that connects to the wrist on the side opposite to the thumb."], "one-armed": ["With only one arm."], "single-arm": ["With only one arm."], "depiction": ["Representation by drawing or painting etc."], "depilate": ["To remove hair from the body."], "epilate": ["To remove hair from the body."], "Earth-like": ["Resembling planet Earth."], "Kaqchikel": ["An indigenous Mesoamerican language and a member of the Quichean-Mamean branch of the Mayan languages family, spoken by the indigenous Kaqchikel people in central Guatemala."], "K'iche'": ["A language of Guatemala."], "self-love": ["The love of oneself."], "self love": ["The love of oneself."], "self-hate": ["A feeling of hate and anger towards oneself."], "self-hatred": ["A feeling of hate and anger towards oneself."], "autophobia": ["A feeling of hate and anger towards oneself."], "depopulate": ["To remove or reduce the population of, as by destruction or expulsion."], "self-loathing": ["A feeling of hate and anger towards oneself."], "barefaced": ["With the face uncovered.", "Unrestrained by convention or propriety."], "barehanded": ["With no covering on the hands."], "deport": ["To expel from a country."], "ear lobe": ["The lower fleshy part of the human ear."], "fishing line": ["A line intended to fasten hooks in when fishing."], "aftershave": ["A scented, astringent lotion for applying to the face after shaving."], "ball-shaped": ["Shaped like a sphere."], "orbicular": ["Shaped like a sphere."], "certainty": ["Something which cannot be doubted."], "identity card": ["A card for identifying the bearer, giving name, address, and other personal data."], "identification card": ["A card for identifying the bearer, giving name, address, and other personal data."], "deprecate": ["Consider bad or wrong."], "Chontal": ["A Mayan language spoken by the Chontal Maya people, an indigenous people of the Mexican state of Tabasco."], "Chol": ["Mayan language spoken by the Ch'ol people in the Mexican state of Chiapas."], "Chort\u00ed": ["A Mayan language spoken in Guatemala in the municipalities of Jocot\u00e1n and d'Olopa, located in the department of Chiquimula, as well as in the department of Zacapa."], "Tzeltal": ["A mayan language of the Tzeltalan group spoken in the Mexican state of Chiapas."], "Tzotzil": ["A Maya language spoken by the indigenous Tzotzil Maya people in the Mexican state of Chiapas."], "Chicomuceltec": ["An extinct Mayan language formerly spoken in the region defined by the municipios of Chicomuselo, Mazapa de Madero, and Amatenango de la Frontera in Chiapas, Mexico, as well as some nearby areas of Guatemala."], "Huastec": ["Mayan language of Mexico, spoken by the Huastecs living in rural areas of San Luis Potos\u00ed and northern Veracruz."], "Chuj": ["A language of Guatemala."], "Tojolabal": ["A Mayan language spoken by the Tojolabal people primarily in the departments of Las Margaritas and Altamirano, in Chiapas, Mexico."], "depreciate": ["To attack falsely or with malicious intent the good name and reputation of someone."], "depressant": ["A drug that reduces excitability and calms a person."], "Jakalteko": ["A Mayan language spoken in Guatemala by the Jakaltek people in the department of Huehuetenango and the adjoining part of Chiapas in southern Mexico."], "Kanjobal": ["A language of Guatemala."], "downy": ["A drug that reduces excitability and calms a person."], "tranquilizer": ["A drug that reduces excitability and calms a person."], "sedative": ["A drug that reduces excitability and calms a person."], "deprivation": ["The withholding of something needed."], "marmot": ["A member of the genus Marmota, in the rodent family Sciuridae (squirrels)."], "deprived": ["Suffering from hardship."], "Mocho": ["A Maya language spoken in the Mexican state of Chiapas."], "Ixil": ["A Mayan language spoken in the three villages of San Gaspar Chajul, San Juan Cotzal, and San Maria Nebaj in Guatemala."], "Mam": ["A Mayan language spoken by the Mam people of the highlands of western Guatemala and in Chiapas, Mexico."], "Tektiteko": ["A Mayan language of the Quichean-Mamean branch spoken by the Tektitek people, which are primarily settled in the municipality of Tectit\u00e1n, department of Huehuetenango, Guatemala and in Mexico."], "chicken egg": ["An egg laid by a hen."], "hen's egg": ["An egg laid by a hen."], "Thika": ["A river that flows through central Kenya."], "gold ring": ["A finger ring made of gold."], "silver ring": ["A finger ring made of silver."], "deputation": ["A group of people authorised to represent a person or organisation."], "depute": ["To authorise someone to act on his/her behalf.", "To give something to (a person), or assign a task to (a person)."], "faloodeh": ["A Persian sorbet made of thin vermicelli noodles frozen with corn starch, rose water, lime juice, and often ground pistachios."], "alabaster": ["Made of alabaster.", "Resembling alabaster."], "Poqomam": ["A mayan language spoken by the Poqomam people in Guatemala, mostly in the municipalities of Chinautla (Guatemala department), Pal\u00edn (Escuintla department), and in San Luis Jilotepeque (Jalapa department)."], "Poqomchi'": ["A Mayan language spoken in Guatemala, in the municipalities of Purulh\u00e1 (Baja Verapaz department), Santa Cruz Verapaz, San Crist\u00f3bal Verapaz, Tactic, Tamah\u00fa, Tucur\u00fa (Alta Verapaz department) and Chicam\u00e1n (El Quich\u00e9 department)."], "Achi": ["Mayan language spoken by the Achi people, primarily in the department of Baja Verapaz in Guatemala."], "Tz'utujil": ["A Mayan language spoken in the region to the south of Lake Atitl\u00e1n in Guatemala."], "derailment": ["An accident in which a train runs off its track."], "Sacapulteco": ["A language spoken in Sacapulas, a municipality in the Guatemalan Department of Quich\u00e9."], "credit default swap": ["A contract where the buyer of the swap makes regular payments to the seller and in return receives a payoff in case the debtor of the underlying financial instrument defaults."], "Tz'utujiil": ["A Mayan language spoken in the region to the south of Lake Atitl\u00e1n in Guatemala."], "former name": ["Label to link the current name with a former name."], "flamingo": ["Any of several aquatic birds of the family Phoenicopteridae, having very long legs and neck, a bill bent downward at the tip, and pinkish to scarlet plumage."], "derelict": ["A person abandoned by society, esp. a person without a permanent home and means of support."], "vagrant": ["A person abandoned by society, esp. a person without a permanent home and means of support."], "vagabond": ["A person abandoned by society, esp. a person without a permanent home and means of support."], "tramp": ["A person abandoned by society, esp. a person without a permanent home and means of support.", "To move about aimlessly or without any destination."], "derogate": ["To attack falsely or with malicious intent the good name and reputation of someone."], "transitive": ["Pertaining to a verb: can be accompanied by a direct object in active sentences."], "intransitive": ["Pertaining to a verb: cannot be accompanied by a direct object in active sentences"], "reflexive": ["Pertaining to a verb: subject and direct object are always identical."], "impersonal": ["Pertaining to a verb: cannot take a true subject, because it does not represent an action, occurrence, or state-of-being of any specific person, place, or thing"], "standard value": ["A value that is used when no value is specified."], "default value": ["A value that is used when no value is specified."], "strawberry field": ["Area where strawberries are cultivated."], "strawberry plantation": ["Area where strawberries are cultivated."], "Archangel": ["A city and the administrative center of Arkhangelsk Oblast, Russia."], "dereliction": ["The act of abandoning something."], "desertion": ["The act of abandoning something.", "The act of giving something up."], "deride": ["To treat or speak of with contempt."], "gibe": ["To treat or speak of with contempt."], "jibe": ["To be compatible, similar or consistent; coincide in their characteristics.", "To treat or speak of with contempt."], "hoot": ["To treat or speak of with contempt."], "jeer": ["To treat or speak of with contempt."], "mock": ["To treat or speak of with contempt."], "taunt": ["To treat or speak of with contempt.", "To harass with persistent criticism or carping."], "flout": ["To treat or speak of with contempt."], "double-blind experiment": ["An experiment where neither the individuals nor the researchers know who belongs to the control group and the experimental group."], "double-blind trial": ["An experiment where neither the individuals nor the researchers know who belongs to the control group and the experimental group."], "double-blind study": ["An experiment where neither the individuals nor the researchers know who belongs to the control group and the experimental group."], "Rio": ["The second major city of Brazil, behind S\u00e3o Paulo and the capital of the state of Rio de Janeiro."], "Magdalena River": ["The principal river of Colombia, running about 1,540 kilometres (950 miles) from South to North through the western half of the country."], "talk into": ["Persuade somebody to do something."], "Yuma River": ["The principal river of Colombia, running about 1,540 kilometres (950 miles) from South to North through the western half of the country."], "Tyvan": ["A Turkic languages spoken in the Republic of Tuva in south-central Siberia in Russia, in China and Mongolia."], "separable": ["Pertaining to a verb: composed of a stem and an affix, which can be detached from the stem in several inflected forms"], "inseparable": ["Pertaining to a verb: Not composed of a stem and an affix, which can be detached from the stem."], "Malay Archipelago": ["A group of 20,000 islands between the Indian and Pacific Oceans."], "Maritime Southeast Asia": ["A group of 20,000 islands between the Indian and Pacific Oceans."], "benign pseudohypertrophic muscular dystrophy": ["An X-linked recessive inherited disorder characterized by slowly progressive muscle weakness of the legs and pelvis."], "scythe": ["A farm tool consisting of a long bent blade attached to a shaft, that is designed for cutting straws of grass or grain from an upright position.", "To cut with or as with if a scythe."], "gas guzzler": ["A vehicle that needs a lot of fuel."], "gas-guzzler": ["A vehicle that needs a lot of fuel."], "kowtow": ["An act of respect common in Imperial China which consists of kneeling down and bowing so low as to touch the head to the ground.", "To kneel and bow so low as to touch one\u2019s forehead to the ground in expression of respect, worship, or submission.", "To act in a very submissive manner."], "enslave": ["To make (someone) a slave."], "enslaved": ["Reduced to slavery."], "enslaver": ["Someone who takes slaves."], "tedious": ["Causing boredom."], "biblical": ["Of, pertaining to, contained in or in accordance with the Bible.", "Evocative of the Bible or biblical times."], "Biblical": ["Of, pertaining to, contained in or in accordance with the Bible.", "Evocative of the Bible or biblical times."], "manic depression": ["A mood disorder with episodes of both depression and mania."], "bipolar affective disorder": ["A mood disorder with episodes of both depression and mania."], "Melanesian Pidgin English": ["An English-based creole language spoken throughout Papua New Guinea."], "Neo-Melanesian": ["An English-based creole language spoken throughout Papua New Guinea."], "New Guinea Pidgin": ["An English-based creole language spoken throughout Papua New Guinea."], "Sipacapense": ["A Mayan language, spoken natively within indigenous Sipakapense communities, primarily based in the Guatemalan municipality of Sipacapa, department of San Marcos."], "descry": ["To see, discover or determine something, unclear, distant or hidden, by looking carefully."], "discern": ["To see, discover or determine something, unclear, distant or hidden, by looking carefully.", "To detect with the senses."], "espy": ["To see, discover or determine something, unclear, distant or hidden, by looking carefully."], "Uspanteco": ["A Mayan language of the Greater Quichean group, spoken in the Uspant\u00e1n and Playa Grande Ixc\u00e1n municipalities, in the department El Quich\u00e9 of Guatemala."], "desecrate": ["To remove the consecration from a person or an object."], "defile": ["To make filthy.", "To remove the consecration from a person or an object."], "pollute": ["To remove the consecration from a person or an object.", "To make impure."], "profane": ["To remove the consecration from a person or an object.", "Not to respect the sacred character of."], "forsake": ["To leave someone who needs or counts on you."], "panettone": ["A cake specialty of Milan that is eaten around Christmas and New Year's."], "disc jockey": ["A person who selects, plays, and announces records at a discotheque."], "cummin": ["A flowering plant in the family Apiaceae, native from the east Mediterranean to East India."], "F": ["Music note between mi and sol.", "The abbreviation for folio, a book size.", "The abbreviation for folio, a book size."], "A": ["A musical note between G and B."], "D": ["Musical note between C and E.", "In snooker billards, the area on the table where the white cue ball has its frame-initial position."], "G": ["Musical note between F and A."], "garrote": ["A handheld weapon, most often referring to a ligature of chain, rope, scarf, wire or fishing line used to strangle someone to death.", "An execution device where the condemned is tied to a pole and strangulated from behind.", "To strangle with or as if with a garrote."], "garotte": ["A handheld weapon, most often referring to a ligature of chain, rope, scarf, wire or fishing line used to strangle someone to death.", "An execution device where the condemned is tied to a pole and strangulated from behind."], "Mantoux screening test": ["A diagnostic tool for tuberculosis."], "tuberculin sensitivity test": ["A diagnostic tool for tuberculosis."], "Pirquet test": ["A diagnostic tool for tuberculosis."], "PPD test": ["A diagnostic tool for tuberculosis."], "deserter": ["A person who deserts from the army."], "deservedly": ["In a deserved manner."], "justly": ["In a deserved manner."], "rightly": ["In a deserved manner."], "desiccated": ["Completely dried out."], "dehydrate": ["Completely dried out."], "desideratum": ["Something considered necessary or highly desirable."], "designation": ["Defined usage or destination for something."], "desirability": ["The extent to which something is desirable."], "drop earring": ["A piece of jewelry with a pendant that is worn on the ear."], "eardrop": ["A piece of jewelry with a pendant that is worn on the ear."], "MS": ["An autoimmune condition in which the immune system attacks the central nervous system, leading to demyelination."], "disseminated sclerosis": ["An autoimmune condition in which the immune system attacks the central nervous system, leading to demyelination."], "encephalomyelitis disseminata": ["An autoimmune condition in which the immune system attacks the central nervous system, leading to demyelination."], "Asperger's disorder": ["A neuropsychiatric disorder whose major manifestation is an inability to interact socially; other features include poor verbal and motor skills, single mindedness, and social withdrawal."], "Asperger's": ["A neuropsychiatric disorder whose major manifestation is an inability to interact socially; other features include poor verbal and motor skills, single mindedness, and social withdrawal."], "AS": ["A neuropsychiatric disorder whose major manifestation is an inability to interact socially; other features include poor verbal and motor skills, single mindedness, and social withdrawal."], "eidetic memory": ["Ability to recall images, sounds, or objects in memory with extreme accuracy and in abundant volume."], "photographic memory": ["Ability to recall images, sounds, or objects in memory with extreme accuracy and in abundant volume."], "total recall": ["Ability to recall images, sounds, or objects in memory with extreme accuracy and in abundant volume."], "desk clerk": ["A hotel receptionist."], "Diclofenac": ["A non-steroidal anti-inflammatory drug (NSAID) taken to reduce inflammation and as an analgesic reducing pain in conditions such as arthritis or acute injury."], "desolate": ["Barren and lifeless.", "To cause extensive destruction or ruin utterly.", "Which does not have inhabitants."], "desolation": ["Sadness resulting from being forsaken or abandoned."], "forlornness": ["Sadness resulting from being forsaken or abandoned."], "dispairing": ["Indicating despair."], "hopeless": ["Indicating despair."], "goshawk": ["A medium-large bird of prey in the family Accipitridae."], "cortisone": ["A natural glucocortico\u00efde hormone with formula C21H28O5."], "desperation": ["Loss of hope."], "despise": ["To regard with contempt."], "scorn": ["The feeling or attitude of regarding someone or something as inferior, base, or worthless.", "To regard with contempt."], "despite": ["In defiance of."], "notwithstanding": ["In defiance of."], "tapioca": ["A flavorless, colorless, odorless starch extracted from the root of the plant species Manihot esculenta."], "stereophonic decoder": ["Device for deriving the left- and right-hand signals from a stereophonic signal."], "despoil": ["To deprive of something valuable by force."], "despondent": ["Deeply agitated especially from emotion."], "despotic": ["Characteristic of, or pertaining to, a despot."], "despotism": ["The rule of a despot."], "tyranny": ["The rule of a despot."], "venous ulcer": ["Wound, usually on the leg, caused by malfunctioning veins that do not move blood back toward the heart normally."], "varicose ulcer": ["Wound, usually on the leg, caused by malfunctioning veins that do not move blood back toward the heart normally."], "sencha": ["The most popular green tea in Japan which is treated with hot steam in order to prevent oxidization."], "brown rice tea": ["Japanese green tea mixed with roasted rice grains."], "genmaicha": ["Japanese green tea mixed with roasted rice grains."], "E-Prime": ["A modified form of English that eliminates all forms of the word \"to be\" in order to prevent the passive voice and force the writer or speaker to name the agent of a statement."], "English-Prime": ["A modified form of English that eliminates all forms of the word \"to be\" in order to prevent the passive voice and force the writer or speaker to name the agent of a statement."], "glottogony": ["The scientific study of the origin of language.", "The undatable first emergence of a complex system of verbal communication."], "origin of language": ["The undatable first emergence of a complex system of verbal communication."], "undatable": ["That cannot be given a date."], "datable": ["That can be given a date."], "Lazi": ["A South Caucasian ethnogaphic group in Turkey and Georgia."], "Acateco": ["Mayan language spoken primarily in the municipality of San Miguel Acat\u00e1n in the western highlands of Guatemala, and by some people in Mexico."], "Acatec": ["Mayan language spoken primarily in the municipality of San Miguel Acat\u00e1n in the western highlands of Guatemala, and by some people in Mexico."], "Conob": ["Mayan language spoken primarily in the municipality of San Miguel Acat\u00e1n in the western highlands of Guatemala, and by some people in Mexico."], "Akatek": ["Mayan language spoken primarily in the municipality of San Miguel Acat\u00e1n in the western highlands of Guatemala, and by some people in Mexico."], "Old Greek": ["A historic language spoken widely with Greece as its centre"], "destine": ["To assign for a specific end, use, or purpose; to design or destine."], "destiny": ["The power or agency that, according to certain belief systems, predetermines and orders unalterably the course of events.", "Event that unavoidably happens to a person, country, institution, etc.", "An outcome, condition or event that is predetermined by fate [the power that predetermines events]."], "city apartment": ["Apartment in a city."], "constipation": ["A condition characterized by infrequent, incomplete or very hard bowel movements."], "costiveness": ["A condition characterized by infrequent, incomplete or very hard bowel movements.", "Extreme reluctance to spend money."], "irregularity": ["A condition characterized by infrequent, incomplete or very hard bowel movements."], "costive": ["Suffering from constipation."], "popess": ["A female pope"], "papess": ["A female pope"], "destitute": ["In great need of food, shelter, clothing etc.", "Completely wanting or lacking."], "destitution": ["Lack of the means of subsistence."], "privation": ["Lack of the means of subsistence."], "penury": ["Lack of the means of subsistence."], "Wastek": ["Mayan language of Mexico, spoken by the Huastecs living in rural areas of San Luis Potos\u00ed and northern Veracruz."], "muskmelon": ["An plant (Cucumis melo) of the family Cucurbitaceae characterized by relatively large edible fruits with hard shells and soft juicy flesh."], "destruct": ["To cause the destruction of."], "destructive": ["Causing or able to cause destruction."], "detached": ["Not joined to another house on either side.", "Having little or no emotions or interest towards someone else.", "Not influenced by anyone else.", "Not attached."], "windowless": ["Lacking windows."], "doorless": ["Lacking doors."], "separated": ["Not attached."], "unscrupulous": ["Unrestrained by scruples."], "nosocomial": ["Occurring or acquired in a hospital."], "nosocomial infection": ["Infection that a patient who seeks treatment for a different condition acquires in a hospital or other healthcare service unit."], "hospital-acquired infection": ["Infection that a patient who seeks treatment for a different condition acquires in a hospital or other healthcare service unit."], "milkless": ["Having no milk."], "Phad Thai": ["Traditional dish of Thai cuisine with rice noodles, scrambled egg, fish sauce, chili peppers, tamarind juice plus any combination of bean sprouts, shrimp, chicken, or tofu, garnished with crushed peanuts, coriander and lemon."], "Pad Thai": ["Traditional dish of Thai cuisine with rice noodles, scrambled egg, fish sauce, chili peppers, tamarind juice plus any combination of bean sprouts, shrimp, chicken, or tofu, garnished with crushed peanuts, coriander and lemon."], "summarize": ["To bring information in fewer words; to describe roughly or briefly.", "To restate the main points, or ideas, in a condensed form."], "clear off": ["To tell someone to go away."], "U-boat": ["A boat that can go underwater."], "underwater": ["Located under the surface of the sea."], "musk melon": ["An plant (Cucumis melo) of the family Cucurbitaceae characterized by relatively large edible fruits with hard shells and soft juicy flesh."], "detain": ["To keep under guard."], "rye": ["Biennial plant from the genus Secale of the family Poaceae, used as a cereal or for forage."], "rye bread": ["A bread made with rye flour."], "Mongol": ["A person who originated from or is a citizen of Mongolia."], "Civil War": ["1861-1865 conflict between the Union (Northern states) and the 11 Southern states that seceded and were organized as the Confederate States of America."], "Confederate States of America": ["A confederation that was created in 1861 by eleven southern states of the United States of America that had declared their secession from the U.S and ended in 1865 after military defeat."], "Confederacy": ["A confederation that was created in 1861 by eleven southern states of the United States of America that had declared their secession from the U.S and ended in 1865 after military defeat."], "CSA": ["A confederation that was created in 1861 by eleven southern states of the United States of America that had declared their secession from the U.S and ended in 1865 after military defeat."], "Confederate States": ["A confederation that was created in 1861 by eleven southern states of the United States of America that had declared their secession from the U.S and ended in 1865 after military defeat."], "detainee": ["A person held in custody."], "d\u00e9tente": ["A period of lessening tension between rivals."], "deter": ["To prevent or discourage from acting."], "detestation": ["Extreme hatred or detestation; the feeling of utter dislike."], "freedman": ["A man who has been freed from slavery."], "freedwoman": ["A woman who has been freed from slavery."], "free negro": ["Term used prior to the abolition of slavery in the United States to describe African Americans who were not slaves."], "free black": ["Term used prior to the abolition of slavery in the United States to describe African Americans who were not slaves."], "detonator": ["A device, as a percussion cap, used to make another substance explode."], "detour": ["A roundabout way, especially a road used temporarily instead of a main route."], "slave girl": ["A girl who is reduced to slavery."], "slave-girl": ["A girl who is reduced to slavery."], "slave boy": ["A boy who is reduced to slavery."], "slave-boy": ["A boy who is reduced to slavery."], "detrimental": ["Causing damage or harm."], "detriment": ["A cause of loss or damage."], "pu-erh tea": ["A type of tea made from a \"large leaf\" variety of the tea plant Camellia sinensis and named after Pu'er county near Simao, Yunnan, China."], "pu'er tea": ["A type of tea made from a \"large leaf\" variety of the tea plant Camellia sinensis and named after Pu'er county near Simao, Yunnan, China."], "puer tea": ["A type of tea made from a \"large leaf\" variety of the tea plant Camellia sinensis and named after Pu'er county near Simao, Yunnan, China."], "Bolay tea": ["A type of tea made from a \"large leaf\" variety of the tea plant Camellia sinensis and named after Pu'er county near Simao, Yunnan, China."], "Waziristan": ["A mountainous region of northwest Pakistan, bordering Afghanistan."], "Punjab": ["Former province in British India that was divided between India and Pakistan in 1947.", "A state in northwest India.", "The most populous province of Pakistan, situated in the east of the country."], "Panjab": ["Former province in British India that was divided between India and Pakistan in 1947."], "physical examination": ["A medical check-up undertaken by a physician; usually done on a regular basis on apparently healthy individuals in order to discover any illnesses or ailments."], "triphtong": ["Combination of three vocalic elements in a single\\nsyllable."], "streetwalker": ["A prostitute who walks the streets to attract customers."], "floozy": ["A prostitute who walks the streets to attract customers.", "A permissive, sexually promiscuous woman."], "floozie": ["A prostitute who walks the streets to attract customers.", "A permissive, sexually promiscuous woman."], "street prostitute": ["A prostitute who walks the streets to attract customers."], "street strumpet": ["A prostitute who walks the streets to attract customers."], "street hooker": ["A prostitute who walks the streets to attract customers."], "street harlot": ["A prostitute who walks the streets to attract customers."], "germy": ["Full of germs."], "peppermint": ["Medicinal and spice plant of the genus Mentha that is a cross between the watermint (Mentha aquatica) and spearmint (Mentha spicata)."], "devalue": ["Reduce the value of."], "devaluate": ["Reduce the value of."], "slut": ["A permissive, sexually promiscuous woman."], "slattern": ["A permissive, sexually promiscuous woman."], "floosie": ["A permissive, sexually promiscuous woman."], "floosy": ["A permissive, sexually promiscuous woman."], "tart": ["Having an acid, sharp or tangy taste.", "A permissive, sexually promiscuous woman.", "A pastry dish, usually sweet, that is a type of pie with an open top not covered with pastry."], "devastation": ["The act of devastating."], "deviance": ["A state or condition markedly different from the norm."], "deviant": ["Deviating from the normal or common order, form, or rule.", "Characterized by deviation."], "deviation": ["A state or condition markedly different from the norm."], "demoniac": ["Pertaining to, or characteristic of a demon or evil spirit.", "Controlled or influenced by a demon.", "Someone who is controlled or influenced by a demon."], "demonic": ["Pertaining to, or characteristic of a demon or evil spirit."], "demoniacal": ["Pertaining to, or characteristic of a demon or evil spirit."], "possessed": ["Controlled by an evil spirit."], "tuna": ["Several species of ocean-dwelling fish in the family Scombridae, mostly in the genus Thunnus."], "force-feeding": ["The practice of feeding a person or an animal against their will, especially by mechanical means."], "gavage": ["The practice of feeding a person or an animal against their will, especially by mechanical means."], "force-feed": ["To feed a person or an animal against their will, especially by mechanical means."], "devise": ["To use the intellect to plan or design something.", "To arrange by systematic planning and united effort (e.g. a plot, a strike, a plan).", "To give by will, especially real property."], "devote": ["To give entirely to a specific person, activity, or cause."], "devoted": ["Zealous or ardent in attachment, loyalty, or affection."], "devotion": ["A profound dedication."], "devotional": ["Characterized by devotion."], "devout": ["Of a person or group who is bound or obligated, as under a pledge to a particular cause, action, or attitude.", "Characterized by devotion.", "Believing in and showing reverence for God or a deity."], "dexterous": ["Nimble in the use of the hands or body."], "diabolical": ["Resembling or characteristic of a devil."], "diagonal": ["A line joining two nonconsecutive corners of a polygon or polyhedron."], "diametrical": ["Characterized by opposite extremes."], "diaphanous": ["Almost completely transparent or translucent."], "diarist": ["A person who keeps a diary."], "dick": ["The male sexual organ for copulation and urination; the tubular portion of the male genitalia (excluding the scrotum)."], "dictate": ["To express as instruction to be executed by the receiver, in accordance with an authority acknowledged by him.", "An authoritative rule.", "To say aloud to be recorded or written by another.", "To state officially or with authority"], "slave state": ["A U.S. state in which slavery of African Americans was legal."], "blood bath": ["A ruthless killing of a great number of people."], "free state": ["A U.S. state in the period before the Civil War in which slavery of African Americans was prohibited or eliminated over time."], "hip hop music": ["Music genre typically consisting of a rhythmic vocal style called rap which is accompanied with backing beats."], "dictation": ["Speech intended for reproduction in writing."], "dictatorial": ["Of or pertaining to a dictator or dictatorship."], "didactic": ["Teaching or intending to teach a moral lesson."], "diehard": ["One who adheres to traditional views or ideas.", "Resisting vigorously and stubbornly to the last."], "traditionalist": ["One who adheres to traditional views or ideas."], "mastectomy": ["The surgical removal of one or both breasts."], "breast removal": ["The surgical removal of one or both breasts."], "mammectomy": ["The surgical removal of one or both breasts."], "dyscalculia": ["Disability involving innate difficulty in learning or comprehending mathematics, in particular simple calculations."], "math disability": ["Disability involving innate difficulty in learning or comprehending mathematics, in particular simple calculations."], "acalculia": ["Loss of the capacity of performing simple mathematical tasks."], "dietetics": ["The science concerned with the nutritional planning and preparation of foods."], "mirror agnosia": ["Type of agnosia caracterized in the inability to recognize that a reflected object is not a real object behind the mirror."], "anosognosia": ["Neuropsychological disability where the individual denies the existence of his illness or infirmity."], "melting point": ["The temperature at which a solid becomes a liquid at standard atmospheric pressure."], "fusing point": ["The temperature at which a solid becomes a liquid at standard atmospheric pressure."], "pray": ["To make a request in a humble manner; to call upon in supplication.", "To address God or a higher being with praise, thanksgiving, confession or supplication."], "radicotomy": ["Resection of nerve roots."], "rhizotomy": ["Resection of nerve roots."], "supplicate": ["To make a request in a humble manner; to call upon in supplication."], "spinal marrow": ["A thick, whitish cord of nerve tissue which is a major part of the vertebrate central nervous system. It extends from the brainstem down through the spine, with nerves branching off to various parts of the body. It is enclosed in and protected by the vertebral column."], "pray to the porcelain god": ["To regurgitate the contents of the stomach."], "barf": ["To regurgitate the contents of the stomach."], "throw up": ["To regurgitate the contents of the stomach."], "drive the porcelain bus": ["To regurgitate the contents of the stomach."], "toss one's cookies": ["To regurgitate the contents of the stomach."], "cordotomy": ["Surgical procedure that disables selected pain-conducting tracts in the spinal cord."], "chordotomy": ["Surgical procedure that disables selected pain-conducting tracts in the spinal cord."], "trigeminal nerve": ["Cranial nerve responsible for sensation in the face."], "fifth cranial nerve": ["Cranial nerve responsible for sensation in the face."], "fifth nerve": ["Cranial nerve responsible for sensation in the face."], "V": ["Cranial nerve responsible for sensation in the face."], "upchuck": ["To regurgitate the contents of the stomach."], "ralph": ["To regurgitate the contents of the stomach."], "puke up": ["To regurgitate the contents of the stomach."], "hurl": ["To regurgitate the contents of the stomach."], "chunder": ["To regurgitate the contents of the stomach."], "inhumation": ["The ritual placing of a corpse in a grave."], "sepulture": ["The ritual placing of a corpse in a grave."], "entombment": ["The ritual placing of a corpse in a grave."], "French Alps": ["Those parts of the Alps mountain range which lie on French territory."], "Swiss Alps": ["The portion of the Alps mountain range that lies on Swiss territory."], "Italian Alps": ["The part of the Alps mountain range that lies on Italian territory."], "Austrian Alps": ["The part of the Alps mountain range that lies on Austrian territory."], "German Alps": ["The part of the Alps mountain range that lies on German territory."], "rename": ["To give a new name to."], "water kettel": ["A metal container used to boil water."], "means of transport": ["Something that serves as a means of transportation."], "sour cherry": ["A cherry, Prunus cerasus, characterized by gray bark.", "The edible fruit of the Prunus cerasus."], "enmity": ["The feeling opposed to friendship."], "antipathy": ["Natural and unrational aversion for someone or something."], "morello cherry": ["The edible fruit of the Prunus cerasus."], "pie cherry": ["The edible fruit of the Prunus cerasus."], "electrostatics": ["The branch of physics that deals with static electricity."], "diffident": ["Lacking self-confidence."], "gooseberry wine": ["Wine made of gooseberries."], "national bankruptcy": ["The formal declaration of a government to not or only partially be able to pay its debts or the de facto cessation of due payments."], "national insolvency": ["The formal declaration of a government to not or only partially be able to pay its debts or the de facto cessation of due payments."], "airport terminal": ["A building in an airport where passengers transfer from ground transportation to the facilities that allow them to board aeroplanes."], "rough-textured": ["Having a texture that has much friction. Not smooth."], "etymon": ["An earlier form of a word in the same language or in an ancestor language.", "A word in a foreign language from which a particular loanword is derived."], "etymologize": ["To find or examine the etymology or etymon of a given word."], "etymologist": ["A female linguist who specializes in etymology.", "A linguist who specializes in etymology."], "ambitransitive": ["(Of a verb) Which can be used transitively or intransitively without requiring morphological change."], "ambitransitive verb": ["A verb that can be used both as intransitive or as transitive without requiring a morphological change."], "agnate": ["Genealogy: A blood relative in the male line."], "blood relative": ["One related by blood or origin with another, especially a person sharing an ancestor with another."], "blood relation": ["One related by blood or origin with another, especially a person sharing an ancestor with another."], "digestibility": ["The quality of being digestible."], "digestible": ["Capable of being digested."], "dignified": ["Showing honesty, probity and deserving esteem ; having or expressing dignity."], "dignify": ["To confer dignity or honor."], "dilapidate": ["To fall into ruin."], "insuperable": ["Impossible to surmount.", "Incapable of being excelled or surpassed."], "unsurmountable": ["Impossible to surmount."], "insurmountable": ["Impossible to surmount."], "unsurpassable": ["Incapable of being excelled or surpassed."], "decaffeinate": ["To remove the caffeine from something."], "decaffeinated": ["Having the caffeine removed."], "decaf": ["Having the caffeine removed."], "morgen": ["A \"morgen\" was an area that could be plowed in one morning. This is most often less that one hectare. The precise size differed per region."], "daily": ["A daily or twice daily published publication (usually printed on cheap, low-quality paper) that contains news and other articles.", "Happening every day.", "Every day."], "mass medium": ["A means of communication that reaches large numbers of people, such as television, newspapers, magazines and radio."], "dine": ["To eat the principal meal of the day."], "diner": ["A person who dines."], "dining room": ["A room in which meals are eaten, as in a home or hotel, esp. the room in which the major or more formal meals are eaten."], "eggplant": ["Violet oval-shaped vegetable, the fruit of Solanum melongena.", "An Asian plant, Solanum melongena, cultivated for its edible purple, green, or white ovoid fruit."], "diphteria": ["An infectious disease of the throat."], "diplomacy": ["The art and practice of conducting negotiations between representatives of groups or states. It usually refers to international diplomacy."], "diplomatic": ["Of, pertaining to, or engaged in diplomacy."], "dip net": ["A net bag on a long handle, used to scoop fish from water."], "metastasize": ["(Of malignant tumors and infections) To spread to other parts of the body.", "To spread in a destructive and injurious way."], "secondary tumor": ["A cancerous growth created by cancerous cells that have spread from a primary growth located elsewhere in the body."], "metastatic tumor": ["A cancerous growth created by cancerous cells that have spread from a primary growth located elsewhere in the body."], "dipsomania": ["The condition suffered by an alcoholic."], "dipstick": ["A graduated rod dipped into a container to indicate the fluid level"], "directness": ["The quality of being honest and straightforward in attitude and speech."], "candor": ["The quality of being honest and straightforward in attitude and speech."], "dirge": ["A mournful poem or piece of music composed or performed as a memorial to a dead person."], "dirigible": ["Capable of being directed."], "dirk": ["A short knife with a pointed blade used for piercing or stabbing."], "dirt": ["Any unclean substance, such as mud, dust, dung etc."], "disability": ["A physical or mental handicap, that prevents a person from living a full, normal life or from holding a gainful job."], "disagree": ["Be of different opinions."], "disagreeable": ["Not to one's liking.", "Unpleasant, offensive, or causing dislike."], "unpleasant": ["Not to one's liking."], "disagreement": ["Difference of opinion."], "disappearance": ["The act of leaving secretly or without explanation."], "evadable": ["Possible to avoid."], "dactyloscopy": ["A method of studying and comparing fingerprints to establish identification."], "fingerprint identification": ["A method of studying and comparing fingerprints to establish identification."], "fingerprint": ["An impression of the friction ridges of all or part of the fingertip."], "dactylogram": ["An impression of the friction ridges of all or part of the fingertip."], "dactyl": ["One of the five extremities that can be found on a hand or a foot.", "A type of meter consisting of one stressed syllable followed by two unstressed syllables in accentual verse or one long syllable followed by two short syllables in quantitative verse."], "dacite": ["Grey igneous rock with a high iron content."], "tear stone": ["A concretion in the tear ducts or tear sac."], "ophthalmolith": ["A concretion in the tear ducts or tear sac."], "dacryolith": ["A concretion in the tear ducts or tear sac."], "dacryolithiasis": ["The formation and presence of concretions in the tear ducts and tear sac."], "disappoint": ["To bring or cause disappointment."], "disappointing": ["Failing to fulfill one's hopes or expectations."], "disarmament": ["The reduction or the abolition of the military forces and armaments of a nation, and of its capability to wage war."], "disaster area": ["An area that officially qualifies for emergency governmental aid as a result of a catastrophe, such as an earthquake or flood."], "daltonism": ["The inability to distinguish red from green."], "red-green color blindness": ["The inability to distinguish red from green."], "Daltonism": ["The inability to distinguish red from green."], "disastrous": ["Causing great distress or injury; bringing ruin."], "will to live": ["The will to stay alive and to cope with life."], "Damascene": ["An inhabitant of Damascus.", "Of, pertaining to or characteristic of the city of Damascus or its inhabitants."], "Damascus steel": ["Hard, flexible steel with wavy patterns that was popular in the Middle Ages especially for sword blades."], "damascene": ["Of or pertaining to the art of damascening.", "To inlay metal with other metal, typically gold and silver."], "damascening": ["The art of inlaying one metal, typically gold and silver, into another."], "dangerously": ["In a dangerous manner."], "Mason-Dixon Line": ["The traditional boundary between the the Northern United States and the Southern United States."], "Mason and Dixon's Line": ["The traditional boundary between the the Northern United States and the Southern United States."], "flaying": ["The removal of skin from the body of a human as a method of torture or execution.", "The removal of skin from the body of an animal as preparation for consumption of the meat beneath and/or use for the fur."], "skinning": ["The removal of skin from the body of an animal as preparation for consumption of the meat beneath and/or use for the fur."], "Standard Tibetan": ["A language of the Sino-Tibetan family, spoken in China, Bhutan, India and Nepal; official language in the Tibet Autonomous Region of China."], "Colognian": ["Local language being used in the city of Cologne in Germany and close about."], "disavowal": ["A denial of knowledge, relationship, and/or responsibility towards something or someone."], "Fulfulde": ["A macro language consisting of nine languages"], "Fula": ["A macro language consisting of nine languages"], "Fulani": ["A macro language consisting of nine languages"], "disbeliever": ["One who disbelieves, or refuses belief."], "unbeliever": ["One who disbelieves, or refuses belief."], "discernible": ["Capable of being discerned."], "distinguishable": ["Capable of being discerned."], "Gothenburg": ["The second largest city in Sweden after Stockholm. The city is located on the south west-coast."], "the damned": ["Theology: The souls condemned to eternal punishment."], "damned": ["Sentenced to eternal punishment in hell."], "reprobate": ["Sentenced to eternal punishment in hell."], "doomed": ["Sentenced to eternal punishment in hell.", "People who are destined to die soon."], "Daniel": ["Male first name of West Semitic origin."], "David": ["A male first name of West Semitic origin."], "discering": ["Having or revealing keen insight and good judgment."], "perspicacious": ["Having or revealing keen insight and good judgment."], "disciplinary": ["Of, relating to, or used for discipline."], "disclose": ["To make known something heretofore kept secret."], "Unhygienix": ["Character of the Asterix comic strips, fishmonger of the Gaulish village."], "anthropophagous": ["Eating other humans (speaking about a human)."], "cannibalistic": ["Eating other humans (speaking about a human)."], "man-eater": ["Human who eats other humans.", "A woman who is considered to be dangerously seductive."], "disclosure": ["The making known of a fact that had previously been hidden.", "The speech act of making something evident."], "discomfiture": ["A sudden, alarming amazement or dread that results in utter confusion."], "discomposure": ["The state of being discomposed."], "disconcerting": ["Causing an emotional disturbance."], "antiziganism": ["Hostility, prejudice or racism directed at the Roma people."], "Anti-Romanyism": ["Hostility, prejudice or racism directed at the Roma people."], "disconnect": ["To sever or interrupt a connection."], "Saint Mary": ["The mother of Jesus Christ."], "Holy Mary": ["The mother of Jesus Christ."], "Blessed Virgin Mary": ["The mother of Jesus Christ."], "Mother of God": ["The mother of Jesus Christ."], "Madonna": ["An image of Mary, mother of Jesus, in the shape of a painting, statue, icon, etc.", "The mother of Jesus Christ."], "Madonna and Child": ["An image of Mary and infant Jesus in the shape of a painting, sculpture, icon, etc."], "Madonna with Child": ["An image of Mary and infant Jesus in the shape of a painting, sculpture, icon, etc."], "Republic of Tatarstan": ["A republic of Russia located in Povolzhye."], "Uspantaneco": ["A Mayan language of the Greater Quichean group, spoken in the Uspant\u00e1n and Playa Grande Ixc\u00e1n municipalities, in the department El Quich\u00e9 of Guatemala."], "Uspanteca": ["A Mayan language of the Greater Quichean group, spoken in the Uspant\u00e1n and Playa Grande Ixc\u00e1n municipalities, in the department El Quich\u00e9 of Guatemala."], "Uspanteko": ["A Mayan language of the Greater Quichean group, spoken in the Uspant\u00e1n and Playa Grande Ixc\u00e1n municipalities, in the department El Quich\u00e9 of Guatemala."], "Uspantec": ["A Mayan language of the Greater Quichean group, spoken in the Uspant\u00e1n and Playa Grande Ixc\u00e1n municipalities, in the department El Quich\u00e9 of Guatemala."], "decant": ["To pour a liquid (especially wine) gently so as not to disturb the sediment."], "decalcomania": ["Decorative technique which consists of transferring pictures or designs on a specially prepared paper to materials like wood, pottery, glass etc."], "decalcification": ["The act or process of removing calcareous matter.", "The loss of calcium from bone, teeth, or soil."], "decalcify": ["To remove calcium or calcium compounds from.", "To lose calcium or calcium compounds."], "delimitable": ["Possible to delimit."], "democratically": ["In a democratic way."], "undemocratically": ["In an undemocratic way."], "Karen languages": ["A group of languages of the Tibeto-Burman group of the Sino-Tibetan family, spoken by the Karen people, in Myanmar."], "eunuch": ["A man whose testicles (and sometimes penis) have been cut off."], "castrate": ["A man whose testicles (and sometimes penis) have been cut off.", "To remove the testicles (and sometimes penis) of a male animal or to render the testicles unfunctional.", "To remove the ovaries of.", "To deprive of strength or vigor."], "penectomy": ["The surgical removal of the penis."], "disconsolate": ["Incapable of being consoled.", "Without consolation.", "Making despondent or depressive."], "discontentment": ["A longing for something better than the present situation."], "discontent": ["A longing for something better than the present situation.", "The fact or feeling of being displeased."], "dissatisfaction": ["A longing for something better than the present situation."], "discontented": ["Not content or satisfied.", "Feeling or exhibiting a lack of contentment or satisfaction."], "discord": ["Lack of concord or harmony between persons or things.", "(Music) An inharmonious combination of musical tones sounded together.", "Lack of harmony."], "discordant": ["Not being in accord.", "Disagreeable to the ear."], "dissonant": ["Disagreeable to the ear."], "discourage": ["Deprive of courage or hope."], "virginal": ["Of, pertaining to, characteristic of, or befitting a virgin."], "discourteous": ["Exhibiting no courtesy."], "deodorization": ["The act of removing an odour, especially an unpleasant one."], "dancing": ["The activity of making rhythmic movements to music."], "danburite": ["A crystalline mineral similar to topaz."], "Danielle": ["Female first name and female form of the male first name Daniel."], "Daniella": ["Female first name and female form of the male first name Daniel."], "dancer": ["A person who dances.", "A person who dances professionally."], "dangerousness": ["The quality of being dangerous."], "dynamically": ["In a dynamic way."], "dumortierite": ["A fibrous, variably colored aluminium boro-silicate mineral."], "duodecimal": ["A numeral system using twelve as its base.", "One of 12 equal parts of a whole.", "Of, relating to, or based on the number 12."], "base-12": ["A numeral system using twelve as its base."], "dozenal": ["A numeral system using twelve as its base."], "twelfth": ["One of 12 equal parts of a whole."], "fifth": ["One of 5 equal parts of a whole.", "The ordinal form of the cardinal number five."], "sixth": ["One of 6 equal parts of a whole.", "Which comes after the fifth."], "seventh": ["One of 7 equal parts of a whole.", "After the sixth and before the eighth in a sequence."], "eighth": ["One of 8 equal parts of a whole."], "ninth": ["One of 9 equal parts of a whole.", "Which comes after the eighth.", "A compound musical interval consisting of an octave plus a second."], "tenth": ["One of 10 equal parts of a whole.", "Which comes after the ninth."], "eleventh": ["One of 11 equal parts of a whole."], "thirteenth": ["One of 13 equal parts of a whole."], "fourteenth": ["One of 14 equal parts of a whole."], "fifteenth": ["One of 15 equal parts of a whole.", "The ordinal form of the number 15."], "sixteenth": ["One of 16 equal parts of a whole."], "criminologist": ["A person who is skilled in, or practices criminology."], "Mop\u00e1n Maya": ["A Mayan language of Belize and Guatemala."], "Mopan": ["A Mayan language of Belize and Guatemala."], "Yucateco": ["A Mayan language spoken in the Yucat\u00e1n Peninsula, northern Belize and parts of Guatemala."], "discourtesy": ["Lack of courtesy."], "Dorothy": ["A female first name."], "Dorothea": ["A female first name."], "disastrously": ["In a disastrous way."], "catastrophically": ["In a disastrous way."], "diplomatically": ["In a diplomatic way."], "desperately": ["In a desperate way."], "despairingly": ["In a desperate way."], "discoverer": ["One who discovers."], "dechlorinate": ["To remove chlorine from."], "disyllabic": ["Comprising two syllables."], "dissyllabic": ["Comprising two syllables."], "disyllable": ["A word consisting of two syllables."], "dissyllable": ["A word consisting of two syllables."], "monosyllabic": ["Consisting of only one syllable."], "monosyllable": ["A word consisting of two syllables."], "polysyllabic": ["Consisting of more than one syllable."], "monosyllabic language": ["A language in which most words consist of a single syllable."], "discredit": ["Loss or lack of belief or confidence."], "discretion": ["The quality of being discreet.", "Knowing how to avoid embarrassment or distress."], "discreet": ["Marked by prudence or modesty and wise self-restraint."], "disdain": ["A feeling of contempt for anything regarded as unworthy."], "disdainful": ["Expressive of disdain."], "disembark": ["To remove or unload cargo or passengers from a ship, aircraft, or other vehicle."], "Thai basil": ["A cultivar group of basil whcih has a more assertive taste than many other sweet basils and is often used in Thai and Vietnamese cuisine."], "trisyllabic": ["Consisting of three syllables."], "trisyllable": ["A word consisting of three syllables."], "Republic of Venice": ["A state originating from the Italien city of Venice which existed from the late 7th century AD until the year 1797."], "Most Serene Republic of Venice": ["A state originating from the Italien city of Venice which existed from the late 7th century AD until the year 1797."], "Venetian Republic": ["A state originating from the Italien city of Venice which existed from the late 7th century AD until the year 1797."], "Most Serene Republic": ["A state originating from the Italien city of Venice which existed from the late 7th century AD until the year 1797."], "thirtieth": ["One of thirty equal parts of a whole."], "neurotheology": ["Science that studies the correlations between neural activities and subjective experiences of spirituality."], "biotheology": ["Science that studies the correlations between neural activities and subjective experiences of spirituality."], "spiritual neuroscience": ["Science that studies the correlations between neural activities and subjective experiences of spirituality."], "twentieth": ["One of twenty equal parts of a whole."], "thirty-second": ["One of thirty-two equal parts of a whole."], "hundredth": ["One of a hundred equal parts of a whole."], "thousandth": ["One of a thousand equal parts of a whole."], "millionth": ["One of a million equal parts of a whole."], "Marvari": ["An Indo-Aryan language spoken in the Indian state of Rajasthan, and also in the neighboring state of Gujarat and in Eastern Pakistan."], "Marwadi": ["An Indo-Aryan language spoken in the Indian state of Rajasthan, and also in the neighboring state of Gujarat and in Eastern Pakistan."], "Marvadi": ["An Indo-Aryan language spoken in the Indian state of Rajasthan, and also in the neighboring state of Gujarat and in Eastern Pakistan."], "Jakaltek": ["A Mayan language spoken in Guatemala by the Jakaltek people in the department of Huehuetenango and the adjoining part of Chiapas in southern Mexico."], "dampen": ["To become moist.", "To make moist."], "Popt\u00ed": ["A Mayan language spoken in Guatemala by the Jakaltek people in the department of Huehuetenango and the adjoining part of Chiapas in southern Mexico."], "moisten": ["To become moist.", "To make moist."], "Mocho'": ["A Maya language spoken in the Mexican state of Chiapas."], "referral": ["The recommendation by a physician and/or health plan for a member to receive care from a different physician or facility."], "historical novel": ["A work of prose that is set among real historical events and figures but introduces fictional characters and elements."], "historical fiction": ["A work of prose that is set among real historical events and figures but introduces fictional characters and elements."], "Ligures": ["An ancient people who lived in a region from northern Italy into southern Gaul before they were assimilated by Celts and Romans."], "disfavour": ["The state of being out of favor."], "desfigure": ["To mar the appearance or beauty of."], "disfigurement": ["The state of being badly shaped or formed."], "medical referral": ["The recommendation by a physician and/or health plan for a member to receive care from a different physician or facility."], "secret treaty": ["A treaty between two or more nations that is kept secret."], "Komi Republic": ["A republic of Russia located west of the Urals."], "darken": ["To become dark or darker.", "To make dark or darker.", "To reduce the quantity of light or brightness of something."], "rot off": ["To disintegrate or come off due to decay."], "rot": ["To become overridden with bacteria and other infectious agents, hereby becoming unfit for consumption (referring to food).", "To corrupt, decompose organic matter."], "decompose": ["To become overridden with bacteria and other infectious agents, hereby becoming unfit for consumption (referring to food)."], "decay": ["To become overridden with bacteria and other infectious agents, hereby becoming unfit for consumption (referring to food)."], "rot away": ["To disintegrate or come off due to decay."], "nervous": ["Easily agitated or distressed.", "Causing or fraught with or showing anxiety."], "disgraceful": ["Bringing or deserving disgrace."], "decasyllable": ["A word or verse line of ten syllables."], "decasyllabic": ["Consisting of ten syllables."], "democratization": ["The process of making something conform to democratic norms."], "disgruntled": ["Not content or satisfied."], "disgusted": ["Filled with disgust."], "disharmony": ["Lack of harmony."], "dishcloth": ["A cloth for use in washing dishes."], "dishearten": ["Deprive of courage or hope."], "dishrag": ["A cloth for use in washing dishes."], "dishtowel": ["A towel for drying dishes."], "dish towel": ["A towel for drying dishes."], "tea towel": ["A towel for drying dishes."], "drinking chocolate": ["Chocolate in form of a bar that is melted in hot milk or water and then consumed as beverage."], "drawbridge": ["A movable bridge which can be lifted in order to block the entrance to a castle."], "damping": ["The reduction in the amplitude of oscillations by the dissipation of energy."], "decarbonize": ["To remove carbon from."], "decarburize": ["To remove carbon from."], "decoke": ["To remove carbon from."], "darning": ["The act of mending a hole in a garment with needle and thread."], "dishonesty": ["Lack of honesty or integrity."], "dishonour": ["Lack or loss of honor.", "To deprive of honor."], "dishwasher": ["A machine for washing dishes and kitchen utensils, automatically."], "dishwater": ["Water in which dishes are, or have been, washed."], "disillusion": ["Freeing from false belief or illusions.", "To free from an illusion.", "Realization of the truth, especially after a period of deceit."], "disenchantment": ["Freeing from false belief or illusions."], "disinclination": ["A certain degree of unwillingness."], "reluctance": ["A certain degree of unwillingness."], "disinclined": ["Lacking desire or willingness."], "unwilling": ["Lacking desire or willingness."], "averse": ["Having a dislike for.", "Lacking desire or willingness."], "loath": ["Lacking desire or willingness."], "disinfect": ["To free from infectious or contagious matter."], "Tyva Republic": ["A republic of Russia located in south central Siberia."], "Republic of Khakassia": ["A republic of Russia located in south central Siberia."], "megalomanic": ["A person afflicted with megalomania.", "Suffering from megalomania."], "megalomanical": ["Suffering from megalomania."], "disingenuous": ["Falsely or hypocritically ingenuous."], "disinheritance": ["The act by a donor that terminates the right of a person to inherit."], "Republic of Kalmykia": ["A republic of Russia located in Povolzhye."], "disinterest": ["Absence of interest."], "indifference": ["Absence of interest."], "fruit shake": ["Fruit pulp mixed with water or milk and sugar in a blender."], "fruit juice shake": ["Fruit pulp mixed with water or milk and sugar in a blender."], "Front": ["A municipality in the Province of Turin in the Italian region Piedmont, located about 25 km north of Turin."], "dislike": ["A feeling of aversion or antipathy.", "To have or feel a dislike or distaste for."], "dismantle": ["To disassemble or pull down."], "dismay": ["To convince not to try or do.", "Loss of hope."], "dismayed": ["Struck with fear, dread, or consternation."], "Khmer Rouge": ["A communist political party and guerilla army which ruled Cambodia (renamed Democratic Kampuchea) from 1975 to 1979."], "flawless": ["Without fault or shortcomings."], "paddy farmer": ["A farmer who cultivates rice."], "chlorinate": ["To add chlorine to."], "perchlorinate": ["To add the maximum amount of chlorine to."], "disobedience": ["Neglect or refusal to obey."], "disobey": ["To neglect or refuse to obey."], "chlorinated": ["Charged with chlorine."], "perchlorinated": ["Charged with the maximum amount of chlorine."], "geld": ["To remove the testicles (and sometimes penis) of a male animal or to render the testicles unfunctional."], "emasculate": ["To remove the testicles (and sometimes penis) of a male animal or to render the testicles unfunctional.", "To deprive of strength or vigor.", "Having unsuitable feminine qualities."], "desex": ["To remove the testicles (and sometimes penis) of a male animal or to render the testicles unfunctional."], "unsex": ["To remove the testicles (and sometimes penis) of a male animal or to render the testicles unfunctional."], "caponize": ["To remove the reproductive organs of a rooster."], "caponization": ["The removal of the reproductive organs of a rooster."], "Agilolfings": ["The first dynasty of Bavarian dukes which ruled from the 6th until the 8th century."], "Agilolfingian": ["Of or pertaining to the Agilolfings."], "cassata": ["Traditional cake of Sicily which consists of ricotta cheese, sponge cake, candied fruit and icing."], "frustration": ["An emotional response to circumstances where one is obstructed from arriving at a goal.", "A thing that frustrates."], "convoluted": ["Highly complex or intricate and occasionally devious.", "Rolled longitudinally upon itself."], "disordered": ["Lacking organization or in confusion."], "disorderly": ["Characterized by disorder."], "disorganized": ["Lacking order or methodical arrangement or function."], "disorganised": ["Lacking order or methodical arrangement or function."], "misread": ["To read inaccurately or wrongly.", "To fail to understand or interpret the meaning of words or behaviour correctly."], "misinterpret": ["To fail to understand or interpret the meaning of words or behaviour correctly."], "misunderstand": ["To fail to understand or interpret the meaning of words or behaviour correctly."], "misconstrue": ["To fail to understand or interpret the meaning of words or behaviour correctly."], "misapprehend": ["To fail to understand or interpret the meaning of words or behaviour correctly."], "misconceive": ["To fail to understand or interpret the meaning of words or behaviour correctly."], "decury": ["In the Roman military, a squad of ten men, lead by a decurio."], "decurio": ["In Roman military, the leader of a squad of ten men (decury)."], "disparity": ["The state of being unequal."], "dispel": ["Force to go away."], "dispensable": ["Able to be done without."], "expendable": ["Able to be done without."], "unessential": ["Able to be done without."], "disforestation": ["The removal of forest and undergrowth to increase the surface of arable land or to use the timber for construction or industrial purposes."], "disillusionment": ["Freeing from false belief or illusions."], "dryness": ["The state of being dry, the lack of water or liquid."], "aridness": ["The state of being dry, the lack of water or liquid."], "drouth": ["A period of abnormally dry weather sufficiently prolonged so that the lack of water causes a serious hydrologic imbalance (such as crop damage, water supply shortage) in the affected area."], "dispirit": ["To destroy somebody's confidence or happiness; to humiliate."], "dispiriting": ["Making despondent or depressive."], "modern period": ["In European and Western history, the period that succeeded the Middle Ages (which ended approximately 1500 AD)."], "modern era": ["In European and Western history, the period that succeeded the Middle Ages (which ended approximately 1500 AD)."], "modern times": ["In European and Western history, the period that succeeded the Middle Ages (which ended approximately 1500 AD)."], "displace": ["To cause to move to a new place."], "smartphone": ["A mobile phone offering advanced capabilities, often with PC-like functionality."], "accelerometer": ["A device that measures the acceleration it experiences relative to freefall."], "touchscreen": ["A display which can detect the presence and location of a touch within the display area."], "camera phone": ["A mobile phone which is able to capture either still photographs or motion video."], "Windows Mobile": ["A compact operating system combined with a suite of basic applications for mobile devices based on the Microsoft Win32 API."], "Android": ["A software platform and operating system for mobile devices, based on the Linux kernel, developed by Google and later the Open Handset Alliance."], "Merovingians": ["Salian Frankish royal dynasty that ruled the Franks from the 5th century until 751."], "Merovings": ["Salian Frankish royal dynasty that ruled the Franks from the 5th century until 751."], "Merovingian": ["Of or pertaining to the Merovingians."], "Amarula": ["South African cream liqueur made with sugar, cream and the fruit of the African Marula tree (Sclerocarya birrea)."], "cream liqueur": ["A liqueur which includes cream among other ingredients."], "cr\u00e8me liqueur": ["A liqueur that contains a great deal of additional sugar and has a near-syrup consistency."], "displease": ["To be unpleasant."], "displeased": ["Not content or satisfied."], "displeasing": ["Causing displeasure or dissatisfaction.", "Unpleasant, offensive, or causing dislike."], "displeasure": ["The fact or feeling of being displeased."], "disport": ["To amuse oneself in a light, frolicsome manner."], "disposable": ["An item that can be disposed of after it has been used.", "Designed to be disposed of after use."], "throwaway": ["An item that can be disposed of after it has been used."], "nonreturnable": ["An item that can be disposed of after it has been used."], "not reusable": ["An item that can be disposed of after it has been used."], "disproportion": ["Something out of proportion."], "Hooverville": ["Shanty town built by homeless people on the outskirts of cities in America during the Great Depression."], "tent city": ["Temporary housing made using tents."], "disproportionate": ["Out of proportion, as in size, shape, or amount."], "disputable": ["Capable of being disproved."], "questionable": ["Capable of being disproved."], "disputation": ["The act of disputing."], "disqualification": ["The act of disqualifying."], "Republic of Ingushetia": ["A republic of Russia located in the North Caucasus."], "menstruate": ["To undergo menstruation."], "menstruation": ["The period in the menstrual cycle when the endometrium is shed when conception did not take place."], "menses": ["The period in the menstrual cycle when the endometrium is shed when conception did not take place."], "disqualify": ["To put out of a competition for breaking rules."], "disquiet": ["To disturb in mind or make uneasy or cause to be worried or alarmed.", "Lack of calm, peace, or ease.", "To deprive of peace or rest."], "uneasiness": ["Lack of calm, peace, or ease."], "disturbing": ["Causing anxiety or uneasiness."], "disregard": ["To pay no attention or heed to."], "disreputable": ["Having or causing a bad reputation."], "discreditable": ["Having or causing a bad reputation."], "menorrhea": ["The period in the menstrual cycle when the endometrium is shed when conception did not take place."], "menorrhoea": ["The period in the menstrual cycle when the endometrium is shed when conception did not take place."], "menstrual period": ["The period in the menstrual cycle when the endometrium is shed when conception did not take place."], "menarche": ["The first menstrual period of a girl which occurs during puberty."], "spermarche": ["The beginning of production of sperm in the testes of an adolescent boy."], "ejacularche": ["The first ejaculation of sperm of an adolescent boy."], "thelarche": ["The beginning of the development of the breast which usually occurs at the start of puberty in girls."], "menstrual": ["Of or pertaining to menstruation."], "premenstrual": ["Of or relating to or occurring during the period just before menstruation."], "disrepute": ["Loss or lack of belief or confidence."], "dissatisfied": ["Feeling or exhibiting a lack of contentment or satisfaction."], "dissect": ["To cut apart or separate tissue, especially for anatomical study."], "dissection": ["Separation and isolation of tissues for surgical purposes, or for the analysis or study of their structures."], "dissemble": ["To conceal the truth or real nature of.", "To speak or behave hypocritically, unnaturally or affectedly."], "month-long": ["Lasting for a month."], "monthlong": ["Lasting for a month."], "monthly": ["Lasting for a month.", "Occurring or appearing once a month.", "Once a month; every month.", "A magazine that is published once a month."], "dissembler": ["Someone who dissembles."], "phoney": ["Someone who dissembles."], "pretender": ["Someone who dissembles."], "monthlies": ["The period in the menstrual cycle when the endometrium is shed when conception did not take place."], "Belhare": ["A Kiranti language spoken in Eastern Nepal."], "cow-eyed": ["Having eyes that resemble those of a cow."], "dissension": ["Lack of concord or harmony between persons or things."], "dissidence": ["Lack of concord or harmony between persons or things."], "dissimilar": ["Not the same."], "dissimilarity": ["The state of being unequal."], "dissimilitude": ["The state of being unequal."], "inequality": ["The state of being unequal."], "bimonthly": ["Occurring every two months.", "Occurring twice a month.", "Every two months.", "Twice a month.", "A publication that appears twice a month, that is every two weeks.", "A publication that appears every two months."], "bi-monthly": ["Occurring every two months.", "Occurring twice a month.", "Every two months.", "Twice a month.", "A publication that appears twice a month, that is every two weeks.", "A publication that appears every two months."], "semimonthly": ["Occurring twice a month.", "Twice a month.", "A publication that appears twice a month, that is every two weeks."], "semi-monthly": ["Occurring twice a month.", "Twice a month.", "A publication that appears twice a month, that is every two weeks."], "biweekly": ["A publication that appears twice a month, that is every two weeks."], "fortnightly": ["A publication that appears twice a month, that is every two weeks."], "bi-weekly": ["A publication that appears twice a month, that is every two weeks."], "awaken": ["To stop sleeping.", "To make someone stop sleeping."], "waken": ["To stop sleeping.", "To make someone stop sleeping."], "wake up": ["To stop sleeping.", "To make someone stop sleeping."], "rouse": ["To stop sleeping.", "To make someone stop sleeping."], "arouse": ["To stop sleeping.", "To make someone stop sleeping."], "severely disabled": ["Having a severe disability."], "severely handicapped": ["Having a severe disability."], "severely disabled person": ["Someone who has a severe disability."], "severely handicapped person": ["Someone who has a severe disability."], "yearlong": ["Lasting one year."], "manipulative": ["Able to influence and control others to one's own advantage."], "unsuccessfulness": ["Lack of success."], "dissenter": ["One who differs in opinion, or declares his disagreement."], "dissertation": ["A formal, usually lengthy, systematic discourse on some subject."], "dissimulate": ["To speak or behave hypocritically, unnaturally or affectedly."], "feign": ["To act as if something is true.", "To make an appearance of."], "rancid": ["Having the disagreeable odor or taste of decomposing oils or fats."], "dissolvent": ["A liquid substance capable of dissolving other substances."], "dissonance": ["(Music) An inharmonious combination of musical tones sounded together."], "pleasure": ["Enjoyable feeling limited in time caused by a particular event or action."], "distaste": ["A feeling of strong dislike or hostility.", "Natural and unrational aversion for someone or something."], "distasteful": ["Unpleasant, offensive, or causing dislike.", "Unpleasant to the taste."], "unpalatable": ["Unpleasant to the taste."], "distension": ["The act of expanding by pressure from within."], "distention": ["The act of expanding by pressure from within."], "scintilla": ["A small or barely detectable amount."], "iota": ["A small or barely detectable amount."], "jot": ["A small or barely detectable amount."], "whit": ["A small or barely detectable amount."], "Republic of Bashkortostan": ["A republic of Russia located in the Urals."], "Bashkiria": ["A republic of Russia located in the Urals."], "Republic of Bashkiria": ["A republic of Russia located in the Urals."], "distillery": ["A place or establishment where distilling, esp. the distilling of liquors, is done."], "distinguished": ["Standing above others in character or attainment or reputation."], "epistaxis": ["Bleeding of the nose."], "peter out": ["To diminish gradually and stop."], "taper off": ["To diminish gradually and stop."], "fizzle out": ["To diminish gradually and stop."], "bilge-water": ["Water that builds up in the bottom of a ship's bilge."], "distress signal": ["An internationally recognized signal sent out by a ship or plane indicating that help is needed."], "abruptly": ["In a sudden and unexpected way."], "all of a sudden": ["In a sudden and unexpected way."], "out of the blue": ["In a sudden and unexpected way."], "distress": ["An unpleasant, usually localised physical sensation that is often the result of an injury, disease or other ailment."], "cash desk": ["A counter where one can pay."], "distressed": ["Affected with or suffering from distress."], "distressing": ["Causing anxiety or uneasiness.", "Causing distress or worry or anxiety."], "distributive": ["Characterized by or pertaining to distribution."], "distributor": ["One that markets or sells merchandise, especially a wholesaler.", "Electrical device that distributes voltage to the spark plugs of a gasoline engine in the order of the firing sequence."], "gardening": ["The act of cultivating or tending a garden."], "vigilante justice": ["The (unlawful) retaliation for an injustice that the affected person carries out himself."], "self-administered justice": ["The (unlawful) retaliation for an injustice that the affected person carries out himself."], "comb over": ["A hairstyle worn by bald or partially bald men that consists of draping the remaining hair on the head so as to conceal the hairless spots."], "combover": ["A hairstyle worn by bald or partially bald men that consists of draping the remaining hair on the head so as to conceal the hairless spots."], "carbinol": ["A colourless, toxic, inflammable liquid. The simplest aliphatic alcohol, CH3OH."], "wood alcohol": ["A colourless, toxic, inflammable liquid. The simplest aliphatic alcohol, CH3OH."], "wood naphtha": ["A colourless, toxic, inflammable liquid. The simplest aliphatic alcohol, CH3OH."], "wood spirit": ["A colourless, toxic, inflammable liquid. The simplest aliphatic alcohol, CH3OH."], "methyl alcohol": ["A colourless, toxic, inflammable liquid. The simplest aliphatic alcohol, CH3OH."], "pure alcohol": ["A colorless liquid, miscible with water, used as a reagent and solvent."], "drinking alcohol": ["A colorless liquid, miscible with water, used as a reagent and solvent."], "upriver": ["Toward or near the source of a river."], "downriver": ["Toward or near the mouth of a river."], "flatulence": ["The emission of digestive gases through the anus."], "distrustful": ["Feeling or showing doubt."], "disturb": ["To have an unwanted negative influence on someone, to be distractive to or for someone, impress someone or something in a troublesome or uneasy way.", "To involve oneself causing disturbance."], "disturbance": ["Something that disturbs."], "disturbed": ["Showing symptoms of mental illness."], "disunit": ["To sever the union of."], "disjoin": ["To sever the union of."], "disunity": ["Difference of opinion."], "Carlovingians": ["Frankish noble family which ruled the Franks from 751 until 987."], "Carolings": ["Frankish noble family which ruled the Franks from 751 until 987."], "Karlings": ["Frankish noble family which ruled the Franks from 751 until 987."], "Carolingians": ["Frankish noble family which ruled the Franks from 751 until 987."], "Carolingian": ["Of or pertaining to the Carolingians."], "nasogastric tube": ["Tube that is inserted through a patient's nose, throat and esophagus in order to put food directly into the stomach."], "NG tube": ["Tube that is inserted through a patient's nose, throat and esophagus in order to put food directly into the stomach."], "Mari El Republic": ["A republic of Russia located in Volga-Vyatka."], "divergence": ["The act, fact, or amount of diverging."], "divergency": ["The act, fact, or amount of diverging."], "Aramaic alphabet": ["A consonantal alphabet used for writing Aramaic that was adapted from the Phoenician alphabet in the 8th century BCE."], "Aramaeans": ["West Semitic semi-nomadic and pastoralist people who lived in upper Mesopotamia and Syria."], "Arameans": ["West Semitic semi-nomadic and pastoralist people who lived in upper Mesopotamia and Syria."], "diverse": ["Of a different kind, form, character, etc."], "Altai Republic": ["A republic of Russia located in West Siberia."], "diviner": ["A person who divines."], "soothsayer": ["A person who divines."], "prophet": ["A person who divines."], "parasol": ["A small handheld umbrella used as protection from the sun, especially by women."], "ASL": ["The dominant sign language of the Deaf community in the United States, in the English-speaking parts of Canada, and in parts of Mexico."], "jemmy": ["A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on the curved end for removing nails."], "nail bar": ["A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on the curved end for removing nails."], "pry bar": ["A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on the curved end for removing nails."], "MSL": ["A sign language, derived from British Sign Language, that was formerly used in Nova Scotia, New Brunswick, and Prince Edward Island, Canada."], "BKSL": ["A sign language used by about 1,000 people of a rice-farming community in remote areas of Isan (northeastern Thailand)."], "Rapanui": ["An Eastern Polynesian language spoken by the Rapanui, the inhabitants of Easter Island.", "An inhabitant of Easter Island.", "Relating to Easter Island, its inhabitants or their culture."], "Urub\u00fa Sign Language": ["A sign language used by a small community of Indigenous Brazilians in the state of Maranh\u00e3o."], "Official Aramaic": ["An ancient Afro-Asiatic language spoken in the Near East between about 700 BCE and 300 BCE."], "Imperial Aramaic": ["An ancient Afro-Asiatic language spoken in the Near East between about 700 BCE and 300 BCE."], "diving bell": ["A diving apparatus for underwater work."], "wet bell": ["A diving apparatus for underwater work."], "diving board": ["An often flexible board from which a dive may be executed."], "springboard": ["An often flexible board from which a dive may be executed."], "divisor": ["A number by which another number, the dividend, is divided."], "divulgence": ["An enlightening or astonishing disclosure."], "divvy": ["To divide an object, area or space into sections or parts."], "dizzy": ["A state in which a group of people is continuously making silly jokes, that can nevertheless lead to laughing fits as a reaction. Under the right circumstances, the state can maintain itself or be induced in others contageously. The use of weed (Cannabis sativa) promotes the state in some individuals, but it can also be induced by a joke or reference to an (earlier) funny event.", "Having a sensation of whirling and a tendency to fall."], "docility": ["The trait of being agreeably submissive and manageable."], "docker": ["A laborer who loads and unloads vessels in a port."], "dockhand": ["A laborer who loads and unloads vessels in a port."], "dockworker": ["A laborer who loads and unloads vessels in a port."], "Palatinate German": ["A language of Germany."], "Rotwelsch": ["A language based on German with Yiddish and Romani influences that was spoken especially by delinquents, travelling craftspeople and vagrants."], "thieves' cant": ["A secret language formerly used by thieves, beggars and hustlers of various kinds in Great Britain and a few other English-speaking countries."], "cryptolect": ["A secret or private language used by various groups to prevent outsiders from understanding their conversations."], "cant": ["Language that is higly informal, considered below what is considered standard educated speech, and consisting of new words, old words used with new meanings, or words considered taboo by people of a higher social status.", "Terminology which is especially defined in relationship to a specific activity, profession, group, or event.", "A secret or private language used by various groups to prevent outsiders from understanding their conversations."], "doctorate": ["One of the highest earned academic degrees conferred by a university."], "doctrinal": ["Of, pertaining to, or concerned with doctrine."], "dogged": ["Who persevers stubbornly."], "dogmatism": ["Arrogant, stubborn assertion of opinion or belief."], "dog-tired": ["Very tired."], "doing": ["Something done voluntarily by a person, and of such a nature that certain legal consequences attach to it."], "doleful": ["Feeling mentally uncomfortable because something is missing or wrong."], "dolorous": ["Feeling mentally uncomfortable because something is missing or wrong."], "doltish": ["Showing a lack of good sense, wisdom or forethought."], "domination": ["Control or power over another or others."], "domed": ["Having or resembling a dome."], "domineering": ["Inclined to rule arbitrarily or despotically."], "conlang": ["A language of which the phonology, grammar and/or vocabulary has been specifically devised by an individual or small group."], "planned language": ["A language of which the phonology, grammar and/or vocabulary has been specifically devised by an individual or small group."], "domino": ["An oblong piece of wood or plastic etc marked with spots with which the game of dominoes is played."], "doomsday": ["The day of the Last Judgment, at the end of the world."], "doorkeeper": ["A uniformed doorman."], "doorman": ["A uniformed doorman."], "doorway": ["An opening, or passage in a fence or wall; the entrance through which you enter or leave a room or building.", "The passage or opening into a building, room, etc., closed and opened by a door."], "Calypso": ["Natural satellite of the planet Saturn."], "draconian": ["Exceedingly harsh."], "drastic": ["Forceful, severe and having a wide effect."], "drawing pin": ["A nail with a large head."], "dressy": ["Showy or elegant in dress or appearance."], "dubiety": ["Challenge about the truth or accuracy of a matter."], "dubious": ["Subject to nonconcordant interpretations."], "dutitable": ["Subject to nonconcordant interpretations."], "dupery": ["The act or practice of deceiving."], "Old Aramaic": ["The version of Aramaic that was spoken until 700 BCE."], "Ancient Aramaic": ["The version of Aramaic that was spoken until 700 BCE."], "insomnia": ["Difficulty in going to sleep or getting enough sleep."], "dutiable": ["Of goods on which tax is to be paid."], "dutiful": ["Performing the duties expected or required of one."], "butter dish": ["A dish in which butter or margarine is kept."], "dynamism": ["The forcefulness of an energetic personality."], "dynamite": ["A type of powerful explosive."], "goose bumps": ["Raised skin, usually on the neck or arms caused by cold, excitement, or fear."], "dysentery": ["An infectious disease with severe diarrhoea."], "dysfunctional": ["Impaired in function, especially of a bodily system or organ."], "eagle-eyed": ["A keen eyesight."], "clear-sighted": ["A keen eyesight."], "hawk-eyed": ["A keen eyesight."], "sharp-eyed": ["A keen eyesight."], "copycat": ["One who imitates others' work or behaviour without adding ingenuity."], "copy cat": ["One who imitates others' work or behaviour without adding ingenuity."], "ikebana": ["The Japanese art of flower arrangement, also known as kad\u014d."], "hirsutism": ["Excess hair in females and children with an adult male pattern of distribution."], "origami": ["The traditional Japanese art of paper folding."], "orbits around": ["Indicates that a moon moves around a planet."], "crotales": ["Percussion instruments consisting of small, tuned bronze or brass disks, each is about 4 inches in diameter with a flat top surface and a nipple on the base."], "ear mite": ["A mite that lives in the ears of animals."], "scabies": ["An infestation of parasitic mites, Sarcoptes scabiei, causing intense itching caused by the mites burrowing into the skin of humans and other animals."], "hijack": ["To take arbitrarily or by force, possibly associated with the kidnapping of its occupants."], "eagle owl": ["Any of several large owls of the genus Bubo, having prominent tufts of feathers on each side of the head."], "earner": ["Someone who earn wages in return for their labor."], "earnest": ["Serious in intention, purpose, or effort."], "earphones": ["A sound receiver that fits in or over the ear, as of a radio or telephone."], "earplug": ["A plug of soft, pliable material inserted into the opening of the outer ear, esp. to keep out water or noise."], "earshot": ["The distance within which a sound, voice, etc., can be heard."], "earreach": ["The distance within which a sound, voice, etc., can be heard."], "ear-splitting": ["Disagreeably loud or shrill."], "unmarriable": ["Not suitable for marriage."], "unmarriageable": ["Not suitable for marriage."], "Assyrian Neo-Aramaic": ["A modern Eastern Aramaic language spoken in a worldwide diaspora."], "Lishanid Noshan": ["A modern Jewish Aramaic language spoken mostly in Israel."], "Hula'ula": ["A modern Jewish Aramaic language spoken in Israel."], "Galigalu": ["A modern Jewish Aramaic language spoken mostly in Israel."], "Kurdit": ["A modern Jewish Aramaic language spoken mostly in Israel."], "earthy": ["Of or characteristic of this world."], "worldly": ["Of or characteristic of this world."], "skillet": ["Cooking utensil relatively flat, having a handle, used to cook food such as meat, vegetables or eggs, usually in oil or butter."], "frying pan": ["Cooking utensil relatively flat, having a handle, used to cook food such as meat, vegetables or eggs, usually in oil or butter."], "frying-pan": ["Cooking utensil relatively flat, having a handle, used to cook food such as meat, vegetables or eggs, usually in oil or butter."], "fry pan": ["Cooking utensil relatively flat, having a handle, used to cook food such as meat, vegetables or eggs, usually in oil or butter."], "frypan": ["Cooking utensil relatively flat, having a handle, used to cook food such as meat, vegetables or eggs, usually in oil or butter."], "fry-pan": ["Cooking utensil relatively flat, having a handle, used to cook food such as meat, vegetables or eggs, usually in oil or butter."], "earwax": ["A yellowish, waxlike secretion from certain glands in the external auditory canal."], "cerumen": ["A yellowish, waxlike secretion from certain glands in the external auditory canal."], "artificial cheese": ["A product that, unlike traditional cheese, isn't made only from milk and ripens for several months but is mixed from different ingredients, among other things milkfat is replaced by animal or vegetable fat."], "analogue cheese": ["A product that, unlike traditional cheese, isn't made only from milk and ripens for several months but is mixed from different ingredients, among other things milkfat is replaced by animal or vegetable fat."], "plant virus": ["Virus which is pathogenic to vascular plants"], "plant virology": ["The study of viruses which infect plants."], "animal virology": ["The study of viruses which infect animals."], "Hebraize": ["To use expressions or constructions distinctive of the Hebrew language.", "To convert into a Hebraic form."], "Hebraicize": ["To convert into a Hebraic form."], "Hebraism": ["A linguistic feature typical of the Hebrew language occurring especially in another language.", "A word in another language which is derived from Hebrew.", "The character, philosophy, principles, or practices distinctive of the Hebrew people."], "submicroscopic": ["Too small to be seen through an optical microscope."], "submicroscopical": ["Too small to be seen through an optical microscope."], "calypso": ["A type of music and dance that originated in the West Indies."], "reliquary": ["An artistically designed container for relics."], "monstrance": ["A vessel (usually made of gold or silver) in which the consecrated Host is exposed for adoration."], "ostensory": ["A vessel (usually made of gold or silver) in which the consecrated Host is exposed for adoration."], "philatory": ["A transparent reliquary designed to contain and exhibit the bones and relics of saints."], "chiasmus": ["A figure of speech which consists of an inversion of the word order in the second of two otherwise parallel phrases."], "gyrate": ["To position by moving an object around its axis."], "enormity": ["Anything that is especially big, bulky, heavy, long, huge, etc. which is often being recognized with astonishment or admiration."], "internal combustion engine": ["A type of combustion engine where the combustion takes place inside the engine."], "flue": ["A duct, pipe, or chimney for conveying exhaust gases from a fireplace, furnace, water heater, boiler, or generator to the outdoors. (Source: Wikipedia)"], "headphones": ["A pair of headphones meant to be worn on the head, such as those used with stereo installations."], "honeysuckle": ["A genus of climbing plants and shrubs, which occurs in Europe, China, Northeast of Asia and the United States."], "nettle": ["To make someone rather angry or impatient; to cause annoyance.", "The common name for between 30-45 species of flowering plants with a cosmopolitan though mainly temperate distribution. They are mostly herbaceous perennial plants, but some are annual and a few are shrubby."], "escalator": ["A motor-driven mechanical device consisting of a continuous loop of steps that automatically conveys people from one floor to another."], "stairs": ["A contiguous set of steps connecting two floors."], "tamarind": ["A tropical tree, native to Africa, including Sudan and parts of the Madagascar dry deciduous forests."], "crook of the arm": ["The inside of the elbow."], "epilator": ["Electrical device which removes hair by pulling it out of the roots."], "epilation": ["The removal of hair including the roots."], "depilation": ["The removal of the visible part of the hair, not including the part below the surface of the skin."], "pubic hair": ["Dense, coarse hair that grows on the male and female genital area beginning in puberty.", "A single hair growing in the pubic region."], "a thousand million": ["1,000,000,000 (10^9 = thousand millions)"], "electric power generating plant": ["A stationary plant containing apparatus for large-scale conversion of some form of energy (such as hydraulic, steam, chemical, or nuclear energy) into electrical energy."], "stench": ["An unpleasant smell."], "Cornwall": ["A county in England, a duchy of the United Kingdom, and one of the six Celtic nations."], "Job's news": ["Very bad news."], "evil tidings": ["Very bad news."], "midway": ["In the middle of a distance between two points."], "halfway": ["In the middle of a distance between two points."], "sleep disorder": ["Medical disorder of the sleep patterns of a person or animal. (Source: Wikipedia)"], "somnipathy": ["Medical disorder of the sleep patterns of a person or animal. (Source: Wikipedia)"], "St. Peter Port": ["The capital city of Guernsey."], "eatable": ["That can be eaten without harm, non-toxic to humans; suitable for consumption."], "esculent": ["That can be eaten without harm, non-toxic to humans; suitable for consumption."], "heart disease": ["Disease that affects the heart."], "cardiopathy": ["Disease that affects the heart."], "swine influenza": ["Acute and mortal infectious disease of the respiratory system in pigs (swines).", "Influenza-like illness in humans caused by an influenza A virus subtype H1N1 that seems to have mutated from the swine influenza virus, and can pass easily from humans to humans."], "swine flu": ["Acute and mortal infectious disease of the respiratory system in pigs (swines).", "Influenza-like illness in humans caused by an influenza A virus subtype H1N1 that seems to have mutated from the swine influenza virus, and can pass easily from humans to humans."], "agrobiotechnology": ["An advanced technology that allows plant breeders to make precise genetic changes to impart beneficial traits to crop plants."], "agrotechnology": ["A discipline concerned with developing and improving the means for providing food and fiber for mankind's needs.\\n(Source: MGH)"], "leukocyte": ["A cell of the immune system defending the body against infectious disease and foreign materials."], "white blood cell": ["A cell of the immune system defending the body against infectious disease and foreign materials."], "WBC": ["A cell of the immune system defending the body against infectious disease and foreign materials."], "leucocyte": ["A cell of the immune system defending the body against infectious disease and foreign materials."], "erythrocyte": ["The most common type of blood cell in vertebrates which serves to deliver oxygen to the body tissues via the blood."], "red blood cell": ["The most common type of blood cell in vertebrates which serves to deliver oxygen to the body tissues via the blood."], "RBC": ["The most common type of blood cell in vertebrates which serves to deliver oxygen to the body tissues via the blood."], "red blood corpuscle": ["The most common type of blood cell in vertebrates which serves to deliver oxygen to the body tissues via the blood."], "haematid": ["The most common type of blood cell in vertebrates which serves to deliver oxygen to the body tissues via the blood."], "erythropoiesis": ["The process by which red blood cells (erythrocytes) are produced."], "Black Death": ["A pandemic (thought to be caused by the bacterium Yersinia pestis) which ravaged Asia und Europe in the 14th century (peaking between 1347 and 1351) and is estimated to have killed 30-60% of Europe's population."], "Black Plague": ["A pandemic (thought to be caused by the bacterium Yersinia pestis) which ravaged Asia und Europe in the 14th century (peaking between 1347 and 1351) and is estimated to have killed 30-60% of Europe's population."], "bubonic plague": ["The best known manifestation of the plague which is caused by the bite of a flea infected with Yersinia pestis and leads to swollen and necrotic lymph nodes and finally death if untreated."], "Cornishman": ["A male person of Cornish ethnicity."], "Cornishwoman": ["A female person of Cornish ethnicity."], "septicemic plague": ["A manifestation of the plague that is caused by the bacterium Yersinia pestis entering the bloodstream and leads to death within 36 hours if untreated."], "septicaemic plague": ["A manifestation of the plague that is caused by the bacterium Yersinia pestis entering the bloodstream and leads to death within 36 hours if untreated."], "pneumonic plague": ["The least common form of the plague which occurs when Yersinia pestis is inhaled or as a secondary infection when septicemic plague spreads into lung tissue from the bloodstream."], "commit suicide": ["To end one's own life purposefully."], "kill oneself": ["To end one's own life purposefully."], "off oneself": ["To end one's own life purposefully."], "take one's own life": ["To end one's own life purposefully."], "ease": ["A state of tranquility, quiet, and harmony, e.g., a state free from civil disturbance.", "To make easy or easier.", "Relief from work or other activity or responsibility."], "easel": ["An upright frame, typically on three legs, for displaying or supporting something, such as an artist\u2019s canvas."], "eating disorder": ["A disorder of the normal eating routine."], "eavesdropper": ["A secret listener to private conversations."], "eve": ["The evening before a certain day.", "The day before."], "planetary wind": ["Air movements within the Earth's atmospheric circulation; also called planetary winds. Two main components are recognized: first, the latitudinal meridional component due to the Coriolis force (a deflecting motion or force discussed by G.G. de Coriolis in 1835. The rotation of the Earth causes a body moving across its surface to be deflected to the right in the N hemisphere and to the left in the S hemisphere); and secondly, the longitudinal component and the vertical movement, resulting largely from varying pressure distributions due to differential heating and cooling of the Earth's surface.\\n(Source: WHIT)"], "board of trustees": ["All representatives in a company that have the assignment to administrate the company itself."], "directorate": ["An agency usually headed by a director, often a subdivision of a major government department."], "executive board": ["All representatives in a company that have the assignment to administrate the company itself."], "board of directors": ["All representatives in a company that have the assignment to administrate the company itself."], "board of governors": ["All representatives in a company that have the assignment to administrate the company itself."], "board of managers": ["All representatives in a company that have the assignment to administrate the company itself."], "Ebola fever": ["A severe and often fatal disease in humans and nonhuman primates (monkeys and chimpanzees) caused by the Ebola virus."], "ebonite": ["A hard nonresilient rubber formed by vulcanizing natural rubber."], "ebony": ["Any of various tropical Asian or African trees of the genus Diospyros.", "A type of wood, usually black and almost as heavy and hard as stone.", "A dark, deep, lustrous black.", "Made of or suggesting ebony.", "Black in color."], "ebon": ["A dark, deep, lustrous black."], "ebullience": ["Overflowing with eager enjoyment or approval."], "exuberance": ["An overflowing fullness.", "Overflowing with eager enjoyment or approval."], "ebullient": ["Joyously unrestrained."], "eccentric": ["A person who has an unusual, peculiar, or odd personality, or behaviour pattern.", "Deviating from the recognized or customary character, practice, etc.", "Not having a common center."], "air out": ["To expose to fresh air.", "To expose to cool or cold air so as to cool or freshen."], "gilded cage": ["The situation of living in luxury but having no freedom."], "Diola-Fogny": ["A language of Senegal, Gambia and Guinea-Bissau."], "high caloric": ["Containing a high amount of calories."], "high-caloric": ["Containing a high amount of calories."], "mien": ["An expression or appearance indicating a certain state of mind."], "aluminium oxide": ["A natural or synthetic oxide of aluminum widely distributed in nature, often found as a constituent part of clays, feldspars, micas and other minerals, and as a major component of bauxite."], "aluminium trioxide": ["A natural or synthetic oxide of aluminum widely distributed in nature, often found as a constituent part of clays, feldspars, micas and other minerals, and as a major component of bauxite."], "eccentricity": ["An oddity or peculiarity, as of conduct, or the quality of being eccentric.", "The distance between the centers of two cylindrical objects one of which surrounds the other.", "Geometry: measure of the deviation of a conic section from circular shape."], "ecclesiastic": ["Of the church or clergy."], "ecclesiastical": ["Of the church or clergy."], "echelon": ["A level of responsibility or authority in a hierarchy."], "echo": ["A repetition of sound produced by the reflection of sound waves from a wall, mountain, or other obstructing surface."], "ecologist": ["A scientist who studies ecology.", "One who advocates for the protection of the biosphere from misuse from human activity through such measures as ecosystem protection, waste reduction and pollution prevention."], "educate": ["To give an education or training to.", "To teach by training."], "faun": ["A mythical creature with the lower body of a goat and the upper body of a man."], "ecological": ["Not or minimally harmful to the environment."], "economize": ["To spend goods or money more carefully."], "ecumenical": ["Pertaining to the whole Christian church."], "edgy": ["Easily irritated."], "edifice": ["A building, esp. one of large size or imposing appearance."], "educational": ["Intended for purposes of instruction, for teaching."], "educationalist": ["A specialist in the theory and methods of education."], "educationist": ["A specialist in the theory and methods of education."], "educative": ["Serving to educate."], "educator": ["A person who educates, esp. a teacher, principal, or other person involved in planning or directing education."], "efface": ["To remove markings or information.", "To rub or wipe out."], "white tea": ["Unoxidized tea which contains buds and young tea leaves."], "black tea": ["Tea made of the oxidized leaves of Camellia sinensis which tastes stronger and contains more caffeine than other, less oxidized teas."], "demented": ["Suffering from dementia."], "syzygy": ["Astronomy, astrology: The alignment of three or more celestial bodies in the same gravitational system along a plane.", "Zoology: The pairing of chromosomes in meiosis."], "effectual": ["Producing a decided or decisive effect."], "effectuate": ["To effect or execute something."], "effeminacy": ["The state or quality of being effeminate."], "effeminate": ["Of a man: Having qualities that are traditionally associated with women.", "Having unsuitable feminine qualities."], "Mlahs\u00f4": ["A modern West Syriac language and dialect of Aramaic that was traditionally spoken in eastern Turkey and north-eastern Syria but is now extinct."], "Lishana Deni": ["A modern Jewish Aramaic language originally spoken in the town of Zakho and its surrounding villages in northern Iraq but now mostly in Israel."], "Jewish Zakho Neo-Aramaic": ["A modern Jewish Aramaic language originally spoken in the town of Zakho and its surrounding villages in northern Iraq but now mostly in Israel."], "Lishan Hozaye": ["A modern Jewish Aramaic language originally spoken in the town of Zakho and its surrounding villages in northern Iraq but now mostly in Israel."], "Classical Mandaic": ["A Semitic language in the Eastern Aramaic branch that is used as liturgical language in the Mandaean religion."], "Neo-Mandaic": ["A Semitic language of the Eastern Aramaic sub-family which developed from Classical Mandaic and is spoken by a small community in Iran."], "Mandaic": ["A Semitic language of the Eastern Aramaic sub-family which developed from Classical Mandaic and is spoken by a small community in Iran."], "Mandaean": ["A Semitic language of the Eastern Aramaic sub-family which developed from Classical Mandaic and is spoken by a small community in Iran."], "Modern Mandaic": ["A Semitic language of the Eastern Aramaic sub-family which developed from Classical Mandaic and is spoken by a small community in Iran."], "effortless": ["Requiring or involving no effort."], "effrontery": ["Shameless boldness."], "effusive": ["Excessive in emotional expression."], "eggshell": ["The shell or exterior covering of an egg.", "A pale yellowish-white color."], "ego": ["The \u201cI\u201d of any person."], "egocentric": ["Interested in oneself only."], "egoism": ["The tendency to think of self and self-interest."], "egotism": ["The tendency to think of self and self-interest."], "selfishness": ["The tendency to think of self and self-interest."], "egoistic": ["Pertaining to or of the nature of egoism."], "egotistic": ["Pertaining to or of the nature of egoism.", "Characteristic of false pride."], "egregious": ["Extraordinary in some bad way."], "scandalous": ["Extraordinary in some bad way."], "oversalt": ["To spoil by adding too much salt."], "oversalted": ["Seasoned with too much salt."], "liturgical language": ["Language that is used in church service of a religion but is not spoken in daily life."], "sacred language": ["A language that is used only in religious context but not in everyday life."], "death day": ["The day a person has died."], "obit": ["The day a person has died."], "angel of death": ["An angel that brings death to people or accompanies them to the afterlife or receives them there.", "A type of criminal offender who is usually employed as a caregiver and intentionally harms or kills persons under their care."], "eider": ["Any species of sea duck of the genera Polysticta or Somateria, which lines its nest with fine down taken from its own body."], "eider duck": ["Any species of sea duck of the genera Polysticta or Somateria, which lines its nest with fine down taken from its own body."], "salted": ["Preserved in salt."], "eiderdown": ["The down of the eider duck, used as stuffing for quilts and pillows."], "lifelong": ["Lasting a lifetime."], "eject": ["To force a person or persons to leave a place.", "To throw out violently.", "To come out of a machine."], "throw out": ["To force a person or persons to leave a place.", "To Oust or expel, especially people."], "elated": ["Both very happy and proud."], "elation": ["A feeling or state of great joy or pride."], "electrical": ["Utilising electricity.", "By means of electricity"], "electrify": ["To equip for the use of electric power, as a railroad."], "electrocardiogram": ["Measurement and interpretation of electrical manifestations of heart activity."], "electrocute": ["To kill or injure a person etc accidentally by electricity."], "electrode": ["A conductor through which a current of electricity enters or leaves a battery etc."], "electromagnet": ["A device, consisting of an iron or steel core that is magnetized by electric current in a coil that surrounds it."], "elevate": ["To raise something to a higher position.", "To promote someone to a higher rank."], "mozzarella stick": ["A rectangular or cylindrical piece of mozzarella cheese that is battered or breaded and then deep-fried."], "mozz stick": ["A rectangular or cylindrical piece of mozzarella cheese that is battered or breaded and then deep-fried."], "mozza stick": ["A rectangular or cylindrical piece of mozzarella cheese that is battered or breaded and then deep-fried."], "macaroni and cheese": ["A dish popular in the US and Canada which consists of cooked macaroni and a cheese sauce prepared with cheddar."], "macaroni cheese": ["A dish popular in the US and Canada which consists of cooked macaroni and a cheese sauce prepared with cheddar."], "mac 'n' cheese": ["A dish popular in the US and Canada which consists of cooked macaroni and a cheese sauce prepared with cheddar."], "antiapoptotic": ["Acting to prevent apoptosis."], "eliminate": ["To remove or get rid of, as being in some way undesirable.", "To kill in large numbers.", "To remove from a contest or race."], "Elizabethan": ["Of or pertaining to the reign of Elizabeth I, queen of England, or to her times."], "elliptic": ["Pertaining to or having the form of an ellipse."], "elliptical": ["Pertaining to or having the form of an ellipse."], "manlike": ["Having the form of a man.", "Possessing qualities befitting a man."], "Mandaic alphabet": ["An alphabet based on the Aramaic alphabet which is used for writing the Mandaic language."], "Samaritan Aramaic": ["A dialect of Aramaic used by the Samaritans that ceased to be spoken actively some time between the 10th and the 12th centuries and is only a liturgical language today."], "Samaritan": ["A dialect of Aramaic used by the Samaritans that ceased to be spoken actively some time between the 10th and the 12th centuries and is only a liturgical language today.", "A descendant of Biblical Hebrew that is used as liturgical language by Samaritans today."], "elocution": ["The art of speaking clearly and effectively."], "elongate": ["To draw out to greater length.", "To increase in length."], "lengthen": ["To draw out to greater length."], "elongation": ["Something that is elongated.", "An addition to the length of something.", "The act of lengthening something."], "eloquent": ["Characterized by persuasive, powerful discourse."], "elsewhere": ["In some other place."], "Samaritan Hebrew": ["A descendant of Biblical Hebrew that is used as liturgical language by Samaritans today."], "emaciated": ["Marked by emaciation especially from disease, hunger or cold."], "emanate": ["To come or send forth, as from a source."], "emancipate": ["To set free from the power of another."], "liberate": ["To set free from the power of another."], "embalm": ["To treat a corpse with preservatives in order to prevent decomposition."], "embellish": ["To make more attractive by adding ornament, colour, etc.", "To make more beautiful.", "To be beautiful to look at."], "decorate": ["To make more attractive by adding ornament, colour, etc.", "To be beautiful to look at."], "garnish": ["To make more attractive by adding ornament, colour, etc."], "embezzle": ["To appropriate fraudulently to one's own use, as property intrusted to one's care."], "diction": ["The manner in which something is expressed in words."], "anatids": ["A family of waterfowl, including ducks, geese, mergansers, pochards and swans, scientific name Anatidae, in the order Anseriformes."], "emblazon": ["To make more attractive by adding ornament, colour, etc."], "embitter": ["To make bitter and resentful."], "emblem": ["An object or a representation that functions as a symbol."], "emblematic": ["Pertaining to, of the nature of, or serving as an emblem."], "emblematical": ["Pertaining to, of the nature of, or serving as an emblem."], "symbolical": ["Pertaining to, of the nature of, or serving as an emblem."], "embodiment": ["The act of embodying or the state of being embodied."], "embody": ["To give a concrete, bodily form to.", "To represent, as of a character on stage.", "To represent or express something abstract in tangible form."], "embolden": ["To mentally support; to motivate."], "embroider": ["To stitch a decorative design on fabric with needle and thread of various colours."], "cloud cuckoo land": ["A fantasy world completely out of touch with reality which someone imagines."], "Acadian French": ["A variety or dialect of French spoken by francophone Acadians in the Canadian Maritime provinces, the Saint John River Valley in northern Maine, the Magdalen Islands and Havre-Saint-Pierre, along the St. Lawrence's north shore."], "Guatemalteco": ["A Spanish language dialect of the Americano-S branch."], "Avranchin-Mortainais": ["An O\u00efl language spoken in the arrondissement of Avranches, Manche department, France."], "Fongoro Spoken": ["The dialects of the Fongoro language."], "Kaba Deme Spoken": ["The dialects of the Kaba Deme language."], "embroidery": ["The ornamentation of fabric using needlework."], "embroil": ["To draw into a situation."], "Misato-S": ["A dialect of the Central Okinawan language."], "Misato-N": ["A dialect of the Central Okinawan language."], "Shuri": ["A dialect of the Central Okinawan language."], "Onna-S": ["A dialect of the Central Okinawan language."], "Nancowry": ["A dialect of the Central Nicobarese language."], "Camorta": ["A dialect of the Central Nicobarese language."], "Trinkat": ["A dialect of the Central Nicobarese language."], "emerald": ["A type of precious stone, green in colour.", "Having a clear, deep-green color.", "A transparent piece of emerald that has been cut and polished and is valued as a precious gem.", "The green color of an emerald."], "Bu-Dong": ["A dialect of the Central Mnong language."], "Pusan-U": ["A dialect of the Hankukmal-SE language."], "Khalkha-Formal": ["A dialect of the Halh Mongolian language."], "Zaki-Maratsa Spoken": ["The dialects of the Zaki-Maratsa language."], "Abedju-Azaki": ["A dialect of the Zaki-Maratsa language."], "emeritus": ["Retired or honorably discharged from active professional duty, but retaining the title of one's office or position."], "emery board": ["A small, stiff strip of paper or cardboard, coated with powdered emery, used in manicuring."], "nail file": ["A small, stiff strip of paper or cardboard, coated with powdered emery, used in manicuring."], "emetic": ["An agent that causes vomiting.", "Causing vomiting."], "emigrant bird": ["A bird which migrates in a group."], "emigrate": ["To leave one country or region to settle in another."], "emigration": ["The act of emigrating.", "Migration from a place."], "eminence": ["High station, status, rank, importance, or repute."], "emotive": ["Determined or actuated by emotion rather than reason."], "emollient": ["Softening and soothing, especially to the skin.", "An agent that softens or soothes the skin."], "emphatic": ["Uttered with emphasis."], "emphysema": ["A chronic, irreversible disease of the lungs characterized by abnormal enlargement of air spaces in the lungs accompanied by destruction of the tissue lining the walls of the air spaces."], "empiric": ["Relying upon or derived from observation or experiment."], "employable": ["Able to be employed."], "utilizable": ["Able to be employed."], "Biscayan": ["A dialect of the Basque language spoken mainly in Biscay, one of the provinces of the Basque Country of Spain."], "Bizkaian": ["A dialect of the Basque language spoken mainly in Biscay, one of the provinces of the Basque Country of Spain."], "employer": ["A person who employs others."], "emporium": ["A large retail store, esp. one selling a great variety of articles."], "empress": ["A female ruler of an empire."], "emptiness": ["The state of being empty."], "hollowness": ["The state of being empty."], "emu": ["A large flightless bird native to Australia (Dromaius novaehollandiae)."], "emulsify": ["To make into an emulsion."], "enchanter": ["A person who enchants.", "To please greatly."], "encase": ["To enclose in or as in a case."], "incase": ["To enclose in or as in a case."], "enchant": ["To please greatly.", "To delight to a high degree; to hold spellbound.", "To attract, arouse and hold attention and interest, as by charm or beauty."], "encouragement": ["The act of encouraging."], "encyclopedic": ["Pertaining to or of the nature of an encyclopedia."], "enema": ["The injection of a fluid into the rectum to cause a bowel movement."], "Arumanian Spoken": ["The dialects of the Macedo Romanian language."], "Vlor\u00eb-Berat": ["A dialect of the Macedo Romanian language."], "energetic": ["(For a person) Possessing or exhibiting energy."], "energetical": ["(For a person) Possessing or exhibiting energy."], "Aromanian Written": ["The written forms of the Macedo Romanian language."], "Aromanian Written Latin Script": ["The Macedo Romanian language written with the Latin script."], "Aromanian Written Greek Script": ["The Macedo Romanian language written with the Greek script."], "energize": ["To rouse into activity.", "To supply electrical current to or store electrical energy in."], "IRC": ["A form of real-time Internet text messaging (chat) or synchronous conferencing."], "Internet Relay Chat": ["A form of real-time Internet text messaging (chat) or synchronous conferencing."], "neuroimaging": ["The use of various techniques to either directly or indirectly image the structure, function/pharmacology of the brain. (source: Wikipedia)"], "engaging": ["Possessing charm and attractiveness."], "engrossing": ["Fully occupying the mind or attention."], "enigmatic": ["Resembling an enigma."], "enjoin": ["To lay upon, as an order or command.", "To give instructions to or direct somebody to do something with authority."], "enjoyable": ["Giving or capable of giving joy or pleasure."], "enlighten": ["To give spiritual or intellectual insight to."], "conceited": ["Characteristic of false pride."], "egotistical": ["Characteristic of false pride."], "self-conceited": ["Characteristic of false pride."], "swollen": ["Characteristic of false pride."], "swollen-headed": ["Characteristic of false pride."], "vain": ["Characteristic of false pride."], "enliven": ["To make sprightly or cheerful.", "To make vigorous or active."], "brighten": ["To make sprightly or cheerful."], "envigorate": ["To make vigorous or active."], "enmesh": ["To confuse completely by concealing one's true motives from, especially by elaborately feigning good intentions so as to gain an end."], "entangle": ["To confuse completely by concealing one's true motives from, especially by elaborately feigning good intentions so as to gain an end.", "To twist together or entwine into a confusing mass."], "enrich": ["To make rich with any kind of wealth."], "enrage": ["To make very angry."], "enrapture": ["To delight to a high degree; to hold spellbound.", "To fill with rapture or delight."], "Pearl": ["A female first name."], "mutagenic": ["Capable of inducing genetic mutation or increasing the rate of mutation."], "Muggle": ["A person without magical abilities in the works of J.K. Rowling."], "entail": ["To have as a logical consequence.", "To impose, involve, or imply as a necessary accompaniment or result.", "To limit the inheritance of property to a specific class of heirs.", "Land received by fee tail.", "The act of entailing property; the creation of a fee tail from a fee simple."], "enteritis": ["Inflammation of the small intestine."], "iniatiative": ["Willingness to undertake new ventures."], "enterprising": ["Showing initiative and willingness to undertake new projects."], "herb garden": ["A garden where herbs for the kitchen or medical purposes are cultivated."], "female corpse": ["The dead body of a woman."], "male corpse": ["The dead body of a man."], "child's corpse": ["The dead body of a child."], "kitchen garden": ["A garden that is used to grow edible plants and other plants that are useful in a household."], "potager": ["A garden that is used to grow edible plants and other plants that are useful in a household."], "vegetable patch": ["A patch of land used for the cultivation of vegetables."], "vegetable plot": ["A patch of land used for the cultivation of vegetables."], "sacred": ["Concerned with religion or religious purpose."], "sacral": ["Concerned with religion or religious purpose."], "sabbatical": ["An extended period of leave, often one year long, taken by an employee in order to carry out projects not otherwise associated with the employee's job."], "entertain": ["To have as a guest.", "To hold the attention of pleasantly or agreeably.", "To hold in the mind.", "To maintain (a theory, thoughts, or feelings)."], "gastroenteritis": ["Inflammation of the stomach and the small intestine."], "gastro": ["Inflammation of the stomach and the small intestine."], "gastric flu": ["Inflammation of the stomach and the small intestine."], "stomach flu": ["Inflammation of the stomach and the small intestine."], "entertaining": ["Affording entertainment."], "diverting": ["Affording entertainment."], "Senaya": ["A modern Eastern Aramaic language that is only spoken by a few families in Iran today."], "unfold": ["To spread out or open from a closed or folded state."], "spread out": ["To move outward (e.g. soldiers).", "To strew or distribute over an area.", "To set out or stretch in a line, succession, or series."], "entral": ["To delight to a high degree; to hold spellbound."], "enthrone": ["To place on a throne."], "enthronement": ["The act of enthroning or the state of being enthroned."], "enthronisation": ["The act of enthroning or the state of being enthroned."], "enthronization": ["The act of enthroning or the state of being enthroned."], "ramjet": ["A jet engine in which forward motion forces air into an inlet, compressing it, and where combustion is subsonic."], "jet": ["An aeroplane using jet engines rather than propellers."], "enthuse": ["To be enthusiastic.", "To fill with enthusiasm."], "Jewish Babylonian Aramaic": ["The form of Middle Aramaic used by Jewish writers in Babylonia between the 4th century and the 11th century CE."], "Babylonian Talmudic Aramaic": ["The form of Middle Aramaic used by Jewish writers in Babylonia between the 4th century and the 11th century CE."], "Lish\u00e1n Did\u00e1n": ["A modern Jewish Aramaic language originally spoken in Iranian Azerbaijan but now most speakers live in Israel."], "Turoyo": ["A variant of Aramaic that is spoken in eastern Turkey and north-eastern Syria."], "Surayt": ["A variant of Aramaic that is spoken in eastern Turkey and north-eastern Syria."], "wage earner": ["Someone who earn wages in return for their labor."], "tenacious": ["Sticking together."], "airheaded": ["A state in which a group of people is continuously making silly jokes, that can nevertheless lead to laughing fits as a reaction. Under the right circumstances, the state can maintain itself or be induced in others contageously. The use of weed (Cannabis sativa) promotes the state in some individuals, but it can also be induced by a joke or reference to an (earlier) funny event."], "empty-headed": ["A state in which a group of people is continuously making silly jokes, that can nevertheless lead to laughing fits as a reaction. Under the right circumstances, the state can maintain itself or be induced in others contageously. The use of weed (Cannabis sativa) promotes the state in some individuals, but it can also be induced by a joke or reference to an (earlier) funny event."], "featherbrained": ["A state in which a group of people is continuously making silly jokes, that can nevertheless lead to laughing fits as a reaction. Under the right circumstances, the state can maintain itself or be induced in others contageously. The use of weed (Cannabis sativa) promotes the state in some individuals, but it can also be induced by a joke or reference to an (earlier) funny event."], "light-headed": ["A state in which a group of people is continuously making silly jokes, that can nevertheless lead to laughing fits as a reaction. Under the right circumstances, the state can maintain itself or be induced in others contageously. The use of weed (Cannabis sativa) promotes the state in some individuals, but it can also be induced by a joke or reference to an (earlier) funny event."], "lightheaded": ["A state in which a group of people is continuously making silly jokes, that can nevertheless lead to laughing fits as a reaction. Under the right circumstances, the state can maintain itself or be induced in others contageously. The use of weed (Cannabis sativa) promotes the state in some individuals, but it can also be induced by a joke or reference to an (earlier) funny event."], "mitochondrial DNA": ["The DNA located in organelles called mitochondria."], "mtDNA": ["The DNA located in organelles called mitochondria."], "cell membrane": ["The biological membrane separating the interior of a cell from the outside environment."], "electron microscopy": ["A type of microscope that uses a particle beam of electrons to illuminate a specimen and create a highly-magnified image (source: Wikipedia)."], "circular DNA": ["A form of DNA that is found in bacteria and archaea as well as in eukaryotic cells in the form of mitochondrial DNA (source: Wikipedia)."], "nuclear DNA": ["DNA contained within a nucleus of eukaryotic organisms."], "genetic recombination": ["The process by which a strand of genetic material (usually DNA; but can also be RNA) is broken and then joined to a different DNA molecule."], "mutation rate": ["The chance of a mutation occurring in an organism or gene in each generation (or, in the case of multicellular organisms, cell division) (source: Wikipedia)."], "circumstantial evidence": ["A collection of facts that, when considered together, can be used to infer a conclusion about something unknown (source: Wikipedia)."], "matrilineality": ["A system in which lineage is traced through the mother and maternal ancestors."], "evolutionary tree": ["A tree showing the evolutionary relationships among various biological species or other entities that are believed to have a common ancestor (source: Wikipedia)."], "phylogenetic tree": ["A tree showing the evolutionary relationships among various biological species or other entities that are believed to have a common ancestor (source: Wikipedia)."], "genetic bottleneck": ["An evolutionary event in which a significant percentage of a population or species is killed or otherwise prevented from reproducing, and the population is reduced by 50% or more, often by several orders of magnitude."], "molecular phylogenetics": ["The use of the structure of molecules to gain information on an organism's evolutionary relationships."], "Simula": ["A programming language, developed in the 1960s at the Norwegian Computing Center in Oslo, introducing objects, classes, subclasses, virtual methods, coroutines, discrete event simulation, and featuring garbage collection."], "Simula 67": ["A programming language, developed in the 1960s at the Norwegian Computing Center in Oslo, introducing objects, classes, subclasses, virtual methods, coroutines, discrete event simulation, and featuring garbage collection."], "software engineer": ["A person who applies the principles of software engineering to the design, development, testing, and evaluation of the software and systems that make computers or anything containing software, such as chips, work (source: Wikipedia)."], "IEEE Computer Society": ["An organizational unit of the Institute of Electrical and Electronics Engineers (IEEE) established in 1963."], "SWEBOK": ["The sum of knowledge within the profession of software engineering as established by a Committee sponsored by the IEEE Computer Society, which has become an ISO standard."], "software engineering body of knowledge": ["The sum of knowledge within the profession of software engineering as established by a Committee sponsored by the IEEE Computer Society, which has become an ISO standard."], "software requirements": ["A sub-field of Software engineering that deals with the elicitation, analysis, specification, and validation of requirements for software (source: Wikipedia)."], "software configuration management": ["The task of tracking and controlling changes in the software. Configuration management practices include revision control and the establishment of baselines."], "CASE": ["The scientific application of a set of tools and methods to a software which is meant to result in high-quality, defect-free, and maintainable software products."], "computer-aided software engineering": ["The scientific application of a set of tools and methods to a software which is meant to result in high-quality, defect-free, and maintainable software products."], "system lifecycle": ["An examination of a system or proposed system that addresses all phases of its existence to include system design and development, production and/or construction, distribution, operation, maintenance and support, retirement, phase-out and disposal."], "systems engineering process": ["A process for applying systems engineering techniques to the development of all kinds of systems (source: Wikipedia)."], "grievous": ["Totally reprehensible."], "monstrous": ["Totally reprehensible."], "pupa": ["The form taken by some insects at an early stage in their development.", "A life stage of some insects undergoing transformation."], "holometabolism": ["The specific kind of insect development which includes four life stages - as an embryo, a larva, a pupa and an imago (source: Wikipedia)."], "complete metamorphism": ["The specific kind of insect development which includes four life stages - as an embryo, a larva, a pupa and an imago (source: Wikipedia)."], "enthusiastic": ["Full of or characterized by enthusiasm."], "entice": ["To dispose or incline or entice to; to be attractive by arousing hope or desire.", "To attract or provoke someone to do something through (often false or exaggerated) promises or persuasion."], "vessel": ["A tube or canal that carries fluid in an animal or plant.", "A general term for all kinds of craft designed for transportation on water, such as ships or boats.", "An object used as a container (e.g. for liquids)."], "daimon": ["Inspiring spirit of good or bad actions."], "genius": ["An intelligent person.", "Inspiring spirit of good or bad actions."], "sense of smell": ["The sense of smell."], "enticement": ["Qualities that attract by seeming to promise some kind of reward.", "Something that entices."], "allurement": ["Something that entices."], "enticing": ["That entices."], "attracting": ["That entices."], "gigolo": ["A male prostitute."], "entirety": ["The state of being entire."], "entomb": ["To put in the ground and cover with earth."], "entomologist": ["A person who is trained in or working in entomology."], "allotype": ["A specimen of the opposite sex to the holotype."], "entourage": ["The set of all natural and human-made surroundings that affect individuals, social groupings, and other life.", "A group of followers, especially of a person of high rank."], "entrance fee": ["The fee charged for admission."], "entrance money": ["The fee charged for admission."], "admission price": ["The fee charged for admission."], "admission fee": ["The fee charged for admission."], "admission charge": ["The fee charged for admission."], "entreat": ["To plead with someone for help or for a favor; to request urgently or persistently."], "entreaty": ["Earnest request or petition."], "entrepot": ["A trading post where merchandise can be imported and exported without paying import duties."], "Zacchaeus": ["A superintendent of customs; a chief tax-gatherer (publicanus) at Jericho (Luke 19:1-10)."], "cockerel": ["A male chicken (Gallus gallus domesticus), a domestic bird.", "A young rooster."], "envolop": ["To surround completely."], "enviable": ["Fitted to excite envy."], "environmentalist": ["One who advocates for the protection of the biosphere from misuse from human activity through such measures as ecosystem protection, waste reduction and pollution prevention."], "envoy": ["A male person that negotiates something as a representative.", "A female person that negotiates something as a representative.", "One who may speak for another in a particular capacity, especially in negotation."], "envy": ["A feeling of discontent or covetousness with regard to another's advantages, success, possessions, etc.", "To feel envy of."], "enwrap": ["To surround on all sides by creating a cover or protection."], "temerity": ["Fearless daring.", "The quality of not showing due respect."], "impudence": ["The quality of not showing due respect."], "epic": ["An epic poem."], "take aback": ["To cause someone to feel surprise."], "epidermis": ["The upper or outer layer of the two main layers of tissue that make up the skin."], "epiderm": ["The upper or outer layer of the two main layers of tissue that make up the skin."], "epidural": ["An injection into the epidural space of the spine."], "Zayse-Zergulla Spoken": ["The dialects of the Zayse-Zergulla language."], "epiglottis": ["A thin, triangular plate of cartilage at the base of the tongue that covers the glottis during swallowing to keep food from entering the trachea."], "epileptic": ["A person who suffers from epilepsy.", "Of, or caused by, epilepsy."], "episcopal": ["Of or relating to a bishop."], "episcopate": ["The office and dignity of a bishop."], "bishopric": ["In Christian religions, a region administered by a bishop.", "The office and dignity of a bishop."], "episodic": ["Occurring sporadically or incidentally."], "epitaph": ["An inscription on a tombstone in memory of the one buried there."], "hawser": ["A thick rope mostly used in mooring ships."], "epitome": ["A person or thing that is typical of or possesses to a high degree the features of a whole class.", "A brief summary, as of a book or article."], "aristotelianism": ["A tradition of philosophy that takes its defining inspiration from the work of Aristotle."], "scenography": ["The communicative organisation and manipulation of space and its perception, through time, as an act of artistic expression."], "lien": ["A legal claim; a charge upon real or personal property for the satisfaction of some debt or duty."], "self-righteous": ["Excessively or hypocritically pious."], "equable": ["Free from many changes or variations."], "racial segregation": ["The separation of different racial groups in daily life, such as eating in a restaurant, drinking from a water fountain, using a rest room, attending school, going to the movies, or in the rental or purchase of a home."], "racial integration": ["The process of ending systematic racial segregation."], "equality": ["The state or quality of being equal."], "Armenian people": ["A nation and ethnic group originating in the Caucasus and in the Armenian Highlands."], "Armenians": ["A nation and ethnic group originating in the Caucasus and in the Armenian Highlands."], "equalization": ["The act of equalizing, or state of being equalized."], "equalize": ["To make equal."], "equalizer": ["A person or thing that equalizes."], "calmness": ["The state of being calm, stable and composed, especially under stress."], "equate": ["To regard, treat, or represent as equivalent.", "To consider or describe as similar, equal, or analogous."], "dependent territory": ["A territory that does not possess full political independence or sovereignty as a State."], "dependent area": ["A territory that does not possess full political independence or sovereignty as a State."], "Saint Helena": ["An island of volcanic origin in the South Atlantic Ocean.", "A British overseas territory in the South Atlantic Ocean, which consists of the island of Saint Helena, and the dependencies of Ascension Island and Tristan da Cunha."], "lifebelt": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "equatorial": ["Of or near the equator."], "lifebuoy": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "lifering": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "life belt": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "lifesaver": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "life ring": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "life sentence": ["Sentence of imprisonment for the rest of the defendant's life."], "carboxyl group": ["A set of four atoms bonded together and present in carboxylic acids, including amino acids."], "aspartame": ["An artificial, non-saccharide sweetener. In the European Union, it is known under the E number (additive code) E951."], "equip": ["To furnish with whatever is needed for use or for any undertaking."], "equitable": ["Characterized by equity or fairness."], "thankful": ["Feeling or expressing gratitude."], "grateful": ["Feeling or expressing gratitude."], "gratitude": ["The state of feeling grateful."], "vacate": ["To give up from a job or position."], "renounce": ["To give up from a job or position.", "To renounce or relinquish a throne, right, power, claim, responsibility, or the like, in a formal manner."], "ignore": ["To be ignorant of or in the dark about.", "Euphemism for \"ignore\", that is, postpone until the hell freezes over."], "distinguish": ["To see someone or something as different from others; to discern or comprehend.", "To detect with the senses.", "To identify as in botany or biology, for example."], "differentiate": ["To see someone or something as different from others; to discern or comprehend.", "Evolve so as to lead to a new species or develop in a way most suited to the environment."], "tell apart": ["To see someone or something as different from others; to discern or comprehend.", "To detect with the senses."], "equivocal": ["Of uncertain significance."], "equivocate": ["To use ambiguous or unclear expressions, usually to avoid commitment or in order to mislead."], "equivacation": ["The use of equivocal or ambiguous expressions, esp. in order to mislead."], "erect": ["Being in a vertical, upright position.", "To make by combining materials and parts.", "To place in vertical or quasi-vertical position, stable by the sole combined effect of gravity and support(s) reaction."], "smelly": ["Having a bad smell."], "fetid": ["Having a bad smell."], "foetid": ["Having a bad smell."], "foul-smelling": ["Having a bad smell."], "funky": ["Having a bad smell."], "noisome": ["Posing a risk to health.", "Having a bad smell."], "putrid": ["Having a bad smell."], "smart bomb": ["A guided weapon intended to precisely hit a specific target, and to minimize damage to things other than the target."], "guided bomb unit": ["A guided weapon intended to precisely hit a specific target, and to minimize damage to things other than the target."], "phlebology": ["The study of veins and their diseases"], "phlebologist": ["A physician who specializes in treatment of vein disorders."], "erection": ["A distended and rigid state of an organ or part containing erectile tissue, esp. of the penis or the clitoris.", "An erect penis."], "ermine": ["Any of various weasels having a white winter coat."], "phlebectomy": ["Surgical removal or all or part of a vein; sometimes done in cases of severe varicose veins."], "phlebogram": ["An X-ray of a vein that has been injected with an opaque material."], "venogram": ["An X-ray of a vein that has been injected with an opaque material."], "phlebography": ["An X-ray examination of a system of veins that have been injected with a contrast medium."], "erogenous": ["Especially sensitive to sexual stimulation, as certain areas of the body."], "erotic": ["Of or concerning sexual love and desire.", "Giving sexual pleasure; sexually arousing."], "balaclava": ["Garment, made of wool or other tissues, wich covers the whole head but the eyes or the face, used to hide identity or to protect from the cold wheather."], "autophagie": ["A function of cell metabolism which involves the degradation of cell components which are not needed anymore."], "erotism": ["The sexual or erotic quality or character of something."], "errand": ["A short trip taken to perform a specified task, usually for another."], "erratic": ["Liable to sudden unpredictable change.", "Inclined to be irregular."], "erratum": ["An error, especially one in a printed work."], "erstwhile": ["Of times past."], "error message": ["A message displayed when an unexpected condition occurs, usually on a computer or other device."], "badinage": ["Frivolous banter."], "erudite": ["Characterized by great knowledge."], "erudition": ["Knowledge acquired by study, research, etc."], "erupt": ["To violently eject.", "To appear on the skin.", "To start to burn or burst into flames."], "neoplasia": ["The abnormal proliferation of cells."], "escalate": ["To increase in intensity, magnitude, etc."], "escalation": ["An increasing in intensity, magnitude, etc."], "escapade": ["A daring or adventurous act, often one that is disapproved of by others."], "lager": ["A pale bottom-fermented beer."], "escape clause": ["A provision in a contract that enables a party to terminate contractual obligations in specified circumstances."], "eschew": ["To avoid, as something wrong, or from a feeling of distaste."], "hector": ["To intimidate or dominate in a blustering way."], "escort": ["To go or travel in the company of someone.", "A group of persons, or a single person, accompanying another or others for protection, guidance, or courtesy.", "To accompany or attend as escort.", "A female prostitute who can be hired by telephone."], "tallow": ["A hard animal fat obtained from suet etc.; used to make candles, soap and lubricants."], "twice-yearly": ["Occuring twice every year."], "shun": ["To avoid, as something wrong, or from a feeling of distaste."], "Eskimo": ["A member of an indigenous people of Greenland, northern Canada, Alaska, and northeastern Siberia."], "demographic": ["Of or pertaining to demography."], "espionage": ["The act or practice of spying or of using spies to obtain secret information."], "esplanade": ["Any open, level space, esp. one serving for public walks or drives."], "essayist": ["A writer of essays."], "esthetic": ["Relating to the philosophy or theories of aesthetics."], "estrange": ["To cause to feel less close or friendly."], "estrangement": ["Emotional isolation or dissociation."], "etch": ["To make designs on metal, glass etc using an acid to eat out the lines."], "eternal": ["Lasting forever."], "eternity": ["A state of eternal existence believed in some religions to characterize the afterlife.", "Time without end.", "A seemingly endless time interval."], "ethereal": ["Light, airy, or tenuous."], "hectare": ["A unit of area equal to 10,000 square metres (107,639 sq ft), or one square hectometre (100 metres, squared), and commonly used for measuring land area."], "ethnologist": ["A specialist in ethnology."], "territorial": ["Of or relating to a territory."], "vision": ["The sense or ability of sight.", "An ideal or a goal toward which one aspires.", "Something imaginary one thinks one sees."], "presidential": ["Presiding or watching over.", "Of or pertaining to a president."], "operating": ["Involved in a kind of operation."], "mythologic": ["Of or pertaining to myths or mythology."], "mythological": ["Of or pertaining to myths or mythology."], "mythology": ["The systematic collection and study of myths.", "Myths collectively; the body of stories associated with a culture or institution or person."], "municipal": ["Of or pertaining to a municipality."], "historian": ["A writer of history; a chronicler; an annalist."], "constitutional": ["Relating to the constitution."], "constitutionally": ["In a manner conform to a constitution."], "North American": ["A person from or living in North America.", "Of or pertaining to or characteristic of the continent or countries of North America or their peoples."], "revolutionary": ["Of or pertaining to a revolution in government.", "Pertaining to something that portends of great change."], "expedition": ["A long journey undertaken by a group of people with a definite objective."], "with respect to": ["Regarding; concerning; pertaining to."], "difficulty": ["The state of being difficult, or hard to do."], "electoral": ["Of, or relating to elections.", "Composed of electors."], "platform": ["A raised horizontal surface from which speeches are made and on which musical and other performances are made.", "The combination of a particular computer and a particular operating system.", "A set of components shared by several vehicle models.", "A raised structure from which passengers can enter or leave a train, metro etc."], "ethnologic": ["Of or relating to ethnology."], "etiquette": ["A prescribed or accepted code of usage in matters of ceremony, as at a court or in official or other formal observances."], "etymological": ["Of or relating to etymology or based on the principles of etymology."], "eucalyptus": ["A type of large Australian evergreen tree, giving timber, gum and an oil that is used in the treatment of colds."], "rodomontade": ["Pretentious and ridiculous attitude.", "To display a pretentious and ridiculous attitude."], "rhodomontade": ["Pretentious and ridiculous attitude.", "To display a pretentious and ridiculous attitude."], "rodomont": ["Person displaying a pretentious and ridiculous attitude."], "carte blanche": ["Authorization given to a person allowing him or her to do whatever he or she wants."], "free hand": ["Authorization given to a person allowing him or her to do whatever he or she wants."], "signed blank paper": ["Signed paper left blank so that another person can fill it with what he or she wants."], "anal": ["Of or relating to the anus."], "make darker": ["To reduce the quantity of light or brightness of something."], "make easier": ["To make easy or easier."], "injure": ["To cause physical harm to a living creature."], "leave out": ["To exclude; to specify as being an exception."], "leave off": ["To exclude; to specify as being an exception."], "omit": ["To exclude; to specify as being an exception."], "take out": ["To exclude; to specify as being an exception.", "To give vent to a bad feeling on someone who did not originate it.", "To take and put outside (of a cupboard, a building, etc.)."], "manufacture": ["To make things, usually on a large scale, with tools and either physical labor or machinery, out of artificial or natural components or parts.", "To make up something artificial or untrue.", "To produce naturally (e.g. of a plant)."], "financial capacity": ["The capacity to carry burdens, particularly financial burdens."], "Eucharist": ["A sacrament and the central act of worship in many Christian churches, which was instituted at the Last Supper and in which bread and wine are consecrated and consumed in remembrance of Jesus's death."], "eugenics": ["The study of hereditary improvement of the human race by controlled selective breeding."], "eugenic": ["Of or relating to eugenics."], "hygroscopic": ["Inclined to absorbing water from the atmosphere, through either absorption or adsorption."], "eulogize": ["To extol in speech or writing."], "eulogy": ["A laudatory speech or written tribute, especially one praising someone who has died."], "euphemistic": ["Of or pertaining to euphemism."], "euphoria": ["A feeling of great happiness or well-being, commonly exaggerated and not necessarily well founded."], "accompanied": ["Having companions or an escort."], "learned": ["Knowledgeable through having read extensively."], "assumed": ["Past participle of assume."], "traverse": ["To go beyond, to pass here."], "pass over": ["To go beyond, to pass here."], "get over": ["To go beyond, to pass here."], "get across": ["To go beyond, to pass here."], "cut through": ["To go beyond, to pass here."], "cut across": ["To go beyond, to pass here."], "evanescent": ["Of short duration, passing away quickly."], "let go": ["To give freedom; to release from confinement or restraint."], "ugliness": ["The condition of being ugly."], "evaporator": ["A device in which evaporation takes place."], "evasion": ["An act or instance of escaping, avoiding, or shirking something."], "evenhanded": ["Showing no partiality."], "fallen": ["Having dropped by the force of gravity.", "Killed in battle."], "Republic of San Marino": ["A country in Europe within Italy."], "winter time": ["The \"normal\" time, as opposed to summer time."], "standard time": ["The \"normal\" time, as opposed to summer time."], "quadrennial": ["Happening once every four years."], "quadriennial": ["Happening once every four years."], "triennial": ["Happening once every three years."], "quinquennial": ["Happening once every five years."], "sexennial": ["Happening once every six years."], "septennial": ["Happening once every seven years."], "octennial": ["Happening once every eight years."], "novennial": ["Happening once every nine years."], "undecennial": ["Happening once every eleven years."], "duodecennial": ["Happening once every twelve years."], "quindecennial": ["Happening once every fifteen years."], "vicennial": ["Happening once every twenty years."], "tricennial": ["Happening once every thirty years."], "suspected": ["Believed likely."], "anthropomorphitism": ["The attribution of human characteristics to non-human beings, objects, phenomena or concepts."], "anthropomorphization": ["The attribution of human characteristics to non-human beings, objects, phenomena or concepts."], "anthropomorphosis": ["The attribution of human characteristics to non-human beings, objects, phenomena or concepts."], "anthropomorphism": ["The attribution of human characteristics to non-human beings, objects, phenomena or concepts."], "reduced": ["Made less in size or amount or degree."], "poisoned chalice": ["A thing or situation which appears to be good when it is received or experienced but is found to be bad."], "retired": ["Past participle of the verb to retire."], "Trojan horse": ["A thing or situation which appears to be good when it is received or experienced but is found to be bad."], "tought": ["Past participle of the verb to think."], "proceed": ["To maintain an action, state or condition without interruption.", "To follow a certain course.", "To continue talking."], "furnish": ["To give what is needed or desired."], "originate": ["To take first existence; to have origin or beginning; to begin to exist or act."], "populate": ["To fill with people or supply with inhabitants.", "To fill with data."], "everlasting": ["Lasting or continuing for an indefinitely long time."], "unending": ["Lasting or continuing for an indefinitely long time."], "evict": ["To expel a person, from land, a property, a building, etc., by a legal process."], "published": ["Past participle of the verb to publish."], "jerk": ["A strongly disliked person who behaves disgustingly, underhandedly, or nastily, etc.", "To make a sudden uncontrolled movement.", "A dull stupid fatuous person."], "stud earring": ["A piece of jewelry consisting of a small ornament mounted on a metal post that is passed through the pierced earlobe."], "superorder": ["A taxonomic rank used in the classification of organisms, immediately higher than order."], "evil": ["Intending to harm.", "That which is evil."], "information security": ["The protection of information and information systems from unauthorized access, use, disclosure, disruption, modification or destruction."], "access control list": ["A list of permissions attached to an object which specifies who or what is allowed to access the object and what operations are allowed to be performed on the object.", "A method of keeping in check the Internet traffic that attempts to flow through a given hub, router, firewall, or similar device."], "audit trail": ["A chronological sequence of audit records, each of which contains evidence directly pertaining to and resulting from the execution of a business process or system function. (source: Wikipedia)"], "audit log": ["A chronological sequence of audit records, each of which contains evidence directly pertaining to and resulting from the execution of a business process or system function. (source: Wikipedia)"], "automated theorem proving": ["The proving of mathematical theorems by a computer program."], "automated deduction": ["The proving of mathematical theorems by a computer program."], "buffer overflow": ["An anomaly where a process stores data in a buffer outside the memory the programmer set aside for it."], "integer overflow": ["A condition that occurs when an arithmetic operation attempts to create a numeric value that is larger than can be represented within the available storage space."], "file hosting service": ["An Internet hosting service specifically designed to host static content, typically large files that are not web pages. (source: Wikipedia)"], "analytical engine": ["A mechanical general-purpose computer designed by the British mathematician Charles Babbage in the 19th century."], "approximation algorithm": ["An algorithm used to find approximate solutions to optimization problems."], "assembly code": ["A family of low-level languages for programming computers. They implement a symbolic representation of the numeric machine codes and other constants needed to program a particular CPU architecture. (source: Wikipedia)"], "assembly language": ["A family of low-level languages for programming computers. They implement a symbolic representation of the numeric machine codes and other constants needed to program a particular CPU architecture. (source: Wikipedia)"], "asymptotically optimal algorithm": ["An algorithm that for large inputs performs at worst a constant factor (independent of the input size) worse than the best possible algorithm. (source: Wikipedia)."], "backtracking": ["A general algorithm for finding all (or some) solutions to some computational problem, that incrementally builds candidates to the solutions, and abandons each partial candidate c (\"backtracks\") as soon as it determines that c cannot possibly be completed to a valid solution. (source: Wikipedia)"], "big O notation": ["A notation that describes the limiting behavior of a function when the argument tends towards a particular value or infinity, usually in terms of simpler functions."], "asymptotic notation": ["A notation that describes the limiting behavior of a function when the argument tends towards a particular value or infinity, usually in terms of simpler functions."], "data structure": ["A particular way of storing and organizing data in a computer so that it can be used efficiently. (source: Wikipedia)"], "distributed algorithm": ["An algorithm designed to run on computer hardware constructed from interconnected processors."], "flowchart": ["A common type of chart, that represents an algorithm or process, showing the steps as boxes of various kinds, and their order by connecting these with arrows."], "formal system": ["A formal language together with a deductive system which consists of a set of inference rules and/or axioms."], "greedy algorithm": ["An algorithm that follows the problem solving metaheuristic of making the locally optimal choice at each stage with the hope of finding the global optimum."], "metaheuristic": ["A heuristic method for solving a very general class of computational problems by combining user-given black-box procedures \u2014 usually heuristics themselves \u2014 in the hope of obtaining a more efficient or more robust procedure. (source: Wikipedia)"], "heuristics": ["A strategy using readily accessible, though loosely applicable, information to control problem solving in human beings and machines."], "memoization": ["An optimization technique used primarily to speed up computer programs by having function calls avoid repeating the calculation of results for previously-processed inputs. (source: Wikipedia)"], "twitch": ["To make a sudden uncontrolled movement.", "Involuntary, spasmodic movement of a muscle."], "hang": ["To listen or give attention to.", "To be or remain suspended.", "To kill by hanging.", "To cause to be hanging or suspended."], "parallel algorithm": ["An algorithm which can be executed a piece at a time on many different processing devices, and then put back together again at the end to get the correct result."], "simulated annealing": ["A generic probabilistic metaheuristic for the global optimization problem of applied mathematics, namely locating a good approximation to the global minimum of a given function in a large search space. (source: Wikipedia)"], "parsing": ["The process of analyzing a text, made of a sequence of tokens (for example, words), to determine its grammatical structure with respect to a given (more or less) formal grammar."], "syntactic analysis": ["The process of analyzing a text, made of a sequence of tokens (for example, words), to determine its grammatical structure with respect to a given (more or less) formal grammar."], "catharsis": ["Purging of the digestive system.", "The release of ideas, thoughts, and repressed material from the unconscious, accompanied by an emotional response and relief."], "graph theory": ["The study of graphs: mathematical structures used to model pairwise relations between objects from a certain collection."], "halting problem": ["A decision problem which can be stated as follows: given a description of a program and a finite input, decide whether the program finishes running or will run forever, given that input."], "Vandal": ["A member of the East Germanic tribe that entered the late Roman Empire during the 5th century."], "pile up": ["To get or gather together.", "To put together several things in one pile; to arrange in stacks."], "pile": ["A great number or large amount of things not placed in a pile.", "To put together several things in one pile; to arrange in stacks.", "To press tightly together or cram."], "offshore outsourcing": ["The practice of hiring an external organization to perform some business functions in a country other than the one where the products or services are actually developed or manufactured. (source: Wikipedia)"], "offshoring": ["The relocation by a company of a business process from one country to another."], "virtual machine": ["A software implementation of a machine (computer) that executes programs like a real machine."], "extensibility": ["A system design principle where the implementation takes into consideration future growth.", "The capability of being extended."], "flop": ["To lose one's balance and hit the ground."], "flop down": ["To lose one's balance and hit the ground."], "heave": ["To cause an object to have a higher location than previously."], "precentor": ["Person who directs the choir in a cathedral or a monastery."], "conch": ["Large concave marine shell, of the bivalves species."], "grow lonely": ["To become increasingly lonely."], "misogynous": ["Hating women in particular."], "misanthropist": ["Someone who dislikes people in general."], "latchkey kid": ["A child that returns to an empty home because the parents are at work and therefore has a key to open the door."], "latchkey child": ["A child that returns to an empty home because the parents are at work and therefore has a key to open the door."], "gender-neutral marriage": ["Marriage between two persons of the same biological gender."], "logistics": ["The management of the flow of goods, information and other resources, including energy and people, between the point of origin and the point of consumption in order to meet the requirements of consumers. (source: Wikipedia)"], "intersexual": ["Person with sex characteristics that are neither clearly male nor female."], "cathartic": ["A substance which accelerates defecation."], "depressing": ["Making despondent or depressive."], "dismal": ["Making despondent or depressive."], "possess": ["To have rightful possession of property, goods or capital.", "To be in possession (of an object)."], "disfavor": ["The state of being out of favor."], "hesitancy": ["A certain degree of unwillingness."], "indisposition": ["A certain degree of unwillingness."], "artificial life": ["A field of study and an associated art form which examine systems related to life, its processes, and its evolution through simulations using computer models, robotics, and biochemistry."], "biostatistics": ["The application of statistics to a wide range of topics in biology."], "competitive exclusion principle": ["A proposition which states that two species competing for the same resources cannot stably coexist if other ecological factors are constant."], "macroevolution": ["A scale of analysis of evolution in separated gene pools."], "microevolution": ["The occurrence of small-scale changes in allele frequencies in a population, over a few generations, also known as change below the species level."], "myxobacteria": ["A group of bacteria that predominantly live in the soil and produce a number of biomedically and industrially useful chemicals, such as antibiotics."], "sexual selection": ["The theory proposed by Charles Darwin that states that certain evolutionary traits can be explained by intraspecific competition."], "last universal ancestor": ["The most recent organism from which all organisms now living on Earth descend."], "experimental evolution": ["The field of evolutionary biology concerned with testing hypotheses and theories of evolution by use of controlled experiments."], "pulmonary embolism": ["A blockage of the pulmonary artery or one of its branches, usually occurring when a deep vein blood clot from a vein becomes dislodged from its site of formation and travels, or embolizes, to the arterial blood supply of one of the lungs."], "endosymbiont": ["Any organism that lives within the body or cells of another organism, i.e. forming an endosymbiosis."], "endosymbiosis": ["Mutually beneficial cooperation between two living organisms, thus a form of symbiosis, where one is contained by the other"], "symbiogenesis": ["The merging of two separate organisms to form a single new organism."], "natural selection": ["The process by which heritable traits that make it more likely for an organism to survive and successfully reproduce become more common in a population over successive generations."], "vertebra": ["Any of the small bones which make up the backbone."], "sickle cell anemia": ["A life-long blood disorder characterized by red blood cells that assume an abnormal, rigid, sickle shape."], "sickle-cell disease": ["A life-long blood disorder characterized by red blood cells that assume an abnormal, rigid, sickle shape."], "drepanocytosis": ["A life-long blood disorder characterized by red blood cells that assume an abnormal, rigid, sickle shape."], "sexual dimorphism": ["The systematic difference in form between individuals of different sex in the same species."], "polydactyly": ["A congenital physical anomaly in humans having supernumerary fingers or toes."], "pesticide resistance": ["The adaptation of pest species targeted by a pesticide resulting in decreased susceptibility to that chemical."], "as soft as butter": ["As soft as butter; very soft."], "station book stall": ["A bookstore at a station with an assortment that specializes on travellers."], "station bookstall": ["A bookstore at a station with an assortment that specializes on travellers."], "inform": ["To inform (somebody) of something."], "evocative": ["That evokes, brings to mind, a memory, mood or image."], "evoke": ["To call up or produce memories, feelings, etc.", "To summon into action or bring into existence.", "To call to mind."], "exacerbate": ["To embitter the feelings of a person.", "To irritate or provoke to a high degree.", "To make worse."], "exacting": ["Requiring close application or attention."], "homeobox": ["A DNA sequence found within genes that are involved in the regulation of patterns of development (morphogenesis) in animals, fungi and plants."], "preadaptation": ["A situation where an organism uses a preexisting anatomical structure inherited from an ancestor for a potentially unrelated purpose."], "exagerrated": ["That has been described as greater than it actually is."], "exaggeration": ["An extreme exaggeration or overstatement; especially as a literary or rhetorical device.", "The act of exaggerating or overstating."], "Gantt chart": ["A type of bar chart that illustrates a project schedule."], "exalt": ["To confer dignity or honor.", "To praise, glorify, or honor (e.g. a virtue)."], "vendetta": ["Violent argument between two families or clans, lasting many years."], "blood feud": ["Violent argument between two families or clans, lasting many years."], "understaffed": ["Not having enough people or employees to accomplish its mission."], "under-staffed": ["Not having enough people or employees to accomplish its mission."], "undermanned": ["Not having enough people or employees to accomplish its mission."], "merciless": ["Showing no mercy."], "mercilessly": ["In a merciless manner."], "mercilessness": ["The property of being merciless."], "exasperate": ["To irritate or provoke to a high degree.", "To make worse.", "To make furious."], "exasperating": ["That exasperates, infuriates, annoys or irritates."], "excavate": ["To make a hole in something.", "To make a hole, tunnel, etc. by removing material.", "To uncover or open up a structure etc. remaining from earlier times by digging."], "exceedingly": ["To an unusual degree."], "exceptionable": ["Liable to exception or objection."], "objectionable": ["Liable to exception or objection."], "diamond ring": ["A finger ring with one or more diamonds."], "superfamily": ["A taxonomic rank used in the classification of organisms, immediately higher than family."], "speleologist": ["A person who practices speology or the exploration of caves."], "timpano": ["A brass percussion instrument with a defined pitch."], "deathly boring": ["Very boring."], "dead boring": ["Very boring."], "deadly boring": ["Very boring."], "excerpt": ["A passage or segment taken from a longer work, such as a literary or musical composition, a document, or a film."], "excessive": ["characterized by excess."], "exchangeable": ["Capable of being exchanged."], "terse": ["Abruptly or brusquely short."], "linseed": ["The seed of flax, especially when used as the source of linseed oil.", "A plant with blue flowers which is cultivated for its edible seeds and for its fibers that are used to make cloth."], "flaxseed": ["The seed of flax, especially when used as the source of linseed oil."], "excite": ["To arouse or stir up emotions or feelings.", "To act as a stimulant.", "To stimulate feelings."], "exciting": ["Creating or producing excitement.", "(For a music, song, etc.) Having a stimulating effect, such as giving the desire to dance."], "exclaim": ["To make known by stating or announcing.", "To call out or declare loudly.", "To utter aloud; often with surprise, horror, or joy."], "exclamation": ["A loud calling or crying out.", "A mark or sign by which outcry or emphatic utterance is marked."], "exclamation point": ["A mark or sign by which outcry or emphatic utterance is marked."], "exclamation mark": ["A mark or sign by which outcry or emphatic utterance is marked."], "exclusion zone": ["An area where entry is forbidden."], "excommunicate": ["To cut off from communion with a church or exclude from the sacraments of a church by ecclesiastical sentence."], "excommunication": ["The ecclesiastical sentence by which a person is excommunicated."], "excrement": ["Substance that human and animal bodies release from time to time as a little pile of waste remaining from digestion, after it has been collected in the colon.", "To shit little lumps of feces."], "excrescence": ["An abnormal outgrowth, usually harmless, on an animal or vegetable body."], "excreta": ["Waste matter, such as sweat, urine, or feces, discharged from the body."], "Gurkha": ["People from Nepal and northern India who take their name from the eighth century Hindu warrior-saint Guru Gorakhnath."], "excrete": ["To separate and eliminate from an organic body."], "execrate": ["To detest on a high degree; to hate completely.", "To detest utterly."], "exemplar": ["A typical example or instance."], "exemplary": ["Good to serve as an example to others.", "Of or pertaining to an admonition."], "exemplification": ["Something that exemplifies."], "exemption": ["The state of being exempt."], "exert": ["To put in vigorous action.", "To put to use (e.g. power or influence)."], "exhaust": ["To use up resources or materials.", "System consisting of the parts of an engine through which burned gases or steam are discharged."], "threatening": ["Which threatens or menaces."], "menacing": ["Which threatens or menaces."], "threateningly": ["In a threatening or menacing manner."], "menacingly": ["In a threatening or menacing manner."], "exhaustion": ["A state of physical and/or mental weakness and a lack of vigor.", "Supreme tiredness."], "wet-nurse": ["Woman hired to breastfeed the child of another woman."], "wet nurse": ["Woman hired to breastfeed the child of another woman."], "nana": ["The mother of one of someone's parents.", "A woman who watches over someone else's kids usually as a full-time job."], "be silent": ["To stop speaking or making noise.", "Not say anything."], "keep silent": ["To stop speaking or making noise."], "hold one's tongue": ["To stop speaking or making noise."], "remain silent": ["To stop speaking or making noise."], "keep quiet": ["To stop speaking or making noise."], "decline": ["To not want to do what is being asked.", "The act of abating or the state of being abated."], "nourish": ["To give food."], "nurture": ["To give food."], "caretaker": ["Person who is legally in charge of a child or another person."], "custodian": ["Person who is legally in charge of a child or another person."], "laconic": ["Abruptly or brusquely short."], "exculpate": ["To clear from a charge of guilt or fault."], "exhibitionism": ["A disorder characterized esp. by a compulsion to exhibit the genitals in public."], "exhibitor": ["Someone who exhibits something."], "exhilarate": ["To make sprightly or cheerful."], "exhilarating": ["Creating or producing excitement."], "exhort": ["To advise earnestly.", "To force or impel in a given direction.", "To spur on or encourage especially by cheers and shouts."], "exhortation": ["The act of inciting to laudable deeds."], "eagerly": ["In an eager manner."], "knave": ["A tricky, deceitful fellow; a dishonest person.", "A playing card marked with the figure of a servant or soldier."], "rogue": ["A tricky, deceitful fellow; a dishonest person."], "jack": ["A male rabbit.", "A playing card marked with the figure of a servant or soldier.", "A mechanical device used to lift heavy loads."], "sore": ["An injured, infected, inflamed or diseased patch of skin.", "Irritated and roused to anger."], "drub": ["To criticize harshly."], "snub": ["A deliberate affront or slight."], "post mortem": ["Inspection and dissection of a body after death, as for determination of the cause of death.", "Any investigation after something considered unsuccessful, especially used of meetings and bridge games.", "Occurring after death."], "exhoration": ["Language intended to incite and encourage."], "exhume": ["To remove from a grave."], "disinter": ["To remove from a grave."], "exigency": ["An urgent situation."], "exigent": ["Needing immediate action.", "Requiring much effort or expense."], "existance": ["The state of being, existing, or occurring."], "existent": ["Real and not potential.", "Having existence."], "existing": ["Having existence."], "existential": ["Of, or relating to existence."], "existentialism": ["A movement in twentieth-century literature and philosophy. Existentialism stresses that people are entirely free and therefore responsible for what they make of themselves."], "Chikomuselteko": ["An extinct Mayan language formerly spoken in the region defined by the municipios of Chicomuselo, Mazapa de Madero, and Amatenango de la Frontera in Chiapas, Mexico, as well as some nearby areas of Guatemala."], "Chicomucelteco": ["An extinct Mayan language formerly spoken in the region defined by the municipios of Chicomuselo, Mazapa de Madero, and Amatenango de la Frontera in Chiapas, Mexico, as well as some nearby areas of Guatemala."], "Ch'ol": ["Mayan language spoken by the Ch'ol people in the Mexican state of Chiapas."], "Sipakapense": ["A Mayan language, spoken natively within indigenous Sipakapense communities, primarily based in the Guatemalan municipality of Sipacapa, department of San Marcos."], "Vilamovian": ["A West Germanic language spoken in the small town of Wilamowice, Poland."], "Wilamowicean": ["A West Germanic language spoken in the small town of Wilamowice, Poland."], "exodus": ["A sudden departure of a large number of people."], "exoneration": ["The act of disburdening, discharging, or freeing morally from a charge or imputation."], "exorbitance": ["The state of being exorbitant."], "exorbitant": ["Exceeding proper limits."], "exorcism": ["The ritual act of driving out supposed evil spirits from persons, places or things who are possessed by them."], "exorcist": ["A person, especially a priest, who practices exorcism."], "earnestly": ["In an earnest manner."], "each time": ["Every time that."], "tall story": ["A retelling or account of events, especially a fictional or exaggerated one."], "cabal": ["A clever scheme or artful plot, usually crafted for evil purposes.", "A usually secret exclusive organization of individuals gathered for a nefarious purpose."], "earthly": ["Like or resembling the earth or of the earth."], "ecliptic": ["(Astronomy) The apparent path that the Sun traces out in the sky during the year."], "Egyptologist": ["A person who is skilled or practices Egyptology."], "ebullioscope": ["(Physics) An instrument for observing the boiling point of liquids, especially for determining the alcoholic strength of a mixture by the temperature at which it boils."], "Epicureanism": ["A system of philosophy based upon the teachings of Epicurus (c. 341\u2013c. 270 BCE)."], "good faith": ["Good, honest intentions, even if producing unfortunate results."], "expansive": ["Able to be expanded."], "eastern": ["Of, facing, situated in, or related to the east."], "expectancy": ["The state of expecting something."], "expectant": ["Marked by expectation."], "expectorant": ["An agent that promotes the discharge or expulsion of mucus from the respiratory tract."], "seriously": ["In an earnest manner."], "in earnest": ["In an earnest manner."], "faction": ["A usually secret exclusive organization of individuals gathered for a nefarious purpose."], "junto": ["A usually secret exclusive organization of individuals gathered for a nefarious purpose."], "camarilla": ["A usually secret exclusive organization of individuals gathered for a nefarious purpose."], "Lakshadweep": ["A group of islands 200 to 300 km off of the coast of Kerala in the Laccadive Sea."], "D\u00e1il \u00c9ireann": ["The principal chamber of the Oireachtas (Irish parliament)."], "expectorate": ["To cough up fluid from the lungs."], "expediency": ["Suitability for particular circumstance or situation."], "eggcup": ["A small cup used for serving boiled eggs within their shell."], "egg-cup": ["A small cup used for serving boiled eggs within their shell."], "to the": ["The contraction of preposition \"a\" with the article \"el\"."], "hubris": ["Excessive pride, presumption or arrogance originally toward the gods."], "exasperation": ["The act of exasperating or the state of being exasperated."], "worsen": ["To make worse.", "To grow worse."], "aggravate": ["To irritate or provoke to a high degree.", "To make worse."], "eternally": ["For all time, for all eternity; for an infinite amount of time."], "everlastingly": ["For all time, for all eternity; for an infinite amount of time."], "evermore": ["For all time, for all eternity; for an infinite amount of time."], "shudder": ["To shake nervously, as if from fear."], "shiver": ["To shake nervously, as if from fear."], "throb": ["To shake nervously, as if from fear."], "thrill": ["To shake nervously, as if from fear."], "smash": ["A song that is very popular for a while.", "To hit extremely hard.", "A hard return hitting a ball above your head.", "To hit (a ball) in a powerful overhead stroke.", "To hit violently."], "boom": ["To hit extremely hard."], "blast": ["Intense adverse criticism.", "To hit extremely hard."], "spirit": ["The undying essence of a human."], "atrociously": ["In an atrocious manner."], "terribly": ["In an atrocious manner.", "Of a dreadful kind."], "awfully": ["In an atrocious manner.", "Of a dreadful kind."], "abominably": ["In an atrocious manner."], "abysmally": ["In an atrocious manner."], "rottenly": ["In an atrocious manner."], "violently": ["In a violent manner."], "dreadfully": ["Of a dreadful kind."], "horribly": ["Of a dreadful kind."], "abundantly": ["In an abundant manner."], "copiously": ["In an abundant manner."], "extravagantly": ["In an abundant manner.", "In a wasteful manner.", "In a rich and lavish manner."], "conscientiously": ["In a conscientious manner."], "scrupulously": ["In a conscientious manner."], "religiously": ["In a conscientious manner."], "sincerely": ["In a sincere or earnest manner."], "unfeignedly": ["In a sincere or earnest manner."], "truly": ["In a sincere or earnest manner."], "irremediably": ["In a manner, or to a degree, that precludes remedy, cure, or correction."], "irremediable": ["Unable to be remedied, cured, corrected or repaired.", "(Of a disease) Impossible to cure."], "remediable": ["Capable of being remedied."], "remediate": ["To correct or amend something; set straight or right."], "strangely": ["In a strange or coincidental manner."], "mentally": ["With the mind."], "invariability": ["The quality of being invariable."], "invariably": ["Without variation."], "instinctively": ["Innately, by instinct, without being taught."], "undoubtably": ["In a manner that leaves no possibility of doubt."], "unquestionably": ["In a manner that leaves no possibility of doubt."], "doubtlessly": ["In a manner that leaves no possibility of doubt."], "indubitably": ["In a manner that leaves no possibility of doubt."], "evidently": ["With evidence."], "incredibly": ["In an incredible manner.", "In a wonderful manner."], "intensely": ["In an intense manner."], "faithfully": ["In a faithful manner."], "dependably": ["In a faithful manner."], "reliably": ["In a faithful manner."], "voluntarily": ["In a voluntary manner."], "visibly": ["in a visible manner."], "vertiginously": ["In a vertiginous manner."], "sadly": ["In an unfortunate manner.", "With sadness."], "quietly": ["In a quiet manner."], "take time": ["To spend time to do something."], "react": ["To act or perform a second time."], "shrink": ["To decrease in size, range, or extent."], "shrivel": ["To decrease in size, range, or extent."], "whisper": ["To speak in a quiet voice, without vibration of the vocal cords."], "startle": ["To excite by sudden alarm, surprise, or apprehension."], "resume": ["To start (something) again that has been stopped or paused from the point at which it was stopped or paused; to begin anew.", "To assume anew (a job, an activity, etc.)."], "opportunism": ["Taking advantage of opportunities without regard for the consequences for others."], "icy": ["Covered with or containing or consisting of ice."], "misfortune": ["An undesirable event such as an accident."], "bad luck": ["An undesirable event such as an accident."], "sensation": ["A physical feeling or perception from something that comes into contact with the body."], "feeling": ["The experiencing of affective and emotional states.", "A vague idea in which some confidence is placed."], "on top": ["In a higher position, with respect to a lower one."], "quartz": ["The second most abundant mineral in the Earth's continental crust (after feldspar). It is made up of a continuous framework of SiO4 silicon-oxygen tetrahedra, with each oxygen being shared between two tetrahedra, giving an overall formula SiO2. (source: Wikipedia)"], "prism": ["Optical device having a triangular shape and made of glass or quartz."], "optical prism": ["Optical device having a triangular shape and made of glass or quartz."], "opal": ["A mineraloid gel which is deposited at a relatively low temperature and may occur in the fissures of almost any kind of rock, being most commonly found with limonite, sandstone, rhyolite, marl and basalt. (source: Wikipedia)"], "motif": ["A recurring or dominant element."], "impossible": ["Not possible, not able to be done."], "bonfire": ["A large, controlled outdoor fire."], "missing": ["Not able to be found."], "ametrine": ["A naturally occurring variety of quartz. It is a mixture of amethyst and citrine with zones of purple and yellow or orange."], "ammolite": ["A rare and valuable opal-like organic gemstone found primarily along the eastern slopes of the Rocky Mountains of the United States and Canada."], "reproductive": ["Producing new life or offspring."], "parental": ["Of, or related to a parent."], "plumage": ["A branching, hair-like structure that grows on the skin of birds and protects them against coldness and water and allows their wings to create lift.", "The light horny waterproof structure forming the external covering of birds."], "plume": ["A branching, hair-like structure that grows on the skin of birds and protects them against coldness and water and allows their wings to create lift.", "The light horny waterproof structure forming the external covering of birds."], "immune": ["Exempt; not subject to."], "correlated": ["Mutually related."], "correlative": ["Mutually related."], "trade-off": ["Any situation in which one thing must be decreased for another to be increased."], "tradeoff": ["Any situation in which one thing must be decreased for another to be increased."], "thermal": ["Pertaining to heat or temperature.", "Providing efficient insulation so as to keep the body warm."], "tactic": ["A manoeuvre, or action calculated to achieve some end."], "tactical": ["Of, or relating to tactics."], "switch": ["To give something in return for something received.", "A device to turn electric current on and off or direct its flow.", "To change (something) to the specified state using a switch."], "switch off": ["To interrupt the operation of a machine by disconnecting it from its source of power."], "sexually": ["In a sexual manner.", "In an erotic manner."], "erotically": ["In an erotic manner."], "selective": ["Of or pertaining to the process of selection."], "reciprocity": ["The mutual exchange of commercial or other privileges.", "A relation of mutual dependence or action or influence."], "predict": ["To state, or make something known in advance, especially using inference or special knowledge.", "To make a prediction or prophecy."], "foretell": ["To state, or make something known in advance, especially using inference or special knowledge.", "To make a prediction or prophecy."], "prognosticate": ["To state, or make something known in advance, especially using inference or special knowledge."], "forebode": ["To state, or make something known in advance, especially using inference or special knowledge."], "physiological": ["Of, or relating to physiology."], "mitochondrial": ["Of, or relating to mitochondria."], "mediate": ["To resolve differences, or to bring about a settlement, between conflicting parties."], "maternally": ["In a maternal manner."], "intraspecific": ["Occuring among members of the same species."], "interspecific": ["Occuring among members of different species."], "inclusive": ["Including (almost) everything within its scope."], "heterogeneity": ["The quality of being diverse and not comparable in kind."], "heritable": ["Capable of being inherited."], "genetically": ["In a manner relating to genes or genetics."], "extrinsic": ["External, separable from the thing itself, inessential."], "dimorphism": ["The occurrence in an species of two distinct types of individual.", "A property of certain substances that enables them to exist in two distinct crystalline forms."], "behavioural": ["Of or pertaining to behaviour."], "rental": ["Of or relating to rent.", "Transfer to another person, by the owner, of the use of something, for a certain time, at a certain price.", "Something that is rented.", "The payment made to rent something."], "postindustrial": ["Of or relating to a society or economy marked by a lessened importance of manufacturing and an increase of services, information, and research."], "post-industrial": ["Of or relating to a society or economy marked by a lessened importance of manufacturing and an increase of services, information, and research."], "wage": ["An amount of money paid to a worker that depends on the number of hours of work."], "tenure": ["The right to hold property."], "substantial": ["Belonging to substance."], "socioeconomic": ["Involving social as well as economic factors."], "socio-economic": ["Involving social as well as economic factors."], "racial": ["Of or pertaining to a race."], "occupational": ["Of, relating to, or caused by an occupation."], "mobility": ["The condition of being mobile."], "mobilise": ["To make something mobile."], "mobilisation": ["The act of mobilising."], "manufacturing": ["The action of the verb to manufacture."], "inner-city": ["In the United States, United Kingdom and Ireland: Part of a city at or near the centre, especially a slum area where poor people live in bad housing."], "innercity": ["In the United States, United Kingdom and Ireland: Part of a city at or near the centre, especially a slum area where poor people live in bad housing."], "decision-making": ["Having the ability to make decisions."], "groove": ["A settled and monotonous routine that is hard to escape."], "old-hat": ["Repeated too often; overfamiliar through overuse."], "shopworn": ["Repeated too often; overfamiliar through overuse."], "threadbare": ["Repeated too often; overfamiliar through overuse.", "Of fabric or clothing: Used so much that the warp threads show."], "timeworn": ["Repeated too often; overfamiliar through overuse."], "well-worn": ["Repeated too often; overfamiliar through overuse."], "trito": ["Repeated too often; overfamiliar through overuse."], "glum": ["Moody and melancholic."], "tagine": ["Traditional cooking pot of North African cuisine which is made of clay and has a cone-shaped lid which allows condensated water to flow back down.", "Traditional dish of North African cuisine which is named after the cooking pot of the same name."], "tajine": ["Traditional cooking pot of North African cuisine which is made of clay and has a cone-shaped lid which allows condensated water to flow back down.", "Traditional dish of North African cuisine which is named after the cooking pot of the same name."], "agelaste": ["Person who does not laugh, who does not understand humor."], "dour": ["Moody and melancholic."], "glowering": ["Moody and melancholic."], "moody": ["Moody and melancholic.", "Subject to sharply varying moods."], "morose": ["Moody and melancholic."], "saturnine": ["Moody and melancholic."], "sullen": ["Moody and melancholic."], "architectural engineering": ["The application of engineering principles and technology to building design and construction."], "expeditious": ["Characterized by speed; acting or moving quickly."], "speedy": ["Characterized by speed; acting or moving quickly."], "swift": ["Characterized by speed; acting or moving quickly."], "expend": ["To pay out or expend money.", "To consume fully."], "expense account": ["An account of business expenditures, as travel, hotel room, meals, and entertainment connected with work, for which an employee will be reimbursed by an employer."], "ecologically": ["In an ecological manner."], "eastward": ["Situated or directed towards the east."], "eastwards": ["Situated or directed towards the east."], "exothermic": ["(chemistry) Of a chemical reaction that releases energy in the form of heat."], "turbidness": ["Cloudy or hazy appearance in a naturally clear liquid caused by a suspension of colloidal liquid droplets or fine solids."], "carefully": ["In a careful manner ; with care."], "harmful": ["Causing damage or harm."], "prejudicial": ["Causing damage or harm.", "Exhibiting prejudice or bias."], "snarl-up": ["A number of vehicles so obstructed that they can scarcely move."], "traffic congestion": ["A number of vehicles so obstructed that they can scarcely move."], "stopper": ["Conical or cylindrical-shaped plug that is pushed in the bottleneck of a (wine) bottle to stop it up."], "bottle stopper": ["Conical or cylindrical-shaped plug that is pushed in the bottleneck of a (wine) bottle to stop it up."], "vanquish": ["To end in success a struggle or contest."], "dietary": ["Of or relating to the diet."], "intervention": ["The act of intervening."], "supplemental": ["That is being added as integratory part.", "Functioning in a supporting capacity."], "proliferation": ["A rapid increase in number."], "oxidative": ["Taking place in the presence of oxygen."], "nutritional": ["Of or relating to or providing nutrition."], "mucosal": ["Of or relating to mucous membranes."], "mucose": ["Of or secreting or covered with or resembling mucus."], "mucous": ["Of or secreting or covered with or resembling mucus."], "micronutrient": ["A substance needed only in small amounts for normal body function."], "long-term": ["Relating to or extending over a relatively long time."], "long-run": ["Relating to or extending over a relatively long time."], "insecurity": ["The anxiety you experience when you feel vulnerable and insecure.", "The state of being subject to danger or injury."], "inflammatory": ["Causing or caused by inflammation.", "Arousing to action or rebellion."], "breast-feeding": ["The feeding of an infant or young child with breast milk directly from human breasts rather than from a baby bottle or other container."], "nursing": ["The feeding of an infant or young child with breast milk directly from human breasts rather than from a baby bottle or other container."], "breast feeding": ["The feeding of an infant or young child with breast milk directly from human breasts rather than from a baby bottle or other container."], "breastfeeding": ["The feeding of an infant or young child with breast milk directly from human breasts rather than from a baby bottle or other container."], "antiinflammatory": ["Counteracting inflammation.", "A medicine intended to reduce inflammation."], "anti-inflammatory drug": ["A medicine intended to reduce inflammation."], "unclear": ["Liable to more than one interpretation.", "Expressed in an unclear fashion."], "systolic": ["Of or relating to a systole or happening during a systole."], "synthase": ["An enzyme which catalyzes a synthesis process."], "subsequent": ["Following in time or order."], "stimulation": ["The act of arousing an organism to action."], "responsible": ["Being the agent or cause."], "randomly": ["In a random manner."], "indiscriminately": ["In a random manner."], "haphazardly": ["In a random manner."], "willy-nilly": ["In a random manner."], "arbitrarily": ["In a random manner."], "at random": ["In a random manner."], "every which way": ["In a random manner."], "pulmonary": ["Relating to or affecting the lungs."], "pneumonic": ["Relating to or affecting the lungs."], "pulmonic": ["Relating to or affecting the lungs."], "protective": ["Intended or wishing to protect."], "positively": ["In a positive manner."], "turbulence": ["Disturbance in a gas or fluid, characterized by evidence of internal motion or unrest."], "peripheral": ["On the periphery or boundary.", "A device attached to a host computer but not part of it, and is more or less dependent on the host."], "orally": ["By mouth.", "By spoken rather than written means."], "oat": ["A species of grass (Avena sativa) grown for its seed."], "neuronal": ["Of, or relating to a neuron."], "negatively": ["In a negative manner."], "neuronic": ["Of, or relating to a neuron."], "logistic": ["Relating to logistics."], "lipoprotein": ["A biochemical assembly that contains both proteins and lipids."], "largely": ["In a widespread or large manner."], "inversely": ["By inversion."], "reciprocally": ["By inversion."], "enzymatic": ["of, relating to, or caused by enzymes."], "efficacy": ["The ability to produce a desired amount of a desired effect."], "efficaciousness": ["The ability to produce a desired amount of a desired effect."], "subjugate": ["To put somebody under one's authority."], "thermodynamic temperature": ["The temperature measured with regard to the absolute zero."], "uproar": ["The noise as made by a crowd."], "isobaric": ["(Of a thermodynamic process) Having a constant pressure throughout."], "feverish": ["Very active and nervous.", "Having a fever."], "Japanese horseradish": ["A member of the Brassicaceae family, which originally grew in Japan and the island of Sakhalin and whose root is used as a hot spice."], "differential": ["Of, or relating to a difference."], "diabetic": ["Of or pertaining to diabetes, especially diabetes mellitus.", "A person who has diabetes.", "Having diabetes.", "A woman who has diabetes."], "circumference": ["The line that bounds a circle."], "bacterial": ["Of, relating to, or caused by bacteria."], "transgenic": ["Of, or pertaining to an organism whose genome has been changed by the addition of a gene from another species; genetically modified."], "susceptibility": ["The condition of being susceptible."], "unstable": ["Lacking physical stability."], "instable": ["Lacking physical stability."], "unstably": ["In an unstable manner."], "instably": ["In an unstable manner."], "scrawl": ["An irregular and illegible handwriting.", "To write with an irregular and illegible handwriting."], "stimulate": ["To arouse or stir up emotions or feelings.", "To encourage into action; to cause to act in a specified manner.", "To act as a stimulant."], "generation gap": ["A disconnect between members of one generation and members of the next based on the later generation developing habits, attitudes, and preferences inconsistent with the experience of the former."], "expiate": ["To atone for."], "expiation": ["An act of atonement for a sin or wrongdoing."], "scholarly": ["Of, or related to scholars or scholarship."], "institutional": ["Organized as or forming an institution."], "intellectual": ["Belonging to, or performed by, the intellect."], "increasingly": ["Increasing in amount or intensity."], "charismatic": ["Of, related to, or having charisma."], "undergraduate": ["A student at a university who has not yet received a degree."], "sustainability": ["The ability to sustain something."], "submission": ["The act of submitting.", "The thing which has been submitted."], "routinely": ["In a way that has become common or expected."], "reader": ["A person who reads a publication."], "pottery": ["Fired ceramic wares that contain clay when formed.", "Pottery of baked or hardened clay."], "narrative": ["Telling a story."], "literary": ["Relating to literature."], "innovative": ["Characterized by the creation of new ideas or things.", "Ahead of the times."], "fundamentally": ["In a fundamental, essential or basic manner.", "To the very core of the matter."], "end user": ["The final consumer of a product."], "end-user": ["The final consumer of a product."], "e-book": ["Electronic book, a book published in electronic form."], "Washington, D.C.": ["The capital of the United States of America, located in the District of Columbia."], "Tirane": ["The capital and largest city of Albania."], "aby": ["To atone for."], "abye": ["To atone for."], "expiry": ["Expiration of breath.", "An expiration, especially of a contract or an agreement.", "The cessation of life and all associated processes."], "expiry date": ["The last date that a product, as food, should be used before it is considered spoiled or ineffective, usually specified on the label or package."], "expiration date": ["The last date that a product, as food, should be used before it is considered spoiled or ineffective, usually specified on the label or package."], "circumvent": ["To beset or surround with armed forces, for the purpose of compelling to surrender.", "To avoid an obstacle by going around it."], "embrass": ["To include completely; to describe fully or comprehensively."], "numerical": ["Of or pertaining to numbers."], "lattice": ["A flat panel constructed with widely-spaced crossed thin strips of wood or other material. It is commonly used as a garden trellis.", "A regular spacing or arrangement of geometric points, often decorated with a motif."], "numeric": ["Of or pertaining to numbers."], "vibrational": ["Of or pertaining to vibration."], "vibrating": ["Moving very rapidly to and from or up and down."], "vibratory": ["Moving very rapidly to and from or up and down."], "velocity": ["A scalar measure of the rate of movement of a body expressed either as the distance travelled divided by the time taken (average speed) or the rate of change of position with respect to time at a particular point (instantaneous speed). It is measured in metres per second, miles per hour, etc."], "strength": ["The quality of being strong.", "Muscular capacity to modify the speed of an external physical object, to deform it or to oppose another force."], "resonance": ["The condition of being resonant.", "A resonant sound.", "Something that evokes an association, or a strong emotion."], "regime": ["Mode of rule or management."], "explanatory": ["Intended to serve as an explanation."], "qubit": ["A quantum bit; the unit of quantum information."], "intensity": ["The magnitude of the physiological sensation produced by a sound, which varies directly with the physical intensity of sound but also depends on frequency of sound and waveform.", "The quality of being intense."], "explicable": ["Able to be explained.", "Able to be explained."], "walker": ["A person who walks."], "explicate": ["To inform about the reason for something, how something works, or how to do something.", "To make plain and comprehensible."], "Vega": ["The brightest star in the constellation Lyra, the fifth brightest star in the night sky and the second brightest star in the northern celestial hemisphere, after Arcturus."], "Veracruz": ["A major port city and municipality on the Gulf of Mexico in the Mexican state of Veracruz.", "One of the 31 states of Mexico, located east-central part of the country."], "zoological": ["Of, or relating to, animals.", "Of, or relating to, zoology."], "city planning": ["The study and theory of building and other physical needs in cities or predominantly urban cultures."], "town planning": ["The study and theory of building and other physical needs in cities or predominantly urban cultures."], "town-planning": ["The study and theory of building and other physical needs in cities or predominantly urban cultures."], "revolt": ["Collective violent action against an established power or arbitrary authority."], "uprising": ["Collective violent action against an established power or arbitrary authority."], "hydrographic": ["Of or relating to the science of hydrography."], "hydroelectric": ["Of or relating to or used in the production of electricity by waterpower."], "self-appraisal": ["Appraisal of one's own personal qualities or traits (source: UMLS)."], "self-mutilation": ["The act of injuring one's own body to the extent of cutting off or permanently destroying a limb or other essential part of a body (source: UMLS)."], "put on a big spread": ["To spend a lot of money to receive someone, particularly for a meal."], "school backpack": ["A bag for carrying school supplies and textbooks."], "pervasive": ["Manifested throughout."], "penetrating": ["Manifested throughout."], "pervading": ["Manifested throughout."], "permeating": ["Manifested throughout."], "exploratory": ["Pertaining to or concerned with exploration.", "Making a beginning but not being the real thing."], "postpartum period": ["The period beginning immediately after the birth of a child and extending for about six weeks in which the mother recovers from pregnancy and birth."], "puerperium": ["The period beginning immediately after the birth of a child and extending for about six weeks in which the mother recovers from pregnancy and birth."], "condensate": ["A liquid that is the product of condensation."], "childbed": ["The period beginning immediately after the birth of a child and extending for about six weeks in which the mother recovers from pregnancy and birth."], "woman in childbed": ["A woman who has recently given birth and recovers from pregnancy and childbirth."], "valence": ["A measure of the number of chemical bonds formed by the atoms of a given element (source: Wikipedia)."], "valency": ["A measure of the number of chemical bonds formed by the atoms of a given element (source: Wikipedia)."], "valency number": ["A measure of the number of chemical bonds formed by the atoms of a given element (source: Wikipedia)."], "lochia": ["Vaginal discharge after childbirth which contains blood, mucus and placental tissue and lasts for about 4-6 weeks."], "unconventional": ["Not adhering to convention or accepted standards."], "life-size": ["Being of the natural size of a person, object etc."], "life-sized": ["Being of the natural size of a person, object etc."], "larger-than-life": ["Being larger than the natural size of a person, object etc."], "larger than life": ["Being larger than the natural size of a person, object etc."], "less than life-size": ["Being smaller than the natural size of a person, object etc."], "thwartwise": ["Across something in a perpendicular or oblique way."], "transverse": ["Across something in a perpendicular or oblique way.", "In a crosswise direction."], "transversal": ["Across something in a perpendicular or oblique way."], "transversely": ["In a transverse manner."], "transversally": ["In a transverse manner."], "crossways": ["In a transverse manner."], "yaws": ["Tropical infection of the skin, bones and joints caused by the spirochete bacterium \"Treponema pallidum pertenue\"."], "thymosis": ["Tropical infection of the skin, bones and joints caused by the spirochete bacterium \"Treponema pallidum pertenue\"."], "polypapilloma tropicum": ["Tropical infection of the skin, bones and joints caused by the spirochete bacterium \"Treponema pallidum pertenue\"."], "pian": ["Tropical infection of the skin, bones and joints caused by the spirochete bacterium \"Treponema pallidum pertenue\"."], "parangi": ["Tropical infection of the skin, bones and joints caused by the spirochete bacterium \"Treponema pallidum pertenue\"."], "hoaxer": ["Someone who makes jokes or play on words in poor tastes."], "thickness": ["The property of being thick (in dimension)."], "stationary": ["Not capable of being moved.", "Not moving; standing still."], "Angouma": ["Tree in the family Burseraceae used mainly for the manufacture of plywood."], "Gaboon": ["Tree in the family Burseraceae used mainly for the manufacture of plywood."], "Okoum\u00e9": ["Tree in the family Burseraceae used mainly for the manufacture of plywood."], "decrepit": ["(Of a person) Very weakened or worn-down by age."], "worn-out": ["(For clothes) Whose colors have faded as a consequence of being worn intensively."], "age worn": ["(Of a person) Very weakened or worn-down by age."], "age-worn": ["(Of a person) Very weakened or worn-down by age."], "worn out": ["(For clothes) Whose colors have faded as a consequence of being worn intensively."], "ragged": ["(For clothes) Damaged, with holes, as a consequence of being worn intensively."], "resonant": ["Inducing resonance.", "Characterized by reverberation."], "tattered": ["(For clothes) Damaged, with holes, as a consequence of being worn intensively."], "resonating": ["Characterized by reverberation."], "reverberating": ["Characterized by reverberation."], "resounding": ["Characterized by reverberation."], "reverberative": ["Characterized by reverberation."], "rolling": ["Characterized by reverberation."], "realization": ["The act of realizing."], "pulsed": ["Produced or transmitted or modulated in short bursts or pulses."], "khedive": ["Hereditary title given since 1867 to the viceroy of Egypt."], "horse dealer": ["Person whose occupation is to buy or sell horses."], "horse trader": ["Person whose occupation is to buy or sell horses."], "trafficker": ["Person who takes part in a deal to make a profit more or less illegally."], "frauder": ["Person who takes part in a deal to make a profit more or less illegally."], "defrauder": ["Person who takes part in a deal to make a profit more or less illegally."], "fraudster": ["Person who takes part in a deal to make a profit more or less illegally."], "epigone": ["A person who follows the style of a personality, by admiration."], "pulsate": ["To produce or modulate.", "To expand and contract rhythmically (e.g. of the heart)."], "time-dependent": ["Determined by the value of a variable representing time."], "photonics": ["The science and technology of generating and controlling photons, particularly in the visible and near infrared light spectrum."], "photonic": ["Of, or relating to photons or to photonics."], "photoelectron": ["An electron ejected from the surface of a material by the photoelectric effect."], "photoelectric effect": ["A phenomenon in which electrons are emitted from matter (metals and non-metallic solids, liquids, or gases) after the absorption of energy from electromagnetic radiation such as X-rays or visible light."], "photoelectric": ["Of, or relating to the electric effects of electromagnetic radiation, especially to the ejection of an electron from a surface by a photon."], "photoelectric cell": ["A transducer that generates an electric current proportional to the light intensity."], "numerically": ["In terms of numbers."], "microfluidics": ["A discipline that deals with the behavior, precise control and manipulation of fluids that are geometrically constrained to a small, typically sub-millimeter, scale."], "microfluidic": ["Of, pertaining to, or using microfluidics."], "kinetic": ["Characterized by motion."], "kinetics": ["The branch of classical mechanics that is concerned with the relationship between the motion of bodies and its causes, namely forces and torques (source: Wikipedia)."], "instability": ["The lack of stability."], "prankster": ["Someone who makes jokes or play on words in poor tastes."], "cut-up": ["Someone who makes jokes or play on words in poor tastes."], "trickster": ["A person who acts dishonestly.", "Someone who makes jokes or play on words in poor tastes."], "tricker": ["Someone who makes jokes or play on words in poor tastes."], "practical joker": ["Someone who makes jokes or play on words in poor tastes."], "explorer": ["A person who by means of travel searches out new information."], "impurity": ["A component or additive that renders something else impure.", "The condition of being impure, because of contamination, pollution, etc."], "galactic": ["Relating to the galaxy or a galaxy."], "ferromagnetic": ["Of a material, such as iron or nickel, that is easily magnetized."], "dynamical": ["In motion usually as the result of an external force."], "ferromagnetism": ["The basic mechanism by which certain materials (such as iron or nickel) form permanent magnets and/or exhibit strong interactions with magnets."], "trouser pocket": ["A pocket in a pair of pants, trousers, or shorts."], "trembling": ["Vibrating slightly and irregularly."], "quaking": ["Vibrating slightly and irregularly."], "quivering": ["Vibrating slightly and irregularly."], "shaking": ["Vibrating slightly and irregularly."], "shaky": ["Vibrating slightly and irregularly."], "shivering": ["Vibrating slightly and irregularly."], "tact": ["Careful consideration in dealing with others to avoid giving offense."], "silhouette": ["A representation of the outlines of an object filled in with a single color."], "rumour": ["A piece of information of questionable accuracy, from no known reliable source, usually spread by word of mouth."], "exponent": ["One who supports something.", "(Mathematics) A number placed above and to the right of another number to show that it has been raised to a power.", "One who expounds, represents or advocates."], "coffer": ["Each of the sunken panels in a ceiling, soffit or vault."], "coffering": ["Each of the sunken panels in a ceiling, soffit or vault."], "exposed": ["Left or being without shelter or protection."], "obliquely": ["In an oblique manner."], "against the clock": ["In a time-restricted manner."], "against time": ["In a time-restricted manner."], "at once": ["In an immediate manner; instantly or without delay.", "At the same time.", "In the time directly following on the present moment."], "purposely": ["With intention; in an intentional manner."], "dorsoventral": ["Of, pertaining to, or situated at the back and belly of something."], "dorsoventrally": ["In a dorsoventral manner."], "mistakenly": ["By mistake."], "erroneously": ["By mistake."], "jubilantly": ["With jubilation or triumph."], "happily": ["With jubilation or triumph.", "[An adverb used in expressions of good wish, meaning: happily, with no worries]"], "merrily": ["With jubilation or triumph.", "In a cheerful or merry manner."], "mirthfully": ["With jubilation or triumph."], "gayly": ["With jubilation or triumph.", "In a cheerful or merry manner."], "blithely": ["With jubilation or triumph."], "with happiness": ["With jubilation or triumph."], "wonderfully": ["In a wonderful manner."], "wondrous": ["Causing wonder, admiration or astonishment.", "In a wonderful manner."], "wondrously": ["In a wonderful manner."], "superbly": ["In a wonderful manner."], "toppingly": ["In a wonderful manner."], "marvellously": ["In a wonderful manner."], "terrifically": ["In a wonderful manner."], "marvelously": ["In a wonderful manner."], "surgically": ["In a surgical manner; by means of surgery."], "surgical": ["Of, relating to, used in, or resulting from surgery."], "thoroughly": ["In a thorough or complete manner."], "soundly": ["In a thorough or complete manner."], "heartily": ["In a hearty manner."], "cordially": ["In a hearty manner."], "warmly": ["In a hearty manner."], "gentlemanly": ["Befitting a man of good breeding."], "gentlemanlike": ["Befitting a man of good breeding."], "snout": ["The muzzle of swine (Suidae), like that of the pig and wild boar."], "Eurasia": ["The largest landmass on Earth, consisting of Europe and Asia."], "Port-au-Prince": ["The capital and largest city of Haiti."], "commercially": ["In a commercial manner."], "inevitably": ["In a manner that is impossible to avoid or prevent."], "inexorably": ["In a manner that is impossible to avoid or prevent."], "of necessity": ["In a manner that is impossible to avoid or prevent."], "needs": ["In a manner that is impossible to avoid or prevent."], "categorically": ["In a categorical manner."], "flatly": ["In a categorical manner."], "unconditionally": ["Without question.", "In a categorical manner."], "timidly": ["In a timid manner."], "bashfully": ["In a timid manner."], "shyly": ["In a timid manner."], "stuff": ["Miscellaneous items.", "To press or force."], "whatchamacalli": ["Miscellaneous items."], "whatsis": ["Miscellaneous items."], "sundry": ["Miscellaneous items."], "sundries": ["Miscellaneous items."], "don't-know": ["A person who responds `I don't know' in a public opinion poll."], "O.K.": ["In a satisfactory or adequate manner."], "all right": ["In a satisfactory or adequate manner."], "alright": ["In a satisfactory or adequate manner."], "struggle": ["An energetic attempt to achieve something.", "To make a strenuous or labored effort."], "faux Cyrillic": ["The use of Cyrillic letters in Latin text to evoke the Soviet Union or Russia."], "pseudo-Cyrillic": ["The use of Cyrillic letters in Latin text to evoke the Soviet Union or Russia."], "pseudo-Russian": ["The use of Cyrillic letters in Latin text to evoke the Soviet Union or Russia."], "faux Russian": ["The use of Cyrillic letters in Latin text to evoke the Soviet Union or Russia."], "Cyrillic script": ["An alphabet used for several East and South Slavic languages and many other languages of the former Soviet Union, Asia and Eastern Europe."], "Western Baltic Cluster": ["The western branch of a group of related languages belonging to the Indo-European language family and spoken mainly in areas extending east and southeast of the Baltic Sea in Northern Europe."], "Sudovian": ["An extinct western Baltic language in Northeastern Europe."], "Jatvingian": ["An extinct western Baltic language in Northeastern Europe."], "Skalvian": ["An extinct language in the western branch of the Western Baltic Cluster, formerly spoken by the Scalovians around the city of Neman in Lithuania."], "Selonian": ["A language spoken by the Eastern Baltic tribe of Selonians, who lived until the 15th century in Selonia, a territory in South Eastern Latvia and North Eastern Lithuania."], "electrostatic": ["Of or pertaining to static electricity."], "Taoism": ["A variety of related philosophical and religious traditions and concepts that have influenced East Asia for over two millennia and the West for over two centuries."], "reporter": ["A person who investigates and reports or edits news stories."], "newsman": ["A person who investigates and reports or edits news stories."], "newsperson": ["A person who investigates and reports or edits news stories."], "newswoman": ["A female person who investigates and reports or edits news stories."], "teamster": ["A man who drives a truck.", "A woman who drives a truck.", "A person who drives a truck."], "trucker": ["A man who drives a truck.", "A woman who drives a truck.", "A person who drives a truck."], "truck driver": ["A man who drives a truck.", "A woman who drives a truck.", "A person who drives a truck."], "frivolity": ["A frivolous act."], "frivolous": ["Not serious in content or attitude or behavior."], "sheaf": ["Several objects bound together."], "insulator": ["A substance that does not transmit heat (thermal insulator), sound (acoustic insulator) or electricity (electrical insulator)."], "curriculum vitae": ["A written account of one's life comprising one's education, accomplishments, work experience, publications, etc.; especially, one used to apply for a job."], "flagpole": ["A tall pole up which one or more flags may be raised and flown."], "flagstaff": ["A tall pole up which one or more flags may be raised and flown."], "heath": ["Any small evergreen shrub of the genus Erica."], "shareholder": ["One who owns shares of stock."], "pliers": ["A gripping tool that multiplies the strength of the user's hand."], "anesthesiology": ["The science, study, or practice of the use of anesthesia or anesthetics."], "self-esteem": ["Personal feelings or opinions of oneself."], "self-respect": ["Personal feelings or opinions of oneself."], "self-regard": ["Personal feelings or opinions of oneself."], "scholarship holder": ["Grant-holder, scholarship-holder."], "educable": ["Capable of being educated."], "educatable": ["Capable of being educated."], "cofactor": ["A contributing factor."], "Costa Rican": ["A person from Costa Rica, or of Costa Rican ancestry.", "Of or relating to Costa Rica or Costa Rican."], "docosanol": ["A saturated fatty alcohol used mainly as an antiviral agent, specifically for treatment of cold sores."], "dalmatian": ["A large breed having a smooth white coat with black or brown spots; originated in Dalmatia."], "Dalmatia": ["A region on the eastern coast of the Adriatic Sea and is situated chiefly in modern Croatia."], "friction": ["The rubbing of one object or surface against another."], "photochemistry": ["The study of photochemical reactions."], "fluorocarbon": ["Any derivative of a hydrocarbon in which every hydrogen atom has been replaced by fluorine."], "forger": ["Person who falsifies documents with intent to defraud, eg, to create a false will."], "stapler": ["A device which binds together sheets of paper by driving a thin metal staple through the sheets and simultaneously folding over the ends of the staple against the back surface of the paper."], "enclosure": ["An area, domain, or amount of something partially or entirely enclosed by barriers."], "scarlet fever": ["A streptococcal infection, mainly occuring among children, and characterized by a red skin rash, sore throat and fever."], "electromechanical": ["Related to electricity (or electronics) and mechanics."], "ambush": ["The act of concealing yourself and lying in wait to attack by surprise.", "To station in ambush with a view to surprise an enemy."], "lying in wait": ["The act of concealing yourself and lying in wait to attack by surprise."], "ambuscade": ["The act of concealing yourself and lying in wait to attack by surprise."], "disguise": ["An attire (e.g. clothing) used to hide one's identity or assume another."], "tasting": ["The taking of a small amount of food or drink into the mouth in order to taste it."], "cent": ["A subunit of currency equal to one-hundredth of the main unit of currency in many countries."], "teaspoon": ["A small spoon used to stir the contents of a cup or glass."], "wallet": ["A flat, foldable, pocket case, for keeping paper money, credit cards, identification cards, etc."], "billfold": ["A flat, foldable, pocket case, for keeping paper money, credit cards, identification cards, etc."], "notecase": ["A flat, foldable, pocket case, for keeping paper money, credit cards, identification cards, etc."], "pocketbook": ["A flat, foldable, pocket case, for keeping paper money, credit cards, identification cards, etc."], "road roller": ["A heavy engineering vehicle used to compact asphalt in the construction of roads."], "honesty": ["The act, quality, or condition of being honest; to be truthful."], "honestness": ["The act, quality, or condition of being honest; to be truthful."], "Latin American": ["A native or inhabitant of Latin America, or of such descent.", "Of or relating to Latin America, its people, or its culture."], "luminol": ["A chemical that exhibits blue chemiluminescence when mixed with an appropriate oxidizing agent."], "meagre": ["A fish (Argyrosomus regius) of the Sciaenidae family."], "ignorance": ["Lack of knowledge or information."], "businessman": ["A man in business, one who works at a commercial institution."], "Madrilenian": ["Someone from Madrid.", "Of or pertaining to Madrid, or to its inhabitants."], "washing machine": ["A machine, usually automatic, which washes clothes etc."], "extremist": ["A supporter or advocate of extreme doctrines or practices.", "Of, or relating to extremism."], "extremism": ["Extreme ideas or actions."], "extrapolate": ["To infer an unknown from something that is known."], "extrapolation": ["An inference about some hypothetical situation based on known facts."], "eyebolt": ["A bolt having a ring-shaped head."], "electromechanics": ["A discipline that combines the fields of electromagnetism of electrical engineering and mechanics."], "pneumatic": ["Of, or related to air or other gases."], "pneumatics": ["The branch of mechanics that deals with the mechanical properties of gases."], "modernization": ["The process of modernizing."], "Ivorian": ["A person from Cote d'Ivoire, or of Ivorian ancestry.", "Of or relating to Cote d'Ivoire or Ivorians."], "ordinate": ["In the Cartesian system, the vertical coordinate."], "abscissa": ["In the Cartesian system, the horizontal coordinate."], "footbridge": ["A bridge over a road, railway, river, etc for pedestrians."], "penicillin": ["A group of antibiotics derived from Penicillium fungi."], "perfection": ["The quality or state of being perfect or complete."], "dilemma": ["A circumstance in which a choice must be made between two or more alternatives that seem equally undesirable."], "eyelet": ["A small hole, usually round and finished along the edge, as in cloth or leather for the passage of a lace or cord or as in embroidery for ornamental effect."], "exudation": ["The act of exuding.", "Something that is exuded."], "extrusion": ["The act of extruding or the state of being extruded."], "extruder": ["A machine that extrudes material through shaped dies."], "extraterrestrial": ["Originating, located, or occurring outside Earth or its atmosphere."], "extraordinarily": ["Beyond what is ordinary or usual."], "extrados": ["The exterior curve or surface of an arch or vault."], "extortionist": ["A person who engages in extortion."], "extortion": ["The practice of extorting money or other property."], "extort": ["To gain money, a promise, etc. by compulsion or violence."], "eye bolt": ["A bolt having a ring-shaped head."], "extrusive": ["Of or related to extrusion."], "extirpation": ["The act of destroying or getting rid of something.", "The complete destruction of every trace of something."], "extinguisher": ["Any of various portable devices for extinguishing a fire with chemicals."], "exterminator": ["A person or business establishment specializing in the elimination of vermin, insects, etc."], "inordinately": ["Beyond what is ordinary or usual."], "extortioner": ["A person who engages in extortion."], "extinguishant": ["That serves to extinguish."], "regenerative brake": ["A mechanism that reduces vehicle speed by converting some of its kinetic energy into a storeable form of energy instead of dissipating it as heat as with a conventional brake (source: Wikipedia)."], "KERS": ["A mechanism that reduces vehicle speed by converting some of its kinetic energy into a storeable form of energy instead of dissipating it as heat as with a conventional brake (source: Wikipedia)."], "racer": ["Someone who takes part in a race."], "pole position": ["The most favorable position at the start of a race."], "extermination": ["The act of exterminating."], "exterminate": ["To destroy completely leaving no trace.", "To get rid of by destroying.", "To kill in large numbers."], "extenuating": ["That lessens the seriousness of something by providing an excuse."], "Thomasina": ["A female given name, the feminine form of Thomas."], "Thomasine": ["A female given name, the feminine form of Thomas."], "Tamsin": ["A female given name, the feminine form of Thomas."], "pasta plate": ["A deep plate used especially for pasta dishes."], "pasta bowl": ["A deep plate used especially for pasta dishes."], "porcelain plate": ["A plate made of porcelain."], "buttery": ["As soft as butter; very soft."], "religious": ["Believing in and showing reverence for God or a deity."], "believing": ["Believing in and showing reverence for God or a deity."], "God-fearing": ["Believing in and showing reverence for God or a deity."], "emergency lie": ["A lie that is told in an emergency situation in order to spare someone or to prevent something bad from happening."], "white lie": ["A lie that is told to avoid offense and to maintain harmony."], "Peronist": ["A supporter of Juan Per\u00f3n, Eva Per\u00f3n, or their regime."], "Chavista": ["A follower of Hugo Ch\u00e1vez."], "pirate": ["A criminal who plunders at sea; commonly attacking merchant vessels, though often pillaging port towns.", "A member of a pirate party."], "safe-conduct": ["Permit issued by an authority which guarantees a person to enter and spend time in a place in which otherwise she could not enter."], "Senegalese": ["A person from Senegal or of Senegalese descent.", "Of, from, or pertaining to Senegal, the Senegalese people or the Senegalese language."], "pencil sharpener": ["A device used to sharpen pencils by shaving the wood at one end."], "topographer": ["A person who studies or records topography."], "topographic": ["Of, or relating to topography."], "whooping cough": ["A contagious disease of the respiratory system that usually affects children."], "chin cough": ["A contagious disease of the respiratory system that usually affects children."], "extensometer": ["An instrument for measuring minute degrees of expansion, contraction, or deformation."], "extensively": ["In an extensive manner."], "extensible": ["Capable of being extended."], "expulsion": ["The act of expelling or the state of being expelled."], "expressionist": ["A painter who paints in this style.", "Of, pertaining to, or in the style of expressionism."], "forced abortion": ["An abortion performed against the will of the pregnant woman."], "compulsory sterilization": ["Sterilization without the consent of the person concerned."], "forced sterilization": ["Sterilization without the consent of the person concerned."], "forced marriage": ["A marriage against the will of one or both parties concerned."], "arranged marriage": ["A marriage that is not arranged by the bride or groom but by a third party (for example the parents)."], "prearranged marriage": ["A marriage that is not arranged by the bride or groom but by a third party (for example the parents)."], "expressible": ["Able to be expressed."], "explainable": ["Able to be explained."], "expectoration": ["The act of expectorating.", "Matter that is expectorated."], "expatriation": ["Migration from a place.", "The act of expelling a person from his native land."], "cheesecloth": ["A loosewoven cotton cloth used in cheese making."], "expansionist": ["An advocate of expansionism.", "Of or pertaining to expansionism."], "expansionary": ["Of or pertaining to expansionism."], "Manifest Destiny": ["A term used in the 19th century to designate the belief that the United States of America was destined to expand across the North American continent, from the Atlantic seaboard to the Pacific Ocean."], "Santa": ["Symbol of Christmas gift-giving.", "A Mongolic language spoken by the Dongxiang people in northwest China."], "Saint Nicholas": ["Symbol of Christmas gift-giving."], "Kris Kringle": ["Symbol of Christmas gift-giving."], "expandable": ["Able to be expanded."], "exogamy": ["The custom of marrying outside a specified group of people to which a person belongs."], "exigible": ["Liable to be exacted."], "requirable": ["Liable to be exacted."], "exhumation": ["The act of digging a dead body out of the earth."], "anecdotical": ["Pertaining to or resembling anecdotes."], "anecdotic": ["Pertaining to or resembling anecdotes."], "anecdotal": ["Pertaining to or resembling anecdotes."], "cherry-sized": ["Having the size of a cherry."], "kneel": ["To go down on one or both knees.", "To remain in a position where the bodyweight rests on one or both knees."], "kneel down": ["To go down on one or both knees."], "monochromic": ["Having only one color."], "monochromical": ["Having only one color."], "polychrome": ["Having many colors."], "bichrome": ["Having two colors."], "dichromic": ["Having two colors."], "dichroic": ["Having two colors.", "Exhibiting dichroism."], "out-migration": ["Migration from a place."], "deportation": ["The act of expelling a person from his native land."], "far-reaching": ["Having broad range or effect."], "sweeping": ["Having broad range or effect."], "medal": ["A stamped or cast metal disc, particularly one awarded as a prize.", "An award for winning a championship or commemorating some other event."], "tripe": ["The lining of the large stomach of ruminating animals, when prepared for food."], "morality": ["Recognition of the distinction between good and evil or between right and wrong."], "agate": ["A semipellucid, uncrystallized variety of quartz, presenting various tints in the same specimen."], "abciximab": ["An antiplatelet drug used to reduce the risk of a heart attack during coronary surgery."], "oat bran": ["The outer layer of oat grains which is a byproduct of milling and contains a lot of dietary fiber."], "uninhabited": ["Lacking inhabitants."], "unoccupied": ["Lacking inhabitants."], "maternal grandmother": ["The mother of someone's mother."], "paternal grandmother": ["The mother of someone's father."], "admirer": ["One who admires someone or something."], "bounty hunter": ["Someone who traces and captures fugitives for monetary reward."], "bail enforcement agent": ["Someone who traces and captures fugitives for monetary reward."], "fugitive recovery agent": ["Someone who traces and captures fugitives for monetary reward."], "bail fugitive investigator": ["Someone who traces and captures fugitives for monetary reward."], "agar": ["A gelatinous material obtained from the marine algae, used as a bacterial culture medium, in electrophoresis and as a food additive."], "allose": ["An epimer of glucose found in some African shrubs."], "dichroism": ["The property of some crystals of transmitting different colours of light in different directions."], "anesthesiologist": ["A medical specialist who deals with anesthetizing patients for operations or for pain."], "illiteracy": ["The inability to read."], "analphabetism": ["The inability to read."], "aneurysm": ["An abnormal blood-filled swelling of an artery or vein, resulting from a localized weakness in the wall of the vessel."], "aneurism": ["An abnormal blood-filled swelling of an artery or vein, resulting from a localized weakness in the wall of the vessel."], "angiography": ["A medical imaging technique in which an X-ray image is taken to visualize the inside of blood vessels and organs of the body, with particular interest in the arteries, veins and the heart chambers."], "angiogram": ["An X-ray image of the blood vessels gained after the injection of a radiopaque contrast medium."], "Angolan": ["A person from Angola, or of Angolan ancestry.", "Of or relating to Angola or Angolans."], "antecedent": ["Any thing that precedes another thing, especially the cause of the second thing."], "extremophile": ["An organism that thrives in and even may require physically or geochemically extreme conditions that are detrimental to the majority of life on Earth."], "extremophilic": ["Living in physically or geochemically extreme conditions."], "coup de th\u00e9\u00e2tre": ["Sudden and very surprising event happening through one person or a few people and modifying deeply a situation, so evoking a play."], "coup de theatre": ["Sudden and very surprising event happening through one person or a few people and modifying deeply a situation, so evoking a play."], "dramatic turn of events": ["Sudden and very surprising event happening through one person or a few people and modifying deeply a situation, so evoking a play."], "estragon": ["A perennial herb, Artemisia dracunculus, from Europe and parts of Asia.", "The leaves of this plant (Artemisia dracunculus) either fresh, or preserved in vinegar, used as a seasoning."], "tarragon": ["A perennial herb, Artemisia dracunculus, from Europe and parts of Asia.", "The leaves of this plant (Artemisia dracunculus) either fresh, or preserved in vinegar, used as a seasoning."], "expansionism": ["A policy of expansion, as of territory or currency."], "Armenian Soviet Socialist Republic": ["One of the republics of the former Soviet Union from 1922-1991, now present-day Armenia."], "Armenian SSR": ["One of the republics of the former Soviet Union from 1922-1991, now present-day Armenia."], "scrum": ["An iterative incremental framework for managing complex work (such as new product development) commonly used with agile software development."], "exhaustive": ["Treating all parts or aspects without omission."], "thorough": ["Treating all parts or aspects without omission."], "exhaustible": ["Capable of being used up."], "exfoliation": ["The act, state, or process of exfoliating."], "Transcaucasian Socialist Federative Soviet Republic": ["A short-lived republic of the former Soviet Union made up of the Transcaucasian Republics (Armenian SSR, Georgian SSR and Azerbaijan SSR) from 1922-1936."], "Transcaucasian SFSR": ["A short-lived republic of the former Soviet Union made up of the Transcaucasian Republics (Armenian SSR, Georgian SSR and Azerbaijan SSR) from 1922-1936."], "exeresis": ["Surgical removal of any part or organ."], "excision": ["Surgical removal of any part or organ."], "exequatur": ["A written recognition of a consul by the government of the state in which he or she is stationed giving authorization to exercise appropriate powers."], "exegesis": ["Critical explanation or interpretation of a text or portion of a text, esp. of the Bible."], "excitedly": ["With excitement."], "oblast": ["A type of administrative division in Slavic countries, including some countries of the former Soviet Union."], "obsolescent": ["In the process of becoming obsolete, but not obsolete yet."], "deprecated": ["In the process of becoming obsolete, but not obsolete yet."], "exemplify": ["To show or illustrate by example."], "excessively": ["To an excessive degree."], "excellence": ["The fact or state of excelling."], "vampiress": ["A female immortal being which drinks the blood of mortals to survive."], "rigor mortis": ["A stiffening of the muscles which sets in 1-2 hours after death."], "exarch": ["The ruler of a province in the Byzantine Empire."], "examinee": ["A person who is examined."], "breastfeed": ["To let a baby drink from the breast."], "penmanship": ["The writing which characterizes a particular person."], "chicken scratch": ["An irregular and illegible handwriting."], "eat up": ["To use up resources or materials.", "To consume wholly."], "eat out": ["To have a meal at a restaurant instead of at home.", "To perform oral sex on a female."], "go out for a meal": ["To have a meal at a restaurant instead of at home."], "go for a meal": ["To have a meal at a restaurant instead of at home."], "illuminated manuscript": ["A manuscript in which the text is supplemented by the addition of decoration, such as decorated initials, borders and miniature illustrations."], "give head": ["To provide sexual gratification to a man through oral stimulation.", "To perform oral sex on a female."], "exam": ["A session in which a product or piece of equipment is placed under everyday and/or extreme conditions and is examined for its durability, etc."], "exaction": ["The practice of extorting money or other property."], "ex cathedra": ["In Catholic theology, the Latin phrase ex cathedra, literally meaning \"from the chair\", refers to a teaching by the pope that is considered to be made with the intention of invoking infallibility."], "ex aequo": ["A Latin expression that means \"equal\"."], "schlemiel": ["Someone who always has bad luck in life."], "shlemiel": ["Someone who always has bad luck in life."], "schlemihl": ["Someone who always has bad luck in life."], "jinx": ["A person supposed to bring bad luck.", "To cast a spell on someone or something.", "An evil spell."], "hoodoo": ["A person supposed to bring bad luck.", "Something believed to bring bad luck."], "delete": ["To remove markings or information."], "evangelist": ["A preacher of the gospel."], "evade": ["To get away from by artifice."], "eagerness": ["A positive feeling of wanting to push ahead with something.", "Prompt willingness."], "avidness": ["A positive feeling of wanting to push ahead with something."], "keenness": ["A positive feeling of wanting to push ahead with something."], "readiness": ["Ease in learning or doing something.", "Prompt willingness."], "earthernware": ["Pottery of baked or hardened clay."], "earthenware": ["Pottery of baked or hardened clay."], "fur-lined": ["Lined with a layer of fur."], "lined": ["Furnished with a layer of warming cloth."], "eclogue": ["A pastoral poem, often in the form of a shepherd's monologue or a dialogue between shepherds."], "economically": ["With respect to economic science; in an economical manner."], "economism": ["A theory or doctrine that attaches principal importance to economic goals."], "kvas": ["Traditional Eastern European beverage made from fermented bread, which has a very low alcohol content."], "kvass": ["Traditional Eastern European beverage made from fermented bread, which has a very low alcohol content."], "bread drink": ["Traditional Eastern European beverage made from fermented bread, which has a very low alcohol content."], "okroshka": ["Traditional Russian soup made of kvas, sour cream, boiled eggs and potatoes, cucumber and sausage which is served cold."], "gazpacho": ["Cold Spanish soup made of tomatoes, cucumber, peppers, garlic, onion, olive oil, vinegar, salt and, sometimes, white bread or bell peppers."], "recital": ["A musical performance. It can highlight a single performer, sometimes accompanied by piano, or a performance of the works of a single composer."], "economizer": ["Is a mechanical device intended to reduce energy consumption, or to perform another useful function like preheating a fluid."], "edaphon": ["The aggregate of organisms that live in the soil."], "editable": ["Capable of being edited."], "editorialist": ["One who write opinion pieces, especially for a newspaper."], "columnist": ["One who write opinion pieces, especially for a newspaper."], "educationally": ["In an educational manner."], "When in Rome do as the Romans do": ["A proverb which means that when one is a guest, one should behave similarly to the host."], "When in Rome": ["A proverb which means that when one is a guest, one should behave similarly to the host."], "All roads lead to Rome": ["A proverb which means that there are different paths that lead to the same goal."], "Curiosity killed the cat": ["A proverb which means that certain knowledge may be dangerous, so one need not be constantly curious."], "borshch": ["Traditional Eastern European soup usually made of beetroot and beef."], "borscht": ["Traditional Eastern European soup usually made of beetroot and beef."], "borsht": ["Traditional Eastern European soup usually made of beetroot and beef."], "borsch": ["Traditional Eastern European soup usually made of beetroot and beef."], "effervescence": ["The property of giving off bubbles."], "efflorescence": ["An area of reddened, irritated, and inflamed skin.", "The blooming of flowers on a plant."], "flowering": ["The blooming of flowers on a plant."], "blossoming": ["The blooming of flowers on a plant."], "effortlessly": ["Without effort or apparent effort."], "egalitarianism": ["The doctrine of the equality of mankind and the desirability of political and economic and social equality."], "ejector": ["A device using a jet of water, air, or steam to withdraw a fluid or gas from a space."], "electret": ["A dielectric that possesses a permanent or semipermanent electric polarity, analogous to a permanent magnet."], "electroanalysis": ["Chemical analysis using electrolytic techniques."], "electrochemical": ["Of or involving electrochemistry."], "electrodynamic": ["Related to or employing the effects of changing electric and magnetic fields."], "electrodynamics": ["The branch of physics concerned with the interactions between electrical and mechanical forces."], "electrodynamometer": ["An instrument that measures electric current by indicating the level of magnetic attraction or repulsion between a fixed and a movable coil, one of which carries the current to be measured."], "low-hanging fruit": ["Easily obtained gains; what can be obtained by readily available means."], "mainstream": ["The most common and popular way of thinking among a population.", "Genre of jazz music that appeared in the years 1950."], "multiseat": ["Relative to the simultaneous use of one common computer central unit by several people though several input-output devices (typically at least one screen, one keyboard and one mouse per user)."], "multistation": ["Relative to the simultaneous use of one common computer central unit by several people though several input-output devices (typically at least one screen, one keyboard and one mouse per user)."], "multi-station": ["Relative to the simultaneous use of one common computer central unit by several people though several input-output devices (typically at least one screen, one keyboard and one mouse per user)."], "multiterminal": ["Relative to the simultaneous use of one common computer central unit by several people though several input-output devices (typically at least one screen, one keyboard and one mouse per user)."], "electrogalvanism": ["The flow of electric current between two different metals in an electrolyte solution."], "electroluminescence": ["Direct conversion of electric energy to light."], "mainstream jazz": ["Genre of jazz music that appeared in the years 1950."], "electrolytic": ["Of or concerned with or produced by electrolysis"], "electrometallurgy": ["The use of electric and electrolytic processes to purify metals or reduce metallic compounds to metals."], "electrometer": ["Meter to measure electrostatic voltage."], "electromotive": ["Of, relating to, or producing electric current."], "electronically": ["By electronic means."], "electrophorus": ["An apparatus for generating static electricity."], "electroplating": ["The process of coating the surface of a conducting material with a metal."], "electrostriction": ["A property of all electrical non-conductors, or dielectrics, that causes them to change their shape under the application of an electric field."], "electrotechnics": ["An engineering field that deals with the study and/or application of electricity, electronics and electromagnetism."], "electrotype": ["A metal plate used in letterpress printing, made by electroplating a lead or plastic mold of the page to be printed."], "electrotyping": ["The act or the process of making electrotypes."], "electrum": ["An alloy of silver and gold."], "elegantly": ["In a gracefully elegant manner."], "elegance": ["Refinement, grace, and beauty in movement, appearance, or manners."], "eligibility": ["The quality or state of being eligible."], "eliminatory": ["Tending to eliminate."], "elitism": ["The belief that society should be governed by a small group of people who are superior to everyone else."], "elitist": ["Aimed at the elite."], "ellipsoid": ["A three-dimensional geometric figure resembling a flattened sphere."], "tiff": ["A small argument; a petty quarrel."], "eluate": ["The solution of solvent and dissolved matter resulting from elution."], "eluent": ["A substance used as a solvent in separating materials in elution."], "elution": ["The process of extracting a substance that is adsorbed to another by washing it with a solvent."], "elutriation": ["The process of separating the lighter particles from the heavier ones by means of an upward directed stream of gas or liquid."], "eluviation": ["The sideways or downward movement of dissolved or suspended material within soil caused by rainfall."], "elytron": ["A modified, hardened forewing of certain insect orders."], "embark": ["To go on board a ship or aircraft."], "embarrass": ["To make someone feel shy, ashamed, or guilty about something."], "embellishment": ["Something that embellishes.", "The process of making or becoming more beautiful."], "ember": ["A small, glowing piece of coal or wood, as in a dying fire."], "embezzlement": ["The fraudulent appropriation of funds or property entrusted to your care but actually owned by someone else."], "misappropriation": ["The fraudulent appropriation of funds or property entrusted to your care but actually owned by someone else.", "Appropriation or allocation of public funds to a use unrelated to its function."], "peculation": ["The fraudulent appropriation of funds or property entrusted to your care but actually owned by someone else."], "embourgeoisement": ["Conversion to bourgeois values, loyalties, or tastes."], "embossing": ["Art of producing raised patterns on the surface of metal, leather, textiles, paper, and other similar substances."], "embryologist": ["A specialist in embryology."], "emery": ["A very hard rock type used to make abrasive powder."], "emir": ["An independent ruler in the Islamic world."], "Emmental": ["Hard pale yellow cheese with many holes from Switzerland."], "Emmentaler": ["Hard pale yellow cheese with many holes from Switzerland."], "Emmenthal": ["Hard pale yellow cheese with many holes from Switzerland."], "Emmenthaler": ["Hard pale yellow cheese with many holes from Switzerland."], "emotionally": ["In an emotional manner."], "emotiveness": ["Susceptibility to emotion."], "empathic": ["Of, relating to, or characterized by empathy."], "empathetic": ["Of, relating to, or characterized by empathy."], "emphatically": ["Without question and beyond doubt."], "decidedly": ["Without question and beyond doubt."], "emphaticalness": ["The quality of being emphatic."], "assertiveness": ["The quality of being emphatic."], "casino": ["A public building or room for entertainment, especially gambling."], "empiricist": ["A philosopher who subscribes to empiricism."], "otaku": ["A fan of manga and anime, sometimes taking it to excessive points."], "months": ["More than one month; the plural form of \"month\"."], "moons": ["More than one moon."], "man overboard": ["A cry said on a ship when someone (man or woman) falls into the water in order to alert the crew, usually resulting in the ship being stopped.", "A situation in which one of the crew members of a ship has fallen into the water."], "man over board": ["A cry said on a ship when someone (man or woman) falls into the water in order to alert the crew, usually resulting in the ship being stopped."], "empyema": ["A collection of pus in a body cavity."], "emulate": ["To imitate the function of another system, as by modifications to hardware or software that allow the imitating system to accept the same data, execute the same programs, and achieve the same results as the imitated system.", "To strive to equal or match, especially by imitating.", "To compete with successfully; approach or reach equality with."], "emulator": ["Someone who copies the words or behavior of another."], "aper": ["Someone who copies the words or behavior of another."], "imitator": ["Someone who copies the words or behavior of another."], "emulsifier": ["A substance that helps to combine two liquids, esp. a water-based liquid and an oil."], "encrypt": ["To convert ordinary language into code."], "encipher": ["To convert ordinary language into code."], "cypher": ["To convert ordinary language into code."], "endemical": ["Of or relating to a disease constantly present to greater or lesser extent in a particular locality."], "ending": ["A bringing or coming to an end."], "commercial agent": ["Natural person or legal entity providing, as a regular activity, a commercial service for the sake of another entity to which he/she/it is not subordinated."], "endocarp": ["The hard inner layer of the pericarp of many fruits, such as the pit or stone of a cherry, peach, or olive."], "endodontist": ["A dentist specializing in diseases of the dental pulp and nerve."], "endodontology": ["The branch of dentistry that deals with diseases of the tooth root, dental pulp, and surrounding tissue."], "drawer": ["A sliding compartment of a piece of furniture, open on its top, that can be pulled to access to its content more easily."], "endogamy": ["Marriage within a particular group in accordance with custom or law.", "Breeding between members of a relatively small population, especially one in which most members are related."], "endophyte": ["An organism, especially a fungus or microorganism, that lives inside a plant."], "endosperm": ["Nutritive tissue surrounding the embryo within seeds of flowering plants."], "lucky devil": ["Someone who always has good luck in life."], "lucky dog": ["Someone who always has good luck in life."], "endothermic": ["Relating to a chemical reaction that absorbs heat."], "concubine": ["Among polygamour peoples a wife of inferior rank than the first wife.", "A woman who cohabits with an important man, but who is not his wife."], "secondary wife": ["Among polygamour peoples a wife of inferior rank than the first wife."], "jeans": ["Pants made of denim that are a popular casual dress around the world."], "denim shirt": ["A shirt made from denim."], "denim skirt": ["A skirt made from denim."], "denim jacket": ["A jacket made from denim."], "denim blouse": ["A blouse made from denim."], "sunglasses": ["Special glasses that protect the eyes from strong sunlight and uv rays."], "sun glasses": ["Special glasses that protect the eyes from strong sunlight and uv rays."], "shades": ["Special glasses that protect the eyes from strong sunlight and uv rays."], "sun cheaters": ["Special glasses that protect the eyes from strong sunlight and uv rays."], "vixen": ["A female animal of the genus Vulpes."], "fox cub": ["A young animal of the genus Vulpes."], "manufacturer\u2019s agent": ["Natural person or legal entity providing, as a regular activity, a commercial service for the sake of another entity to which he/she/it is not subordinated.", "Natural person or legal entity providing, as a regular activity, a commercial service for the sake of a manufacturer to which he/she/it is not subordinated."], "sales agent": ["Natural person or legal entity providing, as a regular activity, a commercial service for the sake of another entity to which he/she/it is not subordinated."], "commission agent": ["Natural person or legal entity providing, as a regular activity, a commercial service for the sake of another entity to which he/she/it is not subordinated."], "landline telephone": ["Device with a wire through which it transmits and receives in real time signals enabling the user to discuss from afar."], "landline": ["Device with a wire through which it transmits and receives in real time signals enabling the user to discuss from afar."], "land phone": ["Device with a wire through which it transmits and receives in real time signals enabling the user to discuss from afar."], "land line": ["Device with a wire through which it transmits and receives in real time signals enabling the user to discuss from afar."], "chutzpah": ["Nearly arrogant courage; utter audacity, effrontery or impudence; supreme self-confidence."], "endwise": ["On end or upright."], "endways": ["On end or upright."], "energetically": ["In an energetic manner."], "enforce": ["Ensure observance of laws and rules."], "enlarger": ["Photographic equipment consisting of an optical projector used to enlarge a photograph."], "Tektitek": ["A Mayan language of the Quichean-Mamean branch spoken by the Tektitek people, which are primarily settled in the municipality of Tectit\u00e1n, department of Huehuetenango, Guatemala and in Mexico."], "Tectiteco": ["A Mayan language of the Quichean-Mamean branch spoken by the Tektitek people, which are primarily settled in the municipality of Tectit\u00e1n, department of Huehuetenango, Guatemala and in Mexico."], "Teco": ["A Mayan language of the Quichean-Mamean branch spoken by the Tektitek people, which are primarily settled in the municipality of Tectit\u00e1n, department of Huehuetenango, Guatemala and in Mexico."], "B'a'aj": ["A Mayan language of the Quichean-Mamean branch spoken by the Tektitek people, which are primarily settled in the municipality of Tectit\u00e1n, department of Huehuetenango, Guatemala and in Mexico."], "whole milk": ["Milk that contains at least 3.5% fat."], "unskimmed milk": ["Milk that contains at least 3.5% fat."], "full cream milk": ["Milk that contains at least 3.5% fat."], "hutzpah": ["Nearly arrogant courage; utter audacity, effrontery or impudence; supreme self-confidence."], "full fat milk": ["Milk that contains at least 3.5% fat."], "skim milk": ["Milk with a very low percentage of fat."], "skimmed milk": ["Milk with a very low percentage of fat."], "raw milk": ["Milk that has not been pasteurized or homogenized."], "brazenness": ["Nearly arrogant courage; utter audacity, effrontery or impudence; supreme self-confidence."], "raw milk cheese": ["Cheese made from untreated, raw milk."], "enlistment": ["The act of enlisting, as in a military service."], "enormously": ["Greatly exceeding the common size."], "enquiry": ["The act of inquiring or of seeking information by questioning."], "investigation": ["The act of inquiring or of seeking information by questioning."], "wherein": ["Place in which."], "indoor swimming pool": ["A swimming pool in a building."], "enrol": ["To have one's name formally recorded as a participant or member.", "To roll or wrap up."], "enroll": ["To have one's name formally recorded as a participant or member."], "Aranese": ["A form of the Pyrenean Gascon variety of the Occitan language spoken in the Aran Valley, in northwestern Catalonia on the border between Spain and France."], "enthusiastically": ["In an enthusiastic manner."], "enumerable": ["That can be counted."], "denumerable": ["That can be counted."], "numerable": ["That can be counted."], "enumeration": ["A numbered or ordered list.", "Reciting numbers in ascending order."], "numbering": ["A numbered or ordered list."], "indoor pool": ["A swimming pool in a building."], "dead drunk person": ["Someone who lies sleeping in public after drinking too much beer."], "eosin": ["A red fluorescent dye resulting from the action of bromine on fluorescein; used in cosmetics and as a biological stain for studying cell structures."], "bromeosin": ["A red fluorescent dye resulting from the action of bromine on fluorescein; used in cosmetics and as a biological stain for studying cell structures."], "eosinophile": ["A leukocyte readily stained with eosin."], "eosinophil": ["A leukocyte readily stained with eosin."], "knickers": ["Piece of cloth adapted to cover the genitals and buttocks of a man or a woman."], "panties": ["Piece of cloth adapted to cover the genitals and buttocks of a man or a woman."], "pantie": ["Piece of cloth adapted to cover the genitals and buttocks of a man or a woman."], "panty": ["Piece of cloth adapted to cover the genitals and buttocks of a man or a woman."], "underpants": ["Piece of cloth adapted to cover the genitals and buttocks of a man or a woman."], "epenthesis": ["The insertion of a vowel or consonant into a word to make its pronunciation easier."], "epenthetic": ["Of or pertaining to epenthesis."], "parasitic": ["Of or pertaining to epenthesis.", "Of, pertaining to, or characteristic of parasites."], "epexegesis": ["An additional explanation or explanatory material."], "epicanthus": ["A vertical fold of skin over the nasal canthus."], "big tent party": ["A political party that seeks to be attractive for voters from all social stratums and various backgrounds."], "catch-all party": ["A political party that seeks to be attractive for voters from all social stratums and various backgrounds."], "crepe pan": ["A large, flat pan with a low rim that is used to make crepes."], "epicureanism": ["A system of philosophy based upon the teachings of Epicurus (c. 340\u2013c. 270 BC)."], "epicycloid": ["A line generated by a point on a circle rolling around another circle."], "extended desktop": ["Computer configuration in which 2 or more physical display devices (usually monitors) behave together as if they where parts of one display device, each device displaying a part of the unique graphical working space."], "felt pen": ["A pen with a small tip made of felt or fibre."], "felt tip pen": ["A pen with a small tip made of felt or fibre."], "felt-tip pen": ["A pen with a wide tip made of felt or fibre.", "A pen with a small tip made of felt or fibre."], "epigastrium": ["The upper middle region of the abdomen."], "epigraphy": ["The study of ancient inscriptions."], "multi-seat": ["Relative to the simultaneous use of one common computer central unit by several people though several input-output devices (typically at least one screen, one keyboard and one mouse per user)."], "equilibrist": ["A person who performs feats of balance, such as tightrope walking."], "equipollent": ["Equal in power, effect, etc."], "Poitevin": ["Of or pertaining to Poitou, Poitiers, the Poitevin people or the Poitevin language."], "equitation": ["The art and practice of riding a horse."], "eradication": ["The complete destruction of every trace of something."], "obliteration": ["The complete destruction of every trace of something."], "erasable": ["Capable of being erased."], "effaceable": ["Capable of being erased."], "ergograph": ["An instrument that records the amount of work done when a muscle contracts."], "Eritrean": ["Relating to or coming from Eritrea."], "erlang": ["A unit of traffic intensity in a telephone system."], "erysipelas": ["An infectious disease of the skin marked by inflammation and accompanied by fever."], "cycloid": ["Curve defined by the path of a point on the perimeter of a circle as the circle rolls along a straight line."], "escarole": ["A variety of endive (Cichorium endivia var. latifolium) having leaves with irregular frilled edges and often used in salads."], "chicory escarole": ["A variety of endive (Cichorium endivia var. latifolium) having leaves with irregular frilled edges and often used in salads."], "car accident": ["An accident with a car."], "car crash": ["An accident with a car."], "auto accident": ["An accident with a car."], "washable": ["Capable of being washed."], "bike accident": ["Accident involving a bike."], "bicycle accident": ["Accident involving a bike."], "rosebud": ["A bud on a rosebush."], "electrochemistry": ["A branch of chemistry that studies chemical reactions which take place in a solution at the interface of an electron conductor (a metal or a semiconductor) and an ionic conductor (the electrolyte), and which involve electron transfer between the electrode and the electrolyte or species in solution."], "beer tent": ["At a fair or festival, a tent or wood construction in which beer, other alcoholic and non-alcoholic beverages and food are served and consumed, often accompanied by a live band."], "escarpment": ["A long steep slope or cliff at the edge of a plateau or ridge."], "scarp": ["A long steep slope or cliff at the edge of a plateau or ridge."], "eschatology": ["The branch of theology concerned with the end of the world."], "nuclear submarine": ["A submarine powered by a nuclear reactor."], "plateau": ["Elevated and plain extensive tract of land."], "tableland": ["Elevated and plain extensive tract of land."], "escritoire": ["A desk used for writing."], "secretaire": ["A desk used for writing."], "writing table": ["A desk used for writing."], "submergible": ["Capable of being submerged."], "submersible": ["Capable of being submerged."], "leprous": ["Concerning lepra, suffering from lepra."], "ethically": ["From an ethical point of view."], "lazar house": ["A place where leprous people are isolated from the rest of the population."], "leprosarium": ["A place where leprous people are isolated from the rest of the population."], "leper colony": ["A place where leprous people are isolated from the rest of the population."], "leprosy": ["A chronic infectious disease caused by the bacteria Mycobacterium leprae and Mycobacterium lepromatosis which causes permanent damage to the skin, nerves, limbs and eyes if left untreated."], "Hansen's disease": ["A chronic infectious disease caused by the bacteria Mycobacterium leprae and Mycobacterium lepromatosis which causes permanent damage to the skin, nerves, limbs and eyes if left untreated."], "leper": ["A person who has leprosy."], "lazar": ["A person who has leprosy."], "barbary fig": ["A species of cactus (Opuntia ficus-indica) with edible fruit that grows in many arid and semiarid parts of the world.", "The sweet, yellow or red fruit of the barbery fig cactus (Opuntia ficus-indica)."], "Indian fig": ["A species of cactus (Opuntia ficus-indica) with edible fruit that grows in many arid and semiarid parts of the world."], "ethnocide": ["Deliberately destroying a culture. It is related to genocide."], "route planner": ["Software to plan the route between two points."], "ethnographer": ["An anthropologist who does ethnography."], "tremendously": ["Greatly exceeding the common size."], "hugely": ["Greatly exceeding the common size."], "staggeringly": ["Greatly exceeding the common size."], "ethnographic": ["Of or pertaining to ethnography."], "sausage finger": ["A very thick, stumpy finger."], "weekend marriage": ["A marriage where the partners only see each other on the weekend."], "vitamin overdose": ["A condition of high storage levels of vitamins, which can lead to toxic symptoms."], "vitamin poisoning": ["A condition of high storage levels of vitamins, which can lead to toxic symptoms."], "hypervitaminosis": ["A condition of high storage levels of vitamins, which can lead to toxic symptoms."], "avitaminosis": ["The complete absence of a vitamin in the human body."], "hypovitaminosis": ["Conditions and symptoms that arise due to a lack of vitamins."], "ex-wife": ["A woman who was formerly the wife of a certain man."], "ex": ["A woman who was formerly the wife of a certain man.", "A man who was formerly the husband of a certain woman.", "A man who was formerly the boyfriend of a certain woman.", "A woman who was formerly the girlfriend of a certain man."], "ex-husband": ["A man who was formerly the husband of a certain woman."], "ex-boyfriend": ["A man who was formerly the boyfriend of a certain woman."], "ex-girlfriend": ["A woman who was formerly the girlfriend of a certain man."], "eudiometer": ["Measuring instrument consisting of a graduated glass tube for measuring volume changes in chemical reactions between gases."], "euphony": ["A pleasantness to the ear."], "pastry": ["A baked delicacy."], "Euclidean": ["Of or pertaining to Euclid, or adopting his postulates."], "eventuality": ["A possible event or occurrence or result."], "contingence": ["A possible event or occurrence or result."], "contingency": ["A possible event or occurrence or result.", "The state of being contingent on something."], "evidential": ["Serving as or based on evidence."], "evidentiary": ["Serving as or based on evidence."], "evolute": ["The locus of the centers of curvature of a given curve."], "evolvent": ["The involute of a curve."], "involute": ["The involute of a curve."], "apparatchik": ["High ranked member of the government in Soviet Union."], "nomenklatura": ["Elite of the Communist Party of the Soviet Union."], "Ancient Macedonian": ["Indo-European language spoken by ancient Macedonians during the first millenium before Christ."], "pessimistic": ["Having the tendency to judge things by their most unfavorable or negative qualities."], "antipope": ["A pope who is elected by opponents of the rightful pope while he is still alive and holding office."], "toreutics": ["The art of working metal."], "life-saver": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "life buoy": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "abampere": ["The unit of electromagnetic current (aA) in the centimeter-gram-second system, equal to ten amperes."], "abamp": ["The unit of electromagnetic current (aA) in the centimeter-gram-second system, equal to ten amperes."], "fast food restaurant": ["A type of restaurant, often part of a restaurant chain, that has no or minimal table service and offers food that is cooked in advance and kept hot."], "quick service restaurant": ["A type of restaurant, often part of a restaurant chain, that has no or minimal table service and offers food that is cooked in advance and kept hot."], "QSR": ["A type of restaurant, often part of a restaurant chain, that has no or minimal table service and offers food that is cooked in advance and kept hot."], "fast food joint": ["A type of restaurant, often part of a restaurant chain, that has no or minimal table service and offers food that is cooked in advance and kept hot."], "self-service restaurant": ["A restaurant where the clients have to get their food themselves by putting it on trays and carrying it to a table."], "Bundt pan": ["A round cake mould with a hole for Kugelhupf and other cakes."], "prophet of doom": ["A person that predicts future misfortunes."], "abandonment": ["The act of giving something up.", "The act of withdrawing support or help despite allegiance or responsibility."], "forsaking": ["The act of giving something up."], "defection": ["The act of withdrawing support or help despite allegiance or responsibility."], "ablative": ["The case indicating the agent in passive sentences or the instrument or manner or place of the action described by the verb.", "Relating to the ablative, a grammatical case that exists in some languages.", "Relating to the ablation of a material."], "sourdough": ["A dough containing flour, water, lactic acid bacteria and yeast which is used to bake bread."], "illegal copy": ["Illegally created copy of a work protected by copyright, for example a CD or DVD."], "pirated copy": ["Illegally created copy of a work protected by copyright, for example a CD or DVD."], "abnormally": ["In an abnormal manner."], "unusually": ["In an abnormal manner."], "abolitionism": ["The doctrine that calls for the abolition of slavery.", "Opposition to slavery."], "abortionist": ["A person (typically a doctor) who terminates pregnancies."], "abortion doctor": ["A doctor who performs abortions."], "back-street abortionist": ["A woman who perfoms illegal abortions, often in unsanitary conditions and using unsafe methods.", "A man who perfoms illegal abortions, often in unsanitary conditions and using unsafe methods."], "caloric": ["Of or pertaining to calories."], "inflict": ["To dispense (punishment or suffering)."], "zit": ["A painful, local inflammation of the skin, caused by infection of a hair follicle. Usually, a hard core and pus are present."], "premature": ["Occurring too soon.", "A baby that was born before 37 weeks of pregnancy."], "untimely": ["Occurring too soon."], "preemie": ["A baby that was born before 37 weeks of pregnancy."], "premature infant": ["A baby that was born before 37 weeks of pregnancy."], "premie": ["A baby that was born before 37 weeks of pregnancy."], "preterm": ["A baby that was born before 37 weeks of pregnancy."], "tax evasion": ["The act of avoiding to pay taxes by illegal means."], "illogical": ["Not characterized by truth or logic."], "tattoo": ["A marking made by inserting ink into the layers of skin to change the pigment permanently for decorative or other reasons.", "To insert ink into the skin in order to create a permanent mark."], "tatt": ["A marking made by inserting ink into the layers of skin to change the pigment permanently for decorative or other reasons."], "tat": ["A marking made by inserting ink into the layers of skin to change the pigment permanently for decorative or other reasons."], "zoster": ["Viral disease caused by the varicella zoster virus characterized by a painful skin rash with blisters in a limited area of the body."], "herpes zoster": ["Viral disease caused by the varicella zoster virus characterized by a painful skin rash with blisters in a limited area of the body."], "shingles": ["Viral disease caused by the varicella zoster virus characterized by a painful skin rash with blisters in a limited area of the body."], "zona": ["Viral disease caused by the varicella zoster virus characterized by a painful skin rash with blisters in a limited area of the body."], "sycophant": ["Person who flatters others for the purpose of obtaining a personnal advantage."], "toady": ["Person who flatters others for the purpose of obtaining a personnal advantage."], "lickspittle": ["Person who flatters others for the purpose of obtaining a personnal advantage."], "bootlicker": ["Person who flatters others for the purpose of obtaining a personnal advantage."], "brown-nose": ["Person who flatters others for the purpose of obtaining a personnal advantage."], "brown-noser": ["Person who flatters others for the purpose of obtaining a personnal advantage."], "ass-kisser": ["Person who flatters others for the purpose of obtaining a personnal advantage."], "apple-polisher": ["Person who flatters others for the purpose of obtaining a personnal advantage."], "apple polisher": ["Person who flatters others for the purpose of obtaining a personnal advantage."], "scalp": ["The skin covering the top of the human head and from which the hair grows."], "moai": ["Monolithic human figures carved from rock on the Polynesian island of Rapa Nui (Easter Island) between the years 1250 and 1500."], "seawater": ["Water found in the seas or oceans which has an average salinity of about 3.5%."], "saline water": ["Water that contains dissolved salts."], "saltwater": ["Water that contains dissolved salts."], "intoxicated": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "shit-faced": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "juiced": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "sozzled": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "sloshed": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "drunken": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "inebriated": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "inebriate": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "ebrious": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "canned": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "no one": ["Not any person."], "groggy": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "blitzed": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "wasted": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "smashed": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "well-oiled": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "trashed": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "out of it": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "boozed-up": ["Being in a temporary state in which one's physical and mental faculties are impaired due to excessive consumption of alcohol."], "tipsy": ["Slightly drunk."], "buzzed": ["Slightly drunk."], "tiddly": ["Slightly drunk."], "gynarchy": ["A government ruled by a woman or women."], "gynocracy": ["A government ruled by a woman or women."], "gynecocracy": ["A government ruled by a woman or women."], "rolled oats": ["Oat grains whose outer husk has been removed and who are then steamed and rolled into flat flakes."], "light switch": ["A mechanical switch operated by hand which is used to turn the lighting on or off."], "uninsurable": ["Not capable of being insured."], "uterine": ["Of or pertaining to the uterus."], "two-headed": ["Having two heads."], "dicephalous": ["Having two heads."], "sober": ["Not under the influence of alcohol or other drugs.", "To remove oneself from a state of drunkenness; to become sober."], "sober up": ["To remove oneself from a state of drunkenness; to become sober."], "enchantress": ["A woman who is considered to be dangerously seductive."], "temptress": ["A woman who is considered to be dangerously seductive."], "siren": ["A woman who is considered to be dangerously seductive.", "A device, either mechanical or electronic, that makes a piercingly loud sound as an alarm or signal."], "Delilah": ["A woman who is considered to be dangerously seductive."], "femme fatale": ["A woman who is considered to be dangerously seductive."], "courtesan": ["A woman who cohabits with an important man, but who is not his wife."], "doxy": ["A woman who cohabits with an important man, but who is not his wife."], "odalisque": ["A woman who cohabits with an important man, but who is not his wife."], "paramour": ["A woman who cohabits with an important man, but who is not his wife."], "new moon": ["The phase of the moon occurring when it passes between the earth and the sun and is invisible to the naked eye."], "endemic": ["Of or relating to a disease constantly present to greater or lesser extent in a particular locality.", "A plant that is native to a certain limited area; \"it is an endemic found only this island\".", "Native to or confined to a certain region.", "Species which is restricted to a specific geographic location."], "pee-pee": ["Liquid excrement consisting of water, salts and urea, which is made in the kidneys, stored in the bladder, then released through the urethra."], "wee-wee": ["Liquid excrement consisting of water, salts and urea, which is made in the kidneys, stored in the bladder, then released through the urethra."], "empty word": ["A word that has lost its meaning, because it has been used extensively and inappropriately."], "vampire bat": ["Bat feeding on the blood (hematophagous) of large mammals such as horses or bovines."], "Live and let die": ["An expression meaning to not interfere in the business of others, even if it means to save another's life, for there is the risk that person will not be greatful to his savior and hunt him down for the rest of his life."], "no good deed goes unpunished": ["An expression meaning to not interfere in the business of others, even if it means to save another's life, for there is the risk that person will not be greatful to his savior and hunt him down for the rest of his life."], "man overbord": ["A cry said on a ship when someone (man or woman) falls into the water in order to alert the crew, usually resulting in the ship being stopped."], "live and let live": ["Expression saying everyone should mind their own business, so they can all leave in peace and not fear what others may do to them."], "common vampire bat": ["Bat feeding on the blood (hematophagous) of large mammals such as horses or bovines."], "Gaelic football": ["Form of football, also close to rugby, played mainly in Ireland."], "Gaelic": ["Form of football, also close to rugby, played mainly in Ireland."], "Gah": ["Form of football, also close to rugby, played mainly in Ireland."], "Code of Hammurabi": ["A well-preserved ancient law code, created ca. 1790 BC in ancient Babylon, enacted by the sixth Babylonian king, Hammurabi."], "carbonation": ["A process that occurs when carbon dioxide is dissolved in water or an aqueous solution."], "pyrogen": ["Any substance that produces fever, or a rise in body temperature."], "pyretic": ["Causing fever."], "pyrogenic": ["Causing fever."], "hormonal birth control": ["A method to prevent pregnancy that consists of the administration of the hormones estrogen and gestagen which prevent ovulation and hinder the passage of sperm through the cervical mucus."], "hormonal contraception": ["A method to prevent pregnancy that consists of the administration of the hormones estrogen and gestagen which prevent ovulation and hinder the passage of sperm through the cervical mucus."], "humourous": ["Full of or characterized by humour."], "joking": ["Playful and characterized by jokes."], "joky": ["Playful and characterized by jokes."], "jokey": ["Playful and characterized by jokes."], "count for nothing": ["To have no importance."], "Kuril Islands": ["Volcanic archipelago that stretches approximately 1,300 km northeast from Hokkaid\u014d, Japan, to Kamchatka, Russia, separating the Sea of Okhotsk from the North Pacific Ocean. It consists of 56 islands."], "Kurile Islands": ["Volcanic archipelago that stretches approximately 1,300 km northeast from Hokkaid\u014d, Japan, to Kamchatka, Russia, separating the Sea of Okhotsk from the North Pacific Ocean. It consists of 56 islands."], "coal mine": ["A mine from which coal is extracted."], "abrasiometer": ["One of the many devices used to test abrasion of a coating."], "coalmine": ["A mine from which coal is extracted."], "goldmine": ["A mine where gold is extracted."], "gold-mine": ["A mine where gold is extracted."], "diamond mine": ["A mine from which diamond is extracted."], "iron mine": ["A mine from which iron is extracted."], "white poplar": ["Species of poplar whose leaves have a distinctive silvery-white color on the underside."], "brackish": ["(Of water) Salty or slightly salty, as a mixture of fresh and sea water."], "poplar plantation": ["Place where poplars are grown, in particular for the production of wood."], "orange grove": ["Place where orange trees are grown, in particular for their fruits."], "female condom": ["A thin pouch that is inserted into the vagina before sexual intercourse and is meant to protect against pregnancy and sexually transmitted diseases."], "intrauterine system": ["A contraceptive device that is inserted into the uterus and releases the hormone progestagen."], "IUS": ["A contraceptive device that is inserted into the uterus and releases the hormone progestagen."], "hamlet": ["A group of houses, smaller than a village."], "jujube": ["Species of tree of the genus Ziziphus whose edible fruits have the consistency and taste of an apple and look like a small date.", "Edible fruit of the jujube tree (Ziziphus zizyphus), whose consistency and taste are similar to that of an apple and which looks like a small date."], "jujube tree": ["Species of tree of the genus Ziziphus whose edible fruits have the consistency and taste of an apple and look like a small date."], "red date": ["Species of tree of the genus Ziziphus whose edible fruits have the consistency and taste of an apple and look like a small date.", "Edible fruit of the jujube tree (Ziziphus zizyphus), whose consistency and taste are similar to that of an apple and which looks like a small date."], "Chinese date": ["Species of tree of the genus Ziziphus whose edible fruits have the consistency and taste of an apple and look like a small date.", "Edible fruit of the jujube tree (Ziziphus zizyphus), whose consistency and taste are similar to that of an apple and which looks like a small date."], "jujube fruit": ["Edible fruit of the jujube tree (Ziziphus zizyphus), whose consistency and taste are similar to that of an apple and which looks like a small date."], "oleaster": ["Genus of lowering plants of the Elaeagnaceae family having a whitish to grey-brown colour."], "silverberry": ["Genus of lowering plants of the Elaeagnaceae family having a whitish to grey-brown colour."], "tamarisk": ["Genus of flowering plants in the family Tamaricaceae, native to drier areas of Eurasia and Africa."], "salt cedar": ["Genus of flowering plants in the family Tamaricaceae, native to drier areas of Eurasia and Africa."], "absorptiometer": ["Device used to measure absorption."], "absorptiometry": ["The use of an absorptiometer to determine the amount of radiation absorbed."], "abstractionism": ["An abstract genre of art."], "absurdly": ["In an absurd manner."], "acephalia": ["Congenital absence of the head."], "acephaly": ["Congenital absence of the head."], "acephalism": ["Congenital absence of the head."], "acephalous": ["Without a head."], "acetabulum": ["A concave surface of the pelvis."], "aeronautical": ["Of or relating to aeronautics."], "acephalic": ["Without a head."], "afterbirth": ["The placenta and fetal membranes expelled from the uterus after childbirth."], "philistinism": ["Attitude of a person who despises art and litterature."], "philistine": ["A person who despises art and literature.", "Smug, ignorant, indifferent or hostile to artistic and cultural values.", "Of or relating to ancient Philistia or its culture or its people.", "A member of an Aegean people who settled ancient Philistia around the 12th century BC."], "Philistine": ["A person who despises art and literature."], "abulia": ["A loss of will power."], "aboulia": ["A loss of will power."], "abvolt": ["A unit of potential equal to one-hundred-millionth of a volt"], "academician": ["Someone with academic degree, graduates of high education."], "depredation": ["Robbery or pillage involving damages."], "Euro-sceptical": ["Having strong doubts regarding the purpose and effectiveness of the European Union."], "Eurosceptical": ["Having strong doubts regarding the purpose and effectiveness of the European Union."], "Eurosceptic": ["Person who has strong doubts regarding the purpose and effectiveness of the European Union."], "Euro-sceptic": ["Having strong doubts regarding the purpose and effectiveness of the European Union.", "Person who has strong doubts regarding the purpose and effectiveness of the European Union."], "Euroscepticism": ["Political idea consisting of having strong doubts regarding the purpose and effectiveness of the European Union."], "Euro-scepticism": ["Political idea consisting of having strong doubts regarding the purpose and effectiveness of the European Union."], "spin doctor": ["Someone who gives a positive interpretation to events."], "northern German": ["Inhabitant of Northern Germany."], "albatross": ["Large sea bird, found chiefly in the southern oceans and northern Pacific, which has extraordinary powers of flight."], "cleaning mania": ["Excessive cleaning of one's home."], "polar bear skin": ["The skin of a polar bear."], "hair's breadth": ["A very short distance.", "Having the breadth of a hair; very narrow."], "academism": ["A style of painting and sculpture produced under the influence of European academies or universities."], "acidimeter": ["Instrument for measuring the amount of acid in a solution."], "acidimetry": ["The measurement of the strength of acids."], "pimp": ["A person who solicits customers for prostitution and profits from the prostitutes earnings."], "mac": ["A person who solicits customers for prostitution and profits from the prostitutes earnings."], "pander": ["A person who solicits customers for prostitution and profits from the prostitutes earnings."], "fleshmonger": ["A person who solicits customers for prostitution and profits from the prostitutes earnings."], "whoremaster": ["Male client of a prostitute."], "world music": ["Music style which differs from the main occidental trends."], "cannabis": ["A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect."], "marihuana": ["A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect."], "ganja": ["A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect."], "Mary Jane": ["A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect."], "pot": ["A generic kitchen utensil used for cooking food by boiling, frying or other methods.", "A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect.", "A great number or large amount of things not placed in a pile.", "To knock a ball into a pocket of a snooker table, or similar game table."], "reefer": ["A drug prepared from the cannabis plant, that is smoked or ingested for its euphoric effect."], "spliff": ["A cigarette rolled using cannabis."], "doobie": ["A cigarette rolled using cannabis."], "J": ["A cigarette rolled using cannabis."], "jay": ["A cigarette rolled using cannabis."], "blunt": ["A cigar that has been unrolled, gutted of its inner tobacco, and then re-rolled with cannabis inside.", "Characterized by directness in manner or speech; without subtlety or evasion.", "Having a thick edge or point, as an instrument; not sharp."], "opiate": ["Substance derived from opium."], "early bird": ["Person who prefers to get up early in the morning."], "early riser": ["Person who prefers to get up early in the morning."], "morning person": ["Person who prefers to get up early in the morning."], "late riser": ["Person who prefers to get up late in the morning."], "morning grouch": ["Person who is in a bad mood after getting up in the morning."], "bong": ["A smoking device, generally used with cannabis or tobacco, which uses water to filter out heavier particles from reaching the smoker's airways."], "water pipe": ["A smoking device, generally used with cannabis or tobacco, which uses water to filter out heavier particles from reaching the smoker's airways."], "male professor": ["A male teacher or faculty member at a college or university."], "female professor": ["A female teacher or faculty member at a college or university."], "male author": ["Man responsible for the content of a published novel, book or text."], "male writer": ["Man responsible for the content of a published novel, book or text."], "female author": ["Woman responsible for the content of a published novel, book or text."], "female writer": ["Woman responsible for the content of a published novel, book or text."], "red-haired": ["Having red-coloured hairs."], "redheaded": ["Having red-coloured hairs."], "airsickness bag": ["A small bag impervious to fluids which is provided to passengers onboard airplanes to collect vomit in case of sickness."], "airsick bag": ["A small bag impervious to fluids which is provided to passengers onboard airplanes to collect vomit in case of sickness."], "sick bag": ["A small bag impervious to fluids which is provided to passengers onboard airplanes to collect vomit in case of sickness."], "barf bag": ["A small bag impervious to fluids which is provided to passengers onboard airplanes to collect vomit in case of sickness."], "motion sickness bag": ["A small bag impervious to fluids which is provided to passengers onboard airplanes to collect vomit in case of sickness."], "freshly caught": ["Caught a short time ago."], "actuate": ["To put into action or motion."], "actuator": ["A mechanism that puts something into action."], "zealous": ["Marked by active interest and enthusiasm."], "fish population": ["The population of fish in a certain area."], "sea floor": ["The bottom of the ocean."], "sea bottom": ["The bottom of the ocean."], "scrap motorcar": ["Car which is no longer functional and may be dismantled for spare parts or completely demolished."], "GNP": ["Value of all goods and services produced in a country in one year, plus income earned by its citizens abroad, minus income earned by foreigners in the country."], "government debt": ["The total amount of all government securities outstanding."], "national debt": ["The total amount of all government securities outstanding."], "inland": ["Of or concerned with matters within the boundaries of a nation, as opposed to its relations with other nations.", "In or toward the interior of a country, away from the sea or the frontier.", "Away from the ocean or from open water.", "Limited to the land, or to inland routes; not passing on, or over, the sea."], "upcountry": ["In or toward the interior of a country, away from the sea or the frontier."], "seaward": ["Facing toward the sea.", "Toward the sea."], "seawards": ["Toward the sea."], "asea": ["Toward the sea."], "insoul": ["To endow with a soul."], "ensoul": ["To endow with a soul."], "nosegay": ["A small bunch of flowers typically given as a gift and often held together by a string around the flower stems."], "posey": ["A small bunch of flowers typically given as a gift and often held together by a string around the flower stems."], "posie": ["A small bunch of flowers typically given as a gift and often held together by a string around the flower stems."], "posy": ["A small bunch of flowers typically given as a gift and often held together by a string around the flower stems."], "tussie-mussie": ["A small bunch of flowers typically given as a gift and often held together by a string around the flower stems."], "flower bouquet": ["A small bunch of flowers typically given as a gift and often held together by a string around the flower stems."], "bouquet": ["A small bunch of flowers typically given as a gift and often held together by a string around the flower stems."], "backpedal": ["To retreat or withdraw from a formerly made statement or formerly held position."], "frugalista": ["A person who has a frugal lifestyle while being fashion and in good health."], "zymosis": ["Any enzymatic transformation of organic substrates, especially carbohydrates, generally accompanied by the evolution of gas."], "working elephant": ["Elephant that is used as a working animal, for example to carry heavy loads."], "working animal": ["Animal that is kept by humans and trained to perform tasks."], "rabbit kit": ["Young rabbit."], "rabbit cub": ["Young rabbit."], "zapping": ["The act of changing channels with a remote control."], "zeolite": ["Any of a family of glassy minerals analogous to feldspar containing hydrated aluminum silicates of calcium or sodium or potassium."], "L": ["A cigarette rolled using cannabis."], "optimisation": ["In mathematics, the study of problems in which one seeks to minimize or maximize a real function by systematically choosing the values of variables from within an allowed set."], "Kaqchiquel": ["An indigenous Mesoamerican language and a member of the Quichean-Mamean branch of the Mayan languages family, spoken by the indigenous Kaqchikel people in central Guatemala."], "zoanthropy": ["A kind of monomania in which the patient believes himself transformed into one of the lower animals."], "VSD": ["Pathological hole in the heart septum, connecting the 2 ventricles."], "ventricular septal defect": ["Pathological hole in the heart septum, connecting the 2 ventricles."], "interventricular septal defect": ["Pathological hole in the heart septum, connecting the 2 ventricles."], "islet": ["A small island."], "zwitterion": ["Ion which has a negative and positive charge."], "zonal": ["Of or pertaining to a zone."], "zoisite": ["A calcium-aluminum-silicate belonging to the epidote group of minerals."], "mood": ["Grammatical category that manifests the reality or intent degree of a verb.", "A mental or emotional state."], "Yankee": ["An inhabitant of the Northern States as distinguished from a Southerner, also applied sometimes by foreigners to any inhabitant of the United States."], "sleep apnea": ["A sleep disorder characterized by pauses in breathing during sleep, lasting at least 10 seconds."], "\u01c1Ani": ["A Khoisan language of Botswana with uvular clicks, one of the Kxoe dialects."], "\u01c1Ani-kxoe": ["A Khoisan language of Botswana with uvular clicks, one of the Kxoe dialects."], "\u01c0Anda": ["A Khoisan language of Botswana with uvular clicks, one of the Kxoe dialects."], "Byzantine": ["Of or relating to Byzantium.", "Excessively subtile or intricate."], "pointless": ["Relating to an argument, senseless or without defined meaning."], "byzantine": ["Excessively subtile or intricate."], "ad-supported": ["Financed by the display of advertisements."], "yearbook": ["A reference book that is published regularly once every year."], "orthotopic": ["In the normal or usual anatomical position."], "heterotopic": ["In an abnormal or unusual anatomical position."], "St. Martin's Day": ["The feast day of Martin of Tours on November 11."], "dickey bird": ["A small bird."], "dickey": ["A small bird."], "liquid petroleum": ["Oil which derives from petroleum and is made up of hydrocarbons."], "petrodollar": ["A United States dollar earned by a country through the sale of petroleum."], "folks": ["A cultural community connected by the same language and ancestory."], "youngster": ["A young person."], "yielding": ["Inclined to yield to argument or influence or control."], "yesterday morning": ["In the morning of the day before today."], "yesterday evening": ["On the evening of the day before today."], "yesterday noon": ["On the noon of the day before today."], "yesterday afternoon": ["On the afternoon of the day before today."], "presumption": ["That which one holds to be true; the acceptance of a fact, opinion, or assertion as real or true despite a lack of strong evidence or knowledge."], "wafer": ["Thin disk of unleavened bread used in a religious service, especially in the celebration of the eucharist.", "A thin, crisp, flat, dry and sweet biscuit, often with a patterned surface."], "trumpeter": ["A musician that plays the trumpet."], "trumpet player": ["A musician that plays the trumpet."], "trumpetress": ["A woman who plays the trumpet."], "English-speaking": ["Speaking the English language."], "Spanish-speaking": ["Speaking the Spanish language."], "Arabic-speaking": ["Speaking the Arabic language."], "Urdu-speaking": ["Speaking the Urdu language."], "Berber-speaking": ["Speaking the Berber language."], "Turkish-speaking": ["Speaking the Turkish language."], "Catalan-speaking": ["Speaking the Catalan language."], "Danish-speaking": ["Speaking the Danish language."], "Greek-speaking": ["Speaking the Greek language."], "Italian-speaking": ["Speaking the Italian language."], "Lingala-speaking": ["Speaking the Lingala language."], "Dutch-speaking": ["Speaking the Dutch language."], "Occitan-speaking": ["Speaking the Occitan language."], "Russian-speaking": ["Speaking the Russian language."], "Chinese-speaking": ["Speaking the Chinese language."], "Swedish-speaking": ["Speaking the Swedish language."], "Swahili-speaking": ["Speaking the Swahili language."], "Hindi-speaking": ["Speaking the Hindi language."], "Esperanto-speaking": ["Speaking the Esperanto language."], "water softening": ["Reduction of the hardness of water by removing hardness-forming ions."], "lovage": ["A perennial plant of the Apiaceae family, up to 1 meter high, the leaves and seeds of which are used to flavor food."], "high-rise": ["Any tall, multistoried structure or edifice that is equipped with elevators."], "hunch": ["An impression that something might be the case."], "suspicion": ["Lack of trust, suspicious and cautious attitude.", "An impression that something might be the case."], "Sranan Tongo": ["A creole language spoken in Suriname."], "Suriname Creole": ["A creole language spoken in Suriname."], "Taki Taki": ["A creole language spoken in Suriname."], "Eastern long-beaked echidna": ["A species of the genus Zaglossus living in the mountains of New Guinea, having five claws on its fore feet and four on its hind feet, weighting between 5\u201310 kg with a length ranging from 60\u2013100 cm."], "Barton's long-beaked echidna": ["A species of the genus Zaglossus living in the mountains of New Guinea, having five claws on its fore feet and four on its hind feet, weighting between 5\u201310 kg with a length ranging from 60\u2013100 cm."], "Barton's echidna": ["A species of the genus Zaglossus living in the mountains of New Guinea, having five claws on its fore feet and four on its hind feet, weighting between 5\u201310 kg with a length ranging from 60\u2013100 cm."], "xanthoma": ["(medicine) A skin disease marked by the development of irregular yellowish patches upon the skin."], "xerographic": ["Of or relating to xerography."], "xerophilous": ["Drought-loving; able withstand the absence or lack of moisture."], "sauce boat": ["A small recipient with a handle and a spout that is used to serve sauce and gravy at the table."], "sauci\u00e8re": ["A small recipient with a handle and a spout that is used to serve sauce and gravy at the table."], "tureen": ["A serving dish for soups or stews."], "dale": ["Any low-lying land bordered by higher ground; especially an elongate, relatively large, gently sloping depression of the Earth's surface, commonly situated between two mountains or between ranges of hills or mountains, and often containing a stream with an outlet."], "Spanish Maquis": ["Spanish guerrillas who fought Francisco Franco's dictatorial regime from the conclusion of the Spanish Civil War until 1965."], "relay antenna": ["Transmitter-receiver for mobile communication used to convert in both ways electromagnetic signals into electrical signals."], "xerosis": ["(Medicine) Excessive dryness."], "xylem": ["The woody part of plants: the supporting and water-conducting tissue."], "by heart": ["Completely and faithfully, refering to something that has been learnt and memorized."], "by memory": ["Completely and faithfully, refering to something that has been learnt and memorized."], "stand up": ["To not show up at an appointment.", "To rise from a lying or sitting position."], "Iberia": ["A peninsula located in southwestern Europe, joined with the continent by the Pyrenees mountains and bordered in the east by the Atlantic Ocean, in the west by the Mediterranean Sea, and in the south by the Strait of Gibraltar."], "Iberian Peninsula": ["A peninsula located in southwestern Europe, joined with the continent by the Pyrenees mountains and bordered in the east by the Atlantic Ocean, in the west by the Mediterranean Sea, and in the south by the Strait of Gibraltar."], "Hispania": ["All of the provinces of ancient Rome in which the Iberian peninsula was divided."], "by rote": ["Completely and faithfully, refering to something that has been learnt and memorized."], "common sole": ["A species of fish in the Soleidae family, found in the Eastern Atlantic ocean, from the south of Norway to Senegal, and in almost all of the Mediterranean Sea."], "Dove sole": ["A species of fish in the Soleidae family, found in the Eastern Atlantic ocean, from the south of Norway to Senegal, and in almost all of the Mediterranean Sea."], "Wagnerian": ["Of or resembling the music or style of the German composer Richard Wagner.", "Of or resembling the music or style of the German composer Richard Wagner."], "Wagnerism": ["An attachment, sometimes fanatical, to the music of Wagner."], "wail": ["A cry of sorrow and grief."], "lamentation": ["A cry of sorrow and grief."], "plaint": ["A cry of sorrow and grief."], "waistband": ["The band which encompasses the waist; esp., one on the upper part of breeches, trousers, pantaloons, skirts, or the like."], "girdle": ["The band which encompasses the waist; esp., one on the upper part of breeches, trousers, pantaloons, skirts, or the like."], "cincture": ["The band which encompasses the waist; esp., one on the upper part of breeches, trousers, pantaloons, skirts, or the like."], "sash": ["The band which encompasses the waist; esp., one on the upper part of breeches, trousers, pantaloons, skirts, or the like."], "waistcloth": ["The band which encompasses the waist; esp., one on the upper part of breeches, trousers, pantaloons, skirts, or the like."], "walkie-talkie": ["Small portable radio link, receiver and transmitter."], "walky-talky": ["Small portable radio link, receiver and transmitter."], "wander": ["To move about aimlessly or without any destination."], "bullshit": ["Something being said without sense, utterly wrong, of no use at all."], "warily": ["In a wary manner."], "gourmet food": ["Non-everyday food of high quality or specially prepared food, for example caviar, oysters, frogs' legs, salads or wines."], "fine food": ["Non-everyday food of high quality or specially prepared food, for example caviar, oysters, frogs' legs, salads or wines."], "specialty food": ["Non-everyday food of high quality or specially prepared food, for example caviar, oysters, frogs' legs, salads or wines."], "warmth": ["The quality or state of being warm."], "warranty": ["A guarantee by a seller to a buyer that in the event of a product requiring repair or remedy of a problem within a certain period after its purchase, the seller will repair the problem at no cost to the buyer."], "warrant": ["A guarantee by a seller to a buyer that in the event of a product requiring repair or remedy of a problem within a certain period after its purchase, the seller will repair the problem at no cost to the buyer."], "warrantee": ["A guarantee by a seller to a buyer that in the event of a product requiring repair or remedy of a problem within a certain period after its purchase, the seller will repair the problem at no cost to the buyer."], "guaranty": ["A guarantee by a seller to a buyer that in the event of a product requiring repair or remedy of a problem within a certain period after its purchase, the seller will repair the problem at no cost to the buyer."], "the great unwashed": ["The mass of a community as distinguished from a special class (elite)."], "wary": ["Characterized by caution.", "Openly distrustful and unwilling to confide."], "guarded": ["Characterized by caution."], "washbowl": ["A bathroom or lavatory sink that is permanently installed and connected to a water supply and drainpipe."], "washbasin": ["A bathroom or lavatory sink that is permanently installed and connected to a water supply and drainpipe."], "washstand": ["A bathroom or lavatory sink that is permanently installed and connected to a water supply and drainpipe."], "dainty": ["An especially delicious comestible."], "culinary delight": ["An especially delicious comestible."], "What's new": ["Please share with me information about recent events."], "cunt": ["The genitalia of a woman."], "twat": ["The genitalia of a woman."], "pussy": ["A cat that is hold as a pet.", "Containing pus.", "The genitalia of a woman."], "snatch": ["The genitalia of a woman."], "slit": ["Line separating the two labia majora in women.", "To make a clean cut through."], "puss": ["A cat that is hold as a pet.", "The genitalia of a woman."], "kitty-cat": ["A cat that is hold as a pet."], "kitty": ["A young cat.", "A cat that is hold as a pet."], "pussycat": ["A cat that is hold as a pet."], "domestic cat": ["A cat that is hold as a pet."], "washing": ["The work of cleansing, usually with water and soap."], "waster": ["A person or thing that wastes time, money, etc."], "timeline": ["A graphical representation of a chronological sequence of events."], "watchmaker": ["Someone who makes or repairs watches."], "horologist": ["Someone who makes or repairs watches."], "horologer": ["Someone who makes or repairs watches."], "clockmaker": ["Someone who makes or repairs watches."], "teaching hospital": ["A hospital affiliated to a university."], "university hospital": ["A hospital affiliated to a university."], "watchtower": ["A tower in which a sentinel is placed to watch for enemies, the approach of danger, or the like."], "flamenco dancer": ["A person who dances flamenco."], "phallus": ["An erect penis."], "watercolour": ["Water-soluble pigment.", "A painting produced with watercolors.", "Paint with watercolors."], "Fiji Hindi": ["An Indo-Iranian language spoken in Fiji by most Fijian citizens of Indian descent."], "Fijian Hindi": ["An Indo-Iranian language spoken in Fiji by most Fijian citizens of Indian descent."], "Humburi Senni": ["Dialect of the Songhay language spoken around the city of Hombori in Mali"], "Songhay of Hombori": ["Dialect of the Songhay language spoken around the city of Hombori in Mali"], "Humburi Senni Songhai": ["Dialect of the Songhay language spoken around the city of Hombori in Mali"], "Humburi Senni Songai": ["Dialect of the Songhay language spoken around the city of Hombori in Mali"], "Icetot": ["A language of the Kuliak subgroup of Nilo-Saharan languages spoken by the Ik people living in the mountains of northeastern Uganda near the border with Kenya."], "Cape Verdean": ["A person from Cape Verde, or of Cape Verdean ancestry."], "aristocracise": ["To convert to aristocracy."], "aristocracize": ["To convert to aristocracy."], "inside and outside": ["The two sides of an object."], "atrial septal defect": ["Pathological hole in the heart septum, connecting the 2 atria."], "interatrial septal defect": ["Pathological hole in the heart septum, connecting the 2 atria."], "ASD": ["Pathological hole in the heart septum, connecting the 2 atria."], "fellatio": ["The oral stimulation of the penis; fellatio."], "blowjob": ["The oral stimulation of the penis; fellatio."], "cock sucking": ["The oral stimulation of the penis; fellatio."], "fellation": ["The oral stimulation of the penis; fellatio."], "cunnilingus": ["The oral stimulation of the vulva or clitoris."], "cunnilinctus": ["The oral stimulation of the vulva or clitoris."], "wattmeter": ["An instrument for measuring power in watts, much used in measuring the energy of an electric current."], "wayward": ["Resistant to guidance or discipline."], "headstrong": ["Resistant to guidance or discipline."], "weakling": ["A physically weak or feeble person.", "A person of weak character who lacks courage and/or moral strength."], "wuss": ["A person of weak character who lacks courage and/or moral strength."], "doormat": ["A flat object for wiping one\u2019s shoes, laid on the floor immediately outside or inside the entrance to a building."], "unshod": ["Not wearing shoes.", "Of a horse: Not wearing horseshoes."], "unshoed": ["Not wearing shoes."], "shod": ["Wearing shoes.", "Of a horse: Wearing horseshoes."], "dry milk": ["Dairy product in powder form which is made by dehyrating milk."], "Murnau am Staffelsee": ["A market town in the district of Garmisch-Partenkirchen, in the Oberbayern region of Bavaria, Germany."], "Murnau": ["A market town in the district of Garmisch-Partenkirchen, in the Oberbayern region of Bavaria, Germany."], "Baltic languages": ["A group of related languages belonging to the Indo-European language family and spoken mainly in areas extending east and southeast of the Baltic Sea in Northern Europe."], "Wagiman": ["A near-extinct indigenous Australian language spoken in and around Pine Creek, in the Katherine Region of the Northern Territory."], "Wakiman": ["A near-extinct indigenous Australian language spoken in and around Pine Creek, in the Katherine Region of the Northern Territory."], "Wogeman": ["A near-extinct indigenous Australian language spoken in and around Pine Creek, in the Katherine Region of the Northern Territory."], "Swabian Alb": ["A low mountain range in Baden-W\u00fcrttemberg, Germany, extending 220 km from southwest to northeast and 40 to 70 km in width."], "Swabian Jura": ["A low mountain range in Baden-W\u00fcrttemberg, Germany, extending 220 km from southwest to northeast and 40 to 70 km in width."], "Swabian Mountains": ["A low mountain range in Baden-W\u00fcrttemberg, Germany, extending 220 km from southwest to northeast and 40 to 70 km in width."], "Tajiki Arabic": ["A variety of Arabic spoken by a few thousand people in Afghanistan and Tajikistan."], "Jugari": ["A variety of Arabic spoken by a few thousand people in Afghanistan and Tajikistan."], "Bukhara Arabic": ["A variety of Arabic spoken by a few thousand people in Afghanistan and Tajikistan."], "Buxara Arabic": ["A variety of Arabic spoken by a few thousand people in Afghanistan and Tajikistan."], "Tajiji Arabic": ["A variety of Arabic spoken by a few thousand people in Afghanistan and Tajikistan."], "Balkh Arabic": ["A variety of Arabic spoken by a few thousand people in Afghanistan and Tajikistan."], "wimp": ["A person of weak character who lacks courage and/or moral strength."], "pansy": ["A person of weak character who lacks courage and/or moral strength.", "A plant of the genus Viola having four upswept petals and a broader one pointing downward."], "sissy": ["A person of weak character who lacks courage and/or moral strength.", "Having unsuitable feminine qualities."], "Saint Lucian Creole": ["A Antillean creole language spoken in Saint Lucia, Dominica, Grenada and Trinidad and Tobago."], "washcloth": ["A small rectangular piece of cloth, often formed like a pouch, that is made of terrycloth and used to wash one's body."], "Algerian Arabic": ["An Arabic language of the Maghrebi Arabic group spoken in Algeria."], "Algerian Saharan Arabic": ["A variety of Arabic of the Bedouin group spoken by about 100,000 people in Algeria, predominantly along the Moroccan border with the Atlas mountains range."], "Saharan Arabic": ["A variety of Arabic of the Bedouin group spoken by about 100,000 people in Algeria, predominantly along the Moroccan border with the Atlas mountains range."], "Tamanrasset Arabic": ["A variety of Arabic of the Bedouin group spoken by about 100,000 people in Algeria, predominantly along the Moroccan border with the Atlas mountains range."], "Tamanghasset Arabic": ["A variety of Arabic of the Bedouin group spoken by about 100,000 people in Algeria, predominantly along the Moroccan border with the Atlas mountains range."], "infectious agent": ["Any disease-producing agent or microorganism."], "carbon tax": ["Compulsory charges levied on fuels to reduce the output of carbon dioxide (CO2)."], "Baharna Arabic": ["A variety of Arabic spoken by the Bahranis of Bahrain and some parts of Saudi Eastern Province, and also in Oman."], "Bahrani Arabic": ["A variety of Arabic spoken by the Bahranis of Bahrain and some parts of Saudi Eastern Province, and also in Oman."], "Baharnah": ["A variety of Arabic spoken by the Bahranis of Bahrain and some parts of Saudi Eastern Province, and also in Oman."], "Bahrani": ["A variety of Arabic spoken by the Bahranis of Bahrain and some parts of Saudi Eastern Province, and also in Oman."], "GMO": ["An organism that has undergone external processes by which its basic set of genes has been altered."], "Upper Guinea Creole": ["A group of Portuguese-based creoles spoken around Cape Verde and Guinea-Bissau."], "Upper Guinea Creole Spoken": ["Variants of the Upper Guinea Creole used in oral communication."], "chestnut cream": ["Cream made of chestnuts and, often, sugar and vanilla."], "sandy beach": ["A beach that consists of sand."], "stockinged": ["Wearing stockings."], "unstockinged": ["Not wearing stockings."], "level crossing": ["A point where a railway line crosses a road or a path on one level (that is, without a tunnel or a bridge)."], "railroad crossing": ["A point where a railway line crosses a road or a path on one level (that is, without a tunnel or a bridge)."], "road through railroad": ["A point where a railway line crosses a road or a path on one level (that is, without a tunnel or a bridge)."], "train crossing": ["A point where a railway line crosses a road or a path on one level (that is, without a tunnel or a bridge)."], "grade crossing": ["A point where a railway line crosses a road or a path on one level (that is, without a tunnel or a bridge)."], "weakening": ["Becoming weaker."], "wtf": ["Exclamation of amazement."], "what the fuck": ["Exclamation of amazement."], "as of now": ["Starting at this moment and continuing indefinitely."], "henceforth": ["Starting at this moment and continuing indefinitely."], "henceforward": ["Starting at this moment and continuing indefinitely."], "penitence": ["An act of atonement for a sin or wrongdoing."], "horizontal": ["Parallel to or in the plane of the horizon or a base line."], "horizontally": ["In a horizontal direction or position."], "happy as a sandboy": ["Extremely happy."], "happy as a king": ["Extremely happy."], "happy as a clam": ["Extremely happy."], "happy as a clam at high tide": ["Extremely happy."], "happy as a lark": ["Extremely happy."], "happy as can be": ["Extremely happy."], "crossbill": ["A bird genus in the finch family having mandibles crossing at their tips."], "over the moon": ["Extremely happy."], "lab": ["A room or building with scientific equipment for doing scientific tests or for teaching science, or a place where chemicals or medicines are produced."], "delighted": ["Very happy."], "educatress": ["A woman who educates, esp. a teacher, principal, or other person involved in planning or directing education."], "female educator": ["A woman who educates, esp. a teacher, principal, or other person involved in planning or directing education."], "male educator": ["A man who educates, esp. a teacher, principal, or other person involved in planning or directing education."], "horseflesh": ["The meat of a horse, usually for human consumption."], "horsemeat": ["The meat of a horse, usually for human consumption."], "hippophagy": ["The consumption of horsemeat."], "hippophagism": ["The consumption of horsemeat."], "weakness": ["The quality or state of being weak."], "feebleness": ["The quality or state of being weak."], "wearily": ["In a weary manner."], "weekly": ["A publication issued once in seven days, or appearing once a week.", "Done, produced, or happening once a week."], "weep": ["To shed tears due to the impact of an emotion."], "weird": ["Of strange or extraordinary character."], "unearthly": ["Of strange or extraordinary character."], "unnatural": ["Of strange or extraordinary character."], "weldability": ["Refers to a material its ability to be welded.", "Refers to a material its ability to be welded."], "oenophilia": ["The love of wine."], "wine fault": ["An undesirable gustatory, olfactory or optical characteristic of wine, often resulting from poor winemaking practices or storage conditions."], "wine defect": ["An undesirable gustatory, olfactory or optical characteristic of wine, often resulting from poor winemaking practices or storage conditions."], "lungless": ["Not having lungs."], "eyeless": ["Not having eyes."], "whaler": ["A seaman who works on a ship that hunts whales.", "A ship engaged in whale fishing."], "whaling ship": ["A ship engaged in whale fishing."], "barc": ["A sailing ship with three or more masts, fore-and-aft sails on the aftermost mast and square sails on all other masts."], "wheelbase": ["The distance between the center of the front wheels and the center of the rear wheels."], "ampul": ["A small hermetically sealed glass vial containing a sterile chemical substance suitable for injection."], "vial": ["A small bottle."], "cesspool": ["A reservoir for faeces that are used as manure."], "cesspit": ["A reservoir for faeces that are used as manure."], "track width": ["The distance between the right and the left wheels of an axle."], "whence": ["From which place?", "From which place."], "wherefrom": ["From which place?"], "whenever": ["At every or any time."], "whensoever": ["At every or any time."], "campfire": ["A small, controlled outdoor fire."], "Coptic Egyptian": ["A direct descendant of the ancient Egyptian language."], "workday": ["A day of a week in which work is done."], "steering wheel": ["A circular object used to steer certain types of vehicles."], "novel adaptation": ["The transfer of a novel to a feature film."], "persimmon": ["Edible fruit of a number of species of trees of the genus Diospyros in the ebony wood family."], "kaki": ["Edible fruit of a number of species of trees of the genus Diospyros in the ebony wood family."], "Japanese persimmon": ["Edible fruit of a number of species of trees of the genus Diospyros in the ebony wood family."], "Asian persimmon": ["Edible fruit of a number of species of trees of the genus Diospyros in the ebony wood family."], "mulching": ["The spreading of leaves, straw or other loose material on the ground to prevent erosion, evaporation or freezing of plant roots."], "gas station": ["A place where petrol and other supplies for motorists are sold."], "millage tax": ["A tax laid upon the legal or beneficial owner of real property, and apportioned upon the assessed value of his land."], "property tax": ["A tax laid upon the legal or beneficial owner of real property, and apportioned upon the assessed value of his land."], "rial": ["The currency of Yemen."], "domestic sheep": ["A quadrupedal, ruminant mammal kept as livestock for its meat, milk and wool."], "wherever": ["In or at or to what place."], "wheresoever": ["In or at or to what place."], "puppy": ["A young dog."], "whelp": ["A young dog."], "red snapper": ["Reef fish of the snapper family found in the Gulf of Mexico and the southeastern Atlantic coast of the United States."], "whim": ["A sudden, unpredictable change as of one's mind."], "wholeheartedly": ["Fully or completely sincere."], "wholly": ["In a whole or complete manner."], "whore": ["A woman who sells sexual services for money.", "To have sexual relations with prostitutes.", "To offer sexual services in exchange for money."], "harlot": ["A woman who sells sexual services for money."], "strumpet": ["A woman who sells sexual services for money."], "hooker": ["A woman who sells sexual services for money."], "trollop": ["A woman who sells sexual services for money."], "boner": ["An erect penis."], "man reaction": ["An erect penis."], "premiere": ["The first public performance of a play, piece of music or movie."], "dysphemism": ["An offensive or disparaging expression that is substituted for an inoffensive one.", "The use of an offensive or disparaging expression that is substituted for an inoffensive one."], "dysphemistic": ["Substituting a neutral term with a negative one."], "mass noun": ["A noun that normally cannot be counted and thus does not form plurals and presents entities as an indivisible mass."], "uncountable noun": ["A noun that normally cannot be counted and thus does not form plurals and presents entities as an indivisible mass."], "non-count noun": ["A noun that normally cannot be counted and thus does not form plurals and presents entities as an indivisible mass."], "uncountable": ["(of a noun) That cannot be used freely with numbers or the indefinite article."], "brothel": ["A facility in which sexual services are offered for money."], "sparerib": ["A cut of pork meat including the rib bones."], "whorehouse": ["A facility in which sexual services are offered for money."], "spare rib": ["A cut of pork meat including the rib bones."], "pothead": ["Someone who frequently smokes marijuana."], "Geonames ID": ["The unique numerical Geonames identifier of a geographic unit."], "drums": ["A collection of drums, cymbals and sometimes other percussion instruments arranged for convenient playing by a single drummer."], "oak tree": ["Any tree of the genus Quercus in the order Fagales, characterized by simple, usually lobed leaves, scaly winter buds, a star-shaped pith, and its fruit, the acorn, which is a nut; the wood is tough, hard, and durable, generally having a distinct pattern."], "widening": ["An increase in width."], "broadening": ["An increase in width."], "willemite": ["A zinc silicate mineral."], "willing": ["Ready to do something that is not a matter of course."], "World Factbook URI": ["The Universal Resource Identifier (URI) identifying the World Factbook non-information resource of the country."], "DBpedia resource URI": ["The DBpedia resource URI for a given DM."], "willingly": ["Freely and spontaneously; with pleasure.", "Freely and spontaneously."], "gladly": ["Freely and spontaneously; with pleasure."], "\u0111\u1ed3ng": ["The Vietnamese currency."], "wilting": ["The drying out, drooping, and withering of the leaves of a plant due to inadequate water supply, excessive transpiration, or vascular disease."], "winding": ["Something wound around something else."], "orrery": ["A mechanical device that illustrates the relative positions and motions of the planets and moons in the solar system in a heliocentric model."], "tellurion": ["A model that shows the movements of Earth, Moon and Sun and illustrates the phenomena of day and night change, the seasons, the lunar phases and eclipses."], "tellurian": ["A model that shows the movements of Earth, Moon and Sun and illustrates the phenomena of day and night change, the seasons, the lunar phases and eclipses."], "jovilabium": ["A model of Jupiter and its four moons, Io, Europa, Ganymede and Callisto."], "Io": ["The innermost of the four Galilean moons of the planet Jupiter.", "In Greek mythology, a priestess of Hera in Argos who was seduced by Zeus and changed into a heifer to escape detection."], "thigh-length boot": ["A type of boot that extends above the knees."], "thigh-high boot": ["A type of boot that extends above the knees."], "thigh boot": ["A type of boot that extends above the knees."], "over-the-knee boot": ["A type of boot that extends above the knees."], "Ganymedes": ["In Greek mythology, a son of the Trojan king Tros."], "Callisto": ["The second largest moon of the planet Jupiter.", "In Greek mythology, a nymph of Artemis who was transformed into a bear and set among the stars."], "daytime serial": ["A television serial about the lives of melodramatic characters, which are often filled with strong emotions, highly dramatic situations and suspense."], "Coast Tsimshian": ["A Tsimshianic language spoken by the Tsimshian nation in northwestern British Columbia and southeastern Alaska."], "Tsimshian proper": ["A Tsimshianic language spoken by the Tsimshian nation in northwestern British Columbia and southeastern Alaska."], "Sm'algyax\u0323": ["A Tsimshianic language spoken by the Tsimshian nation in northwestern British Columbia and southeastern Alaska."], "Sm'algax": ["A Tsimshianic language spoken by the Tsimshian nation in northwestern British Columbia and southeastern Alaska."], "Mi'kmaq": ["An Eastern Algonquian language spoken by the Mi'kmaq people in Canada and the United States."], "chewing tobacco": ["A type of tobacco which consists of whole leaves that are placed into the mouth and chewed."], "chew": ["A type of tobacco which consists of whole leaves that are placed into the mouth and chewed.", "To crush with the teeth by repeated closing and opening of the jaws; done to food to soften it and break it down by the action of saliva before it is swallowed."], "chaw": ["A type of tobacco which consists of whole leaves that are placed into the mouth and chewed."], "nicotine": ["An alkaloid found in the nightshade family of plants, especially in the tabacco plant and which is addictive and toxic in larger doses."], "windscreen": ["The front window of an aircraft, automobile, bus, motorcycle, or tram.", "Mat used to protect the plants from the wind."], "wine cellar": ["A cellar for the storage of wine."], "chemise cagoule": ["A heavy nightshirt worn by Catholic men and women during the Middle Ages, with a hole to allow for sexual intercourse with a minimum of physical contact."], "hygienics": ["The study and use of practical measures for the preservation of public health."], "job market": ["The conjuncture of supply and demand for labour in a national economy."], "employment market": ["The conjuncture of supply and demand for labour in a national economy."], "shindig": ["A large and noisy party, gathering or festivity."], "bride-to-be": ["A woman who is engaged to be married."], "groom-to-be": ["A man who is engaged to be married."], "OpenCyc Concept URI": ["The undated URI of the OpenCyc concept corresponding to the Defined Meaning."], "wink": ["To close and reopen both eyes quickly.", "To close and open the eyelid of one eye deliberately, as to convey a message, signal, or suggestion.", "A signal or hint conveyed by winking."], "penile": ["Of or relating to the penis."], "East German": ["Of or relating to Eastern Germany."], "Western German": ["Of or relating to Western Germany."], "bleed to death": ["To die because of massive loss of blood."], "lexical class": ["The category a word is assigned to based on its syntactic function within a specified language."], "word class": ["The category a word is assigned to based on its syntactic function within a specified language."], "bordello": ["A facility in which sexual services are offered for money."], "comparative": ["A degree of comparison of adjectives and adverbs."], "superlative": ["Highest degree of comparison of adjectives and adverbs."], "children's book": ["A book that is written for children."], "children's film": ["A film that is intended for children."], "neuter gender": ["The neutrally determined gender of a kind of word as used by some languages."], "demean": ["To make a person morally inferior."], "degrade": ["To make a person morally inferior.", "To lower the grade or worth of something."], "demeaning": ["Which makes a person morally inferior."], "debasing": ["Which makes a person morally inferior."], "degrading": ["Which makes a person morally inferior."], "wiper": ["One who wipes."], "wisely": ["In a wise manner."], "surfboard": ["A shaped waterproof plank used to surf on waves.", "A wrestling hold in which the wrestler puts one foot on the back of the opponent, pulling back his arms, almost like riding on a surfboard."], "witless": ["Lacking in intelligence."], "stage direction": ["An instruction for an actor or for the director that is written into the script of a play."], "Bernstein's hypothesis": ["A linguistic hypothesis developed by Basil Bernstein in 1958 which is based on the Sapir-Whorf hypothesis and postulates that the language variety used by the middle and upper classes differs from that used by the lower classes."], "elaborated code": ["According to Bernstein's hypothesis, the language variety used by the middle and upper classes which is more complex and less predictable."], "formal language": ["According to Bernstein's hypothesis, the language variety used by the middle and upper classes which is more complex and less predictable."], "restricted code": ["According to Bernstein's hypothesis, the language variety used by the lower classes which is less complex and more predictable."], "public language": ["According to Bernstein's hypothesis, the language variety used by the lower classes which is less complex and more predictable."], "Bari Kakwa": ["A language of the Bari family spoken by the Kakwa people in northwestern Uganda, South Sudan and Orientale province of the Democratic Republic of the Congo."], "Kakua": ["A language of the Bari family spoken by the Kakwa people in northwestern Uganda, South Sudan and Orientale province of the Democratic Republic of the Congo."], "Kwakwak": ["A language of the Bari family spoken by the Kakwa people in northwestern Uganda, South Sudan and Orientale province of the Democratic Republic of the Congo."], "Southern Auvergnat": ["A dialect of Auvergnat spoken in the departments of Cantal, Haute-Loire, a part of Ard\u00e8che and most of Loz\u00e8re."], "Upper Auvergnat": ["A dialect of Auvergnat spoken in the departments of Cantal, Haute-Loire, a part of Ard\u00e8che and most of Loz\u00e8re."], "cecity": ["The condition of being unable to see."], "sightlessness": ["The condition of being unable to see."], "ablepsy": ["The condition of being unable to see."], "radical": ["Going completely and thoroughly to the root or source."], "rolled dough": ["Piece of dough that has been flattened with a rolling pin."], "rolled-out pastry": ["Piece of dough that has been flattened with a rolling pin."], "wollastonite": ["A calcium inosilicate mineral."], "martyr": ["A man who suffers for the sake of principle.", "A person who suffers for the sake of principle."], "bra": ["An item of women's underwear designed to support and elevate the breasts."], "brassiere": ["An item of women's underwear designed to support and elevate the breasts."], "uxoricide": ["The murder of one's wife.", "A husband who murders his wife."], "uxoricidal": ["Of, pertaining to or tending to uxoricide."], "Cuban Spanish": ["A Spanish language dialect of the Americano-S branch."], "Chilean Spanish": ["A Spanish language dialect of the Americano-S branch."], "matricide": ["The killing of one's mother.", "One who kills one's mother."], "Ecuadorian Spanish": ["A Spanish language dialect of the Americano-S branch."], "matricidal": ["Of, pertaining to or tending to matricide."], "mariticide": ["The killing of one's spouse.", "The murder of a husband by his wife.", "A woman who has killed her husband."], "mariticidal": ["Of, pertaining to or tending to mariticide."], "Uruguayan Spanish": ["A Spanish language dialect of the Americano-S branch."], "nemesis": ["A righteous infliction of retribution through an appropriate agent."], "Nemesis": ["The goddess of divine retribution and vengeance in Greek mythology; punishes hubris."], "let the buyer beware": ["A warning to anyone buying something that there might be unforeseen problems or faults with what is bought."], "compliant": ["In accordance with a set of specifications."], "brainiac": ["An intelligent person."], "mastermind": ["An intelligent person."], "Einstein": ["An intelligent person."], "einstein": ["Unit of measurement for the number of photons."], "depressor": ["Muscle whose function is to pull down the parts of the body to which it is connected.", "(For a muscle) Whose function is to pull down the parts of the body to which it is connected."], "simpleton": ["A person with poor judgment or little intelligence."], "depressor muscle": ["Muscle whose function is to pull down the parts of the body to which it is connected."], "tongue depressor": ["Device used to depress and maintain the tongue in order to examine the back of the mouth and the throat."], "workbench": ["A strong worktable for a carpenter or mechanic."], "worker": ["A person who works."], "flap": ["A hinged leaf, as of a table or shutter. (Webster, 1913)", "The motion of anything broad and loose, or a stroke or sound made with it; as, the flap of a sail or of a wing. (Webster 1913)"], "world-wide": ["Involving the entire earth; not limited or provincial in scope.", "All around the world, international, involving everyone in the world."], "worrisome": ["Not reassuring."], "unreassuring": ["Not reassuring."], "worshipper": ["A person who worships, especially at a place of assembly for religious services."], "nationalistic": ["Pertaining to nationalism."], "parity": ["Numerical equality."], "Sapir-Whorf hypothesis": ["In linguistics a hypothesis which states that a person's native tongue influences the way he thinks and behaves."], "camper": ["A motor vehicle with interior furnishings suitable for living.", "A person living temporarily in a tent or lodge for recreation."], "motorhome": ["A motor vehicle with interior furnishings suitable for living."], "motor caravan": ["A motor vehicle with interior furnishings suitable for living."], "buddy": ["Close friend."], "worthwhile": ["Sufficiently valuable to justify the investment of time or interest."], "motion-picture photography": ["The discipline of making lighting and camera choices when recording photographic images for the cinema."], "freebase": ["To use purified cocaine by burning it and inhaling the fumes."], "veganism": ["A way of life which strictly avoids use of any kind of animal for any purpose."], "next to": ["Having the position next to a given place, location or object"], "acquiescent": ["Willing to carry out the orders or wishes of another without protest."], "biddable": ["Willing to carry out the orders or wishes of another without protest."], "contrabandist": ["A man who imports or exports without paying the lawful customs charges or duties.", "A woman who imports or exports without paying the lawful customs charges or duties.", "Someone who imports or exports without paying the lawful customs charges or duties."], "runner": ["A man who imports or exports without paying the lawful customs charges or duties.", "A woman who imports or exports without paying the lawful customs charges or duties.", "Someone who imports or exports without paying the lawful customs charges or duties.", "Someone who travels on foot by running.", "A trained athlete who competes in foot races."], "moon curser": ["A man who imports or exports without paying the lawful customs charges or duties.", "A woman who imports or exports without paying the lawful customs charges or duties.", "Someone who imports or exports without paying the lawful customs charges or duties."], "moon-curser": ["A man who imports or exports without paying the lawful customs charges or duties.", "A woman who imports or exports without paying the lawful customs charges or duties.", "Someone who imports or exports without paying the lawful customs charges or duties."], "patent ductus arteriosus": ["Pathology consisting in that the foetal communication between the pulmonary artery and the aorta has not been closed."], "PDA": ["Pathology consisting in that the foetal communication between the pulmonary artery and the aorta has not been closed."], "cheek pouch": ["Pouch located on each side of the mouth, between the cheeks and the jaw, in several mammals who use it to store their food for a short time."], "TLD": ["The last part of an Internet domain name; that is, the letters which follow the final dot of any domain name."], "NTP": ["A protocol for synchronizing the clocks of computer systems over packet-switched, variable-latency data networks."], "grid pattern": ["A pattern of regularly spaced horizontal and vertical lines."], "plucked string instrument": ["A string instrument that is played by plucking its strings."], "plucked instrument": ["A string instrument that is played by plucking its strings."], "bowed instrument": ["A string instrument that is played by bowing its strings with a bow or a wheel."], "bowed string instrument": ["A string instrument that is played by bowing its strings with a bow or a wheel."], "stringed instrument": ["A musical instrument on which sounds are produced by setting strings in vibration."], "low-grade": ["Of lower quality."], "vocalist": ["A male person who sings, is able to sing, or earns a living by singing.", "A person who sings, is able to sing, or earns a living by singing."], "apostolic administrator": ["A prelate appointed by the Pope to serve as the ordinary for an apostolic administration of the Roman Catholic Church."], "fleece": ["To remove the fleece from a sheep etc. by clipping.", "To ask an unreasonable price."], "wrapping": ["All products made of any materials of any nature to be used for the containment, protection, handling, delivery and presentation of goods, from raw materials to processed goods, from the producer to the user or the consumer."], "wristband": ["A strip of material worn around the wrist to absorb perspiration, especially in sports."], "writing": ["Material of any kind, regardless of physical form, which furnishes information, evidence or ideas, including items such as contracts, bills of sale, letters, audio and video recordings, and machine readable data files.", "A system of characters used to write one or several languages.", "The art of writing with the hand and a writing instrument."], "wronly": ["Deviating from what is considered right or proper or good."], "wrongly": ["Not adhering to ethical or moral principles.", "In a wrong manner."], "point of view": ["The position from which an object is looked at.", "The mental position from which things are viewed."], "standpoint": ["The mental position from which things are viewed."], "ingenue": ["An innocent, unsophisticated, na\u00efve girl or young woman.", "The role of an innocent, artless young woman in a play."], "ing\u00e9nue": ["An innocent, unsophisticated, na\u00efve girl or young woman.", "The role of an innocent, artless young woman in a play."], "spinster": ["Someone who gives a positive interpretation to events.", "An elderly unmarried woman.", "Someone who spins (who twists fibers into threads)."], "old maid": ["An elderly unmarried woman."], "spinner": ["Someone who spins (who twists fibers into threads)."], "thread maker": ["Someone who spins (who twists fibers into threads)."], "jocose": ["Playful and characterized by jokes."], "illusionist": ["Someone who performs magic tricks to amuse an audience."], "prestidigitator": ["Someone who performs magic tricks to amuse an audience."], "pessimist": ["A person who expects the worst and looks on the downside of things."], "optimist": ["A person who expects the best and looks on the upside of things."], "insectivorous": ["(For an animal) Feeding on insects.", "(Of a plant) Capable of trapping and absorbing insects."], "logging": ["The act or process of felling or uprooting standing trees."], "animal slaughter": ["The killing and butchering of animals for food or other animal products."], "deluge": ["An extreme heavy shower."], "torrent": ["An extreme heavy shower."], "every evening": ["Taking place every evening."], "deem": ["To have as an opinion.", "To account; to esteem; to think; to judge; to hold in opinion; to regard. (Source Webster 1913)"], "worrywart": ["A person who expects the worst and looks on the downside of things."], "alarmist": ["A person who expects the worst and looks on the downside of things.", "A person who alarms others needlessly."], "unlicensed viewer": ["Someone who watches TV illegaly, that is to say without paying fees although it is demanded."], "merchant of doom": ["A person that predicts future misfortunes."], "hold in opinion": ["To account; to esteem; to think; to judge; to hold in opinion; to regard. (Source Webster 1913)"], "yes man": ["A person who categorically agrees to stay in someone's good favor."], "yes-man": ["A person who categorically agrees to stay in someone's good favor."], "Computer Engineering": ["The discipline that embodies the science and technology of design, construction, implementation, and maintenance of software and hardware components of modern computing systems and computer-controlled equipment. (Source: ACM)"], "Electronic and Computer Engineering": ["The discipline that embodies the science and technology of design, construction, implementation, and maintenance of software and hardware components of modern computing systems and computer-controlled equipment. (Source: ACM)"], "Computer Systems Engineering": ["The discipline that embodies the science and technology of design, construction, implementation, and maintenance of software and hardware components of modern computing systems and computer-controlled equipment. (Source: ACM)"], "splendid": ["Of the highest quality."], "fantabulous": ["Of the highest quality."], "nope": ["A word used to show disagreement of something."], "bastardize": ["To cause the natural qualities of a race, or a species to be lost."], "bastardization": ["Act or process of causing the natural qualities of a race, or a species to be lost."], "bastardisation": ["Act or process of causing the natural qualities of a race, or a species to be lost."], "bastardise": ["To cause the natural qualities of a race, or a species to be lost."], "proof-of-concept": ["A short and/or incomplete realization of a certain method or idea(s) to demonstrate its feasibility."], "wulfenite": ["A lead molybdate with the chemical formula PbMoO4."], "verbal abuse": ["Coarse, insulting speech or expression."], "vacillation": ["Indecision in speech or action.", "Changing location by moving back and forth."], "wavering": ["Indecision in speech or action."], "swinging": ["Changing location by moving back and forth."], "first-class": ["Of the highest quality."], "gait": ["Manner of walking or stepping; bearing or carriage while moving. (Webster 1913)", "A manner of walking."], "paved": ["Covered with a firm surface."], "unpaved": ["Not having a paved surface."], "crony": ["Close friend."], "vamp": ["A seductive woman who uses her sex appeal to exploit men."], "coquette": ["A seductive woman who uses her sex appeal to exploit men."], "hay chute": ["Opening in an attic above a stable, through which hay is thrown."], "hay-chute": ["Opening in an attic above a stable, through which hay is thrown."], "vandalic": ["Of or pertaining to vandalism."], "vanilla": ["Any tropical, climbing orchid of the genus Vanilla (especially Vanilla planifolia), bearing podlike fruit yielding an extract used in flavoring food or in perfumes.", "A flavoring derived from orchids of the genus Vanilla native to Mexico"], "nonproprietary": ["Not protected by trademark.", "Not protected by trademark or patent or copyright."], "generic product": ["Any product that can be sold without a brand name."], "in the future": ["In the future."], "vanilla planifolia": ["Any tropical, climbing orchid of the genus Vanilla (especially Vanilla planifolia), bearing podlike fruit yielding an extract used in flavoring food or in perfumes."], "icicle": ["A spike of ice that forms when water dripping an object freezes."], "vanity": ["Feeling of excessive pride.", "The quality of being valueless or futile.", "Low table with mirror or mirrors where one sits while dressing or applying makeup."], "vacuity": ["The quality of being valueless or futile."], "dressing table": ["Low table with mirror or mirrors where one sits while dressing or applying makeup."], "toilet table": ["Low table with mirror or mirrors where one sits while dressing or applying makeup."], "vaporization": ["Conversion from a liquid or solid state to a vapour."], "vaporizer": ["A device used to vaporize a liquid."], "vaporous": ["Resembling or characteristic of vapor."], "sea-buckthorn": ["A deciduous shrub in the genus Hippophae, 0.5 to 6 m tall typically occuring in dry, sandy areas."], "sea buckthorn": ["A deciduous shrub in the genus Hippophae, 0.5 to 6 m tall typically occuring in dry, sandy areas."], "seabuckthorn": ["A deciduous shrub in the genus Hippophae, 0.5 to 6 m tall typically occuring in dry, sandy areas."], "sandthorn": ["A deciduous shrub in the genus Hippophae, 0.5 to 6 m tall typically occuring in dry, sandy areas."], "seaberry": ["A deciduous shrub in the genus Hippophae, 0.5 to 6 m tall typically occuring in dry, sandy areas."], "common sea-buckthorn": ["A deciduous shrub in the genus Hippophae, 0.5 to 6 m tall typically occuring in dry, sandy areas."], "Christmassy": ["Pertaining or relating to Christmas."], "Christmasy": ["Pertaining or relating to Christmas."], "lampshade": ["A shade placed over a lamp used to diffuse the light."], "minimal pair": ["A pair of words or phrases in a particular language that differ only in one phoneme."], "close to": ["[Said for a quantity (time, size, place, ...) that is given] in a imprecise way but close to the real value."], "just about": ["[Said for a quantity (time, size, place, ...) that is given] in a imprecise way but close to the real value."], "varactor": ["A type of diode which has a variable capacitance."], "varicap diode": ["A type of diode which has a variable capacitance."], "varactor diode": ["A type of diode which has a variable capacitance."], "variable capacitance diode": ["A type of diode which has a variable capacitance."], "variable reactance diode": ["A type of diode which has a variable capacitance."], "tuning diode": ["A type of diode which has a variable capacitance."], "buying power": ["The value of a currency as measured by the amount of goods one can buy with it."], "formula symbol": ["A symbol used in mathematics, natural science and engineering science for the quantitative and qualitative description of magnitudes and concepts in formulas."], "abat-son": ["Large louver in a church bell tower which directs the sound of the bell toward the ground."], "in future": ["In the future."], "Tell me about it!": ["An idiom used in reply to something someone said that means that it is already known and agreed upon emphatically."], "No change there then!": ["An idiom used in reply to something someone said that means that it is already known and agreed upon emphatically."], "Tell me something I don't know!": ["An idiom used in reply to something someone said that means that it is already known and agreed upon emphatically."], "That's an understatement!": ["An idiom used in reply to something someone said that means that it is already known and agreed upon emphatically."], "deceptiveness": ["Deceptive or false appearance; that which misleads the eye or the mind."], "illusion": ["Deceptive or false appearance; that which misleads the eye or the mind."], "vanguard": ["The leading units moving at the head of an army.", "A creative group active in the innovation and application of new concepts and techniques in a given field, especially in the arts.", "The position of greatest importance or advancement; the leading position in a movement or field."], "van": ["The leading units moving at the head of an army.", "A creative group active in the innovation and application of new concepts and techniques in a given field, especially in the arts."], "avant-garde": ["A creative group active in the innovation and application of new concepts and techniques in a given field, especially in the arts."], "forefront": ["The position of greatest importance or advancement; the leading position in a movement or field."], "new wave": ["A creative group active in the innovation and application of new concepts and techniques in a given field, especially in the arts."], "cutting edge": ["The position of greatest importance or advancement; the leading position in a movement or field."], "advance guard": ["The leading units moving at the head of an army."], "camping bus": ["A motor vehicle with interior furnishings suitable for living."], "inductive": ["Of reasoning: Proceeding from particular facts to a general conclusion."], "toilet lid": ["The upper part of a toilet seat which can be opened and closed."], "elegant gait": ["Elegance in walking; elegance while walking."], "alliteration": ["The repetition of the same sound beginning several words in close succession."], "North German": ["Pertaining to or being from or characteristic of North Germany."], "South German": ["Pertaining to or being from or characteristic of South Germany."], "celestial orbit": ["The path, usually elliptical, described by one celestial body in its revolution about another."], "electron orbit": ["The path of an electron around the nucleus of an atom."], "orbital cavity": ["The bony cavity in the skull containing the eyeball."], "cranial orbit": ["The bony cavity in the skull containing the eyeball."], "eye socket": ["The bony cavity in the skull containing the eyeball."], "circulate": ["To divide or distribute something in an even way.", "To move in circles.", "To cause to become widely known.", "To become widely known and passed on.", "To move through a space, circuit or system, and then return to the starting point (e.g. of blood)."], "pathetic fallacy": ["The treatment of inanimate objects as if they had human feelings, thought, or sensations."], "anthropomorphic fallacy": ["The treatment of inanimate objects as if they had human feelings, thought, or sensations."], "animistic fallacy": ["The logical fallacy of arguing that an event or situation is evidence that someone consciously acted to cause it."], "reification": ["The consideration of an abstract thing as if it were concrete or material."], "hypostatisation": ["The consideration of an abstract thing as if it were concrete or material."], "concretism": ["The consideration of an abstract thing as if it were concrete or material."], "reify": ["To consider (something abstract) as if it had concrete or material existence."], "abatis": ["A fortification obstacle formed of the branches of trees laid in a row, with the sharpened tops directed towards the enemy."], "abattis": ["A fortification obstacle formed of the branches of trees laid in a row, with the sharpened tops directed towards the enemy."], "abbattis": ["A fortification obstacle formed of the branches of trees laid in a row, with the sharpened tops directed towards the enemy."], "thorax": ["The cavity in the vertebrate body enclosed by the ribs between the diaphragm and the neck and containing the lungs and heart.", "The middle of three distinct divisions in an insect, crustacean or arachnid body."], "disquieting": ["Causing anxiety or uneasiness."], "treasure map": ["A map that marks the location of and/or describes the way to a buried treasure, a lost mine, a valuable secret or a hidden locale; more common in fiction than in reality."], "sci-fi": ["A form of literature or film which handles the future."], "genre": ["A manner of expression.", "A category of artistic works characterized by a particular form, style, or purpose."], "variator": ["A mechanical power transmission device that can change its gear ratio continuously, rather than in steps."], "variegated": ["Having a variety of colors."], "varicolored": ["Having a variety of colors."], "varicoloured": ["Having a variety of colors."], "unwaveringly": ["Without showing hesitation, indecision, doubt."], "without hesitation": ["Without showing hesitation, indecision, doubt."], "steadfastly": ["Without showing hesitation, indecision, doubt.", "In a steadfast, decided, resolute, determined way."], "anthroponym": ["A proper noun applied to a human being."], "hodonym": ["A toponym applied to travelways."], "oronym": ["A toponym applied to an elevation of the ground such as a mountain or a mountain range."], "deportment": ["Manner of behaving oneself; manner of acting."], "demeanor": ["Manner of behaving oneself; manner of acting."], "Rheinische Dokumenta": ["A phonetic script, or writing system, designed in the 1980s for the so called Rhinelandic languages in the West Central German group of languages, and some neighboring ones, derived from the variant of the modern Latin script predominant in Germany, Luxembourg, and East Belgium."], "variscite": ["A hydrated aluminium phosphate mineral."], "trope": ["A rhetorical figure of speech in which a word or phrase is used other than in a literal manner."], "rebound": ["A movement back from an impact.", "A reaction to a crisis or setback or frustration.", "The act of securing possession of the rebounding basketball after a missed shot.", "To spring away from an impact.", "To return from a worse to a former better condition."], "recoil": ["A movement back from an impact.", "To spring away from an impact.", "To retreat unwillingly and/or suddenly, often caused by sudden pain, shock, scare, fright, surprise, or similar."], "repercussion": ["A movement back from an impact.", "A consequence or ensuing result of some action."], "bounce": ["To spring away from an impact.", "To hit something so that it bounces."], "backlash": ["A movement back from an impact."], "resile": ["To spring away from an impact."], "rally": ["To return from a worse to a former better condition."], "reverberate": ["To spring away from an impact."], "ricochet": ["To spring away from an impact."], "cataclysmic": ["Being severely destructive."], "cataclysmal": ["Being severely destructive."], "lay waste to": ["To cause extensive destruction or ruin utterly."], "argus-eyed": ["Carefully observant and or attentive."], "open-eyed": ["Carefully observant and or attentive."], "irreversibility": ["The quality of a process that precludes a prior state from being attained again."], "deviate": ["Deviating from the normal or common order, form, or rule.", "To go in a different direction than what is expected."], "stormwater drain": ["A street drainage system building component that serves as intake of surface water on paved surfaces and leads it to underground drainage facilities, such as the sewer tunnel."], "manhole": ["An opening in the ground used to access the sewers or other underground installations."], "utility hole": ["An opening in the ground used to access the sewers or other underground installations."], "maintenance hole": ["An opening in the ground used to access the sewers or other underground installations."], "watercraft": ["A vehicle that is designed to travel through or across water."], "land vehicle": ["A vehicle that travels primarily on land in contact with the surface."], "crook": ["A person that has conducted a criminal act.", "An angle or sharp curve in the course of a road, river, etc."], "varistor": ["An electronic component with a significant non-ohmic current\u2013voltage characteristic."], "abat-vent": ["Device consisting of small parallel and inclined strips, protecting the openings of a building against wind and rain, but allowing air and light in."], "wind screen": ["Mat used to protect the plants from the wind."], "abatvoix": ["The sounding board over a pulpit."], "abat-voix": ["The sounding board over a pulpit."], "abbatial": ["Relating to, or pertaining to an abbey, abbot, or abbess.", "Relating to, or pertaining to an abbot or abbess.", "Relating to, or pertaining to an abbey."], "windshield": ["The front window of an aircraft, automobile, bus, motorcycle, or tram.", "Mat used to protect the plants from the wind."], "rolling stock": ["A powered or unpowered vehicle that moves on a railway."], "railway carriage": ["A railway vehicle that is drawn by a locomotive."], "stampede": ["A headlong rush of people on a common impulse.", "A wild headlong rush of frightened animals."], "rashly": ["In a hasty and foolhardy manner."], "headlong": ["In a hasty and foolhardy manner.", "With the head foremost."], "headfirst": ["With the head foremost."], "cunningly": ["In an artful manner.", "In an attractive manner."], "craftily": ["In an artful manner."], "foxily": ["In an artful manner."], "cutely": ["In an attractive manner."], "knavishly": ["In an artful manner."], "slyly": ["In an artful manner."], "trickily": ["In an artful manner."], "artfully": ["In an artful manner."], "genitalia": ["The sexual organs: the testicles and penis of a male; or the labia, clitoris, and vagina of a female."], "sex organ": ["Any of those parts of the body which are involved in sexual reproduction and constitute the reproductive system in an complex organism."], "varying": ["Marked by diversity or difference."], "changing": ["Marked by diversity or difference."], "sexual organ": ["Any of those parts of the body which are involved in sexual reproduction and constitute the reproductive system in an complex organism."], "external genital organ": ["An externally visible sex organ that is used for sexual intercourse."], "internal genital organ": ["An externally not visible sex organ that is used for reproduction."], "male genital organ": ["A sexual organ of male mammals."], "female genital organ": ["A sexual organ of female mammals."], "crotch": ["An externally visible sex organ that is used for sexual intercourse.", "The area on a person\u2019s body between the legs where they join the trunk."], "private part": ["An externally visible sex organ that is used for sexual intercourse."], "road vehicle": ["A vehicle that is designed to travel on roads."], "closed place": ["Closed area destined to a given purpose."], "enclosed place": ["Closed area destined to a given purpose."], "indoor place": ["Closed area destined to a given purpose."], "grok": ["To get the meaning of something."], "savvy": ["To get the meaning of something.", "The cognitive condition of someone who understands."], "get the picture": ["To get the meaning of something."], "vassal": ["A person who held land from a feudal lord and received protection in return for homage and allegiance.", "Resembling a vassal."], "unagitated": ["Showing no trouble or agitation."], "tranquil": ["Showing no trouble or agitation."], "unclouded": ["Of the weather or the skies: Completely clear and fine."], "clouded": ["Covered with clouds."], "meddle": ["To intrude in other people's affairs or business; interfere unwantedly."], "tamper": ["To intrude in other people's affairs or business; interfere unwantedly."], "take part": ["To join in, to take part, to involve oneself."], "venue": ["Place (locale) of an action or event."], "locale": ["Place (locale) of an action or event.", "A small area of a place."], "good sense": ["Sound practical judgment."], "horse sense": ["Sound practical judgment."], "mother wit": ["Sound practical judgment."], "locality": ["The set of all natural and human-made surroundings that affect individuals, social groupings, and other life.", "A small area of a place."], "urban zone": ["The area within a city or town, as indicated by appropriate traffic signs (or, in the United Kingdom, by the presence of street lights), where different traffic rules are in effect, such as a reduction of the speed limit."], "urban region": ["The area within a city or town, as indicated by appropriate traffic signs (or, in the United Kingdom, by the presence of street lights), where different traffic rules are in effect, such as a reduction of the speed limit."], "unbearable": ["That cannot be borne or endured."], "insufferable": ["That cannot be borne or endured."], "unsupportable": ["That cannot be borne or endured."], "intolerable": ["That cannot be borne or endured."], "insupportable": ["That cannot be borne or endured."], "acceptation": ["The specific meaning in which a word or expression is understood."], "servile": ["Resembling a vassal."], "full of grace": ["Endowed with graces; usually attributed to The Virgin Mary, who received the Grace of God."], "word meaning": ["The specific meaning in which a word or expression is understood."], "word sense": ["The specific meaning in which a word or expression is understood."], "wrapping paper": ["Colorful paper that is used to wrap gifts."], "gift wrap paper": ["Colorful paper that is used to wrap gifts."], "rambunctious": ["Noisy and lacking in restraint or discipline."], "doorpost": ["The frame that supports a door."], "door-post": ["The frame that supports a door."], "door post": ["The frame that supports a door."], "doorjamb": ["The frame that supports a door."], "dork": ["A dull stupid fatuous person."], "chancel": ["The area around the altar of a church for the clergy and choir; often enclosed by a lattice or railing."], "bema": ["The area around the altar of a church for the clergy and choir; often enclosed by a lattice or railing."], "robustious": ["Noisy and lacking in restraint or discipline."], "rumbustious": ["Noisy and lacking in restraint or discipline."], "niggard": ["A person who is stingy and miserly."], "lambswool": ["Wool of a young sheep."], "fathom": ["A linear unit of measurement, equal to 6 feet, for water depth."], "table manners": ["Way of behaving at a table."], "limelight": ["A very bright light obtained by directing an oxyhydrogen flame at a piece of quicklime (calcium oxide).", "A focus of public attention."], "grate": ["Metal framework which holds burning fuel."], "cajolery": ["Flattery intended to persuade."], "blandishment": ["Flattery intended to persuade."], "flattery": ["Flattery intended to persuade."], "sweet-talk": ["To encourage, influence or persuade by effort.", "Flattery intended to persuade."], "hairpiece": ["A false substitute for a person's hair.", "A toupee or wig, usually when worn by a man."], "toupee": ["A false substitute for a person's hair."], "hairbrush": ["A brush for cleansing and smoothing the hair."], "slave rebellion": ["An armed uprising by slaves against their enslavers."], "haddock": ["A marine fish of the North Atlantic, important as a food fish."], "hailstorm": ["A storm accompanied with hail."], "hairbreadth": ["Having the breadth of a hair; very narrow."], "environs": ["The set of all natural and human-made surroundings that affect individuals, social groupings, and other life."], "neighborhood": ["The open set containing given point."], "Herculean": ["Pertaining to, from Herculaneum."], "Hercul\u00e6an": ["Pertaining to, from Herculaneum."], "iconoclasm": ["The deliberate destruction within a culture of the culture's own religious icons and other symbols or monuments, usually for religious or political motives."], "Khmer Surin": ["Dialect of the Khmer language spoken by the Khmer native to the Thai provinces of Surin, Sisaket, Buriram and Roi Et."], "Seychellois Creole": ["French dialect spoken in Seychelles.", "A French-based creole language of Seychelles."], "Seselwa": ["French dialect spoken in Seychelles."], "French of Senegal": ["French dialect spoken in Senegal."], "R\u00e9union Creole": ["A French-based cr\u00e9ole language spoken in R\u00e9union."], "Reunionese Creole": ["A French-based cr\u00e9ole language spoken in R\u00e9union."], "invincibility": ["The quality or state of being invincible."], "invincibleness": ["The quality or state of being invincible."], "indomitability": ["The quality or state of being invincible."], "somnambulist": ["A person suffering from somnambulism or sleepwalking."], "sleepwalker": ["A person suffering from somnambulism or sleepwalking."], "nightwalker": ["A person suffering from somnambulism or sleepwalking."], "juvenesence": ["The state of being young."], "knee-pan": ["A small flat triangular bone in front of the knee that protects the knee joint."], "kneepan": ["A small flat triangular bone in front of the knee that protects the knee joint."], "knee pan": ["A small flat triangular bone in front of the knee that protects the knee joint."], "kneecap": ["A small flat triangular bone in front of the knee that protects the knee joint."], "patella": ["A small flat triangular bone in front of the knee that protects the knee joint."], "properly speaking": ["In actual fact."], "strictly speaking": ["In actual fact."], "to be precise": ["In actual fact."], "in the proper meaning of the word": ["In actual fact."], "old spelling": ["The spelling of a German word before the reform of German orthography of 1996."], "messiness": ["A state of confusion and disorderliness."], "muss": ["A state of confusion and disorderliness."], "mussiness": ["A state of confusion and disorderliness."], "disorderliness": ["A condition in which things are not in their expected places."], "legionary": ["A member of a legion."], "orderliness": ["A condition of regular or proper arrangement."], "legionnaire": ["A member of a legion."], "machiavellian": ["Attempting to achieve what one wants by cunning, scheming and unscrupulous methods."], "stag-hound": ["A hound trained to hunt stags and similar animals."], "staghound": ["A hound trained to hunt stags and similar animals."], "nanna": ["The mother of one of someone's parents."], "oarsmanship": ["Skill as an oarsman."], "monastic order": ["A group of person living under a religious rule."], "order of magnitude": ["A degree in a continuum of size or quantity."], "checker": ["One who verifies."], "nacre": ["A pearly substance which lines the interior of many shells."], "ophthalmia": ["An inflammation of the eye."], "ophthalmitis": ["An inflammation of the eye."], "blazing": ["Without any attempt at concealment; completely obvious.", "Extremely bright."], "clamant": ["Conspicuously and offensively loud; given to vehement outcry."], "clamorous": ["Conspicuously and offensively loud; given to vehement outcry."], "strident": ["Conspicuously and offensively loud; given to vehement outcry."], "vociferous": ["Conspicuously and offensively loud; given to vehement outcry."], "pardonable": ["Not requiring the execution of penalty."], "excusable": ["Not requiring the execution of penalty."], "forgivable": ["Not requiring the execution of penalty."], "venial": ["Not requiring the execution of penalty."], "Old Frankish": ["A West Germanic language formerly spoken by the Franks in areas covering modern Belgium, the Netherlands, Luxembourg and adjacent parts of France and Germany."], "waltz": ["A dance in 3/4 time, performed primarily in closed position.", "To dance a waltz.", "Music composed in triple time for waltzing.", "An assured victory (especially in an election)."], "coming into court": ["The formal attendance (in court or at a hearing) of a party in an action."], "appearing": ["The formal attendance (in court or at a hearing) of a party in an action."], "symbols per second": ["The number of symbols per second sent over a channel."], "pulses per second": ["The number of symbols per second sent over a channel."], "add together": ["To perform the arithmetical operation of addition."], "impart": ["To apply a quality on (a person)."], "knock unconscious": ["To kill or stun with a heavy weapon or a violent blow."], "knock out": ["To kill or stun with a heavy weapon or a violent blow."], "digital bandwidth": ["A measure for the speed (amount of data) that can be sent through an Internet connection."], "network bandwidth": ["A measure for the speed (amount of data) that can be sent through an Internet connection."], "legion": ["A large, military force concerned mainly with ground operations.", "A great number of.", "A large military unit.", "A vast multitude.", "An association of ex-servicemen."], "predicative": ["[Of adjectives: relating to or occurring within the predicate of a sentence.]"], "attributive": ["Of adjectives: placed before the nouns they modify."], "prenominal": ["Of adjectives: placed before the nouns they modify."], "horde": ["A vast multitude."], "dated": ["Marked by features of the immediate and usually discounted past."], "disused": ["No longer in use."], "classical music": ["A traditional genre of music conforming to an established form and appealing to critical interest and developed musical taste."], "serious music": ["A traditional genre of music conforming to an established form and appealing to critical interest and developed musical taste."], "D major": ["A key of the major scale based on the root d, consisting of the pitches D, E, F\u266f, G, A, B, and C\u266f, and having a key signature of two sharps."], "questionnaire": ["Document containing a list of questions to be answered."], "valse": ["A dance in 3/4 time, performed primarily in closed position."], "waltz around": ["To dance a waltz."], "waltz music": ["Music composed in triple time for waltzing."], "walk-in": ["An assured victory (especially in an election)."], "dance palace": ["A large room used mainly for dancing."], "ballroom dance": ["Any of a variety of social dances performed by couples in a ballroom."], "social dance": ["Any of a variety of social dances performed by couples in a ballroom."], "asocial": ["Given to avoiding association with others.", "Hostile to or disruptive of normal standards of social behavior."], "antisocial": ["Hostile to or disruptive of normal standards of social behavior."], "anti-social": ["Hostile to or disruptive of normal standards of social behavior."], "encumbered": ["Loaded to excess or impeded by a heavy load."], "retardation": ["A lack of normal development of intellectual capacities; the diagnosis demands an IQ score below 70."], "backwardness": ["A lack of normal development of intellectual capacities; the diagnosis demands an IQ score below 70."], "intellectual giftedness": ["An intellectual ability significantly higher than average."], "clench": ["To hold in a tight grasp.", "The act of grasping."], "clinch": ["To hold in a tight grasp."], "aerosol container": ["An aerosol can for applying paint, deodorant, etc., as a fine spray."], "aerosol can": ["An aerosol can for applying paint, deodorant, etc., as a fine spray."], "aerosol bomb": ["An aerosol can for applying paint, deodorant, etc., as a fine spray.", "A bomb that uses a fuel-air explosive."], "aerosol tin": ["An aerosol can for applying paint, deodorant, etc., as a fine spray."], "fuel-air explosive": ["A bomb that uses a fuel-air explosive."], "FAE": ["A bomb that uses a fuel-air explosive."], "thermobaric bomb": ["A bomb that uses a fuel-air explosive."], "vacuum bomb": ["A bomb that generally detonate in two stages: a small blast creates a cloud of explosive material, which is then ignited with devastating effect.", "A bomb that uses a fuel-air explosive."], "volume-detonation bomb": ["A bomb that uses a fuel-air explosive."], "at home of": ["At somebody's home."], "ransom": ["Money paid for the freeing of a hostage.", "To pay a price to set someone free from captivity or punishment."], "ratcatcher": ["One who catches rats, particularly one who does so professionally."], "rat-catcher": ["One who catches rats, particularly one who does so professionally."], "brain-teaser": ["Any problem where the answer is very complex, possibly unsolvable without deep investigation."], "breaking and entering": ["A crime involves breaking into a house, outbuilding , business, school, place of worship, boat, aircraft, rail car, or motor vehicle with an intent to commit a theft or a felony."], "deductive reasoning": ["Reasoning from the general to the particular (or from cause to effect)."], "induction": ["Reasoning from detailed facts to general principles.", "An electrical phenomenon whereby an electromotive force (EMF) is generated in a closed circuit by a change in the flow of current."], "inductive reasoning": ["Reasoning from detailed facts to general principles."], "electromagnetic induction": ["An electrical phenomenon whereby an electromotive force (EMF) is generated in a closed circuit by a change in the flow of current."], "riddle": ["Any problem where the answer is very complex, possibly unsolvable without deep investigation.", "A sieve with large holes or a coarse mesh used to separate large particles from small particles."], "profligacy": ["Excessive indulgence in sensual pleasures."], "looseness": ["Excessive indulgence in sensual pleasures."], "orgy": ["A wild gathering involving excessive drinking and promiscuity.", "A secret rite in the cults of ancient Greek or Roman deities involving singing and dancing and drinking and sexual activity.", "Any act of immoderate indulgence."], "debauch": ["A wild gathering involving excessive drinking and promiscuity.", "To cause (someone) to become corrupt in virtue, esp. with regard to drinking or sexual behavior."], "saturnalia": ["A wild gathering involving excessive drinking and promiscuity."], "bacchanal": ["A wild gathering involving excessive drinking and promiscuity."], "bacchanalia": ["A wild gathering involving excessive drinking and promiscuity."], "drunken revelry": ["A wild gathering involving excessive drinking and promiscuity."], "binge": ["Any act of immoderate indulgence."], "unobjectionable": ["Not causing disapproval."], "innocent": ["Lacking intent or capacity to injure.", "Not guilty.", "Being free from sin.", "Lacking in sophistication or worldliness.", "Completely wanting or lacking.", "Not knowledgeable about something specified."], "satirist": ["A humorist who uses ridicule and irony and sarcasm."], "ironist": ["A humorist who uses ridicule and irony and sarcasm."], "ridiculer": ["A humorist who uses ridicule and irony and sarcasm."], "sensationalism": ["Subject matter that is calculated to excite and please vulgar tastes."], "frozen pizza": ["A prebaked and deep-frozen pizza that is rebaked in the oven."], "transgression": ["The act of transgressing; the violation of a law or a duty or moral principle.", "The spreading of the sea over land as evidenced by the deposition of marine strata over terrestrial strata.", "The action of going beyond or overstepping some boundary or limit."], "evildoing": ["The act of transgressing; the violation of a law or a duty or moral principle."], "dynamo-electric machine": ["A device that generates electric power from the engine's activity."], "hind": ["A female deer."], "civilisation": ["A society in an advanced state of social development, e.g. with complex legal and political and religious organizations."], "civilization": ["A society in an advanced state of social development, e.g. with complex legal and political and religious organizations."], "snake charmer": ["A performer who uses movements and music to control snakes."], "West J\u00e8rriais": ["A Norman dialect spoken in the west of the Channel Island of Jersey."], "East J\u00e8rriais": ["A Norman dialect spoken in the east of the Channel Island of Jersey."], "Northwest J\u00e8rriais": ["A Norman dialect spoken in the northwest of the Channel Island of Jersey."], "Northwest Dgern\u00e9siais": ["A Norman dialect spoken in the northwest of the Channel Island of Guernsey."], "South Dgern\u00e9siais": ["A Norman dialect spoken in the south of the Channel Island of Guernsey."], "Auregnais": ["A extinct Norman dialect formerly spoken in the Channel Island of Alderney."], "Aoeur'gnaeux": ["A extinct Norman dialect formerly spoken in the Channel Island of Alderney."], "Aurignais": ["A extinct Norman dialect formerly spoken in the Channel Island of Alderney."], "hectopascal": ["A pressure unit of 1000 dynes/cm-2, often used for reporting atmospheric pressure."], "geomorphologic": ["Pertaining to geological structure."], "morphologic": ["Pertaining to geological structure."], "morphological": ["Pertaining to geological structure.", "Of, or pertaining to, morphology."], "divine revelation": ["A manifestation of divine truth."], "revealing": ["The speech act of making something evident."], "Revelation": ["The last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle."], "Revelation of Saint John the Divine": ["The last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle."], "Apocalypse": ["The last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle."], "Book of the Revelation of John": ["The last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle."], "Apocalypse of John": ["The last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle."], "Book of Revelation": ["The last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle."], "Apocalypse of St. John": ["The last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle."], "bigoted": ["Blindly and obstinately attached to some creed or opinion and intolerant toward others."], "chutzpa": ["Nearly arrogant courage; utter audacity, effrontery or impudence; supreme self-confidence."], "tachometer": ["A device that measures the revolutions per minute of a revolving shaft."], "revolution-counter": ["A device that measures the revolutions per minute of a revolving shaft."], "rev-counter": ["A device that measures the revolutions per minute of a revolving shaft."], "RPM gauge": ["A device that measures the revolutions per minute of a revolving shaft."], "tacit": ["Done or made in silence."], "Abacama": ["An Afro-Asiatic language spoken in Nigeria in Adamawa State in the Numan and Guyuk LGAs, and in Kaduna State northeast of Kaduna town."], "Bachama": ["An Afro-Asiatic language spoken in Nigeria in Adamawa State in the Numan and Guyuk LGAs, and in Kaduna State northeast of Kaduna town."], "Bashamma": ["An Afro-Asiatic language spoken in Nigeria in Adamawa State in the Numan and Guyuk LGAs, and in Kaduna State northeast of Kaduna town."], "Besema": ["An Afro-Asiatic language spoken in Nigeria in Adamawa State in the Numan and Guyuk LGAs, and in Kaduna State northeast of Kaduna town."], "Bwareba": ["An Afro-Asiatic language spoken in Nigeria in Adamawa State in the Numan and Guyuk LGAs, and in Kaduna State northeast of Kaduna town."], "Gboare": ["An Afro-Asiatic language spoken in Nigeria in Adamawa State in the Numan and Guyuk LGAs, and in Kaduna State northeast of Kaduna town."], "Mulwyin": ["A dialect of the bacama language."], "Mwulyin": ["A dialect of the bacama language."], "date palm": ["A medium-sized palm tree, 15\u201325 m tall, in the genus Phoenix, extensively cultivated for its edible sweet fruit."], "date palm tree": ["A medium-sized palm tree, 15\u201325 m tall, in the genus Phoenix, extensively cultivated for its edible sweet fruit."], "taciturnity": ["Tendency to be silent and uncommunicative."], "craving": ["Ardent desire or craving."], "launderette": ["A place that has facilities for washing and drying clothes that the public may pay to use."], "depositary": ["A place where something is deposited, as for storage, safekeeping, or preservation."], "ABC": ["Book used to teach the alphabet.", "The elementary knowledge of any subject that can be learnt further."], "abecedary": ["Relating to an alphabet.", "Book used to teach the alphabet."], "rudiments": ["The elementary knowledge of any subject that can be learnt further."], "basics": ["The elementary knowledge of any subject that can be learnt further."], "fundamentals": ["The elementary knowledge of any subject that can be learnt further."], "ABC book": ["Book used to teach the alphabet."], "primer": ["Book used to teach the alphabet."], "abecedarium": ["Book used to teach the alphabet."], "abecedarian": ["Relating to an alphabet."], "ultrasonic": ["Having frequencies above those of audible sound."], "supersonic": ["Having frequencies above those of audible sound."], "SME": ["Company whose size, defined as the number of employees, the account or the turnover, falls below certain limits."], "SMB": ["Company whose size, defined as the number of employees, the account or the turnover, falls below certain limits."], "small and medium enterprise": ["Company whose size, defined as the number of employees, the account or the turnover, falls below certain limits."], "small and medium business": ["Company whose size, defined as the number of employees, the account or the turnover, falls below certain limits."], "small or medium business": ["Company whose size, defined as the number of employees, the account or the turnover, falls below certain limits."], "small or medium enterprise": ["Company whose size, defined as the number of employees, the account or the turnover, falls below certain limits."], "antecede": ["To move ahead (of others) in time or space."], "fair game": ["A person who is the aim of an attack (especially a victim of ridicule or exploitation) by some hostile person or influence."], "Common Raven": ["A large black bird, similar to the crow, but larger."], "Northern Raven": ["A large black bird, similar to the crow, but larger."], "ire": ["Belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)."], "ira": ["Belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)."], "procedurally": ["In a procedural manner."], "compound fracture": ["A bone fracture associated with lacerated soft tissue or an open wound."], "open fracture": ["A bone fracture associated with lacerated soft tissue or an open wound."], "uppercut": ["A swinging blow directed upward, especially at an opponent's chin."], "very pregnant": ["Being in the last stages of pregnancy."], "school child": ["A child attending school."], "school kid": ["A child attending school."], "schoolboy": ["A young boy attending school."], "schoolgirl": ["A young girl attending school."], "schoolchild": ["A child attending school."], "jobless": ["Having no job."], "unemployed": ["Having no job."], "out of work": ["Having no job."], "salt shaker": ["A small container with holes in the top that is used to sprinkle salt on food."], "pepper shaker": ["A small container with holes in the top that is used to sprinkle ground pepper on food."], "gunpoint": ["The gun muzzle's direction."], "urinal": ["A sanitary system, usually mounted on a wall, used by men for urinating.", "A gadget to collect or measure urine of patients, typically a bottle.", "A place for males to urinate."], "warlord": ["A local ruler or bandit leader usually where the government is weak."], "superstar": ["A celebrity who is widely known and successful in some field."], "overwinter": ["To spend the winter (in a particular place).", "To store something to protect it during the winter."], "woman on top": ["A position for sexual intercourse where the man lies on his back and the woman is on top of him."], "cowgirl": ["A position for sexual intercourse where the man lies on his back and the woman is on top of him.", "A woman who herds and tends cattle on a ranch."], "cowgirl position": ["A position for sexual intercourse where the man lies on his back and the woman is on top of him."], "rectangular apse": ["Apse having a rectangular shape instead of semicircular."], "abode": ["A period of time spent in a place.", "Time during which some action is awaited.", "Any address at which one dwells more than temporarily.", "A sign that is supposed to reveal whether the future will be favourable or not.", "To make a prediction or prophecy.", "To be ominous."], "residence": ["Any address at which one dwells more than temporarily."], "predicatively": ["In a predicative manner."], "attributively": ["In an attributive manner."], "involucral bract": ["Set of bracts or floral leaves surrounding the common base of several peduncles, or enclosing several flowers similarly to a calyx."], "involucre": ["Set of bracts or floral leaves surrounding the common base of several peduncles, or enclosing several flowers similarly to a calyx."], "dysmenorrhea": ["A medical condition characterized by severe uterine pain during menstruation."], "dysmenorrhoea": ["A medical condition characterized by severe uterine pain during menstruation."], "anomie": ["Lack of norms in a society."], "reactive": ["Having power to react."], "abolition": ["The cancellation or suspension of something by a decision of an authority."], "aborigine": ["Indigenous Australian who is a descendant of the first known human inhabitants of the Australian continent and its nearby islands."], "about-face": ["Act of pivoting 180 degrees, especially in a military formation."], "tabard": ["Garment worn by a herald and decorated with his master's coat of arms."], "eye doctor": ["A medical specialist who practises ophthalmology."], "fuddle": ["To consume a liquid containing alcohol."], "poison ring": ["A finger ring with a small container that can be used to hold poison."], "pillbox ring": ["A finger ring with a small container that can be used to hold poison."], "human right": ["The right of an individual to liberty, justice, etc."], "vermin exterminator": ["A person or business establishment specializing in the elimination of vermin, insects, etc."], "forbid": ["To tell not to do something."], "disallow": ["To tell not to do something."], "prohibit": ["To tell not to do something."], "interdict": ["To tell not to do something."], "proscribe": ["To tell not to do something."], "vantage point": ["The position from which an object is looked at.", "A place from which something can be viewed."], "lemonade": ["A drink, still or carbonated, made of lemon, water and sugar."], "hen-peck": ["To bother persistently with trivial complaints."], "plug": ["A device for connecting electrically operated devices to the power supply, having protruding prongs or pins that fit into matching slots or holes in a power socket.", "To deliver a blow with the fist."], "scolder": ["Someone (especially a woman) who annoys people by constantly finding fault."], "nagger": ["Someone (especially a woman) who annoys people by constantly finding fault."], "common scold": ["Someone (especially a woman) who annoys people by constantly finding fault."], "lepidoptera": ["A large order of scaly-winged insects, including the butterflies, skippers, and moths; adults are characterized by two pairs of membranous wings and sucking mouthparts, featuring a prominent, coiled proboscis."], "dissolve": ["To pass into a solution."], "telegraph": ["To send a message by telegraph."], "abridgement": ["Shortened form of something."], "abridgment": ["Shortened form of something."], "hiatus": ["A missing piece (as a gap in a manuscript).", "A natural opening or perforation through a bone or a membranous structure.", "An interruption in the intensity or amount of something.", "A gap in geological strata.", "The liaison of two vowels at the end of the one and the beginning of the following word or syllable."], "foramen": ["A natural opening or perforation through a bone or a membranous structure."], "abseil": ["A descent down a nearly vertical surface by using a doubled rope that is coiled around the body and attached to some higher point.", "To lower oneself with a double rope coiled around the body from a mountainside."], "existing chemical substance": ["Chemical products existing before 18-09-1981."], "pnictogen": ["Any element from the nitrogen group of the periodic table; nitrogen, phosphorus, arsenic, antimony and bismuth."], "pentel": ["Any element from the nitrogen group of the periodic table; nitrogen, phosphorus, arsenic, antimony and bismuth."], "tetrel": ["Any element in the carbon group of the periodic table."], "earth metal": ["Any element of the boron group in the periodic table."], "triel": ["Any element of the boron group in the periodic table."], "chalcogen": ["Any element of the oxygen family in the periodic table."], "canonic": ["Reduced to the simplest and most significant form possible without loss of generality.", "Appearing in a biblical canon.", "Of or relating to or required by canon law.", "Conforming to orthodox or recognized rules."], "sanctioned": ["Conforming to orthodox or recognized rules."], "logically": ["In a logical manner."], "natal": ["Of or relating to birth."], "nymphomania": ["Extreme or obsessive sexual desire in women."], "nymphomaniac": ["A woman having extreme or obsessive sexual desire.", "(For a woman) Having extreme or obsessive sexual desire."], "nympho": ["A woman having extreme or obsessive sexual desire."], "amateurism": ["The practice, quality, or character of an amateur or amateurish performance.", "The conviction that people should participate in sports as a hobby (for the fun of it) rather than for money."], "dilettantism": ["The practice, quality, or character of an amateur or amateurish performance."], "dilettanteism": ["The practice, quality, or character of an amateur or amateurish performance."], "Tequila Sunrise": ["A cocktail that consists of tequila, orange juice, lemon juice and grenadine syrup."], "highball glass": ["A glass tumbler which that contains 8 to 12 fluid ounces (240 to 350 ml) and is used to serve highball cocktails and other mixed drinks."], "illogically": ["In an illogical manner."], "accentual": ["Of or pertaining to accent."], "a priori": ["Known ahead of time.", "Based on hypothesis rather than experiment.", "Derived by logic, without observed facts.", "Involving deductive reasoning from a general principle to a necessary effect; not supported by fact."], "absorptivity": ["The quality of being absorptive.", "The property of a body that determines the fraction of the incident radiation or sound flux absorbed or absorbable by the body."], "absorptiveness": ["The quality of being absorptive."], "acceptor": ["A person who accepts or receives."], "acceptant": ["A person who accepts or receives."], "absorption factor": ["The property of a body that determines the fraction of the incident radiation or sound flux absorbed or absorbable by the body."], "a posteriori": ["Derived from observed facts.", "Involving reasoning from facts or particulars to general principles or from effects to causes.", "Requiring evidence for validation or support."], "forthright": ["Characterized by directness in manner or speech; without subtlety or evasion."], "frank": ["Characterized by directness in manner or speech; without subtlety or evasion."], "free-spoken": ["Characterized by directness in manner or speech; without subtlety or evasion."], "heart-to-heart": ["Straightforward and direct without reserve or secretiveness."], "plainspoken": ["Characterized by directness in manner or speech; without subtlety or evasion."], "point-blank": ["Characterized by directness in manner or speech; without subtlety or evasion."], "straight-from-the-shoulder": ["Characterized by directness in manner or speech; without subtlety or evasion."], "candid photograph": ["A spontaneous or unposed photograph."], "lolita": ["A sexually alluring underage girl."], "nymphet": ["A sexually alluring underage girl."], "loli": ["A sexually alluring underage girl."], "lysergic acid diethylamide": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "LSD": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "back breaker": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "battery-acid": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "Elvis": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "loony toons": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "Lucy in the sky with diamonds": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "pane": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "superman": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "window pane": ["A powerful hallucinogenic drug manufactured from lysergic acid."], "congregating": ["The act of congregating."], "faithful": ["A group of people who adhere to a common faith and habitually attend a given church.", "Steadfast in allegiance or affection."], "adaptability": ["The quality of being adaptable."], "allegretto": ["A direction in musical notation indicating that the musical piece should be played rather fast and lively."], "classical mythology": ["The system of mythology of the Greeks and Romans together; much of Roman mythology (especially the gods) was borrowed from the Greeks."], "Greco-Roman mythology": ["The system of mythology of the Greeks and Romans together; much of Roman mythology (especially the gods) was borrowed from the Greeks."], "nymph": ["A minor nature goddess usually depicted as a beautiful maiden.", "A larva of an insect with incomplete metamorphosis (as the dragonfly or mayfly).", "A voluptuously beautiful young woman."], "lover's grief": ["Emotional and sometimes physical suffering because of unfulfilled or rejected love."], "laxation": ["The elimination of fecal waste through the anus."], "shitting": ["The elimination of fecal waste through the anus."], "bowel movement": ["The elimination of fecal waste through the anus."], "bm": ["The elimination of fecal waste through the anus."], "phonetic transcription": ["The reproduction of the sounds of human language using written symbols."], "phonetic notation": ["The reproduction of the sounds of human language using written symbols."], "phonemic transcription": ["The reproduction of the sounds of human language using written symbols where each symbol stands for one phoneme."], "phonemic notation": ["The reproduction of the sounds of human language using written symbols where each symbol stands for one phoneme."], "velarized alveolar lateral approximant": ["A type of consonantal sound used in some spoken languages and represented by the symbol \u026b in the IPA notation."], "dark l": ["A type of consonantal sound used in some spoken languages and represented by the symbol \u026b in the IPA notation."], "hardly": ["Only a very short time before."], "laser printer": ["A computer printer where the image is produced by the direct scanning of a laser beam across the printer's photosensitive drum."], "absence rate": ["Frequent absence from work or school without good reason."], "aquaplaning": ["The phenomenon that creates a thin film of water between the tire of a moving vehicle and the road surface, making this vehicle (temporarily) become unmanageable."], "hydroplaning": ["The phenomenon that creates a thin film of water between the tire of a moving vehicle and the road surface, making this vehicle (temporarily) become unmanageable."], "Common earwig": ["An omnivorous insect in the family Forficulidae, 12 \u2013 15 mm long with an elongated flattened brownish colored body, two pairs of wings and a pair of forcep-like cerci."], "European earwig": ["An omnivorous insect in the family Forficulidae, 12 \u2013 15 mm long with an elongated flattened brownish colored body, two pairs of wings and a pair of forcep-like cerci."], "assembling": ["A system of components assembled together for a particular purpose."], "mounting": ["A system of components assembled together for a particular purpose."], "imply": ["To have as a logical consequence."], "implicate": ["To impose, involve, or imply as a necessary accompaniment or result."], "fee-tail": ["To limit the inheritance of property to a specific class of heirs."], "induce": ["To encourage into action; to cause to act in a specified manner."], "causal agent": ["Any entity that produces an effect or is responsible for events or results."], "causal agency": ["Any entity that produces an effect or is responsible for events or results."], "grounds": ["A justification for something existing or happening."], "causa": ["A comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy."], "sign of the zodiac": ["One of 12 equal areas into which the zodiac is divided."], "star sign": ["One of 12 equal areas into which the zodiac is divided."], "mansion": ["One of 12 equal areas into which the zodiac is divided."], "planetary house": ["One of 12 equal areas into which the zodiac is divided."], "Aries the Ram": ["The first sign of the zodiac which the sun enters at the vernal equinox; the sun is in this sign from about March 21 to April 19."], "Ram": ["The first sign of the zodiac which the sun enters at the vernal equinox; the sun is in this sign from about March 21 to April 19.", "A person who is born while the sun is in Aries."], "Hispaniola": ["A large island in the Caribbean, containing the two sovereign states of Haiti and the Dominican Republic."], "shaky camera": ["A cinematographic technique where the image is unstable on purpose, usually it is shot using a handheld camera."], "shaky cam": ["A cinematographic technique where the image is unstable on purpose, usually it is shot using a handheld camera."], "handheld camera": ["A cinematographic technique where the image is unstable on purpose, usually it is shot using a handheld camera."], "free camera": ["A cinematographic technique where the image is unstable on purpose, usually it is shot using a handheld camera."], "Taurus the Bull": ["The second sign of the zodiac; the sun is in this sign from about April 20 to May 20."], "Bull": ["The second sign of the zodiac; the sun is in this sign from about April 20 to May 20.", "A person who is born while the sun is in Taurus."], "Jew's harp": ["A musical instrument that consists of a flexible metal or bamboo tongue or reed attached to a frame."], "jaw harp": ["A musical instrument that consists of a flexible metal or bamboo tongue or reed attached to a frame."], "Ozark harp": ["A musical instrument that consists of a flexible metal or bamboo tongue or reed attached to a frame."], "trump": ["A musical instrument that consists of a flexible metal or bamboo tongue or reed attached to a frame."], "juice harp": ["A musical instrument that consists of a flexible metal or bamboo tongue or reed attached to a frame."], "Jew's trump": ["A musical instrument that consists of a flexible metal or bamboo tongue or reed attached to a frame."], "guimbarde": ["A musical instrument that consists of a flexible metal or bamboo tongue or reed attached to a frame."], "venturous": ["Disposed to venture or take risks."], "venturesome": ["Disposed to venture or take risks."], "WordNet 3.0": ["A machine-readable lexical database organized by meanings; developed at Princeton University; version 3.0."], "Princeton WordNet 3.0": ["A machine-readable lexical database organized by meanings; developed at Princeton University; version 3.0."], "adventuresome": ["Liking or eager for adventure."], "Gemini the Twins": ["The third sign of the zodiac; the sun is in this sign from about May 21 to June 20."], "Twins": ["The third sign of the zodiac; the sun is in this sign from about May 21 to June 20."], "Twin": ["A person who is born while the sun is in Gemini."], "next-to-last": ["Next to the last in a sequence."], "bosom": ["To squeeze someone in one's arms.", "The two breasts of a woman, considered collectively."], "separate out": ["To separate or isolate components from one another with the help of a filter."], "sift": ["To separate by passing through a sieve or other straining device to separate out coarser elements.", "To pass a liquid through a sieve."], "sieve": ["To separate by passing through a sieve or other straining device to separate out coarser elements.", "A device to separate coarse elements from fine elements or solid objects from a liquid.", "A sieve with a finely meshed or perforated bottom to separate small particles from smaller particles or a liquid."], "filter out": ["To separate or isolate components from one another with the help of a filter."], "melodic line": ["A succession of notes forming a distinctive sequence."], "nisus": ["An effortful attempt to attain a goal."], "pains": ["An effortful attempt to attain a goal."], "straining": ["An intense or violent exertion."], "melodic phrase": ["A succession of notes forming a distinctive sequence."], "strive": ["To exert much effort or energy on (e.g. ears, eyes, etc.).", "To attempt through application of effort (to do something); to try strenuously."], "tense up": ["To cause to be tense and uneasy or nervous or anxious."], "puree": ["To rub through a strainer or process in an electric blender."], "pinyin": ["The most commonly used romanization system for Standard Mandarin."], "hanyu pinyin": ["The most commonly used romanization system for Standard Mandarin."], "Wade-Giles": ["A romanization system for Mandarin that has mostly been replaced by the pinyin system nowadays."], "velar": ["A sound articulated at the soft palate.", "(Of sounds) Articulated at the soft palate."], "passing": ["Lasting or existing for a short time only."], "ephemeron": ["Anything short-lived, as an insect that lives only for a day in its winged form."], "uvular": ["A sound articulated with the uvula.", "(Of sounds) Articulated with the uvula."], "fugacious": ["Lasting or existing for a short time only."], "timelessness": ["A state of eternal existence believed in some religions to characterize the afterlife."], "timeless existence": ["A state of eternal existence believed in some religions to characterize the afterlife."], "bilharzia": ["A disease in which humans are parasitized by any of three species of blood flukes: Schistosoma mansoni, S. haematobium, and S. japonicum; adult worms inhabit the blood vessels."], "bilharziosis": ["A disease in which humans are parasitized by any of three species of blood flukes: Schistosoma mansoni, S. haematobium, and S. japonicum; adult worms inhabit the blood vessels."], "snail fever": ["A disease in which humans are parasitized by any of three species of blood flukes: Schistosoma mansoni, S. haematobium, and S. japonicum; adult worms inhabit the blood vessels."], "niq\u0101b": ["Mask worn by some Muslim women, which covers completely the face except for the eyes."], "niqab": ["Mask worn by some Muslim women, which covers completely the face except for the eyes."], "niqaab": ["Mask worn by some Muslim women, which covers completely the face except for the eyes."], "potentate": ["An absolute ruler with unbounded power."], "askance": ["With suspicion or disapproval.", "With a side or oblique glance.", "Directed to one side with or as if with doubt or suspicion (used especially of glances)."], "askant": ["Directed to one side with or as if with doubt or suspicion (used especially of glances)."], "asquint": ["Directed to one side with or as if with doubt or suspicion (used especially of glances)."], "squint": ["Directed to one side with or as if with doubt or suspicion (used especially of glances).", "To have the two eyes not looking in the same direction.", "To voluntarily cross the eyes so that they do not look in the same direction.", "Having the two eyes not looking in the same direction."], "squint-eyed": ["Directed to one side with or as if with doubt or suspicion (used especially of glances)."], "squinty": ["Directed to one side with or as if with doubt or suspicion (used especially of glances)."], "sidelong": ["Directed to one side with or as if with doubt or suspicion (used especially of glances)."], "limitless": ["Without limits in extent or size or quantity.", "Seemingly boundless in amount, number, degree, or especially extent.", "Having no limits in range or scope."], "illimitable": ["Without limits in extent or size or quantity."], "measureless": ["Without limits in extent or size or quantity."], "unlimited": ["Having no limits in range or scope."], "boundless": ["Seemingly boundless in amount, number, degree, or especially extent."], "unbounded": ["Seemingly boundless in amount, number, degree, or especially extent."], "pharyngal": ["A sound articulated at the pharynx.", "(Of sounds) Articulated at the pharynx.", "Of or pertaining to the pharynx."], "glottal": ["A sound articulated at the glottis.", "(Of sounds) Articulated at the glottis."], "homorganic": ["(Of sounds) Having the same place of articulation."], "labiovelar": ["A sound made at two places of articulation, one at the lips and the other at the soft palate.", "(Of sounds) Articulated at the lips and the soft palate.", "Velar sound that is pronounced with rounded lips.", "(Of sounds) Articulated at the velum and with rounded lips."], "labial-velar": ["A sound made at two places of articulation, one at the lips and the other at the soft palate.", "(Of sounds) Articulated at the lips and the soft palate."], "hive": ["A box or receptable in which bees are kept for their honey.", "A teeming multitude.", "A structure that provides a natural habitation for bees; as in a hollow tree.", "To move together in a hive or as if in a hive.", "To store, like bees.", "To gather into a hive."], "palatal": ["A sound articulated at the hard palate.", "(Of sounds) Articulated at the hard palate."], "lovesickness": ["Emotional and sometimes physical suffering because of unfulfilled or rejected love."], "lovelorn": ["Emotional and sometimes physical suffering because of unfulfilled or rejected love."], "semi-voiced": ["(Of sounds) Formed by making a voiced consonant, but with the vocal folds closed."], "hyperbolic": ["Enlarged beyond truth or reasonableness.", "Of or relating to a hyperbola."], "inflated": ["Enlarged beyond truth or reasonableness.", "Exaggerated or made bigger."], "vocal fold": ["One of the two mucuous membranes in the larynx that vibrate and modulate the flow of air from the lungs during phonation."], "vocal cord nodule": ["A mass of tissue that grows on the vocal folds and may impair the ability to speak or sing."], "hyperbola": ["An open curve formed by a plane that cuts the base of a right circular cone."], "place of articulation": ["The point of contact, where an obstruction occurs in the vocal tract between an active (moving) articulator and a passive (stationary) articulator."], "point of articulation": ["The point of contact, where an obstruction occurs in the vocal tract between an active (moving) articulator and a passive (stationary) articulator."], "articulatory phonetics": ["A subfield of phonetics that studies how human produce sounds."], "front vowel": ["A vowel produced in the front of the mouth."], "back vowel": ["A vowel produced in the back of the mouth."], "dark vowel": ["A vowel produced in the back of the mouth."], "bright vowel": ["A vowel produced in the front of the mouth."], "Poseidon": ["God of the sea in Greek mythology."], "logic gate": ["A computer circuit with several inputs but only one output that can be activated by particular combinations of inputs."], "tabular array": ["A systematic arrangement of data, usually in rows and columns."], "mesa": ["Flat tableland with steep edges."], "tabulate": ["To arrange or enter in tabular form."], "ascension": ["The rising of a star above the horizon."], "Ascension": ["The fortieth day of Easter, a Thursday, which commemorates that Jesus bodily ascended to heaven, following his resurrection.", "The rising of the body of Jesus into heaven on the 40th day after his Resurrection."], "Ascension of the Lord": ["The fortieth day of Easter, a Thursday, which commemorates that Jesus bodily ascended to heaven, following his resurrection."], "Ascension of Christ": ["The rising of the body of Jesus into heaven on the 40th day after his Resurrection."], "aficionado": ["A fan of bull fighting.", "A serious devotee of some particular music genre or musical performer.", "A follower or admirer who likes, knows about, and appreciates a particular interest or activity."], "latinization": ["The representation of a written or spoken word with the Latin alphabet."], "latinisation": ["The representation of a written or spoken word with the Latin alphabet."], "Cancer the Crab": ["The fourth sign of the zodiac; the sun is in this sign from about June 21 to July 22."], "Crab": ["The fourth sign of the zodiac; the sun is in this sign from about June 21 to July 22.", "A person who is born while the sun is in Cancer."], "quibble": ["To bother persistently with trivial complaints."], "genus Cancer": ["A genus of marine crabs of the family Cancridae."], "triplicity": ["One of four groups of the zodiac where each group consists of three signs separated from each other by 120 degrees.", "The property of being triple."], "trigon": ["One of four groups of the zodiac where each group consists of three signs separated from each other by 120 degrees."], "traditional Hepburn romanization": ["Japanese romanization as invented by Hepburn and published in the third edition (1886) of Hepburn's dictionary."], "revised Hepburn romanization": ["A revised version of the traditional Hepburn romanization, in which the rendering of syllabic n as m before certain consonants is no longer used."], "modified Hepburn romanization": ["A further modification of the revised Hepburn romanization which is consistent in its treatment of long vowels (always doubling the vowel) and syllabic n (always n-bar)."], "Hepburn romanization": ["Romanization of Japanese originating from James Curtis Hepburn, having three standard variants: traditional, revised and modified Hepburn romanization."], "furigana": ["Kana used in Japanese to indicate the pronunciation of a kanji."], "smack": ["To kiss lightly."], "pick up": ["(For a bird) To eat by small pieces with one's beak or bill.", "To respond to an incoming telephone call.", "To perceive with the senses quickly, suddenly, or momentarily (e.g. an aroma, an allusion, etc.).", "To lift; to grasp and raise; to collect."], "peck at": ["To eat by small pieces like a bird."], "pick at": ["To eat by small pieces like a bird."], "little bell": ["Small bell."], "rucksack": ["A bag carried by a strap on your back or shoulder."], "haversack": ["A bag carried by a strap on your back or shoulder."], "packsack": ["A bag carried by a strap on your back or shoulder."], "infamy": ["A state of extreme dishonor, consisting in being an object of a very serious public reproach approved by the great majority of the population.", "An evil fame or public reputation.", "An infamous, malign action."], "opprobrium": ["A state of extreme dishonor, consisting in being an object of a very serious public reproach approved by the great majority of the population."], "villainy": ["An infamous, malign action."], "meanness": ["An infamous, malign action.", "Extreme reluctance to spend money.", "The quality or state of being evil."], "fatherland": ["One\u2019s country of birth."], "homeland": ["One\u2019s country of birth."], "motherland": ["One\u2019s country of birth."], "mother country": ["One\u2019s country of birth."], "country of origin": ["One\u2019s country of birth."], "native land": ["One\u2019s country of birth."], "adoptive": ["Related through adoption; more generally, relating to adoption."], "guiltless": ["Not guilty."], "clean-handed": ["Not guilty."], "impeccant": ["Being free from sin."], "sinless": ["Being free from sin."], "ingenuous": ["Lacking in sophistication or worldliness."], "unacquainted": ["Not knowledgeable about something specified."], "literary criticism": ["The action of evaluating or judging the quality or character of written materials such as poetry, essays, novels, biographies and historical writings.", "The systematic study and interpretation of literature."], "devoid": ["Completely wanting or lacking."], "frigidarium": ["Part of the Roman thermae consisting of a non-heated room containing a pool of cold water."], "roofless": ["Having no housing."], "domiciled": ["To have one's home in."], "rhyme": ["A repetition of similar sounds in two or more words."], "masculine rhyme": ["A rhyme that matches only one syllable which is usually stressed."], "feminine rhyme": ["A rhyme that matches two or more syllables and is stressed on the penultimate syllable."], "dactylic rhyme": ["A rhyme that matches two or more syllables and is stressed on the antepenultimate syllable."], "end rhyme": ["A rhyme that occurs at the end of a verse."], "tail rhyme": ["A rhyme that occurs at the end of a verse."], "eye rhyme": ["A rhyme that consists of orthographically similar words that do not rhyme when pronounced."], "visual rhyme": ["A rhyme that consists of orthographically similar words that do not rhyme when pronounced."], "sight rhyme": ["A rhyme that consists of orthographically similar words that do not rhyme when pronounced."], "beginning rhyme": ["Rhyme that occurs at the beginning of two verses."], "identical rhyme": ["A rhyme that repeats the same word."], "historical rhyme": ["A rhyme that no longer works because the prounciation has changed."], "rime": ["A repetition of similar sounds in two or more words."], "hold on": ["To retain possession of something.", "To hold firmly."], "grip": ["An intellectual hold or understanding.", "The act of grasping.", "A leather protection used in some sports to avoid hand injuries.", "The adhesive friction of a wheel, etc. on a surface.", "To render motionless, as with a fixed stare or by arousing fear.", "To care for and train (a child).", "To grip or seize, as in a wrestling match."], "clutches": ["The act of grasping."], "clasp": ["The act of grasping.", "To grasp firmly (e.g. hands)."], "indebtedness": ["An obligation to pay money to another party."], "financial obligation": ["An obligation to pay money to another party."], "nail pulling pliers": ["Pliers made of steel for removing nails from wood."], "additivity": ["The property of being additive."], "admiralty": ["The office or jurisdiction of an admiral."], "admiralty law": ["The area of law that deals with ships at sea and the rights of sailors, passengers, and owners of cargo."], "ASAP": ["As soon as possible."], "soonest possible": ["As soon as possible."], "earliest possible": ["As soon as possible."], "asap": ["As soon as possible."], "as soon as possible": ["As soon as possible."], "verdure": ["Green foliage."], "greenery": ["Green foliage."], "musical arrangement": ["Music that has been adapted for performance with a different ensemble or musical style."], "leaf node": ["The small swelling that is the part of a plant stem from which one or more leaves emerge."], "knob": ["Any thickened enlargement."], "intrigue": ["A clever scheme or artful plot, usually crafted for evil purposes.", "To cause to be interested or curious.", "To form intrigues in an underhand manner.", "A clandestine love affair."], "fascinate": ["To cause to be interested or curious.", "To render motionless, as with a fixed stare or by arousing fear.", "To attract, arouse and hold attention and interest, as by charm or beauty."], "connive": ["To form intrigues in an underhand manner."], "lymph gland": ["The source of lymph and lymphocytes."], "orbital node": ["A point where an orbit crosses a plane."], "intentionally": ["With intention; in an intentional manner."], "designedly": ["With intention; in an intentional manner."], "by design": ["With intention; in an intentional manner."], "willentlich": ["With intention; in an intentional manner."], "basilect": ["The variety of speech that has the lowest prestige and diverges the most from the standard."], "abalone": ["An edible univalve mollusc of the genus Haliotis."], "abatage": ["The tearing down of buildings by mechanical means.", "Destruction of a building."], "lessening": ["The act of abating or the state of being abated."], "diminution": ["The act of abating or the state of being abated."], "abdominal cavity": ["The cavity containing the major viscera."], "interpunct": ["Vertically centered dot that is used in some languages seperate words or syllables."], "interpoint": ["Vertically centered dot that is used in some languages seperate words or syllables."], "middle dot": ["Vertically centered dot that is used in some languages seperate words or syllables."], "centered dot": ["Vertically centered dot that is used in some languages seperate words or syllables."], "space dot": ["Vertically centered dot that is used in some languages seperate words or syllables."], "numismatics": ["The scientific study of money (coins, paper money, etc.) and its history."], "numismatic": ["Of or relating to numismanics."], "hypothermia": ["A condition in which core body temperature drops below that required for normal metabolism and body functions."], "perish with cold": ["To die due to excessive exposure to cold."], "freeze to death": ["To die due to excessive exposure to cold."], "Abbruch": ["The tearing down of buildings by mechanical means."], "seeker": ["Someone making a search or inquiry.", "A missile equipped with a device that is attracted toward some kind of emission (heat or light or sound or radio waves)."], "quester": ["Someone making a search or inquiry."], "searcher": ["Someone making a search or inquiry."], "emerald green": ["Having a clear, deep-green color."], "terminal emulator": ["A computer program that emulates a terminal."], "pole": ["A contact on an electrical device (such as a battery) at which electric current enters or leaves.", "A strong upright piece of wood, metal etc. that is fixed into the ground, especially to support something.", "One of two antipodal points where the Earth's axis of rotation intersects the Earth's surface."], "data terminal": ["A device for entering data into a computer or a communications system and/or displaying data received; especially a device equipped with a keyboard and some sort of textual display."], "primordial": ["Having existed from the beginning; in an earliest or original stage or state."], "primal": ["Having existed from the beginning; in an earliest or original stage or state."], "primeval": ["Having existed from the beginning; in an earliest or original stage or state."], "primaeval": ["Having existed from the beginning; in an earliest or original stage or state."], "putting green": ["The part of a golf course near the hole."], "homily": ["A sermon on a moral or religious topic."], "preachment": ["A sermon on a moral or religious topic."], "specially": ["In a special manner."], "behest": ["An authoritative command or request."], "doppelganger": ["A person who resembles another person perfectly.", "A ghostly double of a living person that haunts its living counterpart."], "discreetness": ["Knowing how to avoid embarrassment or distress."], "stock market": ["Market where people buy and sell stocks."], "stock exchange": ["Market where people buy and sell stocks."], "admonitory": ["Of or pertaining to an admonition."], "cautionary": ["Of or pertaining to an admonition."], "monitory": ["Of or pertaining to an admonition."], "bodacious": ["Unrestrained by convention or propriety."], "bald-faced": ["Unrestrained by convention or propriety."], "brassy": ["Unrestrained by convention or propriety."], "hardy": ["Not being daunted or intimidated."], "unfearing": ["Not being daunted or intimidated."], "insolent": ["Unrestrained by convention or propriety."], "during the winter": ["In the winter."], "during the summer": ["In the summer."], "in the morning": ["In the mornings.", "During the morning."], "in the afternoon": ["During the afternoon."], "in the evening": ["On the evening"], "on end": ["In contact with each other or in proximity."], "at a stretch": ["In contact with each other or in proximity."], "instantly": ["In an immediate manner; instantly or without delay."], "pigsty": ["A place where pigs are kept and reared."], "pigpen": ["A place where pigs are kept and reared."], "beat out": ["To end in success a struggle or contest."], "trounce": ["To end in success a struggle or contest."], "calumniation": ["A false accusation of an offense or a malicious misrepresentation of someone's words or actions."], "obloquy": ["A false accusation of an offense or a malicious misrepresentation of someone's words or actions."], "traducement": ["A false accusation of an offense or a malicious misrepresentation of someone's words or actions."], "hatchet job": ["A false accusation of an offense or a malicious misrepresentation of someone's words or actions."], "patsy": ["A person who is gullible and easy to take advantage of."], "fall guy": ["A person who is gullible and easy to take advantage of."], "sucker": ["A person who is gullible and easy to take advantage of.", "A family of fish of the order Cypriniformes found in North America, east central China and eastern Siberia.", "An undesired stem growing out of the roots or lower trunk of a shrub or tree, especially from the rootstock of a grafted plant or tree."], "soft touch": ["A person who is gullible and easy to take advantage of."], "straightaway": ["In an immediate manner; instantly or without delay."], "straight off": ["In an immediate manner; instantly or without delay."], "right away": ["In an immediate manner; instantly or without delay."], "forthwith": ["In an immediate manner; instantly or without delay."], "like a shot": ["In an immediate manner; instantly or without delay."], "nicely": ["In a nice manner."], "look askance": ["To have the two eyes not looking in the same direction."], "inadvertently": ["Unintentionally, because of an oversight."], "break a leg": ["Interjection, which expresses that one wishes someone success or luck."], "afterward": ["Later or after something else has happened or happens."], "flatworm": ["Any animal belonging to the Platyhelminthes phylum."], "platyhelminthe": ["Any animal belonging to the Platyhelminthes phylum."], "plathelminthe": ["Any animal belonging to the Platyhelminthes phylum."], "flatworms": ["A phylum of relatively simple bilaterian, unsegmented, soft-bodied invertebrate animals."], "Platyhelminthes": ["A phylum of relatively simple bilaterian, unsegmented, soft-bodied invertebrate animals."], "Plathelminthes": ["A phylum of relatively simple bilaterian, unsegmented, soft-bodied invertebrate animals."], "parking meter": ["A device used to collect money in exchange for the right to park a vehicle in a particular place for a limited amount of time."], "cull": ["The person or thing that is rejected or set aside as inferior in quality.", "To look for and gather.", "To remove something that has been rejected."], "antibacterial": ["Effective against bacteria."], "antichristian": ["Opposed to Christianity."], "anti-Christian": ["Opposed to Christianity."], "antidepressant": ["Medication against depression."], "anti-American": ["Against the United States."], "hydrofoil": ["A device consisting of a flat or curved piece (as a metal plate) so that its surface reacts to the water it is passing through."], "enhancer": ["Anything that serves by contrast to call attention to another thing's good qualities."], "thwart": ["To hinder or prevent (the efforts, plans, or desires) of."], "queer": ["Offensive term for an openly, often effeminate, homosexual man.", "To hinder or prevent (the efforts, plans, or desires) of."], "scotch": ["To hinder or prevent (the efforts, plans, or desires) of."], "frustrate": ["To hinder or prevent (the efforts, plans, or desires) of."], "baffle": ["To hinder or prevent (the efforts, plans, or desires) of."], "bilk": ["To hinder or prevent (the efforts, plans, or desires) of."], "pluck": ["To look for and gather."], "hygroscope": ["An hygrometer that shows variations in atmospheric humidity."], "hygroscopicity": ["Capacity to absorb water from the atmosphere."], "hygroscopically": ["In a hygroscopic way."], "in succession": ["One at a time."], "gradually": ["One at a time.", "Making progress, but slowly."], "individually": ["One at a time."], "successively": ["In a serial or successive manner; one following another."], "affix": ["A bound morpheme that is attached to a word stem to form a new word or an inflected form of a word.", "To make something fixed or stable; to cause to be firmly attached."], "-phore": ["Indicates the notion of carrying."], "now and then": ["From time to time."], "-phor": ["Indicates the notion of carrying."], "anti-political": ["Against politics."], "antipolitical": ["Against politics."], "nonpolitical": ["Having no interest in politics."], "apolitical": ["Having no interest in politics."], "low-energy house": ["A house that uses less energy than a traditional house."], "passive house": ["House that consumes very little energy and needs to traditional heating because of its superior heat insulation."], "grit": ["To cover with grit."], "assonance": ["A rhyme in which the vowel of the stressed syllable or syllables is repeated but the consonants change."], "vowel rhyme": ["A rhyme in which the vowel of the stressed syllable or syllables is repeated but the consonants change."], "tautogram": ["A text, poem or verse in which all words start with the same letter."], "corny": ["Dull and tiresome but with pretensions of significance or originality."], "bromidic": ["Dull and tiresome but with pretensions of significance or originality."], "platitudinal": ["Dull and tiresome but with pretensions of significance or originality."], "platitudinous": ["Dull and tiresome but with pretensions of significance or originality."], "all in all": ["All things considered."], "cep": ["An edible basidiomycete mushroom found in pine forests and plantations in autumn, the cap of which may reach 25 cm in diameter and 1 kg in weight."], "bolete": ["Edible mushroom belonging to one of several species of Boletus, characterized by a firm flesh which stays white."], "summer cep": ["An edible basidiomycete fungus of the genus Boletus occuring in deciduous forests of Europe, mostly collected during summer."], "icebreaker": ["A ship that is designed to move through ice-covered waters and create a channel for other ships."], "pine bolete": ["An edible basidiomycete fungus of the genus Boletus found throughout Europe and appearing under pine trees, generally in summer and autumn."], "pinewood king bolete": ["An edible basidiomycete fungus of the genus Boletus found throughout Europe and appearing under pine trees, generally in summer and autumn."], "chanterelle": ["An edible mushroom of the genus Cantharellus. It is orange or yellow, meaty and funnel-shaped."], "golden chanterelle": ["An edible mushroom of the genus Cantharellus. It is orange or yellow, meaty and funnel-shaped."], "unitedly": ["With cooperation and interchange."], "in concert": ["With a common plan."], "ice-breaker": ["A ship that is designed to move through ice-covered waters and create a channel for other ships."], "ice breaker": ["A ship that is designed to move through ice-covered waters and create a channel for other ships."], "break the ice": ["To overcome initial shyness or reserve, especially with a strange person or a group of strange persons."], "Brussels sprout": ["A cultivar group of wild cabbage native to Belgium cultivated for its small (typically 2.5 - 4cm) leafy green buds, which resemble miniature cabbages."], "Ermengarde": ["A female given name."], "guilt": ["The fact of having done something wrong.", "Awareness of having done wrong and feeling bad about it."], "hovel": ["A small crude shelter used as a dwelling."], "shack": ["A small crude shelter used as a dwelling."], "tripwire": ["A cord or wire arranged so that a detector or trap or a device is triggered when somebody stumbles over it or touches it in any other way.", "Any means of detecting an intruder."], "tripline": ["A cord or wire arranged so that a detector or trap or a device is triggered when somebody stumbles over it or touches it in any other way."], "trip cord": ["A cord or wire arranged so that a detector or trap or a device is triggered when somebody stumbles over it or touches it in any other way."], "all along": ["For the entire time."], "slay": ["To unlawfully and intentionally kill another human being."], "bump off": ["To unlawfully and intentionally kill another human being."], "polish off": ["To unlawfully and intentionally kill another human being."], "sporicide": ["A substance that kills spores."], "sporicidal": ["Killing spores."], "dirt cheap": ["Having a very low price."], "dirt-cheap": ["Having a very low price."], "pipe dream": ["A plan, desire or idea that is impossible or very unlikely to be realized."], "castle in the air": ["A plan, desire or idea that is impossible or very unlikely to be realized."], "collocation": ["A sequence of two or more words that often appear together."], "shiitake": ["An edible mushroom native to East Asia, which is cultivated and consumed in many Asian countries."], "sex partner": ["A sexual partner."], "mistress": ["Woman who has a (often secret) relationship with a man who is married or committed to another woman."], "essential oil": ["A concentrated, hydrophobic liquid containing volatile aroma compounds from plants."], "volatile oil": ["A concentrated, hydrophobic liquid containing volatile aroma compounds from plants."], "ethereal oil": ["A concentrated, hydrophobic liquid containing volatile aroma compounds from plants."], "volatile": ["Tending to vary often or widely.", "Liable to lead to sudden change or violence.", "Evaporating readily at normal temperatures and pressures.", "Marked by erratic changeableness in affections or attachments.", "A volatile substance; a substance that changes readily from solid or liquid to a vapor."], "bookmarker": ["A thin marker used to keep one's place in a printed work and to be able to return to it with ease."], "as yet": ["Up to the present.", "Up to the present."], "Viennese pastry": ["Baked goods, sweet and fatty, made from a yeast leavened or laminated dough."], "gnat": ["A tiny flying insect from one of several species in the Nematocera suborder, including the families Mycetophilidae, Anisopodidae and Sciaridae."], "thus far": ["Up to the present."], "heretofore": ["Up to the present."], "endogenic": ["Produced, originating or growing from within."], "namesake": ["Someone who has the same first name and/or last name as another person, without being related."], "at least": ["If nothing else.", "Not less than."], "at any rate": ["If nothing else.", "Whatever the case may be"], "linguistically": ["With respect to the science of linguistics.", "With respect to language."], "lingually": ["With respect to language."], "linguistical": ["Of or pertaining to language."], "lingual": ["Of or pertaining to language.", "Of or pertaining to the tongue.", "A sound articulated with the tongue.", "(Of sounds) Articulated with the tongue."], "hairline": ["The outline of hair growth on the head, especially on the forehead and temples."], "hair line": ["The outline of hair growth on the head, especially on the forehead and temples."], "leastways": ["If nothing else."], "at the least": ["Not less than."], "leastwise": ["If nothing else."], "interregnum": ["The time between two reigns, governments, etc.", "An intermission in any order of succession; any breach of continuity in action or influence."], "add fuel to the fire": ["To worsen a situation that is already difficult by increasing the agitation, hostility or passion."], "add fuel to the flames": ["To worsen a situation that is already difficult by increasing the agitation, hostility or passion."], "fan the flames": ["To worsen a situation that is already difficult by increasing the agitation, hostility or passion."], "throw oil on the fire": ["To worsen a situation that is already difficult by increasing the agitation, hostility or passion."], "linothorax": ["A type of armor used by the Ancient Greeks, as well as other civilizations that probably consisted of multilayered linen fabric."], "contractually": ["By virtue of a contract."], "crawl": ["To move slowly with the body in a prone position resting on or close to the ground."], "FOLDOC": ["A searchable dictionary of acronyms, jargon, programming languages, tools, architecture, operating systems, networking, theory, conventions, standards, mathematics, telecoms, electronics, institutions, companies, projects, products, history, in fact anything to do with computing."], "Free On-line Dictionary of Computing": ["A searchable dictionary of acronyms, jargon, programming languages, tools, architecture, operating systems, networking, theory, conventions, standards, mathematics, telecoms, electronics, institutions, companies, projects, products, history, in fact anything to do with computing."], "corporate trust": ["A group of organisations in an industry which agree on maintaining high prices and effectively killing competition."], "sportsman": ["A male person who engages in sports."], "sportswoman": ["A female person who engages in sports."], "jock": ["A person trained to compete in sports."], "cervical": ["Of or pertaining to the cervix.", "Of or pertaining to the neck."], "cervical vertebra": ["Any of the seven vertebrae of the neck."], "whale oil": ["Oil obtained from the blubber of various species of whales."], "fish oil": ["Oil produced from various marine mammals such as whales or pinniped, or from oily fishes."], "train oil": ["Oil obtained from the blubber of various species of whales."], "uterine brother": ["A half brother having the same mother but a different father."], "uterine sister": ["A half sister having the same mother but a different father."], "half sister": ["A sister with whom one has only one parent in common."], "maternal half sister": ["A half sister having the same mother but a different father."], "paternal half sister": ["A half sister having the same father but a different mother."], "half brother": ["A brother with whom one has only one parent in common."], "maternal half brother": ["A half brother having the same mother but a different father."], "paternal half brother": ["A half brother having the same father but a different mother."], "Yucatec Maya": ["A Mayan language spoken in the Yucat\u00e1n Peninsula, northern Belize and parts of Guatemala."], "single person": ["Person who is not married and not in a relationship."], "matrilineal": ["Tracing descent through the female line."], "matrilinear": ["Tracing descent through the female line."], "patrilineal": ["Tracing descent through the male line."], "patrilinear": ["Tracing descent through the male line."], "patrilineality": ["A system in which lineage is traced through the father and paternal ancestors."], "Maude": ["Female first name."], "chancy": ["Subject to accident or chance or change."], "fluky": ["Subject to accident or chance or change."], "zweifelhaft": ["Of dubious, doubtful or uncertain legitimacy, legality or authenicity."], "flukey": ["Subject to accident or chance or change."], "over-the-counter": ["(Of a medicine) That can be sold and distributed legally without the need of a prescription."], "over the counter": ["(Of a medicine) That can be sold and distributed legally without the need of a prescription."], "OTC": ["(Of a medicine) That can be sold and distributed legally without the need of a prescription."], "nonprescription": ["(Of a medicine) That can be sold and distributed legally without the need of a prescription."], "layering": ["A method of plant reproduction in which a branch is made to grow roots and can then be detached from the parent plant to become an independent plant."], "ground layering": ["A method of layering where the branch is buried in the soil."], "air layering": ["A method of layering in which the target region is wrapped in a moisture-retaining bag containing for example peat moss."], "marcotting": ["A method of layering in which the target region is wrapped in a moisture-retaining bag containing for example peat moss."], "air-layering": ["A method of layering in which the target region is wrapped in a moisture-retaining bag containing for example peat moss."], "vine layer": ["Layer of a vine obtained by layering."], "galore": ["An overflowing fullness."], "frisky": ["Playful like a lively kitten."], "kittenish": ["Playful like a lively kitten."], "lithopedion": ["The calcified body of a fetus that died during an abdominal pregnancy but is too large to be reabsorbed by the body."], "stone baby": ["The calcified body of a fetus that died during an abdominal pregnancy but is too large to be reabsorbed by the body."], "ectopic pregnancy": ["A complication of pregnancy in which the embryo implants outside the uterus."], "eccyesis": ["A complication of pregnancy in which the embryo implants outside the uterus."], "tubal pregnancy": ["A pregnancy where the fertilized egg cell implants in the Fallopian tube."], "tubal abortion": ["Spontaneous abortion in case of a tubal pregnancy."], "ovarian pregnancy": ["A pregnancy where the fertilized egg cell implants in the ovary."], "abdominal pregnancy": ["A pregnancy where the embryo develops in the abdominal cavity."], "cervical pregnancy": ["A pregnancy where the fertilized egg cell implants in the cervical lining."], "ovarian": ["Of or pertaining to an ovary."], "tubal": ["Of or relating to the Fallopian tubes."], "cerebral": ["Of or relating to the brain."], "anencephaly": ["A birth defect where large parts of brain and skull are missing, affected children usually only live a few days after being born."], "dire": ["Fraught with extreme danger; nearly hopeless."], "dermal": ["Of, relating to, or affecting the skin.", "Of or pertaining to the dermis."], "dermic": ["Of, relating to, or affecting the skin.", "Of or pertaining to the dermis."], "testicular": ["Of or relating to the testicles."], "nasal": ["Of or pertaining to the nose."], "auditive": ["Of or pertaining to the sense of hearing."], "audile": ["Of or pertaining to the sense of hearing."], "auricular": ["Of or pertaining to the ear.", "Of or pertaining to the sense of hearing."], "pedal": ["Of or pertaining to the foot or feet.", "A lever operated by one's foot that is used to control a machine or mechanism, such as a bicycle or piano."], "bipedal": ["Having two feet."], "two-footed": ["Having two feet."], "view-point": ["The position from which an object is looked at.", "The mental position from which things are viewed.", "A place from which something can be viewed."], "par excellence": ["Beyond comparison, best, of highest quality."], "for instance": ["As an example. [Used to introduce an example or list of examples.]"], "dental": ["Of or pertaining to the teeth.", "Of or pertaining to dentistry.", "A sound articulated with the teeth.", "(Of sounds) Articulated with the teeth."], "e.g.": ["As an example. [Used to introduce an example or list of examples.]"], "microwave oven": ["An appliance for cooking food using microwave energy."], "nuke": ["An appliance for cooking food using microwave energy.", "To cook or heat in a microwave oven."], "missed": ["Not caught with the senses or the mind."], "preoccupied": ["Deeply absorbed in thought."], "frontal": ["Of or relating to the forehead or frontal bone.", "Belonging to the front part."], "frontal bone": ["The bone of the forehead."], "flat foot": ["A foot whose entire sole comes into complete or near-complete contact with the ground."], "flatfoot": ["A foot whose entire sole comes into complete or near-complete contact with the ground."], "phantom": ["A ghostly appearing figure.", "Something existing in perception only."], "phantasm": ["A ghostly appearing figure.", "Something existing in perception only."], "phantasma": ["A ghostly appearing figure.", "Something existing in perception only."], "fantasm": ["A ghostly appearing figure.", "Something existing in perception only."], "slimy": ["Morally reprehensible.", "Pejorative expression for a person who gets on the nerves of others by constantly trying or pretending to do them favours and ask favours from them in a deceptive and unpleasantly submissive way for his or her own benefit."], "unworthy": ["Morally reprehensible."], "worthless": ["Morally reprehensible."], "villainous": ["Extremely wicked."], "uproot": ["To destroy completely leaving no trace.", "To pull up by the roots."], "root out": ["To destroy completely leaving no trace."], "carry off": ["To kill in large numbers."], "kill off": ["To kill in large numbers."], "micro-cook": ["To cook or heat in a microwave oven."], "zap": ["To cook or heat in a microwave oven."], "parlance": ["A manner of speaking that is natural to native speakers of a language."], "audaciousness": ["Fearless daring.", "Aggressive boldness or unmitigated effrontery."], "chopfallen": ["Brought low in spirit."], "deflated": ["Brought low in spirit."], "geknickt": ["Brought low in spirit."], "premarital": ["Occuring or existing before marriage."], "antenuptial": ["Occuring or existing before marriage."], "prenuptial": ["Occuring or existing before marriage."], "prenuptial agreement": ["A legal document, signed by both parties before marriage, stating the legal claims on each other's estate in case of divorce."], "premarital agreement": ["A legal document, signed by both parties before marriage, stating the legal claims on each other's estate in case of divorce."], "antenuptial agreement": ["A legal document, signed by both parties before marriage, stating the legal claims on each other's estate in case of divorce."], "prenup": ["A legal document, signed by both parties before marriage, stating the legal claims on each other's estate in case of divorce."], "obstructive": ["Preventing movement."], "clogging": ["Preventing movement."], "hindering": ["Preventing movement."], "impeding": ["Preventing movement."], "vigesimal system": ["A numeral system that is based on the number twenty."], "base 20 system": ["A numeral system that is based on the number twenty."], "vigesimal": ["Of, pertaining to, or based on twenty."], "lenition": ["Phonetic modification that consists of the weakening of the articulation of a consonant."], "goy": ["A non-Jewish person."], "The Devil's Dictionary": ["The Devil's Dictionary (1881-1906)."], "Gentile": ["A non-Jewish person.", "A religious person who believes Jesus is the Christ and who is a member of a Christian denomination."], "non-Jew": ["A non-Jewish person."], "above all": ["Of prime importance; before anything else."], "crummy": ["Of very poor quality."], "cheesy": ["Of very poor quality."], "chintzy": ["Of very poor quality."], "on the other hand": ["From another point of view."], "punk": ["Of very poor quality."], "sleazy": ["Of very poor quality."], "tinny": ["Of very poor quality."], "background music": ["Any music played in a public space whose main function is to create an atmosphere suitable to a specific occasion, rather than to be listened to."], "supra": ["At an earlier place."], "above mentioned": ["Appearing earlier in the same text."], "foregoing": ["Appearing earlier in the same text."], "overeat": ["To eat too much."], "pig out": ["To eat too much."], "newsworthy": ["Interesting enough to be reported as a news."], "Holy Trinity": ["Representation in which God is considered as being three persons: the Father, The Son and the Holy Spirit."], "Blessed Trinity": ["Representation in which God is considered as being three persons: the Father, The Son and the Holy Spirit."], "Sacred Trinity": ["Representation in which God is considered as being three persons: the Father, The Son and the Holy Spirit."], "partly": ["In part; in some degree; not wholly."], "definitely": ["In a definitive manner."], "forth": ["In a direction away from the speaker or object."], "broken neck": ["A fracture of one of the neck bones."], "cervical fracture": ["A fracture of one of the neck bones."], "distal radius fracture": ["A common bone fracture of the radius in the forearm near the wrist joint."], "wrist fracture": ["A common bone fracture of the radius in the forearm near the wrist joint."], "rib fracture": ["A fracture in one of the bones making up the rib cage."], "clavicle fracture": ["A bone fracture in the collarbone."], "skull fracture": ["A fracture of one of the bones that make up the skull."], "basilar skull fracture": ["A fracture of the base of the skull."], "basal skull fracture": ["A fracture of the base of the skull."], "patella fracture": ["A fracture of the kneecap."], "ulterior": ["Lying beyond what is openly revealed or avowed (especially being kept in the background or deliberately concealed).", "Coming at a subsequent time or stage.", "Beyond or outside an area of immediate interest; remote."], "subterraneous": ["Lying beyond what is openly revealed or avowed (especially being kept in the background or deliberately concealed)."], "if need be": ["If there is a need."], "live broadcast": ["A broadcast seen or heard as it happens."], "vitriol": ["Abusive or venomous language used to express blame or censure or bitter deep-seated ill will.", "To subject to bitter verbal abuse.", "A highly corrosive acid made from sulfur dioxide; widely used in the chemical industry.", "To expose to the effects of vitriol or injure with vitriol."], "vituperation": ["Abusive or venomous language used to express blame or censure or bitter deep-seated ill will."], "invective": ["Abusive or venomous language used to express blame or censure or bitter deep-seated ill will."], "sulfuric acid": ["A highly corrosive acid made from sulfur dioxide; widely used in the chemical industry."], "ineffable": ["That cannot be expressed or described with words.", "That should not be spoken."], "unutterable": ["That cannot be expressed or described with words."], "unspeakable": ["That cannot be expressed or described with words.", "That should not be spoken."], "inexpressible": ["That cannot be expressed or described with words."], "indescribable": ["That cannot be expressed or described with words."], "undescribable": ["That cannot be expressed or described with words."], "ineffably": ["In a manner that cannot be expressed or described with words."], "indescribably": ["In a manner that cannot be expressed or described with words."], "undescribably": ["In a manner that cannot be expressed or described with words."], "unutterably": ["In a manner that cannot be expressed or described with words."], "unspeakably": ["In a manner that cannot be expressed or described with words."], "inexpressibly": ["In a manner that cannot be expressed or described with words."], "ineffability": ["The condition of not being expressible or describable with words."], "inexpressibility": ["The condition of not being expressible or describable with words."], "unutterability": ["The condition of not being expressible or describable with words."], "unspeakability": ["The condition of not being expressible or describable with words."], "indescribability": ["The condition of not being expressible or describable with words."], "undescribability": ["The condition of not being expressible or describable with words."], "indescribableness": ["The condition of not being expressible or describable with words."], "undescribableness": ["The condition of not being expressible or describable with words."], "ineffableness": ["The condition of not being expressible or describable with words."], "unutterableness": ["The condition of not being expressible or describable with words."], "unspeakableness": ["The condition of not being expressible or describable with words."], "inexpressibleness": ["The condition of not being expressible or describable with words."], "marriageability": ["The state of being eligible for marriage."], "unrecorded": ["Seen or heard from a broadcast, as it happens."], "minion": ["A servile or fawning dependant."], "Webster's Dictionary": ["Webster's Dictionary, 1913."], "Webster": ["Webster's Dictionary, 1913."], "belie": ["To show to be false; to convict of, or charge with, falsehood."], "sociological": ["Of or relating to sociology."], "this time": ["On this occasion, on this opportunity."], "television receiver": ["A device for receiving television signals and displaying them in visual form."], "television set": ["A device for receiving television signals and displaying them in visual form."], "tv": ["A device for receiving television signals and displaying them in visual form."], "tv set": ["A device for receiving television signals and displaying them in visual form."], "idiot box": ["A device for receiving television signals and displaying them in visual form."], "boob tube": ["A device for receiving television signals and displaying them in visual form."], "google box": ["A device for receiving television signals and displaying them in visual form."], "plainly": ["In a simple manner or state."], "Alacaluf": ["A language spoken by the Qawasqar people in the Chilean Patagonia.", "A South American people living in Chile in the Strait of Magellan (Brunswick Peninsula, and Wellington, Santa In\u00e9s, and Desolaci\u00f3n islands)."], "Alacalufe": ["A language spoken by the Qawasqar people in the Chilean Patagonia."], "Halakwulup": ["A language spoken by the Qawasqar people in the Chilean Patagonia.", "A South American people living in Chile in the Strait of Magellan (Brunswick Peninsula, and Wellington, Santa In\u00e9s, and Desolaci\u00f3n islands)."], "Kaweskar": ["A language spoken by the Qawasqar people in the Chilean Patagonia.", "A South American people living in Chile in the Strait of Magellan (Brunswick Peninsula, and Wellington, Santa In\u00e9s, and Desolaci\u00f3n islands)."], "Kawesqar": ["A language spoken by the Qawasqar people in the Chilean Patagonia."], "unremarkably": ["Under normal conditions."], "ordinarily": ["Under normal conditions."], "dramatic": ["Of or relating to the drama."], "victorious": ["Being the winner in a contest, struggle, war etc.", "Experiencing triumph."], "titillating": ["Pleasantly and superficially exciting.", "Exciting by touching lightly so as to cause laughter or twitching movements.", "Giving sexual pleasure; sexually arousing."], "tickling": ["Exciting by touching lightly so as to cause laughter or twitching movements."], "winning": ["Being the winner in a contest, struggle, war etc."], "triumphant": ["Experiencing triumph.", "Being joyful and proud especially because of triumph or success."], "tingling": ["Exciting by touching lightly so as to cause laughter or twitching movements."], "pharaonic": ["Pertaining to a Pharaoh."], "Pharaonic": ["Pertaining to a Pharaoh."], "zenithal": ["Relating to or located at or near the zenith."], "zero balance account": ["A checking account which always maintains a balance of zero."], "zero balance": ["An account balance of zero."], "triumphal": ["Being joyful and proud especially because of triumph or success."], "exulting": ["Being joyful and proud especially because of triumph or success."], "jubilant": ["Being joyful and proud especially because of triumph or success."], "prideful": ["Being joyful and proud especially because of triumph or success."], "rejoicing": ["Being joyful and proud especially because of triumph or success."], "zonation": ["Arrangement or distribution in zones."], "zoophilous": ["(Of plants) Pollinated by animals.", "Having a sexual preference for animals."], "zoophilic": ["Having a sexual preference for animals."], "zygosis": ["The union of gametes to form a zygote."], "zoophily": ["A form of pollination whereby pollen is transferred by animals."], "syngamy": ["The fusion of two gametes, one male and one female, in fertilization."], "gaydar": ["The supposed ability to perceive whether a person is homosexual."], "Sunshine State": ["A southeast state of the United States of America"], "Floridian": ["From, or relating to the state of Florida.", "An inhabitant or a resident of the state of Florida."], "xiphoid": ["Shaped like a sword."], "sword-shaped": ["Shaped like a sword."], "ensiform": ["Shaped like a sword."], "Xavier": ["Male first name."], "pimply": ["Having many pimples."], "pimpled": ["Having many pimples."], "philological": ["Of or relating to philology."], "philologic": ["Of or relating to philology."], "eery": ["Inspiring a feeling of fear; strange and frightening."], "heart-shaped": ["Shaped like a heart."], "reckless": ["Indifferent to danger or the consequences.", "Careless or heedless."], "cystitis": ["An inflammation of the urinary bladder."], "urethritis": ["Inflammation of the urethra."], "ureteritis": ["Inflammation of the ureter."], "quotation mark": ["A punctuation mark, usually used in pairs, to indicate that a statement, quote or phrase literally appears."], "maggot": ["The larva of the housefly and blowfly commonly found in decaying organic matter."], "pyelonephritis": ["Inflammation of the renal pelvis."], "glomerulonephritis": ["Inflammation of the glomeruli of the kidneys."], "glomerular nephritis": ["Inflammation of the glomeruli of the kidneys."], "GN": ["Inflammation of the glomeruli of the kidneys."], "nephritis": ["Inflammation of the kidney."], "mastitis": ["Inflammation of breast tissue."], "vulvitis": ["Inflammation of the vulva."], "vaginitis": ["Inflammation of the vagina."], "cervicitis": ["Inflammation of the uterine cervix."], "parametritis": ["Inflammation of the parametrium."], "endometritis": ["Inflammation of the endometrium."], "salpingitis": ["Inflammation in the fallopian tubes."], "oophoritis": ["Inflammation of the ovaries.", "Inflammation of an ovary."], "balanoposthitis": ["Inflammation of the glans penis and the prepuce."], "balanitis": ["Inflammation of the glans penis."], "prostatitis": ["Inflammation of the prostate gland."], "epididymitis": ["Inflammation of the epididymis."], "orchitis": ["Inflammation of the testes."], "orchiditis": ["Inflammation of the testes."], "chorioamnionitis": ["Inflammation of the fetal membranes."], "omphalitis": ["Inflammation of the umbilical cord stump of a newborn."], "knee jerk": ["A reflex extension of the leg resulting from a sharp tap on the patellar tendon.", "Emotional and predictable; -- of certain people and their reactions to events."], "knee-jerk": ["A reflex extension of the leg resulting from a sharp tap on the patellar tendon.", "Emotional and predictable; -- of certain people and their reactions to events."], "knee-jerk reflex": ["A reflex extension of the leg resulting from a sharp tap on the patellar tendon."], "patellar reflex": ["A reflex extension of the leg resulting from a sharp tap on the patellar tendon."], "tenured": ["Appointed for life and not subject to dismissal except for a grave crime."], "irremovable": ["Appointed for life and not subject to dismissal except for a grave crime."], "Caliphate": ["The era of Islam's ascendancy from the death of Mohammed until the 13th century; some Moslems still maintain that the Moslem world must always have a calif as head of the community."], "caliphate": ["The territorial jurisdiction of a caliph.", "The office of a caliph."], "to be honest": ["In all fairness."], "whiteout": ["An arctic atmospheric condition with clouds over snow produce a uniform whiteness and objects are difficult to see; occurs when the light reflected off the snow equals the light coming through the clouds.", "To lose daylight visibility in heavy fog, snow, or rain.", "To cover up with a liquid correction fluid."], "white-out": ["To lose daylight visibility in heavy fog, snow, or rain.", "To cover up with a liquid correction fluid."], "white out": ["To cover up with a liquid correction fluid."], "move in": ["To settle oneself in a new housing."], "adrenalitis": ["Inflammation of an adrenal gland."], "adrenitis": ["Inflammation of an adrenal gland."], "parathyroiditis": ["Inflammation of the parathyroid gland."], "hijacker": ["Someone who uses force to take over a vehicle (especially an airplane) in order to reach an alternative destination.", "A holdup man who stops a vehicle and steals from it."], "highjacker": ["Someone who uses force to take over a vehicle (especially an airplane) in order to reach an alternative destination.", "A holdup man who stops a vehicle and steals from it."], "highwayman": ["A holdup man who stops a vehicle and steals from it."], "road agent": ["A holdup man who stops a vehicle and steals from it."], "factual": ["Existing in act or fact."], "literal": ["Being or reflecting the essential or genuine character of something."], "strenuous": ["Characterized by or performed with much energy or force."], "sophistication": ["Intellectual, moral, or spiritual improvement; enlightenment."], "edification": ["Intellectual, moral, or spiritual improvement; enlightenment."], "thyroiditis": ["Inflammation of the thyroid gland."], "hypophysitis": ["Inflammation of the pituitary gland."], "insulitis": ["Inflammation of the islets of Langerhans of the pancreas."], "lymphangitis": ["Inflammation of the lymphatic channels."], "blood poisoning": ["Inflammation of the lymphatic channels."], "chondritis": ["Inflammation of cartilage."], "osteochondritis": ["Inflammation of the cartilage and bone in a joint."], "spondylitis": ["Inflammation of the vertebra."], "listeriosis": ["Infectious disease caused by the bacterium Listeria monocytogenes."], "placentitis": ["Inflammation of the placenta."], "periostitis": ["Inflammation of the periosteum."], "dermatomyositis": ["Inflammation of the muscles and the skin."], "point of reference": ["Anything serving to indicate or point out, as a sign or token."], "myositis": ["Inflammation of the muscles."], "synovitis": ["Inflammation of the synovial membrane."], "hospitable": ["Cordial and generous towards guests."], "four-dimensional": ["Existing in four dimensions."], "4D": ["Existing in four dimensions."], "n-dimensional": ["Having n dimensions."], "hunchback": ["An abnormal backward curve to the vertebral column.", "A person whose back is hunched because of abnormal curvature of the upper spine."], "kyphosis": ["An abnormal backward curve to the vertebral column."], "humpback": ["An abnormal backward curve to the vertebral column.", "A person whose back is hunched because of abnormal curvature of the upper spine."], "crookback": ["A person whose back is hunched because of abnormal curvature of the upper spine."], "bring action": ["To institute legal proceedings against (a person or institution)."], "ale": ["An alcoholic beverage commonly fermented from barley malt, with hops or some other substance to impart a bitter flavor."], "allure": ["To dispose or incline or entice to; to be attractive by arousing hope or desire."], "all-powerful": ["Having unlimited power, ruling over everyone and everything."], "amalgamate": ["To mix together different elements."], "stubborn as a mule": ["Very stubborn."], "as stubborn as a mule": ["Very stubborn."], "mashed potatoes": ["A dish made with boiled potatoes which are mashed and mixed with milk."], "bursitis": ["Inflammation of a bursa."], "in profile": ["Seen sideways."], "enthesitis": ["Inflammation of the entheses."], "fasciitis": ["Inflammation of the fascia."], "epicondylitis": ["Inflammation of an epicondyle."], "panniculitis": ["Inflammation of subcutaneous adipose tissue."], "dermatitis": ["Inflammation of the skin."], "wheel rim": ["Metallic part of a wheel on which the tire is mounted."], "folliculitis": ["Inflammation of a hair follicle."], "rim": ["Metallic part of a wheel on which the tire is mounted.", "An edge around something, especially when circular."], "cellulitis": ["Inflammation subcutaneous layers of the skin."], "untrustworthy": ["Not worthy of trust."], "unreliable": ["Not reliable."], "undependable": ["Not reliable."], "stomatitis": ["Inflammation of the mucous lining in the mouth."], "flying": ["Occurring or happening within a short time; brief.", "Able to fly."], "antechamber": ["Waiting room from which you can enter directly into the reception (in public offices, professional offices, mansions, etc.)."], "get to": ["To make someone rather angry or impatient; to cause annoyance.", "To be permitted to do something.", "To track down and intimidate."], "get at": ["To make someone rather angry or impatient; to cause annoyance."], "irritate": ["To have an unwanted negative influence on someone, to be distractive to or for someone, impress someone or something in a troublesome or uneasy way.", "To make someone rather angry or impatient; to cause annoyance."], "rile": ["To make someone rather angry or impatient; to cause annoyance."], "nark": ["To make someone rather angry or impatient; to cause annoyance."], "vex": ["To make someone rather angry or impatient; to cause annoyance."], "chafe": ["To make someone rather angry or impatient; to cause annoyance."], "botheration": ["Something which annoys."], "infliction": ["Something which annoys."], "pain in the ass": ["Something which annoys."], "apprise": ["To inform (somebody) of something."], "brag": ["To show off.", "Unusually fine; first-rate.", "An instance of boastful talk."], "boast": ["To show off."], "tout": ["To show off."], "swash": ["To show off."], "shoot a line": ["To show off."], "bluster": ["To show off."], "gasconade": ["To show off.", "An instance of boastful talk."], "boss": ["A person who leads, rules, or is in charge.", "Unusually fine; first-rate.", "A person who oversees and directs the work of others."], "bragging": ["An instance of boastful talk."], "crowing": ["An instance of boastful talk."], "vaporing": ["An instance of boastful talk."], "line-shooting": ["An instance of boastful talk."], "swagger": ["An instance of boastful talk."], "boasting": ["An instance of boastful talk."], "misdemeanor": ["A crime less serious than a felony."], "misdemeanour": ["A crime less serious than a felony."], "abductor muscle": ["Muscle whose function is to move away from the central line of the body the part to which it is connected."], "on the one hand": ["On the one side."], "gingivitis": ["Inflammation of the gums."], "gingival": ["Of or relating to the gums."], "glossitis": ["Inflammation of the tongue."], "sublingual": ["Under the tongue."], "neuromarketing": ["A field of marketing that studies consumers' sensorimotor, cognitive, and affective response to marketing stimuli."], "tonsillitis": ["Inflammation of the tonsils."], "sialadenitis": ["Inflammation of a salivary gland."], "salivary": ["Of or pertaining to saliva."], "parotitis": ["Inflammation of one or both parotid glands."], "cheilitis": ["Inflammation of the lip."], "pulpitis": ["Inflammation of the dental pulp."], "gnathitis": ["Inflammation of the jaw."], "esophagitis": ["Inflammation of the esophagus."], "oesophagitis": ["Inflammation of the esophagus."], "brewers grains": ["Residue of malts that have been used to make beer."], "brewer's grains": ["Residue of malts that have been used to make beer."], "spent grain": ["Residue of malts that have been used to make beer."], "arsenal": ["The place where weapons are made or kept."], "artisan": ["Someone who carries out work that requires a certain speciality or skill."], "ordnance": ["Part of the war material that includes guns, mortars, bombs, etc."], "enterocolitis": ["Inflammation of the colon and small intestine."], "duodenitis": ["Inflammation of the duodenum."], "ileitis": ["Inflammation of the ileum."], "caecitis": ["Inflammation of the caecum."], "typhlitis": ["Inflammation of the caecum."], "typhlenteritis": ["Inflammation of the caecum."], "proctitis": ["Inflammation of the anus and the lining of the rectum."], "cholangitis": ["Inflammation of the bile duct."], "cholecystitis": ["Inflammation of the gall bladder."], "pancreatitis": ["Inflammation of the pancreas."], "peritonitis": ["Inflammation of the peritoneum."], "etc.": ["Continuing in the same way."], "et cetera": ["Continuing in the same way."], "et c\u00e6tera": ["Continuing in the same way."], "et caetera": ["Continuing in the same way."], "&c.": ["Continuing in the same way."], "&c": ["Continuing in the same way."], "rhinitis": ["Inflammation of the nasal mucosa."], "cubicle": ["Small room, small partitioned space."], "runny nose": ["Inflammation of the nasal mucosa.", "Excessive secretion of mucous from the nose."], "common cold": ["A contagious, viral infectious disease of the upper respiratory system; common symptoms include cough, sore throat, runny nose, nasal congestion and sneezing."], "viral upper respiratory tract infection": ["A contagious, viral infectious disease of the upper respiratory system; common symptoms include cough, sore throat, runny nose, nasal congestion and sneezing."], "VURI": ["A contagious, viral infectious disease of the upper respiratory system; common symptoms include cough, sore throat, runny nose, nasal congestion and sneezing."], "acute viral nasopharyngitis": ["A contagious, viral infectious disease of the upper respiratory system; common symptoms include cough, sore throat, runny nose, nasal congestion and sneezing."], "acute viral rhinopharyngitis": ["A contagious, viral infectious disease of the upper respiratory system; common symptoms include cough, sore throat, runny nose, nasal congestion and sneezing."], "acute coryza": ["A contagious, viral infectious disease of the upper respiratory system; common symptoms include cough, sore throat, runny nose, nasal congestion and sneezing."], "coryza": ["Inflammation of the nasal mucosa."], "nasal congestion": ["Blockage of the nasal passages usually due to membranes lining the nose becoming swollen from inflamed blood vessels."], "nasal blockage": ["Blockage of the nasal passages usually due to membranes lining the nose becoming swollen from inflamed blood vessels."], "nasal obstruction": ["Blockage of the nasal passages usually due to membranes lining the nose becoming swollen from inflamed blood vessels."], "blocked nose": ["Blockage of the nasal passages usually due to membranes lining the nose becoming swollen from inflamed blood vessels."], "stuffy nose": ["Blockage of the nasal passages usually due to membranes lining the nose becoming swollen from inflamed blood vessels."], "stuffed up nose": ["Blockage of the nasal passages usually due to membranes lining the nose becoming swollen from inflamed blood vessels."], "rhinorrhea": ["Excessive secretion of mucous from the nose."], "pharyngitis": ["Inflammation of the pharynx."], "coryzal": ["Pertaining to coryza."], "tracheitis": ["Inflammation of the trachea."], "camphor laurel": ["A large evergreen tree originating from Japan and East Asia whose leaves smell of camphor when crushed."], "camphorwood": ["A large evergreen tree originating from Japan and East Asia whose leaves smell of camphor when crushed."], "camphor tree": ["A large evergreen tree originating from Japan and East Asia whose leaves smell of camphor when crushed."], "tachycardiac": ["Relating to or affected with tachycardia."], "chronic disease": ["A medical condition of extended duration, either continuous or marked by frequent recurrence."], "chronic illness": ["A medical condition of extended duration, either continuous or marked by frequent recurrence."], "acute disease": ["A medical condition with a rapid onset and a short duration."], "acute illness": ["A medical condition with a rapid onset and a short duration."], "IAST": ["A popular transliteration scheme that allows a lossless romanization of Indic scripts."], "International Alphabet of Sanskrit Transliteration": ["A popular transliteration scheme that allows a lossless romanization of Indic scripts."], "bronchiolitis": ["Inflammation of the bronchioles."], "pneumonitis": ["Inflammation of lung tissue."], "pleurisy": ["Inflammation of the pleura."], "pleuritis": ["Inflammation of the pleura."], "mediastinitis": ["Inflammation of the tissues in the mid-chest."], "carditis": ["Inflammation of the heart."], "urchin": ["Zoophyte with a calcareous shell ornated with mobile spines."], "sea urchin": ["Zoophyte with a calcareous shell ornated with mobile spines."], "hurcheon": ["Zoophyte with a calcareous shell ornated with mobile spines."], "power assisted steering": ["A system in a vehicle that reduces the effort needed by the driver to steer the wheels."], "power steering": ["A system in a vehicle that reduces the effort needed by the driver to steer the wheels."], "endocarditis": ["Inflammation of the inner layer of the heart."], "baba ghanoush": ["A dish from Arab cuisine that consists of mashed eggplant and various seasonings."], "myocarditis": ["Inflammation of the heart muscle."], "hummus": ["A popular dish in the Middle East that consists of cooked, mashed chickpeas, blended with tahini, olive oil, lemon juice, salt and garlic."], "hommos": ["A popular dish in the Middle East that consists of cooked, mashed chickpeas, blended with tahini, olive oil, lemon juice, salt and garlic."], "hommus": ["A popular dish in the Middle East that consists of cooked, mashed chickpeas, blended with tahini, olive oil, lemon juice, salt and garlic."], "hoummos": ["A popular dish in the Middle East that consists of cooked, mashed chickpeas, blended with tahini, olive oil, lemon juice, salt and garlic."], "hoummous": ["A popular dish in the Middle East that consists of cooked, mashed chickpeas, blended with tahini, olive oil, lemon juice, salt and garlic."], "houmous": ["A popular dish in the Middle East that consists of cooked, mashed chickpeas, blended with tahini, olive oil, lemon juice, salt and garlic."], "tahini": ["A paste of ground sesame seeds used in cooking."], "sesame paste": ["A paste of ground sesame seeds used in cooking."], "isothermic": ["Of or indicating equality of temperature."], "isothermally": ["In an isothermal manner."], "isothermically": ["In an isothermal manner."], "leadership": ["The capacity of a person, group of person, nation, etc. to be accepted as a leader by others."], "anti-seismic": ["Able to resist to an earthquake."], "earthquake-proof": ["Able to resist to an earthquake."], "earthquake resistant": ["Able to resist to an earthquake."], "earthquake-resistant": ["Able to resist to an earthquake."], "antiseismic": ["Able to resist to an earthquake."], "accelerator pedal": ["Pedal which increases the speed of a vehicle when pushed."], "Port-au-Princian": ["A inhabitant of Port-au-Prince.", "From or relating to Port-au-Prince."], "pancarditis": ["Inflammation of the heart involving all three layers."], "vasculitis": ["Inflammation of blood vessels."], "arteritis": ["Inflammation of the walls of arteries."], "capillaritis": ["Inflammation of the capillaries."], "myelitis": ["Inflammation of the spinal cord."], "feeding bottle": ["A container with a rubber nipple used for giving liquids to infants."], "baby's bottle": ["A container with a rubber nipple used for giving liquids to infants."], "build on to": ["Build against something."], "cauldron": ["A very large pot that is used for boiling."], "caldron": ["A very large pot that is used for boiling."], "sentimental": ["Given to or marked by sentiment or sentimentality.", "Effusively or insincerely emotional."], "bathetic": ["Effusively or insincerely emotional."], "drippy": ["Effusively or insincerely emotional."], "maudlin": ["Effusively or insincerely emotional."], "mawkish": ["Effusively or insincerely emotional."], "kitschy": ["Effusively or insincerely emotional."], "mushy": ["Effusively or insincerely emotional."], "schmalzy": ["Effusively or insincerely emotional."], "soupy": ["Effusively or insincerely emotional."], "slushy": ["Effusively or insincerely emotional."], "phylogenetic": ["Of or relating to the evolutionary development of organisms."], "phyletic": ["Of or relating to the evolutionary development of organisms."], "adobe brick": ["An unburnt brick dried in the sun made of clay and dried grasses."], "perish": ["To cease to live."], "cash in one's chips": ["To cease to live."], "buy the farm": ["To cease to live."], "conk": ["To cease to live."], "give-up the ghost": ["To cease to live."], "drop dead": ["To cease to live."], "pop off": ["To cease to live."], "choke": ["To cease to live.", "To squeeze the neck in order to compress the carotide and/or trachea, possibly leading to unconsciousness or death.", "A person who kills by strangling."], "snuff it": ["To cease to live."], "subsister": ["Someone who endured through disaster or hardship."], "preach": ["To encourage support for something.", "To deliver a sermon."], "advocator": ["One who supports something."], "sibling pair": ["Two persons who are related to each other as brother or sister."], "pair of brothers": ["Two brothers."], "pair of sisters": ["Two sisters."], "spiritual marriage": ["A form of marriage where sexual intercourse is abstained from (for example for religious reasons)."], "Josephite marriage": ["A form of marriage where sexual intercourse is abstained from (for example for religious reasons)."], "arachnoiditis": ["Inflammation of the arachnoid."], "neuritis": ["Inflammation of a nerve."], "dacryoadenitis": ["Inflammation of the lacrimal glands."], "dacryocystitis": ["Inflammation of the lacrimal sac."], "scleritis": ["Inflammation of the sclera."], "yes and no": ["Interjection expressing both an affirmative and negative answer to a polar question."], "keratitis": ["Inflammation of the eye's cornea."], "cantankerous": ["Having a difficult and contrary disposition."], "ornery": ["Having a difficult and contrary disposition."], "anti-phlogistic": ["Counteracting inflammation.", "A medicine intended to reduce inflammation."], "brake pedal": ["Pedal of a vehicle on which one pushes in order to brake."], "foot brake": ["Pedal of a vehicle on which one pushes in order to brake."], "choroiditis": ["Inflammation of the choroid."], "chorioretinitis": ["Inflammation of the choroid and retina of the eye."], "choroid retinitis": ["Inflammation of the choroid and retina of the eye."], "blepharitis": ["Inflammation of the eyelid margins."], "conjunctivitis": ["Inflammation of the conjunctiva of the eye."], "pink eye": ["Inflammation of the conjunctiva of the eye."], "Madras eye": ["Inflammation of the conjunctiva of the eye."], "iritis": ["Inflammation of the iris of the eye."], "def\u00e6cate": ["To excrete feces from one's body through the anus."], "uveitis": ["Inflammation of the uvea."], "otitis": ["Inflammation of the ear."], "labyrinthitis": ["Inflammation of the inner ear."], "mastoiditis": ["Inflammation of the mastoid process in the temporal bone."], "otitis media": ["Inflammation of the middle ear."], "junk": ["Worthless object of bad quality."], "middle ear infection": ["Inflammation of the middle ear."], "burn out": ["To be extinguished due to a lack of fuel."], "cease burning": ["To be extinguished due to a lack of fuel."], "disperse": ["Distribute loosely."], "scopophilia": ["A desire to watch erotic or pornographic items in order to obtain sexual pleasure."], "scoptophilia": ["A desire to watch erotic or pornographic items in order to obtain sexual pleasure."], "scopophile": ["A person who likes to watch erotic or pornographic items in order to obtain sexual pleasure."], "scoptophile": ["A person who likes to watch erotic or pornographic items in order to obtain sexual pleasure."], "scopophiliac": ["A person who likes to watch erotic or pornographic items in order to obtain sexual pleasure.", "Of or relating to scopophilia."], "scoptophiliac": ["A person who likes to watch erotic or pornographic items in order to obtain sexual pleasure.", "Of or relating to scopophilia."], "scopophilic": ["Of or relating to scopophilia."], "scoptophilic": ["Of or relating to scopophilia."], "voyeur": ["Someone who spies on people engaged in intimate, often sexual, behaviors."], "peeping tom": ["Someone who spies on people engaged in intimate, often sexual, behaviors."], "Peeping Tom": ["Someone who spies on people engaged in intimate, often sexual, behaviors."], "peeper": ["Someone who spies on people engaged in intimate, often sexual, behaviors."], "cissy": ["Having unsuitable feminine qualities."], "sissified": ["Having unsuitable feminine qualities."], "sissyish": ["Having unsuitable feminine qualities."], "adenitis": ["Inflammation of a gland or lymph node."], "alveolitis": ["Inflammation of the alveoli in the lungs.", "Inflammation of the dental alveolus in the jaw."], "bronchoalveolitis": ["Inflammation of the bronchi and alveoles of the lung."], "bronchopneumonitis": ["Inflammation of the lungs and bronchioles."], "bronchopneumonia": ["Inflammation of the lungs and bronchioles."], "diverticulitis": ["Inflammation of diverticula on the colon."], "endocervicitis": ["Inflammation of the mucous membrane of the uterine cervix."], "imaginitis": ["A fictitious disease characterised by a hyperactive imagination."], "leptomeningitis": ["Inflammation of the leptomeninges."], "odontobothritis": ["Inflammation of the dental alveolus in the jaw."], "pachymeningitis": ["Inflammation of the dura mater of the brain."], "perimeningitis": ["Inflammation of the dura mater of the brain."], "pro-Russian": ["In favor of Russia.", "Person favorable to Russia."], "anti-Russian": ["Hostile to Russia.", "Person hostile to Russia."], "Russophile": ["Liking Russians, the Russian culture or the Russian language.", "Person who likes Russians, the Russian culture or the Russian language."], "Russophobe": ["Hating Russians, the Russian culture or the Russian language.", "Person who hates Russians, the Russian culture or the Russian language."], "Russophobic": ["Hating Russians, the Russian culture or the Russian language."], "Russophobian": ["Hating Russians, the Russian culture or the Russian language."], "Russophobiac": ["Hating Russians, the Russian culture or the Russian language."], "Russophobia": ["The fear or hate of Russia or its culture."], "Russophilia": ["The love of Russia, the Russian culture or the Russian language."], "pyelitis": ["Inflammation of the renal pelvis."], "rhinopharyngitis": ["Inflammation of nose and pharynx."], "vulvovaginitis": ["Inflammation of the vagina and vulva."], "-itis": ["Suffix denoting diseases characterized by inflammation.", "Used to form the names of various fictitious afflictions or diseases."], "telephonitis": ["A fictitious disease that is characterized by excessive talking on the phone."], "financial disorder": ["Disorder in an administration, an enterprise or a country due to a poor management of finances."], "financial mess": ["Disorder in an administration, an enterprise or a country due to a poor management of finances."], "raita": ["A Pakistani and Indian condiment based on yogurt and used as a sauce or dip."], "raitha": ["A Pakistani and Indian condiment based on yogurt and used as a sauce or dip."], "kulfi": ["A popular flavored frozen dessert made from milk which originated in India."], "qulfi": ["A popular flavored frozen dessert made from milk which originated in India."], "chicken tikka masala": ["A curry dish in which roasted chicken chunks (tikka) are served in a rich red, creamy, lightly spiced, tomato-based sauce."], "bath salts": ["Nice-smelling salts used to bring a nice odor to the bathroom when used in a bath or to relax and refresh an individual."], "tandoor": ["A cylindrical clay oven used for cooking and baking in the Middle East and Asia, especially in India and Pakistan."], "naan": ["A leavened, oven-baked flatbread that is popular in South Asia."], "Istanbulite": ["A person from or living in Istanbul."], "Stambul": ["Largest city in Turkey."], "Stamboul": ["Largest city in Turkey."], "headrace sluice gate": ["Opening through which headrace water flows in a water wheel, and that can be closed when the wheel is not used."], "locked up": ["Put in jail."], "jailed": ["Put in jail."], "imprisoned": ["Put in jail."], "captive": ["Put in jail."], "reread": ["Read another time, read again."], "get fucked": ["To ask in an insulting way to another person to go away from you, to stop contact with to stop bothering the person to who the insult is addressed."], "go fuck yourself": ["To ask in an insulting way to another person to go away from you, to stop contact with to stop bothering the person to who the insult is addressed."], "get lost": ["To ask in an insulting way to another person to go away from you, to stop contact with to stop bothering the person to who the insult is addressed.", "To end up in an unknown place, to be not to be found again, to get lost, to irrecoverably slip away."], "go to bath": ["To ask in an insulting way to another person to go away from you, to stop contact with to stop bothering the person to who the insult is addressed."], "go to Jericho": ["To ask in an insulting way to another person to go away from you, to stop contact with to stop bothering the person to who the insult is addressed."], "go to Halifax": ["To ask in an insulting way to another person to go away from you, to stop contact with to stop bothering the person to who the insult is addressed."], "go to hell": ["To ask in an insulting way to another person to go away from you, to stop contact with to stop bothering the person to who the insult is addressed."], "mint syrup": ["Syrup made of mint."], "puck": ["A disk used in various games serving the same functions as a ball does in ball games."], "hand brake": ["A latching brake used to keep the car stationary."], "emergency brake": ["A latching brake used to keep the car stationary."], "e-brake": ["A latching brake used to keep the car stationary."], "parking brake": ["A latching brake used to keep the car stationary."], "handbrake": ["A latching brake used to keep the car stationary."], "handbrake turn": ["A driving technique allowing to perform tight turns by pulling the handbrake while turning."], "e-brake turn": ["A driving technique allowing to perform tight turns by pulling the handbrake while turning."], "hand brake turn": ["A driving technique allowing to perform tight turns by pulling the handbrake while turning."], "call girl": ["A female prostitute who can be hired by telephone."], "call boy": ["A male prostitute who can be hired by telephone."], "prostitute oneself": ["To offer sexual services in exchange for money."], "fornicate": ["To have sexual intercourse outside of marriage, especially with varying partners."], "squat": ["To sit in a crouching position with knees bent and the buttocks on or near the heels.", "To move into a crouching position with knees bent and the buttocks on or near the heels."], "squat down": ["To move into a crouching position with knees bent and the buttocks on or near the heels."], "crouch down": ["To move into a crouching position with knees bent and the buttocks on or near the heels."], "hunker down": ["To move into a crouching position with knees bent and the buttocks on or near the heels."], "whorish": ["Characteristic of a whore."], "whorishly": ["In a whorish manner."], "red-eye": ["A flight that departs at night.", "An effect in photography where the pupils of a subject appear red when a flash is used."], "red-eye flight": ["A flight that departs at night."], "night flight": ["A flight that departs at night."], "night-flight": ["A flight that departs at night."], "Kinshasan": ["Person living in, or originating from Kinshasa.", "Of or relating to Kinshasa."], "grief": ["Something that causes great unhappiness."], "earthen": ["Made of soil."], "mimetic": ["Characterized by or of the nature of or using mimesis.", "Exhibiting mimicry."], "Pan-Arabic": ["Relating to all the Arabic countries."], "koala": ["A thickset arboreal marsupial herbivore native to Australia."], "earache": ["Pain in the ear."], "earpiece": ["Electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear."], "earphone": ["Electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear."], "headphone": ["Electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear."], "earthwork": ["The operation connected with excavations and embankments of earth in preparing foundations of buildings, in constructing canals, railroads, etc."], "wagtail": ["Any bird of the Motacilla and Dendronanthus genera, so named from their constant wagging of the tail."], "differ": ["To be of different opinions."], "Helicobacter pylori": ["A Gram-negative, microaerophilic bacterium that can inhabit various areas of the stomach and duodenum. It causes a chronic low-level inflammation of the stomach lining and is strongly linked to the development of duodenal and gastric ulcers and stomach cancer. (source: Wikipedia)"], "proinflammatory": ["Capable of promoting inflammation."], "placebo-controlled": ["Related to a way of testing a medical therapy in which, in addition to a group of subjects that receives the treatment to be evaluated, a separate control group receives a sham \"placebo\" treatment which is specifically designed to have no real effect."], "hypothesize": ["To believe especially on uncertain or tentative grounds."], "speculate": ["To believe especially on uncertain or tentative grounds."], "theorize": ["To believe especially on uncertain or tentative grounds.", "To formulate theories."], "theorise": ["To believe especially on uncertain or tentative grounds.", "To formulate theories."], "hypothesise": ["To believe especially on uncertain or tentative grounds."], "hypothecate": ["To believe especially on uncertain or tentative grounds."], "tyrannicide": ["The killing of a tyran."], "adsorb": ["To accumulate on a surface."], "agnostic": ["A person who holds to a form of agnosticism, especially uncertainty of the existence of a deity."], "vasospasm": ["A condition in which blood vessels spasm, leading to vasoconstriction."], "audiometer": ["An instrument which is used to determine the acuity of hearing."], "graphology": ["The study of handwriting, especially as a means of analyzing character.", "The study of handwriting, especially as a means of analyzing character."], "draught": ["A current of air.", "The act of pulling something along a surface using motive power."], "healthy diet": ["A diet that helps maintain or improve health."], "dietitian": ["An expert in food and nutrition."], "health professional": ["An organization or person who delivers proper health care in a systematic way professionally to any individual in need of health care services."], "scurvy": ["A disease resulting from a deficiency of vitamin C, which is required for the synthesis of collagen in humans."], "ecumene": ["The inhabited parts of the world."], "oecumene": ["The inhabited parts of the world."], "electroshock": ["A psychiatric treatment in which seizures are electrically induced in anesthetized patients for therapeutic effect."], "electroconvulsive therapy": ["A psychiatric treatment in which seizures are electrically induced in anesthetized patients for therapeutic effect."], "impressionism": ["A movement in art characterized by visible brush strokes, ordinary subject matters, and an emphasis on light and its changing qualities."], "beriberi": ["A nervous system ailment caused by a deficiency of thiamine (vitamin B1) in the diet."], "legitimately": ["In a legitimate manner."], "properly": ["In a legitimate manner."], "loan": ["A sum of money or other valuables or consideration which an individual, group or other legal entity borrows from another individual, group or legal entity (the latter often being a financial institution) with the condition that it be returned or repaid at a later date."], "laughter": ["The sound of laughing."], "beri-beri": ["A nervous system ailment caused by a deficiency of thiamine (vitamin B1) in the diet."], "thiamin": ["A B vitamin found in meat and cereal grains involved in many cellular processes."], "thiamine": ["A B vitamin found in meat and cereal grains involved in many cellular processes."], "vitamin B1": ["A B vitamin found in meat and cereal grains involved in many cellular processes."], "police car": ["A car used by police."], "confectioner's sugar": ["Very finely ground sugar."], "icing sugar": ["Very finely ground sugar."], "feticide": ["The killing of a fetus."], "foeticide": ["The killing of a fetus."], "penial": ["Of or relating to the penis."], "fine sugar": ["Very fine sugar crystals."], "vacuum-packed": ["Packed in an airtight container from which the air has been removed."], "vacuum-sealed": ["Packed in an airtight container from which the air has been removed."], "vacuum packing": ["A method of storing and preserving food by putting it in an airtight container and removing the air."], "Passover": ["A Jewish and Samaritan holy day and festival commemorating the biblical event of Hebrews' escape from enslavement in Egypt."], "lengthwise": ["In the long direction of an oblong object."], "lengthways": ["In the long direction of an oblong object."], "lexical": ["Concerning the vocabulary, words or morphemes of a language."], "legitimacy": ["The quality of being legitimate or valid."], "liquefaction": ["Process of, or state of having been, made liquid."], "laminate": ["To assemble from thin sheets glued together.", "Material formed of thin sheets glued together."], "lilac": ["A large shrub of the genus Syringa bearing white, pale pink or purple flowers.", "A pale purple colour, the colour of some lilac flowers.", "Having a pale purple colour."], "malevolence": ["Hostile attitude or feeling."], "nutritious": ["Providing nutrients."], "liege": ["A person who held land from a feudal lord and received protection in return for homage and allegiance."], "liegeman": ["A person who held land from a feudal lord and received protection in return for homage and allegiance."], "liege subject": ["A person who held land from a feudal lord and received protection in return for homage and allegiance."], "feudatory": ["A person who held land from a feudal lord and received protection in return for homage and allegiance."], "fiord": ["A long, narrow arm of the sea, usually formed by entrance of the sea into a deep glacial trough."], "domestic violence": ["Physical and psychological violence between people living in a household, for example partners, spouses, parents and children."], "domestic abuse": ["Physical and psychological violence between people living in a household, for example partners, spouses, parents and children."], "spousal abuse": ["Physical and psychological violence between spouses."], "spousal rape": ["Non-consensual sex in which the perpetrator is the victim's spouse."], "marital rape": ["Non-consensual sex in which the perpetrator is the victim's spouse."], "trimester": ["A period of three months.", "One of the three academic terms, each comprising one-third of an academic year.", "One of the three divisions of pregnancy, each lasting three months."], "credo": ["Any system of principles or beliefs.", "The creed, as sung or read in the Roman Catholic church."], "religious doctrine": ["The written body of teachings of a religious group that are generally accepted by that group."], "church doctrine": ["The written body of teachings of a religious group that are generally accepted by that group."], "gospel": ["The written body of teachings of a religious group that are generally accepted by that group.", "A religious book that describes the life of Jesus of Nazareth."], "peregrine": ["a cosmopolitan bird of prey in the family Falconidae."], "Latgalian": ["A Baltic language spoken in the eastern part of Latvia known as Latgale.", "A person of Latgalian nationality."], "occupant": ["An owner or tenant of a property."], "resident": ["A human, officially being inhabitant of certain area inside well defined, and precise, borders - usually seen from a standpoint of census, government, register, etc.", "An owner or tenant of a property."], "obsolescence": ["The process of becoming obsolete; falling into disuse or becoming out of date."], "odontologist": ["A medical specialist who deals with teeth."], "scapegoat": ["Someone who is punished for the errors of others.", "To punish someone for the errors of someone else."], "clutch pedal": ["A pedal in a car used to engage or disengage the clutch."], "child soldier": ["Any person under the age of 18 who is a member of or attached to an armed force or group."], "rear mirror": ["A type of mirror found on automobiles and other vehicles, designed to allow the driver to see an area behind the vehicle."], "rear view mirror": ["A type of mirror found on automobiles and other vehicles, designed to allow the driver to see an area behind the vehicle."], "rearview mirror": ["A type of mirror found on automobiles and other vehicles, designed to allow the driver to see an area behind the vehicle."], "inside rearview mirror": ["A type of mirror located inside an automobile and another vehicle, designed to allow the driver to see the area behind the vehicle through the back window."], "inside rear-view mirror": ["A type of mirror located inside an automobile and another vehicle, designed to allow the driver to see the area behind the vehicle through the back window."], "inside rear view mirror": ["A type of mirror located inside an automobile and another vehicle, designed to allow the driver to see the area behind the vehicle through the back window."], "inside mirror": ["A type of mirror located inside an automobile and another vehicle, designed to allow the driver to see the area behind the vehicle through the back window."], "interior mirror": ["A type of mirror located inside an automobile and another vehicle, designed to allow the driver to see the area behind the vehicle through the back window."], "interior rearview mirror": ["A type of mirror located inside an automobile and another vehicle, designed to allow the driver to see the area behind the vehicle through the back window."], "interior rear-view mirror": ["A type of mirror located inside an automobile and another vehicle, designed to allow the driver to see the area behind the vehicle through the back window."], "interior rear view mirror": ["A type of mirror located inside an automobile and another vehicle, designed to allow the driver to see the area behind the vehicle through the back window."], "side-view mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "wing mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "door mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "side mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "exterior mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "exterior rear view mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "outside mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "outside rear view mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "exterior rearview mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "exterior rear-view mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "outside rearview mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "outside rear-view mirror": ["A type of mirror located on the exterior of an automobile or another vehicle, on the left or on the right, designed to allow the driver to see an area behind and to the sides of the vehicle."], "segregation": ["The act of segregating or sequestering.", "A social system that provides separate facilities for minority groups.", "Separation from a mass, and gathering about centers or into cavities at hand through cohesive attraction or the crystallizing process."], "separatism": ["A social system that provides separate facilities for minority groups.", "An advocacy of separation, especially ecclesiastical or political separation."], "lighthouse": ["A building designed to emit light as an aid to ship navigation."], "penis envy": ["In Freudian psychoanalysis the assumption that it is a defining moment for girls when they realize that they don't have a penis and that they envy boys for it."], "wry": ["Dryly humorous with an undertone of regret."], "castration anxiety": ["In Freudian psychoanalysis the fear of losing one's penis."], "triumvirate": ["An association of three individuals who hold the political power."], "triumvir": ["One of the three members of a triumvirate."], "pedophile": ["A person who is sexually attracted to children."], "paedophile": ["A person who is sexually attracted to children."], "p\u00e6dophile": ["A person who is sexually attracted to children."], "pedophiliac": ["A person who is sexually attracted to children.", "Having a sexual preference for children."], "paedophiliac": ["A person who is sexually attracted to children.", "Having a sexual preference for children."], "p\u00e6dophiliac": ["A person who is sexually attracted to children.", "Having a sexual preference for children."], "childlover": ["A person who is sexually attracted to children."], "paedophilic": ["Having a sexual preference for children."], "p\u00e6dophilic": ["Having a sexual preference for children."], "pedophilic": ["Having a sexual preference for children."], "nephology": ["A branch of meteorology that studies clouds and cloud formation."], "nephologist": ["A scientist who studies clouds and cloud formation."], "vernissage": ["The start of an art exhibition."], "waystation": ["A small railway station between the principal stations or a station where the train stops only on a signal."], "way station": ["A small railway station between the principal stations or a station where the train stops only on a signal."], "stopover": ["A small railway station between the principal stations or a station where the train stops only on a signal."], "whistle stop": ["A small railway station between the principal stations or a station where the train stops only on a signal."], "staging post": ["A small railway station between the principal stations or a station where the train stops only on a signal."], "layover": ["A small railway station between the principal stations or a station where the train stops only on a signal."], "zonular": ["Pertaining to a zonule or zonules."], "zonule": ["A little zone, or girdle."], "objectivism": ["One of several doctrines that holds that all of reality is objective and exists outside of the mind."], "outrage": ["An excessively violent or vicious attack.", "A feeling of righteous anger."], "nimbus": ["A solid disk of light or gold.", "A gray rain cloud."], "magpie": ["One of several kinds of bird in the family Corvidae, especially Pica pica."], "mahogany": ["Numerous varieties of dark-coloured hardwood."], "manicure": ["Cosmetic treatment of the hands and fingernails.", "A person who performs cosmetic treatment of hands and fingernails.", "To take care of the hands and fingernails."], "Malawian": ["A person who originates from or lives in Malawi."], "headlamp": ["A lamp attached to a vehicle used to illuminate the road in case of low visibility."], "headlight": ["A lamp attached to a vehicle used to illuminate the road in case of low visibility."], "indoor antenna": ["A type of radio or TV antenna designed to be placed indoors."], "indoor aerial": ["A type of radio or TV antenna designed to be placed indoors."], "internal antenna": ["A type of radio or TV antenna designed to be placed indoors."], "internal aerial": ["A type of radio or TV antenna designed to be placed indoors."], "descendants": ["All of the offspring of a given progenitor."], "mattress": ["A pad on which a person can recline and sleep."], "metallurgical": ["Of or relating to metallurgy, the study of metals and their properties."], "melancholic": ["Filled with or affected by melancholy, great sadness or depression."], "foodborne illness": ["An illness resulting from the consumption of contaminated food."], "foodborne disease": ["An illness resulting from the consumption of contaminated food."], "food poisoning": ["An illness resulting from the consumption of contaminated food."], "cephalalgia": ["A common (and sometimes acute) pain of the head and head area."], "pseudopregnancy": ["The appearance of signs and symptoms associated with pregnancy when no real pregnancy exists."], "pseudocyesis": ["The appearance of signs and symptoms associated with pregnancy when no real pregnancy exists."], "hysterical pregnancy": ["The appearance of signs and symptoms associated with pregnancy when no real pregnancy exists."], "false pregnancy": ["The appearance of signs and symptoms associated with pregnancy when no real pregnancy exists."], "mammoth": ["A large, hairy, extinct elephant-like mammal."], "mongrel": ["An animal of mixed kind or uncertain origin, especially a dog."], "mutt": ["An animal of mixed kind or uncertain origin, especially a dog."], "propitiate": ["To bring to a state of peace, quiet, ease, calm, or contentment."], "acerb": ["Being harsh or corrosive in tone."], "acerbic": ["Being harsh or corrosive in tone."], "blistering": ["Being harsh or corrosive in tone."], "sulfurous": ["Being harsh or corrosive in tone."], "sulphurous": ["Being harsh or corrosive in tone."], "virulent": ["Being harsh or corrosive in tone."], "aegis": ["Kindly endorsement and guidance.", "A armor plate that protects the chest; the front part of a cuirass."], "auspices": ["Kindly endorsement and guidance."], "egis": ["A armor plate that protects the chest; the front part of a cuirass."], "pernicious": ["Working or spreading in a hidden and usually injurious way.", "Exceedingly harmful."], "subtle": ["Working or spreading in a hidden and usually injurious way."], "baneful": ["Exceedingly harmful."], "pestilent": ["Exceedingly harmful."], "indignation": ["A feeling of righteous anger."], "monolingual": ["Knowing, or using a single language."], "magnetometer": ["An instrument used to measure the intensity and direction of a magnetic field."], "margarine": ["A spread, manufactured from a blend of vegetable oils mostly used as a substitute for butter."], "metaphysical": ["Of or pertaining to metaphysics."], "counterattack": ["An attack made in response to an attack by the opponents."], "counter-attack": ["An attack made in response to an attack by the opponents."], "corn oil": ["Oil extracted from the germ of corn."], "mascara": ["A cosmetic used to darken and thicken the eyelashes."], "sated": ["Having eaten enough."], "satiated": ["Having eaten enough."], "pole corn": ["An ear of sweetcorn that is cooked and served whole and eaten from its cob (usually with butter)."], "cornstick": ["An ear of sweetcorn that is cooked and served whole and eaten from its cob (usually with butter)."], "sweet pole": ["An ear of sweetcorn that is cooked and served whole and eaten from its cob (usually with butter)."], "butter-pop": ["An ear of sweetcorn that is cooked and served whole and eaten from its cob (usually with butter)."], "long maize": ["An ear of sweetcorn that is cooked and served whole and eaten from its cob (usually with butter)."], "myxomatosis": ["A disease which affects rabbits caused by the Myxoma virus."], "corroboration": ["That which corroborates."], "kike": ["A follower of Judaism."], "hymie": ["A follower of Judaism."], "sheeny": ["A follower of Judaism."], "yid": ["A follower of Judaism."], "Israelite": ["A follower of Judaism."], "mendacious": ["Given to lying.", "Intentionally untrue."], "eat one's fill": ["To eat until one is not hungry anymore."], "cerumenolysis": ["The process of softening earwax for removal."], "cerumenolytic": ["A chemical that softens or removes earwax.", "Of or relating to cerumenolysis."], "actinometer": ["Instrument that measures the heating power of radiation, especially solar radiation."], "actinometry": ["The measurement of the heating power of electromagnetic radiation, especially that of solar radiation."], "actinometric": ["Of or pertaining to actinometry.", "Measured using an actinometer."], "Neoplatonism": ["A school of religious and mystical philosophy founded by Plotinus in the 3rd century that is based on the teachings of Plato and earlier Platonists."], "Neo-Platonism": ["A school of religious and mystical philosophy founded by Plotinus in the 3rd century that is based on the teachings of Plato and earlier Platonists."], "jig": ["A fishing lure consisting of a lead sinker surrounded with hooks."], "jigging": ["The practice of fishing with a jig."], "jigger": ["A person who fishes with a jig."], "tea wagon": ["Small table on wheels used to transport and put down dishes and food."], "teacart": ["Small table on wheels used to transport and put down dishes and food."], "tea trolley": ["Small table on wheels used to transport and put down dishes and food."], "tea cart": ["Small table on wheels used to transport and put down dishes and food."], "trolley table": ["Small table on wheels used to transport and put down dishes and food."], "shoot oneself": ["To kill oneself with a gun."], "blow one's brains own": ["To kill oneself with a gun."], "poison oneself": ["To kill oneself with poison."], "hang oneself": ["To kill oneself by hanging."], "drown oneself": ["To kill oneself by drowning."], "xylography": ["The art of carving images into wood and creating prints from it."], "woodcut": ["The art of carving images into wood and creating prints from it.", "A print that was made using the woodcut technique."], "forklift": ["A truck used to lift and transport heavy materials with a fork."], "forklift truck": ["A truck used to lift and transport heavy materials with a fork."], "lift truck": ["A truck used to lift and transport heavy materials with a fork."], "high/low": ["A truck used to lift and transport heavy materials with a fork."], "stacker-truck": ["A truck used to lift and transport heavy materials with a fork."], "trailer loader": ["A truck used to lift and transport heavy materials with a fork."], "sideloader": ["A truck used to lift and transport heavy materials with a fork."], "fork truck": ["A truck used to lift and transport heavy materials with a fork."], "tow-motor": ["A truck used to lift and transport heavy materials with a fork."], "fork hoist": ["A truck used to lift and transport heavy materials with a fork."], "orphanage": ["Institution where orphaned children are raised and cared for."], "proposal": ["The act of asking a person for their hand in marriage."], "proposal of marriage": ["The act of asking a person for their hand in marriage."], "pop the question": ["To ask for a person's hand in marriage."], "go bald": ["To lose one's hair on the head."], "centrifuge": ["A device in which a mixture of denser and lighter materials (normally dispersed in a liquid) is separated by being spun about a central axis at high speed."], "carnival": ["A festive season which occurs immediately before Lent."], "olfactometer": ["Instrument for measuring the sensitivity of the sense of smell."], "olivine": ["A yellow to yellow-green mineral which is one of the most common minerals on Earth."], "olivine group": ["A group of minerals in the class of the silicates including tephroite, monticellite and kirschsteinite."], "Lent": ["Period of penitence for Christians before Easter."], "olivary": ["Shaped like an olive."], "egg-shaped": ["Shaped like an egg."], "ovate": ["Shaped like an egg."], "ovaliform": ["Shaped like an egg."], "oliguria": ["The decreased production of urine."], "Augsburg": ["City in the southwest of Bavaria, Germany."], "marker lamp": ["A lighting device used on vehicles, in particular cars, to indicate its presence to the other drivers, at night or when the visibility is low."], "marker light": ["A lighting device used on vehicles, in particular cars, to indicate its presence to the other drivers, at night or when the visibility is low."], "rivalry": ["The relationship between two or more rivals who compete with each other."], "rudimentary": ["With less than, or only the minimum."], "restless": ["Unable to be still or quiet."], "medication": ["A substance which specifically promotes healing.", "A medicine, or all the medicines regularly taken by a patient."], "cash on delivery": ["A transaction in which goods are paid for in full in cash or by certified check immediately when they are received by the buyer."], "collect on delivery": ["A transaction in which goods are paid for in full in cash or by certified check immediately when they are received by the buyer."], "consomm\u00e9": ["A clear, originally meat, soup."], "fighter": ["A person who fights or struggles using physical force or weapon."], "vasoconstriction": ["The narrowing of the blood vessels resulting from contraction of the muscular wall of the vessels, particularly the large arteries, small arterioles and veins."], "ravioli": ["Small square parcels of pasta filled with meat, cheese, spinach etc."], "rubble": ["The broken remains of an object, usually rock or masonry."], "revisionism": ["The advocacy of a revision of some accepted theory, doctrine or a view of historical events."], "requisition": ["A request for something, especially a formal written request on a pre-printed form.", "To demand something, especially for a military need of personnel, supplies or transport."], "kwashiorkor": ["An acute form of childhood protein-energy malnutrition characterized by edema, irritability, anorexia, ulcerating dermatoses, and an enlarged liver with fatty infiltrates (source: Wikipedia)."], "osteoporosis": ["A disease of bone that leads to an increased risk of fracture."], "biochemical": ["Of or relating to biochemistry.", "A chemical substance derived from a biological source."], "vitamin B2": ["An easily absorbed micronutrient with a key role in maintaining health in humans and animals."], "riboflavin": ["An easily absorbed micronutrient with a key role in maintaining health in humans and animals."], "vitamin B3": ["A colourless, water-soluble solid, organic compound with the formula C5H4NCO2H. It's a derivative of pyridine, with a carboxyl group (COOH) at the 3-position."], "niacin": ["A colourless, water-soluble solid, organic compound with the formula C5H4NCO2H. It's a derivative of pyridine, with a carboxyl group (COOH) at the 3-position."], "nicotinic acid": ["A colourless, water-soluble solid, organic compound with the formula C5H4NCO2H. It's a derivative of pyridine, with a carboxyl group (COOH) at the 3-position."], "vitamin B5": ["A water-soluble vitamin required to sustain life, critical in the metabolism and synthesis of carbohydrates, proteins, and fats."], "pantothenic acid": ["A water-soluble vitamin required to sustain life, critical in the metabolism and synthesis of carbohydrates, proteins, and fats."], "mercurial": ["Liable to sudden unpredictable change."], "quicksilver": ["Liable to sudden unpredictable change."], "stamina": ["Enduring strength and energy."], "nutriment": ["Chemical elements which are involved in the construction of living tissue and which are needed by both plant and animal. The most important in terms of bulk are carbon, hydrogen and oxygen, with other essential ones including nitrogen, potassium, calcium, sulphur and phosphorus."], "nourishment": ["Chemical elements which are involved in the construction of living tissue and which are needed by both plant and animal. The most important in terms of bulk are carbon, hydrogen and oxygen, with other essential ones including nitrogen, potassium, calcium, sulphur and phosphorus."], "sustenance": ["Chemical elements which are involved in the construction of living tissue and which are needed by both plant and animal. The most important in terms of bulk are carbon, hydrogen and oxygen, with other essential ones including nitrogen, potassium, calcium, sulphur and phosphorus."], "oratory": ["The art of public speaking, especially in a formal, expressive, or forceful manner."], "oddity": ["An odd or strange thing."], "ovation": ["Prolonged enthusiastic applause."], "splenic": ["Of or relating to the spleen."], "splenectomy": ["A surgical procedure that partially or completely removes the spleen."], "thicket": ["A dense, but generally small, growth of shrubs, bushes or small trees."], "copse": ["A dense, but generally small, growth of shrubs, bushes or small trees."], "tonnage": ["The capacity of a ship's hold etc in units of 100 cubic feet."], "trade balance": ["The difference between the monetary value of exports and imports of output in an economy over a certain period."], "balance of trade": ["The difference between the monetary value of exports and imports of output in an economy over a certain period."], "powerless": ["Lacking legal authority.", "Lacking sufficient power or strength."], "wrist watch": ["A portable or wearable timepiece worn connected to a band around the wrist."], "wristwatch": ["A portable or wearable timepiece worn connected to a band around the wrist."], "hindsight": ["Understanding the nature of an event after it has happened."], "rampage": ["Violently angry and destructive behavior.", "To act violently, recklessly, or destructively."], "violent disorder": ["Violently angry and destructive behavior."], "Aramaic (Official, Hebrew)": ["Official Aramaic language written in the Hebrew script."], "Aramaic (Jewish Palestinian)": ["A Western Aramaic language spoken by the Jews in Palestine in the early first millennium."], "Jewish Palestinian Aramaic": ["A Western Aramaic language spoken by the Jews in Palestine in the early first millennium."], "Galilean Aramaic": ["A Western Aramaic language spoken by the Jews in Palestine in the early first millennium."], "macronutrient": ["A substance needed in large quantities for normal body function."], "Aramaic (Jewish Babylonian)": ["The form of Middle Aramaic used by Jewish writers in Babylonia between the 4th century and the 11th century CE."], "videoconference": ["A conference held by video link. An arranged video phone call between more than two parties."], "video conference": ["A conference held by video link. An arranged video phone call between more than two parties."], "vicar": ["In the Church of England, the priest of a parish, receiving a salary or stipend but not tithes.", "In the Roman Catholic and some other churches, a cleric acting as local representative of a higher ranking member of the clergy."], "omen": ["A sign that is supposed to reveal whether the future will be favourable or not."], "augury": ["A sign that is supposed to reveal whether the future will be favourable or not."], "Ugandan": ["Someone who is from or is living in Uganda.", "Of or relating to Uganda or the Ugandan people."], "nightstick": ["A short heavy club with a rounded head used as a weapon."], "billy": ["A short heavy club with a rounded head used as a weapon."], "billystick": ["A short heavy club with a rounded head used as a weapon."], "billy club": ["A short heavy club with a rounded head used as a weapon."], "pneumonia": ["A respiratory disease characterized by inflammation of the lung parenchyma (excluding the bronchi) with congestion caused by viruses or bacteria or irritants."], "unequal": ["Having a different value."], "rudder": ["An underwater vane used to steer a vessel. The rudder is controlled by means of a wheel, tiller or other apparatus."], "dungeon": ["An underground prison or vault."], "RNA synthesis": ["The process of creating an equivalent RNA copy of a sequence of DNA."], "anthropometry": ["The measurement and study of the human body and its parts and capacities."], "anthropometric": ["Of or relating to anthropometry."], "aortic": ["Of or relating to the aorta."], "apical": ["Situated at an apex."], "arterial": ["Of or involving or contained in the arteries."], "maternal mortality": ["The death of a woman during or shortly after a pregnancy."], "maternal death": ["The death of a woman during or shortly after a pregnancy."], "obstetrical death": ["The death of a woman during or shortly after a pregnancy."], "bantam": ["Very small in size."], "lilliputian": ["Very small in size."], "petite": ["Very small in size."], "flyspeck": ["Very small in size."], "cupola": ["Common structural element of architecture that resembles the hollow upper half of a sphere."], "grain of maize": ["The edible part of a corn plant."], "maize kernel": ["The edible part of a corn plant."], "Eyjafjallaj\u00f6kull": ["A glacier in Iceland with a volcano underneath."], "gadfly": ["A persistently annoying person.", "Any of various large flies that annoy livestock."], "blighter": ["A persistently annoying person."], "pesterer": ["A persistently annoying person."], "mendaciously": ["In a mendacious and untruthful manner."], "untruthfully": ["In a mendacious and untruthful manner."], "desultory": ["Marked by lack of definite plan or regularity or purpose; jumping from one thing to another."], "overbold": ["Not showing due respect."], "saucy": ["Not showing due respect."], "sassy": ["Not showing due respect."], "devious": ["Not expressed directly, by opposition to the accepted or proper way.", "Deviating from a straight course.", "Characterized by insincerity or deceit."], "circuitous": ["Deviating from a straight course."], "roundabout": ["A type of circular intersection in which traffic must travel in one direction around a central island.", "Deviating from a straight course."], "shifty": ["Characterized by insincerity or deceit."], "hairdo": ["A style of fashion of wearing the hair.", "The style in which a person's hair is cut, arranged, and worn."], "hairstyle": ["A style of fashion of wearing the hair."], "overnutrition": ["The intake of more food than the body needs."], "overeating": ["The intake of more food than the body needs."], "bombardon": ["A brass instrument, the bass version of the tuba."], "consentaneous": ["Based on complete assent or agreement."], "consentient": ["Based on complete assent or agreement."], "miscegenation": ["Reproduction by parents of different races (especially by white and non-white persons)."], "crossbreeding": ["Reproduction by parents of different races (especially by white and non-white persons)."], "interbreeding": ["Reproduction by parents of different races (especially by white and non-white persons)."], "portent": ["A sign that is supposed to reveal whether the future will be favourable or not."], "biotype": ["A group of organisms having the same specific genotype."], "bigamist": ["Someone who has two spouses simultaneously."], "blastoderm": ["The germination point in an ovum from whence the embryo develops."], "haircut": ["The way someone's hair is cut."], "biased": ["Favoring one person or side over another.", "Excessively devoted to one faction.", "Exhibiting prejudice or bias."], "colored": ["Favoring one person or side over another."], "coloured": ["Favoring one person or side over another."], "one-sided": ["Favoring one person or side over another.", "Excessively devoted to one faction."], "slanted": ["Favoring one person or side over another."], "incurable": ["(Of a disease) Impossible to cure."], "uncurable": ["(Of a disease) Impossible to cure."], "immedicable": ["(Of a disease) Impossible to cure."], "healable": ["Capable of being cured."], "Capaccio-Paestum": ["Town in the province of Salerno, region Campania, Italy."], "linoleum": ["An inexpensive waterproof covering used especially for floors, made from solidified linseed oil over a burlap or canvas backing, or from its modern replacement, polyvinyl chloride."], "epistemological": ["Of or relating to epistemology."], "epistemic": ["Of or relating to epistemology."], "anti-intellectual": ["Smug, ignorant, indifferent or hostile to artistic and cultural values."], "isomorphic": ["Having similar appearance but genetically different."], "isomorphous": ["Having similar appearance but genetically different."], "-al": ["Forming adjectives indicating membership in or relationship to the meaning of the root word.", "Forming nouns, especially of verbal action.", "(chemistry) the IUPAC nomenclature used in organic chemistry to form names of aldehydes containing the -(CO)H group. It was extracted from the word \"aldehyde\"."], "perineal tear": ["The tearing of the tissue between vulva and anus during childbirth."], "perineal rupture": ["The tearing of the tissue between vulva and anus during childbirth."], "perineal laceration": ["The tearing of the tissue between vulva and anus during childbirth."], "perineal": ["Of or relating to the perineum."], "C-section": ["A surgical procedure in which incisions are made through a mother's abdomen and uterus to deliver one or more babies."], "Caesarean section": ["A surgical procedure in which incisions are made through a mother's abdomen and uterus to deliver one or more babies."], "Caesar": ["A surgical procedure in which incisions are made through a mother's abdomen and uterus to deliver one or more babies.", "A male first name.", "An ancient Roman family name, notably that of the Roman Emperor Iulius Caesar."], "-algia": ["Forming adjectives indicating a relation to pain or suffering."], "-algy": ["Forming adjectives indicating a relation to pain or suffering."], "-ane": ["Used to form the names of the saturated hydrocarbons.", "A simple binary compound of hydrogen and a nonmetal or metalloid."], "-ase": ["Used in biology and chemistry to show that a molecule is an enzyme."], "-ate": ["Used to form names of salts or esters derived from an acid."], "-bar": ["Used to indicate heaviness and atmospheric pressure."], "greater bean": ["An annual plant native to East Asia that is widely cultivated for its fruit."], "soy": ["An annual plant native to East Asia that is widely cultivated for its fruit."], "soy bean": ["The edible seed of the soybean plant which contains a lot of protein."], "soymilk": ["A drink made of soybeans."], "soybean milk": ["A drink made of soybeans."], "soy juice": ["A drink made of soybeans."], "soy drink": ["A drink made of soybeans."], "soy beverage": ["A drink made of soybeans."], "infuriate": ["To make furious."], "incense": ["To make furious."], "flippancy": ["Inappropriate levity."], "light-mindedness": ["Inappropriate levity."], "mundane": ["Occurring or returning in the ordinary course of events."], "routine": ["Occurring or returning in the ordinary course of events."], "unremarkable": ["Occurring or returning in the ordinary course of events."], "workaday": ["Occurring or returning in the ordinary course of events."], "ministration": ["Action given to provide assistance."], "cassation": ["The abrogation of a law by a higher authority."], "annulment": ["The abrogation of a law by a higher authority."], "cavatina": ["Originally a short song of simple character, without a second strain or any repetition of the air"], "prewashed": ["Already washed."], "pre-washed": ["Already washed."], "downshift": ["To change into a lower gear (in motor vehicles)."], "gear down": ["To change into a lower gear (in motor vehicles)."], "shift down": ["To change into a lower gear (in motor vehicles)."], "upshift": ["To change into a higher gear (in motor vehicles)."], "shift up": ["To change into a higher gear (in motor vehicles)."], "euphonium": ["A conical-bore, tenor-voiced brass instrument."], "baritone horn": ["A cylindrical bore instrument, member of the brass instrument family, pitched in B\u266d."], "kinako": ["A product commonly used in Japanese cuisine made of toasted soybeans ground into powder."], "soybean flour": ["A product commonly used in Japanese cuisine made of toasted soybeans ground into powder."], "shylock": ["A merciless usurer in a play by Shakespeare.", "Someone who lends money at excessive rates of interest."], "Shylock": ["A merciless usurer in a play by Shakespeare."], "usurer": ["Someone who lends money at excessive rates of interest."], "loan shark": ["Someone who lends money at excessive rates of interest."], "moneylender": ["Someone who lends money at excessive rates of interest."], "Cheddar cheese": ["A pale yellow to orange, sharp-tasting cheese originally made in the English village of Cheddar, in Somerset."], "Prato": ["A province in the Tuscany region of Italy."], "guerilla": ["A soldier in a small independent group fighting against the government or regular forces by surprise raids."], "irregular": ["A soldier in a small independent group fighting against the government or regular forces by surprise raids."], "insurgent": ["A soldier in a small independent group fighting against the government or regular forces by surprise raids."], "partisan": ["A soldier in a small independent group fighting against the government or regular forces by surprise raids."], "piggy bank": ["A container used to collect coins, often in form of a pig."], "vulcanology": ["The branch of geology that deals with volcanism."], "volcanologist": ["A person who studies volcanology."], "piggybank": ["A container used to collect coins, often in form of a pig."], "money box": ["A container used to collect coins, often in form of a pig."], "penny bank": ["A container used to collect coins, often in form of a pig."], "vulcanologist": ["A person who studies volcanology."], "volcanological": ["Relating to volcanology."], "vulcanological": ["Relating to volcanology."], "rocket": ["Annual plant whose leaves are edible and used in salads.", "Reaction-propelled tool using only load propellants, without resorting to the surrounding medium."], "arugula": ["Annual plant whose leaves are edible and used in salads."], "garden rocket": ["Annual plant whose leaves are edible and used in salads."], "eruca": ["Annual plant whose leaves are edible and used in salads."], "rocketsalad": ["Annual plant whose leaves are edible and used in salads."], "carry along": ["(For a flow of water, air, etc.) To transport with the flow."], "cart": ["Wire basket fastened to a frame with wheels which customers use for collecting purchases in a store.", "To transport with a cart.", "a two-wheeled vehicle, commonly without springs, drawn by mules, oxen, or the like, used for the conveyance of heavy goods.", "To draw slowly or heavily."], "pulpit": ["Raised platform for preaching in ancient Christian churches."], "ambulatory": ["In Gothic churches, the space that is sometimes found between the choir and the apse."], "antefixa": ["Terminal part of the roof located on the beam of a temple or other classic building, often decorated with figures in bas-relief."], "capitulation": ["The act of surrendering to the enemy.", "The act of surrendering to an enemy upon stipulated terms."], "largess": ["Liberality in bestowing gifts; extremely liberal and generous of spirit."], "largesse": ["Liberality in bestowing gifts; extremely liberal and generous of spirit."], "openhandedness": ["Liberality in bestowing gifts; extremely liberal and generous of spirit."], "ipso facto": ["By the fact itself."], "imho": ["In my humble opinion."], "IMHO": ["In my humble opinion."], "chauvinist": ["A person with excessive patriotism."], "circus": ["A travelling company of performers that may include acrobats, clowns, trained animals, and other novelty acts, that gives shows usually in a circular tent."], "racism": ["The belief that race is a primary determinant of human traits and capacities and that racial differences produce an inherent superiority of a particular race and inferiority of other races."], "apsidal conch": ["A semi-dome shaped structure that covers the apse."], "reinforced concrete": ["A concrete in which a metallic structure has been incorporated."], "ferroconcrete": ["A concrete in which a metallic structure has been incorporated."], "in my humble opinion": ["In my humble opinion."], "among other things": ["Among other things."], "drudgery": ["Hard monotonous routine work."], "plodding": ["Hard monotonous routine work."], "donkeywork": ["Hard monotonous routine work."], "fruitfulness": ["The intellectual productivity of a creative imagination.", "The quality of something that causes or assists healthy growth."], "cuniculture": ["The breeding of rabbits."], "somniferously": ["In a somniferous manner."], "monorchid": ["Having or appearing to have only one testicle.", "An individual with only one testicle."], "verse": ["A poetic form with regular meter and a fixed rhyme scheme."], "visor": ["A part of a helmet, arranged so as to lift or open, and so show the face. The openings for seeing and breathing are generally in it."], "greenhouse": ["A building made of glass or transparent plastic in which plants are grown more rapidly than outside such a building by the action of heat from the sun which is trapped inside."], "glasshouse": ["A building made of glass or transparent plastic in which plants are grown more rapidly than outside such a building by the action of heat from the sun which is trapped inside."], "soporifically": ["In a somniferous manner."], "metaphorically": ["In a metaphoric manner."], "cohort": ["A demographic grouping of people, especially those in a defined age group.", "Any division of a Roman legion; normally of about 500 men."], "cruelty": ["Positive pleasure or indifference in inflicting suffering."], "Chinese parsley": ["An annual herb in the family Apiaceae whose seeds and leaves are often used in cooking."], "cilantro": ["An annual herb in the family Apiaceae whose seeds and leaves are often used in cooking.", "The edible leaves of coriander (Coriandrum sativum) used as an ingredient in various dishes."], "coriander leaves": ["The edible leaves of coriander (Coriandrum sativum) used as an ingredient in various dishes."], "coriander seed": ["The dried seed of the coriander plant (Coriandrum sativum) which is used as a spice whole or ground."], "soldier of the Red Army": ["Soldier of the Red Army."], "bone tired": ["Very tired."], "bone-tired": ["Very tired."], "jambul": ["An evergreen tropical tree in the plant family Myrtaceae, native to Bangladesh, India, Nepal, Pakistan and Indonesia."], "-cardium": ["Forms medical and scientific terms relating to the heart."], "jamboo": ["An evergreen tropical tree in the plant family Myrtaceae, native to Bangladesh, India, Nepal, Pakistan and Indonesia."], "Java plum": ["An evergreen tropical tree in the plant family Myrtaceae, native to Bangladesh, India, Nepal, Pakistan and Indonesia."], "ham": ["Meat cut from the thigh of a pork."], "prima facie": ["At first sight.", "As it seems at first sight."], "aught": ["Any object, act, state, event, or fact whatever."], "notoriety": ["The condition of being widely known, especially for something bad; infamous."], "mating": ["The act of pairing a male and female for reproductive purposes."], "sexual union": ["The act of pairing a male and female for reproductive purposes."], "union": ["The act of pairing a male and female for reproductive purposes.", "Of or pertaining to trade unions."], "pairing": ["The act of pairing a male and female for reproductive purposes."], "life history theory": ["An analytical framework widely used in evolutionary biology, ecology, psychology, and evolutionary anthropology which postulates that many of the physiological traits and behaviors of organisms may be best understood in terms of effects of natural selection on the key maturational and reproductive characteristics that define the life course."], "timing": ["The time when something happens."], "vinegar fly": ["A species of Diptera, or the order of flies, in the family Drosophilidae."], "unrelated": ["Not connected or associated."], "mediated": ["Acting or brought about through an intervening agency."], "interact": ["To act together or towards others or with others."], "dimorphic": ["Occurring or existing in two different forms."], "dimorphous": ["Occurring or existing in two different forms."], "cytoplasmic": ["Of or relating to cytoplasm."], "cytoplasmatic": ["Of or relating to cytoplasm."], "covariance": ["A statistical measure of the variance of two random variables measured in the same mean time period."], "allelic": ["Of or relating to alleles."], "assess": ["To place a value on."], "valuate": ["To place a value on."], "introgression": ["The movement of a gene (gene flow) from one species into the gene pool of another by backcrossing an interspecific hybrid with one of its parents."], "backcrossing": ["A crossing of a hybrid with one of its parents or an individual genetically similar to its parent, in order to achieve offspring with a genetic identity which is closer to that of the parent."], "dispersal": ["The process in which an organism spreads out geographically."], "post-zygotic": ["Occurring after fertilization of the ovum by the sperm."], "postzygotic": ["Occurring after fertilization of the ovum by the sperm."], "post-zygotic mutation": ["A mutation that an organism acquires during its lifespan, rather than inheriting from its parent(s) by the fusion of the haploid pronuclei in the sperm and egg."], "napalm": ["A highly flammable, viscous substance."], "peritoneum": ["The tissue that lines the abdominal wall and covers most of the organs in the abdomen."], "lockup": ["A place in which individual persons have restricted personal freedom."], "monophyly": ["The condition of being monophyletic, of including all descendants from a given ancestral species."], "paraphyletic": ["Said of a defined group constrained within a clade without including all descendants of the most common ancestor."], "polyphyly": ["The condition of being polyphyletic."], "legislator": ["Someone who creates or enacts laws, especially a member of a legislative body."], "lawmaker": ["Someone who creates or enacts laws, especially a member of a legislative body."], "feeding": ["The act of consuming food."], "diversification": ["The act, or the result, of diversifying."], "variegation": ["The act, or the result, of diversifying."], "diapause": ["The delay in development in response to regularly and recurring periods of adverse environmental conditions. (source: Wikipedia)"], "specularity": ["The quality of being specular."], "brood": ["The young of a bird cared for at one time.", "The young of a mamal cared for at one time.", "To dwell upon moodily and at length.", "To keep an egg warm to make it hatch."], "sharing": ["A distribution in shares."], "ay": ["A word used to show agreement or affirmation of something."], "azote": ["Gaseous, non-metallic chemical element with symbol N and atomic number 7."], "infaneto": ["A very young human being, from birth to a year old."], "baldness": ["The absence of hair from skin areas where it is normally present.", "The absence of hair on the head."], "balsam": ["A semisolid preparation intended for external application to the skin or mucous membranes. (source: UMLS)"], "phylogeny": ["The evolutionary history of an organism."], "baleful": ["Exceedingly harmful."], "turn signal": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "directional indicator": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "directional signal": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "blinker": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "flasher": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "direction indicator": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "flashing indicator": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "indicator light": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "turn indicator": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "turn light": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "turn signal flasher": ["A blinking light mounted near the left and right front and rear corners of a vehicle, and sometimes on the sides, used to indicate the intention of a lateral change of position (turn or lane change)."], "infectivity": ["The ability of a pathogen to establish an infection."], "inbreeding": ["Breeding between members of a relatively small population, especially one in which most members are related."], "given": ["Acknowledged as a supposition."], "vicariance": ["The separation of a group of organisms by a geographic barrier, resulting in differentiation of the original group into new varieties or species."], "viability": ["The property of being viable; the ability to live or to succeed."], "seasonal": ["Of, related to, or reliant on a season or period of the year, especially with regard to weather characteristics."], "preferentially": ["In a preferential manner."], "zygosity testing": ["The process through which DNA sequences are compared to assess whether individuals born from a multiple gestation (twins, triplets, etc.) are monozygotic (identical) or dizygotic (fraternal)."], "maximal": ["The greatest or most complete or best possible."], "tablinum": ["The main room of a Roman house, initially used as a bedroom, or sometimes as a dining room and later used as a room to keep family archives and to receive clients."], "recidivism": ["Act of a person repeating an undesirable behavior after having been punished and/or treated for it."], "recidivist": ["A person who repeats an undesirable behavior after having been punished and/or treated for it."], "recidivistic": ["Repeating an undesirable behavior after having been punished and/or treated for it."], "videoteleconference": ["A conference held by video link. An arranged video phone call between more than two parties."], "unspellable": ["Difficult to spell."], "cue": ["Evidence that supports a hypothesis or helps to solve a problem.", "A stimulus that provides information about what to do.", "A stick being used to push or shoot the balls when playing billards."], "decreased": ["Made less in size or amount or degree."], "covariation": ["A statistical measure of the variance of two random variables measured in the same mean time period."], "apomixis": ["Plant reproduction without fertilization, meiosis, or the production of gametes."], "apogamy": ["Asexual reproduction of a fully formed plant directly from a bud."], "allopatric": ["Not living in the same territory; geographically isolated and thus unable to crossbreed."], "allopatry": ["The condition of being allopatric."], "predictably": ["In a manner that can be expected or anticipated."], "potentially": ["In a manner showing much potential; with the possibility of happening in a given way."], "initially": ["At first.", "In an initial manner or degree; at the beginning."], "histocompatibility": ["The toleration of grafts between genetically similar individuals."], "major histocompatibility complex": ["A large genomic region or gene family found in most vertebrates."], "MHC": ["A large genomic region or gene family found in most vertebrates."], "genomic": ["Of or pertaining to a genome."], "geographically": ["In a geographical manner."], "inimical": ["Not friendly."], "unfriendly": ["Not friendly.", "Not easy to understand or use.", "Not disposed to friendship or friendliness.", "Very unfavorable to life or growth.", "In an unfriendly manner."], "hostile": ["Not friendly.", "Very unfavorable to life or growth."], "uncongenial": ["Very unfavorable to life or growth."], "recrudescence": ["A return of something after a period of abatement."], "cruralgia": ["A pain in the thigh caused by the femoral nerve."], "crural pain": ["A pain in the thigh caused by the femoral nerve."], "femoral nerve": ["A nerve located in the leg that provides sensation to the front of the thigh and part of the lower leg."], "deviled egg": ["A hard-boiled egg cut in half with the egg's yolk mixed with different ingredients."], "egg mimosa": ["A hard-boiled egg cut in half with the egg's yolk mixed with different ingredients."], "low beam": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "dim light": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "dimmed headlight": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "dimmed headlights": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "dipped head light": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "low beam light": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "low-beam light": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "passing light": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "passing beam": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "meeting beam": ["A lighting device in front of a vehicle designed to light the road ahead while limiting the light towards the other drivers."], "country beam": ["A powerful lighting device in front of a vehicle used to illuminate the road far ahead."], "drive light": ["A powerful lighting device in front of a vehicle used to illuminate the road far ahead."], "driving beam": ["A powerful lighting device in front of a vehicle used to illuminate the road far ahead."], "driving light": ["A powerful lighting device in front of a vehicle used to illuminate the road far ahead."], "headlamp main beam": ["A powerful lighting device in front of a vehicle used to illuminate the road far ahead."], "long distance light": ["A powerful lighting device in front of a vehicle used to illuminate the road far ahead."], "barrister": ["A professional person who advises or represents others in legal matters as a profession."], "fog lamp": ["A lighting device attached to a vehicle designed to increase the illumination directed towards the road surface and verges in conditions of poor visibility due to rain, fog, dust or snow."], "fog light": ["A lighting device attached to a vehicle designed to increase the illumination directed towards the road surface and verges in conditions of poor visibility due to rain, fog, dust or snow."], "fog-lamp": ["A lighting device attached to a vehicle designed to increase the illumination directed towards the road surface and verges in conditions of poor visibility due to rain, fog, dust or snow."], "anti-fog": ["A lighting device attached to a vehicle designed to increase the illumination directed towards the road surface and verges in conditions of poor visibility due to rain, fog, dust or snow."], "foglight": ["A lighting device attached to a vehicle designed to increase the illumination directed towards the road surface and verges in conditions of poor visibility due to rain, fog, dust or snow."], "foglamp": ["A lighting device attached to a vehicle designed to increase the illumination directed towards the road surface and verges in conditions of poor visibility due to rain, fog, dust or snow."], "put back": ["Put something back where it belongs."], "pay for": ["To have as a guest."], "beat a drum": ["To produce sound with a drum."], "ask in": ["To ask to enter."], "bear with": ["To allow (something that one dislikes or disagrees with) to continue to exist or occur without interference; accept or undergo, often unwillingly."], "turtle": ["A reptile of the order Testudines (the crown group of the superorder Chelonia), characterised by a special bony or cartilaginous shell developed from their ribs that acts as a shield."], "gross vehicle weight rating": ["The maximum allowable total mass of a road vehicle or trailer when loaded."], "GVWR": ["The maximum allowable total mass of a road vehicle or trailer when loaded."], "truism": ["An obvious truth."], "bromide": ["A saying that is overused or used outside its original context, so that its original impact and meaning are lost."], "in collaboration": ["With cooperation and interchange."], "stigma": ["In a flower, the tip of the pistil that receives pollen during pollination."], "in real time": ["In a live or real time manner."], "in realtime": ["In a live or real time manner."], "in real-time": ["In a live or real time manner."], "starvation": ["A condition of severe suffering due to a lack of nutrition."], "real time": ["(Of a system) That responds to events or signals within a predictable time after their occurence."], "proximal": ["Closer to the point of attachment or observation."], "promiscuity": ["The state or quality of being promiscuous."], "trichome": ["A fine outgrowth or appendage on plants and certain protists."], "transposable": ["Able to be transposed (in any sense)."], "transpose": ["To reverse or change the order of (two or more things); to swap or interchange."], "appendix": ["Attached to a principal element.", "A small excrescence of the cecum."], "woolen": ["Made or consisting of wool."], "behoof": ["The advantageous quality of being beneficial."], "banana tree": ["The tropical treelike plant which bears clusters of bananas. The plant, of the genus Musa, has large, elongated leaves."], "present conditional": ["Conditional conjugation form of a verb."], "past conditional": ["Conjugation form of a verb."], "morocco leather": ["Leather from goats (or sheep for imitations) that is tanned with sumac or gallnut."], "saffian": ["Leather from goats (or sheep for imitations) that is tanned with sumac or gallnut."], "subjunctive": ["Conjugation form of a verb."], "present subjunctive": ["Conjugation form of a verb."], "present conjunctive": ["Conjugation form of a verb."], "past subjunctive": ["Conjugation form of a verb."], "past conjunctive": ["Conjugation form of a verb."], "leather goods": ["Products made of leather."], "yogurt maker": ["Appliance to make yogurt."], "short-term": ["Of or pertaining to the near or immediate future.", "Of or pertaining to a short duration of time."], "shore": ["The land along the edge of a body of water.", "To support by placing against something solid or rigid."], "bestial": ["Of or resembling a beast."], "richness": ["The state or quality of being rich.", "The number of different types in a community."], "bifurcation": ["An intersection in a road or path where one road is split into two."], "predatory": ["Of, or relating to a predator.", "Exploiting or victimizing others for personal gain."], "exquisitely": ["In an exquisite manner."], "exquisity": ["The quality of being exquisite."], "ossify": ["To become (or cause to become) inflexible and rigid in habits or opinions."], "by consequence": ["[A word that expresses that something is or should be the consequence of something else]."], "external combustion engine": ["A heat engine where an internal fluid is heated by combustion of an external source."], "EC engine": ["A heat engine where an internal fluid is heated by combustion of an external source."], "compression ignition engine": ["An internal combustion engine operating on a thermodynamic cycle in which the ratio of compression of the air charge is sufficiently high to ignite the fuel subsequently injected into the combustion chamber."], "compression-ignition engine": ["An internal combustion engine operating on a thermodynamic cycle in which the ratio of compression of the air charge is sufficiently high to ignite the fuel subsequently injected into the combustion chamber."], "Otto engine": ["An internal combustion engine that uses a mixture of air and gasoline vapour as a fuel."], "Otto-cycle engine": ["An internal combustion engine that uses a mixture of air and gasoline vapour as a fuel."], "Otto-engine": ["An internal combustion engine that uses a mixture of air and gasoline vapour as a fuel."], "-logy": ["Forms words denoting 'speech', 'doctrine' or 'science'.", "Person who studies or is an expert in the related -logy."], "-ology": ["Forms words denoting 'speech', 'doctrine' or 'science'."], "-logical": ["Used to form adjectival forms of nouns ending in -logy."], "bit by bit": ["Making progress, but slowly."], "by and by": ["Making progress, but slowly."], "by degrees": ["Making progress, but slowly."], "little by little": ["Making progress, but slowly."], "step by step": ["Making progress, but slowly."], "red-eye effect": ["An effect in photography where the pupils of a subject appear red when a flash is used."], "back breaking job": ["Very hard, complex or physically demanding work."], "redeye": ["An effect in photography where the pupils of a subject appear red when a flash is used."], "red eye": ["An effect in photography where the pupils of a subject appear red when a flash is used."], "redeye effect": ["An effect in photography where the pupils of a subject appear red when a flash is used."], "red eye effect": ["An effect in photography where the pupils of a subject appear red when a flash is used."], "pellagra": ["A vitamin deficiency disease most commonly caused by a chronic lack of niacin (vitamin B3)."], "-nomy": ["Forms words denoting a system of rules, laws, or knowledge about a body of a particular field; distribution, arrangement, management."], "-onomy": ["Forms words denoting a system of rules, laws, or knowledge about a body of a particular field; distribution, arrangement, management."], "red-eyed": ["Having red or reddened eyes."], "common rudd": ["A freshwater fish originating in Europe and Asia with red fins."], "pyramid scheme": ["A non-sustainable business model that involves the exchange of money primarily for enrolling other people into the scheme, without any product or service being delivered."], "article of furniture": ["A movable article in a room designed to support human activities, for example a bed or a table."], "broadband": ["(telecommunications) A wide band of electromagnetic frequencies.", "(Internet) An internet connection with a much larger capacity than dial-up or ISDN."], "willpower": ["The unwavering strength of will to carry out one\u2019s wishes."], "will power": ["The unwavering strength of will to carry out one\u2019s wishes."], "societal": ["Of or pertaining to society or social groups and their activities and customs."], "sleep deficit": ["The situation of not getting enough sleep."], "sleep debt": ["The situation of not getting enough sleep."], "subsume": ["To include or contain under something else."], "Occam's razor": ["A theoretical principle according to which the simplest solution should always be preferred."], "Ockham's razor": ["A theoretical principle according to which the simplest solution should always be preferred."], "dynamic host configuration protocol": ["A computer networking protocol used by hosts (DHCP clients) to retrieve IP address assignments and other configuration information."], "DHCP": ["A computer networking protocol used by hosts (DHCP clients) to retrieve IP address assignments and other configuration information."], "Dynamic Host Configuration Protocol": ["A computer networking protocol used by hosts (DHCP clients) to retrieve IP address assignments and other configuration information."], "email spam": ["An unsolicited electronic message sent in bulk, e.g. by email or newsgroups."], "enterprise resource-planning": ["The planning of how business resources (materials, employees, customers etc.) are acquired and moved from one state to another."], "film production": ["The process of making a film, from an initial story idea or commission through scriptwriting, shooting, editing and finally distribution to an audience. Typically it involves a large number of people and can take anywhere between a few months to several years to complete."], "proposition": ["A sentence expressing something true or false."], "olfactometric": ["Relating to olfactometry."], "olfactophobia": ["A fear of odors."], "osmophobia": ["A fear of odors."], "osphresiophobia": ["A fear of odors."], "abbacy": ["The church and monastery which is the site of a community of men or women, governed by an abbot or an abbess."], "four cycle engine": ["An internal combustion engine whose cycle is completed in four piston strokes; includes a suction stroke, compression stroke, expansion stroke, and exhaust stroke."], "four stroke cycle engine": ["An internal combustion engine whose cycle is completed in four piston strokes; includes a suction stroke, compression stroke, expansion stroke, and exhaust stroke."], "wardriving": ["The act of searching for Wi-Fi wireless networks by a person in a moving vehicle, using a portable computer or PDA."], "stereogram": ["An optical illusion of depth created from flat, two-dimensional image or images."], "sleep deprivation": ["The situation of being denied enough sleep."], "vertically": ["In a vertical direction or position."], "downshifter": ["A person who is opposed to consumerism, and prefers more free time rather than working harder for more money."], "colposcopy": ["An examination of the cervix and the tissues of the vagina and vulva, using a colposcope."], "contrivance": ["An elaborate or deceitful scheme contrived to deceive or evade."], "gambit": ["A maneuver in a game or conversation."], "ploy": ["A maneuver in a game or conversation."], "nexus": ["A connection between places, persons, events, or things.", "A connected series or group."], "big wheel": ["A big rotating upright wheel with passenger cars attached to the rim."], "Ferris wheel": ["A big rotating upright wheel with passenger cars attached to the rim."], "observation wheel": ["A big rotating upright wheel with passenger cars attached to the rim."], "coloscopy": ["An examination of the inside of the colon using a colonoscope, inserted into the rectum."], "more Catholic than the Pope": ["To be stricter or more fervent than required."], "colposcope": ["A kind of microscope used to examine the cervix and the tissues of the vagina and vulva."], "apple butter": ["A highly concentrated form of apple sauce, produced by long, slow cooking of apples with cider or water to a point where the sugar in the apples caramelizes, turning the apple butter a deep brown."], "Li\u00e8ge": ["A major city and municipality of Belgium located in the province of Li\u00e8ge."], "anti-": ["Forms words that mean 'instead of' or 'against' the complemented noun."], "pro-": ["Form words that mean 'for' the complemented noun."], "anti-Greek": ["Hostile to Greece, its inhabitants or its culture."], "blithe": ["In good spirits."], "longhand": ["The written characters used in the common method of writing."], "horsepower": ["Unit of measurement of power equal to that of a horse drafting 75 kg at the speed of 1 m/s, i.e. 735,498 Watt.", "Unit of measurement of power equal to that of a horse drafting 55 pounds at the speed of 10 feet per second, i.e. 745,7 Watt."], "metric horsepower": ["Unit of measurement of power equal to that of a horse drafting 75 kg at the speed of 1 m/s, i.e. 735,498 Watt."], "mechanical horsepower": ["Unit of measurement of power equal to that of a horse drafting 55 pounds at the speed of 10 feet per second, i.e. 745,7 Watt."], "brake horsepower": ["Unit of measurement of power equal to that of a horse drafting 55 pounds at the speed of 10 feet per second, i.e. 745,7 Watt."], "PS": ["Unit of measurement of power equal to that of a horse drafting 75 kg at the speed of 1 m/s, i.e. 735,498 Watt."], "manacle": ["A shackle, consisting of a pair of joined rings, to restrict the free movement of the hands."], "handcuffs": ["A shackle, consisting of a pair of joined rings, to restrict the free movement of the hands."], "biodiesel": ["A vegetable oil- or animal fat-based diesel fuel."], "trilobate": ["Arch shaped as three lobes."], "Mediterranean twaite shad": ["The sea fish whose scientific name is \"Alosa fallax nilotica\"."], "Mediterranean shad": ["The sea fish whose scientific name is \"Alosa fallax nilotica\"."], "manufacturer": ["A business engaged in manufacturing some product."], "mastiff": ["One of several large breeds of dog (such as bulldogs and Saint Bernards), often used as guard dogs"], "millionaire": ["Somebody whose wealth is greater than one million dollars, or the local currency."], "minesweeper": ["A vehicle, device or person with the purpose of removing explosive mines (landmines or water mines).", "A ship equipped to detect and then destroy or neutralize or remove marine mines."], "pecuniary": ["Concerning the money understood as currency used in a certain country."], "manicurist": ["A person who performs cosmetic treatment of hands and fingernails."], "mafia": ["A crime syndicate."], "wonk": ["An insignificant student who is ridiculed as being affected or boringly studious."], "dweeb": ["An insignificant student who is ridiculed as being affected or boringly studious."], "blurb": ["A promotional statement (as found on the dust jackets of books)."], "indorsement": ["A promotional statement (as found on the dust jackets of books)."], "incendiary": ["A criminal who commits arson.", "Involving deliberate burning of property.", "Capable of catching fire spontaneously or causing fires or burning readily.", "Arousing to action or rebellion.", "A bomb that is designed to start fires; is most effective against flammable targets (such as fuel)."], "incitive": ["Arousing to action or rebellion."], "instigative": ["Arousing to action or rebellion."], "rabble-rousing": ["Arousing to action or rebellion."], "seditious": ["Arousing to action or rebellion."], "firebug": ["A criminal who commits arson."], "firebomb": ["A bomb that is designed to start fires; is most effective against flammable targets (such as fuel)."], "incendiary bomb": ["A bomb that is designed to start fires; is most effective against flammable targets (such as fuel)."], "rear admiral": ["A naval commissioned officer rank above that of a Commodore and Captain, and below that of a Vice Admiral."], "counter admiral": ["A naval commissioned officer rank above that of a Commodore and Captain, and below that of a Vice Admiral."], "rear-admiral": ["A naval commissioned officer rank above that of a Commodore and Captain, and below that of a Vice Admiral."], "materialism": ["The philosophical belief that nothing exists beyond what is physical.", "Constant concern over material possessions and wealth; a great or excessive regard for worldly concerns."], "physicalism": ["The philosophical belief that nothing exists beyond what is physical."], "Main-Franconian": ["A group of Central German dialects being part of the East Franconian group spoken in a large stripe along the river Main in Germany."], "graphical interface": ["A type of user interface which allows people to interact with electronic devices like computers, hand-held devices (MP3 Players, Portable Media Players, Gaming devices), household appliances and office equipment."], "transmogrify": ["To change completely the nature or appearance of."], "metamorphose": ["To change completely the nature or appearance of."], "transfigure": ["To change completely the nature or appearance of.", "To elevate or idealize, in allusion to Christ's transfiguration."], "glorify": ["To elevate or idealize, in allusion to Christ's transfiguration.", "To praise, glorify, or honor (e.g. a virtue)."], "spiritualize": ["To elevate or idealize, in allusion to Christ's transfiguration."], "monozygotic twin": ["A twin with almost exact traits and physical appearances, originating from the same zygote."], "Sciacca": ["A town and comune in the province of Agrigento on the southwestern coast of Sicily."], "Schiacca": ["A town and comune in the province of Agrigento on the southwestern coast of Sicily."], "Parisian": ["A person from, or living in Paris (France).", "Relating to Paris (France)."], "Parisian man": ["A man from, or living in Paris (France)."], "Parisian woman": ["A woman from, or living in Paris (France)."], "slingshot": ["A small hand-powered projectile weapon consisting of a forked Y-shaped frame with two rubber strips attached to the uprights leading back to a pocket for holding the projectile."], "lederhosen": ["Trousers made of leather that are traditionally worn by men and boys in Bavaria and Austria."], "Seder": ["The ceremonial dinner on the first night (or both nights) of Passover."], "fried": ["Cooked in hot fat."], "Passover supper": ["The ceremonial dinner on the first night (or both nights) of Passover."], "Passover Seder": ["The ceremonial dinner on the first night (or both nights) of Passover."], "ghat": ["A series of steps leading down to a body of water."], "verst": ["An obsolete Russian unit of length, equivalent to about 1.07 kilometres."], "werst": ["An obsolete Russian unit of length, equivalent to about 1.07 kilometres."], "sazhen": ["An obsolete Russian unit of length, equivalent to 2.134 meters."], "arshin": ["An obsolete Russian unit of length, equivalent to 71.12 cm."], "milia": ["An obsolete Russian unit of length, equivalent to 7.4676 km."], "Gazan": ["A person from the Gaza Strip.", "Of or relating to the Gaza Strip."], "Jewishness": ["The property of being Jewish."], "Jewishly": ["In a Jewish manner."], "Judaizing": ["Following the religious practices of Judaism."], "Judaising": ["Following the religious practices of Judaism."], "Judaize": ["To follow the religious practices of Judaism.", "To convert to Judaism."], "Judaise": ["To follow the religious practices of Judaism.", "To convert to Judaism."], "Judaization": ["The act of converting to Judaism."], "Judaisation": ["The act of converting to Judaism."], "Arabize": ["To make Arab."], "Arabization": ["The process of making Arab."], "Arabness": ["The property of being Arab."], "arability": ["The quality for a land of being cultivable."], "cultivability": ["The quality for a land of being cultivable."], "Zionist": ["An advocate of Zionism."], "rat extermination": ["Extermination of rats in a certain place."], "rat exterminator": ["A person skilled in rat extermination."], "neophilia": ["A love of novelty and new experiences."], "neophobia": ["Fear of new things or experiences."], "arabism": ["A devotion to Arab interests, custom, culture, ideals, and political goals."], "manometer": ["A type of gauge that uses displacement of a liquid column to measure pressure."], "Mon\u00e9gasque": ["A native or inhabitant of Monaco.", "Of or relating to Monaco or its inhabitants."], "achoo": ["Onomatopoeia representing the sound someone emits when sneezing."], "kerchoo": ["Onomatopoeia representing the sound someone emits when sneezing."], "atishoo": ["Onomatopoeia representing the sound someone emits when sneezing."], "-ibility": ["Suffix forming abstract nouns of quality from adjectives."], "-ability": ["Suffix forming abstract nouns of quality from adjectives."], "-hood": ["Suffix forming abstract nouns of quality from adjectives."], "-ship": ["Suffix forming abstract nouns of quality from adjectives."], "-itas": ["Suffix forming abstract nouns of quality from adjectives."], "-itude": ["Suffix forming abstract nouns of quality from adjectives."], "-th": ["Suffix forming abstract nouns of quality from adjectives."], "-ia": ["Suffix forming abstract nouns of quality from adjectives."], "-itia": ["Suffix forming abstract nouns of quality from adjectives."], "-ity": ["Suffix forming abstract nouns of quality from adjectives."], "-ness": ["Suffix forming abstract nouns of quality from adjectives."], "-icity": ["Suffix forming abstract nouns of quality from adjectives."], "-osity": ["Suffix forming abstract nouns of quality from adjectives."], "-ous": ["Suffix forming abstract nouns of quality from adjectives."], "-ose": ["Suffix forming abstract nouns of quality from adjectives."], "-ivity": ["Suffix forming abstract nouns of quality from adjectives."], "-ality": ["Suffix forming abstract nouns of quality from adjectives."], "sternutate": ["To expel air rapidly as a reflex, usually induced by an irritation in the nose."], "quinoa": ["A grain-like crop grown primarily for its edible seeds."], "Mauritanian": ["A native or inhabitant of Mauritania."], "seat belt": ["A belt or a set of belts used to secure the passengers of a car or a plane to their seat."], "seatbelt": ["A belt or a set of belts used to secure the passengers of a car or a plane to their seat."], "anti-lock braking system": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "pederast": ["A man who is engaged in an erotic relationship with an adolescent boy."], "ABS": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "ABS brake": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "antiblocking system": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "antilock brake": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "wheel lock control": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "anti-lock": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "anti-lock brake system": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "anti-skid system": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "antilock brake system": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "antilock braking system": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "antilocking system": ["A safety system which prevents the wheels on a motor vehicle from locking up while braking."], "air bag": ["A protective system in automobiles in which when a crash occurs, a bag quickly inflates in front of the driver or passenger, preventing injury to the head."], "inflatable safety bag": ["A protective system in automobiles in which when a crash occurs, a bag quickly inflates in front of the driver or passenger, preventing injury to the head."], "air bag cushion": ["A protective system in automobiles in which when a crash occurs, a bag quickly inflates in front of the driver or passenger, preventing injury to the head."], "breasts": ["The two breasts of a woman, considered collectively."], "boobs": ["The two breasts of a woman, considered collectively."], "boobies": ["The two breasts of a woman, considered collectively."], "knockers": ["The two breasts of a woman, considered collectively."], "tits": ["The two breasts of a woman, considered collectively."], "funbags": ["The two breasts of a woman, considered collectively."], "activism": ["The attitude of taking an active part in events, especially in a social context."], "agrarian reform": ["The doctrine of an equal division of landed property and the advancement of agricultural groups."], "agrarianism": ["The doctrine of an equal division of landed property and the advancement of agricultural groups."], "antimilitarism": ["The quality of being opposed to the establishment or maintenance of a governmental military force."], "antiterrorism": ["The practices, tactics, techniques, and strategies that governments, militaries, police departments and corporations adopt to prevent or in response to terrorist threats and/or acts, both real and imputed."], "bray": ["To show off."], "counter-terrorism": ["The practices, tactics, techniques, and strategies that governments, militaries, police departments and corporations adopt to prevent or in response to terrorist threats and/or acts, both real and imputed."], "counterterrorism": ["The practices, tactics, techniques, and strategies that governments, militaries, police departments and corporations adopt to prevent or in response to terrorist threats and/or acts, both real and imputed."], "bipartisanism": ["The state of being composed of members of two parties or of two parties cooperating, as in government."], "centrism": ["The adherence to a middle-of-the-road position, neither left nor right, as in politics."], "centrist": ["A person who takes a position in the political center."], "capitalism": ["An economic system based on private ownership of capital."], "collectivism": ["An economic system in which the means of production and distribution are owned and controlled by the people collectively."], "geopolitics": ["The art and practice of using political power over a given territory."], "internationalism": ["The doctrine that nations should cooperate because their common interests are more important than their differences."], "interventionism": ["The political practice of intervening in a sovereign state's affairs."], "isolationism": ["The policy or doctrine directed toward the isolation of a country from the affairs of other nations by a deliberate abstention from political, military, and economic agreements."], "Mainz": ["A city in Germany and the capital of Rhineland-Palatinate."], "militarism": ["The belief or desire of a government or people that a country should maintain a strong military capability and be prepared to use it aggressively to defend or promote national interests."], "neocolonialism": ["The domination of a small or weak country by a large or strong one without the assumption of direct government."], "neoliberalism": ["A political movement that espouses economic liberalism as a means of promoting economic development and securing political liberty."], "protest vote": ["A vote for a third-party candidate made not to elect that candidate but to indicate displeasure with the candidates of the two major political parties."], "pluralism": ["A social system based on mutual respect for each other's cultures."], "redistricting": ["The process of redrawing the geographic boundaries of electoral districts within states from which candidates are elected."], "lavishly": ["In a wasteful manner.", "In a rich and lavish manner."], "richly": ["In a rich and lavish manner."], "prime minister": ["The chairman or chief of cabinet in the executive branch of government in a parliamentary system."], "imitative": ["Not genuine; imitating something superior."], "Ilonggo": ["An Austronesian language spoken in Western Visayas in the Philippines."], "undermine": ["To destroy property or hinder normal operations."], "countermine": ["To destroy property or hinder normal operations."], "counteract": ["To destroy property or hinder normal operations.", "To make inactive or ineffective; to oppose and mitigate the effects of by contrary actions."], "subvert": ["To destroy property or hinder normal operations."], "neutrality": ["The nonparticipation in a dispute or war."], "infantry": ["A branch of an army whose soldiers are organized, trained and equipped to fight on foot."], "slave trade": ["The business of buying and selling slaves."], "chancellor": ["A person who is the head of government in Germany or Austria."], "male chancellor": ["A male who is the head of government in Germany or Austria."], "female chancellor": ["A female who is the head of government in Germany or Austria."], "briny": ["(Of water) Salty or slightly salty, as a mixture of fresh and sea water."], "endemism": ["A state in which species are restricted to a single region."], "food security": ["The ability of individuals to obtain sufficient food on a day-to-day basis."], "fresh water": ["Water having a relatively low mineral content, generally less than 500 mg/l of dissolved solids."], "keep on tenterhooks": ["To keep (someone) in a state of suspense."], "keep on tenderhooks": ["To keep (someone) in a state of suspense."], "keep on pins and needles": ["To keep (someone) in a state of suspense."], "CEST": ["A summer daylight saving time used in most European countries set two hours ahead of Coordinated Universal Time (UTC)."], "Central European Summer Time": ["A summer daylight saving time used in most European countries set two hours ahead of Coordinated Universal Time (UTC)."], "Middle European Summer Time": ["A summer daylight saving time used in most European countries set two hours ahead of Coordinated Universal Time (UTC)."], "MEST": ["A summer daylight saving time used in most European countries set two hours ahead of Coordinated Universal Time (UTC)."], "Central European Daylight Saving Time": ["A summer daylight saving time used in most European countries set two hours ahead of Coordinated Universal Time (UTC)."], "CEDT": ["A summer daylight saving time used in most European countries set two hours ahead of Coordinated Universal Time (UTC)."], "Bravo time": ["A summer daylight saving time used in most European countries set two hours ahead of Coordinated Universal Time (UTC)."], "foresight": ["An estimate of a future condition."], "prevision": ["An estimate of a future condition."], "weather forecast": ["A branch of science that studies the dynamics of the atmosphere and the direct effects of the atmosphere upon the Earth's surface, oceans and inhabitants, focusing particularly on weather and weather conditions.", "A prediction of future weather, for a specific location."], "live together": ["To cohabit as a couple without being married."], "porpoise": ["A short-snouted genus of the dolphin family, 1.2 to 2.5 metres (4 to 8 feet) long, gregarious in habits, yielding an oil and leather."], "argan oil": ["An oil produced from the kernels of the argan tree, endemic to Morocco."], "grin like a Cheshire cat": ["To display a very wide smile, as a sign of great happiness."], "grin from ear to ear": ["To display a very wide smile, as a sign of great happiness."], "smile from ear to ear": ["To display a very wide smile, as a sign of great happiness."], "argan": ["A species of tree that is endemic to parts of Morocco and Algeria and cultivated for its oil-rich seeds."], "argan tree": ["A species of tree that is endemic to parts of Morocco and Algeria and cultivated for its oil-rich seeds."], "semiotic": ["Of or pertaining to signs.", "Of or pertaining to semiotics."], "silken": ["Made of silk.", "Resembling silk in texture or appearance."], "silky": ["Resembling silk in texture or appearance."], "velvet": ["A closely woven fabric (originally of silk, now also of cotton or man-made fibres) with a thick short pile on one side.", "Made of velvet."], "velvety": ["Resembling velvet in appearance or texture."], "brinkmanship": ["The practice of pushing a dangerous situation to the verge of disaster in order to achieve the most advantageous outcome."], "Mother Nature": ["A common personification of nature that focuses on the life-giving and nurturing features of nature by embodying it in the form of the mother.", "The earth, as the source and nurturer of humanity."], "Mother Earth": ["A common personification of nature that focuses on the life-giving and nurturing features of nature by embodying it in the form of the mother.", "The earth, as the source and nurturer of humanity."], "durum": ["A species of wheat which has a high protein and gluten content."], "durum wheat": ["A species of wheat which has a high protein and gluten content."], "macaroni wheat": ["A species of wheat which has a high protein and gluten content."], "common wheat": ["A wheat species that is cultivated around the world."], "bread wheat": ["A wheat species that is cultivated around the world."], "start the engine": ["To initiate the engine of a vehicle."], "set in motion": ["(For a vehicle) To begin to move."], "pull away": ["(For a vehicle) To begin to move.", "To pull back or move away or backward."], "pulling away": ["(For a vehicle) The act of beginning to move."], "hill start": ["The pulling away of a car on an up gradient.", "To pull away a car on an up gradient."], "concentration camp": ["A guarded compound used by the Nazis during the second World War for the imprisonment of civilians considered as enemies."], "Nazi concentration camp": ["A guarded compound used by the Nazis during the second World War for the imprisonment of civilians considered as enemies."], "Osaka": ["A city in the Kansai region of Japan's main island of Honsh\u016b."], "Nagoya": ["The the fourth most populous urban area in Japan located on the Pacific coast in the Ch\u016bbu region on central Honsh\u016b."], "Tainan": ["A city in southern Taiwan, the fourth largest after Taipei, Kaohsiung, and Taichung."], "Taichung": ["A city located in west-central Taiwan with a population of just over one million people, making it the third largest city on the island after Taipei and Kaohsiung."], "Kaohsiung": ["A city located in southwestern Taiwan."], "Busan": ["The largest port city in South Korea and the fifth largest port in the world."], "Incheon": ["The largest seaport on the west coast of South Korea and home to the country's largest airport."], "Daegu": ["The third largest metropolitan area in South Korea."], "Casablanca": ["The largest city in Morocco, located on the Atlantic Ocean."], "Fes": ["The third largest city in Morocco."], "Fez": ["The third largest city in Morocco."], "Marrakech": ["An important and former imperial city in Morocco, located near the foothills of the snow-capped Atlas Mountains."], "hatter": ["Someone whose profession it is to make and sell hats."], "hatmaker": ["Someone whose profession it is to make and sell hats."], "milliner": ["Someone whose profession it is to make and sell hats."], "hatted": ["Wearing a hat."], "top-hatted": ["Wearing a top hat."], "Shanghai": ["A metropolis in eastern China. Located at the middle part of the coast of mainland China, it sits at the mouth of the Yangtze."], "ozone hole": ["An area of the ozone layer over Earth's polar regions where the ozone concentration is relatively low."], "hole in the ozone layer": ["An area of the ozone layer over Earth's polar regions where the ozone concentration is relatively low."], "Delhi": ["The largest metropolis by area and the second-largest metropolis by population in India."], "least tern": ["A tern of the species Sternula antillarum that breeds in North America and locally in northern South America."], "tern": ["A seabird in the family Sternidae found worldwide."], "Bosphorus": ["A strait that forms part of the boundary between Europe and Asia."], "Istanbul Strait": ["A strait that forms part of the boundary between Europe and Asia."], "Atlantic bluefin tuna": ["(Thunnus thynnus) Species of tuna fish, living in both the Western and the Eastern Atlantic Ocean and extending into the Mediterranean Sea and the Black Sea."], "giant bluefin tuna": ["(Thunnus thynnus) Species of tuna fish, living in both the Western and the Eastern Atlantic Ocean and extending into the Mediterranean Sea and the Black Sea."], "tunny": ["(Thunnus thynnus) Species of tuna fish, living in both the Western and the Eastern Atlantic Ocean and extending into the Mediterranean Sea and the Black Sea."], "brown pelican": ["The smallest of the eight species of pelican (Pelecanus occidentalis)."], "bottlenose dolphin": ["A dolphin of the genus Tursiops, the most common and well-known members of the family Delphinidae."], "Lahore": ["The capital of the Pakistani province of Punjab and the second largest city in Pakistan after Karachi."], "Chongqing": ["A major city in southwestern China."], "hydrogeologist": ["A scientist skilled in hydrogeology."], "Bangalore": ["The capital of the Indian state of Karnataka. Located on the Deccan Plateau in the south-eastern part of Karnataka, Bangalore is India's third most populous city."], "Tianjin": ["A metropolis in Northeastern China."], "local track": ["Road with no administrative classification. They typically form the lowest form of the interconnecting grid network."], "prudery": ["An instance of prudish behaviour or talk."], "Kolkata": ["The capital of the Indian state of West Bengal, which is located in eastern India on the east bank of the Hooghly River."], "Calcutta": ["The capital of the Indian state of West Bengal, which is located in eastern India on the east bank of the Hooghly River."], "Chennai": ["The capital city of the Indian state of Tamil Nadu."], "Madras": ["The capital city of the Indian state of Tamil Nadu."], "Surat": ["The Commercial Capital City of Gujarat and India's eighth largest metropolitan city."], "Yangon": ["The largest city and the most important commercial center of Burma."], "Rangoon": ["The largest city and the most important commercial center of Burma."], "Johannesburg": ["The largest city in South Africa."], "Durban": ["The third largest city in South Africa, forming part of the eThekwini metropolitan municipality."], "Jeddah": ["A Saudi Arabian city located on the coast of the Red Sea and the major urban center of the western part of the country."], "Guangzhou": ["A sub-provincial city located in southern China in the middle of Guangdong Province north of the Pearl River, about 120 km (75 mi) northwest of Hong Kong."], "Canton": ["A sub-provincial city located in southern China in the middle of Guangdong Province north of the Pearl River, about 120 km (75 mi) northwest of Hong Kong."], "Shenyang": ["A sub-provincial city and capital of Liaoning province in Northeast China."], "sub-provincial city": ["In the People's Republic of China, a prefecture-level city that is ruled by a province, but is administered independently in regard to economy and law."], "Hyderabad": ["The capital and the most populous city of the South Indian state of Andhra Pradesh."], "glowworm": ["A firefly belonging to the Lampyris noctiluca species."], "glow-worm": ["A firefly belonging to the Lampyris noctiluca species."], "glow worm": ["A firefly belonging to the Lampyris noctiluca species."], "common glowworm": ["A firefly belonging to the Lampyris noctiluca species."], "common glow-worm": ["A firefly belonging to the Lampyris noctiluca species."], "common glow worm": ["A firefly belonging to the Lampyris noctiluca species."], "Berlusconian": ["Relating to Silvio Berlusconi, an Italian politician."], "Ahmedabad": ["The largest city in the Indian state of Gujarat, located on the banks of the River Sabarmati."], "Berlusconism": ["The political system led by Silvio Berlusconi, an Italian politician.", "Neologism of the Italian language that indicates the values\u200b\u200b, not necessarily positive, and guidelines that govern the political action of Silvio Berlusconi and his attitude towards the public."], "Wuhan": ["The capital of Hubei province and the most populous city in central China."], "Pune": ["The second largest city in the Indian state of Maharashtra. Once the capital of the Maratha Empire, situated 560 metres above sea level on the Deccan plateau at the confluence of the Mula and Mutha rivers."], "Kanpur": ["The largest city in the Indian state of Uttar Pradesh."], "Cawnpore": ["The largest city in the Indian state of Uttar Pradesh."], "Jaipur": ["The capital of the Indian state of Rajasthan."], "red weed": ["A plant of the Papaver rhoeas species in the poppy family."], "semolina": ["Coarse particles that are a result of the milling of durum wheat."], "Shenzhen": ["A sub-provincial city in southern China's Guangdong province, situated immediately north of Hong Kong."], "Dongguan": ["An important industrial city in central Guangdong province of China, located in the Pearl River Delta."], "Essen": ["A city in the central part of the Ruhr area in North Rhine-Westphalia, Germany."], "West Bengal": ["A state in eastern regions of India, whose capital is Kolkata."], "Miami": ["A major city located on the Atlantic coast in southeastern Florida in the United States."], "Mahl": ["An Indo-Aryan language spoken in the Republic of Maldives and also in the island of Maliku (Minicoy) in Union territory of Lakshadweep, India."], "San Francisco": ["The fourth most populous city in California and the 12th most populous city in the United States."], "Manglluri Konkani": ["A dialect of the Goanese Konkani language spoken in the city of Mangalore."], "Brahvi": ["A Dravidian language spoken primarily in the Balochistan region of Pakistan, as well as in Afghanistan and Iran."], "semolina pudding": ["A dessert made of semolina, milk and sugar."], "Konda-Dora Proper": ["A dialect of the Konda-Dora language."], "Santiago de Compostela": ["The capital of the autonomous community of Galicia, located in the north west of Spain in the Province of A Coru\u00f1a."], "Santiago de Cuba": ["The capital city of Santiago de Cuba Province in the south-eastern area of the island nation of Cuba."], "axolotl": ["An urodela of the species Ambystoma mexicanum originating from Mexico."], "foreign accent syndrome": ["A rare medical condition causing a person to speak one's mother tongue with a foreign accent."], "San Juan": ["The capital and most populous municipality in Puerto Rico."], "Kobe": ["The sixth-largest city in Japan and the capital city of Hy\u014dgo Prefecture on the southern side of the main island of Honsh\u016b, approximately 500 km (310.69 mi) west of Tokyo."], "Salvador": ["A city on the northeast coast of Brazil and the capital of the Northeastern Brazilian state of Bahia."], "Sydney": ["The largest city in Australia and Oceania, and the state capital of New South Wales."], "storksbill": ["The common name for flowering plants of the genus Pelargonium."], "cranesbill": ["Any flowering plant of the genus Geranium, the cranesbills, of the family Geraniaceae."], "until further notice": ["Until something else is said or written to change the situation."], "pending further notice": ["Until something else is said or written to change the situation."], "dicrotic": ["(For a pulse) Having two beats for each heart beat."], "dicrotism": ["A condition in which a pulse has two beats for each heart beat."], "tangle": ["To twist together or entwine into a confusing mass."], "mat": ["To twist together or entwine into a confusing mass.", "A flat object for wiping one\u2019s shoes, laid on the floor immediately outside or inside the entrance to a building.", "A thick flat object laid on the floor to protect a person from the hard floor.", "A mass of densely interwoven heavy grass, used as a fence, granary liner, and other functions."], "snarl": ["To twist together or entwine into a confusing mass."], "carrycot": ["A small vehicle in which a baby is pushed around in a lying position."], "Amdo": ["A Tibetan language spoken by the majority of the people of Amdo in North Eastern Tibet, and in the Chinese states of Qinghai and some parts of Sichuan (Aba) and Gansu (Ganlho)."], "Angku": ["An Angkuic language spoken by the Angku people near the common borders of Myanmar, China and Laos."], "Tongren Bonan": ["A dialect of the Bonan language spoken in Tongren county."], "Brokkat Brokpa": ["A Southern Tibetan language spoken by some of the Brokpa people in Dur, in the Bumthang District, in the north-central part of Bhutan."], "Bulang": ["A group of languages of the Mon-Khmer family spoken by the Bulang people in Yunnan Province in China, as well as in Eastern Shan State in Myanmar and outside Mae Sai City in Thailand."], "Nastaliq script": ["A calligraphy style for mainly Persio-Arabic and has been more popular in the Persian and Turkic spheres of influence."], "Thai script": ["An alphabet used to write the Thai language and other minority languages in Thailand. It has forty-four consonants, fifteen vowel symbols that combine into at least twenty-eight vowel forms, and four tone marks."], "Guayaquil": ["The largest and the most populous city in Ecuador."], "Tel Aviv": ["The second-largest city in Israel, situated on the Israeli Mediterranean coastline."], "Jilin City": ["The second largest city in Jilin Province in China."], "Changchun": ["The capital and largest city of Jilin province, located in the northeast of China, in the center of the Songliao Plain."], "Vancouver": ["A coastal city located in the Lower Mainland of British Columbia, Canada."], "Chittagong": ["Bangladesh's main seaport and its second-largest city."], "Cali": ["A city in western Colombia and the capital of the Valle del Cauca Department."], "rhinoscope": ["A tubular instrument used to examine the inside of the nose."], "Haifa": ["City in the north of Israel."], "nasoscope": ["A tubular instrument used to examine the inside of the nose."], "rhinoscopy": ["The examination of the inside of the nose with a rhinoscope."], "Manchester": ["A city situated in the south-central part of North West England, fringed by the Cheshire Plain to the south and the Pennines to the north and east."], "Aleppo": ["The largest Syrian city and the most populous in the Levant, located in northern Syria."], "Kumasi": ["A city in southern central Ghana's Ashanti region, located near Lake Bosomtwe, in the Rain Forest Region about 250 kilometres (160 mi) (by road) northwest of Accra."], "Bandung": ["The capital of West Java province in Indonesia. The city lies on a river basin and surrounded by volcanic mountains."], "Mashhad": ["A large city in Iran and one of the holiest cities in the Shia world, located 850 kilometres (530 mi) east of Tehran, at the center of the Razavi Khorasan Province."], "Puebla": ["The capital of the state of Puebla, and one of the most important colonial cities in Mexico."], "rapacity": ["Excessive desire for possessions and wealth."], "avaritia": ["Excessive desire for possessions and wealth."], "Recife": ["The capital of the Brazilian state of Pernambuco, located where the Beberibe River meets the Capibaribe River to flow into the Atlantic Ocean."], "San Jose": ["The third-largest city in California and the tenth-largest in the United States, located in the southern end of the San Francisco Bay Area, a region commonly referred to as Silicon Valley."], "tube": ["Conduit consisting of a long hollow cylindrical object.", "A hollow material of a tubular, cylindrical form.", "To ride or float on an inflated tube."], "tubing": ["Conduit consisting of a long hollow cylindrical object."], "brigand": ["A villainous or criminal person."], "bring forth": ["To release an offspring from one's own body; to cause to be born."], "Chawng": ["A Western Pearic language spoken by the Chong people in Pursat Province in north-western Cambodia and in several villages in the Chanthaburi Province and Trat Province in Thailand."], "Shong": ["A Western Pearic language spoken by the Chong people in Pursat Province in north-western Cambodia and in several villages in the Chanthaburi Province and Trat Province in Thailand."], "Xong": ["A Western Pearic language spoken by the Chong people in Pursat Province in north-western Cambodia and in several villages in the Chanthaburi Province and Trat Province in Thailand."], "Austro-Asiatic": ["A large language family of Southeast Asia, and also scattered throughout India and Bangladesh."], "Central Chadic": ["A group of languages of the Afro-Asiatic family spoken in Nigeria, Chad and Cameroon."], "Kaw\u00e9sqar": ["A South American people living in Chile in the Strait of Magellan (Brunswick Peninsula, and Wellington, Santa In\u00e9s, and Desolaci\u00f3n islands)."], "onion-plot": ["A land dedicated to the culture of onions."], "onion plot": ["A land dedicated to the culture of onions."], "Drukpa": ["A language of the Sino-Tibetan family, spoken in Bhutan, India and Nepal."], "Ghara": ["A Sino-Tibetan language spoken by the Gahri people on both sides of the India-China border in the western Himalayan mountains."], "Lahuli of Bunan": ["A Sino-Tibetan language spoken by the Gahri people on both sides of the India-China border in the western Himalayan mountains."], "Boonan": ["A Sino-Tibetan language spoken by the Gahri people on both sides of the India-China border in the western Himalayan mountains."], "Punan": ["A Sino-Tibetan language spoken by the Gahri people on both sides of the India-China border in the western Himalayan mountains."], "Poonan": ["A Sino-Tibetan language spoken by the Gahri people on both sides of the India-China border in the western Himalayan mountains."], "Erankad": ["A Sino-Tibetan language spoken by the Gahri people on both sides of the India-China border in the western Himalayan mountains."], "Keylong Boli": ["A Sino-Tibetan language spoken by the Gahri people on both sides of the India-China border in the western Himalayan mountains."], "Bunan": ["A Sino-Tibetan language spoken by the Gahri people on both sides of the India-China border in the western Himalayan mountains."], "russification": ["The process of becoming similar to the Russians, to their culture, and to promote the use of the Russian language."], "martyrology": ["A catalogue or list of martyrs."], "historical martyrology": ["A history of martyrs."], "martyrological": ["Relating to a historical martyrology.", "Relating to a martyrology."], "martyrologist": ["A person who studies martyrs."], "martyromania": ["The mania of wanting to be considered as a martyr."], "Gongdu": ["A Tibetic language spoken by the Gongduk people in a few isolated villages located near the Kurichu river in the Mongar District in eastern Bhutan."], "asphalt concrete": ["A mixture containing tar, used to make roads, pavements etc."], "bituminate": ["To cover with bitumen."], "female governor": ["A woman who heads the government of a colony, state or other sub-national state unit."], "male governor": ["A man who heads the government of a colony, state or other sub-national state unit."], "Okinawa": ["The largest of the Okinawa Islands and the Ryukyu Islands of Japan, also home to Naha, the capital of Okinawa Prefecture."], "Okinawa Island": ["The largest of the Okinawa Islands and the Ryukyu Islands of Japan, also home to Naha, the capital of Okinawa Prefecture."], "island of Okinawa": ["The largest of the Okinawa Islands and the Ryukyu Islands of Japan, also home to Naha, the capital of Okinawa Prefecture."], "Okinawan": ["A Northern Ryukyuan language spoken primarily in the southern half of the island of Okinawa, as well as the surrounding islands of Kerama, Kumejima, Tonaki, Aguni, and a number of smaller peripheral islands.", "An inhabitant of the Okinawa Island."], "topless": ["(Of a woman) Naked from the waist up; having the breast uncovered."], "bare-breasted": ["(Of a woman) Naked from the waist up; having the breast uncovered."], "D\u00fcsseldorf": ["The capital city of the German state of North Rhine-Westphalia and center of the Rhine-Ruhr metropolitan region."], "Faisalabad": ["A city in the province of Punjab, Pakistan, formerly known as Lyallpur."], "Lyallpur": ["A city in the province of Punjab, Pakistan, formerly known as Lyallpur."], "Foshan": ["A prefecture-level city in central Guangdong province, China."], "resolutely": ["Without showing hesitation or indecision."], "cork oak": ["(Quercus suber) A Meditarranean tree with a thick bark from which cork is extracted."], "cork oak forest": ["A forest of cork oak trees."], "corky": ["Relating to cork or to cork oak trees."], "cork oak grower": ["A person who grows cork oak trees."], "gander": ["A male goose."], "Lisboan": ["An inhabitant from Lisbon, Portugal."], "Gan Chinese": ["A Chinese language spoken primarily in central China's Jianxi Province and the south-eastern corner of Hubei Province."], "Jiangxihua": ["A Chinese language spoken primarily in central China's Jianxi Province and the south-eastern corner of Hubei Province."], "Huizhou Chinese": ["A Chinese language spoken in eastern China, primarily in the southern part of Anhui Province on the banks of the Xi'nan River."], "Hui": ["A Chinese language spoken in eastern China, primarily in the southern part of Anhui Province on the banks of the Xi'nan River."], "Hui Chinese": ["A Chinese language spoken in eastern China, primarily in the southern part of Anhui Province on the banks of the Xi'nan River."], "gosling": ["A young goose."], "duckling": ["A young duck."], "Eastern Min": ["A Chinese language mainly spoken in the eastern part of Fujian Province in China, in and near Fuzhou and Ningde. It is also spoken in Brunei, Indonesia (Java and Bali), Malaysia (Peninsular), Singapore and Thailand."], "Southern Min": ["The language of the southern Fujian province of China."], "Wu Chinese": ["One of the major divisions of the Chinese language which is spoken in most of Zhejiang province, the municipality of Shanghai, southern Jiangsu province, as well as smaller parts of Anhui, Jiangxi, and Fujian provinces."], "Hunanese": ["A Chinese language spoken mainly in Hunan province, but also in Sichuan and Guangxi provinces."], "Xiang Chinese": ["A Chinese language spoken mainly in Hunan province, but also in Sichuan and Guangxi provinces."], "female oncologist": ["A female physician specializing in cancer diagnosis and treatment."], "put gloves on": ["To put one's gloves on."], "put gloves off": ["To take one's gloves off."], "CUDA": ["(Compute Unified Device Architecture) A parallel computing architecture for graphics processing units (GPUs) that is accessible to software developers through industry standard programming languages."], "graphics processing unit": ["A dedicated graphics rendering device for a personal computer, workstation, or game console."], "skip class": ["To not go to class without permission."], "cut class": ["To not go to class without permission."], "prebend": ["A stipend paid to a cleric."], "floating point": ["(Of a number) Written in two parts as a mantissa (the value of the digits) and characteristic (the power of a number base) e.g. 0.314159 x 10^2"], "sawyer": ["A person who saws wood."], "floating-point": ["(Of a number) Written in two parts as a mantissa (the value of the digits) and characteristic (the power of a number base) e.g. 0.314159 x 10^2"], "fixed point": ["(Of a number) Represented with a fixed number of digits after the decimal point."], "fixed-point": ["(Of a number) Represented with a fixed number of digits after the decimal point."], "rounding": ["Replacing (a number) by another value that is approximately equal but has a shorter, simpler, or more explicit representation."], "double precision": ["A binary floating-point computer numbering format that occupies 8 bytes (64 bits in modern computers) in computer memory."], "single precision": ["A binary floating-point computer numbering format that occupies 4 bytes (32 bits in modern computers) in computer memory."], "ray tracing": ["A technique for generating an image by tracing the path of light through pixels in an image plane and simulating the effects of its encounters with virtual objects."], "digital imaging": ["The creation of digital images, typically from a physical scene."], "raster graphics image": ["A series of bits that represents a rasterized graphic image, each pixel being represented as a group of bits."], "B\u00e9zier curve": ["A parametric curve widely used in computer graphics and related fields."], "OpenCL": ["(Open Computing Language) A framework for writing programs that execute across heterogeneous platforms consisting of CPUs, GPUs, and other processors."], "OpenGL": ["(Open Graphics Library) A standard specification defining a cross-language, cross-platform API for writing applications that produce 2D and 3D computer graphics."], "API": ["(Application Programming Interface) An interface implemented by a software program which enables it to interact with other software."], "computer program": ["A software application, or a collection of software applications, designed to perform a specific task."], "software program": ["A software application, or a collection of software applications, designed to perform a specific task."], "stack machine": ["A model of computation in which the computer's memory takes the form of one or more stacks."], "PostScript": ["A dynamically typed concatenative programming language, best known for its use as a page description language in the electronic and desktop publishing areas."], "desktop publishing": ["A combination of a personal computer and WYSIWYG page layout software in order to create publication documents on a computer for either large scale publishing or small scale using printing peripheral devices."], "WYSIWYG": ["(What You See Is What You Get) A system in which content displayed during editing appears very similar to the final output, which might be a printed document, web page, slide presentation or even the lighting for a theatrical event."], "office automation": ["A field that exploits computer machinery and software to digitally create, collect, store, manipulate, and relay office information needed for accomplishing basic tasks and goals."], "document preparation system": ["Software for entering, editing and printing primarily textual information."], "liquid crystal display": ["A thin, flat electronic visual display that uses the light modulating properties of liquid crystals."], "Khamjang": ["A Tai language spoken by the Khamiyang people in the Lohit and Tirap districts of the state of Arunachal Pradesh, north-east of India."], "Khamiyang": ["A Tai language spoken by the Khamiyang people in the Lohit and Tirap districts of the state of Arunachal Pradesh, north-east of India."], "Tai languages": ["A sub-group of the Tai-Kadai languages family."], "strappado": ["A form of torture in which the victim's hands are first tied behind their back, and then he or she is suspended in the air by means of a rope attached to wrists, which most likely dislocates both arms."], "reverse hanging": ["A form of torture in which the victim's hands are first tied behind their back, and then he or she is suspended in the air by means of a rope attached to wrists, which most likely dislocates both arms."], "Palestinian hanging": ["A form of torture in which the victim's hands are first tied behind their back, and then he or she is suspended in the air by means of a rope attached to wrists, which most likely dislocates both arms."], "Perl": ["A high-level, general-purpose, interpreted, dynamic programming language."], "Ruby on Rails": ["An open source web application framework for the Ruby programming language."], "web application": ["An application that is accessed with a Web browser over a network such as the Internet or an intranet."], "web application framework": ["A software framework that is designed to support the development of dynamic websites, web applications and web services."], "DJango": ["An open source web application framework, written in Python, which follows the model-view-controller architectural pattern."], "Struts": ["An open-source web application framework for developing Java web applications."], "Apache Struts": ["An open-source web application framework for developing Java web applications."], "signal processing": ["An area of electrical engineering, systems engineering, and applied mathematics that deals with operations on or analysis of signals, in either discrete or continuous time to perform useful operations on those signals."], "mechatronics": ["The synergistic combination of Mechanical engineering, Electronic engineering, Computer engineering, Control engineering, and Systems Design engineering to create, design, and manufacture useful products."], "multidisciplinarity": ["A non-integrative mixture of disciplines in that each discipline retains its methodologies and assumptions without change or development from other disciplines within the multidisciplinary relationship."], "multidisciplinary": ["Involving several disciplines."], "control engineering": ["The engineering discipline that applies control theory to design systems with predictable behaviors."], "control systems engineering": ["The engineering discipline that applies control theory to design systems with predictable behaviors."], "optical engineering": ["The field of study that focuses on applications of optics."], "molecular engineering": ["Any means of manufacturing molecules."], "protein engineering": ["The process of developing useful or valuable proteins."], "Porto Alegre": ["Brazil's fourth largest metropolitan area and the capital city of the southernmost Brazilian state of Rio Grande do Sul."], "Bengaluru": ["The capital of the Indian state of Karnataka. Located on the Deccan Plateau in the south-eastern part of Karnataka, Bangalore is India's third most populous city."], "Dallas": ["The fourth-largest metropolitan area in the United States, located in North Texas."], "Fort Worth": ["A city in the United States of America, located in North Texas and the second-largest cultural and economic center of the Dallas\u2013Fort Worth\u2013Arlington metropolitan area."], "Basketto": ["A variety of the Ometo language spoken in Basketo, Ethiopia."], "Baskatta": ["A variety of the Ometo language spoken in Basketo, Ethiopia."], "Mesketo": ["A variety of the Ometo language spoken in Basketo, Ethiopia."], "Surabaya": ["Indonesia's second-largest city, and the capital of the province of East Java, located on the northern shore of eastern Java at the mouth of the Mas River and along the edge of the Madura Strait."], "pickup truck": ["A light truck with an open body and low sides and a tailboard."], "pick-up truck": ["A light truck with an open body and low sides and a tailboard."], "\u0130zmir": ["Turkey's third most populous city and the country's second largest port city after Istanbul."], "peripheral device": ["A device attached to a host computer but not part of it, and is more or less dependent on the host."], "Katowice": ["A city in Silesia in southern Poland, on the K\u0142odnica and Rawa rivers (tributaries of the Oder and the Vistula)."], "Khamyang Written": ["The written forms of the Khamyang language."], "naumachia": ["A show in the Ancient Roman world consisting of naval battles.", "The basin where a naumachia took place."], "beef ragout": ["A well-seasoned stew of beef and vegetables."], "eidetic": ["Pertaining to a memory or visual image that can be accurately and readily recalled."], "Kuanhua": ["An aboriginal ethnic group of Laos."], "Kween": ["An aboriginal ethnic group of Laos."], "Khween": ["An aboriginal ethnic group of Laos."], "Khouen": ["An aboriginal ethnic group of Laos."], "G\u01c1ana": ["A Khoisan language of Botswana"], "Gxana": ["A Khoisan language of Botswana"], "Dxana": ["A Khoisan language of Botswana"], "Kayah": ["A Sino-Tibetan people, living mostly in Kayah State of Burma."], "Karenni": ["A Sino-Tibetan people, living mostly in Kayah State of Burma."], "Red Karen": ["A Sino-Tibetan people, living mostly in Kayah State of Burma."], "Lawa": ["An ethnic group in Laos and northern Thailand."], "Basketo Spoken": ["The dialects of the Basketo language."], "Burmese script": ["An abugida script in the Brahmic family used in Burma for writing Burmese."], "Pali Written Burmese Script": ["A written form of the Pali language using the Burmese script."], "Pali Written Devanagari Script": ["A written form of the Pali language using the Devanagari script."], "Pali Written Mongolian Script": ["A written form of the Pali language using the Mongolian script."], "Br\u0101hm\u012b": ["The modern name given to the oldest members of the Brahmic family of scripts."], "Brahmi": ["The modern name given to the oldest members of the Brahmic family of scripts."], "brahmi": ["The modern name given to the oldest members of the Brahmic family of scripts."], "Pali Written Brahmi Script": ["A written form of the Pali language using the Brahmi script."], "Pali Written Sinhalese Script": ["A written form of the Pali language using the Sinhalese script."], "Abugida": ["A writing system in which consonant signs (graphemes) are inherently associated with a following vowel."], "shew": ["To give a proof that something is true."], "substantiation": ["An additional proof that something that was believed (some fact or hypothesis or theory) is correct."], "derivation": ["A line of reasoning that shows how a conclusion follows logically from accepted propositions."], "trace": ["To follow, discover, or ascertain the course of development of something.", "To copy onto a sheet of transparent paper."], "debugger": ["A computer program that is used to test and debug other programs (the \"target\" program)."], "refinement": ["The result of improving something.", "The verifiable transformation of an abstract (high-level) formal specification into a concrete (low-level) executable program."], "morphism": ["An abstraction derived from structure-preserving mappings between two mathematical structures."], "prover": ["A person, device, or program that performs logical or mathematical proofs."], "Eurasian Coot": ["A member of the rail and crake bird family, the Rallidae."], "MOF": ["(Meta-Object Facility) An standard for model-driven engineering."], "model-driven engineering": ["A software development methodology which focuses on creating models, or abstractions, more close to some particular domain concepts rather than computing (or algorithmic) concepts."], "overcook": ["To cook too long or at to high a temperature."], "metamodel": ["A model that defines the language for expressing a model."], "metamodeling": ["The analysis, construction and development of the frames, rules, constraints, models and theories applicable and useful for modeling a predefined class of problems."], "model transformation": ["A transformation that takes as input a model conforming to a given metamodel and produces as output another model conforming to a given metamodel."], "XSLT": ["(Extensible Stylesheet Language Transformations) A declarative, XML-based language used for the transformation of XML documents into other XML documents."], "formulate": ["To use the intellect to plan or design something.", "To elaborate, as of theories and hypotheses."], "denotation": ["The literal meaning of something."], "denotational": ["Of or pertaining to the literal meaning of something."], "denotational semantics": ["A technique of describing the \"meaning\" of programs as mathematical functions, allowing people to prove theorems and reason about programs as mathematical entities."], "dynamic memory allocation": ["The allocation of memory storage for use in a computer program during the runtime of that program."], "garbage collection": ["The periodic or on-demand removal of solid waste from primary source locations using a collection vehicle and followed by the depositing of this waste at some central facility or disposal site.", "An automatic process which attempts to free memory that will not be accessed anymore by a program."], "wastefully": ["In a wasteful manner."], "operational semantics": ["A way to give meaning to computer programs in a mathematically rigorous way by describing how a valid program is interpreted as sequences of computational steps."], "Thai numeral": ["The numerals used in the Thai script."], "Lao numeral": ["A numeral in the Lao script."], "method engineering": ["The discipline to construct new methods from existing methods."], "situational method engineering": ["The construction of methods which are tuned to specific situations of development projects."], "situational": ["Of or pertaining to a particular situation."], "axiomatic semantics": ["An approach based on mathematical logic to proving the correctness of computer programs, closely related to Hoare logic."], "Hoare logic": ["A formal system with a set of logical rules for reasoning rigorously about the correctness of computer programs."], "algebraic semantics": ["A formal semantics of computer programs based on algebras."], "formal semantics": ["The field concerned with the rigorous mathematical study of the meaning of programming languages and models of computation."], "Telugu numeral": ["The numerals used in the Telugu script"], "embryology": ["The branch of biology that studies the formation and early development of organisms."], "Lao script": ["The main script used to write the Lao language and other minority languages in Laos."], "Tai Tham script": ["A script used for three living languages: Northern Thai (that is, Kam Mueang), Tai L\u00fc and Kh\u00fcn."], "Tai Tham": ["A script used for three living languages: Northern Thai (that is, Kam Mueang), Tai L\u00fc and Kh\u00fcn."], "Lanna": ["A Tai language spoken by the Thai Yuan people living in Lannathai, Thailand, as well as in northwestern Laos.", "A script used for three living languages: Northern Thai (that is, Kam Mueang), Tai L\u00fc and Kh\u00fcn."], "Tham": ["A script used for three living languages: Northern Thai (that is, Kam Mueang), Tai L\u00fc and Kh\u00fcn."], "Gujarati script": ["An abugida script, is used to write the Gujarati and Kutchi languages."], "Gujarati Written": ["The written forms of the Gujarati language."], "Gujarati Written Gujarati Script": ["The Gujarati language written with the Gujarati script."], "Gujarati Spoken": ["The dialects of the Gujarati language."], "Parsi": ["The larger of the two Zoroastrian communities of or from the Indian subcontinent. According to tradition, the present-day Parsis descend from a group of Iranian Zoroastrians who immigrated to Western India over 1,000 years ago."], "Parsee": ["The larger of the two Zoroastrian communities of or from the Indian subcontinent. According to tradition, the present-day Parsis descend from a group of Iranian Zoroastrians who immigrated to Western India over 1,000 years ago."], "Gujarat": ["The westernmost state in India; its capital is Gandhinagar and its largest city is Ahmedabad."], "white grub": ["The larva of a cockchafer."], "cockchafer grub": ["The larva of a cockchafer."], "columbarium": ["A place where cinerary urns are stored.", "A large, sometimes architecturally impressive building for housing a large colony of pigeons.", "A large, sometimes architecturally impressive building for housing a large colony of pigeons."], "labial": ["Of or pertaining to the lips.", "(Of sounds) Articulated with the lips.", "A sound articulated with the lips."], "bilabial": ["A sound articulated with both lips.", "(Of sounds) Articulated with both lips."], "iterative": ["Marked by repetition."], "invariance": ["The quality of being resistant to variation."], "interference": ["The act of hindering or obstructing or impeding."], "injerencia": ["The act of hindering or obstructing or impeding."], "calculational": ["Of, pertaining to, or employing calculation."], "signature": ["Your name written in your own handwriting."], "soundness": ["A state or condition free from damage or decay.", "(Of a logical system) Its inference rules prove only formulas that are valid with respect to its semantics."], "subsystem": ["A system that is part of some larger system."], "sub-system": ["A system that is part of some larger system."], "dovecot": ["A large, sometimes architecturally impressive building for housing a large colony of pigeons."], "dovecote": ["A large, sometimes architecturally impressive building for housing a large colony of pigeons."], "mathematical logic": ["A subfield of mathematics with close connections to computer science and philosophical logic."], "symbolic logic": ["A subfield of mathematics with close connections to computer science and philosophical logic."], "spendthrift": ["Someone who spends money prodigiously and who is extravagant and recklessly wasteful."], "speciate": ["Evolve so as to lead to a new species or develop in a way most suited to the environment."], "lawful": ["Conforming to, permitted by, or recognised by law or rules."], "licit": ["Conforming to, permitted by, or recognised by law or rules."], "unlawful": ["Not conforming to, permitted by, or recognised by law or rules."], "illicit": ["Not conforming to, permitted by, or recognised by law or rules."], "prohibited": ["That should not be done, because of moral constraints.", "Not conforming to, permitted by, or recognised by law or rules."], "lapse": ["A temporary failure."], "larch": ["A coniferous tree, of genus Larix, having deciduous leaves"], "neoclassicism": ["Any of several movements in the arts, architecture, literature and music that revived forms from earlier centuries."], "consensual": ["With permission,without coercion."], "young boar": ["A young wild boar."], "wild hog": ["A mammal of the biological family Suidae (Sus scrofa, Linneo 1758), ancestor of the domestic pig"], "wild boar": ["A mammal of the biological family Suidae (Sus scrofa, Linneo 1758), ancestor of the domestic pig", "An adult male wild boar."], "tusker": ["An adult male wild boar."], "wild sow": ["An adult female pig."], "Canary Islands": ["An archipelago off the coast of north-western Africa."], "time flies": ["Time seems to pass quickly."], "barracks": ["A group of buildings used by military personnel as housing."], "betrayal": ["The breaking or violation of a presumptive social contract, trust, or confidence that produces moral and psychological conflict within a relationship amongst individuals, between organizations or between individuals and organizations."], "petrifaction": ["A process by which organic material is converted into stone by impregnation with silica."], "petrification": ["A process by which organic material is converted into stone by impregnation with silica."], "silicification": ["A process by which organic material is converted into stone by impregnation with silica."], "neurocranium": ["The upper portion of the skull."], "nativism": ["The doctrine that some skills or abilities are innate and not learned."], "innatism": ["The doctrine that some skills or abilities are innate and not learned."], "nocturne": ["A dreamlike or pensive musical composition."], "nautical": ["Relating to or involving ships or shipping or navigation or seamen."], "neology": ["The rationalist theology of Germany or the rationalisation of the Christian religion."], "juxtapose": ["To place side by side, especially for contrast or comparison."], "bezel": ["The removable plastic faceplate or front panel of a CD or DVD drive.", "The oblique side or face of a cut gem; especially the upper faceted portion of a brilliant (diamond), which projects from its setting.", "The rim of a ring within which a jewel is set."], "Roe Deer": ["A relatively small, reddish and grey-brown Eurasian deer of the species Capreolus capreolus."], "roebuck": ["A male deer."], "roe": ["A relatively small, reddish and grey-brown Eurasian deer of the species Capreolus capreolus."], "beautician": ["One who does hair styling, manicures, and other beauty treatments."], "borough": ["A fortified town.", "An administrative unit of a city which, under most circumstances according to state or national law, would be considered a larger or more powerful entity.", "An administrative district in some cities, e.g., London."], "acidic": ["Having a pH less than 7, or being sour, or having the strength to neutralize alkalis, or turning a litmus paper red."], "valvule": ["Biological small structure letting a fluid pass through in one direction but blocking or slowing its flow down in the opposite direction."], "alternator": ["An electric generator which produces alternating current."], "ichthyologist": ["Someone who studies or practices ichthyology.", "An expert in ichthyology; one who studies fishes."], "taphonomy": ["The study of decaying organisms over time and how they become fossilized."], "Mandarin simplified numeral": ["The numerals used in the simplified Mandarin writing system."], "Mandarin traditional numeral": ["The numerals used in the traditional Mandarin writing system."], "capitation": ["Performing a headcount.", "A tax of a fixed amount per individual"], "poll tax": ["A tax of a fixed amount per individual"], "head tax": ["A tax of a fixed amount per individual"], "capsize": ["To overturn."], "keel over": ["To overturn."], "carnivorous": ["Predatory or flesh eating."], "curator": ["A person who manages,administers or organizes a collection, either independently or employed by a museum, library, archive or zoo."], "cautious": ["Giving attention."], "Creole": ["A person descended from French ancestors in southern United States (especially Louisiana).", "In present Suriname (former colony Dutch Guyana), any descendant of negro slaves; incorrectly used for coloured people (of mixed race)", "A person of European descent born in the West Indies or Latin America."], "crore": ["Ten millions."], "capitalist": ["A person who is a supporter of capitalism.", "An owner of (considerable amount of) capital.", "Of or relating to capitalism."], "charleston": ["A lively 20th century dance characterized by spasmodic kicking with the knees turned inwards."], "mint": ["A building or institution where money (originally, only coins) is produced under government license. (Source: Wiktionary)", "Any of several plants of the family Labiatae, typically aromatic with square stems. (Source: Wiktionary)"], "Nuosu": ["A sino-tibetan language spoken by the Yi people in rural areas of Sichuan, Yunnan, Guizhou, and Guangxi, in China."], "Northern Yi": ["A sino-tibetan language spoken by the Yi people in rural areas of Sichuan, Yunnan, Guizhou, and Guangxi, in China."], "Liangshan Yi": ["A sino-tibetan language spoken by the Yi people in rural areas of Sichuan, Yunnan, Guizhou, and Guangxi, in China."], "Nosu": ["A sino-tibetan language spoken by the Yi people in rural areas of Sichuan, Yunnan, Guizhou, and Guangxi, in China."], "discrepancy": ["An inconsistency between facts or sentiments."], "demagogic": ["Of or pertaining to demagogy or a demagogue."], "destroyer": ["A small, fast warship with light armament, smaller than a cruiser, but bigger than a frigate."], "lubricate": ["To make slippery or smooth by applying a lubricant."], "lysosomal": ["Of, pertaining to, or originating in lysosomes."], "lysosome": ["An organelle found in all types of animal cells which contains a large range of digestive enzymes capable of splitting most biological macromolecules."], "rejoinder": ["A quick response that involves disagreement or is witty; especially an answer to a reply."], "reinsurer": ["A provider of reinsurance."], "reinsurance": ["Insurance purchased by insurance companies that spreads the risk associated with selling insurance around so the danger of one large monetary loss is minimized."], "taxonomist": ["Someone whose profession is taxonomy, or who performs taxonomy at a professional level."], "tycoon": ["A wealthy and powerful business person."], "magnate": ["A wealthy and powerful business person."], "captain of industry": ["A wealthy and powerful business person."], "mogul": ["A wealthy and powerful business person."], "turban": ["Man\u2019s headdress made by winding a length of cloth round the head."], "lead poisoning": ["A medical condition caused by increased levels of the heavy metal lead in the body."], "plumbism": ["A medical condition caused by increased levels of the heavy metal lead in the body."], "colica pictonium": ["A medical condition caused by increased levels of the heavy metal lead in the body."], "saturnism": ["A medical condition caused by increased levels of the heavy metal lead in the body."], "Devon colic": ["A medical condition caused by increased levels of the heavy metal lead in the body."], "painter's colic": ["A medical condition caused by increased levels of the heavy metal lead in the body."], "gugelhupf": ["A cake cooked in a round form, having a diameter of about 20cm with a hole in the middle."], "trilogy": ["A three-part series of books, movies or electronic games,"], "otology": ["The branch of medicine that deals with the ear, its structure, function and pathology."], "otologist": ["A medical specialist who concentrates on the ear and its afflictions."], "walkover": ["A victory, especially in a sports competition, that is won by large margin."], "tapestry": ["A heavy woven cloth, often with decorative pictorial designs, normally hung on walls."], "triumph": ["To show or prove superior.", "A conclusive success following an effort, conflict, or confrontation of obstacles.", "To prevail over rivals, challenges, or difficulties.", "To express great joy or elation."], "trellis": ["An outdoor garden frame which can be used to grow vines or other climbing plants."], "lightweight": ["Having less than average weight."], "walkaway": ["A victory, especially in a sports competition, that is won by large margin."], "thankless": ["Not appreciated or rewarded.", "Not expressing gratitude."], "ungrateful": ["Not expressing gratitude."], "tachymeter": ["A surveying instrument for quickly finding distances."], "temptation": ["The condition of being tempted."], "degrease": ["To remove grease from something.", "To remove grease from something"], "dendrogram": ["A tree-like diagram used to show the ancestors and descendants of species"], "definite": ["Without any doubt or possibility of deviation."], "taxi driver": ["A person who drives a taxi."], "cabbie": ["A person who drives a taxi."], "tab": ["Credit account, e.g., in a shop or bar."], "pug": ["A small dog of an ancient breed originating in China, having a snub nose, wrinkled face, squarish body, short smooth hair, and curled tail."], "puglet": ["A young pug."], "teleology": ["The study of the purpose of natural occurrences."], "traumatology": ["A branch of medicine that deals with the diagnosis and treatment of trauma."], "traumatologist": ["A medical specialist who has his expertise in the traumatology."], "treatable": ["Capable of being treated; not incurable or intractable."], "jasmine": ["Any of several plants, of the genus Jasminum, mostly native to Asia, having fragrant white or yellow flowers."], "demission": ["The act of voluntarily quitting one's job."], "immersion": ["Sinking of something until it is covered completely with a fluid."], "immerse": ["To put under the surface of a liquid."], "interrogator": ["Someone who interrogates; a person who asks questions in a tough and thorough manner."], "kiosk": ["A small enclosed structure, often freestanding, open on one side or with a window, used as a booth to sell newspapers, cigarettes, etc."], "dry yeast": ["Baker's yeast which is dried and sold in granulated form."], "cake yeast": ["Fresh baker's yeast which is sold compressed to a cube."], "interim": ["A means or measure or an action taken in preparation of."], "inventor": ["Someone who is the first to think of or make something."], "in triplicate": ["With three identical copies."], "impatient": ["Restless and intolerant of delays."], "implosion": ["A sudden inward collapse."], "impedance": ["A measure of the opposition to the flow of an alternating current in a circuit."], "incognito": ["Without being known; in disguise; in an assumed character, or under an assumed title.", "Without revealing one's identity.", "Someone unknown or in disguise, or under an assumed character or name."], "persipan": ["A material used in confectionery which is similar to marzipan but apricot or peach kernels are used instead of almonds."], "parzipan": ["A material used in confectionery which is similar to marzipan but apricot or peach kernels are used instead of almonds."], "adjectival": ["Of, relating to, or functioning as an adjective."], "irretrievable": ["Impossible to recover or recoup or overcome."], "adjectivally": ["In an adjectival manner."], "acupuncturist": ["A person who practices acupuncture."], "adenosine": ["A nucleoside composed of a molecule of adenine attached to a ribose sugar molecule."], "dragoman": ["The official title of a person who would function as an interpreter, translator and official guide between Turkish, Arabic, and Persian-speaking countries and polities of the Middle East and European embassies, consulates, vice-consulates and trading posts."], "improvise": ["To make something up or invent it as one goes on."], "Kola Peninsula": ["A peninsula in the far north of Western Russia, part of Murmansk Oblast."], "doline": ["A natural depression or hole in the surface topography caused by the chemical dissolution of carbonate rocks."], "sinkhole": ["A natural depression or hole in the surface topography caused by the chemical dissolution of carbonate rocks."], "cenote": ["A natural depression or hole in the surface topography caused by the chemical dissolution of carbonate rocks."], "swallet": ["A natural depression or hole in the surface topography caused by the chemical dissolution of carbonate rocks."], "swallow hole": ["A natural depression or hole in the surface topography caused by the chemical dissolution of carbonate rocks."], "sink hole": ["A natural depression or hole in the surface topography caused by the chemical dissolution of carbonate rocks."], "serodifferent couple": ["A couple where only one is HIV-positive."], "sero-different couple": ["A couple where only one is HIV-positive."], "impound": ["To take possession of by force or authority."], "impassable": ["(For an obstacle) That is incapable of being passed, crossed, negotiated or overcome."], "incompetence": ["Inability to perform."], "ineptitude": ["Inability to perform."], "incestuous": ["Pertaining to or engaging in incest."], "impressive": ["That excites attention and feeling and makes a vivid impression."], "appealing": ["Pleasing or appealing to the senses."], "serial killer": ["A person who has killed several people over a long period of time."], "mass murder": ["The act of killing a large number of people over a relatively short period of time."], "mass murderer": ["A person who kills a large number of people over a relatively short period of time."], "imagine": ["To have as opinion, belief, or idea.", "To form a mental image of something."], "catenative": ["Having the ability to catenate, or form chains."], "imprison": ["Putting someone in prison or in jail."], "incarcerate": ["Putting someone in prison or in jail."], "lock up": ["Putting someone in prison or in jail."], "inoculate": ["To introduce an antigenic substance or vaccine into the body to produce immunity to a specific disease."], "glial cell": ["A non-neuronal cell that maintains homeostasis, forms myelin, and provides support and protection for the brain's neurons."], "neuroglia": ["A non-neuronal cell that maintains homeostasis, forms myelin, and provides support and protection for the brain's neurons."], "glia": ["A non-neuronal cell that maintains homeostasis, forms myelin, and provides support and protection for the brain's neurons."], "shot in the neck": ["The act of killing somebody by firing a gunshot into the neck."], "idiographic": ["Of or pertaining to individuals."], "into the bargain": ["Over and above what is expected."], "impulsive": ["Actuated by impulse or by transient feelings."], "imitate": ["To reproduce someone's behavior or looks.", "To follow as a model or a pattern."], "inadequate": ["Unequal to the purpose.", "Not reaching a standard; Not sufficient to meet a need or requirement."], "isogamy": ["A form of sexual reproduction involving gametes of similar morphology, differing only in allele expression in one or more mating-type regions."], "inquisitor": ["An official of the ecclesiastical court of the Inquisition."], "impassioned": ["(A speech, song, etc.) Filled with intense emotion or passion."], "in vogue": ["In the current fashion or style."], "bewitch": ["To cast a spell on someone or something.", "To attract, arouse and hold attention and interest, as by charm or beauty."], "ensorcell": ["To cast a spell on someone or something."], "ensorcel": ["To cast a spell on someone or something."], "neck shot": ["The act of killing somebody by firing a gunshot into the neck."], "Romagnol": ["A language spoken in Italy."], "influential": ["With great influence."], "interpellation": ["The formal right of a parliament to submit formal questions to the government."], "inquisition": ["Any one of several institutions charged with trying and convicting heretics (or other offenders against canon law) within the justice-system of the Roman Catholic Church."], "skipper": ["The person lawfully in command of a sea-going vessel.", "A sprat of the species Sprattus sprattus."], "low Earth orbit": ["A zone of the Earth orbit up to an altitude of 2,000 km."], "LEO": ["A zone of the Earth orbit up to an altitude of 2,000 km."], "low orbit": ["A zone of the Earth orbit up to an altitude of 2,000 km."], "medium Earth orbit": ["A zone of the Earth orbit situated above low Earth orbit (altitude of 2,000 kilometres) and below geostationary orbit (altitude of 35,786 kilometres)."], "immunologist": ["A medical specialist who practices the immunology."], "MEO": ["A zone of the Earth orbit situated above low Earth orbit (altitude of 2,000 kilometres) and below geostationary orbit (altitude of 35,786 kilometres)."], "intermediate circular orbit": ["A zone of the Earth orbit situated above low Earth orbit (altitude of 2,000 kilometres) and below geostationary orbit (altitude of 35,786 kilometres)."], "ICO": ["A zone of the Earth orbit situated above low Earth orbit (altitude of 2,000 kilometres) and below geostationary orbit (altitude of 35,786 kilometres)."], "highly elliptical orbit": ["An elliptic orbit characterized by a relatively low-altitude perigee and an extremely high-altitude apogee."], "HEO": ["An elliptic orbit characterized by a relatively low-altitude perigee and an extremely high-altitude apogee."], "galactocentric orbit": ["An orbit about the center of a galaxy."], "heliocentric orbit": ["An orbit around the Sun."], "circumsolar orbit": ["An orbit around the Sun."], "geocentric orbit": ["An orbit around the planet Earth."], "areocentric orbit": ["An orbit around the planet Mars."], "lunar orbit": ["An orbit around the Moon."], "selenocentric orbit": ["An orbit around the Moon."], "geostationary transfer orbit": ["An intermediate orbit used when launching satellites to reach geostationary orbit."], "GTO": ["An intermediate orbit used when launching satellites to reach geostationary orbit."], "Sakapultek": ["A language spoken in Sacapulas, a municipality in the Guatemalan Department of Quich\u00e9."], "go under the knife": ["To undergo medical surgery."], "insubordination": ["Disobedience to lawful authority."], "instruct": ["To give instructions."], "indiscretion": ["The quality or state of being indiscreet."], "intervene": ["To settle a quarrel; get involved, so as to alter or hinder an action."], "incoherent": ["Without logical or meaningful connection."], "mosquito control": ["The control or reduction of a mosquito population in a certain place."], "intricate": ["Having a great deal of fine detail or complexity."], "identifiable": ["Possible of being distinguished and named."], "insulting": ["Containing insult, or having the intention of insulting."], "tartar": ["A form of hardened dental plaque."], "pay it forward": ["The concept of asking that a good turn be repaid by having it done to others instead."], "tuna fishing boat": ["A fishing boat specialized for tuna fishing."], "tuna fisher": ["A person specialized in tuna fishing."], "half time": ["One of the two halves of a match which are separated by a break in some team sports, such as football and rugby."], "halftime": ["One of the two halves of a match which are separated by a break in some team sports, such as football and rugby."], "half-time": ["One of the two halves of a match which are separated by a break in some team sports, such as football and rugby."], "Spanish Romani": ["A mixed language based on Spanish grammar, with an adstratum of Romani lexical items spoken by the Spanish, Portuguese, French, Bresilian and Catalan Romanies."], "Northern Romani dialects": ["A sub-group of the Romani languages spoken in various Northern European, Central European and Eastern European countries."], "Northern Romani languages": ["A sub-group of the Romani languages spoken in various Northern European, Central European and Eastern European countries."], "Finnish Kalo": ["A language of the Romani language family spoken by the Finnish Kale people in Finland."], "conscription": ["The compulsory enrolment of people to serve in a country's military, usually for a fixed period of time."], "national service": ["The compulsory enrolment of people to serve in a country's military, usually for a fixed period of time."], "military service": ["The compulsory enrolment of people to serve in a country's military, usually for a fixed period of time."], "platinum ring": ["A ring made of platinum."], "white gold": ["An alloy of gold and at least one white metal, usually nickel, manganese or palladium, usually with a rhodium plating."], "rose gold": ["An alloy of gold and copper."], "pink gold": ["An alloy of gold and copper."], "red gold": ["An alloy of gold and copper."], "Russian gold": ["An alloy of gold and copper."], "titanium ring": ["Finger ring made of titanium."], "yellow gold": ["Alloy of gold, silver and copper."], "Djirubal": ["An Australian Aboriginal language spoken in northeast Queensland by about 5 speakers of the Dyirbal tribe."], "Kamilaroi": ["A Pama-Nyungan language of the Wiradhuric subgroup found mostly in South East Australia, traditionally spoken by the Kamilaroi people."], "Baguirmi": ["A Nilo-Saharan language spoken by the Baguirmi people mainly in the Chari-Baguirmi Prefecture of Chad. It was the language of the kingdom of Baguirmi."], "Bats Written": ["The written versions of the Bats language."], "Cassubian": ["A Lechitic language, subgroup of the Slavic languages, spoken in some communes of Pomeranian Voivodeship, Poland.", "Of or relating to the Kashubian people and their language."], "Pomeranian language": ["A group of dialects from the Lechitic cluster of the West Slavic languages."], "Extremaduran Written Latin Script": ["A written form of the Extremaduran language."], "Louisiana Creole": ["A French-based cr\u00e9ole spoken in Louisiana, USA."], "footballing": ["Relating to football."], "Af-Boon": ["An East Cushitic language spoken by a few people in Jilib District, Middle Jubba Region, Somalia."], "hard-on": ["An erect penis.", "An erect male genital."], "stiffy": ["An erect penis."], "Aromanian": ["An Eastern Romance language spoken in Southeastern Europe."], "swim cap": ["A tight-fitting cap that keeps hair dry while swimming."], "ring size": ["A standardized measure for finger rings."], "ring sizing stick": ["Conical instrument which is used to measure the size of a finger ring."], "signet ring": ["Finger ring with a seal which is used to mark documents."], "seal ring": ["Finger ring with a seal which is used to mark documents."], "mosasaur": ["A member of a family of serpentine marine reptiles who lived during the late Cretaceous."], "ichthyosaur": ["A giant marine reptile that resembled fish and dolphins living from the Middle Triassic to the Late Cretaceous."], "plesiosaur": ["A type of carnivorous aquatic reptile living from the Early Jurassic to the Late Cretaceous."], "overripe": ["Too ripe, beyond the perfect ripeness."], "overripen": ["To become overripe."], "matrilocal residence": ["A societal system in which a married couple resides with or near the wife's parents."], "matrilocality": ["A societal system in which a married couple resides with or near the wife's parents."], "uxorilocal residence": ["A societal system in which a married couple resides with or near the wife's parents."], "uxorilocality": ["A societal system in which a married couple resides with or near the wife's parents."], "honeymooner": ["A person who is on their honeymoon."], "Enindhilyagwa": ["An indigenous Australian language isolate spoken by the Warnindhilyagwa people on Groote Eylandt in the Gulf of Carpentaria in northern Australia."], "Konso": ["An East Cushitic language spoken in southwest Ethiopia."], "Conso": ["An East Cushitic language spoken in southwest Ethiopia."], "pregnant woman": ["A woman who is expecting a child."], "expectant mother": ["A woman who is expecting a child."], "imminent": ["About to happen."], "imprecise": ["Not clearly thought out.", "Containing some error or uncertainty.", "Expressed in an unclear fashion."], "incinerate": ["To destroy by burning."], "interviewer": ["Someone who interviews."], "heartburn": ["A burning sensation in the chest caused by regurgitation of gastric acid."], "pyrosis": ["A burning sensation in the chest caused by regurgitation of gastric acid."], "acid indigestion": ["A burning sensation in the chest caused by regurgitation of gastric acid."], "dauphin": ["Title of the heir to the throne of France."], "dauphine": ["Title of the wife of the heir to the throne of France."], "crown princess": ["The heiress apparent to the throne in a royal or imperial monarchy."], "inconvenient": ["Not suited to your comfort, purpose or needs."], "ironing": ["The act of pressing clothes with a hot iron."], "insurer": ["A financial institution that sells insurance."], "assurer": ["A financial institution that sells insurance."], "investor": ["A natural or legal person who invests money in order to make a profit."], "imperceptibly": ["In a manner too imperceptible to be detected."], "autographic": ["Written by a person's own hand."], "autograph": ["Written by a person's own hand.", "A manuscript in the author\u2019s handwriting.", "The hand-written signature of a person, especially a celebrity.", "To write something in one's own handwriting."], "holograph": ["Written by a person's own hand."], "divorce judge": ["Judge who makes the decisions in divorce cases."], "divorce lawyer": ["Laywer who represents clients in divorce cases."], "divorce attorney": ["Laywer who represents clients in divorce cases."], "idealist": ["Someone whose conduct stems from idealism rather than from practicality.", "An unrealistic or impractical visionary."], "inalienable": ["That cannot be surrendered or transferred to someone else."], "indoctrination": ["The teaching of a biased or one-sided ideology."], "immunofluorescence": ["A technique that uses a fluorochrome to indicate a specific antigen-antibody reaction."], "ingot": ["A material, usually metal, that is cast into a shape suitable for further processing."], "play truant": ["To not go to class without permission."], "truant": ["A pupil who often skips classes."], "vuvuzela": ["A plastic blowing horn, typically 65 cm long, that produces a loud and monotone note."], "lepatata": ["A plastic blowing horn, typically 65 cm long, that produces a loud and monotone note."], "stadium horn": ["A plastic blowing horn, typically 65 cm long, that produces a loud and monotone note."], "indigestible": ["Difficult or impossible to digest."], "egress": ["Gimmick or ploy to escape a situation that is unfavorable, difficult or dangerous.", "To come out of (e.g. water)."], "full breakfast": ["A traditional breakfast throughout the British Isles and parts of the English-speaking world, typically including fried eggs, bacon, sausage, toast, baked beans."], "bacon and eggs": ["A traditional breakfast throughout the British Isles and parts of the English-speaking world, typically including fried eggs, bacon, sausage, toast, baked beans."], "fry-up": ["A traditional breakfast throughout the British Isles and parts of the English-speaking world, typically including fried eggs, bacon, sausage, toast, baked beans."], "inappropriate": ["Not suitable for the situation."], "unsuitable": ["Not suitable for the situation."], "unfit": ["Not suitable for the situation."], "impenetrable": ["Not capable of being entered, or pierced."], "incur": ["To expose oneself to something inconvenient"], "impropriety": ["An improper act."], "impressionable": ["Easily impressed or influenced."], "incompetent": ["Lacking normally expected degree of ability."], "inertia": ["The property of a body that resists any change to its uniform motion; equivalent to its mass."], "placentophagy": ["The act of mammals eating the placenta of their young after childbirth."], "intimidation": ["The act of making timid or fearful or of deterring by threats."], "intruder": ["Someone who enters without permission."], "isometry": ["A distance-preserving map between metric spaces."], "inherent": ["That is a natural part or consequence of something."], "instigator": ["A person who intentionally starts something, especially one that starts trouble."], "incapacitate": ["To make someone or something unable to perform a certain action."], "powdered eggs": ["Eggs which have been fully dehydrated and have a shelf life of 5-10 years."], "dried eggs": ["Eggs which have been fully dehydrated and have a shelf life of 5-10 years."], "wall-mounted toilet": ["A toilet that is mounted on the wall and does not touch the floor, and whose tank is in the wall."], "wall-hung toilet": ["A toilet that is mounted on the wall and does not touch the floor, and whose tank is in the wall."], "case of death": ["The death of a person."], "event of death": ["The death of a person."], "fatality": ["The death of a person.", "The capacity of an illness or some other condition of being lethal."], "perseverant": ["Who persevers stubbornly."], "perseverent": ["Who persevers stubbornly."], "persevering": ["Who persevers stubbornly."], "perseveringly": ["In a persevering manner."], "boiled rice": ["Boiled rice."], "electronic eavesdropping": ["The illegal listening of spoken conversations using electronic means."], "gravedigger": ["A worker on a cemetary who digs and closes graves."], "noctilucent cloud": ["A cloud of water ice visible in a deep twilight and located in the mesosphere at altitudes of around 76 to 85 kilometers."], "polar mesospheric cloud": ["A cloud of water ice visible in a deep twilight and located in the mesosphere at altitudes of around 76 to 85 kilometers."], "Rift Valley fever": ["A viral zoonosis causing fever and spreading by the bite of infected mosquitoes."], "RVF": ["A viral zoonosis causing fever and spreading by the bite of infected mosquitoes."], "Rift Valley Fever": ["A viral zoonosis causing fever and spreading by the bite of infected mosquitoes."], "inconceivable": ["Incapable of being conceived or imagined."], "unbelievable": ["Incapable of being conceived or imagined."], "conceivable": ["Capable of eliciting belief or trust."], "imaginable": ["Capable of eliciting belief or trust."], "incredible": ["Incapable of being conceived or imagined."], "red mullet": ["A species of goatfish found in the Mediterranean Sea, east North Atlantic Ocean from Scandinavia to Senegal, and the Black Sea."], "in single file": ["Aligned one behind the other."], "single file": ["Aligned one behind the other."], "planetology": ["The science of planets, or planetary systems, and the solar system."], "planetary scientist": ["A scientist specialized in planetary science."], "planetologist": ["A scientist specialized in planetary science."], "palaver": ["To encourage, influence or persuade by effort.", "A meeting at which there is much talk."], "extremely large telescope": ["A telescope with an aperture of more than 20 meters diameter."], "ELT": ["A telescope with an aperture of more than 20 meters diameter."], "boson": ["A subatomic particle that obeys Bose\u2013Einstein statistics."], "dive": ["The attempt by a football player to gain an unfair advantage by falling to the ground and possibly feigning an injury.", "To fall to the ground and possibly feign an injury in order to gain an unfair advantage in a football match.", "To swim under water.", "To jump into water.", "The act of jumping into water.", "The act of swimming under water.", "A jump downwards, head first, possibly with arms erected before the head, usually ending up in water."], "fermion": ["A particle which obeys Fermi\u2013Dirac statistics."], "fermionic": ["Relating to fermions."], "bosonic": ["Relating to bosons."], "bedwetting": ["The fact of involuntarily urinating while asleep."], "nocturnal enuresis": ["The fact of involuntarily urinating while asleep."], "bedwet": ["To involuntarily urinate while asleep."], "wet the bed": ["To involuntarily urinate while asleep."], "bed wetting": ["The fact of involuntarily urinating while asleep."], "sleepwetting": ["The fact of involuntarily urinating while asleep."], "bedwetter": ["A person who involuntarily urinates while asleep."], "bed wetter": ["A person who involuntarily urinates while asleep."], "bed-wetter": ["A person who involuntarily urinates while asleep."], "plunge": ["To jump into water.", "The act of jumping into water."], "indefensible": ["Incapable of being justified or excused.", "Not able to be protected against attack."], "inexcusable": ["Incapable of being justified or excused."], "unpardonable": ["Incapable of being justified or excused."], "telomerase": ["An enzyme that adds DNA sequence repeats in the telomere regions of a chromosome."], "clathrate": ["A chemical substance consisting of a lattice of one type of molecule trapping and containing a second type of molecule."], "clathrate compound": ["A chemical substance consisting of a lattice of one type of molecule trapping and containing a second type of molecule."], "cage compound": ["A chemical substance consisting of a lattice of one type of molecule trapping and containing a second type of molecule."], "host-guest complex": ["A chemical substance consisting of a lattice of one type of molecule trapping and containing a second type of molecule."], "inclusion compound": ["A chemical substance consisting of a lattice of one type of molecule trapping and containing a second type of molecule."], "adduct": ["A chemical substance consisting of a lattice of one type of molecule trapping and containing a second type of molecule."], "inspire": ["To serve as the inciting cause of.", "To spur on or encourage especially by cheers and shouts."], "introductory": ["Serving as a base or starting point."], "sinuosity": ["A property of curve having many twists or turns."], "verifiable": ["Capable of being demonstrated or proved."], "skid": ["(For a vehicle) To slide without being able to control the vehicle."], "braking": ["The act of decelerating using a mechanical device."], "soup up": ["To increase the power of an motor vehicle by modifying it."], "supe up": ["To increase the power of an motor vehicle by modifying it."], "cochlea": ["A spiralled structure found in the inner ear forming part of the auditory system."], "cochlear": ["Relating to the cochlea."], "own goal": ["A goal scored by a player that is registered against his or her own team."], "six pack": ["A set of six beverage cans or bottles sold together, especially of beer.", "A well developed set of abdominal muscles."], "Ubamer": ["Language spoken in Ethiopia."], "Adnyamathanha": ["An Australian Aboriginal language spoken by the Adnyamathanha people from the Flinders Ranges in South Australia."], "Zenati languages": ["A group of 12 languages and dialects of the Northern Berber language family spoken in North Africa."], "plenum": ["A meeting in which all members are present."], "plenary meeting": ["A meeting in which all members are present."], "vespertine": ["Relating to, or occurring in the evening."], "impossibility": ["Incapability of existing or occurring or being done."], "involvement": ["The act of sharing in the activities of a group."], "look daggers at each other": ["To look at each other with hostility."], "Aranadan Written": ["The written forms of the Aranadan language."], "Chukchi": ["A Palaeosiberian language spoken by Chukchi people in the easternmost extremity of Siberia, mainly in Chukotka Autonomous Okrug."], "Luoravetlan": ["A Palaeosiberian language spoken by Chukchi people in the easternmost extremity of Siberia, mainly in Chukotka Autonomous Okrug."], "Chukcha": ["A Palaeosiberian language spoken by Chukchi people in the easternmost extremity of Siberia, mainly in Chukotka Autonomous Okrug."], "Paraguayan": ["A person from Paraguay.", "Of or relating to Paraguay."], "Fishstix": ["Character of the Asterix comic strips, fishmonger of the Gaulish village."], "Bacteria": ["Character of the Asterix comic strips, wife of Unhygienix."], "white ant": ["A soft-bodied insect of the order Isoptera; individuals feed on cellulose and live in colonies with a caste system comprising three types of functional individuals: sterile workers and soldiers, and the reproductives."], "penalty kick": ["A free kick in football taken from 11 m in front of the goal with only the goalkeeper defending."], "larva stage": ["A stage of growth for some insects, in which they are wingless and resemble a caterpillar or grub after hatching from their egg."], "do one's utmost": ["To do the most or best that one is capable to do."], "try one's utmost": ["To do the most or best that one is capable to do."], "try one's hardest": ["To do the most or best that one is capable to do."], "do one's best": ["To do the most or best that one is capable to do."], "dehydroepiandrosterone": ["A steroid produced by the adrenal glands known for its supposed anti-aging effects."], "DHEA": ["A steroid produced by the adrenal glands known for its supposed anti-aging effects."], "surrogacy": ["An arrangement whereby a woman agrees to become pregnant and deliver a child for a contracted party."], "gestational carrier": ["A woman who carries the pregnancy to delivery after having been implanted with an embryo."], "be enough": ["To meet the need."], "suffice": ["To meet the need."], "be sufficient": ["To meet the need."], "C\u00e6sar": ["An ancient Roman family name, notably that of the Roman Emperor Iulius Caesar."], "Orinjade": ["A character of the Asterix series, princess of an Indian country, daughter of Rajah Wotzit."], "Watziznehm": ["A character of the Asterix series, fakir of an Indian country."], "Wotzit": ["A character of the Asterix series, Rajah of an Indian country."], "Hoodunnit": ["A character of the Asterix series, Vizier of an Indian country."], "Owzat": ["A character of the Asterix series, henchman of the Vizier Hoodunnit."], "Howdoo": ["A character of the Asterix series, elephant-man."], "Prolix": ["A character of the Asterix series, false soothsayer who takes advantage of the credulity of the Gauls."], "ghost driver": ["A driver who drives in the wrong direction, particularly on highways."], "Magadhi": ["A Bihari language spoken in the southern part of the Bihar state of India."], "Central Magahi": ["A dialect of the Magahi language spoken in Patna, Gaya and Hazaribagh, in the middle of the state of Bihar."], "document camera": ["A device consisting of a digital camera and a projector mounted on arms to magnify and display an object to a large audience."], "image presenter": ["A device consisting of a digital camera and a projector mounted on arms to magnify and display an object to a large audience."], "visual presenter": ["A device consisting of a digital camera and a projector mounted on arms to magnify and display an object to a large audience."], "digital overhead": ["A device consisting of a digital camera and a projector mounted on arms to magnify and display an object to a large audience."], "docucam": ["A device consisting of a digital camera and a projector mounted on arms to magnify and display an object to a large audience."], "hairnet": ["A fine, often elastic net worn over long hair to hold it in place."], "caul": ["A fine, often elastic net worn over long hair to hold it in place."], "mm": ["An SI/MKS subunit of length, equal to one thousandth of a metre, with symbol \"mm\"."], "millimetric": ["Having a size of the order of a millimeter."], "table leg": ["One of the legs that hold a table."], "penalty shootout": ["A method used to decide which team progresses to the next stage of a football tournament (or wins the tournament) if a match ends in a draw."], "kicks from the penalty mark": ["A method used to decide which team progresses to the next stage of a football tournament (or wins the tournament) if a match ends in a draw."], "have a drink": ["To meet with other people to discuss while drinking typically alcoholic beverages."], "Khirwara": ["A language spoken by the Khirwar people in the Surguja district at the borders of Madhya Pradesh and Uttar Pradesh, in India."], "Hawaii Pidgin Sign Language": ["A sign language used in Hawaii."], "Kuala Lumpur Sign Language": ["A sign language used mainly in the state of Selangor in Malaysia."], "dealcoholize": ["To remove some or all of the alcohol from beverages."], "dealcoholization": ["The removal of some or all of the alcohol from beverages."], "isotonic": ["(Of a drink) Containing similar concentrations of salt and sugar as in the human body."], "lactose free": ["Not containing lactose."], "milk sugar": ["A sugar which is found most notably in milk."], "pencil case": ["A small case designed to contain pencils, erasers, pens, etc."], "ewer": ["A container shaped like a vase with a handle and a spout used to serve liquids."], "pitcher": ["A container shaped like a vase with a handle and a spout used to serve liquids.", "In a game of baseball, the player responsible to throwing (\"pitching\") the ball over home-plate."], "individualism": ["The moral stance, political philosophy, or social outlook that promotes independence and self-reliance of individual people, while opposing the interference with each person's choices by society, the state, or any other group or institution."], "Mong": ["A dialect continuum of the West Hmongic branch of the Hmong-Mien/Miao-Yao language family spoken by the Hmong people of Sichuan, Yunnan, Guizhou, Guangxi, northern Vietnam, Thailand, and Laos."], "spoiler": ["A comment which discloses plot details of a book, a film, etc."], "Shadhubhasha": ["A dialect of the Bengali language with longer verb inflections and a more Sanskrit-derived vocabulary."], "logatome": ["Artificial word of only one or just some syllables which obeys all the phonotactic rules of a language, but still does not have a meaning of its own."], "lexical gap": ["The absence of a word in a particular language."], "lacuna": ["The absence of a word in a particular language."], "nonce word": ["A word that is used only once to fill a lexical gap in a certain context."], "untranslatability": ["The property of being impossible to translate."], "Silak": ["A Nilo-Saharan language spoken in Sudan."], "Awabagal": ["An extinct Australian Aboriginal language that was spoken by the Awabakal people around Lake Macquarie and Newcastle in New South Wales."], "zootechnics": ["Applied science and art of creating domesticated animals."], "zootechny": ["Applied science and art of creating domesticated animals."], "phonotactics": ["A branch of phonology that deals with restrictions in a language on the permissible combinations of phonemes."], "phonotactical": ["Of or referring to phonotactics."], "barrel": ["A unit of volume used to measure crude oil and other petroleum products and equivalent to 42 US gallons (158.9873 liters).", "Container for liquids."], "oil barrel": ["A unit of volume used to measure crude oil and other petroleum products and equivalent to 42 US gallons (158.9873 liters)."], "Rhine wine": ["Wine that is grown and produced in the Rhine valley."], "Rhenish": ["Wine that is grown and produced in the Rhine valley.", "The regional variety of German spoken in the Rhineland in Germany, which is approximately the former Prussian Rhine Province, or the West half of todays federal state North Rhine-Westphalia plus the North half of todays federal state Rhinland-Palatinate. It is both related to modern Standard German, and the various rather diverse hereditary local languages, and a the same time clearly distinct from either."], "Moselle wine": ["Wine that is grown and produced in the Moselle valley."], "vivisect": ["To dissect a living anima for scientific purposes."], "lapis lazuli": ["Intense blue stone whose main component (25 to 40%) is lazurite."], "lazuli": ["Intense blue stone whose main component (25 to 40%) is lazurite."], "inept": ["Not able to do something."], "as easy as pie": ["Very easily."], "diegesis": ["In narratology, the fact of telling and recounting as opposed to showing.", "The fictional world of a word of literature in which narrated situations and events occur."], "mimesis": ["In narratology, the fact of showing as opposed to telling."], "ox tail": ["The tail of a beef animal."], "ox-tail": ["The tail of a beef animal."], "awful heat": ["A very hot heat."], "boiling heat": ["A very hot heat."], "scorching heat": ["A very hot heat."], "sweltering heat": ["A very hot heat."], "heat stroke": ["A body temperature greater than 40.6 \u00b0C due to environmental heat exposure with lack of thermoregulation."], "Odawa": ["A dialect of the Ojibwe language, spoken by the Ottawa people in southern Ontario in Canada, and northern Michigan in the United States."], "quibbling": ["The \u201eart\u201c of \u201ebeing right\u201c word-for-word on a matter that is dishonest concerning the content and cannnot be advocate for."], "underbelly": ["The negative, often hidden side of something."], "impertinence": ["Improperly forward or bold behaviour."], "disinfest": ["To rid of vermin (insects, rodents etc.)."], "disinfestation": ["The act of getting rid of vermin (insects, rodents etc.)."], "radish": ["The pungent edible root of the Raphanus sativus plant, usually eaten raw in salads."], "angelic choir": ["One of the nine ranks or orders of angels."], "astronomical clock": ["A clock which displays astronomical information, such as the relative positions of the sun, moon, zodiacal constellations, and sometimes major planets."], "cress": ["A fast-growing, edible herb of the Cruciferae family with a mildly pungent, peppery flavour, chiefly eaten raw in salads and sandwiches."], "parsnip": ["The long, pale, edible root of the Pastinaca sativa plant."], "shepherd's pie": ["An English meat pie, made with lamb mince and topped with a mashed potato crust."], "cottage pie": ["An English meat pie, made with beef mince and topped with a mashed potato crust."], "pitch pipe": ["A small device used to supply a pitch reference for musicians without perfect pitch."], "polyphony": ["A musical texture consisting of two or more independent melodic voices, which was particularly popular during the Renaissance period."], "polyphonic": ["Having a musical texture consisting of two or more independent melodic voices."], "string quartet": ["A group of four musicians playing stringed instruments, typically two violins, a viola and a cello.", "A musical composition scored for two violins, a viola and a cello."], "spectator": ["Someone who views an event (sports competition, movie etc.)."], "viewer": ["Someone who views an event (sports competition, movie etc.).", "A software that can display a certain type of document without being able to create such a document."], "onlooker": ["Someone who views an event (sports competition, movie etc.)."], "listener": ["Someone who listens (for example to a speech or some music)."], "stag party": ["A male-only party held for a bachelor that is soon to be married."], "stag night": ["A male-only party held for a bachelor that is soon to be married."], "stag do": ["A male-only party held for a bachelor that is soon to be married."], "bull's party": ["A male-only party held for a bachelor that is soon to be married."], "buck's party": ["A male-only party held for a bachelor that is soon to be married."], "buck's night": ["A male-only party held for a bachelor that is soon to be married."], "hen do": ["A female-only party held for a bachelorette that is soon to be married."], "stagette": ["A female-only party held for a bachelorette that is soon to be married."], "girls' night out": ["A female-only party held for a bachelorette that is soon to be married."], "kitchen tea": ["A female-only party held for a bachelorette that is soon to be married."], "multiple myeloma": ["Cancer that arises in plasma cells, a type of white blood cell."], "MM": ["Cancer that arises in plasma cells, a type of white blood cell."], "plasma cell myeloma": ["Cancer that arises in plasma cells, a type of white blood cell."], "Kahler's disease": ["Cancer that arises in plasma cells, a type of white blood cell."], "osteolytic": ["Relating to, or causing osteolysis."], "osteolysis": ["The resorption of bone tissue."], "kepone": ["A chlorinated polycyclic ketone insecticide and fungicide with the chemical formula C10Cl10O."], "chlordecone": ["A chlorinated polycyclic ketone insecticide and fungicide with the chemical formula C10Cl10O."], "corona": ["The part of the Sun's atmosphere located above the chromosphere and extending millions of kilometers into space."], "Southwestern Guiyang Miao": ["A language spoken by the Guiyang Miao people living on the mountaintops in Pingba, Qingzhen and Changshun counties as well as in the Guiyang and Anshun municipalities in Guizhou Province of China."], "Central Morocco Tamazight": ["A Berber language of the Afro-Asiatic language family, spoken by 3 to 5 million people in Central Morocco, as well as by much smaller communities in Algeria and France."], "Braber": ["A Berber language of the Afro-Asiatic language family, spoken by 3 to 5 million people in Central Morocco, as well as by much smaller communities in Algeria and France."], "Tamazight": ["A Berber language of the Afro-Asiatic language family, spoken by 3 to 5 million people in Central Morocco, as well as by much smaller communities in Algeria and France."], "belatedly": ["After the expected or usual time."], "tardy": ["Occurring after the expected or usual time."], "delayed": ["Occurring after the expected or usual time."], "lated": ["Occurring after the expected or usual time."], "see below": ["Information in a text used to refer the reader to a place farther on."], "see above": ["Information in a text used to refer the reader to a place earlier on."], "show off": ["A person who tries to impress the others.", "To display or act proudly, ostentatiously or pretentiously."], "show-off": ["A person who tries to impress the others."], "content delivery network": ["A system consisting of multiple computers that contain copies of data, which are located in different places on the network so clients can access the copy closest to them."], "CDN": ["A system consisting of multiple computers that contain copies of data, which are located in different places on the network so clients can access the copy closest to them."], "elastic computing": ["The ability to dynamically provision and de-provision processing, memory, and storage resources to meet demands of peak usage without worrying about capacity planning and engineering for peak usage."], "mashup": ["A Web-based application that combines data and/or functionality from multiple sources.", "The creation of a text, audio, video, book, etc. by combining several pre-existing sources.", "The creation of a new piece of music by combining several pre-existing sources."], "German Shepherd": ["A breed of dog."], "German Shepherd Dog": ["A breed of dog."], "Antiguan Creole": ["A creole language of Antigua and Barbuda, Anguilla, Dominica, Montserrat and Saint Kitts and Nevis."], "Kede": ["An extinct language of the Andaman Islands, India, spoken by the Aka-Kede people."], "yellow-bellied marmot": ["A marmot having a brown-yellow back and a beige-yellow belly and living in the western United States and southwestern Canada."], "rock chuck": ["A marmot having a brown-yellow back and a beige-yellow belly and living in the western United States and southwestern Canada."], "bone fracture": ["The breaking of hard tissue such as bone."], "URI": ["Unequivocal standard name or address of an intellectual resource.", "Address of a web page or resource."], "uniform resource identifier": ["Unequivocal standard name or address of an intellectual resource."], "web address": ["Address of a web page or resource."], "URL": ["Address of a web page or resource."], "midge": ["Any of various small two-winged flies all belonging to the order Diptera."], "Punu": ["A Bantu language spoken by the Bapunu people in the Tchibanga area of Gabon."], "Yipunu": ["A Bantu language spoken by the Bapunu people in the Tchibanga area of Gabon."], "Mpongwe": ["A Bantu language of the Myene group spoken by the Mpongwe people around the city of Libreville."], "grout": ["A thin mortar used to fill gaps between tiles and masonry."], "Akele": ["A Bantu language spoken by the Akele people, living along the Ogoou\u00e9 and Ngounie rivers, and in the lake region around Lambar\u00e9n\u00e9, in Gabon."], "eyes": ["The two eyes of a human being considered as a whole."], "teeth": ["The set of hard, calcareous structures present in the mouth of many vertebrate animals, generally used for eating."], "lungs": ["The two lungs of a human being considered as a whole."], "fingers": ["The fingers of a person considered as a whole."], "lips": ["The two lips of a human being considered as a whole."], "legs": ["The two legs of a human being considered as a whole."], "telephonic": ["Of, pertaining to, or transmitted by telephone."], "forehead": ["The part of the face between the hairline and the eyebrows."], "cheeks": ["The two cheeks of a human being considered as a whole."], "butt cheek": ["One of the two fleshy body parts, which are located at the upper end of the limbs at the rear part of the body."], "ass cheek": ["One of the two fleshy body parts, which are located at the upper end of the limbs at the rear part of the body."], "uvula": ["A small fleshy piece of tissue on the back of the throat which hangs from the middle of the soft palate."], "thighs": ["The two thighs of a human being considered as a whole."], "staphylitis": ["Inflammation of the uvula."], "bones": ["The bones of a human being considered as a whole."], "uvulitis": ["Inflammation of the uvula."], "Ubyx": ["A language of the Northwestern Caucasian group, spoken by the Ubykh people up until the early 1990s."], "Northwest Caucasian": ["A language family of the Caucasus."], "Abkhaz-Adyghe": ["A language family of the Caucasus."], "North Caucasian": ["A language family comprising the Northwest Caucasian family and the Northeast Caucasian family."], "Northeast Caucasian": ["A language family spoken in the Russian republics of Dagestan, Chechnya, Ingushetia, northern Azerbaijan, and in northeastern Georgia, as well as in diaspora populations in Russia, Turkey, and the Middle East."], "South Caucasian": ["A group of Caucasian languages spoken primarily in Georgia."], "Kartvelian": ["A group of Caucasian languages spoken primarily in Georgia."], "costliness": ["The quality of being expensive."], "priceyness": ["The quality of being expensive."], "priciness": ["The quality of being expensive."], "expensiveness": ["The quality of being expensive."], "fixed-wing aircraft": ["A powered heavier-than-air aircraft with fixed wings that obtains lift by the Bernoulli effect and is used for transportation."], "acquired immune deficiency syndrome": ["A disease of the human immune system caused by the human immunodeficiency virus (HIV)."], "acquired immunodeficiency syndrome": ["A disease of the human immune system caused by the human immunodeficiency virus (HIV)."], "uniparental": ["Relating to a family with only one parent"], "single mother": ["A woman who raises a child on her own without a husband or partner."], "single father": ["A man who raises a child on his own without a wife or partner."], "single parent": ["A person who raises a child on his or her own without a spouse or partner."], "price increase": ["The rise of prices of goods and services."], "eonism": ["A condition in which a person identifies himself or herself with the opposite sex, in particular in dress."], "transvestism": ["A condition in which a person identifies himself or herself with the opposite sex, in particular in dress."], "sexo-\u00e6sthetic inversion": ["A condition in which a person identifies himself or herself with the opposite sex, in particular in dress."], "sexo-aesthetic inversion": ["A condition in which a person identifies himself or herself with the opposite sex, in particular in dress."], "damson plum": ["The small, dark-blue or purple fruit of a plum, Prunus insititia."], "caretaker speech": ["A non-standard form of language used by adults when talking to toddlers and infants which is characterized by high pitch, reduced syntactic complexity and simplified vocabulary."], "infant-directed talk": ["A non-standard form of language used by adults when talking to toddlers and infants which is characterized by high pitch, reduced syntactic complexity and simplified vocabulary."], "mommy talk": ["A non-standard form of language used by adults when talking to toddlers and infants which is characterized by high pitch, reduced syntactic complexity and simplified vocabulary."], "dong": ["The male sexual organ for copulation and urination; the tubular portion of the male genitalia (excluding the scrotum)."], "pecker": ["The male sexual organ for copulation and urination; the tubular portion of the male genitalia (excluding the scrotum)."], "prick": ["The male sexual organ for copulation and urination; the tubular portion of the male genitalia (excluding the scrotum)."], "indifferent": ["Not caring.", "With an indifference attitude."], "atrium": ["In many animals, among which the mammals, heart cavity preceding, in the blood circulation, a more muscular ventricle."], "heart atrium": ["In many animals, among which the mammals, heart cavity preceding, in the blood circulation, a more muscular ventricle."], "summer sausage": ["A sausage that is dried and fermented and can be kept without the need of refrigeration."], "swounds": ["A mild swear expressing surprise or indignation."], "immunotherapy": ["Treatment of disease by inducing, enhancing, or suppressing an immune response."], "viraemia": ["The presence of a virus in the bloodstream."], "viremia": ["The presence of a virus in the bloodstream."], "trans-Neptunian": ["Orbiting on average at a greater distance from the Sun than Neptune."], "transneptunian": ["Orbiting on average at a greater distance from the Sun than Neptune."], "steak tartare": ["A meat dish made from finely chopped or minced raw beef."], "crane operator": ["A person who operates a crane."], "mash-up": ["A Web-based application that combines data and/or functionality from multiple sources.", "The creation of a text, audio, video, book, etc. by combining several pre-existing sources.", "The creation of a new piece of music by combining several pre-existing sources."], "subordinating conjunction": ["A conjunction, that is a word or phrase, connecting a subordinate clause to a main clause."], "insane": ["Mentally ill; affected with madness or insanity."], "cellular dedifferentiation": ["A process in which a differentiated cell reverts to an earlier developmental stage."], "dedifferentiation": ["A process in which a differentiated cell reverts to an earlier developmental stage."], "digital mashup": ["The creation of a text, audio, video, book, etc. by combining several pre-existing sources."], "digital mash-up": ["The creation of a text, audio, video, book, etc. by combining several pre-existing sources."], "bootleg": ["The creation of a new piece of music by combining several pre-existing sources."], "mash up": ["The creation of a new piece of music by combining several pre-existing sources."], "color gamut": ["The subset of colors which can be accurately represented in a given circumstance, such as within a given color space or by a certain output device."], "flashball gun": ["A defensive weapon projecting non-perforing rubber balls."], "flash-ball gun": ["A defensive weapon projecting non-perforing rubber balls."], "testing": ["A means of investigation for detecting a situation of discrimination."], "situation testing": ["A means of investigation for detecting a situation of discrimination."], "discrimination testing": ["A means of investigation for detecting a situation of discrimination."], "audit testing": ["A means of investigation for detecting a situation of discrimination."], "paired testing": ["A means of investigation for detecting a situation of discrimination."], "copyleft work": ["Work whose author abandons or gives freely some or all of the rights of use, according to some conditions."], "antivortex": ["A device used to prevent the apparition of a vortex or to limit its effects in a liquid tank."], "parting": ["A line dividing the hair on top of the head."], "affirmative action": ["A policy that takes factors including race, color, religion, sex or national origin into consideration in order to benefit an underrepresented group, usually as a means to counter discrimination."], "reverse discrimination": ["A policy that takes factors including race, color, religion, sex or national origin into consideration in order to benefit an underrepresented group, usually as a means to counter discrimination."], "mainstreaming": ["Someone's insertion into a society or a group."], "empowerment": ["The increase of the spiritual, political, social, or economic strength of a person or a community."], "gender mainstreaming": ["A policy for the equality between men and women."], "color blindness": ["The disregard of racial characteristics in a selection procedure.", "The inability or decreased ability to see color, or perceive color differences, under normal lighting conditions."], "color-blindness": ["The disregard of racial characteristics in a selection procedure.", "The inability or decreased ability to see color, or perceive color differences, under normal lighting conditions."], "colour-blindness": ["The disregard of racial characteristics in a selection procedure.", "The inability or decreased ability to see color, or perceive color differences, under normal lighting conditions."], "colour blindness": ["The disregard of racial characteristics in a selection procedure.", "The inability or decreased ability to see color, or perceive color differences, under normal lighting conditions."], "race blindness": ["The disregard of racial characteristics in a selection procedure."], "resilience": ["The positive capacity of a person or a community to cope with stress and catastrophe."], "psychological resilience": ["The positive capacity of a person or a community to cope with stress and catastrophe."], "Freudian": ["Relating to the Austrian neurologist Sigmund Freud (1856-1939) or his psychological theories."], "jailer": ["A person who guards the prisoners in a jail."], "jailor": ["A person who guards the prisoners in a jail."], "corrections officer": ["A person who guards the prisoners in a jail."], "gaoler": ["A person who guards the prisoners in a jail."], "warder": ["A person who guards the prisoners in a jail."], "correctional officer": ["A person who guards the prisoners in a jail."], "detention officer": ["A person who guards the prisoners in a jail."], "prison warder": ["A person who guards the prisoners in a jail."], "prison officer": ["A person who guards the prisoners in a jail."], "jail guard": ["A person who guards the prisoners in a jail."], "prison guard": ["A person who guards the prisoners in a jail."], "turnkey": ["A person who guards the prisoners in a jail."], "Jacobin": ["A member of a political group that emerged in Paris at the beginning of the French Revolution, and who met in a Dominican convent."], "kodokushi": ["A phenomenon in Japan where more and more people who live alone die alone and remain undiscovered for a long time."], "algorithmics": ["The subdiscipline of informatics or computer science that studies algorithms"], "shot peening": ["A process of cleaning or sold working of a metallic surface consisting of projecting shots at high speed on this surface."], "monocrystalline whisker": ["A monocrystalline filament that grows from a metallic surface and having a very high tensile strength."], "province of Trieste": ["A province in the autonomous Friuli-Venezia Giulia region of Italy."], "erotomania": ["A type of delusion in which the affected person believes that another person, usually a stranger or famous person, is in love with him or her."], "de Cl\u00e9rambault's syndrome": ["A type of delusion in which the affected person believes that another person, usually a stranger or famous person, is in love with him or her."], "erotomane": ["A person who believes that another person, usually a stranger or famous person, is in love with him or her."], "erotomaniac": ["Who believes that another person, usually a stranger or famous person, is in love with him or her ; suffering from erotomania."], "erotomaniacal": ["Who believes that another person, usually a stranger or famous person, is in love with him or her ; suffering from erotomania."], "RSS": ["A family of web feed formats used to publish frequently updated works\u2014such as blog entries, news headlines, audio, and video\u2014in a standardized format."], "Really Simple Syndication": ["A family of web feed formats used to publish frequently updated works\u2014such as blog entries, news headlines, audio, and video\u2014in a standardized format."], "Fedora": ["A general purpose operating system built on top of the Linux kernel, developed by the community-supported Fedora Project and sponsored by Red Hat."], "salp": ["A barrel-shaped tunicate of the family Salpidae, measuring 1 to 10 centimeters."], "tunicate": ["A member of the subphylum Tunicata or Urochordata, a group of underwater saclike filter feeders of the phylum Chordata."], "urochordate": ["A member of the subphylum Tunicata or Urochordata, a group of underwater saclike filter feeders of the phylum Chordata."], "Chewa": ["A Bantu language, national language of Malawi and official language in Zambia. It is also spoken in Mozambique and Zimbabwe."], "Nyanja": ["A Bantu language, national language of Malawi and official language in Zambia. It is also spoken in Mozambique and Zimbabwe."], "Chichewa": ["A Bantu language, national language of Malawi and official language in Zambia. It is also spoken in Mozambique and Zimbabwe."], "Chinyanja": ["A Bantu language, national language of Malawi and official language in Zambia. It is also spoken in Mozambique and Zimbabwe."], "Northern Mbundu": ["A Bantu language spoken by the Ambundu in the north-west of Angola."], "Umbundu": ["A Bantu language spoken by the Southern Mbundu people in the central highlands of Angola."], "South Mbundu": ["A Bantu language spoken by the Southern Mbundu people in the central highlands of Angola."], "Chilunda": ["A Bantu language of Zambia, Angola and the Democratic Republic of the Congo."], "thorn": ["A sharp and hard protrusion that grows on a plant.", "A letter in the Old English, Gothic, Old Norse, and Icelandic alphabets."], "inertial measurement unit": ["An electronic device that measures a craft's velocity, orientation, and gravitational forces, using a combination of accelerometers and gyroscopes."], "IMU": ["An electronic device that measures a craft's velocity, orientation, and gravitational forces, using a combination of accelerometers and gyroscopes."], "inertial unit": ["An electronic device that measures a craft's velocity, orientation, and gravitational forces, using a combination of accelerometers and gyroscopes."], "inertial platform": ["An electronic device that measures a craft's velocity, orientation, and gravitational forces, using a combination of accelerometers and gyroscopes."], "hotspot": ["An area in the middle of a lithospheric plate where magma rises from the mantle and erupts at the Earth's surface.", "A site that offers a wireless Internet access for the public."], "WiFi hotspot": ["A site that offers a wireless Internet access for the public."], "unhappiness": ["The state of being unhappy."], "ride": ["To sit on and control a vehicle (e.g. a bicycle, a motorbike or a car).", "To transport oneself by sitting on the back of a horse.", "To ride over, along, or through (e.g. roads or highways)."], "breathalyzer": ["A device for estimating blood alcohol content from a breath sample."], "breathalyser": ["A device for estimating blood alcohol content from a breath sample."], "vegetable ivory": ["A hard white endosperm extracted from the seeds of the ivory palms."], "palm ivory": ["A hard white endosperm extracted from the seeds of the ivory palms."], "corozo": ["A hard white endosperm extracted from the seeds of the ivory palms."], "tagua": ["A hard white endosperm extracted from the seeds of the ivory palms."], "ivory palm": ["A palm tree of the genus Phytelephas occurring in South America."], "ivory-nut palm": ["A palm tree of the genus Phytelephas occurring in South America."], "tagua palm": ["A palm tree of the genus Phytelephas occurring in South America."], "dodo": ["A flightless bird endemic to the island of Mauritius, whose species is extinct since the 17th century."], "Bucharestian": ["Relating to Bucharest.", "A person originating from Bucharest."], "CRT television": ["A television based on cathode ray tube technology."], "optogenetics": ["A science combining optical and genetic techniques to interact with neural circuits."], "picture frame": ["A container for a painting or photograph."], "C++": ["A statically typed, free-form, multi-paradigm, compiled, general-purpose programming language."], "geochemist": ["A scientist specialized in geochemistry."], "landlocked": ["Lacking direct access to the sea."], "toenail": ["The hard horny plate on top of each toe."], "hangnail": ["A small, torn piece of skin near a fingernail or toenail."], "agnail": ["A small, torn piece of skin near a fingernail or toenail."], "nail bed": ["The skin beneath the nail plate."], "geochemical": ["Relating to geochemistry."], "Jacobin Club": ["A political club during the French Revolution"], "Jacobinism": ["Political movement during the French Revolution which fought for popular sovereignty and the republic."], "internet television": ["Television programs distributed via the Internet."], "online TV": ["Television programs distributed via the Internet."], "internet TV": ["Television programs distributed via the Internet."], "proword": ["Lexical item of relative meaning (i.e. whose interpretation depends essentially on the context), used in place of any word or phrase of absolute meaning (whose meaning does not depend essentially on the context) of one or several grammatical categories if the word, phrase or notion referred to have been previously mentioned, will be mentioned later, are indicated by the context, have to be guessed, kept very general or mysterious."], "Lydia": ["An Iron age kingdom of western Asia Minor located east of ancient Ionia in the modern Turkish provinces of Manisa and \u0130zmir."], "acid-free": ["Not containing acid."], "in medias res": ["A literary technique where the narration starts in the middle of the storyline instead of the beginning.", "In the middle of a storyline.", "Beginning in the middle of its storyline."], "deus ex machina": ["A plot device whereby a seemingly inextricable problem is suddenly and unexpectedly solved with the introduction of some new character, ability, or object."], "relative clause": ["A subordinate clause which modifies a preceding noun or noun phrase and is introduced by a relative pronoun."], "Great Southern Ocean": ["The waters, including ice shelves, that surround the continent of Antarctica, which comprise the southernmost parts of the Pacific, Atlantic and Indian oceans, and also the Ross, Amundsen, Bellingshausen and Weddell seas."], "South Polar Ocean": ["The waters, including ice shelves, that surround the continent of Antarctica, which comprise the southernmost parts of the Pacific, Atlantic and Indian oceans, and also the Ross, Amundsen, Bellingshausen and Weddell seas."], "straitjacket": ["A garment shaped like a jacket with overlong sleeves that can be tied to the back the wearer to restrain him or her."], "strait jacket": ["A garment shaped like a jacket with overlong sleeves that can be tied to the back the wearer to restrain him or her."], "straightjacket": ["A garment shaped like a jacket with overlong sleeves that can be tied to the back the wearer to restrain him or her."], "strait-jacket": ["A garment shaped like a jacket with overlong sleeves that can be tied to the back the wearer to restrain him or her."], "harpist": ["Someone who plays the harp."], "honestly": ["In an honest manner."], "Q'eqchi'": ["A Mayan language of Guatemala, Belize and El Salvador."], "overmorrow": ["The day after tomorrow."], "ereyesterday": ["On the day before yesterday.", "The day before yesterday."], "motorboat": ["A boat that is powered by a motor."], "monarchism": ["Advocacy of the establishment, preservation, or restoration of a monarchy."], "royalism": ["Advocacy of the establishment, preservation, or restoration of a monarchy."], "royalist": ["An advocate of monarchy."], "confesser": ["A priest who hears confession and then gives absolution."], "proword for verb": ["Lexical item of relative meaning (i.e. whose interpretation depends essentially on the context), able to perform any grammatical function of a verb and used in place of any verb or clause of absolute meaning (whose meaning does not depend essentially on the context) if the verb, clause, action or state referred to have been previously mentioned, will be mentioned later, are indicated by the context, have to be guessed, kept very general or mysterious."], "Standard Albanian": ["An Indo-European language spoken primarily in Albania, Kosovo, Greece, Serbia, Montenegro, and the Republic of Macedonia."], "dyadic": ["Relating to a set of two elements."], "female scientist": ["A female expert in at least one area of science who uses the scientific method to do research."], "male scientist": ["A male expert in at least one area of science who uses the scientific method to do research."], ".NET framework": ["A software framework that can be installed on computers running Microsoft Windows operating systems. It includes a large library of coded solutions to common programming problems and a virtual machine that manages the execution of programs written specifically for the framework."], "Common Type System": ["A standard that specifies how Type definitions and specific values of Types are represented in computer memory in Microsoft's .NET Framework."], "CTS": ["A standard that specifies how Type definitions and specific values of Types are represented in computer memory in Microsoft's .NET Framework."], "Common Language Infrastructure": ["An open specification (published under ECMA-335 and ISO/IEC 23271) developed by Microsoft that describes the executable code and runtime environment that form the core of the Microsoft .NET Framework and the free and open source implementations Mono and Portable.NET."], "CLI": ["An open specification (published under ECMA-335 and ISO/IEC 23271) developed by Microsoft that describes the executable code and runtime environment that form the core of the Microsoft .NET Framework and the free and open source implementations Mono and Portable.NET."], "Common Language Runtime": ["A core component of Microsoft's .NET initiative. It is Microsoft's implementation of the \"Common Language Infrastructure\" (CLI) standard, which defines an execution environment for program code."], "CLR": ["A core component of Microsoft's .NET initiative. It is Microsoft's implementation of the \"Common Language Infrastructure\" (CLI) standard, which defines an execution environment for program code."], "random placement": ["An experimental technique for assigning subjects to different treatments, or no treatment."], "spintronics": ["A technology that exploits the quantum properties of the spins of the electrons to store information."], "magnetoelectronics": ["A technology that exploits the quantum properties of the spins of the electrons to store information."], "spintronic": ["Relating to spintronics."], "horse stable": ["A building used to house and feed horses or other equids."], "Genghis Khan": ["The founder of the Mongol Empire in the 13th century."], "Common Intermediate Language": ["The lowest-level human-readable programming language defined by the Common Language Infrastructure specification and used by the .NET Framework and Mono."], "CIL": ["The lowest-level human-readable programming language defined by the Common Language Infrastructure specification and used by the .NET Framework and Mono."], "just-in-time compilation": ["A method to improve the runtime performance of computer programs, converting code at runtime prior to executing it natively, for example bytecode, into native machine code."], "JIT": ["A method to improve the runtime performance of computer programs, converting code at runtime prior to executing it natively, for example bytecode, into native machine code."], "contract killing": ["Someone who may be hired to kill another person for money."], "hitman": ["Someone who may be hired to kill another person for money."], "professional killer": ["Someone who may be hired to kill another person for money."], "chili con carne": ["A spicy stew made of chili peppers, garlic, onions, meat and often beans and tomatos."], "NetBeans": ["A platform framework for Java desktop applications, and an integrated development environment (IDE) for developing with Java, JavaScript, PHP, Python, Ruby, Groovy, C, C++, Scala, Clojure, and other languages."], "Visual Studio": ["An integrated development environment (IDE) from Microsoft."], "make ends meet": ["To have just enough money to pay one's expenses, in particular food and habitation."], "get by financially": ["To have just enough money to pay one's expenses, in particular food and habitation."], "sans-culotte": ["A member of the poor working class wearing long trousers (instead of knee breeches like the nobles) who had political influence during the French Revolution."], "gaelicization": ["The process of making something Gaelic."], "gaelicisation": ["The process of making something Gaelic."], "indirect speech": ["A linguistic technique to reproduce an utterance by putting it in a subordinate clause and modifying certain grammatical categories such as person, tense or mood."], "reported speech": ["A linguistic technique to reproduce an utterance by putting it in a subordinate clause and modifying certain grammatical categories such as person, tense or mood."], "direct speech": ["A linguistic technique to reproduce an utterance in its original form by enclosing it in quotation marks."], "quoted speech": ["A linguistic technique to reproduce an utterance in its original form by enclosing it in quotation marks."], "free indirect speech": ["A linguistic technique to reproduce an utterance that is similar to indirect discourse but omits the introduction (for example \"he says that\"), leaving the subordinate clause standing on its own."], "free indirect discourse": ["A linguistic technique to reproduce an utterance that is similar to indirect discourse but omits the introduction (for example \"he says that\"), leaving the subordinate clause standing on its own."], "free indirect style": ["A linguistic technique to reproduce an utterance that is similar to indirect discourse but omits the introduction (for example \"he says that\"), leaving the subordinate clause standing on its own."], "insalubrious": ["Posing a risk to health."], "unhealthful": ["Posing a risk to health."], "unsanitary": ["Posing a risk to health."], "insanitary": ["Posing a risk to health."], "unwholesome": ["Posing a risk to health."], "attention whore": ["A person who craves attention and does everything to get it."], "web analytics": ["The analysis of qualitative and quantitative data from a website and the competition, to drive a continual improvement of the online experience that its customers, and potential customers have, which translates into the desired outcomes (online and offline).", "The analysis of qualitative and quantitative data from your website and the competition, to drive a continual improvement of the online experience that your customers, and potential customers have, which translates into your desired outcomes (online and offline). [Avinash Kaushik]"], "sickle cell anaemia": ["A life-long blood disorder characterized by red blood cells that assume an abnormal, rigid, sickle shape."], "sickle-cell anaemia": ["A life-long blood disorder characterized by red blood cells that assume an abnormal, rigid, sickle shape."], "sickle-cell anemia": ["A life-long blood disorder characterized by red blood cells that assume an abnormal, rigid, sickle shape."], "coal tar": ["A brown or black liquid of high viscosity consisting of a mixture of phenols, polycyclic aromatic hydrocarbons (PAHs), and heterocyclic compounds."], "SAX": ["A sequential access parser API for XML. SAX provides a mechanism for reading data from an XML document. It is a popular alternative to the Document Object Model (DOM)."], "Simple API for XML": ["A sequential access parser API for XML. SAX provides a mechanism for reading data from an XML document. It is a popular alternative to the Document Object Model (DOM)."], "DOM": ["A cross-platform and language-independent convention for representing and interacting with objects in HTML, XHTML and XML documents."], "Document Object Model": ["A cross-platform and language-independent convention for representing and interacting with objects in HTML, XHTML and XML documents."], "XHTML": ["A family of XML markup languages that mirror or extend versions of the widely used Hypertext Markup Language (HTML), the language in which web pages are written."], "Extensible Hypertext Markup Language": ["A family of XML markup languages that mirror or extend versions of the widely used Hypertext Markup Language (HTML), the language in which web pages are written."], "DTD": ["A set of markup declarations that define a document type for SGML-family markup languages (SGML, XML, HTML)."], "Document Type Definition": ["A set of markup declarations that define a document type for SGML-family markup languages (SGML, XML, HTML)."], "XML Schema": ["A description of a type of XML document, typically expressed in terms of constraints on the structure and content of documents of that type, above and beyond the basic syntactical constraints imposed by XML itself."], "RelaxNG": ["A schema language for XML which specifies a pattern for the structure and content of an XML document."], "Application Programming Interface": ["(Application Programming Interface) An interface implemented by a software program which enables it to interact with other software."], "GNOME": ["A desktop environment\u2014a graphical user interface that runs on top of a computer operating system\u2014composed entirely of free and open source software."], "otalgia": ["Pain in the ear."], "chignon": ["A roll of hair that is worn at the back of the head."], "bun": ["A roll of hair that is worn at the back of the head."], "white turnip": ["A root vegetable commonly grown in temperate climates worldwide for its white, bulbous taproot."], "fruitful": ["Productive, conducive, helpful or good to something or someone.", "Bearing a lot of fruit."], "upturn": ["An improvement of the economic situation after an economic crisis."], "national epic": ["An epic poem or a literary work of epic scope which seeks or is believed to capture and express the essence or spirit of a particular nation."], "gravitational lens": ["A massive object (such as a cluster of galaxies) between a light source and the observer, that is able to deflect the light rays."], "ovulate": ["To produce ova."], "ovulatory": ["Pertaining to ovulation."], "Afghani": ["A woman of Afghan nationality or descent."], "SPSS": ["A computer program used for statistical analysis, under development and extension since 1968."], "PSPP": ["A free software application for analysis of sampled data. It has a graphical user interface and conventional command line interface. It is written in C, uses GNU Scientific Library for its mathematical routines, and plotutils for generating graphs."], "data entry": ["The process of getting information into a database, usually done by people typing it in by way of data-entry forms designed to simplify the process."], "foreign key": ["A key used in one table to represent the value of a primary key in a related table of a database."], "primary key": ["A field that uniquely identifies a record in a table of a database."], "RDBMS": ["A program which lets you manage structured information stored in tables and which can handle databases consisting of multiple tables."], "relational database management system": ["A program which lets you manage structured information stored in tables and which can handle databases consisting of multiple tables."], "Data Definition Language": ["A computer language for defining data structures."], "DDL": ["A computer language for defining data structures."], "Data Description Language": ["A computer language for defining data structures."], "entity-relationship model": ["An abstract conceptual representation of structured data."], "functional dependency": ["A constraint between two sets of attributes in a relation."], "many-to-many relationship": ["A type of cardinality that refers to the relationship between two entities A and B in which A may contain a parent row for which there are many children in B and vice versa."], "psora": ["A disorder which affects the skin and joints. It commonly causes red scaly patches to appear on the skin."], "pneumology": ["A branch of medicine that deals with diseases of the lungs and the respiratory tract."], "pulmonology": ["A branch of medicine that deals with diseases of the lungs and the respiratory tract."], "respiratory medicine": ["A branch of medicine that deals with diseases of the lungs and the respiratory tract."], "chest medicine": ["A branch of medicine that deals with diseases of the lungs and the respiratory tract."], "pulselessness": ["The absence of a pulse and therefore blood flow."], "one-to-many relationship": ["A relationship that occurs in a database between tables A and B when each record in A may have many linked records in B but each record in B may have only one corresponding record in A."], "one-to-one relationship": ["A relationship in a database that occurs when there is exactly one record in the first table that corresponds to exactly one record in the related table."], "referential integrity": ["A property of data in a database which, when satisfied, requires every value of one attribute (column) of a relation (table) to exist as a value of another attribute in a different (or the same) relation (table)."], "Baraba Tatar": ["A Turkic language, spoken by about 8,000 people in Russian Siberia, closely related to Tatar."], "ACID": ["The properties atomicity, consistency, isolation and durability that guarantee database transactions are processed reliably."], "unimaginable": ["That cannot be considered."], "unthinkable": ["That cannot be considered."], "billionaire": ["A person who has a net worth of at least one billion units of a currency, usually United States dollar, Euro, or Pound sterling.", "A billionaire man."], "common swift": ["A small bird of the species Apus apus having very short legs."], "falsified": ["Not genuine; imitating something superior."], "Louisiana Regional French": ["A variety of the French spoken primarily in Louisiana, USA."], "Three Laws of Robotics": ["A set of three rules written by Isaac Asimov, which almost all positronic robots appearing in his fiction must obey."], "Three Laws": ["A set of three rules written by Isaac Asimov, which almost all positronic robots appearing in his fiction must obey."], "non-deterministic": ["Unpredictable in terms of observable antecedents and known laws."], "improbably": ["In an improbable manner."], "cabby": ["A person who drives a taxi."], "cabdriver": ["A person who drives a taxi."], "cab driver": ["A person who drives a taxi."], "cabman": ["A person who drives a taxi."], "cosmochemistry": ["A science that studies the origin and development of the substances of the universe."], "chemical cosmology": ["A science that studies the origin and development of the substances of the universe."], "cosmochemist": ["A scientist specialized in cosmochemistry."], "astrochemistry": ["The study of the abundance and reactions of chemical elements and molecules in the universe, and their interaction with radiation."], "astrochemist": ["A scientist specialized in astrochemistry."], "trench foot": ["A disease that consists of numbness, swelling and necrosis of the foot as a result of prolonged exposure to wetness."], "fat foot": ["A disease that consists of numbness, swelling and necrosis of the foot as a result of prolonged exposure to wetness."], "buy a pig in a poke": ["To buy or accept something without seeing or examining it first."], "hypotensive": ["Having abnormally low blood pressure.", "Relating to hypotension."], "anhydride": ["A compound that has lost one or several water molecules."], "anhydrite": ["A mineral composed principally of calcium sulfate (CaSO4)."], "maid": ["A young unmarried woman."], "maiden": ["A young unmarried woman."], "smoke detector": ["A device that detects smoke and sets off an alarm."], "head over heels": ["With the head towards the ground and the legs higher than the body."], "arse over tit": ["With the head towards the ground and the legs higher than the body."], "ass over teakettle": ["With the head towards the ground and the legs higher than the body."], "base over apex": ["With the head towards the ground and the legs higher than the body."], "let the cat out of the bag": ["To reveal a secret."], "spill the beans": ["To reveal a secret."], "kerchief": ["A triangular or square piece of cloth tied around the head or around the neck."], "Sotho": ["A Bantu language, belonging to the Niger-Congo language family spoken by the Basotho nation (modern Lesotho)."], "West Greenlandic": ["An Eskimo-Aleut language spoken in Greenland."], "Kurmanji": ["An Iranian language spoken by the Kurds of northern Syria, Iraq, Turkey and some of the former Soviet republics."], "semipermeable": ["Allowing certain molecules or ions to pass through, but blocking others."], "sit down": ["To move into a position where the upper body is upright and the bottom is resting on a surface or the floor."], "take a seat": ["To move into a position where the upper body is upright and the bottom is resting on a surface or the floor."], "catch a cold": ["To become ill with cold."], "road rage": ["Aggressive or angry behavior by a driver of an automobile or other motor vehicle."], "feminist": ["Of or relating to feminism.", "A person who supports the equality of women with men.", "A woman who supports the equality of women with men."], "Christendom": ["The adherents of Christianity collectively."], "Jewry": ["The adherents of Judaism collectively.", "A part of a town inhabited by Jews."], "Jewish people": ["The adherents of Judaism collectively."], "Jewish quarter": ["A part of a town inhabited by Jews."], "Scandinavian": ["Of or relating to Scandinavia."], "callipygous": ["Having beautifully shaped buttocks."], "bootylicious": ["Having beautifully shaped buttocks."], "bootilicious": ["Having beautifully shaped buttocks."], "callipygian": ["Having beautifully shaped buttocks."], "cacopygian": ["Having ugly buttocks."], "steatopygous": ["Having very large buttocks."], "steatopygian": ["Having very large buttocks."], "steatopygia": ["An excessive accumulation of fat on the buttocks."], "attack vector": ["The path from an attacker to a target. This includes tools and techniques. (Schneider)"], "Jewess": ["A female follower of Judaism."], "ANSI": ["A private non-profit organization that oversees the development of voluntary consensus standards for products, services, processes, systems, and personnel in the United States."], "American National Standards Institute": ["A private non-profit organization that oversees the development of voluntary consensus standards for products, services, processes, systems, and personnel in the United States."], "head office": ["The centre of a organisation's operations or administration."], "search engine": ["A software that is designed to retrieve information related to a query from a database and rank the results."], "of the same name": ["Having the same name as another person, object, entity, etc."], "acrostic": ["A text in which the first letter, syllable or word of each line form a word or a sentence."], "acrostical": ["Written as an acrostic."], "IEEE": ["An international non-profit, professional organization for the advancement of technology related to electricity. It has the most members of any technical professional organization in the world, with more than 395,000 members in around 150 countries."], "Institute of Electrical and Electronics Engineers": ["An international non-profit, professional organization for the advancement of technology related to electricity. It has the most members of any technical professional organization in the world, with more than 395,000 members in around 150 countries."], "ichtyosis": ["A genetic skin disorder characterized by dry skin resembling the scales on a fish."], "Hibernate": ["An object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database."], "oil sand": ["A mixture of bitumen, sand, clay and water."], "extra heavy oil": ["A mixture of bitumen, sand, clay and water."], "bituminous sand": ["A mixture of bitumen, sand, clay and water."], "ANS": ["Nerves that control involuntary muscles."], "visceral nervous system": ["Nerves that control involuntary muscles."], "vegetative nervous system": ["Nerves that control involuntary muscles."], "spectrophotometry": ["The study of the absorbance of a chemical substance by analysing its electromagnetic spectra."], "spectrophotometer": ["A device that measures light intensity as a function of the light source wavelength."], "spectrophotometric": ["Relating to spectrophotometry."], "poniard": ["To kill with a dagger."], "crystallinity": ["The amount of crystalline materials in a solid containing both crystalline and amorphous regions."], "degree of crystallinity": ["The amount of crystalline materials in a solid containing both crystalline and amorphous regions."], "ravish": ["To force sexual intercourse or other sexual activity upon another person, without their consent.", "To delight to a high degree; to hold spellbound."], "take by force": ["To force sexual intercourse or other sexual activity upon another person, without their consent."], "vitiate": ["To force sexual intercourse or other sexual activity upon another person, without their consent."], "luckily": ["By fortunate luck."], "serendipitously": ["By fortunate luck."], "long-legged": ["Having long legs."], "leggy": ["Having long legs."], "short-legged": ["Having short legs."], "long-sleeved": ["Having long sleeves."], "leggings": ["A type of fitted clothing covering the legs, typically made of elastic material."], "Romanian Writtten": ["Written forms of the Romanian language."], "Romanian Spoken": ["Dialects of the Romanian language."], "uncorrected": ["Not corrected."], "corrected": ["With errors removed."], "rectified": ["With errors removed."], "long-haired": ["Having long hair on the head.", "Having fur with long hairs."], "longhair": ["Having long hair on the head."], "short-haired": ["Having short hair on the head."], "fine-pored": ["Having small pores."], "large-pored": ["Having large pores."], "coarse-pored": ["Having large pores."], "Freemason": ["A person belonging to the organization of freemasonry."], "pore": ["A tiny opening in the skin."], "sorority": ["Expression of solidarity among women."], "stoma": ["A small opening on the surface of leaves for gas exchange."], "sweat gland": ["A gland that is used for body temperature regulation and excretes sweat fluid."], "unselfish": ["Not selfish, concerned for the welfare of others."], "selfless": ["Not selfish, concerned for the welfare of others."], "sudoriferous gland": ["A gland that is used for body temperature regulation and excretes sweat fluid."], "perspiratory gland": ["A gland that is used for body temperature regulation and excretes sweat fluid."], "exocrine gland": ["Gland that secretes its products via a duct."], "endocrine gland": ["Gland that secretes its product into the bloodstream."], "sweat": ["A fluid that is secreted by sweat glands in the skin in order to regulate body temperature.", "To secrete sweat."], "sudor": ["A fluid that is secreted by sweat glands in the skin in order to regulate body temperature."], "perspiration": ["A fluid that is secreted by sweat glands in the skin in order to regulate body temperature.", "The production and evaporation of a watery fluid called sweat that is excreted by the sweat glands in the skin of mammals."], "perspire": ["To secrete sweat."], "knit dress": ["A dress made of knitted wool"], "knitted dress": ["A dress made of knitted wool"], "marmoreal": ["Made or consisting of marble."], "hyperhidrosis": ["A condition characterized by abnormally increased perspiration."], "anhidrosis": ["A condition characterized by lack of sweating."], "glandular": ["Of, pertaining to, or resembling a gland."], "adenous": ["Of, pertaining to, or resembling a gland."], "electroencephalogram": ["Graph of the macroscopic electrical activity of the brain."], "EEG": ["Graph of the macroscopic electrical activity of the brain."], "amyotrophic lateral sclerosis": ["A progressive, fatal, neurodegenerative disease caused by the degeneration of motor neurons, the nerve cells in the central nervous system that control voluntary muscle movement."], "ALS": ["A progressive, fatal, neurodegenerative disease caused by the degeneration of motor neurons, the nerve cells in the central nervous system that control voluntary muscle movement."], "cross-site scripting": ["A type of computer security vulnerability typically found in web applications that enables malicious attackers to inject client-side script into web pages viewed by other users."], "XSS": ["A type of computer security vulnerability typically found in web applications that enables malicious attackers to inject client-side script into web pages viewed by other users."], "SQL injection": ["A code injection technique that exploits a security vulnerability occurring in the database layer of an application."], "denial-of-service attack": ["An attempt to make a computer resource unavailable to its intended users; it generally consists of the concerted efforts of a person or people to prevent an Internet site or service from functioning efficiently or at all, temporarily or indefinitely."], "DoS attack": ["An attempt to make a computer resource unavailable to its intended users; it generally consists of the concerted efforts of a person or people to prevent an Internet site or service from functioning efficiently or at all, temporarily or indefinitely."], "bongo drum": ["A small drum, generally played in a pair that are designed to sound harmonically together."], "sweating": ["The production and evaporation of a watery fluid called sweat that is excreted by the sweat glands in the skin of mammals."], "cold drink": ["A drink that is served cold."], "cold beverage": ["A drink that is served cold."], "hot drink": ["A drink that is served hot."], "hot beverage": ["A drink that is served hot."], "Algerian": ["Of or relating to Algeria or the Algerian people.", "Person of Algerian nationality or descent.", "Woman of Algerian nationality or descent."], "candaulism": ["A sexual practice where someone has sexual pleasure in watching his or her partner exposed nude to other people, or having sexual intercourse with other people."], "darshan": ["A phenomen in Hinduism where a person claims having a vision of someone or something divine."], "dry shampoo": ["Powder that is applied to the hair and then brushed out in order to remove fat and dirt."], "bad hair day": ["A day when one's hair seems unmanageable and unattractive."], "unattractive": ["Not attractive."], "Pichilemu": ["A city located in the center of Chile and bordering the Pacific Ocean."], "French window": ["A type of door, having one or more panes of glass into its whole length."], "French door": ["A type of door, having one or more panes of glass into its whole length."], "french window": ["A type of door, having one or more panes of glass into its whole length."], "windshield wiper": ["A device used to remove rain and debris from a windscreen or windshield."], "windscreen wiper": ["A device used to remove rain and debris from a windscreen or windshield."], "binarization": ["Conversion of a picture in two values, generally represented as black and white."], "pharynx": ["The part of the alimentary canal between the oral and nasal cavities and the larynx and esophagus."], "nasopharynx": ["The nasal part of the pharynx, lying behind the nose and above the level of the soft palate."], "oropharynx": ["The oral part of the pharynx, reaching from the uvula to the level of the hyoid bone."], "laryngopharynx": ["The part of the pharynx below and behind the larynx."], "hypopharynx": ["The part of the pharynx below and behind the larynx."], "pharyngeal": ["A sound articulated at the pharynx.", "(Of sounds) Articulated at the pharynx.", "Of or pertaining to the pharynx."], "cigarette lighter": ["A small, reusable, handheld device for creating fire."], "pocket lighter": ["A small, reusable, handheld device for creating fire."], "consumptive": ["Suffering from tuberculosis.", "Of, or relating to consumption."], "oral cavity": ["Cavity that is limited by the lips in front, the cheeks on the side, the soft and hard palate at the top and the floor of the mouth below."], "nasal cavity": ["A cavity above and behind the nose that is limited by the nasal bone and the soft and hard palate."], "nasal fossa": ["A cavity above and behind the nose that is limited by the nasal bone and the soft and hard palate."], "TANSTAAFL": ["An adage communicating the idea that it is impossible to get something for nothing."], "TINSTAAFL": ["An adage communicating the idea that it is impossible to get something for nothing."], "moon landing": ["The arrival of a spacecraft on the surface of a moon."], "there ain\u2019t no such thing as a free lunch": ["An adage communicating the idea that it is impossible to get something for nothing."], "there is no such thing as a free lunch": ["An adage communicating the idea that it is impossible to get something for nothing."], "gargoyle": ["An ugly or ill-tempered woman.", "A carved stone with a spout designed to evacuate water from the roof, represented as a grotesque elongated figure."], "Islamophobia": ["A prejudice against, or an irrational fear of Islam or Muslims."], "Islamophobe": ["A person having prejudice against, or an irrational fear of Islam or Muslims."], "Islamophobic": ["Having prejudice against, or an irrational fear of Islam or Muslims."], "Islamization": ["The process of a society's conversion to the religion of Islam."], "Islamisation": ["The process of a society's conversion to the religion of Islam."], "Islamification": ["The process of a society's conversion to the religion of Islam."], "theft": ["The act of taking illegitimatly possession of something that belongs to others."], "eavesdropping": ["The act of secretly listening to the private conversation of others without their consent."], "thievery": ["The act of taking illegitimatly possession of something that belongs to others."], "larceny": ["The act of taking illegitimatly possession of something that belongs to others."], "man-in-the-middle attack": ["A form of active eavesdropping in which the attacker makes independent connections with the victims and relays messages between them, making them believe that they are talking directly to each other over a private connection, when in fact the entire conversation is controlled by the attacker."], "bucket-brigade attack": ["A form of active eavesdropping in which the attacker makes independent connections with the victims and relays messages between them, making them believe that they are talking directly to each other over a private connection, when in fact the entire conversation is controlled by the attacker."], "MITM": ["A form of active eavesdropping in which the attacker makes independent connections with the victims and relays messages between them, making them believe that they are talking directly to each other over a private connection, when in fact the entire conversation is controlled by the attacker."], "Janus attack": ["A form of active eavesdropping in which the attacker makes independent connections with the victims and relays messages between them, making them believe that they are talking directly to each other over a private connection, when in fact the entire conversation is controlled by the attacker."], "naris": ["Either of the two orifices located on the nose (or on the beak of a bird); used as a passage for air and other gases to travel the nasal passages."], "nosehole": ["Either of the two orifices located on the nose (or on the beak of a bird); used as a passage for air and other gases to travel the nasal passages."], "Web scraping": ["A computer software technique of extracting information from websites. Usually, such software programs simulate human exploration of the Web by either implementing low-level Hypertext Transfer Protocol (HTTP), or embedding certain full-fledged Web browsers."], "cannolo": ["A Sicilian pastry dessert that consists of fried pastry dough filled with a cream of ricotta cheese."], "Mongo": ["A Bantu language spoken by several of the Mongo peoples in central Democratic Republic of the Congo, mostly south of the Congo River."], "Lomongo": ["A Bantu language spoken by several of the Mongo peoples in central Democratic Republic of the Congo, mostly south of the Congo River."], "Nkundo": ["A Bantu language spoken by several of the Mongo peoples in central Democratic Republic of the Congo, mostly south of the Congo River."], "tender loving care": ["Way of caring for someone only with love and tenderness."], "TLC": ["Way of caring for someone only with love and tenderness."], "shove up the cunt": ["(For a man) To have sexual intercourse with a woman."], "podiatrist": ["A specialist in care for the feet.", "A health care practitioner who specializes in the diagnosis and treatment of foot ailments."], "pedicurist": ["A specialist in care for the feet."], "frigophobia": ["The fear of becoming too cold."], "hippopotomonstrosesquipedaliophobia": ["The fear of long words."], "sesquipedaliophobia": ["The fear of long words."], "sesquipedalophobia": ["The fear of long words."], "areligious": ["Indifferent to religious matter."], "irreligious": ["Indifferent to religious matter."], "alpine horn": ["A wind instrument, consisting of a natural wooden horn of conical bore, having a cup-shaped mouthpiece, used by mountain dwellers in Switzerland and elsewhere."], "leporiphobia": ["The fear of rabbits."], "Cavina": ["An Tacanan language spoken by the Araona people in the headwaters of the Manupari river in northwest Bolivia."], "molecular systematics": ["The use of the structure of molecules to gain information on an organism's evolutionary relationships."], "trichotillomania": ["A disorder characterized by the impulse to pull out one's hairs, resulting in noticeable bald patches."], "trichotillosis": ["A disorder characterized by the impulse to pull out one's hairs, resulting in noticeable bald patches."], "trich": ["A disorder characterized by the impulse to pull out one's hairs, resulting in noticeable bald patches."], "peak oil": ["The point in time when the maximum rate of global petroleum extraction is reached."], "Petersburgian": ["A person from the city of Saint Petersburg, Russia.", "Relating to the city of Saint Petersburg, Russia."], "KIA": ["Soldier who has died in war."], "bilocation": ["The ability of a person to be at two places at once."], "multilocation": ["The ability of a person to be at several places at once."], "unsaddle": ["To remove a saddle from a horse or other animal."], "mount": ["Animal that can be used for riding."], "Ugaritic": ["A Semitic language spoken from the 14th through the 12th century BCE, in the ancient city of Ugarit, Syria."], "unhorse": ["To cause to fall from a horse."], "throw off": ["(Of a horse) To cause its rider to fall off."], "great bowerbird": ["A bird of the species Chlamydera nuchalis, 33 to 38 cm long and grey in colour, endemic to northern Australia."], "Ennead": ["A group of nine deities in Egyptian mythology."], "ennead": ["A set consisting of nine elements."], "Knights Templar": ["Christian military order that was founded after the First Crusade in 1119 and banned in 1314."], "Poor Fellow-Soldiers of Christ and of the Temple of Solomon": ["Christian military order that was founded after the First Crusade in 1119 and banned in 1314."], "Order of the Temple": ["Christian military order that was founded after the First Crusade in 1119 and banned in 1314."], "Templars": ["Christian military order that was founded after the First Crusade in 1119 and banned in 1314."], "Templar": ["A member of the Order of the Temple."], "Templar knight": ["A member of the Order of the Temple."], "light blue": ["A light shade of blue."], "dark blue": ["A dark shade of blue."], "purple": ["The resultant colour of the junction of the flesh-color with blue. Colour of the amethyst.", "Of a color intermediate between red and blue."], "lose face": ["To be humiliated and to lose the respect of others."], "murder weapon": ["A weapon that was used to commit murder."], "Jiwarli": ["An extinct Australian Aboriginal language, of the Mantharta group of the large Southwest branch of the Pama-Nyungan family, formerly spoken in Western Australia."], "Tjiwarli": ["An extinct Australian Aboriginal language, of the Mantharta group of the large Southwest branch of the Pama-Nyungan family, formerly spoken in Western Australia."], "measles": ["A childhood viral disease manifested as acute febrile illness associated with cough, coryza, conjunctivitis, spots on the buccal mucosa, and rash starting on the head and neck and spreading to the rest of the body."], "tropical disease": ["A disease that is contracted mostly in tropical and subtropical regions."], "breakbone fever": ["A viral infection cause by a virus of the genus Flavivirus, transmitted to humans by the Aedes aegypti mosquito, and endemic to tropical countries."], "forest day mosquito": ["A mosquito of the Aedes albopictus species, characterized by its black and white striped legs and small, black and white body."], "yellow fever mosquito": ["A mosquito of the species Aedes aegypti, known to spread the dengue fever, Chikungunya and yellow fever."], "Southern German": ["Pertaining to or being from or characteristic of South Germany."], "turkology": ["The study of culture, language and history of Turkic peoples."], "turcology": ["The study of culture, language and history of Turkic peoples."], "calliphorine": ["A necrophagous fly of the family Calliphoridae."], "necrophage": ["An organism that feeds on decaying flesh."], "scavenger": ["An organism that feeds on decaying flesh."], "necrophagous": ["That feeds on decaying flesh."], "necrophagy": ["The fact of feeding on decaying flesh."], "coprophagous": ["That feeds on excrement."], "coprophage": ["An organism that feeds on excrement."], "coprophagy": ["The fact of feeding on excrement."], "scatophagy": ["The fact of feeding on excrement."], "scatophagous": ["That feeds on excrement."], "coprophagia": ["The fact of feeding on excrement."], "scatophage": ["An organism that feeds on excrement."], "cygnet": ["An immature young swan."], "toponomastics": ["The science that studies place names (toponyms)."], "hagiotoponym": ["A toponym refering to holiness."], "hagiotoponymy": ["The study of hagiotoponyms."], "holiness": ["The state or condition of being holy."], "sanctity": ["The state or condition of being holy."], "saintliness": ["The state or condition of being holy."], "Palestine Liberation Organization": ["A political and paramilitary organization founded in 1964 and representative of the Palestinian people in the foreign affairs."], "PLO": ["A political and paramilitary organization founded in 1964 and representative of the Palestinian people in the foreign affairs."], "camel stadium": ["A stadium designed for camel races."], "skunk": ["A mammal of the family Mephitidae best known for its ability to secrete a liquid with a strong, foul-smelling odor."], "long in the tooth": ["(For a person or an animal) Having lived for a relatively long period of time."], "European polecat": ["A mammal of the species Mustela putorius, dark brown with a lighter bandit-like mask across the face."], "fitch": ["A mammal of the species Mustela putorius, dark brown with a lighter bandit-like mask across the face."], "foumart": ["A mammal of the species Mustela putorius, dark brown with a lighter bandit-like mask across the face."], "foulmart": ["A mammal of the species Mustela putorius, dark brown with a lighter bandit-like mask across the face."], "BASH": ["Bourne Again SHell. The most common shell interpreter used under Linux and offered as the default on many Linux systems. Based on the older Bourne sh software."], "BSD UNIX": ["Berkeley Software Distribution UNIX; form of UNIX partially based on the original UNIX source code but also incorporating recent developments. BSD is open source and free for all to use and share, with practically no restrictions."], "bzip2": ["A form of file compression. Together with the older and less-efficient gzip, it is a popular form of file compression under Linux and the equivalent to Zip compression under Windows."], "checksum": ["A mathematical process that can be applied to a file or other data to create a unique number relative to the contents of that file. If the file is modified, the checksum will change, usually indicating that the file in question has failed to download correctly or has been modified in some way.", "The result of a computation during which from a large set of data a small figure or few characters are determined that change, when the data changes."], "compilation": ["The process of transforming all or part of a source program into a program image that contains all the information needed for the program to run.", "Translation of source code into object code by a compiler."], "distro": ["In Linux, a collection of software making up the Linux operating system. The software is usually compiled by either a company or organization. It is designed to be easy to install, administer, and use by virtue of it being an integrated whole. Examples include Ubuntu, SUSE Linux, Red Hat, and Debian."], "CVS": ["A free software that keeps track of all work and all changes in a set of files, and allows several developers (potentially widely separated in space and/or time) to collaborate."], "Concurrent Versions System": ["A free software that keeps track of all work and all changes in a set of files, and allows several developers (potentially widely separated in space and/or time) to collaborate."], "Emacs": ["A seminal text editor and pseudo-shell beloved by UNIX aficionados; can be used for programming tasks, simple word processing, etc."], "inode": ["A data structure on a traditional Unix-style file system such as UFS which stores basic information about a regular file, directory, or other file system object."], "dig up": ["To take an entire plant or a part of it out of the soil, such as potatoes, weeds, or a tree."], "dig out": ["To take an entire plant or a part of it out of the soil, such as potatoes, weeds, or a tree."], "amount to": ["results to, in cases of a summation or difference, of distance measurement, or similar."], "add up to": ["results to, in cases of a summation or difference, of distance measurement, or similar."], "come to": ["To be relevant or of importance to.", "results to, in cases of a summation or difference, of distance measurement, or similar."], "be the essence of": ["To be or constitute a general essence of, to be in the broadest sense identified with or part of, to often come with, to make something or someone special."], "be about": ["To be or constitute a general essence of, to be in the broadest sense identified with or part of, to often come with, to make something or someone special."], "be all about": ["To be or constitute a general essence of, to be in the broadest sense identified with or part of, to often come with, to make something or someone special."], "try to settle": ["To come to an agreement or settlement of a dispute or argument, to attempt to sort something out between parties or to settle a case, to finish animosities."], "sort out": ["To come to an agreement or settlement of a dispute or argument, to attempt to sort something out between parties or to settle a case, to finish animosities."], "try to sort out": ["To come to an agreement or settlement of a dispute or argument, to attempt to sort something out between parties or to settle a case, to finish animosities."], "agree to": ["Come to a mutual understanding or agreement or a common plan, to create an appointment, harmonize mutual ideas about a presumed future."], "agree on": ["Come to a mutual understanding or agreement or a common plan, to create an appointment, harmonize mutual ideas about a presumed future."], "make an appointment to": ["Come to a mutual understanding or agreement or a common plan, to create an appointment, harmonize mutual ideas about a presumed future."], "make a difference": ["To be of (some) importance, to influence something or someone (enough), to impress, to touch."], "make out": ["To spot, detect, recognize, capture, or see something or someone having been unknown, invisible, obscured, too distant, or otherwise not found before.", "To have sex with."], "spot": ["To spot, detect, recognize, capture, or see something or someone having been unknown, invisible, obscured, too distant, or otherwise not found before.", "To detect with the senses.", "To make a spot or mark onto.", "To become spotted.", "To mark with a spot or spots so as to allow easy recognition.", "A round or irregular patch on the surface of a thing having a different color, texture etc."], "object to": ["To have an unwanted negative influence on someone, to be distractive to or for someone, impress someone or something in a troublesome or uneasy way."], "turn off": ["To interrupt the operation of a machine by disconnecting it from its source of power."], "put out": ["To cause annoyance in; disturb, especially by minor irritations.", "(For a woman) To have sexual relationships with someone freely.", "To make something stop burning.", "To totally stop something which is on fire from burning any more."], "douse": ["To make something stop burning."], "have to": ["To be required to do something."], "electrophysiology": ["Study of the electrical properties of biological cells and tissues."], "garden pepper cress": ["(Lepidium sativum) Plant in the family of the Brassicaceae which is used in food preparation."], "pepper grass": ["(Lepidium sativum) Plant in the family of the Brassicaceae which is used in food preparation."], "pepperwort": ["(Lepidium sativum) Plant in the family of the Brassicaceae which is used in food preparation."], "poor man's pepper": ["(Lepidium sativum) Plant in the family of the Brassicaceae which is used in food preparation."], "watercress": ["An edible aquatic or semi-aquatic perennial plant of the species Nasturtium officinale in the Brassicaceae family."], "burn like tinder": ["To catch fire easily."], "Australian field cricket": ["A cricket of the species Teleogryllus oceanicus that is endemic to Oceania."], "Pacific field cricket": ["A cricket of the species Teleogryllus oceanicus that is endemic to Oceania."], "oceanic field cricket": ["A cricket of the species Teleogryllus oceanicus that is endemic to Oceania."], "black field cricket": ["A cricket of the species Teleogryllus oceanicus that is endemic to Oceania."], "rosewood": ["The strong and heavy wood of trees belonging to the genus Dalbergia."], "Brazilian tulipwood": ["Wood of the tree species Dalbergia decipularis which grows only in Brazil."], "Classical Armenian": ["The oldest attested form of the Armenian language which was first written down in the 5th century and continues to be used as liturgical language of the Armenian Apostolic Church."], "Old Armenian": ["The oldest attested form of the Armenian language which was first written down in the 5th century and continues to be used as liturgical language of the Armenian Apostolic Church."], "Liturgical Armenian": ["The oldest attested form of the Armenian language which was first written down in the 5th century and continues to be used as liturgical language of the Armenian Apostolic Church."], "Topkap\u0131 Palace": ["The official and private residence of the sultans of the Ottoman Empire in Istanbul."], "Ottoman": ["A historic language of the Ottoman empire."], "ostotheca": ["A small container that holds the bones of a deceased person."], "have a temperature": ["To have a fever."], "pyrexia": ["A higher than normal temperature of a person (or generally a mammal)."], "Lotuko": ["An Eastern Nilotic language spoken by the Lotuko ethnic group of Eastern Equatoria, an area in Southern Sudan."], "Lotuxo": ["An Eastern Nilotic language spoken by the Lotuko ethnic group of Eastern Equatoria, an area in Southern Sudan."], "fevered": ["Having a fever."], "febrile": ["Having a fever."], "feverish dream": ["Very intense dream that may occur when having a fever."], "stop sign": ["A traffic sign to instruct one to be still and not proceed until the path is clear."], "stoplight": ["A signaling device to control the flow of traffic."], "traffic lamp": ["A signaling device to control the flow of traffic."], "traffic signal": ["A signaling device to control the flow of traffic."], "semaphore": ["A signaling device to control the flow of traffic."], "vocative": ["The grammatical case indicating the person or thing being called upon or addressed in a sentences of invocation, begging, ordering, wish or asking."], "masculine gender": ["Belonging to the masculine grammatical gender."], "socio-economics": ["The study of the interaction between society and economy."], "social economics": ["The study of the interaction between society and economy."], "Lithic": ["A period of history that encompasses the first widespread use of technology in human evolution and the spread of humanity from the savannas of East Africa to the rest of the world."], "stone-age": ["Relating to Stone Age."], "Stone-Age": ["Relating to Stone Age."], "Beagle Boys": ["A group of fictional characters of the Walt Disney universe who constantly try to steal from Scrooge McDuck."], "Donald Fauntleroy Duck": ["A fictional duck with a short temper that was created by Walt Disney."], "Daisy Duck": ["A fictional character of the Disney universe, the girlfriend of Donald Duck."], "Huey Duck": ["A fictional character of the Disney universe, one of the triplets which are Donald Duck's nephews, wearing red."], "Huey": ["A fictional character of the Disney universe, one of the triplets which are Donald Duck's nephews, wearing red."], "Dewey Duck": ["A fictional character of the Disney universe, one of the triplets which are Donald Duck's nephews, wearing blue."], "Dewey": ["A fictional character of the Disney universe, one of the triplets which are Donald Duck's nephews, wearing blue."], "Louie Duck": ["A fictional character of the Disney universe, one of the triplets which are Donald Duck's nephews, wearing green."], "Louie": ["A fictional character of the Disney universe, one of the triplets which are Donald Duck's nephews, wearing green."], "degasification": ["The removal of dissolved gases from liquids."], "limnic eruption": ["A type of eruption in which accumulated carbon dioxide suddenly erupts from a meromictic lake."], "lake overturn": ["A type of eruption in which accumulated carbon dioxide suddenly erupts from a meromictic lake."], "meromictic lake": ["A lake where surface waters and deep waters get mixed less than once a year."], "hippodrome": ["A stadium for horse racing and chariot racing."], "leachate": ["A liquid produced by solid waste."], "ayran": ["A refreshing beverage that consists of yoghurt, cold water and salt."], "lahmacun": ["A round, thin piece of dough topped with seasoned minced meat."], "lahmajoun": ["A round, thin piece of dough topped with seasoned minced meat."], "manti": ["A small dumpling filled with seasoned ground meat popular in Turkish cuisine."], "manty": ["A small dumpling filled with seasoned ground meat popular in Turkish cuisine."], "mantu": ["A small dumpling filled with seasoned ground meat popular in Turkish cuisine."], "rice pudding": ["A dish made from rice mixed with milk and other ingredient, usually sweet."], "Abb\u00e9": ["A Kwa language spoken by the Ab\u00e9 people primarily in the Department of Agboville in C\u00f4te d'Ivoire."], "Abbey": ["A Kwa language spoken by the Ab\u00e9 people primarily in the Department of Agboville in C\u00f4te d'Ivoire."], "Golden Horn": ["An inlet of the Bosphorus that divides the city of Istanbul and forms a natural harbor."], "Sea of Marmora": ["The inland sea that connects the Black Sea to the Aegean Sea, thus separating the Asian part of Turkey from its European part."], "Marmara Sea": ["The inland sea that connects the Black Sea to the Aegean Sea, thus separating the Asian part of Turkey from its European part."], "Propontis": ["The inland sea that connects the Black Sea to the Aegean Sea, thus separating the Asian part of Turkey from its European part."], "Futunan": ["A Polynesian language spoken on the Futuna Island of Wallis and Futuna."], "East-Futunan": ["A Polynesian language spoken on the Futuna Island of Wallis and Futuna."], "crawl along": ["To drive slowly, in order to be able to stop at any moment."], "analogously": ["In an analogous manner."], "the early bird catches the worm": ["Phrase which means that it is worthwhile to get up in the morning and start work early."], "matched filter": ["A filter in telecommunication consisting of correlating a known template signal with an unknown signal to detect the presence of the template in the unknown signal."], "riyal": ["The currency of Qatar."], "minimizer bra": ["A bra designed to make the breast appear smaller than it really is."], "sage": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "garden sage": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "common sage": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "glaciologist": ["A scientist specialized in glaciology."], "glaciological": ["Relating to glaciology."], "final obstruent devoicing": ["A phonological phenomenon of some languages (for example German and Turkish) where voiced consonants become voiceless at the end of a word."], "terminal devoicing": ["A phonological phenomenon of some languages (for example German and Turkish) where voiced consonants become voiceless at the end of a word."], "netbook": ["Portable computer that is smaller, lighter, less expensive and less powerful than regular notebooks."], "kitchen sage": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "ramona": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "true sage": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "culinary sage": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "dalmatian sage": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "broadleaf sage": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "meadow sage": ["A small perennial plant of the species Salvia officinalis, used for medicinal and culinary purpose."], "hemicycle": ["Elements of a building that are arranged to form a semicircular structure."], "alopecia": ["The gradual loss of hair from head or body."], "hair loss": ["The gradual loss of hair from head or body."], "brewer's yeast": ["A yeast made from the one-celled fungus Saccharomyces cerevisiae and used in beer fermentation."], "European corn borer": ["A butterfly of the species Ostrinia nubilalis whose caterpillar is a pest of grain, particularly maize."], "European high-flyer": ["A butterfly of the species Ostrinia nubilalis whose caterpillar is a pest of grain, particularly maize."], "suitability": ["The quality of being suitable."], "Atacama desert": ["A desert in South America, covering a 1,000 km strip of land on the Pacific coast of South America, west of the Andes mountains."], "dummy drug": ["A preparation which is pharmacologically inert but which may have a medical effect based solely on the power of suggestion."], "Early Middle Ages": ["The period of European history lasting from the 5th century to approximately 1000."], "early medieval": ["Of or relating to the Early Middle Ages."], "medi\u00e6val": ["Of or pertaining to the Middle Ages."], "High Middle Ages": ["The period of European history in the 11th, 12th, and 13th centuries (1000\u20131300)."], "high medieval": ["Of or relating to the High Middle Ages."], "Late Middle Ages": ["The period of European history 14th and 15th centuries."], "late medieval": ["Of or relating to the Late Middle Ages."], "go shopping": ["To go out and buy items of daily use, like food, clothing and hygiene articles."], "comanage": ["To jointly manage with others."], "folacin": ["A form of the water-soluble Vitamin B9 which occurs naturally in food and can also be taken as supplements."], "nonprocedurally": ["In a nonprocedural manner."], "sage tea": ["Tea made of sage leaves."], "apple tea": ["Tea made of dried apple pieces."], "mumble": ["To speak unintelligibly and without articulating."], "Chimera": ["A creature in Greek mythology composed of the parts of a lioness, a snake, and a goat."], "Chimaera": ["A creature in Greek mythology composed of the parts of a lioness, a snake, and a goat."], "morbidity": ["A rate representing the proportion of a population affected with a given illness."], "rhesus macaque": ["A macaque of the species Macaca mulatta native from South-East Asia, measuring about 50 centimeters, brown or grey in color and having a hairless pink face."], "rhesus monkey": ["A macaque of the species Macaca mulatta native from South-East Asia, measuring about 50 centimeters, brown or grey in color and having a hairless pink face."], "ethologist": ["A scientist specialized in ethology."], "ethological": ["Relating to ethology."], "chimaera": ["An organism with at least two genetically distinct types of cells.", "An impossible or foolish fantasy or project."], "morbidity rate": ["A rate representing the proportion of a population affected with a given illness."], "bhunder": ["A macaque of the species Macaca mulatta native from South-East Asia, measuring about 50 centimeters, brown or grey in color and having a hairless pink face."], "Hausa (Ajami)": ["Hausa language written in Ajami, a variant of the Arabic script."], "Hausa (Latin)": ["Hausa language written with the Latin Script."], "Falkland Islands English": ["The variety of English spoken on the Falkland Islands."], "deceleration": ["The amount by which a speed or velocity decreases.", "The act of decreasing the speed of an object.", "The state of becoming slower."], "gnomonics": ["The art or science relating to sundials."], "fetal": ["Of or referring to a fetus."], "foetal": ["Of or referring to a fetus."], "phoetal": ["Of or referring to a fetus."], "ph\u0153tal": ["Of or referring to a fetus."], "amniotic fluid test": ["A medical procedure used in prenatal diagnosis of genetic risk factors."], "AFT": ["A medical procedure used in prenatal diagnosis of genetic risk factors."], "polyhydramnios": ["An excess of amniotic fluid in the amniotic sac of a pregnant woman."], "polyhydramnion": ["An excess of amniotic fluid in the amniotic sac of a pregnant woman."], "hydramnios": ["An excess of amniotic fluid in the amniotic sac of a pregnant woman."], "oligohydramnios": ["A deficiency of amniotic fluid in the amniotic sac of a pregnant woman."], "saffron yellow": ["A yellow color that resembles that of saffron.", "Having a yellow color, like that of saffron."], "International": ["A dummy language at OmegaWiki comprising expressions that are used as international conventions, such as symbols and scientific Latin."], "cardiac arrest": ["Sudden and complete cessation of the heartbeat resulting in the loss of effective circulation of the blood."], "Chao Phraya": ["River in Thailand"], "painless": ["Without pain."], "acheless": ["Without pain."], "unaching": ["Without pain."], "papyrus": ["A thick paper-like material produced from the pith of the papyrus plant.", "A document written on papyrus.", "A species of aquatic flowering plant belonging to the sedge family Cyperaceae."], "papyrologist": ["A scientist who studies ancient documents written on papyrus."], "papyrology": ["The study of ancient texts written on papyrus."], "x-ray": ["Short wavelength electromagnetic wave usually produced by bombarding a metal target in a vacuum."], "1st": ["Having no predecessor. The ordinal number corresponding to one."], "pumpkin pie": ["A traditional North American pie made with pureed pumpkin."], "10th": ["Which comes after the ninth."], "diplomatics": ["The scientific study of official documents."], "2nd": ["That which comes after the first."], "3-D": ["Existing in three dimensions."], "3-dimensional": ["Existing in three dimensions."], "4-dimensional": ["Existing in four dimensions."], "baht": ["The currency of Thailand."], "Thai baht": ["The currency of Thailand."], "diastema": ["A gap between two adjacent teeth."], "physiognomy": ["The assessment of a person's character or personality from their outer appearance, especially the face."], "antipollution": ["Designed to reduce pollution."], "April fool": ["Custom to make believe false stories on April 1."], "armored car": ["An armor-plated vehicle with strong doors and locks used to transport money or valuables."], "armored": ["Protected by armour."], "Asiatic": ["A person native of or originating from Asia.", "Relating to Asia."], "Asian": ["A person native of or originating from Asia.", "Relating to Asia."], "generously": ["In a generous manner."], "genealogical": ["Relating to genealogy."], "genealogically": ["In a genealogical manner."], "genealogist": ["A person who studies or practices genealogy."], "gyroscopic": ["Relating to, or using a gyroscope."], "gyroscopically": ["By using a gyroscope."], "Pichileminian": ["Relating or pertaining to Pichilemu, Chile."], "facilitate": ["To make easy or easier.", "To be of use or help."], "frenetically": ["In a frenetic manner."], "objectively": ["In an objective manner."], "franticly": ["In a frenetic manner."], "frantically": ["In a frenetic manner."], "financially": ["In a financial manner."], "calorimeter": ["A device designed to measure the amount of heat set free by a process."], "fratricide": ["The killing of one's brother.", "One who kills one's brother."], "regicide": ["The killing of a king.", "One who kills a king."], "fratricidal": ["Relating to fratricide."], "patricide": ["The killing of one's father.", "One who kills one's father."], "regicidal": ["Of or pertaining to regicide."], "photojournalism": ["A form of journalism where photographies are used to report the news."], "photojournalist": ["A journalist who uses photojournalism."], "photojournalistic": ["Relating to photojournalism."], "ultracold": ["Whose temperature is close to 0 kelvins, typically below some tenths of microkelvins."], "epiphysis": ["The rounded end of a long bone."], "epiphyseal": ["Of or relating to the epiphysis."], "innocuousness": ["The quality of not being detrimental to health."], "in vitro fertilization": ["A technique in which egg cells are fertilised outside the woman's body."], "in-vitro fertilisation": ["A technique in which egg cells are fertilised outside the woman's body."], "in-vitro fertilization": ["A technique in which egg cells are fertilised outside the woman's body."], "Creutzfeldt-Jakob disease": ["A degenerative disorder of the central nervous system characterized by the accumulation of prions."], "CJD": ["A degenerative disorder of the central nervous system characterized by the accumulation of prions."], "Creutzfeldt-Jacob disease": ["A degenerative disorder of the central nervous system characterized by the accumulation of prions."], "carbonous oxide": ["Chemical formula CO; a colorless, odorless, and tasteless gas."], "carbonic acid gas": ["A colourless gas with a faint tingling smell and taste."], "fetishism": ["The worship of an object as a part of a religious of mystical practice."], "fetishist": ["A person who has a fetish."], "Western Mari": ["A variety of the (Russian) Mari language spoken primarily in the forested areas on the left bank of the Volga."], "Hill Mari": ["A variety of the (Russian) Mari language spoken primarily in the forested areas on the left bank of the Volga."], "Eastern Mari": ["A variety of the (Russian) Mari language spoken primarily in the meadow on the east bank of the Volga."], "Meadow Mari": ["A variety of the (Russian) Mari language spoken primarily in the meadow on the east bank of the Volga."], "adoptive parents": ["The parents of an adopted child."], "unexplored": ["Which has not been explored by man."], "lumpsucker": ["A fish of the species Cyclopterus lumpus, 30 to 50 cm long, whose eggs are used as a substitute to caviar."], "lumpfish": ["A fish of the species Cyclopterus lumpus, 30 to 50 cm long, whose eggs are used as a substitute to caviar."], "Chabad-Lubavitch": ["A Hasidic movement in Orthodox Judaism."], "Chabad": ["A Hasidic movement in Orthodox Judaism."], "Lubavitch": ["A Hasidic movement in Orthodox Judaism."], "Lubavitch movement": ["A Hasidic movement in Orthodox Judaism."], "Chabad-Lubavitch Hasidism": ["A Hasidic movement in Orthodox Judaism."], "Chabad Hasidism": ["A Hasidic movement in Orthodox Judaism."], "chabazite": ["A tectosilicate mineral of the zeolite group with formula (Ca,Na2,K2,Mg)Al2Si4O12\u00b76H2O."], "chabasite": ["A tectosilicate mineral of the zeolite group with formula (Ca,Na2,K2,Mg)Al2Si4O12\u00b76H2O."], "hacktivism": ["The practise of hacking to defend a political cause."], "hacktivist": ["A person who practices hacking to defend a political cause."], "strangle": ["To squeeze the neck in order to compress the carotide and/or trachea, possibly leading to unconsciousness or death.", "To kill by squeezing the neck in order to compress the carotide and/or trachea.", "Putting or winding something very tightly around a neck, which causes strangulation, inhibits breathing, and ends in death."], "strangulation": ["The act of squeezing the neck in order to compress the carotide and/or trachea, possibly leading to unconsciousness or death.", "The act of killing by squeezing the neck in order to compress the carotide and/or trachea."], "strangulate": ["To kill by squeezing the neck in order to compress the carotide and/or trachea."], "throttle": ["To kill by squeezing the neck in order to compress the carotide and/or trachea."], "strangler": ["A person who kills by strangling."], "throttler": ["A person who kills by strangling."], "strangling": ["The act of squeezing the neck in order to compress the carotide and/or trachea, possibly leading to unconsciousness or death."], "choking": ["The act of squeezing the neck in order to compress the carotide and/or trachea, possibly leading to unconsciousness or death."], "throttling": ["The act of squeezing the neck in order to compress the carotide and/or trachea, possibly leading to unconsciousness or death."], "single household": ["A household that consists of only one person."], "multi-person household": ["A household that consists of several persons."], "dun": ["The colour of the coats of some horses: pale with a dark face, mane, back and tail."], "agrobiology": ["The science of plant life and nutrition."], "agrobiological": ["Of or relating to agrobiology."], "agrobiologic": ["Of or relating to agrobiology."], "agrobiologically": ["In an agrobiological manner."], "synonymy": ["The quality of being equivalent in meaning."], "antonymy": ["The quality of having opposed meanings."], "areflexia": ["The absence of reflexes."], "arachnid": ["Any of the eight-legged creatures, including spiders and scorpions, of the class Arachnida."], "arachnids": ["A class of eight-legged creatures in the subphylum Chelicerata."], "arachnoid": ["Relating to an arachnid.", "Ressembling an arachnid."], "arachnidian": ["Relating to an arachnid."], "arachnophobia": ["The fear of spiders."], "arachnephobia": ["The fear of spiders."], "arachnophobe": ["A person who fears spiders."], "arachnophobic": ["Suffering from arachnophobia."], "in condition": ["In good physical condition to perform a physical task, as a result of exercise."], "wind farm": ["An area dedicated to the production of electricity with wind turbines."], "plutoid": ["A trans-Neptunian dwarf planet."], "addictology": ["The study of addictions and their treatments."], "addictologist": ["A person specialized in addictology."], "addicted": ["Dependent on a habit-forming substance such as a drug or alcohol."], "addictive": ["Having the property of making the consumer addicted."], "addicting": ["Having the property of making the consumer addicted."], "habit-forming": ["Having the property of making the consumer addicted."], "Addison's disease": ["An endocrine disorder wherein the adrenal glands produce insufficient steroid hormones."], "chronic adrenal insufficiency": ["An endocrine disorder wherein the adrenal glands produce insufficient steroid hormones."], "hypocortisolism": ["An endocrine disorder wherein the adrenal glands produce insufficient steroid hormones."], "hypocorticism": ["An endocrine disorder wherein the adrenal glands produce insufficient steroid hormones."], "Addison's syndrome": ["An endocrine disorder wherein the adrenal glands produce insufficient steroid hormones."], "hypoadrenocorticism": ["An endocrine disorder wherein the adrenal glands produce insufficient steroid hormones."], "hypoadrenalism": ["An endocrine disorder wherein the adrenal glands produce insufficient steroid hormones."], "child slavery": ["The slavery of children."], "worst-case scenario": ["A situation where the worst envisaged troubles happen."], "child trafficking": ["The trading of minors in order to exploit them."], "worst case scenario": ["A situation where the worst envisaged troubles happen."], "maximum credible accident": ["A situation where the worst envisaged troubles happen."], "infantile": ["Behaving immaturely, like a child."], "immature": ["Behaving immaturely, like a child."], "childishly": ["In a childish manner."], "childishness": ["The state of being childish."], "puerility": ["The state of being childish."], "childlessness": ["The condition of being childless."], "childly": ["Of or pertaining to a child."], "childlike": ["Of or pertaining to a child."], "food chemistry": ["The study of the composition of food."], "food chemist": ["A scientist who specializes in the analysis of food."], "stalemate": ["A situation in which no progress can be made or no advancement is possible.", "Drawing position in chess: any of a player's possible moves would place his king in check.", "To subject to a stalemate."], "dead end": ["A situation in which no progress can be made or no advancement is possible."], "standstill": ["A situation in which no progress can be made or no advancement is possible."], "monarch butterfly": ["A migratory butterfly, Danaus plexippus, found in North America."], "teratoma": ["A tumor resulting from an abnormal development of pluripotent cells."], "immunosuppression": ["The reduction of the activity or efficacy of the immune system."], "immunosuppressed": ["Having a reduced activity or efficacy of the immune system."], "immunosuppressive drug": ["A drug that reduces the activity or efficacy of the immune system."], "immunosuppressant": ["A drug that reduces the activity or efficacy of the immune system."], "immune suppressant drug": ["A drug that reduces the activity or efficacy of the immune system."], "immunosuppressive": ["A drug that reduces the activity or efficacy of the immune system.", "(Of a drug) That reduces the activity or efficacy of the immune system."], "immunosuppressor": ["A drug that reduces the activity or efficacy of the immune system."], "immunosuppressive agent": ["A drug that reduces the activity or efficacy of the immune system."], "beetles": ["An order of insects of the superorder Endopterygota, having biting mouthparts and forewings modified to form shell-like protective elytra."], "coleopterology": ["A branch of entomology dedicated to the study of beetles."], "coleopterologist": ["A person specialized in coleopterology."], "Volkswagen Beetle": ["A car that Volkswagen started to produce in 1938."], "Volkswagen Type 1": ["A car that Volkswagen started to produce in 1938."], "combined oral contraceptive pill": ["A pill containing estrogen and progestin, which, when taken daily, inhibits female fertility."], "COCP": ["A pill containing estrogen and progestin, which, when taken daily, inhibits female fertility."], "birth-control pill": ["A pill containing estrogen and progestin, which, when taken daily, inhibits female fertility."], "contraceptive pill": ["A pill containing estrogen and progestin, which, when taken daily, inhibits female fertility."], "birth control pill": ["A pill containing estrogen and progestin, which, when taken daily, inhibits female fertility."], "cytotoxic": ["That is toxic to cells."], "antineoplastic drug": ["A natural or man-made substance that can kill or stop the growth or spread of cancer cells."], "cancer drug": ["A natural or man-made substance that can kill or stop the growth or spread of cancer cells."], "cytotoxic drug": ["A drug that is toxic to cells."], "medicament": ["A substance which specifically promotes healing."], "medicinal drug": ["A substance which specifically promotes healing."], "Rakhine": ["A language of Myanmar and Bangladesh"], "Kham Mueang": ["A Tai language spoken by the Thai Yuan people living in Lannathai, Thailand, as well as in northwestern Laos."], "deracinate": ["To pull up by the roots."], "cereal harvest": ["The process of gathering ripe cereal.", "The amount of cereal gathered in one season."], "wheat harvest": ["The process of gathering ripe wheat.", "The amount of cereal gathered in one season."], "work for peanuts": ["To work for no or very little reward."], "to no avail": ["Without success, without the desired effect."], "for nothing": ["Without success, without the desired effect."], "to no purpose": ["Without success, without the desired effect."], "for free": ["Without cost."], "ravage": ["To cause extensive destruction or ruin utterly."], "scourge": ["To cause extensive destruction or ruin utterly."], "bare": ["Without clothing.", "Lacking in amplitude or quantity; not abundant."], "bleak": ["A small fresh-water fish of the species Alburnus alburnus."], "chrestomathy": ["A collection of texts or text passages for didactic purposes."], "jute": ["A plant of the species Corchorus capsularis or Corchorus olitorius cultivated for its long, soft, shiny vegetable fibres.", "A fibre extracted from a jute plant."], "jute plant": ["A plant of the species Corchorus capsularis or Corchorus olitorius cultivated for its long, soft, shiny vegetable fibres."], "jute fiber": ["A fibre extracted from a jute plant."], "jute fibre": ["A fibre extracted from a jute plant."], "jute bag": ["A bag made from jute fibers."], "gunnysack": ["A bag made from jute fibers."], "gunny sack": ["A bag made from jute fibers."], "dehusk": ["To remove the husk from a grain."], "dehusking": ["The removal of the husk from a grain."], "basmati rice": ["A variety of long grain rice grown in India and Pakistan, notable for its fragrance."], "basmati": ["A variety of long grain rice grown in India and Pakistan, notable for its fragrance."], "aromatic rice": ["A rice that has an intense aroma, such as basmati rice or jasmine rice."], "jasmine rice": ["A long-grain variety of rice whose aroma reminds of jasmine flower."], "Thai fragrant rice": ["A long-grain variety of rice whose aroma reminds of jasmine flower."], "brown rice": ["A rice where the husk is removed but the bran layer and the germ are kept."], "hulled rice": ["A rice where the husk is removed but the bran layer and the germ are kept."], "parboiled rice": ["A rice that has been boiled in the husk."], "Patna rice": ["A long-grain white rice originating from the city of Patna, India."], "white rice": ["A rice that has had its husk, bran, and germ removed."], "wild rice": ["A plant of the genus Zizania palustris, whose black grains can be eaten."], "Canada rice": ["A plant of the genus Zizania palustris, whose black grains can be eaten."], "Indian rice": ["A plant of the genus Zizania palustris, whose black grains can be eaten."], "water oats": ["A plant of the genus Zizania palustris, whose black grains can be eaten."], "tonsure": ["The complete or partial removal of scalp hair for religious reasons.", "The Christian practice of shaving the top of the head so as to create a crown of hair."], "Roman tonsure": ["The Christian practice of shaving the top of the head so as to create a crown of hair."], "hoarding": ["The act of buying and accumulating food or other items when it is feared that there will be a shortage."], "winterproof": ["Able to resist to winter and in particular to the cold temperatures of that season."], "winter-proof": ["Able to resist to winter and in particular to the cold temperatures of that season."], "speeder": ["A driver who exceeds the speed limit."], "speed demon": ["A driver who exceeds the speed limit."], "Kurukh": ["A Dravidian language spoken by the Oraon and Kisan tribal peoples of Bihar, Jharkhand, Orissa, Madhya Pradesh, Chhattisgarh, and West Bengal, India, as well as in northern Bangladesh."], "Ku\u1e5bux": ["A Dravidian language spoken by the Oraon and Kisan tribal peoples of Bihar, Jharkhand, Orissa, Madhya Pradesh, Chhattisgarh, and West Bengal, India, as well as in northern Bangladesh."], "Kuru\u1e35\u1e96": ["A Dravidian language spoken by the Oraon and Kisan tribal peoples of Bihar, Jharkhand, Orissa, Madhya Pradesh, Chhattisgarh, and West Bengal, India, as well as in northern Bangladesh."], "teargas": ["A gas that irritates mucous membranes in the eyes, nose, mouth and lungs, and causes tearing, pain, and sometimes blindness."], "tear gas": ["A gas that irritates mucous membranes in the eyes, nose, mouth and lungs, and causes tearing, pain, and sometimes blindness."], "lachrymatory agent": ["A gas that irritates mucous membranes in the eyes, nose, mouth and lungs, and causes tearing, pain, and sometimes blindness."], "lachrymator": ["A gas that irritates mucous membranes in the eyes, nose, mouth and lungs, and causes tearing, pain, and sometimes blindness."], "lacrimator": ["A gas that irritates mucous membranes in the eyes, nose, mouth and lungs, and causes tearing, pain, and sometimes blindness."], "smelly foot": ["A foot that smells bad."], "afoot": ["Walking by foot."], "by foot": ["Walking by foot."], "on foot": ["Walking by foot."], "within walking distance": ["Reachable by foot."], "teardrop": ["A drop of liquid produced from the eyes by crying or irritation.", "The shape of a drop of liquid about to fall, round at the bottom, tapered at the top."], "crocodile tears": ["A display of tears that is forced or false."], "American bison": ["A wild heavy bison of the species Bison bison, having a broad massive horned head."], "American buffalo": ["A wild heavy bison of the species Bison bison, having a broad massive horned head."], "collection of taxes": ["Taking of the tax by the state."], "once and for all": ["In a definitive manner."], "once for all": ["In a definitive manner."], "for good": ["In a definitive manner."], "African clawed frog": ["A South African aquatic frog of the species Xenopus laevis."], "platanna": ["A South African aquatic frog of the species Xenopus laevis."], "sphygmomanometer": ["A device used to measure blood pressure."], "blood pressure meter": ["A device used to measure blood pressure."], "Lemusmus": ["An Austronesian language spoken in the Kavieng District of New Ireland Province, Papua New Guinea."], "Lemakot": ["An Austronesian language spoken in the Kavieng District of New Ireland Province, Papua New Guinea."], "Gorogone": ["An Australian Aboriginal language spoken in Arnhem Land."], "Gun-Guragone": ["An Australian Aboriginal language spoken in Arnhem Land."], "Gunagoragone": ["An Australian Aboriginal language spoken in Arnhem Land."], "Gungorogone": ["An Australian Aboriginal language spoken in Arnhem Land."], "Gurrgoni": ["An Australian Aboriginal language spoken in Arnhem Land."], "Gurrogone": ["An Australian Aboriginal language spoken in Arnhem Land."], "Gutjertabia": ["An Australian Aboriginal language spoken in Arnhem Land."], "parsimony": ["Extreme reluctance to spend money."], "stinginess": ["Extreme reluctance to spend money."], "niggardliness": ["Extreme reluctance to spend money."], "penuriousness": ["Extreme reluctance to spend money."], "miserliness": ["Extreme reluctance to spend money."], "closefistedness": ["Extreme reluctance to spend money."], "Chulim": ["A Turkic language spoken by the Chulym and the Kacik people of the Basin of the Chulym River north of the Altay Mountains, Rusia."], "Chulym-Turkic": ["A Turkic language spoken by the Chulym and the Kacik people of the Basin of the Chulym River north of the Altay Mountains, Rusia."], "K\u00fcerik": ["A Turkic language spoken by the Chulym and the Kacik people of the Basin of the Chulym River north of the Altay Mountains, Rusia."], "Chulym Tatar": ["A Turkic language spoken by the Chulym and the Kacik people of the Basin of the Chulym River north of the Altay Mountains, Rusia."], "Melets Tatar": ["A Turkic language spoken by the Chulym and the Kacik people of the Basin of the Chulym River north of the Altay Mountains, Rusia."], "frugality": ["The practice of spending money responsibly and avoiding unnecessary spending."], "Lankaran": ["A small city in Azerbaijan, on the coast of the Caspian Sea, near the southern border with Iran."], "Lencoran": ["A small city in Azerbaijan, on the coast of the Caspian Sea, near the southern border with Iran."], "Lenkoran'": ["A small city in Azerbaijan, on the coast of the Caspian Sea, near the southern border with Iran."], "great barracuda": ["A fish of the species Sphyraena barracuda."], "hawk moths": ["A family of moths (Lepidoptera) having a rapid, sustained flying ability."], "sphinx moths": ["A family of moths (Lepidoptera) having a rapid, sustained flying ability."], "hornworms": ["A family of moths (Lepidoptera) having a rapid, sustained flying ability."], "hawk moth": ["A moth of the family Sphingidae having a rapid, sustained flying ability."], "sphinx moth": ["A moth of the family Sphingidae having a rapid, sustained flying ability."], "hornworm": ["A moth of the family Sphingidae having a rapid, sustained flying ability."], "hawkmoth": ["A moth of the family Sphingidae having a rapid, sustained flying ability."], "sphingid": ["A moth of the family Sphingidae having a rapid, sustained flying ability."], "hummingbird moth": ["A moth of the family Sphingidae having a rapid, sustained flying ability."], "feeling of guilt": ["Awareness of having done wrong and feeling bad about it."], "sense of guilt": ["Awareness of having done wrong and feeling bad about it."], "quadruped": ["An animal having four legs.", "Having four feet."], "quadrupedal": ["Having four feet."], "four-footed": ["Having four feet."], "precarity": ["The condition of being precarious."], "pangolin": ["Any mammal of the genus Manis in the Manidae family having large keratin scales covering their skin."], "scaly anteater": ["Any mammal of the genus Manis in the Manidae family having large keratin scales covering their skin."], "spelaeology": ["The branch of nature sciences concerned with the study of caves."], "speleological": ["Pertaining or relating to speleology."], "spelaeological": ["Pertaining or relating to speleology."], "at first go": ["At the first try."], "holey": ["Having holes."], "Burkinabe": ["A person or a citizen from Burkina Faso.", "From or relating to Burkina Faso."], "Bermudan": ["A person who originated from or is a citizen of Bermuda."], "Amsterdamer": ["A person who lives or was born in Amsterdam."], "NVIDIA": ["A multinational corporation which specializes in the development of graphics processing units and chipset technologies for workstations, personal computers, and mobile devices."], "CRUD": ["(Create, Read, Update and Delete) The major functions that need to be implemented in a relational database application to consider it complete."], "inversion of control": ["An abstract principle describing an aspect of some software architecture designs in which the flow of control of a system is inverted in comparison to procedural programming."], "aspect-oriented programming": ["A programming paradigm which isolates secondary or supporting functions from the main program's business logic."], "object-relational mapping": ["A programming technique for converting data between incompatible type systems in object-oriented programming languages."], "ORM": ["A programming technique for converting data between incompatible type systems in object-oriented programming languages."], "Spring Framework": ["An open source application framework for the Java platform comprising an inversion of Control container, aspect-oriented programming, an object-relational mapping and a model-view-controller framework."], "cosmodrome": ["A site for launching spacecrafts."], "astrodrome": ["A site for launching spacecrafts."], "spaceport": ["A site for launching spacecrafts."], "cosmetically": ["In a cosmetic manner."], "cosmetic dentistry": ["A branch of dentistry dealing with the improvement of the appearance of a person's teeth."], "cosmetician": ["One who does hair styling, manicures, and other beauty treatments.", "A person who sells or applies cosmetics."], "cosmetic surgeon": ["A surgeon specialized in cosmetic surgery."], "plastic surgeon": ["A surgeon specialized in plastic surgery."], "cosmetic surgery": ["A branch of surgery concerned with the improvement of the appearance of a person."], "aesthetic surgery": ["A branch of surgery concerned with the improvement of the appearance of a person."], "esthetic surgery": ["A branch of surgery concerned with the improvement of the appearance of a person."], "plastic surgery": ["A branch of surgery concerned with the correction or restoration of the form and function of a part of the body."], "anaplasty": ["A branch of surgery concerned with the correction or restoration of the form and function of a part of the body."], "event-driven programming": ["A programming paradigm in which the flow of the program is determined by events or messages from other programs or threads."], "event-based programming": ["A programming paradigm in which the flow of the program is determined by events or messages from other programs or threads."], "Baynunk": ["A Niger-Congo macrolanguage spoken in Casamance (Senegal) as well as in Gambia."], "thanatophobia": ["The fear of death."], "whither": ["To which place?", "To which place."], "whereto": ["To which place?"], "where...from": ["From which place?"], "skull and crossbones": ["A symbol consisting of a human skull and two bones crossed together under the skull."], "death's head": ["A symbol consisting of a human skull and two bones crossed together under the skull."], "sociologist": ["A person who studies sociology."], "hijab": ["A head covering traditionally worn by Muslim women."], "\u1e25ij\u0101b": ["A head covering traditionally worn by Muslim women."], "sleepless": ["Characterized by an absence of sleep."], "white night": ["A night without sleep."], "all-nighter": ["A night without sleep."], "sleeplessly": ["In a sleepless manner."], "sleeplessness": ["Difficulty in going to sleep or getting enough sleep."], "tutorial": ["A guide that teaches from the beginning and step-by-step how to use a software."], "triple play": ["A service providing Internet access, telephony and television over a single broadband connection."], "video frame": ["One of the many still images that compose a video."], "educated guess": ["A guess based on personal experience or knowledge."], "lay\u2026 to waste": ["To cause extensive destruction or ruin utterly."], "cupcake": ["A small cake baked in paper forms and covered with frosting."], "patty cake": ["A small cake baked in paper forms and covered with frosting."], "cup cake": ["A small cake baked in paper forms and covered with frosting."], "buttercream": ["Cream made of butter, sugar and egg yolk."], "lepidopterans": ["A large order of scaly-winged insects, including the butterflies, skippers, and moths; adults are characterized by two pairs of membranous wings and sucking mouthparts, featuring a prominent, coiled proboscis."], "cook for": ["To cook for someone, to provide someone with food."], "polyandry": ["A form of marriage in which a woman has several husbands at the same time.", "A situation in which a female mates with several males."], "animal polyandry": ["A situation in which a female mates with several males."], "polygyny": ["A form of marriage in which a man has several wives at the same time.", "A situation in which a male mates with several females."], "animal polygyny": ["A situation in which a male mates with several females."], "absolutive case": ["A grammatical case being used in several languages such as Basque, Georgian, Sumerian, Chechen, and others where it is being used for the subject in sentences having a subject only and no objects, while in sentences with a subject and a direct object it is being used for the direct object but not the subject."], "absolutive": ["A grammatical case being used in several languages such as Basque, Georgian, Sumerian, Chechen, and others where it is being used for the subject in sentences having a subject only and no objects, while in sentences with a subject and a direct object it is being used for the direct object but not the subject."], "coywolf": ["A hybrid between a coyote (Canis latrans) and the gray wolf (Canis lupus)."], "carrion": ["The dead body of an animal that is in a more or less advanced stage of decomposition."], "ergative case": ["A grammatical case existing in several languages among which there are Basque, Georgian, Sumerian, Greenlandic, and Chechen, where it is used for the subjects of sentences having a subject and a direct object."], "ergative": ["A grammatical case existing in several languages among which there are Basque, Georgian, Sumerian, Greenlandic, and Chechen, where it is used for the subjects of sentences having a subject and a direct object."], "polygamy": ["A form of marriage in which a person has several spouse at the same time."], "monogamy": ["A form of marriage in which a person has only one spouse at a time."], "blood platelet": ["A type of blood cell that helps prevent bleeding by causing blood clots to form."], "spousal": ["Of, or relating to marriage, or the relationship of spouses."], "marital": ["Of, or relating to marriage, or the relationship of spouses."], "matrimonial": ["Of, or relating to marriage, or the relationship of spouses."], "postmarital": ["Occuring or existing after marriage."], "postmaritally": ["After marriage."], "premaritally": ["Before marriage."], "spousal support": ["Financial support provided after a separation or divorce by the financial stronger partner to the ex-partner."], "Albertan": ["A person from or living in Alberta, Canada."], "climate skeptic": ["A person that thinks there is no global warming, or that it is not caused by human activities."], "aspect": ["One among many similar or related, yet still distinct features or elements.", "A grammatical quality of a verb which determines the relationship of the speaker to the temporal flow of the event the verb describes; whether the speaker views the event from outside as a whole, or from within as it is unfolding."], "grammatical aspect": ["A grammatical quality of a verb which determines the relationship of the speaker to the temporal flow of the event the verb describes; whether the speaker views the event from outside as a whole, or from within as it is unfolding."], "have a bone to pick": ["Being angry with a person and being ready for a confrontation."], "have a crow to pick": ["Being angry with a person and being ready for a confrontation."], "invalidate": ["To make something legally invalid or void."], "cross out": ["To draw a line or something else through something."], "strike out": ["To draw a line or something else through something."], "syncretism": ["The fusion of different cultures or beliefs."], "syncretic": ["Resulting from the fusion of different cultures or beliefs."], "syncretistic": ["Resulting from the fusion of different cultures or beliefs."], "glory": ["Very large and very remarkable positive fame."], "Siberian tiger": ["Largest subspecies of tiger (Panthera tigris)."], "Amur tiger": ["Largest subspecies of tiger (Panthera tigris)."], "Altaic tiger": ["Largest subspecies of tiger (Panthera tigris)."], "Korean tiger": ["Largest subspecies of tiger (Panthera tigris)."], "Ussuri tiger": ["Largest subspecies of tiger (Panthera tigris)."], "North China tiger": ["Largest subspecies of tiger (Panthera tigris)."], "Manchurian tiger": ["Largest subspecies of tiger (Panthera tigris)."], "alexithymia": ["The inability to perceive or understand emotion."], "narrow-headed ant": ["Big, brown to black coloured ant found throughout Western Europe and Asia (Formica exsecta)"], "excised wood ant": ["Big, brown to black coloured ant found throughout Western Europe and Asia (Formica exsecta)"], "accidentology": ["The scientific study of accidents, in particular their causes and consequences."], "unarmed": ["Not carrying weapons."], "budgie": ["The only species in the Australian genus Melopsittacus (Melopsittacus undulatus), prized as a household pet."], "unfriendliness": ["The state of being unfriendly."], "lead acetate": ["Lead(II) salt of acetic acid; a white crystalline substance with a sweetish taste."], "lead diacetate": ["Lead(II) salt of acetic acid; a white crystalline substance with a sweetish taste."], "plumbous acetate": ["Lead(II) salt of acetic acid; a white crystalline substance with a sweetish taste."], "sugar of lead": ["Lead(II) salt of acetic acid; a white crystalline substance with a sweetish taste."], "lead sugar": ["Lead(II) salt of acetic acid; a white crystalline substance with a sweetish taste."], "German turnip": ["Cultivar of cabbage (Brassica oleracea var. Gongylodes) that is grown for its swollen, edible stem rather than its leaves."], "Pakistani": ["A citizen of or person from Pakistan.", "From or relating to Pakistan."], "colorectal cancer": ["Cancer that develops in the tissues of the colon."], "large bowel cancer": ["Cancer that develops in the tissues of the colon."], "mammographic": ["Relating to mammography."], "mammographically": ["In a mammographic manner, or using a mammograph."], "mammograph": ["A device designed to produce X-ray pictures of the breasts."], "mammogram": ["A X-ray picture of the breasts."], "common water strider": ["(Gerris Lacustris) A insect of the family Gerridae."], "common pond skater": ["(Gerris Lacustris) A insect of the family Gerridae."], "galliforms": ["The order of birds that includes grouse, ptarmigan, capercaillie, partridges, pheasants, quails, turkeys and peacocks. These are mainly grain-eating, heavy-bodied, ground-nesting birds, capable of only short, rapid flights. The cocks are usually more colourful than the hens."], "gallinaceous birds": ["The order of birds that includes grouse, ptarmigan, capercaillie, partridges, pheasants, quails, turkeys and peacocks. These are mainly grain-eating, heavy-bodied, ground-nesting birds, capable of only short, rapid flights. The cocks are usually more colourful than the hens."], "gamebirds": ["The order of birds that includes grouse, ptarmigan, capercaillie, partridges, pheasants, quails, turkeys and peacocks. These are mainly grain-eating, heavy-bodied, ground-nesting birds, capable of only short, rapid flights. The cocks are usually more colourful than the hens."], "gamefowl": ["The order of birds that includes grouse, ptarmigan, capercaillie, partridges, pheasants, quails, turkeys and peacocks. These are mainly grain-eating, heavy-bodied, ground-nesting birds, capable of only short, rapid flights. The cocks are usually more colourful than the hens."], "landfowl": ["The order of birds that includes grouse, ptarmigan, capercaillie, partridges, pheasants, quails, turkeys and peacocks. These are mainly grain-eating, heavy-bodied, ground-nesting birds, capable of only short, rapid flights. The cocks are usually more colourful than the hens."], "with\u2026 being responsible for": ["Having, as for me/you/him/us\u2026, the task of"], "it's\u2026's job to": ["Having, as for me/you/him/us\u2026, the task of"], "monitor lizards": ["(Varanidae) A family of lizards which includes the largest living lizard, the Komodo Dragon."], "perpetually": ["At all times."], "continually": ["At all times."], "graminaceous plants": ["A very large family (Poaceae) of plants including cereals such as wheat, maize, etc."], "canids": ["Carnivorous mammal in the superfamily Canoidea, including dogs and their allies.\\n(Source: MGH)"], "Common Cuckoo": ["A common European bird, Cuculus canorus, of the family Cuculidae, noted for its characteristic call and its brood parasitism."], "sea stars": ["(Asteroidea) Animals belonging to the echinoderms characterized by five arms extending from a central disk."], "ursids": ["A family of mammals in the order Carnivora including the bears and their allies."], "felids": ["(Felidae) Predatory mammals, including cats, lions, leopards, tigers, jaguars, and cheetahs, typically having a round head and retractile claws."], "CAPTCHA": ["(Completely Automated Public Turing Test to tell Computers and Humans Apart) A challenge-response test designed to filter out automated Web site requests."], "injection attack": ["A technique that allows arbitrary data or code to be inserted into a server or application. The most common types of injection attacks are SQL injection and code injection."], "intrusion detection system": ["A software- or hardware-based solution that detects and logs inappropriate, incorrect, or anomalous activity."], "ping flood": ["A very large number of ping requests sent in a short amount of time, intended to overwhelm the network or server."], "POSIX": ["A set of operating system interface standards based on UNIX."], "rootkit": ["A program designed to take full control of a server."], "Unicode": ["A 16-bit character set capable of encoding all known characters and used as a worldwide character-encoding standard."], "UTF-8": ["An encoding form of Unicode that supports ASCII for backward compatibility and covers the characters for most languages in the world."], "white-box testing": ["A method of testing software that tests internal structures or workings of an application as opposed to its functionality (black-box testing)."], "clear box testing": ["A method of testing software that tests internal structures or workings of an application as opposed to its functionality (black-box testing)."], "glass box testing": ["A method of testing software that tests internal structures or workings of an application as opposed to its functionality (black-box testing)."], "transparent box testing": ["A method of testing software that tests internal structures or workings of an application as opposed to its functionality (black-box testing)."], "structural testing": ["A method of testing software that tests internal structures or workings of an application as opposed to its functionality (black-box testing)."], "pruebas estructurales": ["A method of testing software that tests internal structures or workings of an application as opposed to its functionality (black-box testing)."], "SHA-2": ["A set of cryptographic hash functions (SHA-224, SHA-256, SHA-384, SHA-512) designed by the National Security Agency (NSA) and published in 2001 by the NIST as a U.S. Federal Information Processing Standard."], "Raga": ["A language of Vanuatu."], "Greek, Ancient (Egypt)": ["A dialect of Ancient Greek spoken in Egypt."], "decuple": ["To multiply by ten."], "Hermes": ["The messenger of the Gods in Greek mythology."], "godparent": ["A person present at the christening of a baby who promises to help raise the child in the Christian tradition."], "Common carp": ["A tall freshwater fish from the species Cyprinus carpio with a high back, original from Asia."], "remainder": ["In mathematics, the result of the \"remainder\" operation."], "verrucous": ["Covered with warts."], "warty": ["Covered with warts."], "verrucose": ["Covered with warts."], "pessimum": ["Least favourable condition or lowest degree or amount possible under given circumstances."], "network topology": ["The layout pattern of interconnections of the various elements (links, nodes, etc.) of a computer network."], "wireless network": ["Any type of computer network that is wireless, and is commonly associated with a telecommunications network whose interconnections between nodes are implemented without the use of wires."], "metropolitan area network": ["A large computer network that usually spans a city or a large campus."], "MAN": ["A large computer network that usually spans a city or a large campus."], "virtual private network": ["A computer network that uses a public telecommunication infrastructure such as the Internet to provide remote offices or individual users with secure access to their organization's network."], "Internet Protocol": ["The principal communications protocol used for relaying datagrams (packets) across an internetwork using the Internet Protocol Suite."], "IP": ["The principal communications protocol used for relaying datagrams (packets) across an internetwork using the Internet Protocol Suite.", "A product of the mind that has commercial value, for example literary or artistic works."], "ear mange": ["Infestation of the auricle and external auditory canal with some mites of the genus Psoroptes, Otodectes and Chorioptes"], "twisted pair cabling": ["A type of wiring in which two conductors (the forward and return conductors of a single circuit) are twisted together for the purposes of canceling out electromagnetic interference (EMI) from external sources."], "TCP": ["One of the core protocols of the Internet Protocol Suite; it provides the service of exchanging data directly between two network hosts."], "Transmission Control Protocol": ["One of the core protocols of the Internet Protocol Suite; it provides the service of exchanging data directly between two network hosts."], "UDP": ["One of the core members of the Internet Protocol Suite, used to send messages, in this case referred to as datagrams, to other hosts on an Internet Protocol (IP) network without requiring prior communications to set up special transmission channels or data paths."], "User Datagram Protocol": ["One of the core members of the Internet Protocol Suite, used to send messages, in this case referred to as datagrams, to other hosts on an Internet Protocol (IP) network without requiring prior communications to set up special transmission channels or data paths."], "DSL": ["A family of technologies that provides digital data transmission over the wires of a local telephone network."], "Digital Subscriber Line": ["A family of technologies that provides digital data transmission over the wires of a local telephone network."], "FDDI": ["A 100 Mbit/s optical standard for data transmission in a local area network that can extend in range up to 200 kilometers (124 miles)."], "Fiber Distributed Data Interface": ["A 100 Mbit/s optical standard for data transmission in a local area network that can extend in range up to 200 kilometers (124 miles)."], "PPP": ["A data link protocol commonly used in establishing a direct connection between two networking nodes."], "Point-to-Point Protocol": ["A data link protocol commonly used in establishing a direct connection between two networking nodes."], "SLIP": ["An encapsulation of the Internet Protocol designed to work over serial ports and modem connections."], "Serial Line Internet Protocol": ["An encapsulation of the Internet Protocol designed to work over serial ports and modem connections."], "datagram": ["A basic transfer unit associated with a packet-switched network in which the delivery, arrival time and order are not guaranteed."], "SSH": ["A network protocol that allows data to be exchanged using a secure channel between two networked devices."], "Secure Shell": ["A network protocol that allows data to be exchanged using a secure channel between two networked devices."], "Telnet": ["A network protocol used on the Internet or local area networks to provide a bidirectional interactive text-oriented communications facility using a virtual terminal connection."], "TSL": ["A cryptographic protocol that provides communications security over the Internet."], "Transport Layer Security": ["A cryptographic protocol that provides communications security over the Internet.", "A general-purpose protocol for encrypting Web, e-mail, and other stream-oriented information sent over the Internet; described in RFCs 2246, 2712, 2817, and 2818."], "communications protocol": ["A formal description of digital message formats and the rules for exchanging those messages in or between computing systems and in telecommunications."], "deworm": ["To rid of intestinal worms."], "deworming": ["The removal of intestinal worms."], "worming": ["The removal of intestinal worms."], "drenching": ["The removal of intestinal worms."], "anthelmintic": ["A drug that that expels parasitic worms from the body."], "comfort food": ["Food that is consumed in order to feel better or to fight negative feelings."], "insects": ["A class of the Arthropoda typically having a segmented body with an external chitinous covering, a pair of compound eyes, a pair of antennae, three pairs of mouthparts, and two pairs of wings."], "hub": ["A device for connecting multiple twisted pair or fibre optic Ethernet devices together and making them act as a single network segment.", "The central part of a wheel to which the spokes attach, and which rotates on (or with) the axle."], "Ethernet hub": ["A device for connecting multiple twisted pair or fibre optic Ethernet devices together and making them act as a single network segment."], "repeater hub": ["A device for connecting multiple twisted pair or fibre optic Ethernet devices together and making them act as a single network segment."], "active hub": ["A device for connecting multiple twisted pair or fibre optic Ethernet devices together and making them act as a single network segment."], "network hub": ["A device for connecting multiple twisted pair or fibre optic Ethernet devices together and making them act as a single network segment."], "network switch": ["A computer networking device that connects network segments."], "switching hub": ["A computer networking device that connects network segments."], "Frame Relay": ["A standardized WAN technology that specifies the physical and logical link layers of digital telecommunications channels using a packet switching methodology."], "WLAN": ["A network that links two or more devices using some wireless distribution method (typically spread-spectrum or OFDM radio), and usually providing a connection through an access point to the wider internet."], "wireless local area network": ["A network that links two or more devices using some wireless distribution method (typically spread-spectrum or OFDM radio), and usually providing a connection through an access point to the wider internet."], "third normal form": ["A normal form used in database normalization."], "neighbourhood": ["The open set containing given point."], "earwigs": ["Any of various insects of the order Dermaptera."], "thoracotomy": ["The chirurgical opening of the thorax."], "cache memory": ["A fast temporary storage where most recent or most frequent values are stored to avoid having to reload from a slower storage medium."], "pincers": ["Pliers made of steel for removing nails from wood."], "pair of pincers": ["Pliers made of steel for removing nails from wood."], "sponges": ["A phylum of the animal kingdom characterized by the presence of canal systems and chambers through which water is drawn in and released; tissues and organs are absent."], "Observer Pattern": ["A design pattern that defines a one-to-many dependency between objects so that when one object changes state, all of its dependents are notified and updated automatically."], "Decorator Pattern": ["A design pattern that attaches additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality."], "Centum language": ["Indoeuropean language where palatovelars were merged into velars."], "Satem language": ["Indoeuropean language where the palatovelars became sibilants."], "Factory Method Pattern": ["A design pattern that defines an interface for creating an object, but lets subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses."], "Singleton Pattern": ["A design pattern that ensures a class has only one instance, and provides a global point of access to it."], "Command Pattern": ["A design pattern that encapsulates a request as an object, thereby letting you parameterize other objects with different requests, queue or log requests, and support undoable operations."], "Adapter Pattern": ["A design pattern that converts the interface of a class into another interface the clients expect. Adapter lets classes work together that couldn\u2019t otherwise because of incompatible interfaces."], "Facade Pattern": ["A design pattern that provides a unified interface to a set of interfaces in a subsytem. Facade defines a higher-level interface that makes the subsystem easier to use."], "common warthog": ["African suid (Phacochoerus africanus) having two tusks."], "freebirth": ["A birth without the aid of medical or professional birth attendants."], "DIY birth": ["A birth without the aid of medical or professional birth attendants."], "unhindered birth": ["A birth without the aid of medical or professional birth attendants."], "unassisted home birth": ["A birth without the aid of medical or professional birth attendants."], "couples birth": ["A birth without the aid of medical or professional birth attendants."], "suffragette": ["A female representative of the civil movement for the rights, especially the right to vote, of the woman in England and America at the beginning of the 20th century."], "Template Method Pattern": ["A design pattern that defines the skeleton of an algorithm in a method, deferring some steps to subclasses. Template Method lets subclasses redefine certain steps of an algorithm without changing the algorithm\u2019s structure."], "Iterator Pattern": ["A design pattern that provides a way to access the elements of an aggregate object sequentially without exposing its underlying representation."], "she-wolf": ["A female wolf."], "Composite Pattern": ["A design pattern allows the designer to compose objects into tree structures to represent part-whole hierarchies. Composite lets clients treat individual objects and compositions of objects uniformly."], "she-bear": ["A female bear."], "State Pattern": ["A design pattern that allows an object to alter its behavior when its internal state changes. The object will appear to change its class."], "sibilant": ["A sound characterized by a hissing quality.", "Characterized by a hissing sound."], "sibilant consonant": ["A sound characterized by a hissing quality."], "holocaust": ["A sacrifice to a god where the offering is completely burned to ashes."], "burnt sacrifice": ["A sacrifice to a god where the offering is completely burned to ashes."], "put on a brave face": ["To not let oneself get discouraged by some difficulties or failures."], "take up arms against a sea of sorrows": ["To not let oneself get discouraged by some difficulties or failures."], "grin and bear it": ["To not let oneself get discouraged by some difficulties or failures."], "put a good face on the matter": ["To not let oneself get discouraged by some difficulties or failures."], "put a good face on things": ["To not let oneself get discouraged by some difficulties or failures."], "put up a brave front": ["To not let oneself get discouraged by some difficulties or failures."], "candle wick": ["A string that holds the flame of a candle."], "wick": ["A string that holds the flame of a candle."], "zodiac sign": ["One of 12 equal areas into which the zodiac is divided."], "WAP": ["A protocol suite allowing the interoperability of mobile equipments and software with many different network technologies."], "Wireless Application Protocol": ["A protocol suite allowing the interoperability of mobile equipments and software with many different network technologies."], "WDP": ["A protocol that defines the movement of information from receiver to the sender and resembles the User Datagram Protocol (UDP) in the Internet protocol suite."], "Wireless Datagram Protocol": ["A protocol that defines the movement of information from receiver to the sender and resembles the User Datagram Protocol (UDP) in the Internet protocol suite."], "unbutton": ["To open something by undoing its buttons."], "scarred": ["Full of scars."], "coeval": ["Having the same age."], "sleeper": ["Someone who is sleeping.", "A railroad passenger car that has beds where passengers can sleep."], "WTLS": ["A security protocol, part of the Wireless Application Protocol (WAP) stack."], "sextuple": ["To make six times as great.", "To become six times as great."], "adultescent": ["An adult who still behaves like an adolescent."], "adulescent": ["An adult who still behaves like an adolescent."], "xenoglossy": ["A paranormal phenomenon in which a person is able to speak or write a language that is normally unknown to him or her."], "xenoglossia": ["A paranormal phenomenon in which a person is able to speak or write a language that is normally unknown to him or her."], "Buruli ulcer": ["An infectious disease caused by Mycobacterium ulcerans characterized by necrotising lesions developing in the skin."], "Bairnsdale ulcer": ["An infectious disease caused by Mycobacterium ulcerans characterized by necrotising lesions developing in the skin."], "Searl ulcer": ["An infectious disease caused by Mycobacterium ulcerans characterized by necrotising lesions developing in the skin."], "Searle's ulcer": ["An infectious disease caused by Mycobacterium ulcerans characterized by necrotising lesions developing in the skin."], "goniometrical": ["Relating to the measurement of angles."], "xylotheque": ["Collection of wood samples and objects made of wood."], "yellow fever": ["An acute viral hemorrhagic disease transmitted by mosquitoes."], "black vomit": ["An acute viral hemorrhagic disease transmitted by mosquitoes."], "yellow jack": ["An acute viral hemorrhagic disease transmitted by mosquitoes."], "amarillic typhus": ["An acute viral hemorrhagic disease transmitted by mosquitoes."], "Japanese encephalitis": ["A disease caused by the Japanese encephalitis virus transmitted by mosquitoes."], "chikungunya": ["An illness with symptoms similar to dengue fever transmitted by the Aedes mosquitoes."], "West Nile virus": ["A virus of the family Flaviviridae found in both tropical and temperate regions and transmitted mainly by mosquitoes."], "purple pitcher plant": ["A carnivorous plant in the family Sarraceniaceae having a purple color."], "side-saddle flower": ["A carnivorous plant in the family Sarraceniaceae having a purple color."], "rolling metal door": ["Shutter of a building or room entrance, made of articulated horizontal lathes of chemically pure metal, metal compound or alloy, usually steel or aluminium based, retracting by rotation into a cylinder placed above the entrance to open it, and developing from the top downwards into a plane to close it."], "blood sugar": ["Glucose that is present in the blood of a human or animal.", "The amount of glucose present in the blood of a human or animal."], "blood glucose level": ["The amount of glucose present in the blood of a human or animal."], "blood sugar concentration": ["The amount of glucose present in the blood of a human or animal."], "level of blood sugar": ["The amount of glucose present in the blood of a human or animal."], "blood glucose": ["Glucose that is present in the blood of a human or animal."], "hyperglycemia": ["A condition in which the blood sugar level is excessively high."], "high blood sugar": ["A condition in which the blood sugar level is excessively high."], "hypoglycemia": ["A condition in which the blood sugar level is excessively low."], "hyperglycaemia": ["A condition in which the blood sugar level is excessively high."], "hypoglyc\u00e6mia": ["A condition in which the blood sugar level is excessively low."], "answer in the affirmative": ["To answer a question with yes."], "answer in the negative": ["To answer a question with no."], "African elephant": ["An elephant of the genus Loxodonta native of Africa."], "African bush elephant": ["An elephant of the species Loxodonta africana, the larger of the two species of African elephants."], "bush elephant": ["An elephant of the species Loxodonta africana, the larger of the two species of African elephants."], "African forest elephant": ["An elephant of the species Loxodonta cyclotis living in the forest of the Congo Basin."], "Asian elephant": ["An elephant of the species Elephas maximus native of Asia."], "Asiatic Elephant": ["An elephant of the species Elephas maximus native of Asia."], "inkscape": ["A vector graphics editor application, fully compliant with the XML, SVG, and CSS standards, distributed under a free software license, the GNU GPL."], "Inkscape": ["A vector graphics editor application, fully compliant with the XML, SVG, and CSS standards, distributed under a free software license, the GNU GPL."], "glycol": ["A chemical compound containing two hydroxyl groups."], "diol": ["A chemical compound containing two hydroxyl groups."], "geminal diol": ["A diol having two hydroxyl groups bonded to the same atom."], "gem-diol": ["A diol having two hydroxyl groups bonded to the same atom."], "vicinal diol": ["A diol with two hydroxyl groups in vicinal positions."], "network socket": ["An endpoint of a bidirectional inter-process communication flow across an Internet Protocol-based computer network, such as the Internet."], "Wireless Transport Layer Security": ["A security protocol, part of the Wireless Application Protocol (WAP) stack."], "kidult": ["An adult who still behaves like an adolescent."], "nightly": ["Occurring every night.", "Every night."], "Wireshark": ["A free and open-source network packet analyzer, used for network troubleshooting, analysis, software and communications protocol development, and education."], "ACL": ["A method of keeping in check the Internet traffic that attempts to flow through a given hub, router, firewall, or similar device."], "ARP": ["A computer networking protocol for determining a network host's Link Layer or hardware address when only its Internet Layer (IP) or Network Layer address is known."], "Address Resolution Protocol": ["A computer networking protocol for determining a network host's Link Layer or hardware address when only its Internet Layer (IP) or Network Layer address is known."], "asymmetric keys": ["A pair of encryption keys, composed of one public key and one private key. Each key is one way, meaning that a key used to encrypt data cannot be used to decrypt the same data. However, information encrypted using the public key can be decrypted using the private key, and vice versa."], "backdoor": ["A design fault, planned or accidental, that allows the apparent strength of the design to be easily avoided by those who know the trick.", "A door in the rear of a building."], "botnet": ["A collection of computers that are infected with small bits of code (bots) that allow a remote computer to control some or all of the functions of the infected machines."], "bus topology": ["A network architecture in which a set of clients are connected via a shared communications line, called a bus."], "certificate authority": ["A trusted third party who verifies the identity of a person or entity, then issues digital certificates vouching that various attributes (e. g., name, a given public key) have a valid association with that entity."], "cookie": ["A text file passed from the Web server to the Web client (a user's browser) that is used to identify a user and could record personal information such as ID and password, mailing address, credit card number, and more. A cookie is what enables your favorite Web site to \"recognize\" you each time you visit."], "web cookie": ["A text file passed from the Web server to the Web client (a user's browser) that is used to identify a user and could record personal information such as ID and password, mailing address, credit card number, and more. A cookie is what enables your favorite Web site to \"recognize\" you each time you visit."], "browser cookie": ["A text file passed from the Web server to the Web client (a user's browser) that is used to identify a user and could record personal information such as ID and password, mailing address, credit card number, and more. A cookie is what enables your favorite Web site to \"recognize\" you each time you visit."], "HTTP cookie": ["A text file passed from the Web server to the Web client (a user's browser) that is used to identify a user and could record personal information such as ID and password, mailing address, credit card number, and more. A cookie is what enables your favorite Web site to \"recognize\" you each time you visit."], "DES": ["A commonly-used encryption algorithm that encrypts data using a key of 56 bits, which is considered fairly weak given the speed and power of modern computers."], "Data Encryption Standard": ["A commonly-used encryption algorithm that encrypts data using a key of 56 bits, which is considered fairly weak given the speed and power of modern computers."], "dictionary attack": ["An attempt to guess a password by systematically trying every word in a dictionary as the password. This attack is usually automated, using a dictionary of the hacker's choosing, which may include both ordinary words and jargon, names, and slang."], "Diffie-Hellman": ["A mathematical algorithm that allows two users to exchange a secret key over an insecure medium without any prior secrets. This protocol, named after the inventors who first published it in 1976, is used in Virtual Private Networking (VPN)."], "digital signature": ["An electronic identification of a person or thing, intended to verify to a recipient the integrity of data sent to them, and the identity of the sender."], "DNS": ["A network system of servers that translates numeric IP addresses into readable, hierarchical Internet addresses, and vice versa."], "Domain Name System": ["A network system of servers that translates numeric IP addresses into readable, hierarchical Internet addresses, and vice versa."], "DNS cache poisoning": ["A clever technique that tricks a DNS server into believing it has received authentic information when, in reality, it has been lied to, so that the DNS server will give out incorrect answers that provide IP addresses of the attacker's choice, instead of the real addresses."], "DNS spoofing": ["An attack technique where a hacker intercepts a system's requests to a DNS server in order to issue false responses as though they came from the real DNS server."], "NAT": ["The process of modifying network address information in datagram (IP) packet headers while in transit across a traffic routing device for the purpose of remapping one IP address space into another."], "network address translation": ["The process of modifying network address information in datagram (IP) packet headers while in transit across a traffic routing device for the purpose of remapping one IP address space into another."], "letter bomb": ["An letter sent via the postal service, and designed to explode when opened."], "parcel bomb": ["An parcel sent via the postal service, and designed to explode when opened."], "mail bomb": ["An letter sent via the postal service, and designed to explode when opened."], "post bomb": ["An parcel sent via the postal service, and designed to explode when opened."], "W3C": ["An international industry consortium founded in 1994 to develop common protocols for the evolution of the World Wide Web. W3C has around 450 member organizations from around the world."], "World Wide Web Consortium": ["An international industry consortium founded in 1994 to develop common protocols for the evolution of the World Wide Web. W3C has around 450 member organizations from around the world."], "francophile": ["Having a special fondness for France, the French and French culture.", "A person having a special fondness for France, the French and French culture."], "Francophilia": ["The love of France, the French and French culture."], "francophilia": ["The love of France, the French and French culture."], "gallophilia": ["The love of France, the French and French culture."], "basilica": ["In the Roman architecture a rectangular building, divided into aisles by rows of columns, intended for public functions (trade, administration of justice etc.); also used for meetings of the early Christian communities", "Church of considerable importance."], "baptistery": ["Building adjacent to a church or in the church itself, for the baptism of catechumens."], "spire": ["Architectural element in the shape of a pyramid or cone crowning a structure (door, front, ground, etc.), much used in Gothic architecture."], "buttress": ["Architectural element that reinforces structure, absorbing the forces discharged on it."], "shoehorn": ["A tool designed to help inserting the heel of the foot into a shoe."], "shoespoon": ["A tool designed to help inserting the heel of the foot into a shoe."], "terminus": ["The end point of a transportation line."], "gf": ["Female person with whom someone has a relationship."], "third rail": ["A conductor that runs along railway tracks and provides trains with electrical power."], "WINS": ["A system that provides name resolution for computers running Windows NT, Windows 98, and earlier versions of Microsoft operating systems."], "Windows Internet Name Service": ["A system that provides name resolution for computers running Windows NT, Windows 98, and earlier versions of Microsoft operating systems."], "WEP": ["The security aspects of 802.11b, a standard that enables wireless devices such as PDAs and laptop computers to access a network via radio frequencies instead of physical wiring."], "Wired Equivalent Privacy": ["The security aspects of 802.11b, a standard that enables wireless devices such as PDAs and laptop computers to access a network via radio frequencies instead of physical wiring."], "IP tunnel": ["An Internet Protocol (IP) network communications channel between two networks. It is used to transport another network protocol by encapsulation and often encryption of its packets."], "Triple-DES": ["A cryptographic algorithm using three keys by applying the DES algorithm three times on the data to be encrypted, using a different key each time."], "3DES": ["A cryptographic algorithm using three keys by applying the DES algorithm three times on the data to be encrypted, using a different key each time."], "TLS": ["A general-purpose protocol for encrypting Web, e-mail, and other stream-oriented information sent over the Internet; described in RFCs 2246, 2712, 2817, and 2818."], "session hijacking": ["An intrusion technique whereby an attacker sends a command to an already existing connection between two machines, in order to wrest control of the connection away from the machine that initiated it with the goal of gaining access to a server while bypassing normal authentication measures."], "TCP session hijacking": ["An intrusion technique whereby an attacker sends a command to an already existing connection between two machines, in order to wrest control of the connection away from the machine that initiated it with the goal of gaining access to a server while bypassing normal authentication measures."], "session stealing": ["An intrusion technique whereby an attacker sends a command to an already existing connection between two machines, in order to wrest control of the connection away from the machine that initiated it with the goal of gaining access to a server while bypassing normal authentication measures."], "TCP/IP": ["The set of communications protocols used for the Internet and other similar networks."], "Internet Protocol Suite": ["The set of communications protocols used for the Internet and other similar networks."], "network's architecture": ["The layout pattern of interconnections of the various elements (links, nodes, etc.) of a computer network."], "network's topology": ["The layout pattern of interconnections of the various elements (links, nodes, etc.) of a computer network."], "star topology": ["A networking setup used with 10Base-T Ethernet cabling and a hub. Each node on the network is connected to the hub, like points of a star."], "baker's yeast": ["A yeast used as a leavening agent in baking bread and bakery products, often but not always of the species Saccharomyces cerevisiae."], "gnawer": ["Any of the relatively small placental mammals that constitute the order Rodentia, having constantly growing incisor teeth specialized for gnawing."], "fireworks": ["An event or a display where fireworks are set off."], "car sharing": ["A model of car rental where people rent cars for short periods of time, often by the hour."], "carsharing": ["A model of car rental where people rent cars for short periods of time, often by the hour."], "car-club": ["A model of car rental where people rent cars for short periods of time, often by the hour."], "ride sharing": ["A model of car rental where people rent cars for short periods of time, often by the hour."], "bumper car": ["A small electric car designed to bump into other similar cars, often displayed at a funfair."], "dodgem car": ["A small electric car designed to bump into other similar cars, often displayed at a funfair."], "dodgem": ["A small electric car designed to bump into other similar cars, often displayed at a funfair."], "beet sugar": ["Sugar obtained from sugar beet."], "amusia": ["The inability to recognize or produce rhythms and melodies despite functioning sensory organs."], "Numidia": ["Ancient Berber kingdom in present-day Algeria and part of Tunisia."], "Numidians": ["Semi-nomadic Berber tribes who lived in ancient Numidia."], "epizootic": ["A sudden increase in the incidence rate of a disease to a value above normal, affecting large numbers of animals of a given species."], "trojan": ["A malware that appears to perform a desirable function for the user prior to run or install but instead facilitates unauthorized access of the user's computer system."], "antivirus": ["A software used to prevent, detect, and remove computer viruses, worms, and trojan horses."], "antivirus software": ["A software used to prevent, detect, and remove computer viruses, worms, and trojan horses."], "duplex": ["A system composed of two connected parties or devices that can communicate with one another in both directions."], "half duplex": ["A duplex system that provides for communication in both directions, but only one direction at a time (not simultaneously)."], "full-duplex": ["A duplex system that provides for communication in both directions simultaneously."], "bioclimatic": ["Of or relating to the relation between climat and living organisms."], "bioclimatically": ["According to bioclimatology."], "dung": ["Animal feces."], "solar eclipse": ["The full or partial covering of the Sun as viewed from Earth when the Moon passes between the Sun and the Earth."], "lunar eclipse": ["The full or partial covering of the Moon as viewed from Earth when the Earth passes between the Sun and the Moon."], "have a mind like a sieve": ["To have difficulty remembering things."], "have a memory like a sieve": ["To have difficulty remembering things."], "chinoise": ["A type of colander, generally having a conical shape, with a very fine mesh, used in particular to filter sauces."], "chinois": ["A type of colander, generally having a conical shape, with a very fine mesh, used in particular to filter sauces."], "sauce": ["A liquid food accompanying a dish."], "plush": ["A textile made of wool or silk, similar to velvet, but with long nap or pile.", "Doll or toy coated with plush."], "rapeseed": ["A Eurasian cruciferous plant, Brassica napus, that is cultivated for its seeds, which yield a useful oil, and as a fodder plant."], "cranberry": ["An evergreen dwarf shrub or trailing vine in the genus Vaccinium, subgenus Oxycoccos.", "The edible berry of the cranberry plant, deep red when ripe."], "energivorous": ["Consuming a lot of electrical energy."], "program refinement": ["The verifiable transformation of an abstract (high-level) formal specification into a concrete (low-level) executable program."], "modularity": ["A continuum describing the degree to which a system\u2019s components may be separated and recombined."], "control hierarchy": ["A program structure that represents the organization of a program components and implies a hierarchy of control."], "ice cream bar": ["A frozen dessert placed on a stick."], "Scrum": ["An iterative, incremental methodology for project management often seen in agile software development, a type of software engineering."], "smoothie": ["A thick beverage obtained by mixing fresh fruits or vegetables."], "smoothy": ["A thick beverage obtained by mixing fresh fruits or vegetables."], "have nightmares": ["To dream of unpleasant events."], "e-passport": ["A combined paper and electronic identity document that uses biometrics to authenticate the citizenship of travelers."], "ePassport": ["A combined paper and electronic identity document that uses biometrics to authenticate the citizenship of travelers."], "historic": ["Related to history."], "Don River": ["One of the major rivers of Russia which rises in the town of Novomoskovsk southeast of Moscow, and flows for a distance of about 1,950 kilometres to the Sea of Azov."], "River Don": ["One of the major rivers of Russia which rises in the town of Novomoskovsk southeast of Moscow, and flows for a distance of about 1,950 kilometres to the Sea of Azov."], "D\u00f4n": ["A Welsh mother goddess."], "theonym": ["The name of a god."], "Seversky Donets": ["A river that originates in Central Russia and flows into the Don River."], "Dnieper River": ["A river which flows from Russia, through Belarus and Ukraine, ending its flow in the Black Sea."], "grammaticalization": ["A language change process by which words lose their lexical meaning and become grammatical words."], "grammaticalisation": ["A language change process by which words lose their lexical meaning and become grammatical words."], "grammatisation": ["A language change process by which words lose their lexical meaning and become grammatical words."], "grammaticisation": ["A language change process by which words lose their lexical meaning and become grammatical words."], "Nigerien": ["A person from Niger or of Nigerien descent.", "Of, from, or pertaining to Niger or the Nigerien people."], "cleaner": ["Someone who cleans private homes, offices or public buildings for payment."], "cleaning lady": ["A woman who cleans private homes, offices or public buildings for payment."], "charwoman": ["A woman who cleans private homes, offices or public buildings for payment."], "Lokaa": ["An Upper Cross River language of Nigeria."], "general anesthesia": ["The administration of a drug that induces a reversible loss of consciousness of a patient to facilitate surgery."], "general anaesthesia": ["The administration of a drug that induces a reversible loss of consciousness of a patient to facilitate surgery."], "general anaesthetic": ["A drug that induces a reversible loss of consciousness of a patient to facilitate surgery."], "general anesthetic": ["A drug that induces a reversible loss of consciousness of a patient to facilitate surgery."], "anaesthesiologist": ["A medical specialist who deals with anesthetizing patients for operations or for pain."], "anesthesist": ["A medical specialist who deals with anesthetizing patients for operations or for pain."], "anesthetize": ["To make someone unable to feel pain by giving an anaesthetic."], "anaesthetise": ["To make someone unable to feel pain by giving an anaesthetic."], "nudity": ["The state of wearing no clothing."], "nakedness": ["The state of wearing no clothing."], "cocaine-dependent": ["A person addicted to cocaine."], "morphine-dependent": ["A person addicted to morphine."], "diluvian": ["Pertaining or relating to a flood or deluge."], "diluvial": ["Pertaining or relating to a flood or deluge."], "baby boomer": ["A person born during a baby boom."], "babyboomer": ["A person born during a baby boom."], "Ask": ["The first man, according to Norse mythology."], "Embla": ["The first woman, according to Norse mythology."], "orbitography": ["The calculation of the orbital elements of natural or artificial satellites."], "orbit determination": ["The calculation of the orbital elements of natural or artificial satellites."], "eyelashes": ["The hairs that grow on the eyelid, considered as a whole."], "ears": ["The two ears of a human being considered as a whole."], "shoulders": ["The two shoulders of a human being considered as a whole."], "calves": ["The two calves of a human being considered as a whole."], "toes": ["The toes of a person considered as a whole."], "Oriental hornet": ["A hornet of the species Vespa orientalis, brown with one yellow stripe."], "casein": ["The main protein found in the milk of mammals."], "Ethiopian Sidamo": ["A type of Arabica coffee grown exclusively in the Sidamo Province of Ethiopia.."], "alphasyllabary": ["A writing system in which consonant signs (graphemes) are inherently associated with a following vowel."], "cognitive psychology": ["An approach to understanding psychology that emphasizes mental processes."], "tinnitus": ["The perception of sound within the human ear in the absence of corresponding external sound."], "little bronze cuckoo": ["A cuckoo of the species Chrysococcyx minutillus, measuring about 15 cm and living in subtropical or tropical moist lowland forests."], "clunker": ["An old decrepit automobile."], "rattletrap": ["An old decrepit automobile."], "rattle trap": ["An old decrepit automobile."], "rustbucket": ["An old decrepit automobile."], "rust-bucket": ["An old decrepit automobile."], "foreteller": ["A person who divines."], "fortune-teller": ["A person who gives predictions about the future of a person's life."], "seer": ["A person who divines."], "clairvoyant": ["A person who divines."], "beetroot": ["A deep red coloured variety of beet (Beta vulgaris subsp. vulgaris var. conditiva)."], "table beet": ["A deep red coloured variety of beet (Beta vulgaris subsp. vulgaris var. conditiva)."], "garden beet": ["A deep red coloured variety of beet (Beta vulgaris subsp. vulgaris var. conditiva)."], "red beet": ["A deep red coloured variety of beet (Beta vulgaris subsp. vulgaris var. conditiva)."], "beet": ["A deep red coloured variety of beet (Beta vulgaris subsp. vulgaris var. conditiva)."], "mental calculation": ["The solving of arithmetical problems without the help of pen and paper or calculators."], "prejudiced": ["Exhibiting prejudice or bias."], "hornet": ["The largest European wasp with black and yellow stripes on the abdomen."], "Manhattanite": ["Someone who lives in Manhattan.", "Of, or from, Manhattan."], "Bostonite": ["Someone who lives in or comes from Boston.", "Of, from, or pertaining to Boston."], "Bostonian": ["Someone who lives in or comes from Boston.", "Of, from, or pertaining to Boston."], "Manhattanese": ["Of, or from, Manhattan."], "Manhattan": ["One of the five boroughs of New York City."], "Queens": ["One of the five boroughs of New York City."], "Bronx": ["One of the five boroughs of New York City."], "Brooklyn": ["One of the five boroughs of New York City."], "Staten Island": ["One of the five boroughs of New York City."], "habitant": ["A human, officially being inhabitant of certain area inside well defined, and precise, borders - usually seen from a standpoint of census, government, register, etc."], "moke": ["An old or worthless horse."], "civilizational": ["Relating to civilization."], "civilisational": ["Relating to civilization."], "civilizationally": ["In a civilizational manner."], "civilisationally": ["In a civilizational manner."], "sequencing": ["The determination of the linear order of the components of a macromolecule."], "frutarianism": ["A diet that comprises fruits, nuts and seeds but no animal products and often no plants that are destroyed when harvested."], "fruitarianism": ["A diet that comprises fruits, nuts and seeds but no animal products and often no plants that are destroyed when harvested."], "fruitarian": ["Someone who eats only fruits, nuts and seeds, but no animal products and sometimes only plants which are not destroyed when harvested."], "fructarian": ["Someone who eats only fruits, nuts and seeds, but no animal products and sometimes only plants which are not destroyed when harvested."], "ergotism": ["Poisoning caused by the ingestion of ergot fungi which infect rye and other cereals."], "ergotoxicosis": ["Poisoning caused by the ingestion of ergot fungi which infect rye and other cereals."], "ergot poisoning": ["Poisoning caused by the ingestion of ergot fungi which infect rye and other cereals."], "Saint Anthony's Fire": ["Poisoning caused by the ingestion of ergot fungi which infect rye and other cereals."], "milligram": ["A unit of mass equal to one thousandth of a gram."], "decigram": ["A unit of mass equal to one tenth of a gram."], "centigram": ["A unit of mass equal to one hundredth of a gram."], "microgram": ["A unit of mass equal to one thousandth of a milligram."], "nanogram": ["A unit of mass equal to one thousandth of a microgram."], "picogram": ["A unit of mass equal to one thousandth of a nanogram."], "femtogram": ["A unit of mass equal to one thousandth of a picogram."], "attogram": ["A unit of mass equal to one thousandth of a femtogram."], "bog body": ["A naturally preserved human corpse found in the sphagnum bogs in Northern Europe."], "zeptogram": ["A unit of mass equal to one thousandth of an attogram."], "yoctogram": ["A unit of mass equal to one thousandth of a zeptogram."], "decagram": ["A unit of mass equal to ten grams."], "hectogram": ["A unit of mass equal to one hundred grams."], "myriagram": ["A unit of mass equal to ten kilograms."], "megagram": ["A metric unit of mass equal to 1000 kilograms."], "kilotonne": ["A unit of mass equal to one thousand megagrams."], "gigagram": ["A unit of mass equal to one thousand megagrams."], "kiloton": ["A unit of mass equal to one thousand megagrams."], "teragram": ["A unit of mass equal to one thousand gigagrams."], "petagram": ["A unit of mass equal to one thousand teragrams."], "exagram": ["A unit of mass equal to one thousand petagrams."], "zettagram": ["A unit of mass equal to one thousand exagrams."], "yottagram": ["A unit of mass equal to one thousand zettagrams."], "ectomy": ["The surgical removal of an organ or other anatomical structure."], "adenectomy": ["The surgical removal of a gland."], "adenoidectomy": ["The surgical removal of the adenoids."], "adrenalectomy": ["The surgical removal of an adrenal gland."], "appendisectomy": ["The surgical removal of the vermiform appendix."], "appendicectomy": ["The surgical removal of the vermiform appendix."], "bullectomy": ["The surgical removal of bullae from the lung."], "bunionectomy": ["The surgical removal of a bunion."], "bursectomy": ["The surgical removal of a bursa."], "cholecystectomy": ["The surgical removal of the gallbladder."], "cystectomy": ["The surgical removal of the urinary bladder."], "long-armed": ["Having long arms."], "short-armed": ["Having short arms."], "Northumbrian": ["A dialect of the Old English language spoken in the Anglian Kingdom of Northumbria."], "Mercian": ["A dialect of the Old English language spoken in the Anglo-Saxon kingdom of Mercia."], "Kentish": ["A dialect of the Old English language spoken in the Anglo-Saxon kingdom of Kent."], "West Saxon": ["A dialect of the Old English language spoken in Wessex."], "Himalaya": ["A mountain range in Asia, separating the Indian subcontinent from the Tibetan Plateau."], "green chemistry": ["A philosophy of chemical research and engineering that encourages the design of products and processes that minimize the use and generation of hazardous substances."], "sustainable chemistry": ["A philosophy of chemical research and engineering that encourages the design of products and processes that minimize the use and generation of hazardous substances."], "Belgian Malinois": ["A Belgian shepherd that can be easily trained for various tasks."], "cynophile": ["A person who loves dogs."], "cynophilia": ["A liking for dogs or other canines."], "cynophobia": ["The fear of dogs or other canines."], "cynophobe": ["A person who fears dogs or other canines."], "dog handler": ["A person expert in the training of dogs for performing special tasks."], "dog trainer": ["A person expert in the training of dogs for performing special tasks."], "Otwa": ["A language spoken in the Edo State, Owan, and Akoko-Edo areas of Nigeria and surrounding areas."], "Otuo": ["A language spoken in the Edo State, Owan, and Akoko-Edo areas of Nigeria and surrounding areas."], "electromagnetic hypersensitivity": ["A set of claims of adverse medical symptoms purportedly caused by exposure to electromagnetic fields."], "EHS": ["A set of claims of adverse medical symptoms purportedly caused by exposure to electromagnetic fields."], "electrohypersensitivity": ["A set of claims of adverse medical symptoms purportedly caused by exposure to electromagnetic fields."], "electrical sensitivity": ["A set of claims of adverse medical symptoms purportedly caused by exposure to electromagnetic fields."], "ES": ["A set of claims of adverse medical symptoms purportedly caused by exposure to electromagnetic fields."], "Nefertiti": ["The Great Royal Wife of the Egyptian Pharaoh Akhenaten, who lived in the 14th century BC."], "diamondiferous": ["Yielding diamond."], "carbon sink": ["A natural or artificial reservoir that absorbs carbon dioxide from the atmosphere."], "carbon dioxide sink": ["A natural or artificial reservoir that absorbs carbon dioxide from the atmosphere."], "Malaysian": ["From or relating to Malaysia.", "A citizen of Malaysia or someone who is originally from Malaysia."], "Malayan": ["From or relating to Malaysia.", "A citizen of Malaysia or someone who is originally from Malaysia."], "twitter": ["To post a message the microblogging website Twitter."], "tweet": ["To post a message the microblogging website Twitter."], "fly agaric": ["A poisonous and psychoactive fungus of the genus Amanita, whose cap is red with white spots."], "fly Amanita": ["A poisonous and psychoactive fungus of the genus Amanita, whose cap is red with white spots."], "psychoactive": ["Affecting the mind or mental processes."], "Proto-Germanic": ["Hypothetical prehistoric ancestor of all Germanic languages."], "psychotropic": ["Affecting the mind or mental processes."], "molluscicide": ["A substance having the property of killing molluscs."], "snail bait": ["A substance having the property of killing molluscs."], "snail pellet": ["A substance having the property of killing molluscs."], "Germanic": ["Hypothetical prehistoric ancestor of all Germanic languages."], "Common Germanic": ["Hypothetical prehistoric ancestor of all Germanic languages."], "sully": ["To make filthy."], "fifth toe": ["The smallest of the toes on the foot."], "little toe": ["The smallest of the toes on the foot."], "baby toe": ["The smallest of the toes on the foot."], "pinky toe": ["The smallest of the toes on the foot."], "emergency contraception": ["A birth control measure that, if used after sexual intercourse, may prevent pregnancy."], "postcoital contraception": ["A birth control measure that, if used after sexual intercourse, may prevent pregnancy."], "whistling swan": ["A swan of the species Cygnus columbianus that whistles when flying."], "artificial insemination": ["An insemination that is performed by using means other than sexual intercourse."], "AI": ["An insemination that is performed by using means other than sexual intercourse."], "insemination": ["The introduction of sperm into the female uterus of a mammal or the oviduct of an oviparous."], "systemic": ["Relating to a system."], "sympathetically": ["In a sympathetical manner."], "sympathectomy": ["The surgical cutting of a nerve in the sympathetic nervous system."], "sympathetic nervous system": ["A part of the autonomic nervous system responsible for accelerating the heart rate and raising the blood pressure under stress."], "ortho-sympathetic nervous system": ["A part of the autonomic nervous system responsible for accelerating the heart rate and raising the blood pressure under stress."], "sympathetic strike": ["A strike action performed by workers not because of grievances, but as a support for other workers who are on strike."], "sympathetic vibration": ["A vibration of an object that occurs as a response to neighboring object that is vibrating."], "baby elephant": ["A young elephant."], "elephant calf": ["A young elephant."], "troy ounce": ["A unit of weight used for precious metals and equivalent to 31.1034768 grams."], "uncircumcised": ["Not having had the foreskin of the penis cut out."], "cratered": ["Having many craters."], "crosstip screwdriver": ["A hand tool used for driving cross-head screws."], "launch pad": ["A structure for keeping a rocket or a spacecraft still for a few seconds after ignition."], "cross-tip screwdriver": ["A hand tool used for driving cross-head screws."], "North African": ["Relating to or originating from North Africa.", "A person originating from or inhabitant of North Africa."], "augmented reality": ["A view of a real-world environment containing additional computer-generated information such as sound or graphics."], "weave": ["To make, as fabric, by interlacing threads."], "discectomy": ["The surgical removal of herniated disc material that presses on a nerve root or the spinal cord."], "diverticulectomy": ["The surgical removal of a diverticulum."], "embolectomy": ["The surgical removal of an embolus."], "endarterectomy": ["The surgical removal of material that blocks an artery."], "esophagectomy": ["The surgical removal of all or part of the esophagus."], "oesophagectomy": ["The surgical removal of all or part of the esophagus."], "frenectomy": ["The surgical removal of a frenulum."], "frenulectomy": ["The surgical removal of a frenulum."], "frenotomy": ["The surgical removal of a frenulum."], "lingual frenectomy": ["The surgical removal of the lingual frenulum."], "labial frenectomy": ["The surgical removal of the labial frenulum."], "organic traffic": ["Web traffic which comes from unpaid listing at search engines or directories."], "web banner": ["A form of advertising on the World Wide Web which entails embedding an advertisement into a web page."], "banner ad": ["A form of advertising on the World Wide Web which entails embedding an advertisement into a web page."], "pay per click": ["An Internet advertising model used on websites, in which advertisers pay their host only when their ad is clicked."], "email advertising": ["A form of direct marketing which uses electronic mail as a means of communicating commercial or fund-raising messages to an audience."], "email marketing": ["A form of direct marketing which uses electronic mail as a means of communicating commercial or fund-raising messages to an audience."], "Croatian Written Latin Script": ["A written form of the Croatian language."], "Croatian Written": ["Written forms of the Croatian language."], "Croatian Spoken": ["Dialects of the Croatian language."], "anxiolytic": ["A drug used for the treatment of anxiety."], "antipanic": ["A drug used for the treatment of anxiety."], "antianxiety agent": ["A drug used for the treatment of anxiety."], "bipedalism": ["The capacity of moving by using only two rear limbs."], "label": ["A small ticket or sign giving information about something to which it is attached or intended to be attached.", "To put a label on something in order to provide additional information."], "plagiarism": ["The act of copying another person's ideas, text or other creative work, and presenting it as one's own.", "A text or other work resulting from the copying of another person's work."], "plagiarist": ["Someone who copies ideas or text from another person and presents them as their own."], "plagiarize": ["To copy someone else's work and pass it off as one's own."], "plagiarise": ["To copy someone else's work and pass it off as one's own."], "schadenfreude": ["Pleasure derived from the misfortunes of others."], "epicaricacy": ["Pleasure derived from the misfortunes of others."], "Apure River": ["A river of western Venezuela, formed by the confluence of the Sarare and Uribante near Guasdualito, in Venezuela."], "system development methodology": ["A framework that is a used to structure, plan, and control the process of developing information systems."], "mammalian": ["Any animal of the Mammalia class, a class of warm-blooded vertebrates having a thoracic diaphragm, a four-chambered heart and in which the females feed the young with their own milk.", "Relating or pertaining to mammals."], "vomeronasal organ": ["An auxiliary olfactory sense organ that is mainly used to detect pheromones."], "Jacobson's organ": ["An auxiliary olfactory sense organ that is mainly used to detect pheromones."], "VNO": ["An auxiliary olfactory sense organ that is mainly used to detect pheromones."], "Amaterasu": ["The most important goddess of the Japanese Shinto religion who is a personification of the sun and light."], "birth channel": ["The organs of the female reproductive system that a baby must pass during childbirth."], "kairos": ["The right or opportune moment."], "deuce": ["A playing card with two spots"], "vegan man": ["A man who rejects to use animals for any purpose such as for food, entertainment, clothes etc."], "vegan woman": ["A woman who rejects to use animals for any purpose such as for food, entertainment, clothes etc."], "Adempiere": ["An open source enterprise resource planning or ERP software including features of supply chain management (SCM), customer relationship management (CRM), financial performance analysis, material requirements planning and integrated point of sales (POS) and web store."], "Compiere": ["An open source enterprise resource planning or ERP and customer relationship management (CRM) software for the small and medium-sized enterprise (SME) in distribution, retail, service and manufacturing."], "material requirements planning": ["A production planning and inventory control system used to manage manufacturing processes."], "MRP": ["A production planning and inventory control system used to manage manufacturing processes."], "OpenERP": ["An open source comprehensive suite of business applications including sales, CRM, project management, warehouse management, manufacturing, accounting and human resources."], "OFBiz": ["An open source enterprise resource planning (ERP) system which provides a suite of enterprise applications that integrate and automate many of the business processes of an enterprise."], "Apache OFBiz": ["An open source enterprise resource planning (ERP) system which provides a suite of enterprise applications that integrate and automate many of the business processes of an enterprise."], "Apache Open for Business": ["An open source enterprise resource planning (ERP) system which provides a suite of enterprise applications that integrate and automate many of the business processes of an enterprise."], "Opentaps": ["A web based ERP and CRM for small to medium sized businesses based on Apache Open for Business."], "uninvite": ["To cancel an invitation to."], "disinvite": ["To cancel an invitation to."], "Nogay": ["A Turkic language spoken in southwestern Russia."], "Nogai Tatar": ["A Turkic language spoken in southwestern Russia."], "agreeable to God": ["Intended to please God."], "Image from Commons": ["A link to an image at the Commons repository."], "doctoral title": ["The academic title of a doctor."], "doctor's degree": ["One of the highest earned academic degrees conferred by a university."], "doctoral advisor": ["Someone who counsels a candidate for a doctorate degree who is writing a dissertation."], "dissertation advisor": ["Someone who counsels a candidate for a doctorate degree who is writing a dissertation."], "tomosynthesis": ["The generation of a tomogram by reconstructing a 3D model of an object from a set of 2D projection of that object under different angles."], "digital tomosynthesis": ["The generation of a tomogram by reconstructing a 3D model of an object from a set of 2D projection of that object under different angles."], "doctoral candidate": ["Someone who is writing a dissertation in order to obtain a doctoral degree."], "doctoral student": ["Someone who is writing a dissertation in order to obtain a doctoral degree."], "Ph.D. student": ["Someone who is writing a dissertation in order to obtain a doctoral degree."], "euergetism": ["The practice of notables to spend a part of their wealth for the good of the community."], "gumboots": ["Watertight boots made of rubber."], "rubber boots": ["Watertight boots made of rubber."], "wellingtons": ["Watertight boots made of rubber."], "wellington boots": ["Watertight boots made of rubber."], "wellies": ["Watertight boots made of rubber."], "state religion": ["A religion officially endorsed by a state."], "ghost town": ["A completely or almost completely abandoned town."], "ghostwriter": ["A person who is paid to write a text that is officially credited to another person."], "intellectual property": ["A product of the mind that has commercial value, for example literary or artistic works."], "Feuerzangenbowle": ["Alcoholic beverage consisting of heated red wine with cloves, cinnamon sticks, star anise, orange and lemon peel over which a rum-soaked sugar loaf is set on fire."], "ghost ship": ["A ship found adrift with its entire crew either missing or dead or a ship that appears out of nowhere."], "stellar nursery": ["A molecular cloud where new stars are formed."], "language family": ["A group of languages which have evolved from a common ancestor."], "European plaice": ["A flatfish of the species Pleuronectes platessa characterised by a darkgreen to darkbrown skin with orange spots on the upperside, and a light gray underside."], "day labourer": ["An unskilled worker paid by the day."], "day laborer": ["An unskilled worker paid by the day."], "day labor": ["A type of employment where the worker is hired and paid one day at a time."], "day labour": ["A type of employment where the worker is hired and paid one day at a time."], "natural satellite": ["A natural satellite of a planet."], "clotted cream": ["A thick cream made by indirectly heating unpasteurised cow's milk and then leaving it in shallow pans to cool slowly."], "Devonshire cream": ["A thick cream made by indirectly heating unpasteurised cow's milk and then leaving it in shallow pans to cool slowly."], "clouted cream": ["A thick cream made by indirectly heating unpasteurised cow's milk and then leaving it in shallow pans to cool slowly."], "scone": ["A small British bread made of wheat, barley or oatmeal with baking powder as leavening agent."], "pasteurize": ["To heat a food to a specific temperature for a definite length of time in order to kill microbes."], "pasteurise": ["To heat a food to a specific temperature for a definite length of time in order to kill microbes."], "tablet computer": ["A flat mobile computer, larger than a mobile phone, with a touch screen for accessing multimedia applications."], "pad": ["A flat mobile computer, larger than a mobile phone, with a touch screen for accessing multimedia applications."], "tablet PC": ["A flat mobile computer, larger than a mobile phone, with a touch screen for accessing multimedia applications."], "applet": ["A small computer application that performs one specific task."], "rum": ["A distilled alcoholic beverage made from sugar cane juice and molasses."], "light rum": ["A light-bodied rum, light in color and lightly sweet in flavor."], "silver rum": ["A light-bodied rum, light in color and lightly sweet in flavor."], "white rum": ["A light-bodied rum, light in color and lightly sweet in flavor."], "gold rum": ["A medium-bodied rum aged in wooden barrels, having the color of amber."], "amber rum": ["A medium-bodied rum aged in wooden barrels, having the color of amber."], "spiced rum": ["A rum that has been flavored with spices."], "dark rum": ["A rum, dark in color, aged longer and with much stronger flavor than gold rum."], "brown rum": ["A rum, dark in color, aged longer and with much stronger flavor than gold rum."], "black rum": ["A rum, dark in color, aged longer and with much stronger flavor than gold rum."], "red rum": ["A rum, dark in color, aged longer and with much stronger flavor than gold rum."], "chestnut tree": ["Any north temperate fagaceous tree of the genus Castanea, such as Castanea sativa, which produce flowers in long catkins and nuts in a prickly bur."], "chestnut grove": ["A place where chestnut trees are grown, in particular for their nuts."], "Thracian": ["An Indo-European language spoken in ancient times by the Thracians in South-Eastern Europe.", "Of or pertaining to Thrace, the Thracians or the extinct Thracian language."], "human language": ["A language that is used for communication among humans."], "natural language": ["A language which has developed over time as a result of the innate human ability for language."], "ordinary language": ["A language which has developed over time as a result of the innate human ability for language."], "archaeometallurgy": ["The scientific study of the history and prehistory of metals and their use through humans."], "rice growing": ["The practice of growing and producing rice."], "rice-growing": ["Relating to the practice of producing rice."], "rice grower": ["A person who grows rice."], "rice farmer": ["A person who grows rice."], "anti-smoking": ["Opposing the practice of smoking, in particular tobacco."], "entomophagy": ["The consumption of insects as food by humans.", "The consumption of insects as food by other animals."], "insectivory": ["The consumption of insects as food by other animals."], "entomophagous": ["(For an animal) Feeding on insects.", "(For a human being) Eating insects."], "entomological": ["Of or relating to entomology."], "entomologic": ["Of or relating to entomology."], "entomophobia": ["The fear of insects."], "entomophilous": ["Pollinated by insects."], "order Entomophthorales": ["An order of fungi that are generally pathogens of insects."], "agroglyph": ["A pattern created by the flattening of a cereal crop."], "crop circle": ["A pattern created by the flattening of a cereal crop."], "crop formation": ["A pattern created by the flattening of a cereal crop."], "corn circle": ["A pattern created by the flattening of a cereal crop."], "tonsillolith": ["A cluster of calcareous matter that forms in the rear of the mouth, in the crevasses of the palatine tonsils."], "cereology": ["The study of crop circles."], "cerealogy": ["The study of crop circles."], "cereologist": ["Someone who studies crop circles."], "cerealogist": ["Someone who studies crop circles."], "tonsil stone": ["A cluster of calcareous matter that forms in the rear of the mouth, in the crevasses of the palatine tonsils."], "loaf of bread": ["A loaf of bread"], "sugarloaf": ["A conical shaped mass of sugar."], "sugar loaf": ["A conical shaped mass of sugar."], "polyglot": ["Able to communicate in several languages, generally at least three.", "Written in, or made up of several languages.", "A person able to communicate in several languages, generally at least three."], "multilingual": ["Able to communicate in several languages, generally at least three.", "Written in several languages, usually at least three."], "letter balance": ["A small scale to weigh letters."], "mea culpa": ["Interjection said by someone who acknowledges that he made a mistake or error."], "my fault": ["Interjection said by someone who acknowledges that he made a mistake or error."], "my mistake": ["Interjection said by someone who acknowledges that he made a mistake or error."], "my bad": ["Interjection said by someone who acknowledges that he made a mistake or error."], "snowdrop": ["A plant of the genus Galanthus that is characterized by its white bell-shaped flower that appears at the end of winter."], "radicchio": ["A leaf vegetable white-veined red leaves and a bitter taste."], "cryovolcano": ["A volcano that erupts volatiles such as water, ammonia, carbon dioxide, nitrogen, or methane instead of molten rock."], "ice volcano": ["A volcano that erupts volatiles such as water, ammonia, carbon dioxide, nitrogen, or methane instead of molten rock."], "kiwifruit": ["A Chinese gooseberry vine fruit, having a hairy brown skin and dark green flesh with fine black seeds."], "pneumonectomy": ["A surgical procedure to remove a lung."], "pneumectomy": ["A surgical procedure to remove a lung."], "tanning bed": ["A device which emits ultraviolet radiation to produce a tan on human skin."], "sun tanning bed": ["A device which emits ultraviolet radiation to produce a tan on human skin."], "right to one's own image": ["The right to forbid the use of one's own image, such as in a movie or a photography, by others."], "anonymous birth": ["The possibility for a a pregnant women to give birth anonymously in a hospital and leave the child there."], "sperm donor": ["A man who donates sperm, usually anonymously, to a sperm bank or fertility clinic."], "sperm bank": ["A facility that collects human sperm from sperm donors for use in artificial insemination."], "semen bank": ["A facility that collects human sperm from sperm donors for use in artificial insemination."], "boomerang": ["A tool with a curved shape used as a weapon or for sport which returns when thrown into the air."], "microblog": ["A type of blog for publishing only short sentences or hyperlinks."], "microblogging": ["The practice of publishing short messages in a microblog."], "ibuprofen": ["A non-steroidal anti-inflammatory drug."], "(RS)-2-(4-(2-methylpropyl)phenyl)propanoic acid": ["A non-steroidal anti-inflammatory drug."], "isobutylphenyl propionic acid": ["A non-steroidal anti-inflammatory drug."], "Parkinson's": ["Progressive, degenerative disorder of the nervous system characterized by tremors, rigidity, bradykinesia, postural instability, and gait abnormalities; caused by a loss of neurons and a decrease of dopamine in the basal ganglia."], "idiopathic parkinsonism": ["Progressive, degenerative disorder of the nervous system characterized by tremors, rigidity, bradykinesia, postural instability, and gait abnormalities; caused by a loss of neurons and a decrease of dopamine in the basal ganglia."], "primary parkinsonism": ["Progressive, degenerative disorder of the nervous system characterized by tremors, rigidity, bradykinesia, postural instability, and gait abnormalities; caused by a loss of neurons and a decrease of dopamine in the basal ganglia."], "PD": ["Progressive, degenerative disorder of the nervous system characterized by tremors, rigidity, bradykinesia, postural instability, and gait abnormalities; caused by a loss of neurons and a decrease of dopamine in the basal ganglia."], "paralysis agitans": ["Progressive, degenerative disorder of the nervous system characterized by tremors, rigidity, bradykinesia, postural instability, and gait abnormalities; caused by a loss of neurons and a decrease of dopamine in the basal ganglia."], "anti-laser": ["A device which absorbs coherent light particles."], "coherent perfect absorber": ["A device which absorbs coherent light particles."], "Gullah": ["A creole language based on English and several African languages which is spoken by the Gullah people in the coastal region of the eastern USA.", "African-Americans who live in the coastal regions of South Caroline and Georgia."], "Geechee": ["A creole language based on English and several African languages which is spoken by the Gullah people in the coastal region of the eastern USA.", "African-Americans who live in the coastal regions of South Caroline and Georgia."], "legal person": ["An entity that is not a person, but is regarded by law to have the status of a person."], "legal personality": ["The characteristic of an entity that is not a person, but is regarded by law to have the status of a person."], "artificial personality": ["The characteristic of an entity that is not a person, but is regarded by law to have the status of a person."], "juristic personality": ["The characteristic of an entity that is not a person, but is regarded by law to have the status of a person."], "artificial person": ["An entity that is not a person, but is regarded by law to have the status of a person."], "juridical person": ["An entity that is not a person, but is regarded by law to have the status of a person."], "juristic person": ["An entity that is not a person, but is regarded by law to have the status of a person."], "body corporate": ["An entity that is not a person, but is regarded by law to have the status of a person."], "microblogger": ["A person who writes in a microblog."], "non-leaded": ["Without lead."], "unleaded": ["Without lead."], "lead-free": ["Without lead."], "leaded": ["Containing lead."], "rough diamond": ["A diamond which has not been cut."], "diamond in the rough": ["A diamond which has not been cut."], "cleanse": ["To remove dirt, dust or foreign matter from."], "fruit fly": ["A colorful fly of the Tephritidae family which feeds on fruit.", "A small nuisance fly of the Drosophilidae family."], "peacock fly": ["A colorful fly of the Tephritidae family which feeds on fruit."], "tephritid fruit fly": ["A colorful fly of the Tephritidae family which feeds on fruit."], "a bird in the hand is worth two in the bush": ["It is better to opt for something that we are sure to obtain, than for something of greater value but which we are not sure to obtain."], "chain saw": ["A power saw with cutting teeth linked in an endless chain."], "biophilia": ["A universal love (-philia) of nature and life (bio-). It may have a genetic component, as well as a learned component that is acquired by children during exposure to the outdoors."], "radial": ["Relating to a radius (of a circle).", "Having the direction of a radius.", "Relating to the radius bone."], "orthoradial": ["Having a direction orthogonal to a radius."], "ortho-radial": ["Having a direction orthogonal to a radius."], "circumferential": ["Having a direction orthogonal to a radius."], "silent film": ["A film without sound where dialogue text and explanations are shown on title cards."], "standing": ["(For a person) Having the body held upright and supported only by the feet."], "stood up": ["(For a person) Having the body held upright and supported only by the feet."], "silent picture": ["A film without sound where dialogue text and explanations are shown on title cards."], "talkie": ["A movie with sound."], "metatarsus": ["The set of five bones in a foot between the tarsa and the toes."], "intertitle": ["In motion pictures, printed text that is shown between action sequences to convey dialogue or explanations."], "title card": ["In motion pictures, printed text that is shown between action sequences to convey dialogue or explanations."], "metatarsal bones": ["The set of five bones in a foot between the tarsa and the toes."], "chop up": ["To cut an animal or a person in order to separate different parts."], "chopping up": ["The act of cutting an animal or a person in order to separate different parts."], "salinization": ["The accumulation of salt in soil."], "salinisation": ["The accumulation of salt in soil."], "pacifier": ["A rubber or plastic nipple that is put into a baby's mouth in order to comfort or quiet."], "soother": ["A rubber or plastic nipple that is put into a baby's mouth in order to comfort or quiet."], "sperm whale": ["A toothed whale measuring up to 20 meters long and having a very large head which is typically one-third of the animal's length."], "common cachalot": ["A toothed whale measuring up to 20 meters long and having a very large head which is typically one-third of the animal's length."], "penis bone": ["A bone found in the penis of most mammals but not humans."], "baculum": ["A bone found in the penis of most mammals but not humans."], "penile bone": ["A bone found in the penis of most mammals but not humans."], "highly active antiretroviral therapy": ["A therapy for treating AIDS consisting of a set of three or four antiretroviral drugs taken in combination."], "HAART": ["A therapy for treating AIDS consisting of a set of three or four antiretroviral drugs taken in combination."], "Habakkuk": ["The eighth of the twelve minor prophets in the Hebrew Bible."], "Havakuk": ["The eighth of the twelve minor prophets in the Hebrew Bible."], "Ash Wednesday": ["The first day of Lent which occurs on a Wednesday, 46 days before Easter."], "Jew bashing": ["Prejudice, discrimination or hostility directed against Jews."], "dukedom": ["A territory ruled by a duke or duchess."], "fanzine": ["A nonprofessional and nonofficial publication produced by fans of a particular cultural phenomenon, for example music or comic books."], "chickadee": ["A small passerine bird of the genus Parus or the family Paridae, common in the northern hemisphere."], "titmouse": ["A small passerine bird of the genus Parus or the family Paridae, common in the northern hemisphere."], "nuclear meltdown": ["Accidental overheating of the core of a nuclear reactor resulting in the core melting and radiation escaping."], "fictional language": ["A language intended to be the language of a fictional world."], "artistic language": ["A constructed language designed for aesthetic pleasure."], "artlang": ["A constructed language designed for aesthetic pleasure."], "vicious circle": ["A situation in which the solution to one problem creates a chain of problems, each making it more difficult to solve the original one."], "vicious cycle": ["A situation in which the solution to one problem creates a chain of problems, each making it more difficult to solve the original one."], "aftershock": ["An earthquake that follows another, usually more powerful, earthquake."], "mustard gas": ["A gas that causes large blisters on the skin and was used in warfare."], "yperite": ["A gas that causes large blisters on the skin and was used in warfare."], "languidness": ["A state of physical and/or mental weakness and a lack of vigor."], "lassitude": ["A state of physical and/or mental weakness and a lack of vigor."], "listlessness": ["A state of physical and/or mental weakness and a lack of vigor."], "languour": ["A state of physical and/or mental weakness and a lack of vigor."], "hibernation": ["A state of inactivity of some animals during winter, characterized by lower body temperature, slower breathing, and lower metabolic rate."], "winter sleep": ["A state of inactivity of some animals during winter, characterized by lower body temperature, slower breathing, and lower metabolic rate."], "hibernate": ["To spend winter time in hibernation."], "a little thing in hand is worth more than a great thing in prospect": ["It is better to opt for something that we are sure to obtain, than for something of greater value but which we are not sure to obtain."], "coagulant": ["A substance that causes coagulation.", "Substance that causes blood coagulation."], "radioactive": ["Exhibiting radioactivity."], "radioactively": ["Using a radioactive substance."], "nonradioactive": ["Not radioactive."], "tenno": ["The emperor and symbolic head of state of Japan."], "mikado": ["The emperor and symbolic head of state of Japan."], "association football": ["A ball sport in which two teams of 11 players each try to get the ball into the other team's goal using mainly their feet."], "blind spot": ["An area on the side of a car that cannot be seen by the driver when looking in the mirrors.", "The place where the optic nerve attaches to the retina and the retina cannot detect light."], "blind angle": ["An area on the side of a car that cannot be seen by the driver when looking in the mirrors."], "blind area": ["An area on the side of a car that cannot be seen by the driver when looking in the mirrors."], "Taoiseach": ["The head of government of Ireland."], "taoiseach": ["The head of government of Ireland."], "Cyrenaica": ["A Roman province on the North African coast, now part of Libya."], "tire pressure": ["The pressure of the gas inside the tires."], "tyre pressure": ["The pressure of the gas inside the tires."], "inflation pressure": ["The pressure of the gas inside the tires."], "Crohn's disease": ["An inflammatory disease of the intestines that may affect any part of the gastrointestinal tract from mouth to anus, primarily causing abdominal pain, diarrhea, vomiting, or weight loss."], "regional enteritis": ["An inflammatory disease of the intestines that may affect any part of the gastrointestinal tract from mouth to anus, primarily causing abdominal pain, diarrhea, vomiting, or weight loss."], "M\u00f6bius syndrome": ["A rare congenital disorder which is characterized by facial paralysis and the inability to move the eyes from side to side."], "Moebius syndrome": ["A rare congenital disorder which is characterized by facial paralysis and the inability to move the eyes from side to side."], "facial nerve paralysis": ["The paralysis of structures innervated by the facial nerve."], "facial paralysis": ["The paralysis of structures innervated by the facial nerve."], "gamma rays": ["A form of electromagnetic radiation or light emission of frequencies produced by sub-atomic particle interactions, such as electron-positron annihilation or radioactive decay."], "radiation poisoning": ["Damage to the body resulting from excessive exposure to ionizing radiation which causes symptoms like nausea, fatigue, vomiting, and diarrhea and in severe cases loss of hair, hemorrhage, inflammation and death."], "creeping dose": ["Damage to the body resulting from excessive exposure to ionizing radiation which causes symptoms like nausea, fatigue, vomiting, and diarrhea and in severe cases loss of hair, hemorrhage, inflammation and death."], "acute radiation syndrome": ["Damage to the body resulting from excessive exposure to ionizing radiation which causes symptoms like nausea, fatigue, vomiting, and diarrhea and in severe cases loss of hair, hemorrhage, inflammation and death."], "ARS": ["Damage to the body resulting from excessive exposure to ionizing radiation which causes symptoms like nausea, fatigue, vomiting, and diarrhea and in severe cases loss of hair, hemorrhage, inflammation and death."], "facial nerve": ["The nerve which controls the muscles of facial expression."], "liquidator": ["One of the approximately 800,000 people who were in charge of clean-up after the April 26, 1986 Chernobyl disaster on the site of the event."], "abdominoplasty": ["A cosmetic surgery procedure used to make the abdomen more firm."], "tummy tuck": ["A cosmetic surgery procedure used to make the abdomen more firm."], "umbilicoplasty": ["A plastic surgery procedure to modify the appearance of one's navel."], "belly button surgery": ["A plastic surgery procedure to modify the appearance of one's navel."], "facelift": ["A cosmetic surgery procedure to give a more youthful appearance to the face by removing wrinkles."], "rhytidectomy": ["A cosmetic surgery procedure to give a more youthful appearance to the face by removing wrinkles."], "nonsmoker": ["Somebody who does not smoke tobacco."], "non-smoker": ["Somebody who does not smoke tobacco."], "RAM": ["Computer component where data are quickly stored and retrieved from any point (i.e. with no need for the data to be written or read from the beginning of the storing space) but disappear when the computer is turned off."], "screw terminal": ["Small object designed to connect electrical wires two by two, each one clamped by a small screw."], "terminal velocity": ["The resulting speed when the downward force of gravity equals the upward force of drag."], "Praguian": ["From or relating to Prague.", "A person from, or living in Prague."], "escape velocity": ["The initial velocity imparted to an object that will enable it to escape a gravitational field without any further boosting."], "dosimeter": ["A device used to measure a dose of ionising radiation."], "radiation dosimeter": ["A device used to measure a dose of ionising radiation."], "dosemeter": ["A device used to measure a dose of ionising radiation."], "moment of silence": ["A short period of time during which people commemorate one or more dead persons in silence."], "orofacial": ["Of or relating to the mouth and face."], "frugivore": ["An animal that mostly eats fruit."], "frugivorous": ["Eating mostly fruit."], "fruit-eating": ["Eating mostly fruit."], "allergology": ["The branch of medicine dealing with the study of allergies."], "feel like a million bucks": ["To feel very well and full of energy."], "feel like a million dollars": ["To feel very well and full of energy."], "atomic power station": ["A power plant in which nuclear energy is converted into heat for use in producing steam for turbines, which in turn drive generators that produce electric power."], "nuclear power station": ["A power plant in which nuclear energy is converted into heat for use in producing steam for turbines, which in turn drive generators that produce electric power."], "mountain gorilla": ["A gorilla of the subspecies \"Gorilla beringei beringei\" living in the Virunga mountains of Central Africa, having a thick coat and long black hair."], "situation comedy": ["A genre of comedy that features recurring characters in a common environment such as a home or workplace, accompanied with jokes as part of the dialogue."], "sitcom": ["A genre of comedy that features recurring characters in a common environment such as a home or workplace, accompanied with jokes as part of the dialogue."], "problem gambling": ["The inability to stop gambling despite harmful negative consequences for finances, job and personal life."], "compulsive gambling": ["The inability to stop gambling despite harmful negative consequences for finances, job and personal life."], "gambling addiction": ["The inability to stop gambling despite harmful negative consequences for finances, job and personal life."], "pathological gambling": ["The inability to stop gambling despite harmful negative consequences for finances, job and personal life."], "thyroid gland": ["A large endocrine gland present in all vertebrates and located in the neck of humans."], "tyroidal": ["Relating to the thyroid gland."], "Virunga Mountains": ["A chain of volcanoes in East Africa."], "dithyramb": ["An ancient Greek hymn sung and danced in honour of Dionysus."], "sylph": ["A mythological creature associated with the element of air."], "sylphid": ["A mythological creature associated with the element of air."], "elemental": ["A mythological being associated with one of the four elements water, air, fire and earth."], "shandy": ["A beer mixed with lemonade."], "shandygaff": ["A beer mixed with lemonade."], "feathers": ["The light horny waterproof structure forming the external covering of birds."], "c\u0153metery": ["A place or area for burying the dead."], "graveyard": ["A place or area for burying the dead."], "burial ground": ["A place or area for burying the dead."], "advowtry": ["Sex by a married person with someone other than their spouse."], "philandery": ["Sex by a married person with someone other than their spouse."], "adulter": ["To commit adultery."], "adulteress": ["A woman who commits adultery."], "adulterine": ["Relating to adultery."], "Rohingya": ["A Bengali-Assamese language spoken by the Rohingya people of Arakan (Rakhine), Burma (Myanmar)."], "Tai Dam written in Latin script": ["The Tai Dam language written with the Latin Script."], "Tupinamb\u00e1": ["An extinct Tup\u00ed-Guaran\u00ed language formerly spoken by the Tupinamb\u00e1 people in Brazil."], "Ten Commandments": ["A list of religious and moral imperatives which, according to the Hebrew Bible, were written by God and given to Moses on Mount Sinai in the form of two stone tablets."], "Decalogue": ["A list of religious and moral imperatives which, according to the Hebrew Bible, were written by God and given to Moses on Mount Sinai in the form of two stone tablets."], "pansy violet": ["A plant of the genus Viola having four upswept petals and a broader one pointing downward."], "aerodynamic force": ["The resultant force exerted on a body by a gas (such as air) in which the body is immersed."], "barodontalgia": ["A pain in tooth caused by a change in atmospheric pressure."], "tooth squeeze": ["A pain in tooth caused by a change in atmospheric pressure."], "aerodontalgia": ["A pain in tooth caused by a change in atmospheric pressure."], "sulfur hexafluoride": ["An inorganic, colorless, odorless, non-toxic and non-flammable gas, whose molecules consist of six fluorine atoms attached to a central sulfur atom."], "atomic pile": ["Device which creates heat and energy by starting and controlling atomic fission."], "Oaths of Strasbourg": ["A peace treaty signed on February 14th 842 between Charles the Bald and Louis the German which is written in Gallo-Romance and Old High German."], "word formation": ["The creation of a new word."], "paremiology": ["The study of proverbs."], "monorail": ["A rail-based transportation system based on a single rail."], "quantum bit": ["A quantum bit; the unit of quantum information."], "this way": ["In the way or manner described, indicated, or suggested"], "embarrassed": ["Having a feeling of uneasiness due to the difficulty or the impossibility to adopt an appropriate behaviour."], "wealth tax": ["A tax based on the estimated value of the estate of a person."], "danger to life": ["A danger that is threatening to life."], "mortal danger": ["A danger that is threatening to life."], "hepatitis B": ["An infectious illness caused by hepatitis B virus which causes an inflammation of the liver of hominoidea, including humans."], "hep B": ["An infectious illness caused by hepatitis B virus which causes an inflammation of the liver of hominoidea, including humans."], "apiology": ["The scientific study of honey bees."], "melittology": ["The scientific study of bees."], "domestic goat": ["A common four-legged animal (Capra) that is related to sheep and bred by humans for its coat and milk."], "detective police": ["A section of the police whose mission is to gather facts and evidences in order to identify the culprit of a crime."], "alphabetisation": ["The act or process of arranging in alphabetical order."], "alphabetization": ["The act or process of arranging in alphabetical order."], "hair dryer": ["An electrical device that blows hot or cold air to dry hairs."], "blowdryer": ["An electrical device that blows hot or cold air to dry hairs."], "hairdryer": ["An electrical device that blows hot or cold air to dry hairs."], "blow-dryer": ["An electrical device that blows hot or cold air to dry hairs."], "blow dryer": ["An electrical device that blows hot or cold air to dry hairs."], "hair-dryer": ["An electrical device that blows hot or cold air to dry hairs."], "move heaven and earth": ["To try everything possible and put a lot of efforts to accomplish something."], "pull out all the stops": ["To try everything possible and put a lot of efforts to accomplish something."], "bend over backwards": ["To try everything possible and put a lot of efforts to accomplish something."], "leave no stone unturned": ["To try everything possible and put a lot of efforts to accomplish something."], "bigamous": ["Having two spouses simultaneously."], "bottled water": ["Water that is packaged in plastic bottles or glass bottles."], "Botswanan": ["A person having the Botswanan nationality.", "From or relating to Botswana."], "stillbirth": ["The birth of a baby that died in the womb."], "stillborn": ["Dead at birth."], "still-born": ["Dead at birth."], "deadborn": ["Dead at birth."], "oblique case": ["A noun case that is used for nouns that are not in the subject position."], "objective case": ["A noun case that is used for nouns that are not in the subject position."], "subjective case": ["A grammatical case for a noun or pronoun, which generally marks the subject of a verb, as opposed to its object or other verb arguments."], "DVD player": ["A device designed to read DVD discs."], "Web Service Description Language": ["An XML-based language that provides a model for describing Web services."], "WSDL": ["An XML-based language that provides a model for describing Web services."], "Simple Object Access Protocol": ["A protocol specification for exchanging structured information in the implementation of Web Services in computer networks."], "SOAP": ["A protocol specification for exchanging structured information in the implementation of Web Services in computer networks."], "Universal Description Discovery and Integration": ["A platform-independent, Extensible Markup Language (XML)-based registry for businesses worldwide to list themselves on the Internet and a mechanism to register and locate web service applications."], "UDDI": ["A platform-independent, Extensible Markup Language (XML)-based registry for businesses worldwide to list themselves on the Internet and a mechanism to register and locate web service applications."], "on-demand computing": ["An increasingly popular enterprise model in which computing resources are made available to the user as needed."], "Remote procedure call": ["An inter-process communication that allows a computer program to cause a subroutine or procedure to execute in another address space (commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction."], "RPC": ["An inter-process communication that allows a computer program to cause a subroutine or procedure to execute in another address space (commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction.", "An inter-process communication that allows a computer program to cause a subroutine or procedure to execute in another address space (commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction."], "JSON": ["A lightweight text-based open standard designed for human-readable data interchange."], "JavaScript Object Notation": ["A lightweight text-based open standard designed for human-readable data interchange."], "YAML": ["A human friendly data serialization standard for all programming languages."], "Apache Axis": ["An open source, XML based Web service framework."], "coca": ["A plant in the family Erythroxylaceae, native to western South America."], "heckle": ["To give a forceful and lengthy lecture or criticism to another person."], "gratin": ["A dish having a browned crust on top, usually made of breadcrumbs, grated cheese, egg and/or butter."], "wire transfer": ["A transfer of funds between banks by electronic means."], "bank transfer": ["A transfer of funds between banks by electronic means."], "planned obsolescence": ["A policy of deliberately designing a product so that it will become obsolete or nonfunctional after a certain period."], "built-in obsolescence": ["A policy of deliberately designing a product so that it will become obsolete or nonfunctional after a certain period."], "-ever": ["whatever the thing or person [used with an attribute relative pronoun to mean \"whatever\", \"whoever\" etc.]"], "glabrous": ["Without hair."], "-soever": ["whatever the thing or person [used with an attribute relative pronoun to mean \"whatever\", \"whoever\" etc.]"], "Philippine": ["From or relating to the Philippines."], "shill": ["A person who profits from helping another person or organization to sell goods or services and/or attract customers while pretending to be impartial.", "To help another person or organization to sell goods or services and/or attract customers while pretending to be impartial."], "put away": ["To move to its right storing place for the time it will not be used."], "bisphenol A": ["An chemical compound made from the reaction of two phenol molecules with one acetone molecule."], "BPA": ["An chemical compound made from the reaction of two phenol molecules with one acetone molecule."], "underskirt": ["A skirt worn underneath another skirt."], "gastrectomy": ["The surgical removal of the stomach."], "half slip": ["A skirt worn underneath another skirt."], "waist slip": ["A skirt worn underneath another skirt."], "Colosseum": ["An antique amphitheatre in the centre of the city of Rome, Italy."], "Coliseum": ["An antique amphitheatre in the centre of the city of Rome, Italy."], "Flavian Amphitheatre": ["An antique amphitheatre in the centre of the city of Rome, Italy."], "acaricide": ["A pesticide that kills members of the Acari group.", "That kills members of the Acari group."], "acaracide": ["A pesticide that kills members of the Acari group."], "insula": ["A multi-level apartment building in ancient Rome which housed the urban population and often included shops and businesses on the ground level."], "narwhal": ["A medium-sized toothed whale that lives year-round in the Arctic whose males have a long, straight, helical tusk extending from their upper left jaw."], "anesthetise": ["To make someone unable to feel pain by giving an anaesthetic."], "antianxiety drug": ["A drug used for the treatment of anxiety."], "anxiolytic drug": ["A drug used for the treatment of anxiety."], "narwal": ["A medium-sized toothed whale that lives year-round in the Arctic whose males have a long, straight, helical tusk extending from their upper left jaw."], "narwhale": ["A medium-sized toothed whale that lives year-round in the Arctic whose males have a long, straight, helical tusk extending from their upper left jaw."], "Bachelor of Arts": ["A bachelor's degree awarded for an undergraduate course or program in either the liberal arts, the sciences."], "B.A.": ["A bachelor's degree awarded for an undergraduate course or program in either the liberal arts, the sciences."], "A.B.": ["A bachelor's degree awarded for an undergraduate course or program in either the liberal arts, the sciences."], "BA": ["A bachelor's degree awarded for an undergraduate course or program in either the liberal arts, the sciences."], "AB": ["A bachelor's degree awarded for an undergraduate course or program in either the liberal arts, the sciences."], "back door": ["A design fault, planned or accidental, that allows the apparent strength of the design to be easily avoided by those who know the trick.", "A door in the rear of a building."], "bed-wetting": ["The fact of involuntarily urinating while asleep."], "blow drier": ["An electrical device that blows hot or cold air to dry hairs."], "Nobelist": ["A person who has been awarded a Nobel Prize."], "board foot": ["The volume of a one-foot length of a board one foot wide and one inch thick."], "board-foot": ["The volume of a one-foot length of a board one foot wide and one inch thick."], "polystyrene": ["A polymer made from the aromatic monomer styrene."], "preventive detention": ["The imprisonment of a person in order to prevent that person from committing a crime that he or she is deemed likely to commit."], "preventive custody": ["The imprisonment of a person in order to prevent that person from committing a crime that he or she is deemed likely to commit."], "adipocere": ["A wax-like organic substance formed by the anaerobic bacterial hydrolysis of fat in tissue, such as body fat in corpses."], "corpse wax": ["A wax-like organic substance formed by the anaerobic bacterial hydrolysis of fat in tissue, such as body fat in corpses."], "grave wax": ["A wax-like organic substance formed by the anaerobic bacterial hydrolysis of fat in tissue, such as body fat in corpses."], "mortuary wax": ["A wax-like organic substance formed by the anaerobic bacterial hydrolysis of fat in tissue, such as body fat in corpses."], "blood orange": ["A type of orange notable for its dark red flesh."], "Anglesey": ["An island off the north west coast of Wales."], "atrophic arthritis": ["Inflammatory autoimmune disorder that causes the immune system to attack the joints."], "RA": ["Inflammatory autoimmune disorder that causes the immune system to attack the joints."], "Menai Strait": ["A narrow strait which separates the island of Anglesey from the mainland of Wales."], "dendrimer": ["A large spherical molecule whose structure looks like the branches of a tree."], "arborol": ["A large spherical molecule whose structure looks like the branches of a tree."], "cascade molecule": ["A large spherical molecule whose structure looks like the branches of a tree."], "object lens": ["The lens of an optical instrument that is the closest to the object being observed."], "object glass": ["The lens of an optical instrument that is the closest to the object being observed."], "objective glass": ["The lens of an optical instrument that is the closest to the object being observed."], "objective lens": ["The lens of an optical instrument that is the closest to the object being observed."], "seabed": ["The bottom of the ocean."], "seafloor": ["The bottom of the ocean."], "ocean floor": ["The bottom of the ocean."], "night shift": ["A group of workers who work during the night.", "A period of work during the night."], "nightshift": ["A group of workers who work during the night.", "A period of work during the night."], "museology": ["The study of museums and the evolution of their role in education, society, etc."], "museological": ["Relating to museology."], "museologically": ["In a museological manner."], "rock samphire": ["An edible wild plant found in coastal regions."], "samphire": ["An edible wild plant found in coastal regions."], "Balearic": ["A collective name for the group of Catalan language variants that people speak in the Balearic Islands."], "modern drachma": ["The currency issued in Greece between 1832 and December 31, 2000."], "Greek drachma": ["The currency issued in Greece between 1832 and December 31, 2000."], "drachma": ["The currency issued in Greece between 1832 and December 31, 2000."], "modern Greek drachma": ["The currency issued in Greece between 1832 and December 31, 2000."], "door frame": ["The frame that supports a door."], "doorframe": ["The frame that supports a door."], "doorcase": ["The frame that supports a door."], "door case": ["The frame that supports a door."], "miser": ["A person who is stingy and miserly."], "take a bath": ["To clean oneself by immersion in water."], "little owl": ["Small owl which lives in Europe, Asia and north Africa."], "twenty one": ["The cardinal number occurring after twenty and before twenty-two, represented in Roman numerals as XXI and in Arabic numerals as 21."], "gingiva": ["The mucosal tissue that partly lies over the teeth in the mouth."], "gums": ["The mucosal tissue that partly lies over the teeth in the mouth."], "ketchup": ["A condiment made of tomatoes, vinegar, sugar, salt and spices."], "catsup": ["A condiment made of tomatoes, vinegar, sugar, salt and spices."], "church building": ["A building where Christian religious activities take place."], "gum": ["The mucosal tissue that partly lies over the teeth in the mouth."], "atomic clock": ["A clock that uses an electronic transition frequency for its timekeeping element."], "rhubarb": ["A having large leaves and long green or reddish acidic leafstalks, that are edible, in particular when cooked."], "triple alpha process": ["A set of nuclear fusion reactions by which three helium-4 nuclei (alpha particles) are transformed into a carbon nuclei."], "triple-alpha process": ["A set of nuclear fusion reactions by which three helium-4 nuclei (alpha particles) are transformed into a carbon nuclei."], "anthropic principle": ["The principle that physical laws have to be such that they allow for the creation of life and the existence of humans."], "harbor seal": ["A true seal, brown, tan, or gray, with distinctive V-shaped nostrils."], "harbour seal": ["A true seal, brown, tan, or gray, with distinctive V-shaped nostrils."], "common seal": ["A true seal, brown, tan, or gray, with distinctive V-shaped nostrils."], "three-and-twenty": ["The cardinal number occurring after twenty-two and before twenty-four, represented in Roman numerals as XXIII and in Arabic numerals as 23."], "pixelate": ["To hide details of an image by replacing part of it with large monochromatic squares."], "pixellate": ["To hide details of an image by replacing part of it with large monochromatic squares."], "siphonophore": ["A colonial organism of the order \"Siphonophorae\" made up of many minute individuals called zooids."], "siphonophores": ["An order of the Hydrozoa class containing colonial organisms made up of many minute individuals called zooids."], "Portuguese Man o' War": ["A jelly-like marine invertebrate of the family Physaliidae."], "Portuguese man-of-war": ["A jelly-like marine invertebrate of the family Physaliidae."], "man-of-war": ["A jelly-like marine invertebrate of the family Physaliidae."], "rice field": ["A flooded field where rice is grown."], "paddy field": ["A flooded field where rice is grown."], "Sardinia": ["The second-largest island in the Mediterranean Sea and an autonomous region of Italy."], "glass harmonica": ["A musical instrument that uses a series of glass bowls graduated in size to produce musical tones by means of friction."], "Strait of Bonifacio": ["The strait between Corsica and Sardinia."], "glass armonica": ["A musical instrument that uses a series of glass bowls graduated in size to produce musical tones by means of friction."], "bowl organ": ["A musical instrument that uses a series of glass bowls graduated in size to produce musical tones by means of friction."], "hydrocrystalophone": ["A musical instrument that uses a series of glass bowls graduated in size to produce musical tones by means of friction."], "armonica": ["A musical instrument that uses a series of glass bowls graduated in size to produce musical tones by means of friction."], "titan arum": ["A flowering plant which smells like decomposing meat."], "corpse flower": ["A flowering plant which smells like decomposing meat."], "corpse plant": ["A flowering plant which smells like decomposing meat."], "cinnamon roll": ["A sweet pastry consisting of yeast dough, sugar, cinnamon and sometimes cardamom."], "cinnamon bun": ["A sweet pastry consisting of yeast dough, sugar, cinnamon and sometimes cardamom."], "cinnamon swirl": ["A sweet pastry consisting of yeast dough, sugar, cinnamon and sometimes cardamom."], "cinnamon snail": ["A sweet pastry consisting of yeast dough, sugar, cinnamon and sometimes cardamom."], "locking pliers": ["A gripping tool that multiplies the strength of the user's hand and can be locked into clamping position."], "Mole grips": ["A gripping tool that multiplies the strength of the user's hand and can be locked into clamping position."], "Mole wrench": ["A gripping tool that multiplies the strength of the user's hand and can be locked into clamping position."], "Vise-grips": ["A gripping tool that multiplies the strength of the user's hand and can be locked into clamping position."], "safflower oil": ["Vegetable oil made of the seeds of the safflower plant."], "necktie": ["A long, thin piece of material that is tied around a person's neck (underneath their collar) to make them look smarter, politer or more successful."], "take flight": ["Leaving a dangerous or unpleasant situation."], "gratuity": ["A voluntary additional payment made for services rendered."], "cumshaw": ["A voluntary additional payment made for services rendered."], "shoe store": ["A shop that sells shoes."], "shoe shop": ["A shop that sells shoes."], "tigress": ["A female tiger."], "dark energy": ["A hypothetical form of energy that permeates all of space and tends to increase the rate of expansion of the universe."], "astrocyte": ["A star-shaped glial cells in the brain and spinal cord."], "unconditional": ["Without conditions or limitations."], "digit IV": ["The finger between the long finger and the little finger."], "fourth digit": ["The finger between the long finger and the little finger."], "gold-finger": ["The finger between the long finger and the little finger."], "leech-finger": ["The finger between the long finger and the little finger."], "marriage finger": ["The finger between the long finger and the little finger."], "medical finger": ["The finger between the long finger and the little finger."], "medicinable finger": ["The finger between the long finger and the little finger."], "medicinal finger": ["The finger between the long finger and the little finger."], "physic finger": ["The finger between the long finger and the little finger."], "physical finger": ["The finger between the long finger and the little finger."], "physician finger": ["The finger between the long finger and the little finger."], "ring-man": ["The finger between the long finger and the little finger."], "wedding finger": ["The finger between the long finger and the little finger."], "mango tree": ["A tropical Asian fruit tree, Mangifera indica."], "passivity": ["The state of being passive."], "Min Nan (POJ)": ["The Min Nan language written with the Pe\u030dh-\u014de-j\u012b orthography."], "Min Nan (simplified)": ["The Min Nan language written with simplified Chinese characters."], "Min Nan (traditional)": ["The Min Nan language written with traditional Chinese characters."], "peripapillary": ["Located around the optic papilla."], "waiting room": ["A room in some public place where people wait for a service."], "neigh": ["The cry of a horse.", "To make the sound of a horse."], "hemolytic-uremic syndrome": ["A disease characterized by a hemolytic anemia and acute renal failure that predominantly affects young children."], "haemolytic-uraemic syndrome": ["A disease characterized by a hemolytic anemia and acute renal failure that predominantly affects young children."], "HUS": ["A disease characterized by a hemolytic anemia and acute renal failure that predominantly affects young children."], "skinless": ["Without skin."], "untruth": ["A false statement made with the intention to deceive."], "turkey tail": ["A polypore mushroom resembling the tail of the wild turkey."], "blue whale": ["A baleen whale of the species Balaenoptera musculus measuring up to 30 meters."], "sulfur-bottom whale": ["A baleen whale of the species Balaenoptera musculus measuring up to 30 meters."], "sulphur bottom whale": ["A baleen whale of the species Balaenoptera musculus measuring up to 30 meters."], "jug ears": ["Ears that markedly stick outwards."], "suspense": ["A feeling of uncertainty and anxiety about the outcome of certain actions."], "coffee table": ["A style of long, low table which is designed to be placed in front of a sofa."], "cocktail table": ["A style of long, low table which is designed to be placed in front of a sofa."], "cooking oil": ["An vegetable oil that is used for cooking food."], "edible oil": ["An vegetable oil that is used for cooking food."], "return home": ["To go to one's home after having left it, such as after a working day or holidays."], "Judah": ["Biblical Jewish kingdom of the South, the capital of which was Jerusalem, contrasted with Israel, the Jewish kingdom of the North."], "Juda": ["Biblical Jewish kingdom of the South, the capital of which was Jerusalem, contrasted with Israel, the Jewish kingdom of the North."], "Judea": ["Biblical Jewish kingdom of the South, the capital of which was Jerusalem, contrasted with Israel, the Jewish kingdom of the North."], "Old Occitan": ["The earliest form of the Occitan language spoken between the 8th and 14th century."], "Old Proven\u00e7al": ["The earliest form of the Occitan language spoken between the 8th and 14th century."], "seaweed": ["One of several species of macroscopic, multicellular, benthic marine algae."], "sundried": ["Having been dried by the sun."], "sun-dried": ["Having been dried by the sun."], "air-dried": ["Having been dried in the air."], "air-dry": ["To dry by exposure to the air."], "cotton plant": ["A shrub of the genus Gossypium known for the soft fibers that protect its seeds."], "electric blue": ["A color close to cyan similar to that of electric sparks."], "electric-blue": ["A color close to cyan similar to that of electric sparks."], "megapixel": ["One million pixels."], "electronic cigarette": ["An electrical device that attempts to simulate the act of tobacco smoking by producing an inhaled mist."], "e-cigarette": ["An electrical device that attempts to simulate the act of tobacco smoking by producing an inhaled mist."], "suprapubic": ["Related to the area above the pubic bone."], "pubis": ["The ventral and anterior of the three principal bones composing either half of the pelvis."], "pubic bone": ["The ventral and anterior of the three principal bones composing either half of the pelvis."], "muscids": ["A family of flies in the superfamily Muscoidea characterized by a plumose apical segment of the antennae and a smooth basal portion."], "muscid": ["A fly of the family Muscidae."], "sodium carbonate": ["A salt of chemical formula Na2CO3 that is white and soluble in water."], "soda": ["Still water into which carbon dioxide gas has been dissolved.", "A salt of chemical formula Na2CO3 that is white and soluble in water.", "Sodium in chemical combination.", "A beverage that has had carbon dioxide dissolved into it."], "soda ash": ["A salt of chemical formula Na2CO3 that is white and soluble in water."], "washing soda": ["A salt of chemical formula Na2CO3 that is white and soluble in water."], "carbonated drink": ["A beverage that has had carbon dioxide dissolved into it."], "romantic comedy film": ["A film centered on romantic ideals such as a true love able to surmount all obstacles, with many humorous scenes."], "romantic comedy": ["A film centered on romantic ideals such as a true love able to surmount all obstacles, with many humorous scenes."], "bald eagle": ["A bird of prey found in North America, having a brown plumage with a white head and tail."], "bald erne": ["A bird of prey found in North America, having a brown plumage with a white head and tail."], "American eagle": ["A bird of prey found in North America, having a brown plumage with a white head and tail."], "Pottawatomie": ["A Central Algonquian language spoken by the Potawatomi people around the Great Lakes in Michigan and Wisconsin, as well as in Kansas in the United States, and in southern Ontario in Canada."], "Palatinate": ["A region in the German federal state of Rhineland-Palatinate, in south-western Germany."], "hacker": ["A person who gains unauthorized access to computers and computer networks."], "skull cap": ["The top part of the skull."], "calvaria": ["The top part of the skull."], "calva": ["The top part of the skull."], "Chadic language": ["A Afroasiatic language belonging to a language family spoken across northern Nigeria, Niger, Chad, Central African Republic and Cameroon, belonging to the Afroasiatic phylum."], "maule's quince": ["A thorny deciduous shrub whose apple-shaped fruits are a golden-yellow color containing red-brown seeds."], "flowering quince": ["A thorny deciduous or semi-evergreen shrub native to eastern Asia whose fruit resembles a quince."], "Japanese quince": ["A thorny deciduous or semi-evergreen shrub native to eastern Asia whose fruit resembles a quince."], "spear phishing": ["An e-mail spoofing fraud attempt that targets a specific organization, seeking unauthorized access to confidential data, probably conducted by perpetrators out for financial gain, trade secrets or military information."], "humid": ["(Of the air) Containing a high quantity of water vapor."], "email spoofing": ["The forgery of an e-mail header so that the message appears to have originated from someone or somewhere other than the actual source."], "e-mail spoofing": ["The forgery of an e-mail header so that the message appears to have originated from someone or somewhere other than the actual source."], "SMTP": ["An Internet standard for electronic mail (e-mail) transmission across Internet Protocol (IP) networks."], "Simple Mail Transfer Protocol": ["An Internet standard for electronic mail (e-mail) transmission across Internet Protocol (IP) networks."], "defense in depth": ["The coordinated use of multiple security countermeasures to protect the integrity of the information assets in an enterprise, based on the military principle that it is more difficult for an enemy to defeat a complex and multi-layered defense system than to penetrate a single barrier."], "rhombicuboctahedron": ["An Archimedean solid with eight triangular and eighteen square faces."], "small rhombicuboctahedron": ["An Archimedean solid with eight triangular and eighteen square faces."], "Scottish": ["Pertaining to Scotland."], "BIRT": ["An open source software project that provides reporting and business intelligence capabilities for rich client and web applications, especially those based on Java and Java EE."], "Business Intelligence and Reporting Tools": ["An open source software project that provides reporting and business intelligence capabilities for rich client and web applications, especially those based on Java and Java EE."], "GPS": ["A space-based global navigation satellite system (GNSS) that provides location and time information in all weather, anywhere on or near the Earth, where there is an unobstructed line of sight to four or more GPS satellites. It is maintained by the United States government and is freely accessible by anyone with a GPS receiver."], "Global Positioning System": ["A space-based global navigation satellite system (GNSS) that provides location and time information in all weather, anywhere on or near the Earth, where there is an unobstructed line of sight to four or more GPS satellites. It is maintained by the United States government and is freely accessible by anyone with a GPS receiver."], "ink eraser": ["An instrument used to remove ink from a surface such as paper."], "forearm": ["The part of the arm between the wrist and the elbow."], "Kuku-Ugbanh": ["An extinct Middle Pama language formerly spoken below the city of Arukun in Queensland, Australia."], "yeast infection": ["Infection caused by a species of the yeast-like fungus Candida, usually C. albicans."], "thrush": ["Infection caused by a species of the yeast-like fungus Candida, usually C. albicans."], "candidosis": ["Infection caused by a species of the yeast-like fungus Candida, usually C. albicans."], "moniliasis": ["Infection caused by a species of the yeast-like fungus Candida, usually C. albicans."], "oidiomycosis": ["Infection caused by a species of the yeast-like fungus Candida, usually C. albicans."], "diapir": ["A structure formed when a matter lighter than its environment moves upward by piercing the overlying material."], "diapiric": ["Relating to diapirs."], "diapirism": ["The formation of diapirs."], "enterohemorrhagic": ["Causing hemorrhage in the intestines."], "time difference": ["The difference of the clock times of two different places."], "three-headed": ["Having three heads."], "Lake L\u00e9man": ["A lake located between Switzerland and France."], "Lake Geneva": ["A lake located between Switzerland and France."], "primary case": ["The person who is at the origin of the outbreak of an epidemic."], "patient zero": ["The person who is at the origin of the outbreak of an epidemic."], "four-headed": ["Having four heads."], "striped": ["Having stripes."], "antidiabetic": ["That acts against diabetes.", "A drug that acts against diabetes."], "antidiabetes": ["That acts against diabetes."], "antidiabetic agent": ["A drug that acts against diabetes."], "antidiabetic drug": ["A drug that acts against diabetes."], "Kislev": ["Third month of the civil year and the ninth month of the Jewish sacred year on the Hebrew calendar, falling in November-December of the Gregorian calendar."], "Casleu": ["Third month of the civil year and the ninth month of the Jewish sacred year on the Hebrew calendar, falling in November-December of the Gregorian calendar."], "sexism": ["The belief or attitude that one sex is inherently superior to, more competent than, or more valuable than the other."], "sexist": ["A person who discriminates on grounds of sex.", "Discriminatory against one sex in favour of the other."], "Beer": ["Coastal town in Southwestern England."], "ring up": ["To contact someone using the telephone."], "call up": ["To contact someone using the telephone."], "quiz": ["A school examination of less importance, or of greater brevity, than others given in the same course.", "A game in which the players try to answer questions correctly."], "Atlantic spadefish": ["A fish of the genus Chaetodipterus having a disk-shaped body."], "angelfish": ["A fish of the genus Chaetodipterus having a disk-shaped body."], "white angelfish": ["A fish of the genus Chaetodipterus having a disk-shaped body."], "threetailed porgy": ["A fish of the genus Chaetodipterus having a disk-shaped body."], "ocean cobbler": ["A fish of the genus Chaetodipterus having a disk-shaped body."], "moonfish": ["A fish of the genus Chaetodipterus having a disk-shaped body."], "half-dead": ["Almost dead."], "Ogygia": ["In Greek mythology, the island on which the nymph Calypso lives."], "how are you?": ["A form of greetings where one asks about the other's health without expecting an answer."], "how do you do?": ["A form of greetings where one asks about the other's health without expecting an answer."], "how-d'ye-do?": ["A form of greetings where one asks about the other's health without expecting an answer."], "how are you doing?": ["A form of greetings where one asks about the other's health without expecting an answer."], "how are things?": ["A form of greetings where one asks about the other's health without expecting an answer."], "how's it going?": ["A form of greetings where one asks about the other's health without expecting an answer."], "Northern goshawk": ["A medium-large bird of prey in the family Accipitridae."], "baclofen": ["A derivative of gamma-aminobutyric acid."], "digraph": ["A pair of characters used to write one sound."], "digram": ["A pair of characters used to write one sound."], "trigraph": ["A group of three letters used to represent a single sound."], "tetragraph": ["A group of four letters used to represent a single sound."], "pentagraph": ["A group of five letters used to represent a single sound."], "hexagraph": ["A group of six letters used to represent a single sound."], "multigraph": ["A group of letters used to represent a single sound."], "graphemics": ["The linguistic study of writing systems."], "graphematics": ["The linguistic study of writing systems."], "winged": ["Having wings."], "alate": ["Having wings."], "aliferous": ["Having wings."], "Quanzhou": ["A prefecture-level city in Fujian province, China."], "Zhangzhou": ["A prefecture-level city in southern Fujian province, China."], "A.R.": ["Document signed by the addressee of a sending or by another person authorized to do so, and sent to the sender as proof that the item did reach the addressee."], "advice of receipt": ["Document signed by the addressee of a sending or by another person authorized to do so, and sent to the sender as proof that the item did reach the addressee."], "advice of delivery": ["Document signed by the addressee of a sending or by another person authorized to do so, and sent to the sender as proof that the item did reach the addressee."], "AR": ["Document signed by the addressee of a sending or by another person authorized to do so, and sent to the sender as proof that the item did reach the addressee."], "acknowledgement of receipt": ["Document signed by the addressee of a sending or by another person authorized to do so, and sent to the sender as proof that the item did reach the addressee."], "overpass": ["A road, railway, etc. that crosses over another road or railway."], "toothpaste": ["A powder, paste, or liquid for cleaning the teeth.", "A paste or gel dentifrice used with a toothbrush to clean the teeth."], "common noun": ["Word which refers to any member of a class of similar items, can be used as subject or object of a predicate but is not usually used as a substitute for another word as a pronoun does."], "come to existence": ["To begin to be."], "commoner": ["A person who holds no title and is not of noble rank."], "not noble": ["Who is not of noble rank; pertaining to the great masses."], "hand-held fan": ["A hand-held device to agitate or move air or other gas."], "hand fan": ["A hand-held device to agitate or move air or other gas."], "mechanical fan": ["A device that provides air circulation in a closed environment by rotating an helix, in order to cool down someone or something."], "girls' school": ["A school that only accepts female students."], "boys' school": ["A school that only accepts male students."], "Xiamen": ["A city on the southeast coast of China on the the Taiwan Strait."], "Nakh": ["A small family of languages spoken chiefly by the Nakh peoples, in Russia (Chechnya and Ingushetia), in Georgia, and in the Chechen diaspora (mainly in Europe, Middle East and Central Asia)."], "Nakh languages": ["A small family of languages spoken chiefly by the Nakh peoples, in Russia (Chechnya and Ingushetia), in Georgia, and in the Chechen diaspora (mainly in Europe, Middle East and Central Asia)."], "Northeast Caucasian languages": ["A language family spoken in the Russian republics of Dagestan, Chechnya, Ingushetia, northern Azerbaijan, and in northeastern Georgia, as well as in diaspora populations in Russia, Turkey, and the Middle East."], "Nakho-Daghestanian": ["A language family spoken in the Russian republics of Dagestan, Chechnya, Ingushetia, northern Azerbaijan, and in northeastern Georgia, as well as in diaspora populations in Russia, Turkey, and the Middle East."], "Nakho-Dagestanian": ["A language family spoken in the Russian republics of Dagestan, Chechnya, Ingushetia, northern Azerbaijan, and in northeastern Georgia, as well as in diaspora populations in Russia, Turkey, and the Middle East."], "Nakh-Daghestanian": ["A language family spoken in the Russian republics of Dagestan, Chechnya, Ingushetia, northern Azerbaijan, and in northeastern Georgia, as well as in diaspora populations in Russia, Turkey, and the Middle East."], "Nakh-Dagestanian": ["A language family spoken in the Russian republics of Dagestan, Chechnya, Ingushetia, northern Azerbaijan, and in northeastern Georgia, as well as in diaspora populations in Russia, Turkey, and the Middle East."], "North Caucasian languages": ["A language family comprising the Northwest Caucasian family and the Northeast Caucasian family."], "Caucasic": ["A language family comprising the Northwest Caucasian family and the Northeast Caucasian family."], "languages of the Caucasus": ["A large language family spoken in and around the Caucasus Mountains."], "intrinsic": ["Belonging to a thing by its very nature."], "intrinsic motivation": ["Motivation that is driven by an interest or enjoyment in the task itself and not by external pressure."], "satsuma": ["A citrus plant of Japanese origin with seedless and easy-peeling fruit.", "The seedless and easy-peeling fruit of the satsuma plant."], "seedless": ["Having no seeds."], "kidless": ["Having no children."], "parataxis": ["A sequence of main clauses."], "paratactic": ["Pertaining to or using parataxis."], "paratactical": ["Pertaining to or using parataxis."], "hypotaxis": ["The subordination of clauses under a main clause by the use of subordinating conjunctions."], "hypotactic": ["Pertaining to or using hypotaxis."], "asyndeton": ["The deliberate omission of conjunctions from a series of words or clauses."], "dolphinarium": ["An aquarium for dolphins."], "feathered": ["Covered with feathers."], "pennate": ["Covered with feathers."], "pennated": ["Covered with feathers."], "hair conditioner": ["A hair care product that improves the texture and appearance of human hair, usually applied after washing."], "papilla": ["The projection of a mammary gland from which, on female mammals, milk can be secreted."], "banalize": ["To make something banal or commonplace."], "banalise": ["To make something banal or commonplace."], "bell tower": ["A tower in which bells are hung."], "bell ringer": ["Someone who rings bells, e.g. in a church."], "Gallic": ["Of or relating to Gaul."], "imperturbable": ["That cannot be perturbed."], "unshakable": ["That cannot be perturbed.", "Marked by firm determination or resolution; not shakable."], "imperturbably": ["In an imperturbable manner."], "imperturbability": ["The quality of being imperturbable."], "clothing size": ["A symbol or number that indicates the dimensions of a garment."], "salted butter": ["Butter which contains salt."], "chalcopyrite": ["A copper iron sulfide mineral having the chemical composition CuFeS2."], "second hand shop": ["A shop which sells goods that are not new."], "second-hand shop": ["A shop which sells goods that are not new."], "pensioner": ["Someone who lives on a pension."], "Yahoo!": ["A popular destination site on the internet, which includes a search engine and taxonomic organization of the World Wide Web."], "Esperantist": ["A person who speaks or uses Esperanto."], "Kam-Sui languages": ["A branch of the Tai\u2013Kadai languages spoken by the Kam\u2013Sui peoples in eastern Guizhou, western Hunan, and northern Guangxi in southern China."], "Kam-Tai languages": ["A branch of the Tai-Kadai language family regrouping languages spoken in southern China."], "space debris": ["Nonfunctional debris of human origin left in a multitude of orbits about the earth as the result of the exploration and use of the environment lying outside the earth's atmosphere."], "orbital debris": ["Nonfunctional debris of human origin left in a multitude of orbits about the earth as the result of the exploration and use of the environment lying outside the earth's atmosphere."], "space junk": ["Nonfunctional debris of human origin left in a multitude of orbits about the earth as the result of the exploration and use of the environment lying outside the earth's atmosphere."], "be satisfied": ["To be in a state of satisfaction."], "epidemiological": ["Relating to epidemiology."], "epidemiologic": ["Relating to epidemiology."], "vitamin B-12": ["A vitamin that is needed to make red blood cells and DNA (the genetic material in cells) and to keep nerve cells healthy."], "cobalamin": ["A vitamin that is needed to make red blood cells and DNA (the genetic material in cells) and to keep nerve cells healthy."], "campanology": ["The study of bells."], "sepulcher": ["A place (commonly marked with a headstone) where one or more people are buried (usually in a coffin underneath the ground)."], "Parmesan": ["A type of Italien hard cheese made of cow's milk."], "whiteboard": ["A usually white surface on which one can write with non-permanent marker pens."], "markerboard": ["A usually white surface on which one can write with non-permanent marker pens."], "dry-erase board": ["A usually white surface on which one can write with non-permanent marker pens."], "dry-wipe board": ["A usually white surface on which one can write with non-permanent marker pens."], "pen-board": ["A usually white surface on which one can write with non-permanent marker pens."], "greaseboard": ["A usually white surface on which one can write with non-permanent marker pens."], "asterism": ["A grouping of stars forming a pattern when seen from Earth's night sky."], "Coma Berenices": ["A constellation located between Leo, Virgo, Canes Venatici and Ursa Major."], "Berenice's Hair": ["A constellation located between Leo, Virgo, Canes Venatici and Ursa Major."], "Ursa Major": ["A constellation of the northern hemisphere including the Big Dipper and the stars Mizar, Dubhe, and Alkaid."], "Great Bear": ["A constellation of the northern hemisphere including the Big Dipper and the stars Mizar, Dubhe, and Alkaid."], "median age": ["The age that divides a population into two numerically equal groups: half the people are younger than this age and half are older."], "depopulation": ["The reduction of the number of inhabitants in a region."], "population decline": ["The reduction of the number of inhabitants in a region."], "deglobalisation": ["The process of reducing the international exchanges of goods, services, workers, money, etc."], "deglobalization": ["The process of reducing the international exchanges of goods, services, workers, money, etc."], "rural exodus": ["The migration from the countryside to the city in the search of better conditions of life."], "urban drift": ["The growth of urban areas due to migration or population increase."], "year of manufacture": ["The year when something was built or manufactured."], "Gaul": ["A region of Western Europe during the Iron Age and Roman era, encompassing present day France, Luxembourg and Belgium, most of Switzerland, the western part of Northern Italy, as well as the parts of the Netherlands and Germany on the west bank of the Rhine."], "Gauls": ["A Celtic people living in Gaul."], "world cup": ["A competition where individuals or teams from several countries compete for the title of world champion.", "A trophy, often a golden cup, awarded to the winner of world championship."], "world championship": ["A competition where individuals or teams from several countries compete for the title of world champion."], "World Cup": ["A competition where individuals or teams from several countries compete for the title of world champion."], "Song of Roland": ["An epic poem written in the 11th or 12th century in Old French which describes Charlemagnes battle against the Saracens in Spain."], "ice sheet": ["A mass of glacier ice that is greater than 50,000 km\u00b2."], "stressful": ["Causing stress; irritating to the nerves."], "organisational": ["Of, relating to, or produced by an organization."], "brain death": ["The complete and irreversible end of all brain activity."], "braindead": ["Without brain or personality, excessively superficial.", "Being in a state of irreversible loss of brain activity."], "brain-dead": ["Being in a state of irreversible loss of brain activity."], "brain dead": ["Being in a state of irreversible loss of brain activity."], "backhoe loader": ["A vehicle that consists of a tractor fitted with a shovel on the front and a small backhoe on the back."], "loader backhoe": ["A vehicle that consists of a tractor fitted with a shovel on the front and a small backhoe on the back."], "digger": ["A machine used to dig the ground and to lift and carry dirt and debris.", "A vehicle that consists of a tractor fitted with a shovel on the front and a small backhoe on the back."], "backhoe": ["A vehicle that consists of a tractor fitted with a shovel on the front and a small backhoe on the back."], "happy birthday": ["Interjection used to convey the good wishes to someone celebrating his or her birthday."], "Bikol Central": ["A Bikol language spoken in the Bicol Region of the Philippines."], "Central Bikolano": ["A Bikol language spoken in the Bicol Region of the Philippines."], "cocktail dress": ["A type of women's evening dress suitable for semi-formal occasions or cocktail parties."], "Kachin": ["A Tibeto-Burman language mainly spoken in Kachin State, Burma (Myanmar) and Yunnan Province, China."], "macedonia": ["A dessert (served in fruit juice) consisting of various raw, chopped fruits."], "egg salad": ["A salad that contains hard-boiled eggs and a dressing made with yoghurt or mayonnaise."], "tuna salad": ["A salad containing tuna and a dressing."], "Venda": ["A Bantu language and an official language of South Africa."], "house sparrow": ["A small bird with a short bill, and brown, white and gray feathers."], "scriptural": ["Relating to a sacred writing."], "conflagration": ["A violent fire extanding to a large area.", "A large-scale sociopolitical conflict, such as a revolution or a war, involving many people or many countries."], "imprecator": ["A person who wishes for misfortune to happen to someone.", "A person who prays for or invokes evil upon someone."], "Squamish": ["A Coast Salish language spoken by the Squamish people of southwestern British Columbia, Canada."], "South Sudan": ["A country in East Africa bordered by Ethiopia to the east, Kenya to the southeast, Uganda to the south, the Democratic Republic of the Congo to the southwest, the Central African Republic to the west, and the Republic of the Sudan to the north."], "Republic of South Sudan": ["A country in East Africa bordered by Ethiopia to the east, Kenya to the southeast, Uganda to the south, the Democratic Republic of the Congo to the southwest, the Central African Republic to the west, and the Republic of the Sudan to the north."], "Port Louis": ["The largest city and capital of Mauritius."], "georgic": ["Referring to agriculture.", "A didactic poem about farming."], "coal-black": ["Of the blackest black."], "jet-black": ["Of the blackest black."], "jetty": ["Of the blackest black."], "Sabaean": ["An Old South Arabian language spoken from c. 1000 BC to the 6th century AD, by the Sabaeans."], "Sabaic": ["An Old South Arabian language spoken from c. 1000 BC to the 6th century AD, by the Sabaeans."], "Himyarite": ["An Old South Arabian language spoken from c. 1000 BC to the 6th century AD, by the Sabaeans."], "Himyaritic": ["An Old South Arabian language spoken from c. 1000 BC to the 6th century AD, by the Sabaeans."], "Sabean": ["An Old South Arabian language spoken from c. 1000 BC to the 6th century AD, by the Sabaeans."], "Sab\u00e6an": ["An Old South Arabian language spoken from c. 1000 BC to the 6th century AD, by the Sabaeans."], "Minaean": ["An Old South Arabian language spoken between 1200 BC and AD 100."], "Madhabic": ["An Old South Arabian language spoken between 1200 BC and AD 100."], "Qatabanian": ["An Old South Arabian language spoken between 800 BC and 200 AD."], "Qatabanic": ["An Old South Arabian language spoken between 800 BC and 200 AD."], "Hadramautic": ["An Old South Arabian language spoken between 100 BC and 600 AD."], "Hadrami": ["An Old South Arabian language spoken between 100 BC and 600 AD."], "Hadhramautic": ["An Old South Arabian language spoken between 100 BC and 600 AD."], "e-book reader": ["A portable device designed for reading e-books."], "e-book device": ["A portable device designed for reading e-books."], "e-reader": ["A portable device designed for reading e-books."], "Mor\u00e9": ["An endangered Chapacuran language spoken in the Beni Department of Bolivia."], "thighbone": ["The bone that extends from the pelvis to the knee in the vertebrate tetrapods, including humans."], "poikilotherm": ["(Zoology) Having a body temperature that varies according to the outside temperature."], "poikilothermic": ["(Zoology) Having a body temperature that varies according to the outside temperature."], "tsunamite": ["A deposit resulting from the effects of the pressure waves of a tsunami on the sediments."], "sedimentological": ["Relating to sedimentology."], "sedimentologically": ["In a sedimentological manner."], "Kwakwaka'wakw": ["An indigenous people of America who live in British Columbia on and around northern Vancouver Island."], "Kwak'wala": ["An indigenous language of the Wakashan family spoken by the Kwakwaka'wakw on northern Vancouver Island."], "Kwagiutl": ["An indigenous language of the Wakashan family spoken by the Kwakwaka'wakw on northern Vancouver Island."], "Wari'": ["A Chapacuran language spoken by the Wari' people of the Brazilian\u2013Bolivian border region of the Amazon."], "Orowari": ["A Chapacuran language spoken by the Wari' people of the Brazilian\u2013Bolivian border region of the Amazon."], "Wari": ["A Chapacuran language spoken by the Wari' people of the Brazilian\u2013Bolivian border region of the Amazon."], "Paca\u00e1 Novo": ["A Chapacuran language spoken by the Wari' people of the Brazilian\u2013Bolivian border region of the Amazon."], "Paca\u00e1s Novos": ["A Chapacuran language spoken by the Wari' people of the Brazilian\u2013Bolivian border region of the Amazon."], "Pakaa Nova": ["A Chapacuran language spoken by the Wari' people of the Brazilian\u2013Bolivian border region of the Amazon."], "Paka\u00e1snovos": ["A Chapacuran language spoken by the Wari' people of the Brazilian\u2013Bolivian border region of the Amazon."], "Jaminjung": ["An Australian language spoken around the Victoria River in the Northern Territory of Australia."], "handmade": ["Manufactured by hand, without using a machine."], "handcrafted": ["Manufactured by hand, without using a machine."], "sexagenarian": ["A person who is older than 60 and younger than 70 years old.", "Being older than 60 and younger than 70 years old."], "supernumerary": ["More than the expected or required number.", "More than is needed, desired, or required."], "white dwarf": ["A small and very dense star composed mostly of electron-degenerate matter."], "degenerate dwarf": ["A small and very dense star composed mostly of electron-degenerate matter."], "WD": ["A small and very dense star composed mostly of electron-degenerate matter."], "machine": ["A device able to perform a particular, more or less complex, job."], "Tsez": ["A Northeast Caucasian language spoken by the Tsez, a Muslim people in the mountainous Tsunta district of southern and western Dagestan in Russia."], "apple scab": ["A disease to Malus trees, such as apple trees, caused by the ascomycete fungus Venturia inaequalis."], "Port Victoria": ["The capital city of the Seychelles."], "boarding gate": ["A gate that allows air passengers to go from the terminal to the airplane."], "overbearing": ["Inclined to rule arbitrarily or despotically."], "domineeringly": ["In an overbearing, domineering manner."], "overbearingly": ["In an overbearing, domineering manner."], "three hundred": ["The cardinal number occurring after two hundred ninety-nine and before three hundred one, represented in Arabic numerals as 300."], "mend": ["To change the state of an item (e.g. which was torn or broken) to a working condition again.", "Heal or recover, e.g. by forming a scar.", "To repair a cloth that is unsewn or has a tear."], "Achinese": ["A Malayo-Polynesian language spoken by the indigenous population of the Aceh province in Indonesia, in the northern part of the Sumatra Island."], "Achehnese": ["A Malayo-Polynesian language spoken by the indigenous population of the Aceh province in Indonesia, in the northern part of the Sumatra Island."], "Awakatek": ["A language of Guatemala."], "nodding disease": ["A little-known disease in some African countries which affects children and causes seizures and mental retardation."], "nodding syndrome": ["A little-known disease in some African countries which affects children and causes seizures and mental retardation."], "movie camera": ["A device for recording moving pictures on to film or video."], "Touareg": ["A man of the Tuareg people."], "frambesia tropica": ["Tropical infection of the skin, bones and joints caused by the spirochete bacterium \"Treponema pallidum pertenue\"."], "eusociality": ["A social structure in animals where a group is organized into casts of fertile and sterile individuals."], "eusocial": ["Of or pertaining to a social structure in animals where a group is organized into casts of fertile and sterile individuals."], "Nobel laureate": ["A person who has been awarded a Nobel Prize."], "Guinea worm": ["A nematode that lives under the skin and causes dracunculiasis."], "duststorm": ["Storm or strong wind which carries dust or sand."], "sand storm": ["Storm or strong wind which carries dust or sand."], "haboob": ["Storm or strong wind which carries dust or sand."], "guinea-worm": ["A nematode that lives under the skin and causes dracunculiasis."], "Guinea-worm": ["A nematode that lives under the skin and causes dracunculiasis."], "guinea worm": ["A nematode that lives under the skin and causes dracunculiasis."], "Mississippi River": ["The longest river in the United States."], "overcoat": ["A type of long coat worn over the other garments."], "soft drink": ["A beverage that has had carbon dioxide dissolved into it."], "pop": ["A beverage that has had carbon dioxide dissolved into it."], "soda pop": ["A beverage that has had carbon dioxide dissolved into it."], "carbonated beverage": ["A beverage that has had carbon dioxide dissolved into it."], "rock music": ["A music style characterized by basic drum-beat, generally 4/4 riffs, based on (usually electric) guitar, bass guitar, drums, and vocals."], "four-eyed fish": ["Any fish of the genus Anableps having eyes raised above the top of the head and divided in two different parts, so that they can see below and above the water surface at the same time."], "four-eyed fishes": ["A genus of fishes of the family Anablepidae having eyes raised above the top of the head and divided in two different parts, so that they can see below and above the water surface at the same time."], "sign in": ["To sign a register to indicate that one has arrived (e.g. at an hotel)."], "altar of burnt offering": ["Build high platform upon which Jews used to offer animal sacrifices by fire."], "altar of holocaust": ["Build high platform upon which Jews used to offer animal sacrifices by fire."], "altar of the burnt-offering": ["Build high platform upon which Jews used to offer animal sacrifices by fire."], "brazen altar": ["Build high platform upon which Jews used to offer animal sacrifices by fire."], "altar of brass": ["Build high platform upon which Jews used to offer animal sacrifices by fire."], "bitter melon": ["A plant grown in Asia, Africa and Caribbean which produces an edible and very bitter fruit.", "The fruit of the bitter melon plant."], "bitter gourd": ["A plant grown in Asia, Africa and Caribbean which produces an edible and very bitter fruit."], "Latin Empire": ["A Crusader state founded by the leaders of the Fourth Crusade on lands captured from the Byzantine Empire which existed from 1204\u20131261."], "Latin Empire of Constantinople": ["A Crusader state founded by the leaders of the Fourth Crusade on lands captured from the Byzantine Empire which existed from 1204\u20131261."], "Central American river turtle": ["A nocturnal, aquatic turtle that lives in larger rivers and lakes in Central America."], "Mesoamerican river turtle": ["A nocturnal, aquatic turtle that lives in larger rivers and lakes in Central America."], "sorrowful": ["Filled with grief, sorrow, woe."], "woeful": ["Filled with grief, sorrow, woe."], "mournful": ["Filled with grief, sorrow, woe."], "sorrowfully": ["In a sorrowful, woeful, mournful manner."], "woefully": ["In a sorrowful, woeful, mournful manner."], "mournfully": ["In a sorrowful, woeful, mournful manner."], "Horn of Africa": ["A peninsula in East Africa consisting of the countries of Eritrea, Djibouti, Ethiopia and Somalia."], "Northeast Africa": ["A peninsula in East Africa consisting of the countries of Eritrea, Djibouti, Ethiopia and Somalia."], "Somali Peninsula": ["A peninsula in East Africa consisting of the countries of Eritrea, Djibouti, Ethiopia and Somalia."], "HOA": ["A peninsula in East Africa consisting of the countries of Eritrea, Djibouti, Ethiopia and Somalia."], "adhesive tape": ["A tape coated with an adhesive substance."], "scotch tape": ["A tape coated with an adhesive substance."], "sticky tape": ["A tape coated with an adhesive substance."], "television station": ["An organisation that broadcasts content over television.", "The building from where content is broadcasted over television."], "TV station": ["An organisation that broadcasts content over television.", "The building from where content is broadcasted over television."], "catamite": ["The junior partner in a paederastic relationship."], "Ground beetle": ["A beetle of the Carabidae family."], "Ground beetles": ["A large, cosmopolitan family of beetles. Most of them are shiny black or metallic and have elytras."], "sugar cane": ["A tropical grass of the genus Saccharum having stout, fibrous, jointed stalks, the sap of which is a source of sugar."], "sugarcane": ["A tropical grass of the genus Saccharum having stout, fibrous, jointed stalks, the sap of which is a source of sugar."], "sugar-cane": ["A tropical grass of the genus Saccharum having stout, fibrous, jointed stalks, the sap of which is a source of sugar."], "gratefulness": ["The state of feeling grateful."], "thankfulness": ["The state of feeling grateful."], "ingratitude": ["A lack or absence of gratitude."], "thanklessness": ["A lack or absence of gratitude."], "unthankfulness": ["A lack or absence of gratitude."], "ungratefulness": ["A lack or absence of gratitude."], "ingrate": ["Not expressing gratitude.", "An ungrateful person."], "tedium": ["The state of being bored."], "arch\u00e6opteryx": ["A dinosaur of the species Archaeopteryx lithographica having wings and feathers."], "archaeopteryx": ["A dinosaur of the species Archaeopteryx lithographica having wings and feathers."], "archaiopteryx": ["A dinosaur of the species Archaeopteryx lithographica having wings and feathers."], "archeopteryx": ["A dinosaur of the species Archaeopteryx lithographica having wings and feathers."], "countess": ["The wife of a count or earl, or the female ruler of a county."], "hemeralopia": ["The inability to see in bright light."], "day blindness": ["The inability to see in bright light."], "nyctalopic": ["Unable to see clearly in low light."], "night vision": ["The ability to see clearly in low light conditions."], "oil palm": ["A tree belonging to the Arecaceae family which is used to produce palm oil."], "coconut palm": ["A tropical tree with feathery leaves which bears coconuts."], "palm oil": ["Vegetable oil that is extracted from the pulp of the oil palm."], "cystic fibrosis": ["A recessive genetic disease which affects the entire body, causing progressive disability and often early death."], "mucoviscidosis": ["A recessive genetic disease which affects the entire body, causing progressive disability and often early death."], "cephalometry": ["The measurement of the human head by imaging."], "cephalometric": ["Relating to cephalometry."], "cephalometer": ["A device for measuring a human head."], "endometrium": ["The mucus membrane that lines the uterus in mammals and in which fertilized eggs are implanted."], "endometrial": ["Of or pertaining to the endometrium."], "itch": ["An unpleasant sensation on the skin that provokes the desire to scratch.", "To feel the need to scratch."], "gravimetric": ["Relating to the measurement of the local gravity."], "gravimeter": ["A device to measure the local gravity."], "gravimetry": ["The measurement of local gravity."], "maned rat": ["A nocturnal, long-haired and bushy-tailed East African rodent."], "crested rat": ["A nocturnal, long-haired and bushy-tailed East African rodent."], "service-oriented computing": ["An umbrella term that represents a new generation distributed computing platform encompassing its own design paradigm and design principles, design pattern catalogs, pattern languages, a distinct architectural model, and related concepts, technologies, and frameworks."], "itchy": ["Having a sensation that provokes the need to scratch."], "pruritic": ["Having a sensation that provokes the need to scratch."], "ouabain": ["A poisonous cardiac glycoside."], "g-strophanthin": ["A poisonous cardiac glycoside."], "glioblastoma": ["An aggressive malignant brain tumor which is very difficult to treat."], "Wiradjuri": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Warandgeri": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Werogery": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wiiratheri": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wira-Athoree": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wiradhurri": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wiraduri": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wiraidyuri": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wirajeree": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wirashuri": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wiratheri": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wirracharee": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wirrai'yarrai": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wooragurie": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Wordjerg": ["An extinct Pama\u2013Nyungan language of the Wiradhuric subgroup formerly spoken in \\tNew South Wales, Australia."], "Liburnian": ["An extinct Indo-European language in the Centum group which was spoken by the ancient Liburnians, who occupied Liburnia in classical times.", "A member of an ancient Illyrian tribe inhabiting Liburnia."], "Liburnians": ["An ancient Illyrian tribe inhabiting Liburnia."], "Liburnia": ["A region along the northeastern Adriatic coast in Europe, in modern Croatia, occupied by the Liburnians between 11th and 1st century BC."], "radiation hardening": ["A method of designing electronic components to make them resistant to ionizing radiations."], "radiation-hardened": ["(For an electric component) Designed to be resistant to ionizing radiations."], "radiation hardened": ["(For an electric component) Designed to be resistant to ionizing radiations."], "Tunica": ["An extinct language isolate formerly spoken by the Tunica peoples in the Central and Lower Mississippi Valley, USA."], "Ayacucho Quechua": ["A Quechua language spoken in the Ayacucho region of Peru."], "Chanca": ["A Quechua language spoken in the Ayacucho region of Peru."], "Chanka": ["A Quechua language spoken in the Ayacucho region of Peru."], "Cusco Quechua": ["A Southern Quechua language spoken in city and the department of Cusco."], "as much as": ["in the (uncountable) amount that", "at the intensity or degree that"], "houbara bustard": ["A large bird in the bustard family, about 60 cm long, brown above and white below, with a black stripe down the sides of its neck."], "all the best": ["Interjection used to wish someone a good future, especially after a special event (birthday, wedding, etc.)."], "best wishes": ["Interjection used to wish someone a good future, especially after a special event (birthday, wedding, etc.)."], "Hebrides": ["A group of islands off the west coast of Scotland."], "brazen bull": ["A torture and execution device designed in ancient Greece which consisted of a hollow bull into which the condemned were placed and roasted to death by a fire underneath."], "bronze bull": ["A torture and execution device designed in ancient Greece which consisted of a hollow bull into which the condemned were placed and roasted to death by a fire underneath."], "Sicilian bull": ["A torture and execution device designed in ancient Greece which consisted of a hollow bull into which the condemned were placed and roasted to death by a fire underneath."], "tumorous": ["Relating to, or ressembling a tumor."], "tumourous": ["Relating to, or ressembling a tumor."], "tumoral": ["Relating to, or ressembling a tumor."], "fax": ["A document sent over a telephone line.", "A device able to send and receive a document through a telephone line.", "To send a document via a fax machine."], "fax machine": ["A device able to send and receive a document through a telephone line."], "gnocchi": ["Soft dumplings made of flour and semolina or potato or bread crumbs."], "capitalistic": ["Of or relating to capitalism."], "Earl Grey tea": ["A tea blend aromatised with bergamot oil."], "laban": ["A refreshing beverage that consists of yoghurt, cold water and salt."], "ajvar": ["A relish, made principally from red bell peppers, with eggplant, garlic and chili pepper."], "aijvar": ["A relish, made principally from red bell peppers, with eggplant, garlic and chili pepper."], "gudgeon": ["A freshwater fish in the Cyprinidae family, common in northern Eurasia, measuring about 12 cm."], "sand castle": ["A replica of a castle made of sand."], "high treason": ["The crime of disloyalty to one's nation or state."], "Mister": ["A title of respect for an adult male."], "Mr.": ["A title of respect for an adult male."], "Mr": ["A title of respect for an adult male."], "Moroccan Arabic": ["A variant of the Arabic language spoken in Morroco."], "viviparous": ["(For animals) Whose embryos develop inside the body of the mother.", "(For plants) Whose seeds germinate before they detach from the parent."], "viviparity": ["The condition of being viviparous."], "viviparously": ["In a viviparous manner."], "according as": ["at the intensity or degree that"], "gout": ["A medical condition characterized by recurrent attacks of acute inflammatory arthritis \u2014 a red, tender, hot, swollen joint."], "gouty": ["Suffering from gout."], "Houston": ["The largest city in Texas and the fourth-largest in the United States."], "economic rights of the author": ["Exclusive, transferable and usually inheritable power and liberty, recognised to the creator(s) of a literary or artistic work and to his successors in title, to publish, translate, copy, perform etc. it, for free or for a fee."], "siderophile": ["(For a chemical element) That tends to bond with metallic iron."], "crappy": ["Of very poor quality."], "shitty": ["Of very poor quality."], "tatty": ["Of very poor quality."], "bloodsucker": ["Animal that drinks the blood of others sucking it through a puncture wound."], "blood-sucker": ["Animal that drinks the blood of others sucking it through a puncture wound."], "bloodsucking": ["That draws off the blood of another animal."], "sanguivorous": ["That draws off the blood of another animal."], "hematophagy": ["The practice of certain animals of feeding on the blood of other animals."], "haematophagy": ["The practice of certain animals of feeding on the blood of other animals."], "hematophagia": ["The practice of certain animals of feeding on the blood of other animals."], "vichyssoise": ["A creamy potato soup flavored with leeks and onions; usually served cold."], "nigori": ["A variety of sake that is unfiltered and has a cloudy appearance."], "nigori sake": ["A variety of sake that is unfiltered and has a cloudy appearance."], "outdoors": ["In the open, not within a building."], "shower-bath": ["An area in which one bathes underneath a spray of water."], "shower bath": ["An area in which one bathes underneath a spray of water."], "shower curtain": ["A waterproof curtain which prevents water from splashing outside of the shower."], "wine glass": ["A glass stemware that is used to drink wine."], "amazake": ["A traditional sweet, low-alcoholic Japanese drink made from fermented rice."], "grain milk": ["A milk substitute made from fermented grain or from flour."], "rice milk": ["A kind of grain milk made from rice."], "rose window": ["A circular window often found in Gothic churches which is divided into segments that form a pattern."], "Catherine window": ["A circular window often found in Gothic churches which is divided into segments that form a pattern."], "laundry machine": ["A machine, usually automatic, which washes clothes etc."], "clothes washer": ["A machine, usually automatic, which washes clothes etc."], "washer": ["A machine, usually automatic, which washes clothes etc."], "stationery": ["The articles typically sold by stationers, comprising paper, pens, ink, quills, blank books, etc.", "Belonging to, or sold by, a stationer."], "hanger": ["A triangular device made of wire, wood or plastic with a hook on top that is used to store an item of clothing by hanging."], "power plug": ["A device for connecting electrically operated devices to the power supply, having protruding prongs or pins that fit into matching slots or holes in a power socket."], "electrical plug": ["A device for connecting electrically operated devices to the power supply, having protruding prongs or pins that fit into matching slots or holes in a power socket."], "Thai eggplant": ["A variety of eggplant used primarily in Thai cuisine."], "shrimp paste": ["A common ingredient used in Asian cuisine that consists of fermented ground shrimp that is dried in the sun."], "shrimp sauce": ["A common ingredient used in Asian cuisine that consists of fermented ground shrimp that is dried in the sun."], "how old are you?": ["(Informal) What is your age in years?", "(Formal) What is your age in years?"], "vast": ["Large in number or quantity.", "Very large or wide in size."], "tuition": ["The training or instruction provided by a teacher or tutor.", "A sum of money charged for educational instruction during higher education."], "tuition payments": ["A sum of money charged for educational instruction during higher education."], "tuition fees": ["A sum of money charged for educational instruction during higher education."], "four hundred": ["The cardinal number occurring after three hundred ninety-nine and before four hundred one, represented in Arabic numerals as 400."], "Hongkongese": ["From or relating to Hong Kong."], "order food": ["To ask for a specific food to be cooked and served, e.g. in a restaurant."], "text message": ["A brief electronic message sent from a mobile phone."], "SMS": ["A brief electronic message sent from a mobile phone."], "spaghetti squash": ["An oblong variety of squash."], "vegetable spaghetti": ["An oblong variety of squash."], "noodle squash": ["An oblong variety of squash."], "spaghetti marrow": ["An oblong variety of squash."], "squaghetti": ["An oblong variety of squash."], "sly": ["Intelligent, smart and capable of taking advantage of a situation."], "final examination": ["A test or examination given at the end of a term or class."], "Hinduism": ["A religion originating from India including the belief in reincarnation."], "tack": ["A nail with a large head.", "A small nail with a head and a sharp point."], "push pin": ["A nail with a large head."], "study room": ["A room in a house intended for reading and writing."], "varicose vein": ["A permanently enlarged vein due to genetic factors or alterations of the venous circulation."], "variceal": ["Of or pertaining to varicose veins."], "venous": ["Of or pertaining to veins."], "venal": ["Of or pertaining to veins."], "veiny": ["Having prominent veins."], "Omurano": ["An unclassified extinct language from Peru."], "Humurana": ["An unclassified extinct language from Peru."], "Roamaina": ["An unclassified extinct language from Peru."], "Numurana": ["An unclassified extinct language from Peru."], "Umurano": ["An unclassified extinct language from Peru."], "Mayna": ["An unclassified extinct language from Peru."], "nine hundred": ["The cardinal number occurring after eight hundred ninety-nine and before nine hundred one, represented in Arabic numerals as 900."], "cashew": ["A small evergreen tree (Anacardium occidentale) grown for its cashew nuts and cashew apples.", "The edible seed of the cashew tree."], "acajou": ["A small evergreen tree (Anacardium occidentale) grown for its cashew nuts and cashew apples."], "cashew nut": ["The edible seed of the cashew tree."], "semantic satiation": ["A psychological phenomenon in which repetition causes a word or phrase to temporarily lose meaning for the listener."], "razor": ["A bladed tool used for the removal of body hair through the act of shaving."], "shaving razor": ["A bladed tool used for the removal of body hair through the act of shaving."], "semantic saturation": ["A psychological phenomenon in which repetition causes a word or phrase to temporarily lose meaning for the listener."], "7th": ["After the sixth and before the eighth in a sequence."], "palace": ["Official residence of a head of state or other dignitary, especially in a monarchical or imperial governmental system.", "A large and stately mansion."], "VoIP": ["A telecommunication system that uses the Internet protocol to transmit telephone calls."], "voice over Internet protocol": ["A telecommunication system that uses the Internet protocol to transmit telephone calls."], "voice over IP": ["A telecommunication system that uses the Internet protocol to transmit telephone calls."], "Portuguese-based creole": ["A creole language which has been significantly influenced by Portuguese."], "Portuguese creole": ["A creole language which has been significantly influenced by Portuguese."], "Guinea-Bissau Creole": ["A Portuguese-based creole language spoken in Guinea Bissau."], "Bissau-Bolama Creole": ["Dialect of the Guinea-Bissau Creole spoken in and around the city of Bissao."], "Ziguinchor Creole": ["A Portuguese-based creole language spoken in the region of Ziguinchor in Casamance, Senegal."], "Casamance Creole": ["A Portuguese-based creole language spoken in the region of Ziguinchor in Casamance, Senegal."], "Cura\u00e7ole\u00f1o": ["Variety of Papiamento spoken in Cura\u00e7ao."], "Aruban Papiamento": ["Variety of Papiamento spoken in Aruba."], "Arubiano": ["Variety of Papiamento spoken in Aruba."], "Boneriano": ["Variety of Papiamento spoken in Bonaire."], "Bonaire's Papiamentu": ["Variety of Papiamento spoken in Bonaire."], "sugar beet": ["A type of beet whose root contains a high concentration of sucrose."], "passion fruit": ["The edible fruit of the passionflower, a round fruit with a purple or yellow skin which is native to Brazil."], "passionfruit": ["The edible fruit of the passionflower, a round fruit with a purple or yellow skin which is native to Brazil."], "tape measure": ["A measuring instrument consisting of a graduated flexible tape which can be rolled."], "measuring tape": ["A measuring instrument consisting of a graduated flexible tape which can be rolled."], "female teacher": ["A female who passes on knowledge, especially one employed in a school."], "Taos": ["A dialect of the Northern Tiwa language spoken in Taos Pueblo, New Mexico, USA."], "Warlpiri": ["A Ngarrkic language spoken by the Warlpiri people in Australia's Northern Territory."], "pamphlet": ["A booklet without a hard cover or binding."], "washglove": ["Pouch in thick absorbent cloth designed to put one's hand in and wash oneself."], "washing mitt": ["Pouch in thick absorbent cloth designed to put one's hand in and wash oneself."], "tumble drier": ["Household appliance which dries textiles with hot air after washing."], "maid of honor": ["The primary woman who attends the bride at a wedding ceremony."], "snowblind": ["Temporarily blinded by the light reflected off snow."], "snow-blind": ["Temporarily blinded by the light reflected off snow."], "photokeratitis": ["A painful eye condition caused by exposure of insufficiently protected eyes to ultraviolet rays."], "snow blindness": ["Temporary blindness caused by the exposure of unprotected eyes to the ultraviolet rays in bright sunlight reflected from snow or ice."], "pistachio": ["A small tree originally from Persia which produces an edible nut.", "The edible nutlike fruit of the pistachio tree."], "number OLD": ["Do not remove, I need it for reorganisation. Thanks, Kipcool."], "five hundred": ["The cardinal number occurring after four hundred ninety-nine and before five hundred one, represented in Arabic numerals as 500."], "West syndrome": ["A rare epileptic disorder in infants that is difficult to treat."], "West's Syndrome": ["A rare epileptic disorder in infants that is difficult to treat."], "Lennox\u2013Gastaut syndrome": ["A form of epilepsy that develops between the second and sixth year of life and is characterized by frequent seizures and is often accompanied by developmental delay."], "Lennox syndrome": ["A form of epilepsy that develops between the second and sixth year of life and is characterized by frequent seizures and is often accompanied by developmental delay."], "tablecloth": ["A cloth used to cover and protect a table, especially for a dining table.", "A large cloth used to cover a table."], "table cloth": ["A cloth used to cover and protect a table, especially for a dining table."], "table-cloth": ["A cloth used to cover and protect a table, especially for a dining table."], "interictal": ["Between epileptic seizures."], "postictal": ["Occurring after an epileptic seizure."], "tour bus": ["A bus designed for sightseeing tours."], "shopping mall": ["Enclosed area in which there is a variety of shops."], "shopping arcade": ["Enclosed area in which there is a variety of shops."], "shopping precinct": ["Enclosed area in which there is a variety of shops."], "mall": ["Enclosed area in which there is a variety of shops."], "tuberous sclerosis": ["A rare genetic disease that causes non-malignant tumors to grow in the brain, skin, heart, lungs etc."], "gyrus": ["A ridge on the cerebral cortex."], "flax": ["A plant with blue flowers which is cultivated for its edible seeds and for its fibers that are used to make cloth."], "common flax": ["A plant with blue flowers which is cultivated for its edible seeds and for its fibers that are used to make cloth."], "flight attendant": ["A person whose job is to ensure the safety and comfort of passengers aboard flights."], "cabin crew": ["A person whose job is to ensure the safety and comfort of passengers aboard flights."], "steward": ["A person whose job is to ensure the safety and comfort of passengers aboard flights."], "cabin attendant": ["A person whose job is to ensure the safety and comfort of passengers aboard flights."], "double bed": ["A bed designed for two people."], "carbon nanotube": ["An allotrope of carbon in which carbon atoms are linked together in hexagons. These hexagons are connected and form a cylindrical tube-like body."], "lentil soup": ["A soup made of lentils and other vegetables."], "pick up the phone": ["To respond to an incoming telephone call."], "pick the phone up": ["To respond to an incoming telephone call."], "pick up the telephone": ["To respond to an incoming telephone call."], "answer the phone": ["To respond to an incoming telephone call."], "make-up": ["Colored products intended to alter the user's appearance."], "makeup": ["Colored products intended to alter the user's appearance."], "rainforest": ["A forest of broad-leaved, mainly evergreen, trees found in continually moist climates in the tropics, subtropics, and some parts of the temperate zones."], "flaxen": ["Made of or resembling flax fibers.", "Having the yellow brown colour of flax."], "supercilium": ["The hair that grows over the bone ridge above the eye socket."], "brow": ["The hair that grows over the bone ridge above the eye socket."], "eye-lash": ["One of the hairs that grows on the eyelid, around the eyes."], "eyeliner": ["A cosmetic used to draw a dark line around the eyes."], "eye liner": ["A cosmetic used to draw a dark line around the eyes."], "Eastern Uyghur": ["ISO 639-6 entity"], "Standard Xinjiang Uyghur": ["A standardized dialect of the Uyghur language spoken primarily in Xinjiang and written in Arabic script."], "drapetomania": ["A mental illness described in the 19th century that supposedly caused black slaves to flee captivity."], "ladle": ["A type of spoon having a long handle terminating in a deep bowl."], "brew": ["To make beer."], "world market": ["Market that spans the whole world."], "global market": ["Market that spans the whole world."], "homemade": ["Made in the home."], "purebred": ["(Of an animal) Having only ancestors of the same breed.", "An animal which is of pure breed."], "pure-bred": ["(Of an animal) Having only ancestors of the same breed."], "thoroughbred": ["(Of an animal) Having only ancestors of the same breed.", "An animal which is of pure breed."], "truebred": ["(Of an animal) Having only ancestors of the same breed."], "pedigreed": ["(Of an animal) Having only ancestors of the same breed."], "pureblooded": ["Having pure blood, unmixed ancestry."], "pure-blooded": ["Having pure blood, unmixed ancestry."], "mechanical pencil": ["A pencil with a replaceable and mechanically extendable lead."], "propelling pencil": ["A pencil with a replaceable and mechanically extendable lead."], "alligator pear": ["The fruit of an avocado tree (Persea americana)."], "avocado pear": ["The fruit of an avocado tree (Persea americana)."], "butter pear": ["The fruit of an avocado tree (Persea americana)."], "antispasmodic": ["Having the quality of suppressing spasms.", "A drug that suppresses spasms."], "spasmolytic": ["A drug that suppresses spasms."], "polka dot": ["A pattern consisting of many filled circles."], "facial hair": ["Hair that grows on the face, in particular on the chin, the cheeks and around the lips."], "tastebud": ["An organ, usually on the tongue, that allows to perceive taste."], "taste bud": ["An organ, usually on the tongue, that allows to perceive taste."], "lively": ["(For a person) Possessing or exhibiting energy."], "ankyloglossia": ["A congenital oral anomaly that may decrease mobility of the tongue tip and is caused by an unusually short, thick lingual frenulum."], "frenuloplasty": ["The surgical alteration of a frenulum."], "furnished": ["Equipped with furniture."], "main course": ["The central dish in a meal, usually following an entr\u00e9e and followed by a dessert."], "butcher's shop": ["A shop that is specialized in meat and meat products."], "erectile": ["Capable of being set upright.", "Of or relating to tissue capable of filling with blood and becoming rigid, e.g. the penis."], "evolutionary psychology": ["A theoretical approach to psychology that attempts to explain psychological traits as products of natural selection."], "psychological": ["Of or pertaining to psychology."], "psychologic": ["Of or pertaining to psychology."], "psychologically": ["In a psychological manner."], "naked mole rat": ["A eusocial rodent native to parts of East Africa which lives underground."], "sand puppy": ["A eusocial rodent native to parts of East Africa which lives underground."], "desert mole rat": ["A eusocial rodent native to parts of East Africa which lives underground."], "psychological warfare": ["The use of various techniques to demoralize or intimidate an enemy."], "homesick": ["Missing one's home and family very much when away."], "buffet": ["A system of serving meals in which food is placed on a sideboard where the diners generally serve themselves."], "homesickness": ["A strong, sad feeling of missing one's home and family when away."], "bacciferous": ["Producing berries."], "baccate": ["Producing berries."], "brachiation": ["A form of locomotion by swinging from tree to tree using only the arms."], "brachiate": ["To move forward by swinging from branch to branch using only the arms."], "brachiator": ["Animal that can progress by means of brachiation."], "balletic": ["Of or pertaining to ballet."], "laying hen": ["A hen that is kept for its eggs."], "hoof": ["Natural horn covering of an animal's foot.", "The foot of an animal such as a horse, ox or deer."], "hoofed": ["Having a hoof."], "flat-chested": ["(Of a woman) Having small breasts."], "flatchested": ["(Of a woman) Having small breasts."], "grey-haired": ["Having grey hair."], "silver-haired": ["Having grey hair."], "grizzly": ["Having grey hair."], "gray-haired": ["Having grey hair."], "gray": ["To become grey.", "Having a colour between black and white, like ash or stone."], "nape": ["The back part of the neck."], "sore throat": ["Any inflammation of the pharynx that causes soreness."], "throat pain": ["Any inflammation of the pharynx that causes soreness."], "non-smoking": ["Where smoking is not allowed."], "mysteriously": ["In a mysterious manner."], "musicality": ["The quality of being musical."], "movie": ["A sequence of animated images."], "motion picture": ["A sequence of animated images."], "mobile telephone": ["A portable electronic device used for calling people."], "clitoral": ["Of or relating to the clitoris."], "stripper": ["A woman who dances and undresses for money.", "A man who dances and undresses for money."], "male stripper": ["A man who dances and undresses for money."], "reverential": ["Expressing or showing deep respect."], "parcel": ["A package sent through the mail or package delivery."], "coextrusion": ["The extrusion of multiple layers of material simultaneously."], "hot-melt adhesive": ["A thermoplastic adhesive designed to be melted in an electric hot glue gun."], "hot-melt": ["A thermoplastic adhesive designed to be melted in an electric hot glue gun."], "HMA": ["A thermoplastic adhesive designed to be melted in an electric hot glue gun."], "hot glue": ["A thermoplastic adhesive designed to be melted in an electric hot glue gun."], "skin pack": ["A type of packaging where a thin sheet of transparent plastic is placed over a product."], "skin packaging": ["A type of packaging where a thin sheet of transparent plastic is placed over a product."], "skin package": ["A type of packaging where a thin sheet of transparent plastic is placed over a product."], "guide book": ["A book for tourists or travelers that provides details about a geographic location."], "guidebook": ["A book for tourists or travelers that provides details about a geographic location."], "WHO": ["A specialized agency of the United Nations designed as a coordinating authority on international health issues."], "warm-hearted": ["Having affection or warm regard; loving."], "goodhearted": ["Having affection or warm regard; loving."], "what's the time?": ["What is the number of hours and approximate number of minutes since the start of the current day?"], "what time is it?": ["What is the number of hours and approximate number of minutes since the start of the current day?"], "personal physician": ["Physician who is responsible for one patient in particular."], "meconium": ["The first stool of a newborn which consists of materials ingested during the time the infant spends in the uterus."], "macrocephaly": ["A condition in which the head is abnormally large."], "fueling station": ["A facility selling fuel for road motor vehicles."], "gasbar": ["A facility selling fuel for road motor vehicles."], "petrol garage": ["A facility selling fuel for road motor vehicles."], "petrol kiosk": ["A facility selling fuel for road motor vehicles."], "modestly": ["In a modest manner."], "menorrhagia": ["An abnormally heavy and prolonged menstrual period."], "overhead storage compartment": ["A storage compartment located above the seats in an airplane."], "overhead storage bin": ["A storage compartment located above the seats in an airplane."], "hands": ["The two hands of a human being considered collectively."], "feet": ["The two feet of a human being considered collectively."], "personal flotation device": ["A device designed to help a wearer to keep his head above the surface of the water."], "lifejacket": ["A device designed to help a wearer to keep his head above the surface of the water."], "life jacket": ["A device designed to help a wearer to keep his head above the surface of the water."], "life-jacket": ["A device designed to help a wearer to keep his head above the surface of the water."], "life vest": ["A device designed to help a wearer to keep his head above the surface of the water."], "lobby": ["A room in a building which is used for entry from the outside.", "A large, vast room or complex of rooms (in a theatre, opera, concert hall, showroom, cinema, etc.) where the audience members can rest, eat, etc., adjacent to the auditorium.", "A class or group of people who try to lobby or influence public officials; collectively, lobbyists."], "foyer": ["A room in a building which is used for entry from the outside.", "A large, vast room or complex of rooms (in a theatre, opera, concert hall, showroom, cinema, etc.) where the audience members can rest, eat, etc., adjacent to the auditorium."], "entrance hall": ["A room in a building which is used for entry from the outside."], "vestibule": ["A room in a building which is used for entry from the outside."], "megalopolis": ["A chain of roughly adjacent metropolitan areas."], "megapolis": ["A chain of roughly adjacent metropolitan areas."], "megaregion": ["A chain of roughly adjacent metropolitan areas."], "Selkup": ["An extensive dialect continuum of the Uralic language family spoken by the Selkups in Siberia, Russia."], "mesophyte": ["A plant that grows in environments which neither particularly dry nor particularly wet."], "hydrophyte": ["Plant adapted for a partially or completely submerged life."], "Alyutor": ["A language of the Chukotkan branch spoken in the northern part of the Kamchatka Peninsula, Russia."], "xeric plant": ["A plant that is adapted to circumstances where little water is available."], "mesenteric": ["Of or relating to the mesentery."], "magnetize": ["To make magnetic."], "magnetise": ["To make magnetic."], "magnetite": ["A magnetic mineral with the chemical formula Fe3O4."], "Aristotelian": ["A disciple of Aristotle.", "Of or pertaining to the philosophy taught by Aristotle."], "surf the net": ["To browse the Internet."], "steak knife": ["A sharp knife, designed for cutting steak."], "half past": ["Thirty minutes after (a given hour)."], "summer vacation": ["A vacation in the summertime between school years typically lasting between 6 and 12 weeks."], "summer holidays": ["A vacation in the summertime between school years typically lasting between 6 and 12 weeks."], "summer break": ["A vacation in the summertime between school years typically lasting between 6 and 12 weeks."], "tin opener": ["A device for opening cans."], "cortisol": ["A steroid hormone of formula C21H30O5 produced from cholesterol by the cortex of the adrenal gland."], "udder": ["An organ in female quadruped mammals which consists of mammary glands and has several teats."], "archaeologic": ["Of or pertaining to archaeology."], "arch\u00e6ologic": ["Of or pertaining to archaeology."], "archeologic": ["Of or pertaining to archaeology."], "arch\u00e6ological": ["Of or pertaining to archaeology."], "archeological": ["Of or pertaining to archaeology."], "demographical": ["Of or pertaining to demography."], "demographically": ["In a demographic manner."], "aplasia": ["The incomplete development, or absence, of an organ or tissue."], "anthropophagy": ["The eating of human flesh."], "anthropophagic": ["Eating other humans (speaking about a human)."], "man-eating": ["Eating other humans (speaking about a human)."], "attention deficit hyperactivity disorder": ["Behavior disorder originating in childhood in which the essential features are signs of developmentally inappropriate inattention, impulsivity, and hyperactivity."], "ADHD": ["Behavior disorder originating in childhood in which the essential features are signs of developmentally inappropriate inattention, impulsivity, and hyperactivity."], "AD/HD": ["Behavior disorder originating in childhood in which the essential features are signs of developmentally inappropriate inattention, impulsivity, and hyperactivity."], "ADD": ["Behavior disorder originating in childhood in which the essential features are signs of developmentally inappropriate inattention, impulsivity, and hyperactivity."], "chop": ["To cut meat, vegetables or fruits in very small pieces.", "To strike sharply, as in some sports."], "head cook": ["A cook who manages other cooks in an establishment such as a restaurant."], "cross-contamination": ["The transfer of a contaminant from one source to another."], "cross-contaminate": ["To transfer a contaminant from one source to another."], "booking": ["An arrangement made in advance to have something at a certain time where only a limited number are available, such as a seat in a transport, a table at a restaurant or a room in a hotel."], "room service": ["A service available in some hotels where food and other items is brought directly to the guest in their room."], "notebook computer": ["A portable computer that is small enough and light enough to be used on one's lap."], "star-nosed mole": ["A small mole found in wet low areas of eastern Canada and the north-eastern United States which has a prominent snount that serves as a touch organ."], "clarified butter": ["Butter from which the water has been removed."], "ghee": ["Butter from which the water has been removed."], "ghi": ["Butter from which the water has been removed."], "biologically": ["In a biological manner.", "In a biological manner."], "blindly": ["In a blind manner."], "caryatid": ["A sculpted female figure serving as an architectural element, for example a pillar."], "conjunctival": ["Of or relating to the conjunctiva."], "paediatrics": ["The branch of medicine that deals with the medical care of infants, children, and adolescents."], "p\u00e6diatrics": ["The branch of medicine that deals with the medical care of infants, children, and adolescents."], "pediatric": ["Of or pertaining to pediatrics."], "paediatric": ["Of or pertaining to pediatrics."], "entheogen": ["A psychoactive substance used for the purpose of inducing a mystical or spiritual experience."], "unclean": ["Regarded by a religious rule as being, temporarily or permanently, very dirty or in a similar condition, and, as such, banned from the sacred places as well as, if a thing or an animal, from major uses such as being eaten or, if a person, from major activities, such as sexual intercourse or social life among non such people."], "tax-free": ["Exempt from taxation."], "wilt": ["(For a flower or a leaf) To hang downwards and lose its rigidity as a result of lack of water."], "Kamchatka": ["A large peninsula in the Russian Far East."], "Kamchatka Peninsula": ["A large peninsula in the Russian Far East."], "Sea of Okhotsk": ["A marginal sea of the western Pacific Ocean."], "transrectal ultrasonography": ["The imaging of the prostate or other organs by ultrasonography by inserting a probe in the rectum."], "TRUS": ["The imaging of the prostate or other organs by ultrasonography by inserting a probe in the rectum."], "town square": ["An open area in a town, sometimes including the surrounding buildings."], "6th": ["Which comes after the fifth."], "take a picture": ["To obtain an image of someone or something on photographic film or digital format by using photography."], "narcolepsy": ["A chronic sleep disorder characterized by an excessive urge to sleep at inappropriate times."], "eight thousand": ["The cardinal number between seven thousand nine hundred and ninety nine and eight thousand and one."], "seventy-seven": ["The cardinal number immediately following seventy-six and preceding seventy-eight."], "parking space": ["A space that is large enough to park one car."], "red lionfish": ["A venomous coral reef fish natively found in the Indo-Pacific region."], "pinstriped": ["Having pinstripes."], "pin striped": ["Having pinstripes."], "pin-striped": ["Having pinstripes."], "jewelry store": ["A store that sells jewels."], "jewelry shop": ["A store that sells jewels."], "jewellery store": ["A store that sells jewels."], "jewellery shop": ["A store that sells jewels."], "porage": ["A hot breakfast cereal dish made from oatmeal, milk and water heated and stirred until thick."], "parritch": ["A hot breakfast cereal dish made from oatmeal, milk and water heated and stirred until thick."], "tertiary processed food": ["Food so prepared and presented as to be easily and quickly ready for consumption."], "TV dinner": ["A prepackaged frozen or chilled meal that only needs to be heated before eating."], "ready meal": ["A prepackaged frozen or chilled meal that only needs to be heated before eating."], "precook": ["To partially or completely cook in advance."], "precooked": ["Partially or completely cook in advance."], "pre-cooked": ["Partially or completely cook in advance."], "automated teller machine": ["A machine that allows bank customers to withdraw money."], "ATM": ["A machine that allows bank customers to withdraw money."], "automatic teller machine": ["A machine that allows bank customers to withdraw money."], "ATM machine": ["A machine that allows bank customers to withdraw money."], "\u01c0Xam": ["An extinct Khoisan language of South Africa."], "\u01c0Xam Ka\u01c3k\u02bce": ["An extinct Khoisan language of South Africa."], "potassium carbonate": ["Any of several compounds containing potassium, especially soluble compounds such as potassium oxide, potassium chloride, and various potassium sulfates, used chiefly in fertilizers."], "dental floss": ["Thin filament used to clean the areas between the teeth."], "Peloponnesos": ["A large peninsula in southern Greece, forming the part of the country south of the Gulf of Corinth."], "Dutch War of Independence": ["The revolt of the Netherlands against the Spanish king which lasted from 1568 to 1648 and ended with the Netherlands attaining independence."], "marker pen": ["A pen with a wide tip made of felt or fibre."], "marking pen": ["A pen with a wide tip made of felt or fibre."], "Borna disease": ["Infectious disease caused by viruses which leads to abnormal behaviour and death in animals like horses, cattle and sheep."], "colourant": ["A substance used to modify the color of something."], "tincture": ["A substance used to modify the color of something."], "tint": ["To modify the color of something by applying dye."], "specimen": ["A small quantity of a product, typically provided to test that product before obtaining a greater quantity of it."], "hamsters": ["A subfamily of the family Cricetidae, comprising rodents having a pouch on each side of their heads where they store food to be eaten later."], "put on": ["Apply to another thing (e.g. a surface).", "To move or place (anything) so as to get it into or out of a specific location or position."], "Menik": ["A language of the Niger-Congo family spoken in the K\u00e9dougou Region of Eastern Senegal."], "M\u00e9nik": ["A language of the Niger-Congo family spoken in the K\u00e9dougou Region of Eastern Senegal."], "Bedik": ["A language of the Niger-Congo family spoken in the K\u00e9dougou Region of Eastern Senegal."], "Tenda": ["A language of the Niger-Congo family spoken in the K\u00e9dougou Region of Eastern Senegal."], "Tanda": ["A language of the Niger-Congo family spoken in the K\u00e9dougou Region of Eastern Senegal."], "kinesiology": ["The scientific study of the movements of the human body."], "human kinetics": ["The scientific study of the movements of the human body."], "Arabia": ["A peninsula in Southwest Asia at the junction of Africa and Asia consisting mainly of desert."], "Arabian subcontinent": ["A peninsula in Southwest Asia at the junction of Africa and Asia consisting mainly of desert."], "forwarder": ["A person or company that organizes shipments for individuals or other companies."], "freight forwarder": ["A person or company that organizes shipments for individuals or other companies."], "crossroad": ["A place where several roads meet.", "A road that crosses another road."], "cross-road": ["A road that crosses another road."], "cross road": ["A road that crosses another road."], "wavy": ["Whose surface looks like waves."], "waved": ["Whose surface looks like waves."], "inspect": ["To examine carefully."], "propofol": ["A short-acting, intravenously administered, general anaesthetic."], "2,6-diisopropylphenol": ["A short-acting, intravenously administered, general anaesthetic."], "iridology": ["A form of alternative medicine where the iris is used to diagnose medical conditions."], "iridodiagnosis": ["A form of alternative medicine where the iris is used to diagnose medical conditions."], "iridiagnosis": ["A form of alternative medicine where the iris is used to diagnose medical conditions."], "toolbox": ["A collection of subroutines used to develop software.", "A box designed to store and transport tools."], "tool chest": ["A box designed to store and transport tools."], "workbox": ["A box designed to store and transport tools."], "toolkit": ["A collection of subroutines used to develop software."], "long time no see": ["We have not seen each other for a long time."], "sixty-six": ["The cardinal number immediately following sixty-five and preceding sixty-seven."], "four thousand": ["The cardinal number between three thousand nine hundred and ninety nine and four thousand and one."], "tour": ["The act of going to see a city, a monument, a museum, etc."], "lateral gene transfer": ["Any process in which an organism transfers genetic material to another cell that is not its offspring."], "spirit of salt": ["A solution of hydrogen chloride gas in water."], "pancake syrup": ["Syrup made from the sap of the sugar maple (Acer saccharum) or, less frequently, the black maple (Acer nigrum)."], "nonliving": ["Which is not, and has never been, a living organism."], "inanimate": ["Which is not, and has never been, a living organism."], "non-living": ["Which is not, and has never been, a living organism."], "manica": ["A metal arm guard fastened to leather straps, worn by Roman gladiators to protect their right arm."], "VoIP phone": ["A phone using a \"voice over IP\" system to transmit calls."], "IP phone": ["A phone using a \"voice over IP\" system to transmit calls."], "sweet potato": ["A dicotyledonous plant of the family Convolvulaceae, having an edible tuberous root.", "The edible tuberous root of the plant \"Ipomoea batatas\"."], "wasteland": ["A barren land not used for construction or cultivation."], "ballet dancer": ["Male ballet dancer."], "cloud up": ["To become cloudy."], "dinner table": ["A table, usually in a dining room, where people seat to eat a meal."], "dining table": ["A table, usually in a dining room, where people seat to eat a meal."], "dining room table": ["A table, usually in a dining room, where people seat to eat a meal."], "coupon": ["A ticket or document that can be exchanged for a discount or rebate when purchasing a product or service."], "Macau Creole": ["A creole language derived mainly from Malay, Sinhalese, Cantonese, and Portuguese, which is spoken in Macau and Hong Kong."], "hard up": ["Without money."], "Nile": ["A 6,650 km long north-flowing river in North Africa."], "Nile River": ["A 6,650 km long north-flowing river in North Africa."], "Nile Delta": ["A delta in Northern Egypt where the Nile River drains into the Mediterranean Sea."], "lemon verbena": ["A plant in the verbena family which has a powerful lemon scent and whose leaves are used as herb and tea."], "lemon beebrush": ["A plant in the verbena family which has a powerful lemon scent and whose leaves are used as herb and tea."], "hepatosteatosis": ["Accumulation of too much fat inside liver cells."], "eupeptic": ["That aids digestion."], "fennel tea": ["Tea made with fennel seeds."], "gestational diabetes": ["Diabetes which occurs during pregnancy and goes away after giving birth."], "gestational diabetes mellitus": ["Diabetes which occurs during pregnancy and goes away after giving birth."], "gestational": ["Of or pertaining to gestation."], "common vervain": ["A herb native to Europe which is used as a medicinal plant."], "common verbena": ["A herb native to Europe which is used as a medicinal plant."], "mosquito plant": ["A herb native to Europe which is used as a medicinal plant."], "wild hyssop": ["A herb native to Europe which is used as a medicinal plant."], "vervain": ["A herb native to Europe which is used as a medicinal plant."], "mixed martial arts": ["A full contact combat sport that allows the use of both striking and grappling techniques."], "Manx Gaelic": ["An extinct language that was spoken on the isle of Man, currently experiencing a revival."], "blood-thinner": ["A drug that delays the clotting of blood."], "blood thinner": ["A drug that delays the clotting of blood."], "pilot whale": ["An animal of the Globicephala genus, characterized by a distinctive large, bulbous melon."], "pilot whales": ["A genus of the family Delphinidae characterized by a distinctive large, bulbous melon."], "medical doctor": ["A person who has completed a study of medicine, and as such tries to diagnose and cure diseases in patients."], "single bed": ["A bed designed for only one person."], "antitussive": ["Relieving or suppressing coughing.", "Substance that relieves or suppresses coughing."], "Kaya": ["The presumed language of the Gaya confederacy (1st to 6th century CE) in the south of the Korean peninsula."], "parochially": ["In a parochial manner."], "parochial": ["Pertaining to or relating to a parish."], "h\u00e6mophilia": ["Heredity disease where blood clotting is impaired."], "bleeder's disease": ["Heredity disease where blood clotting is impaired."], "Christmas disease": ["Heredity disease where blood clotting is impaired."], "emergency room": ["A medical treatment facility specialized in treating patients that need to be taken care of quickly without prior appointment."], "emergency department": ["A medical treatment facility specialized in treating patients that need to be taken care of quickly without prior appointment."], "accident & emergency": ["A medical treatment facility specialized in treating patients that need to be taken care of quickly without prior appointment."], "A&E": ["A medical treatment facility specialized in treating patients that need to be taken care of quickly without prior appointment."], "ER": ["A medical treatment facility specialized in treating patients that need to be taken care of quickly without prior appointment."], "emergency ward": ["A medical treatment facility specialized in treating patients that need to be taken care of quickly without prior appointment."], "EW": ["A medical treatment facility specialized in treating patients that need to be taken care of quickly without prior appointment."], "casualty department": ["A medical treatment facility specialized in treating patients that need to be taken care of quickly without prior appointment."], "try on": ["To test the look or fit of (a garment) by wearing it."], "hydronephrosis": ["Pathological dilation of the renal pelvis calyces."], "renal pelvis": ["Funnel-shaped membranous pocket, of the mammals' kidney, receiving urine from the renal calyces and continued by the ureter."], "extrasolar": ["Of or originating outside the Solar System."], "extraplanetary": ["Originating, or located outside of a planet."], "extragalactic": ["Originating outside of the Milky Way galaxy."], "hemophilic": ["Of or pertaining to haemophilia."], "haemophilic": ["Of or pertaining to haemophilia."], "h\u00e6mophilic": ["Of or pertaining to haemophilia."], "haemophiliac": ["A person with haemophilia."], "hemophiliac": ["A person with haemophilia."], "h\u00e6mophiliac": ["A person with haemophilia."], "9th": ["One of 9 equal parts of a whole.", "Which comes after the eighth."], "hiccup": ["To have spasms of the diaphragm.", "A spasm of the diaphragm, or the resulting sound."], "have the hiccups": ["To have spasms of the diaphragm."], "blood alcohol test": ["Examination of the blood to determine the amount of alcohol in the blood."], "New England": ["A region in the northeastern corner of the United States consisting of the six states of Maine, New Hampshire, Vermont, Massachusetts, Rhode Island, and Connecticut."], "Pit River language": ["A language of the Palaihnihan family spoken by the Pit River people in northeastern California, USA."], "Russian Oirat": ["A Mongolic language spoken by the Kalmyk people of the Republic of Kalmykia, a federal subject of the Russian Federation."], "Me\u00e4nkieli": ["A Finnish dialect spoken in the northernmost parts of Sweden, around the valley of the Torne River."], "Nanticoke": ["An extinct Algonquian language formerly spoken in Delaware and Maryland, United States."], "Ngarrindjeri": ["An extinct language formerly spoken by the Ngarrindjeri people of the lower Murray River, western Fleurieu Peninsula, and the Coorong of southern, central Australia."], "Yaraldi": ["An extinct language formerly spoken by the Ngarrindjeri people of the lower Murray River, western Fleurieu Peninsula, and the Coorong of southern, central Australia."], "Yaralde Tingar": ["An extinct language formerly spoken by the Ngarrindjeri people of the lower Murray River, western Fleurieu Peninsula, and the Coorong of southern, central Australia."], "Narrinyeri": ["An extinct language formerly spoken by the Ngarrindjeri people of the lower Murray River, western Fleurieu Peninsula, and the Coorong of southern, central Australia."], "Ngarinyeri": ["An extinct language formerly spoken by the Ngarrindjeri people of the lower Murray River, western Fleurieu Peninsula, and the Coorong of southern, central Australia."], "Nottoway-Meherrin": ["An extinct Native American language of the Iroquoian family formerly spoken in Virginia and North Carolina, United States."], "Nottoway": ["An extinct Native American language of the Iroquoian family formerly spoken in Virginia and North Carolina, United States."], "Meherrin": ["An extinct Native American language of the Iroquoian family formerly spoken in Virginia and North Carolina, United States."], "Powhatan": ["An extinct Eastern Algonquian language formerly spoken by the Powhatan people of tidewater Virginia."], "Virginia Algonquian": ["An extinct Eastern Algonquian language formerly spoken by the Powhatan people of tidewater Virginia."], "Tutelo": ["An extinct Ohio Valley Siouan language formerly spoken in Virginia, West Virginia and North Carolina, USA."], "indigo dye": ["A blue dye obtained from certain plants (the indigo plant or woad), or a similar synthetic dye."], "post meridiem": ["After noon."], "PM": ["After noon."], "pm": ["After noon."], "p.m.": ["After noon."], "Internet cafe": ["A place where one can use a computer with Internet access for a fee."], "Internet caf\u00e9": ["A place where one can use a computer with Internet access for a fee."], "cybercaf\u00e9": ["A place where one can use a computer with Internet access for a fee."], "olive oil": ["A vegetable oil made from olives."], "stir-fry": ["To cook something quickly in a small amount of hot oil whilst constantly stirring."], "sweat suit": ["A sportive outfit consisting of a sweatshirt and sweatpants."], "sweatsuit": ["A sportive outfit consisting of a sweatshirt and sweatpants."], "cabin": ["The passenger area of an airplane."], "aircraft cabin": ["The passenger area of an airplane."], "diarrhoea": ["A condition in which the sufferer has frequent and watery bowel movements."], "diarrh\u0153a": ["A condition in which the sufferer has frequent and watery bowel movements."], "insurance company": ["A company which provides a guarantee against most losses or harm to a person, property or a firm in return for premiums paid."], "boardroom": ["A room where the board of a company meets."], "board-room": ["A room where the board of a company meets."], "board room": ["A room where the board of a company meets."], "prion": ["An infectious agent composed of protein in a misfolded form."], "zombic": ["Related to zombies.", "Resembling a zombie."], "colorpuncture": ["A form of alternative medicine in which colored light is shone on acupoints."], "phlogiston": ["A hypothetical substance formerly assumed to be a necessary constituent of combustible bodies and to be given up by them in burning, according to a now obsolete theory"], "platygaeanism": ["Belief that the Earth's shape is a plane or disk."], "platyg\u00e6anism": ["Belief that the Earth's shape is a plane or disk."], "chromotherapy": ["A form of alternative medicine using of color and light to balance bodily \"energy\"."], "congenital heart defect": ["Defect, present at birth, in the structure of the heart or the great vessels near the heart."], "CHD": ["Defect, present at birth, in the structure of the heart or the great vessels near the heart."], "tea-cup": ["A cup in which tea is served."], "tea cup": ["A cup in which tea is served."], "clothing store": ["A store that sells clothes."], "Makassarese": ["A Malayo-Polynesian language spoken in the southern tip of South Sulawesi island in Indonesia."], "Makassar": ["A Malayo-Polynesian language spoken in the southern tip of South Sulawesi island in Indonesia."], "Macassar": ["A Malayo-Polynesian language spoken in the southern tip of South Sulawesi island in Indonesia."], "Makasar written in Latin": ["The Makasar language written with the Latin script."], "Makasar written in Lontara": ["The Makasar language written with the Lontara script."], "Minangkabau": ["A Malayo-Polynesian language spoken by the Minangkabau people in West Sumatra, Riau, Jambi, Bengkulu, North Sumatra, Aceh (Indonesia), Negeri Sembilan (Malaysia)"], "Nias": ["A Malayo-Polynesian language spoken on Nias Island and the Batu Islands."], "Sasak": ["A Malayo-Polynesian language spoken by the Sasak people in Lombok island, Indonesia."], "J\u00e8rriais": ["A Norman language spoken in the island of Jersey."], "Nafaanra": ["A Senufo language spoken in northwest Ghana."], "O'odham": ["An Uto-Aztecan language spoken in southern Arizona and northern Sonora."], "Quillayute": ["A Chimakuan language spoken on the western coast of the Olympic peninsula in Washington state, USA."], "Russia Buryat": ["A Mongolic language spoken in Russia along the northern border of Mongolia."], "gymnasium": ["A building that is designed for indoor sports.", "A large room designed for indoor sports."], "plaid": ["A long piece of tartan fabric, traditionally worn with a kilt.", "A pattern consisting of crossed horizontal and vertical colored bands in woven cloth."], "full plaid": ["A long piece of tartan fabric, traditionally worn with a kilt."], "N\u0268pode": ["An indigenous American language spoken in Peru."], "equestrianism": ["The art, leasure or sport consisting of riding horses."], "horseback riding": ["The art, leasure or sport consisting of riding horses."], "horse riding": ["The art, leasure or sport consisting of riding horses."], "excuse me": ["Interjection used to politely request someone's attention."], "State of Qatar": ["A country in the Middle East with capital Doha."], "Ithkuil": ["A constructed language designed to be unambiguous, concise and logical."], "Ithkuil (romanized)": ["The Ithkuil language written with romanized transcription."], "congestive heart failure": ["The inability of the heart to pump blood at an adequate rate to fill tissue metabolic requirements or the ability to do so only at an elevated filling pressure."], "HF": ["The inability of the heart to pump blood at an adequate rate to fill tissue metabolic requirements or the ability to do so only at an elevated filling pressure."], "CHF": ["The inability of the heart to pump blood at an adequate rate to fill tissue metabolic requirements or the ability to do so only at an elevated filling pressure."], "\u00b0": ["Quantitative marker, usually referred to by a number or a letter, of a scale enabling comparison but not necessarily relevant calculation, because it does not necessarily express a measure."], "desktop computer": ["A personal computer intended to be used on a desk and not moved, as opposed to a laptop."], "desktop": ["A personal computer intended to be used on a desk and not moved, as opposed to a laptop."], "graduation": ["The action of receiving a diploma for having completed a course of study."], "Meridional French": ["Regional variety of French that is influenced by Occitan."], "ovariectomy": ["The surgical removal of one or both ovaries."], "oophorectomy": ["The surgical removal of one or both ovaries."], "lift up": ["To elevate (something) to a higher position."], "ovaritis": ["Inflammation of an ovary."], "lateral ventricle": ["One of the two main cavities full of cerebrospinal fluid in the brain, on each side."], "anterior horn": ["Long part of a lateral ventricle of the brain on the forehead side."], "frontal horn": ["Long part of a lateral ventricle of the brain on the forehead side."], "MILF": ["A woman around 40 years old that is considered sexually attractive."], "British pound": ["The currency of the United Kingdom."], "voice actor": ["An actor who is heard but not seen, such as for an animation, radio, dubbed movie, etc."], "voice talent": ["An actor who is heard but not seen, such as for an animation, radio, dubbed movie, etc."], "power outlet": ["A wall-mounted power socket."], "power point": ["A wall-mounted power socket."], "kinetosis": ["A feeling of nausea or dizziness caused by being in a moving vehicle such as a ship or car."], "motion sickness": ["A feeling of nausea or dizziness caused by being in a moving vehicle such as a ship or car."], "travel sickness": ["A feeling of nausea or dizziness caused by being in a moving vehicle such as a ship or car."], "lily": ["A flowering plant of the genus Lilium."], "weather report": ["A description of the meteorological conditions for a given place and time, in the past or in the future.", "A prediction of future weather, for a specific location."], "caff\u00e8 latte": ["A drink of coffee prepared from one or two shots of espresso mixed with steamed milk and topped with foam."], "check out": ["To give back the key and pay for the room when leaving an hotel."], "business trip": ["A travel caused by business necessities where the place of employment is left temporarily."], "power down": ["To interrupt the operation of a machine by disconnecting it from its source of power."], "struma": ["Enlargement of the thyroid gland."], "beer belly": ["A protruding abdomen (usually in men) attributed to the consumption of beer."], "beer gut": ["A protruding abdomen (usually in men) attributed to the consumption of beer."], "beer muscles": ["A protruding abdomen (usually in men) attributed to the consumption of beer."], "German goitre": ["A protruding abdomen (usually in men) attributed to the consumption of beer."], "German goiter": ["A protruding abdomen (usually in men) attributed to the consumption of beer."], "goitred": ["Having a goiter."], "strumose": ["Having a goiter."], "strumous": ["Having a goiter."], "Hainan gibbon": ["A gibbon species (Nomascus hainanus) that is found only on Hainan Island, China."], "Hainan black crested gibbon": ["A gibbon species (Nomascus hainanus) that is found only on Hainan Island, China."], "work overtime": ["To work outside of one's regular working hours."], "North American bison": ["A wild heavy bison of the species Bison bison, having a broad massive horned head."], "domestic Asian water buffalo": ["A large ungulate, widely used as a domestic animal in Asia."], "measuring worm": ["The caterpillar of the geometer moth."], "geometrid": ["The caterpillar of the geometer moth."], "inchworm": ["The caterpillar of the geometer moth."], "looper": ["The caterpillar of the geometer moth."], "spanworm": ["The caterpillar of the geometer moth."], "tea cosy": ["A cover for a teapot which keeps the beverage warm."], "tea cozy": ["A cover for a teapot which keeps the beverage warm."], "lathyrism": ["A neurological disease characterised by paralysis and emaciation, caused by eating certain legumes of the genus Lathyrus."], "neurolathyrism": ["A neurological disease characterised by paralysis and emaciation, caused by eating certain legumes of the genus Lathyrus."], "self-destructive": ["Causing harm to oneself or to one's interests."], "Pangaea": ["A supercontinent that existed during the Paleozoic and Mesozoic eras, about 250 million years ago, before the present-day continents drifted apart."], "Pang\u00e6a": ["A supercontinent that existed during the Paleozoic and Mesozoic eras, about 250 million years ago, before the present-day continents drifted apart."], "Pangea": ["A supercontinent that existed during the Paleozoic and Mesozoic eras, about 250 million years ago, before the present-day continents drifted apart."], "XTC": ["A chemically modified amphetamine that has hallucinogenic as well as stimulant properties."], "X": ["A chemically modified amphetamine that has hallucinogenic as well as stimulant properties."], "MDMA": ["A chemically modified amphetamine that has hallucinogenic as well as stimulant properties."], "three thousand": ["The cardinal number between two thousand nine hundred and ninety nine and three thousand and one."], "carving knife": ["A large knife used to slice thin cuts of meat."], "explantation": ["The removal of an implant."], "Old West Norse": ["A dialect of Old Norse that was spoken primarily in Norway and Iceland."], "Old East Norse": ["A dialect of Old Norse that was spoken primarily in Denmark and Sweden."], "Western Old Norse": ["A dialect of Old Norse that was spoken primarily in Norway and Iceland."], "Eastern Old Norse": ["A dialect of Old Norse that was spoken primarily in Denmark and Sweden."], "train track": ["A pair of parallel rails providing a runway for the wheels of, e.g., a train."], "railroad track": ["A pair of parallel rails providing a runway for the wheels of, e.g., a train."], "fare": ["Money paid for a transport ticket."], "pumpkin seed oil": ["Oil made of the roasted pumpkin seeds of the Styrian oil pumpkin."], "confetti": ["Small pieces of colored paper generally thrown about at festive occasions."], "staple": ["A metal fastener consisting of a U-shaped wire with two legs that are bent to hold several sheets of paper together.", "To secure or fasten with a staple."], "oversee": ["To be in charge of, direct and control a work done by others."], "beaver hat": ["Man's silk hat with high cylindrical crown."], "cylinder hat": ["Man's silk hat with high cylindrical crown."], "chimney pot hat": ["Man's silk hat with high cylindrical crown."], "stove pipe hat": ["Man's silk hat with high cylindrical crown."], "one-way street": ["A street where the traffic is only allowed to move in one direction."], "muggy": ["(About the weather) Hot and humid."], "newt": ["An aquatic amphibian of the family Salamandridae having a lizard-like body with four equal sized limbs and a tail."], "mentally ill": ["Showing symptoms of mental illness."], "mentally disabled": ["Having cognitive deficits and low intelligence."], "mentally challenged": ["Having cognitive deficits and low intelligence."], "mentally handicapped": ["Having cognitive deficits and low intelligence."], "mentally retarded": ["Having cognitive deficits and low intelligence."], "retarded": ["Having cognitive deficits and low intelligence."], "quack doctor": ["Someone who practices medicine without proper qualifications and/or promotes ineffective medical treatments."], "quacksalver": ["Someone who practices medicine without proper qualifications and/or promotes ineffective medical treatments."], "pick-pocket": ["Thief who steals money and objects from clothes or pockets."], "pickpocketing": ["The stealing of money and objects from peoples' clothes or pockets."], "first class": ["Relating to the most luxurious class of accommodation on a public transport.", "The most luxurious class of accommodation on a public transport."], "self-fulfilling prophecy": ["A prediction that directly or indirectly causes itself to become true."], "Pomeranian": ["A Lechitic language, subgroup of the Slavic languages, spoken in some communes of Pomeranian Voivodeship, Poland."], "middle finger": ["The middle and the longest of the fingers."], "tall finger": ["The middle and the longest of the fingers."], "fuck finger": ["The middle and the longest of the fingers."], "tall man": ["The middle and the longest of the fingers."], "T-shirt": ["A lightweight shirt without buttons, with short sleeves and no collar."], "Common Crane": ["A bird of the family Gruidae, grey with a white streak along the neck."], "Eurasian Crane": ["A bird of the family Gruidae, grey with a white streak along the neck."], "mouthwash": ["A liquid used to rinse one's mouth."], "mouth wash": ["A liquid used to rinse one's mouth."], "gargling fluid": ["A liquid used to rinse one's mouth."], "mouth rinse": ["A liquid used to rinse one's mouth."], "head chef": ["A cook who manages other cooks in an establishment such as a restaurant."], "teethe": ["To grow teeth."], "deciduous teeth": ["The first set of teeth in the growth development of humans and many other mammals."], "computer keyboard": ["An electromechanical device with keys affixed to a base used to enter information and interact with a computer."], "reborner teeth": ["The first set of teeth in the growth development of humans and many other mammals."], "baby teeth": ["The first set of teeth in the growth development of humans and many other mammals."], "temporary teeth": ["The first set of teeth in the growth development of humans and many other mammals."], "primary teeth": ["The first set of teeth in the growth development of humans and many other mammals."], "milk teeth": ["The first set of teeth in the growth development of humans and many other mammals."], "milk tooth": ["A tooth of the first set of teeth."], "milk-tooth": ["A tooth of the first set of teeth."], "deciduous tooth": ["A tooth of the first set of teeth."], "baby tooth": ["A tooth of the first set of teeth."], "temporary tooth": ["A tooth of the first set of teeth."], "primary tooth": ["A tooth of the first set of teeth."], "target audience": ["The group of people that something, for example an advertising campaign, is primarily aimed at."], "lounge room": ["A room in a private house used for general social and leisure activities."], "front room": ["A room in a private house used for general social and leisure activities."], "lounge": ["A room in a private house used for general social and leisure activities."], "North Azerbaijani (Latin)": ["The North Azerbaijani language written with the Latin script."], "North Azerbaijani (Cyrillic)": ["The North Azerbaijani language written with the Cyrillic script."], "file folder": ["An flat organizer made of cardboard or plastic for storing paper documents together."], "chanticleer": ["A male chicken (Gallus gallus domesticus), a domestic bird."], "short-tempered": ["(For a person) Who is easily angered."], "hotheaded": ["(For a person) Who is easily angered."], "quick-tempered": ["(For a person) Who is easily angered."], "vaginal lubrication": ["Liquid secreted by the Bartholin's glands at the opening of the vagina when a woman is sexually aroused."], "chimp": ["A great ape of the genus Pan, native to Africa."], "shelled mollusc": ["Mollusc that has a shell."], "seafood": ["Edible animals from the sea."], "cottage cheese": ["A cheese curd product with a mild flavor which is drained but not pressed and therefore still contains some whey."], "curd cheese": ["A cheese curd product with a mild flavor which is drained but not pressed and therefore still contains some whey."], "slobber": ["To have saliva come out from the mouth."], "drivel": ["To have saliva come out from the mouth."], "slaver": ["To have saliva come out from the mouth.", "A ship used to transport slaves."], "slave ship": ["A ship used to transport slaves."], "Scorpius": ["One of the twelve constellations of the zodiac."], "Malavi": ["A Rajasthani language with ten million speakers spoken in the Malva region of India."], "Mallow": ["A Rajasthani language with ten million speakers spoken in the Malva region of India."], "Malwada": ["A Rajasthani language with ten million speakers spoken in the Malva region of India."], "Malwi": ["A Rajasthani language with ten million speakers spoken in the Malva region of India."], "take off": ["To take something away.", "(For an aircraft) To leave the ground and start flying.", "To take (an article of clothing) away from one's body."], "culinary fruit": ["A botanical fruit that can be eaten raw used as food."], "homemaker": ["A person in charge of the management of a home, and who is not employed outside the home."], "syndactyly": ["A condition wherein two or more digits are fused together."], "Mahorais": ["A person from Mayotte."], "Mahoran": ["Of, from, or relating to Mayotte."], "Classical Nahuatl": ["The Nahuatl language spoken in the Valley of Mexico at the time of the 16th-century Spanish conquest of Mexico."], "unpunished": ["Not punished."], "eyeball": ["The part of the eye having a spherical shape.", "To look at."], "Tarantino": ["A dialect of Sicilian spoken mostly in the town of Taranto of the Apulia region, Italia."], "uncut": ["Not having had the foreskin of the penis cut out."], "circumcised": ["Having had the foreskin of the penis excised."], "circumcise": ["To remove the prepuce from a penis."], "circumcize": ["To remove the prepuce from a penis."], "female nurse": ["A female person who takes care of patients in an hospital, a nursing home, etc."], "economy class": ["The lowest and cheapest class of accommodation on a public transport."], "coach class": ["The lowest and cheapest class of accommodation on a public transport."], "steerage": ["The lowest and cheapest class of accommodation on a public transport."], "standard class": ["The lowest and cheapest class of accommodation on a public transport."], "transclusion": ["The inclusion of part of hypertext document in another one by means of reference rather than copying."], "Arabian Gulf": ["A long, narrow sea between Africa and the Arabian peninsula."], "Gulf of Arabia": ["A long, narrow sea between Africa and the Arabian peninsula."], "all day": ["For the period of an entire day."], "all day long": ["For the period of an entire day."], "timbre": ["The quality of a sound independent of its pitch and volume."], "sour cream": ["Cream which has been treated with a benign bacterium to turn it slightly sour."], "high-alcohol": ["Containing a lot of alcohol."], "sailing vessel": ["A vessel that is powered by the wind."], "gargle": ["To wash one's throat or mouth by holding a liquid in the throat while expelling air out from the lungs.", "To make a sound by holding a liquid in the throat while expelling air out from the lungs to create bubbles."], "flatulate": ["To emit digestive gases through the anus."], "freezing rain": ["Rain which freezes upon contact with the ground."], "Saraiki": ["An Indo-Aryan language spoken in Pakistan."], "Surzhyk": ["A dialect of the Ukrainian language."], "Cascadia": ["An area that includes part of the west coast of United States and Canada, including southeast Alaska, all of British Columbia, Washington, Oregon, Idaho, western Montana and northern California and Nevada."], "hard water": ["The amount of calcium and magnesium salts dissolved in water."], "PVC": ["Polymer of vinyl chloride; tasteless, odourless; insoluble in most organic solvents; a member of the family of vinyl resins."], "cubage": ["The amount of threedimensional space occupied by an object."], "volume unit": ["A unit of measurement of volume."], "VU": ["A unit of measurement of volume."], "cubage unit": ["A unit of measurement of volume."], "blue mahoe": ["A flowering tree in the mallow family native to the islands of Cuba and Jamaica."], "mahoe": ["A flowering tree in the mallow family native to the islands of Cuba and Jamaica."], "Cuban bast": ["A flowering tree in the mallow family native to the islands of Cuba and Jamaica."], "mahagua": ["A flowering tree in the mallow family native to the islands of Cuba and Jamaica."], "majagua": ["A flowering tree in the mallow family native to the islands of Cuba and Jamaica."], "alastrim": ["The milder strain of the variola virus that causes smallpox."], "variola minor": ["The milder strain of the variola virus that causes smallpox."], "cottonpox": ["The milder strain of the variola virus that causes smallpox."], "milkpox": ["The milder strain of the variola virus that causes smallpox."], "whitepox": ["The milder strain of the variola virus that causes smallpox."], "Cuban itch": ["The milder strain of the variola virus that causes smallpox."], "white pox": ["The milder strain of the variola virus that causes smallpox."], "kaffir pox": ["The milder strain of the variola virus that causes smallpox."], "West Indian pox": ["The milder strain of the variola virus that causes smallpox."], "milk pox": ["The milder strain of the variola virus that causes smallpox."], "pseudovariola": ["The milder strain of the variola virus that causes smallpox."], "olm": ["A cave-dwelling amphibian, of the genus Proteus."], "proteus": ["A cave-dwelling amphibian, of the genus Proteus."], "tin ear": ["Insensitivity to and inability to appreciate the elements of performed music or the rhythm, elegance, or nuances of language."], "tone deaf": ["Unable to clearly distinguish the difference in pitch between different notes."], "Dibatchua": ["A language spoken in the Tshopo District of the Democratic Republic of the Congo"], "Kango Pygmy": ["A language spoken in the Tshopo District of the Democratic Republic of the Congo"], "Kibatchua": ["A language spoken in the Tshopo District of the Democratic Republic of the Congo"], "Kikango": ["A language spoken in the Tshopo District of the Democratic Republic of the Congo"], "Likango": ["A language spoken in the Bas-U\u00e9l\u00e9 District of Democratic Republic of the Congo", "A language spoken in the Tshopo District of the Democratic Republic of the Congo"], "kangaroo": ["A marsupial from the family Macropodidae having powerful hind legs and large feet for leaping."], "macropod": ["A marsupial from the family Macropodidae having powerful hind legs and large feet for leaping."], "cooking pot": ["A generic kitchen utensil used for cooking food by boiling, frying or other methods."], "help text": ["An explanation of software functionality for end users."], "wallaby": ["Any of several species of marsupial; usually smaller and stockier than kangaroos."], "genet": ["Any of several Old World nocturnal, carnivorous mammals, of the genus Genetta in the family Viverridae, most of which have a spotted coat and a long, ringed tail.", "A group of genetically identical individuals (plants, fungi, bacteria etc.) that have grown in a given location, all originating from asexual reproduction of a single ancestor."], "from the word go": ["From the very beginning."], "from the outset": ["From the very beginning."], "parthenogenesis": ["A form of asexual reproduction where growth and development of embryos occur without fertilization."], "crybaby": ["A baby that cries excessively.", "Someone who cries easily, often about trivial matters."], "kitchen cabinet": ["A built-in cabinet for storage in a kitchen."], "entr\u00e9e": ["A dish served before the main course."], "shah": ["ruler of certain Southwest Asian and Central Asian countries, especially Persia"], "glucose meter": ["A device for measuring the concentration of glucose in the blood."], "glucometer": ["A device for measuring the concentration of glucose in the blood."], "nestling": ["A young bird of any species, nestling."], "undated": ["Not marked with a date."], "dateless": ["Not marked with a date."], "ice wine": ["A sweet wine made from grapes that are harvested after the first frost."], "icewine": ["A sweet wine made from grapes that are harvested after the first frost."], "dessert wine": ["A sweet wine typically served with dessert."], "female leader": ["A woman who leads, rules, or is in charge."], "bog standard": ["the basic unrefined article"], "plain vanilla": ["the basic unrefined article"], "seagull": ["A seabird of the genus Larus or of the family Laridae."], "gymnastics": ["A sport involving performance of exercises requiring physical strength, flexibility, agility, coordination, and balance."], "five thousand": ["The cardinal number between four thousand nine hundred and ninety nine and five thousand and one."], "ottomy": ["The structure that provides support to an organism, internal and made up of bones and cartilage in vertebrates, external in some other animals."], "armilla": ["Astronomical device that is used to measure celestial coordinates and to display the motion of celestial bodies."], "armil": ["Astronomical device that is used to measure celestial coordinates and to display the motion of celestial bodies."], "physiography": ["The study of the spatial and temporal characteristics and relationships of all phenomena within the Earth's physical environment."], "geosystems": ["The study of the spatial and temporal characteristics and relationships of all phenomena within the Earth's physical environment."], "commute": ["To exchange something old or something that has become unusable for something else of the same kind.", "To travel between one's home and workplace.", "To exchange a penalty for a less severe one."], "king trumpet mushroom": ["Edible mushroom of the genus Pleurotus with firm, white flesh."], "French horn mushroom": ["Edible mushroom of the genus Pleurotus with firm, white flesh."], "king oyster mushroom": ["Edible mushroom of the genus Pleurotus with firm, white flesh."], "boletus of the steppes": ["Edible mushroom of the genus Pleurotus with firm, white flesh."], "smoke like a chimney": ["To smoke tobacco very frequently."], "pedestrian crossing": ["A pedestrian crossing featuring broad white stripes painted parallel to the street."], "crosswalk": ["A pedestrian crossing featuring broad white stripes painted parallel to the street."], "arachnology": ["The scientific study of spiders and related animals such as scorpions, pseudoscorpions, harvestmen, collectively called arachnids."], "garments": ["Clothes considered as a group."], "inkwell": ["A small container for ink."], "inkpot": ["A small container for ink."], "power up": ["To cause to operate by flipping a switch."], "breastpin": ["A piece of jewellery that is pinned to a shirt or jacket."], "itinerary": ["The intended route of a voyage."], "Slovak Republic": ["A country in Central Europe. Borders with Poland, Czechia, Austria, Hungary and Ukraine."], "jailbait": ["A sexually alluring underage girl."], "nymphette": ["A sexually alluring underage girl."], "ice over": ["To become covered by a sheet of ice."], "sportsperson": ["A person who engages in sports."], "salesman": ["A man whose job it is to sell things."], "check in": ["To carry out the necessary formalities when arriving at an hotel, an airport, etc.", "Add some changes to a repository of a revision control system."], "chopping board": ["A board on which food is cut."], "cutting board": ["A board on which food is cut."], "agave nectar": ["A light brown liquid sweetener produced from agave plants."], "agave syrup": ["A light brown liquid sweetener produced from agave plants."], "school year": ["The period of time each year when the school is open and people are studying."], "autotomy": ["The act whereby an animal voluntarily loses a body part."], "self amputation": ["The act whereby an animal voluntarily loses a body part."], "October Revolution": ["The violent overthrow of the government by Communist Russian Bolsheviks in the autumn of 1917."], "Great October Socialist Revolution": ["The violent overthrow of the government by Communist Russian Bolsheviks in the autumn of 1917."], "Red October": ["The violent overthrow of the government by Communist Russian Bolsheviks in the autumn of 1917."], "October Uprising": ["The violent overthrow of the government by Communist Russian Bolsheviks in the autumn of 1917."], "Bolshevik Revolution": ["The violent overthrow of the government by Communist Russian Bolsheviks in the autumn of 1917."], "groundhog": ["A red-brown marmot native to North America."], "whistlepig": ["A red-brown marmot native to North America."], "woodchuck": ["A red-brown marmot native to North America."], "Groundhog Day": ["A holiday celebrated on February 2 in the United States and Canada in which a groundhog predicts whether spring will begin or winter will continue."], "manuscript paper": ["A paper preprinted with staves for writing musical notation."], "staff paper": ["A paper preprinted with staves for writing musical notation."], "music paper": ["A paper preprinted with staves for writing musical notation."], "lemon balm": ["A perennial herb native to southern Europe and the Mediterranean region that is used in herbal teas and as flavouring."], "fan fiction": ["A story written by a fan that continues or expands on a work of fiction, usually without the permission of the original author."], "fanfic": ["A story written by a fan that continues or expands on a work of fiction, usually without the permission of the original author."], "pear tree": ["A tree producing the pear fruit."], "mariology": ["The theological study of Mary, the mother of Jesus."], "Marian": ["Of, or relating to the cult of the Virgin Mary."], "leper house": ["A place where leprous people are isolated from the rest of the population."], "Candlemas": ["A Christian festival that takes place 40 days after Christmas and commemorates the purification of the Virgin Mary and the presentation of Jesus in the Temple."], "Presentation of Jesus at the Temple": ["A Christian festival that takes place 40 days after Christmas and commemorates the purification of the Virgin Mary and the presentation of Jesus in the Temple."], "Ainu (Latin)": ["The Ainu language written with the Latin script."], "Ainu (Katakana)": ["The Ainu language written with the Katakana syllabary."], "carotid artery": ["Either of the two major arteries, one on each side of the neck, that carry blood to the head."], "neckbeard": ["A hairstyle where facial hair is shaven except for the area between the chin and the neck."], "mie goreng": ["Indonesian dish made of fried noodles, vegetables and meat."], "checkered": ["Having a pattern similar to a chessboard."], "echinococcosis": ["A parasitic disease caused by a tapeworm that affects humans and some mammals."], "hydatid disease": ["A parasitic disease caused by a tapeworm that affects humans and some mammals."], "echinococcal disease": ["A parasitic disease caused by a tapeworm that affects humans and some mammals."], "telephone number": ["A sequence of digits used to reach a particular person on a telephone network."], "phone number": ["A sequence of digits used to reach a particular person on a telephone network."], "junkie": ["A drugs addict, someone using drugs.", "A person who is so ardently devoted to something that it resembles an addiction."], "nuclear war": ["A war fought using nuclear weapons."], "pedogenesis": ["The combination of natural processes by which soils are formed."], "irritating": ["Causing vexation, irritation or annoyance."], "pesky": ["Causing vexation, irritation or annoyance."], "troublesome": ["Causing vexation, irritation or annoyance."], "vexatious": ["Causing vexation, irritation or annoyance."], "nightstand": ["A small table located next to the bed."], "night stand": ["A small table located next to the bed."], "night-stand": ["A small table located next to the bed."], "night table": ["A small table located next to the bed."], "fire salamander": ["Amphibian species of the family true salamanders (Salamandridae). It is black with yellow spots or stripes."], "supervisor": ["A person who oversees and directs the work of others."], "line manager": ["A person who oversees and directs the work of others."], "laxative": ["A substance which accelerates defecation."], "ventilator": ["A device that provides air circulation in a closed environment by rotating an helix, in order to cool down someone or something."], "color": ["An attribute of things that results from the light they reflect, transmit, or emit in so far as this light causes a visual sensation that depends on its wavelengths.", "To add color to."], "dieter": ["Person who is on a diet."], "chairperson": ["The presiding officer of a meeting, organization, committee, or other deliberative body."], "presider": ["The presiding officer of a meeting, organization, committee, or other deliberative body."], "eyesight": ["The sense or ability of sight."], "sight": ["The sense or ability of sight."], "zoo": ["Area in which animals, especially wild animals, are kept so that people can go and look at them, or study them."], "bycatch": ["Fish that is caught unintentionally while intending to catch other fish and that is often discarded back into the sea."], "round robin test": ["Tests performed at the same time in different laboratories to validate the quality of the results."], "joint custody": ["Arrangement in which both parents have the custody of a child."], "footrest": ["A piece of furniture or support used to support one's feet."], "footstool": ["A piece of furniture or support used to support one's feet."], "foot stool": ["A piece of furniture or support used to support one's feet."], "foot rest": ["A piece of furniture or support used to support one's feet."], "Skolt Sami": ["An Uralic, Sami language spoken by approximately 400 speakers in Finland, mainly in Sevettij\u00e4rvi."], "Japanese yen": ["The official currency of Japan."], "Dalmatic": ["An extinct Romance language formerly spoken in the Dalmatia region of Croatia, and as far south as Kotor in Montenegro."], "rest": ["To stay the same; to remain in a certain state.", "To cease working, moving or thinking for some time in order to relieve fatigue.", "Relief from work or other activity or responsibility."], "underline": ["To draw a line underneath something, especially to add emphasis."], "underscore": ["To draw a line underneath something, especially to add emphasis."], "Tausug": ["A Malayo-Polynesian language spoken in the province of Sulu in the Philippines, in Malaysia, and in Indonesia by the Taus\u016bg people."], "Taus\u016bg": ["A Malayo-Polynesian language spoken in the province of Sulu in the Philippines, in Malaysia, and in Indonesia by the Taus\u016bg people."], "paper clip": ["A small, folded, wire or plastic device used to hold sheets of paper together."], "biceps brachii": ["A flexor muscle located on the upper arm."], "biceps": ["A flexor muscle located on the upper arm."], "Lingwa de Planeta": ["A constructed language based on the most widely spoken languages of the world, including English, German, French, Spanish, Portuguese, Chinese, Russian, Hindi, Arabic, and Persian."], "Lidepla": ["A constructed language based on the most widely spoken languages of the world, including English, German, French, Spanish, Portuguese, Chinese, Russian, Hindi, Arabic, and Persian."], "forswearing": ["The deliberate giving of false or misleading testimony under oath."], "xenobiotic": ["A substance which would not normally be found in a given environment."], "autonomous verb": ["A verb that can be used without a direct object."], "fire escape": ["A door, ladder, stairs or passage used to evacuate a building in case of fire.", "Stairs designed to be used when a place must be evacuated quickly, such as in case of fire."], "surfactant": ["A substance that, when used in small quantities, modifies the surface properties of liquids or solids."], "river blindness": ["Infection with the filaria Onchocerca volvulus; results in skin tumours, papular dermatitis, and ocular complications."], "Robles' disease": ["Infection with the filaria Onchocerca volvulus; results in skin tumours, papular dermatitis, and ocular complications."], "phytocoenosis": ["Any group of plants belonging to a number of different species that co-occur in the same habitat or area and interact through trophic and spatial relationships; typically characterized by reference to one or more dominant species."], "phytocenosis": ["Any group of plants belonging to a number of different species that co-occur in the same habitat or area and interact through trophic and spatial relationships; typically characterized by reference to one or more dominant species."], "exposure-response relationship": ["The relation between the quantity of a given substance and a measurable or observable effect."], "dose-response relationship": ["The relation between the quantity of a given substance and a measurable or observable effect."], "medical waste": ["Solid waste, both biological and non-biological, produced by hospitals and discarded and not intended for further use."], "clinical waste": ["Solid waste, both biological and non-biological, produced by hospitals and discarded and not intended for further use."], "floor area ratio": ["The ratio of the total floor area of buildings on a certain location to the size of the land of that location."], "floor space index": ["The ratio of the total floor area of buildings on a certain location to the size of the land of that location."], "floor space ratio": ["The ratio of the total floor area of buildings on a certain location to the size of the land of that location."], "FAR": ["The ratio of the total floor area of buildings on a certain location to the size of the land of that location."], "FSI": ["The ratio of the total floor area of buildings on a certain location to the size of the land of that location."], "FSR": ["The ratio of the total floor area of buildings on a certain location to the size of the land of that location."], "site coverage ratio": ["The ratio of the ground surface occupied by a building on a land to the total surface of the land."], "Sahrawi": ["From or relating to Western Sahara.", "A person from Western Sahara."], "whose": ["Of whom, belonging to whom."], "microsleep": ["A brief period of sleep, usually a few seconds, that is the result of sleep deprivation or a medical condition."], "dump": ["A site where garbage is collected and buried."], "garbage dump": ["A site where garbage is collected and buried."], "rubbish dump": ["A site where garbage is collected and buried."], "cafe": ["A business that sells various non-alcoholic drinks, and usually snacks and simple meals (such as breakfasts and lunches) with facilities to consume them."], "overprotective": ["Excessively protective."], "Balinese (Latin)": ["The Balinese language written with the Latin script."], "subordinate": ["A person who is submissive to or controlled by a person of higher class, rank or position."], "tisane": ["Water in which dried plant parts, other than tea leaves, are boiled or steeped."], "ptisan": ["Water in which dried plant parts, other than tea leaves, are boiled or steeped."], "herb tea": ["Water in which dried plant parts, other than tea leaves, are boiled or steeped."], "sightsee": ["To visit landscapes or cities for the pleasure."], "go sightseeing": ["To visit landscapes or cities for the pleasure."], "tissue paper": ["A sheet of paper that absorbs water, used for example to weep wet surfaces."], "absorbent paper": ["A sheet of paper that absorbs water, used for example to weep wet surfaces."], "overflow": ["Any device or structure that conducts excess water or sewage from a conduit or container."], "bulimia": ["An eating disorder characterized by extreme overeating followed by self-induced vomiting."], "bulimia nervosa": ["An eating disorder characterized by extreme overeating followed by self-induced vomiting."], "bulimic": ["Suffering from bulimia nervosa.", "Of, or relating to bulimia nervosa.", "A person suffering from bulimia."], "tropical rainforest": ["A type of forest that occurs roughly within the latitudes 28 degrees north or south of the equator and is characterized by high average temperatures and a significant amount of rainfall."], "Quran": ["The central religious text of Islam."], "Koran": ["The central religious text of Islam."], "Alcoran": ["The central religious text of Islam."], "qur'anic": ["Of, or relating to the Qur'an."], "quranic": ["Of, or relating to the Qur'an."], "verbal adjective": ["A word derived from a verb, that describes a noun."], "verbal adverb": ["A word derived from verb that modifies a verb, by showing a circumstance."], "tocher": ["An amount paid by the parents of a bride to the groom and or his family."], "green belt": ["An area of land around an urban area that is protected from large-scale housing."], "oil drilling": ["Boring a hole for extracting oil."], "perfectionism": ["The ambition to achieve perfection and not accepting anything less."], "perfectionist": ["Someone who strives for perfection and is not willing to accept anything less."], "perfectionistic": ["Striving for perfection."], "lethargic": ["Lacking energy and motivation."], "wall clock": ["A clock mounted on a wall."], "leiomyosarcoma": ["A rare malignant cancer of smooth muscle."], "boxer shorts": ["A type of undergarment worn by men that resembles short pants."], "loose boxers": ["A type of undergarment worn by men that resembles short pants."], "boxers": ["A type of undergarment worn by men that resembles short pants."], "loser": ["A person who did not win."], "shoulder blade": ["A large flat bone located at the back of each shoulder."], "scapula": ["A large flat bone located at the back of each shoulder."], "shoulder bone": ["A large flat bone located at the back of each shoulder."], "medical history": ["The case history of a medical patient as recalled or known by the patient."], "medical record": ["The case history of a medical patient as recalled or known by the patient."], "co-wife": ["In a polygamous marriage, another wife of a woman's husband."], "foster-child": ["A child raised by people who are not its biological or adoptive parents.", "A child raised by his or her wet-nurse and her husband."], "polybromobiphenyl": ["A chemical substance consisting of several bromine atoms attached to biphenyl."], "brominated biphenyl": ["A chemical substance consisting of several bromine atoms attached to biphenyl."], "PBB": ["A chemical substance consisting of several bromine atoms attached to biphenyl."], "likeable": ["Deserving to be loved."], "garden gnome": ["A small statue of a gnome used as a garden ornament."], "blogosphere": ["The set of all blogs and their interconnections."], "cagot": ["A member of a persecuted minority in south-western France."], "Mother": ["Mary, the mother of Jesus (usually as \"Mother of God\")\u00b7"], "proud": ["Feeling greatly pleased, or satisfied by something or someone that is highly honorable, creditable to oneself or a reason for pride.", "Having or showing self-respect.", "Generating a sense of pride; being a cause for pride.", "Having too high an opinion of oneself; showing superiority."], "poker": ["A card game involving betting and individualistic play whereby the winner is determined by comparing the ranks and combinations of his cards with that of the other players."], "senior citizen": ["An older person (usually considered to be above the age of 60)."], "golden silk orb-weaver": ["An araneomorph spider of the genus Nephila whose webs are large and golden-colored."], "golden orb-weaver": ["An araneomorph spider of the genus Nephila whose webs are large and golden-colored."], "giant wood spider": ["An araneomorph spider of the genus Nephila whose webs are large and golden-colored."], "banana spider": ["An araneomorph spider of the genus Nephila whose webs are large and golden-colored."], "sweet pepper": ["A mild fruit of the Capsicum."], "capsicum": ["A mild fruit of the Capsicum."], "Burmese python": ["A dark-coloured python measuring on average 3.7 metres long and native to tropic and subtropic areas of Southern- and Southeast Asia."], "megafauna": ["The large animals of a given region or time, considered as a group."], "megafaunal": ["Of or relating to the megafauna."], "microcurie": ["A unit of radioactivity equal to one millionth of a curie."], "ikaite": ["A mineral mostly composed of hexahydrate of calcium carbonate (CaCO3\u00b76H2O)."], "hypersonic": ["(Of a speed) Equal to or greater than five times the speed of sound.", "(Of a vehicle) Capable of moving at a speed equal to or greater than five times the speed of sound."], "arboricolous": ["Living on or in trees."], "multinational enterprise": ["A business company operating in multiple countries."], "international corporation": ["A business company operating in multiple countries."], "coking": ["The process by which the heavy residuals from oil distillation are transformed into light distillates and petroleum coke."], "biopoiesis": ["The study of how life on Earth emerged from inanimate organic and inorganic molecules."], "abiogeny": ["The study of how life on Earth emerged from inanimate organic and inorganic molecules."], "omnivore": ["An animal which is able to consume both plants and animals."], "herbivorous": ["Feeding only on plants."], "herbivorousness": ["The state or quality of being herbivorous."], "omnivorousness": ["The state or quality of being omnivorous."], "antineutrino": ["An antiparticle of a neutrino."], "antineutron": ["An antiparticle of a neutron."], "neonicotinoid": ["An insecticide which acts on the central nervous system of insects by binding with the postsynaptic nicotinic acetylcholine receptors."], "haughty": ["Having too high an opinion of oneself; showing superiority."], "projector": ["An optical device that projects an image onto a surface."], "image projector": ["An optical device that projects an image onto a surface."], "Peronism": ["An Argentine political movement based on the thought of former President Juan Per\u00f3n."], "Justicialism": ["An Argentine political movement based on the thought of former President Juan Per\u00f3n."], "pornography": ["The explicit portrayal of sexual activity, especially for the purpose of sexual arousal."], "porn": ["The explicit portrayal of sexual activity, especially for the purpose of sexual arousal."], "pornographic": ["Relating to, or containing pornography."], "porny": ["Relating to, or containing pornography."], "Kalashnikov": ["A selective-fire, gas-operated 7.62\u00d739mm assault rifle."], "irredentism": ["A political doctrine advocating annexation of foreign territories on the grounds of history or common ethnicity."], "irredentist": ["An adherent of irredentism.", "Of or relating to irredentism."], "irredenta": ["A foreign region that could be potentially annexed according to irredentism."], "emperor penguin": ["A penguin of the species Aptenodytes forsteri living in Antarctica and measuring about 120 cm."], "king penguin": ["A large penguin, Aptenodytes patagonicus, that lives on the coast of Antarctica and nearby islands"], "Adelie penguin": ["A species of penguin, scientific name Pygoscelis adeliae, with distinctive white rings surrounding the eyes."], "Ad\u00e9lie penguin": ["A species of penguin, scientific name Pygoscelis adeliae, with distinctive white rings surrounding the eyes."], "one-way": ["Allowing the traffic to move in only one direction."], "uni-directional": ["Allowing the traffic to move in only one direction."], "microfinance": ["The supply of financial services to micro-entrepreneurs and small businesses."], "betel": ["A vine of the species \"Piper betle\" whose leaves are chewed for its medicinal properties."], "betel plant": ["A vine of the species \"Piper betle\" whose leaves are chewed for its medicinal properties."], "rickshaw": ["A vehicle consisting of a two-wheeled cart with one or two seats that is pulled by a human runner."], "pulled rickshaw": ["A vehicle consisting of a two-wheeled cart with one or two seats that is pulled by a human runner."], "ricksha": ["A vehicle consisting of a two-wheeled cart with one or two seats that is pulled by a human runner."], "hemiplegic": ["Relating to, or afflicted with hemiplegia.", "A person afflicted with hemiplegia."], "antislavery": ["Person who is opposed to slavery.", "Opposition to slavery."], "anti-slavery": ["Person who is opposed to slavery."], "nanomedicine": ["The medical application of nanotechnology."], "nine thousand": ["The cardinal number between eight thousand nine hundred and ninety nine and nine thousand and one."], "Kutaisi": ["Second largest city of Georgia and capital of the region of Imereti."], "Santali (Latin)": ["The Santali language written with the Latin Script."], "ripe": ["(Of fruits, seeds, etc.) Having reached the stage of development suitable for harvesting and eating."], "ripen": ["(For a fruit, seed, etc.) To become ripe."], "profanation": ["Act not respecting the sacred character of a place, a time, an object, a person etc."], "in order to": ["As a means of achieving the specified aim."], "tumor": ["A palpable or visible abnormal globular structure."], "take a shit": ["To excrete feces from one's body through the anus."], "take a crap": ["To excrete feces from one's body through the anus."], "seduce": ["To induce (a person) to consent to sexual relation.", "To lure or entice away from duty, principles, or proper conduct."], "ba\u015ftan \u00e7\u0131karmak": ["To induce (a person) to consent to sexual relation."], "realise": ["To make real or concrete; give reality or substance to.", "To earn, to gain (money)."], "pull in": ["To earn, to gain (money)."], "bring in": ["To earn, to gain (money)."], "rife": ["Generally accepted, used or practiced at the moment."], "up-to-date": ["Generally accepted, used or practiced at the moment."], "now that": ["As a consequence of."], "in as much as": ["As a consequence of."], "so many": ["In such a high number or quantity."], "Nebuchadnezzar II": ["King of the Neo-Babylonian empire born circa 634 BC, having reigned from c. 605 BC up to his death in 562 BC, and well known to have destroyed the temple of Jerusalem and deported many Jewish notables to Babylon."], "Nebuchadnezzar": ["King of the Neo-Babylonian empire born circa 634 BC, having reigned from c. 605 BC up to his death in 562 BC, and well known to have destroyed the temple of Jerusalem and deported many Jewish notables to Babylon."], "wombat": ["An Australian marsupial of the Vombatidae family having short legs and a short tail and measuring approximately 1 metre in length."], "\u00d8\u200e": ["[The plural indefinite article.]", "[The plural indefinite article, used in a negative construction.]", "[The plural indefinite article, with an adjective that precedes a noun.]", "[The plural partitive article, with an adjective that precedes a noun.]", "An unknown quantity of an uncountable substance."], "graviception": ["The perception of the force of gravity."], "collodictyon": ["A single-celled microscopic organism having four flagella and measuring between 30 and 50 microns."], "undershirt": ["A cloth worn next to the skin under a shirt, having no or very short sleeves."], "cell phone": ["A portable electronic device used for calling people."], "emergency exit": ["An exit used only when a place must be evacuated quickly, such as in case of fire."], "Dione": ["A Greek goddess who was the mother of Aphrodite.", "The fourth largest moon of Saturn."], "wall socket": ["A wall-mounted power socket."], "thrive": ["To grow or develop well and vigorously."], "worth": ["Any admirable quality or attribute.", "Proper to be exchanged for (something mentioned).", "Worthy of being treated in a particular way.", "Making a fair equivalent of, repaying or compensating.", "The amount (of money or goods or services) that is considered to be a fair equivalent for something else"], "to be worth": ["To have (the indicated) value."], "notify": ["To inform (somebody) of something."], "yourself": ["[You; used emphatically, especially to indicate exclusiveness of the referent's participation in the predicate, i.e., that no one else is involved]", "One's own self.", "Your usual, normal, or true self."], "totipotency": ["The ability of a cell to divide and produce all the differentiated cells in an organism."], "contact paper": ["Big sheet of plastic, decorative or just clean on one side, and adhesive on the other."], "ton": ["A unit of measurement for weight or mass equal to 1000 kilograms."], "totipotent": ["(For a cell) Having the ability to divide and produce all the differentiated cells in an organism."], "ptychography": ["A technique used in microscopy where the original image is reconstructed from the observed diffration patterns of electrons, X-rays or visible light."], "Wakon\u00e1": ["An extinct unclassified language of eastern Brazil."], "put forward": ["To maintain or defend opinions, claims, rights, etc.", "To propose (arguments, ideas, etc.) for consideration.", "To put before."], "British thermal unit": ["A unit of energy equal to about 1055 joules."], "BTU": ["A unit of energy equal to about 1055 joules."], "Btu": ["A unit of energy equal to about 1055 joules."], "quarantine": ["The isolation of people who are susceptible to be contagious to prevent an illness from spreading."], "seven thousand": ["The cardinal number between six thousand nine hundred and ninety nine and seven thousand and one."], "mince": ["(Cooking) To cut into very small pieces."], "osmotic": ["Of or relating to osmosis."], "transit": ["The passage of a celestial body between an observer and a larger celestial body such as a star.", "To pass over, across or through something."], "manumission": ["The act of legally releasing from slavery."], "manumit": ["To release legally from slavery."], "manumitter": ["A person who releases one of his slave from bondage or slavery."], "manumittor": ["A person who releases one of his slave from bondage or slavery."], "gladiatorial": ["Of or relating to a gladiator."], "chip card": ["A pocket-sized card with embedded integrated circuits which can process information."], "integrated circuit card": ["A pocket-sized card with embedded integrated circuits which can process information."], "ICC": ["A pocket-sized card with embedded integrated circuits which can process information."], "smart-card": ["A pocket-sized card with embedded integrated circuits which can process information."], "recalcitrance": ["The state of being recalcitrant."], "recalcitrancy": ["The state of being recalcitrant."], "regionalism": ["A word or phrase that is mainly used only in a specific region.", "Political tendency to concede forms of politico-administrative autonomy to regions."], "provincialism": ["A word or phrase that is mainly used only in a specific region."], "welding machine": ["Device that provides an electric current to joint materials, usually metals or thermoplastics, by causing coalescence (most often by melting small parts of them)."], "dermis": ["A layer of skin between the epidermis and subcutaneous tissues."], "OCD": ["A brain disorder that is most commonly characterized by a subject's obsessive drive to perform a particular task or set of tasks, compulsions commonly termed as rituals."], "cutlery": ["The eating and serving utensils such as knives, forks and spoons."], "silverware": ["The eating and serving utensils such as knives, forks and spoons."], "tableware": ["The eating and serving utensils such as knives, forks and spoons."], "tetralogy of Fallot": ["Cardiac congenital defect consisting in a narrowing of the right ventricular outflow tract, a localisation of the aorta valve above the septum, connecting the two ventricles, and a hypertrophy of the right ventricle."], "TOF": ["Cardiac congenital defect consisting in a narrowing of the right ventricular outflow tract, a localisation of the aorta valve above the septum, connecting the two ventricles, and a hypertrophy of the right ventricle."], "raccoon dog": ["A canid of the species Nyctereutes procyonoides which resembles a raccoon."], "magnut": ["A canid of the species Nyctereutes procyonoides which resembles a raccoon."], "tanuki": ["A canid of the species Nyctereutes procyonoides which resembles a raccoon."], "illegality": ["The state of being not permitted by law."], "sandal": ["An open type of outdoor footwear leaving most of the upper part of the foot exposed, particularly the toes."], "twist": ["An angle or sharp curve in the course of a road, river, etc.", "To turn two ends of something in opposite directions."], "Jeru": ["An almost extinct language of the Andaman Islands, India, spoken by the Aka-Jeru people."], "coworker": ["A fellow member of a profession, staff, academic faculty or other organization; an associate."], "two thousand": ["The cardinal number between one thousand nine hundred and ninety nine and two thousand and one."], "anteater": ["A mammal of the suborder Vermilingua having elongated snouts and feeding on ants and termites."], "antbear": ["A mammal of the suborder Vermilingua having elongated snouts and feeding on ants and termites."], "Afghan Persian": ["A dialect of the Persian language spoken in Afghanistan, where it is an official language, and in Pakistan."], "impureness": ["The condition of being impure, because of contamination, pollution, etc."], "polydactylism": ["A congenital physical anomaly in humans having supernumerary fingers or toes."], "hyperdactyly": ["A congenital physical anomaly in humans having supernumerary fingers or toes."], "polydactyl": ["Having more that the normal number of fingers or toes."], "polydactylous": ["Having more that the normal number of fingers or toes."], "nutritionalist": ["A health professional with special training in nutrition who can help with dietary choices."], "Coptic alphabet": ["The script used for writing the Coptic language."], "Coptic script": ["The script used for writing the Coptic language."], "fridge magnet": ["Small ornament including a magnet intended to make it adhere, notably to a fridge door."], "refrigerator magnet": ["Small ornament including a magnet intended to make it adhere, notably to a fridge door."], "echocardiography": ["Sonogram of the heart."], "cardiac ECHO": ["Sonogram of the heart."], "ECHO": ["Sonogram of the heart."], "Aaron the Priest": ["A brother of Moses according to the Bible."], "pastime": ["An activity that a person enjoys doing in their spare time (such as stamp collecting or knitting)."], "bark beetle": ["A beetle of the subfamily Scolytinae that reproduces in the bark of trees."], "marine sponge": ["An member of any of the species belonging to the phylum Porifera. They are marine porous animals."], "washing sponge": ["A piece of porous material used for washing."], "Nheengatu": ["A Tupi language spoken in the Upper Rio Negro region of Amazonas state of Brazil, and in neighboring portions of Colombia and Venezuela."], "North Mbundu": ["A Bantu language spoken by the Ambundu in the north-west of Angola."], "Kimbundu": ["A Bantu language spoken by the Ambundu in the north-west of Angola."], "Gogo-Yimidjir": ["A language of Australia."], "Gugu-Yimidhirr": ["A language of Australia."], "Gugu Yimithirr": ["A language of Australia."], "Guugu Yimidhirr": ["A language of Australia."], "Gugu Yimijir": ["A language of Australia."], "Kukuyimidir": ["A language of Australia."], "Koko Imudji": ["A language of Australia."], "Koko Yimidir": ["A language of Australia."], "Kuku Jimidir": ["A language of Australia."], "Kuku Yimithirr": ["A language of Australia."], "Kuku Yimidhirr": ["A language of Australia."], "Tandroy": ["A dialect of Malagasy spoken in the Toliara Province of Madagascar."], "Tandroy-Mahafaly": ["A dialect of Malagasy spoken in the Toliara Province of Madagascar."], "jet aircraft": ["An aeroplane using jet engines rather than propellers."], "egg cell": ["The female gamete of an animal or plant, capable of fusing with a male gamete to produce a zygote."], "ovum": ["The female gamete of an animal or plant, capable of fusing with a male gamete to produce a zygote."], "railroad station": ["A building in or at which trains stop."], "put to death": ["To kill according to a decision regarded as official, in a situation where the victim or victims have no way to escape or to efficiently defend themselves."], "neo-neuron": ["A neuron that was formed recently."], "hyperparasite": ["A parasite whose host is a parasite."], "palagonitization": ["The process of conversion of lava to palagonite."], "allochthonous": ["Originating in a place other than where it is found."], "methylation": ["The addition or substitution of a methyl group to a substrate."], "demethylation": ["The removal of a methyl group from a substrate."], "Magdalenian": ["The later period of the Upper Paleolithic in Europe, dating from around 15,000 BCE to 7,000 BCE.", "Relating to the later period of the Upper Paleolithic in Europe, dating from around 15,000 BCE to 7,000 BCE."], "do so": ["To act this way. [A pro-verb: word replacing any recent earlier, or implied verb.]"], "lady-bird": ["Any of the Coccinellidae family of beetles, having a round shape and a red or yellow spotted shell."], "lady-bug": ["Any of the Coccinellidae family of beetles, having a round shape and a red or yellow spotted shell."], "ladybug": ["Any of the Coccinellidae family of beetles, having a round shape and a red or yellow spotted shell."], "ladybeetle": ["Any of the Coccinellidae family of beetles, having a round shape and a red or yellow spotted shell."], "lady beetle": ["Any of the Coccinellidae family of beetles, having a round shape and a red or yellow spotted shell."], "lady-beetle": ["Any of the Coccinellidae family of beetles, having a round shape and a red or yellow spotted shell."], "Latvia\u0161u-Formal": ["ISO 639-6 entity"], "dadaism": ["A cultural movement that started in Switzerland and peaked from 1916 to 1922, which rejects reason and logic, prizing nonsense, irrationality and intuition."], "Dada": ["A cultural movement that started in Switzerland and peaked from 1916 to 1922, which rejects reason and logic, prizing nonsense, irrationality and intuition."], "Orange-bellied Parrot": ["A small broad-tailed parrot of the species Neophema chrysogaster endemic to southern Australia."], "Tai L\u00fc": ["A Tai language spoken by the Lu people in China, Laos, Myanmar, Thailand and Viet Nam."], "Tai L\u026f": ["A Tai language spoken by the Lu people in China, Laos, Myanmar, Thailand and Viet Nam."], "Tai Lue": ["A Tai language spoken by the Lu people in China, Laos, Myanmar, Thailand and Viet Nam."], "Tai Le": ["A Tai language spoken by the Lu people in China, Laos, Myanmar, Thailand and Viet Nam."], "diamond jubilee": ["A celebration held to mark the 60th anniversary of an event relating to a person.", "A celebration held to mark the 75th anniversary of an event relating to an institution."], "ping pong": ["A sport where two or four players use a bat to play a small, light plastic ball over a net onto a table."], "round trip": ["A trip consisting of traveling to a destination and then going back to the starting point."], "roundtrip": ["A trip consisting of traveling to a destination and then going back to the starting point."], "AM": ["Between midnight and noon (12:00), when specifying a time in the 12-hour clock notation."], "a.m.": ["Between midnight and noon (12:00), when specifying a time in the 12-hour clock notation."], "swastika": ["An equilateral cross with its arms bent at right angles."], "crooked cross": ["An equilateral cross with its arms bent at right angles."], "hook cross": ["An equilateral cross with its arms bent at right angles."], "angled cross": ["An equilateral cross with its arms bent at right angles."], "gammadion": ["An equilateral cross with its arms bent at right angles."], "tetragammadion": ["An equilateral cross with its arms bent at right angles."], "cross gammadion": ["An equilateral cross with its arms bent at right angles."], "tetraskelion": ["An equilateral cross with its arms bent at right angles."], "darning egg": ["An egg-shaped ovoid of stone, porcelain, wood, or similar hard material, which is inserted into the toe or heel of a sock to hold it in the proper shape and provide a firm foundation for repairs."], "nest egg": ["A natural or artificial egg placed in a bird's nest, to encourage the bird to lay its own eggs there.", "Money put aside for a future need."], "savings": ["Money put aside for a future need."], "A.M.": ["Between midnight and noon (12:00), when specifying a time in the 12-hour clock notation."], "aphasiology": ["The science of the loss of language and speech resulting from a cerebral lesion (aphasia)."], "Bondum": ["A language of Mali."], "Bondum Dogon": ["A language of Mali."], "Bondum Dom": ["A language of Mali."], "Daai": ["A language of Myanmar."], "M\u00fcn": ["A language of Myanmar."], "\u00dctb\u00fc": ["A language of Myanmar."], "Santali (Oriya)": ["The Santali language written with the Oriya Script."], "common glasswort": ["An edible plant of the species Salicornia europaea."], "perennial glasswort": ["A perennial plant of the species Sarcocornia perennis."], "police station": ["A building which serves to accommodate police officers."], "station house": ["A building which serves to accommodate police officers."], "black kite": ["A medium-sized bird of prey of the species Milvus migrans."], "black-crowned night heron": ["A medium-sized heron (Nycticorax nycticorax)."], "black-winged kite": ["A small diurnal bird of prey of the species Elanus caeruleus."], "black-shouldered kite": ["A small bird of prey of the species Elanus axillaris, native to Australia."], "Australian black-shouldered kite": ["A small bird of prey of the species Elanus axillaris, native to Australia."], "white-tailed kite": ["A small bird of prey of the species Elanus leucurus found in western North America and parts of South America."], "letter-winged kite": ["A small bird of prey of the species Elanus scriptus found in central Australia."], "scissor-tailed kite": ["A small African bird of prey of the species Chelictinia riocourii."], "African swallow-tailed kite": ["A small African bird of prey of the species Chelictinia riocourii."], "bat hawk": ["A medium-sized diurnal bird of prey of the species Macheiramphus alcinus."], "pearl kite": ["A very small bird of prey of the species Gampsonyx swainsonii."], "swallow-tailed kite": ["An American bird of prey of the species Elanoides forficatus."], "double-toothed kite": ["A small bird of prey of the species Harpagus bidentatus."], "rufous-thighed kite": ["A bird of prey of the species Harpagus diodon living in subtropical and tropical forests."], "Mississippi kite": ["A small bird of prey of the species Ictinia mississippiensis."], "plumbeous kite": ["A small bird of prey of the species Ictinia plumbea."], "snail kite": ["A bird of prey of the species Rostrhamus sociabilis."], "slender-billed kite": ["A bird of prey of the species Helicolestes hamatus."], "whistling kite": ["A medium-sized diurnal bird of prey of the species Haliastur sphenurus."], "Brahminy kite": ["A medium-sized bird of prey of the species Haliastur indus."], "red-backed sea-eagle": ["A medium-sized bird of prey of the species Haliastur indus."], "yellow-billed kite": ["An African bird of prey of the species Milvus aegyptius."], "square-tailed kite": ["A bird of prey of the species Lophoictinia isura."], "black-breasted buzzard": ["A large bird of prey of the species Hamirostra melanosternon."], "black-breasted kite": ["A large bird of prey of the species Hamirostra melanosternon."], "gray-headed kite": ["A bird of prey of the species Leptodon cayanensis."], "grey-headed kite": ["A bird of prey of the species Leptodon cayanensis."], "white-collared kite": ["A South American bird of prey of the species Leptodon forbesi."], "hook-billed kite": ["A bird of prey of the species Chondrohierax uncinatus."], "cycling": ["The use of bicycles for transport, recreation, or sport."], "bicycling": ["The use of bicycles for transport, recreation, or sport."], "biking": ["The use of bicycles for transport, recreation, or sport."], "coccolith": ["A plate of calcium carbonate formed by coccolithophores which they use for protection."], "Nkumbi": ["A Bantu language of Angola."], "Khumbi": ["A Bantu language of Angola."], "Miltou": ["An East Chadic language spoken in southwestern Chad."], "East Chadic A languages": ["ISO 639-6 entity"], "Sumray-Miltu languages": ["ISO 639-6 entity"], "Sibine": ["An East Chadic language spoken in the southwestern Chadian prefectures of Tandjil\u00e9 and Lai."], "Auk\u0161taitian": ["A dialect of the Lithuanian language, spoken in the regions of Auk\u0161taitija, Dz\u016bkija and Suvalkija in Lithuania."], "Western Auk\u0161taitian": ["A sub-dialect of the Auk\u0161taitian dialect spoken in Suvalkija and in a strip between Samogitia and Auk\u0161taitija."], "Southern Auk\u0161taitian": ["A sub-dialect of the Auk\u0161taitian dialect spoken mostly in Dz\u016bkija."], "Dz\u016bkian": ["A sub-dialect of the Auk\u0161taitian dialect spoken mostly in Dz\u016bkija."], "Eastern Auk\u0161taitian": ["A sub-dialect of the Auk\u0161taitian dialect spoken mostly in Auk\u0161taitija."], "Fate": ["One of the three goddesses (The Fates) of classic European mythology who are said to control the fate of human beings.", "A personification of fate [the power or agency that predetermines events]."], "Fortune": ["Chance, personified; commonly imagined as a mythical creature distributing arbitrarily the outcomes in life to people."], "kismat": ["An outcome, condition or event that is predetermined by fate [the power that predetermines events]."], "kismet": ["An outcome, condition or event that is predetermined by fate [the power that predetermines events]."], "Mareqo": ["An East Cushitic language spoken in the Gurage Zone in Ethiopia."], "Marako": ["An East Cushitic language spoken in the Gurage Zone in Ethiopia."], "ablaqueate": ["To lay bare, as the roots of a tree."], "zedonk": ["The offspring of a male zebra and a female donkey."], "zonkey": ["The offspring of a male zebra and a female donkey."], "zebonkey": ["The offspring of a male zebra and a female donkey."], "zebronkey": ["The offspring of a male zebra and a female donkey."], "zebrinny": ["The offspring of a male zebra and a female donkey."], "zebrula": ["The offspring of a male zebra and a female donkey."], "zebrass": ["The offspring of a male zebra and a female donkey."], "zeedonk": ["The offspring of a male zebra and a female donkey."], "zebadonk": ["The offspring of a male zebra and a female donkey."], "roller chain": ["A chain that has links that mesh with the teeth of a sprocket, designed for transferring power in a machine, such as a bicycle."], "bicycle chain": ["A roller chain that transfers power from the pedals to the drive-wheel of a bicycle, thus propelling it."], "derailleur": ["A mechanism for moving the chain from one sprocket to another to change gears on a multi-speed bicycle."], "derailer": ["A mechanism for moving the chain from one sprocket to another to change gears on a multi-speed bicycle."], "front derailleur": ["Bicycle component that moves the chain across the front sprocket wheels to change the gear ratio."], "rear derailleur": ["Bicycle component that 1) moves the chain across the rear sprockets to change the gear ratio, and 2) takes up chain slack caused by moving the chain to a smaller sprocket at the rear or front sprocket."], "Djaru": ["A Southwest Pama\u2013Nyungan language spoken in the Western Australia."], "Dhay'yi": ["A language of Australia."], "Dhalanyji": ["A Southwest Pama\u2013Nyungan language of Australia."], "Thalantji": ["A Southwest Pama\u2013Nyungan language of Australia."], "seat stay": ["In a bicycle, the support bar that connects the top of the seat tube to where the axle of the rear wheel is attached."], "chain stay": ["In a bicycle, each of the horizontal bar that connects between where the front gearset is attached and where the rear wheels axle is attached."], "head tube": ["In a bicycle, the hollow tube in which the front fork (which holds the front wheel) pivots within."], "down tube": ["In a bicycle, the bar that connects the head tube (in which the front fork pivots) to where the front gearset is attached."], "shock absorber": ["A mechanical device designed to smooth out or damp any sudden shock impulse and dissipate kinetic energy; usually consists of a combination of a spring and a dashpot."], "crankarm": ["In a bicycle, one of the two lever components that attach the bottom bracket spindle to a pedal."], "crank arm": ["In a bicycle, one of the two lever components that attach the bottom bracket spindle to a pedal."], "seatpost": ["In a bicycle, a tube that extends upwards from the bicycle frame to the saddle."], "cogset": ["On a bicycle, the set of multiple rear sprockets that attaches to the hub on the rear wheel."], "chainring": ["In a bicycle, the large forward ring driven by the cranks and pedals, consisting of one or more sprockets, that transfers energy to a wheel through the chain."], "crankset": ["The component of a bicycle, consisting of chainring(s) and crankarms, that converts the reciprocating motion of the rider's legs into rotational motion used to drive the chain, which in turn drives the rear wheel."], "chainset": ["The component of a bicycle, consisting of chainring(s) and crankarms, that converts the reciprocating motion of the rider's legs into rotational motion used to drive the chain, which in turn drives the rear wheel."], "motor home": ["A motor vehicle with interior furnishings suitable for living."], "motor coach": ["A motor vehicle with interior furnishings suitable for living."], "campervan": ["A motor vehicle with interior furnishings suitable for living."], "camper van": ["A motor vehicle with interior furnishings suitable for living."], "caravanette": ["A motor vehicle with interior furnishings suitable for living."], "sprocket": ["A toothed wheel that enmeshes with a chain or other perforated band.", "The tooth of a sprocket [a toothed wheel that enmeshes with a chain]."], "splocket": ["A toothed wheel that enmeshes with a chain or other perforated band."], "traction": ["The act of pulling something along a surface using motive power.", "The pulling power of an engine or animal.", "The adhesive friction of a wheel, etc. on a surface.", "A mechanically applied sustained pull, especially to a limb.", "(Business) The extent of adoption of a new product or service, typically measured in number of customers or level of revenue achieved."], "South Omotic": ["A classification of the omotic group."], "Somotic": ["A classification of the omotic group."], "North Omotic": ["A group of Omotic languages."], "Nomotic": ["A group of Omotic languages."], "Hamer": ["An Omotic language spoken primarily in the southern part of Ethiopia by the Hamer, Banna people, and Karo peoples."], "Sark": ["An island in southwestern English Channel, east of Guernsey."], "Middle Low German": ["A Germanic language spoken from about 1100 to 1600 in the Southern Baltic littoral and south-eastern North Sea littoral."], "seat tube": ["In a bicycle, the tube that contains the seatpost."], "top tube": ["In a bicycle, the tube that connects the top of the head tube to the top of the seat tube."], "seat post": ["The tube that extends upwards from the bicycle frame to the saddle."], "spoke": ["One of the connecting rods between the wheel hub and the rim."], "boarding pass": ["A document that gives a passenger the permission to board an airplane for a particular flight."], "boutique": ["An establishment, either physical or virtual, that sells goods or services to the public."], "eight hundred": ["The cardinal number occurring after seven hundred ninety-nine and before eight hundred one, represented in Arabic numerals as 800."], "common chimpanzee": ["An ape of the species Pan troglodytes."], "robust chimpanzee": ["An ape of the species Pan troglodytes."], "invoice": ["A commercial document issued by a seller to the buyer, indicating products or services already provided to the buyer as well as the corresponding price that the buyer has to pay."], "Laragiya": ["An extinct Australian language isolate formerly spoken near the city of Darwin in northern Australia."], "Larrakiya": ["An extinct Australian language isolate formerly spoken near the city of Darwin in northern Australia."], "Eastern Lisu": ["A Lolo-Burmese language spoken by the Lisu people in the mountainous regions of Burma, Southwest China, Thailand, and the Indian state of Arunachal Pradesh."], "Lorhon": ["A Niger\u2013Congo language of Ivory Coast and Burkina Faso."], "Loghon": ["A Niger\u2013Congo language of Ivory Coast and Burkina Faso."], "Loron": ["A Niger\u2013Congo language of Ivory Coast and Burkina Faso."], "ovule": ["The plant structure containing the female gamete, that develops into a seed after fertilization by a pollen."], "sepal": ["One of the component parts of the calyx of a flower."], "calyx": ["The part of the flower that covers the bud, usually green, that consists of sepals and forms the outermost whorl of the flower."], "perianth": ["Collectively, the sepals and petals of a flower, especially when these two are not distinguishable."], "nectary": ["A nectar-secreting gland in a flower or on another part of a plant"], "filament": ["The stalk of a stamen in a flower, supporting the anther."], "floral axis": ["The stem holding the reproductive flower parts."], "connective": ["In a flower, part of the stamen that connects the lobes of an anther together."], "pedicel": ["A stem that attaches single flowers to the main stem of the inflorescence."], "peduncle": ["A stem that attaches single flowers to the main stem of the inflorescence.", "The stalk supporting an inflorescence, separate from the stem of the plant."], "parietal bone": ["Either of two bones that together form the sides and top of the skull."], "occipital bone": ["The bone at the back of the skull."], "mandible": ["The bone of the lower jaw."], "mandibula": ["The bone of the lower jaw."], "dentary bone": ["The bone of the lower jaw."], "inferior maxillary bone": ["The bone of the lower jaw."], "submaxilla": ["The bone of the lower jaw."], "maxilla": ["Either of the two bones that together form the upper jaw."], "lacrimal bone": ["The smallest and most fragile bone of the face situated near the eye."], "nasal bone": ["Either of two small oblong bones which form, by their junction, \"the bridge\" of the nose."], "ethmoid bone": ["The bone of the skull between the eyes and at the roof of the nose."], "sphenoid bone": ["A bone at the base of the skull behind the eyes."], "temporal bone": ["Either of two bones that collectively make up the sides and base of the skull."], "zygoma": ["Paired bone of the human skull, situated on the lateral edge of the eye sockets."], "hyoid bone": ["A bone in the human neck which supports the tongue."], "palatine bone": ["Either of the two bones that make up the hard palate and situated at the rear of the nasal cavity."], "vomer bone": ["Bone that forms the back of the wall separating the nasal cavities."], "butterfly bone": ["A bone at the base of the skull behind the eyes."], "Burmese alphabet": ["An abugida script in the Brahmic family used in Burma for writing Burmese."], "wheelhouse": ["An enclosed compartment, on the deck of a small vessel such as a fishing boat, from which it may be navigated."], "clear view screen": ["A circular disc of glass, set into the screen of a ship's bridge and spun at high speed by an electric motor in heavy rain or snow; it offers a clear view forward."], "clearview screen": ["A circular disc of glass, set into the screen of a ship's bridge and spun at high speed by an electric motor in heavy rain or snow; it offers a clear view forward."], "handrail": ["A horizontal bar extending between supports and used for support or as a barrier."], "rail": ["A horizontal bar extending between supports and used for support or as a barrier."], "life preserver": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "H-bitt": ["An H-shaped bitt on a ship for securing a rope."], "bitt": ["A strong vertical post of timber or iron, fixed on the deck of a ship, to which the ship's mooring lines etc. are secured."], "cleat": ["A device for securing a rope, attached to a flat surface on a ship or on land, with two projecting horns around which a rope may be quickly affixed and also easily released."], "capstan": ["A mechanical or manual system of rotation in a horizontal plane, for winding a rope, cable, etc. and used to produce a strong pull."], "hull": ["The hollow, lowermost portion of a ship, that is partially submerged and supporting the remainder of the ship.", "To remove the hulls from."], "port": ["The left-hand side of a vessel, including aircraft, when one is facing the front."], "larboard": ["The left-hand side of a vessel, including aircraft, when one is facing the front."], "starboard": ["The right hand side of a vessel or aircraft when facing the front."], "tail shaft": ["In ships, the section of the shaft nearest the propeller."], "Kort nozzle": ["A propeller fitted inside a non-rotating cylinder, used to improve the efficiency of the propeller at low speeds."], "rudder blade": ["The submerged, vertical blade on a rudder."], "gunwale": ["The top surface of the bulwark, usually made of wood, that one holds."], "fairlead": ["A ring, hook or other device used to keep a line or chain running in the correct direction or to prevent it rubbing or fouling."], "Lae": ["An extinct Busu language formerly spoken in the area of Lae of the Morobe Province in Papua New Guinea."], "Lahe": ["An extinct Busu language formerly spoken in the area of Lae of the Morobe Province in Papua New Guinea."], "microsporangium": ["Each of the four lobes of an anther, containing pollen."], "jellyfish": ["A marine animal of the subphylum Medusozoa consisting of a gelatinous umbrella-shaped bell and trailing tentacles."], "pistil": ["A discrete organ in the center of a flower capable of receiving pollen and producing a fruit."], "carpel": ["A discrete organ in the center of a flower capable of receiving pollen and producing a fruit.", "One of the divisions of a compound pistil or fruit."], "tepal": ["One of the component parts of a flower perianth, that is not clearly differentiated into petals and sepals."], "androecium": ["The set of a flower's stamens."], "gynoecium": ["The pistils of a flower considered as a group."], "bake": ["To cook (something) in an oven, but not in fat."], "witty": ["Of high or especially quick cognitive capacity."], "sharp-witted": ["Of high or especially quick cognitive capacity."], "quick-witted": ["Of high or especially quick cognitive capacity."], "Bhil languages": ["A group of Western Indo-Aryan languages spoken by the Bhil people mostly in western and central India."], "Dardic languages": ["A sub-group of the Indo-Aryan languages spoken in northern Pakistan, eastern Afghanistan, and the Indian region of Jammu and Kashmir."], "Indo-Aryan languages": ["A language family originating from India, Pakistan, Bangladesh, Nepal, Sri Lanka and the Maldives."], "Indic languages": ["A language family originating from India, Pakistan, Bangladesh, Nepal, Sri Lanka and the Maldives."], "West Chadic languages": ["A group of languages of the Afro-Asiatic family spoken principally in Niger and Nigeria."], "East Chadic languages": ["A group of languages of the Chadic family spoken in Chad and Cameroon."], "Filaya": ["A West Chadic language spoken in the south-west of Billiri in the Gombe State of Nigeria."], "'Bidio": ["A Chadic language spoken in Chad, in the departments of Gu\u00e9ra, south of Mongo."], "Bidyo": ["A Chadic language spoken in Chad, in the departments of Gu\u00e9ra, south of Mongo."], "Bidio": ["A Chadic language spoken in Chad, in the departments of Gu\u00e9ra, south of Mongo."], "'Bidiyo": ["A Chadic language spoken in Chad, in the departments of Gu\u00e9ra, south of Mongo."], "Bidiyo-Waana": ["A Chadic language spoken in Chad, in the departments of Gu\u00e9ra, south of Mongo."], "Bidiya": ["A Chadic language spoken in Chad, in the departments of Gu\u00e9ra, south of Mongo."], "large goods vehicle": ["A large motor vehicle of more than 3,500 kilograms designed for carrying cargo."], "medium goods vehicle": ["A large motor vehicle of more than 3,500 kilograms designed for carrying cargo."], "LGV": ["A large motor vehicle of more than 3,500 kilograms designed for carrying cargo."], "HGV": ["A large motor vehicle of more than 3,500 kilograms designed for carrying cargo."], "hydraulic pin": ["A device that absorbs the shocks acting on a pulling rope and prevents its breakage."], "hatch": ["A narrow passageway between the decks of a ship or submarine."], "deck": ["The platform covering each of the horizontal sections, or compartments, of a ship.", "To be beautiful to look at."], "main deck": ["The uppermost weatherproof deck, running the full length of a ship."], "morse lamp": ["A blinker lamp for signaling in Morse code."], "foghorn": ["A very loud low-pitched horn, used especially in lighthouses and on large boats."], "ensign": ["The principal flag, emblem or banner flown by a ship to indicate nationality."], "mainmast": ["The chief, and tallest mast of a sailing ship that has more than one mast."], "mast": ["Post of wood or steel, long, round and straight, standing on a ship, intended to carry the sails, flags, floodlights, or communications equipment."], "masthead light": ["A navigation lamp on the highest part of a mast."], "navigation light": ["A light used on a ship or aircraft at night to make it visible."], "L-ascorbic acid": ["A key nutrient that the body needs to fight infection, heal wounds, and keep tissues healthy, including the blood vessels, cartilage, ligaments, tendons, bones, muscle, skin, teeth, and gums."], "L-ascorbate": ["A key nutrient that the body needs to fight infection, heal wounds, and keep tissues healthy, including the blood vessels, cartilage, ligaments, tendons, bones, muscle, skin, teeth, and gums."], "winch": ["A hoisting machine used for loading or discharging cargo, or for hauling in lines."], "Nandi\u2013Markweta languages": ["A group of languages of the Kalenjin branch of the Nilotic language family."], "Nandi languages": ["ISO 639-6 entity"], "Niger-Congo languages": ["A family of African languages spoken roughly in the region of Africa below the Sahara up to South Africa."], "Atlantic\u2013Congo languages": ["A group of Niger\u2013Congo languages having a noun class system."], "Atlantic-Congo languages": ["A group of Niger\u2013Congo languages having a noun class system."], "Benue-Congo languages": ["A group of Atlantic\u2013Congo languages spoken in Subsaharan Africa."], "Bantoid languages": ["A group of Benue\u2013Congo languages including the Bantu languages and similar languages."], "Luhya": ["A group of Bantu languages spoken in the western part of Kenya by the Luhya people."], "Luyia": ["A group of Bantu languages spoken in the western part of Kenya by the Luhya people."], "Luhia": ["A group of Bantu languages spoken in the western part of Kenya by the Luhya people."], "video recorder": ["A device that can record broadcast television programmes, or the images and sounds from a video camera for subsequent playback through a television set."], "lethality": ["The capacity of an illness or some other condition of being lethal."], "case fatality rate": ["The ratio of deaths within a designated population of living beings with a particular condition, over a certain period of time."], "case fatality": ["The ratio of deaths within a designated population of living beings with a particular condition, over a certain period of time."], "fatality rate": ["The ratio of deaths within a designated population of living beings with a particular condition, over a certain period of time."], "subway": ["An electric passenger railway operated in underground tunnels."], "Cotentinais": ["A Norman language spoken in the Cotentin Peninsula."], "Guern\u00e9siais": ["A Norman language spoken in the Channel Island of Guernsey."], "Dg\u00e8rn\u00e9siais": ["A Norman language spoken in the Channel Island of Guernsey."], "Guernsey French": ["A Norman language spoken in the Channel Island of Guernsey."], "Guernsey Norman French": ["A Norman language spoken in the Channel Island of Guernsey."], "Brayon": ["A Norman language spoken in the Pays de Bray, France."], "Augeron": ["A Norman language spoken in the Pays d'Auge of Normandy, France."], "Lieuvin": ["A Norman language spoken in Lieuvin and Evrecin, Normandy, France."], "once removed": ["(A relative who is) one generation apart."], "whether": ["The exactness or the inaccuracy of the hypothesis that [Particle marking the object clause of a cognitive verb as doubtful.]"], "Upper Eastern Amuzgo": ["A dialect of the Amuzgo language spoken in Southwest Oaxaca, Putla District and San Pedro Amuzgos of Mexico."], "Oaxaca Amuzgo": ["A dialect of the Amuzgo language spoken in Southwest Oaxaca, Putla District and San Pedro Amuzgos of Mexico."], "Northern Amuzgo": ["A language of Mexico"], "Xochistlahuaca Amuzgo": ["A language of Mexico"], "Lower Eastern Amuzgo": ["A language of Mexico."], "Uto-Aztecan languages": ["A Native American language family spoken mostly in the Western United States and Mexico."], "Uto-Aztekan languages": ["A Native American language family spoken mostly in the Western United States and Mexico."], "indigenous languages of the Americas": ["A family of languages spoken by indigenous people from Alaska and Greenland to the southern tip of South America."], "Southern Uto-Aztecan languages": ["A group of Uto-Aztecan languages spoken in the south of the United States and in Mexico."], "Corachol\u2013Aztecan languages": ["A group of Uto-Aztecan languages spoken in Central Mexico."], "Nahuan languages": ["A group of Uto-Aztecan languages that have undergone the sound change known as Whorf's Law."], "Aztecan languages": ["A group of Uto-Aztecan languages that have undergone the sound change known as Whorf's Law."], "Nahuatl": ["A group of Nahuan languages spoken mostly in Central Mexico."], "scooter": ["A small motorcycle with a step-through frame and a platform for the feet."], "motor scooter": ["A small motorcycle with a step-through frame and a platform for the feet."], "Guerrero Nahuatl": ["A Nahuatl language spoken in the state of Guerrero, Mexico."], "Guerrero Aztec": ["A Nahuatl language spoken in the state of Guerrero, Mexico."], "Isthmus-Mecayapan Nahuatl": ["A Nahuatl language spoken in the towns of Mecayapan and Tatahuicapan in Mexico."], "Morelos Nahuatl": ["A Nahuatl language spoken in the state of Morelos, Mexico."], "chile pepper": ["Any fruit of a plant of the botanical genus Capsicum, noted for their spicy and burning flavour due to presence of capsaicin."], "co-mother-in-law": ["A woman's child's mother-in-law."], "co-father-in-law": ["The father-in-law of a man's child."], "co-parent-in-law": ["A parent-in-law of one's child."], "Bororo": ["A Macro-G\u00ea language spoken by the Bororo people in the Central Mato Grosso region of Brazil."], "Colorado River Numic": ["A language of the USA."], "Ute": ["A dialect of the Colorado River Numic language, spoken in south-western Colorado and eastern Utah, by the Ute people."], "Bedawi Arabic": ["An Arabic language spoken by the Bedouins people in Egypt, Jordan, Palestinian West Bank and Gaza and Syria."], "Eastern Egyptian Bedawi Arabic": ["An Arabic language spoken by the Bedouins people in Egypt, Jordan, Palestinian West Bank and Gaza and Syria."], "Libyan Arabic": ["An Arabic language spoken in Libya, Egypt and Niger."], "Western Egyptian Bedawi Arabic": ["An Arabic language spoken in Libya, Egypt and Niger."], "Abip\u00f3n": ["An extinct Guaicuruan language formerly spoken in the eastern province of Chaco, Argentina."], "greenwashing": ["Various PR techniques that aim to make a company look more environmentally friendly in the eye of the public."], "cross-section": ["An image that shows an object as if cut along a plane, usually at right angles to a main axis."], "floor plan": ["A diagram, usually to scale, showing the layout of a building floor."], "isometric view": ["A method for visually representing three-dimensional objects in two dimensions in technical and engineering drawings, such that the three coordinate axes appear equally foreshortened and the angles between any two of them are 120 degrees."], "axonometric view": ["A type of parallel projection, used to create a pictorial drawing of an object, where the object is rotated along one or more of its axes relative to the plane of projection."], "orthographic": ["Of a projection used in maps, architecture etc., in which the rays are parallel."], "foreshorten": ["To draw the image of an object such that it appears to be reduced or shortened, in order to give the illusion of three-dimensional space as perceived by the human eye"], "forshorten": ["To draw the image of an object such that it appears to be reduced or shortened, in order to give the illusion of three-dimensional space as perceived by the human eye"], "ground floor": ["The floor of a building closest to ground level."], "first floor": ["The floor of a building closest to ground level.", "The floor of a building one above the ground floor."], "staircase": ["A stair between two floors.", "Space between the walls which enclose a staircase."], "stairwell": ["A shaft in a multi-story building enclosing a stairway."], "night-time": ["The period between sunset and sunrise, when a location faces far away from the sun, thus when the sky is dark."], "fireplace": ["An open recess in a wall at the base of a chimney where a fire may be built."], "inner wall": ["A type of small thin wall, made \u200b\u200bof wood or masonry and used for the division of an apartment or any building."], "lassi": ["A drink made with yoghurt diluted with water and flavoured with salt or fruit juice."], "cinnamon basil": ["A cultivar of sweet basil which contains cinnamate, the same chemical that gives cinnamon its flavor."], "cinnamic acid": ["A white substance which is contained in cinnamon."], "Livonian": ["A Finnic language spoken by the Livonian people in Livonia, Latvia."], "cinnamate": ["A white substance which is contained in cinnamon."], "Old Persian": ["A language formerly spoken in Ancient Iran between ca. 525 BC - 300 BC."], "Vepsian": ["A Finnic language spoken by the Vepsians in Russia (Europe)."], "jamb": ["The vertical components that form the sides of a door frame, window frame, or fireplace, or other opening in a wall."], "lintel": ["A horizontal structural beam spanning an opening, such as between the uprights of a door or a window, and which supports the wall above."], "sill": ["A horizontal member bearing the upright portion of a frame.", "A horizontal slat which forms the base of a window."], "window sill": ["A horizontal slat which forms the base of a window."], "ledge-sill": ["A horizontal slat which forms the base of a window."], "sill plate": ["The bottom horizontal member of a wall or building to which vertical members are attached."], "header": ["A horizontal structural beam spanning an opening, such as between the uprights of a door or a window, and which supports the wall above.", "A jump downwards, head first, possibly with arms erected before the head, usually ending up in water.", "The first part of a network packet, often containing its address and descriptors.", "The first part of a file or record that describes its contents."], "architrave": ["A horizontal structural beam spanning an opening, such as between the uprights of a door or a window, and which supports the wall above."], "sill-beam": ["A horizontal beam at the bottom of a wall into which posts and studs are fitted."], "noggin": ["In wall framing, a horizontal piece of wood that goes \u0131n the gaps between the studs."], "wall-plate": ["A horizontal member built into or laid along the top of a wall that support and distribute the pressure from trusses and joists of the roof."], "joist": ["One of the horizontal supporting members that run from wall to wall, wall to beam, or beam to beam to support a ceiling, roof, or floor."], "purlin": ["A horizontal structural member that runs along the length of a roof, resting upon the principal rafters at right angles and supporting the ordinary rafters or boards of the roof."], "girder": ["A beam of steel, wood, or reinforced concrete, used as a main horizontal support in a building or structure."], "Higgs boson": ["A hypothetical elementary particle that would explain the origin of mass in the massive elementary particles."], "Higgs particle": ["A hypothetical elementary particle that would explain the origin of mass in the massive elementary particles."], "God particle": ["A hypothetical elementary particle that would explain the origin of mass in the massive elementary particles."], "shopping": ["The activity of searching for and buying goods."], "high school": ["An institution which provides all or part of secondary education."], "lath": ["A thin, narrow strip, fastened to the rafters, studs, or floor beams of a building, for the purpose of supporting a covering of tiles, plastering, etc.", "Thin plank of wood used in a roof on which are fixed the slates."], "ledger": ["A horizontal timber fastened to the vertical uprights of a scaffold, lying parallel to the face of a building, to support the putlogs or joists, when they not enter into the walls or do not cover the beams."], "putlog": ["One of the short pieces of timber on which the planks forming the floor of a scaffold are laid, one end resting on the ledger of the scaffold, and the other in a hole left in the wall temporarily for the purpose."], "mortise": ["A hole in a piece of wood or the like that is made to receive a tenon of the same dimension on another piece, so as to form a joint between the pieces."], "sunburnt": ["Having a sunburn."], "autologous": ["Using tissue, cells, etc. from the same organism rather than from a donor."], "Western Friulan": ["A dialect of Friulan spoken in the Province of Pordenone."], "Central Friulan": ["A dialect of Friulan spoken around Udine Province."], "Western Lombard": ["A dialect of the Lombard language."], "sole plate": ["The bottom horizontal member of a wall or building to which vertical members are attached."], "bottom plate": ["The bottom horizontal member of a wall or building to which vertical members are attached."], "tenon": ["A projecting member left by cutting away the wood around it, and made to insert into a mortise, and in this way secure together the parts of a frame."], "top plate": ["The upper wall plate which is fastened along the top of the wall studs, before the wall is lifted into position and on which the platform of the next story or the ceiling and roof assembly rest and are attached."], "ceiling plate": ["The upper wall plate which is fastened along the top of the wall studs, before the wall is lifted into position and on which the platform of the next story or the ceiling and roof assembly rest and are attached."], "upper wall plate": ["The upper wall plate which is fastened along the top of the wall studs, before the wall is lifted into position and on which the platform of the next story or the ceiling and roof assembly rest and are attached."], "brace": ["A piece of material used to transmit, or change the direction of, weight or pressure, serves to prevent distortion of the structure.", "An oblique piece of timber used in a roof or other trussed framework to stiffen the stucture.", "Structural member connecting the post to the rafter in a roof truss.", "Oblique part ensuring the rigidity of the angle formed by the ridge purlin and the king post in a roof truss."], "combination pliers": ["A type of pliers used by electricians and other tradesmen primarily for gripping, twisting, bending and cutting wire and cable."], "Lineman's pliers": ["A type of pliers used by electricians and other tradesmen primarily for gripping, twisting, bending and cutting wire and cable."], "turnscrew": ["A hand tool used for driving screws."], "Phillips screwdriver": ["A screwdriver having a cross-shaped tip."], "hacksaw": ["A saw, with a blade that is put under tension, for cutting metal."], "flat-blade screwdriver": ["A screwdriver having a flat-bladed tip."], "flat-head screwdriver": ["A screwdriver having a flat-bladed tip."], "standard screwdriver": ["A screwdriver having a flat-bladed tip."], "slot-head screwdriver": ["A screwdriver having a flat-bladed tip."], "flat-tip screwdriver": ["A screwdriver having a flat-bladed tip."], "flathead screwdriver": ["A screwdriver having a flat-bladed tip."], "monkey wrench": ["A wrench with a smooth adjustable jaw to grip different sizes of nuts and bolts, in which the adjustable jaw is perpendicular to the handle."], "adjustable wrench": ["A wrench with a smooth adjustable jaw to grip different sizes of nuts and bolts."], "pipe wrench": ["An adjustable wrench (British: spanner) with a toothed jaw for gripping pipe, frequently used by a plumber or pipe fitter, to loosen and tighten pipes with threaded connections, designed such that any forward pressure on the handle tends to pull the jaws (otherwise slightly mobile in the tool plan) tighter together."], "wrench": ["A hand tool for making rotational adjustments, such as fitting nuts and bolts, or fitting pipes."], "spanner": ["A hand tool for making rotational adjustments, such as fitting nuts and bolts, or fitting pipes."], "adjustable spanner": ["A wrench with a smooth adjustable jaw to grip different sizes of nuts and bolts."], "Stillsons": ["An adjustable wrench (British: spanner) with a toothed jaw for gripping pipe, frequently used by a plumber or pipe fitter, to loosen and tighten pipes with threaded connections, designed such that any forward pressure on the handle tends to pull the jaws (otherwise slightly mobile in the tool plan) tighter together."], "Stillson wrench": ["An adjustable wrench (British: spanner) with a toothed jaw for gripping pipe, frequently used by a plumber or pipe fitter, to loosen and tighten pipes with threaded connections, designed such that any forward pressure on the handle tends to pull the jaws (otherwise slightly mobile in the tool plan) tighter together."], "shifting spanner": ["A wrench with a smooth adjustable jaw to grip different sizes of nuts and bolts."], "shifting adjustable": ["A wrench with a smooth adjustable jaw to grip different sizes of nuts and bolts."], "shifter": ["A wrench with a smooth adjustable jaw to grip different sizes of nuts and bolts."], "fit-all": ["A wrench with a smooth adjustable jaw to grip different sizes of nuts and bolts."], "adjustable angle-head wrench": ["A wrench with a smooth adjustable jaw to grip different sizes of nuts and bolts."], "Bahco": ["A wrench with a smooth adjustable jaw to grip different sizes of nuts and bolts."], "slip joint pliers": ["A type of plier whose pivot point or fulcrum can be moved to increase the size range of their jaws."], "tongue-and-groove pliers": ["A type of slip-joint pliers with serrated jaws generally set 45\u2013 to 60-degrees from the handle, in which the lower jaw can be moved to a number of positions by sliding along a tracking section under the upper jaw, to create different jaw spans."], "water pump pliers": ["A type of slip-joint pliers with serrated jaws generally set 45\u2013 to 60-degrees from the handle, in which the lower jaw can be moved to a number of positions by sliding along a tracking section under the upper jaw, to create different jaw spans."], "adjustable pliers": ["A type of slip-joint pliers with serrated jaws generally set 45\u2013 to 60-degrees from the handle, in which the lower jaw can be moved to a number of positions by sliding along a tracking section under the upper jaw, to create different jaw spans."], "groove-joint pliers": ["A type of slip-joint pliers with serrated jaws generally set 45\u2013 to 60-degrees from the handle, in which the lower jaw can be moved to a number of positions by sliding along a tracking section under the upper jaw, to create different jaw spans."], "Multi-Grips": ["A type of slip-joint pliers with serrated jaws generally set 45\u2013 to 60-degrees from the handle, in which the lower jaw can be moved to a number of positions by sliding along a tracking section under the upper jaw, to create different jaw spans."], "Channellocks": ["A type of slip-joint pliers with serrated jaws generally set 45\u2013 to 60-degrees from the handle, in which the lower jaw can be moved to a number of positions by sliding along a tracking section under the upper jaw, to create different jaw spans."], "Allen wrench": ["A screwdriver whose handle and hexagonal head are at right angles."], "Allen key": ["A screwdriver whose handle and hexagonal head are at right angles."], "hex key": ["A screwdriver whose handle and hexagonal head are at right angles."], "gimlet": ["A small, screw-tipped hand tool for boring holes in wood."], "jeweler's screwdriver": ["Screwdriver in which the top of the handle can rotate, so as to support the palm of the hand while two fingers control the rotation of the screw."], "precision screwdriver": ["Screwdriver in which the top of the handle can rotate, so as to support the palm of the hand while two fingers control the rotation of the screw."], "utility knife": ["A cutting tool that has an interchangeable blade that retracts into the handle.", "A knife w\u0131th a fixed, folding, or retractable blade, suitable for general work such as cutting hides and cordage, scraping hides, butchering animals, cleaning fish, and other tasks."], "box cutter": ["A cutting tool that has an interchangeable blade that retracts into the handle."], "flat screwdriver": ["A screwdriver having a flat-bladed tip."], "endeavor": ["An assiduous or persistent activity.", "To attempt through application of effort (to do something); to try strenuously."], "wind chill": ["The felt air temperature taking into account wind speed, which is lower than the actual temperature."], "wind chill factor": ["The felt air temperature taking into account wind speed, which is lower than the actual temperature."], "felt air temperature": ["An indication of the air temperature perceived by the body, taking into account the air humidity, density, and the speed of wind."], "apparent air temperature": ["An indication of the air temperature perceived by the body, taking into account the air humidity, density, and the speed of wind."], "fortified church": ["A church that is built to be defended against enemies."], "butt rafter": ["Each of the two oblique pieces in a roof truss supporting the purlins."], "tiebeam": ["The horizontal tie connecting the the feet of the rafters in a roof truss."], "collar-beam": ["The horizontal tie connecting the the feet of the rafters in a roof truss."], "roof truss": ["Assembly of parts designed to support the ridge, purlins and rafters of a roof."], "king post": ["Structural member connecting the ridge and tie-beam in a roof truss."], "Kaalak": ["A Kordofanian language of Sudan."], "Norway maple": ["A species of maple native to eastern and central Europe and southwest Asia."], "eave purlin": ["A purlin at the bottom of the slope of a roof truss."], "lower purlin": ["A purlin at the bottom of the slope of a roof truss."], "inferior purlin": ["A purlin at the bottom of the slope of a roof truss."], "middle purlin": ["One of the purlins located between the eave purlin and the ridge purlin."], "orta a\u015f\u0131k": ["One of the purlins located between the eave purlin and the ridge purlin."], "ridge purlin": ["Purlin at the top of the rafters of a roof frame."], "gable": ["The triangular area of external wall adjacent to two meeting sloped roofs."], "Dogri proper": ["A language of India."], "Dogri cluster": ["A macrolanguage spoken in India."], "pitched roof": ["A single-ridge roof that terminates at gable ends."], "span roof": ["A single-ridge roof that terminates at gable ends."], "saddle roof": ["A single-ridge roof that terminates at gable ends."], "Bapu": ["A language of Indonesia (Papua)."], "Tiemac\u00e8w\u00e8 Bozo": ["A Bozo language spoken in Mali."], "Ti\u025bma C\u025bw\u025b": ["A Bozo language spoken in Mali."], "Sorogaama": ["A Bozo language of Mali and Nigeria."], "depth image based rendering": ["The rendering of a synthetic image from a virtual view using at least a reference image from a reference view and a corresponding depth image."], "depth-image-based rendering": ["The rendering of a synthetic image from a virtual view using at least a reference image from a reference view and a corresponding depth image."], "DIBR": ["The rendering of a synthetic image from a virtual view using at least a reference image from a reference view and a corresponding depth image."], "Sibo": ["A Tungusic language spoken by the Xibe people in Xinjiang, in the northwest of China."], "Sibe": ["A Tungusic language spoken by the Xibe people in Xinjiang, in the northwest of China."], "Xibo": ["A Tungusic language spoken by the Xibe people in Xinjiang, in the northwest of China."], "batten": ["A thin, narrow strip, fastened to the rafters, studs, or floor beams of a building, for the purpose of supporting a covering of tiles, plastering, etc.", "Thin plank of wood used in a roof on which are fixed the slates."], "roof lath": ["Thin plank of wood used in a roof on which are fixed the slates."], "roof boarding": ["Covering consisting of roof boards, attached to the rafters, to support the roof covering materials such as slate, zinc or tar."], "siding": ["A building material which covers and protects the sides of a house or other building."], "cladding": ["A building material which covers and protects the sides of a house or other building."], "joggle post": ["Structural member connecting the ridge and tie-beam in a roof truss."], "joggle piece": ["Structural member connecting the ridge and tie-beam in a roof truss."], "hanging post": ["Structural member connecting the ridge and tie-beam in a roof truss."], "wind brace": ["Diagonal brace to resist deformation caused by lateral pressures, such as from the wind."], "dormer": ["An upright window built on a sloping roof."], "common rafter": ["A rafter which extends from the plate of the roof to the ridge board and to which roofing is attached."], "principal rafter": ["One of several parallel sloping beams that extend from the ridge to the wall-plate, to support the roof and its associated loads; the sloping top member of a roof truss, which carries the purlins."], "main rafter": ["One of several parallel sloping beams that extend from the ridge to the wall-plate, to support the roof and its associated loads; the sloping top member of a roof truss, which carries the purlins."], "purlin cleat": ["Triangular piece of wood placed on the rafter to hold the purlin."], "forceful": ["Capable of producing great physical force."], "bed sheet": ["A cloth covering for a bed, intended to be in contact with the sleeping person."], "bedsheet": ["A cloth covering for a bed, intended to be in contact with the sleeping person."], "western food": ["A type of food that is traditional in Europe or North America."], "eighty-eight": ["The cardinal number occurring after eighty-seven and before eighty-nine."], "paedomorphosis": ["An evolution of a species where adults start showing traits that were originally only seen in youngs."], "p\u00e6domorphosis": ["An evolution of a species where adults start showing traits that were originally only seen in youngs."], "paedomorphic": ["Of, relating to, or resulting from the retention of juvenile characteristics by an adult."], "p\u00e6domorphic": ["Of, relating to, or resulting from the retention of juvenile characteristics by an adult."], "pedomorphic": ["Of, relating to, or resulting from the retention of juvenile characteristics by an adult."], "pedomorphism": ["The retention, by an adult, of juvenile characteristics."], "paedomorphism": ["The retention, by an adult, of juvenile characteristics."], "atmospheric researcher": ["A person who studies the atmosphere."], "dermatoheliosis": ["The aging of the skin caused by exposure to ultraviolet radiation, such as sunlight."], "photoageing": ["The aging of the skin caused by exposure to ultraviolet radiation, such as sunlight."], "photoaging": ["The aging of the skin caused by exposure to ultraviolet radiation, such as sunlight."], "pyroclastic": ["Mostly composed of rock fragments of volcanic origin."], "walnut orchard": ["Place where walnut trees are grown, in particular for their nuts."], "hydrotherapy": ["The use of water for therapeutic purposes."], "hydropathy": ["The use of water for therapeutic purposes."], "thermalism": ["The therapeutic use of hot-water springs."], "innkeeper": ["The person responsible for the running of an inn."], "pinky": ["The smallest finger of a hand."], "flank": ["The fleshy side of an animal (or human) between the last rib and the hip.", "The extreme left or right edge of a military formation, army etc."], "shin": ["The front part of the leg below the knee."], "loin": ["The part of the body (of humans and quadrupeds) each side of the backbone between the ribs and hips.", "The lower abdomen, groin and genitalia.", "A cut of meat from the region of an animal below the rib cage, but above the hipbone."], "loins": ["Muscular parts, situated behind the abdomen, on the right and left of the spine."], "tenderloin": ["A cut of meat from the region of an animal below the rib cage, but above the hipbone."], "sirloin": ["A cut of meat from the region of an animal below the rib cage, but above the hipbone."], "potbelly": ["A protruding abdomen of an animal or human."], "philtrum": ["The shallow groove running down from the bottom of the nose to the center of the upper lip."], "filtrum": ["The shallow groove running down from the bottom of the nose to the center of the upper lip."], "Dutton Speedwords": ["A language intended to be an international auxiliary language that can also be used as a universal shorthand system."], "dewlap": ["The fold of skin that sags on the throat of an old person.", "The skin that hangs from under the throat of an ox or similar animals."], "double chin": ["A layer of subcutaneous fat under the chin, giving the appearance of having an extra chin."], "jowl": ["A hanging and enlarged human cheek.", "Cut of an animal corresponding to the lower jaw."], "wattle": ["A wrinkled fold of skin, sometimes brightly coloured, hanging from the neck of birds (such as chicken and turkey).", "The red and wrinkled piece of flesh that hangs from a turkey's neck."], "caruncle": ["A small, fleshy excrescence that is a normal part of an animal's anatomy."], "underchin": ["The underside of the chin."], "snood": ["The flap of red skin on the beak of a turkey."], "sideburn": ["Each of the patches of facial hair grown on the sides of the face, extending from the hairline to below the ears and worn with an unbearded chin."], "dimple": ["A small natural depression on the cheeks of some people, that is especially visible when they smile.", "A small hollow that some people have at the end the chin.", "A small depression or indentation in a surface."], "cleft chin": ["A small hollow that some people have at the end the chin."], "butt chin": ["A small hollow that some people have at the end the chin."], "chin cleft": ["A small hollow that some people have at the end the chin."], "dimple chin": ["A small hollow that some people have at the end the chin."], "chin dimple": ["A small hollow that some people have at the end the chin."], "vellus hair": ["Short, fine, light-colored, and barely noticeable hair that develops on most of a person's body from childhood."], "fuzz": ["Short, fine, light-colored, and barely noticeable hair that develops on most of a person's body from childhood."], "body hair": ["The terminal hair that develops on the human body during and after puberty."], "androgenic hair": ["The terminal hair that develops on the human body during and after puberty."], "peachfuzz": ["The fuzz found on the skin of a peach.", "The soft, scanty beard of an adolescent male."], "auricle": ["The visible part of the ear that resides outside of the head"], "pinna": ["The visible part of the ear that resides outside of the head"], "outer ear": ["The outer portion of the ear which includes the auricle and the ear canal and leads to the eardrum."], "pavillon": ["The visible part of the ear that resides outside of the head"], "spur": ["A kind of small sharp bony or horny spike pointing rearward, near the foot of certain male galliform birds."], "coccyx": ["The final fused vertebrae at the base of the spine, connected to the sacrum."], "tailbone": ["The final fused vertebrae at the base of the spine, connected to the sacrum."], "shoulderblade": ["A large flat bone located at the back of each shoulder."], "hip bone": ["The large, flattened, irregularly shaped bone of the pelvis that makes a joint with the femur."], "innominate bone": ["The large, flattened, irregularly shaped bone of the pelvis that makes a joint with the femur."], "carpus": ["The group of bones that make up the wrist."], "astragal": ["The bone in the ankle connecting to the leg bones to form the ankle joint."], "anklebone": ["The bone in the ankle connecting to the leg bones to form the ankle joint."], "talus bone": ["The bone in the ankle connecting to the leg bones to form the ankle joint."], "ankle bone": ["The bone in the ankle connecting to the leg bones to form the ankle joint."], "tallus": ["The bone in the ankle connecting to the leg bones to form the ankle joint."], "talus": ["The bone in the ankle connecting to the leg bones to form the ankle joint."], "astragalus": ["The bone in the ankle connecting to the leg bones to form the ankle joint."], "rotulla": ["A small flat triangular bone in front of the knee that protects the knee joint."], "sesamoid bone": ["A small bone embedded within a tendon, typically found in locations where a tendon passes over a joint."], "Mundari languages": ["A branch of the Kherwari languages."], "coffee plant": ["A flowering plant of the genus Coffea whose seeds are used to make coffee."], "cranium": ["That part of the skull enclosing the brain.", "The bony framework of the head."], "braincase": ["That part of the skull enclosing the brain."], "pectoral girdle": ["The bony or cartilaginous assembly that supports the forelimbs in vertebrates."], "shoulder girdle": ["The bony or cartilaginous assembly that supports the forelimbs in vertebrates."], "rib cage": ["A part of the skeleton within the thoracic area consisting of ribs, sternum and thoracic vertebrae.", "The enclosed area created by and within the ribs."], "thoracic cage": ["A part of the skeleton within the thoracic area consisting of ribs, sternum and thoracic vertebrae."], "thoracic vertebra": ["Any of the twelve vertebrae in the chest region of the spine."], "ossicle": ["A small bone of the middle ear.", "Small bone."], "middle ear": ["The cavity in the temporal bone between the eardrum and the inner ear that contains the ossicles, and which conveys sound to the cochlea."], "Eustachian tube": ["In humans and other land vertebrates, a tube that links the pharynx to the cavity of the middle ear to allow the equalization of the pressure on both sides of the eardrum."], "auditory tube": ["In humans and other land vertebrates, a tube that links the pharynx to the cavity of the middle ear to allow the equalization of the pressure on both sides of the eardrum."], "pharyngotympanic tube": ["In humans and other land vertebrates, a tube that links the pharynx to the cavity of the middle ear to allow the equalization of the pressure on both sides of the eardrum."], "choana": ["In quadriped animals, the opening between the nasal cavity and the nasopharynx."], "posterior nasal aperture": ["In quadriped animals, the opening between the nasal cavity and the nasopharynx."], "anatomic region": ["A place in or a part of the body in any way indicated."], "stapes": ["A small stirrup-shaped bone of the middle ear."], "strirrup": ["A small stirrup-shaped bone of the middle ear."], "heel bone": ["The large bone making up the heel of the human foot."], "calcaneus": ["The large bone making up the heel of the human foot."], "ischium": ["The lowest of the three bones that make up each side of the pelvis."], "hock": ["The tarsal joint of a digitigrade quadruped, such as a horse, pig or dog."], "jarret": ["Shallow depression at the back of the knee-joint."], "gambrel": ["The tarsal joint of a digitigrade quadruped, such as a horse, pig or dog."], "phalanx": ["One of the bones of the finger.", "One of the bones of the toe."], "phalange": ["One of the bones of the finger.", "One of the bones of the toe."], "coxal bone": ["The large, flattened, irregularly shaped bone of the pelvis that makes a joint with the femur."], "\u0131nnominate bone": ["The large, flattened, irregularly shaped bone of the pelvis that makes a joint with the femur."], "bone of pelvic girdle": ["The large, flattened, irregularly shaped bone of the pelvis that makes a joint with the femur."], "pelvic bone": ["The large, flattened, irregularly shaped bone of the pelvis that makes a joint with the femur."], "pelvic girdle": ["The bony structure found in most vertebrates located at the base of the spine."], "Lucazi": ["A Bantu language of Angola and Zambia."], "Leko": ["A language isolate spoken in areas east of Lake Titicaca, Bolivia."], "econometric": ["Relating to econometrics."], "econometrician": ["A person who studies econometrics."], "Wolaytta": ["An Omotic language spoken in the Wolaita Zone of Ethiopia."], "Omotic languages": ["Group of languages spoken in northeastern Africa."], "Cushitic languages": ["A branch of the Afroasiatic language family spoken in the Horn of Africa, Tanzania, Kenya, Sudan and Egypt."], "Afroasiatic languages": ["A language family spoken throughout the northern part of Africa and the Middle East, including amongst others the Semitic, Cushitic, Chadic, and Berber languages."], "Afroasiatic": ["A language family spoken throughout the northern part of Africa and the Middle East, including amongst others the Semitic, Cushitic, Chadic, and Berber languages."], "Afro-Asiatic languages": ["A language family spoken throughout the northern part of Africa and the Middle East, including amongst others the Semitic, Cushitic, Chadic, and Berber languages."], "Aroid": ["A group of Omotic languages."], "escape stairs": ["Stairs designed to be used when a place must be evacuated quickly, such as in case of fire."], "what to do": ["to perform what action [Question pro-verb used in direct or indirect speech, and whose expected answer is a verb of action.]"], "\u00c9vora District": ["District of Portugal, located in the south."], "Odisha": ["A state situated on the east coast of India."], "tarsus": ["The part of the foot between the tibia and fibula and the metatarsus."], "tarsal": ["Any of the seven bones of the tarsus."], "metacarpus": ["The five bones that form the intermediate part of the hand between the fingers and the wrist."], "metacarpal": ["Any of the bones of the metacarpus."], "carpal": ["Any of the eight bones of the wrist."], "lumbar vertebra": ["Any of the five vertebrae in the lower back region of the spine."], "manubrium": ["The broad, upper part of the sternum."], "suprasternal notch": ["The conspicuous dip visible at the top of the human chest where the neck joins the sternum."], "jugular notch": ["The conspicuous dip visible at the top of the human chest where the neck joins the sternum."], "sacral vertebra": ["Any of the five vertebra that are fused to form the sacrum."], "coccygeal vertebra": ["Any of the four vertebrae that are found in the human coccyx."], "caudal vertebra": ["Any of the bones that make up the tail of a tailed animal."], "Bashgali": ["A dialect of the Kamkata-viri language spoken by the Kata people in Afghanistan and Pakistan."], "Kativiri": ["A dialect of the Kamkata-viri language spoken by the Kata people in Afghanistan and Pakistan."], "Kata-vari": ["A dialect of the Kamkata-viri language spoken by the Kata people in Afghanistan and Pakistan."], "Bwamu": ["A language of Burkina Faso."], "Ouarkoye Bwamu": ["A language of Burkina Faso."], "Rotunan": ["An Austronesian language spoken in the island group of Rotuma of Fiji."], "Rutuman": ["An Austronesian language spoken in the island group of Rotuma of Fiji."], "F\u00e4eag Rotuma": ["An Austronesian language spoken in the island group of Rotuma of Fiji."], "cable car": ["A streetcar that is moved by gripping to a continuously moving cable under the vehicle.", "A cabin for transportation suspended on cables."], "cablecar": ["A streetcar that is moved by gripping to a continuously moving cable under the vehicle.", "A cabin for transportation suspended on cables."], "cable-car": ["A streetcar that is moved by gripping to a continuously moving cable under the vehicle.", "A cabin for transportation suspended on cables."], "aerial tramway": ["A cabin for transportation suspended on cables."], "ropeway": ["A cabin for transportation suspended on cables."], "aerial tram": ["A cabin for transportation suspended on cables."], "Dena'ina": ["An Athabaskan language spoken in the region surrounding Cook Inlet in Alaska, USA."], "Goguryeo": ["A language that was spoken in the ancient kingdom of Goguryeo (37 BCE \u2013 668 CE), in Korea."], "Montagnais": ["An Algonquian language spoken by the Innu people, in Labrador and Quebec in Eastern Canada."], "Innu-aimun": ["An Algonquian language spoken by the Innu people, in Labrador and Quebec in Eastern Canada."], "South Slavey": ["An Athabaskan language spoken by the Slavey people, in the Mackenzie District, northeast Alberta, British Columbia."], "Kutchi": ["A dialect of the Sindhi language spoken in the Kutch region of the Indian state of Gujarat as well as in the Pakistani province of Sindh."], "Cutchi": ["A dialect of the Sindhi language spoken in the Kutch region of the Indian state of Gujarat as well as in the Pakistani province of Sindh."], "Kutchhi": ["A dialect of the Sindhi language spoken in the Kutch region of the Indian state of Gujarat as well as in the Pakistani province of Sindh."], "Kachchhi": ["A dialect of the Sindhi language spoken in the Kutch region of the Indian state of Gujarat as well as in the Pakistani province of Sindh."], "canoeist": ["A person who navigates a canoe."], "canoer": ["A person who navigates a canoe."], "relaxing": ["That helps to relax."], "vapour": ["The gaseous state of a substance that is normally a solid or liquid."], "water cure": ["The use of water for therapeutic purposes."], "bring to a boil": ["To heat (a liquid) to the point where it begins to turn into a gas."], "bring to the boil": ["To heat (a liquid) to the point where it begins to turn into a gas."], "hopeful": ["Feeling or having hope.", "Inspiring hope; full of promise."], "tiramisu": ["An Italian dessert made of ladyfingers dipped in coffee layered with a mixture of egg yolks and mascarpone and flavored with cocoa and sometimes liquor."], "seaside": ["A line or zone where the land meets the sea or some other large expanse of water."], "ladyfinger": ["A light and sweet sponge cake roughly shaped like a human finger."], "peacock": ["A flying bird of the genus Pavo.", "A male bird of the genus Pavo."], "peafowl": ["A flying bird of the genus Pavo."], "peahen": ["A female bird of the genus Pavo."], "peachick": ["A young peacock."], "Kashmiri languages": ["A group of Dardic languages spoken in the state of Jammu and Kashmir in India."], "Ushoji": ["A Dardic language spoken in Kohistan and Swat districts of the Khyber-Pakhtunkhwa province of Pakistan."], "Shina languages": ["A group of Dardic languages spoken in Pakistan."], "Dumaki": ["A Dardic language spoken in the Northern Areas of Pakistan."], "Doma\u00e1": ["A Dardic language spoken in the Northern Areas of Pakistan."], "Kalash": ["A Dardic language spoken in the Chitral District of Pakistan."], "Kalasha-mondr": ["A Dardic language spoken in the Chitral District of Pakistan."], "mow": ["To cut all [the grass, crop or any thin plants] of a surface area of the ground."], "fire stairs": ["Stairs designed to be used when a place must be evacuated quickly, such as in case of fire."], "emergency stairs": ["Stairs designed to be used when a place must be evacuated quickly, such as in case of fire."], "elementary school": ["An institution in which children receive the first stage of academic learning."], "metatarsal bone": ["One of the five bones in a foot between the tarsus and the toes."], "manubrium sterni": ["The broad, upper part of the sternum."], "common raccoon": ["(Procyon lotor) An omnivorous nocturnal mammal native to North America and Central America."], "North American raccoon": ["(Procyon lotor) An omnivorous nocturnal mammal native to North America and Central America."], "northern raccoon": ["(Procyon lotor) An omnivorous nocturnal mammal native to North America and Central America."], "coon": ["(Procyon lotor) An omnivorous nocturnal mammal native to North America and Central America."], "dolphin therapy": ["The practice of swimming with dolphins for therapy purposes."], "dolphin assisted therapy": ["The practice of swimming with dolphins for therapy purposes."], "dolphinotherapy": ["The practice of swimming with dolphins for therapy purposes."], "hippotherapy": ["The riding of a horse for therapeutic purposes."], "equine therapy": ["The riding of a horse for therapeutic purposes."], "equine assisted therapy": ["The riding of a horse for therapeutic purposes."], "zootherapy": ["The use of living animals for therapeutic purposes."], "animal-assisted therapy": ["The use of living animals for therapeutic purposes."], "AAT": ["The use of living animals for therapeutic purposes."], "zootherapeutic": ["Relating to zootherapy."], "zootherapist": ["A therapist specialized in zootherapy."], "coco-de-mer": ["A tall palm tree, Lodicea maldivica, found in the Seychelles.", "The nut of the coco-de-mer palm tree."], "coco de mer": ["A tall palm tree, Lodicea maldivica, found in the Seychelles."], "Seychelles nut": ["The nut of the coco-de-mer palm tree."], "coco fesse": ["The nut of the coco-de-mer palm tree."], "double coconut": ["A tall palm tree, Lodicea maldivica, found in the Seychelles.", "The nut of the coco-de-mer palm tree."], "love nut": ["The nut of the coco-de-mer palm tree."], "sea coconut": ["A tall palm tree, Lodicea maldivica, found in the Seychelles.", "The nut of the coco-de-mer palm tree."], "cavernicolous": ["That inhabits caverns."], "life-buoy": ["A floating device designed to be thrown to a person in the water, to provide buoyancy, to prevent drowning."], "mechanic": ["A person specialized in building or repairing machinery."], "netherhair": ["Dense, coarse hair that grows on the male and female genital area beginning in puberty."], "pubes": ["Dense, coarse hair that grows on the male and female genital area beginning in puberty."], "pubarche": ["The first appearance of pubic hair in a person."], "spinal column": ["The body part that consists of a row of vertebrae, that support the head and torso and that forms a canal for nerves."], "Eurasian Collared Dove": ["A dove of the species Streptopelia decaocto having a black collar on its nape."], "Collared Dove": ["A dove of the species Streptopelia decaocto having a black collar on its nape."], "Eurasian Collared-dove": ["A dove of the species Streptopelia decaocto having a black collar on its nape."], "collared dove": ["A dove of the species Streptopelia decaocto having a black collar on its nape."], "Eurasian collared dove": ["A dove of the species Streptopelia decaocto having a black collar on its nape."], "older adult": ["An older person (usually considered to be above the age of 60)."], "cosmos": ["Everything that exists anywhere."], "harden": ["To become hard."], "first-person shooter": ["A video game genre where the player shoots at enemies through first-person perspective."], "FPS": ["A video game genre where the player shoots at enemies through first-person perspective."], "doomlike": ["A video game genre where the player shoots at enemies through first-person perspective."], "kuduro": ["A type of music and dance born in Angola in the 1980s, characterized as uptempo, energetic, and danceable."], "kuduru": ["A type of music and dance born in Angola in the 1980s, characterized as uptempo, energetic, and danceable."], "pollination": ["The transfer of pollen from an anther to a stigma, thereby enabling fertilization and sexual reproduction of a plant."], "Common Lime Butterfly": ["A swallowtail butterfly of the species Papilio demoleus."], "Lemon Butterfly": ["A swallowtail butterfly of the species Papilio demoleus."], "Lime Swallowtail": ["A swallowtail butterfly of the species Papilio demoleus."], "Small Citrus Butterfly": ["A swallowtail butterfly of the species Papilio demoleus."], "Chequered Swallowtail": ["A swallowtail butterfly of the species Papilio demoleus."], "Mariposa del Muerte": ["A swallowtail butterfly of the species Papilio demoleus."], "Dingy Swallowtail": ["A swallowtail butterfly of the species Papilio demoleus."], "Citrus Swallowtail": ["A swallowtail butterfly of the species Papilio demoleus."], "door-mat": ["A flat object for wiping one\u2019s shoes, laid on the floor immediately outside or inside the entrance to a building."], "welcome mat": ["A flat object for wiping one\u2019s shoes, laid on the floor immediately outside or inside the entrance to a building."], "spearmint": ["A species of mint native to much of Europe and southwest Asia which is used in medicine and cooking."], "spear mint": ["A species of mint native to much of Europe and southwest Asia which is used in medicine and cooking."], "spiry": ["Like or resembling a spire."], "cathinone": ["A monoamine alkaloid found in the shrub Catha edulis (khat), having a stimulant effect."], "benzoylethanamine": ["A monoamine alkaloid found in the shrub Catha edulis (khat), having a stimulant effect."], "(S)-2-amino-1-phenyl-1-propanone": ["A monoamine alkaloid found in the shrub Catha edulis (khat), having a stimulant effect."], "intensive-care medicine": ["Branch of medicine concerned with the diagnosis and management of life threatening conditions, requiring constant monitoring and support."], "critical-care medicine": ["Branch of medicine concerned with the diagnosis and management of life threatening conditions, requiring constant monitoring and support."], "intensive care medicine": ["Branch of medicine concerned with the diagnosis and management of life threatening conditions, requiring constant monitoring and support."], "maser": ["A device that produces coherent electromagnetic waves through amplification by stimulated emission."], "telephone operator": ["A person who provides assistance to a telephone caller by establishing a network connection with the person to be reacher.", "A company selling telephone services."], "telephone service provider": ["A company selling telephone services."], "telco": ["A company selling telephone services."], "common lavender": ["Plant with blue-pink flowers that can be used as kitchen or medicinal herb or to make scented oil."], "true lavender": ["Plant with blue-pink flowers that can be used as kitchen or medicinal herb or to make scented oil."], "narrow-leaved lavender": ["Plant with blue-pink flowers that can be used as kitchen or medicinal herb or to make scented oil."], "turn upside down": ["To rotate [a container] so that its opening be below; to turn upside down."], "discouraged": ["Having lost one's psychological and moral dynamism or strength to go on doing a difficult or dangerous thing."], "serving": ["A predetermined amount of a food given to a person."], "bestand": ["To be a servant for, to work for, to be employed by."], "wait on": ["To be a servant for, to work for, to be employed by."], "to be needed": ["To become needed."], "seven-year itch": ["An infestation of parasitic mites, Sarcoptes scabiei, causing intense itching caused by the mites burrowing into the skin of humans and other animals."], "ethnic purification": ["A purposeful policy designed by one ethnic or religious group to remove by violent and terror-inspiring means the civilian population of another ethnic or religious group from certain geographic areas."], "genitals": ["The sexual organs: the testicles and penis of a male; or the labia, clitoris, and vagina of a female."], "things": ["All coverings designed to be worn on a person's body."], "as if": ["In a manner suggesting."], "as though": ["In a manner suggesting."], "such as": ["As an example. [Used to introduce an example or list of examples.]"], "murmur": ["Pathologic and audible heart sound that is produced as a result of turbulent blood flow."], "surmise": ["To imagine or suppose (something) to be true without evidence.", "To suppose with contestable premises.", "To imagine that something is possible or likely."], "take it": ["To accept without verification or proof."], "shake out": ["To agitate a piece of cloth or other flexible material in order to remove dust, or to make it smooth and spread out."], "weft": ["The horizontal threads (carried by the shuttle during the weaving) that are interlaced through the warp in a woven fabric."], "warp": ["The threads that run lengthwise in a woven fabric."], "woof": ["The horizontal threads (carried by the shuttle during the weaving) that are interlaced through the warp in a woven fabric.", "The sound a dog makes when barking."], "selfsame": ["Not different or other."], "equal area": ["Of a map, having the property that equal areas on the map represent equal areas on the mapped surface."], "middle class": ["A social and economic class lying above the working class and below the upper class."], "tile": ["To cover with tiles.", "A piece of baked clay, used for various purposes, as in forming a roof covering, etc."], "lower class": ["A class of people in a society characterized by low income, low level of education, high unemployment and, as a result of these, a low social status."], "underclass": ["A class of people in a society characterized by low income, low level of education, high unemployment and, as a result of these, a low social status."], "powdery mildew": ["A fungal disease that affects a wide range of plants."], "realm": ["A geographic area owned or controlled by a single person or organization."], "deal with": ["To handle verbally or in some form of artistic expression.", "To take action with respect to (someone or something).", "To consider, as an example.", "To overcome any difficulties presented by.", "To behave in a certain way towards."], "heterodox": ["Not conforming with accepted or orthodox standards or beliefs."], "heterodoxy": ["Any opinions or doctrines at variance with an official or orthodox position."], "orthodoxy": ["The adherence to accepted norms, more specifically to creeds, especially in religion"], "at last": ["An addition used to emphasize impatience."], "at long last": ["An addition used to emphasize impatience."], "woodland crocus": ["A type of crocus that is among the first to bloom at the end of winter."], "Tomasini's crocus": ["A type of crocus that is among the first to bloom at the end of winter."], "protein domain": ["A folded section of a protein molecule that has a discrete function."], "stewardess": ["A woman whose job is to ensure the safety and comfort of passengers aboard flights."], "air hostess": ["A woman whose job is to ensure the safety and comfort of passengers aboard flights."], "wild cherry": ["A species of cherry tree which produces edible fruit."], "sweet cherry": ["A species of cherry tree which produces edible fruit."], "bird cherry": ["A species of cherry tree which produces edible fruit."], "gean": ["A species of cherry tree which produces edible fruit."], "wood flooring": ["A floor covering for indoors made of wood."], "parquet": ["A floor covering for indoors made of wood."], "iatrogenesis": ["Any adverse effect (or complication) resulting from medical treatment."], "bowdlerize": ["To remove those parts of a text considered offensive, vulgar, or otherwise unseemly."], "wages": ["A fixed amount of money paid to a worker, usually measured on a monthly or annual basis."], "emolument": ["A fixed amount of money paid to a worker, usually measured on a monthly or annual basis.", "The set of monetary compensations received by virtue of holding an office or having employment (usually in the form of wages or fees)."], "seesaw": ["An apparatus composed of a plank, balanced in the middle, with seats at both end, used for a game in which one person goes up as the other goes down."], "carousel": ["An amusement ride consisting of a rotating circular platform with seats for riders."], "merry-go-round": ["An amusement ride consisting of a rotating circular platform with seats for riders."], "jungle gym": ["A piece of playground equipment made of many pieces of material, such as metal pipe or rope, on which children can climb, hang, or sit."], "monkey bars": ["A piece of playground equipment made of many pieces of material, such as metal pipe or rope, on which children can climb, hang, or sit."], "climbing frame": ["A piece of playground equipment made of many pieces of material, such as metal pipe or rope, on which children can climb, hang, or sit."], "spring rider": ["A bouncy, outdoors playing device consisting of a metal spring beneath a plastic or wooden central beam or flange, with 1 to 4 plastic or fiberglass seats above it"], "spring rocker": ["A bouncy, outdoors playing device consisting of a metal spring beneath a plastic or wooden central beam or flange, with 1 to 4 plastic or fiberglass seats above it"], "rubber duck": ["A toy shaped like a stylised yellow-billed duck, and it is generally yellow with a flat base."], "tol": ["A toy that can be spun on an axis, balancing on a point."], "spintop": ["A toy that can be spun on an axis, balancing on a point."], "spinning top": ["A toy that can be spun on an axis, balancing on a point."], "gyroscope": ["A device for measuring or maintaining orientation, based on the principles of angular momentum."], "pertussis": ["A contagious disease of the respiratory system that usually affects children."], "roughcast": ["Coarse cladding used on outside walls that consists of lime (or cement, or both) mixed with sand, and sometimes small gravel or shells, then thrown against the wall."], "proletariat": ["A social class comprising those who do manual labour for wage, especially those who do not own any property."], "lumpenproletariat": ["A class of people in a society characterized by low income, low level of education, high unemployment and, as a result of these, a low social status."], "skippyball": ["A rubber ball (similar to an exercise ball) with handles which allow one to sit on it without falling off."], "space hopper": ["A rubber ball (similar to an exercise ball) with handles which allow one to sit on it without falling off."], "water gun": ["A type of toy designed to shoot water."], "hand puppet": ["A type of puppet that is controlled by the hand or hands that occupies the interior of the puppet."], "whatth": ["Which ordinal number."], "whath": ["Which ordinal number."], "what number": ["Which ordinal number."], "how manyeth": ["Which ordinal number."], "heresy": ["Any belief or theory that is strongly at variance with established beliefs or customs.", "A doctrine held by a member of a religion at variance with established religious beliefs."], "kaleidoscope": ["A cylinder with mirrors containing loose, colored objects such as beads or pebbles and bits of glass."], "true north": ["The direction along the earth's surface towards the geographic North Pole."], "geodetic north": ["The direction along the earth's surface towards the geographic North Pole."], "magnetic north": ["The point on the surface of Earth's Northern Hemisphere at which the planet's magnetic field points vertically downwards."], "Coriolis effect": ["A deflection of moving objects when they are viewed in a rotating reference frame."], "gyrocompass": ["A type of non-magnetic compass which is based on a fast-spinning disc and rotation of the Earth (or another planetary body if used elsewhere in the universe) to automatically find geographical direction."], "in memoriam": ["In memory of"], "mayday": ["An expression used by aircraft and shipping to call for help or assistance."], "harridan": ["A vicious and scolding woman, especially an older one."], "shrew": ["A vicious and scolding woman, especially an older one."], "virago": ["A vicious and scolding woman, especially an older one."], "spear point": ["Hard and pointed extremity of a spear, very ancient long knife designed to be hand held or used as a projectile."], "typewriter": ["A device, at least partially mechanical, used to print text by pressing keys that cause type to be impressed through an inked ribbon onto paper."], "typist": ["A person who types."], "hag": ["A vicious and scolding woman, especially an older one."], "tort": ["A wrongful act, whether intentional or negligent, which causes an injury and can be remedied at civil law, usually through awarding damages."], "food processor": ["A kitchen appliance used to facilitate various repetitive tasks in the process of preparation of food."], "pinwheel": ["A toy made of a wheel of paper or plastic curls attached at its axle to a stick, that spins when blown upon by a person or by the wind."], "jumu'ah": ["The congregational prayer that Muslims hold every Friday, just after noon in the place of dhuhr."], "Friday prayer": ["The congregational prayer that Muslims hold every Friday, just after noon in the place of dhuhr."], "khutbah": ["The sermon and prayer given from the minbar at the Jumah and Eid prayers."], "inward": ["Situated on the inside.", "Belonging to the inside.", "Related to the mental or spiritual condition as opposed to the bodily or exterior phenomena."], "spiritual": ["Related to the mental or spiritual condition as opposed to the bodily or exterior phenomena."], "inner": ["Related to the mental or spiritual condition as opposed to the bodily or exterior phenomena.", "Being or occurring farther inside.", "Close to the center.", "Existing as an often repressed part of one's psychological makeup.", "Needing to be examined closely or thought about in order to be seen or understood.", "Confined to a center of influence."], "inwardly": ["In mind, in heart or in thought, not in outward appearance.", "By verbalizing something mentally without saying the words out."], "physical strength": ["Muscular capacity to modify the speed of an external physical object, to deform it or to oppose another force."], "muscular strength": ["Muscular capacity to modify the speed of an external physical object, to deform it or to oppose another force."], "six hundred": ["The cardinal number occurring after five hundred ninety-nine and before six hundred one, represented in Arabic numerals as 600."], "domestic": ["Of or concerned with matters within the boundaries of a nation, as opposed to its relations with other nations.", "Of or relating to the home.", "(Of an animal) that lives with, is fed and raised by humans, as opposed to living in the wild.", "Indigenous to or produced in one's own, or a referred country."], "scary": ["Dreadful; causing alarm and fear."], "tame": ["(Of an animal) that lives with, is fed and raised by humans, as opposed to living in the wild.", "To make obedient, docile and tractable; to train to follow orders of the owner. \u2003", "To make less strong or intense; soften."], "inlying": ["Located further in."], "ballpoint pen": ["A pen, similar in size and shape to a pencil, having an internal chamber filled with a viscous, quick-drying ink that is dispensed at the tip during use by the rolling action of a metal sphere."], "back-door": ["A door in the rear of a building."], "platypus": ["A semi-aquatic mammal of the species Ornithorhynchus anatinus that lays eggs."], "duck-billed platypus": ["A semi-aquatic mammal of the species Ornithorhynchus anatinus that lays eggs."], "duckbill": ["A semi-aquatic mammal of the species Ornithorhynchus anatinus that lays eggs."], "duckmole": ["A semi-aquatic mammal of the species Ornithorhynchus anatinus that lays eggs."], "watermole": ["A semi-aquatic mammal of the species Ornithorhynchus anatinus that lays eggs."], "gasoline": ["A fuel for internal combustion engines consisting essentially of volatile flammable liquid hydrocarbons derived from crude petroleum."], "hamburger patty": ["A kind of flat patty of cooked ground beef that typically is placed inside a bun along with various vegetables and condiments."], "hamburger sandwich": ["A hot sandwich typically consisting of a patty of cooked ground beef placed inside a bun along with various vegetables and condiments."], "hamburg": ["A hot sandwich typically consisting of a patty of cooked ground beef placed inside a bun along with various vegetables and condiments."], "salesperson": ["An employee in a shop.", "A person whose job it is to sell things."], "or else": ["If that is not the case."], "differently": ["In another way."], "contrarily": ["In another way."], "likewise": ["In addition to what has already been said or noted.", "In a similar manner.", "The same to you. [Used as a response.]"], "as well": ["In addition to what has already been said or noted.", "To the same effect."], "once again": ["Once more."], "once more": ["Once more, in a different manner, on a new basis."], "trommel": ["A pipe-shaped, rotating sieve used for separating objects by size."], "buddle": ["An apparatus on which crushed ore is treated with running water in a way to wash the lighter and less valuable parts."], "gangue": ["The earthy waste substances occurring in metallic ore."], "strainer": ["An apparatus with small holes, used to separate a solid from a liquid."], "skimmer": ["Kitchen utensil in the form of a flat spoon with small holes and a long handle, used to remove hot food from a liquid, or to skim off top lying material l\u0131ke foam or cream."], "fabric conditioner": ["A chemical agent used for laundry which prevents static cling and makes fabric softer."], "fabric softener": ["A chemical agent used for laundry which prevents static cling and makes fabric softer."], "trough": ["A long, narrow container, open on top, for feeding or watering animals.", "A long, narrow container, open on top.", "A short, narrow canal designed to hold water until it drains or evaporates.", "A long, narrow depression between waves or ridges.", "A linear atmospheric depression associated with a weather front.", "A water container for animals to drink from."], "warhorse": ["A horse used in combat, especially one carrying an armored knight."], "manger": ["A trough for animals to eat from."], "kith": ["Friends and acquaintances."], "kith and kin": ["Both friends and family.", "People in the same family, connected by blood, marriage, or adoption."], "pants": ["An item of clothing worn on the lower part of the body and covering both legs separately."], "conflict of interest": ["A clash between public interest and the private pecuniary interest of the individual concerned."], "tree branch": ["A woody part of a tree arising from the trunk and usually dividing."], "one hundred million": ["The number 100,000,000."], "toddler": ["A child between the ages of one and three"], "frame of reference": ["A system of assumptions and standards that sanction behavior and give it meaning."], "commutative ring": ["A ring in which the multiplication operation is commutative."], "ring theory": ["The study of algebraic structures in which addition and multiplication are defined and have similar properties to those familiar from the integers."], "abstract algebra": ["The subject area of mathematics that studies algebraic structures such as groups, rings, fields, modules, vector spaces, and algebras."], "in-marrying": ["Having assimilated into the family of one's spouse."], "uxorilocal": ["Of or related to the situation in which the husband takes residence with the wife and (with or near) her parental family."], "grotesque": ["Distorted and unnatural in shape or size; abnormal and hideous."], "sidewalk": ["A paved footpath at the side of a road for the use of pedestrians."], "pavement": ["A paved footpath at the side of a road for the use of pedestrians."], "in-marrying husband": ["A son-in-law living with the family of his wife's parents."], "jack-in-the-box": ["A children's toy that outwardly consists of a box with a crank. When the crank is turned, it plays a melody. At the end of a tune there is a \"surprise\", the lid pops open and a figure, usually a clown or jester, pops out of the box."], "as a matter of fact": ["As an actual or existing fact."], "in truth": ["As an actual or existing fact."], "summarily": ["In an abbreviated form."], "in short": ["[Used to introduce a short summary statement.]"], "croup": ["A respiratory condition that is usually triggered by an acute viral infection of the upper airway."], "laryngotracheobronchitis": ["A respiratory condition that is usually triggered by an acute viral infection of the upper airway."], "sleeve": ["The part of a garment that covers the arm."], "keyboardist": ["A musician who plays a keyboard instrument."], "jacket": ["An outer garment covering the upper torso and arms.", "A piece of clothing worn on the upper body outside a shirt or blouse, until the waist or slightly below."], "in-marrying wife": ["A daughter-in-law living with the family of her husband's parents."], "marrying-in": ["Marriage within a particular group in accordance with custom or law.", "Having assimilated into the family of one's spouse."], "marrying-out": ["The custom of marrying outside a specified group of people to which a person belongs."], "homeward": ["To the own house or to the own domicile."], "seven hundred": ["The cardinal number occurring after six hundred ninety-nine and before seven hundred one, represented in Arabic numerals as 700."], "firefly": ["A nocturnal, bioluminescent beetle of the family Lampyridae."], "lightning bug": ["A nocturnal, bioluminescent beetle of the family Lampyridae."], "cuckold": ["A man married to an unfaithful wife, especially when he is unaware or unaccepting of the fact.", "To cheat on one's husband with another man.", "To be sexually unfaithful to one's spouse or lover."], "cuckquean": ["A woman who has an unfaithful husband."], "wittol": ["A man who tolerates his wife or a close woman to have sexual relations with another."], "contented cuckold": ["A man who tolerates his wife or a close woman to have sexual relations with another."], "mari complaisant": ["A man who tolerates his wife or a close woman to have sexual relations with another."], "buddle pit": ["An apparatus on which crushed ore is treated with running water in a way to wash the lighter and less valuable parts."], "buddle pond": ["An apparatus on which crushed ore is treated with running water in a way to wash the lighter and less valuable parts."], "mitral valve": ["Dual-flap valve connecting the left atrium and the left ventricle of the heart."], "bicuspid valve": ["Dual-flap valve connecting the left atrium and the left ventricle of the heart."], "left atrioventricular valve": ["Dual-flap valve connecting the left atrium and the left ventricle of the heart."], "learning center": ["Private institution offering classes for special purposes (such as test preparation, remedial education, etc.)"], "matrilocal": ["Of or related to the situation in which the husband takes residence with the wife and (with or near) her parental family."], "retail price": ["The full suggested price of a particular good or service, before any sale, discount, or other deal."], "uncrowded": ["Occupied or populated by a small number of people."], "intercalary year": ["A year with 366 days instead of 365."], "bissextile year": ["A year with 366 days instead of 365."], "angiogenesis": ["A physiological process in which new blood vessels are formed."], "hip roof": ["A type of roof where all sides slope downwards to the walls, usually with a gentle slope."], "hipped roof": ["A type of roof where all sides slope downwards to the walls, usually with a gentle slope."], "cagey": ["Keeping one's thoughts and opinions to oneself.", "Unwilling or hesitant to give information."], "tightlipped": ["Keeping one's thoughts and opinions to oneself.", "Having an inclination to secrecy."], "tight-lipped": ["Keeping one's thoughts and opinions to oneself.", "Having an inclination to secrecy."], "secretive": ["Having an inclination to secrecy."], "nationality": ["The condition of a person who is a member of a particular nation."], "American dollar": ["The official currency of the United States of America, with symbol \"$\"."], "friends and relatives": ["Both friends and family."], "African penguin": ["A penguin of the species Spheniscus demersus having a black back and a white chest with black stripes."], "black-footed penguin": ["A penguin of the species Spheniscus demersus having a black back and a white chest with black stripes."], "Jackass penguin": ["A penguin of the species Spheniscus demersus having a black back and a white chest with black stripes."], "pedometer": ["A device that counts the number of steps that a person takes."], "pedometre": ["A device that counts the number of steps that a person takes."], "informer": ["One who informs someone else about something.", "A person who tells authorities about improper or illegal activity."], "informant": ["A person who tells authorities about improper or illegal activity."], "denouncer": ["A person who tells authorities about improper or illegal activity."], "gemologist": ["A person expert in identifying and evaluating gemstones."], "kinsfolk": ["People in the same family, connected by blood, marriage, or adoption."], "kinfolk": ["People in the same family, connected by blood, marriage, or adoption."], "juices": ["The liquid part or moisture of an animal body or substance."], "bodily fluid": ["Any liquid portion of the body, such as blood, urine, semen, saliva."], "humor": ["Any liquid portion of the body, such as blood, urine, semen, saliva."], "humour": ["Any liquid portion of the body, such as blood, urine, semen, saliva."], "biofluid": ["Any liquid portion of the body, such as blood, urine, semen, saliva."], "body fluid": ["Any liquid portion of the body, such as blood, urine, semen, saliva."], "lacrymal fluid": ["A clear, salty liquid produced by the lacrimal gland in the eye, whose normal function is to clean and lubricate the eyes; its production is increased when the eye is irritated, or when yawning, laughing or crying."], "lymph": ["A colourless, watery, bodily fluid carried by the lymphatic system."], "chyle": ["A milky bodily fluid consisting of lymph and emulsified fats, found in the lymph vessels of the small intestine.", "A digestive fluid containing fatty droplets, found in the small intestine."], "snot": ["Mucus from the nose."], "booger": ["Mucus from the nose."], "mucus": ["(physiology) A viscous secretion from the lining of the mucous membranes."], "loofah": ["A tropical vine, of the genus Luffa, having almost cylindrical fruit with a spongy, fibrous interior; the dishcloth gourd"], "loofa": ["A tropical vine, of the genus Luffa, having almost cylindrical fruit with a spongy, fibrous interior; the dishcloth gourd"], "luffa": ["A tropical vine, of the genus Luffa, having almost cylindrical fruit with a spongy, fibrous interior; the dishcloth gourd"], "ectoparasite": ["A parasite that lives on the surface of its host."], "blow one's nose": ["To clean mucus (in the nose) by exhaling forcefully."], "bodily function": ["A physiologic activity taking place in the body."], "bodily process": ["A physiologic activity taking place in the body."], "neurolymph": ["A clear, colorless fluid that fills the spaces in the brain and the\\ncentral canal of the spinal cord, as well as the spaces between\\nnerve cells."], "cyprine": ["Liquid secreted by the Bartholin's glands at the opening of the vagina when a woman is sexually aroused."], "hereditary": ["A disease or trait passed from a parent to offspring in the genes.", "A title, honor or right legally granted to somebody's descendant after that person's death.", "Passed from a parent to offspring in the genes."], "uncommon": ["Not easily found.", "Out of the ordinary."], "rare": ["Not easily found."], "Sindhi (Arabic script)": ["The Sindhi language written with the Arabic script."], "chyme": ["The thick semifluid mass of partly digested food that is passed from the stomach to the duodenum."], "interstitial fluid": ["The fluid found in the space between the cells of tissues in multicellular animals."], "tissue fluid": ["The fluid found in the space between the cells of tissues in multicellular animals."], "Sindhi (Gurumuki)": ["The Sindhi language written with the Gurumuki script."], "Sindhi (Gurumukhi)": ["The Sindhi language written with the Gurumuki script."], "meow": ["The cry of a cat."], "staphylococcus": ["A parasitic bacterium of the genus Staphylococcus."], "staphylococcal": ["Relating to staphylococcus."], "golden staph": ["A staphylococcus of the species Staphylococcus aureus, responsible for nosocomial infections in humans."], "glue ear": ["A condition in which the middle ear becomes filled with fluid instead of air."], "otitis media with effusion": ["A condition in which the middle ear becomes filled with fluid instead of air."], "wheat flour": ["A powder made from the grinding of wheat."], "argot": ["Terminology which is especially defined in relationship to a specific activity, profession, group, or event.", "A secret or private language used by various groups to prevent outsiders from understanding their conversations."], "see-saw": ["An apparatus composed of a plank, balanced in the middle, with seats at both end, used for a game in which one person goes up as the other goes down."], "oppression": ["The exercise of authority or power in a burdensome, cruel, or unjust manner."], "endoparasite": ["A parasite that lives inside the body of an organism."], "granule": ["A small particle.", "A particle from 2 to 4 mm in diameter, following the Wentworth scale."], "Wentworth scale": ["A particle classification system, classifying based on diameter."], "partnership": ["A commercial association of two or more persons, especially when incorporated."], "existence": ["The state of being."], "rich rhyme": ["A rhyme with at least three phonemes."], "well off": ["Having a lot of money and possessions."], "nouveau riche": ["Wealthy person whose fortunes are newly acquired, and who is therefore perceived to lack the refinement of those who were raised wealthy.", "The class of nouveau riche people."], "new money": ["Wealthy person whose fortunes are newly acquired, and who is therefore perceived to lack the refinement of those who were raised wealthy.", "The class of nouveau riche people."], "parvenu": ["Wealthy person whose fortunes are newly acquired, and who is therefore perceived to lack the refinement of those who were raised wealthy.", "A person who has risen, climbed up, or has been promoted to a higher social class, especially through acquisition of wealth, rights, or political authority but has not gained social acceptance by those within that new class."], "upstart": ["Wealthy person whose fortunes are newly acquired, and who is therefore perceived to lack the refinement of those who were raised wealthy."], "needy": ["Not having what is necessary for subsistence.", "Desiring constant affirmation."], "necessitous": ["Not having what is necessary for subsistence."], "indigent": ["Not having what is necessary for subsistence."], "windsurfer": ["A person who practices windsurfing."], "windsurf": ["To practice windsurfing."], "windsurfing": ["A water sport consisting of riding a surfboard that has an attached sail."], "boardsailing": ["A water sport consisting of riding a surfboard that has an attached sail."], "ba\u00efne": ["A geographical phenomenon consisting of a pool of water parallel to the beach and connected to the sea."], "thrips": ["A tiny, slender insect with fringed wings of the order Thysanoptera."], "thunderfly": ["A tiny, slender insect with fringed wings of the order Thysanoptera."], "thunderbug": ["A tiny, slender insect with fringed wings of the order Thysanoptera."], "storm fly": ["A tiny, slender insect with fringed wings of the order Thysanoptera."], "thunderblight": ["A tiny, slender insect with fringed wings of the order Thysanoptera."], "corn lice": ["A tiny, slender insect with fringed wings of the order Thysanoptera."], "salute": ["To raise one's glass and touch it against another person's (usually at a celebration meal, etc. and usually with the word, \"cheers\").", "A formal gesture done in honor of someone or something.", "Any action done for the purpose of honor or tribute.", "To make a gesture in honor of someone or something according to a prescribed military regulation.", "To express respect, commendation or praise for."], "salutation": ["A conventional phrase used to start a letter or other written communication."], "closing": ["A polite phrase used to end a letter or other written communication."], "valediction": ["A polite phrase used to end a letter or other written communication.", "A speech made when leaving or parting company.", "An act of departure from a place or a group.", "Any statement of good wish (like \"good bye\") at parting."], "complimentary close": ["A polite phrase used to end a letter or other written communication."], "complimentary closing": ["A polite phrase used to end a letter or other written communication."], "if only": ["[Introduces a wish or desire for the present or the future.]", "[Used to express regret or longing about an action in the past.]"], "god forbid": ["[To say that one hopes that something does not happen.]"], "heaven forbid": ["[To say that one hopes that something does not happen.]"], "heaven forfend": ["[To say that one hopes that something does not happen.]"], "perish the thought": ["May the thought perish. [said of an idea or suggestion which is undesirable.]"], "far be it": ["[A disclaimer stating that the person speaking will not do something.]"], "meatus": ["A tubular opening or passage leading to the interior of the body."], "cirque": ["A curved depression with steep walls in a mountainside, created by glacier erosion, forming the end of a valley."], "semifinal": ["A stage in a competition, the winners of which will play the final."], "epidemic parotitis": ["An infectious disease which occurs mostly in childhood and is characterized by swelling of the face and parotid gland."], "progeny": ["All of the offspring of a given progenitor.", "Those who descend from a biological ancestor, through any number of generations."], "masseter": ["The large muscle that raises the underjaw and assists in mastication."], "masseter muscle": ["The large muscle that raises the underjaw and assists in mastication."], "penna": ["Any feather possessing a hard central shaft (rachis), usually with vanes composed of barbs."], "contour feather": ["Any feather possessing a hard central shaft (rachis), usually with vanes composed of barbs."], "rachis": ["Central axis of bird feathers, which carries the barbs, extending the calamus that is implanted into the skin."], "pennaceous feather": ["Any feather possessing a hard central shaft (rachis), usually with vanes composed of barbs."], "vane": ["The flattened, web-like part of a feather, consisting of a series of barbs on either side of the shaft."], "barbule": ["Any of the secondary barbs that form a fringe of small projections on a feather."], "barbicel": ["Any of the hooks on the barbules of a feather that interlock adjacent barbs."], "afterfeather": ["The downy lower barbs of a feather."], "hypoptile": ["The downy lower barbs of a feather."], "hyporachis": ["The downy lower barbs of a feather."], "filoplume": ["A hair-like feather with a slender scape and without a web in most or all of its length."], "andradite": ["A nesosilicate of the garnet group, with formula Ca3Fe2Si3O12."], "Miwa": ["A Gur language spoken in Burkina Faso and the Ivory Coast."], "nerf": ["A change to a video game that reduces the desirability or effectiveness of a particular game element.", "To reduce, in a video game, the desirability or effectiveness of a particular game element."], "raincoat": ["A waterproof coat worn to protect against the rain."], "slicker": ["A person who acts dishonestly.", "A waterproof coat worn to protect against the rain."], "Kansai-ben": ["A group of Japanese dialects spoken in the Kansai region of Japan."], "remarkable": ["Immediately noticeable or standing out."], "cast": ["To pour [a hardenable liquid material, like metal, plaster, glass, concrete etc.] into a mold in order to produce a solid object of the shape of the mold.", "To deposit (e.g. a vote).", "(computing) To change a variable type from, for example, integer to real, or integer to text.", "To assign a role in a play or performance.", "The collective group of actors performing a play or production together.", "A supportive and immobilising device used to help mend broken bones."], "would": ["[Used to express regret or longing about an action in the past.]"], "would that": ["[Used to express regret or longing about an action in the past.]"], "eyeglasses": ["A pair of lenses in a frame that are worn in front of the eyes and are used to correct faulty vision or protect the eyes."], "escallion": ["Any onion of the genus Allium that lacks a fully-developed bulb."], "Welsh onion": ["Any onion of the genus Allium that lacks a fully-developed bulb."], "Japanese bunching onion": ["Any onion of the genus Allium that lacks a fully-developed bulb."], "thanks to": ["[Used to indicate the cause of a mentioned outcome of positive connotation.]"], "mid-life crisis": ["An emotional state where a person realises that his/her life may be more than halfway over and starts to make significant changes in his/her life as a consequence."], "midlife crisis": ["An emotional state where a person realises that his/her life may be more than halfway over and starts to make significant changes in his/her life as a consequence."], "cell therapy": ["The treatment of a disease by introducing new cells into an organism."], "cytotherapy": ["The treatment of a disease by introducing new cells into an organism."], "come on": ["To come near to; to move towards.", "[An expression of encouragement.]", "[An expression of disbelief. ]", "[An expression of encouragement for the addressee to go ahead with an unspecified but contextually obvious action.]"], "c'mon": ["[An expression of encouragement.]"], "owing to": ["[Used to indicate the cause of a mentioned outcome of negative connotation.]"], "on account of": ["[Used to indicate the cause of a mentioned outcome of negative connotation.]"], "good news": ["Message expected to have positive reception or effect."], "glad tidings": ["Message expected to have positive reception or effect."], "Burgundian": ["An O\u00efl language spoken in Burgundy, France."], "e-mail address": ["A string containing an at sign (@) identifying an email box to which email messages can be sent."], "email address": ["A string containing an at sign (@) identifying an email box to which email messages can be sent."], "aquaporin": ["A protein embedded in the cell membrane that regulates the flow of water."], "jouissance": ["The feeling of pleasure during the sexual act or orgasm."], "renting": ["Transfer to another person, by the owner, of the use of something, for a certain time, at a certain price."], "Varhadi-Nagpuri": ["ISO 639-6 entity"], "oftentimes": ["Many times, with short intervals between occasions."], "Huambiza": ["A Jivaroan language spoken by the Huambisa people in Amazonas and Loreto, Peru."], "Wambisa": ["A Jivaroan language spoken by the Huambisa people in Amazonas and Loreto, Peru."], "venitive": ["A grammatical category of the verb in some languages indicating that the action is performed in the direction of the speaker."], "cislocative": ["A grammatical category of the verb in some languages indicating that the action is performed in the direction of the speaker."], "sea sparkle": ["A unicellular marine organism that produces light when stimulated."], "sea-sparkle": ["The glittering reflection of a light (like the sun, the moon, etc.) on water."], "entailment": ["The relationship between statements that holds true when one logically \"follows from\" one or more others."], "draft horse": ["A horse heavier and stronger than a mount, of a race specifically bred for pulling a heavy load."], "dray horse": ["A horse heavier and stronger than a mount, of a race specifically bred for pulling a heavy load."], "fixed asset": ["Asset or property of a corporation, which cannot be consumed or easily be converted into cash, and which enables its owner to carry on its operations."], "non-current asset": ["Asset or property of a corporation, which cannot be consumed or easily be converted into cash, and which enables its owner to carry on its operations."], "property plant and equipment": ["Asset or property of a corporation, which cannot be consumed or easily be converted into cash, and which enables its owner to carry on its operations."], "PP&E": ["Asset or property of a corporation, which cannot be consumed or easily be converted into cash, and which enables its owner to carry on its operations."], "fixture": ["An object that is fixed in place, especially a permanent appliance or other item of personal property that is considered part of a house and is sold (or rented) with it.", "A person or thing regularly present in the same place or position for a long time."], "speck": ["A very small piece of matter."], "take it on the chin": ["To accept a difficult situation without complaining."], "sarin": ["A colorless and odorless substance with the formula [(CH3)2CHO]CH3P(O)F, which is toxic to humans and animals."], "GB": ["A colorless and odorless substance with the formula [(CH3)2CHO]CH3P(O)F, which is toxic to humans and animals."], "emmetropia": ["The capacity of an eye to focus parallel rays of light on the retina, without using any accommodation."], "iboga": ["A perennial rainforest shrub, native to western Central Africa."], "bowman": ["Someone who shoots an arrow from a bow or a bolt from a crossbow."], "wheel-house": ["An enclosed compartment, on the deck of a small vessel such as a fishing boat, from which it may be navigated."], "burnout": ["The experience of long-term exhaustion and diminished interest due to continuous stress at work."], "you know": ["[Reminds of a fact that will be refered to later in the sentence]"], "how about": ["[Introduces a shared fact which now appears to be changed]"], "splenius": ["A broad muscle running from the upper back to the top part of the back of the neck."], "it turns out that": ["[Introduces a fact that is the speaker has just realized.]"], "Australian pelican": ["A large waterbird of the species Pelecanus conspicillatus, which is white, with black wings and a pink bill."], "Australian Pelican": ["A large waterbird of the species Pelecanus conspicillatus, which is white, with black wings and a pink bill."], "Musgu Group": ["A sub-group of the Biu-Mandara Group B languages, spoken in Cameroon and Chad."], "Biu-Mandara B.2": ["A sub-group of the Biu-Mandara Group B languages, spoken in Cameroon and Chad."], "Muzuk": ["ISO 639-6 entity"], "Mousgou": ["A Chadic language spoken in the north of Cameroon in the department of Diamar\u00e9, in the communes of Yagoua and Kouss\u00e9ri and in the Mora plains, as well as in Chad, up to Chari."], "Mousgoun": ["A Chadic language spoken in the north of Cameroon in the department of Diamar\u00e9, in the communes of Yagoua and Kouss\u00e9ri and in the Mora plains, as well as in Chad, up to Chari."], "Musgum": ["A Chadic language spoken in the north of Cameroon in the department of Diamar\u00e9, in the communes of Yagoua and Kouss\u00e9ri and in the Mora plains, as well as in Chad, up to Chari."], "Mousgoum": ["A Chadic language spoken in the north of Cameroon in the department of Diamar\u00e9, in the communes of Yagoua and Kouss\u00e9ri and in the Mora plains, as well as in Chad, up to Chari."], "false rib": ["A rib that is attached not to the sternum but to the overlying rib by cartilage."], "floating rib": ["A rib connected only to the vertebra."], "true rib": ["A rib that attach to the sternum."], "asternal": ["(A rib) that does not join the sternum."], "sternal": ["That connects to the sternum (when referring to ribs)."], "reduced gravity aircraft": ["An aircraft using an elliptic flight path to provide zero gravity environments."], "vomit comet": ["An aircraft using an elliptic flight path to provide zero gravity environments."], "quinquennium": ["A period of five years."], "mother of vinegar": ["A substance composed of cellulose and acetic acid bacteria that is added to alcoholic liquids such as wine to produce vinegar."], "Stollen": ["A traditional German cake containing dried fruit and covered with sugar."], "mattress protector": ["An item of bedding that sits on top of or encases a mattress to protect it."], "mattress topper": ["An item of bedding that sits on top of or encases a mattress to protect it."], "mattress pad": ["An item of bedding that sits on top of or encases a mattress to protect it."], "mattress underpad": ["An item of bedding that sits on top of or encases a mattress to protect it."], "table football": ["A table-top game based on football, where small figures placed on rotating bars are used to shoot the ball."], "foosball": ["A table-top game based on football, where small figures placed on rotating bars are used to shoot the ball."], "table soccer": ["A table-top game based on football, where small figures placed on rotating bars are used to shoot the ball."], "biliardino": ["A table-top game based on football, where small figures placed on rotating bars are used to shoot the ball."], "pathogenicity": ["The capacity of an organism to cause disease in its host."], "roundback": ["An abnormal backward curve to the vertebral column."], "Romance languages": ["A branch of the Indo-European language family, comprised of all the languages that descend from Latin, the language of the Roman Empire."], "Romanic languages": ["A branch of the Indo-European language family, comprised of all the languages that descend from Latin, the language of the Roman Empire."], "Latin languages": ["A branch of the Indo-European language family, comprised of all the languages that descend from Latin, the language of the Roman Empire."], "Neo-Latin languages": ["A branch of the Indo-European language family, comprised of all the languages that descend from Latin, the language of the Roman Empire."], "Rhaeto-Romance languages": ["A Romance language sub-family which includes multiple languages spoken in north and north-eastern Italy, and Switzerland."], "Rhaetian": ["A Romance language sub-family which includes multiple languages spoken in north and north-eastern Italy, and Switzerland."], "Gallo-Romance languages": ["A branch of Romance languages that includes French and several other languages spoken in modern France and northern Italy and Spain."], "Western Romance languages": ["A group of Continental Romance languages."], "Italo-Western languages": ["A group of Romance languages."], "Italo-Western": ["A group of Romance languages."], "Sursilvan dialects": ["A group of dialects of the Romansh language spoken in the Surselva, on the western bank of the Rhine."], "trivet": ["An object, sometimes with short feet, used to support hot dishes and protect a table."], "here is": ["[Used to designate a person or object near the speaker.]"], "voila": ["[Used to introduce a person, thing or action that the listener can feel very often visually.]"], "voil\u00e0": ["[Used to introduce a person, thing or action that the listener can feel very often visually.]"], "there it is": ["[Used to introduce a person, thing or action that the listener can feel very often visually.]"], "caravan": ["A group of animals, vehicles, or people that follow one another in a line.", "Transport means used to travel, where one can also sleep in and which has kitchen etc."], "procession": ["A group of animals, vehicles, or people that follow one another in a line."], "wat": ["A Buddhist temple."], "swordfish": ["A fish of the species Xiphias gladius with a long flat bill."], "pergalo": ["A framework in the form of a passageway of columns that supports a trelliswork roof; used to support and train climbing plants."], "leapling": ["Someone born on a 29th of February."], "sulfur dioxide": ["A poisonous gas with the formula SO2 that is released by volcanoes and the burning of coal and petroleum."], "fin": ["An appendage of a fish used for swimming."], "lie down": ["(For a human or animal) to assume a horizontally extended position on a surface."], "kissing muscle": ["A complex of muscles in the lips that encircle the mouth."], "orbicularis oris": ["A complex of muscles in the lips that encircle the mouth."], "lollipop": ["A confectionery consisting of a piece of candy/sweet attached to a stick."], "roe deer": ["A relatively small, reddish and grey-brown Eurasian deer of the species Capreolus capreolus."], "European roe deer": ["A relatively small, reddish and grey-brown Eurasian deer of the species Capreolus capreolus."], "western roe deer": ["A relatively small, reddish and grey-brown Eurasian deer of the species Capreolus capreolus."], "insignificant": ["Of very little importance."], "at first blush": ["From appearances alone."], "avatar": ["A digital representation or handle of a person or being.", "The incarnation of a deity, particularly Vishnu."], "pyrotechnics": ["The art and technology of fireworks and related military applications."], "biotechnological engineering": ["The application of engineering principles and techniques to biology and medicine. It is largely concerned with the design of replacement body parts, such as limbs, heart valves, etc."], "hypothecary": ["Relating to the pledging of a property to secure a debt.", "The holder of a hypothec."], "zander": ["A European freshwater fish in the family Percidae, closely related to the perch, Sander lucioperca."], "scintigraphy": ["A method of medical imaging where radioisotopes are administered in a patient, and the emitted radiation is captured to form two-dimensional images."], "the following": ["[Used to refer to a new piece of information that will follow in the sentence.]"], "High Frame Rate": ["A motion picture format where the projection frame rate is higher than 24 frames per second."], "HFR": ["A motion picture format where the projection frame rate is higher than 24 frames per second."], "tug of war": ["A sport in which two teams must pull a rope in opposite directions."], "tug o' war": ["A sport in which two teams must pull a rope in opposite directions."], "tug war": ["A sport in which two teams must pull a rope in opposite directions."], "rope war": ["A sport in which two teams must pull a rope in opposite directions."], "rope pulling": ["A sport in which two teams must pull a rope in opposite directions."], "tugging war": ["A sport in which two teams must pull a rope in opposite directions."], "maiden name": ["A woman's last name before she married and took her husband's last name."], "girl's name": ["A woman's last name before she married and took her husband's last name."], "substance turnover": ["Movement of chemical elements in a circular pathway, from organisms to physical environment, back to organisms."], "cycling of substances": ["Movement of chemical elements in a circular pathway, from organisms to physical environment, back to organisms."], "dracunculiasis": ["A parasitic disease caused by the development of a Guinea worm in the subcutaneous tissue of mammals."], "Guinea worm disease": ["A parasitic disease caused by the development of a Guinea worm in the subcutaneous tissue of mammals."], "parasitism": ["A disease caused by parasites."], "parasitical": ["Of, pertaining to, or characteristic of parasites."], "grape phylloxera": ["An pale yellow insect of the genus Dactylosphaera vitifoliae that feeds on the roots and leaves of grapevines."], "phylloxera": ["An pale yellow insect of the genus Dactylosphaera vitifoliae that feeds on the roots and leaves of grapevines."], "multiple drug resistance": ["The ability of pathologic cells to withstand chemicals that are designed to aid in the eradication of such cells."], "rowboat": ["An open boat propelled by pulling oars through the water."], "harvest mite": ["A mite of the species Trombicula autumnalis infecting all domestic mammals, humans, and some birds."], "anyhow": ["In any way or manner whatever.", "Whatever the case may be"], "regardless": ["Whatever the case may be"], "be that as it may": ["Whether that is true or not."], "nonetheless": ["In spite of that."], "all the same": ["In spite of that."], "just the same": ["In spite of that."], "kettlebell": ["A cast-iron weight, resembling a cannonball with a handle, used to perform ballistic exercises."], "girya": ["A cast-iron weight, resembling a cannonball with a handle, used to perform ballistic exercises."], "precipitate": ["(For water in the atmosphere) to fall to the ground, as rain, snow, hail, etc."], "rectrix": ["A feather on the tail of a bird."], "landlady": ["A person who owns and rents land such as a house, apartment, or condo."], "card sharp": ["A person who uses skill and deception to win at poker or other card games."], "cardsharp": ["A person who uses skill and deception to win at poker or other card games."], "card shark": ["A person who uses skill and deception to win at poker or other card games."], "cardshark": ["A person who uses skill and deception to win at poker or other card games."], "overproduction": ["A production that exceeds the demand by consumers."], "oversupply": ["A production that exceeds the demand by consumers."], "excess of supply": ["A production that exceeds the demand by consumers."], "dung beetle": ["A beetle that feeds partly or exclusively on feces."], "devitalize": ["To weaken or reduce in force, intensity, effect, quantity."], "naked": ["Without clothing.", "Of a person not wearing any clothing and not otherwise covered."], "myrmecology": ["The scientific study of ants."], "postcranial": ["Located behind the cranium."], "Jovian": ["Relating to the Roman god Jupiter.", "Relating to the planet Jupiter."], "double agent": ["A person who is active in an Organisation or similar who is actively and secretly sharing some or all of its internal and confidential informations with another organisation or group of people most often targetting quite opposite goals."], "traitor": ["A person who is active in an Organisation or similar who is actively and secretly sharing some or all of its internal and confidential informations with another organisation or group of people most often targetting quite opposite goals."], "landscape architect": ["A person who plans and designs a landscape, garden, or outdoor space."], "slimy person": ["Pejorative expression for a person who gets on the nerves of others by constantly trying or pretending to do them favours and ask favours from them in a deceptive and unpleasantly submissive way for his or her own benefit."], "slimy one": ["Pejorative expression for a person who gets on the nerves of others by constantly trying or pretending to do them favours and ask favours from them in a deceptive and unpleasantly submissive way for his or her own benefit."], "calciphyte": ["Plant that grows on ground rich in chalc."], "bartender": ["A person preparing and serving drinks at a bar."], "barkeep": ["A person preparing and serving drinks at a bar."], "barkeeper": ["A person preparing and serving drinks at a bar."], "bar-keeper": ["A person preparing and serving drinks at a bar."], "barman": ["A man preparing and serving drinks at a bar."], "barmaid": ["A woman preparing and serving drinks at a bar."], "barperson": ["A person preparing and serving drinks at a bar."], "bar attendant": ["A person preparing and serving drinks at a bar."], "bartendress": ["A woman preparing and serving drinks at a bar."], "barlady": ["A woman preparing and serving drinks at a bar."], "Kangxi radical index": ["Graphic portions of Chinese characters which are used for organizing entries in Chinese dictionaries into sections which all share the same graphic part.", "Kangxi radical index"], "skeptical": ["Having or expressing doubt."], "sceptical": ["Having or expressing doubt."], "mop": ["An object made of absorbent material attached to a pole or stick and used to clean floors and other surfaces with a liquid.", "To wash with a mop."], "Cremun\u00e9s": ["A dialect of Western Lombard language group spoken in the city and province of Cremona in Lombardy, Italy."], "spinneret": ["The organ a spider uses to spin its web."], "derma": ["A layer of skin between the epidermis and subcutaneous tissues."], "devitalise": ["To weaken or reduce in force, intensity, effect, quantity."], "dormer window": ["An upright window built on a sloping roof."], "draught horse": ["A horse heavier and stronger than a mount, of a race specifically bred for pulling a heavy load."], "draught beer": ["A beer served from a cask or keg."], "draft beer": ["A beer served from a cask or keg."], "areca nut": ["The seed of the areca palm (Areca catechu)."], "betel nut": ["The seed of the areca palm (Areca catechu)."], "Panchali": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "Khah": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "Pahari": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "Khashali": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "Pogali": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "Puguj": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "Pogli": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "Kohistani": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "Banihali": ["A dialect of the Kashmiri language spoken mainly in the Ramban district of Jammu and Kashmir."], "drumfire": ["An intense and prolonged artillery fire."], "cannonade": ["An intense and prolonged artillery fire."], "ear trumpet": ["A conical shaped device serving as an hearing aid."], "face lift": ["A cosmetic surgery procedure to give a more youthful appearance to the face by removing wrinkles."], "face lifting": ["A cosmetic surgery procedure to give a more youthful appearance to the face by removing wrinkles."], "rhytidoplasty": ["A cosmetic surgery procedure to give a more youthful appearance to the face by removing wrinkles."], "Old Saxon": ["The earliest recorded form of Low German, documented from the 8th century until the 12th century."], "Old Low German": ["The earliest recorded form of Low German, documented from the 8th century until the 12th century."], "body temperature": ["The measured temperature of the body of a person or animal."], "doff": ["To take (an article of clothing) away from one's body."], "digital subscriber line": ["A family of technologies that provides digital data transmission over the wires of a local telephone network."], "digital subscriber loop": ["A family of technologies that provides digital data transmission over the wires of a local telephone network."], "duckbilled platypus": ["A semi-aquatic mammal of the species Ornithorhynchus anatinus that lays eggs."], "guilder": ["The Dutch currency until the introduction of the euro in 2002."], "gulden": ["The Dutch currency until the introduction of the euro in 2002."], "florin": ["The Dutch currency until the introduction of the euro in 2002."], "Dutch florin": ["The Dutch currency until the introduction of the euro in 2002."], "Ea": ["A god in Akkadian and Babylonian mythology, counterpart of the Sumerian Enki."], "eaglet": ["A young immature eagle."], "ebonize": ["To paint something to make it look like ebony."], "ebonise": ["To paint something to make it look like ebony."], "tidal bore": ["A wave caused by an incoming tide traveling up an estuary."], "eagre": ["A wave caused by an incoming tide traveling up an estuary."], "bore": ["A wave caused by an incoming tide traveling up an estuary."], "aegir": ["A wave caused by an incoming tide traveling up an estuary."], "eygre": ["A wave caused by an incoming tide traveling up an estuary."], "earflap": ["One of the two flaps attached to a cap to cover the ears."], "earlap": ["One of the two flaps attached to a cap to cover the ears."], "alternative form": ["A word or phrase that has the same meaning and is phonologically similar to another word or phrase of the same language."], "etymologise": ["To find or examine the etymology or etymon of a given word."], "Min Nan (H\u00e0n-l\u00f4)": ["The Min Nan language written using a Han-Romanization mixed script."], "Valentine's Day": ["A celebration of lovers that is observed on February 14."], "Saint Valentine's Day": ["A celebration of lovers that is observed on February 14."], "Feast of Saint Valentine": ["A celebration of lovers that is observed on February 14."], "earless": ["Lacking ears."], "earldom": ["The rank of being an earl.", "The territory controlled by an earl."], "earlobe": ["The lower fleshy part of the human ear."], "Chelyabinsk": ["A Russian city just east of the Ural Mountains."], "trimethylaminuria": ["A rare metabolic disorder due to a defect in the normal production of the enzyme flavin which causes a person to give off a strong fishy body odour."], "fish odor syndrome": ["A rare metabolic disorder due to a defect in the normal production of the enzyme flavin which causes a person to give off a strong fishy body odour."], "fish malodor syndrome": ["A rare metabolic disorder due to a defect in the normal production of the enzyme flavin which causes a person to give off a strong fishy body odour."], "European hornbeam": ["A small to medium-size tree of the species Carpinus betulus with a smooth and greenish-grey bark."], "common hornbeam": ["A small to medium-size tree of the species Carpinus betulus with a smooth and greenish-grey bark."], "whitebeam": ["A deciduous tree of the species Sorbus aria, compact and domed having cream-white flowers."], "common whitebeam": ["A deciduous tree of the species Sorbus aria, compact and domed having cream-white flowers."], "snowy mespilus": ["A deciduous tree of the species Amelanchier lamarckii having star-shaped white flowers."], "juneberry": ["A deciduous tree of the species Amelanchier lamarckii having star-shaped white flowers."], "snowy mespil": ["A deciduous tree of the species Amelanchier lamarckii having star-shaped white flowers."], "Wikidata ID": ["A unique identifier for an item in Wikidata."], "saucer magnolia": ["A hybrid of the Chinese Yulan magnolia and Mulan magnolia which is now the most commonly used magnolia in horticulture."], "ground-to-ground missile": ["A missile launched from the ground, or from the sea, toward a target on land or at sea."], "dress shirt": ["A man's white shirt (with a starch front) for evening wear (usually with a tuxedo)."], "railway platform": ["A raised structure from which passengers can enter or leave a train, metro etc."], "dialectal variant": ["A word or phrase that has the same meaning but is phonologically different from another word or phrase of the same language."], "is abbreviated as": ["[An annotation in OmegaWiki that links an expression to its abbreviated equivalents]"], "is an abbreviation of": ["[An annotation in OmegaWiki that shows what an abbreviated expression stands for, in its unabbreviated form.]"], "fearfully": ["In a fearful manner."], "fearfulness": ["The quality of being fearful."], "highborn": ["Of noble or aristocratic birth."], "faceless": ["Having no face."], "bodiless": ["Having no physical body or form."], "brainless": ["Without brain or personality, excessively superficial.", "Having no brain."], "primiparous": ["Bearing a child for the first time."], "biodegradable waste": ["A type of waste which can be broken down into its base compounds by micro-organisms."], "gaily": ["In a cheerful or merry manner."], "cheerfully": ["In a cheerful or merry manner."], "precariat": ["A social group of unprotected workers and unemployed people."], "venography": ["An X-ray examination of a system of veins that have been injected with a contrast medium."], "hippophage": ["Someone who eats horsemeat.", "Eating horsemeat."], "oceanic whitetip shark": ["A large pelagic shark inhabiting tropical and warm temperate seas, having long, white-tipped, rounded fins."], "Marchigiano": ["A central Italian dialect spoken in the region of Marche, in Italy."], "fire extinguisher": ["Any of various portable devices for extinguishing a fire with chemicals."], "flame extinguisher": ["Any of various portable devices for extinguishing a fire with chemicals."], "nutrigenomics": ["The study of the effects of foods on gene expression."], "phantasy": ["A situation imagined by an individual that expresses certain desires or aims on the part of its creator. Fantasies sometimes involve situations that are highly unlikely; or they may be quite realistic. Another, more basic meaning of fantasy is something which is not 'real,' as in perceived explicitly by any of the senses, but exists as an imagined situation of object to subject."], "imagination": ["The ability to create imaginary images, events or stories."], "econometrist": ["A person who studies econometrics."], "encolure": ["The neck of a horse."], "epiphysial": ["Of or relating to the epiphysis."], "ergot": ["A fungus of the genus Claviceps which grows on rye and similar plants."], "ergot fungi": ["A fungus of the genus Claviceps which grows on rye and similar plants."], "viticulturist": ["A person who grows grapes."], "bariatric": ["Relating to bariatrics, the branch of medicine concerned with the study and treatment of obesity."], "bariatrics": ["A branch of medicine concerned with the study and treatment of obesity."], "bariatrician": ["A specialist in bariatrics."], "fab": ["Causing wonder, admiration or astonishment."], "marvelous": ["Causing wonder, admiration or astonishment."], "Eastern Indo-Aryan languages": ["A group of Indo-Aryan languages spoken in Bihari, Oriya and Bengali."], "Tharu languages": ["A group of Eastern Indo-Aryan languages spoken by the Tharu people."], "Tharu": ["A group of Eastern Indo-Aryan languages spoken by the Tharu people."], "Yeshiva": ["A university for Jewish students, who mainly learn the Talmud."], "semantic borrowing character": ["A character that is borrowed from another language for its meaning, but not for its phonetic form."], "etymological character": ["A character that is borrowed from another language for both its meaning and its phonetic form."], "phonetic borrowing character": ["A character that is borrowed from another language for its phonetic form, but not for its meaning."], "domestic character": ["A character that has been specifically created for a given language, following the principles of phonetic compounding and semantic aggregation."], "POJ": ["An orthography used to write the Min Nan language with Latin characters."], "side dish": ["A serving of food accompanying, and meant to be consumed with, the main course of a meal."], "Kartvelian languages": ["A group of Caucasian languages spoken primarily in Georgia."], "Adjarian": ["A dialect of the Georgian language spoken in Adjara, an autonomous republic of Georgia."], "paramyxovirus": ["A virus of the Paramyxoviridae family that causes diseases in humans and animals."], "oncolytic": ["Able to kill cancer cells without damaging healthy tissue."], "torticollis": ["A painful muscular contracture of the neck."], "wry neck": ["A painful muscular contracture of the neck."], "loxia": ["A painful muscular contracture of the neck."], "laterocollis": ["A torticollis in which the head is tipped towards the shoulder."], "rotational torticollis": ["A torticollis in which the head rotates along the longitudal axis."], "anterocollis": ["A torticollis characterized by a forward flexion of the head and neck."], "retrocollis": ["A torticollis characterized by a hyperextension of the head and neck backwards."], "muscular torticollis": ["A painful muscular contracture of the neck."], "Julius Caesar": ["A Roman general, statesman, Consul and notable author of Latin prose."], "date of birth": ["The date on which a person was born."], "birther": ["A person who denies that President Barack Obama was born in the United States."], "methamphetamine": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "metamfetamine": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "meth": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "tik": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "N-methylamphetamine": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "methylamphetamine": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "desoxyephedrine": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "N-methyl-1-phenylpropan-2-amine": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "crystal meth": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "tina": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "tweak": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "(S)-N-methyl-1-phenylpropan-2-amine": ["An addictive psychoactive drug of formula C\u2081\u2080H\u2081\u2085N."], "taurine": ["An organic acid of formula C2H7NO3S widely distributed in animal tissues."], "2-aminoethanesulfonic acid": ["An organic acid of formula C2H7NO3S widely distributed in animal tissues."], "tauric acid": ["An organic acid of formula C2H7NO3S widely distributed in animal tissues."], "apple sauce": ["Puree of stewed apples usually sweetened and spiced."], "Rubicon": ["A shallow river in northeastern Italy, about 80 kilometres long, running from the Apennine Mountains to the Adriatic Sea through the southern Emilia-Romagna region, between the towns of Rimini and Cesena."], "logarithm": ["The number by which a fixed number (the base) must be raised to produce a given number."], "land mine": ["An explosive device, concealed under or on the ground and designed to destroy or disable enemy targets as they pass over or near the device."], "one hundred": ["The cardinal number occurring after ninety-nine and before one hundred one, represented in Roman numerals as C and in Arabic numerals as 100."], "googolplex": ["The number ten to the googolth power, or 10 to the power of 10 to the power of 100."], "fabulously": ["In a wonderful manner.", "In a manner that is typical of fables."], "fantastically": ["In a wonderful manner."], "Wikiquote": ["A free online compendium of sourced quotations from notable people."], "forgetful": ["Apt or likely to forget things."], "forgetfulness": ["The trait of being apt or likely to forget things."], "Wikisource": ["A wiki-based project, owned by the Wikimedia Foundation, for creating a library of source texts."], "Kalmyk Oirat": ["A Mongolic language spoken by the Kalmyk people of the Republic of Kalmykia, a federal subject of the Russian Federation."], "washover": ["The sediment deposited by overwash."], "overwash": ["A flow of water over the crest of the beach that deposits sediments inland."], "graze": ["The vegetation on pastures that is available for livestock to feed upon.", "To scratch or cut with nails.", "(For livestock) To feed on grass or herbage from a pasture.", "To feed as in a meadow or pasture."], "unaligned": ["That is not aligned."], "Sillok": ["A Nilo-Saharan language spoken in Sudan."], "William Shakespeare": ["An English poet and playwright, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist."], "Homer": ["The author of the Iliad and the Odyssey and revered as the greatest of ancient Greek epic poets."], "Voltaire": ["French writer, historian, and philosopher."], "Joost van den Vondel": ["A Dutch writer and playwright."], "Mahatma Gandhi": ["The preeminent leader of Indian nationalism in British-ruled India."], "Gandhi": ["The preeminent leader of Indian nationalism in British-ruled India."], "Hebrew (nikkud)": ["The Hebrew language written with nikkud marks."], "Sinti-Manouche": ["A variety of Romani spoken by the Sinti people in Germany, France, Austria, northern Italy and other adjacent regions."], "Sintenghero Tschib": ["A variety of Romani spoken by the Sinti people in Germany, France, Austria, northern Italy and other adjacent regions."], "Sintenghero Tschiben": ["A variety of Romani spoken by the Sinti people in Germany, France, Austria, northern Italy and other adjacent regions."], "Sintitikes": ["A variety of Romani spoken by the Sinti people in Germany, France, Austria, northern Italy and other adjacent regions."], "Romanes": ["A variety of Romani spoken by the Sinti people in Germany, France, Austria, northern Italy and other adjacent regions."], "unimpaired": ["That has not been impaired or altered; lacking nothing essential, especially not damaged"], "unaltered": ["That has not been impaired or altered; lacking nothing essential, especially not damaged"], "unchanged": ["That has not been impaired or altered; lacking nothing essential, especially not damaged"], "oil of vitriol": ["A highly corrosive acid made from sulfur dioxide; widely used in the chemical industry."], "one thousand": ["The cardinal number between nine hundred and ninety nine and one thousand and one."], "six thousand": ["The cardinal number between five thousand nine hundred and ninety nine and six thousand and one."], "pnictide": ["A binary chemical compound comprising a pnictogen."], "Adjukru": ["A language of C\u00f4te d'Ivoire."], "Adyoukrou": ["A language of C\u00f4te d'Ivoire."], "Adyukru": ["A language of C\u00f4te d'Ivoire."], "Ajukru": ["A language of C\u00f4te d'Ivoire."], "GIS": ["An organized collection of computer hardware, software, geographic data, and personnel designed to efficiently capture, store, update, manipulate, analyze, and display all forms of geographically referenced information that can be drawn from different sources, both statistical and mapped."], "you can't judge a book by its cover": ["One shouldn't judge someone or something only based on appearances."], "don't judge a book by its cover": ["One shouldn't judge someone or something only based on appearances."], "the cowl does not make the monk": ["One shouldn't judge someone or something only based on appearances."], "you can't tell a book by its cover": ["One shouldn't judge someone or something only based on appearances."], "fine feathers make fine birds": ["The outside appearance of a person reflects his personality."], "red warbler": ["A small passerine bird of the species Cardellina ruber endemic to the highlands of Mexico."], "clonal colony": ["A group of genetically identical individuals (plants, fungi, bacteria etc.) that have grown in a given location, all originating from asexual reproduction of a single ancestor."], "third-born": ["Having two older siblings.", "A person having two older siblings."], "third born": ["Having two older siblings.", "A person having two older siblings."], "superefficient": ["Very efficient."], "super-efficient": ["Very efficient."], "angelicalness": ["The state or quality of being angelical."], "amidst": ["[Denotes a mingling or intermixing with distinct or separable objects.]"], "amid": ["[Denotes a mingling or intermixing with distinct or separable objects.]"], "us": ["1st person plural subject pronoun."], "Mahan": ["A Northern Nubian language of the Nilo-Saharan phylum, currently spoken along the banks of the Nile river in southern Egypt and northern Sudan by approximately 495,000 Nubians."], "unveil": ["To make known something heretofore kept secret.", "To remove a veil from."], "stylish": ["Characterized by or exhibiting refinement, grace and beauty.", "Characterized by a particular style."], "virtually": ["All, but not quite; slightly short of ; close to entirely.", "In a virtual manner."], "North-eastern Kannada": ["A dialect of the Kannada language spoken in the North of the state of Karnataka, India."], "vintager": ["A person who grows grapes."], "vine grower": ["A person who grows grapes."], "vine-grower": ["A person who grows grapes."], "Cornelian cherry": ["A flowering plant native to southern Europe and southwest Asia with edible berries."], "European cornel": ["A flowering plant native to southern Europe and southwest Asia with edible berries."], "chloracne": ["An acne-like eruption of blackheads, cysts, and pustules associated with over-exposure to certain halogenated aromatic compounds."], "present tense": ["Grammatical tense that describes the present or ongoing conditions."], "complete atrioventricular septal defect": ["Congenital heart disease consisting of the presence of a single, defective, valve between the atria and the ventricles instead of two (mitral and tricuspid valves), and pathological holes in the septum, between the two atria and between the two ventricles, on both ends of the valve."], "CAVSD": ["Congenital heart disease consisting of the presence of a single, defective, valve between the atria and the ventricles instead of two (mitral and tricuspid valves), and pathological holes in the septum, between the two atria and between the two ventricles, on both ends of the valve."], "complete AVSD": ["Congenital heart disease consisting of the presence of a single, defective, valve between the atria and the ventricles instead of two (mitral and tricuspid valves), and pathological holes in the septum, between the two atria and between the two ventricles, on both ends of the valve."], "counter-culture": ["Cultural system which develops in conflict with the prevailing culture."], "triduan": ["Lasting three days.", "Happening every third day."], "three-day": ["Lasting three days."], "schmooze": ["To chat casually with someone with the hope of obtaining some advantage from it.", "A casual chat with someone, with the hope of obtaining some advantage from it."], "shmooze": ["To chat casually with someone with the hope of obtaining some advantage from it."], "two-month": ["Lasting two months."], "bimestrial": ["Occurring every two months."], "mandrake": ["A plant of the genus Mandragora.", "A small demon having a human shape and no beard."], "mandragora": ["A small demon having a human shape and no beard."], "vinyl": ["A conventional record made of vinyl as opposed to a compact disc."], "win-win": ["That benefits all parties involved, without the need of a compromise."], "jawbone": ["The bone of the lower jaw."], "public phone": ["A telephone with which the communication is payed by inserting money, a credit card, or a telephone card."], "payphone": ["A telephone with which the communication is payed by inserting money, a credit card, or a telephone card."], "pay phone": ["A telephone with which the communication is payed by inserting money, a credit card, or a telephone card."], "public telephone": ["A telephone with which the communication is payed by inserting money, a credit card, or a telephone card."], "zoological park": ["Area in which animals, especially wild animals, are kept so that people can go and look at them, or study them."], "normothermic": ["Having a normal body temperature."], "normothermia": ["The condition of having a normal body temperature."], "outreach": ["To provide charitable services to people who would otherwise not have access to those services.", "The act of providing charitable services to people who would otherwise not have access to those services."], "uglify": ["To make ugly.", "To become ugly."], "uglification": ["The process of making or becoming ugly."], "beautify": ["To make more beautiful.", "To be beautiful to look at."], "prettify": ["To make more beautiful."], "beautification": ["The process of making or becoming more beautiful."], "-ification": ["The process of becoming."], "signal lamp": ["A blinker lamp for signaling in Morse code."], "Aldis lamp": ["A blinker lamp for signaling in Morse code."], "duodecimal system": ["A numeral system using twelve as its base."], "cainophobia": ["Fear of new things or experiences."], "cainotophobia": ["Fear of new things or experiences."], "cut somebody's throat": ["To cut the throat of."], "get right": ["To choose the right thing."], "chuck out": ["To Oust or expel, especially people."], "kick out": ["To Oust or expel, especially people."], "be incombent on": ["to be a duty for"], "tumbler": ["An athlete who performs acts requiring skill, agility and coordination.", "A movable part in a lock, which is moved by a key for locking or unlocking."], "vermiform appendix": ["A small excrescence of the cecum."], "cecal appendix": ["A small excrescence of the cecum."], "caecal appendix": ["A small excrescence of the cecum."], "vermix": ["A small excrescence of the cecum."], "doctrinally": ["In a doctrinal manner."], "forsythia": ["A shrub native to Asia and Eastern Europe which is cultivated for its yellow flowers, which bloom in early spring."], "symphonic": ["Pertaining to, or having the character of a symphony."], "dark horse": ["A little-known person or thing that quickly emerges to prominence."], "Akkala Sami": ["A Sami language that was spoken in the south-west of the Kola Peninsula in Russia."], "abomasum": ["The fourth stomach compartment in ruminants."], "maw": ["The fourth stomach compartment in ruminants."], "rennet-bag": ["The fourth stomach compartment in ruminants."], "reed tripe": ["The fourth stomach compartment in ruminants."], "honeycomb": ["The second chamber in the alimentary canal of a ruminant animal"], "kings-hood": ["The second chamber in the alimentary canal of a ruminant animal"], "reticulorumen": ["The first chamber in the alimentary canal of ruminant animals, composed of the rumen and reticulum."], "folio": ["A sheet of paper folded once that constitutes two leaves or four pages of a book or manuscript.", "A book made of sheets of paper each folded once (two leaves or four pages to the sheet); hence, a book of the largest kind, exceeding 30 cm in height.", "The page number on a printed page of a book."], "quarto": ["A size of paper (7.5\"-10\" x 10\"-12.5\")(190-254 x 254-312 mm), formed by folding and cutting one of several standard sizes of paper (15\"-20\" x 20\"-25\")(381-508 x 508-635 mm) twice to form 4 leaves (eight sides).", "A book size, corresponding to the quarto paper size."], "4to": ["Abbreviation of quarto, a paper size."], "4\u00ba": ["Abbreviation of quarto, a paper size."], "Q": ["Abbreviation of quarto, a book size ."], "fo": ["The abbreviation for folio, a book size.", "The abbreviation for folio, a book size."], "2\u00ba": ["The abbreviation for folio, a book size."], "octavo": ["A sheet of paper 7 to 10 inches (17-25 cm) high and 4.5 to 6 inches (11-15 cm) wide, the size varying with the large original sheet used to create it, made by folding the original sheet three times to produce eight leaves.", "A book made of octavo pages."], "8vo": ["Abbreviation of octavo, a page size.", "Abbreviation of octavo, a book size."], "8\u00ba": ["Abbreviation of octavo, a page size.", "Abbreviation of octavo, a book size."], "underworld": ["The world of the dead, located underneath the world of the living."], "regrettably": ["In an unfortunate manner."], "unluckily": ["In an unfortunate manner."], "mantelpiece": ["A shelf that is affixed to the wall above a fireplace."], "fireplace mantel": ["A shelf that is affixed to the wall above a fireplace."], "chimneypiece": ["A shelf that is affixed to the wall above a fireplace."], "papal conclave": ["A meeting of the College of Cardinals in the Sistine Chapel in Rome convened to elect a new pope."], "irrecoverably": ["In a manner that cannot be recovered from or made good."], "irretrievably": ["In a manner that cannot be recovered from or made good."], "irreparably": ["In a manner that cannot be recovered from or made good."], "bloodied": ["Covered in blood."], "gory": ["Covered in blood."], "sanguinolent": ["Covered in blood."], "murine": ["Relating to, or characteristic of, the mouse, rat or any mammal of the family Muridae."], "sea horse": ["A large Arctic marine mammal (Odobenus rosmarus), related to seals and having long tusks, tough, wrinkled skin, and four flippers.", "A small marine fish of the genus Hippocampus that has a horselike head."], "seahorse": ["A large Arctic marine mammal (Odobenus rosmarus), related to seals and having long tusks, tough, wrinkled skin, and four flippers.", "A small marine fish of the genus Hippocampus that has a horselike head."], "hippocampus": ["A mythological creature with the front head and forelimbs of a horse and the rear of a dolphin.", "A part of the brain located inside the temporal lobe, consisting mainly of grey matter which plays a role in memory and emotion."], "hippocamp": ["A mythological creature with the front head and forelimbs of a horse and the rear of a dolphin."], "sea-horse": ["A mythological creature with the front head and forelimbs of a horse and the rear of a dolphin."], "hippocampal": ["Relating to the hippocampus (a part of the brain)."], "deafening silence": ["A silence, or a lack of any response, such as due to disapproval or lack of any enthusiasm."], "lavish": ["Who spends a lot, in an excessive manner.", "Very generous; giving (money, praise, etc.) in abundance."], "munificent": ["Very liberal in giving or bestowing.", "Very generous; giving (money, praise, etc.) in abundance."], "overgenerous": ["Very generous; giving (money, praise, etc.) in abundance."], "profuse": ["Very generous; giving (money, praise, etc.) in abundance."], "prodigal": ["Very generous; giving (money, praise, etc.) in abundance."], "stylishly": ["In a stylish manner."], "common carp": ["A tall freshwater fish from the species Cyprinus carpio with a high back, original from Asia."], "European carp": ["A tall freshwater fish from the species Cyprinus carpio with a high back, original from Asia."], "macaron": ["A sweet meringue-based confectionery made with egg white, sugar, almonds and various flavours, such as chocolate, vanilla or raspberry."], "Bohemian waxwing": ["A songbird of the waxwing family."], "mycologist": ["A person who studies, professes or practices mycology."], "plight": ["A bad or unfortunate situation."], "threshing floor": ["Dry flat area where the grain is separated from the straw or husks by beating."], "thrashing floor": ["Dry flat area where the grain is separated from the straw or husks by beating."], "threshing-floor": ["Dry flat area where the grain is separated from the straw or husks by beating."], "OD": ["To take an excessive dose of a substance."], "Darkinyung": ["An extinct Australian Aboriginal language spoken by the Darkinjung people."], "Darkinjung": ["An extinct Australian Aboriginal language spoken by the Darkinjung people."], "Darkinjang": ["An extinct Australian Aboriginal language spoken by the Darkinjung people."], "Darki\u00f1ung": ["An extinct Australian Aboriginal language spoken by the Darkinjung people."], "Darginjang": ["An extinct Australian Aboriginal language spoken by the Darkinjung people."], "Darginyung": ["An extinct Australian Aboriginal language spoken by the Darkinjung people."], "Darkinung": ["An extinct Australian Aboriginal language spoken by the Darkinjung people."], "Darkinoong": ["An extinct Australian Aboriginal language spoken by the Darkinjung people."], "Darknung": ["An extinct Australian Aboriginal language spoken by the Darkinjung people."], "Kala Lagaw Ya": ["A language indigenous to all the central and western Torres Strait Islands, Queensland, Australia."], "Emilian": ["A language spoken almost exclusively in the historical region of Emilia, Italy."], "Standard Fijian": ["A language of Fiji"], "porcellaneous": ["Of or relating to porcelain; resembling porcelain."], "porcelaneous": ["Of or relating to porcelain; resembling porcelain."], "camauro": ["A cap traditionally worn by the Pope of the Catholic Church."], "summer lilac": ["A species of flowering plant native to China and Japan which is popular as ornamental plant."], "butterfly-bush": ["A species of flowering plant native to China and Japan which is popular as ornamental plant."], "orange eye": ["A species of flowering plant native to China and Japan which is popular as ornamental plant."], "rice oil": ["Common cooking oil in Asia, produced from the bran of rice, it is a by-product of milled white rice."], "adenocarcinoma": ["A cancerous tumor that starts in cells with gland-like properties that line some internal organs. The majority of all breast, colon, and prostrate cancers are adenocarcinomas."], "low-till farming": ["An agricultural planting practice - generally using a \"planter\" or \"seed drill\" - in which disturbance of the soil is kept to a minimum."], "Far East": ["The Eastern part of the Eurasian continent, that is located east of the Middle East, comprising East Asia, Southeast Asia and Russian Far East."], "anaesthesiology": ["The science, study, or practice of the use of anesthesia or anesthetics."], "an\u00e6sthesiology": ["The science, study, or practice of the use of anesthesia or anesthetics."], "pestle": ["A heavy cylindrical object with a rounded end used for crushing and grinding."], "kickback": ["A pre-agreed commission given by one of the parties in a financial transaction to somebody who has facilitated or made possible the transaction, without the knowledge of the other party."], "Euler's number": ["The base of the natural logarithm, beginning 2.7182...."], "put standing": ["To place in vertical or quasi-vertical position, stable by the sole combined effect of gravity and support(s) reaction."], "homophobic": ["Having or conveying a dislike of homosexuals or homosexuality."], "homophobia": ["The dislike or hate of homosexuals or homosexuality."], "homophobe": ["A person who dislikes or hates homosexuals or homosexuality."], "nevus": ["A benign growth on the skin (usually tan, brown, or flesh-colored) that contains a cluster of melanocytes and may form a slight relief."], "naevus": ["A benign growth on the skin (usually tan, brown, or flesh-colored) that contains a cluster of melanocytes and may form a slight relief."], "n\u00e6vus": ["A benign growth on the skin (usually tan, brown, or flesh-colored) that contains a cluster of melanocytes and may form a slight relief."], "\u00feorn": ["A letter in the Old English, Gothic, Old Norse, and Icelandic alphabets."], "biological marker": ["A normal metabolite that, when present in abnormal concentrations in certain body fluids, can indicate the presence of a particular disease or toxicological condition."], "fortune teller": ["A person who gives predictions about the future of a person's life."], "fortuneteller": ["A person who gives predictions about the future of a person's life."], "fortune-telling": ["The practice of predicting information about a person's future."], "fortune telling": ["The practice of predicting information about a person's future."], "summarise": ["To restate the main points, or ideas, in a condensed form."], "acidophilia": ["The preference of acidic conditions."], "acidophile": ["An organism that prefers acidic conditions."], "acidophilic": ["Preferring acidic conditions."], "alkaliphilia": ["The preference of alkaline environments."], "alkalophilia": ["The preference of alkaline environments."], "alkalinophilia": ["The preference of alkaline environments."], "alkaliphilic": ["That prefers alkaline environments."], "alkalinophilic": ["That prefers alkaline environments."], "alkalophilic": ["That prefers alkaline environments."], "alkaliphile": ["An organism that prefers alkaline environments."], "alkalinophile": ["An organism that prefers alkaline environments."], "alkalophile": ["An organism that prefers alkaline environments."], "anthophilia": ["The attraction to, or love of flowers."], "anthophile": ["A person who loves flowers.", "An organism that is attracted to flowers."], "anthophilic": ["That is attracted to, or loves flowers."], "anthophilous": ["Living or growing on flowers."], "anthophagous": ["That feeds on flowers."], "Nama": ["A Khoisan language spoken by the Nama people in South Africa, Namibia and Botswana."], "N\u00e0m\u00e1": ["A Khoisan language spoken by the Nama people in South Africa, Namibia and Botswana."], "Mizo": ["A Sino-Tibetan language spoken by the Mizo people in the Mizoram state of India, and in some neighboring states."], "Lushai": ["A Sino-Tibetan language spoken by the Mizo people in the Mizoram state of India, and in some neighboring states."], "Teton Sioux": ["A language of the USA and Canada."], "Manitoba": ["A province in western Canada."], "tell fortunes": ["To predict information about a person's future."], "tell a person his fortune": ["To predict information about a person's future."], "starchy": ["Of or pertaining to starch.", "Containing starch.", "Of cloth: Stiffened with starch."], "starched": ["Of cloth: Stiffened with starch."], "cornstarch": ["A very fine starch powder derived from corn, used as a thickener in cooking."], "corn starch": ["A very fine starch powder derived from corn, used as a thickener in cooking."], "cornflour": ["A very fine starch powder derived from corn, used as a thickener in cooking."], "maize starch": ["A very fine starch powder derived from corn, used as a thickener in cooking."], "macadamize": ["To cover a surface, such as a road or a street, with a layer of crushed stones."], "melatonin": ["A hormone of formula C13H16N2O2 that regulates the sleep-wake cycles in humans."], "N-acetyl-5-methoxytryptamine": ["A hormone of formula C13H16N2O2 that regulates the sleep-wake cycles in humans."], "protodeacon": ["The senior cardinal deacon of the Catholic Church, in order of appointment.", "An honorific title given to a deacon in the Orthodox Church."], "Cardinal protodeacon": ["The senior cardinal deacon of the Catholic Church, in order of appointment."], "Trisagion": ["A standard hymn of the Divine Liturgy used in several Christian Churches."], "albeit": ["In spite of being."], "heliosphere": ["The region of space dominated by Earth's Sun."], "heliopause": ["The boundary of heliosphere where the solar wind is stopped by the interstellar medium."], "deicide": ["The killing of a god or goddess.", "The killer of a god or goddess."], "deify": ["To make a god of."], "placement": ["The manner in which objects or persons have been organized or arranged; the result of arranging."], "disposition": ["A complex mental state involving beliefs and feelings and values and tendencies to act in certain ways.", "The manner in which objects or persons have been organized or arranged; the result of arranging."], "apotheosize": ["To make a god of."], "apotheosise": ["To make a god of."], "hagiography": ["A biography of a saint."], "touch\u00e9": ["[An exclamation said by a fencer who is hit in fencing.]", "[An exclamation said by a person who acknowledges being defeated in an argument or discussion.]"], "touch\u00e9!": ["[An exclamation said by a fencer who is hit in fencing.]"], "vomitive": ["An agent that causes vomiting."], "vomitory": ["An agent that causes vomiting."], "kittie": ["A young cat."], "playful": ["Who likes to play for entertainment, like a child or a kitten."], "comradery": ["A close friendship between people who are in a same group or team."], "camaraderie": ["A close friendship between people who are in a same group or team."], "chumminess": ["A close friendship between people who are in a same group or team."], "comradeship": ["A close friendship between people who are in a same group or team."], "comradeliness": ["A close friendship between people who are in a same group or team."], "esoteric": ["Not understandable by the non-initiated."], "catkin": ["A type of inflorescence arranged in a cylindrical cluster."], "ament": ["A type of inflorescence arranged in a cylindrical cluster."], "American willow": ["A willow of the species Salix discolor native to North America."], "dust bunny": ["A small clump of dust that tends to accumulate indoors in areas that are not regularly dusted, such as under heavy furniture."], "dust kitty": ["A small clump of dust that tends to accumulate indoors in areas that are not regularly dusted, such as under heavy furniture."], "dust mouse": ["A small clump of dust that tends to accumulate indoors in areas that are not regularly dusted, such as under heavy furniture."], "beggar's velvet": ["A small clump of dust that tends to accumulate indoors in areas that are not regularly dusted, such as under heavy furniture."], "slut's wool": ["A small clump of dust that tends to accumulate indoors in areas that are not regularly dusted, such as under heavy furniture."], "dust kitten": ["A small clump of dust that tends to accumulate indoors in areas that are not regularly dusted, such as under heavy furniture."], "collet": ["The rim of a ring within which a jewel is set."], "perfect is the enemy of good": ["Insisting on perfection can result in no improvement at all."], "the perfect is the enemy of the good": ["Insisting on perfection can result in no improvement at all."], "perfection is the enemy of good": ["Insisting on perfection can result in no improvement at all."], "perfection is the enemy of the good": ["Insisting on perfection can result in no improvement at all."], "Ngaju": ["An Austronesian language spoken along the Kapuas, Kahayan, Katingan, and Mentaya Rivers in Central Borneo, Indonesia."], "Old Javanese": ["The oldest phase of the Javanese language that developed into Middle Javanese by the 13th century."], "Sardu": ["A Sardinian language spoken in the south of the island of Sardinia."], "Campidanese": ["A Sardinian language spoken in the south of the island of Sardinia."], "Campidese": ["A Sardinian language spoken in the south of the island of Sardinia."], "South Sardinian": ["A Sardinian language spoken in the south of the island of Sardinia."], "Central Campidanese": ["A dialect of the Campidanese Sardinian language."], "Cagliaritan": ["A dialect of the Campidanese Sardinian language spoken around the city of Cagliari."], "Northeastern Sardinian": ["A dialect of Sardinian spoken in northeastern Sardinia."], "Sard": ["A Sardinian language spoken in the center-North of the island of Sardinia."], "Sardarese": ["A Sardinian language spoken in the center-North of the island of Sardinia."], "Logudorese": ["A Sardinian language spoken in the center-North of the island of Sardinia."], "Central Sardinian": ["A Sardinian language spoken in the center-North of the island of Sardinia."], "Southwestern Logudorese": ["A dialect of Logudorese Sardinian."], "Northern Logudorese": ["A dialect of Logudorese Sardinian."], "Northwestern Sardinian": ["A Southern Romance language and transitional between Sardinian and Corsican."], "electronic key": ["A card with a magnetic stripe or a chip that is used to open a door."], "Pipil": ["A Uto-Aztecan language spoken in El Salvador by the Pipil people."], "Nawat": ["A Uto-Aztecan language spoken in El Salvador by the Pipil people."], "cleavage": ["The act of cleaving or the state of being cleft.", "The tendency of a crystal to split along specific planes.", "The repeated division of a cell into daughter cells after mitosis.", "The hollow or separation between a woman's breasts.", "The splitting of a large molecule into smaller ones."], "intermammary sulcus": ["The hollow or separation between a woman's breasts."], "d\u00e9collet\u00e9": ["Having a low neckline that reveals part of the breasts."], "decollete": ["Having a low neckline that reveals part of the breasts."], "d\u00e9colletage": ["A low neckline on a woman's dress that reveals part of the breasts."], "decolletage": ["A low neckline on a woman's dress that reveals part of the breasts."], "intermammary cleft": ["The hollow or separation between a woman's breasts."], "skipping rope": ["The primary tool used in the game where one or more participants jump over a rope swung so that it passes under their feet and over their heads."], "skip rope": ["The primary tool used in the game where one or more participants jump over a rope swung so that it passes under their feet and over their heads."], "glove puppet": ["A type of puppet that is controlled by the hand or hands that occupies the interior of the puppet."], "airan": ["A refreshing beverage that consists of yoghurt, cold water and salt."], "North Magnetic Pole": ["The point on the surface of Earth's Northern Hemisphere at which the planet's magnetic field points vertically downwards."], "fire escape staircase": ["Stairs designed to be used when a place must be evacuated quickly, such as in case of fire."], "sinopia": ["A basic design made \u200b\u200bon the plaster of a wall before painting a fresco."], "ducted propeller": ["A propeller fitted inside a non-rotating cylinder, used to improve the efficiency of the propeller at low speeds."], "h\u00e9lice carenada": ["A propeller fitted inside a non-rotating cylinder, used to improve the efficiency of the propeller at low speeds."], "h\u00e9lice-tobera": ["A propeller fitted inside a non-rotating cylinder, used to improve the efficiency of the propeller at low speeds."], "crapshoot": ["A risky venture with an uncertain outcome.", "A game of craps (dice game)."], "hidebound": ["(of a book) Bound with the hide of an animal.", "(of an animal) Having the skin adhering abnormally close to the flesh.", "(of trees) Having the bark so tight that it impedes the growth.", "Having restricted or rigid views, and being unreceptive to new ideas."], "narrow-minded": ["Having restricted or rigid views, and being unreceptive to new ideas."], "narrowminded": ["Having restricted or rigid views, and being unreceptive to new ideas."], "close-minded": ["Having restricted or rigid views, and being unreceptive to new ideas."], "closed-minded": ["Having restricted or rigid views, and being unreceptive to new ideas."], "narrow minded": ["Having restricted or rigid views, and being unreceptive to new ideas."], "small-minded": ["Having restricted or rigid views, and being unreceptive to new ideas."], "narrow of mind": ["Having restricted or rigid views, and being unreceptive to new ideas."], "frenemy": ["An enemy pretending to be a friend."], "frienemy": ["An enemy pretending to be a friend."], "snow crocus": ["A type of crocus that is among the first to bloom at the end of winter."], "Pacific": ["The world's largest body of water, to the east of Asia and Australasia and to the west of the Americas."], "pull one's socks up": ["Execute or confront a task with dedication and diligence."], "demagogical": ["Of or pertaining to demagogy or a demagogue."], "demagogically": ["In a demagogic manner."], "zoophoric": ["In the classical orders designation of an Ionic frieze, consisting of a continuous band, decorated with figures of carved humans and/or animals."], "sleeping woman": ["A woman who is sleeping."], "sleeping car": ["A railroad passenger car that has beds where passengers can sleep."], "sleeper car": ["A railroad passenger car that has beds where passengers can sleep."], "reminisce": ["To talk or write about past experiences."], "stirring": ["(For a music, song, etc.) Having a stimulating effect, such as giving the desire to dance."], "rousing": ["(For a music, song, etc.) Having a stimulating effect, such as giving the desire to dance."], "syllabus": ["A summary of topics which will be discussed in a course."], "gunfighter": ["(Old West) A person able to shoot quickly and accurately with a gun."], "gunslinger": ["(Old West) A person able to shoot quickly and accurately with a gun."], "gunman": ["(Old West) A person able to shoot quickly and accurately with a gun."], "marksmanship": ["The ability to shoot accurately at a target."], "markswoman": ["A woman trained to shoot precisely with a certain type of rifle."], "giant squid": ["A deep-ocean dwelling squid of the genus Architeuthis."], "colossal squid": ["A squid of the species Mesonychoteuthis hamiltoni measuring up to 12-14m."], "Antarctic squid": ["A squid of the species Mesonychoteuthis hamiltoni measuring up to 12-14m."], "giant cranch squid": ["A squid of the species Mesonychoteuthis hamiltoni measuring up to 12-14m."], "nursemaid": ["A woman who watches over someone else's kids usually as a full-time job."], "babysitter": ["A person who cares for the children of others occasionally and for a short period of time."], "baby-sitter": ["A person who cares for the children of others occasionally and for a short period of time."], "babysitting": ["The practice of temporarily caring for children of another person."], "baby sitting": ["The practice of temporarily caring for children of another person."], "baby-sitting": ["The practice of temporarily caring for children of another person."], "Lafofa languages": ["A Niger\u2013Congo language cluster spoken in Kordofan, Sudan."], "Tegem languages": ["A Niger\u2013Congo language cluster spoken in Kordofan, Sudan."], "Jebel Tekeim": ["A Niger\u2013Congo language spoken in Kordofan, Sudan."], "honeybee": ["A stinging, social, domesticated insect (Apis mellifera) kept by humans for the creation of beeswax and honey."], "Berezina River": ["A ca. 613 km long river in Belarus and a tributary of the Dnieper River."], "Mandailing": ["A language of Indonesia (Sumatra)."], "cassiopeium": ["Chemical element with symbol Lu and atomic number 71, silvery white lanthanide."], "seed bank": ["A place where seeds are stored for short-term use in farming or for long-term preservation (Source: GreenFacts)."], "blood-brain barrier": ["A separation of circulating blood from the brain extracellular fluid (BECF) in the central nervous system (CNS)."], "biocapacity": ["The capacity of an area to provide resources and absorb wastes."], "biofilm": ["An aggregate of microorganisms in which cells adhere to each other on a surface."], "biomolecule": ["Any molecule that is produced by a living organism."], "bioterrorism": ["Terrorism involving the intentional release or dissemination of biological agents."], "taiga": ["A biome characterized by coniferous forests consisting mostly of pines, spruces and larches."], "boreal forest": ["A biome characterized by coniferous forests consisting mostly of pines, spruces and larches."], "International Energy Agency": ["An intergovernmental organisation which acts as energy policy advisor to member countries in their effort to ensure reliable, affordable and clean energy for their citizens."], "worker bee": ["A sterile female bee whose speciality is to support the hive, especially by collecting pollen."], "IEA": ["An intergovernmental organisation which acts as energy policy advisor to member countries in their effort to ensure reliable, affordable and clean energy for their citizens."], "psychedelic": ["A psychoactive drug whose primary action is to alter cognition and perception.", "Relating to or denoting new or altered perceptions or sensory experiences."], "psychedelic substance": ["A psychoactive drug whose primary action is to alter cognition and perception."], "dissociative": ["A class of hallucinogen, which distort perceptions of sight and sound and produce feelings of detachment - dissociation - from the environment and self."], "deliriant": ["A class of hallucinogen that produces delirium."], "anticholinergic": ["A class of hallucinogen that produces delirium."], "hallucinogen": ["A general group of pharmacological agents that can cause subjective changes in perception, thought, emotion and consciousness."], "waterlogging": ["The saturation of soil with water."], "antimicrobial": ["An agent that kills microorganisms or inhibits their growth."], "Earth's magnetic field": ["The magnetic field that extends from the Earth's inner core to where it meets the solar wind."], "geomagnetic field": ["The magnetic field that extends from the Earth's inner core to where it meets the solar wind."], "pyromaniac": ["Someone who is obsessed with fire."], "pyromaniacal": ["Of or relating to pyromania."], "Pyrenean": ["Of or pertaining to the Pyrenees, a range of mountains separating France and Spain."], "veisalgia": ["The sickness, nausea and headaches that occur the morning after a person drinks too much alcohol."], "protectionism": ["The economic policy of restraining trade between states through government regulations designed to promote goods and services produced domestically with respect to imports."], "agricultural subsidy": ["A governmental subsidy paid to farmers and agribusinesses to supplement their income, manage the supply of agricultural commodities, and influence the cost and supply of such commodities."], "vehemently": ["In a vehement manner."], "computer crime": ["Any crime that involves a computer and a network."], "child pornography": ["Pornography depicting sexually explicit activities involving a child."], "adware": ["Any software package which automatically renders advertisements in order to generate revenue for its author."], "advertising-supported software": ["Any software package which automatically renders advertisements in order to generate revenue for its author."], "keylogging": ["The recording of the keys struck on a keyboard, typically in a covert manner so that the person using the keyboard is unaware that their actions are being monitored."], "code injection": ["The exploitation of a computer bug that is caused by processing invalid data."], "buffer overrun": ["An anomaly where a process stores data in a buffer outside the memory the programmer set aside for it."], "cyclic redundancy check": ["An error-detecting code commonly used in digital networks and storage devices to detect accidental changes to raw data."], "self-modifying code": ["A machine code that alters its own instructions while it is executing."], "zero-day attack": ["An attack that exploits a previously unknown vulnerability in a computer application."], "ransomware": ["A class of malware which restricts access to the computer system that it infects, and demands a ransom paid to the creator of the malware in order for the restriction to be removed."], "meteorological": ["Of or pertaining to meteorology."], "meteorologic": ["Of or pertaining to meteorology."], "Ligurian Sea": ["A part of the Mediterranean Sea between the Italian Riviera, Corsica and Elba."], "Balearic Sea": ["A sea in the Mediterranean Sea in between the Balearic Islands and Levante."], "Iberian Sea": ["A sea in the Mediterranean Sea in between the Balearic Islands and Levante."], "calligraphic": ["Of or pertaining to calligraphy.", "Written in an artistic style or manner, as calligraphy."], "Icarian Sea": ["The part of the Mediterranean Sea between Cyclades and Asia Minor."], "Asia Minor": ["A large peninsula between the Mediterranean Sea, the Aegean Sea and the Black Sea; it makes up the Asian part of Turkey."], "Anatolia": ["A large peninsula between the Mediterranean Sea, the Aegean Sea and the Black Sea; it makes up the Asian part of Turkey."], "cyberwarfare": ["Politically motivated hacking to conduct sabotage and espionage."], "cyberstalking": ["The use of the Internet or other electronic means to stalk or harass an individual, a group of individuals, or an organization."], "learning management system": ["A software application for the administration, documentation, tracking, reporting and delivery of education courses or training programs."], "content management system": ["A computer program that allows publishing, editing and modifying content as well as maintenance from a central interface."], "CMS": ["A computer program that allows publishing, editing and modifying content as well as maintenance from a central interface."], "remote procedure call": ["An inter-process communication that allows a computer program to cause a subroutine or procedure to execute in another address space (commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction."], "email client": ["A computer program used to access and manage a user's email."], "email reader": ["A computer program used to access and manage a user's email."], "mail user agent": ["A computer program used to access and manage a user's email."], "software patent": ["A patent on any performance of a computer realised by means of a computer program."], "preprocessor": ["A program that processes its input data to produce output that is used as input to another program."], "soursop": ["The fruit of Annona muricata, a tree native to Mexico.", "A tropical evergreen tree of the species Annona muricata, reaching up to 4 meters."], "Hindu": ["A person adhering to the Hindu religion (Hinduism).", "Of, or relating to Hinduism, or to Hindus and their culture."], "sugar substitute": ["A sweetening agent, especially one that does not contain sugar."], "trot": ["To walk rapidly."], "depress": ["To make depressed, sad or bored."], "configure": ["To set up or arrange something in such a way that it is ready for operation for a particular purpose, or to someone's particular liking."], "occupy": ["To make oneself or someone to have a lot of things to do.", "To have a right, title, or office.", "To have permanent residence.", "To make full.", "To have, or to have taken, possession or control of (a territory).", "To fill or take up a place (a seat, a room etc.)."], "instalar": ["To establish a colony."], "run into": ["To come together with someone by accident.", "To hit or come into contact against something."], "come across": ["To encounter something by accident or after searching for it.", "To come together with someone by accident."], "gate-crash": ["To attend a social event without invitation."], "marvel": ["To overwhelm with surprise or sudden wonder."], "oppose": ["To attempt to stop the progression of (someone or something)."], "postmortem": ["Occurring after death."], "post-mortem": ["Occurring after death."], "post-it note": ["A small piece of paper with an adhesive strip on one side."], "sticky note": ["A small piece of paper with an adhesive strip on one side."], "sticky-note": ["A small piece of paper with an adhesive strip on one side."], "post-traumatic stress disorder": ["Any condition that develops following some stressful situation or event; such as sleep disturbance, recurrent dreams, withdrawal or lack of concentration."], "PTSD": ["Any condition that develops following some stressful situation or event; such as sleep disturbance, recurrent dreams, withdrawal or lack of concentration."], "posttraumatic stress disorder": ["Any condition that develops following some stressful situation or event; such as sleep disturbance, recurrent dreams, withdrawal or lack of concentration."], "hold in place": ["To make something fixed or stable; to cause to be firmly attached."], "supplant": ["To take the place of; to replace, to supersede.", "To cause the downfall of; to remove violently."], "retransmit": ["To transmit again."], "resend": ["To transmit again."], "insure": ["To provide for compensation if some specified risk occurs.", "To subscribe to a policy of insurance.", "To make certain of."], "indemnify": ["To provide for compensation if some specified risk occurs.", "To compensate or reimburse someone for some expense or injury."], "reimburse": ["To compensate with payment; especially, to repay money spent on one's behalf."], "resist": ["To withstand the actions of."], "subscribe": ["To sign up to receive regular copies of a publication, such as a newspaper or a magazine, delivered for a period of time.", "To pay for the provision of a service, such as Internet access or a cell phone plan.", "To believe or agree with a theory or an idea.", "To agree to buy, as of stocks and shares."], "carve": ["To cut or to chip in order to form something."], "esculpir": ["To shape hard or plastic material, commonly stone (either rock or marble), metal, or wood."], "sculpt": ["To shape hard or plastic material, commonly stone (either rock or marble), metal, or wood."], "impel": ["To drive forward; to propel an object.", "To impose urgently, importunately, or inexorably."], "consign": ["To send to a final destination."], "give credit": ["To sell on credit."], "sell on credit": ["To sell on credit."], "hoist": ["To raise or lift to a desired elevation, by means of tackle or pulley, as a sail, a flag, a heavy package or weight."], "cling": ["To grip tightly or tenaciously.", "To come or be in close contact with; to stick or hold together and resist separation."], "relocate": ["To change one's domicile or place of business."], "molt": ["To shed hair, feathers, skin, horns etc. and replace it by a fresh layer."], "valise": ["An item of luggage."], "poetess": ["A woman who writes poems."], "yours": ["Belonging to you."], "superficially": ["In a superficial manner."], "shallowly": ["In a superficial manner."], "recidivate": ["To return to a criminal behaviour."], "be delirious": ["To disrupt the reason due to illness or a strong passion."], "magnify": ["To elevate someone to a higher grade or dignity."], "moderately": ["In a moderate manner."], "Blender": ["A free and open-source 3D computer graphics software product used for creating animated films, visual effects, interactive 3D applications or video games."], "productive": ["Of, or relating to the creation of goods or services."], "peculiar": ["Out of the ordinary."], "Solaris": ["A Unix operating system originally developed by Sun Microsystems. It superseded their earlier SunOS in 1993."], "Oracle Solaris": ["A Unix operating system originally developed by Sun Microsystems. It superseded their earlier SunOS in 1993."], "cursor": ["A moving icon or other representation of the position of the pointing device."], "manipulator": ["A device which can be used to move, arrange or operate something."], "handler": ["A device which can be used to move, arrange or operate something."], "bulge": ["To stick out from (a surface)."], "straighten": ["To cause to become straight."], "flatten": ["To make something flat or flatter."], "animator": ["A person who creates an animation or cartoon."], "cartoonist": ["A person who creates an animation or cartoon."], "preparation": ["The act of preparing or getting ready."], "simulator": ["A machine or system that simulates an environment (such as an aircraft cockpit), often for training purposes."], "redraw": ["To draw again."], "cel animation": ["An animation technique where each frame is drawn on a transparent layer which is later placed over a fixed background."], "remaining": ["Which remains, especially after something else has been removed."], "imprudent": ["Extremely foolish or unwise."], "podiatry": ["The branch of medicine concerned with the diagnosis and treatment of diseases of the feet (and formerly the hands)."], "lambkin": ["Young sheep."], "mutton": ["The flesh of sheep used as food."], "sheepmeat": ["The flesh of sheep used as food."], "sheepflesh": ["The flesh of sheep used as food."], "chiropody": ["The branch of medicine concerned with the diagnosis and treatment of diseases of the feet (and formerly the hands)."], "Moodle": ["A free and open source course management system."], "MySQL": ["An open source relational database management system that runs as a server providing multi-user access to a number of databases."], "XAMPP": ["A free and open source cross-platform web server solution stack package, consisting mainly of the Apache HTTP Server, MySQL database, and interpreters for scripts written in the PHP and Perl programming languages."], "Capri pants": ["Mid-calf pants worn in warm weather."], "Capris": ["Mid-calf pants worn in warm weather."], "crop pants": ["Mid-calf pants worn in warm weather."], "three-quarter shorts": ["Mid-calf pants worn in warm weather."], "clam diggers": ["Mid-calf pants worn in warm weather."], "capri pants": ["Mid-calf pants worn in warm weather."], "cardigan": ["A type of knit shirt having an open front, that can usually be buttoned or zipped."], "pull together": ["A type of knit shirt having an open front, that can usually be buttoned or zipped."], "cardi": ["A type of knit shirt having an open front, that can usually be buttoned or zipped."], "cardie": ["A type of knit shirt having an open front, that can usually be buttoned or zipped."], "cardy": ["A type of knit shirt having an open front, that can usually be buttoned or zipped."], "boxer briefs": ["A type of boxer shorts that are tight-fitting, like briefs."], "tight boxers": ["A type of boxer shorts that are tight-fitting, like briefs."], "boxerbriefs": ["A type of boxer shorts that are tight-fitting, like briefs."], "chemical kinetics": ["That branch of physical chemistry concerned with the mechanisms and rates of chemical reactions."], "palm sugar": ["Sugar made from the sap of various species of palm tree."], "wether": ["A castrated male sheep.", "To castrate a male sheep or goat."], "full beard": ["A beard that covers a large part of the face."], "rustproof": ["Resistant to rust, oxidation and corrosion."], "jetstream": ["Fast flowing, relatively narrow air currents found at the tropopause, located at 10-15 kilometers above the surface of the Earth."], "White Meo": ["A Hmong language spoken mainly in the Chinese regions of central and western Guizhou, southern Sichuan and Yunnan."], "White Miao": ["A Hmong language spoken mainly in the Chinese regions of central and western Guizhou, southern Sichuan and Yunnan."], "Meo Kao": ["A Hmong language spoken mainly in the Chinese regions of central and western Guizhou, southern Sichuan and Yunnan."], "White Lum": ["A Hmong language spoken mainly in the Chinese regions of central and western Guizhou, southern Sichuan and Yunnan."], "Peh Miao": ["A Hmong language spoken mainly in the Chinese regions of central and western Guizhou, southern Sichuan and Yunnan."], "Pe Miao": ["A Hmong language spoken mainly in the Chinese regions of central and western Guizhou, southern Sichuan and Yunnan."], "Chuan Miao": ["A Hmong language spoken mainly in the Chinese regions of central and western Guizhou, southern Sichuan and Yunnan."], "Bai Miao": ["A Hmong language spoken mainly in the Chinese regions of central and western Guizhou, southern Sichuan and Yunnan."], "Chuanqiandian Miao": ["A Hmong language spoken mostly in China in the area where Guizhou, Sichuan and Yunnan provinces meet, and spoken also in Myanmar, Laos and Vietnam."], "Chuanchientien Miao": ["A Hmong language spoken mostly in China in the area where Guizhou, Sichuan and Yunnan provinces meet, and spoken also in Myanmar, Laos and Vietnam."], "Sichuan-Guizhou-Yunnan Hmong": ["A Hmong language spoken mostly in China in the area where Guizhou, Sichuan and Yunnan provinces meet, and spoken also in Myanmar, Laos and Vietnam."], "Tak Miao": ["A Hmong language spoken mostly in China in the area where Guizhou, Sichuan and Yunnan provinces meet, and spoken also in Myanmar, Laos and Vietnam."], "Meo": ["A Hmong language spoken mostly in China in the area where Guizhou, Sichuan and Yunnan provinces meet, and spoken also in Myanmar, Laos and Vietnam."], "Miao": ["A Hmong language spoken mostly in China in the area where Guizhou, Sichuan and Yunnan provinces meet, and spoken also in Myanmar, Laos and Vietnam."], "Western Miao": ["A Hmong language spoken mostly in China in the area where Guizhou, Sichuan and Yunnan provinces meet, and spoken also in Myanmar, Laos and Vietnam."], "reptilianness": ["The quality of being reptilian."], "reptilian": ["Characteristic of, or relating to reptiles."], "hemicrania": ["A headache affecting one side of the head."], "jawdropping": ["Very surprising or shocking, causing astonishment."], "jaw-dropping": ["Very surprising or shocking, causing astonishment."], "jaw-droppingly": ["In a very surprising or shocking manner that causes astonishment."], "jawdroppingly": ["In a very surprising or shocking manner that causes astonishment."], "breathtakingly": ["In a very surprising or shocking manner that causes astonishment."], "FAQ": ["A list of common questions and their answers."], "frequently asked questions": ["A list of common questions and their answers."], "Japanese marten": ["A marten of the species Martes melampus having a dark brown to dull yellow pelage with a cream-colored throat."], "sable": ["A marten of the species Martes zibellina."], "virologist": ["A person who studies or is expert in viruses."], "lichenology": ["The scientific study of lichens."], "lichenologist": ["A person who is expert in lichens."], "lichenological": ["Relating to lichenology."], "lichenologic": ["Relating to lichenology."], "speculoos": ["A type of shortbread biscuit (typically made for consumption on December 5 - St. Nicholas' Eve) that is traditionally stamped with an image or figure on the front."], "intermediary": ["The person being the intermediary among more people to facilitate the creation and conclusion of a contract."], "middle man": ["The person being the intermediary among more people to facilitate the creation and conclusion of a contract.", "An intermediate dealer between a manufacturer and a retailer or customer."], "string trimmer": ["A powered handheld device that uses a flexible monofilament line for cutting grass and small plants."], "edge trimmer": ["A powered handheld device that uses a flexible monofilament line for cutting grass and small plants."], "line trimmer": ["A powered handheld device that uses a flexible monofilament line for cutting grass and small plants."], "strimmer": ["A powered handheld device that uses a flexible monofilament line for cutting grass and small plants."], "weed whacker": ["A powered handheld device that uses a flexible monofilament line for cutting grass and small plants."], "weed eater": ["A powered handheld device that uses a flexible monofilament line for cutting grass and small plants."], "weed-whacker": ["A powered handheld device that uses a flexible monofilament line for cutting grass and small plants."], "clothespin": ["Wood or plastic fastener for holding clothes on a clothesline."], "clothes-peg": ["Wood or plastic fastener for holding clothes on a clothesline."], "clothespeg": ["Wood or plastic fastener for holding clothes on a clothesline."], "all's well that ends well": ["If something ends well, the problems that one may have had to face are not important."], "all is well that ends well": ["If something ends well, the problems that one may have had to face are not important."], "customer service": ["The act of providing services to customers before, during and after a purchase.", "A department of a company that provides services to customers."], "client service": ["The act of providing services to customers before, during and after a purchase.", "A department of a company that provides services to customers."], "adjuvant": ["A pharmacological or immunological agent that enhances the effect of other agents, such as a drug or vaccine."], "weathercast": ["A prediction of future weather, for a specific location."], "read out loud": ["To read a text and pronounce it, so that others can hear it."], "read aloud": ["To read a text and pronounce it, so that others can hear it."], "fin-footed mammal": ["A mammal belonging to the Pinnipedia, an order of aquatic placental mammals having a streamlined body and limbs specialized as flippers: includes seals, sea lions, and the walrus."], "inevitability": ["The condition of being inevitable."], "self-assurance": ["The condition of being confident in oneself."], "self-assuredness": ["The condition of being confident in oneself."], "self-assured": ["Who is confident in oneself."], "Angevin-Orl\u00e9anais": ["A group of Galo-Romance languages spoken in North of France."], "intergalactic": ["Between galaxies.", "Of or relating to multiple galaxies."], "quantitative easing": ["The purchasing, by the central bank of a country, of government bonds using newly created money, in an attempt to lower interest rates and help the economy."], "QE": ["The purchasing, by the central bank of a country, of government bonds using newly created money, in an attempt to lower interest rates and help the economy."], "antidisestablishmentarianism": ["The formal opposition to the separation of church and state."], "French toast": ["A dish made of bread soaked in beaten eggs and then fried."], "eggy bread": ["A dish made of bread soaked in beaten eggs and then fried."], "Gypsy toast": ["A dish made of bread soaked in beaten eggs and then fried."], "P\u00e9rigord": ["A region and former province of France, which corresponds roughly to the current Dordogne d\u00e9partement."], "usage note": ["An observation or comment specifying in which context, or how a word or expression should be used in a sentence."], "sun bear": ["A bear of the species Helarctos malayanus."], "Malayan sun bear": ["A bear of the species Helarctos malayanus."], "honey bear": ["A bear of the species Helarctos malayanus."], "East African land snail": ["A large land snail of the species Achatina fulica."], "giant African land snail": ["A large land snail of the species Achatina fulica.", "A large land snail of the species Achatina achatina.", "A large land snail of the species Archachatina marginata."], "giant Ghana snail": ["A large land snail of the species Achatina achatina."], "giant tiger land snail": ["A large land snail of the species Achatina achatina."], "giant West African snail": ["A large land snail of the species Archachatina marginata."], "Pashayi": ["A Dardic language, or group of languages, spoken by the Pashai people in Afghanistan."], "Pashayi languages": ["A Dardic language, or group of languages, spoken by the Pashai people in Afghanistan."], "Pashai": ["A Dardic language, or group of languages, spoken by the Pashai people in Afghanistan.", "A Pashayi language spoken Northeast of Kabul in Afghanistan."], "Zamyaki": ["A dialect of Nangalami spoken in the Kunar region of Afghanistan."], "Dardic Chitral languages": ["A group of Dardic languages spoken in the Chitral district of Pakistan."], "Chitrali": ["A Dardic language spoken in Chitral, Pakistan."], "Northern Vietnamese": ["A dialect of the Vietnamese language."], "Hanoi Vietnamese": ["A dialect of Northern Vietnamese spoken around the city of Hanoi in Vietnam."], "Central Vietnamese": ["A dialect of the Vietnamese language."], "Southern Vietnamese": ["A dialect of the Vietnamese language."], "Western Hausa": ["A dialect of the Hausa language."], "unpack": ["To remove from a package or container, particularly with respect to items that had previously been arranged closely and securely in a pack."], "get to know": ["To become aware of a fact or situation."], "consecutively": ["In a consecutive manner; without interruption."], "univocally": ["In a univocal way."], "cohesive": ["Having cohesion."], "freely": ["In a free manner."], "ideal": ["Optimal; being the best possibility.", "Perfect, flawless, having no defects."], "stingaree": ["Any of various large, venomous rays, of the orders Rajiformes and Myliobatiformes, having a barbed, whiplike tail."], "record player": ["A device that plays the sound stored on a gramophone record."], "phonograph": ["A device that plays the sound stored on a gramophone record."], "gramophone": ["A device that plays the sound stored on a gramophone record."], "vest": ["A usually sleeveless garment worn over a shirt."], "goo": ["A liquid or semi-liquid, viscous and sticky substance."], "gloop": ["A liquid or semi-liquid, viscous and sticky substance."], "glop": ["A liquid or semi-liquid, viscous and sticky substance."], "goop": ["A liquid or semi-liquid, viscous and sticky substance."], "nor": ["Coordinating link with negative value, usually preceded by another negation."], "online banking": ["Banking carried out electronically, as for example over the Internet."], "e-banking": ["Banking carried out electronically, as for example over the Internet."], "Internet banking": ["Banking carried out electronically, as for example over the Internet."], "implant": ["Of an embryo, to become attached to and embedded in the womb.", "To insert (something) surgically into the body.", "To fix or set securely or deeply."], "supervision": ["The inspection of a job or activity by a superior."], "inclusion": ["The act of adding or annexing, (something) to a group, set, or total."], "functioning": ["The execution of its own function."], "aspire": ["To yearn (for) or have a powerful or ambitious plan, desire, or hope (to do or be something)."], "terrify": ["To frighten greatly; to fill with terror."], "earth over": ["To cover with earth."], "directions": ["A description of how to reach a particular place."], "tubercular": ["Suffering from tuberculosis."], "tuberculous": ["Suffering from tuberculosis."], "independent": ["Not affiliated with any political party.", "Not dependent; not contingent or depending on something else; free."], "decidable": ["Describing a set for which there exists an algorithm that will determine whether any element is or is not within the set in a finite amount of time."], "computable": ["Describing a set for which there exists an algorithm that will determine whether any element is or is not within the set in a finite amount of time."], "quantification": ["A limitation that is imposed on the variables of a proposition."], "subset": ["With respect to another set, a set such that each of its elements is also an element of the other set."], "computability": ["The property of being computable by purely mechanical means."], "invariante": ["Not varying; constant."], "invariant": ["Unaffected by a specified operation (especially by a transformation).", "An invariant quantity, function etc."], "inefficient": ["Not efficient; not producing the effect intended or desired."], "informally": ["In an irregular or informal manner; without the usual forms."], "inherently": ["In an inherent way; naturally, innately, unavoidably."], "polynomially": ["In a polynomial way."], "arising": ["The appearing or manifestation of a phenomenon."], "insensible": ["Incapable of emotional feeling; callous; apathetic."], "magnificent": ["Grand, elegant or splendid in appearance."], "condensation trail": ["An artificial cloud made by the exhaust of jet aircraft or wingtip vortices that precipitate a stream of tiny ice crystals in moist, frigid upper air."], "vapour trail": ["An artificial cloud made by the exhaust of jet aircraft or wingtip vortices that precipitate a stream of tiny ice crystals in moist, frigid upper air."], "brown-out": ["A partial power outage, a disruption in electric power supply that reduces the voltage available causing lights to dim."], "brownout": ["A partial power outage, a disruption in electric power supply that reduces the voltage available causing lights to dim."], "pulse": ["A beat or throb."], "shopping cart": ["Wire basket fastened to a frame with wheels which customers use for collecting purchases in a store."], "caddy": ["Wire basket fastened to a frame with wheels which customers use for collecting purchases in a store."], "supermarket trolley": ["Wire basket fastened to a frame with wheels which customers use for collecting purchases in a store."], "shopping trolley": ["Wire basket fastened to a frame with wheels which customers use for collecting purchases in a store."], "trolley": ["Wire basket fastened to a frame with wheels which customers use for collecting purchases in a store."], "multi": ["a prefix that expresses the idea of \u200b\u200bmultiplicity."], "cardiac muscle": ["The muscular tissue of the heart."], "inflame": ["To arouse or become aroused to violent emotion.", "To set on fire - literally and figuratively.", "To arouse or excite feelings and passions."], "sickbag": ["A small bag impervious to fluids which is provided to passengers onboard airplanes to collect vomit in case of sickness."], "blow-dry": ["To dry with a hair dryer."], "Jyutping": ["A romanization system for Cantonese."], "Jyutpin": ["A romanization system for Cantonese."], "Revised Romanization of Korean": ["The official Korean language romanization system in South Korea."], "USA": ["A country and federal republic in North America located north of Mexico and south of Canada, including Alaska, Hawaii and overseas territories."], "rationally": ["In a rational manner."], "irrationally": ["In a manner contrary to reason."], "repetitive": ["Happening many times in a similar way."], "internaut": ["A designer, operator, or technically capable professional user of the Internet."], "ideally": ["In an ideal way."], "of first importance": ["Having priority or preference."], "confusion": ["The act of confusing or the state of being confused."], "psychiatric": ["Of, or relating to, psychiatry."], "spoofing": ["A method of attacking a computer program, in which the program is modified so as to appear to be working normally when in reality it has been modified with the purpose to circumvent security mechanisms."], "psychopathology": ["The study of the origin, development, diagnosis and treatment of mental and behavioural disorders."], "connectionism": ["Any of several fields of psychology that model brain processes in terms of interconnected networks."], "connectionist": ["An advocate of connectionism.", "Of, or relating to connectionism."], "Cambrian": ["Of a geologic period within the Paleozoic era."], "chromosomal": ["Of, or relating to chromosomes."], "epigenesis": ["The theory that an organism develops by differentiation from an unstructured egg rather than by simple enlarging of something preformed."], "epigenetics": ["The study of heritable changes caused by the activation and deactivation of genes without any change in DNA sequence."], "epigenetic": ["Of, or relating to epigenetics."], "Lamarckism": ["The theory that structural variations, characteristic of species and genera, are produced in animals and plants by the direct influence of physical environments, and especially, in the case of animals, by effort, or by use or disuse of certain organs."], "Lamarckian": ["Of or pertaining to Lamarckism.", "A supporter or an advocate of Lamarckism."], "Lamarck": ["A French naturalist, and an early proponent of the idea that evolution occurred and proceeded in accordance with natural laws."], "paleontologic": ["Pertaining to, or characteristic of paleontology."], "palaeontologic": ["Pertaining to, or characteristic of paleontology."], "pal\u00e6ontologic": ["Pertaining to, or characteristic of paleontology."], "geologic": ["Of, or relating to geology or a geologic timescale."], "geological": ["Of, or relating to geology or a geologic timescale."], "microbial": ["Of, relating to, or caused by microbes or microorganisms."], "genic": ["Relating to genetics or genes."], "discontinuity": ["A lack of continuity, regularity or sequence; a break or gap."], "dominant": ["Ruling; governing; prevailing; controlling; as, the dominant party, church, spirit, power."], "understudy": ["To study or know a role to such an extent as to be able to replace the normal performer when required.", "To be an understudy to (an actor or actress).", "A performer who is able to play the role of an actor in the case of their absence."], "evilness": ["The quality or state of being evil."], "primitive": ["Occurring in or characteristic of an early stage of development or evolution."], "mode": ["A particular means of accomplishing something."], "modality": ["Quality, way of being."], "redundancy": ["Duplication of components or circuits to provide survival of the total system in case of failure of single components."], "promising": ["Showing promise, and likely to develop in a desirable fashion."], "copy machine": ["Apparatus that makes copies of typed, written or drawn material."], "kayak": ["A small and narrow boat propelled manually with a double-bladed paddle."], "kaiak": ["A small and narrow boat propelled manually with a double-bladed paddle."], "kiack": ["A small and narrow boat propelled manually with a double-bladed paddle."], "kyack": ["A small and narrow boat propelled manually with a double-bladed paddle."], "kyak": ["A small and narrow boat propelled manually with a double-bladed paddle."], "Chita": ["A city of Russia and administrative center of Zabaykalsky Krai."], "clone": ["A living organism (originally a plant) produced asexually from a single ancestor, to which it is genetically identical."], "elfin": ["Relating to or resembling an elf, especially in its tiny size or features."], "elvish": ["Relating to or resembling an elf, especially in its tiny size or features."], "fantasize": ["To have a daydream; to indulge in a fantasy."], "panela": ["A solid piece of unrefined whole cane sugar obtained from the boiling and evaporation of sugarcane juice."], "shave": ["To cut the hair close to the skin with a razor.", "To cut the hair of one's face with a razor."], "demi-": ["Consisting of a half (1/2, 50%) of."], "snakebite": ["The bite of a snake."], "Northern Vietnam": ["One of the three regions within Vietnam, situated in the North of Vietnam."], "Southern Vietnam": ["One of the three regions within Vietnam, situated in the South of Vietnam."], "poem": ["A literary piece written in verse."], "Bangla": ["An Indic language spoken mainly in Bangladesh and India."], "Tibetan": ["A Tibeto-Burman or Sino-Tibetan language spoken principally in China.", "Of or relating to Tibet, the Tibetan people, or the Tibetan language.", "A person of Tibetan ethnic origin.", "Originating from Tibet"], "Bhutanese": ["Originating from Bhutan.", "A person from Bhutan, or of Bhutanese ancestry.", "Of or relating to Bhutan."], "Tshangla": ["A Tibeto-Burman language spoken in Eastern Bhutan, Arunachal Pradesh and the enclave of Pemak\u00f6 in Southern Tibet."], "Sharchop": ["A Tibeto-Burman language spoken in Eastern Bhutan, Arunachal Pradesh and the enclave of Pemak\u00f6 in Southern Tibet."], "Buddha": ["Shakyamuni Buddha, the spiritual and philosophical teacher and founder of Buddhism; Siddhartha Gautama.", "One who has purified obscurations (\u0f66\u0f44\u0f66) and developed pristine cognition (\u0f62\u0f92\u0fb1\u0f66)."], "Shakyamuni": ["Shakyamuni Buddha, the spiritual and philosophical teacher and founder of Buddhism; Siddhartha Gautama."], "Classical Tibetan": ["The language of any text written in Tibetan after 816 CE and before the modern period, in particular the language of the Buddhist canonical texts translated from other languages, especially Sanskrit."], "Dbus": ["A variety of Tibetan spoken in Central Tibet."], "\u00dc": ["A variety of Tibetan spoken in Central Tibet."], "\u00dc-Tsang": ["A variety of Tibetan spoken in Central Tibet."], "Lhasa Tibetan": ["A language of the Sino-Tibetan family, spoken in China, Bhutan, India and Nepal; official language in the Tibet Autonomous Region of China."], "audio-book": ["A recording of the reading of a book."], "audio book": ["A recording of the reading of a book."], "thagomizer": ["An arrangement of four to ten spikes on the tails of stegosaurids."], "thagomiser": ["An arrangement of four to ten spikes on the tails of stegosaurids."], "lamina cribrosa": ["The part of the sclera, in the eye, where the optical nerve exits the eye."], "lamina cribrosa sclerae": ["The part of the sclera, in the eye, where the optical nerve exits the eye."], "sclera": ["The opaque, fibrous, protective, outer layer of the eye containing collagen and elastic fiber."], "white of the eye": ["The opaque, fibrous, protective, outer layer of the eye containing collagen and elastic fiber."], "mydriasis": ["A dilation of the pupil."], "fundus": ["The inside back surface of the eye containing the retina, blood vessels, nerve fibers, and other structures."], "ocular fundus": ["The inside back surface of the eye containing the retina, blood vessels, nerve fibers, and other structures."], "ophthalmoscopy": ["The medical examination of the fundus of the eye."], "funduscopy": ["The medical examination of the fundus of the eye."], "fundoscopy": ["The medical examination of the fundus of the eye."], "ophthalmoscope": ["A device for examining the inside of an eye by projecting a light."], "funduscope": ["A device for examining the inside of an eye by projecting a light."], "ophthalmoscopic": ["Relating to ophthalmoscopy or to an ophthalmoscope."], "flavor": ["The sensory impression of a substance that is determined mainly by the chemical senses of taste and smell."], "flavour": ["The sensory impression of a substance that is determined mainly by the chemical senses of taste and smell."], "sense of taste": ["One of the five senses: the physical ability to detect flavors."], "confection": ["A food item that is rich in sugar."], "go in": ["To come or go into."], "middle school": ["A school that provides education for children at the second level in education systems where the schooling is divided into three levels."], "shigellosis": ["An infection of the gastrointestinal tract caused by a bacteria of the genus Shigella."], "bacillary dysentery": ["An infection of the gastrointestinal tract caused by a bacteria of the genus Shigella."], "digestive tract": ["The system of digestive organs stretching from the mouth to the anus, but does not include the accessory glandular organs."], "GI tract": ["The system of digestive organs stretching from the mouth to the anus, but does not include the accessory glandular organs."], "gut": ["The system of digestive organs stretching from the mouth to the anus, but does not include the accessory glandular organs."], "shareholding": ["Owning shares.", "A holding of shares of corporations.", "The amount of capital held as shares."], "gnotobiot": ["A laboratory animal whose microorganisms are completely known."], "gnotobiotic animal": ["A laboratory animal whose microorganisms are completely known."], "gnotobiont": ["A laboratory animal whose microorganisms are completely known."], "gnotobiote": ["A laboratory animal whose microorganisms are completely known."], "gnotobiota": ["The completely known population of microorganisms of a gnotobiot."], "gnotobiotic": ["Relating to gnotobiotics."], "gnotobiotics": ["The science of controlling and knowing completely the micro-organisms of an animal."], "Pali (Latin script)": ["A written form of the Pali language using the latin script."], "move house": ["To change house, to move themselves to an other room."], "white-tailed deer": ["A medium-sized American deer of the species Odocoileus virginianus."], "Virginia deer": ["A medium-sized American deer of the species Odocoileus virginianus."], "halibut": ["A flatfish of the genus Hippoglossus and the family Pleuronectidae living in the North of Atlantic and Pacific oceans."], "Eastern Canadian Inuktitut (Latin script)": ["The Eastern Canadian Inuktitut language written with Latin script."], "Eastern Canadian Inuktitut (Inuktitut syllabics)": ["The Eastern Canadian Inuktitut language written with Inuktitut syllabics."], "Inuvialuk": ["A language using the Latin alphabet spoken in the Northwest Territories and in some regions of Nunavut, in Canada."], "Inuvialuktun": ["A language using the Latin alphabet spoken in the Northwest Territories and in some regions of Nunavut, in Canada."], "Nunatsiavut": ["An autonomous area claimed by the Inuit people in Newfounland and Labrador, in Canada."], "Nunavut": ["The largest and nothernmost territory of Canada."], "Nunavummiuq": ["A person from Nunavut, Canada."], "Inuinnaq": ["A dialect of Inuvialuk spoken and official in Nunavut, in Canada."], "Inuinnaqtun": ["A dialect of Inuvialuk spoken and official in Nunavut, in Canada."], "Kugluktuk": ["A community located in the Kitikmeot region of Nunavut, in Canada."], "Kangiryuarmiut": ["A Copper Inuit sub-group that lived on Victoria Island, in Canada.", "A dialect of Inuvialuk spoken in Ulukhaktok, Northwest Territories, in Canada by the Kangiryuarmiut people."], "Kangiryuarmiutun": ["A dialect of Inuvialuk spoken in Ulukhaktok, Northwest Territories, in Canada by the Kangiryuarmiut people."], "Ulukhaktok": ["A community located on the west coast of Victoria Islan in the Northwest Territories, in Canada."], "Inuvik": ["A town located in the Northwest Territories, in Canada, and the administrative centre of the Inuvik Region.", "One of the five administrative regions of the Northwest Territories, in Canada."], "napaatchak": ["A traditional throwing knife game played by the Inuit people."], "Northwest Territories": ["A federal territory of Canada."], "British Columbia": ["The westernmost province of Canada."], "Saskatchewan": ["One of Canada's prairie provinces located in western Canada."], "Quebec City": ["Capital and second biggest city in the province of Quebec, in Canada."], "Qu\u00e9bec": ["Capital and second biggest city in the province of Quebec, in Canada."], "Qu\u00e9bec City": ["Capital and second biggest city in the province of Quebec, in Canada."], "New Brunswick": ["A province in eastern Canada, the only that is constitutionally bilingual."], "Nova Scotia": ["A province in eastern Canada, the most populous of Atlantic Canada."], "Prince Edward Island": ["A province in eastern Canada, the smallest of the country."], "Newfoundland and Labrador": ["The easternmost province of Canada."], "Yukon": ["The westernmost and smallest federal territory of Canada.", "A major watercourse of northwestern North America, running through British Columbia and Yukon, in Canada, and Alaska, in United States."], "Yukon River": ["A major watercourse of northwestern North America, running through British Columbia and Yukon, in Canada, and Alaska, in United States."], "Mackenzie River": ["The longest river in Canada, flowing through the Northwest Territories."], "Great Slave Lake": ["The second largest lake of Northwest Territories, in Canada, and the deepest lake in North America."], "American Black Duck": ["A large duck of the Anatinae family, native to eastern North America."], "Blue Jay": ["A passerine bird of the family Corvidae, native to North America."], "Blue-winged Teal": ["A small dabbling duck of the species Anas discors, native to North America."], "caribou": ["An Arctic and Subarctic-dwelling deer (Rangifer tarandus), of which a number of subspecies exist."], "computer file": ["An aggregation of data on a storage device, identified by a name."], "Pronunciation file from \"Commons\"": ["A link to an pronunciation sound file at the Commons repository."], "buffalo": ["A wild heavy bison of the species Bison bison, having a broad massive horned head."], "Baur\u00e9": ["An Arawakan language spoken by the Baure people of the Beni department in Bolivia."], "Central Atlas Tamazight (Tifinagh Script)": ["The Central Atlas Tamazight language written with the Tifinagh Script."], "Central Atlas Tamazight (Arabic Script)": ["The Central Atlas Tamazight language written with the Arabic Script."], "Dakhota": ["A Siouan language of the USA and Canada."], "Kildin Sami": ["A Sami language spoken on the Kola Peninsula in northwestern Russia."], "M\u00f2cheno": ["An Upper German variety spoken in three towns of the Mocheni Valley, in Trentino, northeastern Italy."], "Paumar\u00ed": ["An Arauan language spoken in Brazil."], "Paumari": ["An Arauan language spoken in Brazil."], "Tabasaran": ["A Northeast Caucasian language spoken by the Tabasaran people in southern part of the Russian Republic of Dagestan."], "Tocharian A": ["A dialect of Tocharian."], "Agnean": ["A dialect of Tocharian."], "Tocharian B": ["A dialect of Tocharian."], "Kuchean": ["A dialect of Tocharian."], "Tocharian A (Latin script)": ["The Tocharian A language written with the Latin script."], "Tocharian B (Latin script)": ["The Tocharian B language written with the Latin script."], "Zaza": ["An Indo-European language spoken primarily in eastern Turkey."], "\u01c3X\u00f3\u00f5": ["A Khoisan language spoken in Botswana and Namibia."], "Taa": ["A Khoisan language spoken in Botswana and Namibia."], "\u01c3Xoon": ["A Khoisan language spoken in Botswana and Namibia."], "maple tree": ["Tree or shrub of the family Acer."], "sugar ant": ["A relatively large ant with an orange-brown body and black head and mandibules, of the species Camponotus consobrinus."], "snowshoe": ["Footwear for walking over the snow.", "To walk with snowshoes."], "skate": ["A boot with a blade attached to the bottom, used the propel the bearer across a sheet of ice.", "To move along on skates."], "ice skate": ["A shoe consisting of a boot with a steel blade fitted to the sole.", "A boot with a blade attached to the bottom, used the propel the bearer across a sheet of ice.", "To move along on ice skates."], "moose calf": ["Young moose."], "paddle": ["A tool used for pushing against liquid, generally for the propulsion of a boat."], "oar": ["A tool used for pushing against liquid, generally for the propulsion of a boat."], "flying squirrel": ["A squirrel of the sub-family Pteromyinae of the family Sciuridae."], "Pteromyini": ["A squirrel of the sub-family Pteromyinae of the family Sciuridae."], "Petauristini": ["A squirrel of the sub-family Pteromyinae of the family Sciuridae."], "Souletin": ["A Basque dialect spoken in Soule, France."], "agriculturer": ["A person who works the land or who keeps livestock, especially on a farm."], "rainboots": ["Watertight boots made of rubber."], "flooded": ["Filled with water from rain or rivers."], "inundated": ["Filled with water from rain or rivers."], "overflooded": ["Filled with water from rain or rivers."], "drowned": ["Filled with water from rain or rivers."], "above mean sea level": ["[Used to indicate the elevation on the ground or altitude in the air of an object, relative to the average sea level datum.]"], "AMSL": ["[Used to indicate the elevation on the ground or altitude in the air of an object, relative to the average sea level datum.]"], "seizable": ["Capable of being seized."], "stepmom": ["The wife of one's biological father, other than one's biological mother."], "stepfather": ["The husband of one's biological mother, other than one's biological father."], "stepdad": ["The husband of one's biological mother, other than one's biological father."], "stepbro": ["The son of one's stepfather or stepmother."], "en": ["The fourteenth letter of the Roman alphabet."], "gee": ["The seventh letter of the Roman alphabet."], "aitch": ["The eighth letter of the Roman alphabet."], "cee": ["The third letter of the Roman alphabet."], "Sanum\u00e1": ["A Yanomam language spoken in Venezuela and Brazil."], "Sanema": ["A Yanomam language spoken in Venezuela and Brazil."], "Sanima": ["A Yanomam language spoken in Venezuela and Brazil."], "Tsanuma": ["A Yanomam language spoken in Venezuela and Brazil."], "Guaika": ["A Yanomam language spoken in Venezuela and Brazil."], "Samatari": ["A Yanomam language spoken in Venezuela and Brazil."], "Samatali": ["A Yanomam language spoken in Venezuela and Brazil."], "Xamatari": ["A Yanomam language spoken in Venezuela and Brazil."], "Chirichano": ["A Yanomam language spoken in Venezuela and Brazil."], "pitch angle": ["An angle indicating the amount of rotation of an object around its longitudinal axis. For an airplane, it indicates whether its nose points up or down."], "angle of pitch": ["An angle indicating the amount of rotation of an object around its longitudinal axis. For an airplane, it indicates whether its nose points up or down."], "tilt": ["An angle indicating the amount of rotation of an object around its longitudinal axis. For an airplane, it indicates whether its nose points up or down."], "construction permit": ["Authorization required by local governmental bodies for the erection of an enclosed structure or for the major alteration or expansion of an existing edifice."], "Hollandic": ["A dialect of the Dutch language spoken in Holland, a region of the Netherlands."], "Hollandish": ["A dialect of the Dutch language spoken in Holland, a region of the Netherlands."], "goutweed": ["A perennial plant of the species Aegopodium podagraria that grows in shady places and is often considered to be a weed."], "ground elder": ["A perennial plant of the species Aegopodium podagraria that grows in shady places and is often considered to be a weed."], "herb gerard": ["A perennial plant of the species Aegopodium podagraria that grows in shady places and is often considered to be a weed."], "bishop's weed": ["A perennial plant of the species Aegopodium podagraria that grows in shady places and is often considered to be a weed."], "snow-in-the-mountain": ["A perennial plant of the species Aegopodium podagraria that grows in shady places and is often considered to be a weed."], "engaged": ["Having formally promised to be married."], "nitroaspirin": ["A type of aspirin that releases nitric oxide in the body."], "2-Acetoxybenzoate-2-(1-nitroxymethyl)phenyl ester": ["A type of aspirin that releases nitric oxide in the body."], "m-NO-aspirin": ["A type of aspirin that releases nitric oxide in the body."], "nitric oxide-releasing aspirin": ["A type of aspirin that releases nitric oxide in the body."], "nitro-aspirin": ["A type of aspirin that releases nitric oxide in the body."], "nitric oxide-donating ASA": ["A type of aspirin that releases nitric oxide in the body."], "nitro aspirin": ["A type of aspirin that releases nitric oxide in the body."], "donor language word": ["A word in a foreign language from which a particular loanword is derived."], "shh": ["Be (or stay) silent!"], "sh": ["Be (or stay) silent!"], "shhh": ["Be (or stay) silent!"], "epiphyte": ["A plant that grows on another plant but does not obtain nutrients from it."], "epiphytic": ["Of or pertaining to an epiphyte."], "tattoo artist": ["A person who draws tattoos on other people's skin."], "tattooist": ["A person who draws tattoos on other people's skin."], "Cherkess": ["A language continuum spoken in the Caucasus, comprising the Adyghe and Kabardian languages."], "Abkhazian (Cyrillic script Uslar model)": ["The Abkhazian language written with a 37-character Cyrillic alphabet invented by Baron Peter von Uslar in 1862."], "Abkhazian (Georgian Script)": ["Abkhazian language written with the Georgian Script (from 1938 to 1954)."], "Abkhazian (Latin script)": ["Abkhazian language written with the Latin Script (from 1926 to 1938)."], "Abkhazian (Cyrillic script Chochua model)": ["The Abkhazian language written with a 55-character Cyrillic alphabet invented by Aleksey Chochua in 1909."], "Abkhazian (Cyrillic script Gulya model)": ["Abkhazian language written with the Cyrillic Script invented by Dmitry Gulia in 1892."], "Abkhazian (Cyrillic script)": ["The Abkhazian language written with a 62-letter Cyrillic script since 1954."], "Jeju": ["A variety of Korean spoken on Jeju Island in South Korea."], "Cheju": ["A variety of Korean spoken on Jeju Island in South Korea."], "paternal aunt": ["The sister of one's father."], "maternal aunt": ["The sister of one's mother."], "aunt-in-law": ["The wife of the brother of one's parent."], "aunt by marriage": ["The wife of the brother of one's parent."], "paternal aunt by marriage": ["Wife of one's father's brother."], "paternal aunt-in-law": ["Wife of one's father's brother."], "maternal aunt by marriage": ["One's mother's brother's wife."], "maternal aunt-in-law": ["One's mother's brother's wife."], "Japanese zelkova": ["A flowering tree of the species Zelkova serrata."], "keyaki": ["A flowering tree of the species Zelkova serrata."], "Siberian roe deer": ["A roe deer of the species Capreolus pygargus."], "eastern roe deer": ["A roe deer of the species Capreolus pygargus."], "purple eulalia": ["A flowering grass of the species Miscanthus sinensis."], "Chinese silver grass": ["A flowering grass of the species Miscanthus sinensis."], "Eulalia grass": ["A flowering grass of the species Miscanthus sinensis."], "maiden grass": ["A flowering grass of the species Miscanthus sinensis."], "zebra grass": ["A flowering grass of the species Miscanthus sinensis."], "Susuki grass": ["A flowering grass of the species Miscanthus sinensis."], "porcupine grass": ["A flowering grass of the species Miscanthus sinensis."], "rancher": ["A person who owns or operates a ranch."], "stockgrower": ["A person who owns or operates a ranch."], "liver spot": ["A brown blemish on the skin associated with aging and exposure to ultraviolet radiation from the sun."], "age spot": ["A brown blemish on the skin associated with aging and exposure to ultraviolet radiation from the sun."], "expropriate": ["To deprive a person of their private property for public use."], "Memramcook": ["A city in southeastern New Brunswick, Canada called the \"cradle of Acadia\"."], "Attikamek": ["A variety of the Cree language spoken by the Atikamekw people of southwestern Quebec."], "T\u00eate de Boule": ["A variety of the Cree language spoken by the Atikamekw people of southwestern Quebec."], "Attimewk": ["A variety of the Cree language spoken by the Atikamekw people of southwestern Quebec."], "Atihkamekw": ["A variety of the Cree language spoken by the Atikamekw people of southwestern Quebec."], "Atikamek": ["A variety of the Cree language spoken by the Atikamekw people of southwestern Quebec."], "fill out": ["To complete (a form, a questionnaire, etc.) by writing the requested information.", "To have one's body become larger, rounder with more muscle and/or fat."], "fill in": ["To complete (a form, a questionnaire, etc.) by writing the requested information."], "Royal Flycatcher": ["A bird of the species Onychorhynchus coronatus."], "Kadu languages": ["A small language family of Nilo-Saharan languages spoken in south-western of South Kordofan, Sudan."], "Kadugli\u2013Krongo languages": ["A small language family of Nilo-Saharan languages spoken in south-western of South Kordofan, Sudan."], "Tumtum languages": ["A small language family of Nilo-Saharan languages spoken in south-western of South Kordofan, Sudan."], "Nilo-Saharan languages": ["A family of African languages spoken in the northern half of Africa."], "Kadugli": ["A Kadu language spoken in Kordofan."], "Central Kadu": ["A Kadu language spoken in Kordofan."], "downstairs": ["The sexual organs: the testicles and penis of a male; or the labia, clitoris, and vagina of a female.", "Located a floor below.", "Down the stairs."], "electrical storm": ["A storm caused by strong rising air currents and characterized by thunder and lightning and usually heavy rain or hail."], "lightning storm": ["A storm caused by strong rising air currents and characterized by thunder and lightning and usually heavy rain or hail."], "thundershower": ["A storm caused by strong rising air currents and characterized by thunder and lightning and usually heavy rain or hail."], "birchbark": ["Bark of several Eurasian and North American birch trees of the genus Betula."], "birch bark": ["Bark of several Eurasian and North American birch trees of the genus Betula."], "leopon": ["A hybrid resulting from the crossing of a male leopard with a lioness."], "chiaroscuro": ["The use of strong contrasts between light and dark, in art, to give a sensation of depth."], "woodpecker": ["A family of near-passerine birds found worldwide except in Australia, New Zealand, Madagascar and polar regions."], "pisculet": ["A family of near-passerine birds found worldwide except in Australia, New Zealand, Madagascar and polar regions."], "wryneck": ["A family of near-passerine birds found worldwide except in Australia, New Zealand, Madagascar and polar regions."], "sapsucker": ["A family of near-passerine birds found worldwide except in Australia, New Zealand, Madagascar and polar regions."], "liter": ["The metric unit of fluid, equal to one cubic decimetre."], "litre": ["The metric unit of fluid, equal to one cubic decimetre."], "Hula painted frog": ["A frog of the species Latonia nigriventer."], "loose": ["To make less tight.", "To give freedom; to release from confinement or restraint.", "To make undone or untied; to free from any fastening.", "Displaying the effect of excessive indulgence in sensual pleasure.", "Expressed in an unclear fashion.", "Not attached, fastened, fixed, or confined.", "Free from constraint or obligation; not bound by duty, habit, etc.", "(For a garment) Not tight or close.", "Not dense, close, compact, or crowded.", "Not strict in matters of morality; not rigid according to some standard of right.", "Not held or packaged together."], "unbound": ["Not attached, fastened, fixed, or confined."], "untied": ["Not attached, fastened, fixed, or confined."], "unchaste": ["Displaying the effect of excessive indulgence in sensual pleasure."], "let loose": ["To give freedom; to release from confinement or restraint."], "unleash": ["To give freedom; to release from confinement or restraint."], "set free": ["To give freedom; to release from confinement or restraint."], "set loose": ["To give freedom; to release from confinement or restraint."], "turn loose": ["To give freedom; to release from confinement or restraint."], "Iberian Romance languages": ["A group of dialects derived from Latin, originating in the territory of Hispania."], "Ibero-Romance languages": ["A group of dialects derived from Latin, originating in the territory of Hispania."], "Rionor": ["A dialect of Portuguese spoken at the frontier between Spain and Portugal."], "West-African Portuguese": ["A dialect of Portuguese spoken in Cape Verde, Guinea-Bissau and S\u00e3o Tom\u00e9."], "Goan Portuguese": ["A dialect of Portuguese spoken in Goa (India)."], "Southern African Portuguese": ["A dialect of Portuguese spoken in Angola, South Africa and Mozambique."], "bean sprout": ["A sprout of the mung bean."], "beansprout": ["A sprout of the mung bean."], "soybean sprout": ["A sprout of the soybean plant (Glycine max)."], "soya bean sprout": ["A sprout of the soybean plant (Glycine max)."], "sundew": ["Any of a group of insectivorous plants in the genus Drosera that catch insects by sticky droplets at the end of hairs on the leafs and grow in boggy ground all over the world."], "Swiss pine": ["A species of pine tree that typically grows in European mountain ranges at high altitudes."], "Swiss stone pine": ["A species of pine tree that typically grows in European mountain ranges at high altitudes."], "Arolla pine": ["A species of pine tree that typically grows in European mountain ranges at high altitudes."], "hyaluronan": ["An anionic, nonsulfated glycosaminoglycan of formula C28H44N2O23."], "hyaluronic acid": ["An anionic, nonsulfated glycosaminoglycan of formula C28H44N2O23."], "hyaluronate": ["An anionic, nonsulfated glycosaminoglycan of formula C28H44N2O23."], "HA": ["An anionic, nonsulfated glycosaminoglycan of formula C28H44N2O23."], "shrimp": ["A decapod crustacean of the infra-order Caridea.", "A decapod crustacean of the suborder Dendrobranchiata.", "A decapod crustacean of the infra-order Stenopodidea."], "stenopodidean shrimp": ["A decapod crustacean of the infra-order Stenopodidea."], "air plant": ["A plant that grows on another plant but does not obtain nutrients from it."], "aardwolf": ["A carnivorous quadruped of the species Proteles Lalandii, resembling the fox and hyena."], "Aaron's rod": ["A rod with one serpent twined around it (differing from the caduceus of Mercury, which has two).", "A biennial plant of the species Verbascum thapsus with tall flowering stems.", "A plant of the genus Solidago.", "A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "great mullein": ["A biennial plant of the species Verbascum thapsus with tall flowering stems."], "common mullein": ["A biennial plant of the species Verbascum thapsus with tall flowering stems."], "hag-taper": ["A biennial plant of the species Verbascum thapsus with tall flowering stems."], "flannelleaf": ["A biennial plant of the species Verbascum thapsus with tall flowering stems."], "flannelplant": ["A biennial plant of the species Verbascum thapsus with tall flowering stems."], "goldenrod": ["A plant of the genus Solidago."], "orpine": ["A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "livelong": ["A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "live-forever": ["A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "frog's-stomach": ["A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "harping Johnny": ["A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "life-everlasting": ["A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "midsummer-men": ["A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "orphan John": ["A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "witch's moneybags": ["A succulent perennial plant of the species Hylotelephium telephium with tall flower stems."], "Ab": ["The fifth month of the Jewish ecclesiastical year, and the eleventh month of the civil year, coinciding nearly with August."], "Av": ["The fifth month of the Jewish ecclesiastical year, and the eleventh month of the civil year, coinciding nearly with August."], "abaca": ["A banana plant of the species Musa textilis.", "A fiber extracted from the abaca plant (Musa textilis)."], "abac\u00e1": ["A banana plant of the species Musa textilis.", "A fiber extracted from the abaca plant (Musa textilis)."], "Manila hemp": ["A fiber extracted from the abaca plant (Musa textilis)."], "abac\u00e1 fiber": ["A fiber extracted from the abaca plant (Musa textilis)."], "abaca fiber": ["A fiber extracted from the abaca plant (Musa textilis)."], "abacinate": ["To blind by a red-hot metal plate held before the eyes."], "abacination": ["The act of abacinating."], "abactinal": ["Pertaining to the surface or end opposite to the mouth in a radiate animal."], "aboral": ["Pertaining to the surface or end opposite to the mouth in a radiate animal."], "abaft": ["(Of a boat) Toward the stern from; behind.", "(Of a boat) Toward the stern."], "aft": ["(Of a boat) Toward the stern."], "abarticulation": ["(Anatomy) An articulation which admits of free motion in the joint; the most common type of articulation."], "diarthrosis": ["(Anatomy) An articulation which admits of free motion in the joint; the most common type of articulation."], "synovial joint": ["(Anatomy) An articulation which admits of free motion in the joint; the most common type of articulation."], "abashedly": ["In an abashed manner."], "abashment": ["The state of being abashed; the confusion from shame."], "decreasable": ["That can be made smaller in size or intensity."], "diminishable": ["That can be made smaller in size or intensity."], "abatable": ["Capable of being deducted or subtracted.", "That can be made smaller in size or intensity."], "reducible": ["That can be made smaller in size or intensity."], "subtractable": ["Capable of being deducted or subtracted."], "abator": ["A person who abates a nuisance.", "A person who, without right, enters into a freehold on the death of the last possessor, before the heir."], "abaxial": ["(For a leaf) On the side that is away from the axis or central line."], "abaxile": ["(For a leaf) On the side that is away from the axis or central line."], "abbreviator": ["A person who abbreviates or shortens.", "One of a college of seventy-two officers of the papal court whose duty is to make a short minute of a decision on a petition, or reply of the pope to a letter, and afterwards expand the minute into official form."], "shortener": ["A person who abbreviates or shortens."], "abdicable": ["Capable of being abdicated."], "abdicator": ["A person who abdicates."], "abdominous": ["Having a protuberant belly."], "potbellied": ["Having a protuberant belly."], "pot-bellied": ["Having a protuberant belly."], "overvoltage": ["A condition where the voltage in a circuit is above its upper design limit."], "abeam": ["(For a ship) On the beam, that is, on a line which forms a right angle with the ship's keel; opposite to the center of the ship's side."], "Abecedarian": ["A member of a 16th-century German sect of Anabaptists."], "abelmosk": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "abelmusk": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "ambrette seeds": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "annual hibiscus": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "bamia moschata": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "galu gasturi": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "muskdana": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "musk mallow": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "musk okra": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "musk seeds": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "ornamental okra": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "rose mallow seeds": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "tropical jewel hibiscus": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "yorka okra": ["An evergreen shrub of the species Abelmoschus moschatus, whose musky seeds are used in perfumery."], "aberrance": ["State of being aberrant; a wandering from the right way; deviation from truth, rectitude, etc."], "aberrancy": ["State of being aberrant; a wandering from the right way; deviation from truth, rectitude, etc."], "aberrancy of curvature": ["The deviation of a curve from a circular form."], "aberrate": ["To go in a different direction than what is expected."], "go astray": ["To go in a different direction than what is expected."], "abetment": ["The act of inciting or encouraging someone to commit a crime."], "abettal": ["The act of inciting or encouraging someone to commit a crime."], "abetter": ["A person who incites or encourages someone to commit a crime."], "abettor": ["A person who incites or encourages someone to commit a crime."], "abeyant": ["(Law) Being in a state of abeyance, or expectation."], "phage therapy": ["The use of bacteriophages to treat pathogenic bacterial infections."], "unverified": ["Not (yet) verified."], "sinew": ["Tissue that connects muscle to bone."], "tendonitis": ["Inflammation of a tendon."], "English yew": ["A species of coniferous tree with dark-green flat needle-like leaves and seeds bearing red arils, native to western, central and southern Europe, northwest Africa, northern Iran and southwest Asia."], "European yew": ["A species of coniferous tree with dark-green flat needle-like leaves and seeds bearing red arils, native to western, central and southern Europe, northwest Africa, northern Iran and southwest Asia."], "starved wood sedge": ["A rare species of sedge native to parts of Europe."], "combined sewer": ["A sewer intended to serve as a sanitary sewer and a storm sewer, or as an industrial sewer and a storm sewer."], "nutritional value": ["The measure of the quantity or availability of nutrients found in materials ingested and utilized by humans or animals as a source of nutrition and energy."], "caveat": ["(Law) A notice given by an interested party to some officer not to do a certain act until the party is heard in opposition.", "A document used in the US between 1836 and 1910, similar to a provisional patent application, but which could be renewed after one year.", "A gentle advice or warning given to someone to tell him to be cautious about something."], "patent caveat": ["A document used in the US between 1836 and 1910, similar to a provisional patent application, but which could be renewed after one year."], "embankment dam": ["A barrier of concrete, earth, etc., built across a river to create a body of water."], "color vision deficiency": ["The inability or decreased ability to see color, or perceive color differences, under normal lighting conditions."], "achromatopsia": ["The total inability to perceive colors."], "achromatopia": ["The total inability to perceive colors."], "achromatopsy": ["The total inability to perceive colors."], "achromatism": ["The total inability to perceive colors."], "ACHM": ["The total inability to perceive colors."], "openpit mining": ["Superficial mining, in which the valuable rock is exposed by removal of overburden."], "total color blindness": ["The total inability to perceive colors."], "monochromacy": ["The total inability to perceive colors."], "dichromacy": ["The condition of having only two types of functioning cone cells in the eyes, instead of three."], "dichromat": ["A person who can has only two types of functioning cone cells in the eyes, instead of three."], "dichromatic": ["Having two colors.", "Having only two types of functioning cone cells in the eyes, instead of three."], "trichromacy": ["The condition of having three different cone types in the eyes."], "trichromat": ["An organism having three different cone types in the eyes."], "trichromaticism": ["The condition of having three different cone types in the eyes."], "trichromatic": ["Having three colors.", "Having three different cone types in the eyes."], "protanopia": ["A type of red-green color-blindness caused by an absence of the long-wavelength (red) sensitive retinal cones."], "deuteranopia": ["A type of red-green color-blindness caused by an absence of the medium-wavelength (green) sensitive retinal cones."], "tritanopia": ["A type of color-blindness caused by an absence of the short-wavelength (blue) sensitive retinal cones."], "protanope": ["A person who has protanopia."], "deuteranope": ["A person who has deuteranopia."], "tritanope": ["A person who has tritanopia."], "urban rot": ["Condition where part of a city or town becomes old or dirty or ruined, because businesses and wealthy families have moved away from it."], "urban blight": ["Condition where part of a city or town becomes old or dirty or ruined, because businesses and wealthy families have moved away from it."], "Kathiawai": ["A dialect of Gujarati spoken in the Kathiawai peninsula."], "giant roundworm": ["A parasitic worm of the species Ascaris lumbricoides, infecting humans and other mammals, causing ascariasis."], "pack ice": ["Large areas of floating ice, usually occurring in polar seas, consisting of separate pieces that have become massed together."], "ascariasis": ["A disease of humans caused by the parasitic giant roundworm."], "central European firefly": ["An insect of the Lampyridae family that is native to Europe und is able to glow at night."], "aphid": ["A small sap-sucking insect of the superfamily Aphidoidea."], "plant lice": ["A small sap-sucking insect of the superfamily Aphidoidea."], "whitefly": ["An insect of the family Aleyrodidae that have long wings, and a white body, and feed on plant leaves."], "open cluster": ["A group of stars that were formed from the same molecular cloud and have roughly the same age."], "electrospun": ["(For fibers) Manufactured by electrospinning."], "electrospinning": ["A method of manufacturing very fine fibres from a liquid by using electrical charges."], "color palette": ["The collection of colors or shades available to a graphic system or program."], "colour palette": ["The collection of colors or shades available to a graphic system or program."], "duodenum": ["The first section of the small intestine in mammals, reptiles, birds and some other vertebrates."], "dodecadactylum": ["The first section of the small intestine in mammals, reptiles, birds and some other vertebrates."], "maw-gut": ["The first section of the small intestine in mammals, reptiles, birds and some other vertebrates."], "duodenal": ["Relating to the duodenum."], "ileum": ["The final section of the small intestine in mammals, reptiles, birds and some other vertebrates."], "ileal": ["Relating to the ileum."], "regalian": ["Pertaining to rights, prerogatives and privileges of a sovereign."], "regalia": ["The rights, prerogatives and privileges of a sovereign."], "French Creole": ["A Cr\u00e9ole language based on the French vocabulary."], "French-based Creole language": ["A Cr\u00e9ole language based on the French vocabulary."], "Dominican Creole French": ["A French-based cr\u00e9ole spoken in Dominica."], "Antillean Creole French": ["A family of French creole languages spoken primarily in the Lesser Antilles."], "Antillean Creole": ["A family of French creole languages spoken primarily in the Lesser Antilles."], "water supply system": ["The system of pipes supplying water to communities and industries."], "water supply network": ["The system of pipes supplying water to communities and industries."], "green marketing": ["The marketing of products that are presumed to be environmentally safe."], "oust": ["To force a person or persons to leave a place.", "To force a person or persons out of a position or place."], "in particular": ["[Used to indicate a notable or particular example of a previous mentioned group]."], "amongst other things": ["[Used to indicate a notable or particular example of a previous mentioned group]."], "disgustingly": ["In a disgusting manner."], "small calorie": ["The amount of energy needed to raise the temperature of one gram of water by one degree Celsius, equal to about 4.19 joules."], "gram calorie": ["The amount of energy needed to raise the temperature of one gram of water by one degree Celsius, equal to about 4.19 joules."], "large calorie": ["The amount of energy needed to raise the temperature of one kilogram of water by one degree Celsius."], "kilogram calorie": ["The amount of energy needed to raise the temperature of one kilogram of water by one degree Celsius."], "dietary calorie": ["The amount of energy needed to raise the temperature of one kilogram of water by one degree Celsius."], "nutritionist's calorie": ["The amount of energy needed to raise the temperature of one kilogram of water by one degree Celsius."], "food calorie": ["The amount of energy needed to raise the temperature of one kilogram of water by one degree Celsius."], "moot": ["An argument, or discussion, usually in an ordered or formal setting, often with more than two people, generally ending with a vote or other decision.", "Subject, or open, to argument or discussion.", "(Shipbuilding) A ring for gauging wooden pins.", "To discuss by arguing for and against.", "To argue or plead in a supposed case.", "To discuss by way of exercise; to argue for practice.", "A discussion of fictitious causes by way of practice."], "mooted": ["Subject, or open, to argument or discussion."], "moot court": ["A mock court, such as is held by students of law for practicing the conduct of law cases."], "moot point": ["A point or question to be debated."], "avalanche defense": ["The total of measures and devices implemented to protect people, property or natural resources from avalanche conditions, including avalanche forecasting and warning, avalanche zoning, ski testing and the use of explosives and other equipment to stabilize an avalanche area."], "avalanche control": ["The total of measures and devices implemented to protect people, property or natural resources from avalanche conditions, including avalanche forecasting and warning, avalanche zoning, ski testing and the use of explosives and other equipment to stabilize an avalanche area."], "electronic data processing": ["The use of computers or machines to create and process data."], "EDP": ["The use of computers or machines to create and process data."], "abide by": ["To act in accordance with someone's rules, commands, or wishes.", "To stay faithful to (an opinion, a belief, etc.)."], "stand to": ["To stay faithful to (an opinion, a belief, etc.)."], "stand by": ["To stay faithful to (an opinion, a belief, etc.)."], "stick by": ["To stay faithful to (an opinion, a belief, etc.)."], "stick to": ["To stay faithful to (an opinion, a belief, etc.).", "To stick to firmly."], "firs": ["A genus of between 45-55 species of evergreen conifers in the family Pinaceae."], "abiogenetic": ["Of or pertaining to abiogenesis."], "abiogenist": ["A person who believes that life can be produced independently of antecedent."], "reamer": ["A tool for boring a hole wider.", "A device for rendering citrus juice.", "A tool used to scrape carbon deposit from the bowl of a pipe.", "A Stone Age prehistoric lithic Stone tool, used in archeology nomenclature."], "harmonicist": ["A person who plays the harmonica."], "French harp": ["A free reed musical wind instrument which produces notes according to the player's mouth placement over the different airways."], "blues harp": ["A free reed musical wind instrument which produces notes according to the player's mouth placement over the different airways."], "a little": ["To a small extent or degree."], "a bit": ["To a small extent or degree."], "a trifle": ["To a small extent or degree."], "growth medium": ["A liquid or gel designed to support the growth of microorganisms, cells or small plants."], "wean": ["To stop feeding a young animal or child with mother's milk."], "ablactate": ["To stop feeding a young animal or child with mother's milk."], "ablactation": ["The act of stopping to feed a young animal or child with mother's milk.", "The process of grafting two plants by growing them close to one another."], "weaning": ["The act of stopping to feed a young animal or child with mother's milk."], "inarching": ["The process of grafting two plants by growing them close to one another."], "grafting by approach": ["The process of grafting two plants by growing them close to one another."], "approach grafting": ["The process of grafting two plants by growing them close to one another."], "bass clef": ["A musical clef indicating that the F3 note is placed on the fourth line."], "F-clef": ["A musical clef indicating that the F3 note is placed on the fourth line."], "bass instrument": ["An instrument that plays sounds of low frequency."], "threshold limit value": ["The maximum exposure to a physical or chemical agent allowed in an 8-hour work day to prevent disease or injury."], "benthic zone": ["The interacting system of the biological communities located at the bottom of bodies of freshwater and saltwater and their non-living environmental surroundings.\\n(Source: TOE / DOE)"], "industrial sector": ["The part of a country or region's economy that produces commodities without much direct use of natural resources."], "business law": ["The whole body of substantive jurisprudence applicable to the rights, intercourse and relations of persons engaged in commerce, trade or mercantile pursuits."], "tent peg": ["Small object designed to hold a tent to the ground and comporting a hard long thin part to put into the ground."], "tent stake": ["Small object designed to hold a tent to the ground and comporting a hard long thin part to put into the ground."], "arr": ["A grunt stereotypical of pirates.", "To grunt like a pirate."], "arrr": ["A grunt stereotypical of pirates."], "rrrr": ["A grunt stereotypical of pirates."], "yarrr": ["A grunt stereotypical of pirates."], "bumble-bee": ["A flying insect of the genus Bombus."], "bumble bee": ["A flying insect of the genus Bombus."], "medical contrast medium": ["A substance used in medical imaging to enhance the contrast of structures or fluids within the body."], "contrast medium": ["A substance used in medical imaging to enhance the contrast of structures or fluids within the body."], "contrast agent": ["A substance used in medical imaging to enhance the contrast of structures or fluids within the body."], "polyhedron": ["A solid in three dimensions with flat faces and straight edges."], "polyhedral": ["Relating to a polyhedron."], "polyhedrical": ["Relating to a polyhedron."], "forestal": ["Relating to a forest or to forestry."], "silvicultural": ["Relating to a forest or to forestry."], "tree stump": ["A small remaining portion of the trunk of a tree with the roots still in the ground."], "stump grinder": ["A machine that removes tree stumps using a cutting disk."], "stump cutter": ["A machine that removes tree stumps using a cutting disk."], "Armenian bumblebee": ["A species of bumblebee that can be found in Austria, Czech Republic, Russia, and Near East."], "great yellow bumblebee": ["A species of bumblebee native to several European countries."], "garden bumblebee": ["A species of bumblebee that can be found in most of Europe, as well as parts of Asia and New Zealand."], "brown-banded carder bee": ["A species of bumblebee found in Europe."], "tree bumblebee": ["A species of bumblebee that is common on the European continent and parts of Asia."], "new garden bumblebee": ["A species of bumblebee that is common on the European continent and parts of Asia."], "heath humble-bee": ["A species of bumblebee."], "small heath bumblebee": ["A species of bumblebee."], "Japanese knotweed": ["A large, herbaceous perennial plant, native to eastern Asia and an invasive species in other parts of the world."], "complexing": ["Formation of a complex compound. Also known as complexing or complexation."], "complexation": ["Formation of a complex compound. Also known as complexing or complexation."], "Mediterranean tapeweed": ["A seagrass species that is endemic to the Mediterranean Sea."], "Neptune grass": ["A seagrass species that is endemic to the Mediterranean Sea."], "drill bit": ["A cutting tool used to create cylindrical holes."], "hemodynamics": ["The study of blood flow or circulation."], "haemodynamics": ["The study of blood flow or circulation."], "sonoluminescence": ["The emission of light in a liquid when using sound to make bubbles implode."], "juniper berry": ["The female seed cone produced by the various species of junipers."], "permeameter": ["An instrument for measuring the permeability of a solid."], "borehole": ["A narrow straight hole bored in the ground for extracting resources."], "bulk modulus": ["A value that expresses the resistance of a given substance to uniform compression."], "coconut water": ["The clear liquid inside young coconuts."], "rotifer": ["An animal of the phylum Rotifera measuring between 50 \u00b5m and 3 mm."], "wheel animal": ["An animal of the phylum Rotifera measuring between 50 \u00b5m and 3 mm."], "bdelloid rotifer": ["An animal of the class Bdelloidea of the rotifer phylum."], "bdelloid": ["An animal of the class Bdelloidea of the rotifer phylum."], "antiacne": ["That is effective against acne."], "anti-acne": ["That is effective against acne."], "kidney stone": ["A calculus located in the kidney."], "renal calculus": ["A calculus located in the kidney."], "nephrolith": ["A calculus located in the kidney."], "kidney gravel": ["A calculus located in the kidney."], "homewrecker": ["A person who has a romantic relationship with a married person with the result of breaking up the marriage."], "rouille": ["A Proven\u00e7al sauce that consists of olive oil with breadcrumbs, garlic, saffron and chili peppers and is often served with fish soup."], "ambergris": ["A waxy substance of a dull grey or blackish color, produced in the intestines of the sperm whale which is used in the production of perfume."], "grey amber": ["A waxy substance of a dull grey or blackish color, produced in the intestines of the sperm whale which is used in the production of perfume."], "gray amber": ["A waxy substance of a dull grey or blackish color, produced in the intestines of the sperm whale which is used in the production of perfume."], "yellowy": ["Somewhat yellow."], "pinkish": ["Somewhat pink."], "20-dollar bill": ["A bill having a value of 20 American dollars."], "1-dollar bill": ["A bill having a value of 1 American dollar."], "United States one-dollar bill": ["A bill having a value of 1 American dollar."], "levee": ["An artificial wall, embankment, ridge, or mound, usually of earth or rock fill, built around a relatively flat, low-lying area to protect it from flooding."], "Elektroplattieren": ["The act of coating iron or steel with zinc, either by immersion in a bath of molten zinc or by deposition from a solution of zinc sulphate, to give protection against corrosion."], "Upper Austrian": ["Of or relating to Upper Austria."], "bee bite": ["A sting caused by the stinger of a bee."], "supercentenarian": ["A person who is at least 110 years old."], "super-centenarian": ["A person who is at least 110 years old."], "subsidized housing": ["Residences built at minimal expense and designed to keep the rental rate or price of purchase affordable for persons with limited means, usually determined by an annual income level set below the local median."], "social housing": ["Residences built at minimal expense and designed to keep the rental rate or price of purchase affordable for persons with limited means, usually determined by an annual income level set below the local median."], "construction waste": ["Masonry and rubble wastes arising from the demolition or reconstruction of buildings or other civil engineering structures."], "hysteria": ["Behavior exhibiting excessive or uncontrollable emotion, such as fear or panic."], "\u00a2": ["A subunit of currency equal to one-hundredth of the main unit of currency in many countries."], "kleptothermy": ["A form of thermoregulation by which an animal shares in the body heat of another animal."], "kleptocracy": ["A form of political corruption where the government exists to increase the personal wealth and political power of the ruling class at the expense of the wider population."], "cleptocracy": ["A form of political corruption where the government exists to increase the personal wealth and political power of the ruling class at the expense of the wider population."], "kleptarchy": ["A form of political corruption where the government exists to increase the personal wealth and political power of the ruling class at the expense of the wider population."], "kleptomaniac": ["One who steals compulsively."], "cleptomaniac": ["One who steals compulsively."], "thermogenesis": ["The process of heat production in organisms."], "silver screen": ["A white or silvered surface where pictures can be projected for viewing."], "projection screen": ["A white or silvered surface where pictures can be projected for viewing."], "CRT screen": ["The display that is electronically created on the surface of the large end of a cathode-ray tube or some other display technology."], "utopia": ["An ideal community or society with highly desirable or perfect political, social or religious qualities."], "semantic network": ["A network which represents semantic relations between concepts."], "bioindicator": ["A species or organism that is used to grade environmental quality or change."], "segue": ["To make a smooth transition from one musical theme to another.", "To make a smooth transition from one subject to another in a conversation.", "A smooth transition from one musical theme to another.", "A smooth transition from one subject to another in a conversation."], "playpen": ["A portable piece of furniture in which an infant or young child is confined for safety reasons."], "pareidolia": ["The perception of a known form or shape in an image that depicts something else, such as the perception of animal shapes in clouds."], "pareidolic": ["Relating to pareidolia."], "apophenia": ["The perception of meaningful patterns in random or meaningless data."], "malignancy": ["(For a cell, a tumor, etc.) The state of being malignant."], "benignancy": ["(For a cell, a tumor, etc.) The state of being benign."], "wasp spider": ["A species of orb-web spider distributed throughout Europe, north Africa and parts of Asia and shows striking yellow and black markings."], "Tilia tree": ["Tree member of the Tilia genus, itself member of the Malvaceae family, of quick growth, able to reach 30 or 40 m high, with a sturdy trunk, numerous ramifications, usually heart-shaped leaves, tiny fruits attached to a ribbon-like, greenish-yellow bract, 5-petaled 5-sepaled flowers, both the flower and the bract being used in medicinal tea."], "Tilia": ["Tree member of the Tilia genus, itself member of the Malvaceae family, of quick growth, able to reach 30 or 40 m high, with a sturdy trunk, numerous ramifications, usually heart-shaped leaves, tiny fruits attached to a ribbon-like, greenish-yellow bract, 5-petaled 5-sepaled flowers, both the flower and the bract being used in medicinal tea."], "habituate": ["To take or consume (regularly or habitually)."], "prefer": ["To choose; to select as an alternative to another.", "To like better; to value more highly."], "typewrite": ["To write by entering characters on a keyboard or a typewriter."], "qualify": ["To add a modifier to a constituent.", "To prove capable or fit; to meet requirements.", "To make more specific.", "To make fit, trained or prepared."], "measure up": ["To prove capable or fit; to meet requirements."], "dispose": ["To make fit, trained or prepared.", "To eliminate or to remove something."], "scat": ["To flee; to take to one's heels; to cut and run."], "turn tail": ["To flee; to take to one's heels; to cut and run."], "break away": ["To flee; to take to one's heels; to cut and run."], "halt": ["To cause to stop (e.g. an engine or a machine)."], "bear hug": ["A wrestling hold with arms locked tightly around the opponent."], "wrestle": ["To combat to overcome an opposing tendency or force.", "To engage in a wrestling match."], "selfie": ["A photograph taken by the person photographed."], "Fueguian sprat": ["A sprat of the species Sprattus fuegensis."], "Falkland sprat": ["A sprat of the species Sprattus fuegensis."], "New Zealand blueback sprat": ["A sprat of the species Sprattus antipodum."], "New Zealand sprat": ["A sprat of the species Sprattus muelleri."], "Australian sprat": ["A sprat of the species Sprattus novaehollandiae."], "European sprat": ["A sprat of the species Sprattus sprattus."], "bristling": ["A sprat of the species Sprattus sprattus."], "brisling": ["A sprat of the species Sprattus sprattus."], "string up": ["To kill by hanging."], "stative verb": ["A verb that describes a state of being."], "coverb": ["A verb, used along a second verb, and acting as a preposition."], "place word": ["A word used to indicate location."], "locative word": ["A word used to indicate location."], "time word": ["A word used to indicate time."], "verb object": ["A phrase consisting of a verb and an object that is the recipient of the action expressed by the verb."], "verb-object": ["A phrase consisting of a verb and an object that is the recipient of the action expressed by the verb."], "verb-object phrase": ["A phrase consisting of a verb and an object that is the recipient of the action expressed by the verb."], "monogastric": ["Having a simple single-chambered stomach."], "polygastric": ["Having a stomach consisting of several chambers."], "coffin birth": ["The expulsion of a nonviable fetus through the vaginal opening of the decomposing body of a pregnant woman as a result of the increasing pressure of intraabdominal gases."], "postmortem fetal extrusion": ["The expulsion of a nonviable fetus through the vaginal opening of the decomposing body of a pregnant woman as a result of the increasing pressure of intraabdominal gases."], "parasitic worm": ["A worm-like organism living in a living host."], "helminth": ["A worm-like organism living in a living host."], "East Franconian": ["A group of Central German dialects being part of the East Franconian group spoken in a large stripe along the river Main in Germany."], "palliate": ["To make easier to endure; provide physical relief, as from pain."], "select": ["To make a choice from a number of alternatives."], "pick out": ["To make a choice from a number of alternatives."], "get hold of": ["To grasp with the hands.", "To affect (e.g. of pain, fear, etc.)."], "ingest": ["To ingest food, medicine, drugs, etc."], "emetophobia": ["Fear of vomiting."], "emetophobic": ["Pertaining to or suffering from the fear of vomiting."], "pay up": ["To cancel or discharge a debt."], "wrestling hold": ["A hold used in the sport of wrestling."], "browse": ["To browse the Internet.", "To shop around; not necessarily buying.", "To feed as in a meadow or pasture.", "To eat lightly, try different dishes."], "crop": ["To feed as in a meadow or pasture."], "look out": ["To be vigilant, be on the lookout or be careful."], "watch out": ["To be vigilant, be on the lookout or be careful."], "pass judgment": ["To express an opinion or a valuation, especially on esthetics, morality or the like."], "wordnet": ["Any of the machine-readable lexical databases modeled after the Princeton WordNet."], "linear encoder": ["Device to encode a position."], "run through": ["To use up resources or materials."], "use up": ["To use up resources or materials."], "utilize": ["To employ an object, often to reach a certain goal; to put into service.", "To convert (from an investment trust to a unit trust)."], "utilise": ["To employ an object, often to reach a certain goal; to put into service."], "restore": ["To change the state of an item (e.g. which was torn or broken) to a working condition again."], "touch on": ["To change the state of an item (e.g. which was torn or broken) to a working condition again.", "To be relevant or of importance to."], "go under": ["To cause a boat to go down in the water.", "[Of a heavenly body, essentially the Sun and the Moon] To disappear below the horizon of a planet or another heavenly body (most often the Earth)."], "pose": ["Affected manners intended to impress others.", "To assume a posture as for artistic purposes.", "To behave affectedly or unnaturally in order to impress other."], "recount": ["To talk about a story giving its details; to give a detailed account of."], "outback": ["An area of wilderness, usually large, usually covered by thick vegetation, mainly untouched by humans."], "mime": ["To imitate (a person or manner), especially for satirical effect."], "mimic": ["To imitate (a person or manner), especially for satirical effect."], "economic value": ["The amount (of money or goods or services) that is considered to be a fair equivalent for something else"], "shake up": ["To arouse or stir up emotions or feelings."], "run across": ["To come together with someone by accident."], "cope with": ["To satisfy or fulfill (e.g. a job or a need)."], "confront": ["To deal with (something unpleasant) head on.", "To oppose, as in hostility or a competition.", "To present somebody with something, e.g. to accuse or criticize."], "face up": ["To deal with (something unpleasant) head on."], "transferrin": ["A glycoprotein that transports irons in blood."], "put up": ["To admit to residence; provide housing for.", "To place so as to be noticed.", "To preserve in a can or tin."], "domiciliate": ["To admit to residence; provide housing for."], "business firm": ["A place where an activity is accomplished, whether actual, as a pub, or virtual, as a website."], "steady": ["Marked by firm determination or resolution; not shakable."], "unbendable": ["Marked by firm determination or resolution; not shakable."], "unwavering": ["Marked by firm determination or resolution; not shakable."], "slumber": ["A periodic state of physiological rest during which consciousness is suspended and metabolic rate is decreased.", "To rest in a state of decreased consciousness and reduced metabolism."], "loosen up": ["To become less tense, formal, or restrained, and assume a friendlier attitude."], "stay on": ["To stay the same; to remain in a certain state."], "deceiver": ["A person who acts dishonestly."], "cheater": ["A person who acts dishonestly."], "rig": ["A dishonest act."], "cheat on": ["To be sexually unfaithful to one's spouse or lover."], "smiling": ["An upwards movement of the sides of the mouth that indicates happiness or satisfaction."], "grin": ["An upwards movement of the sides of the mouth that indicates happiness or satisfaction."], "reconstructed language": ["An unattested language or linguisitc entity that is described as the result of research on the features of one, or several related, attested languages by which scientist with some precision find out what the common language looked like that preceeded them in history."], "proto-language": ["A language that in the tree model of historical linguistics is a hypothetical, or reconstructed, typically extinct language from which a number of attested, or documented, known languages are believed to have descended by evolution, by slow and mostly gradual modification, into languages that form a known and documented language family."], "artificial reference pseudo language": ["A collection of lemmatized real words and made up words related to a group of languages or dialects in the way that these words are either true words of at least some of the languages, or are made up in a way allowing similar related words of several languages or dialects to be covered by a single common entry in a collective dictionary of these languages and dialects, regardless of their different actual forms in various languages."], "haul": ["To draw slowly or heavily.", "To transport in a vehicle."], "hale": ["To exert violence, or constraint upon or against a person in order to obtain something by physical, moral or intellectual means.", "To draw slowly or heavily."], "drag": ["To draw slowly or heavily."], "step down": ["To give up from a job or position."], "leave office": ["To give up from a job or position."], "succumb": ["To stop to oppose or resist."], "stop over": ["To interrupt a trip."], "turn back": ["To rotate [a container] so that its opening be below; to turn upside down.", "To hold back, as of a danger or an enemy; check the expansion or influence of."], "break off": ["To prevent completion (e.g. of a project, of negotiations, etc.)."], "block off": ["To render passage impossible by physical obstruction."], "relegate": ["To accept no longer in a community, group or country, e.g. by official decree."], "piece of work": ["That that has been made; a product produced or accomplished through the effort or activity or agency of a person or thing."], "battler": ["A person who fights or struggles using physical force or weapon."], "web feed": ["Encapsulated online content that you can subscribe to with a feed reader. Used often for reading blog and news updates."], "feed in": ["To introduce continuously (e.g. ingredients into a food processor)."], "revilement": ["Coarse, insulting speech or expression."], "misuse": ["To put to a wrong use; to change the inherent purpose or function of something."], "pervert": ["To put to a wrong use; to change the inherent purpose or function of something."], "care for": ["To care for medicinally or surgically; to apply medical care to.", "To keep under careful scrutiny."], "caring": ["Feeling and exhibiting concern and empathy for others."], "grease one's palms": ["To give, or offer a bribe."], "payoff": ["Something (usually money) given in exchange for influence or as an inducement to dishonesty."], "act upon": ["To have and exert influence or effect."], "freshen": ["To make (to feel) fresh.", "To become or make oneself fresh again."], "refresh": ["To make (to feel) fresh.", "To become or make oneself fresh again."], "rinvigorire": ["To make (to feel) fresh."], "refreshen": ["To become or make oneself fresh again."], "freshen up": ["To become or make oneself fresh again."], "deflect": ["Draw someone's attention away from something."], "unhinge": ["To disturb in mind or make uneasy or cause to be worried or alarmed."], "inconvenience": ["To cause annoyance in; disturb, especially by minor irritations."], "discommode": ["To cause annoyance in; disturb, especially by minor irritations."], "incommode": ["To cause annoyance in; disturb, especially by minor irritations."], "hide out": ["To put something in a place where it will be harder to discover or out of sight."], "befog": ["To hide from view."], "becloud": ["To hide from view."], "obnubilate": ["To hide from view."], "haze over": ["To hide from view."], "hidden": ["Not accessible to view.", "Expressly designed to elude detection.", "Difficult to find."], "concealed": ["Not accessible to view."], "out of sight": ["Not accessible to view."], "alpine newt": ["a newt of the salamander order Caudata (or Urodela), Ichthyosaura alpestris, formerly Triturus alpestris and Mesotriton alpestris."], "Mexican salamander": ["An urodela of the species Ambystoma mexicanum originating from Mexico."], "heiress": ["A female heir."], "flexible": ["Capable of being flexed or bent without breaking; able to be turned, bowed, or twisted, without breaking; pliable; not stiff or brittle."], "molly": ["The female of the domesticated cat."], "tin can": ["A small, round-shaped metal container, used for different purposes like storing food or liquids, or collecting money."], "foil kite": ["A non-rigid kite based on the design of the parafoil."], "good grief": ["An expression of amazement."], "lion cub": ["A young lion."], "soil gas": ["The air and other gases in spaces in the soil; specifically that which is found within the zone of aeration. Also known as soil atmosphere.\\n(Source: MGH)"], "General Dictionary": ["General Dictionary"], "hoopoe": ["Bird found across Afro-Eurasia."], "falcon": ["Bird of prey."], "Haida": ["An endangered language spoken by the Haida people in the Haida Gwaii archipelago of the coast of Canada and on Prince of Wales Island in Alaska."], "Ngazidja Comorian": ["A dialect of the Comorian language spoken on the island of Ngazidja."], "mousehole": ["Small hole in the earth being the entrance of a tunnel a mouse built."], "canine": ["One of the teeth."], "canine tooth": ["One of the teeth."], "cronut": ["A pastry which combines donut and croissant."], "jetlag": ["Physiological ailments like headache and nausea, caused by the readjustment of the inner clock of the body to the time difference after a long-distance flight."], "jet-lagged": ["Suffering from jet lag."], "jetlagged": ["Suffering from jet lag."], "mother language": ["The first language learnt; the language one grew up with."], "Nuremberg": ["A city in the German state of Bavaria, in the administrative region of Middle Franconia."], "W\u00fcrzburg": ["A city in the region of Franconia, Northern Bavaria, Germany."], "Sonneberg": ["A town in Thuringia, Germany."], "stockings": ["Clothes to cover your feet. Usually you have two of them."], "Bliss Symbolics": ["An artificial language that has is a written language only.", "A pictotraphic writing system using a set of symbols created by Charles Kasiel Bliss in the 1940s as a written language."], "bring around": ["To remedy an illness using medical or medicamentous treatment; to provide a cure for."], "driving force": ["The act of applying force to propel something."], "knife thrust": ["A strong blow with a knife or other sharp pointed instrument."], "bear on": ["To press, drive, or impel (someone) to action or completion of an action.", "To be relevant or of importance to."], "bring up": ["To refer briefly to; to make reference to.", "To care for and train (a child)."], "carry up": ["To move to a higher location."], "colorize": ["To add color to."], "colorise": ["To add color to."], "color in": ["To add color to."], "colour in": ["To add color to."], "colourize": ["To add color to."], "colourise": ["To add color to."], "fundamental particle": ["(physics) any of the subatomic particles that does not consist of other, smaller particles."], "protection cover": ["Object that holds something to protect it."], "ablaqueation": ["The act or process of laying bare, as the roots of a tree."], "ablastemic": ["Non-germinal."], "ablaut": ["The substitution of one root vowel for another, thus indicating a corresponding modification of use or meaning, such as \"get, gat, got\"; \"sing, song\"; \"hang, hung\"."], "-able": ["Able to be; fit to be."], "able-bodied": ["Having a physically sound and strong body."], "able-minded": ["Having much intellectual power."], "ablegate": ["To send abroad.", "A representative of the pope charged with important commissions in foreign countries, one of his duties being to bring to a newly named cardinal his insignia of office."], "ablegation": ["The act of sending abroad."], "ableness": ["The ability of body or mind."], "ablepsia": ["The condition of being unable to see."], "common bleak": ["A small fresh-water fish of the species Alburnus alburnus."], "ablet": ["A small fresh-water fish of the species Alburnus alburnus."], "ablen": ["A small fresh-water fish of the species Alburnus alburnus."], "abligate": ["To tie up so as to hinder from."], "abligurition": ["Prodigal expense for food."], "ablins": ["Expresses that a statement is uncertain."], "aiblins": ["Expresses that a statement is uncertain."], "abloom": ["In or into bloom; in a blooming state."], "abluent": ["Washing away; carrying off impurities."], "blushing": ["(For a person) Showing blushes."], "ablush": ["(For a person) Showing blushes.", "In an blushing manner."], "ruddy": ["(For a person) Showing blushes."], "blushingly": ["In an blushing manner."], "ablutionary": ["Pertaining to ablution."], "abluvion": ["That which is washed off."], "abnegate": ["To refuse strongly and solemnly to own or acknowledge."], "denying": ["Who denies."], "abnegative": ["Who denies."], "abnegator": ["One who abnegates, denies, or rejects anything."], "eyewitness": ["Someone who has seen an event and can report or testify about it."], "eye witness": ["Someone who has seen an event and can report or testify about it."], "acheiropoietic": ["Not made by human hand."], "acheiropoieton": ["An image of Christ believed not to have been created by human hands."], "icon": ["A religious painting in Eastern Christian churches."], "Maccabees": ["A Jewish liberation movement which fought for, and established, independence in the Land of Israel during the second and first centuries BC."], "Machabees": ["A Jewish liberation movement which fought for, and established, independence in the Land of Israel during the second and first centuries BC."], "Maccabean": ["Of or pertaining to Judas Maccabeus or to the Maccabees."], "Seleucid Empire": ["A Hellenistic state ruled by the Seleucid dynasty founded by Seleucus I Nicator following the division of the empire created by Alexander the Great."], "Seleucid": ["Of or relating to the dynasty founded by Seleucus I Nicator."], "dynastic": ["Of or pertaining to a dynasty."], "dynastical": ["Of or pertaining to a dynasty."], "dynastically": ["In a dynastic manner."], "bear in mind": ["To keep in mind."], "Eternal City": ["The capital of Italy."], "BabelNet": ["A multilingual wide-coverage semantic network and encyclopedic dictionary."], "WordNet": ["A popular, lexical database for the English language based on psycholinguistic principles."], "gnaw": ["To bite with repeated effort at something hard to scrape or eat it."], "squeezebox": ["A musical instrument, such as the accordion and the concertina, that produces sound by compressing and decompressing a flexible bag."], "squeeze-box": ["A musical instrument, such as the accordion and the concertina, that produces sound by compressing and decompressing a flexible bag."], "patrol": ["A going of the rounds along the chain of sentinels and between the posts, by a guard, usually consisting of three or four men, to insure greater security from attacks on the outposts.", "A movement, by a small body of troops beyond the line of outposts, to explore the country and gain intelligence of the enemy's whereabouts.", "The guard or men who go the rounds for observation; a detachment whose duty it is to patrol.", "To go the rounds along a chain of sentinels; to traverse a police district or beat.", "To go the rounds of, as a sentry, guard, or policeman; as, to patrol a frontier; to patrol a beat."], "fatso": ["(Pejorative) A fat or overweight person."], "butterball": ["(Pejorative) A fat or overweight person."], "chubster": ["(Pejorative) A fat or overweight person."], "chunker": ["(Pejorative) A fat or overweight person."], "fatfuck": ["(Pejorative) A fat or overweight person."], "fattie": ["(Pejorative) A fat or overweight person."], "fat-ass": ["(Pejorative) A fat or overweight person."], "fatass": ["(Pejorative) A fat or overweight person."], "fatshit": ["(Pejorative) A fat or overweight person."], "lardass": ["(Pejorative) A fat or overweight person."], "lardo": ["(Pejorative) A fat or overweight person."], "oinker": ["(Pejorative) A fat or overweight person."], "obeast": ["(Pejorative) A fat or overweight person."], "podge": ["(Pejorative) A fat or overweight person."], "porker": ["(Pejorative) A fat or overweight person."], "pudge": ["(Pejorative) A fat or overweight person."], "salad dodger": ["(Pejorative) A fat or overweight person."], "tub of lard": ["(Pejorative) A fat or overweight person."], "as fit as a fiddle": ["In very good health."], "in rude health": ["In very good health."], "as sound as a bell": ["In very good health."], "right as rain": ["In very good health."], "fit as a fiddle": ["In very good health."], "sound as a bell": ["In very good health."], "fit as a butcher's dog": ["In very good health."], "fit as a flea": ["In very good health."], "sound in wind and limb": ["In very good health."], "jitters": ["A condition that makes a person shake."], "shakes": ["A condition that makes a person shake."], "predominate": ["To emerge; to be visible or larger in number, quantity, power, status or importance."], "make it": ["To succeed in a big way; to get to the top."], "get in": ["To succeed in a big way; to get to the top."], "pay back": ["To take revenge on or get even."], "pay off": ["To take revenge on or get even."], "take hold of": ["To take hold of, especially in the hands, so as to seize or restrain or stop the motion of."], "get under one's skin": ["To irritate."], "abnet": ["The girdle of a Jewish priest or officer."], "abnodate": ["To clear (tress) from knots."], "abnodation": ["The act of cutting away the knots of trees."], "abnormity": ["An anomaly, malformation, or difference from the normal.", "Person or thing that is monstrous.", "The state of being monstrous."], "monstrosity": ["Person or thing that is monstrous.", "The state of being monstrous."], "abnormous": ["Deviating from the ordinary or natural type."], "abodance": ["A sign that is supposed to reveal whether the future will be favourable or not."], "portending": ["A sign that is supposed to reveal whether the future will be favourable or not."], "sojourn": ["A period of time spent in a place."], "foreshow": ["To make a prediction or prophecy."], "bode": ["To make a prediction or prophecy."], "augur": ["To make a prediction or prophecy."], "prophesy": ["To make a prediction or prophecy.", "To deliver a sermon."], "foreboding": ["A sign that is supposed to reveal whether the future will be favourable or not."], "forboding": ["A sign that is supposed to reveal whether the future will be favourable or not."], "abodement": ["A sign that is supposed to reveal whether the future will be favourable or not."], "aboding": ["A sign that is supposed to reveal whether the future will be favourable or not."], "opine": ["To have as opinion, belief, or idea."], "reckon": ["To have as opinion, belief, or idea."], "abolishable": ["Capable of being abolished."], "abolisher": ["A person who abolishes."], "Japanese macaque": ["A monkey of the species Macaca fuscata, native to Japan."], "snow monkey": ["A monkey of the species Macaca fuscata, native to Japan."], "give way": ["To end resistance, as under pressure or force."], "excogitate": ["To use the intellect to plan or design something."], "contrive": ["To use the intellect to plan or design something.", "To make or work out a plan for; devise."], "organise": ["To arrange by systematic planning and united effort (e.g. a plot, a strike, a plan)."], "fabricate": ["To make things, usually on a large scale, with tools and either physical labor or machinery, out of artificial or natural components or parts.", "To make up something artificial or untrue."], "cook up": ["To make up something artificial or untrue."], "popularity": ["The quality of being well-liked or known, or having a high social status."], "sheikdom": ["Geographical area or society ruled by a sheik."], "TV set": ["Device used to watch films, news, sports etc."], "broom": ["A tool used to sweep and clean the floor, made of a bundle of straws or twigs attached to a long handle."], "visa": ["Document issued by a country allowing the holder to enter this country."], "useless": ["Of no use."], "peaceful": ["That does not involve war or crime."], "sane": ["Not mad or mentally ill."], "touristy": ["Related to tourism."], "run out": ["To be used up; to be exhausted.", "To leave suddenly and as if in a hurry.", "To exhaust the supply of."], "long johns": ["A piece of underwear having long legs which are open at their ends."], "so long": ["Expression of greeting used by two or more people who meet each other."], "CSV": ["Tabular data in plain-text form whose records are separated by commas."], "shove": ["To press or force."], "coerce": ["To exert violence, or constraint upon or against a person in order to obtain something by physical, moral or intellectual means."], "military unit": ["An organised group of people that exerts power in order to maintain or take control over other people; such as a military force or a police force."], "military force": ["An organised group of people that exerts power in order to maintain or take control over other people; such as a military force or a police force."], "Joanna": ["Female first name."], "Joanne": ["Female first name."], "oarfish": ["A large, elongated, pelagic lampriform fish of the family Regalecidae."], "giant oarfish": ["A fish of the family Regalecus glesne."], "king of herrings": ["A fish of the family Regalecus glesne."], "lordship": ["The state or condition of being a lord."], "ladyship": ["The state or condition of being a lady."], "get out": ["To move out of or depart from."], "tan": ["To treat skins and hides with tannic acid so as to convert them into leather.", "To get a tan, from wind or sun.", "A browning of the skin obtained from exposure to the sun."], "suntan": ["A browning of the skin obtained from exposure to the sun."], "revoke": ["To cancel or eliminate officially."], "do away with": ["To remove or get rid of, as being in some way undesirable."], "get rid of": ["To remove or get rid of, as being in some way undesirable."], "hap": ["To come to pass."], "go on": ["To maintain an action, state or condition without interruption.", "To come to pass.", "To continue talking."], "pass off": ["To come to pass."], "fall out": ["To come to pass."], "come about": ["To come to pass."], "quicken": ["To move faster."], "hush money": ["A bribe given to assure secrecy."], "eleutheromania": ["A strong or irresistible desire for freedom."], "eleutheromaniac": ["Having a strong or irresistible desire for freedom.", "A person having a strong or irresistible desire for freedom."], "illumine": ["To give light to (something)."], "light up": ["To give light to (something).", "To start the burning of (a pipe, cigarette, etc.)."], "illume": ["To give light to (something)."], "a leopard cannot change its spots": ["One cannot change or hide one's own nature in a durable manner."], "a leopard can't change its spots": ["One cannot change or hide one's own nature in a durable manner."], "a leopard doesn't change its spots": ["One cannot change or hide one's own nature in a durable manner."], "don't count your chickens before they're hatched": ["One shouldn't take for granted that something will happen before it really happens."], "a rolling stone gathers no moss": ["A person who never stays in one place will never be wealthy."], "you can't teach an old dog new tricks": ["It is very difficult to change a person's habits or character."], "old habits die hard": ["It is very difficult to change a person's habits or character."], "if wishes were horses, beggars would ride": ["[Expression used to criticize the validity of a reasoning based on a lot of unfounded hypothesis]"], "if pigs had wings they would fly": ["[Expression used to criticize the validity of a reasoning based on a lot of unfounded hypothesis]"], "if pigs had wings they could fly": ["[Expression used to criticize the validity of a reasoning based on a lot of unfounded hypothesis]"], "advert": ["To refer briefly to; to make reference to.", "To listen or give attention to."], "cite": ["To refer briefly to; to make reference to.", "A short note recognizing a source of information or of a quoted passage."], "draw in": ["To draw by a physical force causing or tending to cause to approach, adhere, or unite."], "emphasize": ["To stress, single out as important."], "emphasise": ["To stress, single out as important."], "punctuate": ["To stress, single out as important."], "tenseness": ["Difficulty that causes worry or emotional tension."], "hem in": ["To beset or surround with armed forces, for the purpose of compelling to surrender."], "waiting line": ["Waiting line."], "line up": ["To arrange in a straight line.", "To form a queue or a line; to stand in line."], "queue up": ["To form a queue or a line; to stand in line."], "play along": ["To perform an accompanying part or parts in a composition."], "attach to": ["To be present or associated with an event or entity (e.g. a dish or a disease)."], "come with": ["To be present or associated with an event or entity (e.g. a dish or a disease)."], "go with": ["To be present or associated with an event or entity (e.g. a dish or a disease)."], "bring together": ["To cause to become joined or linked."], "gratify": ["To give pleasure to; to make happy or satisfied."], "friction match": ["A stick with inflammable substance on one end that can be set on fire by friction."], "posting": ["A sign posted in a public place as an advertisement."], "hasten": ["To move or do something at a fast pace.", "To move fast."], "look sharp": ["To move or do something at a fast pace."], "festinate": ["To move or do something at a fast pace."], "hotfoot": ["To move fast."], "rush along": ["To move fast."], "step on it": ["To move fast."], "deferred payment": ["The financial facility or system by which goods and services are provided in return for deferred, instead of immediate, payment."], "acknowledgment": ["A short note recognizing a source of information or of a quoted passage."], "give care": ["To provide care for."], "roll up": ["To get or gather together."], "hoard": ["To get or gather together."], "impeach": ["To lay a charge against; bring an accusation against."], "incriminate": ["To lay a charge against; bring an accusation against."], "criminate": ["To lay a charge against; bring an accusation against."], "larn": ["To acquire, or attempt to acquire knowledge or an ability to do something."], "sharpen": ["To make sharp or sharper.", "To make crisp or more crisp and precise.", "To put (an image) into focus.", "To become sharp or sharper."], "focalize": ["To put (an image) into focus."], "focalise": ["To put (an image) into focus."], "aline": ["To arrange in a straight line."], "thicken": ["To make thick or thicker.", "To become thick or thicker."], "inspissate": ["To make thick or thicker.", "To become thick or thicker."], "take aim": ["To point or cause to go (blows, weapons, or objects such as photographic equipment) towards"], "intent": ["An anticipated outcome that is intended to obtain or that guides your planned actions."], "intention": ["An anticipated outcome that is intended to obtain or that guides your planned actions."], "signalize": ["To call attention on a person or thing carefully and clearly."], "signalise": ["To call attention on a person or thing carefully and clearly."], "call attention": ["To call attention on a person or thing carefully and clearly."], "sweeten": ["To make sweeter in taste.", "To make sweeter, more pleasant, or more agreeable."], "dulcify": ["To make sweeter in taste."], "edulcorate": ["To make sweeter in taste."], "dulcorate": ["To make sweeter in taste."], "aggrieve": ["To cause to feel sorrow."], "domesticate": ["To make obedient, docile and tractable; to train to follow orders of the owner. \u2003"], "domesticize": ["To make obedient, docile and tractable; to train to follow orders of the owner. \u2003"], "domesticise": ["To make obedient, docile and tractable; to train to follow orders of the owner. \u2003"], "reclaim": ["To make obedient, docile and tractable; to train to follow orders of the owner. \u2003", "To claim back."], "tone down": ["To make less strong or intense; soften."], "dope off": ["To go to sleep; to change from waking state to sleeping state."], "flake out": ["To go to sleep; to change from waking state to sleeping state."], "drift off": ["To go to sleep; to change from waking state to sleeping state."], "nod off": ["To go to sleep; to change from waking state to sleeping state."], "drop off": ["To go to sleep; to change from waking state to sleeping state."], "doze off": ["To go to sleep; to change from waking state to sleeping state."], "actualise": ["To make real or concrete; give reality or substance to."], "actualize": ["To make real or concrete; give reality or substance to."], "orchidometer": ["A medical instrument used to measure the volume of the testicles."], "orchiometer": ["A medical instrument used to measure the volume of the testicles."], "VirtualBox": ["A virtualization software package for x86 and AMD64/Intel64-based computers."], "burden": ["To load or burden; encumber."], "class diagram": ["A type of static structure diagram that describes the structure of a system by showing the system's classes, their attributes, operations (or methods), and the relationships among objects."], "activity diagram": ["A graphical representation of workflows of stepwise activities and actions with support for choice, iteration and concurrency."], "use case diagram": ["A representation of a user's interaction with the system and depicting the specifications of a use case. It can portray the different types of users of a system and the various ways that they interact with the system."], "state diagram": ["A type of diagram used to describe the behavior of systems which require that the system described is composed of a finite number of states."], "object diagram": ["A diagram that shows a complete or partial view of the structure of a modeled system at a specific time."], "go for": ["To give an affirmative reply to; respond favorably to."], "live with": ["To tolerate or accommodate oneself to."], "let in": ["To allow participation in or the right to be part of; permit to exercise the rights, functions, and responsibilities of."], "countenance": ["To consent to, to give permission."], "take into account": ["To allow or plan for a certain possibility; concede the truth or validity of something.", "To incorporate in a price for which one asks."], "subject matter": ["What a communication contains word by word."], "draw near": ["To come near to; to move towards."], "draw close": ["To come near to; to move towards."], "go up": ["To come near to; to move towards."], "border on": ["To come near or verge on, resemble, come nearer in quality, or character."], "go about": ["To begin to deal with, e.g., a task, a problem, etc."], "be ashamed": ["To have or feel shame."], "crime novel": ["A novel in which a crime is committed and the focus of the characters is on solving the mystery of the crime."], "crime story": ["A novel in which a crime is committed and the focus of the characters is on solving the mystery of the crime."], "crime thriller": ["A novel in which a crime is committed and the focus of the characters is on solving the mystery of the crime."], "pay heed": ["To listen or give attention to."], "give ear": ["To listen or give attention to."], "go to": ["To go to or be present at (e.g. meetings, church services, university, etc.)."], "batch": ["A great number or large amount of things not placed in a pile."], "good deal": ["A great number or large amount of things not placed in a pile."], "great deal": ["A great number or large amount of things not placed in a pile."], "hatful": ["A great number or large amount of things not placed in a pile."], "conform to": ["To satisfy a condition or restriction."], "fit out": ["To furnish with whatever is needed for use or for any undertaking."], "outfit": ["To furnish with whatever is needed for use or for any undertaking."], "follow through": ["To bring something to fulfilment."], "follow up": ["To bring something to fulfilment."], "follow out": ["To bring something to fulfilment."], "put through": ["To bring something to fulfilment."], "carry through": ["To rescue from danger, harm, or an injury that could be sustained; to bring into safety.", "To satisfy, carry out, bring to completion (an obligation, a requirement, etc.)."], "cleave": ["To come or be in close contact with; to stick or hold together and resist separation."], "cohere": ["To come or be in close contact with; to stick or hold together and resist separation."], "hold fast": ["To stick to firmly."], "prescribe": ["To advise and authorise a patient to get and take a certain medicine and/or treatment."], "servant": ["A person performing duties for others. For example a person employed in a household which cares about the domestic duties."], "traveller": ["A person who travels may it be for holiday, business etc."], "sailor": ["A person working on a ship making sure it reaches its destination."], "trader": ["A person working in commerce, selling and buying goods."], "concierge": ["A hotel employee who assists guests."], "parents": ["Father and mother of a child."], "darling": ["Greatly loved.", "Affectionate expression used to address a beloved person."], "claimant": ["A person which during a lawsuit makes a claim."], "crucifer": ["A plant of the family Brassicaceae, whose flower have the shape of a cross."], "cruciferous": ["Whose flowers have four petals arranged like the arms of a cross.", "Bearing a cross."], "irony": ["Made out of iron.", "A form of humor by which a statement intentionally expresses the contrary to what he intends to express.", "A dissimulation or ignorance feigned for the purpose of confounding or provoking an antagonist.", "Resembling iron taste, hardness, or other physical property."], "Socratic irony": ["A dissimulation or ignorance feigned for the purpose of confounding or provoking an antagonist."], "bona fide": ["Without fraud or deceit."], "in good faith": ["Without fraud or deceit."], "cheaply": ["In a cheap manner; without expending much money."], "expensively": ["In an expensive manner."], "askew": ["Away from the expected or proper direction.", "In an oblique manner."], "tentacular": ["Of or pertaining to a tentacle.", "Resembling a tentacle."], "moan": ["A low, mournful cry of pain, sorrow or pleasure."], "awesome": ["Causing wonder, admiration or astonishment."], "fantastic": ["Causing wonder, admiration or astonishment."], "neb": ["External anatomical structure of birds which is used for taking food and for eating."], "object oriented programming": ["A programming paradigm that uses \"objects\" and their interactions to design applications and computer programs."], "OOP": ["A programming paradigm that uses \"objects\" and their interactions to design applications and computer programs."], "architectural plan": ["Scale drawing of a structure or its parts."], "be after": ["To have the intention to carry out some action."], "come-on": ["Qualities that attract by seeming to promise some kind of reward."], "tempt": ["To dispose or incline or entice to; to be attractive by arousing hope or desire.", "To attract or provoke someone to do something through (often false or exaggerated) promises or persuasion."], "set apart": ["To select something or someone for a specific purpose."], "designate": ["To give something to (a person), or assign a task to (a person)."], "impute": ["To credit something to.", "To attribute or credit to."], "get angry": ["To feel intense anger."], "ramp": ["To act or speak violently, as if in state of a great anger."], "idolise": ["To love unquestioningly and uncritically or to excess; to treat or pursue with devotion or adoration."], "idolize": ["To love unquestioningly and uncritically or to excess; to treat or pursue with devotion or adoration."], "revere": ["To love unquestioningly and uncritically or to excess; to treat or pursue with devotion or adoration.", "To regard with feelings of respect and reverence."], "fancify": ["To make more beautiful."], "grace": ["To make more attractive by adding ornament, colour, etc.", "To be beautiful to look at."], "espouse": ["To choose and follow; as of theories, ideas, policies, strategies or plans."], "chuck": ["To regurgitate the contents of the stomach."], "regurgitate": ["To regurgitate the contents of the stomach."], "disgorge": ["To regurgitate the contents of the stomach."], "savanna": ["A large open grassland in tropical and subtropical regions."], "aurora borealis": ["A natural light display in the sky particularly in the Arctic regions."], "northern lights": ["A natural light display in the sky particularly in the Arctic regions."], "arctic lights": ["A natural light display in the sky particularly in the Arctic regions."], "loam": ["A rich soil consisting of a mixture of sand and clay and decaying organic materials."], "he/she/it": ["Third person singular pronoun, regardless of gender/sex."], "herdsman": ["A man who looks after a herd of animals."], "he-goat": ["A male goat."], "fowl": ["A bird that is kept for its meat and eggs."], "dribble": ["To let saliva flow out of one\u2019s mouth onto one\u2019s chin."], "cooked": ["Contrasting with 'raw'."], "jug": ["A container for holding and pouring liquids with a handle and a spout."], "saucer": ["A small dish for placing a cup."], "tongs": ["A tool that consists of two movable bars joined at one end, used to pick up an object."], "dough": ["A mixture of flour and water ready to be baked into bread, pastry etc."], "knead": ["To press a dough many times with one's hands."], "ayahuasca": ["A psychoactive infusion prepared from the Banisteriopsis spp."], "spindle": ["A stick used in spinning fiber into thread."], "awl": ["Pointed tool for marking or piercing wood or leather."], "take down": ["To make a person morally inferior."], "doctor up": ["To alter or make obscure, as with the intention to deceive."], "sophisticate": ["To alter or make obscure, as with the intention to deceive."], "aerate": ["To expose to fresh air."], "give vent": ["To give expression or utterance to."], "thatch": ["Natural roofing material such as straw, reeds, leaves, etc."], "ridgepole": ["The highest horizontal beam in a roof."], "post": ["A strong upright piece of wood, metal etc. that is fixed into the ground, especially to support something.", "To affix in a public place or for public notice.", "To make public with, or as if with, a poster.", "To enter (e.g. a message) on a public list.", "To place so as to be noticed.", "An online posting."], "paddy": ["Wet land in which rice is grown."], "plow": ["To use a plough on to prepare for planting."], "hoe": ["A tool with handle and blade with two or more prongs used for weeding, raking, etc."], "thresh": ["To separate the grain from the straw or husks by beating."], "transfix": ["To render motionless, as with a fixed stare or by arousing fear."], "spellbind": ["To render motionless, as with a fixed stare or by arousing fear."], "enamour": ["To attract, arouse and hold attention and interest, as by charm or beauty."], "trance": ["To attract, arouse and hold attention and interest, as by charm or beauty."], "becharm": ["To attract, arouse and hold attention and interest, as by charm or beauty."], "enamor": ["To attract, arouse and hold attention and interest, as by charm or beauty."], "captivate": ["To attract, arouse and hold attention and interest, as by charm or beauty."], "enthrall": ["To delight to a high degree; to hold spellbound."], "enthral": ["To delight to a high degree; to hold spellbound."], "wear down": ["To become tired through overuse or great strain or stress."], "outwear": ["To become tired through overuse or great strain or stress."], "wear out": ["To become tired through overuse or great strain or stress."], "wear upon": ["To become tired through overuse or great strain or stress."], "tire out": ["To become tired through overuse or great strain or stress."], "fag out": ["To become tired through overuse or great strain or stress."], "posit": ["To put before."], "laud": ["To praise, glorify, or honor (e.g. a virtue)."], "extol": ["To praise, glorify, or honor (e.g. a virtue)."], "schema": ["A schematic or preliminary plan."], "draft": ["The act of pulling something along a surface using motive power.", "A preliminary sketch of a picture or document.", "A preliminary version of a written work.", "To draw up an outline or sketch for something."], "rough drawing": ["A preliminary sketch of a picture or document."], "draft copy": ["A preliminary version of a written work."], "adumbrate": ["To bring information in fewer words; to describe roughly or briefly."], "delineate": ["To trace the shape of."], "limn": ["To trace the shape of."], "tantalise": ["To harass with persistent criticism or carping."], "tantalize": ["To harass with persistent criticism or carping."], "razz": ["To harass with persistent criticism or carping."], "asseverate": ["To say definitely and categorically."], "teasing": ["The act of harassing someone playfully or maliciously."], "ribbing": ["The act of harassing someone playfully or maliciously."], "tantalization": ["The act of harassing someone playfully or maliciously."], "catch on": ["To become popular."], "instal": ["To place."], "lay down": ["To institute or enact (e.g. laws)."], "manufacturing plant": ["An establishment where products are manufactured using industrial methods."], "manufactory": ["An establishment where products are manufactured using industrial methods."], "engraft": ["To fix or set securely or deeply."], "imbed": ["To fix or set securely or deeply."], "come through": ["To attain a desired goal."], "come after": ["To be the successor of."], "gimmick": ["A drawback or difficulty that is not readily apparent."], "catch up with": ["To catch up with and possibly overtake (e.g. cars in a race)."], "sequester": ["To take possession of by force or authority."], "arrogate": ["Seize and take control without authority and possibly with force."], "slice up": ["To cut something into slices."], "flaunt": ["The act of displaying something ostentatiously.", "To display or act proudly, ostentatiously or pretentiously."], "ostentate": ["To display or act proudly, ostentatiously or pretentiously."], "swank": ["To display or act proudly, ostentatiously or pretentiously."], "ostentation": ["A gaudy and proud outward display."], "fanfare": ["A gaudy and proud outward display."], "grow fond of": ["To feel affection, tenderness and good for someone or something."], "become attached": ["To feel affection, tenderness and good for someone or something."], "get attached": ["To feel affection, tenderness and good for someone or something."], "mold": ["To create something, usually for a specific function."], "digital analytics": ["The analysis of qualitative and quantitative data from your website and the competition, to drive a continual improvement of the online experience that your customers, and potential customers have, which translates into your desired outcomes (online and offline). [Avinash Kaushik]"], "an\u00e1lisis web": ["The analysis of qualitative and quantitative data from your website and the competition, to drive a continual improvement of the online experience that your customers, and potential customers have, which translates into your desired outcomes (online and offline). [Avinash Kaushik]"], "glaring": ["Extremely bright."], "fulgent": ["Extremely bright."], "glary": ["Extremely bright."], "motor": ["To travel or be transported in a vehicle."], "straw": ["A thin tube used to suck liquids from a container into the mouth of the drinker.", "Dried stalks of a cereal plant."], "drinking straw": ["A thin tube used to suck liquids from a container into the mouth of the drinker."], "adze": ["A sharp tool with the blade at a right angle to the handle, used to shape pieces of wood"], "rug": ["A piece of thick cloth or wool that is smaller than a carpet and is put on the floor as decoration"], "netbag": ["Bag made of net used to carry things."], "tumpline": ["A strap slung over the forehead or chest used (especially by native Americans) for carrying packs or loads"], "whetstone": ["A flat stone used for sharpening edged tools or knives."], "crouch": ["To lower one's body close to the ground by bending one's knees completely.", "To bend one's back forward."], "come down": ["To go from a higher to a lower place.", "To move downward and lower (e.g. of temperature values or falling objects)."], "crooked": ["Opposite of straight"], "contrast material": ["A substance used in medical imaging to enhance the contrast of structures or fluids within the body."], "crosscut": ["A route shorter than the usual one."], "cutoff": ["A route shorter than the usual one."], "settling": ["The sudden sinking or gradual downward settling of the Earth's surface with little or no horizontal motion. The movement is not restricted in rate, magnitude, or area involved. Subsidence may be caused by natural geologic processes, such as solution, thawing, compaction, slow crustal warping, or withdrawal of fluid lava from beneath a solid crust; or by man's activity, such as subsurface mining or the pumping of oil or ground water."], "subsiding": ["The sudden sinking or gradual downward settling of the Earth's surface with little or no horizontal motion. The movement is not restricted in rate, magnitude, or area involved. Subsidence may be caused by natural geologic processes, such as solution, thawing, compaction, slow crustal warping, or withdrawal of fluid lava from beneath a solid crust; or by man's activity, such as subsurface mining or the pumping of oil or ground water."], "accolade": ["A tangible symbol signifying approval or distinction."], "honor": ["A tangible symbol signifying approval or distinction.", "To show respect towards."], "honour": ["A tangible symbol signifying approval or distinction.", "To show respect towards."], "laurels": ["A tangible symbol signifying approval or distinction."], "karstic": ["Relating to karst."], "karstology": ["The study of karst formations."], "karstologist": ["A person who studies karst formations."], "karstological": ["Relating to karstology."], "workaholic": ["A person who is addicted to work.", "(For a person) Addicted to work."], "workaholism": ["The addiction to work."], "ergomania": ["The addiction to work."], "fittingness": ["The quality of being suitable."], "elbow grease": ["The use of forces and means higher than normal in order to achieve a given purpose."], "knowledgeable": ["Knowledgeable through having read extensively."], "well-educated": ["Knowledgeable through having read extensively."], "lettered": ["Knowledgeable through having read extensively."], "awarding": ["The formal acceptance of a supplier's bid or proposal by a government agency. Following such acceptance, the agency usually issues a purchase order to the vendor reflecting the award.\\n(source: OAS)"], "shriek": ["To make a very high, loud sound."], "chieftain": ["The leader/ruler of a tribe/clan"], "clan": ["Extended family."], "morbillivirus": ["A virus of the genus Morbillivirus."], "morbilliviral": ["Relating to morbilliviruses."], "ocean quahog": ["A clam of the species Arctica islandica."], "Icelandic cyprine": ["A clam of the species Arctica islandica."], "mahogany clam": ["A clam of the species Arctica islandica."], "mahogany quahog": ["A clam of the species Arctica islandica."], "black quahog": ["A clam of the species Arctica islandica."], "black clam": ["A clam of the species Arctica islandica."], "earmark": ["To assign a resource to a particular person or cause."], "set aside": ["To assign a resource to a particular person or cause."], "belly-up": ["Having insufficient assets to cover one's debts.", "Without money."], "to be soft in the head": ["to be soft in the head"], "hieromancy": ["Divination by observing objects offered in sacrifice."], "necromancy": ["A form of magic involving communication with the deceased for the purpose of divination."], "nuclear holocaust": ["The potential annihilation of human civilization by nuclear warfare."], "intrust": ["To confer a trust upon."], "play false": ["To confuse completely by concealing one's true motives from, especially by elaborately feigning good intentions so as to gain an end."], "hoodwink": ["To confuse completely by concealing one's true motives from, especially by elaborately feigning good intentions so as to gain an end."], "lead by the nose": ["To confuse completely by concealing one's true motives from, especially by elaborately feigning good intentions so as to gain an end."], "approaching": ["The act of drawing spatially closer to something."], "accostamento": ["The act of drawing spatially closer to something."], "come near": ["To come near in time."], "spoilt": ["Having changed its colour, smell or composition (partially or completely), due to being attacked and decomposed by microorganisms (relating to organic matter); damaged by decay."], "spoiled": ["Having changed its colour, smell or composition (partially or completely), due to being attacked and decomposed by microorganisms (relating to organic matter); damaged by decay."], "urge": ["To push for something.", "To force or impel in a given direction.", "To spur on or encourage especially by cheers and shouts.", "An instinctive motive.", "A strong restless desire."], "recommend": ["To push for something.", "To express a good opinion of.", "To make interesting, attractive or acceptable."], "urge on": ["To force or impel in a given direction.", "To spur on or encourage especially by cheers and shouts."], "root on": ["To spur on or encourage especially by cheers and shouts."], "barrack": ["To spur on or encourage especially by cheers and shouts."], "pep up": ["To spur on or encourage especially by cheers and shouts."], "dramatize": ["To put into dramatic form."], "dramatise": ["To put into dramatic form."], "come out": ["To come out of (e.g. water)."], "come forth": ["To come out of (e.g. water)."], "hire": ["To hold under a lease or rental agreement of goods and services."], "smite": ["To cause physical pain; to infect with a contagious disease."], "herd": ["To cause to herd, drive, or crowd together.", "A number of domestic animals assembled together under the watch or ownership of a keeper.", "Any collection of animals gathered or travelling in company.", "To keep, move, or drive animals."], "crowd together": ["To gather together in large numbers."], "fall off": ["To fall heavily or suddenly; decline markedly."], "slump": ["To fall heavily or suddenly; decline markedly."], "rid": ["To relieve from."], "disembarass": ["To relieve from."], "exempt": ["To grant relief or an exemption from a rule or requirement to."], "make easy": ["To make easy or easier."], "overcharge": ["To ask an unreasonable price."], "surcharge": ["To ask an unreasonable price."], "soak": ["To ask an unreasonable price."], "crochet": ["To make a piece of needlework."], "recess": ["To delay or put off an event or an appointment."], "go around": ["To avoid something unpleasant or laborious.", "To become widely known and passed on."], "short-circuit": ["To cause a short circuit.", "To avoid something unpleasant or laborious."], "get around": ["To avoid something unpleasant or laborious."], "set on": ["To attack someone physically or emotionally."], "parcel out": ["To divide something into portions and dispense it."], "circularize": ["To cause to become widely known."], "circularise": ["To cause to become widely known."], "propagate": ["To cause to become widely known."], "pass around": ["To divide or distribute something in an even way."], "distribuite": ["To divide or distribute something in an even way."], "spreading": ["The process or result of diffusion, dispersal, expansion, extension, etc."], "overspread": ["To spread across or over (e.g. of liquid spots)."], "fan out": ["To move outward (e.g. soldiers)."], "manhandle": ["To handle roughly or badly."], "cede": ["To relinquish possession or control of to another because of demand or compulsion."], "piledriver": ["Wrestling move in which the wrestler grabs his opponent, turns him upside-down, and drops into a sitting or kneeling position, driving the opponent head into the mat."], "backbreaker": ["A professional wrestling move in which a wrestler drops an opponent so that the opponent's back impacts or is bent backwards against the wrestler's knee."], "camel clutch": ["A professional wrestling move in which the wrestler sits on the back of his opponent and places the arm or both arms of the opponent on his thighs."], "overtop": ["To look down on."], "beat up": ["To give a beating to; subject to a punishment or an act of aggression."], "work over": ["To give a beating to; subject to a punishment or an act of aggression."], "rhythm": ["Speed degree during a certain part of a song rhythm."], "musical rhythm": ["Speed degree during a certain part of a song rhythm."], "split up": ["To divide fully or partly along a more or less straight line."], "roseola": ["An area of reddened, irritated, and inflamed skin."], "skin rash": ["An area of reddened, irritated, and inflamed skin."], "fault tolerance": ["The property that enables a system (often computer-based) to continue operating properly in the event of the failure of some of its components."], "boost": ["To help to advance (in terms of knowledge).", "The act of encouraging."], "commercial enterprise": ["Commercial, industrial or financial activity."], "business enterprise": ["Commercial, industrial or financial activity."], "head covering": ["A head covering."], "ingurgitate": ["To eat by swallowing large bits of food with little or no chewing."], "overindulge": ["To eat by swallowing large bits of food with little or no chewing."], "glut": ["To eat by swallowing large bits of food with little or no chewing."], "overgorge": ["To eat by swallowing large bits of food with little or no chewing."], "engorge": ["To eat by swallowing large bits of food with little or no chewing."], "restructure": ["To construct, restore or form anew."], "fag": ["Offensive term for an openly, often effeminate, homosexual man."], "fagot": ["Offensive term for an openly, often effeminate, homosexual man."], "torque wrench": ["A tool used to precisely apply a specific torque to a fastener such as a nut or bolt."], "grandparents": ["The parents of someone's parent."], "parents-in-law": ["Mother-in-law and father-in-law."], "hawk": ["A predatory bird of the family Accipitridae."], "toucan": ["A bird with a large colorful beak, living in the tropics and belonging to the family Ramphastidae."], "opossum": ["A mammal being a member of the family Didelphidae."], "head louse": ["A parasitic insect which lives among the hairs on the head of a human and feeds on blood."], "body louse": ["A parasitic insect that infests the body and clothes of humans and feeds on blood."], "tapir": ["Any one the species of large odd-toed ungulates of the family Tapiridae with a long prehensile upper lip."], "agouti": ["A rodent similar in appearance to a guinea pig but having longer legs."], "bandicoot": ["Small, ratlike marsupial, of the family Peramelidae with a distinctive long snout."], "barn owl": ["An owl commonly found in barns and other farm buildings; often having a white face."], "bustard": ["Any one of several large terrestrial birds of the family Otididae that inhabit dry open country and steppes in the eastern hemisphere."], "capibara": ["The largest living rodent native to South America, living partly on land and partly in water."], "condor": ["Either of two vultures, Vultur gryphus of the Andes or Gymnogyps californianus, a nearly extinct vulture of the mountains of California."], "hocco": ["A bird, the crested curassow or royal pheasant."], "ibis": ["Any of various long-legged wading birds with long downcurved bills used to probe the mud for prey; belonging to the family Threskiornithidae."], "jabiru": ["A species of bird Jabiru mycteria in the monotypic genus Jabiru, of the stork family Ciconiidae, endemic to the Americas."], "Zazaish": ["An Indo-Iranian language spoken in eastern Turkey."], "paca": ["A large rodent, with dark brown or black fur, a white or yellowish underbelly and rows of white spots along its sides, native to Central America and South America."], "piranha": ["Any of the carnivorous freshwater fish living in South American rivers and belonging to the subfamily Serrasalminae."], "plover": ["Any of various wading birds of the family Charadriidae."], "roadrunner": ["Either of two species of bird in the genus Geococcyx of the cuckoo family, native to North and Central America. They are fast runners."], "trumpeter bird": ["The largest North American swan, Cygnus buccinator; they have white plumage with a long neck, a short black bill."], "footprint": ["The impression of the foot in a soft substance such as sand or snow."], "lame": ["Unable to walk properly because of a problem with one's feet or legs.", "Moving with pain or difficulty on account of injury, defect or temporary obstruction of a function."], "fig": ["The fruit of the fig tree, pear-shaped and containing many small seeds."], "grease": ["Animal fat in a melted or soft state; a semisolid lubricant."], "fig tree": ["A fruit-bearing tree or shrub of the genus Ficus that is native mainly to the tropics."], "biscuit": ["A cookie or cracker. A small bread usually made with baking soda."], "cassava flour": ["Flour made of the cassava plant or root."], "mochi": ["A Japanese rice cake made from glutinous rice."], "rice ball": ["A Japanese snack food made from white rice formed into a triangular or oval shape, usually with a filling."], "musubi": ["A food made of a food such as meat tied to a block of rice with nori, differing from sushi in that the rice is not vinegared."], "tamale": ["Mexican dish of cornmeal dough shell filled with various ingredients (e.g. chopped beef, pork, sweet filling) then steamed in corn husks."], "felt": ["A cloth or stuff made of matted fibres of wool, or wool and fur, fulled or wrought into a compact substance by rolling and pressure, with lees or size, without spinning or weaving. \u2003"], "poncho": ["A simple garment, made from a rectangle of cloth, with a slit in the middle for the head. \u2003"], "grass skirt": ["A skirt made from long dried grass, or synthetic material resembling it."], "shoemaker": ["A person whose profession is making and repairing footwear."], "headband": ["A strip of fabric worn around the head or a hair-accessory, made of a flexible material and curved like a horseshoe, for holding one's hair back."], "headdress": ["A decorative covering or ornament worn on the head."], "plait": ["A flat fold; a doubling, as of cloth; a pleat.", "A braid, as of hair or straw; a plat.", "To make by braiding or interlacing."], "fringe": ["A decorative border."], "cookhouse": ["A small house where cooking takes place; a kitchen house."], "meetinghouse": ["A building where people meet for a purpose."], "padlock": ["A detachable lock that can be used to secure something by means of a sliding or hinged shackle"], "griddle": ["A flat plate of metal used for cooking."], "mosquito net": ["A fine net placed around a bed to protect the occupant against mosquitos and the diseases carried by them"], "roof tile": ["A ridge or roofing tile, a tile for the ridge of a roof."], "silvereye": ["A very small omnivorous passerine bird of the south-west pacific."], "wax-eye": ["A very small omnivorous passerine bird of the south-west pacific."], "Sutsilvan": ["A Romansh language spoken in the Hinterrhein District of Grisons near the upper Rhine."], "Vallader": ["A group of Romansh dialects spoken in the Lower Engadine valley and the Val M\u00fcstair of Grisons."], "Surmiran": ["A group of Romansh dialects spoken in the Julia and Albula valleys of Grisons, including Surses and Sutses."], "Put\u00e9r": ["A group of Romansh dialects spoken in the Upper Engadine valley of Grisons, and in the municipality Berg\u00fcn/Bravuogn."], "Puter": ["A group of Romansh dialects spoken in the Upper Engadine valley of Grisons, and in the municipality Berg\u00fcn/Bravuogn."], "Jauer": ["A dialect of the Vallader dialect of Romansh spoken in the Val M\u00fcstair of Grisons."], "Rumantsch Grischun": ["The pan-regional variety of the Rumansh languages, artificially designed by the linguist Heinrich Schmid on behalf of the secretary of the Lia Rumantscha which should be as equally acceptable as possible to speakers of the different idioms of Rumansch in Grisons."], "common chicory": ["A plant of the species Cichorium intybus whose leaves are used in salads and whose root is roasted, ground and mixed with coffee."], "Belgian endive": ["A cultivated chicory (Cichorium intybus convar. foliosum) having cream-coloured, bitter leaves."], "pitchfork": ["An agricultural tool comprising a fork attached to a long handle used for pitching hay or bales of hay high up onto a haystack."], "rake": ["A garden tool with a row of pointed teeth fixed to a long handle, used for collecting grass or debris, or for loosening soil."], "yamstick": ["A rod shaped implement used by the aboriginal people of Australia to dig yam and as a combat weapon."], "digging stick": ["A rod shaped implement used by the aboriginal people of Australia to dig yam and as a combat weapon."], "lasso": ["A long rope with a sliding loop on one end, generally used in ranching to catch cattle and horses."], "sickle": ["An implement, having a semicircular blade and short handle, used for cutting long grass and cereal crops in agriculture."], "hay": ["Grass or cut and dried for use as animal fodder."], "tree trunk": ["The main structural member of a tree."], "sap": ["The juice of plants of any kind, especially the ascending and descending juices or circulating fluid essential to nutrition."], "banyan": ["A tropical Indian fig tree, Ficus benghalensis, that has many aerial roots."], "sorghum": ["A cereal, Sorghum vulgare or Sorghum bicolor, the grains of which are used to make flour and as cattle feed."], "fish poison": ["in Amazonia, a kind of root is apparently used as fish poison"], "amomum": ["Any of several spices of family Zingiberaceae, including cardamom."], "anatto": ["A derivative of the achiote trees of tropical regions of the Americas used as a red food coloring and as a flavoring."], "bromelia": ["Any of various tropical or subtropical New World herbaceous plants in the family Bromeliaceae."], "creeper": ["Any plant (as ivy or periwinkle) that grows by creeping; especially a climbing plant of the genus Parthenocissus."], "guava": ["A tropical tree or shrub of the myrtle family, Psidium guava; or its yellowish tropical fruit, 1\u00bc to 2 inches, globular or pear-shaped with thin, yellow, green or brown skin, is often made into jams and jellies. The meat is yellowish or pale green to pink in color."], "liana": ["A climbing woody vine, usually tropical."], "lima bean": ["The butter bean, Phaseolus lunatus."], "lupin": ["The common name for members of the genus Lupinus in the family Fabaceae."], "rubber tree": ["A tropical South American tree, Hevea brasiliensis, that is the source of latex."], "taro": ["Colocasia esculenta, raised as a food primarily for its corm, which distantly resembles potato."], "vetch": ["Any of several leguminous plants, of the genus Vicia, often grown as green manure and for their edible seeds."], "untie": ["To loosen, as something interlaced or knotted; to disengage the parts of. To unbind, to free from restraint"], "cut down": ["To bring down by cutting.", "To cut down on; to make a reduction in (especially costs, jobs, e.g. with financial and administrative acts).", "To knock somebody or cut something down, e.g. a tree."], "shears": ["A tool consisting of two blades with bevel edges, connected by a pivot, used for cutting cloth, or for removing the fleece from sheep etc"], "hang up": ["To put up to hang"], "tinplate": ["A thin sheet of steel coated with tin to prevent rusting; used to make cans etc."], "potter": ["One who makes pots and other ceramic wares."], "peg": ["A cylindrical wooden, metal etc. object used to fasten or as a bearing between objects.", "A rod used to fasten two overlapping parts."], "basketry": ["The process of weaving unspun vegetable fibers to make a basket."], "sack": ["A flexible container made of cloth, paper, plastic, leather, etc., to put something in or to carry away."], "scraper": ["An instrument with which anything is scraped."], "trail": ["A route for travel over land, especially a narrow, unpaved pathway for use by hikers, horseback riders, etc."], "dwell": ["To live; to reside; to remain or continue."], "smear": ["To spread (a substance) across a surface by rubbing."], "drip": ["To fall one drop at a time."], "splash": ["The sound made by an object hitting a liquid.", "To cause (a liquid) to spatter about, especially with force."], "limp": ["To walk lamely, as if favouring one leg."], "come back": ["To go there where one was before."], "sledge": ["A low sled drawn by animals, typically on snow, ice or grass."], "dip": ["To immerse oneself; to become plunged in a liquid; to sink, to loewe, to decrease"], "owe": ["To be bound to give or recognize something.", "To be under an obligation to give something back to someone or to perform some action for someone; to have debt."], "pointed": ["Sharp, barbed; not dull."], "Chinese New Year": ["An annual Chinese holiday, marking the beginning of the lunar year"], "long ago": ["At a time in the past, especially the distant past."], "sniff": ["To inhale; to make a short, audible inhalation, through the nose, as if to smell something."], "fragrant": ["Sweet-smelling; having a pleasant (usually strong) scent or fragrance."], "loud": ["A sound of great intensity; noisy."], "pinch": ["To squeeze a small amount of a person's skin and flesh between the fingers, making it hurt."], "wrinkled": ["Uneven, with many furrows and prominent points, often in reference to the skin or hide of animals."], "look forward": ["To anticipate or expect; especially, to expect something to be pleasant."], "worse": ["Comparative form of bad: more bad."], "upper case": ["Collective term for the capital letters."], "capital letter": ["An upper-case letter, used for emphasis, for starting sentences and proper names, etc."], "govern": ["To make and administer the public policy and affairs of; to exercise sovereign authority over (nations)."], "freeman": ["A free man, one who is not a serf or slave."], "battle-axe": ["An ancient military weapon."], "sling": ["An instrument for throwing stones or other missiles, consisting of a short strap with two strings fastened to its ends, or with a string fastened to one end and a light stick to the other."], "fishnet": ["A net used to catch fish."], "fish trap": ["A contraption made of wires, rods, fishing-net or other suitable materials with the purpose of catching fish alive."], "cutlass": ["A short sword with a curved blade, and a convex edge; once used by sailors when boarding an enemy ship."], "warship": ["Any ship built or armed for naval combat."], "punishment": ["The act or process of punishing, imposing and/or applying a sanction; a penalty to punish wrongdoing, especially for crime.", "An undesired condition imposed by an authority for one's unacceptable behavior.", "The act of imposing an undesirable condition on a person or group for an unacceptable behav\u0131or.", "A treatment or experience so harsh it feels like being punished."], "verdict": ["A decision on an issue of fact in a civil or criminal case or an inquest."], "circumcision": ["The act of excising or amputating the prepuce (the foreskin on penises, the clitoral hood on clitorises)"], "initiation": ["A formal entry into an organization or position or office.", "A means or measure or an action taken in preparation of.", "The initial section; a foreword; a preface; a lead-in; a kind of beginning before something really starts, etc."], "shaman": ["A traditional (prescientific) faith healer; a member of certain tribal societies who acts as a religious medium between the concrete and spirit worlds."], "pill": ["A small, usually cylindrical object designed for easy swallowing, usually containing some sort of medication."], "birth certificate": ["official document certifying the details of a person's birth. Name, date, and parents' names are always included; details such as parents' occupation and religion may be included. \u2003"], "pierce": ["to puncture; to break through"], "uncover": ["To uncover; to show and display that which was hidden."], "plantain": ["A plant of the genus Plantago, with a rosette of sessile leaves about 10 cm long with a narrow part instead of a petiole, and with a spike inflorescence with the flower spacing varying widely among the species."], "Rhinelandic": ["The regional variety of German spoken in the Rhineland in Germany, which is approximately the former Prussian Rhine Province, or the West half of todays federal state North Rhine-Westphalia plus the North half of todays federal state Rhinland-Palatinate. It is both related to modern Standard German, and the various rather diverse hereditary local languages, and a the same time clearly distinct from either."], "Rhineland Regiolect": ["The regional variety of German spoken in the Rhineland in Germany, which is approximately the former Prussian Rhine Province, or the West half of todays federal state North Rhine-Westphalia plus the North half of todays federal state Rhinland-Palatinate. It is both related to modern Standard German, and the various rather diverse hereditary local languages, and a the same time clearly distinct from either."], "Rhinelandic Regiolect": ["The regional variety of German spoken in the Rhineland in Germany, which is approximately the former Prussian Rhine Province, or the West half of todays federal state North Rhine-Westphalia plus the North half of todays federal state Rhinland-Palatinate. It is both related to modern Standard German, and the various rather diverse hereditary local languages, and a the same time clearly distinct from either."], "Rhineland": ["A part of Western Germany along the river Rhine, which is approximately the former Prussian Rhine Province, or the West half of todays federal state North Rhine-Westphalia plus the North half of todays federal state Rhinland-Palatinate."], "thump": ["To strike hard with the hand, fist, or some heavy instrument, usually repeatedly.", "A bang or blow; the sound of of a crash."], "intrude": ["To search or inquire intrusively."], "horn in": ["To search or inquire intrusively."], "pry": ["To search or inquire intrusively."], "jab": ["To poke or thrust abruptly."], "prod": ["To poke or thrust abruptly."], "bond duration": ["The weighted average life of a security."], "continuance": ["The period of time during which something continues."], "cicciobello": ["A popular Italian doll."], "Breyell": ["A town in West Germany near the Dutch border."], "Yeniche of Stotzheim": ["The kind of Yeniche spoken by the traders and travelling repair craftsmen from Stotzheim between Rheinbach and Euskirchen in the West of Germany."], "Yeniche of Speicher": ["A cant spoken by travelling salespeople of Speicher in the Eifel mountain range in West Germany who did not want to be understood by foreigners when they were abroad."], "thieves cant of Stotzheim": ["The secret cant of the professional thieves and betrayers as conveyed in Stotzheim, between Rheinbach and Euskirchen, in the West of Germany."], "Yeniche of Neroth": ["A cant spoken in Neroth in the Vulaneifel district in the Eifel mountain range in the West of Germany."], "Natisone valley dialect of Slovenian": ["The dialect of Slovenian spoken in the Natisone valley."], "Natisone valley dialect": ["The dialect of Slovenian spoken in the Natisone valley."], "Stolvizza dialect of Resian": ["The dialect of Resian spoken in Stolvizza, which has the local name Solbica."], "Solbica dialect of Resian": ["The dialect of Resian spoken in Stolvizza, which has the local name Solbica."], "Stolvizza dialect": ["The dialect of Resian spoken in Stolvizza, which has the local name Solbica."], "Solbica dialect": ["The dialect of Resian spoken in Stolvizza, which has the local name Solbica."], "Oseacco dialect of Resian": ["The dialect of Resian spoken in Oseacco, which has the local name Osoane."], "Osoane dialect of Resian": ["The dialect of Resian spoken in Oseacco, which has the local name Osoane."], "Osoane dialect": ["The dialect of Resian spoken in Oseacco, which has the local name Osoane."], "Oseacco dialect": ["The dialect of Resian spoken in Oseacco, which has the local name Osoane."], "Gniva dialect of Resian": ["The dialect of Resian spoken in Gniva, which has the local name Njiva."], "Njiva dialect of Resian": ["The dialect of Resian spoken in Gniva, which has the local name Njiva."], "Njiva dialect": ["The dialect of Resian spoken in Gniva, which has the local name Njiva."], "Gniva dialect": ["The dialect of Resian spoken in Gniva, which has the local name Njiva."], "Lipovaz dialect of Resian": ["The dialect of Resian spoken in Lipovaz."], "Lipovaz dialect": ["The dialect of Resian spoken in Lipovaz."], "San Giorgio dialect of Resian": ["The dialect of San Giorgio spoken in Gniva, which has the local name Bila."], "San Giorgio dialect": ["The dialect of San Giorgio spoken in Gniva, which has the local name Bila."], "Bila dialect of Resian": ["The dialect of San Giorgio spoken in Gniva, which has the local name Bila."], "Bila dialect": ["The dialect of San Giorgio spoken in Gniva, which has the local name Bila."], "Gniva": ["A place in the Resia valley in North-East Italy close to the Slovenian border."], "San Giorgio": ["A place in the Resia valley in North-East Italy close to the Slovenian border."], "Lipovaz": ["A place in the Resia valley in North-East Italy close to the Slovenian border."], "bunghole": ["An insulting exclamation directed at a vile, stupid or a worthless person."], "NoSQL": ["A database that provides a mechanism for storage and retrieval of data that is modeled in means other than the tabular relations used in relational databases."], "MongoDB": ["A cross-platform document-oriented database system, classified as a NoSQL database."], "unnoticeably": ["In a manner too imperceptible to be detected."], "beat to a pulp": ["To hit or batter until there are only soft remains."], "hop": ["To jump lightly."], "shout out": ["To utter a sudden and loud outcry."], "send for": ["To order or summon by using one's voice."], "call in": ["To pay a short visit."], "interchange": ["The reciprocal transfer of equivalent sums of money, usually in currencies of different countries.", "Anything given or received as an equivalent, replacement, or substitute for something else."], "commutation": ["The act of putting one thing or person in the place of another."], "interlingual rendition": ["The result of converting words and texts from one language to another."], "diagnostician": ["A specialized doctor who treats pathologies."], "climatic": ["Of or relating to climate."], "make clean": ["To remove dirt, dust or foreign matter from."], "shut down": ["To cease to operate or cause to cease operating (e.g. a business or a shop)."], "close down": ["To cease to operate or cause to cease operating (e.g. a business or a shop)."], "prototype": ["A person or thing that is typical of or possesses to a high degree the features of a whole class."], "good example": ["A typical example or instance."], "come up": ["To move toward or to reach either the speaker, the person spoken to, or the subject of the speaker's narrative."], "liken": ["To consider or describe as similar, equal, or analogous."], "go along": ["To maintain an action, state or condition without interruption."], "carry on": ["To continue talking."], "figure four": ["In wrestling, a grappling hold that resembles the number \"4\"."], "figure-four": ["In wrestling, a grappling hold that resembles the number \"4\".", "A wrestling submission hold in which the opponent's legs resemble the number \"4\"."], "chinlock": ["A wrestling hold in which the attacking wrestler crouches down behind a sitting opponent and places his knee into the opponent's upper back, grasping the opponent's chin with both hands."], "nelson hold": ["A grappling hold which is executed from behind the opponent."], "nelson": ["A grappling hold which is executed from behind the opponent."], "armlock": ["A single or double joint lock that hyperextends, hyperflexes or hyperrotates the elbow joint and/or shoulder joint."], "sympathy": ["The sharing of another's emotions, especially of sorrow or anguish; pity; compassion."], "fellow feeling": ["The sharing of another's emotions, especially of sorrow or anguish; pity; compassion."], "scrunch": ["To lower one's body close to the ground by bending one's knees completely."], "hunker": ["To lower one's body close to the ground by bending one's knees completely."], "stoop": ["To bend one's back forward."], "boston crab": ["In professional wrestling, a hold where the wrestler hooks each of the opponent\u2019s legs in one of his arms, and then turns the opponent face-down, stepping over him in the process."], "tree of woe": ["In wrestling, a move in which the opponent is suspended upside down on a turnbuckle, with his back being up against it, and beaten while keeping that position."], "hose clamp": ["Device aimed at attaching and sealing a hose end onto a cylindrical element positioned on the same axis as the hose end."], "hose clip": ["Device aimed at attaching and sealing a hose end onto a cylindrical element positioned on the same axis as the hose end."], "stracchino": ["A type of Italian cheese made with cow's milk, produced in Lombardy, Piedmont, and Veneto."], "aerodynamic lift": ["An upward force, such as the force that keeps aircraft aloft."], "fomenter": ["Someone who agitates or calls for a certain behavior; a troublemaker."], "hemipterous insect": ["Any of the suborder Heteroptera, having piercing and sucking mouthparts, specialized as a beak.\\n(Source: CED)"], "bodybuilder": ["Someone who trains specifically to develop a strong musculature."], "muscleman": ["Someone who trains specifically to develop a strong musculature."], "muscle builder": ["Someone who trains specifically to develop a strong musculature."], "takedown": ["A technique in which a wrestler gains control over his opponent from a neutral position."], "full nelson": ["In wrestling, a hold in which the holder puts both arms under the opponent's arms and exerts pressure on the back of the neck."], "Omegawiki": ["A multilingual dictionary whose aim is to describe all words of all languages with definitions in all languages."], "smettere": ["To stop consuming (e.g. alcohol)."], "kicking": ["A physical strike using the foot, leg, or knee."], "sound off": ["To state complaints, discontent, displeasure, or unhappiness."], "quetch": ["To state complaints, discontent, displeasure, or unhappiness."], "reboot": ["To cause to load and start (an operating system)."], "foster": ["To promote the growth of."], "ca-ca": ["To excrete feces from one's body through the anus."], "affaire d'honneur": ["A prearranged combat with deadly weapons arranged between two people so as to settle a point of honour."], "power shovel": ["A machine used to dig the ground and to lift and carry dirt and debris."], "cry out": ["To utter aloud; often with surprise, horror, or joy."], "outcry": ["To utter aloud; often with surprise, horror, or joy."], "call out": ["To utter aloud; often with surprise, horror, or joy."], "trim": ["To cut down on; to make a reduction in (especially costs, jobs, e.g. with financial and administrative acts)."], "trim down": ["To cut down on; to make a reduction in (especially costs, jobs, e.g. with financial and administrative acts)."], "bring down": ["To cut down on; to make a reduction in (especially costs, jobs, e.g. with financial and administrative acts)."], "creme anglais": ["A liquid cream made of milk, egg yolk, sugar and flavoured with vanilla."], "computational linguistics": ["An interdisciplinary field which deals with scientific study and modeling of human language from a computational perspective."], "vis-a-vis": ["A person who closely resembles another or has the same function or characteristics as another."], "look-alike": ["A person who resembles another person perfectly."], "oily": ["Smeared or soiled with grease or oil."], "muscular": ["Possessing physical strength and weight; rugged and powerful."], "brawny": ["Possessing physical strength and weight; rugged and powerful."], "hefty": ["Possessing physical strength and weight; rugged and powerful."], "vacancy defect": ["A defect in the form of an unoccupied lattice position in a crystal."], "course of study": ["A learning program, as in a school."], "flowing": ["The flowing of a fluid."], "monosemy": ["Capacity, for a word, of having only one meaning."], "sequel": ["Any work of literature, film, theater, or music that continues and extends the story of some earlier work."], "clew": ["Evidence that supports a hypothesis or helps to solve a problem."], "invert": ["To rotate [a container] so that its opening be below; to turn upside down."], "fishy": ["Raising suspicion."], "mistrustful": ["Openly distrustful and unwilling to confide."], "untrusting": ["Openly distrustful and unwilling to confide."], "slaveholding": ["The practice of keeping slaves."], "roommate": ["A person who shares a room with someone else."], "roomy": ["A person who shares a room with someone else."], "roomie": ["A person who shares a room with someone else."], "deglutition": ["The act of swallowing."], "wassail": ["To raise one's glass and touch it against another person's (usually at a celebration meal, etc. and usually with the word, \"cheers\")."], "spiegare": ["To give the meaning or intention of."], "parking area": ["Area of ground or a building where there is space for vehicles to be parked."], "be dying": ["To be in the proccess of dying, to face the foreseeable and inevitable end ones life usually due to sickness."], "in a dying condition": ["To be in the proccess of dying, to face the foreseeable and inevitable end ones life usually due to sickness."], "be on one's deathbed": ["To be in the proccess of dying, to face the foreseeable and inevitable end ones life usually due to sickness."], "moribund": ["To be in the proccess of dying, to face the foreseeable and inevitable end ones life usually due to sickness."], "to be in extremis": ["To be in the proccess of dying, to face the foreseeable and inevitable end ones life usually due to sickness."], "lie dying": ["To be in the proccess of dying, to face the foreseeable and inevitable end ones life usually due to sickness."], "tumble": ["A sudden drop from an upright position."], "spill": ["A sudden drop from an upright position."], "declivity": ["A downward slope or bend."], "downslope": ["A downward slope or bend."], "downfall": ["A sudden decline in strength or number or importance."], "impinge on": ["To hit or come into contact against something."], "collide with": ["To hit or come into contact against something."], "impress": ["To have an emotional or cognitive impact upon."], "fame": ["The state or quality of having a positive reputation."], "word sense disambiguation": ["In Natural Language Processing, a task whose goal is to automatically assign the most suitable sense to a given word in context."], "word-sense disambiguation": ["In Natural Language Processing, a task whose goal is to automatically assign the most suitable sense to a given word in context."], "WSD": ["In Natural Language Processing, a task whose goal is to automatically assign the most suitable sense to a given word in context."], "jut out": ["To extend out or project in space."], "in one go": ["Doing or finishing different things or tasks during one and the same occasion or in the same time period."], "computer scientist": ["A person who is specialized in the theory of computation and information, and the design of computers and computer programs."], "computational lexicon": ["A highly structured repository of the rich syntactic and semantic knowledge about individual words used in a natural language processing."], "word processing": ["The creation and editing of electronic documents using a word processor."], "accessibility": ["A nonfunctional requirement characterizing the ease with which\\nthe software can be accessed by as many people or systems as possible.", "The degree to which a product, device, service, or environment is available to as many people as possible."], "pesto": ["A tasty sauce originating in Genoa in the Liguria region of Italy, which contains crushed basil leaves, garlic, pine nuts, Parmesan cheese and olive oil."], "cacio e pepe": ["A Roman pasta dish cooked with a cheese and pepper sauce."], "cheese and pepper pasta": ["A Roman pasta dish cooked with a cheese and pepper sauce."], "first dish": ["A dish of rice or pasta that is eaten at the beginning of the meal, possibly preceded by one or more entrees."], "primo": ["A dish of rice or pasta that is eaten at the beginning of the meal, possibly preceded by one or more entrees."], "surfer": ["A person who rides a surfboard."], "sham": ["To act as if something is true."], "profess": ["To state something that is wrong or doubtful."], "dissimulator": ["Someone who dissembles."], "phony": ["Someone who dissembles."], "default up": ["To fail to meet financial obligations; to fail to pay up."], "assure": ["To make certain of."], "run off": ["To leave suddenly and as if in a hurry."], "beetle off": ["To leave suddenly and as if in a hurry."], "bolt out": ["To leave suddenly and as if in a hurry."], "Comma Separated Values": ["Tabular data in plain-text form whose records are separated by commas."], "Comma-Separated Values": ["Tabular data in plain-text form whose records are separated by commas."], "leveraging": ["Any technique to multiply gains and losses."], "matter to": ["To be of importance or consequence."], "blanched": ["Pale in color."], "boxing ring": ["A square ring where boxers fight.", "A platform usually marked off by ropes in which contestants box or wrestle."], "bolide": ["A very bright meteor which can be much brighter than any star."], "have got": ["To hold or possess either in an abstract or concrete sense."], "if ... is": ["Conditional mood of the copular verb, 3rd person singular."], "whereas": ["In contrast.", "It being the fact that."], "cross validation": ["The statistical practice of partitioning a sample of data into subsets such that the analysis is initially performed on a single subset, while the other subset(s) are retained for subsequent use in confirming and validating the initial analysis."], "metabolize": ["To change (chemically) via metabolism.", "To subject something, a substance, to metabolism.", "To produce by metabolism."], "preliminary": ["Making a beginning but not being the real thing.", "A means or measure or an action taken in preparation of.", "Work preparing or laying the ground for something that is planned to come later.", "The initial section; a foreword; a preface; a lead-in; a kind of beginning before something really starts, etc."], "preparatory": ["Making a beginning but not being the real thing.", "A means or measure or an action taken in preparation of."], "preamble": ["A means or measure or an action taken in preparation of.", "The initial section; a foreword; a preface; a lead-in; a kind of beginning before something really starts, etc."], "preparative": ["A means or measure or an action taken in preparation of."], "preparatory work": ["Work preparing or laying the ground for something that is planned to come later."], "spadework": ["Work preparing or laying the ground for something that is planned to come later."], "tuple": ["In mathematics and computer science, an ordered list of elements."], "n-tuple": ["In mathematics and computer science, an ordered list of elements."], "machine-readable dictionary": ["A dictionary stored as in machine-readable format instead of being printed on paper."], "ramify": ["To divide into two or more branches so as to form a fork, starting from a common point."], "furcate": ["To divide into two or more branches so as to form a fork, starting from a common point."], "mush": ["Soaked clay or soil; very soft ground."], "slush": ["Soaked clay or soil; very soft ground."], "marvellous": ["Deserving praise; worth to be praised."], "easily digestible": ["Capable of being digested.", "Pleasant for the stomach and the digestive system; easy to digest."], "reckon with": ["To incorporate in a price for which one asks."], "reckon on": ["To incorporate in a price for which one asks."], "shielding": ["A shielding or protection against the unpleasant, unwanted, or dangerous."], "asynchronous learning": ["(Education) Communication exchanges which occur in elapsed time between two or more people. Examples are email, online discussion forums, message boards, blogs, podcasts, etc. (Source: INACOL)"], "at-risk student": ["Any student who is performing poorly academically, or who may face learning impediments not limited to socioeconomic status, behavioral and learning disabilities, and home, family, and community stresses."], "blended course": ["A course that combines online and face-to-face instruction."], "competency-based learning": ["Learning in which outcomes emphasize competencies including explicit, measurable, transferable learning objectives."], "hybrid learning": ["A curriculum that combines multiple types of media. Typically, it refers to a combination of classroom-based classes with self-paced e-learning."], "learning object": ["An electronic media resource (a digital file or a collection of files) targeting a lesson objective, standard, or a lesson concept, that can be used and reused for instructional purposes."], "synchronous learning": ["Online learning in which the participants interact at the same time and in the same space."], "rhysimeter": ["An instrument designed to measure the velocity of fluid current."], "carbuncle": ["Red precious stone, such as ruby or garnet."], "office staff": ["Professional or clerical workers in an office."], "whistling": ["The high loud sound made by air or steam when forced through a small aperture."], "masturbate": ["To manually excite of one's own sexual organs, most often to the point of orgasm."], "shtetl": ["A Jewish hamlet or village, especially in Eastern Europe."], "goblet": ["A drinking vessel with a slender stem."], "college applicant": ["A person who applies to a university or college."], "urban vagrant": ["A person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne, having a specifically obscene and offensive way to express oneself. Someone bumming about in the city not having an acceptable or decent place to stay or for living or housing.", "A female person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne, having a specifically obscene and offensive way to express herself. A female bumming about in the city not having an acceptable or decent place to stay or for living or housing.", "A male person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne; one having a specifically obscene and offensive way to express himself. A male bumming about in the city not having an acceptable or decent place to stay or for living or housing."], "city tramp": ["A person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne, having a specifically obscene and offensive way to express oneself. Someone bumming about in the city not having an acceptable or decent place to stay or for living or housing.", "A female person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne, having a specifically obscene and offensive way to express herself. A female bumming about in the city not having an acceptable or decent place to stay or for living or housing.", "A male person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne; one having a specifically obscene and offensive way to express himself. A male bumming about in the city not having an acceptable or decent place to stay or for living or housing."], "city bum": ["A person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne, having a specifically obscene and offensive way to express oneself. Someone bumming about in the city not having an acceptable or decent place to stay or for living or housing.", "A female person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne, having a specifically obscene and offensive way to express herself. A female bumming about in the city not having an acceptable or decent place to stay or for living or housing.", "A male person of the lower end of the lower class of the type to be found at or around the Neumarkt (\"new market\") in Cologne; one having a specifically obscene and offensive way to express himself. A male bumming about in the city not having an acceptable or decent place to stay or for living or housing."], "become lukewarm": ["To become a temperature between warm and cool."], "fourth child": ["The human offspring that is born after the third child."], "fifth child": ["The human offspring that is born after the fourth child."], "third child": ["The human offspring that is born after the second child."], "second child": ["The human offspring that is born after the first child."], "seventh child": ["The human offspring that is born after the sixth child."], "eighth child": ["The human offspring that is born after the seventh child."], "neonate": ["A newborn child; recently born infant."], "sixth child": ["The human offspring that is born after the fifth child."], "biological father": ["The male parent whose child inherits one half of the parent's DNA and the Y chromosome."], "newborn": ["A newborn child; recently born infant."], "cockscomb": ["A rooster's plump red crest."], "coxcomb": ["A rooster's plump red crest."], "armlet": ["A bracelet that is typically worn on the arm for identification or ornate intent."], "misplace": ["To not recall where one has put an object ; to lose temporarily an object."], "pester": ["To cause, inflict or threaten with suffering, need, distress, or pain."], "make suffer": ["to cause or inflict pain or suffering."], "thermal underwear": ["A piece of underwear having long legs which are open at their ends."], "long underwear": ["A piece of underwear having long legs which are open at their ends."], "chromatograph": ["A machine that executes chromatography by the division of gas or liquid."], "memorize": ["To place in memory."], "surpass": ["To go beyond a limit."], "garden house": ["A small building in a garden, such as a shed, which is not usually build to be inhabitated for long times."], "fermented drink": ["A fermented drink is a beverage containing alcohol because of a metabolic process that converts sugar to acids, gases and/or alcohol (e.g. beer or wine)."], "yawl": ["A small boat made for rowing with four or six oars."], "MediaWiki": ["A free and open source wiki software, written in the PHP programming language, used to power wiki websites such as Wikipedia, Wiktionary, Commons and OmegaWiki."], "OpenOffice": ["An open-source office productivity software suite including a word processor (Writer), a spreadsheet (Calc), a presentation application (Impress), a drawing application (Draw), a formula editor (Math), and a database management application (Base)."], "Apache OpenOffice": ["An open-source office productivity software suite including a word processor (Writer), a spreadsheet (Calc), a presentation application (Impress), a drawing application (Draw), a formula editor (Math), and a database management application (Base)."], "LibreOffice": ["A free and open source office suite comprising programs to do word processing, spreadsheets, slideshows, diagrams and drawings, maintain databases, and compose math formulae."], "Firefox": ["A free and open-source web browser developed for Windows, OS X, Linux and Android."], "Mozilla Firefox": ["A free and open-source web browser developed for Windows, OS X, Linux and Android."], "renminbi": ["The official currency of China."], "GIMP": ["A raster graphics editor used for image retouching and editing, free-form drawing, resizing, cropping, photo-montages, converting between different image formats, and more specialized tasks."], "GNU Image Manipulation Program": ["A raster graphics editor used for image retouching and editing, free-form drawing, resizing, cropping, photo-montages, converting between different image formats, and more specialized tasks."], "Subversion": ["A software versioning and revision control system distributed as free software."], "svn": ["A software versioning and revision control system distributed as free software."], "Git": ["A distributed revision control and source code management system with an emphasis on speed."], "JasperReports": ["An open source Java reporting tool that can write to a variety of targets, such as: screen, a printer, into PDF, HTML, Microsoft Excel, RTF, ODT, Comma-separated values or XML files."], "phpMyAdmin": ["A free and open source tool written in PHP intended to handle the administration of MySQL with the use of a web browser."], "SQLite": ["A relational database management system contained in a C programming library."], "variegate": ["To add variety (to something)."], "chain smoker": ["A female heavy smoker who lights one cigarette from the preceding one.", "Someone who smokes frequently.", "A heavy smoker, a male, who lights one cigarette from the preceding one."], "Old Church Slavonic (Glagolitic)": ["The Old Church Slavonic language written with the Glagolitic alphabet."], "Malay (Jawi)": ["The Malay language written with the Jawi alphabet."], "Sakha Republic": ["A republic of Russia with an area of 3,103,200 km\u00b2 located in the East Russia. Its borders are the Arctic Ocean by sea and the Federal subjects of Chukotka (E), Magadan (E/SE), Khabarovsk Krai (SE), Amur (S), Chita (S), Irkutsk (S/SW), Evenk (W), Taymyr (W/NW)."], "wishing well": ["a well where any spoken wish is granted"], "detangle": ["To disentangle (usually refers to hair)."], "aromaticity": ["The property of organic compounds that have one or more conjugated rings of alternate single bonds and double bonds, and show extreme stability."], "parliament": ["A seminar whose members congregate to discuss the important political issues of the day and exercise government powers.", "Collective noun for a group of owls or rooks."], "older sibling": ["A person who is born before another person who has the same parents."], "old man": ["A male person who is old of age."], "manioc bread": ["Bread made of the roots of the cassava plant."], "mens house": ["A separate building for male persons."], "forked branch": ["At this point a branch is forked into two or more branches."], "yam": ["Plant that forms edible tubers which is mainly grown in West Africa, Asia and Latin America, the Caribbean and Oceania."], "gourd": ["A versatile plant belonging to multiple types of plants like pumpkins, cucumbers and melons. It is probably one of the earliest domesticated plants."], "maximize": ["To render as much as possible."], "stylolite": ["An unequal face between strata constituting of tooth-like prominences; frequently discovered in limestone and dolomite."], "dialectal materialism": ["The notion of existence that which all corporeal things are caused by the discord between incompatible powers, elements, and opinions."], "turntable": ["A device that plays the sound stored on a gramophone record."], "carry in hand": ["To hold or to take something from one place to another by hands."], "carry on shoulder": ["To hold or to take something from one place to another on one shoulder."], "carry on head": ["To hold or to take something from one place to another on top of the head."], "carry under the arm": ["To hold or to take something from one place to another under the arm."], "outrigger": ["A stabilizer for a canoe; spars attach to a shaped log or float parallel to the hull."], "triply": ["Three times."], "for a long time": ["Great amount of time between two specific events."], "new rich": ["The class of nouveau riche people."], "alcoholic drink": ["A drink (a liquor or brew) containing ethanol, commonly known as alcohol."], "alcoholic beverage": ["A drink (a liquor or brew) containing ethanol, commonly known as alcohol."], "Rice": ["Rice"], "abolitionize": ["To imbue with the principles of abolitionism."], "abolitionise": ["To imbue with the principles of abolitionism."], "rainbow boa": ["A boa of the species Epicrates cenchria found in Central and South America."], "aboma": ["A boa of the species Epicrates cenchria found in Central and South America."], "slender boa": ["A boa of the species Epicrates cenchria found in Central and South America."], "abomasus": ["The fourth stomach compartment in ruminants."], "abominableness": ["The quality or state of being abominable or odious."], "odiousness": ["The quality or state of being abominable or odious."], "aboon": ["In or to a higher place; higher than; on or over the upper surface."], "abord": ["To approach and speak to, especially in an unfriendly way.", "A manner of approaching or accosting."], "aboriginality": ["The quality of being aboriginal."], "aborigines": ["The earliest known inhabitants of a country.", "The original fauna and flora of a geographical area."], "abortment": ["The interruption of pregnancy (induced or for natural causes)."], "aborsement": ["The interruption of pregnancy (induced or for natural causes)."], "acost": ["To approach and speak to boldly or aggressively, as with a demand or request.", "To solicit for sex.", "A greeting."], "yeti": ["An unidentified animal often thought to live in the Himalayas."], "abominable snowman": ["An unidentified animal often thought to live in the Himalayas."], "a'right": ["In a satisfactory or adequate manner."], "haggle": ["To negotiate the terms of an exchange."], "encyclopedic dictionary": ["A dictionary with long, detailed entries on words (and often famous people and places), usually with pictures."], "encyclopaedic dictionary": ["A dictionary with long, detailed entries on words (and often famous people and places), usually with pictures."], "run-on sentence": ["A sentence in which two or more independent clauses (i.e., complete sentences) are joined without appropriate punctuation or conjunction."], "theriac": ["An antidote to the venom of a snake."], "non-virgin": ["A woman who has had sexual intercourse."], "gamification": ["The use of game thinking and game mechanics in non-game contexts to engage users in solving problems."], "game theory": ["The study of mathematical models of conflict and cooperation between intelligent rational decision-makers."], "hissy fit": ["A sudden outburst of temper, often used to describe female anger at something trivial."], "hysterical fit": ["A sudden outburst of temper, often used to describe female anger at something trivial."], "hissy-fit": ["A sudden outburst of temper, often used to describe female anger at something trivial."], "interested": ["Involved in or affected by or having a claim to or share in.", "Having or showing interest; especially curiosity or fascination or concern."], "descending": ["Going or coming down or downward."], "pragmatist": ["Someone who is pragmatic. A person who takes a practical approach to problems."], "Karmapa": ["The heirarch of the Karma Kagy\u00fc tradition of Tibetan Buddhism."], "takin": ["(Budorcas taxicolor) A goat-antelope found in the eastern Himalayas."], "red panda": ["(Ailurus fulgens) A small arboreal mammal, with reddish-brown fur, a long, shaggy tail, and a waddling gait native to the eastern Himalayas and south-western China.\\nThe only living species in the genus Ailurus and the familia Ailuridae."], "lesser panda": ["(Ailurus fulgens) A small arboreal mammal, with reddish-brown fur, a long, shaggy tail, and a waddling gait native to the eastern Himalayas and south-western China.\\nThe only living species in the genus Ailurus and the familia Ailuridae."], "muntjac": ["Muntjacs, also known as barking deer and Mastreani deer, are small deer of the genus Muntiacus."], "barking deer": ["Muntjacs, also known as barking deer and Mastreani deer, are small deer of the genus Muntiacus."], "stash": ["To put by or away as for safekeeping or future use, usually in a secret place.", "Something put away or hidden, for example a stash of gold coins buried in the garden.", "A place in which something is stored secretly; a hiding place; a cache.", "A supply of hidden (illeal) drugs."], "street dust": ["Dust or fine dirt to be found on the ground, on floors, on streets and ways."], "tangled": ["Highly complex or intricate and occasionally devious.", "Rolled longitudinally upon itself."], "non-proprietary": ["Not protected by trademark or patent or copyright."], "arm wrestling": ["A sport in which two opponents, positioned opposite each other and each with an elbow on a stable surface, grasp the other's hand and attempt to push the opponent's arm down to the surface."], "cooperation": ["Work with an another person or in a team."], "triceps": ["An extensor muscle on the back of the arm."], "Goku": ["A fictional character and the protagonist of the Dragon Ball manga series written by Akira Toriyama."], "enflame": ["To set on fire - literally and figuratively."], "lexicographic": ["Of or relating to lexicography."], "lexicographical": ["Of or relating to lexicography."], "Torres Strait Creole": ["An English-based creole language spoken on several Torres Strait Islands."], "good bye": ["A parting statement; used when one or more people in a situation, dialogue or location are leaving, while others remain.", "An interjection of parting."], "agon": ["A contest or struggle, especially between a protagonist and antagonist in literary pieces.", "A contest in ancient Greece in athletic and musical ability.", "A two-player hexagonal board game, popular in the Victorian times."], "queen's guard": ["A two-player hexagonal board game, popular in the Victorian times."], "animosity": ["Excessive enthusiasm or exuberance."], "price list": ["A list of itemized prices, generally of goods being sold."], "subjective": ["Taking place within the mind and modified by individual bias."], "means": ["The way a result is obtained or an end is achieved.", "An instrumentality for accomplishing some end."], "severe": ["Intensely or extremely bad or unpleasant in degree or quality.", "Very strong or vigorous (e.g. of a punch or blow).", "Very bad in degree or extent (e.g. of depression or damage).", "Causing fear or anxiety by threatening great harm."], "knockout": ["Very strong or vigorous (e.g. of a punch or blow)."], "life-threatening": ["Causing fear or anxiety by threatening great harm."], "entry into the war": ["The entry of a country into an existing military conflict."], "dominion": ["Authority or the use of authority; jurisdiction over something."], "damnify": ["To cause injuries to."], "packsaddle": ["A saddle created to secure and carry goods on an animal."], "hallucinate": ["To see unreal things while awake."], "lumpy": ["Not smooth; full of lumps."], "inception": ["The beginning or commencement of something."], "Blankenese": ["A part of the city of Hamburg in North Germany."], "cacophonous": ["Containing, consisting of, or producing harsh, unpleasant sounds."], "zeptomole": ["600 molecules of a substance. SI symbol: zmol."], "floccinaucinihilipilificate": ["To regard as worthless."], "abashed": ["Ashamed, disconcerted, or embarrassed."], "abacterial": ["Not caused by bacteria."], "ableism": ["Discrimination against persons with disabilities or favouring people without."], "invade": ["To enter by force in order to conquer."], "cohabitant": ["A person who cohabits with another."], "handicapped": ["Having a handicap."], "obelus": ["A symbol consisting of a horizontal line with a dot above and below, chiefly used to represent division in mathematics."], "triathlon": ["An athletics event where contestants participate in swimming, cycling, and running."], "habitue": ["A person or thing regularly present in the same place or position for a long time."], "instigate": ["To insist the someone does something as soon as possible."], "Gladstone Gander": ["A fictional, lazy and infuriatingly lucky duck that was created by Carl Barks."], "Linked Data": ["A collection of interrelated datasets on the Web in a standard format, reachable and manageable by Semantic Web tools."], "seeded player": ["One of the outstanding players in a tournament."], "mozzarella": ["An Italian white cheese with long stretch and mild taste."], "gymnast": ["An athlete who is skilled in gymnastics."], "gravitational force": ["Physics: the force of mutual attraction between all masses in the universe."], "Friedelehe": ["A postulated form of Germanic marriage said to have existed during the Early Middle Ages, introduced into mediaeval historiography during the 1920s by Herbert Meyer. Whether such a marriage form actually existed remains controversial."], "open up": ["To make available.", "To start to operate or function or cause to start operating or functioning (e.g. a business).", "To cause to open or to become open."], "bundt cake": ["A dessert cake that is baked in a bundt pan, shaping it into a distinctive ridged ring."], "riffraff": ["Disparaging term for the common people."], "resourceful": ["Capable or clever; able to put available resources to efficient or ingenious use; using materials at hand wisely or efficiently."], "wheedle": ["To encourage, influence or persuade by effort."], "city center": ["The central part of a city, usually the cultural and commercial center."], "gorgonzola": ["A veined Italian blue cheese, made from unskimmed cow's milk."], "oaf": ["An elf's child; a changeling left by fairies or goblins, hence, a deformed or foolish child. Source:Wiktionary", "A person, especially a large male, who is clumsy or a simpleton; an idiot."], "auf": ["An elf's child; a changeling left by fairies or goblins, hence, a deformed or foolish child. Source:Wiktionary"], "oafs": ["An elf's child; a changeling left by fairies or goblins, hence, a deformed or foolish child. Source:Wiktionary"], "galoot": ["A person, especially a large male, who is clumsy or a simpleton; an idiot."], "imbecile": ["A person, especially a large male, who is clumsy or a simpleton; an idiot."], "lout": ["A person, especially a large male, who is clumsy or a simpleton; an idiot."], "moron": ["A person, especially a large male, who is clumsy or a simpleton; an idiot."], "news leak": ["Unauthorized (especially deliberate) disclosure of confidential information."], "crate": ["A tiny boat. A boat too small for the presumed task.", "A wooden box made of slats, for packing, shipping, or storing.", "Something old or worn-out, esp. an automobile."], "aggregator": ["A service collecting contents that - often in a condensed form - is disseminated for specific targetted audiences and may be put into specific categories as well."], "cheating": ["An act of deception carried out for the purpose of unfair, undeserved, and/or unlawful gain."], "negative growth": ["Euphemism used to describe an economic loss, shrunk social or economic figures, and similar."], "zero growth": ["Euphemism describing economic stagnation, stalled social or economic figures, and similar."], "defer": ["Euphemism for \"ignore\", that is, postpone until the hell freezes over."], "ride back": ["To drive, ride, or go back; to return."], "drive back": ["To drive, ride, or go back; to return."], "start back": ["To retreat unwillingly and/or suddenly, often caused by sudden pain, shock, scare, fright, surprise, or similar."], "shy back": ["To retreat unwillingly and/or suddenly, often caused by sudden pain, shock, scare, fright, surprise, or similar."], "spring back": ["To retreat unwillingly and/or suddenly, often caused by sudden pain, shock, scare, fright, surprise, or similar."], "shrink back": ["To retreat unwillingly and/or suddenly, often caused by sudden pain, shock, scare, fright, surprise, or similar."], "shy away": ["To retreat unwillingly and/or suddenly, often caused by sudden pain, shock, scare, fright, surprise, or similar."], "abderian": ["Inclined to incessant merriment or laughter."], "unable": ["Not having the necessary means or skill or know-how to do something."], "font manager": ["A computer program used to display, install, remove, select, choose, inspect, etc. digital fonts and font files for an operating system or application programs."], "font management software": ["A computer program used to display, install, remove, select, choose, inspect, etc. digital fonts and font files for an operating system or application programs."], "consortium": ["An association of two or more individuals, companies, organizations or governments with the objective of participating in a common activity or pooling their resources for achieving a common goal."], "gown": ["A piece of clothing worn on the upper body outside a shirt or blouse, until the waist or slightly below."], "inject": ["To give an injection to."], "ISO 639": ["A set of ISO standards concerned with the naming, marking, and coding of human languages."], "look up": ["To seek information from (e.g. a dictionary)."], "cross-eyed": ["Having the two eyes not looking in the same direction."], "squinting": ["Having the two eyes not looking in the same direction."], "health club": ["A place which houses exercise equipment for the purpose of physical exercise and to improve physical fitness."], "fitness facility": ["A building that is designed for indoor sports."], "physical fitness": ["Good physical condition; the condition of being in shape or in condition."], "ERC": ["An independent body that funds investigator-driven frontier research in the European Union."], "European Research Council": ["An independent body that funds investigator-driven frontier research in the European Union."], "change state": ["To undergo a transformation or a change of position or action."], "junk bond": ["A bond that is rated below investment grade."], "Belarusan (Tara\u0161kievica)": ["The Belarusan language written with the Tara\u0161kievica orthography."], "Amazon River": ["A river of South America and the largest river in the world by volume, with greater total river flow than the next eight largest rivers combined, and with the largest drainage basin in the world."], "underdog": ["A competitor who is thought unlikely to win or succeed."], "impedimenta": ["The baggage and equipment carried by an army."], "necessity": ["Something that needs to be done."], "billards": ["A class of games being payed with hard balls, shot with the tips of stick called cues, on tables of recatangular shape, usually covered with green felt coating having edges made of cushions that reflect balls almost perfecty when they roll against them at every spped."], "billards table": ["A rectangular table being used to play billards, usually covered with a green felt coating and having edges made of cushions that reflect balls almost perfectly independently of their speed, when they roll against them."], "parable": ["Short allegoric story used to illustrate a religious principle, especially those in the Gospels."], "Amarillo": ["A city in northern Texas."], "nay": ["A word used to show disagreement of something."], "go to the hays": ["To cease to appear, to not be visible anymore.", "To end up in an unknown place, to be not to be found again, to get lost, to irrecoverably slip away."], "vintner": ["Person who makes wine."], "winemaker": ["Person who makes wine."], "decompress": ["To decrease compression or pressure."], "kraken": ["Mythical giant octopus or squid."], "spritzer": ["Alcoholic beverage consisting of white wine and soda."], "odometer": ["Device that measures distance traveled."], "odograph": ["Device that measures distance traveled."], "telenovela": ["Limited-length daily television drama, especially those exhibited in Latin America."], "handheld": ["That fits one's hand."], "banshee": ["Female spirit in Irish mythology."], "hinge": ["A bearing allowing the movement of two connected parts of a device, such as a door."], "stowaway": ["Someone who boards a vehicle without permission."], "wank": ["Slang term for masturbation."], "handjob": ["Slang term for masturbation."], "plebeian": ["Who is not of noble rank; pertaining to the great masses."], "fleshy": ["Of a large person who has a mass or quantity of fat above normal."], "inexpert": ["A person who is not an expert."], "younger sibling": ["A person who is born after another person who has the same parents."], "gorgeous": ["Dazzlingly beautiful."], "revive": ["To be brought back to life, consciousness, or strength."], "sadistic": ["Deriving pleasure or sexual gratification from inflicting pain on another."], "pathetic": ["Deserving or inciting pity.", "Inspiring mixed contempt and pity."], "piteous": ["Deserving or inciting pity."], "pitiable": ["Deserving or inciting pity."], "condemnable": ["Deserving strong condemnation."], "vicious": ["Deserving strong condemnation."], "reprehensible": ["Deserving strong condemnation."], "exposition": ["What is being told in a clear and orderly manner."], "squish": ["To put (a liquid) into a container or another place by means of a squirting action."], "skim": ["To examine hastily (e.g. a newspaper).", "To travel on the surface of water.", "To cause to skip over a surface (e.g. a stone).", "To read superficially."], "melt down": ["To make a whole by melting."], "unify": ["To join two parts into a single set or element; to become one."], "ignite": ["To start to burn or burst into flames.", "To arouse or excite feelings and passions."], "catch fire": ["To start to burn or burst into flames."], "take fire": ["To start to burn or burst into flames."], "combust": ["To start to burn or burst into flames."], "stir up": ["To arouse or excite feelings and passions."], "misidentify": ["To identify incorrectly."], "stir": ["An emotional agitation and excitement.", "A rapid active commotion.", "To move a tool through (e.g. a cup).", "To move slightly.", "To stimulate feelings.", "To affect emotionally.", "To summon into action or bring into existence."], "bustle": ["A rapid active commotion."], "hustle": ["A rapid active commotion."], "bully": ["To be bossy or bully towards.", "To discourage or frighten with threats or a domineering manner; intimidate."], "browbeat": ["To discourage or frighten with threats or a domineering manner; intimidate."], "strong-arm": ["To be bossy or bully towards."], "boss around": ["To be bossy or bully towards."], "fortuity": ["An event that happens suddenly or by chance without an apparent cause."], "freak": ["A person who is so ardently devoted to something that it resembles an addiction."], "look up to": ["To feel respect or admiration for."], "publicise": ["To call attention to."], "publicize": ["To call attention to."], "consult": ["To advise professionally.", "To seek information from."], "preceding": ["Existing or coming before."], "opposing": ["Characterized by active hostility."], "historic period": ["A period of history having some distinctive feature."], "spare": ["An extra component of a machine or other apparatus.", "An extra car wheel and tire for a four-wheel vehicle.", "To refrain from harming.", "To save or relieve from an experience or action.", "(of a figure, body, etc.) thin and fit.", "More than is needed, desired, or required.", "Not taken up by previously scheduled activities.", "Kept in reserve especially for emergency use.", "Lacking in amplitude or quantity; not abundant."], "spare part": ["An extra component of a machine or other apparatus."], "be many": ["existence of an indefinite large number of someone or something."], "swidden field": ["a piece of land cleared for farming by burning away vegetation."], "twist(verb)": ["to combine, as two or more strands or threads, by winding together."], "upper arm": ["the part of the arm between the shoulder and the elbow."], "blowgun": ["A pipe or tube through which darts or other missiles are blown by the breath."], "blowtube": ["A pipe or tube through which darts or other missiles are blown by the breath."], "howler monkey": ["Large, prehensile-tailed tropical American monkey of the genus Alouatta, the males of which make a howling noise."], "spider monkey": ["Tropical American monkey of the genus Ateles, having a slender body, long, slender limbs, and a long, prehensile tail."], "collared peccary": ["Piglike hoofed mammal of the genus Tayassu, of North and South America, having a dark gray coat with a white collar."], "javelina": ["Piglike hoofed mammal of the genus Tayassu, of North and South America, having a dark gray coat with a white collar."], "white-lipped peccary": ["Piglike hoofed mammal, of North and South America, having a black gray coat with whitish cheeks; larger than the collared peccary."], "guan": ["a large game bird of the curassow family, common in dense woodlands of Central and South America."], "jigger flea": ["A flea, Tunga penetrans, of tropical America and Africa, the impregnated female of which embeds itself in the skin, especially of the feet, of humans and animals and becomes greatly distended with eggs."], "Jigger": ["A flea, Tunga penetrans, of tropical America and Africa, the impregnated female of which embeds itself in the skin, especially of the feet, of humans and animals and becomes greatly distended with eggs."], "Chigoe flea": ["A flea, Tunga penetrans, of tropical America and Africa, the impregnated female of which embeds itself in the skin, especially of the feet, of humans and animals and becomes greatly distended with eggs."], "Sand flea": ["A flea, Tunga penetrans, of tropical America and Africa, the impregnated female of which embeds itself in the skin, especially of the feet, of humans and animals and becomes greatly distended with eggs."], "cebus monkey": ["A Central and South American monkey, Cebus capucinus, having a prehensile tail and hair on the head resembling a cowl."], "capuchin monkey": ["A Central and South American monkey, Cebus capucinus, having a prehensile tail and hair on the head resembling a cowl."], "capuchin": ["A Central and South American monkey, Cebus capucinus, having a prehensile tail and hair on the head resembling a cowl."], "chonta palm": ["Species of flowering plant in the Arecaceae family,trunked palm tree which is endemic to the Juan Fern\u00e1ndez Islands archipielago in the southeast Pacific Ocean west of Chile."], "chicha": ["A beverage made from fermented corn in South and Central America."], "front teeth": ["Several teeth located above and below in the mouth of mammals to bite food off."], "tip of tongue": ["Front part of the tongue."], "long hair": ["Hair that is not cut."], "upper back": ["Upper part of the back."], "lower arm": ["the part of the arm between the elbow and the hand."], "lower leg": ["Part of the leg between the knee and the foot."], "storm clouds": ["A darkish cloud attending rain or a windstorm."], "corn field": ["A field in which corn is grown."], "reside": ["To have permanent residence."], "schoolmate": ["A student who attends the same school."], "rotary dial": ["A round disk with numbers of 0 to 9 that is used to dial the phone number at old telephones"], "instructor": ["A person who teaches a specific skill to another person."], "Cushma": ["a one-piece dress used by the Ashaninka Indians."], "crudites": ["A mix of uncooked vegetables cut into strips."], "courageous": ["Strong in the face of fear.", "Having or characterized by courage."], "Harmattan": ["Dry, dusty and cold West African trade wind from northeastern direction."], "dry season": ["Yearly period of low rainfall in the tropics."], "rain season": ["Period of year when most of a region's average annual rainfall occurs."], "Vitellaria": ["Tree of the Sapotaceae family, indigenous to Africa, commonly known as shea tree. The shea fruits are oil-rich seed from which shea butter is extracted."], "shea tree": ["Tree of the Sapotaceae family, indigenous to Africa, commonly known as shea tree. The shea fruits are oil-rich seed from which shea butter is extracted."], "shi tree": ["Tree of the Sapotaceae family, indigenous to Africa, commonly known as shea tree. The shea fruits are oil-rich seed from which shea butter is extracted."], "Khaya": ["A species of trees in the mahogany family Meliaceae, native to tropical Africa and Madagascar."], "mahogany tree": ["A species of trees in the mahogany family Meliaceae, native to tropical Africa and Madagascar."], "Guineafowl": ["Bird of the family Phasianidae native to Africa."], "guineahen": ["Bird of the family Phasianidae native to Africa."], "blind person": ["Person who has a complete lack of form and visual light perception."], "deaf person": ["Person who is partial or total unable to hear."], "snap": ["Quick breaking or cracking sound or the action of producing such a sound.", "A sudden sharp noise."], "man's robe": ["A flowing wide sleeved robe worn by men in much of West Africa, and to a lesser extent in North Africa."], "women's robe": ["a colorful women's garment widely worn in West Africa."], "sales quote": ["Price information that allows a prospective buyer to see what costs would be involved for the work they would like to have done or the product they would like to buy."], "precautionary": ["Taken in advance to protect against possible danger or failure."], "Republic of the Philippines": ["An island nation located in Southeast Asia, with Manila as its capital city."], "hard-and-fast": ["(of rules) stringently enforced."], "fixed": ["Fixed and unmoving.", "(of a number) having a given and unchanging value.", "Securely placed or fastened or set.", "Incapable of being changed or moved or undone (of price, income, etc.)."], "frozen": ["Absolutely still.", "Devoid of warmth and cordiality; expressive of unfriendliness or disdain.", "(used of foods) preserved by freezing sufficiently rapidly to retain flavor and nutritional value.", "Not convertible to cash."], "quick-frozen": ["(used of foods) preserved by freezing sufficiently rapidly to retain flavor and nutritional value."], "sedentary": ["Requiring sitting or little activity."], "fell": ["To knock somebody or cut something down, e.g. a tree."], "knock down": ["To knock somebody or cut something down, e.g. a tree."], "alang alang grass": ["A perennial high grown grass native to Asia, Australia and Africa."], "carry on back": ["To hold or to take something from one place to another on the back."], "cassowary": ["A big flightless bird native to tropical forests of New Guinea, nearby islands and northeastern Australia."], "crayfish": ["A freshwater crustacean resembling small lobster."], "g-string": ["A thong underwear or swimsuit, a narrow piece of cloth, leather, or plastic, that covers or holds the genitals, passes between the buttocks, and is attached to a band around the hips."], "pandanus": ["Palm-like, dioecious trees and shrubs native to the Old World tropics and subtropics."], "possum": ["Small to medium-sized arboreal marsupial species native to Australia, New Guinea, and Sulawesi."], "upper leg": ["The part of the leg between the pelvis and the knee."], "waive": ["To do without or cease to hold or adhere to.", "To lose (something) or lose the right to (something) by some error, offense, or crime."], "color photo": ["A photograph that shows colors (as opposed to black and white)."], "doubled": ["Twice the quantity of."], "twofold": ["Twice the quantity of.", "Having more than one decidedly dissimilar aspects or qualities."], "two-fold": ["Twice the quantity of.", "Having more than one decidedly dissimilar aspects or qualities."], "Whitsun": ["Feast on the fifthieth day after Passover which commemorates the descent of the Holy Spirit upon the Apostles."], "shiny": ["Reflecting light.", "Having a shiny surface or coating."], "change over": ["To change from one system to another or to a new plan or policy."], "pelican": ["Large water bird belonging to the family Pelecanidae. They are characterised by a long beak and large throat pouch used for catching prey and draining water from the scooped up contents before swallowing."], "male chauvinist": ["A person who discriminates on grounds of sex."], "degraded": ["Unrestrained by convention or morality.", "Lowered in value."], "devalued": ["Lowered in value."], "labeling": ["Attaching a notice to a product or container bearing information concerning its contents, proper use, manufacturer and any cautions or hazards of use."], "steel grey": ["Slightly purplish or bluish dark grey, like steel.", "Slightly purplish or bluish dark grey, like steel."], "goody": ["An especially delicious comestible."], "keep silence": ["Not say anything."], "be in silence": ["Not say anything."], "subscribe to": ["To sign up to receive regular copies of a publication, such as a newspaper or a magazine, delivered for a period of time."], "Karst spring": ["A place where water from caves returns to the surface, usually much more substantial than a spring."], "frustrated": ["Disappointingly unsuccessful; suffering from frustration."], "frustrating": ["Discouraging by hindering.", "That prevents realization or attainment of a desire."], "football player": ["A sportsman who plays soccer."], "unbox": ["To remove from a box."], "time period": ["An amount of time."], "period of time": ["An amount of time."], "dazed": ["Stunned or confused and slow to react (as from blows or drunkenness or exhaustion).", "In a state of mental numbness especially as resulting from shock."], "knocked out": ["Knocked unconscious by a heavy blow."], "stun": ["To hit something or somebody as if with a sandbag.", "To overcome as with astonishment or disbelief."], "irradiate": ["To expose to radiation."], "semiarid": ["Somewhat arid."], "crystalline lens": ["Transparent, biconvex natural lens inside the eye that, along with the cornea, refracts light to be focused on the retina, and whose shape can be modified by muscles to adapt the focal distance."], "aquula": ["Transparent, biconvex natural lens inside the eye that, along with the cornea, refracts light to be focused on the retina, and whose shape can be modified by muscles to adapt the focal distance."], "policy maker": ["A person who sets the plan pursued by a government or business etc."], "voluminous": ["Large in volume or bulk."], "tortuous": ["Marked by numerous turns and bends."], "twisting": ["Marked by numerous turns and bends."], "twisty": ["Marked by numerous turns and bends."], "blackout": ["The sudden (and generally momentary) loss of consciousness due to a lack of sufficient blood and oxygen reaching the brain.", "A large-scale power failure, and resulting loss of electricity to consumers."], "monumental": ["Imposing in size or bulk or solidity."], "eaves": ["The overhang at the lower edge of a roof that avoids that the rain water touches the wall."], "prostrate": ["Stretched out and lying at full length along the ground.", "To get into a prostrate position, as in submission."], "fishing license": ["Official permission granted to individuals or commercial enterprises allowing and regulating by time, location, species, size or amount the fish that can be caught from rivers, lakes or ocean waters within a particular jurisdiction."], "stigmatize": ["To report (publicly or not) a dishonest, immoral or illegitimate person or entity."], "stigmatise": ["To report (publicly or not) a dishonest, immoral or illegitimate person or entity."], "neutralize": ["To make inactive or ineffective; to oppose and mitigate the effects of by contrary actions."], "bain-marie": ["Cooking method consisting of heating materials gently and gradually to fixed temperatures, or to keep materials warm over a period of time."], "Carex depauperata": ["A rare species of sedge native to parts of Europe."], "short-change": ["To cheat someone by giving them less money than what are due."], "brutalize": ["To treat brutally.", "To make brutal, unfeeling, or inhuman.", "To become brutal or insensitive and unfeeling."], "radio show": ["A performance or production transmitted in sound signals with electromagnetic waves.\\n(Source: MHD)"], "radio program": ["A performance or production transmitted in sound signals with electromagnetic waves.\\n(Source: MHD)"], "set forth": ["To lay open the meaning of, to explain or discuss at length."], "elaborate": ["To provide details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing.", "To produce starting from basic elements or sources; to change into a more developed product.", "Marked by complexity and richness of detail.", "Developed or executed with great care and in every minute detail."], "futuristic": ["Of or relating to futurism."], "converge": ["To be adjacent or come together.", "To approach a mathematical limit as the number of terms increases without limit."], "diaper": ["An absorbent garment worn by a baby who does not yet have voluntary control of its bladder and bowels or by someone who is incontinent."], "restart": ["To start (something) again that has been stopped or paused from the point at which it was stopped or paused; to begin anew."], "help oneself": ["To abstain from doing; always used with a negative."], "sib": ["A person who has the same parents as another person."], "high intensity training": ["A form of strength training that focuses on performing quality weight training repetitions to the point of momentary muscular failure."], "plead": ["To appeal or request earnestly.", "To offer as an excuse or plea.", "To enter a plea, as in courts of law."], "international organization": ["An association of independent states, whose representatives gather for the promotion of common interests including defense and trade.\\n(Source: GT2)"], "precious": ["Characterized by feeling or showing fond affection for.", "Of high worth or cost."], "farsighted": ["Able to see distant objects clearly, in contrast to close objects."], "warlike": ["Suggesting or pertaining to war or military life."], "helpful": ["Providing assistance or serving a useful function."], "uninterested": ["Not having or showing interest; not being interested.", "Having no care or interest in knowing."], "defeated": ["Beaten or overcome; not victorious.", "Disappointingly unsuccessful."], "helpless": ["Lacking in or deprived of strength or power."], "panicky": ["Thrown into a state of intense fear or desperation."], "uptight": ["Being in a tense state."], "worried": ["Afflicted with or marked by anxious uneasiness or trouble or grief.", "Mentally upset over possible misfortune or danger etc."], "apprehensive": ["Quick to understand."], "fib": ["To tell a relatively insignificant lie."], "garden snail": ["Any of several inedible snails of the genus Helix; often destructive pests."], "molester": ["A person who subjects others to unwanted or improper sexual activities."], "harasser": ["A persistent tormentor."], "snatcher": ["A thief who grabs and runs."], "indict": ["To accuse formally of a crime."], "biceps curl": ["Any of a number of weight training exercises that target the biceps brachii muscle."], "nursing aide": ["A male person active in the care of people, in a hospital or nursing home, etc."], "overhead press": ["An exercise in which a weight is lifted with the arms, which are straightened vertically over one's head."], "shoulder press": ["An exercise in which a weight is lifted with the arms, which are straightened vertically over one's head."], "final-obstruent devoicing": ["A phonological phenomenon of some languages (for example German and Turkish) where voiced consonants become voiceless at the end of a word."], "weight training": ["A form of exercise in which weights are lifted."], "strength training": ["A form of physical exercise specializing in the use of resistance to induce muscular contraction which builds the strength, anaerobic endurance, and size of skeletal muscles."], "resistance training": ["A form of physical exercise specializing in the use of resistance to induce muscular contraction which builds the strength, anaerobic endurance, and size of skeletal muscles."], "stifling": ["Characterized by oppressive heat and humidity."], "ventilated": ["Exposed to air."], "inflate": ["To exaggerate or make bigger.", "To fill with gas or air.", "To cause prices to rise by increasing the available currency or credit.", "To become inflated."], "deflate": ["To collapse by releasing contained air or gas.", "To become deflated or flaccid, as by losing air."], "unaccompanied": ["Being without an escort.", "Playing or singing without accompaniment."], "loner": ["A person who avoids the company or assistance of others."], "solitude": ["The state or situation of being alone.", "A state of social isolation."], "alienated": ["Socially disoriented; feeling alone and unwanted or misunderstood by other people."], "permanently": ["For a long time without essential change."], "perpetual": ["That continues or lasts forever or indefinitely.", "Uninterrupted in time and indefinitely long continuing; that seems to be there all the time and is often annoying or worrying."], "quota": ["A proportional share assigned to each participant.", "An official limitation on imports or production."], "carload": ["The quantity of passengers sufficient to fill an automobile."], "vanload": ["The quantity, as of passengers or goods, that a van can carry."], "truckload": ["The quantity, as of passengers or goods, that a van can carry."], "spoonful": ["The quantity a spoon will hold."], "distinction": ["High station, status, rank, importance, or repute."], "preeminence": ["High station, status, rank, importance, or repute."], "huffy": ["Irritated and roused to anger."], "harassed": ["Troubled persistently especially with petty annoyances."], "pestered": ["Troubled persistently especially with petty annoyances."], "irritated": ["A little angry and impatient about something."], "nettled": ["A little angry and impatient about something."], "pissed": ["A little angry and impatient about something."], "pissed off": ["A little angry and impatient about something."], "female stripper": ["A woman who dances and undresses for money."], "strip": ["To get undressed."], "airs": ["Affected manners intended to impress others."], "shirtless": ["Not having or wearing a shirt; bare-chested."], "Zucchero": ["Italian singer-songwriter and musician, among the most famous in the world."], "Zucchero Fornaciari": ["Italian singer-songwriter and musician, among the most famous in the world."], "Adelmo Fornaciari": ["Italian singer-songwriter and musician, among the most famous in the world."], "pectoral": ["Of or relating to the chest or thorax."], "indignant": ["Angered at something unjust or wrong."], "resentful": ["Full of or marked by resentment or indignant ill will."], "handstand": ["The act of supporting yourself by your hands alone in an upside down position."], "abdominal stretch": ["A wrestling submission move in which the wrestler first straddles one of the opponent's legs, then reaches over the opponent's near arm with the arm close to the opponent's back and then locks it, squatting and twisting to the side and flexes the opponent's back and stretching their abdomen."], "cobra twist": ["A wrestling submission move in which the wrestler first straddles one of the opponent's legs, then reaches over the opponent's near arm with the arm close to the opponent's back and then locks it, squatting and twisting to the side and flexes the opponent's back and stretching their abdomen."], "helping": ["A predetermined amount of a food given to a person."], "arm lock": ["A single or double joint lock that hyperextends, hyperflexes or hyperrotates the elbow joint and/or shoulder joint."], "looking": ["The act of directing the eyes toward something and perceiving it visually."], "flexure": ["A angular or rounded shape in a thin material (such as paper) where the material abruptly changes direction, typically back toward itself."], "bill poster": ["A person who pastes up bills or placards on walls or billboards."], "amused": ["Pleasantly occupied."], "shocked": ["Struck with fear, dread, or consternation."], "renowned": ["Widely known and esteemed."], "PhD": ["One of the highest earned academic degrees conferred by a university."], "Ph. D.": ["One of the highest earned academic degrees conferred by a university."], "finalist": ["A participant who reaches the final stages of a competition."], "Fratercula arctica": ["Common puffin of the northern Atlantic."], "puffin": ["Common puffin of the northern Atlantic."], "leg press": ["A lower body exercise presented on a machine in which the individual pushes a weight or resistance away from them using their legs."], "neighboring": ["Having a common boundary or edge; abutting; touching."], "casket": ["A container into which cremated remains are placed and kept."], "tactician": ["A person skilled in the planning and execution of tactics."], "grimace": ["A contorted facial expression.", "To contort the face to indicate a certain mental or emotional state."], "classify": ["To separate, arrange or order by classes or categories."], "stomp": ["A strike with the heel of the foot from the stand-up position, usually directed at the head or body of a downed opponent.", "To walk heavily on something or someone."], "rings": ["An artistic gymnastics apparatus and the event that uses it."], "roar": ["The sound made by a lion.", "To make a loud noise, as of animal.", "To make a loud noise, as of wind, water, or vehicles."], "cardiologic": ["Of or relating to or used in or practicing cardiology."], "nod": ["To lower and raise the head, as to indicate assent or agreement or confirmation."], "quench": ["To totally stop something which is on fire from burning any more."], "MLL-93 protocol": ["MLL 93 protocol"], "hypertensive": ["Having abnormally high blood pressure."], "Ingush language": ["Northeast Caucasian language spoken mainly in the autonomous Republic of Ingushetia in the Russian Federation."], "set-aside": ["Uncultivated land."], "two-legged": ["Having two legs."], "flying kick": ["A kick in certain martial arts which is delivered while in the air, specifically moving into the opponent after a running start to gain forward momentum."], "wrestling lock": ["Any wrestling hold in which some part of the opponent's body is twisted or pressured."], "wristlock": ["In wrestling and grappling, a joint lock primarily affecting the wrist joint and possibly the radioulnar joints through rotation of the hand."], "wrist lock": ["In wrestling and grappling, a joint lock primarily affecting the wrist joint and possibly the radioulnar joints through rotation of the hand."], "headlock": ["A wrestling hold in which the opponent's head is locked between the crook of your elbow and the side of your body."], "manly": ["Possessing qualities befitting a man.", "Characteristic of a man."], "starting block": ["A block providing bracing for a runner's feet at start of a race."], "swimmer": ["A trained athlete who participates in swimming competitions.", "A person who travels through the water by swimming."], "curl": ["To twist or roll into coils, spirals or ringlets."], "glance": ["A quick look."], "inattentive": ["Showing a lack of attention or care."], "savour": ["To derive or receive pleasure from; get enjoyment from; take pleasure in."], "sixpack": ["A well developed set of abdominal muscles."], "cocky": ["Overly self-confident or self-assertive."], "distill": ["To make by the process of distillation."], "decompression chamber": ["A large chamber in which the oxygen pressure is above normal for the atmosphere; used in treating breathing disorders or carbon monoxide poisoning."], "physical effort": ["The use of forces and means higher than normal in order to achieve a given purpose."], "loneliness": ["The state of being alone in solitary isolation."], "surprised": ["Feeling or showing surprise because taken unawares or suddenly."], "mocked": ["Abusing vocally; expressing contempt or ridicule."], "Occupy Wall Street": ["A protest movement that began on September 17, 2011 in Zuccotti Park, located in New York City's Wall Street financial district."], "listening": ["The act of hearing attentively."], "bearhug": ["A wrestling hold with arms locked tightly around the opponent."], "figure four leglock": ["A wrestling submission hold in which the opponent's legs resemble the number \"4\"."], "figure-four leglock": ["A wrestling submission hold in which the opponent's legs resemble the number \"4\"."], "mexican surfboard": ["A wrestling hold in which the wrestler puts one foot on the back of the opponent, pulling back his arms, almost like riding on a surfboard."], "romance": ["The expressive and pleasurable feeling from an emotional attraction towards another person associated with romantic love."], "running start": ["A racing start in which the contestants are already in full motion when they pass the starting line."], "grapple": ["To grip or seize, as in a wrestling match."], "hand to hand": ["At close quarters (e.g. of fight)."], "hand-to-hand": ["At close quarters (e.g. of fight)."], "hand in hand": ["Clasping each other's hands."], "binary": ["Of or pertaining to a number system have 2 as its base."], "dilate": ["To become wider."], "envision": ["To imagine, conceive or see in one's mind."], "relaxed": ["Without stress or anxiety."], "supine": ["Lying face upward."], "prone": ["Lying face downward."], "frigid": ["Sexually unresponsive."], "brainstorm": ["To try to solve a problem in a group by thinking intensely about it."], "humiliated": ["Subdued or brought low in condition or status."], "undecided": ["Characterized by indecision."], "homoerotic": ["Of or concerning homosexual love."], "chagrined": ["Having a feeling of uneasiness due to the difficulty or the impossibility to adopt an appropriate behaviour."], "young man": ["A teenager or a young adult male."], "self-destruction": ["The act of a person killing himself intentionally."], "reprehend": ["To express strong disapproval of."], "machine-readable": ["Suitable for feeding directly into a computer for processing."], "machine readable": ["Suitable for feeding directly into a computer for processing."], "handcuff": ["To confine or restrain with or as if with manacles or handcuffs."], "braze": ["To solder together by using hard solder with a high melting point."], "flirt": ["To talk or behave amorously, without serious intentions."], "chomp": ["The act of biting with the teeth and jaws."], "bless": ["To make something blessed; to confer blessing upon."], "glamorous": ["Having glamour; having an air of romance and excitement."], "dried": ["Preserved by removing natural moisture."], "strap": ["To tie with a strap."], "sadomasochistic": ["Of or relating to sadomasochism."], "sadomaso": ["Of or relating to sadomasochism."], "hush": ["To cause to be quiet or not talk."], "frown": ["To look angry or sullen, wrinkle one's forehead, as if to signal disapproval."], "gallop": ["To go at galloping speed.", "To ride at a galloping pace."], "chiseled": ["Having a clear, strong and distinct outline as if precisely cut along the edges."], "well-defined": ["Having a clear, strong and distinct outline as if precisely cut along the edges."], "weld": ["To join together by heating."], "glide": ["To fly in or as if in a glider plane."], "lycra": ["A synthetic fiber known for its exceptional elasticity."], "slam": ["To throw violently.", "To close violently."], "monish": ["To scold or rebuke; to counsel in terms of someone's behavior."], "yellow card": ["A penalty card shown by the referee to a player being cautioned."], "fling": ["To move in an abrupt or headlong manner."], "trapped": ["Forced to turn and face attackers."], "cornered": ["Forced to turn and face attackers."], "harrow": ["To draw a harrow over (land)."], "moka machine": ["A type of pot which is placed on a heat source used to brew coffee."], "vindictive": ["Disposed to seek revenge or intended for revenge."], "hike": ["To walk a long way, as for pleasure or physical exercise."], "leap": ["To move forward by leaps and bounds."], "housekeep": ["To maintain a household; take care of all business related to a household."], "juggle": ["To throw, catch, and keep in the air several things simultaneously."], "unfreeze": ["To become soft or liquefied by heat."], "rivet": ["To fasten with one or more rivets."], "solder": ["To join or fuse with solder."], "mourn": ["To feel sadness for someone's death."], "pant": ["To breathe noisily, as when one is exhausted."], "pave": ["To cover with tiles.", "To cover with a material such as stone or concrete to make suitable for vehicle or pedestrian traffic."], "poach": ["To hunt illegally."], "chained": ["Bound with chains."], "enchain": ["To bind with chains."], "bromantic": ["Of or pertaining to a bromance."], "bromance": ["Close, non-sexual relationship between two or more men."], "suicider": ["Person who intentionally takes his or her own life."], "quilt": ["To stitch or sew together."], "recline": ["To move the upper body backwards and down."], "recycle": ["To use again after processing by converting waste into reusable material."], "refuel": ["To provide with additional fuel, as of aircraft, ships, and cars."], "torn": ["Having edges that are jagged from injury."], "lacerated": ["Having edges that are jagged from injury."], "ruminate": ["To chew the cuds."], "scavenge": ["To feed on carrion or refuse.", "To collect discarded or refused material."], "sleepwalk": ["To walk in one's sleep."], "snorkel": ["To dive with a snorkel."], "spank": ["To give a spanking to; to subject to a spanking."], "spray": ["To scatter in a mass or jet of droplets."], "streak": ["To run naked in a public place."], "swab": ["To wash with a swab or a mop."], "swarm": ["To be teeming, be abuzz.", "To move in large numbers."], "thrash": ["To separate the grain from the straw or husks by beating."], "chill out": ["To become less tense, rest, or take one's ease."], "trample": ["To injure by stomping or as if by stomping."], "trawl": ["To fish with trawlers."], "twirl": ["To cause to spin.", "To turn in a twisting or spinning motion."], "spinal disc herniation": ["A medical condition in which an intervertebral disc is displaced, often putting pressure on a nearby nerve."], "slipped disc": ["A medical condition in which an intervertebral disc is displaced, often putting pressure on a nearby nerve."], "herniated disc": ["A medical condition in which an intervertebral disc is displaced, often putting pressure on a nearby nerve."], "slipped disk": ["A medical condition in which an intervertebral disc is displaced, often putting pressure on a nearby nerve."], "herniated disk": ["A medical condition in which an intervertebral disc is displaced, often putting pressure on a nearby nerve."], "spinal disk herniation": ["A medical condition in which an intervertebral disc is displaced, often putting pressure on a nearby nerve."], "wade": ["To walk (through relatively shallow water)."], "winnow": ["To separate the chaff from by using air currents."], "whittle": ["To cut or shape a piece of wood with a knife."], "cross-dress": ["To dress in the clothes typical of the other sex."], "tahr": ["A caprid belonging to one of the three genuses Hemitragus, Nilgiritragus or Arabitragus."], "Himalayan tahr": ["A tahr of the genus Hemitragus endemic to the Himalayas."], "common tahr": ["A tahr of the genus Hemitragus endemic to the Himalayas."], "Nilgiri tahr": ["A tahr of the species Nilgiritragus hylocrius endemic to the Nilgiri Hills in southern India."], "Nilgiri ibex": ["A tahr of the species Nilgiritragus hylocrius endemic to the Nilgiri Hills in southern India."], "Arabian tahr": ["A tahr of the species Arabitragus jayakari native to Arabia."], "reverence": ["A deep feeling of respect for someone or something."], "redstart": ["A songbird of the genus Phoenicurus having an orange-red tail."], "Przevalski's redstart": ["A redstart of the species Phoenicurus alaschanicus."], "Ala Shan redstart": ["A redstart of the species Phoenicurus alaschanicus."], "Eversmann's redstart": ["A redstart of the species Phoenicurus erythronotus."], "rufous-backed redstart": ["A redstart of the species Phoenicurus erythronotus."], "blue-capped redstart": ["A redstart of the species Phoenicurus caeruleocephala."], "common redstart": ["A redstart of the species Phoenicurus phoenicurus."], "Hodgson's redstart": ["A redstart of the species Phoenicurus hodgsoni."], "white-throated redstart": ["A redstart of the species Phoenicurus schisticeps."], "Daurian redstart": ["A redstart of the species Phoenicurus auroreus."], "Moussier's redstart": ["A redstart of the species Phoenicurus moussieri."], "G\u00fcldenst\u00e4dt's redstart": ["A redstart of the species Phoenicurus erythrogastrus."], "white-winged redstart": ["A redstart of the species Phoenicurus erythrogastrus."], "blue-fronted redstart": ["A redstart of the species Phoenicurus frontalis."], "Romansh language": ["A language of Switzerland."], "dictionary entry": ["Linguistic unit that is a basic element of the lexicon and is stored and used by speakers of a particular language."], "gluttonous": ["Given to excess in consumption of especially food or drink."], "Ebola virus disease": ["A severe and often fatal disease in humans and nonhuman primates, monkeys and chimpanzees, caused by the Ebola virus."], "Ebola virus": ["A virus of the species Zaire ebolavirus which causes a severe and often fatal hemorrhagic fever in humans and other mammals."], "Zaire ebolavirus": ["A virus of the species Zaire ebolavirus which causes a severe and often fatal hemorrhagic fever in humans and other mammals."], "desired": ["Wanted intensely."], "go mad": ["To become insane.", "To do something that is out of character."], "go crazy": ["To become insane.", "To do something that is out of character."], "go nuts": ["To become insane."], "frightened": ["Thrown into a state of intense fear or desperation."], "terrified": ["Thrown into a state of intense fear or desperation."], "perplexed": ["Full of difficulty or confusion or bewilderment."], "wrathful": ["Vehemently incensed and condemnatory."], "shameful": ["Deserving or bringing disgrace or shame."], "muddy": ["To dirty with mud.", "Dirty and messy; covered with mud or muck."], "colorful": ["Having striking colors."], "eutectic": ["(For a mixture of solids) That melts at a temperature lower than the melting temperature of any of its components."], "bang": ["A song that is very popular for a while.", "A bang or blow; the sound of of a crash."], "typographic ligature": ["A special character that is used to represent a sequence of characters."], "synset": ["A set of one or more synonyms, such as those in WordNet."], "synonym set": ["A set of one or more synonyms, such as those in WordNet."], "medicinal": ["Having the therapeutic properties of medicine."], "officinal": ["Having the therapeutic properties of medicine."], "tonsillectomy": ["The surgical ablation of the tonsils."], "troll post": ["A message posted in online forums with the sole purpose of starting heated discussions and annoying people."], "moral suasion": ["Appealing to the ethical principles or beliefs of an adversary or the public to convince the adversary to change behavior or attitudes."], "best friend": ["The closest friend."], "supportive": ["Providing support or assistance."], "doubtful": ["Fraught with uncertainty or doubt."], "pull up": ["A physical exercise performed using arms by pulling oneself up on a horizontal bar until the chin is level with the bar."], "pull-up": ["A physical exercise performed using arms by pulling oneself up on a horizontal bar until the chin is level with the bar."], "trazioni alla sbarra": ["A physical exercise performed using arms by pulling oneself up on a horizontal bar until the chin is level with the bar."], "hotel room": ["A bedroom (usually with bath) in a hotel."], "strum": ["To sound the strings of (a string instrument)."], "beating": ["A corporal punishment inflicted with repeated blows."], "suffering": ["The condition of someone who suffers; a state of pain or distress.", "Troubled by pain or loss."], "chokehold": ["A hold in which someone loops the arm around the neck of another person in a tight grip, usually from behind."], "stare": ["A fixed look with eyes open wide."], "climb up": ["To mount to a high or little accessible place using feet and hands."], "discontinuous": ["(Of a function or curve) possessing one or more discontinuities."], "lexicalize": ["To make or coin into a word or accept a new word into the lexicon of a language."], "stupidly": ["In a stupid manner."], "etioplast": ["A chloroplast that has not been exposed to light."], "rhodium-plating": ["The application of a thin rhodium layer to a surface to improve tarnish resistance."], "spectacular": ["Sensational in appearance or thrilling in effect."], "fateful": ["Causing great distress or injury; bringing ruin."], "unload": ["To take the load off (a container or vehicle)."], "brooch": ["A piece of jewellery that is attached to clothing with a pin."], "immobilize": ["To hold down so as to restrict movement."], "brown-haired": ["Having hair of a brown color."], "white-haired": ["Showing characteristics of age, especially having white hair."], "black-haired": ["Having hair of a dark, black color."], "zodiacal": ["Relating to or included in the zodiac."], "hobble": ["A wooden block, tied around the leg, that was used on horses or prisoners to prevent them from running away."], "chimneystack": ["The portion of a chimney rising above the roof."], "skim over": ["To read superficially."], "lurk": ["To lie in wait, lie in ambush, behave in a sneaky and secretive manner."], "cuff": ["To confine or restrain with or as if with manacles or handcuffs."], "Jew's ear": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "wood ear": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "jelly ear": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "ear fungus": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "common ear fungus": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "Chinese fungus": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "pig's ear": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "black wood ear": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "tree ear": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "Kikurage": ["A species of edible fungus that grows on trees, having an ear-like shape and a brown colouration."], "optimistic": ["Expecting the best."], "solidarity": ["Unity or agreement of feeling or action, especially among members of a group with common interests or purposes."], "fresh yeast": ["Fresh baker's yeast which is sold compressed to a cube."], "quintal": ["A unit of weight equal to 100 kilograms."], "storm cloud": ["A darkish cloud attending rain or a windstorm."], "Allah": ["God, in Islamic context."], "participated": ["Past participle of the verb to participate."], "steer": ["To direct the course (e.g. of a vehicle); determine the direction of travelling."], "sunbathe": ["To expose one's body to the sun."], "combatives": ["A fighting system used by the U.S. Army to train soldiers for dangerous hand-to-hand combat situations."], "HTH": ["[Internet slang abbreviation of the expression \"hope that helps\"]", "[Internet slang abbreviation of the expression \"How The Hell\"]"], "hope that helps": ["[Internet slang abbreviation of the expression \"hope that helps\"]"], "How The Hell": ["[Internet slang abbreviation of the expression \"How The Hell\"]"], "distributed": ["Spread out or scattered about or divided up."], "plum cake": ["A cake made with yeast dough or shortcrust pastry that is spread thin on a baking tray and topped with halved and pitted damsons."], "liberalization": ["The process or act of making more liberal."], "macchiato": ["An espresso with a small amount of frothy steamed milk."], "caff\u00e8 macchiato": ["An espresso with a small amount of frothy steamed milk."], "beach volley": ["A ball sport played by two teams of two players each on a sand court divided by a net."], "exult": ["To express great joy or elation."], "jubilate": ["To express great joy or elation."], "beach volleyball": ["A ball sport played by two teams of two players each on a sand court divided by a net."], "be beached": ["To land on a beach; (of animals) to become stranded out of the water."], "affogato": ["An espresso with a scoop of ice cream."], "gigabyte": ["A unit of information equal to 1000 megabytes or 10^9 (1,000,000,000) bytes."], "terabyte": ["A unit of information equal to 1000 gigabytes or 10^12 (1,000,000,000,000) bytes."], "petabyte": ["A unit of information equal to 1000 terabytes or 10^15 bytes."], "undressed": ["Having removed clothing."], "decameter": ["A metric unit of length equal to ten meters."], "sensual": ["Sexually exciting or gratifying."], "boundary marker": ["Thing driven in the ground and used to delimit a land."], "poor man": ["Person owning no or little possession and income."], "cohabitee": ["A person who cohabits with another."], "night sleep": ["The sleep at night."], "protruding ears": ["Ears that markedly stick outwards."], "three quarters of an hour": ["The duration of an instruction session in German and Austrian schools, shorter sessions are very uncommon."], "spermophilus": ["Genus of rodents, in the squirrel family, living in Eurasia, on the ground."], "spermophilus stricto sensu": ["Genus of rodents, in the squirrel family, living in Eurasia, on the ground."], "devil's advocate": ["A person who takes the worse side just for the sake of argument."], "sacred king": ["In historical societies, king who is believed to be a deity or to have godlike attributes and powers."], "sacral king": ["In historical societies, king who is believed to be a deity or to have godlike attributes and powers."], "myr": ["A unit of one million years, used in geology and astronomy."], "million years": ["A unit of one million years, used in geology and astronomy."], "obtuse-angled": ["(geometry) Of a triangle, having an obtuse angle."], "inconsolable": ["Incapable of being consoled."], "neurotic": ["Characteristic of or affected by neurosis."], "humiliating": ["Causing awareness of one's shortcomings."], "mortifying": ["Causing awareness of one's shortcomings."], "theological": ["Of or relating to or concerning theology."], "rematch": ["Second match played by the loser, hoping to regain what he lost."], "var\u0131ety": ["A partial change in the form, position, state, or qualities of a thing."], "be short": ["To need a number or amount of something, but not having enough or any at all."], "ontological": ["Of or relating to ontology."], "taxonomic": ["Of or relating to taxonomy."], "taxonomical": ["Of or relating to taxonomy."], "toxicology testing": ["Test for the determination of the inherent toxicity of a chemical."], "on the job training": ["Training undertaken in the workplace as part of the productive work of the learner."], "boulder": ["To engage in bouldering; to climb, without ropes, on large boulders or boulder-sized objects."], "unattackable": ["Immune to attack; incapable of being tampered with."], "inviolable": ["Immune to attack; incapable of being tampered with."], "resinous": ["Having the characteristics of pitch or tar."], "resiny": ["Having the characteristics of pitch or tar."], "ionizing radiation": ["Radiation that is capable of energizing atoms sufficiently to remove electrons from them."], "citrus grove": ["Place where citrus trees are grown, in particular for their fruits."], "comic book shop": ["A shop where comic books are sold."], "preparatory measure": ["Work preparing or laying the ground for something that is planned to come later."], "written account": ["A written document expressing knowledge of facts or events."], "brittle": ["Having hardness and rigidity but little tensile strength."], "locker": ["A storage compartment for clothes and valuables; usually it has a lock."], "baozi": ["A steamed, filled bun or bread-like (i.e. made with yeast) item in various Chinese cuisines."], "bao": ["A steamed, filled bun or bread-like (i.e. made with yeast) item in various Chinese cuisines."], "bau": ["A steamed, filled bun or bread-like (i.e. made with yeast) item in various Chinese cuisines."], "humbow": ["A steamed, filled bun or bread-like (i.e. made with yeast) item in various Chinese cuisines."], "nunu": ["A steamed, filled bun or bread-like (i.e. made with yeast) item in various Chinese cuisines."], "bausak": ["A steamed, filled bun or bread-like (i.e. made with yeast) item in various Chinese cuisines."], "pow": ["A steamed, filled bun or bread-like (i.e. made with yeast) item in various Chinese cuisines."], "pau": ["A steamed, filled bun or bread-like (i.e. made with yeast) item in various Chinese cuisines."], "yesteryear": ["Last year."], "fire drill": ["A method of practicing the evacuation of a building for a fire or other emergency."], "rotted": ["Having changed its colour, smell or composition (partially or completely), due to being attacked and decomposed by microorganisms (relating to organic matter); damaged by decay."], "putto": ["A representation of a naked, often winged, child, especially a cherub or a cupid in Renaissance or Baroque art."], "overthrow": ["To cause the downfall of; to remove violently."], "ankle monitor": ["A device that individuals under house arrest or parole are often required to wear to track their location."], "somewhat stupid": ["Marked by lack of intellectual acuity or somewhat mentally limited."], "a little stupid": ["Marked by lack of intellectual acuity or somewhat mentally limited."], "semordnilap": ["A word, which, when spelled backward, creates another word."], "pangram": ["A sentence which contains every letter of the alphabet only once.", "A sentence which contains every letter of the alphabet at least once."], "emordnilap": ["A word, which, when spelled backward, creates another word."], "person with a sunlamp tan": ["A person who gets tanned using a sun lamp."], "tittle": ["The little dot above lower case letter \u2018i\u2019s and lowercase letter \u2018j\u2019s."], "incompatible": ["Not compatible."], "autumn wind": ["Wind blowing in autumn."], "dairyman": ["Farmer who specializes in the production of milk; the owner of a diary."], "chesty": ["Having extreme self-confidence and overbearing pride."], "lacustrine": ["Of or relating to lakes."], "chronophotograph": ["A photograph or a series of photographs of a moving object taken for the purpose of recording and showing successive phases of the motion."], "chronophoto": ["A photograph or a series of photographs of a moving object taken for the purpose of recording and showing successive phases of the motion."], "leg lace": ["A hold in which the wrestler grasps the opponent by the ankles with his/her arms and exposes the opponent's back to the mat."], "ankle lace": ["A hold in which the wrestler grasps the opponent by the ankles with his/her arms and exposes the opponent's back to the mat."], "ankle lock": ["A hold in which the wrestler grasps the opponent by the ankles with his/her arms and exposes the opponent's back to the mat."], "Babelfy": ["A multilingual state-of-the-art system for integrated Word Sense Disambiguation and Entity Linking."], "ventricular": ["Of or relating to a ventricle (of the heart or brain)."], "recurrent": ["Recurring again and again."], "long-lasting": ["Existing for a long time."], "long-standing": ["Recurring again and again."], "long standing": ["Recurring again and again."], "sea bass": ["The lean flesh of a saltwater fish of the family Serranidae."], "reap": ["To gather the ripened crop."], "break wind": ["To emit digestive gases through the anus."], "chase away": ["Force to go away."], "spark": ["A small particle or body of shining or glowing matter, either molten or on fire."], "speckle": ["A round or irregular patch on the surface of a thing having a different color, texture etc."], "take back": ["To regain possession of something."], "Westphalian": ["The collection of vernacular languages spoken in Westphalia in Germany."], "Aeolic Greek": ["A linguistic term used to describe a set of rather archaic Greek sub-dialects, spoken mainly in Boeotia (a region in Central Greece), in Lesbos (an island close to Asia Minor) and in other Greek colonies."], "startup": ["The act of setting something in operation."], "abseiling": ["A descent down a nearly vertical surface by using a doubled rope that is coiled around the body and attached to some higher point."], "impure": ["Combined with extraneous elements.", "(used of persons or behaviors) immoral or obscene."], "bottle cork": ["Conical or cylindrical-shaped plug that is pushed in the bottleneck of a (wine) bottle to stop it up."], "paralympic": ["Relating to the Paralympic Games."], "work out": ["To do physical exercise to improve one's fitness."], "might": ["Muscular capacity to modify the speed of an external physical object, to deform it or to oppose another force."], "ice-cream man": ["A person who sells ice cream."], "ice cream man": ["A person who sells ice cream."], "ice cream maker": ["A person who makes ice creams."], "ice-cream maker": ["A person who makes ice creams."], "traveling": ["Relating to or used for travel."], "special delivery": ["Mail that is delivered by a special carrier (for an additional charge)."], "prizefighter": ["A professional boxer."], "abs": ["The muscles of the abdomen."], "ab": ["The muscles of the abdomen."], "churro": ["A fried pastry, typically eaten as a dessert and with chocolate beverage."], "pilfer": ["To make off with belongings of others; to steal in small quantities."], "dehumanize": ["To deprive of human qualities."], "fertilize": ["To provide with fertilizers or add nutrients to.", "To make fertile or productive.", "To introduce semen into (a female)."], "inseminate": ["To introduce semen into (a female)."], "digitalize": ["To put into digital form, as for use in a computer."], "fluke": ["A difficult task that you can do thanks to a stroke of luck."], "stroke of luck": ["A difficult task that you can do thanks to a stroke of luck."], "decontaminate": ["To rid of contamination."], "abandonware": ["A software product, especially a video game, whose copyright is no longer defended or which is no longer marketed even by the company who made it."], "manzanita": ["Species of the genus Arctostaphylos; evergreen shrubs or small trees present in the chaparral biome of western North America."], "tule": ["A giant species of sedge in the plant family Cyperaceae, native to freshwater marshes. Dyed and woven, tules are used to make baskets, bowls, mats, hats, clothing, duck decoys, and even boats by Native American groups."], "jackrabbit": ["Mammal of the family hares and rabbits (Leporidae) with long ears, short tail and hindlegs which are shorter than the forelegs and permit running quickly."], "system administrator": ["Someone who administers a computer system or computer network and who has special rights and tasks."], "system admin": ["Someone who administers a computer system or computer network and who has special rights and tasks."], "springtime lethargy": ["A general sense of weariness in the springtime, specifically between mid-March through mid-April."], "Palatinean": ["A language of Germany."], "organized religion": ["An institution to express belief in a divine power."], "bearing puller": ["Tool aimed at pulling forcibly a wheel from its axle."], "wheel puller": ["Tool aimed at pulling forcibly a wheel from its axle."], "gear puller": ["Tool aimed at pulling forcibly a wheel from its axle."], "shot": ["The act of firing a projectile."], "normalize": ["To become normal or return to its normal state.", "To make normal or cause to conform to a norm or standard."], "palindromic": ["Of a word, verse, sentence or number that reads the same backward or forward."], "lancet window": ["A narrow window having a lancet arch and without tracery."], "terminological": ["Of or concerning terminology."], "back of head": ["The back part of the head."], "dragon food": ["A peace offering brought by a guilty husband to placate his wive.", "Food to be eaten by dragons."], "barbel": ["European freshwater fish belonging to the family of carps (Cyprinidae), Genus of barbus."], "Central American Spanish": ["The variety of Spanisch spoken in Central America."], "basis": ["The bottom or lowest part."], "birthmark": ["A benign irregularity on the skin which is present at birth or appears shortly after birth, usually in the first month. Birthmarks are caused by overgrowth of blood vessels, melanocytes, smooth muscle, fat, fibroblasts, or keratinocytes."], "blood vessel": ["Part of the circulatory system that transports blood throughout the human body."], "ribes": ["A member of the genus Ribes in the gooseberry family Grossulariaceae, native to parts of western Europe (France, Belgium, Netherlands, Germany, and northern Italy). It is a deciduous shrub normally growing to 1-1.5 m tall, occasionally 2 m, with five-lobed leaves arranged spirally on the stems."], "dog-rose": ["The dog-rose (rosa canina) is a variable climbing wild rose species native to Europe, northwest Africa and western Asia and whose fruit is known as hip."], "dreadful": ["Causing dread; very bad."], "freckle": ["A small brownish or reddish pigmentation spot on the surface of the skin."], "free of charge": ["Without cost."], "weather verb": ["A verb of any language that refers to a weather condition, such as \"to rain\"."], "weather sentence": ["In linguistics, a verb phrase or sentence employing a so called weather verb, that is one having a weak, sematically empty, or no subject at all, depending on the language."], "gipsy": ["Gipsy is a common word used to indicate Romani people, Tinkers and Travellers."], "gypsy": ["Gipsy is a common word used to indicate Romani people, Tinkers and Travellers."], "glutton": ["Person who habitually eats and drinks excessively."], "hump": ["A hump may refer to a camel's hump containing its fat reservoir or alternatively to the curve on an upper spine that causes a hunchback."], "low voice": ["Speaking quietly: to talk in a low voice."], "meek": ["Tender and amiable; of a considerate or kindly disposition."], "moist": ["(Of the air) Containing a high quantity of water vapor."], "river mouth": ["A river mouth or stream mouth is a part of a river where it flows into the sea, river, lake, reservoir or ocean."], "turbid": ["A fluid which is cloudy or hazy due to large numbers of individual particles that are generally invisible to the naked eye, similar to smoke in air."], "multitude": ["A large number of something."], "palate": ["The roof of the mouth in humans and other mammals."], "peak of mountain": ["The highest point of a mountain."], "poetry": ["The class of literature comprising poems; a poet's literary production; composition in verse or language exhibiting conscious attention to patterns."], "pure": ["Free from contaminants or extraneous elements."], "scanty": ["Somewhat less than is needed in amplitude or extent."], "spicy": ["Of, pertaining to, or containing spice; or spicy flavour: Provoking a burning sensation due to the presence of chillies or similar hot spices."], "spicey": ["Of, pertaining to, or containing spice; or spicy flavour: Provoking a burning sensation due to the presence of chillies or similar hot spices."], "spruce": ["Any of various large coniferous evergreen trees from the genus Picea, found in northern temperate and boreal regions."], "surface": ["The overside or up-side of a flat object such as a table, or of a liquid; the outside hull of a tangible object."], "infected": ["Referring to something or someone that has received an infection."], "copulate": ["To engage in sexual intercourse."], "dilute": ["To weaken or make thinner by adding a foreign substance or a solvent (e.g. water) to a solution."], "dislocate": ["To (accidentally) dislodge a skeletal bone from its joint."], "grow up": ["To mature and become an adult."], "hew": ["To chop away at; to whittle down; to mow down."], "hinder": ["To make difficult to accomplish; to frustrate, act as obstacle; to keep back; to delay or impede; to prevent."], "infringe": ["To commit a crime less serious than a felony."], "inhabit": ["To have permanent residence."], "marry off": ["To force someone to get married, usually a relative."], "offend": ["To hurt the feelings of; to displease; to make angry; to insult."], "pass by": ["To travel past without stopping."], "brother of a man": ["The brother of a man."], "brother of a woman": ["The brother of a woman."], "sister of a man": ["The sister of a man."], "sister of a woman": ["The sister of a woman."], "agricultural farm": ["A farm where agricultural tasks are performed."], "result in": ["Having a specific result, a logical consequence."], "rebel": ["To resist or become defiant toward an authority."], "strew": ["To distribute objects or pieces of something over an area, especially in a random manner."], "scatter": ["To distribute objects or pieces of something over an area, especially in a random manner."], "sway": ["To move or swing from side to side; or backward and forward; to rock."], "tread": ["To step or walk (on or over something); to trample."], "tremble": ["To shake nervously, as if from fear."], "hog": ["A common, four-legged animal (Sus scrofa) that has cloven hooves, bristles and a nose adapted for digging and is farmed by humans for its meat."], "circuit breaker": ["Device designed to protect an electrical circuit by interrupting automatically the current flow in case of overload, and which can then be reset without changing any part of it."], "Southern Quechua": ["The most widely spoken of the major regional groupings of mutually intelligible dialects within the Quechua language family."], "safety pin": ["A pin having a closing mechanism including a spring and a guard to cover the sharp end."], "baby pin": ["A pin having a closing mechanism including a spring and a guard to cover the sharp end."], "college student": ["A student of a higher education institution."], "university student": ["A student of a higher education institution."], "pinus sibirica": ["Species of pine tree in the family Pinaceae that occurs in Siberia and Mongolia, whose 5-13 cm long leaves ('needles') are in fascicles (bundles) of five, with a deciduous sheath and 3 resin canals."], "Siberian pine": ["Species of pine tree in the family Pinaceae that occurs in Siberia and Mongolia, whose 5-13 cm long leaves ('needles') are in fascicles (bundles) of five, with a deciduous sheath and 3 resin canals."], "have lunch": ["To eat lunch."], "floppy": ["lacking the expected or needed stiffness, unleasantly soft."], "slack": ["lacking the expected or needed stiffness, unleasantly soft."], "sloppy": ["Lacking seriousness or earnestness; not in a serious mood."], "wishi-washi": ["Expressed in an unclear fashion."], "turn around": ["To turn and face the other direction."], "bogeyman": ["Common allusion to a mythical creature in many cultures used by adults or older children to frighten bad children into good behavior."], "selfish": ["Pertaining to or of the nature of egoism."], "Talossan": ["A constructed language created by Robert Ben Madison in 1980 for the micronation he founded, the Kingdom of Talossa."], "biomembrane": ["A thin tissue that encloses or lines biological cells, organs, or other structures."], "biological membrane": ["A thin tissue that encloses or lines biological cells, organs, or other structures."], "self-sufficiency": ["The state of not requiring any aid, support, or interaction, for survival."], "underevaluation": ["Estimation of the value of something or someone inferior to its real value."], "underestimation": ["Estimation of the value of something or someone inferior to its real value."], "opisthenar": ["The back of the hand."], "prosody": ["The study of the rhythmic structure of a verse or lines in verse.", "The study of the rhythm, stress, and intonation of speech.", "The manner of associating syllables of a text to be sung to notes of a melody."], "Kumhar Bhag Paharia": ["A Dravidian language spoken by the Komhar Bhag Paharia tribe in Rajmahal Hills, India."], "psychoneurotic": ["Relating to a psychoneurosis.", "A person suffering from a psychoneurosis."], "psychoneurosis": ["A mental disorder that has symptoms of both neurosis and psychosis."], "levant": ["To abscond or run away, especially to avoid paying money or debts."], "couldn't-care-less attitude": ["The attitude of someone who is ostentatiously not interested in anything or anyone, doing things according to its own interests."], "noctambule": ["A person who likes to stay up until late at night."], "acid-free paper": ["A paper that if infused in water yields a neutral or basic pH (7 or slightly greater)."], "decontaminant": ["Of or relating to decontamination."], "woven": ["Fabricated by weaving."], "wheaten": ["Of, pertaining to, or made from wheat."], "waste-ridden": ["Dominated or plagued by waste."], "war-ridden": ["Dominated or plagued by war."], "violence-ridden": ["Dominated or plagued by violence."], "unwritten": ["Not written."], "typewritten": ["Written using a typewriter."], "spoken": ["Relating to speech."], "abiogenetically": ["To have created life without life."], "rasp": ["A long metal tool covered with sharp teeth used for shaping wood or other material.", "To use a rasp."], "abstractly": ["In an abstract state or manner."], "cyclically": ["Happening or occurring in cycles."], "acyclically": ["In an acyclic manner; without cycles."], "acyclic": ["Not cyclic."], "ad hoc": ["For a particular purpose."], "spare tire": ["An extra car wheel and tire for a four-wheel vehicle."], "spare wheel": ["An extra car wheel and tire for a four-wheel vehicle."], "spare tyre": ["An extra car wheel and tire for a four-wheel vehicle."], "prefabricated": ["Manufactured in advance, usually to a standard format, and then assembled on site."], "ISO 9000": ["A family of quality management systems standards designed to help organizations ensure that they meet the needs of customers and other stakeholders while meeting statutory and regulatory requirements related to a product."], "Barquisimeto": ["The fourth-largest city in Venezuela and the capital of the state of Lara."], "Maracay": ["A city in north-central Venezuela, near the Caribbean coast, and is the capital and most important city of the state of Aragua."], "Ciudad Guayana": ["A city in Bol\u00edvar State, Venezuela which lies south of the Orinoco, where the river is joined by the Caron\u00ed River."], "San Cristobal": ["The capital city of the Venezuelan state of T\u00e1chira. It is located in a mountainous region of Western Venezuela."], "Barranquilla": ["A city and municipality located in northern Colombia, located near the Caribbean Sea."], "Arequipa": ["The capital and largest city of the Arequipa Region and the second most populous city of Per\u00fa."], "Trujillo": ["A city in coastal northwestern Peru, located on the banks of the Moche River, near its mouth at the Pacific Ocean.", "A municipality located in the province of C\u00e1ceres, in the autonomous community of Extremadura, Spain.", "The capital city of Trujillo State in Venezuela."], "Cusco": ["A city in southeastern Peru, near the Urubamba Valley of the Andes mountain range."], "Callao": ["The chief seaport of Peru, located west of Lima."], "Cochabamba": ["A city in central Bolivia, located in a valley bearing the same name in the Andes mountain range."], "Goi\u00e2nia": ["The capital and largest city of the Brazilian state of Goi\u00e1s."], "Campinas": ["A Brazilian municipality in S\u00e3o Paulo State, part of the country's Southeast Region."], "Fortaleza": ["The state capital of Cear\u00e1, located in Northeastern Brazil."], "Florian\u00f3polis": ["The capital city and second largest city of Santa Catarina state in the Southern region of Brazil."], "Rosario": ["The largest city in the province of Santa Fe, in central Argentina."], "Mendoza": ["The capital city of Mendoza Province, in Argentina, located in a region of foothills and high plains, on the eastern side of the Andes."], "Bariloche": ["A city in the province of R\u00edo Negro, Argentina, situated in the foothills of the Andes on the southern shores of Nahuel Huapi Lake."], "temporality": ["The condition of being temporal."], "papyrus sedge": ["A species of aquatic flowering plant belonging to the sedge family Cyperaceae."], "paper reed": ["A species of aquatic flowering plant belonging to the sedge family Cyperaceae."], "Indian matting plant": ["A species of aquatic flowering plant belonging to the sedge family Cyperaceae."], "Nile grass": ["A species of aquatic flowering plant belonging to the sedge family Cyperaceae."], "softly softly": ["In a very tactful, careful, or nondisruptive manner."], "abductive reasoning": ["A form of logical inference that predicts a probable cause to a given observation."], "abductive inference": ["A form of logical inference that predicts a probable cause to a given observation."], "retroduction": ["A form of logical inference that predicts a probable cause to a given observation."], "Salzburgian": ["Relating to the Austrian state of Salzburg.", "A person from Salzburg."], "cymotrichous": ["Having wavy hair."], "access point": ["A device, such as a WLAN or Internet modem, that permits wireless devices to connect to a network."], "wireless access point": ["A device, such as a WLAN or Internet modem, that permits wireless devices to connect to a network."], "dynamic DNS": ["A system by which Internet Service Providers temporarily assign IP addresses allowing the reassignment of the address when no longer in use."], "IP address": ["A numerical label assigned to each device (e.g., computer, printer) participating in a computer network that uses the Internet Protocol for communication."], "electrolyte": ["A substance that, in solution or when molten, ionizes and conducts electricity."], "helical": ["In the shape of a helix."], "hydrometer": ["Instrument that floats in a liquid and measures its specific gravity on a scale."], "intranet": ["A private computer network that uses the protocols of the Internet."], "jumper": ["A short length of cable used to make an electrical connection or to bypass a circuit."], "MAC address": ["A unique identifying number assigned to most network devices."], "Media Access Control address": ["A unique identifying number assigned to most network devices."], "nickel\u2013cadmium battery": ["A type of rechargeable battery using nickel oxide hydroxide and metallic cadmium as electrodes."], "Ni-Cd battery": ["A type of rechargeable battery using nickel oxide hydroxide and metallic cadmium as electrodes."], "oscillograph": ["An instrument for measuring alternating or varying electric current in terms of current and voltage."], "overload": ["An excessive load."], "photovoltaic": ["Producing a voltage when exposed to light."], "photovoltaic cell": ["A device that absorbs radiant energy and converts it into electrical energy."], "refractor telescope": ["A type of optical telescope that uses a lens as its objective to form an image (also referred to a dioptric telescope)."], "autosome": ["A chromosome not involved in sex determination."], "bacterial artificial chromosome": ["A DNA construct, based on a functional fertility plasmid (or F-plasmid), used for transforming and cloning in bacteria, usually E. coli."], "plasmid": ["A small DNA molecule within a cell that is physically separated from a chromosomal DNA and can replicate independently."], "nucleobase": ["The base of a nucleic acid, such as thymine, uracil, adenine, cytosine and guanine."], "base pair": ["The building blocks of the DNA double helix and contribute to the folded structure of both DNA and RNA."], "base sequence": ["The order of nucleotide bases in a DNA molecule; determines structure of proteins encoded by that DNA."], "chromosomal deletion": ["A mutation in which a part of a chromosome or a sequence of DNA is missing."], "deletion": ["A mutation in which a part of a chromosome or a sequence of DNA is missing."], "deletion mutation": ["A mutation in which a part of a chromosome or a sequence of DNA is missing."], "gene deletion": ["A mutation in which a part of a chromosome or a sequence of DNA is missing."], "chromosomal inversion": ["A chromosome rearrangement in which a segment of a chromosome is reversed end to end."], "comparative genomics": ["A field of biological research in which the genomic features of different organisms are compared."], "genomics": ["A discipline in genetics that applies recombinant DNA, DNA sequencing methods, and bioinformatics to sequence, assemble, and analyze the function and structure of genomes (the complete set of DNA within a single cell of an organism)."], "cytogenetics": ["A branch of genetics that is concerned with the study of the structure and function of the cell, especially the chromosomes."], "DNA replication": ["The process of producing two identical replicas from one original DNA molecule."], "DNA repair": ["A collection of processes by which a cell identifies and corrects damage to the DNA molecules that encode its genome."], "DNA sequence": ["A succession of letters that indicate the order of nucleotides within a DNA (using GACT) or RNA (using GACU) molecule."], "electrophoresis": ["The motion of dispersed particles relative to a fluid under the influence of a spatially uniform electric field."], "functional genomics": ["A field of molecular biology that attempts to make use of the vast wealth of data produced by genomic projects (such as genome sequencing projects) to describe gene (and protein) functions and interactions."], "retroviral": ["Of or pertaining to a retrovirus."], "retroviral infection": ["The presence of retroviral vectors, such as some viruses, which use their recombinant DNA to insert their genetic material into the chromosomes of the host's cells."], "acceptance criteria": ["The criteria that the software component, product, or system must satisfy in order to be accepted by the customer."], "batch processing": ["The execution of a series of programs (\"jobs\") on a computer without manual intervention."], "business rule": ["A rule that defines or constrains some aspect of business and is intended to assert business structure or to control or influence the behavior of the business."], "code review": ["A systematic examination of computer source code."], "configuration management": ["A systems engineering process for establishing and maintaining consistency of a product's performance, functional and physical attributes with its requirements, design and operational information throughout its life cycle."], "entity\u2013relationship model": ["A data model for describing the data or information aspects of a business domain or its process requirements, in an abstract way that lends itself to ultimately being implemented in a database such as a relational database."], "lifecycle": ["The phases, changes, or stages through which an organism passes throughout its lifetime.", "The useful life of a product or system; the developmental history of an individual or group in society."], "object code": ["A sequence of statements or instructions in a computer language, usually a machine code language (i.e., binary) or an intermediate language, produced by a compiler."], "prototyping": ["The rapid creation of prototypes of a new product for demonstration and research purposes."], "pseudocode": ["A description of a computer programming algorithm that uses the structural conventions of programming languages but omits detailed subroutines or language-specific syntax."], "referential": ["Serving as a reference."], "reusability": ["The property or degree of being reusable."], "self-join": ["An operation that combines records from the same table in a relational database."], "timestamp": ["The date and time at which an event occurred, often included in a log to track the sequence of events."], "accredited": ["Given official approval after meeting certain standards."], "accredited translator": ["A translator who has received accreditation from a professional institute."], "certify": ["To attest to as the truth or meeting a standard."], "certified translation": ["A translation that has been reviewed by a translator and considered an accurate and correct reflection of the source text."], "computer-aided design": ["Software with the capability of performing standard engineering drawings.", "The process of using drawings made by using a computer to design machines, buildings, etc."], "computer-aided": ["Using a computer as an indispensable tool in a certain field, usually derived from more traditional fields of science and engineering."], "computer-assisted": ["Using a computer as an indispensable tool in a certain field, usually derived from more traditional fields of science and engineering."], "management system": ["Using a computer as an indispensable tool in a certain field, usually derived from more traditional fields of science and engineering."], "computer-aided translation": ["Translation with the aid of computer programs, designed to reduce the translator\u2019s workload and increase consistency of style and terminology."], "computer-assisted translation": ["Translation with the aid of computer programs, designed to reduce the translator\u2019s workload and increase consistency of style and terminology."], "machine-aided translation": ["Translation with the aid of computer programs, designed to reduce the translator\u2019s workload and increase consistency of style and terminology."], "conference interpreter": ["A specialist in communication between people and cultures whose role is to convey the content of a spoken message from one language into another."], "freelance translator": ["A self-employed translator, who may undertake work for translation agencies, localisation companies and/or directly for end clients."], "literal translation": ["A translation that closely adheres to the wording and construction of the source text."], "mother-tongue": ["The language one first learned; the language one grew up with; one's native language."], "whispered interpreting": ["A simultaneous interpreting, whereby the interpreter sits close to the listener and whispers the translation without technical aids."], "simultaneous interpreting": ["A type of oral translation from one language into another which is produced at the same time as a person is speaking."], "simultaneous interpretation": ["A type of oral translation from one language into another which is produced at the same time as a person is speaking."], "base anhydride": ["A type of oxide that can form a base if water is added."], "binary compound": ["A compound that consists of specifically two elements."], "absorber": ["A material that readily absorbs photons to generate charge carriers (free electrons)."], "absorption coefficient": ["The factor by which photons are absorbed as they travel a unit distance through a material."], "attenuation coefficient": ["A characterization of how easily a volume or material can be penetrated by a beam of light, sound, particles, or other energy or matter."], "active solar heater": ["A solar water or space-heating system that moves heated air or water using pumps or fans."], "ampacity": ["The current-carrying capacity of conductors or equipment, expressed in amperes."], "amorphous semiconductor": ["A non-crystalline semiconductor material that has no long-range order."], "amorphous silicon": ["A non-crystalline semiconductor material that has no long-range order."], "flowerpot": ["Container in which flowers and other plants are cultivated and displayed."], "antireflection coating": ["A thin coating of a material, which reduces the light reflection and increases light transmission, applied to a photovoltaic cell surface."], "antireflection": ["Preventing visible reflection."], "armored cable": ["A cable provided with a wrapping of metal, usually steel wires or tapes, primarily for the purpose of mechanical protection."], "electric arc": ["An electrical breakdown of a gas that produces an ongoing plasma discharge, resulting from a current through normally nonconductive media such as air."], "breakdown voltage": ["(of an insulator) The minimum voltage that causes a portion of an insulator to become electrically conductive."], "electrical breakdown": ["A rapid reduction in the resistance of an electrical insulator when the voltage applied across it exceeds the breakdown voltage."], "dielectric breakdown": ["A rapid reduction in the resistance of an electrical insulator when the voltage applied across it exceeds the breakdown voltage."], "arc-over voltage": ["The minimum voltage required to cause an arc between electrodes separated by a gas or liquid insulation."], "base load": ["That part of electricity demand which is continuous, and does not vary over a 24-hour period. Approximately equivalent to the minimum daily load."], "critical mass": ["The smallest amount of fissile material needed for a sustained nuclear chain reaction."], "electric power industry": ["The generation, transmission, distribution and sale of electric power to the general public."], "dielectric": ["An electrical insulator that can be polarized by an applied electric field."], "dielectric material": ["An electrical insulator that can be polarized by an applied electric field."], "electric field": ["A component of the electromagnetic field."], "electromagnetic field": ["A physical field produced by electrically charged objects."], "dustproof": ["Resistant to dust."], "failproof": ["Resistant to failure."], "fail-safe": ["That doesn't cause undue damage, in the event of failure.", "Equipped with a secondary system that insures continued operation even if the primary system fails."], "failsafe": ["That doesn't cause undue damage, in the event of failure.", "Equipped with a secondary system that insures continued operation even if the primary system fails."], "electrical grid": ["An integrated system of electricity distribution, usually covering a large area."], "electric line truck": ["A truck used to transport personnel, tools, and material for electric supply line work."], "truck-mounted crane": ["A truck with a chassis built-in crane, used to load and unload goods in the truck itself, or to move the goods within the range of the crane."], "crawler crane": ["A crane mounted on an undercarriage with a set of Caterpillar tracks that provide stability and mobility."], "tower crane": ["A type of balance crane made of a detachable metal structure, powered by electricity, specially designed to work as a tool in building."], "bridge crane": ["A type of crane where the hook-and-line mechanism runs along a horizontal beam that itself runs along two widely separated rails."], "overhead crane": ["A type of crane where the hook-and-line mechanism runs along a horizontal beam that itself runs along two widely separated rails."], "citric": ["Of, pertaining to, or derived from lemon."], "absorbability": ["The state or quality of being absorbable."], "impracticable": ["Incapable of being put into practice or accomplished; not feasible."], "deskfast": ["A breakfast eaten at work, particularly while sitting at a desk."], "personal": ["Of or pertaining to a particular person.", "(grammar) Denoting a person."], "put to the proof": ["to check a property or quality of"], "per": ["For each."], "piezoelectricity": ["The electric charge that accumulates in certain solid materials in response to applied mechanical stress."], "piezoelectric": ["Of or relating to piezoelectricity."], "piezoelectric effect": ["The ability of certain materials to generate an electric charge in response to applied mechanical stress."], "gravitational": ["Pertaining to, or caused by, gravity or gravitation."], "ferroelectric": ["Of, or relating to the permanent electrical polarization of a crystalline dielectric in an electric field."], "ferroelectricity": ["A property of certain materials that have a spontaneous electric polarization that can be reversed by the application of an external electric field."], "luminescence": ["Any emission of light that cannot be attributed merely to the temperature of the emitting body."], "incandescence": ["A physical phenomenon manifested by a light emission due to the temperature of a heated body."], "piezoluminescence": ["A form of luminescence created by pressure upon certain solids."], "fluorescence": ["The emission of light by a substance that has absorbed light or other electromagnetic radiation."], "frictional": ["Relating to, or caused by, friction."], "frictional unemployment": ["(economics) A type of unemployment explained by people being temporarily between jobs, searching for new ones."], "structural unemployment": ["A form of unemployment where, at a given wage, the quantity of labor supplied exceeds the quantity of labor demanded."], "fuel injection": ["A system for admitting fuel into an internal combustion engine."], "exhaust system": ["System consisting of the parts of an engine through which burned gases or steam are discharged."], "catalytic": ["(chemistry) Having properties facilitating chemical reaction or change."], "transgender": ["Having a gender which is the different from one's natal sex."], "eurozone": ["A monetary union of 19 European Union (EU) member states that have adopted the euro (\u20ac) as their common currency and sole legal tender."], "euro area": ["A monetary union of 19 European Union (EU) member states that have adopted the euro (\u20ac) as their common currency and sole legal tender."], "poo-bus": ["A bus powered bybiomethane natural gas made from animal waste."], "toroidal": ["Having the shape of a torus or toroid."], "scientific theory": ["A well-substantiated explanation of some aspect of the natural world that is acquired through the scientific method and repeatedly tested and confirmed through observation and experimentation."], "scientific method": ["A body of techniques for investigating phenomena, acquiring new knowledge, or correcting and integrating previous knowledge."], "pseudoscience": ["A claim, belief or practice which is incorrectly presented as scientific, but does not adhere to a valid scientific method, cannot be reliably tested, or otherwise lacks scientific status."], "Palmyra": ["(historical) an ancient Aramaic oasis-city in Syria, on the site of present-day Tadmor."], "Crimean Federal District": ["One of the nine federal districts of Russia, established on March 21, 2014 after the annexation of Crimea by the Russian Federation."], "streaming media": ["Multimedia that is constantly received by and presented to an end-user while being delivered by a provider."], "acetic acid": ["An acid with the chemical formula CH3COOH found typically in vinegar."], "ethanoic acid": ["An acid with the chemical formula CH3COOH found typically in vinegar."], "Atrato": ["A river of northwestern Colombia which rises in the slopes of the Western Cordillera and flows almost due north to the Gulf of Urab\u00e1 (or Gulf of Dari\u00e9n), where it forms a large, swampy delta."], "oil well": ["A boring in the Earth that is designed to bring petroleum oil hydrocarbons to the surface."], "flammability": ["The ability of a substance to burn or ignite, causing fire or combustion."], "flash point": ["The lowest temperature at which a volatile material can vaporize to form an ignitable mixture in air."], "fire point": ["The temperature at which the vapour produced by a fuel will continue to burn for at least 5 seconds after ignition by an open flame."], "kindling point": ["The lowest temperature at which a substance will spontaneously ignite in a normal atmosphere without the need of an external source of ignition, such as a flame or spark."], "autoignition temperature": ["The lowest temperature at which a substance will spontaneously ignite in a normal atmosphere without the need of an external source of ignition, such as a flame or spark."], "autoignition": ["Spontaneous ignition."], "gas field": ["A field containing natural gas but no oil."], "natural gas field": ["A field containing natural gas but no oil."], "gas injection": ["The process whereby separated associated gas is pumped back into a reservoir for conservation purposes or to maintain the reservoir pressure."], "liquefied natural gas": ["Oilfield or naturally occurring gas, chiefly methane, liquefied for transportation."], "life-lie": ["An untrue belief that someone clings to in order to make life bearable."], "grand delusion": ["An untrue belief that someone clings to in order to make life bearable."], "hydration": ["(biology) The process of providing an adequate amount of water to body tissues."], "rehydration": ["The replenishment of water and electrolytes lost through dehydration."], "rehydrate": ["To restore water that has been removed or lost; to moisten something that has dried."], "hydrate": ["To take up, consume or become linked to water.", "A solid compound containing or linked to water molecules."], "Natasha": ["Female Russian first name."], "echo chamber": ["A hollow enclosure used to produce reverberated sounds, usually for recording purposes.", "A situation in which information, ideas, or beliefs are amplified or reinforced by transmission and repetition inside an \"enclosed\" system, where different or competing views are censored, disallowed or otherwise underrepresented."], "anechoic chamber": ["A room designed to completely absorb reflections of either sound or electromagnetic waves."], "filter bubble": ["A personalized search in which a website algorithm selectively guesses what information a user would like to see based on information about the user (such as location, past click behavior and search history) and, as a result, users become separated from information that disagrees with their viewpoints, effectively isolating them in their own cultural or ideological bubbles."], "disinformation": ["Intentionally false or inaccurate information that is spread deliberately."], "Cunibert": ["Male first name."], "non-insurable": ["Not capable of being insured."], "per stirpes": ["By representation or class."], "per capita": ["By total number of individuals."], "protective cover": ["Object that holds something to protect it."], "offshore": ["Located in the sea away from the coast."], "Phinehas": ["Character of the Old Testament, ancient Hebrew priest (son of Eleazar, himself son of Aaron) known for having killed together an Israelite man and a Midianite woman in order to combat idolatry spreading among Israelites committing sexual immorality with foreign women."], "Phineas": ["Character of the Old Testament, ancient Hebrew priest (son of Eleazar, himself son of Aaron) known for having killed together an Israelite man and a Midianite woman in order to combat idolatry spreading among Israelites committing sexual immorality with foreign women."], "Phinees": ["Character of the Old Testament, ancient Hebrew priest (son of Eleazar, himself son of Aaron) known for having killed together an Israelite man and a Midianite woman in order to combat idolatry spreading among Israelites committing sexual immorality with foreign women."], "everyone is different": ["Proverb telling that people tend to be unique individuals having their own quirks each, little or profound."], "silver lining": ["A good aspect of a mostly bad event."], "ossuary": ["A small container that holds the bones of a deceased person.", "A place for holding the bones of the dead."], "barge": ["A large flat-bottomed towed or self-propelled boat used mainly for river and canal transport of heavy goods or bulk cargo."], "wanderlust": ["A strong desire to travel around the world."], "hash": ["The result of a computation during which from a large set of data a small figure or few characters are determined that change, when the data changes."], "parry": ["To impede the movement of (an opponent or a ball)."], "open source software": ["Software that everyone is free to copy, redistribute and modify."], "palagonite": ["An alteration product from the interaction of water with volcanic glass of chemical composition similar to basalt."], "dutch door": ["A door having two separate blades or parts, located above and below one another, the upper of which usually can be opened and closed independently from the other which most often can be moved only together with the upper part."], "tensor muscle": ["A muscle that stretches a body part, or renders it tense."], "holoalphabetic sentence": ["A sentence which contains every letter of the alphabet only once.", "A sentence which contains every letter of the alphabet at least once."], "plant science": ["A branch of the biological sciences which embraces the study of plants and plant life."], "plant sciences": ["A branch of the biological sciences which embraces the study of plants and plant life."], "drink coaster": ["A flat object on which beverages are put to protect the surface of a table."], "beverage coaster": ["A flat object on which beverages are put to protect the surface of a table."], "beermat": ["A flat object on which beverages are put to protect the surface of a table."], "email boilerplate": ["The always identical final part of an e-mail."], "staff duty soldier in the orderly room": ["A soldier working in an orderly room."], "locked": ["Of a door, etc., that has been locked (usually with a key)."], "West Arawe": ["An Austronesian dialect chain of West New Britain, Papua New Guinea."], "arawe occidental": ["An Austronesian dialect chain of West New Britain, Papua New Guinea."], "fronton": ["The terminal part of the facade of a building - especially the classical temples - usually triangular."], "Gb\u00e0n\u00f9": ["A Gbaya language of the Central African Republic."], "Banu": ["A Gbaya language of the Central African Republic."], "Gbanou": ["A Gbaya language of the Central African Republic."], "Gbanzili": ["A Ubangian language of the Central African Republic and the Democratic Republic of the Congo."], "Dagaga": ["A Papuan language spoken by approximately 30,000 people of Fataluku ethnicity in the eastern areas of East Timor, especially around Lospalos and a dialect of it, Oirata, is spoken in Kisar, Moluccas in Indonesia."], "Dagada": ["A Papuan language spoken by approximately 30,000 people of Fataluku ethnicity in the eastern areas of East Timor, especially around Lospalos and a dialect of it, Oirata, is spoken in Kisar, Moluccas in Indonesia."], "Dagoda'": ["A Papuan language spoken by approximately 30,000 people of Fataluku ethnicity in the eastern areas of East Timor, especially around Lospalos and a dialect of it, Oirata, is spoken in Kisar, Moluccas in Indonesia."], "Yat\u00ea": ["An isolated language of Brazil, and the only indigenous language remaining in the northeastern part of that country."], "find out": ["To discover through asking or exploring."], "switchboard": ["An electrical device consisting of an insulated panel containing switches and dials and meters for controlling other electrical devices."], "caucus": ["A colleection of persons that were assigend a specific task, most often for a predetermined time, or to be completed within a given time frame, that is to find or determine something, make decisions, or steer towards a settlement that other are looking for and/or are going to use."], "board,": ["A colleection of persons that were assigend a specific task, most often for a predetermined time, or to be completed within a given time frame, that is to find or determine something, make decisions, or steer towards a settlement that other are looking for and/or are going to use."], "Comission": ["A colleection of persons that were assigend a specific task, most often for a predetermined time, or to be completed within a given time frame, that is to find or determine something, make decisions, or steer towards a settlement that other are looking for and/or are going to use."], "inlay": ["Something filling up a gap or covering up a (small) distance."], "panelling": ["Something put around something else, usually in order to give it another look or to protect it from its environment."], "casing": ["Something put around something else, usually in order to give it another look or to protect it from its environment."], "facing": ["Something put around something else, usually in order to give it another look or to protect it from its environment."], "lining": ["Something put around something else, usually in order to give it another look or to protect it from its environment."], "assumption of Mary": ["Catholic holiday on August 15, remembering the day when the Virgin Mary, Christ's mother, went to Heaven."], "auscultation": ["Listening to the heart and lungs using a stethoscope."]} diff --git a/Dictionary/dictionary.py b/Dictionary/dictionary.py deleted file mode 100644 index aaf91447..00000000 --- a/Dictionary/dictionary.py +++ /dev/null @@ -1,105 +0,0 @@ -import json -import tkinter as tk -from tkinter import messagebox -from difflib import get_close_matches - - -data = json.load(open("data.json")) - -# Use the absolute path to the data.json file -file_path = "Enter the path of json file " - - - -def access_data(file_path): - try: - with open(file_path, 'r') as file: - return json.load(file) - except FileNotFoundError: - print(f"Error: !!Oops... I guess you missed to keep things in same folder!!") - return {} - except json.JSONDecodeError: - print(f"Error: !!Oops... I think I am old i cant decode this file is it really json file you programi...!!") - return {} - - - -#finding correct match -def translate(word, file): - word = word.lower() - if word in file: - return file[word], None - elif word.title() in file: - return file[word.title()], None - elif word.upper() in file: - return file[word.upper()], None - else: - matches = get_close_matches(word, file.keys()) - if len(matches) > 0: - return f"Did you mean '{matches[0]}' instead?", matches[0] - else: - return "The word does not exist. Please double-check it.", None - -def on_search(): - word = entry.get().strip() - if word: - output, suggestion = translate(word, file) - if isinstance(output, list): - result_text = ' \n'.join(output) - else: - result_text = output - result_label.config(text=result_text) - - if suggestion: - def suggest(): - suggested_output = translate(suggestion, file)[0] - result_label.config(text=suggested_output) - suggest_button.pack_forget() - - suggest_button.config(command=suggest, text=f"Search for '{suggestion}'") - suggest_button.pack() - else: - suggest_button.pack_forget() - else: - messagebox.showwarning("Input Error", "Please enter a word to search.") - -#for data access -file = access_data(file_path) - -#setting up GUI -root = tk.Tk() -root.title("Dictionary") - -frame= tk.Frame(root, padx=10, pady=10) -frame.pack(padx=10, pady=10) - -label= tk.Label(frame, text="Enter a word:") -label.pack() - -entry = tk.Entry(frame, width=50) -entry.pack(pady=5) - -search_button = tk.Button(frame, text="Search", command=on_search) -search_button.pack(pady=5) - -result_label = tk.Label(frame, text="", wraplength=400, justify="left") -result_label.pack(pady=10) - -suggest_button = tk.Button(frame, text="", wraplength=400, justify= "left") - -root.mainloop() - -#main body of the program -def main(): - - word = input("Enter the word you want to search: ") - output = translate(word, file) - if type(output) == list: - for item in output: - print(item) - else: - print(output) - -#setting default focus to main function -if __name__ == "__main__": - main() diff --git a/Dictionary/dictionary_.py b/Dictionary/dictionary_.py deleted file mode 100644 index 782749aa..00000000 --- a/Dictionary/dictionary_.py +++ /dev/null @@ -1,53 +0,0 @@ -import json -import logging -import sys -from difflib import get_close_matches - -logging.basicConfig(stream=sys.stdout, level=logging.DEBUG, format='%(levelname)s: %(message)s') - - -class Translate: - - def __init__(self, file_name, word): - self.file_name = file_name - self.word = word - self.data = self.read_file() - - def read_file(self): - logging.debug(f"reading the file: {self.file_name}") - data = json.load(open(self.file_name)) - logging.debug(f'The type of data: {type(data)}') - return data - - def _translate(self): - word = str.lower(self.word) - if word in self.data: - logging.debug(f"Found the word({word}) in the json file...") - return self.data[word] - elif word.title() in self.data: - logging.debug(f"Found the word title({word.title()}) in the json file...") - return self.data[word.title()] - elif word.upper() in self.data: - logging.debug(f"Found the word upper({word.upper()}) in the json file...") - return self.data[word.upper()] - elif len(get_close_matches(word, self.data.keys())) > 0: - print("did you mean %s instead" % get_close_matches(word, self.data.keys())[0]) - decide = input("press y for yes or n for no: ") - if decide == "y": - return self.data[get_close_matches(word, self.data.keys())[0]] - elif decide == "n": - return ("pugger your paw steps on working keys ") - - else: - logging.debug(f"Couldn't find the word({word}) in the json file...") - - - - - -if __name__ == "__main__": - word = input("Enter the word you want to search: ") - t = Translate("data.json", word) - output = t._translate() - print(f'The output is :{output}') - diff --git a/Diff_Utility/README.md b/Diff_Utility/README.md deleted file mode 100644 index 4019c486..00000000 --- a/Diff_Utility/README.md +++ /dev/null @@ -1,33 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/KILLinefficiency) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/KILLinefficiency?tab=repositories) - -# Diff Utility -

- -## 🛠️ Description - -A Diff Utility that takes in two file names as commandline arguments and compares them. The comparison is then shown as the output indication which file has changed where. - -## ⚙️ Languages or Frameworks Used -You need Python to run this script. You can visit [here](https://www.python.org/downloads/) to download Python. -You also need ``rich`` package installed. Install it via the terminal. -```sh -pip install rich -``` - -## 🌟 How to run - -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python diff.py -``` - -## 📺 Demo -

- - -## 🤖 Author -[Shreyas Sable](https://github.com/KILLinefficiency) diff --git a/Diff_Utility/diff.py b/Diff_Utility/diff.py deleted file mode 100755 index 9706d433..00000000 --- a/Diff_Utility/diff.py +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env python3 - -# sys: for reading command-line arguments. -# rich: for coloring the text. -import sys -from rich import print - -# Print Usage message if enough arguments are not passed. -if len(sys.argv) < 3: - print("Usage:") - print("\tMust provide two file names as command-line arguments.") - print("\tdiff.py ") - exit(1) - -orignal = sys.argv[1] -changed = sys.argv[2] - -# Read the contents of the files in lists. -orignal_contents = open(orignal, "r").readlines() -changed_contents = open(changed, "r").readlines() - -color = "green" -symbol = f"[bold {color}][+]" - -print() - -# Determine which file has changed much. -if len(changed_contents) <= len(orignal_contents): - color = "red" - symbol = f"[bold {color}][-]" - smallest_sloc, largest_sloc = changed_contents, orignal_contents -else: - smallest_sloc, largest_sloc = orignal_contents, changed_contents - -# Go over all the lines to check the changes. -for line in range(0, len(smallest_sloc)): - if orignal_contents[line] == changed_contents[line]: - # Ignore if the lines are same. - continue - else: - # Display the changes on the respective lines of the files. - print(f"[bold red][-] Line {line + 1}:[/bold red] {orignal_contents[line]}", end = "") - print(f"[bold green][+] Line {line + 1}:[/bold green] {changed_contents[line]}") - - # Show the additions [+] or deletions [-] for the file that is the largest. - if line == len(smallest_sloc) - 1: - for new_line in range(line + 1, len(largest_sloc)): - print(f"{symbol} Line {new_line + 1}:[/bold {color}] {largest_sloc[new_line]}") diff --git a/Diff_Utility/py_diff.jpg b/Diff_Utility/py_diff.jpg deleted file mode 100644 index ea3772d4..00000000 Binary files a/Diff_Utility/py_diff.jpg and /dev/null differ diff --git a/Download Audio/Download Audio.py b/Download Audio/Download Audio.py deleted file mode 100644 index 16826717..00000000 --- a/Download Audio/Download Audio.py +++ /dev/null @@ -1,23 +0,0 @@ -import os -import pytube -from moviepy.editor import * - -# Define the YouTube video URL -youtube_url = "https://www.youtube.com/watch?v=E6eKvji_BoE" - -# Create a PyTube object and get the audio stream -yt = pytube.YouTube(youtube_url) -audio_stream = yt.streams.filter(only_audio=True).first() - -# Download the audio stream as a temporary file -temp_file = audio_stream.download() - -# Convert the audio stream to an MP3 file using MoviePy -audio_clip = AudioFileClip(temp_file) -mp3_file = os.path.join("Give Your own path", "Name.mp3") -audio_clip.write_audiofile(mp3_file) - -# Clean up the temporary file -os.remove(temp_file) - -print("Audio extracted and saved as MP3 file to", mp3_file) \ No newline at end of file diff --git a/Download Audio/README.md b/Download Audio/README.md deleted file mode 100644 index 7f4a56b8..00000000 --- a/Download Audio/README.md +++ /dev/null @@ -1,36 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Download Audio - - - - -## 🛠️ Description - -This is a python script that downloads audio files directly from youtube videos. - -## ⚙️ Languages or Frameworks Used - -This script is written in Python language. So make sure you have python installed in your computer. Two modules of python are used in this script to install those follow below steps -1. Open cmd prompt -2. write "pip install moviepy" -3. write "pip install pytube" -## 🌟 How to run - -- Open the Download Audio.py script -- Add your own youtube video url instead of the default one in line 6. -- In Line 17, in the path section write your own path and in name section write the name You want your file to have. - - -## 🤖 Author - -### Name of Author: Muhammad Abdullah -Visit my Github profile [here](https://github.com/Muhammad-Abdullah3) - diff --git a/Egg_Catcher/README.md b/Egg_Catcher/README.md deleted file mode 100644 index ddd8163e..00000000 --- a/Egg_Catcher/README.md +++ /dev/null @@ -1,30 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Egg Catcher -

- - -## 🛠️ Description - -Egg catcher game built in using Python. - -## ⚙️ Languages or Frameworks Used -```bash -pip install tk -``` - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python eggcatcher.py -``` -## 📺 Demo -

- - -## 🤖 Author -[Leah Nguyen](https://github.com/ndleah) \ No newline at end of file diff --git a/Egg_Catcher/eggcatcher.py b/Egg_Catcher/eggcatcher.py deleted file mode 100644 index 645c3ffc..00000000 --- a/Egg_Catcher/eggcatcher.py +++ /dev/null @@ -1,136 +0,0 @@ -from itertools import cycle -from random import randrange -from tkinter import Tk, Canvas, messagebox, font - -# Game setup variables -canvas_width = 800 -canvas_height = 400 - -# Initialize the main window -win = Tk() -c = Canvas(win, width=canvas_width, height=canvas_height, background='deep sky blue') -c.create_rectangle(-5, canvas_height - 100, canvas_width + 5, canvas_height + 5, fill='sea green', width=0) -c.create_oval(-80, -80, 120, 120, fill='orange', width=0) -c.pack() - -# Game design variables -color_cycle = cycle(['light blue', 'light pink', 'light yellow', 'light green', 'red', 'blue', 'green', 'black']) -egg_width = 45 -egg_height = 55 -egg_score = 10 -egg_speed = 500 -egg_interval = 4000 -difficulty_factor = 0.95 - -# Catcher setup -catcher_color = 'blue' -catcher_width = 100 -catcher_height = 100 -catcher_start_x = canvas_width / 2 - catcher_width / 2 -catcher_start_y = canvas_height - catcher_height - 20 -catcher_start_x2 = catcher_start_x + catcher_width -catcher_start_y2 = catcher_start_y + catcher_height - -catcher = c.create_arc(catcher_start_x, catcher_start_y, catcher_start_x2, catcher_start_y2, start=200, extent=140, style='arc', outline=catcher_color, width=3) - -# Score and lives setup -score = 0 -score_text = c.create_text(10, 10, anchor='nw', font=('Arial', 18, 'bold'), fill='darkblue', text='Score : ' + str(score)) - -lives_remaning = 3 -lives_text = c.create_text(canvas_width - 10, 10, anchor='ne', font=('Arial', 18, 'bold'), fill='darkblue', text='Lives : ' + str(lives_remaning)) - -eggs = [] - -# Function to create eggs at random positions -def create_eggs(): - x = randrange(10, 740) - y = 40 - new_egg = c.create_oval(x, y, x + egg_width, y + egg_height, fill=next(color_cycle), width=0) - eggs.append(new_egg) - win.after(egg_interval, create_eggs) - -# Function to move eggs downwards -def move_eggs(): - for egg in eggs: - (egg_x, egg_y, egg_x2, egg_y2) = c.coords(egg) - c.move(egg, 0, 10) - if egg_y2 > canvas_height: - egg_dropped(egg) - win.after(egg_speed, move_eggs) - -# Function to handle egg drop events -def egg_dropped(egg): - global lives_remaning - eggs.remove(egg) - c.delete(egg) - lose_a_life() - if lives_remaning == 0: - # Prompt the player to play again or exit - response = messagebox.askyesno('GAME OVER!', 'Final Score: ' + str(score) + '\nDo you want to play again?') - if response: - reset_game() # Reset the game if the player chooses to play again - else: - win.destroy() # Close the game if the player chooses not to play again - -# Function to reset the game state for a new game -def reset_game(): - global score, lives_remaning, eggs - for egg in eggs: - c.delete(egg) - eggs = [] - score = 0 - lives_remaning = 3 - c.itemconfigure(score_text, text='Score : ' + str(score)) - c.itemconfigure(lives_text, text='Lives : ' + str(lives_remaning)) - # Restart egg creation and movement - win.after(1000, create_eggs) - win.after(1000, move_eggs) - win.after(1000, catch_check) - -# Function to decrease lives -def lose_a_life(): - global lives_remaning - lives_remaning -= 1 - c.itemconfigure(lives_text, text='Lives : ' + str(lives_remaning)) - -# Function to check if eggs are caught -def catch_check(): - (catcher_x, catcher_y, catcher_x2, catcher_y2) = c.coords(catcher) - for egg in eggs: - (egg_x, egg_y, egg_x2, egg_y2) = c.coords(egg) - if catcher_x < egg_x and egg_x2 < catcher_x2 and catcher_y2 - egg_y2 < 40: - eggs.remove(egg) - c.delete(egg) - increase_score(egg_score) - win.after(100, catch_check) - -# Function to increase the score -def increase_score(points): - global score, egg_speed, egg_interval - score += points - egg_speed = int(egg_speed * difficulty_factor) - egg_interval = int(egg_interval * difficulty_factor) - c.itemconfigure(score_text, text='Score : ' + str(score)) - -# Event handlers for moving the catcher -def move_left(event): - (x1, y1, x2, y2) = c.coords(catcher) - if x1 > 0: - c.move(catcher, -20, 0) - -def move_right(event): - (x1, y1, x2, y2) = c.coords(catcher) - if x2 < canvas_width: - c.move(catcher, 20, 0) - -c.bind('', move_left) -c.bind('', move_right) -c.focus_set() - -# Start the game processes -win.after(1000, create_eggs) -win.after(1000, move_eggs) -win.after(1000, catch_check) - -win.mainloop() diff --git a/Email Slicer/EmailSlicer.py b/Email Slicer/EmailSlicer.py deleted file mode 100644 index 54171bcf..00000000 --- a/Email Slicer/EmailSlicer.py +++ /dev/null @@ -1,21 +0,0 @@ -import re - -def isValidEmail(email): - - # Regular expression for validating an Email - regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b' - - if(re.fullmatch(regex, email)): - return True - else: - return False - -email = input("Enter your email id - ") - -if isValidEmail(email): - username = email[0:email.index('@')] - domain = email[email.index('@')+1: ] - print("Username - ", username) - print("Domain - ", domain) -else: - print("Invalid Email!") \ No newline at end of file diff --git a/Email Slicer/README.md b/Email Slicer/README.md deleted file mode 100644 index 543b0cfd..00000000 --- a/Email Slicer/README.md +++ /dev/null @@ -1,35 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - - -# Email Slicer - - - - -## 🛠️ Description - -Email Slicer separates username and domain from the given email address. - -## ⚙️ Languages or Frameworks Used - -Language used is Python. There are no dependencies. - -## 🌟 How to run - -It is really simple to run the program. Simple head over to the directory where python file is saved and run the following command: -```python3 EmailSlicer.py``` - -## 📺 Demo -![Screenshot from 2021-10-02 15-20-43](https://user-images.githubusercontent.com/68545365/135711432-f9cac4e1-ba34-44da-ac56-3b867710fa71.png) - -## 🤖 Author - -Shruti Solani - diff --git a/Encode_Morse.py/Morse-Code-Letters-and-Numbers.jpg b/Encode_Morse.py/Morse-Code-Letters-and-Numbers.jpg deleted file mode 100644 index 9c2ce4e2..00000000 Binary files a/Encode_Morse.py/Morse-Code-Letters-and-Numbers.jpg and /dev/null differ diff --git a/Encode_Morse.py/Readme.md b/Encode_Morse.py/Readme.md deleted file mode 100644 index b8025e16..00000000 --- a/Encode_Morse.py/Readme.md +++ /dev/null @@ -1,24 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -# Morse Encoder - - - -## 🛠️ Description -Morse encoder is a tool or program that converts text into Morse code, a system of representing letters and numbers using a combination of dots (.) and dashes (-). Morse Encoder is responsible for encrypting English into Morse code. - -## ⚙️ Languages or Frameworks Used -The primary Language for the code is Python. There are no dependencies. - -## 🌟 How to run -It is really simple to run the program. -Simple head over to the directory where python file is saved and run the following command: -```python3 main.py``` - -## 📺 Demo -![Screenshoted on 2023-5-23](https://github.com/JohnN310/python-mini-project/blob/main/Encode_Morse.py/morse_encoder.png) - -## 🤖 Author -John Nguyen - diff --git a/Encode_Morse.py/main.py b/Encode_Morse.py/main.py deleted file mode 100644 index ba088a0b..00000000 --- a/Encode_Morse.py/main.py +++ /dev/null @@ -1,20 +0,0 @@ -def encode_morse(message): - char_to_dots = { - 'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..', 'E': '.', 'F': '..-.', - 'G': '--.', 'H': '....', 'I': '..', 'J': '.---', 'K': '-.-', 'L': '.-..', - 'M': '--', 'N': '-.', 'O': '---', 'P': '.--.', 'Q': '--.-', 'R': '.-.', - 'S': '...', 'T': '-', 'U': '..-', 'V': '...-', 'W': '.--', 'X': '-..-', - 'Y': '-.--', 'Z': '--..', ' ': ' ', '0': '-----', - '1': '.----', '2': '..---', '3': '...--', '4': '....-', '5': '.....', - '6': '-....', '7': '--...', '8': '---..', '9': '----.', - '&': '.-...', "'": '.----.', '@': '.--.-.', ')': '-.--.-', '(': '-.--.', - ':': '---...', ',': '--..--', '=': '-...-', '!': '-.-.--', '.': '.-.-.-', - '-': '-....-', '+': '.-.-.', '"': '.-..-.', '?': '..--..', '/': '-..-.' - } - string="" - for x in message: - string+=char_to_dots[x.upper()]+' ' - return string[0:-1] -#test run -print("Morse code for Hello World!: ") -print(encode_morse("Hello World!")) \ No newline at end of file diff --git a/Encode_Morse.py/morse_encoder.png b/Encode_Morse.py/morse_encoder.png deleted file mode 100644 index 3ec7afd7..00000000 Binary files a/Encode_Morse.py/morse_encoder.png and /dev/null differ diff --git a/Execute Shell Command/README.md b/Execute Shell Command/README.md deleted file mode 100644 index 062d471b..00000000 --- a/Execute Shell Command/README.md +++ /dev/null @@ -1,24 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Execute Shell Command - -## 🛠️ Description -Execute unix shell command using Python. It takes shell command as an input and returns the command result. - - -## ⚙️ Languages or Frameworks Used - -Language used is Python. There are no dependencies. - -## 🌟 How to run -Simply import execute_shell_command in your Python script and call execute_shell_command function with shell command as input.
-For sample please refer [execute_shell_command_reference.py](execute_shell_command_reference.py) script. - - -## Author Name - -[Deepak Khanna](https://github.com/deepakkhanna18) - diff --git a/Execute Shell Command/execute_shell_command.py b/Execute Shell Command/execute_shell_command.py deleted file mode 100644 index 077c370e..00000000 --- a/Execute Shell Command/execute_shell_command.py +++ /dev/null @@ -1,25 +0,0 @@ -import subprocess -import sys - -def execute_shell_command(command): - """Executes the provided unix shell command """ - try: - proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) - out, err = proc.communicate() - return_code = proc.returncode - if err: - print(str(err)) - return out, return_code - except Exception as err: - print("Exception Occurred while executing module : %s", str(err)) - return 105 - -if __name__ == '__main__': - command ='echo Deepak' - result, status = execute_shell_command(command) - if status != 0: - print("Exception in running shell command") - sys.exit(1) - else: - command_result = result.decode('utf8').rstrip("\r\n") - print(command_result) diff --git a/Execute Shell Command/execute_shell_command_reference.py b/Execute Shell Command/execute_shell_command_reference.py deleted file mode 100644 index 97e65a86..00000000 --- a/Execute Shell Command/execute_shell_command_reference.py +++ /dev/null @@ -1,18 +0,0 @@ -import execute_shell_command as shell -import sys - -if __name__ == '__main__': - #Shell command to execute - command ='echo Khanna' - - #Call execute_shell_command function from execute_shell_command.py script, result will have result return from shell command, status will have status of that command - result, status = shell.execute_shell_command(command) - - #Check status of command ran, status != 0 means command failed - if status != 0: - print("Exception in running shell command") - sys.exit(1) - else: - # Take required action on result return after running shell command - command_result = result.decode('utf8').rstrip("\r\n") - print(command_result) diff --git a/Execute Shell Command/execute_shell_command_test.py b/Execute Shell Command/execute_shell_command_test.py deleted file mode 100644 index db063049..00000000 --- a/Execute Shell Command/execute_shell_command_test.py +++ /dev/null @@ -1,12 +0,0 @@ -import execute_shell_command as shell -import unittest -import sys - -class TestShellCommand(unittest.TestCase): - def test_shell_command(self): - result, status = shell.execute_shell_command('echo Khanna') - self.assertEqual(result.decode('utf8').rstrip("\r\n"), 'Khanna') - -if __name__ == '__main__': - unittest.main(verbosity=2) - diff --git a/Exercise-Timer/Documentation.txt b/Exercise-Timer/Documentation.txt deleted file mode 100644 index 0d2435fd..00000000 --- a/Exercise-Timer/Documentation.txt +++ /dev/null @@ -1,18 +0,0 @@ -Hello World!! - -This CLI Application allows you to avoid the continious time setting while your exercising. -Simply input your exercise requirements via the terminal. - -example, You want to do leg lifts for 10 second in 10 reps. All you want to do is type - "python exercise_cli.py -t 10 -i 2 -r 10" - - (-t/--time = The time you want to hold, - -i/--interval = The interval you want between the reps, - -r/-rep = The number of reps you wish to do - ) - -You can also --help for help - -We hope this tool helps you with your workout routine! - -github : https://github.com/hisham-slm \ No newline at end of file diff --git a/Exercise-Timer/beep_finish.mp3 b/Exercise-Timer/beep_finish.mp3 deleted file mode 100644 index 784f80b0..00000000 Binary files a/Exercise-Timer/beep_finish.mp3 and /dev/null differ diff --git a/Exercise-Timer/beep_start.mp3 b/Exercise-Timer/beep_start.mp3 deleted file mode 100644 index 0d1f2556..00000000 Binary files a/Exercise-Timer/beep_start.mp3 and /dev/null differ diff --git a/Exercise-Timer/beep_stop.mp3 b/Exercise-Timer/beep_stop.mp3 deleted file mode 100644 index cbf9d414..00000000 Binary files a/Exercise-Timer/beep_stop.mp3 and /dev/null differ diff --git a/Exercise-Timer/exercise_cli.py b/Exercise-Timer/exercise_cli.py deleted file mode 100644 index 113014c5..00000000 --- a/Exercise-Timer/exercise_cli.py +++ /dev/null @@ -1,44 +0,0 @@ -import click -import time as t -import os -os.environ['PYGAME_HIDE_SUPPORT_PROMPT'] = "hide" -import pygame - -pygame.mixer.init() - -def play_audio_start(): - start_audio = pygame.mixer.Sound("beep_start.mp3") - start_audio.play() - pygame.time.wait(int(start_audio.get_length() * 1000)) - -def play_audio_stop(): - stop_audio = pygame.mixer.Sound("beep_stop.mp3") - stop_audio.play() - pygame.time.wait(int(stop_audio.get_length() * 1000)) - - -@click.command() -@click.option('--time', '-t', default=10, help='Time you want to exercise') -@click.option('--interval', '-i', default=3, help='Interval you want for exercise') -@click.option('--reps', '-r', default=5, help='Reps you want to do') -def exercise(time:int, interval:int, reps:int): - for _ in range(reps): - print('Interval') - t.sleep(interval) - print('Start') - play_audio_start() - t.sleep(time) - print('Stop') - play_audio_stop() - t.sleep(interval) - reps -= 1 - if reps != 0: - print(f'Reps left: {reps}') - else: - print("Finished") - finish_audio = pygame.mixer.Sound("beep_finish.mp3") - finish_audio.play() - pygame.time.wait(int(finish_audio.get_length() * 1500)) - -if __name__ == '__main__': - exercise() diff --git a/Exercise-Timer/requirements.txt b/Exercise-Timer/requirements.txt deleted file mode 100644 index ac9aa5ff..00000000 --- a/Exercise-Timer/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -pygame -click -time \ No newline at end of file diff --git a/Expense_Tracker/expense_tracker.py b/Expense_Tracker/expense_tracker.py deleted file mode 100644 index a93a3350..00000000 --- a/Expense_Tracker/expense_tracker.py +++ /dev/null @@ -1,54 +0,0 @@ -class ExpenseTracker: - def __init__(self): - self.expenses = {} - self.categories = {} - - def add_expense(self, date, amount, category): - if category not in self.expenses: - self.expenses[category] = [] - self.expenses[category].append((date, amount)) - - def add_category(self, category): - if category not in self.categories: - self.categories[category] = 0 - - def view_expenses(self): - for category, items in self.expenses.items(): - total_amount = sum(amount for _, amount in items) - print(f"{category}: ${total_amount}") - - def view_categories(self): - print("Categories:") - for category in self.expenses.keys(): - print(category) - -# Sample usage -tracker = ExpenseTracker() - -while True: - print("\nExpense Tracker Menu:") - print("1. Add Expense") - print("2. Add Category") - print("3. View Expenses") - print("4. View Categories") - print("5. Exit") - - choice = input("Enter your choice: ") - - if choice == "1": - date = input("Enter date (YYYY-MM-DD): ") - amount = float(input("Enter amount: $")) - category = input("Enter category: ") - tracker.add_expense(date, amount, category) - elif choice == "2": - category = input("Enter category: ") - tracker.add_category(category) - elif choice == "3": - tracker.view_expenses() - elif choice == "4": - tracker.view_categories() - elif choice == "5": - print("Exiting Expense Tracker. Goodbye!") - break - else: - print("Invalid choice. Please try again.") diff --git a/Expense_Tracker/readme.md b/Expense_Tracker/readme.md deleted file mode 100644 index 8072106f..00000000 --- a/Expense_Tracker/readme.md +++ /dev/null @@ -1,72 +0,0 @@ -# Expense Tracker - -Expense Tracker is a Python application designed to help users keep track of their daily expenses. It provides a simple and intuitive interface for recording expenses, categorizing them, and viewing summaries based on categories. - -## 🛠️ Description - -- **Add Expense:** Users can input the date, amount, and category of their expenses. The expenses are stored and categorized for future reference. - -- **Add Category:** Users can create new categories to classify their expenses, ensuring a customized tracking experience. - -- **View Expenses:** Users can view the total expenses for each category, helping them understand where their money is going. - -- **View Categories:** Users can view a list of available categories, making it convenient to track expenses related to specific areas of their life. - - - -1. **Add Expense:** - - Select option 1 from the menu. - - Enter the date of the expense in the format `YYYY-MM-DD`. - - Enter the amount of the expense. - - Enter the category of the expense. - -2. **Add Category:** - - Select option 2 from the menu. - - Enter the name of the new category. - -3. **View Expenses:** - - Select option 3 from the menu. - - The application will display the total expenses for each category. - -4. **View Categories:** - - Select option 4 from the menu. - - The application will display a list of available categories. - -5. **Exit:** - - Select option 5 from the menu to exit the Expense Tracker application. - -## ⚙️ Languages or Frameworks Used - -This application requires Python to run. No external libraries are used, making it easy to set up and run on any system with Python installed. - -## 🌟 How to run - -1. Ensure you have Python installed on your system. - -2. Download the `expense_tracker.py` file from this repository. - -3. Open a terminal or command prompt and navigate to the directory where `expense_tracker.py` is saved. - -4. Run the following command: - - ```sh -python expense_tracker.py -``` - - -5. Follow the on-screen instructions to use the Expense Tracker. - -## 📺 Demo -

- - -## 🤖 Author -[Darshan Patil](https://github.com/darshan8850) - -## 📜 License -This project is licensed under the MIT License - -## 📝 Acknowledgments -- [Python](https://www.python.org/) -- [VS Code](https://code.visualstudio.com/) -- [GitHub](https://github.com/ndleah/python-mini-project) diff --git a/ExtractPhoneNumberEmail/Input-Data.txt b/ExtractPhoneNumberEmail/Input-Data.txt deleted file mode 100644 index 607a39ab..00000000 --- a/ExtractPhoneNumberEmail/Input-Data.txt +++ /dev/null @@ -1,9 +0,0 @@ -(+1)541-754-3017 -+19-541-754-3017 -(001) 8004207240 -415-863-9900 -415 863 9950 -info@nostarch.co.in -media@gmail.com -academic@nostarch.com -help@yahoo.com \ No newline at end of file diff --git a/ExtractPhoneNumberEmail/PhoneEmailExtraction.py b/ExtractPhoneNumberEmail/PhoneEmailExtraction.py deleted file mode 100644 index 7423af65..00000000 --- a/ExtractPhoneNumberEmail/PhoneEmailExtraction.py +++ /dev/null @@ -1,75 +0,0 @@ -import pyperclip # Clipboard module -import re # Regular expression module - -# Get the text from the clipboard -text = str(pyperclip.paste()) - -# Empty list to store matches -matches = [] - - -def PhoneNumCheck(): - # Regular expression for matching phone numbers - PhnNumregex = re.compile( - r""" - (\(?(\+?\d{1,3})\)? # area code - [\s_.-]?) # separator or space - (\d{3}) # first three digits - [\s_.-]? # separator or space - (\d{3}) # second three digits - [\s_.-]? # separator or space - (\d{4,5}) # last four/five digits - """, - re.VERBOSE, - ) # VERBOSE is used to ignore whitespace and comments inside the regex string - - # Loop through the phone numbers found in the text - for num in PhnNumregex.findall(text): - if num[1] != "": - PhoneNum = "(" + num[1] + ")" # Add area code in brackets - else: - PhoneNum = "" - PhoneNum += "-".join([num[2], num[3], num[4]]) # Join the digits with dashes - matches.append(PhoneNum) - - -def EmailCheck(): - # Regular expression for matching email addresses - emailCheck = re.compile( - r""" - ([a-zA-Z0-9._%-]+ # username - @ # @ character - [a-zA-Z0-9_-]+ # domain name - \. # .(dot) - [a-zA-Z]{2,3} # domain type - (\.[a-zA-Z]{2,3})?) # second domain type like co.in - """, - re.VERBOSE, - ) - - # Loop through the email addresses found in the text - for emails in emailCheck.findall(text): - matches.append(emails[0]) - - -# Print the output from matches list -def PrintMatches(): - if len(matches) > 0: - print("Found matches: " + str(len(matches))) - for i in range(0, len(matches)): - print(matches[i]) - else: - print("***No Phone Number or Email Address found.***") - - -def main(): - # Call functions to check for phone numbers and email addresses - PhoneNumCheck() - EmailCheck() - - # Print the matches - PrintMatches() - - -if __name__ == "__main__": - main() diff --git a/ExtractPhoneNumberEmail/README.md b/ExtractPhoneNumberEmail/README.md deleted file mode 100644 index ac217b63..00000000 --- a/ExtractPhoneNumberEmail/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# Extraction-Of-PhoneNumber-Email - -## Extraction of Phone Number or Email Address in Python - -this program will extract the phone no. and email address from text copied, directly from clipboard.We does not need to paste the content anywhere - -## How to Use? -1. Download the python script - PhoneEmailExtractor.py -2. Copy the content using Ctrl-A , Ctrl-C -3. Run the script normally as you run any other python file. - - -### Running the test -1. Open the file named-'Input-Data'. -2. Copy its content using Ctrl-A, Ctrl-C. -3. Run extractor.py. - diff --git a/Face_Recognition/README.md b/Face_Recognition/README.md deleted file mode 100644 index 33ca54e5..00000000 --- a/Face_Recognition/README.md +++ /dev/null @@ -1,47 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Script Title - -![OpenCV](https://user-images.githubusercontent.com/87910771/150637975-dda7d408-60e6-4c9e-aa71-10196c51ec72.jpg) - - - - -## 🛠️ Description - -This is A Face Recognition Project developed using OpenCV Module in Python. -This Display a Blue Reactangle Frame around Faces. - -## ⚙️ Languages or Frameworks Used - -Open Command Prompt and use the following command to install the required modules: - -```sh -pip install opencv-python -``` - - -## 🌟 How to run - -Just open a terminal in the folder where your script is located and run the following command: - -```sh -python main.py -``` - -## 📺 Demo - -![demoimage](https://user-images.githubusercontent.com/87910771/150638214-207dbfea-1feb-4a71-8e55-56ba9dd04094.jpg) - -Image Only for Demonstration Purpose. - -## 🤖 Author - -[AnishLohiya](https://github.com/AnishLohiya) diff --git a/Face_Recognition/main.py b/Face_Recognition/main.py deleted file mode 100644 index d4abfb6e..00000000 --- a/Face_Recognition/main.py +++ /dev/null @@ -1,25 +0,0 @@ -import cv2 - -cap = cv2.VideoCapture(0) - -face_cascade = cv2.CascadeClassifier( - cv2.data.haarcascades + "haarcascade_frontalface_default.xml") -body_cascade = cv2.CascadeClassifier( - cv2.data.haarcascades + "haarcascade_fullbody.xml") - -while True: - _, frame = cap.read() - - gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) - faces = face_cascade.detectMultiScale(gray, 1.3, 5) - - for (x, y, width, height) in faces: - cv2.rectangle(frame, (x, y), (x + width, y + height), (255, 0, 0), 3) - - cv2.imshow("Camera", frame) - - if cv2.waitKey(1) == ord('q'): - break - -cap.release() -cv2.destroyAllWindows() diff --git a/Fancy_Text_Generator/README.md b/Fancy_Text_Generator/README.md deleted file mode 100644 index 1ea4fb4b..00000000 --- a/Fancy_Text_Generator/README.md +++ /dev/null @@ -1,21 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Fancy Text Generator - - -## 🛠️ Description -This lets you create attractive text designs using ASCII characters. You input your text and the program transforms it into a large, stylish banner. -## ⚙️ Languages or Frameworks Used - -The program was created with Python3 and pyfiglet. - -use following command to install requirements: -`python -m pip install --upgrade pyfiglet` -## 🌟 How to run - -`python ./main.py` -## 🤖 Author - -[Prajesh Gaikwad](https://github.com/prajesh8484) diff --git a/Fancy_Text_Generator/main.py b/Fancy_Text_Generator/main.py deleted file mode 100644 index 0c14a1b5..00000000 --- a/Fancy_Text_Generator/main.py +++ /dev/null @@ -1,31 +0,0 @@ -import sys -import pyfiglet - -# Banner maker -def ascii_maker(): - print('-' * 70) - ascii_banner = pyfiglet.figlet_format("A C I I banner").upper() - print(ascii_banner) - print('-' * 70) - - text = input("\nEnter Your Text: ") - banner = pyfiglet.figlet_format(f"{text}").upper() - print(banner) - -# Ending message -def ending(): - print("\n\nThanks for using the code :)\n") - a = input("Do you want to run the program again? (y for yes) (any key for no): ") - if a.lower() == 'y': - return True - else: - sys.exit() - -# Main loop -def run_loop(): - while True: - ascii_maker() - if not ending(): - break - -run_loop() diff --git a/Fancy_Text_Generator/requirements.txt b/Fancy_Text_Generator/requirements.txt deleted file mode 100644 index bb5a063e..00000000 --- a/Fancy_Text_Generator/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -pyfiglet diff --git a/Finance_Tracker/README.md b/Finance_Tracker/README.md deleted file mode 100644 index 1661650d..00000000 --- a/Finance_Tracker/README.md +++ /dev/null @@ -1,55 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Finance Tracker 📋 - -A finance tracker application built using Python's tkinter module. It allows the user to keep track of their income and expenses, and visualize their balance through a pie chart. 🥧📊 -Utilizing **customtkinter** gives the application a visual edge over applications developed with tkinter only! 🎨 - -

-preview -pie_chart - -## Prerequisites ⚙️ - -Before you begin, ensure you have met the following requirements: - -You have installed the following python modules: - -* `customtkinter` -* `matplotlib` - -You can install these modules using pip: - -``` -pip install customtkinter matplotlib -``` - -### How to run the script 🚀 - -1. Go to the directory. python-mini-project/Finance_Tracker - -2. Run this command on Terminal. - -``` -python3 main.py -``` - -### Flowchart of the code 🤹‍♀️ - -![Finace_tracker drawio](https://github.com/otahina/python-mini-project/assets/108225969/5a5e379a-6aae-48cb-8a22-482c4051f844) - -## Moving Forward...🐾 - -This application serves as an excellent starting point for beginners. Its simplicity allows for easy understanding, yet it provides ample room for enhancement! -Beginner ➡️ Advanced -* Implement a database to persist user data. This addition will significantly improve the application's utility by allowing users to maintain their finance records across sessions. -* Migrate the application to a web-based platform using frameworks like Django or Flask. This shift would increase the accessibility of the application and provide opportunities to explore web development principles and practices. - -## *Author Name* 👩🏻‍💻 - -**Hina Ota** - -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/otahina) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/otahina?tab=repositories) - diff --git a/Finance_Tracker/main.py b/Finance_Tracker/main.py deleted file mode 100644 index 15ecd280..00000000 --- a/Finance_Tracker/main.py +++ /dev/null @@ -1,161 +0,0 @@ -import customtkinter as ctk -import tkinter as tk -from tkinter import messagebox, ttk -from matplotlib.figure import Figure -from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg - -ctk.set_appearance_mode("dark") -ctk.set_default_color_theme("dark-blue") - - -class Application(ctk.CTk): - def __init__(self): - super().__init__() - - # configure window - self.title("Finance Tracker") - self.geometry(f"{800}x{500}") - - # configure grid layout - self.grid_columnconfigure(1, weight=5) - self.grid_rowconfigure(0, weight=5) - - self.income = 0 - self.expense = 0 - self.income_transactions = [] - self.expense_transactions = [] - - # create main frame - self.main_frame = ctk.CTkFrame(self, corner_radius=0) - self.main_frame.grid(row=0, column=1, sticky="nsew", padx=20, pady=20) - - # create sidebar frame with widgets - self.sidebar_frame = ctk.CTkFrame(self, width=250, corner_radius=0) - self.sidebar_frame.grid(row=0, column=0, sticky="nsew", padx=20, pady=20) - - self.logo_label = ctk.CTkLabel(self.sidebar_frame, text="Finance Tracker", - font=ctk.CTkFont(size=30, weight="bold")) - self.logo_label.grid(row=0, column=0, padx=20, pady=(20, 10)) - - # Adding navigation buttons - self.income_button = ctk.CTkButton(self.sidebar_frame, text="Income", command=self.income_button_event) - self.income_button.grid(row=1, column=0, padx=20, pady=20) - self.expenses_button = ctk.CTkButton(self.sidebar_frame, text="Expenses", command=self.expenses_button_event) - self.expenses_button.grid(row=2, column=0, padx=20, pady=20) - self.balance_button = ctk.CTkButton(self.sidebar_frame, text="Balance", command=self.balance_button_event) - self.balance_button.grid(row=3, column=0, padx=20, pady=20) - - # Create Entry fields(User can type the text) - self.income_frame, self.income_tree = self.create_transaction_frame("Income", self.add_income, row=1, transactions=self.income_transactions) - self.expense_frame, self.expense_tree = self.create_transaction_frame("Expense", self.add_expense, row=2, transactions=self.expense_transactions) - self.balance_frame = self.create_balance_frame(row=3) - - self.hide_frames() - self.income_frame.grid() - - # Plot - self.fig = Figure(figsize = (4, 4), dpi = 100) - self.canvas = FigureCanvasTkAgg(self.fig, master = self.balance_frame) - self.canvas.get_tk_widget().grid(row=1, column=0) - - def create_transaction_frame(self, title, button_command, row, transactions): - frame = ctk.CTkFrame(self.main_frame) - ctk.CTkLabel(frame, text=f"Add {title}", font=ctk.CTkFont(size=20)).grid(row=0, column=0) - - ctk.CTkLabel(frame, text="Category").grid(row=1, column=0) - category_entry = ctk.CTkEntry(frame) - category_entry.grid(row=1, column=1) - - ctk.CTkLabel(frame, text="Amount").grid(row=2, column=0) - amount_entry = ctk.CTkEntry(frame) - amount_entry.grid(row=2, column=1) - - ctk.CTkButton(frame, text=f"Add {title}", command=lambda: button_command(category_entry, amount_entry)).grid(row=3, column=0) - - # Add a transactions table - tree = ttk.Treeview(frame) - tree["columns"]=("Category","Amount") - tree.column("#0", width=0, stretch="NO") - tree.column("Category", anchor="w", width=120) - tree.column("Amount", anchor="w", width=120) - tree.heading("Category", text="Category",anchor='w') - tree.heading("Amount", text="Amount",anchor='w') - tree.grid(row=4, column=0, padx=20, pady=50) - - return frame, tree - - def create_balance_frame(self, row): - frame = ctk.CTkFrame(self.main_frame) - # create and add your balance widgets here - return frame - - #Clear the current view of the app - def hide_frames(self): - for frame in [self.income_frame, self.expense_frame, self.balance_frame]: - frame.grid_remove() - - def income_button_event(self): - self.hide_frames() - self.income_frame.grid() - - def expenses_button_event(self): - self.hide_frames() - self.expense_frame.grid() - - def balance_button_event(self): - self.hide_frames() - self.balance_frame.grid() - self.update_plot() - - def add_income(self, category_entry, amount_entry): - amount = self.get_amount_from_entry(amount_entry) - category = category_entry.get() - if amount is not None: - self.income += amount - self.income_transactions.append((category, amount)) - self.update_table(self.income_tree, self.income_transactions) - category_entry.delete(0, 'end') - amount_entry.delete(0, 'end') - - def add_expense(self, category_entry, amount_entry): - amount = self.get_amount_from_entry(amount_entry) - category = category_entry.get() - if amount is not None: - self.expense += amount - self.expense_transactions.append((category, amount)) - self.update_table(self.expense_tree, self.expense_transactions) - category_entry.delete(0, 'end') - amount_entry.delete(0, 'end') - - def get_amount_from_entry(self, entry): - try: - amount = float(entry.get()) - if amount <= 0: - raise ValueError - return amount - except ValueError: - messagebox.showerror("Invalid Input", "Please enter a positive number") - return None - - def update_plot(self): - self.fig.clear() - ax = self.fig.add_subplot(111) # Creates a new subplot - ax.pie([self.income, self.expense], labels=['Income', 'Expense'], autopct='%1.1f%%') - self.canvas.draw() - - def update_table(self, tree, transactions): - for i in tree.get_children(): - tree.delete(i) - for transaction in transactions: - tree.insert('', 'end', values=transaction) - - -if __name__ == "__main__": - app = Application() - app.mainloop() - -########################### - -#Contributor: Hina Ota - -########################## \ No newline at end of file diff --git a/Finding_Lanes/README.md b/Finding_Lanes/README.md deleted file mode 100644 index c6b08872..00000000 --- a/Finding_Lanes/README.md +++ /dev/null @@ -1,32 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# 🚘 Finding Lanes -### Let's go! - - -## 🛠️ Description -A short description about the script must be mentioned here. - -## ⚙️ Languages or Frameworks Used -Run the following command: -```sh -$ python -m pip install --upgrade pip -$ python -m pip install opencv-python -``` -## How to run -open a terminal in the folder where your script is located and run the following command: -```sh -$ python lanes.py -``` -## How to close - -Just press q - -## 📺 Demo - - - -## 🤖 Author -zmdlw (https://github.com/zmdlw) diff --git a/Finding_Lanes/capture.png b/Finding_Lanes/capture.png deleted file mode 100644 index 37c396d9..00000000 Binary files a/Finding_Lanes/capture.png and /dev/null differ diff --git a/Finding_Lanes/lanes.py b/Finding_Lanes/lanes.py deleted file mode 100644 index 159ca500..00000000 --- a/Finding_Lanes/lanes.py +++ /dev/null @@ -1,85 +0,0 @@ -import cv2 -import numpy as np - - -# 1. convert the image to gray scale -# 2. blur the image -# 3. detect the edges -# 4. create a mask -# 5. apply the mask to the image -# 6. detect the lines -# 7. average the lines -# 8. display the lines - - -def make_coordinate(image, line_parameters): - slope, intercept = line_parameters - y1 = image.shape[0] - y2 = int(y1*(3/5)) - x1 = int((y1-intercept)/slope) - x2 = int((y2-intercept)/slope) - return np.array([x1, y1, x2, y2]) - - -def average_lines_intercept(image, lines): - left_fit = [] - right_fit = [] - for line in lines: - x1, y1, x2, y2 = line.reshape(4) - parameters = np.polyfit((x1, x2), (y1, y2), 1) - slope = parameters[0] - intercept = parameters[1] - if slope < 0: - left_fit.append((slope, intercept)) - else: - right_fit.append((slope, intercept)) - left_fit_average = np.average(left_fit, axis=0) - right_fit_average = np.average(right_fit, axis=0) - left_line = make_coordinate(image, left_fit_average) - right_line = make_coordinate(image, right_fit_average) - return np.array([left_line, right_line]) - - -def canny(image): - gray = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY) - blur = cv2.GaussianBlur(gray, (5, 5), 0) - canny = cv2.Canny(blur, 50, 150) - return canny - - -def display_lines(image, lines): - line_image = np.zeros_like(image) - if lines is not None: - for x1, y1, x2, y2 in lines: - cv2.line(line_image, (x1, y1), (x2, y2), (0, 0, 255), 10) - return line_image - - -def roi(image): - height = image.shape[0] - polygons = np.array([ - [(200, height), (1100, height), (550, 250)] - ]) - mask = np.zeros_like(image) - cv2.fillPoly(mask, polygons, 255) - masked_image = cv2.bitwise_and(image, mask) - return masked_image - - -cap = cv2.VideoCapture("Finding_Lanes/video.mp4") - -while(cap.isOpened()): - _, frame = cap.read() - canny_image = canny(frame) - cropped_image = roi(canny_image) - lines = cv2.HoughLinesP(cropped_image, 2, np.pi/180, - 100, np.array([]), minLineLength=40, maxLineGap=5) - averaged_lines = average_lines_intercept(frame, lines) - line_image = display_lines(frame, averaged_lines) - combo_image = cv2.addWeighted(frame, 0.8, line_image, 1, 1) - cv2.imshow("result", combo_image) - if cv2.waitKey(10) == ord('q'): - break - -cap.release() -cv2.destroyAllWindows() diff --git a/Finding_Lanes/picture.jpg b/Finding_Lanes/picture.jpg deleted file mode 100644 index 169df1ee..00000000 Binary files a/Finding_Lanes/picture.jpg and /dev/null differ diff --git a/Finding_Lanes/sub.py b/Finding_Lanes/sub.py deleted file mode 100644 index d819484d..00000000 --- a/Finding_Lanes/sub.py +++ /dev/null @@ -1,5 +0,0 @@ -import matplotlib.pyplot as plt -import matplotlib.image as img -img = img.imread("Finding_Lanes/picture.jpg") -plt.imshow(img) -plt.show() diff --git a/Finding_Lanes/video.mp4 b/Finding_Lanes/video.mp4 deleted file mode 100644 index 4f04bc75..00000000 Binary files a/Finding_Lanes/video.mp4 and /dev/null differ diff --git a/Firebase_Authentication_Using_Flask/.gitignore b/Firebase_Authentication_Using_Flask/.gitignore deleted file mode 100644 index 0da9defc..00000000 --- a/Firebase_Authentication_Using_Flask/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -.env -*.pyc -/__pycache__ -/.venv diff --git a/Firebase_Authentication_Using_Flask/README.md b/Firebase_Authentication_Using_Flask/README.md deleted file mode 100644 index 96191030..00000000 --- a/Firebase_Authentication_Using_Flask/README.md +++ /dev/null @@ -1,66 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Firebase Authentication for Flask Application - -## 🛠️ Description -This project enables developers to implement secure user authentication features in their Flask applications with ease using Firebase Authentication which offers various authentication methods, including email/password, social media login (such as Google, Facebook, Twitter), and more. It handles the entire authentication process, including user registration, login, and password reset, taking care of security best practices like password hashing and token-based authentication. - -## ⚙️ Languages or Frameworks Used - - Flask, Firebase - - HTML, CSS, Bootstrap - - -## 🌟 How to run - - ### Install all the requirements - Run `pip install -r requirements.txt` to install all the requirements. - - ### Firebase Setup for Project - - - Create a [firebase](https://firebase.google.com/) project, set up a web project and get all the `Project Configurations` from `Project Settings`. - - - Navigate to the **Authentication** section in your firebase project and enable the `Email and Password` - authentication. - - - The `Project Configurations` will look as follows :- -```bash - "apiKey": YOUR_API_KEY , - "authDomain": YOUR_AUTH_DOMAIN, - "databaseURL": YOUR_DATABASEURL, - "projectId": YOUR_PROJECT_ID, - "storageBucket": YOUR_STORAGE_BUCKET, - "messagingSenderId": YOUR_MESSAGING_SENDER_ID, - "appId": YOUR_APP_ID, - "measurementId": YOUR_MEASUREMENT_ID -``` -- ### Setup Environment for the project - - Now create a `.env` file in your project dreictory and include the following parameters as it is :- -```bash -export FIREBASE_APIKEY=YOUR_API_KEY -export FIREBASE_AUTHDOMAIN=YOUR_AUTH_DOMAIN -export FIREBASE_DATABASEURL=YOUR_DATABASEURL -export FIREBASE_PROJECT_ID=YOUR_PROJECT_ID -export FIREBASE_STORAGE_BUCKET=YOUR_STORAGE_BUCKET -export FIREBASE_MESSAGING_SENDER_ID=YOUR_MESSAGING_SENDER_ID -export FIREBASE_APP_ID=YOUR_APP_ID -export FIREBASE_MEASUREMENT_ID=YOUR_MEASUREMENT_ID -``` - -- ### Now Just, Run the project - - To the run the project, go to the `bash` terminal of VSCode or any other code editor and run `./start_server.sh`. - - You don't have to care about setting `.env` then yourself then. - - -## 📺 Demo -![image](https://github.com/MBSA-INFINITY/MBSA-Forms/assets/85332648/2200ef81-57de-4619-ba33-4bed2cf31780) -![image](https://github.com/MBSA-INFINITY/MBSA-Forms/assets/85332648/ad83c91d-e140-4f4b-9b30-81b4903f1011) - -## 🤖 Author - -Github - [MBSA-INFINITY](https://github.com/MBSA-INFINITY) -LinkedIn - [MBSAIADITYA](https://www.linkedin.com/in/mbsaiaditya/) -Portfolio - [MBSA](https://mbsaiaditya.in/) - - - - diff --git a/Firebase_Authentication_Using_Flask/db.py b/Firebase_Authentication_Using_Flask/db.py deleted file mode 100644 index f03c6bde..00000000 --- a/Firebase_Authentication_Using_Flask/db.py +++ /dev/null @@ -1,26 +0,0 @@ -#Importing Firebase -from firebase import Firebase -import os - -#Intializing Firebase Configuration from the Environment Variables -config = { - "apiKey": os.environ.get("FIREBASE_APIKEY"), - "authDomain": os.environ.get("FIREBASE_AUTHDOMAIN"), - "databaseURL": os.environ.get("FIREBASE_DATABASEURL"), - "projectId": os.environ.get("FIREBASE_PROJECT_ID"), - "storageBucket": os.environ.get("FIREBASE_STORAGE_BUCKET"), - "messagingSenderId": os.environ.get("FIREBASE_MESSAGING_SENDER_ID"), - "appId": os.environ.get("FIREBASE_APP_ID") - } - -# "measurementId": os.environ.get("FIREBASE_MEASUREMENT_ID") - - -#Intializing Firebase Object -firebase = Firebase(config) - -#Intializing Firebase Databse -db = firebase.database() - -#Intializing Firebase Auth -auth = firebase.auth() \ No newline at end of file diff --git a/Firebase_Authentication_Using_Flask/main.py b/Firebase_Authentication_Using_Flask/main.py deleted file mode 100644 index 3513a514..00000000 --- a/Firebase_Authentication_Using_Flask/main.py +++ /dev/null @@ -1,88 +0,0 @@ -#Importing Flask and other important functions -from flask import Flask, render_template, request, redirect, abort, flash, session ,url_for -#Importing firebase auth from db.py -from db import auth - -app = Flask(__name__) -app.secret_key = "somesecretkey" - -exempted_endpoints = ['signup','login','static'] - -''' -Signup Route -''' -@app.route("/signup", methods = ['GET','POST']) -def signup(): - if request.method=='POST': - name = request.form.get("name") - username = request.form.get("email") - password = request.form.get("password") - repassword = request.form.get("repassword") - if password == repassword: - if len(password)>=6: - try: - #Creating User in firebase using create_user_with_email_and_password method of firebase/auth - _user_ = auth.create_user_with_email_and_password(username ,password) - flash("User has been created successfully! Please Login") - return redirect("/") - except Exception as e: - abort(500, {'message': str(e)}) - else: - flash('Password is less than 6 characters!') - return redirect("/signup") - else: - flash('Both Passwords do not match!') - return redirect("/signup") - return render_template("signup.html") - -''' -Login Route -''' -@app.route("/login",methods = ['GET','POST'] ) -def login(): - if request.method == 'POST': - data = dict(request.form) - email = data.get("email") - password = data.get("password") - try: - #Signing User in firebase using sign_in_with_email_and_password method of firebase/auth - user = auth.sign_in_with_email_and_password(email ,password) - print(user) - session['user'] = user['localId'] - session['email'] = user['email'] - return redirect("/") - except Exception as e: - abort(500, {'message': str(e)}) - - if 'user' in session: - return redirect("/") - return render_template("login.html") - -''' -Main dashboard route which has to be protected -''' -@app.route("/",methods = ['GET','POST']) -def start(): - return render_template("index.html", user=session['email']) - -''' -Logout Route -''' -@app.route("/logout",methods = ['GET','POST']) -def logout(): - session.pop('user') - session.pop('email') - flash("User logged out successfully!") - return redirect("/") - - -'''This is an important middleware that run before any request made to flask application and checks -when user is authenticated or not! -''' - -@app.before_request -def before_request_func(): - if request.endpoint in exempted_endpoints: - return - if 'user' not in session: - return redirect(url_for('login')) \ No newline at end of file diff --git a/Firebase_Authentication_Using_Flask/requirements.txt b/Firebase_Authentication_Using_Flask/requirements.txt deleted file mode 100644 index 1f27493d..00000000 --- a/Firebase_Authentication_Using_Flask/requirements.txt +++ /dev/null @@ -1,10 +0,0 @@ -Flask==2.0.1 -firebase==3.0.1 -python-jwt==4.0.0 -gcloud==0.18.3 -sseclient==0.0.27 -pycryptodome==3.18.0 -requests-toolbelt==0.10.1 -urllib3==1.26.15 -Werkzeug==2.2.2 -setuptools diff --git a/Firebase_Authentication_Using_Flask/run.py b/Firebase_Authentication_Using_Flask/run.py deleted file mode 100644 index 061bab1c..00000000 --- a/Firebase_Authentication_Using_Flask/run.py +++ /dev/null @@ -1,3 +0,0 @@ -from main import app -if __name__ == '__main__': - app.run() \ No newline at end of file diff --git a/Firebase_Authentication_Using_Flask/start_server.sh b/Firebase_Authentication_Using_Flask/start_server.sh deleted file mode 100644 index 0c9973db..00000000 --- a/Firebase_Authentication_Using_Flask/start_server.sh +++ /dev/null @@ -1,2 +0,0 @@ -source .env -python run.py \ No newline at end of file diff --git a/Firebase_Authentication_Using_Flask/static/login.png b/Firebase_Authentication_Using_Flask/static/login.png deleted file mode 100644 index cb288447..00000000 Binary files a/Firebase_Authentication_Using_Flask/static/login.png and /dev/null differ diff --git a/Firebase_Authentication_Using_Flask/templates/index.html b/Firebase_Authentication_Using_Flask/templates/index.html deleted file mode 100644 index 03bb7b1f..00000000 --- a/Firebase_Authentication_Using_Flask/templates/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - Document - - - Hi {{user}}
-
Logout - - - \ No newline at end of file diff --git a/Firebase_Authentication_Using_Flask/templates/login.html b/Firebase_Authentication_Using_Flask/templates/login.html deleted file mode 100644 index 0cf2866e..00000000 --- a/Firebase_Authentication_Using_Flask/templates/login.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - Login - - - - - - -

- {% with messages = get_flashed_messages() %} - {% if messages %} -
    - {% for message in messages %} - - {% endfor %} -
- {% endif %} - {% endwith %} -
- -

Login Page

- -
- - -
-
- - -
- - New User?
- -

MBSA © 2023 - 2024

-
-
- - - - - - \ No newline at end of file diff --git a/Firebase_Authentication_Using_Flask/templates/signup.html b/Firebase_Authentication_Using_Flask/templates/signup.html deleted file mode 100644 index b456ef97..00000000 --- a/Firebase_Authentication_Using_Flask/templates/signup.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - Signup - - - - - - -
- {% with messages = get_flashed_messages() %} - {% if messages %} -
    - {% for message in messages %} - - {% endfor %} -
- {% endif %} - {% endwith %} -
- -

Signup Page

- -
- - -
-
- - -
-
- - -

* Password should be at least 6 characters

-
-
- - -
- - Already a User!
- -

MBSA © 2023 - 2024

-
-
- - - - - - \ No newline at end of file diff --git a/GK_Maestro/README.md b/GK_Maestro/README.md deleted file mode 100644 index 0a3dc0f7..00000000 --- a/GK_Maestro/README.md +++ /dev/null @@ -1,25 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/arifaisal123) - -# GK Maestro -## 🛠️ Description -Simple quiz app that generates 10 General Knowledge questions for the user to answer. - -### ⚙️ Prerequisites -Python is required to run the script. Art and Random modules are used for this project. - -### 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -``` -python main.py -``` - -### 📺 Demo -![Program Demo](./image.png) - -## 🤖 Author -[Arif Faisal](https://arifaisal123.github.io) -🔗 [GitHub](https://github.com/arifaisal123) -🔗 [Linkfree](https://linkfree.io/arifaisal123) diff --git a/GK_Maestro/__pycache__/answer_bank.cpython-311.pyc b/GK_Maestro/__pycache__/answer_bank.cpython-311.pyc deleted file mode 100644 index 5f993a2b..00000000 Binary files a/GK_Maestro/__pycache__/answer_bank.cpython-311.pyc and /dev/null differ diff --git a/GK_Maestro/__pycache__/question_bank.cpython-311.pyc b/GK_Maestro/__pycache__/question_bank.cpython-311.pyc deleted file mode 100644 index c04fca11..00000000 Binary files a/GK_Maestro/__pycache__/question_bank.cpython-311.pyc and /dev/null differ diff --git a/GK_Maestro/answer_bank.py b/GK_Maestro/answer_bank.py deleted file mode 100644 index df1b2a69..00000000 --- a/GK_Maestro/answer_bank.py +++ /dev/null @@ -1,22 +0,0 @@ -# Store all the answers of the questions in answer_bank dictionary -def answer(num): - answer_bank = { - 1: "International Civil Aviation Organization", - 2: "China", - 3: "Camel", - 4: "1000", - 5: "Mars", - 6: "Elon Musk", - 7: "Helsinki", - 8: "Leonardo da Vinci", - 9: "Russia", - 10: "4", - 11: "Hazelnut", - 12: "118", - 13: "0", - 14: "All Clear", - 15: "Burj Khalifa", - 16: "Shark", - } - - return answer_bank[num] diff --git a/GK_Maestro/image.png b/GK_Maestro/image.png deleted file mode 100644 index f973a085..00000000 Binary files a/GK_Maestro/image.png and /dev/null differ diff --git a/GK_Maestro/main.py b/GK_Maestro/main.py deleted file mode 100644 index d14d84c3..00000000 --- a/GK_Maestro/main.py +++ /dev/null @@ -1,85 +0,0 @@ -""" -This game tests your general knowledge skills! -You just need to answer the 10 questions correctly to become the winner! -""" - -from question_bank import easy_question, hard_question -from answer_bank import answer -from random import randint, choice -from art import * - -# Main functionality -def main(): - # Counter for questions - ques_count = 1 - - # Store the score - score = 0 - - # Loop till 10 questions are asked - while ques_count <= 10: - # Store question number and the question - question_tuple = generate_question() - - # Store the question - question = question_tuple[1] - - # Display the question on the screen - print(f"Question No. {ques_count}: {question}") - - # Increase question count by 1 - ques_count += 1 - - # Record user answer - user_answer = input("Answer: ") - - # Generate and store correct answer - correct_answer = generate_answer(question_tuple[0]) - - # Update score by 1 if the answer matches, and display the score - if user_answer.lower() == correct_answer.lower(): - score += 1 - print(f"Correct Answer. Your Score: {score}") - # Alert about wrong answer, and display the score - else: - print(f"Wrong Answer. Your Score: {score}") - - # Display final score on the screen - print(f"Your final score: {score}") - - # Display congratulations message on the screen, If all 10 questions are answered correctly - if score == 10: - tprint("Congratulations!") - print("You have answered all 10 questions correctly!") - -# Generates question for the user -def generate_question(): - # List the question numbers and their difficulty level - easy_qlist = [2, 3, 4, 8, 9, 14, 15, 16] - hard_qlist = [1, 5, 6, 7, 10, 11, 12, 13] - - # Choose a random value - 1 or 2 - difficulty = randint(1, 2) - - # Difficulty level: easy - if difficulty == 1: - # Select a random question from the choices - random_choice = choice(easy_qlist) - ques = easy_question(random_choice) - # Difficulty level: hard - elif difficulty == 2: - # Select a random question from the choices - random_choice = choice(hard_qlist) - ques = hard_question(random_choice) - - # Return question number and the question - return random_choice, ques - -# Generate and match answer of the user -def generate_answer(num): - actual_answer = answer(num) - return actual_answer - -# When the program is run, main function is called -if __name__ == "__main__": - main() diff --git a/GK_Maestro/question_bank.py b/GK_Maestro/question_bank.py deleted file mode 100644 index fea2a7f9..00000000 --- a/GK_Maestro/question_bank.py +++ /dev/null @@ -1,30 +0,0 @@ -# Store all the easy questions to be asked, and returns the dictionary -def easy_question(num): - easy_question_bank = { - 2: "COVID19 originated from which country?", - 3: "Which animal is known as the 'Ship of the Desert'?", - 4: "How many years are there in one Millenium?", - 8: "Who painted the Mona Lisa?", - 9: "What is the largest country in the world?", - 14: "What does the AC button on a calculator stand for?", - 15: "What is the tallest building in the world?", - 16: "Which one of these is a fish: a whale, a shark or a dolphin?", - } - - return easy_question_bank[num] - -# Store all the hard questions to be asked, and returns the dictionary -def hard_question(num): - hard_question_bank = { - 1: "What does ICAO stand for?", - 5: "Name the planet known as the Red Planet?", - 6: "Who is the founder of SpaceX?", - 7: "What is the capital of Finland?", - 10: "How many valves does the heart have?", - 11: "What nut is in the middle of a Ferrero Rocher?", - 12: "How many elements are there in the periodic table?", - 13: "How many bones does a shark have?", - } - - return hard_question_bank[num] - \ No newline at end of file diff --git a/GK_Maestro/requirements.txt b/GK_Maestro/requirements.txt deleted file mode 100644 index 6bcfc5e8..00000000 --- a/GK_Maestro/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -art==6.0 \ No newline at end of file diff --git a/Geo_Plot_Using_Folium/Geo_plot-checkpoint.ipynb b/Geo_Plot_Using_Folium/Geo_plot-checkpoint.ipynb deleted file mode 100644 index 942a6f12..00000000 --- a/Geo_Plot_Using_Folium/Geo_plot-checkpoint.ipynb +++ /dev/null @@ -1,837 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Geographical Plot Using Folium" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Description" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using Folium library to create different map data visualization." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Requirement" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "import folium as fo\n", - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Scripts" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "C:\\Users\\LEAH NGUYEN\\OneDrive\\Desktop\\GitHub\\python-mini-project\\Geo_Plot_Using_Folium\n" - ] - } - ], - "source": [ - "cd C:\\Users\\LEAH NGUYEN\\OneDrive\\Desktop\\GitHub\\python-mini-project\\Geo_Plot_Using_Folium" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "1. Create Basic Webmap" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map = fo.Map()\n", - "map" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "2. Insert Child" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "x = fo.FeatureGroup(name='My Map')" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "x.add_child(fo.Marker(location=[27.1751,78.0421] , popup='hey', icon=fo.Icon(color='blue')))" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(x)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "3. Multiple Markers" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], - "source": [ - "for lat,lon in ([34,53],[24,-50],[90,-68]):\n", - " x.add_child(fo.Marker(location=[lat,lon] , \n", - " popup='hey', icon=fo.Icon(color='red')))" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(x)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Plotting Volcano Locations" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map = fo.Map()\n", - "map" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Read the ```volcano.csv``` file:" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "volcano = pd.read_csv('volcano.csv')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Inspect the first 5 rows of the dataset:" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
YearMonthDayTSUEQNameLocationCountryLatitudeLongitude...TOTAL_DEATHSTOTAL_DEATHS_DESCRIPTIONTOTAL_MISSINGTOTAL_MISSING_DESCRIPTIONTOTAL_INJURIESTOTAL_INJURIES_DESCRIPTIONTOTAL_DAMAGE_MILLIONS_DOLLARSTOTAL_DAMAGE_DESCRIPTIONTOTAL_HOUSES_DESTROYEDTOTAL_HOUSES_DESTROYED_DESCRIPTION
020101NaNNaNNaNTungurahuaEcuadorEcuador-1.467-78.442...NaNNaNNaNNaNNaNNaNNaN1.0NaNNaN
12010331.0NaNNaNEyjafjallajokullIceland-SIceland63.630-19.620...2.01.0NaNNaNNaNNaNNaNNaNNaNNaN
22010527.0NaNNaNPacayaGuatemalaGuatemala14.381-90.601...1.01.03.01.0NaNNaNNaN1.03.01.0
32010529.0TSUEQSariganMariana Is-C PacificUnited States16.708145.780...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
4201086.0NaNNaNKarangetang [Api Siau]Sangihe Is-IndonesiaIndonesia2.780125.480...4.01.0NaNNaN5.01.0NaNNaNNaN1.0
\n", - "

5 rows × 36 columns

\n", - "
" - ], - "text/plain": [ - " Year Month Day TSU EQ Name Location \\\n", - "0 2010 1 NaN NaN NaN Tungurahua Ecuador \n", - "1 2010 3 31.0 NaN NaN Eyjafjallajokull Iceland-S \n", - "2 2010 5 27.0 NaN NaN Pacaya Guatemala \n", - "3 2010 5 29.0 TSU EQ Sarigan Mariana Is-C Pacific \n", - "4 2010 8 6.0 NaN NaN Karangetang [Api Siau] Sangihe Is-Indonesia \n", - "\n", - " Country Latitude Longitude ... TOTAL_DEATHS \\\n", - "0 Ecuador -1.467 -78.442 ... NaN \n", - "1 Iceland 63.630 -19.620 ... 2.0 \n", - "2 Guatemala 14.381 -90.601 ... 1.0 \n", - "3 United States 16.708 145.780 ... NaN \n", - "4 Indonesia 2.780 125.480 ... 4.0 \n", - "\n", - " TOTAL_DEATHS_DESCRIPTION TOTAL_MISSING TOTAL_MISSING_DESCRIPTION \\\n", - "0 NaN NaN NaN \n", - "1 1.0 NaN NaN \n", - "2 1.0 3.0 1.0 \n", - "3 NaN NaN NaN \n", - "4 1.0 NaN NaN \n", - "\n", - " TOTAL_INJURIES TOTAL_INJURIES_DESCRIPTION TOTAL_DAMAGE_MILLIONS_DOLLARS \\\n", - "0 NaN NaN NaN \n", - "1 NaN NaN NaN \n", - "2 NaN NaN NaN \n", - "3 NaN NaN NaN \n", - "4 5.0 1.0 NaN \n", - "\n", - " TOTAL_DAMAGE_DESCRIPTION TOTAL_HOUSES_DESTROYED \\\n", - "0 1.0 NaN \n", - "1 NaN NaN \n", - "2 1.0 3.0 \n", - "3 NaN NaN \n", - "4 NaN NaN \n", - "\n", - " TOTAL_HOUSES_DESTROYED_DESCRIPTION \n", - "0 NaN \n", - "1 NaN \n", - "2 1.0 \n", - "3 NaN \n", - "4 1.0 \n", - "\n", - "[5 rows x 36 columns]" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "volcano.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**1. General View**" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create object variables:" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [], - "source": [ - "lat_vo = list(volcano['Latitude'])\n", - "lon_vo = list(volcano['Longitude'])\n", - "name_vo = list(volcano['Name'])" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [], - "source": [ - "vol = fo.FeatureGroup(name = 'My Map')" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [], - "source": [ - "for lat, lon, name in zip(lat_vo, lon_vo, name_vo):\n", - " vol.add_child(fo.Marker(location=[lat,lon] , \n", - " popup= name, icon=fo.Icon(color='red')))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the map:" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(vol)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**2. Polygen View**" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "vol.add_child(fo.GeoJson(data=(open('world.json','r',encoding='utf-8-sig').read())))" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(vol)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## US Cities Population" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Read the ```us+cities+pop.csv``` file:" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [], - "source": [ - "popu = pd.read_csv('us+cities+pop.csv')" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
namepoplatlon
0New York828723840.730599-73.986581
1Los Angeles382642334.053717-118.242727
2Chicago270562741.875555-87.624421
3Houston212978429.758938-95.367697
4Philadelphia153931339.952335-75.163789
\n", - "
" - ], - "text/plain": [ - " name pop lat lon\n", - "0 New York 8287238 40.730599 -73.986581\n", - "1 Los Angeles 3826423 34.053717 -118.242727\n", - "2 Chicago 2705627 41.875555 -87.624421\n", - "3 Houston 2129784 29.758938 -95.367697\n", - "4 Philadelphia 1539313 39.952335 -75.163789" - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "popu.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create object variables:" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [], - "source": [ - "lat_po = list(popu['lat'])\n", - "lon_po = list(popu['lon'])\n", - "name_po = list(popu['name'])\n", - "pop_po = list(popu['pop'])" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [], - "source": [ - "po = fo.FeatureGroup(name = 'My Map')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Define function for filtering cities by population number:" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [], - "source": [ - "def mar(popu):\n", - " if(popu>35000):\n", - " return 'red'\n", - " elif(popu>10000 and popu<=35000):\n", - " return 'blue'\n", - " else:\n", - " return 'green'" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [], - "source": [ - "for lat, lon, name, pop in zip(lat_po, lon_po, name_po, pop_po):\n", - " po.add_child(fo.Marker(location=[lat,lon] , \n", - " popup= name, icon=fo.Icon(color= mar(pop))))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the map:" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 24, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(po)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.5" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/Geo_Plot_Using_Folium/Geo_plot.ipynb b/Geo_Plot_Using_Folium/Geo_plot.ipynb deleted file mode 100644 index 942a6f12..00000000 --- a/Geo_Plot_Using_Folium/Geo_plot.ipynb +++ /dev/null @@ -1,837 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Geographical Plot Using Folium" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Description" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using Folium library to create different map data visualization." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Requirement" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "import folium as fo\n", - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Scripts" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "C:\\Users\\LEAH NGUYEN\\OneDrive\\Desktop\\GitHub\\python-mini-project\\Geo_Plot_Using_Folium\n" - ] - } - ], - "source": [ - "cd C:\\Users\\LEAH NGUYEN\\OneDrive\\Desktop\\GitHub\\python-mini-project\\Geo_Plot_Using_Folium" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "1. Create Basic Webmap" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map = fo.Map()\n", - "map" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "2. Insert Child" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "x = fo.FeatureGroup(name='My Map')" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "x.add_child(fo.Marker(location=[27.1751,78.0421] , popup='hey', icon=fo.Icon(color='blue')))" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(x)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "3. Multiple Markers" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], - "source": [ - "for lat,lon in ([34,53],[24,-50],[90,-68]):\n", - " x.add_child(fo.Marker(location=[lat,lon] , \n", - " popup='hey', icon=fo.Icon(color='red')))" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(x)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Plotting Volcano Locations" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map = fo.Map()\n", - "map" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Read the ```volcano.csv``` file:" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "volcano = pd.read_csv('volcano.csv')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Inspect the first 5 rows of the dataset:" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
YearMonthDayTSUEQNameLocationCountryLatitudeLongitude...TOTAL_DEATHSTOTAL_DEATHS_DESCRIPTIONTOTAL_MISSINGTOTAL_MISSING_DESCRIPTIONTOTAL_INJURIESTOTAL_INJURIES_DESCRIPTIONTOTAL_DAMAGE_MILLIONS_DOLLARSTOTAL_DAMAGE_DESCRIPTIONTOTAL_HOUSES_DESTROYEDTOTAL_HOUSES_DESTROYED_DESCRIPTION
020101NaNNaNNaNTungurahuaEcuadorEcuador-1.467-78.442...NaNNaNNaNNaNNaNNaNNaN1.0NaNNaN
12010331.0NaNNaNEyjafjallajokullIceland-SIceland63.630-19.620...2.01.0NaNNaNNaNNaNNaNNaNNaNNaN
22010527.0NaNNaNPacayaGuatemalaGuatemala14.381-90.601...1.01.03.01.0NaNNaNNaN1.03.01.0
32010529.0TSUEQSariganMariana Is-C PacificUnited States16.708145.780...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
4201086.0NaNNaNKarangetang [Api Siau]Sangihe Is-IndonesiaIndonesia2.780125.480...4.01.0NaNNaN5.01.0NaNNaNNaN1.0
\n", - "

5 rows × 36 columns

\n", - "
" - ], - "text/plain": [ - " Year Month Day TSU EQ Name Location \\\n", - "0 2010 1 NaN NaN NaN Tungurahua Ecuador \n", - "1 2010 3 31.0 NaN NaN Eyjafjallajokull Iceland-S \n", - "2 2010 5 27.0 NaN NaN Pacaya Guatemala \n", - "3 2010 5 29.0 TSU EQ Sarigan Mariana Is-C Pacific \n", - "4 2010 8 6.0 NaN NaN Karangetang [Api Siau] Sangihe Is-Indonesia \n", - "\n", - " Country Latitude Longitude ... TOTAL_DEATHS \\\n", - "0 Ecuador -1.467 -78.442 ... NaN \n", - "1 Iceland 63.630 -19.620 ... 2.0 \n", - "2 Guatemala 14.381 -90.601 ... 1.0 \n", - "3 United States 16.708 145.780 ... NaN \n", - "4 Indonesia 2.780 125.480 ... 4.0 \n", - "\n", - " TOTAL_DEATHS_DESCRIPTION TOTAL_MISSING TOTAL_MISSING_DESCRIPTION \\\n", - "0 NaN NaN NaN \n", - "1 1.0 NaN NaN \n", - "2 1.0 3.0 1.0 \n", - "3 NaN NaN NaN \n", - "4 1.0 NaN NaN \n", - "\n", - " TOTAL_INJURIES TOTAL_INJURIES_DESCRIPTION TOTAL_DAMAGE_MILLIONS_DOLLARS \\\n", - "0 NaN NaN NaN \n", - "1 NaN NaN NaN \n", - "2 NaN NaN NaN \n", - "3 NaN NaN NaN \n", - "4 5.0 1.0 NaN \n", - "\n", - " TOTAL_DAMAGE_DESCRIPTION TOTAL_HOUSES_DESTROYED \\\n", - "0 1.0 NaN \n", - "1 NaN NaN \n", - "2 1.0 3.0 \n", - "3 NaN NaN \n", - "4 NaN NaN \n", - "\n", - " TOTAL_HOUSES_DESTROYED_DESCRIPTION \n", - "0 NaN \n", - "1 NaN \n", - "2 1.0 \n", - "3 NaN \n", - "4 1.0 \n", - "\n", - "[5 rows x 36 columns]" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "volcano.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**1. General View**" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create object variables:" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [], - "source": [ - "lat_vo = list(volcano['Latitude'])\n", - "lon_vo = list(volcano['Longitude'])\n", - "name_vo = list(volcano['Name'])" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [], - "source": [ - "vol = fo.FeatureGroup(name = 'My Map')" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [], - "source": [ - "for lat, lon, name in zip(lat_vo, lon_vo, name_vo):\n", - " vol.add_child(fo.Marker(location=[lat,lon] , \n", - " popup= name, icon=fo.Icon(color='red')))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the map:" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(vol)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**2. Polygen View**" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "vol.add_child(fo.GeoJson(data=(open('world.json','r',encoding='utf-8-sig').read())))" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(vol)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## US Cities Population" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Read the ```us+cities+pop.csv``` file:" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [], - "source": [ - "popu = pd.read_csv('us+cities+pop.csv')" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
namepoplatlon
0New York828723840.730599-73.986581
1Los Angeles382642334.053717-118.242727
2Chicago270562741.875555-87.624421
3Houston212978429.758938-95.367697
4Philadelphia153931339.952335-75.163789
\n", - "
" - ], - "text/plain": [ - " name pop lat lon\n", - "0 New York 8287238 40.730599 -73.986581\n", - "1 Los Angeles 3826423 34.053717 -118.242727\n", - "2 Chicago 2705627 41.875555 -87.624421\n", - "3 Houston 2129784 29.758938 -95.367697\n", - "4 Philadelphia 1539313 39.952335 -75.163789" - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "popu.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create object variables:" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [], - "source": [ - "lat_po = list(popu['lat'])\n", - "lon_po = list(popu['lon'])\n", - "name_po = list(popu['name'])\n", - "pop_po = list(popu['pop'])" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [], - "source": [ - "po = fo.FeatureGroup(name = 'My Map')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Define function for filtering cities by population number:" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [], - "source": [ - "def mar(popu):\n", - " if(popu>35000):\n", - " return 'red'\n", - " elif(popu>10000 and popu<=35000):\n", - " return 'blue'\n", - " else:\n", - " return 'green'" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [], - "source": [ - "for lat, lon, name, pop in zip(lat_po, lon_po, name_po, pop_po):\n", - " po.add_child(fo.Marker(location=[lat,lon] , \n", - " popup= name, icon=fo.Icon(color= mar(pop))))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the map:" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
Make this Notebook Trusted to load map: File -> Trust Notebook
" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 24, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map.add_child(po)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.5" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/Geo_Plot_Using_Folium/README.md b/Geo_Plot_Using_Folium/README.md deleted file mode 100644 index 09d97cc9..00000000 --- a/Geo_Plot_Using_Folium/README.md +++ /dev/null @@ -1,27 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Geographical Plot Using Folium - -

- - -## 🛠️ Description - -Using Folium library to create different map data visualization. - -## ⚙️ Languages or Frameworks Used -Open **directory terminal**, using following command or directly install inside the **Jupyter Notebook** (included) to download necessary packages for project execution: -```bash -!pip install basemap -``` - -## 🌟 How to run -Open the Jupyter Notebook file under ```Geo_plot.ipynb``` - -## 📺 Demo - -

- \ No newline at end of file diff --git a/Geo_Plot_Using_Folium/us+cities+pop.csv b/Geo_Plot_Using_Folium/us+cities+pop.csv deleted file mode 100644 index c57cdc1f..00000000 --- a/Geo_Plot_Using_Folium/us+cities+pop.csv +++ /dev/null @@ -1,3229 +0,0 @@ -name,pop,lat,lon -New York ,8287238,40.7305991,-73.9865812 -Los Angeles ,3826423,34.053717,-118.2427266 -Chicago ,2705627,41.8755546,-87.6244212 -Houston ,2129784,29.7589382,-95.3676974 -Philadelphia ,1539313,39.952335,-75.163789 -Phoenix ,1465114,33.4467681,-112.0756724 -San Antonio ,1359174,29.4246002,-98.4951405 -San Diego ,1321016,32.7174209,-117.1627714 -Dallas ,1219399,32.7761963,-96.7968994 -San Jose ,971495,37.3438502,-121.8831349 -Austin ,839714,30.2711286,-97.7436995 -Jacksonville ,829543,30.3321838,-81.655651 -Indianapolis ,827346,39.7683331,-86.1583502 -San Francisco ,816239,37.7792768,-122.4192704 -Columbus ,799270,39.9622601,-83.0007065 -Fort Worth ,761895,32.753177,-97.3327459 -Charlotte ,756204,35.2270869,-80.8431268 -Detroit ,702149,42.3486635,-83.0567375 -El Paso ,665503,31.8111305,-106.5013493 -Memphis ,655975,35.1490215,-90.0516285 -Boston ,630645,42.3604823,-71.0595678 -Seattle ,622175,47.6038321,-122.3300624 -Baltimore ,620889,39.2908608,-76.6108073 -Washington ,620427,38.8949549,-77.0366456 -Denver ,619390,39.7391536,-104.9847034 -Nashville-Davidson ,612243,36.187025,-86.78086153 -Louisville/Jefferson County ,601709,38.209237,-85.7038502 -Milwaukee ,597435,43.0349931,-87.922497 -Portland ,593859,45.5202471,-122.6741949 -Oklahoma City ,589896,35.4729886,-97.5170536 -Las Vegas ,588257,36.1662859,-115.149225 -Albuquerque ,551813,35.0841034,-106.6509851 -Tucson ,524192,32.2217422,-110.9264759 -Fresno ,501357,36.7394421,-119.7848307 -Sacramento ,471625,38.5815719,-121.4943996 -Long Beach ,465825,33.7774658,-118.1884871 -Kansas City ,462035,39.0844687,-94.5630298 -Mesa ,444954,33.436188,-111.5860661 -Virginia Beach ,442984,36.7953025,-76.05092502 -Atlanta ,432135,33.7490987,-84.3901849 -Omaha ,429604,41.2587317,-95.9378732 -Colorado Springs ,427416,38.8339578,-104.8253485 -Raleigh ,414135,35.7804015,-78.6390779 -Miami ,412438,25.7742658,-80.1936589 -Oakland ,396649,37.8044557,-122.2713563 -Tulsa ,392751,36.1556805,-95.9929113 -Cleveland ,392505,41.5051613,-81.6934446 -Minneapolis ,388253,44.9772995,-93.2654692 -Wichita ,383696,37.6922361,-97.3375448 -Arlington ,370908,32.7355816,-97.1071186 -New Orleans ,360877,29.9499323,-90.0701156 -Bakersfield ,353533,35.3738712,-119.0194639 -Tampa ,346934,27.9477595,-82.458444 -Anaheim ,340830,33.8347516,-117.911732 -Santa Ana ,328856,33.7499595,-117.8732826 -St. Louis ,319188,38.6272733,-90.1978889 -Riverside ,310025,33.9533546,-117.3961623 -Corpus Christi ,308069,27.8002542,-97.3955744 -Pittsburgh ,306099,40.4416941,-79.9900861 -Lexington-Fayette urban county,301213,38.0464066,-84.4970393 -Cincinnati ,296114,39.1014537,-84.5124602 -Stockton ,295386,37.9577016,-121.2907796 -St. Paul ,288884,44.9504037,-93.1015026 -Toledo ,285549,41.6786754,-83.5127283 -Newark ,277854,40.735657,-74.1723667 -Greensboro ,272521,36.0726355,-79.7919754 -Plano ,267620,33.0136764,-96.6925096 -Lincoln ,262389,40.8000554,-96.6674005 -Buffalo ,260525,42.8864468,-78.8783689 -Henderson ,259958,40.8156124,-90.9104547 -Fort Wayne ,254607,41.0799898,-85.1386015 -Jersey City ,253117,40.7281575,-74.0776417 -Chula Vista ,248684,32.6400541,-117.0841955 -St. Petersburg ,246042,27.7703796,-82.6695085 -Orlando ,243787,28.5421175,-81.3790462 -Laredo ,241188,27.5060991,-99.5088979 -Chandler ,239977,33.3067132,-111.8408489 -Madison ,236923,43.074761,-89.3837613 -Lubbock ,233586,33.5778631,-101.8551665 -Winston-Salem ,231873,36.0998167,-80.2441445 -Hialeah ,231352,25.8670435,-80.29146312 -Garland ,230205,32.912624,-96.6388833 -Baton Rouge ,228939,30.4507462,-91.154551 -Glendale ,228645,34.1423455,-118.2483671 -Chesapeake ,225333,36.8190369,-76.2749399 -Irvine ,220528,33.6856969,-117.8259819 -Irving ,220012,32.8629195,-96.97917017 -Scottsdale ,219841,33.5091215,-111.8992365 -North Las Vegas ,218971,36.2008371,-115.1120958 -Fremont ,217630,37.5482697,-121.9885719 -Gilbert ,214057,33.294207,-111.7379465 -San Bernardino ,212061,34.1083449,-117.2897652 -Rochester ,210891,43.1854754,-77.61068605 -Boise City ,209280,43.5988375,-116.243255 -Spokane ,209025,47.6588603,-117.4247134 -Montgomery ,207513,32.3669656,-86.3006485 -Richmond ,206977,37.5385087,-77.43428 -Des Moines ,205908,41.5910641,-93.6037149 -Modesto ,204312,37.6390972,-120.9968782 -Shreveport ,201875,32.4828485,-93.82848316 -Fayetteville ,201485,36.111508,-94.20986672 -Oxnard ,200080,34.1975048,-119.1770516 -Tacoma ,199882,47.2495798,-122.4398746 -Fontana ,199879,34.0922335,-117.435048 -Akron ,198909,41.0830643,-81.5184854 -Yonkers ,197772,40.9312099,-73.8987469 -Moreno Valley ,196970,33.937517,-117.2305944 -Little Rock ,195279,34.7464809,-92.2895948 -Columbus ,195272,39.9622601,-83.0007065 -Mobile ,194806,30.6943566,-88.0430541 -Amarillo ,193907,35.2072185,-101.8338246 -Huntington Beach ,193366,33.6781238,-118.0000112 -Glendale ,193214,34.1423455,-118.2483671 -Grand Rapids ,189054,42.9632405,-85.6678639 -Salt Lake City ,188158,40.7670126,-111.8904308 -Tallahassee ,183442,30.4380832,-84.2809332 -Huntsville ,182219,34.577718,-86.83583561 -Knoxville ,180606,35.9603948,-83.9210261 -Newport News ,180356,37.016827,-76.4505196 -Grand Prairie ,178811,32.7459645,-96.9977846 -Brownsville ,178551,25.9140256,-97.4890856 -Providence ,178375,41.8239891,-71.4128343 -Santa Clarita ,177843,34.3916641,-118.542586 -Overland Park ,176068,38.9822282,-94.6707917 -Jackson ,175448,32.2990384,-90.1847691 -Garden Grove ,173281,33.7746292,-117.9463717 -Chattanooga ,170486,35.0456297,-85.3096801 -Oceanside ,169795,33.1958696,-117.3794834 -Fort Lauderdale ,169045,26.1223084,-80.1433786 -Rancho Cucamonga ,168210,34.1063989,-117.5931084 -Port St. Lucie ,167112,27.2939333,-80.3503283 -Tempe ,163730,33.4144139,-111.9094474 -Springfield ,160408,39.7989763,-89.6443688 -Lancaster ,158474,40.03813,-76.3056686 -Cape Coral ,157680,26.6069232,-81.9802626 -Pembroke Pines ,157568,26.02322025,-80.34123892 -Eugene ,157237,44.0505054,-123.0950506 -Sioux Falls ,156757,43.5499749,-96.700327 -Peoria ,156708,40.6938609,-89.5891008 -Salem ,156248,44.9391565,-123.033121 -Elk Grove ,155844,38.4087993,-121.3716178 -Macon-Bibb County,155632,32.8406946,-83.6324022 -Corona ,155005,40.7469593,-73.8601456 -Palmdale ,154440,34.5793131,-118.1171108 -Springfield ,153798,39.7989763,-89.6443688 -Salinas ,152667,36.6777078,-121.6560114 -Rockford ,151930,42.2713945,-89.093966 -Pasadena ,151308,34.1476452,-118.1444779 -Pomona ,150065,34.0552886,-117.7522793 -Joliet ,147895,41.525031,-88.0817252 -Hayward ,147030,37.6688205,-122.0807964 -Torrance ,146461,33.8358492,-118.3406288 -Kansas City ,146281,39.0844687,-94.5630298 -Escondido ,146247,33.1216751,-117.0814849 -Bridgeport ,146110,41.1670412,-73.2048348 -Fort Collins ,145977,40.5508527,-105.0668085 -Paterson ,145962,40.9167654,-74.171811 -Syracuse ,144457,43.0481221,-76.1474244 -Lakewood ,144184,39.6246085,-105.0842039 -Sunnyvale ,143968,37.3688301,-122.0363496 -Hollywood ,143696,34.1028268,-118.3299899 -Naperville ,142994,41.7729107,-88.147867 -Dayton ,141894,39.7589478,-84.1916069 -Cary ,141773,35.7882973,-78.7811925 -Mesquite ,141454,32.7666103,-96.599472 -Savannah ,140157,32.0835407,-81.0998342 -Orange ,138438,33.7500378,-117.8704931 -Pasadena ,138036,34.1476452,-118.1444779 -McKinney ,137960,33.1976496,-96.6154471 -Fullerton ,136673,33.8708215,-117.9294165 -Clarksville ,136442,38.2967791,-85.7602087 -Warren ,133904,40.8442828,-90.6168408 -McAllen ,133623,26.154573,-98.26072076 -West Valley City ,131077,40.6916132,-112.0010501 -New Haven ,130955,41.3082138,-72.9250518 -Bellevue ,130267,47.6144219,-122.1923372 -Sterling Heights ,129883,42.5803122,-83.0302033 -Olathe ,128269,38.8843867,-94.8161127 -Topeka ,128015,39.0490111,-95.6775557 -Cedar Rapids ,127837,41.9758872,-91.6704053 -Thousand Oaks ,127559,34.1705609,-118.8375937 -Waco ,126534,31.549333,-97.1466695 -Elizabeth ,126063,40.6639916,-74.2107006 -Visalia ,125859,36.3302284,-119.2920585 -Gainesville ,125743,29.651907,-82.3247976 -Hartford ,125492,41.7634935,-72.6830523 -Miramar ,125189,25.97591145,-80.33472113 -Simi Valley ,125184,34.2694474,-118.781482 -Stamford ,124123,41.0534302,-73.5387341 -Concord ,123764,43.207106,-71.5370216 -Coral Springs ,123753,26.26485615,-80.26534189 -Frisco ,123605,35.2351765,-75.6284903 -Charleston ,123144,32.7876012,-79.9402728 -Carrollton ,122505,33.5801103,-85.0766113 -Roseville ,122294,38.72338,-121.1858782 -Lafayette ,122172,30.2240897,-92.0198427 -Thornton ,121885,39.95782075,-104.9669887 -Evansville ,120133,37.9747645,-87.5558483 -Denton ,120045,33.1728435,-97.05898636 -Surprise ,119195,33.6292271,-112.3680189 -Allen ,118878,37.8882168,-95.3170208 -Abilene ,118727,32.4464534,-99.7333478 -Victorville ,118134,34.5361067,-117.2911565 -Santa Clara ,118010,37.3541132,-121.9551744 -Beaumont ,117833,30.0860459,-94.1018461 -Springfield ,117096,39.7989763,-89.6443688 -Vallejo ,116908,38.1040864,-122.2566367 -Independence ,116860,37.2242358,-95.7083131 -Peoria ,115279,40.6938609,-89.5891008 -Ann Arbor ,115276,42.2681569,-83.7312291 -Provo ,114611,40.2338438,-111.6585337 -El Monte ,114354,34.0751571,-118.036849 -Lansing ,114270,42.7337712,-84.5553805 -Berkeley ,114048,37.8708393,-122.2728639 -Norman ,113968,35.2225717,-97.4394816 -Midland ,113885,43.6155825,-84.2472117 -Downey ,112541,33.9400143,-118.1325688 -Murfreesboro ,111704,35.9155165,-86.44469333 -Costa Mesa ,111049,33.6633386,-117.903317 -Inglewood ,110834,33.9616801,-118.3531311 -Miami Gardens ,110414,25.94207545,-80.23975271 -Waterbury ,110080,41.5581525,-73.0514966 -Elgin ,109243,42.0372487,-88.2811895 -Clearwater ,108387,27.9658533,-82.8001026 -Wilmington ,108244,39.7459468,-75.546589 -Rochester ,108171,43.1854754,-77.61068605 -San Buenaventura (Ventura) ,107800,34.302548,-119.2072845 -Carlsbad ,107754,33.1580933,-117.3505939 -Fargo ,107714,46.8772292,-96.789821 -Arvada ,107578,39.8027644,-105.0874842 -Lowell ,107553,42.6334247,-71.3161718 -Gresham ,107498,45.5067406,-122.4367058 -Pueblo ,107341,38.2544472,-104.609141 -West Covina ,107006,34.0686208,-117.9389526 -West Jordan ,106575,40.6096698,-111.9391031 -Fairfield ,106254,38.2493581,-122.0399663 -Norwalk ,106188,41.1175966,-73.4078968 -High Point ,105802,35.9556924,-80.0053176 -Billings ,105534,45.7874957,-108.49607 -Richmond ,105404,37.5385087,-77.43428 -Murrieta ,105253,33.560832,-117.2106564 -Green Bay ,104389,44.5299412,-88.0248317 -Wichita Falls ,104100,33.9137085,-98.4933873 -Burbank ,104003,34.1816482,-118.3258554 -Round Rock ,103929,30.5725805,-97.64840733 -Antioch ,103923,38.0049214,-121.805789 -Everett ,103593,47.9673056,-122.2013998 -Palm Bay ,103380,28.0331886,-80.6429695 -Temecula ,102955,33.4946353,-117.1473661 -Daly City ,102640,37.688432,-122.4606865 -Centennial ,102479,39.5680644,-104.9778307 -Pompano Beach ,101884,26.2378597,-80.1247667 -Richardson ,101676,32.9481789,-96.7297206 -Erie ,101431,42.129461,-80.085239 -West Palm Beach ,101349,26.7153425,-80.0533746 -South Bend ,101012,41.6833813,-86.2500066 -Boulder ,100852,40.0149856,-105.2705456 -El Cajon ,100833,32.7947731,-116.9625269 -Davenport ,100537,41.5236436,-90.5776368 -Broken Arrow ,100093,36.0525993,-95.7908195 -Las Cruces ,100032,32.3140354,-106.7798078 -North Charleston ,99834,32.8546197,-79.9748103 -Kenosha ,99525,42.5846773,-87.8212263 -Lakeland ,99088,28.0394654,-81.9498042 -San Mateo ,98669,37.496904,-122.3330573 -Tyler ,98298,32.3512601,-95.3010624 -Lawton ,98283,34.6086854,-98.3903305 -Albany ,98012,42.6511674,-73.754968 -Lewisville ,97424,33.046233,-96.994174 -Clovis ,97414,34.405472,-103.2050709 -Dearborn ,97326,42.3222599,-83.1763145 -Sandy Springs ,97011,33.9242688,-84.3785379 -Roanoke ,96810,37.270973,-79.9414313 -Jurupa Valley ,96460,33.9798472,-117.4515754 -Livonia ,96315,42.36837,-83.3527097 -College Station ,95703,30.6262616,-96.3347249 -Vista ,95168,33.2000368,-117.2425355 -South Gate ,95079,33.9463456,-118.200981 -New Bedford ,94798,41.6362152,-70.934205 -San Angelo ,94651,31.4319925,-100.4545797 -Greeley ,94318,40.4233142,-104.7091322 -Davie ,94283,26.075729,-80.28410878 -Mission Viejo ,94209,33.5965685,-117.659405 -Yuma ,94174,32.665167,-114.4759049 -Brockton ,94147,42.0834335,-71.0183787 -Hillsboro ,94095,45.5228939,-122.989827 -Renton ,94030,47.4799078,-122.2034496 -Vacaville ,93356,38.3760441,-121.9954703 -Pearland ,93252,29.5639758,-95.2864299 -Yakima ,92787,46.601557,-120.5108421 -Quincy ,92551,39.9356016,-91.4098727 -Carson ,91940,33.8322043,-118.2517547 -Lee's Summit ,91920,38.9108408,-94.3821724 -Tuscaloosa ,91739,33.2668398,-87.4862182 -Hesperia ,91418,34.4263886,-117.3008784 -Beaverton ,91406,45.4871723,-122.8037804 -Roswell ,91196,33.3942655,-104.5230242 -Sparks ,91010,39.5348431,-119.7527683 -Lynn ,90778,42.466763,-70.9494939 -Santa Monica ,90749,34.0195598,-118.4869739 -Federal Way ,90694,47.313494,-122.3393103 -Spokane Valley ,90622,47.6732281,-117.2393748 -Miami Beach ,90416,25.7881436,-80.1272705 -Redding ,90367,40.5863563,-122.3916754 -Orem ,89613,40.2975185,-111.6944685 -Rio Rancho ,89570,35.233375,-106.6644716 -Lawrence ,89050,38.9719384,-95.2359496 -Waukegan ,88940,42.3636331,-87.8447938 -Santa Barbara ,88757,34.4098107,-119.6970239 -Fall River ,88738,43.2264954,-103.5791473 -Sandy ,88692,40.572851,-111.8334495 -Allen ,87798,37.8882168,-95.3170208 -Longmont ,87427,40.1672117,-105.1019287 -Fort Smith ,87189,35.3872218,-94.4248983 -Plantation ,86961,26.1265258,-80.25786104 -Norwalk ,86705,41.1175966,-73.4078968 -Chico ,86687,39.7284945,-121.8374777 -Nashua ,86644,42.7653662,-71.467566 -Boca Raton ,86622,26.3586885,-80.0830984 -Sunrise ,86483,26.1482449,-80.32888574 -League City ,86279,29.5074538,-95.0949303 -Duluth ,86270,46.7729322,-92.1251218 -Greenville ,86244,34.851354,-82.3984882 -Newport Beach ,86229,33.6170092,-117.9294401 -San Leandro ,85989,37.7249296,-122.1560768 -Newton ,85915,42.3370414,-71.2092214 -Whittier ,85883,33.9748932,-118.0336975 -Hawthorne ,85161,33.9113109,-118.3477942 -San Marcos ,85152,29.8826436,-97.9405828 -Deltona ,85138,28.9005446,-81.2636738 -Asheville ,84697,35.6009498,-82.5540161 -Trenton ,84476,40.2170575,-74.7429463 -Cicero ,84395,41.8455878,-87.7539448 -Tracy ,84114,37.718829,-121.4342842 -Citrus Heights ,83960,38.7071247,-121.2810611 -Bloomington ,83917,39.1670396,-86.5342881 -Westland ,83563,42.3238056,-83.4005321 -Ogden ,83316,41.2230048,-111.9738429 -Sioux City ,83033,42.4966815,-96.4058782 -Edmond ,83020,35.6571367,-97.4649038 -Nampa ,82645,43.5737361,-116.559642 -Livermore ,82360,37.6820583,-121.7680531 -Danbury ,82176,41.394817,-73.4540111 -Kirkland ,82098,47.6859573,-122.1920249 -Champaign ,81982,40.1164205,-88.2433829 -Hoover ,81759,33.392206,-86.78045321 -Bloomington ,81710,39.1670396,-86.5342881 -Buena Park ,81709,33.870413,-117.9962165 -Carmel ,81633,39.9783711,-86.1180435 -Troy ,81530,42.6055893,-83.1499304 -Bellingham ,81517,48.754402,-122.4788602 -Indio ,81167,33.7192808,-116.2188054 -O'Fallon ,81023,38.5922715,-89.9112124 -Longview ,81014,32.5007038,-94.7404891 -Concord ,80620,43.207106,-71.5370216 -Lakewood ,80599,39.6246085,-105.0842039 -Cranston ,80542,41.7809588,-71.4371257 -Sugar Land ,80527,29.6196787,-95.6349463 -Hemet ,80400,33.778562,-117.0357665 -Farmington Hills ,80196,42.4853125,-83.3771553 -Hammond ,80194,41.5833658,-87.500043 -Fishers ,79955,39.9555928,-86.0138729 -Menifee ,79945,37.9357602,-83.6014187 -Merced ,79831,37.3029568,-120.4843269 -Mission ,79690,26.2159066,-98.3252932 -Gary ,79688,41.6021292,-87.3371372 -Chino ,79620,34.0133561,-117.690075 -Johns Creek ,79521,34.0181557,-84.190196 -Racine ,78505,42.7261309,-87.7828523 -Lake Forest ,78454,42.2586342,-87.840625 -Redwood City ,78066,37.4852152,-122.2363548 -Largo ,77941,27.9094665,-82.7873244 -Meridian ,77855,32.376096,-88.68978607 -Napa ,77777,38.2891775,-122.2937063 -Albany ,77746,42.6511674,-73.754968 -New Rochelle ,77709,40.9115386,-73.7826363 -Bend ,77628,44.0581728,-121.3153096 -Camden ,77567,30.9298212,-81.6225075 -Bryan ,77255,30.693444,-96.40080172 -Bellflower ,77134,33.8825705,-118.1167679 -Bloomington ,77120,39.1670396,-86.5342881 -St. Joseph ,77112,39.7686055,-94.8466322 -Lawrence ,76986,38.9719384,-95.2359496 -Avondale ,76927,33.4359175,-112.3405021 -Brooklyn Park ,76889,45.1004807,-93.3443585 -Lynchburg ,76813,37.40088,-79.18449229 -Somerville ,76666,42.3875968,-71.0994968 -Deerfield Beach ,76567,26.318342,-80.0996306 -Palm Coast ,76554,29.5541432,-81.2207673 -Tustin ,76371,33.7458511,-117.826166 -Scranton ,75981,41.4086874,-75.6621294 -Baldwin Park ,75949,34.08033185,-117.9662137 -Decatur ,75846,39.8628075,-88.89387182 -Chino Hills ,75788,33.9926803,-117.760056 -Medford ,75670,42.3264181,-122.8718605 -Fayetteville ,75590,36.111508,-94.20986672 -Kennewick ,75542,46.2112458,-119.1372338 -Arlington Heights village,75394,38.8967784,-77.0724777 -Mountain View ,75207,37.3855745,-122.08205 -Bethlehem ,75084,40.6178915,-75.3786521 -Evanston ,74993,42.0447388,-87.6930459 -Alameda ,74753,37.6090291,-121.899142 -Kalamazoo ,74679,42.291707,-85.5872286 -Upland ,74623,34.09751,-117.6483876 -St. George ,73953,37.104153,-113.5841313 -Bolingbrook village,73783,39.98265,-83.1258399 -San Ramon ,73062,37.7799273,-121.9780153 -Bay ,72973,30.2481693,-85.6593633 -Appleton ,72835,44.2611337,-88.4067604 -Folsom ,72682,38.6779591,-121.1760583 -Wyoming ,72681,43.1700264,-107.5685348 -Lake Charles ,72679,30.2265949,-93.2173759 -Springdale ,72322,36.1867442,-94.1288142 -Southfield ,72109,42.4733689,-83.2218731 -Pharr ,72095,26.1572415,-98.19134333 -Gastonia ,72013,35.262082,-81.1873005 -Auburn ,71605,32.5978265,-85.56335486 -Rochester Hills ,71573,42.6583661,-83.1499322 -Pleasanton ,71249,37.6624312,-121.8746789 -Pawtucket ,71186,41.878711,-71.3825558 -Wilmington ,70978,39.7459468,-75.546589 -Warner Robins ,70741,32.598313,-83.62567691 -Waukesha ,70709,43.0116784,-88.2314813 -Union City ,70666,37.5963232,-122.0816297 -Perris ,70368,33.7825194,-117.2286478 -Muncie ,70347,40.1936683,-85.3865114 -Passaic ,70270,40.8567663,-74.1284764 -Apple Valley ,70150,44.7319094,-93.21772 -Lynwood ,69852,33.9303225,-118.2114933 -Lafayette ,69795,30.2240897,-92.0198427 -Redlands ,69441,34.072662,-117.0934169 -Mount Pleasant ,69411,32.7940651,-79.8625851 -Manteca ,69287,37.7986184,-121.2117148 -Turlock ,69183,37.4946568,-120.8465941 -Iowa City ,69183,41.6612561,-91.5299106 -Loveland ,69153,40.3977612,-105.0749801 -Jonesboro ,69069,35.8428646,-90.7034522 -Boynton Beach ,68946,26.5253491,-80.0664309 -Gulfport ,68887,30.3674198,-89.0928155 -Santa Fe ,68736,35.6869996,-105.9377997 -Rapid City ,68637,44.0811755,-103.228006 -Waterloo ,68386,43.4655524,-80.5217786 -Lauderhill ,68374,26.1403635,-80.2133808 -Layton ,68245,41.0602888,-111.9661495 -Jacksonville ,68161,30.3321838,-81.655651 -Missouri City ,67922,29.6330685,-95.5375482 -Mount Vernon ,67746,38.3172715,-88.9031201 -Union City ,67686,37.5963232,-122.0816297 -Missoula ,67565,46.879583,-113.921459 -Temple ,67514,31.098207,-97.3427847 -Rock Hill ,67339,34.9248667,-81.0250784 -Goodyear ,67229,33.353366,-112.4138567 -Redondo Beach ,67193,33.8455911,-118.3886766 -Milpitas ,67188,37.4282724,-121.9066238 -Kenner ,66875,29.9942265,-90.2417806 -Jackson ,66816,32.2990384,-90.1847691 -Eau Claire ,66797,44.811349,-91.4984941 -Dothan ,66662,31.158522,-85.4269662 -Youngs ,66574,38.8986836,-83.2060162 -St. Charles ,66159,41.9141984,-88.3086977 -Portland ,66147,45.5202471,-122.6741949 -Oshkosh ,66128,44.0206919,-88.5408574 -Flower Mound ,66067,33.0145673,-97.0969552 -Flagstaff ,66066,35.199458,-111.6514259 -Rancho Cordova ,66058,38.5890723,-121.302728 -Schenectady ,66041,42.8095455,-74.021672 -Frederick ,65965,39.414443,-77.4105783 -St. Cloud ,65915,45.5616075,-94.1642004 -Yorba Linda ,65765,33.890107,-117.8255939 -Davis ,65741,38.545379,-121.7445835 -Camarillo ,65670,34.2163939,-119.0376024 -Harlingen ,65666,26.1906306,-97.6961026 -Palo Alto ,65442,37.442156,-122.1634472 -Walnut Creek ,64914,37.9063131,-122.064963 -Yuba City ,64845,39.1404477,-121.6169108 -South San Francisco ,64621,37.6549493,-122.4081251 -Pittsburg ,64621,38.0187757,-121.8850836 -Pasco ,64568,28.2996183,-82.4522702 -Eagan ,64526,44.818173,-93.1659179 -East Orange ,64403,40.767323,-74.2048677 -North Richland Hills ,64387,32.8342952,-97.2289029 -San Clemente ,64378,33.4270275,-117.6124179 -Franklin ,64339,37.9765409,-88.9335327 -Johnson City ,64283,36.3134398,-82.3534728 -Lorain ,63968,41.452819,-82.1823746 -Laguna Niguel ,63893,33.5225261,-117.7075526 -Fort Myers ,63838,26.640628,-81.8723084 -North Little Rock ,63525,34.7456275,-92.15314448 -Woodbury ,63523,44.92317,-92.9588282 -Janesville ,63449,42.7151854,-88.9907743 -Bossier City ,63441,32.5499425,-93.70095925 -Pico Rivera ,63384,33.9830688,-118.096735 -Maple Grove ,63200,45.0759797,-93.4561052 -Montebello ,63090,34.0159398,-118.111975 -Shawnee ,63017,39.0416718,-94.7202376 -Bismarck ,62997,46.8083268,-100.7837392 -Homestead ,62777,25.4687224,-80.4775569 -Taylor ,62636,32.556921,-84.2395154 -Council Bluffs ,62500,41.2621283,-95.8613912 -Hamilton ,62335,43.254687,-79.8678197 -Rockville ,62143,39.0840054,-77.1527573 -Utica ,62024,43.1009031,-75.2326641 -Madera ,61999,37.1716264,-119.7737991 -Tamarac ,61808,26.2052115,-80.27105546 -Conway ,61666,35.0886963,-92.4421011 -Eden Prairie ,61610,44.8546856,-93.470786 -Delray Beach ,61598,26.4614625,-80.0728201 -Kissimmee ,61520,28.2920249,-81.4078013 -Coon Rapids ,61506,45.1199652,-93.2877277 -Gaithersburg ,61491,39.1434406,-77.2013705 -Haverhill ,61463,42.7762015,-71.0772796 -Santa Cruz ,61449,36.9746099,-122.0294259 -Waltham ,61377,42.3756401,-71.2358004 -Marysville ,61289,39.1457247,-121.5913516 -Daytona Beach ,61202,29.2108147,-81.0228331 -La Habra ,61052,33.9318775,-117.9461074 -Terre Haute ,60985,39.4667025,-87.4139119 -Vineland ,60947,39.473152,-75.00202645 -Meriden ,60736,41.5381535,-72.8070435 -Monterey Park ,60676,34.0512156,-118.129229 -Burnsville ,60655,44.7677424,-93.2777226 -North Miami ,60593,25.90560775,-80.17506945 -West Allis ,60507,43.0166806,-88.0070315 -Cheyenne ,60339,41.1399814,-104.8202462 -Encinitas ,60339,33.0369867,-117.2919818 -Springfield ,60306,39.7989763,-89.6443688 -Ames ,60231,42.0346917,-93.6201507 -Tulare ,59948,36.2516475,-118.852583 -Greenville ,59947,34.851354,-82.3984882 -Malden ,59940,42.4250964,-71.066163 -Taylorsville ,59755,40.6677517,-111.9386311 -Springfield ,59728,39.7989763,-89.6443688 -St. Clair Shores ,59671,42.4969805,-82.8888054 -Pontiac ,59627,40.8808666,-88.6297839 -Grand Junction ,59581,39.063956,-108.5507317 -Alpharetta ,59424,34.0709576,-84.2747329 -New Braunfels ,59422,29.7026173,-98.1256263 -Lancaster ,59400,40.03813,-76.3056686 -Bowling Green ,59395,36.9903199,-86.4436018 -Gardena ,59279,33.8883302,-118.3070892 -Cupertino ,59253,37.3230107,-122.0322519 -National City ,59145,32.6781085,-117.0991967 -Conroe ,59120,30.20481805,-95.45240905 -Great Falls ,58971,47.5048851,-111.2918908 -Lakewood ,58649,39.6246085,-105.0842039 -Des Plaines ,58637,42.0415823,-87.8873916 -Huntington Park ,58486,33.9816812,-118.2250725 -West Des Moines ,58373,41.5645337,-93.7595281 -San Rafael ,58264,37.9735346,-122.5310874 -Petaluma ,58262,38.270022,-122.6061223 -Royal Oak ,58138,42.4894801,-83.1446485 -Blaine ,58128,35.8970899,-98.4225961 -Mansfield ,58065,40.75839,-82.5154471 -Dubuque ,57818,42.5006217,-90.6647967 -Rogers ,57780,36.3781607,-95.6190889 -La Mesa ,57777,33.436188,-111.5860661 -Owensboro ,57774,37.7742152,-87.1133304 -North Port ,57626,27.044224,-82.2359254 -Marietta ,57604,33.9528472,-84.5496148 -Idaho Falls ,57595,43.4930789,-112.044349 -Rocky Mount ,57533,35.9382104,-77.7905341 -Broomfield ,57433,39.9379892,-105.0587294 -Chapel Hill ,57429,35.9131996,-79.0558445 -Dearborn Heights ,57389,42.3369816,-83.2732627 -Bartlett ,57363,41.9908485,-88.1850028 -White Plains ,57231,41.0339862,-73.7629097 -Rowlett ,57019,32.9029017,-96.56388 -Tinley Park village,56967,41.5961445,-87.7864396 -Kokomo ,56923,40.4864444,-86.1336351 -Arcadia ,56812,34.1362075,-118.0401497 -Moore ,56754,35.2835629,-86.3411514 -Berwyn ,56748,41.8505874,-87.7936685 -Medford ,56676,42.3264181,-122.8718605 -Ocala ,56637,29.1871986,-82.1400923 -Lakeville ,56625,44.650051,-93.2432791 -Port Orange ,56593,29.10150985,-81.01055374 -Jupiter ,56240,26.9266939,-80.12208902 -Casper ,56173,42.866632,-106.313081 -Valdosta ,56087,30.8327022,-83.2784851 -Fountain Valley ,56072,33.7038145,-117.9627349 -Diamond Bar ,55982,34.0286226,-117.8103367 -Novi ,55933,42.48059,-83.4754913 -Anderson ,55920,38.198077,-95.3067461 -Decatur ,55834,39.8628075,-88.89387182 -Woodland ,55796,38.6786109,-121.7733285 -Bowie ,55725,39.0067768,-76.7791365 -Chicopee ,55551,42.17073265,-72.57331507 -West Haven ,55512,41.2706527,-72.9470471 -Redmond ,55501,47.6694141,-122.1238767 -Cedar Park ,55360,30.5119385,-97.8097447 -Midwest City ,55310,35.4495097,-97.3967025 -Auburn ,54981,32.5978265,-85.56335486 -Port Arthur ,54926,29.8988258,-93.9287815 -Porterville ,54756,36.06523,-119.0167679 -Carson City,54747,39.1637984,-119.7674034 -Lake Elsinore ,54724,33.6680772,-117.3272615 -Pocatello ,54648,42.8688613,-112.4401098 -Santee ,54597,32.8383828,-116.9739167 -Eastvale ,54591,33.9766799,-117.5598444 -Corvallis ,54567,44.5645659,-123.2620435 -Paramount ,54477,33.8984873,-118.170703 -Mount Prospect village,54432,41.983426,-73.4212318 -Hanford ,54381,36.3274502,-119.6456844 -Elyria ,54322,41.3683798,-82.1076486 -Manhattan ,54245,40.7902778,-73.9597222 -Sanford ,54228,35.4798757,-79.1802994 -Coconut Creek ,54221,26.2714628,-80.18180846 -Rosemead ,54165,34.0676169,-118.0879763 -Noblesville ,53972,40.0455918,-86.0085955 -Shoreline ,53755,47.7563195,-122.3438255 -Delano ,53661,35.7688425,-119.2470536 -St. Peters ,53391,38.8010514,-90.627881 -South Jordan ,53347,40.5621704,-111.929658 -Wheaton ,53274,41.8646959,-88.1101709 -Normal ,53053,40.5117699,-88.9944815 -Lake Havasu City ,52829,34.483901,-114.3224548 -Colton ,52816,34.0739016,-117.3136547 -Kingsport ,52796,36.5484341,-82.5618186 -Blue Springs ,52786,39.01723,-94.2822095 -Brentwood ,52774,37.9317766,-121.6960266 -Grand Forks ,52749,47.9078244,-97.0592028 -Novato ,52729,38.1061979,-122.5681191 -Buckeye ,52419,38.9237892,-120.7979883 -Florissant ,52417,38.789217,-90.322614 -Hendersonville ,52407,35.3187279,-82.4609528 -Sarasota ,52371,27.3364347,-82.5306527 -Euless ,52152,32.8370727,-97.0819541 -Cathedral City ,52132,33.7810031,-116.4640765 -Hoffman Estates village,52118,42.0639157,-88.1247969 -Yucaipa ,52081,34.040931,-117.0516713 -Battle Creek ,52035,42.3192548,-85.1824269 -Pensacola ,52006,30.421309,-87.2169149 -Smyrna ,51966,39.2998339,-75.6046494 -Oak Park village,51955,35.8466277,-78.70554926 -Greenwood ,51889,37.8709542,-96.2471338 -Bellevue ,51888,47.6144219,-122.1923372 -Lakewood ,51638,39.6246085,-105.0842039 -Peabody ,51608,42.5278731,-70.9286609 -Placentia ,51582,33.8714814,-117.8617337 -Watsonville ,51582,36.9092773,-121.7529071 -Perth Amboy ,51484,40.5067723,-74.2654234 -Milford ,51381,41.2223194,-73.0564953 -Hoboken ,51330,40.7433066,-74.0323752 -La Crosse ,51271,43.8804365,-91.25484113 -Joplin ,51142,37.0842271,-94.513281 -Burlington ,51120,44.4723989,-73.2114941 -Albany ,51053,42.6511674,-73.754968 -Saginaw ,51047,43.4200387,-83.9490365 -Charleston ,51040,32.7876012,-79.9402728 -Elkhart ,50969,41.6819935,-85.9766671 -West New York ,50773,40.7880091,-74.0142761 -Minnetonka ,50626,44.9127229,-93.499059 -Glendora ,50565,34.1361187,-117.865339 -George ,50301,30.857421,-88.6537118 -Pflugerville ,50294,30.4393696,-97.6200043 -Richland ,50283,38.7060457,-88.0949352 -DeSoto ,50167,34.8703284,-89.9778704 -Castle Rock ,50116,39.3726585,-104.8584264 -Plainfield ,50057,41.623191,-88.22843248 -Troy ,50024,42.6055893,-83.1499304 -Niagara Falls ,49892,43.1030928,-79.0302618 -Harrisonburg ,49811,38.4493315,-78.8688833 -Apple Valley ,49790,44.7319094,-93.21772 -Bradenton ,49753,27.4989278,-82.5748194 -Lehi ,49721,40.3880902,-111.8491619 -Casa Grande ,49716,32.8793816,-111.7575614 -Southaven ,49713,34.9889818,-90.0125913 -Gilroy ,49683,37.0065078,-121.5631723 -Brookhaven ,49609,31.58369,-90.44180867 -Pinellas Park ,49476,27.8599115,-82.70437819 -Grand Island ,49464,40.9250124,-98.342007 -Enid ,49458,36.3967623,-97.8791341 -Cuyahoga Falls ,49385,41.1348213,-81.4848086 -Harrisburg ,49365,40.2663107,-76.8861122 -Monroe ,49357,38.2722313,-90.1792484 -Wilson ,49347,37.5692118,-95.7452639 -Palm Desert ,49325,33.7288179,-116.3825711 -Palm Beach Gardens ,49278,26.84176195,-80.13530872 -West Sacramento ,49199,38.5804609,-121.530234 -Kentwood ,49157,42.8694731,-85.6447492 -Huntington ,49112,38.4192496,-82.445154 -Logan ,49107,40.1075089,-89.3768539 -Sheboygan ,49093,43.7508284,-87.71453 -Tigard ,49031,45.4307473,-122.7719339 -Aliso Viejo ,48953,33.5761376,-117.7258122 -Lenexa ,48846,38.9536174,-94.7335709 -La Mirada ,48832,33.9060971,-118.0107092 -Burien ,48758,47.469918,-122.3485274 -Poway ,48697,32.9628234,-117.0358646 -Edina ,48636,44.8897027,-93.3501222 -East Lansing ,48603,42.7355416,-84.4852469 -Cypress ,48493,33.8248235,-118.0399368 -Euclid ,48491,41.5931049,-81.5267873 -Roswell ,48483,33.3942655,-104.5230242 -Rancho Santa Margarita ,48426,33.640855,-117.603104 -Coral Gables ,48271,25.6905515,-80.23500888 -Covina ,48103,34.0877926,-117.8891164 -Mishawaka ,48103,41.6619927,-86.1586156 -Pine Bluff ,48100,34.2284312,-92.0031955 -Huntersville ,48085,35.4107135,-80.8428483 -Sammamish ,47936,47.6088445,-122.0423067 -Salina ,47822,38.8402805,-97.6114237 -Newark ,47793,40.735657,-74.1723667 -San Marcos ,47695,29.8826436,-97.9405828 -Galveston ,47663,29.299328,-94.7945882 -Doral ,47648,25.8184725,-80.35396781 -Commerce City ,47549,39.8083196,-104.9338675 -Olympia ,47352,47.0450197,-122.8948725 -Mansfield ,47246,40.75839,-82.5154471 -Roseville ,47231,38.72338,-121.1858782 -Caldwell ,47221,32.0820785,-92.1130105 -Murray ,47182,34.4935341,-97.0475803 -Ankeny ,47166,41.7318715,-93.6003837 -Grapevine ,47148,32.9342919,-97.0780654 -Mentor ,47089,41.6661573,-81.339552 -East Providence ,47069,41.8137116,-71.3700545 -Binghamton ,47019,42.096968,-75.914341 -Portage ,46707,41.5758708,-87.1761455 -Dunwoody ,46657,33.9430886,-84.30974861 -Azusa ,46632,34.1338751,-117.9056046 -Wauwatosa ,46496,43.0494122,-88.0079271 -Hattiesburg ,46402,31.3271189,-89.2903392 -Lawrence ,46329,38.9719384,-95.2359496 -Parker ,46296,39.5184514,-104.7612638 -Altoona ,46227,40.518681,-78.394736 -Sierra Vista ,46173,31.5545401,-110.3036929 -Stillwater ,46117,36.1156306,-97.0585717 -Collierville ,45931,35.042036,-89.6645266 -Cedar Hill ,45853,32.5889112,-96.9559308 -Cleveland Heights ,45811,41.5200518,-81.556235 -Beavercreek ,45790,39.7092262,-84.0632685 -St. Louis Park ,45747,44.9475726,-93.3569023 -Jeffersonville ,45570,38.2776479,-85.7371131 -Farmington ,45511,36.7304288,-108.2089191 -San Luis Obispo ,45415,35.2827525,-120.6596156 -Palm Springs ,45272,33.8345281,-116.5389475 -Texas City ,45213,29.383845,-94.9027002 -Coeur d'Alene ,45021,47.6776832,-116.7804664 -Bonita Springs ,44927,26.3618645,-81.79306068 -Elmhurst ,44915,41.8994745,-87.9403418 -Glenview village,44877,38.2875699,-85.6369058 -Barnstable Town ,44831,41.278228,-73.6006489 -Twin Falls ,44812,42.5629668,-114.4608711 -Leesburg ,44599,39.1026092,-77.55901065 -Strongsville ,44587,41.3144733,-81.83511 -Columbus ,44578,39.9622601,-83.0007065 -Pittsfield ,44395,42.4500967,-73.2453785 -Maricopa ,44332,33.34883,-112.49123 -Biloxi ,44250,30.3960318,-88.8853645 -Madison ,44030,43.074761,-89.3837613 -DeKalb ,43819,41.9294736,-88.7503647 -Charlottesville ,43770,38.029306,-78.4766781 -Belleville ,43732,38.5200504,-89.9839935 -Titusville ,43720,28.6122187,-80.8075538 -Lincoln ,43697,40.8000554,-96.6674005 -Attleboro ,43663,41.9445441,-71.2856082 -Lombard village,43621,38.2250033,-104.5449727 -Summerville ,43527,33.0000235,-80.18979261 -Hackensack ,43477,40.8859326,-74.0434736 -Lacey ,43354,47.0263876,-122.8072257 -Sayreville borough,43338,40.4592726,-74.3609822 -Jefferson City ,43293,38.577359,-92.1724265 -Wylie ,43273,33.0151201,-96.5388789 -Draper ,43273,40.5246711,-111.8638226 -Moline ,43243,41.5067003,-90.5151342 -Apopka ,43217,28.7414145,-81.5344293 -Littleton ,43188,39.613321,-105.0166498 -Kannapolis ,43176,35.4873613,-80.6217341 -El Centro ,43111,32.792,-115.5630514 -Fond du Lac ,43105,43.7748763,-88.4458033 -Newark ,43065,40.735657,-74.1723667 -Minot ,43061,48.2325095,-101.2962732 -Haltom City ,42923,32.7995738,-97.2691817 -Bountiful ,42856,40.8894611,-111.8804817 -North Miami Beach ,42827,25.928842,-80.15278619 -Blacksburg ,42791,37.2296566,-80.4136767 -Fairfield ,42617,38.2493581,-122.0399663 -Danville ,42586,40.125222,-87.6304614 -Concord ,42434,43.207106,-71.5370216 -Danville ,42419,40.125222,-87.6304614 -Burlington ,42410,44.4723989,-73.2114941 -Bell Gardens ,42347,33.9652918,-118.1514588 -Fort Pierce ,42337,27.4467056,-80.3256056 -Oakland Park ,42298,26.1801443,-80.1372004 -Lompoc ,42230,34.6391501,-120.4579409 -Everett ,42136,47.9673056,-122.2013998 -Rancho Palos Verdes ,42099,33.7483311,-118.3707683 -Hutchinson ,42088,38.0608444,-97.9297743 -State College borough,42037,40.794026,-77.8606975 -Salem ,42035,44.9391565,-123.033121 -Midland ,41968,43.6155825,-84.2472117 -Coachella ,41938,33.6795519,-116.176338 -Cleveland ,41926,41.5051613,-81.6934446 -North Lauderdale ,41924,26.217305,-80.2258811 -Cutler Bay ,41888,25.575865,-80.34137218 -Altamonte Springs ,41718,28.6649055,-81.37626851 -Urbana ,41653,40.1117174,-88.207301 -San Bruno ,41562,37.6304904,-122.4110835 -Bartlett village,41430,43.1161806,-75.403783 -Kearny ,41400,37.9960049,-101.3523356 -Westfield ,41390,42.1250929,-72.7495381 -Wilkes-Barre ,41375,41.2464824,-75.8817316 -Findlay ,41276,41.0413873,-83.6503982 -Oro Valley ,41251,32.3909071,-110.966488 -Meridian ,41128,32.376096,-88.68978607 -Warren ,41062,40.8442828,-90.6168408 -Woonsocket ,41045,42.0028761,-71.5147839 -Rohnert Park ,41025,38.3396367,-122.7010984 -Smyrna ,40980,39.2998339,-75.6046494 -Keller ,40884,37.6192992,-75.7638185 -Leominster ,40882,42.5250906,-71.759794 -Quincy ,40782,39.9356016,-91.4098727 -Linden ,40650,33.0123537,-94.3654707 -Sumter ,40557,32.0485072,-84.1862464 -Crystal Lake ,40547,42.2411344,-88.3161965 -Covington ,40505,39.0837489,-84.5086221 -Fitchburg ,40365,42.5834228,-71.8022956 -Urbandale ,40256,41.6274552,-93.7380624 -Plainfield village,40145,41.67650655,-71.92223409 -La Puente ,40128,34.01979,-117.9503677 -Holyoke ,40102,42.22415795,-72.64021831 -Beverly ,40070,42.5584284,-70.8800491 -Streamwood village,40067,33.7125089,-117.7573608 -Hickory ,40048,35.7331895,-81.3412006 -Shelton ,40009,41.3164856,-73.0931641 -Carol Stream village,39970,41.913645,-88.1184169 -Edmonds ,39949,47.8105738,-122.3774952 -Brea ,39897,33.9170444,-117.8888557 -Prescott ,39874,34.5400242,-112.4685025 -Campbell ,39853,37.2158191,-79.1165953 -Bullhead City ,39615,35.1477774,-114.5682983 -New Berlin ,39613,42.976453,-88.1090391 -Riverton ,39581,43.0249578,-108.3798938 -Mankato ,39569,44.1634663,-93.9993505 -Cedar Falls ,39566,42.5277622,-92.4454654 -Huntsville ,39558,34.577718,-86.83583561 -Atlantic City ,39529,39.3642852,-74.4229351 -Coppell ,39464,32.958352,-96.988183 -Manassas ,39358,38.744947,-77.48244413 -Bremerton ,39241,47.5665391,-122.6527973 -Wausau ,39137,44.9596017,-89.6298239 -Culver City ,39120,34.0211224,-118.3964665 -Muskogee ,39087,35.6630196,-95.3927706 -Rockwall ,39070,32.9312336,-96.4597089 -Calexico ,39048,32.6789476,-115.4988834 -Duncanville ,39037,32.6518004,-96.9083366 -Lancaster ,38958,40.03813,-76.3056686 -Sherman ,38948,33.617501,-96.59549343 -Rock Island ,38939,41.5094771,-90.5787477 -Clovis ,38931,34.405472,-103.2050709 -Moorhead ,38833,46.8347035,-96.73454892 -Morgan Hill ,38791,37.130408,-121.6544974 -Apex ,38786,35.7325352,-78.8505516 -Maplewood ,38778,44.9530215,-92.9952153 -Peachtree Corners ,38770,33.9701009,-84.2215869 -Prescott Valley ,38764,34.6100243,-112.315721 -Woburn ,38622,42.4792618,-71.1522766 -Beaumont ,38592,30.0860459,-94.1018461 -Annapolis ,38478,38.9786401,-76.492786 -Cape Girardeau ,38451,37.3058839,-89.5181476 -Burleson ,38316,32.515272,-97.34509602 -Stanton ,38305,37.5691072,-101.7935648 -Ormond Beach ,38227,29.2858129,-81.0558894 -Hanover Park village,38187,43.17329575,-89.41709963 -Huber Heights ,38115,39.8584125,-84.11151221 -Bozeman ,38099,45.6799842,-111.0446748 -Brentwood ,38079,37.9317766,-121.6960266 -St. Cloud ,38032,45.5616075,-94.1642004 -Greenacres ,38016,35.3832927,-119.1098266 -Shakopee ,38013,44.7980186,-93.5268986 -Brookfield ,37912,43.0605671,-88.1064787 -Hallandale Beach ,37895,25.9856006,-80.13999651 -Lincoln Park ,37853,42.2505943,-83.1785361 -Pacifica ,37853,37.6138253,-122.4869194 -Wheeling village,37809,40.6142048,-86.3911092 -Hurst ,37807,32.8234621,-97.1705678 -Valley Stream village,37704,36.8058314,-76.23096618 -Park Ridge ,37609,42.0111412,-87.8406192 -Hilton Head Island ,37569,32.216316,-80.752608 -Goose Creek ,37566,32.9961038,-80.0387292 -Puyallup ,37516,47.1849009,-122.2921406 -Montclair ,37373,40.8259332,-74.2090344 -Lancaster ,37343,40.03813,-76.3056686 -Roy ,37235,41.1617999,-112.0261903 -Addison village,37164,43.4227761,-88.3745423 -Calumet City ,37153,41.6155909,-87.5294871 -The Colony ,37101,33.0890094,-96.8863922 -Ocoee ,37061,28.537782,-81.54483614 -Muskegon ,37035,43.2341813,-86.2483921 -Lake Oswego ,36984,45.4206749,-122.6706498 -Bentonville ,36962,36.302283,-94.28158895 -Spartanburg ,36957,34.9498007,-81.9320157 -Marion ,36933,37.7306054,-88.9331256 -Portage ,36931,41.5758708,-87.1761455 -Beloit ,36858,42.5083272,-89.031784 -Aventura ,36854,25.953257,-80.13664587 -Richmond ,36833,37.5385087,-77.43428 -Greenfield ,36825,42.5877962,-72.6006199 -Texarkana ,36823,33.425125,-94.0476882 -Westerville ,36787,40.1261743,-82.9290696 -Gadsden ,36760,34.0142639,-86.0066387 -Longview ,36754,32.5007038,-94.7404891 -Keizer ,36718,44.9958075,-123.0197173 -Oakley ,36642,37.9974219,-121.7124536 -Martinez ,36552,38.0193657,-122.1341321 -Dover ,36536,39.158168,-75.5243682 -Weslaco ,36504,26.155616,-97.98046402 -Northglenn ,36461,39.885541,-104.9872026 -Lewiston ,36450,44.100351,-70.2147764 -Los Banos ,36436,37.0592253,-120.8505342 -Apache Junction ,36404,33.4006195,-111.5374039 -New Albany ,36385,38.2856247,-85.8241312 -Friendswood ,36313,29.5293998,-95.2010447 -Grove City ,36278,39.8814519,-83.0929645 -Bartlesville ,36150,36.7473114,-95.9808179 -Torrington ,36111,41.8006523,-73.1212214 -Reynoldsburg ,36107,39.9547861,-82.8121191 -Del Rio ,36063,29.3627296,-100.896761 -Goldsboro ,36045,35.3848841,-77.9927651 -Lynnwood ,36043,47.8278656,-122.3053932 -Temple City ,35824,34.1082994,-118.0577568 -Winter Garden ,35804,32.839025,-116.9283792 -Spanish Fork ,35783,40.114955,-111.654923 -Bell ,35746,33.9775142,-118.1870156 -Franklin ,35745,37.9765409,-88.9335327 -Panama City ,35739,30.1600827,-85.6545729 -Plant City ,35721,28.023543,-82.12720203 -Fort Lee borough,35664,40.8527536,-73.97250875 -Leavenworth ,35629,39.3110919,-94.9227996 -Wildwood ,35600,38.5795893,-90.6294468 -Richfield ,35599,44.8766431,-93.2877877 -Delaware ,35571,38.6920451,-75.4013315 -Hollister ,35567,36.8524545,-121.4016021 -Hot Springs ,35414,34.492847,-93.12379452 -Lufkin ,35373,31.3382406,-94.729097 -Marion ,35358,37.7306054,-88.9331256 -Manhattan Beach ,35353,33.8950839,-118.4000147 -Lake Worth ,35327,26.62121345,-80.06267318 -Claremont ,35324,34.0966764,-117.7197785 -University City ,35275,38.6558849,-90.3092813 -Merrillville ,35273,41.4828144,-87.3328139 -San Juan Capistrano ,35219,33.5016932,-117.6625509 -Tupelo ,35141,34.2634615,-88.72502681 -Cottage Grove ,34912,44.8277446,-92.9438218 -Moorpark ,34853,34.285558,-118.8820414 -Bay City ,34781,28.982941,-95.96336143 -East Point ,34751,33.6654335,-84.48648945 -Grants Pass ,34735,42.4393707,-123.3272489 -Stow ,34707,41.1596261,-81.4406258 -Oak Creek ,34662,42.8858503,-87.8631362 -West Hollywood ,34645,34.0900091,-118.3617443 -Prattville ,34626,32.4640245,-86.4596966 -Royal Palm Beach village,34604,26.694533,-80.2323689 -Peachtree City ,34566,33.3967829,-84.5957629 -Winter Haven ,34560,28.0222435,-81.7328568 -Phenix City ,34499,32.4709761,-85.0007653 -Hinesville ,34458,31.8477298,-81.5960354 -Norris borough,34406,44.3134023,-70.0883869 -Glendale Heights village,34395,39.9709072,-80.7506399 -Hobbs ,34384,32.7026116,-103.1360403 -Beverly Hills ,34361,34.0736204,-118.4003563 -Gainesville ,34342,29.651907,-82.3247976 -Indian Trail ,34280,35.0768141,-80.6692352 -Pleasant Grove ,34122,40.3641184,-111.73854 -Bothell ,34113,47.759853,-122.2068217 -Olive Branch ,34057,34.9617605,-89.8295315 -Inver Grove Heights ,34055,44.8479039,-93.0428119 -Roseville ,34047,38.72338,-121.1858782 -Mooresville ,34046,35.570746,-80.8182992 -Vestavia Hills ,34005,33.4776455,-86.68732697 -Milton ,33917,42.2495435,-71.0661612 -Greenville ,33913,34.851354,-82.3984882 -Upper Arlington ,33912,39.9945084,-83.0624078 -Newnan ,33783,33.3806716,-84.7996573 -Nacogdoches ,33782,31.5970503,-94.5927451 -Bettendorf ,33773,41.5255466,-90.5081478 -Cottonwood Heights ,33754,40.6196702,-111.8102104 -Dana Point ,33688,33.4669721,-117.6981075 -Butte-Silver Bow ,33687,45.9838436,-112.5007277 -Houma ,33681,29.5957696,-90.7195348 -San Dimas ,33595,34.1066756,-117.8067257 -Manitowoc ,33591,44.0886059,-87.6575841 -Gahanna ,33513,40.019468,-82.8790706 -Pleasant Hill ,33491,37.9479786,-122.0607963 -Long Beach ,33463,33.7774658,-118.1884871 -Winter Springs ,33431,28.6882125,-81.28497893 -Seaside ,33413,36.6258085,-121.8170358 -Lauderdale Lakes ,33364,26.1681519,-80.20471799 -Dalton ,33333,34.723727,-84.86850912 -Jackson ,33320,32.2990384,-90.1847691 -Schertz ,33315,29.5521737,-98.2697341 -Monroe ,33272,38.2722313,-90.1792484 -Fairborn ,33222,39.8068795,-84.00996135 -St. Charles ,33174,41.9141984,-88.3086977 -Woodridge village,33159,29.548018,-98.60536836 -Holland ,33153,42.7876022,-86.1090828 -Oregon City ,33103,45.3573429,-122.6067583 -Copperas Cove ,33061,31.124062,-97.9030785 -Lawndale ,32994,33.88711,-118.3531481 -Wildomar ,32984,33.5939372,-117.2414989 -Bangor ,32962,44.8011821,-68.7778138 -Danville ,32903,40.125222,-87.6304614 -Riviera Beach ,32807,26.7753405,-80.0580969 -Fair Lawn borough,32766,40.9403762,-74.1318096 -Deer Park ,32596,29.70478335,-95.11839443 -Westlake ,32527,41.4553232,-81.9179174 -Menlo Park ,32519,37.4538274,-122.1821871 -Richmond ,32489,37.5385087,-77.43428 -Socorro ,32480,34.0572791,-106.8930518 -North Olmsted ,32461,41.4156025,-81.9234726 -Wenatchee ,32431,47.4234599,-120.3103494 -Eastpointe ,32408,42.4683698,-82.9554746 -McMinnville ,32316,45.2109843,-123.1975851 -Leawood ,32248,38.966673,-94.6169012 -Franklin Town ,32218,42.3406373,-75.1651689 -Water Town ,32210,42.0642643,-73.93190045 -Petersburg ,32159,37.2044555,-77.39053111 -Massillon ,32129,40.7967244,-81.5215093 -El Mirage ,32110,34.6022132,-117.6311675 -Mount Vernon ,32084,38.3172715,-88.9031201 -Tooele ,32055,40.5307776,-112.29828 -Galesburg ,32043,40.9478158,-90.3712395 -Hopkinsville ,32037,36.8657651,-87.4889532 -Rosenberg ,32035,29.5571825,-95.8085623 -Walla Walla ,31990,46.0649999,-118.3302784 -Lewiston ,31989,44.100351,-70.2147764 -Issaquah ,31949,47.5348778,-122.0432974 -Newark ,31934,40.735657,-74.1723667 -Spring Valley village,31876,29.7896722,-95.5035529 -Naugatuck borough,31832,41.4860186,-73.0509432 -Goshen ,31797,41.5815012,-85.8346529 -Wake Forest ,31662,35.9803097,-78.5103427 -Benton ,31462,36.0345286,-88.101285 -West Bend ,31416,43.4252776,-88.1834277 -North Tonawanda ,31408,43.038668,-78.8642034 -University Place ,31402,47.216134,-122.5400829 -Kearney ,31341,40.699457,-99.0814767 -Laramie ,31328,41.3113669,-105.5911007 -Parkersburg ,31305,39.2667418,-81.5615135 -Alamogordo ,31303,32.8997997,-105.9603398 -La Verne ,31284,34.1008426,-117.7678355 -Michigan City ,31271,41.7075394,-86.8950297 -Douglasville ,31170,33.7514966,-84.7477136 -Bowling Green ,31147,36.9903199,-86.4436018 -Mason ,31147,40.2302271,-89.8660433 -Oswego village,31103,43.3739582,-76.1524252 -College Park ,31087,38.980666,-76.9369189 -Gallatin ,31072,37.7509507,-88.2264519 -Westfield ,31052,42.1250929,-72.7495381 -Foster City ,31010,37.5600336,-122.2688522 -Owasso ,31003,36.2661536,-95.8549456 -James ,30908,39.6532183,-121.5496929 -Cookeville ,30886,36.162839,-85.5016423 -Poughkeepsie ,30854,41.7065779,-73.9284101 -Andover ,30837,42.65717,-71.1408776 -Englewood ,30787,40.8928771,-73.9726381 -Garfield ,30772,36.3735486,-97.7845975 -New Iberia ,30721,30.0035365,-91.8187285 -Wentzville ,30671,38.81144,-90.8529107 -Kennesaw ,30653,34.0234337,-84.6154897 -Alabaster ,30653,33.2155935,-86.79777856 -Long Branch ,30647,40.3042778,-73.9923596 -Laguna Hills ,30620,33.5948758,-117.6882067 -Westfield ,30472,42.1250929,-72.7495381 -Brooklyn Center ,30426,45.0748543,-93.3296296 -Gillette ,30424,44.2906347,-105.5018759 -Ballwin ,30418,38.5950182,-90.5469133 -Clearfield ,30402,40.9908706,-78.4457422 -Chicago Heights ,30394,41.5062834,-87.6357079 -Saratoga ,30363,43.0833231,-73.8712155 -Waxahachie ,30354,32.3884555,-96.92882371 -Wheat Ridge ,30341,39.766098,-105.0772063 -North Royalton ,30337,41.3136644,-81.7245739 -Miami Lakes ,30292,25.91162125,-80.32127406 -Springville ,30281,40.1668572,-111.6109221 -Dover ,30244,39.158168,-75.5243682 -Ithaca ,30219,42.4396039,-76.4968019 -New Bern ,30219,35.1084931,-77.0441143 -Dania Beach ,30211,26.05078395,-80.14612378 -Shawnee ,30204,39.0416718,-94.7202376 -El Paso de Robles (Paso Robles) ,30132,35.63448665,-120.6702823 -Texarkana ,30128,33.425125,-94.0476882 -Spring Hill ,30109,28.5558273,-82.4503732 -Des Moines ,30091,41.5910641,-93.6037149 -North Ridgeville ,30080,41.3894905,-82.0190321 -Sun Prairie ,30058,43.1834579,-89.2134359 -Cooper City ,30057,26.04707855,-80.27390797 -Banning ,30048,33.9255685,-116.875289 -West Lafayette ,30037,40.4258686,-86.9080655 -Goleta ,30020,34.4358295,-119.8276389 -Sherwood ,29992,34.8150907,-92.2243153 -Pullman ,29950,46.7304268,-117.173895 -Rochester ,29915,43.1854754,-77.61068605 -Niles village,29904,42.8375683,-76.413546 -Los Gatos ,29874,37.226611,-121.9746797 -LaGrange ,29863,41.6372578,-85.4216948 -Madison Heights ,29862,42.4858692,-83.1052028 -Santa Paula ,29848,34.3541659,-119.0592705 -Morgan ,29844,39.7062265,-90.190335 -Aiken ,29827,33.5598586,-81.721952 -Highland Park ,29764,42.1816919,-87.8003438 -Marion ,29748,37.7306054,-88.9331256 -North Chicago ,29745,42.325578,-87.8411818 -Granite City ,29732,38.7014389,-90.1487199 -Port Huron ,29656,42.9815877,-82.440466 -George ,29656,30.857421,-88.6537118 -Cleburne ,29639,32.3574105,-97.40846276 -Hilliard ,29607,40.033814,-83.1596108 -East Chicago ,29529,41.6397857,-87.4548466 -Ray ,29514,39.3661726,-93.9888262 -Liberty ,29512,31.8031632,-81.483441 -Los Altos ,29482,37.3790629,-122.116578 -Oak Park ,29477,41.8850317,-87.7845025 -Williamsport ,29448,41.2493292,-77.0027671 -Statesboro ,29391,32.4487877,-81.7831674 -O'Fallon ,29334,38.5922715,-89.9112124 -Oak Ridge ,29314,36.0103562,-84.2696449 -Burlingame ,29302,37.5841026,-122.3660825 -Elmira ,29213,42.0897965,-76.8077338 -Schererville ,29180,41.4789246,-87.4547605 -Cedar City ,29179,37.6774769,-113.0618931 -Elizabeth ,29164,40.6639916,-74.2107006 -Morris ,29143,38.6908906,-96.6707526 -Burbank ,29036,34.1816482,-118.3258554 -Farmers Branch ,28978,32.9265137,-96.8961151 -Lawrenceville ,28946,33.9562149,-83.9879625 -Henderson ,28846,40.8156124,-90.9104547 -Lake in the Hills village,28846,42.1817047,-88.3318349 -Newburgh ,28835,41.5034271,-74.0104179 -Jacksonville ,28808,30.3321838,-81.655651 -Helena ,28725,46.5927122,-112.036109 -Millville ,28689,39.4020593,-75.0393368 -Midvale ,28664,40.6110589,-111.8999353 -Lake Stevens ,28656,48.0197794,-122.0660914 -Garfield Heights ,28600,41.4169974,-81.6059581 -East Palo Alto ,28594,37.4688273,-122.1410751 -Atascadero ,28591,35.4894169,-120.6707255 -Agawam Town ,28585,42.700963,-74.0404119 -Sanford ,28545,35.4798757,-79.1802994 -West Springfield Town ,28540,42.1070383,-72.6203675 -Atwater ,28529,37.3477174,-120.609084 -Russellville ,28515,35.2784173,-93.1337856 -Lansing village,28458,43.7452402,-92.9701918 -Plainfield ,28407,41.623191,-88.22843248 -Winter Park ,28394,28.6000625,-81.34274374 -Suisun City ,28351,38.245232,-121.9717533 -Post Falls ,28322,47.715147,-116.9480651 -Kingman ,28317,37.5420937,-98.122172 -Wheeling ,28297,42.125144,-87.92930515 -Princeton,28206,40.3492744,-74.6592958 -Shaker Heights ,28187,41.4739419,-81.5370671 -Nicholasville ,28117,37.8806341,-84.5729961 -Kaysville ,28098,41.0349847,-111.9383931 -Oak Forest ,28070,41.6028116,-87.7439384 -Leander ,28059,30.5781315,-97.84259075 -Round Lake Beach village,28050,42.3850853,-88.06549032 -Allen Park ,28021,42.2575385,-83.2110375 -Crown Point ,28003,41.4169806,-87.3653136 -Matthews ,27967,35.1168131,-80.7236804 -Mason City ,27952,43.1535728,-93.2010367 -Ridgecrest ,27940,35.6225064,-117.6699414 -Monterey ,27846,36.583431,-121.8540929 -Dodge City ,27804,37.7527982,-100.0170787 -Marshall ,27750,35.9089643,-92.6312746 -Alton ,27676,38.8906038,-90.1842764 -Rahway ,27659,40.6081591,-74.2776468 -Little Elm ,27654,33.1626194,-96.9375051 -Myrtle Beach ,27651,33.6956461,-78.8900409 -New London ,27629,41.3556539,-72.0995209 -Maryville ,27602,40.3461017,-94.8724707 -Auburn ,27584,32.5978265,-85.56335486 -Maywood ,27580,33.9866807,-118.185349 -Oakdale ,27575,44.9630216,-92.9649361 -Winona ,27551,44.049963,-91.6393152 -Glen Ellyn village,27528,41.8507997,-88.07807394 -Kirkwood ,27525,38.5776995,-90.41865474 -Garden City ,27508,37.9716898,-100.8726618 -Kankakee ,27489,41.1200325,-87.8611531 -Desert Hot Springs ,27468,33.961124,-116.5016784 -Opelika ,27451,32.652151,-85.45598514 -Maryland Heights ,27438,38.7131073,-90.4298401 -Savage ,27364,44.7779041,-93.3356204 -West Chicago ,27362,41.8847507,-88.2039607 -Bessemer ,27360,33.3339595,-86.95006956 -Frankfort ,27352,38.2009055,-84.8732836 -SeaTac ,27350,47.44259955,-122.2930652 -Englewood ,27344,40.8928771,-73.9726381 -Duluth ,27326,46.7729322,-92.1251218 -Fridley ,27311,45.0838291,-93.2590388 -Plum borough,27292,40.5003457,-79.7494911 -Slidell ,27284,30.2751945,-89.7811745 -Big Spring ,27282,32.250398,-101.4787356 -Harker Heights ,27263,31.0835102,-97.6597377 -Norco ,27250,33.9323307,-117.5508901 -Melrose ,27240,42.4564323,-71.064182 -Queen Creek ,27210,33.222657,-111.6206973 -Benicia ,27192,38.049365,-122.1585777 -Enterprise ,27162,31.3151708,-85.8552161 -DeLand ,27161,29.0195145,-81.29414163 -Eureka ,27155,40.8020712,-124.1636729 -Southlake ,27140,33.0074185,-97.16742841 -Glen Cove ,27109,40.8623217,-73.6337389 -Eagle Pass ,27101,28.709856,-100.4794168 -Lake Jackson ,27097,29.0338575,-95.4343859 -Superior ,27063,46.7207737,-92.1040796 -Bergenfield borough,27060,40.9275987,-73.9973608 -American Fork ,26993,40.3768954,-111.7957645 -Windsor ,26930,42.3032758,-83.0285111 -Garden City ,26921,37.9716898,-100.8726618 -Clinton ,26891,38.5896187,-89.420064 -McHenry ,26875,42.3294391,-88.4605713 -Thomasville ,26873,35.8826369,-80.0819879 -Easton ,26850,40.6916081,-75.2099866 -Jefferson ,26786,38.3010487,-88.9344303 -Winchester ,26756,39.1857762,-78.1631434 -Stevens Point ,26735,44.5229223,-89.574111 -Holladay ,26732,40.6688363,-111.8246557 -Stockbridge ,26731,42.2875874,-73.3203862 -East St. Louis ,26708,38.6244952,-90.1509429 -Fremont ,26687,37.5482697,-121.9885719 -Saratoga Springs ,26660,43.0831301,-73.7845651 -Paragould ,26655,36.0584021,-90.4973286 -Imperial Beach ,26651,32.5839444,-117.1130849 -Anderson ,26627,38.198077,-95.3067461 -Redmond ,26617,47.6694141,-122.1238767 -West Fargo ,26588,46.8749671,-96.900362 -Paramus borough,26525,40.9445428,-74.0754189 -Fountain ,26521,38.725168,-104.645359 -Barberton ,26421,41.012833,-81.6051221 -Casselberry ,26399,28.654276,-81.32379065 -Tualatin ,26394,45.3838546,-122.7663518 -Carbondale ,26389,37.7274692,-89.216655 -Garner ,26355,35.7112642,-78.6141709 -Batavia ,26329,41.8500284,-88.3125738 -Horn Lake ,26325,34.9480415,-90.05203772 -Wooster ,26318,40.8050565,-81.935143 -Carlsbad ,26295,33.1580933,-117.3505939 -Kingsville ,26259,27.5158689,-97.856109 -Mount Pleasant ,26128,32.7940651,-79.8625851 -Paradise ,26090,39.7596061,-121.6219177 -Greer ,26074,34.9326334,-99.5435856 -Rexburg ,26068,43.8235163,-111.7870222 -West Memphis ,25999,35.1464797,-90.1845388 -Xenia ,25970,39.6847822,-83.9296526 -Pearl ,25965,32.311161,-90.0589319 -Seguin ,25883,29.5688411,-97.9647269 -Wasco ,25863,35.5941238,-119.3409457 -Weatherford ,25838,32.764654,-97.68189586 -Sahuarita ,25825,31.9575818,-110.955646 -Greenville ,25797,34.851354,-82.3984882 -South Pasadena ,25787,34.1133062,-118.1478291 -Holly Springs ,25777,35.6512655,-78.8336218 -Sandusky ,25737,41.4489397,-82.7079605 -Clinton ,25693,38.5896187,-89.420064 -Hazelwood ,25671,38.7714396,-90.3709489 -Lemon Grove ,25643,32.7425516,-117.0314172 -Fredericksburg ,25641,38.3031837,-77.4605399 -Wyandotte ,25631,39.1090458,-94.767624 -Cornelius ,25599,35.4868032,-80.8600736 -Neenah ,25581,44.1858193,-88.462609 -Owatonna ,25563,44.0839937,-93.2261076 -Fitchburg ,25546,42.5834228,-71.8022956 -Belvidere ,25546,42.2583112,-88.8416157 -Zanesville ,25507,39.9403453,-82.0131924 -Burlington ,25494,44.4723989,-73.2114941 -Melrose Park village,25480,45.4542879,-98.5121572 -Laurel ,25474,39.0992752,-76.8483061 -Freeport ,25432,42.2966861,-89.6212271 -Shoreview ,25412,45.0722056,-93.1282878 -West Linn ,25411,45.3656761,-122.6123141 -Twentynine Palms ,25405,34.1356915,-116.0543506 -Asheboro ,25389,35.7079146,-79.8136446 -Collinsville ,25350,38.6703267,-89.9845476 -Harvey ,25336,38.0352315,-97.4486267 -Troy ,25323,42.6055893,-83.1499304 -Brawley ,25284,32.9786566,-115.530267 -Hazleton ,25266,40.9646867,-75.9852789 -Rockledge ,25252,40.0812219,-75.0896176 -Bridgeton ,25225,39.427337,-75.2340768 -Independence ,25222,37.2242358,-95.7083131 -Riverside ,25176,33.9533546,-117.3961623 -Inkster ,25173,42.2942045,-83.3099303 -Temple Terrace ,25172,28.0352964,-82.3892596 -Ridgewood village,25167,32.586246,-85.5235613 -Paducah ,25125,37.0833893,-88.6000478 -Homewood ,25071,33.4717732,-86.8008228 -South Portland ,25043,43.6414716,-70.2408811 -Lockport ,25015,43.1706125,-78.6903133 -Fort Dodge ,25005,42.4974694,-94.1680158 -Ponca City ,24972,36.7267431,-97.0667341 -Parkland ,24952,26.3100794,-80.23727 -Elmwood Park village,24940,42.2628864,-71.0350094 -Woodstock ,24938,42.0409247,-74.1181971 -Key West ,24897,38.0573603,-78.4408438 -Emporia ,24897,38.4040054,-96.181623 -Ottumwa ,24873,41.0200145,-92.4112963 -Syracuse ,24860,43.0481221,-76.1474244 -Salem ,24854,44.9391565,-123.033121 -Lafayette ,24831,30.2240897,-92.0198427 -Statesville ,24808,35.7826363,-80.8872959 -Austin ,24800,30.2711286,-97.7436995 -Alvin ,24749,29.4238472,-95.2441009 -Reedley ,24709,36.5969275,-119.45027 -Ardmore ,24706,40.004128,-75.28830051 -Caledonia village,24685,33.6828918,-88.3244812 -Marshall ,24653,35.9089643,-92.6312746 -Madison ,24593,43.074761,-89.3837613 -North Platte ,24575,41.1238873,-100.7654232 -Woodstock ,24556,42.0409247,-74.1181971 -Grandview ,24542,46.2509653,-119.9017049 -Lemoore ,24523,36.3007835,-119.7829107 -Sanger ,24506,36.708006,-119.5559652 -New Lenox village,24495,41.4834231,-87.9570705 -Carrollton ,24461,33.5801103,-85.0766113 -Balch Springs ,24402,32.7287413,-96.6227714 -Trotwood ,24381,39.7972788,-84.3113334 -Hercules ,24368,38.0171441,-122.2885808 -Seal Beach ,24363,33.741176,-118.1046356 -Lafayette ,24320,30.2240897,-92.0198427 -Zion ,24317,42.4461322,-87.8328505 -Homer Glen village,24307,41.6292066,-87.9243315 -Cabot ,24285,34.979881,-92.01919814 -Athens ,24274,33.9595974,-83.376678 -Muskego ,24263,42.905848,-88.1389779 -Edwardsville ,24249,38.8114364,-89.953157 -Starkville ,24184,33.45936245,-88.82985418 -Rolling Meadows ,24178,42.0841936,-88.0131275 -Ridgeland ,24150,32.4284761,-90.1323087 -Galt ,24120,38.3012325,-121.3310371 -White Bear Lake ,24114,45.0838098,-93.0069304 -Woodburn ,24077,45.143731,-122.8553725 -De Pere ,24062,44.4487476,-88.0601086 -Staunton ,24058,38.14935,-79.0716456 -Corsicana ,24025,32.091299,-96.4646821 -Corcoran ,24021,36.1126365,-119.5464404 -South Salt Lake ,24010,40.7075209,-111.8880295 -Centerville ,23976,31.2579584,-95.978292 -Chaska ,23974,44.7894072,-93.6021791 -Junction City ,23968,39.0286093,-96.8313978 -Cudahy ,23964,42.959738,-87.861471 -Loves Park ,23903,42.3200189,-89.0581621 -Herndon ,23889,38.9695316,-77.3859479 -El Cerrito ,23866,33.8410146,-117.5207977 -Ramsey ,23864,45.0165728,-93.0949501 -Norton Shores ,23836,43.1689044,-86.2639461 -Romulus ,23823,42.2222614,-83.3965995 -Franklin ,23817,37.9765409,-88.9335327 -Calabasas ,23809,34.1446643,-118.6440973 -Muscatine ,23800,41.424473,-91.0432051 -Watauga ,23792,36.2228105,-81.6863808 -Cliffside Park borough,23790,40.8214894,-73.9876388 -Blue Island ,23789,41.65530805,-87.67759047 -Peekskill ,23758,41.289811,-73.9204922 -Northport ,23747,40.9038855,-73.34199127 -Walker ,23740,34.7418605,-85.3209686 -Zionsville ,23701,39.9508733,-86.261937 -Coronado ,23637,32.6858854,-117.1830891 -Vicksburg ,23566,32.3528418,-90.8777342 -Columbus ,23554,39.9622601,-83.0007065 -Tarpon Springs ,23544,28.1477885,-82.77740857 -Griffin ,23538,33.2467807,-84.2640904 -Loma Linda ,23534,34.0537971,-117.2610925 -Mauldin ,23520,34.77873,-82.310119 -South Plainfield borough,23519,40.5792701,-74.4115401 -Chanhassen ,23504,44.8618403,-93.5307207 -Champlin ,23478,45.1888539,-93.3974538 -East Peoria ,23466,40.666149,-89.5800978 -Duncan ,23460,48.7786869,-123.7080394 -Selma ,23454,32.4073589,-87.0211007 -Faribault ,23435,44.2949637,-93.268827 -Maple Valley ,23432,47.3664231,-122.0437127 -Machesney Park village,23426,42.3477961,-89.0570515 -University Park ,23421,40.8005307,-77.8624447 -Keene ,23416,42.933597,-72.2784264 -Mint Hill ,23395,35.1795892,-80.6472904 -Greenbelt ,23362,39.0045544,-76.8755282 -Rock Springs ,23358,41.5869225,-109.2047867 -Herriman ,23355,40.5140894,-112.0328198 -Colleyville ,23344,32.8809603,-97.155012 -Greenwood ,23339,37.8709542,-96.2471338 -Mercer Island ,23334,47.5766324,-122.2276378 -Prior Lake ,23331,44.7133271,-93.4226873 -Kernersville ,23308,36.1198589,-80.0736533 -Elk River ,23258,45.3038538,-93.5671825 -Searcy ,23249,35.2506406,-91.7362488 -Mequon ,23241,43.2219088,-87.9822969 -Belton ,23198,31.0560132,-97.464453 -Bainbridge Island ,23197,47.65526,-122.5350862 -Riverbank ,23146,37.7360396,-120.9354895 -Radcliff ,23029,37.8403456,-85.9491298 -Laguna Beach ,23019,33.5420888,-117.7834147 -New Castle ,23001,41.0036719,-80.3470091 -Auburn ,22955,32.5978265,-85.56335486 -Maple Heights ,22952,41.4153313,-81.565956 -Webster Groves ,22947,38.586494,-90.35577503 -Barstow ,22946,34.8957684,-117.0172077 -Anniston ,22908,33.695381,-85.83984218 -Van Buren ,22855,35.6793776,-85.4450289 -Athens ,22812,33.9595974,-83.376678 -Fairfax ,22792,38.8462236,-77.3063733 -Avon Lake ,22781,41.5053178,-82.0282001 -Fountain Hills ,22741,33.6117105,-111.7173613 -New Smyrna Beach ,22676,29.0258191,-80.9269984 -Dinuba ,22654,36.5432837,-119.3870656 -Denison ,22605,33.8062305,-96.62387757 -Marysville ,22554,39.1457247,-121.5913516 -Prichard ,22531,30.7387998,-88.0788889 -Hopewell ,22506,37.287745,-77.29442569 -McDonough ,22442,40.4376858,-90.6780272 -Kerrville ,22415,30.0474332,-99.1403189 -Hialeah Gardens ,22391,25.8906705,-80.36417286 -Newberg ,22387,45.300596,-122.9725418 -Gallup ,22371,35.5283573,-108.7439489 -Columbus ,22370,39.9622601,-83.0007065 -Crystal ,22357,45.0375868,-93.3593224 -Pascagoula ,22326,30.3622625,-88.54864836 -Willoughby ,22318,38.0131955,-78.4955676 -Hamtramck ,22303,42.3928151,-83.0496438 -Daphne ,22296,30.6035255,-87.9036047 -Hudson ,22265,40.7322695,-74.07663 -Plainview ,22262,34.1847936,-101.7068417 -Brookings ,22244,44.3114605,-96.7984397 -Oak Harbor ,22237,48.2931559,-122.6432245 -Rosemount ,22220,44.7391873,-93.12611 -Darien ,22209,41.0787079,-73.4692873 -Bloomingdale village,22185,43.5095128,-80.4624378 -Alliance ,22184,40.9153362,-81.1059309 -South Elgin village,22138,41.985228,-88.3070479 -South Euclid ,22124,41.5231076,-81.5184553 -Sebastian ,22067,35.1770785,-94.2654285 -North Plainfield borough,22063,40.6301025,-74.4273743 -Brownsburg ,22045,39.8433769,-86.3977736 -Ruston ,22044,32.5232053,-92.637927 -Park Forest village,22022,40.8043195,-77.911844 -Charleston ,21940,32.7876012,-79.9402728 -Millbrae ,21873,37.5985468,-122.3871942 -Clarksville ,21865,38.2967791,-85.7602087 -Chillicothe ,21855,39.3331197,-82.9824019 -Port Hueneme ,21750,34.1593425,-119.2025505 -Pelham ,21745,42.734534,-71.3245067 -North Augusta ,21706,33.5018026,-81.9651153 -Lumberton ,21705,34.6183433,-79.0083993 -Wadsworth ,21695,41.0256101,-81.7298519 -New Brighton ,21694,45.0628999,-93.2060969 -Kinston ,21667,35.2626635,-77.5816353 -Ashland ,21665,38.4784144,-82.6379387 -Prairie Village ,21654,38.9914109,-94.6332768 -Summit ,21637,39.6070951,-106.0636654 -Benbrook ,21619,32.673188,-97.4605759 -Del City ,21582,35.442007,-97.4408709 -Avon ,21576,39.6329025,-106.4711837 -Forest Grove ,21569,45.5197452,-123.1114405 -Bixby ,21521,35.9420431,-95.8833235 -Cibolo ,21516,29.561618,-98.2269553 -Auburn Hills ,21510,42.6647495,-83.23093751 -Jacksonville Beach ,21509,30.2946859,-81.3931396 -Duarte ,21480,34.1394513,-117.9772873 -Farmington ,21472,36.7304288,-108.2089191 -Sunny Isles Beach ,21458,25.939003,-80.12553377 -Crestview ,21439,30.7621326,-86.5705084 -Marquette ,21412,46.5434914,-87.396433 -South Lake Tahoe ,21377,38.929125,-119.9878464 -East Moline ,21374,41.5008673,-90.4442979 -Sedalia ,21365,38.7044609,-93.2282613 -Biddeford ,21307,43.4925843,-70.4533844 -South Milwaukee ,21185,42.9105722,-87.8606367 -Christiansburg ,21179,37.1298517,-80.4089389 -Ferguson ,21159,38.7442175,-90.3053915 -Klamath Falls ,21137,42.224867,-121.7816704 -East Ridge ,21130,35.0142412,-85.2519003 -Waynesboro ,21094,38.065698,-78.90552129 -Sachse ,21087,32.9762327,-96.5952703 -Adrian ,21064,41.8975471,-84.0371659 -Lockport ,21028,43.1706125,-78.6903133 -Perrysburg ,20984,41.556996,-83.627157 -Kenmore ,20960,47.7573202,-122.2440148 -Yucca Valley ,20952,34.14154,-116.4136543 -Moses Lake ,20929,47.1301417,-119.2780771 -Oakdale ,20910,44.9630216,-92.9649361 -Crest Hill ,20865,41.5697655,-88.10681127 -Sanford ,20844,35.4798757,-79.1802994 -Havelock ,20842,34.9018815,-76.92093747 -Farragut ,20822,35.8845238,-84.1535261 -Greenfield ,20801,42.5877962,-72.6006199 -Haines City ,20800,28.1124785,-81.63119745 -Hays ,20788,38.8791783,-99.3267702 -Liberal ,20782,37.0430812,-100.920999 -Johns ,20755,33.361779,-87.1097179 -Acworth ,20746,34.0659329,-84.6768796 -Edgewater ,20740,40.8270448,-73.975694 -Cumberland ,20720,39.2744299,-88.2423795 -Clinton ,20690,38.5896187,-89.420064 -Monroe ,20618,38.2722313,-90.1792484 -Leesburg ,20591,39.1026092,-77.55901065 -Piqua ,20581,40.1447732,-84.2424449 -Golden Valley ,20580,46.3040364,-109.1714312 -Northfield ,20579,44.4582041,-93.161159 -New Hope ,20569,45.0380201,-93.3866185 -Parma Heights ,20557,41.3900518,-81.7595769 -Selma ,20533,32.4073589,-87.0211007 -Lino Lakes ,20530,45.1602442,-93.0888324 -Ashland ,20529,38.4784144,-82.6379387 -Agoura Hills ,20523,34.1363945,-118.7745348 -Sweetwater ,20523,32.4709519,-100.4059384 -Shelbyville ,20505,38.2120144,-85.2235666 -Pleasantville ,20459,41.1328736,-73.7926335 -Kiryas Joel village,20437,41.3157842,-74.1362891 -Mountain Brook ,20432,33.5009384,-86.7522107 -Eagle ,20432,39.6161124,-106.7172844 -Mukilteo ,20426,47.9474034,-122.3036992 -Lomita ,20420,33.7924421,-118.3144385 -Milwaukie ,20391,45.4453901,-122.6392889 -Saginaw ,20385,43.4200387,-83.9490365 -South St. Paul ,20365,44.8938832,-93.0368359 -Sulphur ,20336,30.2365943,-93.3773783 -Chambersburg borough,20336,39.9405903,-77.6598624 -Oregon ,20330,43.9792797,-120.737257 -Sapulpa ,20329,36.0005035,-96.1049612 -Ashland ,20314,38.4784144,-82.6379387 -West Mifflin borough,20307,40.3634026,-79.8664375 -Pittsburg ,20273,38.0187757,-121.8850836 -South El Monte ,20263,34.0519548,-118.0467339 -Kalispell ,20257,48.2022563,-114.3167117 -Shelby ,20253,39.3665064,-88.7886278 -Blythe ,20250,33.5602861,-114.9120725 -Corinth ,20235,34.943392,-88.51732382 -Gardner ,20198,42.5750883,-71.998133 -Miamisburg ,20177,39.6428362,-84.2866083 -Trussville ,20117,33.6196266,-86.6084342 -Easley ,20097,34.8269276,-82.5817053 -Rocky River ,20078,41.4756031,-81.8393034 -Papillion ,20061,41.1544433,-96.0422378 -Hammond ,20057,41.5833658,-87.500043 -Union City ,20036,37.5963232,-122.0816297 -Ferndale ,20008,40.5762406,-124.2639442 -Mountlake Terrace ,20004,47.7909667,-122.3066395 -Washington ,19974,38.8949549,-77.0366456 -Gardner ,19952,42.5750883,-71.998133 -Pooler ,19934,32.1158983,-81.2495131 -Marina ,19920,36.6900785,-121.8006397 -Carrboro ,19916,35.9101438,-79.0752895 -Evergreen Park village,19908,45.9702308,-92.9499272 -Madisonville ,19886,37.3280037,-87.4986989 -American Canyon ,19874,38.223457,-122.227043 -Palisades Park borough,19831,40.8481556,-73.997639 -Pleasant Prairie village,19825,42.5383281,-87.8576253 -Altus ,19809,34.6381255,-99.3339754 -Plattsburgh ,19807,44.6928101,-73.4555973 -Baldwin borough,19794,33.0508354,-83.2398518 -Cartersville ,19775,34.180725,-84.75290814 -Ypsilanti ,19752,42.2411499,-83.6129939 -German village,19723,39.9497281,-82.9953145 -Fort Walton Beach ,19713,30.4057552,-86.618842 -McKeesport ,19713,40.3478472,-79.864215 -Rolla ,19707,37.9513575,-91.771792 -Arvin ,19699,35.209129,-118.828431 -Golden ,19643,39.755543,-105.2210997 -Weirton ,19637,40.4189566,-80.5895167 -Willmar ,19633,45.1219075,-95.0433424 -Decatur ,19631,39.8628075,-88.89387182 -Hermosa Beach ,19625,33.86428,-118.39591 -Painesville ,19600,41.7244885,-81.245657 -West St. Paul ,19590,44.9160768,-93.1016074 -Elmwood Park borough,19586,41.9205931,-87.8160169 -Wilsonville ,19585,45.3099218,-122.7681602 -Columbia Heights ,19551,45.0460458,-93.2517802 -Morrisville ,19545,35.823483,-78.8255621 -Jacksonville ,19452,30.3321838,-81.655651 -Central Falls ,19445,41.8906553,-71.3922785 -Nixa ,19399,37.0433863,-93.294353 -Tukwila ,19381,47.4627356,-122.2559156 -Homewood village,19380,38.5147358,-95.3788661 -Raymore ,19361,38.801953,-94.4527294 -Lake Forest ,19352,42.2586342,-87.840625 -Cortland ,19334,42.5842136,-76.0704906 -Broadview Heights ,19313,41.3139426,-81.6851271 -Farmington ,19311,36.7304288,-108.2089191 -Alice ,19273,27.7522487,-98.0697249 -DeBary ,19267,28.878972,-81.32257382 -Warrensburg ,19267,38.7627893,-93.7360498 -Windsor ,19237,42.3032758,-83.0285111 -Macomb ,19232,40.4588774,-90.6709794 -Bethany ,19224,38.0984033,-85.8721856 -Ansonia ,19201,41.3435185,-73.07101961 -Fernley ,19177,39.5483805,-119.2144685 -Sugar Hill ,19176,44.215341,-71.7995321 -Niles ,19167,42.0289319,-87.8122348 -Coralville ,19164,41.6764044,-91.5804475 -Fuquay-Varina ,19146,35.5843235,-78.8000128 -Newton ,19144,42.3370414,-71.2092214 -Brownwood ,19142,31.733789,-98.98583773 -Bellwood village,19119,36.134891,-79.8063459 -Shelbyville ,19110,38.2120144,-85.2235666 -Norwood ,19105,45.0696839,-89.04196248 -Port Angeles ,19097,48.118146,-123.4307413 -Matteson village,19087,41.9411599,-85.1905307 -Evans ,19072,32.1613648,-81.8980725 -Converse ,19072,43.0202459,-105.5046207 -Brook Park ,19071,41.3983838,-81.8045788 -Saratoga Springs ,19043,43.0831301,-73.7845651 -Mayfield Heights ,19039,41.5192189,-81.457896 -Brookfield village,19016,40.00684365,-83.16311091 -Ashtabula ,19011,41.7167229,-80.74947 -Montrose ,19010,38.478504,-107.8777769 -Marshfield ,18997,44.6688524,-90.1717987 -Lexington ,18968,38.0464066,-84.4970393 -Sand Springs ,18958,36.1398102,-96.1088911 -Hawthorne borough,18926,33.9113109,-118.3477942 -Chowchilla ,18923,37.0973625,-120.1561403 -Belton ,18921,31.0560132,-97.464453 -Sylvania ,18914,38.1570143,-85.8741308 -Mokena village,18908,25.809964,-80.2741109 -Angleton ,18897,29.16941,-95.4318847 -Universal City ,18894,34.1412926,-118.3584364 -Dickinson ,18838,38.8790615,-97.1893341 -Pinecrest village,18811,35.8903758,-78.72545389 -Alamo ,18797,37.8502033,-122.032184 -Simpsonville ,18788,34.7370639,-82.2542834 -Lathrop ,18783,37.8227046,-121.27661 -West Chester borough,18781,39.9597213,-75.6059638 -Albany ,18767,42.6511674,-73.754968 -El Dorado ,18753,38.7574137,-120.5276129 -Montgomery village,18753,39.1767734,-77.1952597 -Erie ,18752,42.129461,-80.085239 -Claremore ,18752,36.3125897,-95.6158701 -Payson ,18749,34.2308684,-111.3251355 -Fairmont ,18748,39.4850848,-80.1425781 -Twinsburg ,18743,41.3125552,-81.4401129 -Glassboro borough,18737,39.7027677,-75.1119434 -West Melbourne ,18729,28.069295,-80.65523634 -Trenton ,18728,40.2170575,-74.7429463 -Murphy ,18724,35.0875836,-84.0346315 -Snellville ,18692,33.857328,-84.0199108 -Forest Lake ,18687,45.2788444,-92.985312 -Orange ,18676,33.7500378,-117.8704931 -Ottawa ,18669,45.4210328,-75.6900219 -Mandan ,18669,46.8264369,-100.8896545 -Lynn Haven ,18663,30.2454776,-85.648261 -Forest Park ,18662,45.55947275,-122.7561254 -Tullahoma ,18653,35.3620235,-86.2094342 -Eustis ,18645,45.2172755,-70.4784009 -Forest Park ,18641,45.55947275,-122.7561254 -Louisville ,18631,38.2542376,-85.759407 -Saco ,18625,43.5009176,-70.4428286 -Lexington ,18619,38.0464066,-84.4970393 -Gautier ,18603,30.385755,-88.6116855 -Dickinson ,18581,38.8790615,-97.1893341 -Pickerington ,18575,39.8842304,-82.7535049 -Laurel ,18560,39.0992752,-76.8483061 -Pinole ,18548,38.0043667,-122.2988587 -Steubenville ,18544,40.3697905,-80.6339638 -Sherwood ,18539,34.8150907,-92.2243153 -Thomasville ,18535,35.8826369,-80.0819879 -McAlester ,18530,34.9334981,-95.7697934 -Natchitoches ,18527,31.6464192,-93.1427138 -Elko ,18522,40.8324212,-115.7631233 -Eastlake ,18517,47.6431448,-122.326172 -Ellensburg ,18490,46.9970635,-120.5451223 -Dixon ,18489,41.842224,-89.4815485 -Bensenville village,18436,41.9605851,-87.9497884 -Mill Creek ,18430,47.8577455,-122.2210628 -Morris ,18428,38.6908906,-96.6707526 -Mattoon ,18421,39.4842821,-88.3773279 -Point Pleasant borough,18419,40.0831714,-74.0681931 -Stillwater ,18386,36.1156306,-97.0585717 -Franklin Park village,18379,39.0381648,-77.0930339 -Seymour ,18348,38.9592201,-85.8902547 -Hanahan ,18347,32.9138914,-80.0088359 -Round Lake village,18343,43.0478485,-75.97503914 -Elizabeth City ,18337,36.2956836,-76.2247697 -Wisconsin Rapids ,18309,44.3835763,-89.8173466 -Cudahy ,18300,42.959738,-87.861471 -Winchester ,18290,39.1857762,-78.1631434 -Deerfield village,18264,39.3276157,-84.32848757 -Dover ,18261,39.158168,-75.5243682 -Horizon City ,18244,31.6926121,-106.2074793 -Logansport ,18242,40.7544843,-86.3566659 -Murray ,18235,34.4935341,-97.0475803 -Troy ,18232,42.6055893,-83.1499304 -Rutherford borough,18224,40.833989,-74.0970865 -Erlanger ,18208,39.0167275,-84.6007773 -Bryant ,18160,44.9307208,-93.2681007 -South Burlington ,18142,44.4669941,-73.1709604 -Orinda ,18135,37.8771476,-122.1796888 -Oswego ,18134,41.6828074,-88.3514596 -Ozark ,18130,36.6467816,-92.4575198 -Lenoir ,18076,35.9140196,-81.5389849 -Lackawanna ,18075,41.4406084,-75.6260271 -Coalinga ,18065,36.161906,-120.2946929 -Arlington ,18065,32.7355816,-97.1071186 -Milledgeville ,18055,33.0801429,-83.2320991 -Brigham City ,18051,41.5103717,-112.0155619 -Stephenville ,18048,32.2207307,-98.2026165 -Mustang ,18043,35.384227,-97.7244813 -Onalaska ,18028,43.8830606,-91.2343539 -Johnston ,18024,34.31888,-96.6752298 -New Castle ,18017,41.0036719,-80.3470091 -Pampa ,18015,35.5361559,-100.9598709 -Howard village,17990,39.2065447,-76.9429182 -Godfrey village,17973,38.9422698,-90.1845541 -Albert Lea ,17962,43.6480127,-93.3682656 -Covington ,17954,39.0837489,-84.5086221 -Frankfort village,17945,37.9000495,-88.9022902 -Tiffin ,17929,41.114485,-83.1779537 -Tinton Falls borough,17906,40.2890734,-74.0927967 -Hyattsville ,17890,38.95325,-76.9408522 -Battle Ground ,17888,45.7813532,-122.5337433 -Hannibal ,17879,39.7083789,-91.3584816 -Creve Coeur ,17834,38.6608855,-90.4226181 -Winthrop Town ,17815,42.6601608,-70.87207997 -Hutto ,17808,30.5392255,-97.55306755 -Hopkins ,17796,44.9271194,-93.4074945 -Gretna ,17780,36.9528412,-79.3602341 -Tumwater ,17761,47.0077652,-122.9110785 -Clarksdale ,17757,34.194945,-90.57478338 -Conway ,17751,35.0886963,-92.4421011 -Arcata ,17727,40.8665166,-124.0828396 -Bonney Lake ,17720,47.1870191,-122.1702293 -Beckley ,17700,37.7781702,-81.1881557 -East Cleveland ,17681,41.5331066,-81.5790137 -Belle Glade ,17647,26.68837015,-80.67212577 -Jenks ,17637,36.0228734,-95.9683278 -Boone ,17605,42.321246,-88.8235511 -Bay City ,17602,28.982941,-95.96336143 -St. Matthews ,17591,38.24988,-85.63574226 -Greenfield Town ,17584,43.1036852,-73.8640118 -Lindenwold borough,17572,39.81812,-74.97996212 -Douglas ,17562,39.7628415,-88.2170516 -Newburyport ,17556,42.8125913,-70.8772751 -Palos Hills ,17552,41.6966992,-87.8169984 -Westbrook ,17551,43.6770252,-70.3711617 -Tallmadge ,17540,41.1014865,-81.4418151 -North Ogden ,17530,41.3071354,-111.9601986 -Kirksville ,17521,40.1947539,-92.5832496 -Sheridan ,17500,39.3530598,-100.4576457 -Springboro ,17498,39.5522815,-84.2332718 -Bartow ,17489,34.2394683,-84.8406984 -Rancho Mirage ,17487,33.763346,-116.4228596 -Maumelle ,17478,34.8667565,-92.4043219 -Wayne ,17459,38.4251958,-88.4197678 -Menasha ,17449,44.2022293,-88.4465361 -Ocean Springs ,17439,30.4112904,-88.8279165 -Sycamore ,17427,41.9889173,-88.6867538 -Monroe ,17398,38.2722313,-90.1792484 -North Canton ,17384,40.875891,-81.4023356 -Huntington ,17382,38.4192496,-82.445154 -Colonial Heights ,17369,37.2535906,-77.4012463 -Martinsburg ,17360,39.4560761,-77.9637713 -Williston ,17360,48.1476108,-103.6181384 -Shafter ,17347,35.4698255,-119.2853651 -Scarsdale village,17345,29.8663171,-89.9436791 -Arroyo Grande ,17337,35.1185869,-120.5907252 -Susanville ,17290,40.4162842,-120.6530063 -Central Point ,17283,37.9890245,-77.1321968 -New Philadelphia ,17278,40.4897871,-81.4456706 -Secaucus ,17270,40.7899291,-74.0566735 -Yorkville ,17253,43.6713861,-79.3901677 -Takoma Park ,17200,38.9778882,-77.0074765 -Bellaire ,17189,29.7057858,-95.4588299 -South Houston ,17180,29.663008,-95.2354902 -Poplar Bluff ,17159,36.7569994,-90.3928881 -Anoka ,17155,45.1977428,-93.3871758 -Seminole ,17137,30.951849,-84.8789094 -Cocoa ,17130,28.3821505,-80.775798 -Helena ,17120,46.5927122,-112.036109 -Eloy ,17112,32.7557002,-111.5550419 -Mount Vernon ,17106,38.3172715,-88.9031201 -Massapequa Park village,17104,40.6786111,-73.4538889 -Defiance ,17072,41.3203058,-84.5084835 -Fairview Heights ,17059,38.5889386,-89.990382 -Dyersburg ,17032,36.0345159,-89.3856281 -Hermiston ,17004,45.8404101,-119.2894605 -Ada ,17000,38.8398935,-83.5051704 -Hinsdale village,16988,42.1678436,-78.3872408 -Norwalk ,16975,41.1175966,-73.4078968 -Durango ,16941,24.833333,-104.833333 -La Vista ,16924,41.1832679,-96.0324044 -Center Point ,16924,33.6456583,-86.6836001 -Morganton ,16894,35.7454376,-81.6870994 -Mineral Wells ,16890,32.8084605,-98.1128223 -Safety Harbor ,16889,28.013675,-82.696543 -Radford ,16824,37.1317924,-80.5764477 -Tifton ,16818,31.4504629,-83.5084973 -Pendleton ,16814,45.672075,-118.7885967 -Griffith ,16810,41.534507,-87.4255305 -Farmington ,16796,36.7304288,-108.2089191 -Culpeper ,16787,38.4912207,-77.9618216 -Westchester village,16768,25.74747875,-80.33572451 -El Segundo ,16764,33.911731,-118.3836804 -Centralia ,16755,38.5250491,-89.1334037 -Southbridge Town ,16741,33.4990438,-111.9283291 -Canby ,16736,45.2628986,-122.6925923 -Clayton ,16730,33.5204959,-84.3591713 -North Salt Lake ,16699,40.8485564,-111.9068824 -Opelousas ,16690,30.5335302,-92.081509 -Fairview Park ,16689,41.442339,-81.85930266 -Americus ,16682,32.0723862,-84.2326876 -Marco Island ,16666,25.9356875,-81.6948967 -Punta Gorda ,16640,26.9297836,-82.0453664 -Fremont ,16633,37.5482697,-121.9885719 -South Ogden ,16625,41.1918934,-111.9713429 -Artesia ,16616,33.8690197,-118.0796195 -Country Club Hills ,16602,41.5680898,-87.7203257 -St. Michael ,16599,45.2099564,-93.6650608 -Greenfield ,16576,42.5877962,-72.6006199 -Santa Fe Springs ,16553,33.9482434,-118.0676103 -Springfield ,16544,39.7989763,-89.6443688 -Clarksburg ,16540,39.2806451,-80.3445341 -Phoenixville borough,16494,40.1303822,-75.5149128 -Red Wing ,16475,44.5624676,-92.5338013 -Hazel Park ,16471,42.4620142,-83.1035688 -New Milford borough,16470,41.5867418,-73.41176528 -Easton ,16427,40.6916081,-75.2099866 -White Settlement ,16409,32.7595737,-97.4583538 -Dyer ,16400,41.4942021,-87.5217068 -Danville ,16361,40.125222,-87.6304614 -Frankfort ,16334,38.2009055,-84.8732836 -Hibbing ,16329,47.4271546,-92.9376887 -Moraga ,16324,37.8347106,-122.1295596 -Lansdale borough,16313,40.2414952,-75.2837862 -Prospect Heights ,16313,42.0953049,-87.9375694 -Mount Clemens ,16311,42.5972563,-82.8779754 -Sikeston ,16306,36.876719,-89.5878579 -Beaver Dam ,16296,43.4577692,-88.837329 -Hermitage ,16293,37.9414217,-93.3163093 -Fort Thomas ,16285,39.0786242,-84.4483432 -Laguna Woods ,16236,33.6106076,-117.7249722 -Durant ,16232,33.9939861,-96.370824 -Troutdale ,16220,36.702192,-81.44152411 -Fayetteville ,16191,36.111508,-94.20986672 -Cohoes ,16177,42.7742446,-73.7001187 -Truckee ,16171,39.327962,-120.1832533 -Streetsboro ,16159,41.2392227,-81.3459405 -Goodlettsville ,16159,36.3231067,-86.7133302 -Sartell ,16151,45.6216319,-94.2069365 -Menomonie ,16146,44.8755183,-91.9193422 -Talladega ,16087,33.4359416,-86.1058048 -Chickasha ,16084,35.052565,-97.9364326 -South River borough,16071,40.446495,-74.3859831 -Crawfordsville ,16038,40.0401991,-86.8990249 -Overland ,16036,38.7011626,-90.3623381 -Tahlequah ,16032,35.91537,-94.969956 -Groves ,16030,29.9482695,-93.9171155 -Shorewood village,16029,41.4047742,-83.0882516 -Brenham ,16022,30.1668828,-96.3977442 -Donna ,16017,26.1702082,-98.0522376 -Sunnyside ,16011,46.3246419,-120.0081898 -Grosse Pointe Woods ,16009,42.4436478,-82.9068603 -Great Bend ,16008,38.3621509,-98.7803202 -Coos Bay ,16004,43.3665007,-124.2178903 -Gainesville ,15985,29.651907,-82.3247976 -Mount Pleasant ,15983,32.7940651,-79.8625851 -Gatesville ,15978,31.486814,-97.70427034 -Terrell ,15978,32.7359626,-96.2752569 -Laconia ,15976,43.5278546,-71.470351 -Asbury Park ,15976,40.2203907,-74.0120817 -Hope Mills ,15949,34.9704419,-78.9453056 -Fairhope ,15944,30.5440335,-87.85821704 -Ukiah ,15933,39.1501662,-123.2077861 -Bradley village,15925,44.9209017,-68.6280864 -Wilkinsburg borough,15922,40.4417355,-79.8819942 -Clayton ,15921,33.5204959,-84.3591713 -Floral Park village,15918,43.007434,-83.6713209 -Greenwood ,15906,37.8709542,-96.2471338 -Albemarle ,15900,38.0085107,-78.6086754 -Laurinburg ,15884,34.7740495,-79.4628248 -Oroville ,15877,39.5137752,-121.556359 -Anacortes ,15860,48.5020123,-122.6237356 -Kuna ,15852,43.4918307,-116.4201223 -Uvalde ,15848,29.300357,-99.7733181 -Middleburg Heights ,15844,41.3614401,-81.812912 -Clive ,15837,41.6096029,-93.7754352 -Rye ,15834,40.9808209,-73.684294 -Suwanee ,15798,34.0514898,-84.0712997 -Oconomowoc ,15798,43.1116731,-88.4992659 -Taylor ,15793,32.556921,-84.2395154 -Calhoun ,15768,39.1397507,-90.6506113 -Roanoke Rapids ,15760,36.4615395,-77.6541464 -Waterville ,15745,44.5520105,-69.6317121 -Natchez ,15691,31.5445015,-91.38913516 -Opa-locka ,15672,25.89673385,-80.25949631 -Stuart ,15664,27.197983,-80.2519175 -Mesquite ,15660,32.7666103,-96.599472 -Elkton ,15645,39.6067789,-75.8332718 -Buffalo ,15642,42.8864468,-78.8783689 -Chamblee ,15642,33.892176,-84.2988296 -Centerville ,15580,31.2579584,-95.978292 -Gloversville ,15557,43.0528133,-74.34369 -Norcross ,15544,33.9412127,-84.2135309 -Bay Village ,15540,41.492235,-81.93012118 -Kaukauna ,15531,44.2780432,-88.2720503 -Sulphur Springs ,15529,33.138448,-95.6010668 -North Arlington borough,15522,40.788434,-74.1331988 -Dixon ,15519,41.842224,-89.4815485 -Blytheville ,15480,35.9272953,-89.9189754 -West Columbia ,15475,34.001143,-81.06305261 -Siloam Springs ,15447,36.18104795,-94.52687411 -Washington ,15409,38.8949549,-77.0366456 -Highland Village ,15406,38.7065695,-121.0718889 -Riverdale ,15399,41.5444778,-90.4581879 -Henderson ,15397,40.8156124,-90.9104547 -James ,15383,39.6532183,-121.5496929 -Ham Lake ,15380,45.2502429,-93.2499508 -Mitchell ,15372,39.3863019,-98.2112629 -Shively ,15368,38.2000701,-85.8227413 -Batavia ,15366,41.8500284,-88.3125738 -Forney ,15349,32.747893,-96.4719289 -Vero Beach ,15340,27.6387163,-80.3975399 -Sterling ,15323,41.788642,-89.6962194 -Hanover borough,15323,34.4298897,-78.1061057 -Conyers ,15321,33.6676103,-84.0176904 -Humble ,15289,29.9988312,-95.2621553 -Zachary ,15283,30.6485191,-91.1564961 -Mount Vernon ,15261,38.3172715,-88.9031201 -Imperial ,15259,33.0305487,-115.3595666 -Pacific Grove ,15251,36.6174432,-121.9155906 -Seagoville ,15248,32.6395776,-96.5383228 -Payson ,15240,34.2308684,-111.3251355 -Vandalia ,15230,38.960601,-89.0936778 -Forrest City ,15223,35.0081474,-90.7898342 -Jasper ,15188,39.0082423,-88.1552371 -Sevierville ,15170,35.8681455,-83.561835 -Long Beach ,15168,33.7774658,-118.1884871 -Westbury village,15155,42.6381283,-83.2234478 -New Haven ,15149,41.3082138,-72.9250518 -Newton ,15145,42.3370414,-71.2092214 -Clearlake ,15144,38.9582307,-122.6263728 -Fillmore ,15111,42.3375719,-83.05217895 -Avenal ,15111,36.0041223,-120.1290272 -Portland ,15101,45.5202471,-122.6741949 -Tonawanda ,15078,43.0206785,-78.8783834 -Greeneville ,15076,36.1631575,-82.8309861 -Berkley ,15049,42.5030909,-83.1835389 -Hopatcong borough,15046,40.9332051,-74.6600975 -Owosso ,15035,42.9978049,-84.1766359 -River Falls ,15032,44.8595111,-92.6265897 -Scottsbluff ,15029,41.8666341,-103.6671662 -Foley ,15023,30.4065868,-87.6835974 -West University Place ,15022,29.7180075,-95.4338292 -Boulder City ,15021,35.9785912,-114.8324851 -Republic ,15020,39.8266503,-97.6580834 -Pataskala ,14999,39.9956193,-82.6743341 -The Dalles ,14965,45.5945645,-121.1786823 -Waukee ,14960,41.6113712,-93.885707 -Indianola ,14918,33.4446225,-90.64892856 -New Port Richey ,14896,28.2471345,-82.71702372 -Manassas Park ,14891,38.7840035,-77.4697111 -Deming ,14867,32.2686981,-107.7586404 -Pinehurst village,14846,26.2439705,-80.094488 -Dumas ,14824,35.8655949,-101.9732353 -Corinth ,14818,34.943392,-88.51732382 -Alexander City ,14818,32.944012,-85.9538532 -Cullman ,14816,34.1335332,-86.8779268 -Scottsboro ,14812,34.715252,-86.03676449 -Traverse City ,14812,44.7606441,-85.6165301 -Ozark ,14810,36.6467816,-92.4575198 -Altoona ,14808,40.518681,-78.394736 -Phillipsburg ,14804,40.6937099,-75.1901761 -Greensburg ,14799,40.3014581,-79.5389289 -Sterling ,14773,41.788642,-89.6962194 -Hammonton ,14759,39.6365056,-74.8023853 -Dickson ,14740,37.7692885,-80.3461824 -Jennings ,14707,38.9957749,-85.6359201 -La Marque ,14682,29.3685674,-94.9713134 -Glens Falls ,14674,43.3096957,-73.6441045 -Dallas ,14668,32.7761963,-96.7968994 -Whitewater ,14663,42.8336422,-88.7292679 -Parlier ,14645,36.6116174,-119.5270734 -Bloomsburg ,14634,41.0041213,-76.453816 -Lake St. Louis ,14632,38.797552,-90.7856848 -Tenafly borough,14617,40.9253766,-73.9629154 -Ramsey borough,14601,44.9888886,-93.2781256 -Thibodaux ,14584,29.7957633,-90.822871 -Jacksonville ,14579,30.3321838,-81.655651 -Beacon ,14555,41.504879,-73.9696822 -Sunland Park ,14533,31.796496,-106.5799891 -Leland ,14530,34.2562806,-78.0447143 -Pineville ,14525,31.3224044,-92.4343035 -Front Royal ,14513,38.9178538,-78.1917718 -Waycross ,14504,31.2135511,-82.3540178 -Yankton ,14493,42.8712048,-97.397112 -Fraser ,14474,42.539202,-82.9493652 -Lincoln ,14461,40.8000554,-96.6674005 -West Park ,14458,36.7102258,-119.851258 -Moultrie ,14426,39.6391442,-88.6087498 -Hernando ,14420,28.5710156,-82.4605068 -Katy ,14410,29.7857853,-95.8243956 -Hartselle ,14403,34.4438373,-86.9359245 -Elizabethton ,14395,36.3487196,-82.2106876 -Chicago Ridge village,14383,41.702014,-87.7785509 -Lake Wales ,14382,27.9014133,-81.5859099 -Callaway ,14381,38.8491265,-91.9257607 -Perry ,14366,38.0772859,-89.3760499 -Reidsville ,14360,36.3548586,-79.6644748 -Hawaiian Gardens ,14355,33.8284787,-118.0743137 -Alton ,14350,38.8906038,-90.1842764 -Washougal ,14345,45.5819594,-122.3479921 -Graham ,14338,39.34062,-99.8980624 -Tehachapi ,14333,35.1321878,-118.4489739 -Shelbyville ,14326,38.2120144,-85.2235666 -College Park ,14323,38.980666,-76.9369189 -Jasper ,14321,39.0082423,-88.1552371 -Olean ,14320,42.077565,-78.4297419 -Winder ,14286,33.9910345,-83.71837316 -Bemidji ,14262,47.4786541,-94.890802 -Williamsburg ,14262,37.2707028,-76.7074502 -Beech Grove ,14254,39.7219884,-86.0899847 -Greenwood Village ,14232,39.6172101,-104.9508141 -Hartford ,14230,41.7634935,-72.6830523 -Miami Springs ,14212,25.8216288,-80.29247902 -Pottsville ,14210,40.6851324,-76.1953701 -New Franklin ,14208,40.9526931,-81.565937 -Maumee ,14201,41.5628294,-83.6538244 -Sault Ste. Marie ,14200,46.5218221,-84.3194549 -Forest Park village,14195,35.7867814,-78.77202517 -Fort Payne ,14173,34.4442547,-85.7196893 -Powder Springs ,14142,33.8595492,-84.683824 -Harper Woods ,14141,42.4330924,-82.9240833 -Washington Court House ,14138,39.5364511,-83.4390843 -North Myrtle Beach ,14134,33.8160058,-78.680016 -Willowick ,14129,41.6331034,-81.4687274 -Robbinsdale ,14126,45.031696,-93.3353198 -Whitefish Bay village,14119,44.9058305,-87.2173228 -Dunmore borough,14100,41.4198027,-75.6324112 -Chubbuck ,14100,42.9207477,-112.4660912 -Hickory Hills ,14099,41.7255879,-87.825055 -Stallings ,14086,35.0907026,-80.6861799 -Avon ,14076,39.6329025,-106.4711837 -Hutchinson ,14072,38.0608444,-97.9297743 -Highland Park borough,14071,42.1816919,-87.8003438 -Mill Valley ,14066,37.9060368,-122.5449763 -Red Bluff ,14060,40.1784886,-122.2358302 -Villa Rica ,14034,33.732052,-84.9191081 -Marietta ,14033,33.9528472,-84.5496148 -Jackson ,14031,32.2990384,-90.1847691 -Las Vegas ,14016,36.1662859,-115.149225 -Hurricane ,14015,37.1758892,-113.29296 -Clemson ,14011,34.6850749,-82.8364111 -Indiana borough,13996,40.3270127,-86.1746933 -Zephyrhills ,13986,28.241311,-82.18523489 -Lady Lake ,13982,28.9174855,-81.9228604 -Washington ,13976,38.8949549,-77.0366456 -North Liberty ,13966,41.748868,-91.5972564 -Lake Mary ,13964,28.7566325,-81.33888114 -Rio Grande City ,13962,26.3764405,-98.77781219 -Allouez village,13957,47.2871455,-88.4095579 -Sharon ,13916,44.63994125,-89.41770715 -Otsego ,13913,42.5984272,-75.0142701 -Collingswood borough,13906,39.9181686,-75.071284 -Oneonta ,13898,33.93252,-86.4721129 -Orangeburg ,13894,33.4918203,-80.8556476 -Lyndhurst ,13887,40.8120247,-74.1242816 -Moberly ,13884,39.4183689,-92.4382367 -Harrison ,13883,30.4553392,-89.1313136 -Baker ,13863,31.3439196,-84.4555346 -Wood Dale ,13855,41.9633625,-87.9789562 -Gardendale ,13849,31.9957235,-102.3501315 -Pierre ,13842,44.3683045,-100.3511848 -Washington ,13805,38.8949549,-77.0366456 -Addison ,13793,41.931696,-87.9889556 -Hewitt ,13790,44.6411412,-90.1041409 -Chippewa Falls ,13780,44.9369054,-91.3929348 -Martinsville ,13777,36.6915262,-79.8725386 -Henderson ,13771,40.8156124,-90.9104547 -Mountain Home ,13765,36.3665895,-92.3952475 -Kilgore ,13739,32.3862619,-94.8757709 -Moss Point ,13738,30.4301,-88.5191497 -Live Oak ,13737,30.2949457,-82.98402 -Mount Holly ,13728,35.2981943,-81.0159081 -Longwood ,13717,28.7007225,-81.34927787 -Auburndale ,13717,28.10798645,-81.8037622 -Wauconda village,13717,42.2125241,-88.1525798 -Butler ,13705,37.77924,-96.8456342 -Richton Park village,13697,41.513368,-87.6742119 -Morris ,13693,38.6908906,-96.6707526 -Middlesex borough,13690,42.485452,-71.3968261 -Metuchen borough,13666,40.5431598,-74.3632049 -Worthington ,13664,43.6205056,-95.5956434 -Canyon ,13663,35.02151,-101.910431 -Hugo ,13656,45.159967,-92.9932734 -Franklin Park borough,13656,40.5834009,-80.0878352 -North Adams ,13648,42.700915,-73.1087148 -Streator ,13645,41.1210446,-88.835256 -Marshall ,13634,35.9089643,-92.6312746 -Miami ,13629,25.7742658,-80.1936589 -Oldsmar ,13628,28.06906015,-82.65019139 -McMinnville ,13621,45.2109843,-123.1975851 -Saraland ,13599,30.820742,-88.0705556 -Riverdale village,13587,36.4311225,-119.859619 -Levelland ,13585,33.587018,-102.3275106 -Athens ,13583,33.9595974,-83.376678 -Brecksville ,13570,41.3197763,-81.6267904 -Wixom ,13569,42.5247729,-83.5363339 -Brainerd ,13536,46.3580221,-94.2008288 -Auburn ,13535,32.5978265,-85.56335486 -Palos Verdes Estates ,13520,33.7872386,-118.401813 -Sharonville ,13518,39.2681145,-84.4132779 -Spring Lake ,13504,40.1535132,-74.0293941 -Bluffton ,13485,40.7386579,-85.1716368 -Englewood ,13459,40.8928771,-73.9726381 -Warrensville Heights ,13435,41.440345,-81.53138079 -Pewaukee ,13432,43.0805651,-88.2612045 -Connersville ,13424,39.6411589,-85.1410748 -South Charleston ,13414,38.368429,-81.69957 -Fairburn ,13414,33.5670562,-84.5810418 -New Ulm ,13403,44.2896035,-94.46070695 -North Mankato ,13398,44.1732996,-94.0338451 -Ephrata borough,13395,40.1799111,-76.1789242 -Livingston ,13394,40.8682487,-88.5631125 -Circleville ,13392,39.600618,-82.9460133 -Roselle Park borough,13379,40.6645469,-74.2643133 -Fostoria ,13358,41.156998,-83.4168702 -South Sioux City ,13358,42.4738831,-96.4136407 -Meadville ,13351,41.6414438,-80.1514484 -Crowley ,13338,38.3394806,-103.8263042 -Monroe ,13326,38.2722313,-90.1792484 -Endicott village,13290,33.7050756,-117.7347093 -Muscle Shoals ,13286,34.7451786,-87.6686733 -East Wenatchee ,13283,47.4156824,-120.2931263 -Havre de Grace ,13275,39.5489964,-76.0914718 -Harrisburg ,13274,40.2663107,-76.8861122 -Bellefontaine ,13270,40.3611643,-83.7596557 -Claremont ,13246,34.0966764,-117.7197785 -Warrenville ,13246,41.817807,-88.1734021 -Crowley ,13222,38.3394806,-103.8263042 -La Grande ,13222,45.3246068,-118.0878695 -Clayton ,13211,33.5204959,-84.3591713 -Grover Beach ,13210,35.1209452,-120.6218376 -Covington ,13208,39.0837489,-84.5086221 -Chesterton ,13207,41.6105938,-87.0641992 -Hendersonville ,13206,35.3187279,-82.4609528 -St. Augustine ,13192,29.894691,-81.314517 -Shorewood village,13171,41.4047742,-83.0882516 -McPherson ,13160,38.3659015,-97.6575171 -Greenville ,13156,34.851354,-82.3984882 -Fergus Falls ,13131,46.2830152,-96.0775581 -Coatesville ,13130,39.9831616,-75.8238355 -West Carrollton ,13122,39.6722812,-84.2521632 -West Monroe ,13098,32.5184775,-92.1476353 -Carpinteria ,13078,34.3988838,-119.5184564 -Harrison ,13064,30.4553392,-89.1313136 -Soddy-Daisy ,13044,35.2359025,-85.1907904 -Marshall ,13039,35.9089643,-92.6312746 -New Kensington ,13034,40.5697893,-79.7647705 -Solana Beach ,13034,32.9905597,-117.2691316 -King City ,13031,36.2127439,-121.1260287 -Niceville ,13013,30.522651,-86.49145292 -Paradise Valley ,13006,33.5888838,-112.0990443 -Beeville ,12997,28.4008319,-97.7483312 -St. Ann ,12994,38.7272735,-90.3831719 -El Dorado ,12976,38.7574137,-120.5276129 -Port Neches ,12971,29.9913244,-93.9585067 -Rantoul village,12964,38.5433469,-95.0544126 -Newton ,12951,42.3370414,-71.2092214 -Sauk Rapids ,12946,45.5919097,-94.1661011 -Grain Valley ,12942,39.0150069,-94.198558 -Centralia ,12922,38.5250491,-89.1334037 -Eufaula ,12918,35.2873206,-95.5824846 -Worthington ,12917,43.6205056,-95.5956434 -Commerce ,12910,34.0024048,-118.1563371 -Grass Valley ,12906,39.228984,-121.0685367 -Lewisville ,12904,33.046233,-96.994174 -Monticello ,12897,38.01032755,-78.4523438 -Glendale ,12884,34.1423455,-118.2483671 -Pell City ,12870,33.5862149,-86.2860888 -McComb ,12868,31.2437872,-90.4531536 -Hudson ,12867,40.7322695,-74.07663 -Oakland borough,12857,37.8044557,-122.2713563 -California City ,12848,35.125801,-117.9859038 -Huron ,12841,44.7923065,-82.3311296 -Kewanee ,12840,41.2455927,-89.9248303 -Lockhart ,12837,29.8849441,-97.6699996 -Auburn ,12824,32.5978265,-85.56335486 -Dover ,12818,39.158168,-75.5243682 -Conneaut ,12799,41.9475551,-80.5542409 -McFarland ,12799,35.6780104,-119.2292748 -Rochester ,12795,43.1854754,-77.61068605 -Woodhaven ,12794,40.6892698,-73.8579131 -Athens ,12786,33.9595974,-83.376678 -Lake Forest Park ,12785,47.7567679,-122.2809623 -Stoughton ,12780,42.9167389,-89.2178997 -Sylacauga ,12752,33.2258645,-86.19665607 -Malibu ,12741,36.8468149,-76.0952116 -Atlantic Beach ,12741,40.5889936,-73.7290207 -Key Biscayne village,12724,25.6968351,-80.1635261 -Falls Church ,12720,38.882334,-77.1710914 -Palmetto ,12716,27.5278065,-82.58360686 -Wickliffe ,12710,36.9647458,-89.0893387 -Shiloh village,12708,40.5902257,-111.9243803 -Fulton ,12702,40.4714305,-90.1845556 -Monroe ,12700,38.2722313,-90.1792484 -Fruita ,12696,39.1588697,-108.7289883 -Portales ,12687,34.1861922,-103.3343978 -Bainbridge ,12680,30.9037995,-84.5754699 -Lindsay ,12676,44.3550657,-78.7404252 -Boone ,12651,42.321246,-88.8235511 -Superior ,12623,46.7207737,-92.1040796 -Cayce ,12600,33.938553,-81.07166836 -Ottawa ,12587,45.4210328,-75.6900219 -Markham ,12580,43.8539172,-79.3242549 -Channahon village,12573,41.4464197,-88.2053395 -Escanaba ,12571,45.7455707,-87.0647434 -Palos Heights ,12558,41.6681632,-87.7962812 -Gaffney ,12551,35.0717945,-81.6498195 -Southern Pines ,12548,35.1740471,-79.3922539 -Vadnais Heights ,12542,45.0574659,-93.0738306 -Port Orchard ,12528,47.5315625,-122.6384056 -Lakeland ,12519,28.0394654,-81.9498042 -Forest Hill ,12505,43.6935586,-79.4139023 -Brookhaven ,12502,31.58369,-90.44180867 -Effingham ,12501,39.1201433,-88.54348 -Buford ,12483,34.1206564,-84.0043513 -Okmulgee ,12477,35.6677078,-95.9690122 -Jacksonville ,12473,30.3321838,-81.655651 -Lake Station ,12472,41.5750369,-87.2389246 -Green River ,12470,41.5290933,-109.4664738 -Wilmington ,12465,39.7459468,-75.546589 -San Anselmo ,12448,37.9744323,-122.5615032 -Destin ,12421,30.3935337,-86.4957834 -West Richland ,12415,46.3043015,-119.3614092 -Fort Atkinson ,12405,42.9288944,-88.8370509 -Santa Fe ,12405,35.6869996,-105.9377997 -Mountain Home ,12382,36.3665895,-92.3952475 -Marion ,12370,37.7306054,-88.9331256 -Arkansas City ,12357,37.0620507,-97.038575 -Northlake ,12356,33.1273432,-97.2655726 -Eaton borough,12354,42.5935964,-84.8443666 -Irondale ,12353,33.5381601,-86.7072102 -Winfield ,12321,37.2397486,-96.9955919 -Mounds View ,12316,45.1068949,-93.2075931 -New Carrollton ,12302,38.9698329,-76.8799727 -Morgan City ,12257,29.6993748,-91.20677 -Lynden ,12255,48.9466041,-122.4569315 -Salem ,12246,44.9391565,-123.033121 -Mebane ,12243,36.0959715,-79.2669619 -Beatrice ,12232,40.2660291,-96.7469117 -Red Bank borough,12229,40.3470543,-74.0643065 -New Providence borough,12229,25.1943588,-77.29532957 -Evanston ,12223,42.0447388,-87.6930459 -Bucyrus ,12222,40.8083909,-82.9754649 -South Daytona ,12201,29.167082,-81.00565446 -Seabrook ,12197,29.5633199,-95.019723 -Bogalusa ,12197,30.7910204,-89.8486858 -Port Lavaca ,12195,28.6149968,-96.6260892 -Grand Terrace ,12179,34.0339031,-117.3136544 -West Plains ,12173,36.7281154,-91.8523711 -Somerville borough,12171,42.3875968,-71.0994968 -Lumberton ,12170,34.6183433,-79.0083993 -Cleveland ,12164,41.5051613,-81.6934446 -Lakeway ,12158,30.374973,-97.96296995 -Palmer Town ,12156,43.2453502,-73.8173442 -Calera ,12115,33.1035045,-86.7505733 -Marysville ,12112,39.1457247,-121.5913516 -Cloquet ,12109,46.7216102,-92.4593566 -Loveland ,12097,40.3977612,-105.0749801 -Helena-West Helena ,12088,34.534447,-90.63843013 -Blue Ash ,12087,39.2320073,-84.3782817 -New Baltimore ,12077,39.985914,-78.7727984 -Freeport ,12063,42.2966861,-89.6212271 -Baraboo ,12063,43.4704014,-89.7437844 -Norton ,12059,39.7944702,-99.9100033 -Poquoson ,12055,37.1223664,-76.3457773 -Amherst ,12054,42.3803676,-72.523143 -Knightdale ,12054,35.7878975,-78.4822938 -Larkspur ,12043,37.9340915,-122.5352539 -Freehold borough,12041,40.260151,-74.27566219 -Neosho ,12038,37.5566345,-95.33166 -Maryville ,12030,40.3461017,-94.8724707 -Gulfport ,12030,30.3674198,-89.0928155 -Cornelius ,12021,35.4868032,-80.8600736 -Trenton ,12018,40.2170575,-74.7429463 -Lake City ,12008,30.1896756,-82.6392899 -Camden ,12006,30.9298212,-81.6225075 -South Miami ,12000,25.7078467,-80.29563558 -Woodward ,11989,36.374499,-99.2455382 -Madison ,11987,43.074761,-89.3837613 -Lilburn ,11985,33.8901036,-84.1429719 -Coolidge ,11975,32.9592895,-111.5315133 -Woodland Park borough,11963,42.8709195,-71.5120121 -Blackfoot ,11963,43.1900388,-112.3483569 -Andover ,11937,42.65717,-71.1408776 -Hasbrouck Heights borough,11933,40.8581553,-74.0806971 -Moody ,11932,43.998215,-96.6671385 -Crestwood ,11918,41.6611444,-87.7525511 -Fortuna ,11915,40.5974067,-124.1560341 -Steamboat Springs ,11901,40.4848003,-106.8317359 -Kelso ,11891,46.1420334,-122.9060318 -Pontiac ,11890,40.8808666,-88.6297839 -Clawson ,11887,42.5333682,-83.1463166 -Florida City ,11878,25.4480101,-80.479102 -Beachwood ,11870,41.4644979,-81.5087322 -Wilton Manors ,11868,26.158593,-80.13719391 -Speedway ,11861,39.8022653,-86.2672127 -Patchogue village,11854,40.7715052,-72.98911072 -Fulton ,11851,40.4714305,-90.1845556 -Mount Washington ,11846,38.0500627,-85.5457877 -Dallas ,11844,32.7761963,-96.7968994 -Franklin ,11830,37.9765409,-88.9335327 -Schiller Park village,11830,41.9941334,-87.8756737 -Dardenne Prairie ,11827,38.7694969,-90.7290157 -Elk City ,11824,35.4119944,-99.4042592 -Chatham village,11818,44.160623,-70.9850708 -Magnolia ,11812,33.2670725,-93.2393341 -Somersworth ,11798,43.2617862,-70.8650029 -Florham Park borough,11795,40.787878,-74.3882072 -Powell ,11783,46.9109569,-113.0294193 -Martinsville ,11780,36.6915262,-79.8725386 -Urbana ,11758,40.1117174,-88.207301 -Guymon ,11758,36.6828041,-101.4815493 -Douglas ,11756,39.7628415,-88.2170516 -Heber ,11735,32.729956,-115.5257262 -Fernandina Beach ,11729,30.6696818,-81.4625919 -Red Bank ,11729,40.3470543,-74.0643065 -Ferndale ,11724,40.5762406,-124.2639442 -Lower Burrell ,11703,40.5882821,-79.7298187 -Portland ,11701,45.5202471,-122.6741949 -Glen Rock borough,11700,40.9628758,-74.1329208 -Edgewater borough,11699,40.8270448,-73.975694 -Festus ,11677,38.2207112,-90.3959504 -Richmond ,11676,37.5385087,-77.43428 -Byram ,11660,41.0042642,-73.6537385 -Cedar Lake ,11660,41.3647578,-87.4411473 -Federal Heights ,11655,39.8513749,-104.9985924 -Two Rivers ,11649,44.1538845,-87.5692479 -Washington ,11640,38.8949549,-77.0366456 -Scotts Valley ,11631,37.0510595,-122.0146841 -Fort Mill ,11621,35.0073697,-80.9450759 -Panama City Beach ,11620,30.1765914,-85.8054879 -North St. Paul ,11615,45.0124657,-92.9918828 -Holly Hill ,11614,33.4973905,-79.149488 -East Bethel ,11613,45.3194095,-93.2024487 -Arlington ,11598,32.7355816,-97.1071186 -Ocean City ,11584,39.2776156,-74.5746001 -Greensburg ,11584,40.3014581,-79.5389289 -Andrews ,11583,32.3187158,-102.5457155 -Bridgeton ,11580,39.427337,-75.2340768 -Yazoo City ,11575,32.86356325,-90.40013588 -Bellmawr borough,11574,39.8676134,-75.0946183 -Oskaloosa ,11573,41.296395,-92.6443593 -Haddonfield borough,11568,39.8915022,-75.0376707 -Lone Tree ,11564,39.5366435,-104.8855209 -El Campo ,11561,37.8974258,-122.4652507 -Niles ,11557,42.0289319,-87.8122348 -Los Alamitos ,11542,33.8037416,-118.0780533 -Glenn Heights ,11535,32.5487479,-96.8566667 -Grafton village,11523,38.3234608,-77.4419283 -Kingsburg ,11523,36.5138398,-119.5538929 -Half Moon Bay ,11518,37.4635519,-122.4285862 -Suamico village,11499,44.7180495,-88.1567699 -Yeadon borough,11475,39.9397568,-75.2511685 -Grosse Pointe Park ,11475,42.3758708,-82.9374159 -Cedarburg ,11470,43.2966716,-87.9875898 -Fort Morgan ,11469,40.2502582,-103.799951 -Martin ,11460,27.0673711,-80.3994412 -Shepherdsville ,11453,37.9883991,-85.7157924 -Wallington borough,11448,40.8531553,-74.1137537 -Rogers ,11441,36.3781607,-95.6190889 -Gloucester City ,11438,39.8917799,-75.1162863 -River Edge borough,11434,40.9287098,-74.0398622 -St. Peter ,11432,44.3238384,-93.9585295 -Archdale ,11428,35.914581,-79.9719831 -Summit village,11427,38.7271245,-121.0960563 -Artesia ,11409,33.8690197,-118.0796195 -South Lyon ,11399,42.451377,-83.659179 -Munhall borough,11396,40.3922914,-79.9000499 -Choctaw ,11391,34.0246234,-95.52055 -Lansing ,11383,42.7337712,-84.5553805 -James Island ,11373,48.5125637,-122.775166 -Cordele ,11369,31.9635074,-83.7823938 -Mendota ,11366,36.7535486,-120.3815579 -Healdsburg ,11362,38.6298355,-122.859002 -Guttenberg ,11357,40.7920454,-74.0037505 -Port Washington ,11357,40.8256561,-73.6981858 -Oneida ,11354,44.4809974,-88.24989352 -Ionia ,11345,42.9469688,-85.0713945 -Waupun ,11342,43.6333219,-88.7295519 -Tarboro ,11335,35.8968236,-77.5358049 -Richfield village,11323,39.8153246,-91.1165276 -Irmo ,11322,34.085736,-81.18249 -Highland Park ,11315,42.1816919,-87.8003438 -Emmaus borough,11296,40.5395421,-75.4968502 -Enumclaw ,11294,47.2047793,-121.9916371 -Raymondville ,11257,26.4814565,-97.783051 -West Point ,11248,41.3929109,-73.9568049 -Lake Grove village,11243,41.83054965,-87.60908357 -Cottonwood ,11243,44.019068,-95.1658845 -Taylorville ,11242,39.548935,-89.294533 -Davidson ,11233,36.189724,-86.7857862 -Platteville ,11232,40.2149829,-104.8227494 -Clute ,11215,29.0246906,-95.3988291 -Lewisburg ,11214,40.9645293,-76.8844101 -Coshocton ,11213,40.2905684,-81.9271441 -Smithfield ,11209,35.5085717,-78.3392929 -Cocoa Beach ,11207,28.3293255,-80.62631477 -Spencer ,11201,38.0237475,-85.3203899 -Snyder ,11201,40.7615395,-77.0909536 -Excelsior Springs ,11201,39.339175,-94.2260591 -Wanaque borough,11186,41.0183782,-74.2892067 -Springdale ,11185,36.1867442,-94.1288142 -Corning ,11177,42.1428521,-77.0546903 -Millington ,11166,35.3414745,-89.8973084 -Clayton ,11160,33.5204959,-84.3591713 -East Liverpool ,11141,40.6186756,-80.5772928 -Bastrop ,11141,30.1104947,-97.3152701 -Ridgefield borough,11140,41.2814842,-73.4981792 -Merriam ,11136,39.0236165,-94.6935701 -Glenpool ,11136,35.9553737,-96.0088843 -Ironton ,11123,38.5367471,-82.6829406 -Mendota Heights ,11115,44.8835768,-93.1382749 -Fredonia village,11112,36.945542,-112.5265889 -Garden City ,11112,37.9716898,-100.8726618 -Azle ,11108,32.8951262,-97.5458565 -Snoqualmie ,11107,47.5332072,-121.8434935 -Woodinville ,11095,47.7545827,-122.1588902 -Signal Hill ,11087,40.619377,-74.0873755 -Lyndon ,11087,38.2567376,-85.6016275 -Webb City ,11083,37.1464475,-94.4630036 -Brooklyn ,11077,40.6501038,-73.9495823 -Beachwood borough,11069,41.4644979,-81.5087322 -Boerne ,11064,29.7946641,-98.7319703 -Fairfield ,11063,38.2493581,-122.0399663 -Lovington ,11059,32.9440077,-103.3485543 -Ogdensburg ,11052,44.6942291,-75.4863364 -Crossville ,11049,35.9489566,-85.0269015 -Campbellsville ,11035,37.3433974,-85.3419069 -Galena Park ,11024,29.7335616,-95.2302123 -Jerome ,11004,42.702266,-114.2867043 -Hillsborough ,11003,27.9184543,-82.3488057 -Fort Madison ,10995,40.6297632,-91.3151506 -Sierra Madre ,10990,34.1616729,-118.0528456 -Crestwood village,10986,39.9481727,-74.360703 -Plano ,10981,33.0136764,-96.6925096 -Red Oak ,10978,41.0097151,-95.2255466 -Weatherford ,10976,32.764654,-97.68189586 -Lawrenceburg ,10970,38.0372967,-84.8966171 -Kennett ,10963,36.2361763,-90.0556494 -Sturgis ,10945,44.4097069,-103.5090786 -Grandview ,10940,46.2509653,-119.9017049 -Atchison ,10939,39.545816,-95.3326052 -Picayune ,10937,30.524888,-89.67915245 -Tomball ,10935,30.0739465,-95.62794721 -Waconia ,10928,44.8507957,-93.7869088 -Orange City ,10917,28.9488761,-81.2986741 -Coldwater ,10916,41.9403263,-85.0005215 -Vernon ,10913,31.0847886,-93.2003582 -Camp Verde ,10899,34.5636358,-111.8543178 -Grand Rapids ,10897,42.9632405,-85.6678639 -Union City ,10893,37.5963232,-122.0816297 -Totowa borough,10883,40.9050988,-74.2098679 -Haysville ,10881,40.5264568,-80.1589469 -Troy ,10864,42.6055893,-83.1499304 -Jefferson Hills borough,10862,40.2915175,-79.93547146 -Marinette ,10861,45.0999594,-87.6307265 -Town and Country ,10858,38.6122751,-90.4634532 -Robinson ,10853,47.859356,-92.0418175 -East Grand Rapids ,10840,42.9412024,-85.6097309 -Sweetwater ,10839,32.4709519,-100.4059384 -Bellefontaine Neighbors ,10834,38.7403281,-90.2265001 -Riverton ,10825,43.0249578,-108.3798938 -Van Wert ,10824,40.8014651,-84.600988 -Piedmont ,10818,37.8243715,-122.231635 -Monroe ,10814,38.2722313,-90.1792484 -Muskegon Heights ,10799,43.2011264,-86.2389464 -Chino Valley ,10796,34.7575227,-112.4537809 -Arkadelphia ,10793,34.1209292,-93.053784 -Branson ,10785,36.6440399,-93.217133 -Somers Point ,10779,39.3176158,-74.594601 -Webster ,10771,32.050618,-84.5473105 -Keokuk ,10767,40.3972664,-91.384874 -Roscoe village,10761,44.2252419,-92.7715835 -Lyons village,10756,42.6511277,-88.3584276 -Burkburnett ,10746,34.0978711,-98.5706134 -Little Ferry borough,10728,40.8502575,-74.0439861 -Canyon Lake ,10722,33.6836539,-117.2626151 -Vermillion ,10721,42.7794417,-96.9292104 -Lantana ,10719,26.5830481,-80.0559944 -DeRidder ,10718,30.8463055,-93.2890528 -Show Low ,10714,34.2542084,-110.0298327 -Sonoma ,10714,38.5110803,-122.8473388 -West Haven ,10708,41.2706527,-72.9470471 -Franklin Lakes borough,10687,41.0167639,-74.2057012 -Woodbury village,10687,41.5445404,-73.2090025 -Bedford Heights ,10681,41.4169982,-81.5273428 -Cheney ,10679,47.4873895,-117.5757622 -Spearfish ,10678,44.4908172,-103.8593698 -Darby borough,10668,39.9184461,-75.2590721 -Jacinto City ,10652,29.7673433,-95.2336723 -Big Rapids ,10649,43.6980782,-85.4836558 -Prosper ,10644,33.2327235,-96.839902 -Struthers ,10637,41.0525588,-80.6078509 -Petal ,10635,31.3465627,-89.2600605 -Sedro-Woolley ,10630,48.5049158,-122.2349409 -Ventnor City ,10628,39.3405045,-74.4773916 -Melvindale ,10628,42.2825383,-83.175203 -Kings Mountain ,10628,35.2451343,-81.3411942 -Fredericksburg ,10626,38.3031837,-77.4605399 -Storm Lake ,10621,42.6410915,-95.2097179 -Waynesboro borough,10620,38.0709693,-78.8740901 -Farmersville ,10619,36.2977283,-119.2067767 -Lansdowne borough,10599,39.9381682,-75.2718507 -Fox Lake village,10598,43.6766221,-94.6588666 -Indianola ,10596,33.4446225,-90.64892856 -Lighthouse Point ,10583,26.27886235,-80.08882145 -Loganville ,10582,39.8556564,-76.7074696 -Sussex village,10576,41.0984301,-74.6884965 -Wood River ,10565,38.861159,-90.0976069 -Wabash ,10561,38.4615994,-87.8460903 -Canandaigua ,10560,42.8844625,-77.278399 -Fairmont ,10550,39.4850848,-80.1425781 -Lincoln Park borough,10549,42.2505943,-83.1785361 -Vermilion ,10545,40.1749809,-87.7323857 -Richmond Heights ,10534,38.6282707,-90.3191285 -Castle Pines ,10533,39.460096,-104.894195 -Lincolnton ,10533,35.473745,-81.2545251 -Palatka ,10524,29.6487882,-81.6372111 -Burlington ,10509,44.4723989,-73.2114941 -Leon Valley ,10497,29.4952307,-98.6186317 -Guthrie ,10492,35.8789231,-97.4252772 -Bluefield ,10488,37.252617,-81.2712105 -Vidalia ,10480,32.2176855,-82.4134614 -Bound Brook borough,10479,40.5684363,-74.5384889 -White House ,10464,38.8976989,-77.03655319 -Goodlettsville ,10459,36.3231067,-86.7133302 -Forest Acres ,10458,34.0193221,-80.9898128 -Grand Haven ,10454,43.0630734,-86.2283864 -Lawrenceburg ,10444,38.0372967,-84.8966171 -Mount Airy ,10439,36.4993007,-80.6072859 -Nanticoke ,10433,41.2053599,-76.004923 -Johns ,10429,33.361779,-87.1097179 -Manville borough,10426,40.5409367,-74.587657 -Farmington ,10426,36.7304288,-108.2089191 -Doraville ,10411,33.8981579,-84.2832564 -Parsons ,10409,37.3407838,-95.2596295 -Burley ,10404,42.5357428,-113.7927948 -Alpena ,10393,45.0616794,-83.4327528 -Bolivar ,10391,33.7702263,-90.8519798 -Galion ,10388,40.7336688,-82.7899026 -Eunice ,10385,30.4943669,-92.4176324 -Summerfield ,10372,38.5972705,-89.751762 -Union ,10372,37.4616454,-89.2504793 -Sebring ,10367,27.4957453,-81.4410425 -Pella ,10356,44.72375425,-88.79744676 -Hillsdale borough,10351,41.9326027,-84.6336822 -Placerville ,10336,38.7296252,-120.798546 -Jennings ,10334,38.9957749,-85.6359201 -Barrington village,10330,35.7401209,-78.53451092 -Lancaster village,10329,39.7445574,-75.5890917 -Kinnelon borough,10327,41.0017644,-74.367096 -Batesville ,10323,35.78883,-91.65050847 -Gulf Shores ,10312,30.2460361,-87.7008193 -Greencastle ,10304,39.6444898,-86.8647316 -Jesup ,10303,31.6074365,-81.8853924 -Morro Bay ,10284,35.3658075,-120.8499013 -Union ,10284,37.4616454,-89.2504793 -Lindon ,10283,40.3432857,-111.7207608 -Eureka ,10278,40.8020712,-124.1636729 -Silver City ,10274,32.7725053,-108.2793701 -Portage ,10260,41.5758708,-87.1761455 -Montgomery ,10257,32.3669656,-86.3006485 -Newberry ,10253,34.2753247,-81.6188633 -Lexington ,10244,38.0464066,-84.4970393 -Watervliet ,10243,42.7300784,-73.7012299 -Bel Air ,10213,34.0827278,-118.4479802 -Pine Hill borough,10206,43.7359071,-71.4800741 -Big Lake ,10188,45.3324647,-93.7460804 -Middlesborough ,10183,36.6180555,-83.71392552 -Denham Springs ,10166,30.4868564,-90.9562125 -Satellite Beach ,10155,28.1761233,-80.5900519 -Brownsville ,10155,25.9140256,-97.4890856 -Atmore ,10154,31.0237921,-87.4938708 -Warr Acres ,10151,35.5225569,-97.6189353 -Woodbury ,10145,44.92317,-92.9588282 -Emeryville ,10130,37.8314089,-122.2865266 -Carroll ,10120,42.0647352,-89.9556785 -Shasta Lake ,10120,40.6804279,-122.3708419 -Mayfield ,10118,36.7413624,-88.6352595 -Bonham ,10090,33.5773276,-96.1783111 -Coffeyville ,10087,37.0372999,-95.6163634 -Woods Cross ,10082,40.8716964,-111.8925775 -North Branch ,10078,45.5113515,-92.9802176 -Waterloo ,10077,43.4655524,-80.5217786 -Pleasant Grove ,10072,40.3641184,-111.73854 -Waxhaw ,10061,34.9245935,-80.7434019 -Benton Harbor ,10060,42.1167065,-86.4541894 -Keansburg borough,10057,40.4417743,-74.1298643 -Elkhorn ,10054,42.6727927,-88.5445447 -Great Neck village,10038,41.4470451,-71.6256185 -Hope ,10034,33.6883815,-93.58383434 -Harrisonville ,10010,38.6533446,-94.3484529 -Anderson ,10009,38.198077,-95.3067461 -Sedona ,10009,34.8657757,-111.7929891 -Waverly ,9973,37.0359879,-77.0952514 -Harrison ,9972,30.4553392,-89.1313136 -Bellmead ,9963,31.5940545,-97.1088903 -Gonzales ,9951,29.5016257,-97.4524926 -Sleepy Hollow village,9943,33.08527,-97.0399899 -Troy ,9934,42.6055893,-83.1499304 -East Stroudsburg borough,9932,40.9995386,-75.1812913 -Bluffton ,9925,40.7386579,-85.1716368 -Little Canada ,9914,43.9233915,-73.6495723 -Cape Canaveral ,9914,28.388172,-80.60326552 -Cedar Hills ,9903,45.5050407,-122.7977031 -Girard ,9898,33.0404323,-81.7120567 -Burlington ,9898,44.4723989,-73.2114941 -D'Iberville ,9896,30.4263092,-88.8908638 -Centerton ,9889,36.346325,-94.33285765 -Smithfield ,9877,35.5085717,-78.3392929 -Flat Rock ,9875,42.0964314,-83.2918744 -Kendallville ,9874,41.4414385,-85.2649754 -Marysville ,9873,39.1457247,-121.5913516 -Russellville ,9860,35.2784173,-93.1337856 -Sunbury ,9857,40.8619754,-76.7936252 -Clinton ,9851,38.5896187,-89.420064 -Shelton ,9850,41.3164856,-73.0931641 -Wapakoneta ,9825,40.5678265,-84.1935594 -Lock Haven ,9814,41.1370133,-77.4469263 -Sandy ,9810,40.572851,-111.8334495 -Cedar ,9807,37.7084225,-93.861222 -Waynesville ,9805,35.4887476,-82.9888725 -Tuskegee ,9781,32.4240286,-85.6916195 -Bay St. Louis ,9775,30.3028195,-89.33755482 -Baker City ,9773,44.7748748,-117.8343848 -Monticello ,9760,38.01032755,-78.4523438 -West Point ,9756,41.3929109,-73.9568049 -Waldwick borough,9754,41.0106529,-74.1179203 -Cottage Grove ,9748,44.8277446,-92.9438218 -Richmond Hill ,9748,43.8702788,-79.4381534 -Fort Valley ,9740,32.5537585,-83.8874084 -Tipp City ,9732,39.9583892,-84.1721638 -Alpine ,9731,38.5893934,-119.8345013 -Washington ,9729,38.8949549,-77.0366456 -Warrenton ,9728,38.7135498,-77.795367 -Jackson ,9723,32.2990384,-90.1847691 -Weddington ,9710,35.0223708,-80.7609035 -Clay ,9706,38.7340694,-88.4910693 -Milford ,9688,41.2223194,-73.0564953 -Royse City ,9685,32.9750924,-96.3325215 -Brownfield ,9682,33.1812035,-102.2743489 -Brentwood borough,9635,37.9317766,-121.6960266 -Sparta ,9634,43.9441328,-90.8129118 -Rainbow City ,9631,33.928922,-86.13996432 -Warren ,9625,40.8442828,-90.6168408 -Arden Hills ,9620,45.0761409,-93.1666945 -Cody ,9609,44.5263107,-109.0563923 -Presque Isle ,9605,46.681153,-68.0158616 -Minneola ,9601,44.3230458,-92.7103456 -North Bend ,9597,43.4065046,-124.2242725 -Maywood borough,9586,33.9866807,-118.185349 -Jeannette ,9586,40.3281247,-79.6153198 -LaSalle ,9573,41.355631,-89.04010647 -Fairfield ,9562,38.2493581,-122.0399663 -Amityville village,9559,40.67777065,-73.41867325 -Herman ,9558,44.80376595,-88.79733083 -Boaz ,9555,34.1663695,-86.17084113 -Pryor Creek ,9544,38.2977624,-108.0883326 -Merrill ,9539,45.1805223,-89.683459 -Orange Cove ,9533,36.624394,-119.3137301 -Anthony ,9532,37.8959542,-80.3320174 -Glenwood Springs ,9532,39.5507448,-107.3255001 -Rockingham ,9523,38.5080288,-78.8949442 -Howell ,9521,42.6072552,-83.9293952 -Santaquin ,9519,39.9755101,-111.7852106 -Elon ,9511,36.1029132,-79.5066895 -Rockport ,9509,28.0205733,-97.0544341 -Oregon village,9506,45.4082156,-122.922469 -Safford ,9506,32.8339546,-109.70758 -Astoria ,9505,46.1878845,-123.8312563 -St. Francis ,9503,35.0153956,-90.7263194 -Bethalto village,9498,38.924769,-90.0220491 -Sumner ,9497,37.2435967,-97.4792142 -Rensselaer ,9497,42.7091389,-73.5107732 -Flossmoor village,9494,41.513368,-87.6742119 -Jefferson ,9480,38.3010487,-88.9344303 -Dunn ,9477,35.3062743,-78.6089028 -Willoughby Hills ,9474,41.5983823,-81.4184471 -Chillicothe ,9466,39.3331197,-82.9824019 -Coweta ,9460,33.3500656,-84.7545734 -Edgewood ,9457,39.4187194,-76.2944016 -Brewer ,9449,44.7964921,-68.7600832 -Ecorse ,9440,42.2497445,-83.13851712 -Valley ,9440,48.3564433,-106.615665 -Holly Springs ,9429,35.6512655,-78.8336218 -Fort Oglethorpe ,9428,34.9489645,-85.2569 -Brigantine ,9426,39.4101171,-74.3645906 -Grosse Pointe Farms ,9418,42.4092038,-82.8918587 -Mission ,9413,26.2159066,-98.3252932 -Waseca ,9403,44.0172242,-93.5885717 -Mooresville ,9401,35.570746,-80.8182992 -Alamosa ,9393,37.469877,-105.8696009 -Aliquippa ,9384,40.6102386,-80.267726 -Lititz borough,9382,40.1571272,-76.3071674 -Harvard ,9378,42.36782045,-71.12666173 -Decatur ,9377,39.8628075,-88.89387182 -Winterville ,9374,44.47629095,-103.8500669 -North College Hill ,9359,39.2183911,-84.5507778 -St. Pete Beach ,9354,27.7253065,-82.741212 -Lamesa ,9350,32.7376001,-101.9509921 -Groton ,9349,41.3506989,-72.0773654 -Essex Junction village,9348,44.493041,-73.1009859 -Poulsbo ,9342,47.7391366,-122.63928 -Corte Madera ,9340,37.9254806,-122.5274755 -Lowell ,9335,42.6334247,-71.3161718 -Rock Falls ,9331,41.7797533,-89.6889967 -Ingleside ,9327,27.8779713,-97.2113065 -Mount Airy ,9324,36.4993007,-80.6072859 -Reedsburg ,9321,43.5324809,-90.0026259 -Harahan ,9308,29.9404826,-90.2031313 -Independence ,9297,37.2242358,-95.7083131 -Rifle ,9296,39.5347023,-107.7831199 -Taft ,9288,35.1424671,-119.4565078 -Norwalk ,9288,41.1175966,-73.4078968 -Grants ,9283,35.14726,-107.8514465 -Silverton ,9282,34.4742306,-101.3046051 -Bladensburg ,9281,38.9392997,-76.9337983 -Tomah ,9275,43.978576,-90.5040214 -Pearsall ,9275,28.8921939,-99.095033 -Lynwood village,9269,39.1020544,-76.4732942 -Anaconda-Deer Lodge County,9261,46.0124655,-113.0994171 -Vernal ,9261,40.4555157,-109.5287479 -Snohomish ,9252,48.0074736,-121.7304882 -Shawano ,9245,44.7817214,-88.7118868 -Greenwood ,9214,37.8709542,-96.2471338 -Clarksville ,9211,38.2967791,-85.7602087 -Rawlins ,9208,39.7904797,-101.0994722 -Shelby ,9204,39.3665064,-88.7886278 -Craig ,9203,37.4760225,-80.1990826 -Grinnell ,9185,41.7430554,-92.7224206 -Oakwood ,9177,40.563994,-74.1159754 -Thomaston ,9164,41.6739862,-73.073164 -Prineville ,9159,44.2998229,-120.834884 -Mound ,9154,44.9366295,-93.6660719 -Alachua ,9153,29.675568,-82.3640109 -Sturgeon Bay ,9148,44.8341639,-87.377042 -Chanute ,9141,37.6792135,-95.4572034 -Danville ,9139,40.125222,-87.6304614 -Louisville ,9139,38.2542376,-85.759407 -Ellisville ,9138,38.5941048,-90.5875099 -George ,9133,30.857421,-88.6537118 -Hartland village,9127,39.3031634,-76.4477389 -Port Townsend ,9121,48.1185325,-122.7679629 -Laurens ,9115,32.4239975,-82.9388938 -Grantsville ,9113,38.9234195,-81.0959456 -Olney ,9111,39.1532123,-77.0668408 -Sheffield Lake ,9111,41.48754,-82.101537 -Berkeley ,9108,37.8708393,-122.2728639 -Washington Terrace ,9101,34.2901539,-79.8570071 -Clinton ,9094,38.5896187,-89.420064 -Fitzgerald ,9078,31.7149082,-83.2526545 -Pleasanton ,9077,37.6624312,-121.8746789 -Sugar Grove village,9076,40.5158984,-80.7059104 -Sweet Home ,9066,44.3976247,-122.7361959 -Newark village,9054,39.9678159,-86.1233213 -Charlotte ,9051,35.2270869,-80.8431268 -Tiburon ,9050,37.8734371,-122.4566122 -Clinton ,9044,38.5896187,-89.420064 -Maysville ,9041,41.6486403,-90.7168091 -Harrisburg ,9041,40.2663107,-76.8861122 -Fairview ,9038,37.6785422,-122.0457953 -Pulaski ,9034,37.2314232,-89.1183427 -Socorro ,9026,34.0572791,-106.8930518 -Covington ,9025,39.0837489,-84.5086221 -Leonia borough,9020,40.8614887,-73.9881942 -Glenwood village,9017,35.5120966,-79.217799 -Toppenish ,9015,46.3773509,-120.3086667 -Barre ,9011,42.4228679,-72.1050787 -The Village ,9011,35.5658553,-97.5494185 -Perryton ,8989,36.4000313,-100.8026505 -East Rutherford borough,8987,40.833989,-74.0970865 -Pitman borough,8985,39.732892,-75.1315651 -Moundsville ,8980,39.9203526,-80.7431407 -Swissvale borough,8978,40.4204647,-79.88423111 -Milton ,8978,42.2495435,-71.0661612 -Canonsburg borough,8977,40.2647458,-80.193626 -Bennettsville ,8975,34.6173803,-79.6847814 -Frederick ,8969,39.414443,-77.4105783 -Olmsted Falls ,8957,41.375049,-81.9081937 -Mechanicsburg borough,8955,40.2101972,-77.0047276 -Springfield ,8942,39.7989763,-89.6443688 -Garden City ,8923,37.9716898,-100.8726618 -Monett ,8916,36.9289518,-93.9277149 -Saline ,8912,37.750075,-88.5302584 -Pleasant Hill ,8909,37.9479786,-122.0607963 -Groveland ,8899,42.7603688,-71.0314451 -Frostburg ,8878,39.6581425,-78.928357 -Covington ,8876,39.0837489,-84.5086221 -Carbondale ,8872,37.7274692,-89.216655 -Hondo ,8867,29.3474121,-99.1412026 -Avon Park ,8858,27.5960827,-81.5060858 -College Place ,8858,46.0491763,-118.3880417 -Morehead City ,8846,34.7229391,-76.7260436 -Sallisaw ,8846,35.4603711,-94.7874463 -Collegedale ,8826,35.0531301,-85.0502277 -Trophy Club ,8825,32.9979014,-97.1836246 -Beaver Falls ,8822,40.7520097,-80.3192295 -Graham ,8817,39.34062,-99.8980624 -Columbia City ,8812,41.1572639,-85.4883072 -Lapeer ,8805,43.0904764,-83.2333705 -Trinidad ,8803,37.169397,-104.5005411 -Audubon borough,8802,29.93040405,-90.12635909 -Wharton ,8799,29.30524,-96.07548154 -Port Jervis ,8787,41.3750937,-74.692663 -Matawan borough,8785,40.41483,-74.2295891 -Booneville ,8776,37.4761991,-83.6749145 -Collingdale borough,8768,39.9117794,-75.2771292 -Detroit Lakes ,8765,46.8171809,-95.8453253 -Mount Pleasant ,8765,32.7940651,-79.8625851 -Napoleon ,8758,41.3922726,-84.1252243 -Pecos ,8750,31.395836,-103.494624 -Grimes ,8747,41.6883214,-93.7910575 -Delta ,8735,38.7422063,-108.0689583 -Park Hills ,8733,37.854218,-90.5181804 -Lenoir City ,8731,35.7972998,-84.2560299 -Morrisville borough,8717,35.823483,-78.8255621 -Park Ridge borough,8716,42.0111412,-87.8406192 -Scott ,8707,39.6333408,-90.4753685 -Highland Park ,8695,42.1816919,-87.8003438 -Clinton ,8692,38.5896187,-89.420064 -Virginia ,8689,37.1232245,-78.4927721 -South Amboy ,8682,40.4782514,-74.2907363 -Kearney ,8673,40.699457,-99.0814767 -Price ,8672,45.249331,-88.98873339 -Thief River Falls ,8669,48.1172301,-96.1770667 -Clanton ,8663,32.8387371,-86.6294262 -Cloverdale ,8662,38.8054624,-123.0172227 -Johns ,8639,33.361779,-87.1097179 -Hoquiam ,8634,46.9809291,-123.8893352 -Lancaster ,8630,40.03813,-76.3056686 -Princeton ,8627,40.3492744,-74.6592958 -Cresskill borough,8627,40.9414874,-73.9593041 -Independence ,8623,37.2242358,-95.7083131 -Atoka ,8617,34.3284948,-96.017838 -Northfield ,8613,44.4582041,-93.161159 -Smithville ,8611,30.0085542,-97.1594321 -Edgewood ,8610,39.4187194,-76.2944016 -East Grand Forks ,8599,47.9317394,-97.0173554 -Willowbrook village,8595,40.434881,-78.4492338 -Live Oak ,8585,30.2949457,-82.98402 -Tuscumbia ,8580,34.7312005,-87.70253 -Youngsville ,8573,41.8522809,-79.3186597 -Hornell ,8570,42.3278477,-77.6611025 -Liberty ,8568,31.8031632,-81.483441 -DuPont ,8567,44.62526355,-88.92022187 -Broussard ,8567,30.147146,-91.9612306 -Woodway ,8561,47.7900365,-122.3823625 -Eagle Point ,8561,42.4726258,-122.8028177 -Menominee ,8549,45.5785741,-87.562159 -Elwood ,8549,40.2769834,-85.8419246 -Westwego ,8548,29.9060388,-90.1422962 -Poteau ,8544,35.0537094,-94.6235579 -Bryan ,8538,30.693444,-96.40080172 -Richmond Heights ,8536,38.6282707,-90.3191285 -Ladue ,8531,38.6497743,-90.3806725 -Fallon ,8522,46.3291957,-104.4366483 -Perkasie borough,8522,40.372048,-75.292676 -Clinton ,8516,38.5896187,-89.420064 -Alliance ,8501,40.9153362,-81.1059309 -Sunset Hills ,8499,38.5389423,-90.407341 -Albion ,8496,39.2235117,-123.7686251 -Gering ,8494,41.8258016,-103.6604995 -Closter borough,8492,40.9731536,-73.9615262 -Winchester ,8483,39.1857762,-78.1631434 -Riverdale ,8482,41.5444778,-90.4581879 -Box Elder ,8481,41.3586056,-113.2112072 -Cortez ,8474,37.3493752,-108.5872365 -North Haledon borough,8473,40.9550981,-74.1859782 -Miles City ,8473,46.4085273,-105.840981 -Jerseyville ,8466,39.1200471,-90.3284479 -Delavan ,8466,42.6330703,-88.6437138 -Runnemede borough,8463,39.8523358,-75.0679498 -Franklin ,8462,37.9765409,-88.9335327 -West Long Branch borough,8457,40.2903891,-74.0176381 -Bay Minette ,8454,30.8829628,-87.7730474 -Burlington ,8453,44.4723989,-73.2114941 -Alcoa ,8453,35.7895271,-83.9737935 -Southside ,8451,33.9245425,-86.0224718 -Greenville ,8450,34.851354,-82.3984882 -Monroe village,8448,40.339238,-74.4539119 -Franklin ,8443,37.9765409,-88.9335327 -Fultondale ,8437,33.6349905,-86.78872023 -Oberlin ,8434,41.2939386,-82.2173786 -Wagoner ,8432,35.9542216,-95.5636238 -Franklin ,8431,37.9765409,-88.9335327 -Hillsboro ,8428,45.5228939,-122.989827 -Tecumseh ,8419,42.2508902,-82.9608334 -New Richmond ,8419,45.1230213,-92.5365865 -Boonton ,8405,40.9025989,-74.4070971 -Marathon ,8401,42.1980479,-85.6426468 -Elsmere ,8401,39.7380793,-75.5959197 -Wyoming ,8398,43.1700264,-107.5685348 -Absecon ,8398,39.4284503,-74.4957076 -Orange Park ,8395,30.1660736,-81.706484 -Rice Lake ,8392,45.5060682,-91.7382251 -Orrville ,8388,40.8436664,-81.7640212 -Bernalillo ,8388,35.0349239,-106.6870693 -North Logan ,8386,41.7693747,-111.8046654 -Des Peres ,8381,38.5950643,-90.45567587 -Haledon borough,8381,40.935654,-74.186256 -Ripley ,8380,36.6478735,-90.8887906 -Eaton ,8364,42.5935964,-84.8443666 -Fort Stockton ,8362,30.8940431,-102.8793222 -Little Falls ,8352,45.9763545,-94.3625024 -St. Joseph ,8346,39.7686055,-94.8466322 -Denison ,8346,33.8062305,-96.62387757 -Wood-Ridge borough,8342,40.8456555,-74.0879195 -Harrodsburg ,8339,37.762298,-84.8432852 -Westlake Village ,8337,34.1458389,-118.8056474 -Cheviot ,8335,39.1570028,-84.6132787 -Oak Hill ,8329,38.0051401,-78.5230684 -Diamondhead ,8327,34.4398127,-92.9451742 -Toccoa ,8326,34.5773206,-83.3323851 -Wynne ,8322,35.224533,-90.7867798 -Flushing ,8318,40.7654301,-73.8174291 -Jefferson City ,8317,38.577359,-92.1724265 -Castle Shannon borough,8317,40.3647917,-80.0222753 -Elgin ,8313,42.0372487,-88.2811895 -Spotswood borough,8308,40.391774,-74.3984834 -Highland Heights ,8305,41.5519954,-81.4784522 -Union ,8304,37.4616454,-89.2504793 -Moncks Corner ,8301,33.1960027,-80.0131374 -Brockport village,8300,43.2331158,-77.9275129 -Old Forge borough,8296,43.7100676,-74.9743407 -Mapleton ,8293,44.0312318,-123.8581645 -Bridgeport ,8282,41.1670412,-73.2048348 -Pleasant Hills borough,8282,40.3356252,-79.9606066 -Boonville ,8281,38.9736392,-92.7432418 -Upper Saddle River borough,8279,41.0584299,-74.0984756 -Latrobe borough,8278,40.3211808,-79.3794811 -Nevada ,8276,39.5158825,-116.8537227 -Guntersville ,8273,34.3599825,-86.23972313 -Hillsdale ,8272,41.6136437,-90.1728998 -Mammoth Lakes ,8272,37.6432525,-118.9668509 -Mason ,8260,40.2302271,-89.8660433 -Gonzales ,8255,29.5016257,-97.4524926 -Kenton ,8252,38.9252546,-84.5331967 -Center Line ,8252,42.4850362,-83.0277002 -Grove City borough,8250,39.8814519,-83.0929645 -Millersville borough,8248,35.3038485,-118.4578633 -Palm Beach ,8247,26.6279798,-80.4494174 -Breaux Bridge ,8241,30.2735323,-91.8992837 -Lake Park ,8235,26.8002153,-80.0661631 -Farmingdale village,8221,41.4350938,-74.2601501 -Pewaukee village,8215,43.0847315,-88.2642602 -Clayton borough,8211,33.5204959,-84.3591713 -Perryville ,8209,37.7242202,-89.8612196 -Wytheville ,8204,36.9479966,-81.0869747 -Grand Blanc ,8204,42.9275277,-83.6299518 -Indian Harbour Beach ,8199,28.1489021,-80.5883855 -Commerce ,8191,34.0024048,-118.1563371 -Arab ,8189,34.3181497,-86.4958219 -Molalla ,8184,45.1473445,-122.5770322 -New Albany ,8183,38.2856247,-85.8241312 -Mount Rainier ,8182,46.8530931,-121.7569331 -Hillside village,8180,40.2792557,-76.8780289 -Conover ,8177,35.7065217,-81.2186933 -Campbell ,8177,37.2158191,-79.1165953 -Pleasant View ,8177,43.787048,-79.3337137 -West Frankfort ,8175,37.8978275,-88.9314583 -Fort Mitchell ,8167,39.0595047,-84.5474432 -Ashland ,8167,38.4784144,-82.6379387 -Aransas Pass ,8166,27.8849919,-97.11042553 -Bellevue ,8164,47.6144219,-122.1923372 -Antigo ,8162,45.1402451,-89.1523353 -Farmville ,8161,37.3020966,-78.3919403 -Granbury ,8158,32.4137275,-97.78813977 -La Grange ,8155,29.9055033,-96.876647 -Abingdon ,8153,36.7095788,-81.9774878 -Pleasant Hill ,8135,37.9479786,-122.0607963 -Los Altos Hills ,8132,37.3796627,-122.1374637 -Senatobia ,8131,34.60434,-89.9739317 -Kirby ,8128,39.1828825,-78.7261273 -Rolling Hills Estates ,8127,33.7877943,-118.3581284 -Caribou ,8114,46.8605982,-68.0119714 -South Boston ,8114,36.6987494,-78.9013987 -Decorah ,8112,43.3033056,-91.7857092 -Vinton ,8108,39.2744355,-82.4740302 -Quincy ,8100,39.9356016,-91.4098727 -Smithfield ,8099,35.5085717,-78.3392929 -Seneca ,8094,42.7831619,-76.8386051 -Dalhart ,8091,36.05429705,-102.5135762 -New Albany ,8079,38.2856247,-85.8241312 -Purcellville ,8073,39.1367717,-77.7147153 -Newton ,8068,42.3370414,-71.2092214 -Oradell borough,8052,40.9587093,-74.0368064 -Oak Grove ,8051,41.413711,-90.5729959 -Flowood ,8049,32.3095903,-90.1389757 -Brentwood ,8043,37.9317766,-121.6960266 -Ludington ,8042,43.9552826,-86.4525831 -Greenville ,8033,34.851354,-82.3984882 -Siler City ,8029,35.7234734,-79.4622431 -Brookhaven borough,8016,31.58369,-90.44180867 -Calimesa ,8009,34.0039044,-117.0619774 -Chestnut Ridge village,8004,41.1942283,-79.5906034 -Blair ,8002,40.4870748,-78.3682329 -Maplewood ,7998,44.9530215,-92.9952153 -Lake Elmo ,7989,44.9957998,-92.8793768 -Marion ,7981,37.7306054,-88.9331256 -Perry ,7973,38.0772859,-89.3760499 -Carnegie borough,7968,35.20887825,-97.4450754 -Fort Scott ,7966,37.8399791,-94.7082882 -Jefferson ,7958,38.3010487,-88.9344303 -Murphysboro ,7958,37.7644952,-89.3350888 -Bloomfield ,7952,40.806767,-74.1854226 -Broadview village,7951,38.8417797,-76.9458075 -Webster City ,7943,42.4663069,-93.8252471 -Montvale borough,7942,41.0467635,-74.0229173 -St. Johns ,7928,29.9032284,-81.4145468 -Lincoln City ,7927,44.9581644,-124.0178914 -Fairview ,7925,37.6785422,-122.0457953 -Lamar ,7916,33.0649401,-84.1445952 -Rayne ,7903,30.234925,-92.2684617 -Bridge City ,7899,30.0207678,-93.8457255 -Tega Cay ,7890,35.024312,-81.0278546 -Warrenton ,7888,38.7135498,-77.795367 -Sellersburg ,7885,38.3979718,-85.7550735 -Mahtomedi ,7884,45.0696886,-92.9516037 -Carencro ,7884,30.317144,-92.0490096 -Richland Hills ,7881,32.8159623,-97.2280695 -Crookston ,7880,47.7741383,-96.6081212 -Hailey ,7877,43.5196288,-114.3153245 -Houghton ,7874,45.76148055,-98.21244444 -Black Mountain ,7869,37.3173747,-122.1479009 -Hartsville ,7866,34.3740431,-80.0734005 -South Beloit ,7865,42.4930708,-89.0367764 -White Oak borough,7862,39.0398315,-76.9930319 -Cushing ,7862,35.9850639,-96.76697 -Dexter ,7859,42.3383697,-83.8885553 -Conshohocken borough,7858,40.0792766,-75.3015714 -Caldwell borough,7854,32.0820785,-92.1130105 -Creston ,7854,49.1,-116.516667 -River Rouge ,7850,42.362129,-83.2566058 -Hubbard ,7842,47.1138266,-94.9427679 -Ellwood City borough,7830,40.8617303,-80.2864515 -Fountain Inn ,7828,34.6890095,-82.1956679 -Pulaski ,7824,37.2314232,-89.1183427 -Montpelier ,7823,44.260015,-72.5753599 -Hartsville/Trousdale County,7820,36.3908826,-86.1672107 -Oak Grove ,7817,41.413711,-90.5729959 -Ephrata ,7809,40.1799111,-76.1789242 -Sutherlin ,7796,43.3896628,-123.3123598 -Jasper ,7794,39.0082423,-88.1552371 -Tremonton ,7789,41.7118728,-112.1655079 -Sheboygan Falls ,7788,43.7291617,-87.8106439 -Grand Ledge ,7779,42.7533685,-84.7463757 -Firebaugh ,7776,36.8588376,-120.4560072 -Olivette ,7776,38.6653297,-90.3759499 -Lexington ,7775,38.0464066,-84.4970393 -Wahpeton ,7775,46.2658789,-96.6088629 -Bluffdale ,7771,40.4896712,-111.9388244 -Park City ,7768,40.6460635,-111.4979741 -Ellsworth ,7767,38.6942009,-98.2149289 -Wyoming ,7765,43.1700264,-107.5685348 -Oakdale ,7764,44.9630216,-92.9649361 -Yreka ,7763,41.7326157,-122.6377655 -DuBois ,7760,41.1192282,-78.7600297 -Bernardsville borough,7758,40.7186805,-74.5692273 -Clear Lake ,7750,44.7595585,-96.68264434 -Liberty Lake ,7739,47.6631371,-117.0855725 -Hyrum ,7733,41.6340996,-111.8521653 -Herkimer village,7732,39.8911135,-96.7111333 -Braselton ,7724,34.1092735,-83.7626729 -Wesley Chapel village,7721,39.2019961,-85.8485977 -Jersey Village ,7720,29.887725,-95.5629984 -Pittston ,7717,41.3259134,-75.7893604 -Brooksville ,7717,33.2345685,-88.5822673 -Bloomingdale borough,7714,27.893636,-82.2403682 -Rhinelander ,7713,45.6366228,-89.4120753 -Robinson ,7706,47.859356,-92.0418175 -Hillview ,7700,38.0697889,-85.6855146 -Pismo Beach ,7698,35.1427533,-120.6412827 -Charles ,7697,38.4991611,-77.027847 -Calipatria ,7697,33.1439205,-115.5494556 -Pineville ,7690,31.3224044,-92.4343035 -Lake Geneva ,7681,42.5916836,-88.4334301 -Stayton ,7675,44.8006775,-122.7945333 -McCook ,7673,40.2019478,-100.6257076 -Mascoutah ,7669,38.490327,-89.793154 -Monessen ,7667,40.1484053,-79.8878254 -Cleveland ,7665,41.5051613,-81.6934446 -Rockton village,7665,42.9745189,-74.1509633 -Mount Joy borough,7659,40.1098561,-76.5033406 -Osceola ,7656,28.0443842,-81.1437541 -Monona ,7656,42.0218737,-95.9356631 -Baxter ,7645,36.2820691,-92.3445222 -Helotes ,7645,29.5628222,-98.6869617 -Gettysburg borough,7640,39.8309399,-77.2310908 -Corning ,7638,42.1428521,-77.0546903 -Clarkston ,7628,42.7086411,-83.4396633 -Fairview ,7627,37.6785422,-122.0457953 -Brevard ,7623,28.2446658,-80.728624 -Butler borough,7620,37.77924,-96.8456342 -Butner ,7611,36.1320893,-78.7566714 -Marengo ,7609,32.201002,-87.7569365 -Connellsville ,7606,40.0178522,-79.5894828 -Arcadia ,7603,34.1362075,-118.0401497 -Iron Mountain ,7598,45.8202334,-88.0659603 -Richfield ,7596,44.8766431,-93.2877877 -Beebe ,7592,35.0706424,-91.8795856 -Princeton ,7592,40.3492744,-74.6592958 -Holly Springs ,7590,35.6512655,-78.8336218 -Glen Ridge borough,7586,40.805378,-74.2037566 -Lander ,7576,42.8330755,-108.7307024 -Franklin ,7564,37.9765409,-88.9335327 -Charles City ,7562,43.0663613,-92.6724112 -Ione ,7561,38.3526913,-120.9327177 -Marianna ,7555,30.7743596,-85.2268735 -Orono ,7543,44.883299,-68.6722541 -Globe ,7539,33.3942223,-110.7864984 -Hooper ,7533,41.2679336,-122.161672 -Blanchard ,7532,40.6572884,-79.8283853 -Lowell ,7524,42.6334247,-71.3161718 -Park City ,7520,40.6460635,-111.4979741 -Crescent City ,7519,41.7544965,-124.2026273 -River Oaks ,7518,29.7520887,-95.43787364 -Emerson borough,7517,40.976209,-74.0262505 -Ojai ,7517,34.4480495,-119.242889 -Fairfax ,7511,38.8462236,-77.3063733 -Southwest Ranches ,7509,26.0587001,-80.3372733 -Flatwoods ,7507,38.5225805,-82.7171081 -Winnemucca ,7507,40.9729584,-117.7356849 -Mexia ,7500,31.6798895,-96.482203 -Seminole ,7499,30.951849,-84.8789094 -Canfield ,7488,41.0250584,-80.7609121 -Carl Junction ,7483,37.1767249,-94.5655066 -Skiatook ,7482,36.3684245,-96.0013847 -Philadelphia ,7482,39.952335,-75.163789 -Silvis ,7480,41.5122561,-90.4151301 -Rio Vista ,7461,38.1557502,-121.6913439 -Donaldsonville ,7460,30.1010324,-90.9928774 -Orland ,7455,39.7471106,-122.1911356 -Haddon Heights borough,7454,39.8773356,-75.0646165 -Payette ,7445,44.0374651,-116.7651123 -Mentor-on-the-Lake ,7438,41.7163785,-81.36119011 -Batesville ,7435,35.78883,-91.65050847 -Oak Grove ,7432,41.413711,-90.5729959 -Forest City ,7429,43.2624559,-93.6371591 -Inverness village,7429,41.6492503,-83.6323172 -Fairlawn ,7428,38.8709456,-76.9788641 -Northport village,7424,44.3378552,-68.961422 -Demopolis ,7408,32.5178284,-87.8368201 -Salem ,7399,44.9391565,-123.033121 -Park City ,7397,40.6460635,-111.4979741 -Centerville ,7395,31.2579584,-95.978292 -New Prague ,7388,44.5433331,-93.5760445 -Sandpoint ,7387,48.2765903,-116.5532476 -Ville Platte ,7382,30.6879749,-92.2715157 -Hatboro borough,7381,40.1746252,-75.106825 -St. Louis ,7380,38.6272733,-90.1978889 -La Follette ,7378,36.365831,-84.12901157 -Shorewood ,7377,43.0881744,-87.8883153 -Fanwood borough,7371,40.6409358,-74.383484 -Pikeville ,7352,37.4792672,-82.5187629 -Waite Park ,7350,45.5571872,-94.2241585 -North Bay Village ,7349,25.8462075,-80.1539351 -Bonner Springs ,7338,39.059726,-94.8835754 -Page ,7338,38.6002354,-78.5016516 -Shamokin ,7336,40.7889746,-76.5588473 -Mendota ,7333,36.7535486,-120.3815579 -Woodlake ,7327,36.4135606,-119.0987176 -La Feria ,7326,26.1589644,-97.8238853 -Bastrop ,7321,30.1104947,-97.3152701 -Wauseon ,7320,41.546069,-84.1362047 -Villa Hills ,7317,39.0633933,-84.5929998 -Cotati ,7310,38.3266798,-122.7068441 -Nebraska City ,7306,40.6765263,-95.8586936 -Kosciusko ,7305,41.2351957,-85.8529731 -Washington ,7302,38.8949549,-77.0366456 -Dayton ,7302,39.7589478,-84.1916069 -Clarkston ,7302,42.7086411,-83.4396633 -Corbin ,7301,36.9486986,-84.0968761 -Knoxville ,7298,35.9603948,-83.9210261 -Princeton ,7288,40.3492744,-74.6592958 -Swainsboro ,7284,32.5973857,-82.3337376 -Chehalis ,7274,46.6599653,-122.9634322 -New London ,7273,41.3556539,-72.0995209 -Selah ,7266,46.6540065,-120.5302727 -Hudson Falls village,7264,43.2992389,-73.6351168 -Rockland ,7263,41.1519319,-74.0357266 -Winooski ,7263,44.4949995,-73.1828073 -Tell City ,7263,37.9514447,-86.7677663 -Dunellen borough,7260,40.5892696,-74.4718201 -Canal Winchester ,7260,39.8428215,-82.805646 -New Cumberland borough,7260,40.2323122,-76.8846956 -Dayton ,7258,39.7589478,-84.1916069 -St. Francis ,7257,35.0153956,-90.7263194 -Fort Bragg ,7256,39.4192825,-123.8045125 -Crystal City ,7250,28.6774795,-99.8281104 -Trumann ,7249,35.6736895,-90.5073285 -Lake Dallas ,7244,33.1192875,-97.0255641 -Fletcher ,7241,33.402405,-118.3895812 -Tallulah ,7234,32.4084765,-91.1867771 -Gonzales ,7224,29.5016257,-97.4524926 -Amory ,7224,33.983388,-88.48109953 -Keyport borough,7223,40.4331631,-74.1995883 -Gig Harbor ,7222,47.3259697,-122.5878659 -Hood River ,7213,45.7053101,-121.5217927 -Elkins ,7212,38.925927,-79.8466552 -Clinton ,7210,38.5896187,-89.420064 -Heber Springs ,7210,35.4914677,-92.03126 -Escalon ,7208,37.7544565,-121.006422 -Mount Carmel ,7208,38.4108801,-87.7614174 -Alamo Heights ,7201,29.4849531,-98.4658502 -Devils Lake ,7185,48.112779,-98.8651202 -Midland Park borough,7185,40.9892643,-74.1406988 -Logan ,7176,40.1075089,-89.3768539 -Milton ,7176,42.2495435,-71.0661612 -Woodland Park ,7171,39.00993625,-105.0450026 -Navasota ,7170,30.3874135,-96.0875066 -Catoosa ,7165,34.8911137,-85.131315 -Hudsonville ,7155,42.870859,-85.8650358 -Ashland ,7153,38.4784144,-82.6379387 -Highland Heights ,7153,41.5519954,-81.4784522 -Sioux Center ,7148,43.0796915,-96.1756717 -Glenolden borough,7143,39.9001126,-75.2890745 -Pinson ,7142,33.6889908,-86.6833229 -Independence ,7137,37.2242358,-95.7083131 -Clewiston ,7134,26.7542312,-80.9336753 -Delphos ,7128,40.8433831,-84.341618 -University Park village,7127,34.18269725,-117.3339093 -Huron ,7122,44.7923065,-82.3311296 -Delafield ,7122,43.0610275,-88.4040692 -La Junta ,7116,37.9850091,-103.5438321 -New Square village,7109,41.1670394,-74.043197 -Sullivan ,7104,36.4966673,-82.286903 -Spanish Fort ,7102,30.6749127,-87.9152724 -Plaquemine ,7102,30.2890833,-91.2342744 -Milton-Freewater ,7102,45.9326346,-118.3877435 -Benton ,7096,36.0345286,-88.101285 -Ocean City ,7094,39.2776156,-74.5746001 diff --git a/Geo_Plot_Using_Folium/volcano.csv b/Geo_Plot_Using_Folium/volcano.csv deleted file mode 100644 index 28c1a4d4..00000000 --- a/Geo_Plot_Using_Folium/volcano.csv +++ /dev/null @@ -1,65 +0,0 @@ -Year,Month,Day,TSU,EQ,Name,Location,Country,Latitude,Longitude,Elevation,Type,Status,Time,VEI,Agent,DEATHS,DEATHS_DESCRIPTION,MISSING,MISSING_DESCRIPTION,INJURIES,INJURIES_DESCRIPTION,DAMAGE_MILLIONS_DOLLARS,DAMAGE_DESCRIPTION,HOUSES_DESTROYED,HOUSES_DESTROYED_DESCRIPTION,TOTAL_DEATHS,TOTAL_DEATHS_DESCRIPTION,TOTAL_MISSING,TOTAL_MISSING_DESCRIPTION,TOTAL_INJURIES,TOTAL_INJURIES_DESCRIPTION,TOTAL_DAMAGE_MILLIONS_DOLLARS,TOTAL_DAMAGE_DESCRIPTION,TOTAL_HOUSES_DESTROYED,TOTAL_HOUSES_DESTROYED_DESCRIPTION - -2010,1,,,,Tungurahua,Ecuador,Ecuador,-1.467,-78.442,5023,Stratovolcano,Historical,D1,3,,,,,,,,,1,,,,,,,,,,1,, -2010,3,31,,,Eyjafjallajokull,Iceland-S,Iceland,63.63,-19.62,1666,Stratovolcano,Historical,D1,2,,2,1,,,,,,,,,2,1,,,,,,,, -2010,5,27,,,Pacaya,Guatemala,Guatemala,14.381,-90.601,2552,Complex volcano,Historical,D1,1,T,1,1,3,1,,,,1,3,1,1,1,3,1,,,,1,3,1 -2010,5,29,TSU,EQ,Sarigan,Mariana Is-C Pacific,United States,16.708,145.78,538,Stratovolcano,Holocene,U,,,,,,,,,,,,,,,,,,,,,, -2010,8,6,,,Karangetang [Api Siau],Sangihe Is-Indonesia,Indonesia,2.78,125.48,1784,Stratovolcano,Historical,D1,3,,4,1,,,5,1,,,,1,4,1,,,5,1,,,,1 -2010,8,30,,,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,Holocene,U,,,2,1,,,,,,,,,2,1,,,,,,,, -2010,10,26,,,Merapi,Java,Indonesia,-7.542,110.442,2947,Stratovolcano,Historical,D1,,,367,3,,,277,3,600,4,,3,367,3,,,277,3,600,4,,3 -2010,11,,,,Tungurahua,Ecuador,Ecuador,-1.467,-78.442,5023,Stratovolcano,Historical,D1,3,,,,,,,,,1,,,,,,,,,,1,, -2010,12,28,,,Tengger Caldera,Java,Indonesia,-7.942,112.95,2329,Stratovolcano,Historical,D1,,,,,,,,,,1,,,,,,,,,,,, -2011,1,3,,,Merapi,Java,Indonesia,-7.542,110.442,2947,Stratovolcano,Historical,D1,,M,1,1,,,1,1,,1,,,1,1,,,1,1,,1,, -2011,1,28,,,Kirishima,Kyushu-Japan,Japan,31.93,130.87,1700,Shield volcano,Historical,D1,,,,,,,,1,,1,,,,,,,,1,,1,, -2011,2,23,,,Bulusan,Luzon-Philippines,Philippines,12.77,124.05,1565,Stratovolcano,Historical,D1,2,,1,1,,,,,,,,,1,1,,,,,,,, -2011,3,18,,,Karangetang [Api Siau],Sangihe Is-Indonesia,Indonesia,2.78,125.48,1784,Stratovolcano,Historical,D1,,,,,,,,,,1,,,,,,,,,,1,, -2011,4,,,,Tungurahua,Ecuador,Ecuador,-1.467,-78.442,5023,Stratovolcano,Historical,D1,4,,,,,,,,,1,,,,,,,,,,1,, -2011,6,4,,,Puyehue,Chile-C,Chile,-40.59,-72.117,2236,Stratovolcano,Holocene,U,4,,,,,,,,,2,,,,,,,,,,2,, -2011,6,22,,,Nabro,Africa-NE,Eritrea,13.37,41.7,2218,Stratovolcano,Holocene,Unknown,3,,31,1,,,,3,,1,,,31,1,,,,3,,1,, -2011,7,9,,,Katla,Iceland-S,Iceland,63.63,-19.05,1512,Subglacial volcano,Historical,D2,,,,,,,,,,1,,,,,,,,,,1,, -2011,7,17,,,Lokon-Empung,Sulawesi-Indonesia,Indonesia,1.358,124.792,1580,Stratovolcano,Historical,D1,,,1,1,,,,,,,,,1,1,,,,,,,, -2011,12,27,,,Gamalama,Halmahera-Indonesia,Indonesia,.8,127.325,1715,Stratovolcano,Historical,D1,3,m,4,1,,,,1,,,,,4,1,,,,1,,,, -2012,2,10,,,Kilauea,Hawaiian Is,United States,19.425,-155.292,1222,Shield volcano,Historical,D1,,,,,,,,,,2,,,,,,,,,,2,, -2012,3,2,,,Kilauea,Hawaiian Is,United States,19.425,-155.292,1222,Shield volcano,Historical,D1,,L,,,,,,,,1,1,1,,,,,,,,,, -2012,12,12,,,Tolbachik,Kamchatka,Russia,55.83,160.33,3682,Shield volcano,Historical,D1,,,,,,,,,,1,,,,,,,,,,1,, -2013,2,12,,,Merapi,Java,Indonesia,-7.542,110.442,2947,Stratovolcano,Historical,D1,,M,1,1,,,1,1,,1,,,1,1,,,1,1,,1,, -2013,2,,,,Paluweh,Lesser Sunda Is,Indonesia,-8.32,121.708,875,Stratovolcano,Historical,D1,,,,,,,,,,1,,1,,,,,,,,1,,1 -2013,5,7,,,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,Historical,D1,,,5,1,,,8,1,,,,,5,1,,,8,1,,,, -2013,8,10,,,Paluweh,Lesser Sunda Is,Indonesia,-8.32,121.708,875,Stratovolcano,Historical,D1,3,,5,1,,,,,,,,,5,1,,,,,,,, -2013,9,1,,,Ubinas,Peru,Peru,-16.355,-70.903,5672,Stratovolcano,Historical,D1,,,,,,,,,,1,,,,,,,,,,1,, -2013,9,4,,,Sakura-jima,Kyushu-Japan,Japan,31.58,130.67,1117,Stratovolcano,Historical,D1,,,,,,,,,,1,,,,,,,,,,1,, -2013,9,15,,,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,Holocene,U,2,,,,,,,,,2,,,,,,,,,,2,, -2013,12,13,,,Okataina,New Zealand,New Zealand,-38.12,176.5,1111,Lava dome,Historical,D1,,G,1,1,,,,,,,,,1,1,,,,,,,, -2014,2,1,,,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,Holocene,U,,,17,1,,,3,1,,1,,2,17,1,,,3,1,,1,,2 -2014,2,13,,,Kelut,Java,Indonesia,-7.93,112.308,1731,Stratovolcano,Historical,D1,,,7,1,,,,,,3,4098,4,7,1,,,,,,3,4098,4 -2014,9,27,,,On-take,Honshu-Japan,Japan,35.9,137.48,3063,Complex volcano,Historical,D1,3,,55,2,,,70,2,,,,,55,2,,,70,2,,,, -2014,11,10,,,Kilauea,Hawaiian Is,United States,19.425,-155.292,1222,Shield volcano,Historical,D1,,,,,,,,,14.5,3,1,1,,,,,,,14.5,3,1,1 -2014,11,23,,,Fogo,Cape Verde Is,Cape Verde,14.95,-24.35,2829,Stratovolcano,Historical,D1,,,,,,,,,,2,230,3,,,,,,,,2,230,3 -2014,12,18,,,Gamalama,Halmahera-Indonesia,Indonesia,.8,127.325,1715,Stratovolcano,Historical,D1,,,1,1,,,4,1,,,,,1,1,,,4,1,,,, -2015,2,20,,,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,Holocene,U,,,,,,,,,,1,,1,,,,,,,,1,,1 -2015,4,22,,,Calbuco,Chile-S,Chile,-41.326,-72.614,2003,Stratovolcano,Historical,D2,,,,,,,,,,2,,2,,,,,,,,2,,2 -2015,5,7,,,Karangetang [Api Siau],Sangihe Is-Indonesia,Indonesia,2.78,125.48,1784,Stratovolcano,Historical,D1,,,,,,,,,,1,,1,,,,,,,,1,,1 -2015,7,31,,,Manam,New Guinea-NE of,Papua New Guinea,-4.1,145.061,1807,Stratovolcano,Historical,D1,2,,,,,,2,1,,1,,,,,,,2,1,,1,, -2015,10,16,,,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,Holocene,U,,M,1,1,,,,,,1,,,1,1,,,,,,1,, -2015,10,,,,Okataina,New Zealand,New Zealand,-38.12,176.5,1111,Lava dome,Historical,D1,,I,1,1,,,,,,,,,1,1,,,,,,,, -2016,5,9,,,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,Holocene,U,,,1,1,,,4,1,,1,3,1,1,1,,,4,1,,1,, -2016,5,21,,,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,Holocene,U,,,7,1,,,3,1,100,4,,,7,1,,,3,1,100,4,, -2016,6,9,,,Yellowstone,US-Wyoming,United States,44.43,-110.67,2805,Caldera,Tephrochronology,D7,,,1,1,,,,,,,,,1,1,,,,,,,, -2016,9,27,,,Rinjani,Lesser Sunda Is,Indonesia,-8.42,116.47,3726,Stratovolcano,Historical,D1,,,,,44,1,,,,,,,,,44,1,,,,,, -2016,10,8,,,Aso,Kyushu-Japan,Japan,32.88,131.1,1592,Caldera,Historical,D1,,T,,,,,,,,1,,,,,,,,,,1,, -2017,3,15,,,Etna,Italy,Italy,37.734,15.004,3350,Stratovolcano,Historical,D1,,P,,,,,10,1,,,,,,,,,10,1,,,, -2017,4,13,,,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,Holocene,U,2,P,,,,,,,,1,,2,,,,,,,,1,,2 -2017,6,6,,,Fuego,Guatemala,Guatemala,14.473,-90.88,3763,Stratovolcano,Historical,D1,2,P,,,,,,,,2,,,,,,,,,,2,, -2017,7,1,,,Dieng Volc Complex,Java,Indonesia,-7.2,109.92,2565,Complex volcano,Historical,D1,,,8,1,,,11,1,,,,,8,1,,,11,1,,,, -2017,9,12,,,Campi Flegrei,Italy,Italy,40.827,14.139,458,Caldera,Historical,D5,,,3,1,,,,,,,,,3,1,,,,,,,, -2017,9,23,,,Aoba,Vanuatu-SW Pacific,Vanuatu,-15.4,167.83,1496,Shield volcano,Historical,D1,,T,,,,,,,,1,,,,,,,,,,1,, -2017,12,18,,,Merapi,Java,Indonesia,-7.542,110.442,2947,Stratovolcano,Historical,D1,,A,8,1,,,8,1,,,,,8,1,,,8,1,,,, -2017,12,27,,,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,Holocene,U,,T,,,,,,,,2,,,,,,,,,,2,, -2018,1,5,,,Kadovar,New Guinea-NE of,Papua New Guinea,-3.62,144.62,365,Stratovolcano,Holocene,U,,T,,,,,,,,1,,,,,,,,,,1,, -2018,1,13,,,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,Historical,D1,,"T,P",,,,,1972,4,3.72,2,,,,,,,1972,4,3.72,2,, -2018,1,23,,,Kusatsu-Shirane,Honshu-Japan,Japan,36.62,138.55,2176,Stratovolcano,Historical,D1,,T,1,1,,,11,1,,1,,,1,1,,,11,1,,1,, -2018,2,1,,,Kilauea,Hawaiian Is,United States,19.425,-155.292,1222,Shield volcano,Historical,D1,1,G,1,1,,,3,1,,,,,1,1,,,3,1,,,, -2018,2,9,TSU,,Kadovar,New Guinea-NE of,Papua New Guinea,-3.62,144.62,365,Stratovolcano,Holocene,U,,W,,,,,,,,,,,,,,,,,,,, -2018,3,21,,,Ijen,Java,Indonesia,-8.058,114.242,2799,Stratovolcano,Historical,D1,,G,,,,,30,1,,,,,,,,,30,1,,,, -2018,4,28,,,Kilauea,Hawaiian Is,United States,19.425,-155.292,1222,Shield volcano,Historical,D1,1,L,,,,,,,,1,2,1,,,,,,,,1,2,1 -2018,4,,,,Aoba,Vanuatu-SW Pacific,Vanuatu,-15.4,167.83,1496,Shield volcano,Historical,D1,3,"T,G",4,1,,,,,,1,,1,4,1,,,,,,1,,1 diff --git a/Geo_Plot_Using_Folium/world.json b/Geo_Plot_Using_Folium/world.json deleted file mode 100644 index 37b82d0e..00000000 --- a/Geo_Plot_Using_Folium/world.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[{"type":"Feature","properties":{"FIPS":"AC","ISO2":"AG","ISO3":"ATG","UN":28,"NAME":"Antigua and Barbuda","AREA":44,"POP2005":83039,"REGION":19,"SUBREGION":29,"LON":-61.783,"LAT":17.078},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.686668,17.024441000000134],[-61.73806,16.989719],[-61.82917,16.996944],[-61.88361,17.023609],[-61.887222,17.10527],[-61.832779,17.16389],[-61.79445,17.16333],[-61.67028,17.090275],[-61.686668,17.024441000000134]]],[[[-61.72917,17.608608],[-61.73278,17.541111],[-61.85306,17.583054],[-61.873062,17.703888],[-61.84556,17.724998],[-61.78722,17.700554],[-61.72917,17.608608]]]]}},{"type":"Feature","properties":{"FIPS":"AG","ISO2":"DZ","ISO3":"DZA","UN":12,"NAME":"Algeria","AREA":238174,"POP2005":32854159,"REGION":2,"SUBREGION":15,"LON":2.632,"LAT":28.163},"geometry":{"type":"Polygon","coordinates":[[[2.96361,36.802216],[3.031389,36.806389],[3.138333,36.738327],[3.228055,36.77861],[3.485555,36.769165],[3.625,36.810555],[3.742222,36.887215],[3.891666,36.917221],[4.106111,36.884163],[4.785832,36.894722],[5.102221,36.774994],[5.080277,36.720833],[5.156111,36.674995],[5.328055,36.640274],[5.529166,36.692497],[5.590278,36.767776],[5.709999,36.824165],[6,36.837776],[6.233333,36.913605],[6.268332,37.018608],[6.398333,37.086388],[6.509166,37.075272],[6.592777,36.97361],[6.928055,36.883606],[7.170555,36.919998],[7.255833,36.991104],[7.183055,37.073326],[7.229722,37.086388],[7.463611,37.042496],[7.611388,36.976387],[7.765277,36.966385],[7.773053,36.879719],[7.876666,36.847496],[8.0425,36.871384],[8.229166,36.955276],[8.390276,36.918884],[8.62203,36.941368],[8.638054,36.831108],[8.476387,36.743607],[8.447498,36.657219],[8.183611,36.524162],[8.195833,36.488884],[8.365555,36.45916],[8.376665,36.413605],[8.260555,35.856384],[8.277498,35.749161],[8.344166,35.65361],[8.308332,35.339165],[8.40111,35.192215],[8.326111,35.104721],[8.28611,34.965553],[8.290277,34.758331],[8.224998,34.690277],[8.251665,34.64444],[8.123333,34.539162],[7.850555,34.423332],[7.777499,34.242493],[7.641388,34.204994],[7.530555,34.106667],[7.492499,33.887497],[7.55611,33.678604],[7.725027,33.419403],[7.743055,33.229164],[8.022778,33.112778],[8.090277,33.114441],[8.30611,32.83416],[8.34861,32.533333],[9.055277,32.099998],[9.537113,30.23439],[9.303888,30.122498],[9.638054,29.691109],[9.757221,29.454166],[9.839722,29.16],[9.871666,28.80611],[9.789721,28.256664],[9.957499,27.853054],[9.733889,27.316944],[9.848331,26.908607],[9.930555,26.859722],[9.895832,26.695553],[9.916943,26.673332],[9.871666,26.514164],[9.499443,26.357498],[9.393888,26.170555],[10.037498,25.321388],[10.054443,24.838055],[10.218332,24.75111],[10.252222,24.605831],[10.422222,24.478054],[10.715277,24.567219],[11.558887,24.302498],[11.986475,23.522305],[9.742867,22.226391],[7.450807,20.852863],[5.812499,19.44611],[3.331944,18.976387],[3.114166,19.156387],[3.277222,19.389721],[3.21,19.565277],[3.233055,19.820274],[2.902222,19.966942],[2.587778,20.001663],[2.411666,20.057499],[2.344166,20.177776],[2.213055,20.281387],[2.085,20.21722],[1.795833,20.308331],[1.668056,20.408607],[1.663055,20.53611],[1.6275,20.57111],[1.1675,20.741108],[1.197148,21.00248],[1.169662,21.102543],[-0.008056,21.830555],[-2.09,23.25],[-4.525278,24.824997],[-6.662778,26.129166],[-8.66679,27.290459],[-8.667223,28.709442],[-8.495556,28.790554],[-8.176945,29.040833],[-7.986945,29.122776],[-7.644723,29.384998],[-7.433889,29.397221],[-7.298334,29.53833],[-7.112223,29.640274],[-6.585834,29.567219],[-6.513889,29.628887],[-6.481112,29.743053],[-6.400278,29.804443],[-6.217223,29.798885],[-6.145834,29.8475],[-6.002778,29.829441],[-5.538334,29.902496],[-5.275834,30.055275],[-5.085556,30.255554],[-4.920556,30.508053],[-4.396945,30.648331],[-4.169168,30.769165],[-4.016945,30.91111],[-3.626667,30.970554],[-3.594445,31.014999],[-3.602222,31.095554],[-3.697778,31.150276],[-3.826111,31.163887],[-3.803889,31.339165],[-3.843889,31.498333],[-3.808611,31.700554],[-3.685278,31.715832],[-3.511667,31.673332],[-2.999444,31.833332],[-2.951389,31.89222],[-2.938056,32.028885],[-2.853889,32.088333],[-2.331111,32.157494],[-1.259167,32.085274],[-1.180556,32.11055],[-1.200834,32.170273],[-1.295833,32.163055],[-1.257725,32.208023],[-1.249722,32.326942],[-1.196111,32.404716],[-1.12,32.41555],[-1.010278,32.508331],[-1.382778,32.724442],[-1.5425,32.939438],[-1.487222,32.979164],[-1.480278,33.063049],[-1.668056,33.261108],[-1.666667,33.383331],[-1.600278,33.556938],[-1.641667,33.650833],[-1.730556,33.704994],[-1.654444,34.083611],[-1.750556,34.349442],[-1.793334,34.378326],[-1.686711,34.485512],[-1.8575,34.610275],[-1.747222,34.747215],[-2.180278,35.012215],[-2.209445,35.085831],[-1.979722,35.073326],[-1.753889,35.128326],[-1.474445,35.305832],[-1.389445,35.306389],[-1.297778,35.359993],[-1.196944,35.551109],[-1.03583,35.676941],[-0.791667,35.764999],[-0.618056,35.71833],[-0.521111,35.776665],[-0.474722,35.864716],[-0.373889,35.90361],[-0.244444,35.810829],[-0.1125,35.782494],[-0.052222,35.806107],[0.047222,35.876938],[0.125,36.043327],[0.204167,36.103333],[0.615833,36.305832],[0.866944,36.376663],[0.95,36.450272],[1.1825,36.512215],[2.041111,36.566109],[2.339167,36.635277],[2.41,36.59333],[2.591666,36.592499],[2.779444,36.677216],[2.894444,36.792496],[2.96361,36.802216]]]}},{"type":"Feature","properties":{"FIPS":"AJ","ISO2":"AZ","ISO3":"AZE","UN":31,"NAME":"Azerbaijan","AREA":8260,"POP2005":8352021,"REGION":142,"SUBREGION":145,"LON":47.395,"LAT":40.43},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.083321,39.768044000000145],[45.326096,39.538322],[45.457497,39.49360700000011],[45.725266,39.57972],[45.81998,39.54972],[45.8555530000001,39.348038],[46.00888,39.250832],[45.970261,39.166382],[46.178246000000115,38.84115],[45.439423,38.998047],[45.30999,39.19832],[45.14193,39.217484],[45.115822,39.312202],[44.950272,39.435822],[44.88859600000012,39.60582],[44.81304200000011,39.63081],[44.778862,39.70638300000012],[45.083321,39.768044000000145]]],[[[45.24527000000012,40.97694000000013],[45.22916,40.969151000000124],[45.19582,40.997768],[45.212608,41.004162],[45.24527000000012,40.97694000000013]]],[[[45.04527,41.035271],[45.009991,41.033051],[44.984161,41.08194],[45.03027,41.084991],[45.04527,41.035271]]],[[[46.57138,41.871933000000126],[46.639709,41.816093],[46.760818,41.863884],[46.77887,41.78916],[47.08416000000011,41.565536],[47.156647,41.564713],[47.258881,41.424706],[47.28555,41.312202],[47.571663,41.211098],[47.659714,41.23555],[47.76693,41.196091],[47.91999,41.22637],[47.90831800000012,41.29083300000013],[48.074432,41.46777],[48.231377,41.502495],[48.38582,41.579163],[48.583954,41.83577],[48.613045,41.824432],[49.03998600000011,41.414146],[49.140549,41.268326],[49.154984,41.151649000000134],[49.222214,41.018326000000116],[49.39804,40.849709],[49.532494,40.78749],[49.508041000000105,40.69305],[49.52804600000013,40.662766],[49.719704,40.577492],[50.032768,40.575554],[50.231377,40.493607],[50.356384,40.37471],[50.37499,40.262215],[50.262497,40.32916300000011],[50.133049,40.357216],[49.96081500000013,40.348877],[49.57166,40.212769],[49.48804500000011,40.1505360000001],[49.424988,40.053879],[49.45527,40.014992],[49.39222000000012,39.69165],[49.31888600000013,39.62498],[49.280823,39.50054],[49.414146,39.37832],[49.351662,39.32138],[49.29721100000012,39.343323],[49.258041,39.319443],[49.201935,39.024712],[49.140549,38.977211],[49.060265,38.966927],[49.05166,39.00139],[49.12694,39.029984],[49.144707,39.097481],[49.03832200000011,39.182213],[48.955544000000145,39.165268],[48.93027500000011,39.058594],[48.953873,39.022217],[48.882484,38.873604],[48.866653,38.745827],[48.888283,38.442406],[48.789429,38.447762000000125],[48.62305,38.39526],[48.441933,38.62165],[48.327766,38.60332],[48.243607,38.66720600000013],[48.243874,38.72777],[48.020821,38.835541],[48.014153,38.90582300000011],[48.071381,38.951378],[48.312485,39.007767000000115],[48.327766,39.05166],[48.29388,39.112488],[48.13499500000012,39.208878],[48.11998,39.263611],[48.189156,39.333321],[48.35979,39.385216],[47.99276,39.71194],[47.80666,39.677216],[47.542496,39.515266],[47.391663,39.470543000000134],[47.292213,39.37693800000011],[47.099709,39.304436],[47.030823,39.192215],[46.961372,39.158318],[46.848328,39.16109],[46.540375,38.875587],[46.494713,38.959717000000126],[46.515831,39.081657000000114],[46.4161,39.201378],[46.452209,39.21859],[46.54554,39.189423],[46.62249,39.224709],[46.40387,39.378593],[46.38055,39.42499],[46.516663,39.475815],[46.54138200000011,39.56443800000011],[46.349991,39.62804],[46.20416300000011,39.598038],[46.067772,39.689423],[46.006104,39.773041],[45.85666,39.823601],[45.77444,39.943604],[45.59277,39.982491],[45.638039,40.02166000000011],[45.900826,40.017487],[45.97693,40.116936],[46.00194,40.225548],[45.958321,40.27222],[45.875824,40.26971],[45.53249,40.46054],[45.386658,40.66527],[45.443604,40.738319],[45.594147,40.78777],[45.61805,40.87193300000012],[45.368317,41.001656],[45.09137,41.06276],[45.081383,41.1161],[45.22275500000012,41.14193],[45.15387,41.198601],[45.046944,41.223312],[45.022942,41.29705000000013],[45.255272,41.4469380000001],[45.33665500000012,41.462494],[45.716927,41.3485950000001],[45.717766,41.277489],[45.869713,41.206093],[46.03138,41.17027300000012],[46.24332,41.205544],[46.378319,41.104156],[46.520821000000126,41.049988],[46.669991,41.154984],[46.710815,41.255272],[46.693871,41.312202],[46.333878,41.481659],[46.2161,41.624985],[46.19442700000013,41.698044],[46.224541,41.76106],[46.35054800000012,41.77331500000014],[46.451752,41.897057],[46.57138,41.871933000000126]],[[45.51305,40.60722],[45.573051000000135,40.632488],[45.58749,40.653881],[45.50138900000013,40.658039000000144],[45.51305,40.60722]]]]}},{"type":"Feature","properties":{"FIPS":"AL","ISO2":"AL","ISO3":"ALB","UN":8,"NAME":"Albania","AREA":2740,"POP2005":3153731,"REGION":150,"SUBREGION":39,"LON":20.068,"LAT":41.143},"geometry":{"type":"Polygon","coordinates":[[[19.436214,41.021065],[19.513885,41.256104],[19.452221,41.309715],[19.442497,41.406944],[19.519997,41.57],[19.584721,41.605827],[19.59972,41.804161],[19.449165,41.859718],[19.367771,41.848999],[19.346943,41.955551],[19.400276,42.10527],[19.282497,42.185555],[19.606388,42.539444],[19.645832,42.61805],[19.722775,42.661942],[19.773052,42.597496],[19.746666,42.543053],[19.79361,42.483887],[20.071423,42.560913],[20.16861,42.506943],[20.24472,42.328606],[20.450832,42.278328],[20.526108,42.211662],[20.623886,41.963333],[20.516941,41.743889],[20.533886,41.63472],[20.458054,41.526382],[20.562496,41.408051],[20.495552,41.320549],[20.600613,41.093185],[20.669998,41.088051],[20.733887,40.911942],[20.811943,40.901108],[20.848331,40.935555],[20.983887,40.893608],[20.983887,40.793053],[21.053055,40.673332],[21.042774,40.566109],[20.945553,40.466942],[20.833332,40.462219],[20.791924,40.431541],[20.75861,40.311943],[20.713055,40.278328],[20.721107,40.223053],[20.671944,40.098053],[20.449997,40.072495],[20.316109,39.993332],[20.415276,39.836937],[20.381386,39.787216],[20.291386,39.806664],[20.31472,39.72361],[20.21833,39.646385],[19.990555,39.685829],[19.987778,39.867218],[19.863052,40.039719],[19.452774,40.224716],[19.288609,40.417496],[19.344166,40.43055],[19.418888,40.326942],[19.478611,40.350273],[19.45583,40.561104],[19.307209,40.645309],[19.358887,40.699997],[19.41333,40.866386],[19.521385,40.908051],[19.51083,40.969994],[19.436214,41.021065]]]}},{"type":"Feature","properties":{"FIPS":"AM","ISO2":"AM","ISO3":"ARM","UN":51,"NAME":"Armenia","AREA":2820,"POP2005":3017661,"REGION":142,"SUBREGION":145,"LON":44.563,"LAT":40.534},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.573051000000135,40.632488],[45.528881,40.606098],[45.49194,40.63694],[45.55534,40.66537],[45.58749,40.653881],[45.573051000000135,40.632488]]],[[[45.15387,41.198601],[45.220543,41.13055],[45.081383,41.1161],[45.09137,41.06276],[45.368317,41.001656],[45.61805,40.87193300000012],[45.594147,40.78777],[45.443604,40.738319],[45.386658,40.66527],[45.53249,40.46054],[45.875824,40.26971],[45.958321,40.27222],[46.00194,40.225548],[45.97693,40.116936],[45.900826,40.017487],[45.638039,40.02166000000011],[45.595818,39.978043],[45.77444,39.943604],[45.85666,39.823601],[46.006104,39.773041],[46.067772,39.689423],[46.20416300000011,39.598038],[46.349991,39.62804],[46.54138200000011,39.56443800000011],[46.516663,39.475815],[46.38055,39.42499],[46.40387,39.378593],[46.62249,39.224709],[46.54554,39.189423],[46.452209,39.21859],[46.4161,39.201378],[46.515831,39.081657000000114],[46.494713,38.959717000000126],[46.540375,38.875587],[46.354706,38.910538],[46.178246000000115,38.84115],[45.970261,39.166382],[46.00888,39.250832],[45.8555530000001,39.348038],[45.800545000000106,39.561928],[45.725266,39.57972],[45.457497,39.49360700000011],[45.326096,39.538322],[45.061928,39.77887],[44.933044,39.72137],[44.778862,39.70638300000012],[44.590828,39.83305400000012],[44.48778,39.962769],[44.347214,40.02388800000011],[44.279999,40.046097],[43.933884,40.01361],[43.648888,40.119713],[43.72166,40.163322],[43.583054,40.451111],[43.59277,40.501099],[43.719208,40.622681],[43.751938,40.739998],[43.671654,40.92805],[43.59943,40.992493],[43.47916,41.025269],[43.46077,41.112961],[43.56166100000013,41.136375],[43.7822,41.11582],[43.86249,41.162209],[44.14471,41.18499],[44.248871,41.223595],[44.56220200000012,41.18526500000013],[44.86360200000012,41.21471],[45.022942,41.29705000000013],[45.046944,41.223312],[45.15387,41.198601]],[[45.009991,41.033051],[45.05888,41.05276900000012],[45.01749000000012,41.089161000000104],[44.980549,41.064709],[45.009991,41.033051]],[[45.19582,40.997768],[45.22916,40.969151000000124],[45.24527000000012,40.97694000000013],[45.212608,41.004162],[45.19582,40.997768]]]]}},{"type":"Feature","properties":{"FIPS":"AO","ISO2":"AO","ISO3":"AGO","UN":24,"NAME":"Angola","AREA":124670,"POP2005":16095214,"REGION":2,"SUBREGION":17,"LON":17.544,"LAT":-12.296},"geometry":{"type":"MultiPolygon","coordinates":[[[[11.750832,-16.75528],[11.775,-16.804726],[11.6675,-16.606113],[11.693609,-16.53556],[11.730833000000132,-16.593334],[11.750832,-16.75528]]],[[[13.997499,-5.84861],[14.596388000000104,-5.90806],[15.07639,-5.86278],[16.215832,-5.852501],[16.579720000000123,-5.90083],[16.60611,-6.027223],[16.725224,-6.197441],[16.687775,-6.402223],[16.782776,-6.68167],[16.8675,-6.854167],[16.928886,-6.889723],[16.968609,-7.01083],[16.941666,-7.19861],[16.991386,-7.29361],[17.151108000000136,-7.452778],[17.309444,-7.75611],[17.43833,-7.876667],[17.525555,-8.053612],[17.624165,-8.09806],[17.899441,-8.04167],[18.00722,-8.10806],[18.115417,-8.10711],[18.112572,-8.02862],[18.19611,-7.996667],[18.525833,-7.995556],[18.531109,-7.93028],[18.764038,-7.92967],[18.791759,-7.99898],[19.373055,-7.99611],[19.34944,-7.889723],[19.4025,-7.688056],[19.374218,-7.57232],[19.467777000000126,-7.571945],[19.535831,-7.46],[19.489998,-7.29389],[19.538948,-6.99661],[20.311386,-6.994722],[20.3325,-6.91444],[20.629745,-6.913882],[20.543053,-7.124445],[20.54872,-7.28362],[21.782959,-7.280842],[21.809998,-7.30778],[21.85944,-7.47389],[21.851109,-7.59167],[21.77305200000012,-7.77611],[21.75416600000011,-7.99944],[21.836109000000132,-8.13167],[21.939999,-8.49611],[21.79055,-9.40556],[21.874722,-9.665001],[22.02138,-9.84806],[22.162498,-9.930557],[22.207222,-10.15417],[22.31222,-10.36444],[22.272499,-10.513056],[22.31583,-10.73028],[22.16361,-10.86139],[22.246109,-11.073057],[22.253887,-11.209723],[22.29888,-11.23722],[22.4675,-11.14167],[22.515553000000125,-11.04472],[22.560555,-11.033611],[22.716663,-11.093334],[22.86360900000011,-11.049168],[22.94278,-11.095],[23.084999,-11.09667],[23.218609,-11.076389],[23.368053,-10.98278],[23.476387,-10.95833],[23.863888,-11.02722],[23.98621,-10.87046],[24.027,-11.25],[24.084442000000138,-11.40278],[24.03083,-11.453056],[23.96583,-11.655001],[24.015553,-11.814167],[23.984165,-11.882223],[23.974998,-12.19917],[24.03694,-12.26889],[24.051666,-12.391668],[23.97138600000011,-12.5125],[23.886108,-12.771112],[23.893887000000117,-12.832224],[23.99778,-12.937223],[24.020554,-13.00639],[21.998333,-13.00417],[22.000149,-16.17166],[22.121109,-16.341114],[22.138885000000126,-16.4925],[22.487778000000105,-16.77417],[23.201664,-17.47972],[23.476109,-17.625835],[21.379356,-18.01489],[21.241943,-17.938892],[21.163887000000102,-17.931393],[20.954166,-17.967503],[20.854164,-18.016392],[20.55305,-17.983612],[20.33805,-17.858059],[20.09889,-17.896389],[19.92055,-17.85722],[19.41333,-17.86111],[19.175278000000105,-17.80111],[19.02583,-17.83],[18.915833,-17.815556],[18.756386,-17.74778],[18.641941,-17.648056],[18.45154,-17.389835],[14.218054000000109,-17.386948],[14.176943000000108,-17.42028],[13.993219,-17.423946],[13.65583,-17.215557],[13.527777000000128,-17.11084],[13.474443,-17.011948],[13.373333000000116,-16.96945],[13.251665,-16.985279],[13.160555000000102,-16.952778],[12.886665,-17.033611],[12.81611,-17.10889],[12.55722,-17.243336],[12.434166,-17.21278],[12.29222,-17.22972],[12.084721,-17.135281],[11.928610000000106,-17.18278],[11.825832,-17.26639],[11.752783000000136,-17.254833],[11.769444,-16.8275],[11.812498,-16.79139],[11.820833000000107,-16.50306],[11.779444,-16.104446],[11.810833000000114,-15.993057],[11.731388,-15.84667],[11.780554,-15.77861],[11.863333,-15.78472],[12.00861,-15.591946],[12.057499,-15.218334],[12.275833,-14.74722],[12.341665,-14.39083],[12.33222,-14.105],[12.40861,-13.95056],[12.503332000000114,-13.85056],[12.53611,-13.57417],[12.509722,-13.42528],[12.938332,-12.994167],[12.966389000000106,-12.9525],[12.936666,-12.820557],[13.19444,-12.60472],[13.36861,-12.596668],[13.46387,-12.502493],[13.485832,-12.40556],[13.6625,-12.16972],[13.791666000000133,-11.79778],[13.78972,-11.339169],[13.820555000000127,-11.300556],[13.85361,-11.00639],[13.839443,-10.925001],[13.723055000000102,-10.771946],[13.77028,-10.67445],[13.525833,-10.405556],[13.513332,-10.283611],[13.311388,-9.97056],[13.327221,-9.90139],[13.21583,-9.65944],[13.17,-9.408611],[12.984444,-9.0875],[13.024113000000114,-8.96788],[13.1278,-8.871084],[13.029722,-8.98611],[13.00861,-9.0875],[13.190277,-8.86161],[13.278332,-8.781113],[13.3875,-8.74028],[13.408609000000125,-8.65333],[13.344999,-8.46972],[13.374998,-8.47139],[13.391388,-8.38722],[13.259165000000108,-8.16583],[12.86916,-7.268612],[12.817778,-6.950278],[12.545832,-6.651112],[12.362778,-6.25722],[12.244999,-6.09806],[12.299721,-6.055834],[12.31444,-6.0975],[12.821665,-6.008889],[12.98499900000013,-5.88278],[13.997499,-5.84861]]],[[[13.088888,-4.6625],[12.82055,-4.7375],[12.708055,-4.918612],[12.565554000000134,-5.025556],[12.53222,-5.115834],[12.52667,-5.72417],[12.283888000000102,-5.73444],[12.21455200000014,-5.76856],[12.15138800000011,-5.623889],[12.178055,-5.54139],[12.23055,-5.52583],[12.228611,-5.476945],[12.163887000000102,-5.29389],[12.017221,-5.03444],[12.166388,-4.89583],[12.206388,-4.758889],[12.335278,-4.7875],[12.395277,-4.6125],[12.65,-4.55944],[12.779047,-4.38899],[12.89583,-4.415278],[12.909166000000141,-4.47],[13.091389,-4.633056],[13.088888,-4.6625]]]]}},{"type":"Feature","properties":{"FIPS":"AQ","ISO2":"AS","ISO3":"ASM","UN":16,"NAME":"American Samoa","AREA":20,"POP2005":64051,"REGION":9,"SUBREGION":61,"LON":-170.73,"LAT":-14.318},"geometry":{"type":"MultiPolygon","coordinates":[[[[-170.542511,-14.2975],[-170.55029,-14.29833],[-170.560822,-14.287781],[-170.540039,-14.283892],[-170.542511,-14.2975]]],[[[-170.63727,-14.289446],[-170.743896,-14.37555],[-170.82611,-14.325],[-170.681671,-14.25806],[-170.56003,-14.26584],[-170.63727,-14.289446]]],[[[-169.44449,-14.26167],[-169.51306,-14.27583],[-169.53613,-14.231668],[-169.44559,-14.22666],[-169.44449,-14.26167]]],[[[-169.62558,-14.18972],[-169.64169,-14.18611],[-169.64474,-14.176111],[-169.62195,-14.168612],[-169.62558,-14.18972]]],[[[-169.68558,-14.19194],[-169.69086,-14.167501],[-169.66223,-14.175001],[-169.66144,-14.183332],[-169.68558,-14.19194]]]]}},{"type":"Feature","properties":{"FIPS":"AR","ISO2":"AR","ISO3":"ARG","UN":32,"NAME":"Argentina","AREA":273669,"POP2005":38747148,"REGION":19,"SUBREGION":5,"LON":-65.167,"LAT":-35.377},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.60861,-54.8914],[-68.64311,-54.88861],[-68.636124,-54.804771],[-68.55724,-54.874451],[-68.60861,-54.8914]]],[[[-63.813614,-54.731392],[-63.95473,-54.811951],[-64.0114,-54.778618],[-64.25389,-54.84222],[-64.265289,-54.806114],[-64.3264,-54.788612],[-64.67834,-54.90723],[-64.670563,-54.86639],[-64.75528,-54.835007],[-64.69278,-54.776947],[-64.598343,-54.79945],[-64.337509,-54.72778],[-63.813614,-54.731392]]],[[[-68.261948,-52.98806],[-68.224731,-53.121117],[-68.28946,-53.004723],[-68.36835,-53.003891],[-68.543625,-53.1264],[-68.5675,-53.188057],[-68.543625,-53.229446],[-68.404175,-53.297226],[-68.16612,-53.291672],[-67.988617,-53.59222],[-67.587784,-53.829445],[-67.57333,-53.910278],[-67.35918,-54.02889],[-66.71667,-54.28306],[-66.54668,-54.41389],[-66.22751,-54.54195],[-65.705841,-54.671669],[-65.297226,-54.633614],[-65.14001,-54.65723],[-65.353897,-54.92917],[-65.48584,-54.9025],[-65.60722,-54.93278],[-65.88863,-54.892227],[-66.104172,-54.980003],[-66.37195,-54.985001],[-66.44612,-55.051674],[-66.649445,-55.025841],[-66.796402,-54.945557],[-67.02167,-54.907501],[-67.71417,-54.886948],[-68.24556,-54.816948],[-68.55778,-54.84639],[-68.63583,-54.788338],[-68.61758,-52.64151],[-68.261948,-52.98806]]],[[[-61.878891,-39.2425],[-62.05917,-39.16862],[-62.095284,-39.08917],[-61.890556,-39.13917],[-61.859726,-39.218338],[-61.878891,-39.2425]]],[[[-61.99695,-39.066948],[-62.109169,-39.04139],[-62.132782,-39.01889],[-61.981392,-39.026947],[-61.96278,-39.04639],[-61.99695,-39.066948]]],[[[-65.748062,-22.11167],[-64.98834,-22.090836],[-64.72278,-22.18139],[-64.67168,-22.16972],[-64.54251,-22.26667],[-64.52612,-22.40889],[-64.44389,-22.58],[-64.454453,-22.64333],[-64.360001,-22.740837],[-64.324722,-22.87361],[-64.25334,-22.56778],[-64.12668,-22.410278],[-63.94112,-22.00083],[-62.811951,-21.99695],[-62.76501,-22.15472],[-62.52139,-22.370834],[-62.24695,-22.52889],[-62.15472,-22.75611],[-62.029449,-22.891945],[-61.99,-23.006668],[-61.759445,-23.16972],[-61.73972,-23.243614],[-61.683891,-23.28222],[-61.59862,-23.29417],[-61.45084,-23.41806],[-61.11556,-23.60361],[-61.012222,-23.810558],[-60.613892,-23.89445],[-60.57333,-23.951115],[-60.28639,-24.037502],[-60.03806,-24.00972],[-59.472778,-24.35306],[-59.33889,-24.488892],[-58.98972,-24.65472],[-58.80334,-24.784168],[-58.46111,-24.85306],[-58.34833,-24.97472],[-58.183891,-24.97389],[-57.87112,-25.08778],[-57.75611,-25.17694],[-57.643333,-25.37472],[-57.55584,-25.438057],[-57.57667,-25.54945],[-57.81098,-25.77314],[-57.80361,-25.834724],[-57.90362,-25.95834],[-57.85583,-26.00194],[-58.14473,-26.206947],[-58.131393,-26.25722],[-58.21139,-26.426392],[-58.21917,-26.535004],[-58.168335,-26.597225],[-58.181671,-26.656113],[-58.31667,-26.87278],[-58.46954,-26.981468],[-58.56417,-27.1175],[-58.65278,-27.158337],[-58.65573,-27.191612],[-58.59889,-27.245003],[-58.604622,-27.31692],[-58.15639,-27.26889],[-57.79139,-27.29222],[-57.626396,-27.36917],[-57.129448,-27.489723],[-57.07167,-27.49195],[-56.90861,-27.41778],[-56.73695,-27.50695],[-56.67306,-27.461391],[-56.550003,-27.4525],[-56.378059,-27.58834],[-56.270836,-27.461391],[-56.268059,-27.3875],[-56.13778,-27.308891],[-55.898338,-27.32917],[-55.842506,-27.40778],[-55.73611,-27.43944],[-55.59639,-27.33806],[-55.547501,-27.112225],[-55.421394,-26.99],[-55.13361,-26.88583],[-55.04611,-26.79778],[-54.96945,-26.78806],[-54.930557,-26.68833],[-54.83667,-26.659447],[-54.69833,-26.438335],[-54.667503,-26.23888],[-54.63334,-26.200279],[-54.661667,-26.158337],[-54.665001,-25.982502],[-54.604446,-25.94361],[-54.62334,-25.64861],[-54.598915,-25.57322],[-54.53834,-25.57139],[-54.45251,-25.633057],[-54.291115,-25.54889],[-54.177505,-25.56195],[-54.104172,-25.49389],[-53.88695,-25.635559],[-53.82389,-25.80695],[-53.825,-25.957779],[-53.656113,-26.209446],[-53.65667,-26.285835],[-53.713615,-26.366669],[-53.73584,-26.69583],[-53.698616,-26.889446],[-53.838753,-27.17112],[-53.85778,-27.14917],[-54.00417,-27.18917],[-54.07084,-27.268059],[-54.148613,-27.28917],[-54.28306,-27.427502],[-54.358063,-27.456947],[-54.6889,-27.55611],[-54.77639,-27.56611],[-54.81111,-27.532501],[-54.91222,-27.73722],[-55.02167,-27.83389],[-55.186394,-27.856945],[-55.32612,-27.92445],[-55.44778,-28.08667],[-55.626297,-28.141022],[-55.765282,-28.226112],[-55.76501,-28.259167],[-55.66862,-28.32028],[-55.6925,-28.40889],[-55.73556,-28.36195],[-55.8914,-28.36778],[-56.066116,-28.626114],[-56.17001,-28.72834],[-56.28945,-28.784725],[-56.42361,-29.065556],[-56.59611,-29.14417],[-56.695557,-29.34361],[-57.10111,-29.76111],[-57.28566,-29.81111],[-57.328415,-29.98458],[-57.49334,-30.13695],[-57.608002,-30.18492],[-57.668892,-30.35472],[-57.887222,-30.52195],[-57.88972,-30.604446],[-57.81222,-30.71833],[-57.79806,-30.89],[-57.91945,-31.268612],[-57.99139,-31.40639],[-58.07917,-31.461391],[-57.97723,-31.577225],[-58.032784,-31.77584],[-58.203613,-31.89167],[-58.14556,-31.995834],[-58.18306,-32.160599],[-58.099167,-32.25917],[-58.101112,-32.32806],[-58.223335,-32.49556],[-58.147224,-33.05167],[-58.19417,-33.092506],[-58.42695,-33.096947],[-58.42667,-33.26195],[-58.53195,-33.516945],[-58.546394,-33.739174],[-58.460007,-33.858063],[-58.44833,-34.009727],[-58.3839,-34.05584],[-58.37723,-34.18806],[-58.498894,-34.32667],[-58.46973,-34.53973],[-58.36945,-34.58389],[-58.33223,-34.652504],[-58.23083,-34.71722],[-57.855,-34.851112],[-57.498894,-35.04556],[-57.335556,-35.15556],[-57.18834,-35.320557],[-57.12472,-35.41695],[-57.12972,-35.470284],[-57.376114,-35.78139],[-57.376671,-35.962784],[-57.24722,-36.1725],[-57.100006,-36.288338],[-56.933334,-36.36861],[-56.773613,-36.30445],[-56.741669,-36.31834],[-56.67028,-36.5875],[-56.67834,-36.92361],[-57.082779,-37.45278],[-57.487503,-37.83501],[-57.541115,-37.98195],[-57.53139,-38.080284],[-57.57167,-38.133057],[-57.83639,-38.29306],[-58.30112,-38.485001],[-59.038063,-38.6925],[-59.78973,-38.836945],[-61.09445,-38.99583],[-61.38361,-38.97973],[-61.54778,-39.01362],[-61.81806,-38.98611],[-62.085007,-38.91833],[-62.112785,-38.86445],[-62.208336,-38.816391],[-62.38139,-38.79861],[-62.381668,-38.859169],[-62.27889,-38.95583],[-62.336945,-39.078613],[-62.32667,-39.2625],[-62.162506,-39.28751],[-62.02,-39.378059],[-62.063614,-39.41361],[-62.188057,-39.31028],[-62.27723,-39.33528],[-62.06778,-39.505562],[-62.116394,-39.839447],[-62.172501,-39.86111],[-62.27112,-39.841118],[-62.34167,-40.01417],[-62.35278,-40.181671],[-62.48945,-40.29945],[-62.42084,-40.45945],[-62.26,-40.56],[-62.261391,-40.63334],[-62.348061,-40.60722],[-62.33834,-40.67306],[-62.183891,-40.62972],[-62.229729,-40.663612],[-62.30945,-40.854729],[-62.39001,-40.901947],[-63.03945,-41.15028],[-63.765839,-41.16584],[-63.972778,-41.05945],[-64.72278,-40.83223],[-64.80057,-40.722778],[-64.9814,-40.721947],[-65.13444,-40.847778],[-65.178894,-40.98445],[-65.167511,-41.090836],[-65.07112,-41.43333],[-64.99112,-41.51083],[-65.029175,-41.67556],[-64.99084,-41.778618],[-65.07945,-41.948059],[-65.01363,-42.09222],[-64.871399,-42.191948],[-64.46251,-42.263618],[-64.60695,-42.418892],[-64.45195,-42.44584],[-64.118896,-42.43445],[-64.045288,-42.372505],[-64.063065,-42.278618],[-64.33446,-42.236671],[-63.74695,-42.090561],[-63.58723,-42.32834],[-63.580559,-42.623894],[-63.62584,-42.76195],[-63.693062,-42.82167],[-64.086945,-42.890282],[-64.249176,-42.776115],[-64.19612,-42.638893],[-64.398056,-42.51584],[-64.62195,-42.52],[-64.820847,-42.62862],[-64.960556,-42.66639],[-65.01807,-42.73945],[-64.99278,-42.79362],[-64.808624,-42.84028],[-64.593903,-42.94112],[-64.41028,-42.97806],[-64.315567,-42.94945],[-64.29501,-42.99195],[-64.5914,-43.116669],[-64.76918,-43.14917],[-64.922501,-43.230835],[-65.02806,-43.30445],[-65.12611,-43.453613],[-65.32251,-43.65306],[-65.320007,-43.81945],[-65.25835,-43.96973],[-65.21028,-43.955284],[-65.224457,-44.107506],[-65.29695,-44.13222],[-65.3125,-44.18695],[-65.249451,-44.313057],[-65.387512,-44.52167],[-65.59946,-44.618057],[-65.691681,-44.716949],[-65.71501,-44.829727],[-65.53056,-44.895],[-65.60474,-45.0164],[-65.685562,-45.04306],[-65.842514,-44.986389],[-66.18278,-44.964447],[-66.511124,-45.08028],[-66.566681,-45.1575],[-66.94945,-45.255562],[-67.183624,-45.528618],[-67.31612,-45.615005],[-67.381119,-45.79556],[-67.584351,-46.000298],[-67.620285,-46.171394],[-67.506119,-46.45889],[-67.35722,-46.61084],[-67.09973,-46.758057],[-66.81696,-46.99167],[-66.70251,-47.044174],[-66.374176,-47.05917],[-66.33917,-47.083336],[-65.985291,-47.06778],[-65.77945,-47.18944],[-65.732788,-47.330559],[-65.75362,-47.530838],[-65.87195,-47.75806],[-66.02251,-47.76083],[-66.11389,-47.8175],[-66.22912,-47.840378],[-66.24362,-47.86028],[-65.96417,-47.784447],[-65.89279,-47.819168],[-65.787231,-47.9625],[-65.96139,-47.95417],[-65.96417,-48.09278],[-66.07945,-48.10445],[-66.468063,-48.39917],[-66.66139,-48.4389],[-66.82667,-48.571114],[-67.09418,-48.645279],[-67.239731,-48.822784],[-67.39917,-48.890556],[-67.579453,-49.03417],[-67.638901,-49.11223],[-67.616119,-49.180557],[-67.832779,-49.381668],[-67.72278,-49.38],[-67.652512,-49.260559],[-67.605011,-49.25917],[-67.77223,-49.872505],[-67.897232,-49.98584],[-68.0614,-50.07333],[-68.27335,-50.12334],[-68.419174,-50.07194],[-68.592514,-49.92861],[-68.68306,-49.973335],[-68.8539,-49.96889],[-69.011124,-50.011948],[-68.58362,-49.97945],[-68.506393,-50.075],[-68.370285,-50.14667],[-68.42361,-50.195282],[-68.82722,-50.308891],[-68.94112,-50.38806],[-69.101669,-50.590836],[-69.14639,-50.74334],[-69.145279,-50.88417],[-69.40889,-51.077782],[-69.18362,-50.97056],[-69.131119,-51.160004],[-68.952789,-51.535004],[-68.968063,-51.57389],[-69.04668,-51.565834],[-69.130844,-51.61],[-69.374451,-51.556396],[-69.61389,-51.62584],[-69.393341,-51.591949],[-69.17917,-51.63417],[-68.99335,-51.621391],[-68.6875,-52.022224],[-68.440002,-52.24445],[-68.38335,-52.33694],[-68.43445,-52.381393],[-68.4375,-52.328339],[-68.82861,-52.27972],[-69.233612,-52.14333],[-69.46139,-52.143616],[-69.998337,-51.996391],[-71.910568,-51.99583],[-71.952789,-51.86056],[-72.135559,-51.740005],[-72.29085,-51.695557],[-72.400558,-51.51362],[-72.339447,-51.47584],[-72.30917,-51.30222],[-72.24528,-51.24445],[-72.37167,-51.16473],[-72.397781,-51.114174],[-72.341125,-51.03667],[-72.266953,-51.017227],[-72.24223,-50.85111],[-72.341675,-50.743896],[-72.29417,-50.649727],[-72.501114,-50.60334],[-72.62973,-50.67306],[-72.75835,-50.618896],[-72.90611,-50.667503],[-73.052231,-50.76167],[-73.16612,-50.753334],[-73.2289,-50.59806],[-73.280014,-50.322784],[-73.34639,-50.23806],[-73.53223,-50.140556],[-73.46722,-50.00667],[-73.564453,-49.924728],[-73.444458,-49.782501],[-73.51501,-49.60334],[-73.58362,-49.538063],[-73.464737,-49.311394],[-73.136124,-49.304169],[-73.082779,-49.26917],[-73.16769,-49.25264],[-73.175568,-49.215279],[-72.98807,-48.981674],[-72.75528,-48.92806],[-72.56418,-48.80445],[-72.560287,-48.657501],[-72.601395,-48.479729],[-72.287231,-48.341949],[-72.32278,-48.075562],[-72.48611,-47.983063],[-72.53639,-47.921394],[-72.33168,-47.60167],[-72.305557,-47.507225],[-72.360291,-47.470001],[-72.29306,-47.420006],[-72.16167,-47.41278],[-72.015015,-47.274445],[-71.868622,-47.221672],[-71.86056,-47.14194],[-71.97639,-47.03445],[-71.940292,-46.815559],[-71.808899,-46.784172],[-71.66945,-46.679169],[-71.670288,-46.535],[-71.725006,-46.430557],[-71.747513,-46.242783],[-71.906403,-46.15389],[-71.760284,-46.11417],[-71.60167,-45.97472],[-71.637512,-45.89223],[-71.7589,-45.84417],[-71.79251,-45.73251],[-71.78056,-45.64889],[-71.752502,-45.558891],[-71.46751,-45.477501],[-71.297791,-45.293335],[-71.57362,-44.97945],[-72.06279,-44.90556],[-72.078613,-44.769447],[-71.84946,-44.79306],[-71.777786,-44.755],[-71.65362,-44.78278],[-71.50084,-44.74306],[-71.28223,-44.80028],[-71.22362,-44.745003],[-71.23334,-44.662781],[-71.19723,-44.59695],[-71.13473,-44.58389],[-71.108063,-44.53973],[-71.203613,-44.42695],[-71.410278,-44.39973],[-71.81612,-44.40611],[-71.85501,-44.37167],[-71.7939,-44.32556],[-71.82362,-44.156113],[-71.647232,-43.91862],[-71.8114,-43.749168],[-71.69862,-43.687225],[-71.70279,-43.59584],[-71.94667,-43.44723],[-71.89418,-43.323059],[-71.74335,-43.302223],[-71.73279,-43.18806],[-71.83639,-43.13195],[-72.05278,-43.104729],[-72.13695,-43.00917],[-72.10196,-42.85473],[-72.139175,-42.5875],[-72.0430599999999,-42.366394],[-72.131958,-42.28889],[-72.012222,-42.13111],[-71.9639,-42.1275],[-71.913895,-42.17806],[-71.72612,-42.096672],[-71.785278,-41.866112],[-71.91833,-41.64473],[-71.850006,-41.54945],[-71.899445,-41.35861],[-71.83694,-40.95945],[-71.95056,-40.73278],[-71.8439,-40.61639],[-71.791397,-40.41528],[-71.719727,-40.42778],[-71.66389,-40.336113],[-71.66972,-40.29472],[-71.702515,-40.27639],[-71.72862,-40.30112],[-71.81862,-40.20195],[-71.791397,-40.115005],[-71.66695,-40.047501],[-71.633347,-39.950562],[-71.704453,-39.73278],[-71.69556,-39.58445],[-71.66695,-39.565],[-71.61528,-39.619728],[-71.493622,-39.6025],[-71.388062,-39.246391],[-71.42279,-39.03695],[-71.4014,-38.92028],[-71.05917,-38.750282],[-70.92584,-38.7425],[-70.860001,-38.68806],[-70.82417,-38.56806],[-70.97084,-38.41806],[-71.013062,-38.23056],[-70.99751,-38.07111],[-71.18028,-37.69806],[-71.17168,-37.61806],[-71.11557,-37.57944],[-71.107788,-37.470001],[-71.19751,-37.308617],[-71.11279,-37.11445],[-71.185287,-36.84222],[-71.03778,-36.486115],[-70.708069,-36.417778],[-70.70473,-36.27056],[-70.58862,-36.16473],[-70.46112,-36.163063],[-70.42432,-36.13604],[-70.396118,-36.075562],[-70.410568,-35.886948],[-70.337784,-35.808334],[-70.420288,-35.643616],[-70.396118,-35.51501],[-70.421951,-35.36445],[-70.550293,-35.29667],[-70.5675,-35.24778],[-70.53639,-35.20639],[-70.368057,-35.15889],[-70.359756,-34.99691],[-70.23251,-34.66195],[-70.0475,-34.40917],[-70.0494539999999,-34.28751],[-69.88806,-34.278336],[-69.8125,-34.23556],[-69.90611,-33.787781],[-69.868896,-33.55195],[-69.77667,-33.39973],[-69.79834,-33.28612],[-69.9064,-33.23695],[-69.995834,-33.30195],[-70.09889,-33.172501],[-70.09964,-33.05184],[-69.987503,-32.878891],[-70.14418,-32.76167],[-70.17168,-32.61945],[-70.15417,-32.475838],[-70.244324,-32.309837],[-70.321121,-32.27389],[-70.34889,-32.08694],[-70.262512,-32.04362],[-70.234451,-31.9425],[-70.29668,-31.88417],[-70.430283,-31.86861],[-70.58694,-31.56667],[-70.56111,-31.314167],[-70.529449,-31.174446],[-70.47139,-31.09806],[-70.36195,-31.093056],[-70.29501,-31.02972],[-70.331116,-30.94861],[-70.318069,-30.83139],[-70.21167,-30.55945],[-70.133896,-30.439724],[-69.935287,-30.37028],[-69.83168,-30.19056],[-69.833618,-30.13333],[-69.92494,-30],[-69.91389,-29.72306],[-69.968338,-29.66111],[-69.960556,-29.55028],[-70.031403,-29.30639],[-69.90807,-29.141392],[-69.7939,-29.098614],[-69.72307,-28.803337],[-69.74501,-28.66056],[-69.666397,-28.57278],[-69.65538,-28.400932],[-69.35529,-28.13306],[-69.300293,-27.99945],[-69.185837,-27.96584],[-69.08223,-27.64],[-68.90472,-27.36667],[-68.86584,-27.28806],[-68.877228,-27.230835],[-68.810837,-27.120556],[-68.71085,-27.10556],[-68.640289,-27.14389],[-68.40611,-27.06472],[-68.32333,-27.02333],[-68.287231,-26.91528],[-68.58362,-26.50528],[-68.563614,-26.30056],[-68.397781,-26.15611],[-68.5975,-25.44334],[-68.502228,-25.177223],[-68.35196,-25.117226],[-68.497513,-24.896114],[-68.55139,-24.865559],[-68.565,-24.77444],[-68.38917,-24.501667],[-68.307785,-24.4925],[-68.25223,-24.39639],[-67.335846,-24.02167],[-67.150848,-23.391945],[-67.00084,-23.002781],[-67.183624,-22.821667],[-67.123062,-22.71806],[-67.01222,-22.64278],[-67.02251,-22.523891],[-66.77473,-22.42694],[-66.73668,-22.2275],[-66.345383,-22.11663],[-66.2914,-22.038612],[-66.22301,-21.78052],[-66.077515,-21.83195],[-65.92612,-21.933334],[-65.748062,-22.11167]]]]}},{"type":"Feature","properties":{"FIPS":"AS","ISO2":"AU","ISO3":"AUS","UN":36,"NAME":"Australia","AREA":768230,"POP2005":20310208,"REGION":9,"SUBREGION":53,"LON":136.189,"LAT":-24.973},"geometry":{"type":"MultiPolygon","coordinates":[[[[158.88217,-54.711388],[158.87966900000015,-54.753891],[158.83331,-54.749725],[158.891083,-54.52],[158.95746,-54.474716],[158.88217,-54.711388]]],[[[147.36273,-43.398056],[147.302765,-43.51334],[147.17554,-43.50167],[147.12302,-43.42194],[147.291931,-43.261948],[147.36273,-43.398056]]],[[[147.42968800000017,-43.253616],[147.36163,-43.263062],[147.291931,-43.164444],[147.359955,-43.073616],[147.42968800000017,-43.253616]]],[[[148.170532,-42.66389],[148.09774800000014,-42.66611],[148.01416,-42.75306],[148.021088,-42.618057],[148.1277470000001,-42.588608],[148.170532,-42.66389]]],[[[148.33331,-42.358894],[148.24273700000015,-42.3275],[148.231079,-42.301941],[148.319122,-42.31277],[148.33331,-42.358894]]],[[[145.10773,-40.82167],[145.274994,-40.80278],[146.18914800000016,-41.156105],[146.397217,-41.172226],[146.508331,-41.14667],[146.58609,-41.18666],[146.584961,-41.145554],[146.722473,-41.06945],[146.791077,-41.0875],[146.805817,-41.159721],[146.94107,-41.16972],[146.82385,-41.11195],[146.81829800000014,-41.057777],[147.013031,-40.97639],[147.155548,-41.00973],[147.35607900000014,-40.97639],[147.420532,-41.01778],[147.487732,-40.986389],[147.608002,-40.84333],[147.67163100000016,-40.829727],[147.795532,-40.89167],[147.867462,-40.88277],[147.973846,-40.743332],[148.22329700000012,-40.85084],[148.32886,-40.989166],[148.263031,-41.16917],[148.320251,-41.269722],[148.271362,-41.46611],[148.31469700000014,-41.60973],[148.26388,-41.808334],[148.29803500000014,-42.035],[148.364685,-42.116394],[148.36551,-42.215],[148.31747400000017,-42.275833],[148.275269,-42.25556],[148.309692,-42.140556],[148.183868,-41.943054],[148.079956,-42.110832],[148.00582900000018,-42.520554],[147.955811,-42.55778],[147.943848,-42.613892],[147.95495600000015,-42.7175],[147.886108,-42.76778],[147.84301800000014,-42.86945],[147.90915,-42.893616],[147.879669,-42.85973],[147.9155270000001,-42.840836],[147.99884,-42.90472],[148.006927,-42.97333],[147.957733,-43.00584],[147.94998,-43.078339],[148.00470000000018,-43.170837],[147.995239,-43.22972],[147.892761,-43.169167],[147.789703,-43.24695],[147.631622,-43.065552],[147.618835,-43.01584],[147.693573,-42.937218],[147.73440600000015,-42.96222],[147.71912,-43.01083],[147.778595,-43.049995],[147.896362,-43.03],[147.82581,-42.93195],[147.55746,-42.830559],[147.4982910000001,-42.870277],[147.55276500000014,-42.98639],[147.4369200000001,-43.045006],[147.401367,-43.002785],[147.43164100000013,-42.995003],[147.40802,-42.889725],[147.317474,-42.84666],[147.348572,-42.90472],[147.32608,-43.008614],[147.24191,-43.13361],[147.264984,-43.215553],[147.24633800000015,-43.27167],[147.184692,-43.284447],[147.09829700000012,-43.24445],[147.024994,-43.18417],[147.00192300000015,-43.10834],[146.971069,-43.13473],[146.97052,-43.206665],[147.100525,-43.2975],[147.00027,-43.42472],[146.9167,-43.617844],[146.833588,-43.648056],[146.803589,-43.609169],[146.68637100000012,-43.60333],[146.59552,-43.55222],[146.287476,-43.533615],[146.252777,-43.48972],[146.10745,-43.5164],[146.03830000000016,-43.498055],[145.931091,-43.37305],[145.991913,-43.34583],[146.233307,-43.394447],[146.236359,-43.327225],[146.16970800000013,-43.280281],[146.12161300000014,-43.33694],[145.851349,-43.30722],[145.595245,-42.97916],[145.496918,-42.957779],[145.353302,-42.657219],[145.25637800000015,-42.61167],[145.205231,-42.25695],[145.223846,-42.23917],[145.43136600000014,-42.377495],[145.469421,-42.523056],[145.55191000000013,-42.34416],[145.458313,-42.326393],[145.28027,-42.181114],[145.24411,-42.0275],[144.954956,-41.71333],[144.682465,-41.22333],[144.69607,-41.18388],[144.617737,-40.93388],[144.69830300000012,-40.88194],[144.701355,-40.75917],[144.7622070000001,-40.72805],[144.981079,-40.74722],[145.10773,-40.82167]]],[[[144.926361,-40.7225],[144.875519,-40.72472],[144.86523,-40.674171],[144.924133,-40.61528],[145.016083,-40.695549],[144.926361,-40.7225]]],[[[148.200256,-40.59416],[148.11941500000012,-40.566391],[148.097198,-40.53389],[148.21579,-40.50194],[148.200256,-40.59416]]],[[[144.755554,-40.59666],[144.7230220000001,-40.571388],[144.717468,-40.503891],[144.77969,-40.40944],[144.7905270000001,-40.493057],[144.755554,-40.59666]]],[[[144.941345,-40.45889],[144.87219200000015,-40.471382],[144.83218,-40.433609],[144.8799440000001,-40.379723],[144.9497070000001,-40.387222],[144.941345,-40.45889]]],[[[148.35467,-40.315552],[148.4758,-40.44389],[148.33914200000015,-40.503334],[148.31829800000014,-40.435272],[148.0902400000001,-40.45834],[147.9935610000001,-40.42055],[148.068298,-40.34722],[148.1994,-40.3625],[148.35467,-40.315552]]],[[[148.1774600000001,-40.25695],[148.12884500000018,-40.274445],[148.040253,-40.238609],[148.018585,-40.13556],[147.90387,-39.97555],[147.760803,-39.883614],[147.8819,-39.75417],[147.96774300000016,-39.72555],[148.16553,-39.929443],[148.279419,-39.965836],[148.330536,-40.22222],[148.1774600000001,-40.25695]]],[[[143.95773,-40.110001],[143.921631,-40.13639],[143.886383,-40.118332],[143.8916630000001,-39.981941],[143.834686,-39.92445],[143.85412600000018,-39.714722],[143.933594,-39.666946],[143.92914,-39.587219],[143.973022,-39.57333],[144.108582,-39.662498],[144.14749100000017,-39.927223],[144.10412600000018,-40.038338],[143.95773,-40.110001]]],[[[147.353577,-39.49944],[147.30746,-39.4875],[147.34442100000012,-39.448051],[147.375793,-39.46416],[147.353577,-39.49944]]],[[[147.299988,-39.48222],[147.28524800000014,-39.47388],[147.315521,-39.43195],[147.311096,-39.46999],[147.299988,-39.48222]]],[[[146.65554800000018,-38.76972],[146.54471,-38.800278],[146.46774300000016,-38.75806],[146.57413,-38.746391],[146.65554800000018,-38.76972]]],[[[145.311646,-38.46777],[145.3613590000001,-38.569168],[145.27136200000018,-38.52084],[145.11358600000017,-38.528885],[145.1902470000001,-38.466942],[145.311646,-38.46777]]],[[[145.49273700000015,-38.37444],[145.41830400000015,-38.37833],[145.355804,-38.43111],[145.28579700000012,-38.41083],[145.271088,-38.363335],[145.30581700000016,-38.29695],[145.44913,-38.321114],[145.49273700000015,-38.37444]]],[[[137.584961,-35.65083],[137.5946960000001,-35.745834],[137.808319,-35.813057],[137.863007,-35.799728],[137.91095,-35.729378],[138.021912,-35.746109],[138.111908,-35.8175],[138.112732,-35.86972],[138.03802,-35.924171],[137.92886,-35.87666],[137.74939,-35.867775],[137.60553,-35.929443],[137.61413600000014,-36.01472],[137.457733,-36.08666],[137.3544,-36.00194],[137.221893,-35.98361],[137.156647,-36.04362],[136.712189,-36.056664],[136.53442400000017,-35.9125],[136.571899,-35.7775],[136.60580400000015,-35.75806],[137.06665,-35.675278],[137.32025,-35.59],[137.526093,-35.60472],[137.584961,-35.65083]]],[[[136.495239,-35.17556],[136.43887,-35.167503],[136.43442,-35.15805],[136.46664,-35.13861],[136.495239,-35.17556]]],[[[136.2027590000001,-35.07695],[136.155548,-35.063614],[136.0866390000001,-34.94722],[136.195801,-35.02639],[136.2027590000001,-35.07695]]],[[[118.471916,-34.938332],[118.435806,-34.924721],[118.424698,-34.907776],[118.47638,-34.91806],[118.471916,-34.938332]]],[[[137.35800200000017,-34.54028],[137.33441200000013,-34.515556],[137.365784,-34.477776],[137.37661700000012,-34.51334],[137.35800200000017,-34.54028]]],[[[122.246933,-34.151665],[122.228043,-34.151665],[122.22998,-34.11222],[122.2555470000001,-34.12444],[122.246933,-34.151665]]],[[[123.20748900000011,-34.11195],[123.170258,-34.117218],[123.16776300000015,-34.094444],[123.21582,-34.086113],[123.20748900000011,-34.11195]]],[[[134.48663,-33.78],[134.48025500000017,-33.71416],[134.540253,-33.696663],[134.551636,-33.741669],[134.48663,-33.78]]],[[[133.589417,-32.311668],[133.5336,-32.30444],[133.67499,-32.24055],[133.67636100000016,-32.24555],[133.589417,-32.311668]]],[[[115.680267,-32.228333],[115.660812,-32.233612],[115.64888,-32.15222],[115.6588670000001,-32.156387],[115.680267,-32.228333]]],[[[159.070801,-31.52361],[159.101898,-31.571114],[159.070801,-31.6],[159.08578,-31.56111],[159.044983,-31.52472],[159.070801,-31.52361]]],[[[153.451355,-27.729164],[153.39941,-27.730278],[153.38943,-27.699997],[153.43359,-27.41611],[153.53857400000015,-27.41666],[153.451355,-27.729164]]],[[[153.41497800000013,-27.24805],[153.42526,-27.362778],[153.35913100000016,-27.199722],[153.356079,-27.06806],[153.45413,-27.01778],[153.41497800000013,-27.24805]]],[[[113.209152,-26.14083],[112.953323,-25.786945],[112.907211,-25.627499],[112.91388,-25.53972],[112.951103,-25.488609],[113.00444,-25.49555],[112.983871,-25.560833],[113.105263,-25.87639],[113.20694,-26.04278],[113.209152,-26.14083]]],[[[153.00360100000012,-25.34],[152.98245,-25.33167],[152.948853,-25.272503],[152.992462,-25.30778],[153.00360100000012,-25.34]]],[[[113.07360800000015,-25.233608],[113.06165,-25.278614],[113.050262,-25.23666],[113.101646,-25.09722],[113.07360800000015,-25.233608]]],[[[113.13970900000015,-24.92667],[113.11499000000015,-24.995831],[113.14722,-24.76],[113.160263,-24.787502],[113.13970900000015,-24.92667]]],[[[153.077179,-25.798611],[152.99774200000013,-25.73778],[152.94302400000015,-25.558334],[153.0636,-25.341389],[153.04941,-25.23083],[153.24023,-24.99305],[153.23773,-24.914165],[153.1586,-24.815],[153.196075,-24.75083],[153.28164700000013,-24.699165],[153.289978,-24.904167],[153.37106,-25.01417],[153.12717,-25.53639],[153.077179,-25.798611]]],[[[151.382172,-23.88278],[151.33053600000014,-23.813335],[151.326904,-23.75306],[151.38525400000015,-23.846668],[151.382172,-23.88278]]],[[[151.26944,-23.78056],[151.21469100000013,-23.78278],[151.13357,-23.661245],[151.066071,-23.60528],[151.019989,-23.454445],[151.065796,-23.44778],[151.20303300000012,-23.52889],[151.28775,-23.675],[151.29999,-23.74972],[151.26944,-23.78056]]],[[[150.982178,-23.195553],[150.947205,-23.195553],[150.9783,-23.150555],[150.99218800000017,-23.183609],[150.982178,-23.195553]]],[[[149.735504,-22.42305],[149.711639,-22.43],[149.73358,-22.34056],[149.760803,-22.36389],[149.735504,-22.42305]]],[[[150.49164,-22.35472],[150.45831,-22.310558],[150.4899600000001,-22.213055],[150.56024,-22.30445],[150.49164,-22.35472]]],[[[149.90082,-22.22833],[149.865784,-22.17389],[149.9083250000001,-22.04695],[149.930817,-22.134167],[149.90082,-22.22833]]],[[[150.33691,-21.77556],[150.29357900000014,-21.750557],[150.294434,-21.74444],[150.35886,-21.73333],[150.33691,-21.77556]]],[[[150.286926,-21.6875],[150.241913,-21.66722],[150.253876,-21.638054],[150.305237,-21.66],[150.286926,-21.6875]]],[[[115.454987,-20.782501],[115.37804,-20.87611],[115.34192700000017,-20.85166],[115.30386,-20.87278],[115.304153,-20.81333],[115.43526,-20.66722],[115.454987,-20.782501]]],[[[149.06665,-20.52667],[149.0369260000001,-20.501667],[149.074982,-20.48694],[149.08304,-20.49444],[149.06665,-20.52667]]],[[[149.006378,-20.318333],[148.971344,-20.33055],[148.95553600000017,-20.29139],[148.97552,-20.155],[149.037476,-20.27611],[149.006378,-20.318333]]],[[[148.935791,-20.17194],[148.88552900000013,-20.158611],[148.8819,-20.13028],[148.916077,-20.06139],[148.970245,-20.048611],[148.935791,-20.17194]]],[[[148.47134,-20.04639],[148.44525,-20.032501],[148.4497070000001,-19.97083],[148.48218,-20.00611],[148.47134,-20.04639]]],[[[146.86773700000015,-19.165],[146.809418,-19.17833],[146.77609300000017,-19.13111],[146.86969,-19.106667],[146.86773700000015,-19.165]]],[[[146.299408,-18.489441],[146.22052,-18.46833],[146.20163000000014,-18.37667],[146.08496100000013,-18.250835],[146.269714,-18.30833],[146.354126,-18.415833],[146.299408,-18.489441]]],[[[139.57608,-17.09583],[139.452759,-17.102779],[139.428314,-17.146111],[139.398865,-17.09139],[139.50277700000015,-16.996666],[139.5535890000001,-17.030556],[139.57608,-17.09583]]],[[[139.112183,-16.86222],[139.09079,-16.82667],[139.13998400000014,-16.81056],[139.155823,-16.829445],[139.112183,-16.86222]]],[[[139.736359,-16.49722],[139.62384,-16.53583],[139.580811,-16.502502],[139.489136,-16.53805],[139.50360100000012,-16.569168],[139.44192,-16.66778],[139.14025900000013,-16.755001],[139.16497800000013,-16.60055],[139.306641,-16.4625],[139.534424,-16.41389],[139.724976,-16.443054],[139.736359,-16.49722]]],[[[136.66721,-15.77667],[136.61273,-15.729166],[136.634979,-15.67611],[136.713013,-15.69778],[136.66721,-15.77667]]],[[[136.74191,-15.752224],[136.73413100000016,-15.648056],[136.80942,-15.650278],[136.82581,-15.693333],[136.74191,-15.752224]]],[[[137.06720000000018,-15.829445],[137.004425,-15.796667],[136.93442,-15.698889],[137.00305200000014,-15.591389],[137.05554,-15.647501],[137.09301800000014,-15.76639],[137.06720000000018,-15.829445]]],[[[136.529968,-15.645279],[136.49884,-15.633333],[136.51944000000015,-15.54972],[136.579407,-15.51111],[136.607452,-15.52639],[136.597748,-15.61611],[136.529968,-15.645279]]],[[[136.851349,-15.63417],[136.84192,-15.54972],[136.87857,-15.50194],[136.883026,-15.58917],[136.851349,-15.63417]]],[[[124.62164300000016,-15.41222],[124.522491,-15.44528],[124.45942700000012,-15.366943],[124.493042,-15.28667],[124.5597080000001,-15.26],[124.648331,-15.39889],[124.62164300000016,-15.41222]]],[[[124.426376,-15.315001],[124.381088,-15.32417],[124.336647,-15.29611],[124.43747700000017,-15.24944],[124.426376,-15.315001]]],[[[124.816093,-15.28111],[124.797493,-15.23972],[124.849991,-15.24722],[124.8477630000001,-15.25722],[124.816093,-15.28111]]],[[[128.191925,-15.18861],[128.114685,-15.13194],[128.12051,-15.043056],[128.192749,-15.12528],[128.191925,-15.18861]]],[[[124.94331,-15.030001],[124.861923,-14.99194],[124.874687,-14.95222],[124.92442300000015,-14.945],[124.94331,-15.030001]]],[[[128.441071,-15.0375],[128.35718,-14.96],[128.350525,-14.87111],[128.39386,-14.90944],[128.441071,-15.0375]]],[[[135.76498400000014,-14.90417],[135.6994,-14.90778],[135.7283,-14.836666],[135.76608,-14.851665],[135.76498400000014,-14.90417]]],[[[129.62994400000014,-14.879444],[129.58914200000015,-14.84111],[129.580536,-14.80278],[129.63079800000014,-14.850832],[129.62994400000014,-14.879444]]],[[[129.58941700000014,-14.90778],[129.592468,-14.96666],[129.501923,-14.788612],[129.53274,-14.80417],[129.58941700000014,-14.90778]]],[[[125.13832100000013,-14.648611],[125.08472,-14.617222],[125.1138760000001,-14.48889],[125.159416,-14.438334],[125.20915200000013,-14.486944],[125.18526,-14.59889],[125.13832100000013,-14.648611]]],[[[126.606369,-13.895555],[126.51193200000012,-13.909445],[126.502487,-13.877777],[126.517487,-13.87222],[126.606369,-13.895555]]],[[[136.28830000000016,-13.73333],[136.241913,-13.846666],[136.20135500000012,-13.859999],[136.17248,-13.76917],[136.14664,-13.784445],[136.157196,-13.83917],[136.10553,-13.818056],[136.113007,-13.73222],[136.198853,-13.66472],[136.24692,-13.673334],[136.28830000000016,-13.73333]]],[[[136.7116390000001,-13.835833],[136.80801,-13.854166],[136.848572,-13.76139],[136.912476,-13.774445],[136.91721,-13.81194],[136.768585,-13.93944],[136.699402,-14.12083],[136.724121,-14.18917],[136.86718800000014,-14.211666],[136.924133,-14.154446],[136.974396,-14.15278],[136.94165,-14.277779],[136.632172,-14.278612],[136.3780210000001,-14.216389],[136.405243,-13.967777],[136.45413,-13.83833],[136.622742,-13.791945],[136.59497,-13.72694],[136.713287,-13.65194],[136.714417,-13.70667],[136.67468,-13.73583],[136.7116390000001,-13.835833]]],[[[136.150818,-13.485832],[136.16165200000012,-13.53111],[136.098846,-13.36111],[136.17886,-13.446388],[136.150818,-13.485832]]],[[[136.820526,-12.140556],[136.80054,-12.09417],[136.82608,-12.072222],[136.83108500000014,-12.13055],[136.820526,-12.140556]]],[[[132.40469,-12.14083],[132.34164,-12.10278],[132.34024,-12.08972],[132.402191,-12.072222],[132.40469,-12.14083]]],[[[134.909973,-12.12111],[134.878571,-12.113611],[134.866913,-12.06667],[134.927765,-12.07278],[134.909973,-12.12111]]],[[[134.985779,-12.034166],[134.9449770000001,-12.06139],[134.911377,-12.022223],[134.9599610000001,-12.01167],[134.985779,-12.034166]]],[[[136.281921,-12.03556],[136.189423,-12.083889],[136.158325,-12.071388],[136.16024800000014,-12.04083],[136.30636600000014,-11.97694],[136.281921,-12.03556]]],[[[135.11551,-11.93444],[135.05609100000015,-11.95167],[135.047485,-11.94555],[135.06497200000013,-11.913612],[135.12384,-11.91],[135.11551,-11.93444]]],[[[136.473572,-11.911112],[136.46942100000012,-11.840555],[136.494965,-11.80305],[136.49857,-11.81778],[136.473572,-11.911112]]],[[[136.589417,-11.780556],[136.527191,-11.809166],[136.51608,-11.79861],[136.624664,-11.740276],[136.589417,-11.780556]]],[[[136.01276,-11.71917],[135.96469100000013,-11.7125],[135.95996100000013,-11.684166],[136.053864,-11.66],[136.01276,-11.71917]]],[[[132.560242,-11.724443],[132.50943,-11.679722],[132.51388,-11.64389],[132.643036,-11.648056],[132.631348,-11.711111],[132.560242,-11.724443]]],[[[133.383881,-11.6675],[133.361084,-11.66305],[133.36691,-11.61472],[133.482452,-11.58694],[133.383881,-11.6675]]],[[[136.47052,-11.51917],[136.3732910000001,-11.5925],[136.1783140000001,-11.68778],[136.17886,-11.6475],[136.26971400000014,-11.574722],[136.348846,-11.56861],[136.47885,-11.46611],[136.47052,-11.51917]]],[[[133.50555,-11.503889],[133.431366,-11.50778],[133.391357,-11.54389],[133.46942100000012,-11.46083],[133.50555,-11.503889]]],[[[130.491058,-11.68861],[130.63638300000014,-11.76583],[130.61578,-11.82111],[130.493561,-11.838612],[130.32302900000013,-11.775],[130.09634,-11.833611],[130.04248,-11.82444],[130.01639,-11.779722],[130.074127,-11.67222],[130.154144,-11.70361],[130.19357300000013,-11.66722],[130.173859,-11.485],[130.253326,-11.345278],[130.342468,-11.32361],[130.491058,-11.68861]]],[[[130.5733,-11.349443],[130.704956,-11.39028],[130.83801,-11.361111],[130.906372,-11.306667],[131.00415,-11.35222],[131.142212,-11.25445],[131.22302200000013,-11.405279],[131.202759,-11.24694],[131.2749940000001,-11.189167],[131.421082,-11.24889],[131.530548,-11.394724],[131.539154,-11.46167],[131.28415,-11.72972],[130.958862,-11.93889],[130.497192,-11.648056],[130.36468500000012,-11.25306],[130.37744,-11.17055],[130.40442,-11.161945],[130.5733,-11.349443]]],[[[132.62384,-11.27917],[132.59134,-11.342777],[132.51248,-11.14306],[132.50219700000014,-11.05139],[132.57886,-11.0225],[132.62384,-11.27917]]],[[[136.53610200000014,-11.455],[136.49939,-11.453333],[136.50803,-11.40722],[136.72995,-11.042778],[136.77191200000016,-11.01972],[136.724976,-11.20694],[136.53610200000014,-11.455]]],[[[142.512756,-10.866943],[142.506104,-10.95222],[142.561371,-10.876389],[142.603851,-10.86889],[142.74191,-10.982777],[142.79108,-11.087778],[142.86746200000016,-11.38167],[142.83914200000015,-11.50889],[142.86523,-11.846111],[142.98245,-11.93472],[143.12912,-11.913334],[143.19913,-11.987499],[143.102173,-12.140278],[143.07581,-12.33583],[143.17526,-12.34167],[143.2521970000001,-12.385],[143.2821960000001,-12.523056],[143.429138,-12.61444],[143.3605040000001,-12.840555],[143.51416,-12.879166],[143.521637,-13.304167],[143.59524,-13.42833],[143.5316470000001,-13.76222],[143.60134900000014,-13.93611],[143.686646,-14.02389],[143.69830300000012,-14.19389],[143.7822,-14.41333],[143.878021,-14.48583],[144.01221,-14.48833],[144.153595,-14.38],[144.429413,-14.25861],[144.47775300000012,-14.161112],[144.510529,-14.168333],[144.579407,-14.259167],[144.566925,-14.361944],[144.612183,-14.480278],[144.67468,-14.555834],[144.897217,-14.615833],[144.95163,-14.74944],[145.20636,-14.862499],[145.3158,-14.94555],[145.316376,-14.9975],[145.23522900000012,-15.12528],[145.289429,-15.331112],[145.24857,-15.44639],[145.35773,-15.72639],[145.356628,-15.913334],[145.46219,-16.07695],[145.451355,-16.28222],[145.40692100000012,-16.343334],[145.4035950000001,-16.462219],[145.80609100000015,-16.91305],[145.92248,-16.869167],[145.96051,-16.895279],[145.878021,-17.06278],[146.03192100000012,-17.36444],[146.10663,-17.683609],[146.093567,-17.95889],[146.00164800000016,-18.137222],[146.00943,-18.23805],[146.211914,-18.49166],[146.33691,-18.536667],[146.275269,-18.883888],[146.447205,-19.07139],[146.5652470000001,-19.143612],[146.68191,-19.193054],[146.756378,-19.18167],[146.87301600000012,-19.298336],[147.072205,-19.342777],[147.13943,-19.40278],[147.432465,-19.41278],[147.446625,-19.37944],[147.410797,-19.30611],[147.556366,-19.537502],[147.5949710000001,-19.72722],[147.67136,-19.82639],[147.77109,-19.835278],[147.7547,-19.71639],[147.82107,-19.709721],[147.851349,-19.736664],[147.872192,-19.861111],[147.948029,-19.913612],[148.2199710000001,-19.94722],[148.305817,-20.032501],[148.26416000000017,-20.047779],[148.274689,-20.07667],[148.41137700000013,-20.20694],[148.468567,-20.181389],[148.47274800000014,-20.12806],[148.43524200000013,-20.09555],[148.455231,-20.06],[148.67303500000014,-20.21611],[148.777466,-20.232498],[148.84051,-20.40389],[148.90747,-20.456387],[148.93552,-20.53278],[148.790253,-20.456944],[148.66721,-20.561668],[148.69165,-20.62444],[148.728302,-20.71722],[148.849701,-20.836113],[149.02832,-20.91861],[149.214691,-21.08],[149.23996,-21.278614],[149.443024,-21.5825],[149.429962,-21.777779],[149.520813,-22.07722],[149.58997,-22.23333],[149.697754,-22.35305],[149.70135500000015,-22.450832],[149.661102,-22.49667],[149.81469700000014,-22.38],[150.043304,-22.65083],[149.920258,-22.34778],[149.969421,-22.18944],[150.03415,-22.14972],[150.080811,-22.164165],[150.15524300000016,-22.27222],[150.1985780000001,-22.390278],[150.59301800000014,-22.586113],[150.53192100000012,-22.38972],[150.56109600000013,-22.329723],[150.63721,-22.34389],[150.70553600000017,-22.441387],[150.667755,-22.51083],[150.68359,-22.55361],[150.819122,-22.73194],[150.753601,-23.126667],[150.812195,-23.23805],[150.79776000000015,-23.374722],[150.867188,-23.505001],[150.93387,-23.550835],[151.024139,-23.55584],[151.052139,-23.617224],[151.124969,-23.67139],[151.15997300000015,-23.78583],[151.274994,-23.82806],[151.42413,-23.97861],[151.545807,-24.02889],[151.538574,-24.08917],[151.614136,-24.05278],[151.636932,-23.97666],[151.683868,-23.98889],[151.937195,-24.22166],[152.009979,-24.42639],[152.128021,-24.60472],[152.468018,-24.81222],[152.50775,-24.99778],[152.6658,-25.242775],[152.91079700000012,-25.289444],[152.94662500000015,-25.436386],[152.936646,-25.52333],[152.89221,-25.564167],[152.91721,-25.73167],[152.98968500000012,-25.77528],[153.03830000000016,-25.893612],[153.181915,-25.94944],[153.07107,-26.318058],[153.143036,-26.73],[153.1572,-27.082779],[153.088287,-27.10417],[153.03387,-27.17944],[153.064148,-27.31528],[153.26608,-27.49778],[153.317474,-27.66889],[153.432739,-27.848335],[153.410248,-27.981941],[153.448029,-28.07],[153.57635500000015,-28.20278],[153.56274,-28.530003],[153.62551900000017,-28.66666],[153.60467,-28.86778],[153.4516300000001,-29.03667],[153.342468,-29.308334],[153.365509,-29.39833],[153.2538760000001,-29.9525],[153.01858500000014,-30.56861],[153.00415,-30.82278],[153.01971400000014,-30.88389],[153.06665,-30.88639],[153.05246,-31.035],[152.8283080000001,-31.70444],[152.557465,-32.029167],[152.511658,-32.129166],[152.541351,-32.26362],[152.52969,-32.40361],[152.280823,-32.60139],[152.12744,-32.68222],[152.144714,-32.770554],[151.81942700000013,-32.881668],[151.666077,-33.07417],[151.553314,-33.29306],[151.524994,-33.2775],[151.45275900000013,-33.31917],[151.4458,-33.366112],[151.490479,-33.39594],[151.45636,-33.49834],[151.34024,-33.62861],[151.272766,-33.96944],[151.096344,-34.008896],[151.145813,-34.03667],[151.16608,-34.019165],[151.198013,-34.06195],[150.934143,-34.331673],[150.840515,-34.558334],[150.881348,-34.59917],[150.87357,-34.66111],[150.83414,-34.78639],[150.777771,-34.80778],[150.74411,-34.86972],[150.781921,-34.96167],[150.85580400000015,-35.02111],[150.840515,-35.082779],[150.80554,-35.10944],[150.776367,-35.086113],[150.77386500000011,-35.01],[150.683868,-35.039169],[150.703308,-35.12694],[150.540253,-35.22666],[150.406647,-35.52778],[150.16248,-35.940552],[150.139984,-36.323616],[150.074982,-36.39389],[150.023315,-36.62805],[149.90246600000012,-36.923332],[149.906647,-37.06917],[150.00415,-37.156944],[150.019714,-37.23138],[150.01913500000012,-37.26445],[149.94247400000017,-37.28944],[149.973846,-37.52055],[149.777466,-37.560555],[149.67663600000014,-37.69444],[149.45718,-37.78333],[148.309143,-37.82167],[147.76443,-37.979996],[147.42968800000017,-38.19472],[146.873566,-38.651665],[146.43109100000015,-38.717216],[146.341339,-38.69472],[146.22302200000013,-38.7125],[146.1830440000001,-38.75639],[146.288574,-38.918892],[146.411652,-38.85472],[146.43027,-38.792229],[146.470795,-38.806107],[146.484406,-39.07333],[146.394135,-39.14722],[146.325806,-39.11],[146.24246200000013,-38.942223],[146.13776,-38.84306],[146.0452580000001,-38.82028],[146.00137,-38.86806],[145.90442,-38.85695],[145.823578,-38.728607],[145.847748,-38.701942],[145.818024,-38.6525],[145.731079,-38.640556],[145.603577,-38.68306],[145.416077,-38.545837],[145.4321900000001,-38.45222],[145.521088,-38.423889],[145.55719,-38.37639],[145.447205,-38.227776],[145.256104,-38.23611],[145.21301,-38.349167],[145.03638,-38.49528],[144.898865,-38.504448],[144.761108,-38.377777],[144.979675,-38.344719],[145.13245,-38.14028],[145.096344,-38.038895],[144.92914,-37.869164],[144.828583,-37.898613],[144.526917,-38.101112],[144.365509,-38.13111],[144.3819,-38.167221],[144.50525,-38.181671],[144.642761,-38.13194],[144.70245,-38.145554],[144.72329700000012,-38.1875],[144.65887,-38.285004],[144.36328100000014,-38.324448],[144.06387,-38.48305],[143.84497,-38.69527],[143.7069090000001,-38.73083],[143.66857900000014,-38.79056],[143.54385400000012,-38.860001],[143.434692,-38.78639],[143.179962,-38.71611],[143.04526,-38.63583],[142.806091,-38.5775],[142.535248,-38.412773],[142.38888,-38.364723],[142.163025,-38.401108],[141.961914,-38.29084],[141.7435610000001,-38.2675],[141.61496,-38.326393],[141.649719,-38.40583],[141.57135000000017,-38.41722],[141.454132,-38.372498],[141.103577,-38.113892],[140.947754,-38.059998],[140.674988,-38.06861],[140.529968,-38.000282],[140.357727,-37.86694],[140.128296,-37.53612],[139.993835,-37.4925],[139.814423,-37.29973],[139.75137,-37.19972],[139.78469800000016,-37.14084],[139.731354,-37.00973],[139.75192300000015,-36.921669],[139.82886,-36.868607],[139.860779,-36.801392],[139.85995500000013,-36.655273],[139.82053,-36.54584],[139.64804100000015,-36.20972],[139.37184100000013,-35.91061],[139.077347,-35.682636],[139.122665,-35.6868],[139.40387,-35.887222],[139.58719,-36.0925],[139.667755,-36.23083],[139.561096,-35.989441],[139.09674,-35.61589],[139.091339,-35.529167],[139.16330000000016,-35.505],[139.236633,-35.55472],[139.22912600000018,-35.69444],[139.33719,-35.69416],[139.373291,-35.477776],[139.355225,-35.372498],[139.184418,-35.31806],[139.194702,-35.34028],[139.129669,-35.38167],[138.966064,-35.41194],[138.955811,-35.475273],[139.0383,-35.50751],[138.9930110000001,-35.55722],[138.73080400000015,-35.535835],[138.529419,-35.65583],[138.1785890000001,-35.67028],[138.09301800000014,-35.620834],[138.14804100000015,-35.53556],[138.29248,-35.47472],[138.439148,-35.34611],[138.464142,-35.116112],[138.51416000000017,-35.028053],[138.480804,-34.85973],[138.5122070000001,-34.76972],[138.49606,-34.728882],[138.278595,-34.486664],[138.216064,-34.307503],[138.098022,-34.137222],[138.06775,-34.139442],[138.00692700000013,-34.240837],[138.035797,-34.29472],[138.0205380000001,-34.341942],[137.920258,-34.432777],[137.875519,-34.711113],[137.74911,-35.04973],[137.74469,-35.13861],[137.65774,-35.182503],[137.45163000000014,-35.11306],[137.238556,-35.17556],[137.16748,-35.24861],[137.033051,-35.22861],[136.896088,-35.304169],[136.83053600000017,-35.25472],[136.936646,-35.14722],[136.97412,-34.96333],[137.01998900000012,-34.901108],[137.11551,-34.930832],[137.27942,-34.904716],[137.381348,-34.96083],[137.43774,-34.934723],[137.498566,-34.65861],[137.493286,-34.28639],[137.44998,-34.15139],[137.513306,-34.145554],[137.542755,-34.097778],[137.603027,-33.880829],[137.95026,-33.55944],[137.81301900000017,-33.271385],[137.85025,-33.19778],[138.04776,-33.12527],[138.016388,-33.031387],[137.953583,-33.011948],[137.818024,-32.568062],[137.773315,-32.523613],[137.75277700000015,-32.695831],[137.798309,-32.73333],[137.808319,-32.84138],[137.77832000000012,-32.9925],[137.59552,-33.02972],[137.488281,-33.127777],[137.3816220000001,-33.30805],[137.35800200000017,-33.43583],[137.209961,-33.66611],[137.151093,-33.71167],[137.03492700000015,-33.724],[136.947479,-33.68028],[136.863861,-33.80695],[136.41970800000013,-34.03612],[136.35358,-34.090836],[136.21637,-34.325279],[136.13361,-34.35445],[136.04303,-34.482498],[135.932739,-34.54195],[135.798584,-34.813614],[135.881622,-34.8175],[136.01193,-34.743332],[136.00888,-34.985832],[135.95413,-35.01028],[135.92804,-34.95944],[135.78665200000012,-34.86028],[135.72525,-34.865837],[135.686371,-34.949165],[135.64358500000014,-34.952782],[135.47467,-34.75111],[135.24496,-34.57167],[135.105804,-34.599998],[135.211639,-34.43361],[135.212189,-34.49722],[135.386108,-34.64194],[135.506927,-34.618057],[135.391937,-34.579445],[135.39581,-34.481941],[135.272491,-34.12333],[135.258026,-33.99944],[135.0336,-33.76861],[134.839417,-33.635559],[134.858002,-33.47194],[134.709137,-33.179169],[134.593567,-33.14],[134.41748,-33.157776],[134.332184,-33.205],[134.269135,-33.159721],[134.20303300000012,-32.964447],[134.06497200000013,-32.72111],[134.19830300000012,-32.74361],[134.214417,-32.81306],[134.28027,-32.724442],[134.27832,-32.59028],[134.18414300000018,-32.48666],[134.107452,-32.453888],[133.85189800000012,-32.54501],[133.880524,-32.40556],[133.9233090000001,-32.42556],[133.952179,-32.394722],[133.82635500000015,-32.25084],[133.66165200000012,-32.155273],[133.67499,-32.11362],[133.622192,-32.098335],[133.5902400000001,-32.10223],[133.56051600000012,-32.172775],[133.41721,-32.21333],[133.138031,-32.18611],[132.76443,-31.95083],[132.54913,-31.93889],[132.330811,-32.03722],[132.20386,-32.03167],[131.769135,-31.722221],[131.15219100000013,-31.47417],[130.83801,-31.605835],[130.14886500000011,-31.57917],[128.98745700000018,-31.69416],[128.02081,-32.08694],[127.737488,-32.13473],[127.26776,-32.27834],[126.687187,-32.315834],[126.399429,-32.292229],[126.18609600000015,-32.23805],[126.060532,-32.28639],[125.96832,-32.266113],[125.52277400000013,-32.542778],[125.29942300000015,-32.59972],[124.752487,-32.895836],[124.281937,-32.98556],[124.09359700000016,-33.156944],[123.959427,-33.55527],[123.769707,-33.69527],[123.690811,-33.820557],[123.540817,-33.90583],[123.35192900000015,-33.897781],[123.27082800000015,-33.98111],[123.16805,-34.01861],[123.10471300000016,-33.89],[123.02721,-33.85805],[122.838318,-33.90805],[122.35776,-33.911942],[122.267761,-33.95361],[122.24915,-34.02],[122.118317,-34.02861],[122.07388300000012,-34.016945],[122.10471300000017,-33.97222],[122.06915300000014,-33.88834],[121.99748,-33.824448],[121.789703,-33.901939],[121.461113,-33.8175],[120.86914100000013,-33.85556],[120.54027,-33.91722],[120.42109700000015,-33.97555],[120.00499000000012,-33.92889],[119.806931,-33.980278],[119.616089,-34.099998],[119.486366,-34.25722],[119.46692700000015,-34.33833],[119.325546,-34.44694],[119.20860300000017,-34.504448],[118.911652,-34.453056],[118.7397,-34.54999],[118.71944,-34.575],[118.754173,-34.60695],[118.71914700000013,-34.639725],[118.455261,-34.73527],[118.38665800000012,-34.84666],[118.28166,-34.905556],[118.08167300000014,-34.99389],[117.8311,-35.03473],[117.87943,-35.081947],[118.0008160000001,-35.095],[117.934418,-35.125832],[117.72665,-35.04806],[117.636383,-35.06555],[117.60971,-35.13834],[117.33248900000012,-35.01889],[116.95247700000014,-35.01417],[116.873032,-35.056664],[116.463318,-35.00084],[116.216927,-34.86611],[115.97360200000013,-34.81945],[115.910538,-34.69916],[115.814148,-34.60778],[115.501099,-34.386116],[115.242752,-34.29778],[115.171654,-34.309998],[115.118042,-34.362503],[115.008041,-34.26306],[114.95776,-33.86611],[114.988724,-33.52254],[115.044708,-33.53667],[115.10832200000014,-33.61806],[115.21138,-33.652222],[115.36360200000011,-33.633057],[115.43193,-33.603615],[115.71111,-33.27],[115.593597,-32.67139],[115.61971300000017,-32.599167],[115.70166000000017,-32.521111],[115.6297,-32.640556],[115.688309,-32.775558],[115.715553,-32.77972],[115.7619320000001,-32.5725],[115.73248300000012,-32.32084],[115.75525700000014,-32.195],[115.73943,-31.865276],[115.69359,-31.683609],[115.439972,-31.28417],[115.045532,-30.506947],[115.023613,-30.27417],[114.93581,-30.058056],[114.94193,-29.67055],[114.979713,-29.498886],[114.885536,-29.20111],[114.83055100000013,-29.09028],[114.59804,-28.83667],[114.58719600000018,-28.640556],[114.50277700000015,-28.48805],[114.307747,-28.228333],[114.23165900000015,-28.188889],[114.157494,-28.09778],[114.093872,-27.84555],[114.142487,-27.70111],[114.121368,-27.60333],[113.93692,-27.198887],[113.58582300000012,-26.69083],[113.2836,-26.403889],[113.224426,-26.239166],[113.271927,-26.154167],[113.27916,-26.01833],[113.33415200000013,-26.278614],[113.36554000000012,-26.118889],[113.51555,-26.28639],[113.54637100000014,-26.508057],[113.641373,-26.652779],[113.674423,-26.66],[113.741928,-26.59417],[113.790817,-26.60389],[113.85582,-26.5075],[113.86360200000013,-26.34111],[113.83832,-26.296112],[113.55247,-26.08028],[113.49609,-25.86555],[113.39166300000011,-25.71806],[113.40609700000016,-25.633057],[113.46944,-25.54084],[113.58943,-25.71083],[113.70139,-25.79722],[113.732208,-25.87806],[113.713318,-26.00167],[113.676651,-26.04306],[113.711929,-26.19528],[113.771652,-26.19722],[113.87886,-26.028889],[113.93166,-26.26639],[114.066093,-26.461945],[114.190811,-26.37806],[114.22083,-26.306389],[114.171371,-26.17694],[114.206383,-25.989166],[114.2397,-26.001392],[114.256943,-25.97055],[114.259163,-25.846668],[114.03137200000015,-25.63],[113.811653,-25.18694],[113.69775,-25.12167],[113.600273,-24.85305],[113.61249,-24.746109],[113.42693,-24.5275],[113.389709,-24.42944],[113.382477,-24.23139],[113.53221,-23.757225],[113.602768,-23.62806],[113.7410890000001,-23.531113],[113.768333,-23.441666],[113.76026900000011,-23.19389],[113.815262,-23.050278],[113.80748,-22.933331],[113.671097,-22.68611],[113.656372,-22.60472],[113.79971,-22.33417],[113.897491,-22.049999],[114.01805100000013,-21.850834],[114.15054,-21.791111],[114.176651,-21.815556],[114.132477,-21.886112],[114.0761030000001,-22.15833],[114.141937,-22.301392],[114.108597,-22.481667],[114.15387,-22.52778],[114.372482,-22.442497],[114.460823,-22.190277],[114.651093,-21.84],[114.937477,-21.689999],[115.032761,-21.68889],[115.44553,-21.521946],[115.635269,-21.319447],[115.812759,-21.23222],[115.9272,-21.067501],[116.15416,-20.97111],[116.18553,-20.901943],[116.24887100000011,-20.868889],[116.47554,-20.80611],[116.70748900000011,-20.649166],[116.78554,-20.64833],[116.871368,-20.718609],[117.06667300000015,-20.621666],[117.33832,-20.730278],[117.688026,-20.675831],[117.85027300000013,-20.608334],[118.17830700000012,-20.345],[118.18887,-20.37444],[118.234993,-20.374168],[118.66776300000015,-20.331112],[118.80108600000015,-20.285835],[118.947197,-20.121113],[118.97971300000016,-20.039444],[119.08248900000011,-19.9675],[119.188873,-19.959442],[119.584991,-20.070557],[119.785538,-19.97166],[120.32943700000011,-19.88111],[121.027481,-19.59222],[121.23887600000012,-19.433887],[121.48858600000015,-19.123055],[121.63943,-18.813889],[121.77665700000011,-18.6475],[121.75749,-18.59639],[121.80998,-18.46167],[121.88443,-18.474998],[121.93969700000014,-18.44805],[122.353317,-18.10556],[122.354431,-17.992496],[122.252777,-17.95833],[122.21082300000013,-17.90083],[122.20054600000014,-17.707775],[122.1386030000001,-17.52834],[122.17499,-17.24333],[122.253326,-17.11139],[122.37915,-16.996109],[122.45220900000015,-16.95194],[122.578598,-16.95916],[122.522491,-16.84667],[122.585541,-16.77889],[122.62886000000015,-16.802502],[122.75221,-16.762222],[122.73552700000018,-16.69972],[122.76249700000017,-16.59555],[122.892761,-16.50778],[122.91776300000015,-16.41555],[122.99165300000016,-16.389721],[123.06109600000013,-16.446388],[123.043869,-16.48139],[122.984154,-16.48111],[122.957207,-16.589169],[123.0961,-16.71611],[123.307747,-17.1375],[123.55247,-17.512779],[123.57527200000015,-17.5975],[123.594711,-17.512222],[123.559982,-17.445831],[123.5636,-17.367222],[123.62164300000018,-17.20139],[123.57248700000014,-17.064724],[123.596649,-16.989998],[123.65998800000011,-16.996387],[123.861923,-17.211109],[123.91832,-17.204445],[123.832489,-17.138889],[123.79498300000012,-17.00917],[123.891663,-16.89333],[123.771927,-16.89389],[123.6077580000001,-16.673332],[123.61360200000014,-16.564167],[123.50249,-16.567223],[123.424423,-16.502502],[123.6411,-16.529446],[123.70887800000013,-16.43028],[123.71332,-16.34222],[123.56026,-16.288334],[123.569717,-16.17194],[123.7294310000001,-16.138889],[123.80887,-16.19944],[123.78387,-16.246109],[123.72998,-16.258057],[123.839157,-16.368057],[123.89137300000016,-16.378887],[123.964432,-16.24555],[124.15999,-16.295002],[124.23858600000015,-16.40667],[124.33859300000016,-16.40889],[124.38777200000014,-16.350277],[124.475807,-16.39583],[124.73831,-16.38444],[124.835823,-16.43],[124.89943,-16.415001],[124.618874,-16.32833],[124.42970300000015,-16.34972],[124.400543,-16.329445],[124.376083,-16.221943],[124.43054,-16.102501],[124.470833,-16.093334],[124.51304600000014,-16.16389],[124.59305,-16.114166],[124.6147,-15.918612],[124.728317,-15.810556],[124.625526,-15.79472],[124.53471400000012,-15.93639],[124.48776,-15.93722],[124.401382,-15.87111],[124.37137,-15.67139],[124.44775,-15.48639],[124.493317,-15.465277],[124.579163,-15.5175],[124.656372,-15.47972],[124.6772,-15.45583],[124.657761,-15.27917],[124.702209,-15.2525],[125.181808,-15.52068],[125.070267,-15.41972],[125.120819,-15.315556],[125.01138300000012,-15.300556],[124.90416,-15.33194],[124.895821,-15.286222],[124.937477,-15.228333],[124.972214,-15.20778],[125.01110800000014,-15.229166],[125.04582200000014,-15.15889],[124.88025700000014,-15.241333],[124.825546,-15.155834],[124.897491,-15.1],[124.959152,-15.117222],[125.025269,-15.088055],[125.01833,-15.040834],[125.078323,-14.999722],[125.16304000000014,-15.16417],[125.16165,-15.03389],[125.275269,-15.09583],[125.30942,-15.152779],[125.43332,-15.138613],[125.358871,-15.10111],[125.38997700000014,-15.07083],[125.18193,-14.95472],[125.243042,-14.90194],[125.1355360000001,-14.741388],[125.33611,-14.523056],[125.588882,-14.549444],[125.57971,-14.30333],[125.60693400000014,-14.22305],[125.729713,-14.276945],[125.63721,-14.635],[125.71887200000013,-14.400278],[125.84027100000013,-14.45111],[125.825272,-14.575277],[125.902771,-14.64361],[126.0372,-14.51667],[126.146652,-14.129999],[126.08888200000013,-13.97305],[126.01944,-13.91917],[126.21748400000013,-13.96194],[126.21471,-14.03472],[126.154984,-14.06222],[126.18665,-14.165834],[126.287773,-14.23305],[126.335541,-14.04861],[126.431374,-13.975],[126.502487,-13.96472],[126.45305,-14.08],[126.60054,-14.22972],[126.705551,-14.12194],[126.789146,-13.97139],[126.74443,-13.79806],[126.86276,-13.749166],[126.953339,-13.726692],[127.017761,-13.77639],[127.077209,-13.835833],[127.05748000000017,-13.89056],[127.13053900000013,-13.975832],[127.15416,-13.9],[127.42082200000016,-13.949722],[127.521103,-14.086111],[127.6622,-14.17889],[127.94525,-14.57639],[128.00360100000012,-14.56111],[128.169434,-14.702778],[128.18829300000016,-14.80028],[128.139984,-14.86778],[128.06829800000014,-15.10694],[128.072205,-15.40333],[128.01361,-15.5],[128.10025,-15.426666],[128.129242,-15.21289],[128.25525,-15.301666],[128.289978,-15.405279],[128.290527,-15.29555],[128.224747,-15.193055],[128.1941220000001,-15.05667],[128.314972,-14.90778],[128.3508,-15.04472],[128.4524540000001,-15.04639],[128.3819,-14.8025],[128.530273,-14.75917],[129.089417,-14.89944],[129.18719,-14.98167],[129.191071,-15.1825],[129.25637800000015,-15.10417],[129.21997,-14.84306],[129.327759,-14.865],[129.49218800000017,-14.95417],[129.667755,-15.14917],[129.674408,-15.205],[129.73245,-15.197222],[129.625793,-15.01889],[129.64386000000013,-14.83722],[129.79999,-14.865276],[129.94442700000013,-14.767778],[129.773865,-14.82361],[129.674988,-14.76639],[129.586639,-14.62111],[129.698853,-14.60417],[129.788574,-14.535],[129.656082,-14.573556],[129.537476,-14.549168],[129.35913100000016,-14.425556],[129.370239,-14.33333],[129.492462,-14.14222],[129.73273,-13.99472],[129.8274540000001,-13.519445],[129.88610800000015,-13.44528],[129.913605,-13.513889],[130.027771,-13.516945],[130.264435,-13.325277],[130.18747,-13.198334],[130.11911,-13.16389],[130.1408080000001,-12.92417],[130.18552,-12.907501],[130.234955,-12.9475],[130.322479,-12.89917],[130.353851,-12.837778],[130.35580400000015,-12.67],[130.49939,-12.60305],[130.597748,-12.70667],[130.69525,-12.7025],[130.60412600000018,-12.676666],[130.58696,-12.62983],[130.5733,-12.57583],[130.61773700000015,-12.43278],[130.5830380000001,-12.39528],[130.77582,-12.43167],[130.896362,-12.640278],[130.954132,-12.53639],[130.8158,-12.44167],[130.88580300000012,-12.35417],[131.026917,-12.35833],[131.029968,-12.25333],[130.996918,-12.19278],[131.027191,-12.145555],[131.11191,-12.15083],[131.213287,-12.2175],[131.344116,-12.22361],[131.4863590000001,-12.29722],[131.929138,-12.26667],[132.062195,-12.310833],[132.2235720000001,-12.199999],[132.36022900000012,-12.20167],[132.4202580000001,-12.30778],[132.3836060000001,-12.379999],[132.4447,-12.308334],[132.4238590000001,-12.18861],[132.44662500000013,-12.146389],[132.57663,-12.10111],[132.70831,-12.14583],[132.75442,-12.13278],[132.64721700000018,-12.08917],[132.62775,-12.041945],[132.63497900000016,-11.744999],[132.691071,-11.655001],[132.4899600000001,-11.47694],[132.3696900000001,-11.437778],[132.22189300000014,-11.463612],[132.092468,-11.52639],[131.99023,-11.429722],[131.96579,-11.349167],[131.872192,-11.309999],[131.76694,-11.316389],[131.874115,-11.177223],[131.97995000000014,-11.125555],[132.0902400000001,-11.23],[132.16943400000014,-11.41028],[132.204681,-11.41111],[132.2355040000001,-11.35222],[132.143311,-11.133333],[132.269989,-11.167778],[132.33746,-11.129166],[132.50192300000015,-11.2625],[132.67581200000018,-11.50972],[132.731354,-11.51806],[132.873016,-11.329721],[132.91803,-11.336945],[133.18304,-11.71666],[133.25137,-11.736944],[133.348297,-11.68778],[133.407196,-11.77417],[133.61358600000017,-11.835],[133.758026,-11.770279],[133.801636,-11.71722],[133.9083250000001,-11.736111],[133.919434,-11.767223],[133.84634,-11.808889],[133.83691,-11.853611],[133.939697,-11.91389],[134.055817,-11.846388],[134.18551600000012,-11.94639],[134.20663500000012,-12.06167],[134.369965,-12.037779],[134.51608,-12.06667],[134.5985720000001,-12.056389],[134.676086,-11.997221],[134.77054,-11.993332],[134.865784,-12.13083],[135.083862,-12.26667],[135.231354,-12.294445],[135.26694,-12.17195],[135.328308,-12.111666],[135.58609000000013,-12.098333],[135.667206,-12.03472],[135.579681,-12.05944],[135.59524,-11.954445],[135.759888,-11.9315],[135.87912,-11.83917],[135.8685610000001,-11.768057],[135.90802,-11.763056],[135.94662500000015,-11.807222],[135.74191,-11.985277],[135.7883,-12.043612],[135.673859,-12.156111],[135.66970800000013,-12.196667],[135.7355040000001,-12.280834],[135.881348,-12.153055],[136.023041,-12.111944],[135.93524200000013,-12.2175],[135.971893,-12.26944],[136.06552,-12.24444],[135.981079,-12.373888],[136.039703,-12.47167],[136.14971900000012,-12.43556],[136.17248,-12.464722],[136.22995,-12.460556],[136.290253,-12.41806],[136.3652340000001,-12.238611],[136.33273,-12.20333],[136.23663,-12.21666],[136.1783140000001,-12.16361],[136.45108,-11.954166],[136.562195,-11.93444],[136.539154,-12.00972],[136.668304,-12.28222],[136.75970500000017,-12.253889],[136.69220000000018,-12.19278],[136.78387,-12.172501],[136.87939500000016,-12.225],[136.9819,-12.35694],[136.745239,-12.54417],[136.64358500000014,-12.704166],[136.62079,-12.825277],[136.494415,-12.77917],[136.484344,-12.84594],[136.546082,-12.958055],[136.5452580000001,-13.055],[136.52832000000012,-13.15],[136.458008,-13.252501],[136.446075,-13.218056],[136.367737,-13.247221],[136.374115,-13.07028],[136.350525,-13.0525],[136.314423,-13.07167],[136.28610200000014,-13.16639],[136.196075,-13.24194],[136.09719800000016,-13.18472],[135.92386,-13.28139],[135.88858,-13.35361],[135.93496700000014,-13.396946],[135.86413600000014,-13.491667],[135.845795,-13.60389],[135.890259,-13.73194],[135.96023600000012,-13.746666],[136.02582,-13.687778],[136.020264,-13.7625],[135.92468,-13.96194],[135.87357,-14.192223],[135.76608,-14.25583],[135.61969,-14.439722],[135.54053,-14.57361],[135.5383,-14.64667],[135.37274200000013,-14.72889],[135.45663,-14.94111],[135.54053,-15.01806],[135.670532,-15.06444],[135.948853,-15.26222],[136.21219,-15.394445],[136.2830510000001,-15.57111],[136.568573,-15.71833],[136.7658080000001,-15.90445],[137.03054800000018,-15.91472],[137.37384,-16.13],[137.730804,-16.246109],[137.8605040000001,-16.44],[138.1902470000001,-16.705],[138.46692,-16.78528],[138.646637,-16.77972],[138.848572,-16.877777],[139.017487,-16.90305],[139.14136,-17.07417],[139.16275,-17.20305],[139.260529,-17.3425],[139.437195,-17.379166],[139.62188700000013,-17.525558],[139.814148,-17.57528],[140.018585,-17.712776],[140.13217,-17.71917],[140.49496,-17.64083],[140.83136,-17.45361],[140.85968,-17.41111],[140.9422,-17.15111],[140.94913,-17.013615],[141.211914,-16.672501],[141.4269100000001,-16.07917],[141.400543,-15.905834],[141.46051,-15.536112],[141.665802,-15.036112],[141.56775,-14.76889],[141.520264,-14.475],[141.59164,-14.26472],[141.599976,-14.13444],[141.466064,-13.90667],[141.54193,-13.53278],[141.688293,-13.26083],[141.58386200000018,-12.989166],[141.628845,-12.90806],[141.759705,-12.80806],[141.79858400000012,-12.685833],[141.85247800000013,-12.701833],[141.88803100000018,-12.755001],[141.89053,-12.846388],[141.934967,-12.911112],[141.9408,-12.875832],[141.883865,-12.70417],[141.71774300000013,-12.493332],[141.752472,-12.467222],[141.661377,-12.44833],[141.654419,-12.52833],[141.685242,-12.55167],[141.62161300000014,-12.57111],[141.589417,-12.54695],[141.775818,-12.213612],[141.75997900000016,-12.178888],[141.85245,-11.98444],[141.901703,-11.965],[141.91693,-12.088888],[142.02887,-12.062222],[141.946625,-11.924444],[142.12411,-11.36722],[142.158875,-11.149445],[142.14194,-10.95667],[142.187744,-10.920834],[142.33941700000014,-10.898611],[142.44693,-10.708889],[142.51886000000013,-10.70667],[142.615234,-10.75222],[142.512756,-10.866943]]],[[[142.2658080000001,-10.68361],[142.26361,-10.72222],[142.18332,-10.770279],[142.11801100000014,-10.716389],[142.11523,-10.66056],[142.21692,-10.610277],[142.2658080000001,-10.68361]]],[[[142.27804600000013,-10.64361],[142.249695,-10.5875],[142.314148,-10.58417],[142.321075,-10.622499],[142.27804600000013,-10.64361]]],[[[142.230804,-10.56889],[142.191345,-10.56583],[142.226624,-10.52528],[142.242737,-10.54389],[142.230804,-10.56889]]],[[[142.321075,-10.548611],[142.292206,-10.53389],[142.31802400000015,-10.513889],[142.32940700000017,-10.53611],[142.321075,-10.548611]]],[[[142.28552,-10.26472],[142.189423,-10.204166],[142.2258,-10.146112],[142.286926,-10.13611],[142.33053600000017,-10.171946],[142.338562,-10.202778],[142.28552,-10.26472]]],[[[142.15774,-10.18972],[142.08969100000013,-10.13389],[142.14358500000014,-10.051666],[142.19607,-10.09389],[142.15774,-10.18972]]]]}},{"type":"Feature","properties":{"FIPS":"BA","ISO2":"BH","ISO3":"BHR","UN":48,"NAME":"Bahrain","AREA":71,"POP2005":724788,"REGION":142,"SUBREGION":145,"LON":50.562,"LAT":26.019},"geometry":{"type":"MultiPolygon","coordinates":[[[[50.812492000000134,25.64222],[50.79249600000014,25.641941],[50.782219,25.659443],[50.821388,25.651943],[50.812492000000134,25.64222]]],[[[50.813332,25.678608],[50.804161,25.680553],[50.8077770000001,25.68972],[50.814438,25.683331],[50.813332,25.678608]]],[[[50.76194,25.595276],[50.771942,25.571941],[50.74472,25.589443],[50.741661,25.683052],[50.79666,25.728333],[50.76194,25.595276]]],[[[50.769722,25.746944],[50.763329,25.74583],[50.760551,25.75027],[50.76471700000013,25.754719000000136],[50.769722,25.746944]]],[[[50.532219,26.234444],[50.589439,26.238331],[50.610275000000115,26.204166],[50.554161,26.191387],[50.616943000000106,26.104721],[50.607498,25.862778],[50.57333,25.80972],[50.461662,25.965275],[50.491661000000136,26.051388],[50.453606,26.215],[50.532219,26.234444]]],[[[50.65361,26.247498],[50.609993,26.247776],[50.604439,26.267776],[50.62722,26.288887],[50.65361,26.247498]]]]}},{"type":"Feature","properties":{"FIPS":"BB","ISO2":"BB","ISO3":"BRB","UN":52,"NAME":"Barbados","AREA":43,"POP2005":291933,"REGION":19,"SUBREGION":29,"LON":-59.559,"LAT":13.153},"geometry":{"type":"Polygon","coordinates":[[[-59.533058,13.050554],[-59.628616,13.103333],[-59.659447,13.287777],[-59.641113,13.331388],[-59.591118,13.329721],[-59.521118,13.214443],[-59.429169,13.164999],[-59.456673,13.092222],[-59.533058,13.050554]]]}},{"type":"Feature","properties":{"FIPS":"BD","ISO2":"BM","ISO3":"BMU","UN":60,"NAME":"Bermuda","AREA":5,"POP2005":64174,"REGION":19,"SUBREGION":21,"LON":-64.709,"LAT":32.336},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.855835,32.27861000000013],[-64.874451,32.29305],[-64.83806,32.314163000000114],[-64.85884,32.2963],[-64.855835,32.27861000000013]]],[[[-64.643341,32.35443900000013],[-64.656113,32.355827],[-64.68584,32.357216],[-64.65529,32.370827],[-64.643341,32.35443900000013]]],[[[-64.78334,32.270554],[-64.858269,32.2668],[-64.784729,32.27861000000013],[-64.7883,32.29668],[-64.67168,32.379997],[-64.78334,32.270554]]]]}},{"type":"Feature","properties":{"FIPS":"BF","ISO2":"BS","ISO3":"BHS","UN":44,"NAME":"Bahamas","AREA":1001,"POP2005":323295,"REGION":19,"SUBREGION":29,"LON":-78.014,"LAT":24.628},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.03723,21.139442],[-73.162231,20.968887],[-73.45279,20.924721],[-73.685837,20.935555],[-73.70222,20.999722],[-73.655563,21.081944],[-73.53639,21.183331],[-73.42223,21.194164],[-73.26112,21.134163],[-73.13806,21.187496],[-73.070282,21.316666],[-73.02444,21.3325],[-73.002502,21.31166500000012],[-73.03723,21.139442]]],[[[-72.92473,21.483608],[-73.038071,21.434998],[-73.0675,21.507774],[-72.97806,21.54055],[-72.91139,21.50333000000012],[-72.92473,21.483608]]],[[[-72.829178,22.382221],[-72.74057,22.336941000000138],[-72.781403,22.28416],[-72.885559,22.360275],[-73.060562,22.339165],[-73.164734,22.370831],[-73.14001,22.42833],[-73.08168,22.443607],[-72.829178,22.382221]]],[[[-73.610291,22.57972],[-73.62056,22.5997200000001],[-73.598343,22.614719],[-73.593338,22.60611],[-73.610291,22.57972]]],[[[-73.462784,22.601944000000117],[-73.47111,22.5975],[-73.551392,22.612221],[-73.497787,22.618889],[-73.462784,22.601944000000117]]],[[[-74.377792,22.538887000000102],[-74.379456,22.576385],[-74.280014,22.66249800000014],[-74.277512,22.647778],[-74.377792,22.538887000000102]]],[[[-73.847229,22.72361],[-73.836945,22.551666000000125],[-73.86751,22.469444],[-73.977234,22.345554000000106],[-74.2814,22.173054],[-74.276672,22.21694200000013],[-73.867783,22.512218],[-73.921402,22.599442],[-73.98195,22.58972],[-74.037781,22.622498],[-73.92473,22.708885],[-73.847229,22.72361]]],[[[-74.07362,22.66333],[-74.272507,22.714443],[-74.343903,22.834999],[-74.29945,22.84111],[-74.01779,22.716389000000103],[-74.07362,22.66333]]],[[[-73.7289,23.070553],[-73.7847289999999,23.067497],[-73.81361,23.096943000000124],[-73.66501,23.08889],[-73.7289,23.070553]]],[[[-75.55112,23.431389],[-75.52501,23.40444200000013],[-75.622223,23.42166],[-75.650848,23.455830000000105],[-75.55112,23.431389]]],[[[-75.02139,23.10639],[-74.92529,23.086941000000134],[-74.85028,23.004166],[-74.83057,22.860832],[-74.85335,22.85805],[-74.97223,23.07111],[-75.08417,23.08889],[-75.16862,23.142832],[-75.068344,23.111942],[-75.10751,23.16472],[-75.126678,23.34611],[-75.25723,23.489719],[-75.30751,23.667774],[-75.10001,23.329998000000103],[-75.07278,23.154999],[-75.02139,23.10639]]],[[[-75.77196,23.499722000000133],[-75.991119,23.599442],[-76.02862,23.672497],[-75.91862,23.62638900000013],[-75.77196,23.499722000000133]]],[[[-74.78195,23.683887],[-74.81973,23.639442],[-74.936951,23.65694400000012],[-74.94862,23.685276],[-74.801956,23.71833],[-74.78195,23.683887]]],[[[-76.36389,24.07222],[-76.32167,23.972775000000123],[-76.398346,24.11333100000013],[-76.36389,24.07222]]],[[[-74.49028,23.95444],[-74.541397,23.96917],[-74.526947,24.10083],[-74.460846,24.14278],[-74.42361,24.075554000000125],[-74.49028,23.95444]]],[[[-77.94667,24.15],[-77.97168,24.193607],[-77.800293,24.25333],[-77.88583,24.175552],[-77.94667,24.15]]],[[[-77.936676,24.22583],[-77.995834,24.225555],[-78.019455,24.250832],[-77.931122,24.279442],[-77.936676,24.22583]]],[[[-76.468903,24.209999],[-76.50362,24.217777],[-76.545288,24.290276],[-76.4664,24.22361],[-76.468903,24.209999]]],[[[-77.73556,24.02861],[-77.63417,24.209442],[-77.606674,24.213886],[-77.547501,24.119442],[-77.51695,23.92778],[-77.56696,23.739166000000125],[-77.773056,23.74277500000011],[-77.74474,23.782219],[-77.681816,23.760284],[-77.572784,23.842777],[-77.69667,23.776665],[-77.73029,23.786942],[-77.808334,23.878609],[-77.876678,24.073055000000124],[-77.85251,24.160275000000127],[-77.676392,24.296108],[-77.63667,24.230274],[-77.755,24.138885],[-77.73556,24.02861]]],[[[-77.68695,24.337219],[-77.79668,24.308052],[-77.806671,24.319721],[-77.703339,24.36972],[-77.68695,24.337219]]],[[[-75.314728,24.213886],[-75.29001,24.14416],[-75.515015,24.139721],[-75.47278,24.181664],[-75.46306,24.28805],[-75.596565,24.508442],[-75.69112,24.62194],[-75.75917,24.653332],[-75.73946,24.695000000000107],[-75.633057,24.651943],[-75.52389,24.429996],[-75.314728,24.213886]]],[[[-77.4364,25.008053],[-77.5414,24.99194],[-77.5614,25.0275],[-77.449448,25.076942],[-77.258621,25.049442],[-77.4364,25.008053]]],[[[-78.191956,25.20361],[-77.98279,25.146111],[-77.8864,24.856110000000115],[-77.77362,24.73277700000011],[-77.716675,24.506664],[-77.73834,24.456387],[-77.857788,24.42305],[-77.871399,24.36861],[-78.02139,24.272778],[-78.08639,24.379719000000136],[-78.343613,24.522221],[-78.44057,24.61361],[-78.31473,24.71111],[-78.28778,24.65583],[-78.33139,24.586388000000113],[-78.235565,24.559998],[-78.19278,24.5975],[-78.25667,24.72277],[-78.27196,24.670277],[-78.30585,24.72111],[-78.177231,24.917221],[-78.155563,25.03611],[-78.214447,25.184998],[-78.191956,25.20361]]],[[[-76.53334,25.39833],[-76.410278,25.340275],[-76.3497,25.343281],[-76.118896,25.1311070000001],[-76.168335,24.689999],[-76.33806,24.824997000000106],[-76.21112,24.865833],[-76.14389,25.01527],[-76.17168,25.140831],[-76.254456,25.178055],[-76.355835,25.318333],[-76.513062,25.352497],[-76.60695,25.426666],[-76.71584,25.44167],[-76.735291,25.55917],[-76.67834,25.544441],[-76.680283,25.48944],[-76.53334,25.39833]]],[[[-77.82194,25.702221],[-77.88806,25.774441],[-77.88806,25.785],[-77.8564,25.775276],[-77.82194,25.702221]]],[[[-77.56334,26.268887],[-77.58112,26.3186070000001],[-77.57251,26.336109000000135],[-77.53723,26.306942],[-77.56334,26.268887]]],[[[-77.91724,26.745277],[-77.938065,26.642498000000103],[-78.02112,26.658886],[-78.36612,26.610832],[-78.708618,26.489719],[-78.81917,26.5425],[-78.9789,26.69527],[-78.797791,26.58583],[-78.70418,26.583885],[-78.600281,26.701664],[-78.51889,26.73416],[-78.32722,26.688332],[-77.91724,26.745277]]],[[[-77.735001,26.914444],[-77.536957,26.891388],[-77.27501,26.620552],[-77.042236,26.50889],[-77.02779,26.359722],[-77.050003,26.306389],[-77.16833,26.228611],[-77.204727,25.880833],[-77.24556,25.88944],[-77.3025,25.980831000000137],[-77.398056,26.026386000000116],[-77.2189,26.146942],[-77.23195,26.415833],[-77.14889,26.54888],[-77.345001,26.605274],[-77.539734,26.864719],[-77.65417,26.859997000000135],[-77.83473,26.910275000000127],[-77.95029,26.89777800000013],[-77.84084,26.928333000000123],[-77.735001,26.914444]]]]}},{"type":"Feature","properties":{"FIPS":"BG","ISO2":"BD","ISO3":"BGD","UN":50,"NAME":"Bangladesh","AREA":13017,"POP2005":15328112,"REGION":142,"SUBREGION":34,"LON":89.941,"LAT":24.218},"geometry":{"type":"MultiPolygon","coordinates":[[[[91.897491,21.47666],[91.854431,21.51305],[91.843872,21.690552],[91.88109,21.75528],[91.936371,21.73416],[91.982208,21.623886],[91.964157,21.513885],[91.897491,21.47666]]],[[[90.49054,21.803608],[90.470825,21.80722],[90.46748400000013,21.82055],[90.492752,21.814442],[90.49054,21.803608]]],[[[90.43248,21.819996],[90.41276600000013,21.82361],[90.45277,21.850273],[90.4433140000001,21.823051],[90.43248,21.819996]]],[[[89.12665,21.714161],[89.073318,21.76888700000012],[89.050537,21.914719],[89.089561,21.786272],[89.14637800000014,21.748882],[89.12665,21.714161]]],[[[90.753052,21.891941],[90.740265,21.897774],[90.744431,21.922497],[90.76221,21.90638],[90.753052,21.891941]]],[[[91.832764,21.72222],[91.832764,21.888607],[91.863037,21.92805],[91.886383,21.842773000000136],[91.832764,21.72222]]],[[[90.643875,21.9061],[90.633331,21.93055],[90.665543,21.955551],[90.668045,21.939438],[90.643875,21.9061]]],[[[90.699142,21.954716],[90.684982,21.94083],[90.67526,21.949997],[90.690536,21.972771],[90.699142,21.954716]]],[[[90.522491,21.85583],[90.500824,21.86138],[90.51971400000014,21.935551],[90.58831800000011,21.981384],[90.602478,21.936661],[90.522491,21.85583]]],[[[90.3311,21.840553000000114],[90.323044,21.920273],[90.389984,21.99499500000013],[90.393875,21.98555],[90.3311,21.840553000000114]]],[[[90.41081200000013,21.89944],[90.40416,22.02027500000014],[90.430267,22.04222],[90.484985,21.964996],[90.41081200000013,21.89944]]],[[[90.374146,22.009998],[90.34166,21.966385000000116],[90.38026400000012,22.050552],[90.374146,22.009998]]],[[[90.523605,21.991104],[90.479431,22.03611],[90.486923,22.078884],[90.609711,22.166107],[90.523605,21.991104]]],[[[90.516937,22.162216],[90.51221,22.17111],[90.527771,22.17944],[90.52916,22.176105],[90.516937,22.162216]]],[[[90.93748,22.112774000000115],[90.914703,22.131939],[90.952209,22.209438],[90.95637,22.13694],[90.93748,22.112774000000115]]],[[[90.984985,22.18249500000013],[90.971924,22.24083],[90.99165,22.25916300000011],[90.996643,22.226105000000132],[90.984985,22.18249500000013]]],[[[90.94942,22.22138],[90.936646,22.237495],[90.976379,22.357773],[90.988586,22.286942000000124],[90.94942,22.22138]]],[[[91.00582900000012,22.368053],[90.98526,22.38527],[90.989975,22.414162],[91.011932,22.38694],[91.00582900000012,22.368053]]],[[[90.6602630000001,22.35638],[90.64027,22.308331],[90.61026,22.451939],[90.651093,22.39555],[90.6602630000001,22.35638]]],[[[91.036102,22.404995],[91.01805100000011,22.414719000000105],[91.040543,22.45361],[91.054428,22.42055],[91.036102,22.404995]]],[[[91.21054100000015,22.41222],[91.185532,22.39249400000011],[91.168594,22.461384000000123],[91.193863,22.453049],[91.21054100000015,22.41222]]],[[[91.007492,22.424995],[90.987762,22.44083],[91.00915,22.476383],[91.0122070000001,22.474716],[91.007492,22.424995]]],[[[90.66304,22.434994],[90.64749100000012,22.427773],[90.655548,22.478607],[90.666931,22.462494000000106],[90.66304,22.434994]]],[[[91.031662,22.084164],[91.073044,22.5075],[91.08804,22.525829],[91.17387,22.32111],[91.17469800000015,22.218605],[91.031662,22.084164]]],[[[91.529709,22.347775],[91.475266,22.36222],[91.40832,22.472218],[91.431656,22.623886],[91.559982,22.435272],[91.56749,22.381664],[91.529709,22.347775]]],[[[91.3394320000001,22.629997],[91.317764,22.608887],[91.304703,22.62833],[91.339981,22.636383000000137],[91.3394320000001,22.629997]]],[[[90.763885,22.064442],[90.671371,21.98722],[90.601089,22.034164],[90.68471,22.39249400000011],[90.665543,22.50222],[90.642761,22.55305],[90.551651,22.62749],[90.601379,22.777496],[90.679977,22.775276],[90.714706,22.6486],[90.87747200000011,22.457218],[90.82721,22.15721900000011],[90.763885,22.064442]]],[[[90.547211,22.719440000000134],[90.51944,22.685829],[90.45471,22.76722],[90.469711,22.868885],[90.587769,22.882217],[90.691086,22.84694],[90.656372,22.796387],[90.541618,22.78319],[90.547211,22.719440000000134]]],[[[90.662201,22.95638300000013],[90.63275,22.949162],[90.656097,22.912216],[90.50416600000011,22.96361],[90.570831,23.04028],[90.662201,22.95638300000013]]],[[[90.47747800000013,23.00777],[90.463318,23.05916200000013],[90.510818,23.06194],[90.51388500000013,23.048607],[90.47747800000013,23.00777]]],[[[90.529709,23.047218],[90.52192700000012,23.054718],[90.54498300000012,23.065273],[90.54776,23.058331000000123],[90.529709,23.047218]]],[[[90.540817,23.343887],[90.590271,23.302498],[90.52554,23.333607],[90.500824,23.30638],[90.421646,23.38305],[90.540817,23.343887]]],[[[90.684982,23.482773],[90.664429,23.489437],[90.650269,23.50417],[90.691925,23.49721],[90.684982,23.482773]]],[[[90.57361,23.56472],[90.564423,23.57694],[90.584152,23.58388],[90.58749,23.577774],[90.57361,23.56472]]],[[[88.433044,26.55139],[88.680817,26.420271],[88.735764,26.29351],[88.85715,26.240141],[89.02047700000014,26.23517],[89.0466770000001,26.26742],[88.91457400000013,26.36074],[88.938782,26.44582],[89.067207,26.38769900000011],[89.12967700000013,26.159269],[89.342773,26.017031],[89.54821800000013,26.015631],[89.60242,26.06896],[89.559868,26.16146],[89.601723,26.22747],[89.6386,26.227800000000116],[89.681656,26.159439],[89.73915,26.156384],[89.849014,25.90617],[89.807205,25.823051],[89.864426,25.640553000000125],[89.81554,25.36694],[89.845261,25.28861],[89.917206,25.30999800000012],[90.438309,25.147217],[90.523315,25.1747170000001],[90.848038,25.1486],[91.257767,25.207771],[91.488312,25.13805],[92.04081700000012,25.18777],[92.33248900000012,25.079441],[92.48304700000011,24.92999600000013],[92.491898,24.87598000000014],[92.401733,24.84042],[92.29359,24.904995],[92.248032,24.896385],[92.256653,24.773888000000113],[92.19109,24.5652730000001],[92.13247700000011,24.51388500000013],[92.135269,24.41416],[91.989426,24.319439],[91.9236,24.33499],[91.892487,24.149715],[91.751923,24.15444200000013],[91.546326,24.086941000000138],[91.37329100000011,24.10194],[91.237762,23.907772],[91.252777,23.840832],[91.22276,23.763885],[91.15637200000013,23.71971500000012],[91.164429,23.622498],[91.28221100000013,23.373329000000126],[91.339981,23.104996],[91.40221,23.069443],[91.37804,23.21249],[91.39276100000012,23.263332],[91.426086,23.26194],[91.4760890000001,23.218052000000114],[91.5494230000001,22.998329],[91.613602,22.94305],[91.72499,22.994717],[91.81832900000012,23.087219],[91.7686000000001,23.274166],[91.844986,23.410275],[91.933044,23.44444],[91.9644320000001,23.496662],[91.95,23.732216],[92.030548,23.645275],[92.17485,23.73682],[92.28887900000012,23.69611],[92.32332,23.456104],[92.38786,23.289547],[92.34860200000014,23.223606],[92.374695,22.94194],[92.516388,22.715828],[92.62164300000012,21.88194],[92.600266,21.634163],[92.669342,21.296982],[92.59553,21.251942],[92.53749,21.37805200000014],[92.376923,21.47416],[92.260818,21.414440000000123],[92.222214,21.358051],[92.207489,21.14361],[92.261932,21.05431],[92.263321,20.919163],[92.327484,20.73888],[92.05026,21.158051],[92.04609700000015,21.29222],[91.95526100000012,21.45055],[92.00471500000013,21.496105],[92.03943,21.660275],[92.02304100000015,21.70583],[92.015,21.66166],[91.9791560000001,21.651939],[91.95018,21.79161],[91.90138200000013,21.774441],[91.915268,21.862774],[91.856934,22.10277600000012],[91.77304,22.254997],[91.699997,22.488327],[91.455826,22.789997],[91.251099,22.659161],[91.228867,22.585552],[90.968872,22.56971700000014],[90.833603,22.68555],[90.72192400000012,22.92555],[90.62387100000012,23.058609],[90.643875,23.208328],[90.5935970000001,23.370552],[90.59860200000014,23.46277],[90.696365,23.478329],[90.7166600000001,23.544998000000135],[90.6917,23.551403],[90.691086,23.50722100000013],[90.666374,23.517673],[90.59860200000014,23.490273000000116],[90.593826,23.59796],[90.473602,23.575829],[90.578598,23.54194],[90.550262,23.38388],[90.310806,23.435829],[90.308868,23.41444],[90.42942800000014,23.323330000000112],[90.58027600000014,23.283886],[90.612488,23.222218],[90.578598,23.09],[90.44664,23.064999000000114],[90.481659,22.964718],[90.4244,22.77019],[90.49525,22.694439000000102],[90.60359,22.464439],[90.590385,22.432352],[90.614151,22.310555],[90.5641480000001,22.209717],[90.495949,22.172224],[90.431656,22.07055300000013],[90.38916,22.095551],[90.40582,22.1516610000001],[90.401382,22.260555],[90.371094,22.081387],[90.27249100000012,21.849163],[90.189697,21.798885],[90.11554000000012,21.812218],[90.024704,21.859997],[90.059036,21.988773],[89.99998,21.994499000000133],[89.99193,22.025341],[90.07998700000013,22.15971800000011],[90.033875,22.135273],[89.979462,22.0389330000001],[89.982468,21.976681],[89.95416300000011,21.973049000000113],[89.87442,22.244717],[90,22.48375],[89.841095,22.26722],[89.87082,22.10194],[89.846375,21.97166],[89.88472,21.888329],[89.5811000000001,21.70166],[89.520264,21.813332],[89.57083100000011,21.893330000000105],[89.620819,22.32444],[89.546371,22.200829],[89.580826,22.12555],[89.53887900000012,21.98582800000014],[89.475815,22.29139],[89.46165500000012,22.21693800000014],[89.518875,22.064442],[89.48767,22.032263000000114],[89.51944,21.953327],[89.466095,21.775555],[89.41748000000013,21.71277],[89.37442,21.72694],[89.38582,21.88583],[89.349716,21.96721600000012],[89.292755,21.666664],[89.203873,21.650551],[89.21666,21.723606],[89.189972,21.787498],[89.09748800000011,21.81583],[89.089561,22.014591],[89.056641,22.07749600000011],[89.096375,22.148605],[88.993317,22.32444],[88.93332,22.865829000000133],[88.862762,22.96666],[88.870255,23.087776000000133],[88.986099,23.208328],[88.7211,23.251663],[88.71138,23.308609],[88.79332,23.49416],[88.74942,23.466938],[88.56387300000011,23.652218],[88.60284,23.862396000000103],[88.736649,23.919796000000133],[88.75919,24.03603],[88.701385,24.07916],[88.699707,24.147217],[88.75053,24.220982],[88.697433,24.30958],[88.49776,24.32083100000011],[88.36554000000011,24.41194],[88.125534,24.50861],[88.04332,24.684162],[88.17109700000015,24.85166],[88.137772,24.921383],[88.221344,24.95432],[88.276932,24.888050000000135],[88.34248400000011,24.870274],[88.45999,25.069443],[88.450821,25.18777],[88.940811,25.16555000000011],[89.00943,25.28833],[88.84444,25.362495],[88.820541,25.407219],[88.838882,25.467773],[88.799713,25.510555],[88.711929,25.48499],[88.556641,25.504719],[88.450546,25.593887],[88.44693,25.666107],[88.27998,25.801662],[88.15193,25.77861],[88.11053500000014,25.83555200000012],[88.09553,25.915272],[88.18441800000011,26.152496],[88.355255,26.223328],[88.353592,26.279999],[88.39637800000013,26.325275],[88.525543,26.359718],[88.48332,26.461105],[88.37109,26.489162000000135],[88.353592,26.45166],[88.337769,26.473885],[88.409149,26.631939],[88.433044,26.55139]],[[90.237762,22.192772000000105],[90.09526,22.06166500000012],[90.06137100000011,21.991774],[90.16748000000011,22.111942],[90.216095,22.114441],[90.237762,22.192772000000105]]]]}},{"type":"Feature","properties":{"FIPS":"BH","ISO2":"BZ","ISO3":"BLZ","UN":84,"NAME":"Belize","AREA":2281,"POP2005":275546,"REGION":19,"SUBREGION":13,"LON":-88.602,"LAT":17.219},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80334,17.29416700000013],[-87.82501,17.291664000000136],[-87.82695,17.40028],[-87.79918,17.33388],[-87.80334,17.29416700000013]]],[[[-87.820557,17.426941],[-87.901947,17.389721],[-87.926682,17.275555],[-87.91833,17.417221],[-87.81946,17.55],[-87.7789,17.513332],[-87.820557,17.426941]]],[[[-88.04501,17.552776],[-88.058334,17.568054000000128],[-88.07028,17.638332],[-88.05362,17.613052],[-88.04501,17.552776]]],[[[-88.13251,17.667221],[-88.16751,17.66972],[-88.072784,17.733887],[-88.09473,17.686386],[-88.13251,17.667221]]],[[[-87.89223,18.0425],[-87.955,17.911663],[-88.006119,17.90194300000013],[-87.9039,18.147499],[-87.853058,18.164719],[-87.89223,18.0425]]],[[[-88.377792,18.482777000000112],[-88.2995,18.482929],[-88.31557,18.364166],[-88.0914,18.3727760000001],[-88.077789,18.215553],[-88.09001,18.11389],[-88.202225,17.890274],[-88.225845,17.71583],[-88.281403,17.636108],[-88.2489,17.465275],[-88.29918,17.182499],[-88.20862,16.968609],[-88.275284,16.90361],[-88.30168,16.646111000000133],[-88.35362,16.50194],[-88.34723,16.60278],[-88.39418,16.54166400000014],[-88.38834,16.489166000000125],[-88.530014,16.298054],[-88.65085,16.27972000000011],[-88.741394,16.21833],[-88.79195,16.118889],[-88.926682,15.984999],[-88.910568,15.89361],[-89.16667,15.91083],[-89.21617,15.889851000000135],[-89.145,17.013885],[-89.143051,17.956066],[-89.02528,18.00639],[-88.8414,17.903889],[-88.728058,18.054722],[-88.681122,18.185555],[-88.600021,18.23583],[-88.490433,18.4701],[-88.377792,18.482777000000112]]]]}},{"type":"Feature","properties":{"FIPS":"BK","ISO2":"BA","ISO3":"BIH","UN":70,"NAME":"Bosnia and Herzegovina","AREA":5120,"POP2005":3915238,"REGION":150,"SUBREGION":39,"LON":17.786,"LAT":44.169},"geometry":{"type":"Polygon","coordinates":[[[17.649841,42.889076],[17.578526,42.943825],[17.683609,42.967216],[17.649719,43.054993],[17.298054,43.28083],[17.261665,43.459717],[16.976387,43.586105],[16.53722,44.013611],[16.354721,44.081665],[16.264999,44.189438],[16.143055,44.19944],[16.198055,44.353607],[16.126389,44.498604],[16.033333,44.574165],[15.956944,44.699997],[15.854721,44.714439],[15.736944,44.812492],[15.781111,45.161942],[15.823332,45.205276],[16.023052,45.214996],[16.19722,45.044441],[16.291759,44.999115],[16.357018,45.008499],[16.417805,45.12426],[16.526386,45.224442],[16.824444,45.187492],[16.913925,45.265945],[17.177219,45.148605],[17.282497,45.176384],[17.483887,45.111107],[17.689999,45.122772],[17.851944,45.049438],[18.070274,45.104439],[18.197498,45.081665],[18.251942,45.138885],[18.634163,45.083328],[18.794167,44.997215],[18.800831,44.949715],[18.763885,44.945],[18.768055,44.915833],[18.861111,44.858604],[19.039719,44.861382],[19.177219,44.923607],[19.371387,44.88916],[19.31361,44.70472],[19.123402,44.514542],[19.104443,44.355827],[19.161705,44.286011],[19.357952,44.209412],[19.61972,44.052216],[19.619442,44.018883],[19.524502,43.958939],[19.374165,43.965553],[19.237019,44.011009],[19.251221,43.962379],[19.487499,43.763329],[19.51083,43.679718],[19.480553,43.571388],[19.408607,43.584442],[19.228809,43.513214],[19.006664,43.555832],[18.951664,43.512497],[18.956665,43.454437],[19.023052,43.435555],[19.093609,43.308884],[19.07222,43.248055],[19.016666,43.239441],[18.914238,43.358315],[18.83934,43.348022],[18.699997,43.255554],[18.643887,43.13916],[18.649998,43.044167],[18.524441,43.012215],[18.480553,42.964439],[18.455555,42.825554],[18.577499,42.654999],[18.455555,42.565826],[18.362499,42.626663],[18.268608,42.618332],[17.882774,42.81916],[17.797497,42.903885],[17.698055,42.927216],[17.649841,42.889076]]]}},{"type":"Feature","properties":{"FIPS":"BL","ISO2":"BO","ISO3":"BOL","UN":68,"NAME":"Bolivia","AREA":108438,"POP2005":9182015,"REGION":19,"SUBREGION":5,"LON":-64.671,"LAT":-16.715},"geometry":{"type":"Polygon","coordinates":[[[-65.190201,-22.09473],[-65.753891,-22.110001],[-65.926117,-21.933334],[-66.077515,-21.831947],[-66.223007,-21.780521],[-66.306946,-22.076946],[-66.345383,-22.116631],[-66.736679,-22.227501],[-66.774734,-22.426945],[-67.022507,-22.523891],[-67.012222,-22.64278],[-67.123062,-22.718056],[-67.183624,-22.821667],[-67.579178,-22.901112],[-67.793335,-22.878056],[-67.876404,-22.828056],[-67.848068,-22.549168],[-67.932785,-22.300282],[-67.945282,-22.102222],[-68.084457,-21.966946],[-68.102783,-21.753056],[-68.18861,-21.606392],[-68.18861,-21.296947],[-68.421112,-20.939167],[-68.5,-20.939445],[-68.55806,-20.896389],[-68.565292,-20.730003],[-68.466675,-20.628891],[-68.697235,-20.500278],[-68.756958,-20.406948],[-68.753067,-20.366112],[-68.703613,-20.338058],[-68.784729,-20.097778],[-68.574448,-20.057503],[-68.523346,-19.916389],[-68.566956,-19.833889],[-68.699722,-19.730003],[-68.4375,-19.430279],[-68.907791,-19.055279],[-68.965836,-18.953056],[-68.932785,-18.882778],[-69.024445,-18.658611],[-69.02417,-18.477222],[-69.075562,-18.389446],[-69.087509,-18.233334],[-69.149734,-18.155556],[-69.071671,-18.038891],[-69.298889,-17.973057],[-69.35556,-17.745556],[-69.490845,-17.63028],[-69.501114,-17.378891],[-69.590836,-17.29528],[-69.656189,-17.287247],[-69.53778,-17.134167],[-69.388336,-17.055],[-69.191956,-16.778057],[-69.011124,-16.656948],[-69.041672,-16.541115],[-68.990845,-16.419724],[-68.82251,-16.339725],[-68.840836,-16.295559],[-68.965012,-16.209446],[-69.13417,-16.223614],[-69.211945,-16.160557],[-69.421951,-15.618057],[-69.268341,-15.326946],[-69.136948,-15.245834],[-69.381393,-14.970001],[-69.366394,-14.802502],[-69.248901,-14.6875],[-69.228897,-14.576389],[-68.9814,-14.379168],[-68.999176,-14.243334],[-68.853058,-14.199167],[-68.891113,-14.043612],[-68.97751,-13.961668],[-69.06279,-13.707779],[-68.960556,-13.500557],[-68.974457,-12.869722],[-68.881668,-12.75889],[-68.815567,-12.733057],[-68.673904,-12.50115],[-68.92807,-11.993057],[-69.568436,-10.951092],[-69.222778,-10.950834],[-68.848892,-11.016111],[-68.764175,-11.139723],[-68.58345,-11.106138],[-68.516953,-11.054445],[-68.280563,-10.980001],[-68.061111,-10.67639],[-67.845566,-10.657501],[-67.74556,-10.712502],[-67.703339,-10.694723],[-67.582504,-10.504446],[-67.325012,-10.364445],[-67.32417,-10.320835],[-67.174454,-10.325001],[-67.080841,-10.271946],[-66.888062,-10.08639],[-66.648056,-9.942223],[-66.634445,-9.906946],[-66.430283,-9.889446],[-66.080841,-9.775278],[-65.745834,-9.770557],[-65.570007,-9.83639],[-65.442337,-9.679195],[-65.371948,-9.708889],[-65.299454,-9.842779],[-65.336945,-9.956945],[-65.287781,-10.201668],[-65.313339,-10.29389],[-65.449509,-10.47924],[-65.436951,-10.624723],[-65.300568,-10.967224],[-65.401947,-11.169724],[-65.392792,-11.26639],[-65.321396,-11.480721],[-65.2314,-11.51],[-65.168625,-11.611946],[-65.202515,-11.740002],[-65.148621,-11.777224],[-65.12149,-11.692755],[-65.063339,-11.752501],[-64.991669,-12.008057],[-64.807236,-12.029724],[-64.736389,-12.153057],[-64.513336,-12.2425],[-64.498337,-12.364168],[-64.39418,-12.461668],[-63.933891,-12.55028],[-63.797501,-12.460001],[-63.671951,-12.470556],[-63.476112,-12.564445],[-63.415558,-12.653891],[-63.33139,-12.703335],[-63.241394,-12.704445],[-63.136642,-12.636353],[-63.075005,-12.650002],[-62.994171,-12.839333],[-62.76973,-13.005835],[-62.687225,-12.966667],[-62.64389,-13.03389],[-62.384727,-13.145834],[-62.222778,-13.120001],[-62.111946,-13.1525],[-62.085556,-13.271389],[-61.874451,-13.452223],[-61.833893,-13.544724],[-61.593529,-13.50724],[-61.492783,-13.553335],[-61.038979,-13.493118],[-60.957779,-13.582779],[-60.79937,-13.676552],[-60.47084,-13.807222],[-60.383896,-13.984446],[-60.482079,-14.175547],[-60.281113,-14.623335],[-60.258896,-15.093613],[-60.571396,-15.097502],[-60.227226,-15.478613],[-60.160278,-16.263058],[-58.44445,-16.330002],[-58.386673,-16.278057],[-58.327507,-16.279167],[-58.34639,-16.506111],[-58.475769,-16.674633],[-58.397507,-17.249168],[-58.022781,-17.495556],[-57.901672,-17.461945],[-57.743057,-17.593056],[-57.77948,-17.637741],[-57.717285,-17.727577],[-57.718895,-17.845001],[-57.521118,-18.203892],[-57.771118,-18.909447],[-57.719727,-18.913891],[-57.704727,-19.043613],[-57.776672,-19.047501],[-58.121117,-19.74139],[-57.848747,-19.978794],[-58.109726,-20.14917],[-58.15889,-20.168056],[-58.130562,-19.992226],[-58.15139,-19.828056],[-59.09584,-19.348892],[-60.015938,-19.299427],[-60.613335,-19.459167],[-61.7425,-19.645],[-61.913071,-20.080009],[-62.269447,-20.562225],[-62.258896,-21.056946],[-62.643768,-22.238903],[-62.789452,-22.12278],[-62.811951,-21.996948],[-63.941116,-22.000835],[-64.126678,-22.410278],[-64.253342,-22.56778],[-64.324722,-22.873611],[-64.360001,-22.740837],[-64.452515,-22.648335],[-64.461945,-22.514446],[-64.52612,-22.40889],[-64.542511,-22.26667],[-64.590561,-22.214725],[-64.988342,-22.090836],[-65.190201,-22.09473]]]}},{"type":"Feature","properties":{"FIPS":"BM","ISO2":"MM","ISO3":"MMR","UN":104,"NAME":"Burma","AREA":65755,"POP2005":47967266,"REGION":142,"SUBREGION":35,"LON":96.041,"LAT":21.718},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.035812,9.78639],[98.008881,9.806665],[98.0249940000001,9.838331],[98.06026,9.81361],[98.035812,9.78639]]],[[[98.29332,10.010277],[98.174149,9.922775],[98.13832,9.838331],[98.1160890000001,9.852497],[98.115814,9.916109],[98.178589,10.017776],[98.283051,10.05749900000012],[98.29332,10.010277]]],[[[98.186646,10.040276],[98.16748000000013,10.145554000000118],[98.19859300000012,10.189999],[98.238876,10.165833],[98.186646,10.040276]]],[[[97.907486,10.396944000000133],[97.89027,10.40916],[97.90359500000011,10.490831],[97.942749,10.44278],[97.907486,10.396944000000133]]],[[[98.216385,10.48139],[98.18248000000011,10.5075],[98.238876,10.53],[98.227768,10.491108],[98.216385,10.48139]]],[[[98.523605,10.781666],[98.494431,10.791943],[98.49054,10.88639],[98.55081,10.850275],[98.523605,10.781666]]],[[[97.91971,10.858332],[97.885818,10.843609],[97.9160920000001,10.92944],[97.948029,10.91361],[97.91971,10.858332]]],[[[98.212204,10.947777],[98.269989,10.815832],[98.264435,10.68972],[98.23193400000014,10.687498],[98.24136,10.822498],[98.214157,10.864443000000108],[98.15193,10.923332],[98.075546,10.88611],[98.14166300000011,10.977221],[98.212204,10.947777]]],[[[98.437195,10.961943000000133],[98.429977,10.995831],[98.45277,11.007776],[98.4536,10.979998],[98.437195,10.961943000000133]]],[[[98.53387,10.950554],[98.483871,10.949165],[98.47053,10.98389],[98.524994,11.087219000000118],[98.53387,10.950554]]],[[[98.256104,11.2125],[98.231094,11.262499],[98.27777100000014,11.276388],[98.298035,11.22916400000014],[98.256104,11.2125]]],[[[98.207489,11.443609],[98.16554300000013,11.453331],[98.289154,11.798609],[98.32111,11.726942],[98.28082300000011,11.481665],[98.207489,11.443609]]],[[[98.49832200000014,11.566109],[98.425537,11.562498],[98.37498,11.67722],[98.371368,11.78611],[98.548874,11.78833],[98.546936,11.610554],[98.49832200000014,11.566109]]],[[[97.487198,11.774443000000133],[97.447205,11.792221],[97.437759,11.803331],[97.4616550000001,11.80305],[97.487198,11.774443000000133]]],[[[98.08998,11.631109],[98.03305100000011,11.68305400000014],[98.007217,11.858332],[98.015823,11.8555530000001],[98.08998,11.631109]]],[[[97.66832000000011,11.836943],[97.633881,11.87611],[97.664429,11.90111],[97.67747,11.879719000000136],[97.66832000000011,11.836943]]],[[[98.2711,11.84972],[98.251694,11.863884],[98.26026900000011,11.907221],[98.28804,11.887499000000105],[98.2711,11.84972]]],[[[98.256378,11.92111],[98.226379,11.94972],[98.251663,11.980276],[98.26915,11.93611],[98.256378,11.92111]]],[[[98.5,11.884443],[98.46582000000012,11.90361],[98.438583,12.11139],[98.51899700000013,12],[98.66499,11.941942],[98.5,11.884443]]],[[[98.141937,12.141943],[98.038589,12.203053000000125],[98.05554200000012,12.281111],[98.124695,12.27861],[98.141937,12.141943]]],[[[98.64082300000013,12.37222],[98.626083,12.370552],[98.61914100000013,12.378885000000139],[98.63971,12.380552],[98.64082300000013,12.37222]]],[[[98.617805,12.352951],[98.68248,12.340553],[98.559708,12.328886],[98.540817,12.370552],[98.57193,12.409164],[98.617805,12.352951]]],[[[98.09166,12.360554],[98.00555400000013,12.281942],[97.937485,12.337498],[97.94942,12.38],[98.076935,12.416388],[98.10498,12.40083],[98.09166,12.360554]]],[[[98.501099,12.402222],[98.47192,12.417776000000117],[98.498871,12.513887],[98.515823,12.502499000000114],[98.501099,12.402222]]],[[[98.285812,12.502499000000114],[98.2433170000001,12.49222],[98.22971,12.548054],[98.265,12.555832],[98.285812,12.502499000000114]]],[[[97.853592,12.539999],[97.81776400000012,12.583332],[97.8374940000001,12.598053],[97.867477,12.56667],[97.853592,12.539999]]],[[[98.349426,12.316942],[98.30331400000011,12.33555],[98.33387800000014,12.429998000000126],[98.299423,12.62472],[98.32193000000012,12.67111],[98.394989,12.646387000000118],[98.466934,12.570831],[98.45915200000013,12.459442],[98.349426,12.316942]]],[[[97.872208,12.764166000000102],[97.83728,12.772419000000127],[97.844147,12.81944],[97.858032,12.80749900000012],[97.872208,12.764166000000102]]],[[[98.304153,13.041666],[98.298035,12.94139],[98.239426,13.21333],[98.263321,13.207499],[98.304153,13.041666]]],[[[97.92109700000015,13.783054],[97.9094240000001,13.792776000000117],[97.92192100000011,13.861664000000133],[97.93470800000011,13.85166],[97.92109700000015,13.783054]]],[[[97.924423,13.90583],[97.923035,13.894444],[97.91835,13.939081000000101],[97.923309,13.93028],[97.924423,13.90583]]],[[[93.380539,14.064165],[93.3724820000001,14.07527],[93.386383,14.151665],[93.400818,14.096109],[93.380539,14.064165]]],[[[97.80636600000014,14.13444],[97.789154,14.15528],[97.814148,14.179998000000124],[97.82527,14.174166],[97.80636600000014,14.13444]]],[[[93.72249,14.904444],[93.689972,14.85389],[93.67915,14.848331],[93.6922,14.890833],[93.72249,14.904444]]],[[[97.669708,15.521387],[97.66304,15.49722],[97.65416,15.57833],[97.665268,15.576387],[97.669708,15.521387]]],[[[94.79776,15.791666],[94.728043,15.815275],[94.820541,15.948053],[94.83943,15.87444],[94.79776,15.791666]]],[[[94.583328,16.00972],[94.415817,15.868053],[94.386658,15.99583],[94.464996,16.03722],[94.64943,16.245274],[94.66081200000013,16.137218],[94.583328,16.00972]]],[[[97.56915,16.233604],[97.52054,16.240273000000116],[97.46582000000012,16.316109],[97.44859300000013,16.448051],[97.51555,16.50611],[97.61665,16.465271000000143],[97.56915,16.233604]]],[[[93.671097,18.86749600000013],[93.75000000000011,18.86749600000013],[93.75582900000012,18.731663],[93.703049,18.66805],[93.63361,18.686108000000104],[93.484421,18.869717],[93.671097,18.86749600000013]]],[[[93.790924,19.231342],[93.870392,19.25465800000012],[93.896652,19.20499],[93.98553500000014,18.96527],[93.94220000000013,18.862495],[93.702774,19.014721],[93.486649,19.326385],[93.49054,19.400829],[93.54193,19.42999600000013],[93.60914600000011,19.402775000000133],[93.66832,19.29583],[93.790924,19.231342]]],[[[93.80165,19.268608],[93.64415,19.481937],[93.68275,19.560555],[93.96832300000011,19.42083],[93.967285,19.3693540000001],[93.916382,19.309719],[93.80165,19.268608]]],[[[93.513046,19.74444],[93.43775900000014,19.799442],[93.395828,19.95527],[93.4986,19.88055],[93.513046,19.74444]]],[[[93.024429,19.827774],[92.9088749999999,20.060829],[92.91249,20.086662],[92.95444,20.06361],[93.024429,19.827774]]],[[[97.80664100000013,28.344162],[97.908875,28.376385],[98.018875,28.278332],[98.013046,28.214718],[98.146652,28.146942000000134],[98.14498900000012,28.00278],[98.3163760000001,27.541943],[98.397491,27.546387],[98.458878,27.672497000000135],[98.646103,27.605274],[98.699707,27.539165],[98.685532,27.466106],[98.736649,27.329163],[98.69165,27.20194],[98.777771,26.791664],[98.77832,26.636383],[98.701096,26.25194],[98.730545,26.177219],[98.664429,26.09833100000014],[98.64888000000013,26.151661],[98.56805,26.12305],[98.605255,25.988605],[98.709152,25.90527],[98.710815,25.85555],[98.631927,25.801109000000107],[98.530823,25.845551],[98.383041,25.591942],[98.32666000000012,25.551662],[98.191086,25.615273000000116],[98.135544,25.410275],[98.069443,25.314442],[97.917206,25.2075],[97.87303,25.25861],[97.82971,25.255554],[97.789429,25.137497],[97.725815,25.06472],[97.736649,24.918884],[97.689423,24.834442000000134],[97.552475,24.74305],[97.543045,24.47666],[97.669144,24.44083000000012],[97.7599950000001,24.257496],[97.724701,24.118053],[97.535538,23.939716],[97.62387,23.898331],[97.649979,23.851704],[97.912491,24.02666],[98.0644840000001,24.089096],[98.446594,24.134956],[98.590576,24.092121],[98.837463,24.124264],[98.890732,24.160069000000135],[98.893906,24.09795],[98.6772,23.96805],[98.687485,23.816387],[98.821381,23.75861],[98.85277,23.637775],[98.80693100000013,23.535553],[98.8247070000001,23.48083],[98.879974,23.483604],[98.914703,23.417217],[98.927475,23.189163],[99.111099,23.10194],[99.35637,23.134995000000117],[99.5038760000001,23.089718],[99.566376,22.93805],[99.442474,22.869995],[99.34082,22.716938],[99.384995,22.60333],[99.38443,22.50389],[99.287766,22.401386],[99.16277,22.15916],[99.232483,22.114441],[99.359421,22.093052],[99.46555,22.13583],[99.667755,22.084721],[99.709152,22.039719000000105],[99.749146,22.075275],[99.9644320000001,22.04888],[99.99054,21.958328000000108],[99.941925,21.824997],[99.97360200000014,21.733883],[100.141373,21.634163],[100.1060870000001,21.583332],[100.122482,21.5075],[100.212753,21.432552],[100.37886,21.538887],[100.429977,21.52861000000013],[100.48137,21.45916],[100.588593,21.456104],[100.725273,21.513332],[100.840553,21.650272],[101.105263,21.771385],[101.170822,21.604717],[101.16165,21.530552],[101.005257,21.40083],[100.83471700000013,21.302498000000128],[100.722603,21.30771],[100.67192100000011,21.128052],[100.62136800000013,21.051662],[100.545532,21.025276],[100.51998900000012,20.94944],[100.52554,20.871109],[100.63361,20.891541],[100.64721700000013,20.87055],[100.53194,20.80527],[100.368874,20.82694],[100.25388,20.74555],[100.175262,20.635273],[100.08943,20.34722],[99.959152,20.455273],[99.86998,20.427219],[99.79748,20.331387],[99.673599,20.310829],[99.522766,20.35277600000012],[99.50221,20.308887000000137],[99.55525,20.19361],[99.538879,20.149441000000138],[99.45972,20.100273],[99.32554600000014,20.06611],[99.1702580000001,20.128052],[99.068878,20.090832],[99.02249100000012,19.92777],[99.036102,19.84277],[98.995529,19.780552],[98.8961,19.770554],[98.836929,19.816387000000134],[98.476028,19.69367],[98.24220300000013,19.689995],[98.13943,19.783054000000106],[98.049988,19.80749900000012],[98.03499,19.643887],[97.86908,19.570175],[97.79248000000013,19.401939],[97.834152,19.289997],[97.83638000000013,19.10110900000012],[97.6772,18.93416],[97.747757,18.86555],[97.7747,18.569996],[97.652771,18.562218],[97.54470800000011,18.5],[97.458603,18.49277100000012],[97.359985,18.583054],[97.34637,18.562496000000124],[97.501389,18.27583],[97.535812,18.268608],[97.563599,18.327774],[97.64305100000013,18.290276],[97.61804,18.23138],[97.75194,17.972218],[97.686646,17.86444],[97.77832,17.703327],[97.96887200000015,17.52833],[98.118866,17.313885],[98.374695,17.05055],[98.4236,17.053329],[98.511108,16.941105],[98.54999,16.854717000000107],[98.47777,16.73499],[98.6624910000001,16.460274],[98.68969700000014,16.284996],[98.71582,16.276386000000116],[98.86499000000015,16.438606000000107],[98.92637600000012,16.39111],[98.91859,16.26861],[98.856094,16.137775],[98.808029,16.10305],[98.68248,16.12444],[98.631653,16.046108],[98.565262,15.72277],[98.596375,15.45833],[98.579987,15.35305],[98.558868,15.329998000000103],[98.497482,15.387777],[98.42248,15.359997000000135],[98.397766,15.27111100000013],[98.205475,15.226778],[98.20109600000012,15.074999],[98.259995,14.816666],[98.32027,14.719997],[98.44775400000013,14.605831],[98.61692800000014,14.319164],[98.971649,14.08361],[99.173965,13.727781],[99.21277,13.216108],[99.120819,13.17583100000013],[99.112198,13.05583],[99.245255,12.723608],[99.43623400000013,12.574434],[99.455551,12.298609],[99.49971,12.188332000000116],[99.57332,12.136665],[99.55664100000011,12.01583],[99.584717,11.881386],[99.66165200000012,11.82694],[99.56915300000014,11.63722],[99.46555,11.568331],[99.174149,11.04749900000013],[99.04887400000013,10.958054],[98.7872,10.68222],[98.77388,10.616941],[98.82388300000014,10.516666],[98.546646,9.981665],[98.50722,10.15694],[98.53387,10.346109],[98.492203,10.449165000000107],[98.4602660000001,10.73444],[98.53887900000011,10.69666],[98.627472,10.84611],[98.710815,10.91833],[98.694138,11.136387],[98.758331,11.264999],[98.701935,11.374998],[98.74359,11.666943000000115],[98.82666,11.708887000000118],[98.89055,11.700275],[98.784988,11.766943],[98.687485,11.675554],[98.59749,11.751665],[98.66304,11.91639],[98.7219240000001,11.976109],[98.65462500000012,12.168668],[98.71043,12.199413],[98.70587200000011,12.224465],[98.68652,12.24192],[98.597214,12.193888000000129],[98.53316,12.24572],[98.56805,12.294998],[98.68385300000011,12.31613],[98.70359000000013,12.340046],[98.603592,12.421665],[98.619705,12.55305],[98.680817,12.690832000000114],[98.636932,12.868608],[98.59137,12.920277],[98.583328,13.172775],[98.474701,13.284721],[98.431091,13.47416],[98.28665200000012,13.684164000000122],[98.185532,14.059164000000123],[98.198029,13.661943],[98.18166,13.53722],[98.13888500000013,13.53972],[98.07748400000014,13.786943000000122],[98.10247800000013,13.807499],[98.08943,14.17861],[97.983047,14.355831],[97.797256,14.881962],[97.8119200000001,15.146387],[97.742752,15.252222],[97.736099,15.35889],[97.779709,15.426664],[97.72554,15.842775],[97.56888,16.06861],[97.616379,16.11639],[97.650818,16.2675],[97.621094,16.355274000000122],[97.633881,16.488327],[97.737488,16.56388],[97.41026,16.524441],[97.378036,16.49499],[97.204712,16.84471900000011],[97.21431000000013,16.900394],[97.186096,16.899719],[97.150269,17.123886],[97.06165,17.25194],[96.897217,17.378052],[96.87803600000011,17.449997],[96.84221,17.40499],[96.87942,17.34444],[96.84304800000012,17.198883000000137],[96.912201,17.030552],[96.875259,16.92332800000014],[96.80664,16.903049],[96.847488,16.846943000000124],[96.777771,16.70388400000013],[96.603317,16.542221],[96.3797,16.501389],[96.26471,16.597496],[96.22026,16.75027],[96.283875,16.8102760000001],[96.24193,16.803734],[96.195816,16.766388],[96.228867,16.585552],[96.312302,16.4578],[96.26833,16.389717000000132],[96.18275,16.3475],[96.0068,16.38307],[96.07361,16.334995],[96.06554,16.30083100000013],[95.9711,16.216938],[95.88971,16.23860500000012],[95.753326,16.14444],[95.670822,15.957775000000138],[95.428589,15.729719],[95.378586,15.71],[95.285538,15.733332],[95.277771,15.83],[95.36499000000015,15.989164],[95.360809,16.144718],[95.3247070000001,16.106106],[95.34332300000011,15.99083],[95.26361,15.863609000000109],[95.236099,15.880552],[95.27331500000014,16.002777],[95.233597,15.93778],[95.216385,15.782776000000124],[95.1660920000001,15.777498],[95.12303,15.815832000000114],[95.108032,16.06361],[95.22693,16.11694],[95.137207,16.137218],[95.06944,16.060829],[95.039978,15.805832000000125],[94.958328,15.75222],[94.848877,15.77972],[94.83638,15.956387],[94.887283,16.01781],[94.861374,16.13055],[94.990814,16.24666200000013],[94.873032,16.183605],[94.84444,16.126942],[94.840271,15.99333],[94.721375,15.854164],[94.65054,15.854164],[94.604156,15.921387],[94.72554,16.008331],[94.793045,16.153606],[94.75915500000013,16.13832900000011],[94.712769,16.016388],[94.605255,15.936943],[94.56026,15.94194],[94.679703,16.115829],[94.686371,16.195827],[94.63109,16.342773000000136],[94.556641,16.27083],[94.51422100000012,16.289347000000134],[94.508606,16.181938],[94.436096,16.06861],[94.245529,15.96],[94.199707,16.032497],[94.231934,16.348331000000144],[94.350266,16.565552],[94.4061,16.795830000000137],[94.393326,16.846107],[94.52527,17.173328],[94.569717,17.501942],[94.6147,17.546387],[94.493866,17.83333],[94.46693,18.003052],[94.48831200000012,18.07111],[94.383331,18.36277],[94.244141,18.53083],[94.23858600000011,18.737774],[94.147217,18.867218],[94.120255,18.811108],[94.033051,18.856106],[94.047394,19.24499],[93.976089,19.143051000000128],[93.874306,19.25597],[93.975266,19.354164],[93.991928,19.457218],[93.909714,19.476940000000127],[93.73637400000013,19.61777],[93.684418,19.71944],[93.59915200000012,19.719715],[93.60109,19.790833],[93.662766,19.87944],[93.734421,19.88166],[93.728592,19.931664],[93.582489,19.87722],[93.50867,19.957069000000104],[93.41748,19.96749],[93.371094,20.041943000000117],[93.16638,20.053329],[93.128311,20.085552],[93.246643,19.823887],[93.21748400000013,19.83083],[93.136818,19.983274],[93.099152,19.955551],[93.16721,19.802498],[93.12997400000012,19.835552],[92.972214,20.12277],[93.05859,20.129997],[93.116379,20.181107],[93.1141510000001,20.218605],[92.99220300000013,20.148884],[93.08166,20.548607],[93.022491,20.440552],[93.00360100000012,20.28889],[92.893051,20.12055],[92.860809,20.121109],[92.765274,20.208607],[92.891937,20.322773],[92.796097,20.48999],[92.634995,20.692219000000136],[92.711655,20.581387000000117],[92.7327580000001,20.258331],[92.505554,20.610275],[92.37387100000012,20.700829],[92.207489,21.14361],[92.222214,21.358051],[92.363037,21.47333],[92.53749,21.37805200000014],[92.59553,21.251942],[92.669342,21.296982],[92.600266,21.634163],[92.62164300000012,21.875828],[92.600815,21.982216],[92.679703,22.02694300000013],[92.70054600000014,22.15583],[92.924423,22.004997],[92.99081400000011,22.048607],[93.047485,22.20583],[93.15387,22.186661],[93.19664000000012,22.256386],[93.18054200000012,22.440552],[93.13611,22.47444],[93.092758,22.714439],[93.138046,23.04805],[93.20138,23.058887],[93.23887600000012,23.008888000000127],[93.303314,23.014721000000122],[93.35026600000015,23.07333],[93.388596,23.223328],[93.371918,23.35777],[93.42276,23.662495],[93.328049,23.981663],[93.33873,24.077915],[93.40576,24.07634],[93.48193,23.964996],[93.596375,23.972218],[93.62135300000011,24.01611],[93.753311,24.007496],[93.819153,23.935272],[93.926651,23.95583],[94.151093,23.855274],[94.313873,24.285831],[94.472214,24.5816650000001],[94.618317,24.76028],[94.734421,25.024719],[94.728592,25.136383],[94.599426,25.17833],[94.57638,25.214439],[94.62553400000012,25.397774],[94.695251,25.4725],[94.78943,25.496662],[94.885269,25.578609],[94.996368,25.732216],[95.059982,25.943607],[95.17804,26.058887],[95.113312,26.138329],[95.065262,26.325554],[95.066376,26.479717],[95.14137,26.612495],[95.246368,26.679718],[95.271103,26.644718000000125],[95.441086,26.70916],[95.51944,26.823051000000135],[95.610809,26.821384],[95.803864,27.00111],[95.919144,27.035553000000107],[96.03581200000012,27.192493],[96.194138,27.270832],[96.49664,27.302219],[96.621918,27.365829000000133],[96.729156,27.365551],[96.82332,27.31944],[96.888321,27.178051],[97.059723,27.093002],[97.136658,27.085831],[97.15887,27.13861],[96.905258,27.451660000000118],[96.888885,27.6175],[97.361099,27.94083000000012],[97.380539,27.991383],[97.316086,28.089165],[97.35193,28.23333],[97.410538,28.292496],[97.468872,28.296108],[97.555252,28.548054],[97.71138,28.516941],[97.80664100000013,28.344162]]]]}},{"type":"Feature","properties":{"FIPS":"BN","ISO2":"BJ","ISO3":"BEN","UN":204,"NAME":"Benin","AREA":11062,"POP2005":8490301,"REGION":2,"SUBREGION":11,"LON":2.469,"LAT":10.541},"geometry":{"type":"Polygon","coordinates":[[[2.484418,6.340486],[1.635404,6.218721],[1.6525,6.250278],[1.799327,6.281057],[1.749166,6.456666],[1.575278,6.679722],[1.609167,6.880833],[1.548523,6.995179],[1.6425,6.995555],[1.617778,9.049721],[1.567222,9.169998],[1.416667,9.32111],[1.388611,9.492222],[1.364254,9.481348],[1.3375,9.5425],[1.37,9.636389],[1.355,9.995277],[0.776667,10.376665],[0.785278,10.524443],[0.804444,10.718887],[0.879444,10.799721],[0.91797,10.996399],[0.985278,11.079443],[1.083055,11.122499],[1.192778,11.265276],[1.264722,11.246111],[1.351111,11.3025],[1.328333,11.351387],[1.435278,11.458887],[1.568611,11.452499],[1.609167,11.388332],[1.862222,11.445276],[2.020033,11.426077],[2.308888,11.688332],[2.397925,11.896152],[2.378054,12.240274],[2.665006,12.302771],[2.83862,12.396658],[3.010035,12.268585],[3.250625,12.020784],[3.312222,11.889999],[3.473611,11.853611],[3.604459,11.693274],[3.475,11.429722],[3.694722,11.134722],[3.735774,11.120634],[3.731667,11.029444],[3.775278,10.898611],[3.748611,10.803055],[3.846666,10.703054],[3.855,10.584999],[3.793611,10.405554],[3.683888,10.448055],[3.637222,10.411665],[3.581944,10.275276],[3.683888,10.170555],[3.609444,9.948055],[3.525278,9.844166],[3.476944,9.856943],[3.346666,9.809166],[3.331111,9.755833],[3.363328,9.681939],[3.141666,9.441111],[3.166389,9.302776],[3.095,9.090555],[2.789444,9.043888],[2.742958,8.770763],[2.762777,8.519165],[2.709167,8.338888],[2.753611,8.206944],[2.6925,7.906388],[2.742222,7.808611],[2.778611,7.134444],[2.725277,6.954444],[2.756389,6.910555],[2.756667,6.570833],[2.719606,6.365505],[2.484418,6.340486]]]}},{"type":"Feature","properties":{"FIPS":"BP","ISO2":"SB","ISO3":"SLB","UN":90,"NAME":"Solomon Islands","AREA":2799,"POP2005":472419,"REGION":9,"SUBREGION":54,"LON":160.109,"LAT":-9.611},"geometry":{"type":"MultiPolygon","coordinates":[[[[166.850525,-11.69694],[166.789429,-11.67389],[166.74023,-11.60222],[166.76138300000014,-11.579445],[166.862183,-11.585278],[166.93191500000012,-11.66722],[166.850525,-11.69694]]],[[[160.080811,-11.498055],[160.43914800000016,-11.681389],[160.51803600000014,-11.750557],[160.527466,-11.808056],[160.46856700000012,-11.840277],[160.380249,-11.780001],[160.3605040000001,-11.71833],[160.267761,-11.634445],[160.204956,-11.658611],[160.0285950000001,-11.6075],[159.960785,-11.52167],[160.00415,-11.467222],[160.080811,-11.498055]]],[[[159.853302,-11.32472],[159.8033140000001,-11.31611],[159.776642,-11.28861],[159.841644,-11.303888],[159.853302,-11.32472]]],[[[166.535248,-11.36389],[166.492188,-11.34972],[166.491333,-11.28306],[166.51803600000017,-11.271112],[166.563293,-11.28167],[166.58053600000017,-11.32417],[166.535248,-11.36389]]],[[[162.474976,-10.85555],[162.464691,-10.818333],[162.48135400000012,-10.807501],[162.500549,-10.84],[162.474976,-10.85555]]],[[[166.139984,-10.761112],[166.05832,-10.79611],[165.967194,-10.771389],[165.88303,-10.87361],[165.80414,-10.852777],[165.777466,-10.805],[165.778046,-10.765278],[165.904144,-10.673611],[166.153595,-10.675],[166.139984,-10.761112]]],[[[161.75137,-10.294445],[161.713013,-10.24972],[161.7199710000001,-10.214722],[161.77191200000016,-10.25445],[161.75137,-10.294445]]],[[[161.5452580000001,-10.27667],[161.726898,-10.40611],[161.83914200000015,-10.44805],[162.009705,-10.481112],[162.108582,-10.449999],[162.289429,-10.68861],[162.26331,-10.78556],[162.3908080000001,-10.841944],[162.117462,-10.82778],[161.77832000000012,-10.720833],[161.5369260000001,-10.538334],[161.49857,-10.367777],[161.2833250000001,-10.33194],[161.301361,-10.20667],[161.43887,-10.21944],[161.5452580000001,-10.27667]]],[[[167.203857,-9.963612],[167.190247,-9.95694],[167.18829300000016,-9.942223],[167.208008,-9.95083],[167.203857,-9.963612]]],[[[167.1277470000001,-9.88083],[167.110779,-9.87861],[167.108002,-9.869165],[167.12634300000013,-9.86722],[167.1277470000001,-9.88083]]],[[[167.103302,-9.851665],[167.092194,-9.851665],[167.08941700000014,-9.8475],[167.10858,-9.84083],[167.103302,-9.851665]]],[[[161.97467,-9.85305],[161.93164100000013,-9.76111],[161.944702,-9.690277],[161.97412,-9.68972],[161.97467,-9.85305]]],[[[161.387482,-9.46861],[161.381348,-9.46944],[161.38552900000013,-9.45444],[161.38888,-9.45778],[161.387482,-9.46861]]],[[[161.569122,-9.72417],[161.556091,-9.79917],[161.500549,-9.73222],[161.43747,-9.73083],[161.39721700000018,-9.669445],[161.40516700000012,-9.47232],[161.349976,-9.338888],[161.4122,-9.38889],[161.53775,-9.595833],[161.569122,-9.72417]]],[[[159.938293,-9.43361],[160.38638300000014,-9.42667],[160.58304,-9.54972],[160.781921,-9.73361],[160.83108500000014,-9.861944],[160.650269,-9.93],[160.311646,-9.81861],[160.06829800000014,-9.828888],[159.828033,-9.796946],[159.732727,-9.711945],[159.616913,-9.5375],[159.60189800000012,-9.317223],[159.727173,-9.255556],[159.938293,-9.43361]]],[[[159.828583,-9.172501],[159.8019100000001,-9.14194],[159.81137100000012,-9.11083],[159.84579500000018,-9.138056],[159.828583,-9.172501]]],[[[160.411102,-9.13667],[160.35913100000016,-9.19083],[160.3042600000001,-9.16042],[160.2438350000001,-9.19611],[160.21246,-9.17055],[160.27142300000014,-9.154221],[160.31857300000013,-9.06028],[160.411102,-9.13667]]],[[[159.204407,-9.13333],[159.174988,-9.139444],[159.16803,-9.102777],[159.228302,-9.025557],[159.23663,-9.091944],[159.204407,-9.13333]]],[[[160.29941,-9.058056],[160.26443,-9.13194],[160.191925,-9.087778],[160.111084,-9.091944],[160.07608,-9.04667],[160.192474,-8.996666],[160.29941,-9.058056]]],[[[159.14749100000017,-9.10889],[159.0994,-9.11972],[159.03247,-9.06028],[159.096619,-8.995832],[159.13721,-8.99444],[159.191345,-9.027779],[159.14749100000017,-9.10889]]],[[[160.11218,-8.99722],[160.065796,-9.0175],[160.073303,-8.94778],[160.10968000000014,-8.96333],[160.11218,-8.99722]]],[[[160.04721,-8.915277],[160.010803,-8.9025],[160.008331,-8.88472],[160.029419,-8.88028],[160.04721,-8.915277]]],[[[161.060791,-8.748055],[161.044434,-8.7725],[161.048309,-8.750834],[161.00943,-8.754168],[161.060791,-8.748055]]],[[[157.633881,-8.748055],[157.650818,-8.77722],[157.619965,-8.800833],[157.443848,-8.715],[157.55636600000014,-8.69194],[157.633881,-8.748055]]],[[[158.20523100000014,-8.83333],[158.14971900000012,-8.78139],[158.213593,-8.68111],[158.253876,-8.793333],[158.20523100000014,-8.83333]]],[[[158.003052,-8.771112],[157.87551900000017,-8.68444],[157.87551900000017,-8.609999],[157.9935610000001,-8.50889],[158.116913,-8.53333],[158.140808,-8.56778],[158.10580400000015,-8.69805],[158.003052,-8.771112]]],[[[157.408325,-8.500834],[157.372742,-8.57944],[157.33551,-8.57667],[157.32663000000014,-8.641111],[157.38443,-8.734444],[157.30746,-8.69444],[157.199127,-8.565834],[157.353577,-8.41056],[157.408325,-8.500834]]],[[[159.683319,-8.54695],[159.53748,-8.46833],[159.533875,-8.41],[159.56884800000012,-8.378887],[159.643036,-8.39444],[159.700531,-8.51222],[159.683319,-8.54695]]],[[[162.741058,-8.373888],[162.75888,-8.373888],[162.76165800000012,-8.378056],[162.72525,-8.381388],[162.741058,-8.373888]]],[[[160.974396,-8.8475],[161.023041,-8.842777],[161.1655270000001,-8.974167],[161.22662400000013,-9.117777],[161.2033080000001,-9.14194],[161.376617,-9.50528],[161.378021,-9.635],[161.29357900000014,-9.56806],[161.19720500000017,-9.399723],[160.88107300000013,-9.18194],[160.809143,-9.065001],[160.65637200000015,-8.615276],[160.718842,-8.56444],[160.709961,-8.523056],[160.589142,-8.385],[160.580261,-8.33],[160.751099,-8.31222],[160.979126,-8.584723],[161.010803,-8.653889],[160.93054,-8.76361],[160.974396,-8.8475]]],[[[157.124664,-8.25528],[157.151367,-8.342777],[157.02304100000012,-8.190834],[157.08136,-8.19639],[157.124664,-8.25528]]],[[[157.20746,-8.27028],[157.20276,-8.292778],[157.092468,-8.16583],[157.18081700000016,-8.17055],[157.20746,-8.27028]]],[[[156.8449710000001,-8.118332],[156.7833250000001,-8.09805],[156.782745,-8.05528],[156.829956,-8.076389],[156.8449710000001,-8.118332]]],[[[157.631622,-8.23639],[157.72498,-8.220833],[157.77914,-8.24861],[157.905823,-8.47972],[157.87634300000013,-8.566389],[157.8119200000001,-8.62083],[157.733856,-8.515],[157.656921,-8.50556],[157.58163500000012,-8.44444],[157.55969200000013,-8.32667],[157.583588,-8.39361],[157.618011,-8.416666],[157.6283,-8.3875],[157.534973,-8.25528],[157.362457,-8.27444],[157.29303,-8.341389],[157.2363590000001,-8.31222],[157.214417,-8.243055],[157.42276000000015,-7.993333],[157.497467,-7.965556],[157.59747300000015,-8.026112],[157.631622,-8.23639]]],[[[156.598846,-8.20305],[156.531921,-8.09194],[156.542206,-7.944722],[156.60385,-8.04833],[156.598846,-8.20305]]],[[[157.1561,-8.150278],[157.03082,-8.12028],[156.96774300000016,-8.04639],[156.947205,-7.966389],[157.027191,-7.86528],[157.121887,-7.85917],[157.183594,-7.931666],[157.20413,-8.05944],[157.1561,-8.150278]]],[[[158.57189900000014,-7.70361],[158.5321960000001,-7.691388],[158.54999,-7.66417],[158.57053,-7.67778],[158.57189900000014,-7.70361]]],[[[156.706635,-7.897223],[156.70303300000012,-7.95083],[156.504425,-7.70778],[156.49884,-7.63167],[156.554413,-7.578611],[156.621613,-7.5875],[156.808594,-7.726666],[156.706635,-7.897223]]],[[[158.530823,-7.65417],[158.359406,-7.64056],[158.31274,-7.58083],[158.381897,-7.567223],[158.530823,-7.65417]]],[[[159.852448,-8.333889],[159.886932,-8.566389],[159.622467,-8.36056],[159.202179,-8.184723],[158.843292,-7.97528],[158.841919,-7.938611],[158.60598800000014,-7.769793],[158.57458,-7.66241],[158.48745700000018,-7.55417],[158.64859,-7.56861],[158.761658,-7.625],[159.07608,-7.90333],[159.388031,-7.994166],[159.852448,-8.333889]]],[[[158.42941,-7.52972],[158.416382,-7.563055],[158.370514,-7.552777],[158.26276,-7.4775],[158.42941,-7.52972]]],[[[157.7816470000001,-7.47611],[157.70914,-7.47611],[157.68359,-7.41556],[157.74939000000018,-7.393889],[157.7816470000001,-7.47611]]],[[[155.58746,-7.390556],[155.517761,-7.389723],[155.510803,-7.351111],[155.584686,-7.331944],[155.61273,-7.369444],[155.58746,-7.390556]]],[[[155.85886,-7.10028],[155.769135,-7.12944],[155.669708,-7.088056],[155.7402340000001,-6.9675],[155.85968000000014,-7.043612],[155.85886,-7.10028]]],[[[156.110229,-6.94111],[156.08496100000013,-6.98944],[156.04193,-6.858611],[156.074677,-6.819167],[156.110229,-6.94111]]],[[[156.01998900000012,-6.82472],[156,-6.80361],[156.0452580000001,-6.78861],[156.04663100000016,-6.80305],[156.01998900000012,-6.82472]]],[[[157.42886,-7.32444],[157.5083310000001,-7.30139],[157.5336,-7.31694],[157.52832,-7.376389],[157.443848,-7.43389],[157.146362,-7.33056],[156.936096,-7.219167],[156.679962,-6.896945],[156.4652400000001,-6.736944],[156.438568,-6.643612],[156.49606,-6.60083],[156.64777,-6.65583],[156.75665300000014,-6.76417],[157.04248,-6.90167],[157.117737,-6.97639],[157.14386000000013,-7.120555],[157.188293,-7.17833],[157.3172,-7.2825],[157.42886,-7.32444]]],[[[159.712738,-5.516666],[159.70331,-5.513889],[159.714142,-5.48389],[159.723846,-5.49],[159.712738,-5.516666]]],[[[159.528595,-5.49889],[159.498291,-5.47722],[159.496338,-5.466945],[159.509979,-5.470834],[159.528595,-5.49889]]],[[[159.40387,-5.448333],[159.371613,-5.440833],[159.348846,-5.41583],[159.35913100000016,-5.413611],[159.40387,-5.448333]]],[[[159.25219700000014,-5.31278],[159.2502750000001,-5.32417],[159.24884,-5.29306],[159.25219700000014,-5.29639],[159.25219700000014,-5.31278]]]]}},{"type":"Feature","properties":{"FIPS":"BR","ISO2":"BR","ISO3":"BRA","UN":76,"NAME":"Brazil","AREA":845942,"POP2005":186830759,"REGION":19,"SUBREGION":5,"LON":-53.089,"LAT":-10.772},"geometry":{"type":"MultiPolygon","coordinates":[[[[-48.55056,-27.82139],[-48.55056,-27.69611],[-48.50111,-27.55611],[-48.51723,-27.430836],[-48.418335,-27.388889],[-48.371117,-27.44972],[-48.40639,-27.59278],[-48.49667,-27.71139],[-48.48222,-27.776669],[-48.55056,-27.82139]]],[[[-48.58112,-26.39167],[-48.58584,-26.425556],[-48.707779,-26.309723],[-48.537781,-26.16722],[-48.485,-26.234169],[-48.58112,-26.39167]]],[[[-48.2825,-25.48611],[-48.32695,-25.46194],[-48.33306,-25.41306],[-48.25667,-25.33889],[-48.25611,-25.467503],[-48.2825,-25.48611]]],[[[-47.877785,-25.026947],[-47.89695,-25.04444],[-47.816673,-24.9],[-47.606674,-24.78361],[-47.807228,-24.93445],[-47.877785,-25.026947]]],[[[-46.28278,-23.98917],[-46.396118,-23.98028],[-46.41639,-23.950279],[-46.3875,-23.923336],[-46.323616,-23.93],[-46.28278,-23.98917]]],[[[-45.126396,-23.82139],[-45.136391,-23.79778],[-45.105003,-23.806393],[-45.10556,-23.81611],[-45.126396,-23.82139]]],[[[-45.22084,-23.779446],[-45.218338,-23.95583],[-45.441391,-23.92889],[-45.44334,-23.873337],[-45.350563,-23.798058],[-45.32001,-23.725281],[-45.22084,-23.779446]]],[[[-44.08889,-23.17445],[-44.23889,-23.19833],[-44.295563,-23.176392],[-44.32389,-23.22111],[-44.36917,-23.172226],[-44.22861,-23.071114],[-44.112228,-23.127224],[-44.08889,-23.17445]]],[[[-29.84,-20.49639],[-29.84889,-20.500835],[-29.85222,-20.49111],[-29.84417,-20.489723],[-29.84,-20.49639]]],[[[-30.29528,-20.50584],[-30.319447,-20.52],[-30.33417,-20.48222],[-30.312225,-20.48917],[-30.29528,-20.50584]]],[[[-38.91167,-13.67528],[-38.94611,-13.676668],[-38.98945,-13.582779],[-38.91278,-13.5875],[-38.887779,-13.64083],[-38.91167,-13.67528]]],[[[-38.93695,-13.5625],[-38.98445,-13.5625],[-38.964443,-13.498845],[-39.041115,-13.46222],[-39.032784,-13.38972],[-38.90806,-13.38556],[-38.89667,-13.46806],[-38.93695,-13.5625]]],[[[-38.754723,-13.11306],[-38.785278,-13.13389],[-38.79333,-13.05778],[-38.679169,-12.96889],[-38.69167,-12.88111],[-38.64333,-12.89222],[-38.591667,-12.987501],[-38.754723,-13.11306]]],[[[-37.13251,-11.12945],[-37.14639,-11.10861],[-37.036949,-10.9525],[-37.042229,-10.99361],[-37.13251,-11.12945]]],[[[-34.873894,-7.07333],[-34.888893,-7.071945],[-34.866669,-7.048612],[-34.86528,-7.054167],[-34.873894,-7.07333]]],[[[-34.854172,-7.00528],[-34.85889,-7.01528],[-34.86306,-7.013889],[-34.85973,-6.99444],[-34.854172,-7.00528]]],[[[-32.45084,-3.88361],[-32.424171,-3.84583],[-32.38667,-3.840278],[-32.390839,-3.86222],[-32.45084,-3.88361]]],[[[-44.61028,-3.008056],[-44.656113,-2.973611],[-44.611671,-2.887222],[-44.572227,-2.91028],[-44.61028,-3.008056]]],[[[-44.58639,-3.0525],[-44.55984,-2.9131],[-44.57751,-2.80194],[-44.483894,-2.71],[-44.494728,-2.950278],[-44.58639,-3.0525]]],[[[-42.050835,-2.76167],[-42.076118,-2.760278],[-42.18445,-2.6775],[-42.06945,-2.68583],[-42.026947,-2.74444],[-42.050835,-2.76167]]],[[[-43.69334,-2.32694],[-43.69833,-2.352778],[-43.739174,-2.350278],[-43.68528,-2.2675],[-43.61528,-2.2625],[-43.69334,-2.32694]]],[[[-50.863892,-1.91083],[-50.84611,-2.003889],[-50.94374,-1.96364],[-50.98806,-1.993611],[-51.10945,-1.904722],[-51.148338,-1.82861],[-51.058617,-1.82444],[-50.863892,-1.91083]]],[[[-49.02417,-1.82917],[-49.055557,-1.8525],[-49.15695,-1.858056],[-49.055557,-1.72111],[-49.040325,-1.77147],[-49.00695,-1.79306],[-49.02417,-1.82917]]],[[[-48.961113,-1.79583],[-49.025,-1.778611],[-49.046112,-1.705278],[-48.98083,-1.59639],[-48.90278,-1.57722],[-48.961113,-1.79583]]],[[[-44.652779,-1.623889],[-44.66222,-1.661945],[-44.78722,-1.65611],[-44.71306,-1.56111],[-44.652779,-1.623889]]],[[[-52.02473,-1.580278],[-52.13111,-1.585556],[-52.20084,-1.64667],[-52.210556,-1.56111],[-52.17223,-1.49722],[-52.029449,-1.439722],[-51.91445,-1.516389],[-52.02473,-1.580278]]],[[[-48.633614,-1.48472],[-48.69667,-1.44917],[-48.657501,-1.375834],[-48.60612,-1.44361],[-48.633614,-1.48472]]],[[[-48.525841,-1.525],[-48.592506,-1.442222],[-48.55334,-1.36611],[-48.53973,-1.38139],[-48.525841,-1.525]]],[[[-52.418335,-1.5275],[-52.458618,-1.4925],[-52.431114,-1.46639],[-52.20695,-1.361667],[-52.16862,-1.40833],[-52.418335,-1.5275]]],[[[-44.987503,-1.401945],[-45.027779,-1.336389],[-44.975563,-1.26167],[-44.88111,-1.28306],[-44.88417,-1.332222],[-44.987503,-1.401945]]],[[[-45.63417,-1.34639],[-45.68944,-1.360833],[-45.62694,-1.12694],[-45.60778,-1.148889],[-45.63417,-1.34639]]],[[[-48.340279,-1.212778],[-48.41361,-1.20667],[-48.465561,-1.16278],[-48.41222,-1.075],[-48.3225,-1.07694],[-48.340279,-1.212778]]],[[[-46.498894,-1.020278],[-46.53334,-1.0175],[-46.54834,-0.97222],[-46.46806,-0.87972],[-46.440002,-1.00639],[-46.498894,-1.020278]]],[[[-50.98723,-0.866389],[-50.92084,-0.869722],[-51.01262,-0.9195],[-51.019447,-0.991667],[-51.070038,-1.03779],[-51.182503,-1.09167],[-51.140839,-0.986111],[-50.98723,-0.866389]]],[[[-51.375282,-1.213611],[-51.40028,-1.201945],[-51.36362,-1.12944],[-51.248894,-1.024722],[-51.203056,-0.84167],[-51.182503,-0.96778],[-51.23945,-1.143889],[-51.375282,-1.213611]]],[[[-50.92028,-0.845],[-50.969452,-0.827778],[-50.92278,-0.72917],[-50.84278,-0.727778],[-50.84695,-0.812778],[-50.92028,-0.845]]],[[[-47.935005,-0.72722],[-47.97084,-0.68],[-47.932503,-0.63667],[-47.876114,-0.67306],[-47.935005,-0.72722]]],[[[-47.66806,-0.70917],[-47.69667,-0.714722],[-47.71889,-0.640556],[-47.66528,-0.57361],[-47.637222,-0.62083],[-47.66806,-0.70917]]],[[[-51.13195,-0.959445],[-51.13667,-0.875833],[-51.070282,-0.69444],[-50.904167,-0.585278],[-50.81583,-0.572222],[-50.82001,-0.68944],[-50.93195,-0.72583],[-51.13195,-0.959445]]],[[[-51.05112,-0.659167],[-51.09833,-0.633889],[-51.02528,-0.560556],[-51.00584,-0.601667],[-51.05112,-0.659167]]],[[[-51.90139,-1.476667],[-51.95222,-1.430833],[-51.88,-1.30694],[-51.885,-1.178889],[-51.72389,-1.14111],[-51.66222,-1.08333],[-51.665001,-0.900556],[-51.609726,-0.73389],[-51.52917,-0.6375],[-51.38195,-0.54139],[-51.199722,-0.52917],[-51.148338,-0.66972],[-51.27167,-1.01417],[-51.34306,-1.058056],[-51.48334,-1.24028],[-51.78973,-1.44944],[-51.90139,-1.476667]]],[[[-51.40334,-0.54083],[-51.429169,-0.523056],[-51.41139,-0.49972],[-51.23945,-0.45444],[-51.25722,-0.491389],[-51.40334,-0.54083]]],[[[-51.011391,-0.54806],[-51.07584,-0.55083],[-51.070282,-0.484444],[-50.89889,-0.378889],[-50.958061,-0.50556],[-51.011391,-0.54806]]],[[[-50.958618,-0.5675],[-50.98389,-0.57639],[-50.878334,-0.38528],[-50.776947,-0.38389],[-50.75639,-0.42556],[-50.78334,-0.471667],[-50.958618,-0.5675]]],[[[-51.10778,-0.54],[-51.15111,-0.527222],[-51.13195,-0.40306],[-51.03473,-0.28306],[-50.94667,-0.35389],[-51.047501,-0.398889],[-51.10778,-0.54]]],[[[-50.90723,-0.33583],[-50.95583,-0.32417],[-51.025,-0.248889],[-50.888618,-0.29139],[-50.90723,-0.33583]]],[[[-50.80334,-0.358889],[-50.90806,-0.35833],[-50.748894,-0.22667],[-50.76334,-0.330278],[-50.80334,-0.358889]]],[[[-51.380562,-0.484722],[-51.406113,-0.47778],[-51.39917,-0.434722],[-51.238892,-0.20167],[-51.10306,-0.12139],[-51.1375,-0.28528],[-51.380562,-0.484722]]],[[[-49.71334,-0.227778],[-49.63945,-0.24833],[-49.407784,-0.225],[-49.328339,-0.15972],[-49.14751,-0.137778],[-48.373062,-0.289167],[-48.374451,-0.37778],[-48.466667,-0.531945],[-48.536949,-0.89583],[-48.628616,-0.94778],[-48.64389,-0.98889],[-48.62723,-1.06444],[-48.75611,-1.23222],[-48.86084,-1.47806],[-49.16639,-1.61389],[-49.378891,-1.64722],[-49.511116,-1.6225],[-49.551117,-1.69667],[-49.672501,-1.77667],[-49.718616,-1.748111],[-49.753891,-1.63361],[-49.773056,-1.661111],[-49.74361,-1.74444],[-49.812782,-1.815834],[-50.049728,-1.706944],[-50.11084,-1.75972],[-50.36834,-1.835],[-50.578056,-1.80083],[-50.635,-1.75556],[-50.65417,-1.62],[-50.80361,-1.440556],[-50.815285,-1.340556],[-50.781113,-1.15194],[-50.741505,-1.127556],[-50.628891,-1.15056],[-50.550003,-1.069167],[-50.723114,-1.086833],[-50.780281,-1.05139],[-50.79695,-0.97194],[-50.78334,-0.66361],[-50.73367,-0.59367],[-50.705502,-0.64383],[-50.542503,-0.68278],[-50.67334,-0.635278],[-50.726395,-0.49778],[-50.65778,-0.27917],[-50.52195,-0.153056],[-50.35195,-0.100833],[-49.71334,-0.227778]]],[[[-50.55695,-0.0625],[-50.85778,-0.28306],[-51.027229,-0.22417],[-50.972778,-0.09],[-50.698616,-0.00556],[-50.613892,-0.01056],[-50.55695,-0.0625]]],[[[-50.90167,-0.0475],[-50.93306,-0.02],[-50.829727,0.06083],[-50.765839,0.066389000000129],[-50.6975,0.023889],[-50.90167,-0.0475]]],[[[-49.52556,-0.13444],[-49.69472,-0.156389],[-49.831947,-0.104167],[-49.8525,-0.06444],[-49.65501,0.07667],[-49.50167,0.070556000000124],[-49.41862,0.035556],[-49.38111,-0.06861],[-49.437225,-0.11806],[-49.52556,-0.13444]]],[[[-50.455559,-0.022778],[-50.517784,-0.032222],[-50.593338,0.0225],[-50.65639,0.13222],[-50.64333,0.171111],[-50.58083,0.210833],[-50.465004,0.146667],[-50.435562,0.0075],[-50.455559,-0.022778]]],[[[-50.243057,0.229444000000115],[-50.26167,0.267222],[-50.18417,0.324167],[-50.083618,0.32],[-50.243057,0.229444000000115]]],[[[-49.636116,0.2275],[-49.807503,0.120556],[-49.908615,-0.02833],[-49.984726,-0.072222],[-50.102501,0.01028],[-50.34584,0.01972],[-50.3925,0.109444],[-50.385,0.197222],[-50.173889,0.214444000000128],[-50.029167,0.298611000000108],[-49.70806,0.336389],[-49.633896,0.280278],[-49.636116,0.2275]]],[[[-50.41639,0.210833],[-50.459724,0.171944],[-50.53639,0.226111],[-50.480278,0.284167000000139],[-50.436394,0.535],[-50.373894,0.621389],[-50.31778,0.308889],[-50.338341,0.252222],[-50.41639,0.210833]]],[[[-50.2375,0.350833],[-50.30695,0.361111],[-50.30806,0.506389],[-50.23334,0.591111],[-50.06361,0.646111000000133],[-50.023056,0.541944],[-50.2375,0.350833]]],[[[-50.00722,0.881667000000107],[-50.11084,0.7625],[-50.26778,0.751667],[-50.26862,0.82139],[-50.200562,0.879167],[-50.068481,0.87089200000014],[-50.03883,0.878009000000134],[-50.013062,0.920278],[-50.00722,0.881667000000107]]],[[[-50.03751,0.88444],[-50.08694,0.894722],[-50.09389,0.920833],[-50.042229,0.91806],[-50.03751,0.88444]]],[[[-50.009445,0.93528],[-50.07445,0.944722000000127],[-50.07445,0.981111],[-50.025284,1.05167],[-49.94778,1.05444],[-49.94445,0.994722],[-50.009445,0.93528]]],[[[-50.39667,1.88139],[-50.505,2.025],[-50.49306,2.101111000000117],[-50.394447,2.135278],[-50.35612,2.116944],[-50.29723,1.965555],[-50.39667,1.88139]]],[[[-50.475281,2.119722],[-50.53361,2.149722],[-50.517227,2.20305500000012],[-50.40556,2.19361],[-50.40472,2.146389],[-50.475281,2.119722]]],[[[-60.09833,5.217222],[-59.983063,5.0225],[-60.025841,4.70722],[-60.07917,4.60833300000013],[-60.15223,4.573333],[-60.147507,4.5175],[-59.929726,4.506389],[-59.675835,4.388888],[-59.730835,4.293333000000132],[-59.72945,4.210833],[-59.58167,3.998888],[-59.56861,3.899444],[-59.66556,3.711389],[-59.78612,3.620555],[-59.83195,3.524167],[-59.809723,3.361944],[-59.90472,3.20417],[-59.962784,3.02583],[-59.988892,2.687222],[-59.92556,2.56778],[-59.8914,2.35944400000011],[-59.73028,2.27805],[-59.75194,1.865278000000103],[-59.63411,1.846419],[-59.67278,1.762778],[-59.50751,1.6875],[-59.241669,1.383611],[-58.92834,1.302778000000103],[-58.899445,1.23],[-58.813614,1.185555],[-58.726112,1.228611],[-58.695282,1.286944],[-58.51556,1.26778],[-58.46695,1.343889000000104],[-58.502289,1.454674000000125],[-58.386116,1.476666],[-58.29723,1.582778000000133],[-58.127785,1.517778000000135],[-58.008614,1.513611000000139],[-57.97223,1.62],[-57.753616,1.72056],[-57.55417,1.701389],[-57.448616,1.814444],[-57.420006,1.913055],[-57.30278,1.981389],[-57.23139,1.948611],[-57.100563,2.023889000000111],[-57.01112,1.926111],[-56.78334,1.872500000000116],[-56.724449,1.92055],[-56.47063,1.944499000000121],[-56.03722,1.836944],[-55.965836,1.84528],[-55.899445,1.901944],[-55.90139,2.045278],[-56.03639,2.208889],[-56.115837,2.249166000000116],[-56.08445,2.3575],[-55.965836,2.53278],[-55.71028,2.399167],[-54.972229,2.554722],[-54.8675,2.440278],[-54.806396,2.435555],[-54.75973,2.471111000000121],[-54.68917,2.453888],[-54.683891,2.403333],[-54.7125,2.378611],[-54.683891,2.322500000000105],[-54.546669,2.318333000000109],[-54.46389,2.210833],[-54.12334,2.113611],[-53.745003,2.373888],[-53.70167,2.310277],[-53.52972,2.249166000000116],[-53.45862,2.257500000000107],[-53.328339,2.353333],[-53.226112,2.26444],[-53.23917,2.208333],[-53.105003,2.2225],[-53.05278,2.185555],[-52.948059,2.178055],[-52.675285,2.373888],[-52.59445,2.473889],[-52.54028,2.570278],[-52.553894,2.623611],[-52.35195,3.040000000000134],[-52.34494,3.157403000000102],[-52.27834,3.23889],[-52.220284,3.260278],[-51.998894,3.618611],[-51.97834,3.7075],[-51.8125,3.875],[-51.775,3.97972],[-51.64028,4.053333],[-51.606674,4.11611],[-51.54028,4.153610000000128],[-51.447784,3.9725],[-51.554726,4.281388],[-51.537506,4.391388],[-51.25306,4.145],[-51.167503,3.997222],[-51.16556,3.895278],[-51.1375,3.875556000000131],[-51.104446,3.917778],[-51.08389,3.902778],[-51.066116,3.378889000000129],[-51.023613,3.130000000000109],[-50.85028,2.740555],[-50.679726,2.16472],[-50.44528,1.825833000000103],[-50.19806,1.82638900000012],[-49.93,1.708055],[-49.88251,1.53889],[-49.892784,1.321666],[-50.12195,1.21417],[-49.92167,1.25111],[-49.90389,1.17028],[-50.23695,0.88861],[-50.31222,0.753055000000131],[-50.453339,0.658333],[-50.57417,0.42194400000011],[-50.76723,0.189167],[-50.95084,0.145278],[-51.08667,-0.05028],[-51.25861,-0.142778],[-51.45,-0.484722],[-51.7,-0.7525],[-51.7125,-1.02667],[-51.841118,-1.143056],[-51.920006,-1.16639],[-51.935005,-1.34444],[-52.0675,-1.42],[-52.232506,-1.34528],[-52.43806,-1.44111],[-52.476395,-1.49056],[-52.70723,-1.56111],[-52.712784,-1.60333],[-52.285278,-1.53361],[-52.227501,-1.616389],[-52.26825,-1.68193],[-52.208469,-1.69208],[-52.153206,-1.627413],[-51.94195,-1.587778],[-51.67001,-1.404722],[-51.48889,-1.34778],[-51.25722,-1.21833],[-51.204727,-1.134167],[-51.03167,-1.04167],[-50.992783,-0.99861],[-50.99223,-0.92528],[-50.847504,-0.91639],[-50.816673,-0.938889],[-50.80222,-1.17389],[-50.83584,-1.33361],[-50.816673,-1.439722],[-50.68056,-1.63028],[-50.663895,-1.767778],[-50.814728,-1.89833],[-51.0675,-1.81083],[-51.13334,-1.818889],[-51.26222,-1.75528],[-51.28139,-1.679167],[-51.33694,-1.646945],[-51.48278,-1.893611],[-51.52195,-2.046389],[-51.45195,-2.273612],[-51.378616,-2.3325],[-51.45473,-2.24444],[-51.480835,-2.06889],[-51.307503,-1.76361],[-51.16028,-1.84278],[-51.153336,-1.87167],[-50.99139,-2.026389],[-51.00917,-2.16472],[-51.060005,-2.196389],[-51.02917,-2.345],[-50.99445,-2.41944],[-50.84611,-2.50861],[-51.001114,-2.36889],[-50.98389,-2.06611],[-50.92445,-1.989444],[-50.788612,-2.10861],[-50.79084,-2.18333],[-50.70639,-2.22056],[-50.823616,-1.962778],[-50.677956,-1.810444],[-50.45473,-1.85472],[-50.42195,-1.901389],[-50.470001,-1.935556],[-50.41639,-1.95222],[-50.26501,-1.88306],[-49.999168,-1.82],[-49.84167,-1.902778],[-49.636116,-1.875278],[-49.45084,-1.75],[-49.28973,-1.70833],[-49.28167,-1.781667],[-49.407784,-2.02528],[-49.44833,-2.185],[-49.50584,-2.2575],[-49.46945,-2.40611],[-49.490005,-2.565],[-49.435,-2.493611],[-49.43056,-2.38361],[-49.264725,-2.00333],[-49.190559,-1.898056],[-48.960281,-1.83361],[-48.697227,-1.469167],[-48.64662,-1.5008],[-48.59959,-1.463753],[-48.537506,-1.586389],[-48.43056,-1.661667],[-48.45945,-1.55694],[-48.41361,-1.49944],[-48.18445,-1.471945],[-48.255,-1.445833],[-48.492226,-1.47389],[-48.48695,-1.31083],[-48.44278,-1.28639],[-48.335838,-1.31778],[-48.271118,-1.117778],[-48.310837,-0.98],[-48.23806,-0.86778],[-48.060562,-0.71083],[-48.029167,-0.70056],[-47.956947,-0.77528],[-47.749451,-0.635278],[-47.71167,-0.69361],[-47.72695,-0.758056],[-47.615837,-0.701944],[-47.583618,-0.63417],[-47.542503,-0.63667],[-47.39389,-0.812778],[-47.39223,-0.75194],[-47.4625,-0.69972],[-47.46167,-0.599167],[-47.29111,-0.597778],[-47.20862,-0.640278],[-47.17028,-0.70722],[-47.06556,-0.753333],[-46.95473,-0.704445],[-46.92167,-0.834722],[-46.96223,-0.86278],[-46.951118,-0.90806],[-46.82167,-0.712778],[-46.79084,-0.842222],[-46.620003,-0.831944],[-46.57001,-0.97194],[-46.60417,-1.029444],[-46.55778,-0.99917],[-46.53583,-1.032222],[-46.44833,-1.04306],[-46.191948,-0.9575],[-46.25973,-1.18361],[-46.1275,-1.106111],[-46.0871,-1.210276],[-46.04333,-1.210278],[-45.97472,-1.075],[-45.888618,-1.14278],[-45.85195,-1.271945],[-45.785004,-1.2675],[-45.73556,-1.18],[-45.69611,-1.37028],[-45.63028,-1.3725],[-45.61195,-1.274445],[-45.446945,-1.31083],[-45.415001,-1.35556],[-45.50917,-1.46806],[-45.46223,-1.545556],[-45.35917,-1.319722],[-45.326668,-1.31333],[-45.29861,-1.41528],[-45.3725,-1.540833],[-45.3475,-1.74028],[-45.280006,-1.734167],[-45.221672,-1.68333],[-45.24917,-1.586111],[-45.16112,-1.48139],[-45.09389,-1.46361],[-44.955,-1.502222],[-44.866394,-1.42444],[-44.85195,-1.49056],[-44.951393,-1.60167],[-44.913612,-1.63917],[-44.82056,-1.578333],[-44.79056,-1.623889],[-44.799171,-1.705],[-44.69501,-1.81778],[-44.64001,-1.78917],[-44.53889,-1.832222],[-44.495834,-2.045],[-44.636948,-2.22361],[-44.65639,-2.33111],[-44.490005,-2.14444],[-44.39695,-2.193889],[-44.36,-2.33889],[-44.380562,-2.40333],[-44.44445,-2.41167],[-44.58223,-2.55694],[-44.69167,-2.99028],[-44.624168,-3.053334],[-44.789169,-3.20806],[-44.78639,-3.2975],[-44.42056,-2.93],[-44.35695,-2.52667],[-44.06334,-2.405834],[-44.02806,-2.42472],[-44.04056,-2.545556],[-44.136116,-2.67167],[-44.335556,-2.774167],[-44.33973,-2.83028],[-44.29195,-2.835834],[-44.261391,-2.775],[-44.183617,-2.76417],[-44.171112,-2.8125],[-44.21861,-2.85306],[-44.19833,-2.86889],[-43.92612,-2.5475],[-43.873062,-2.569723],[-43.7075,-2.51],[-43.44833,-2.537778],[-43.48251,-2.38833],[-43.347504,-2.365834],[-42.932503,-2.4725],[-42.8025,-2.56028],[-42.70667,-2.562778],[-42.504448,-2.731667],[-42.350006,-2.77],[-42.26472,-2.75833],[-42.23584,-2.837778],[-42.206947,-2.806389],[-42.11,-2.80278],[-41.949722,-2.84556],[-41.93333,-2.78694],[-41.98056,-2.75583],[-41.83167,-2.733889],[-41.840263,-2.76692],[-41.699448,-2.83028],[-41.66195,-2.86],[-41.69972,-2.866667],[-41.674728,-2.883056],[-41.33445,-2.92944],[-41.24807,-3.02355],[-41.267227,-2.928889],[-41.222778,-2.88028],[-40.79084,-2.865834],[-40.472778,-2.79583],[-39.99695,-2.84639],[-39.082779,-3.37944],[-38.99861,-3.39278],[-38.852501,-3.542778],[-38.657501,-3.68111],[-38.49028,-3.725],[-38.339729,-3.911945],[-38.25778,-3.954445],[-38.06556,-4.20389],[-37.80556,-4.395],[-37.647224,-4.585556],[-37.31722,-4.70472],[-37.17445,-4.918612],[-36.88278,-4.94917],[-36.797226,-5.04639],[-36.687225,-5.098333],[-36.467506,-5.0775],[-36.28028,-5.111112],[-35.968613,-5.04944],[-35.60445,-5.11083],[-35.479729,-5.166112],[-35.37833,-5.27056],[-35.225563,-5.583611],[-35.087784,-6.19917],[-35.04139,-6.23389],[-34.980278,-6.406389],[-34.960556,-6.6575],[-34.85973,-6.971111],[-34.908096,-7.12889],[-34.8641,-7.07743],[-34.836884,-6.97714],[-34.83083,-7.10861],[-34.79333,-7.166945],[-34.81028,-7.504168],[-34.833061,-7.542778],[-34.8932,-7.54309],[-34.84056,-7.55444],[-34.800835,-7.63111],[-34.89333,-7.805],[-34.816391,-7.90417],[-34.843338,-8.058889],[-34.873894,-8.0725],[-34.94112,-8.342501],[-35.16195,-8.95083],[-35.32751,-9.22889],[-35.67445,-9.61083],[-35.79945,-9.68972],[-36.038338,-10.06861],[-36.25611,-10.256668],[-36.39333,-10.4925],[-36.5575,-10.54722],[-36.850281,-10.73389],[-37.02167,-10.935835],[-37.025284,-10.85889],[-37.09222,-10.74389],[-37.15334,-10.74861],[-37.14167,-10.82528],[-37.04028,-10.8375],[-37.073059,-10.96722],[-37.15667,-11.10444],[-37.20723,-11.03722],[-37.279167,-11.02528],[-37.26028,-11.072224],[-37.190285,-11.10722],[-37.20723,-11.21945],[-37.32333,-11.42306],[-37.375282,-11.43056],[-37.36362,-11.315556],[-37.287506,-11.217501],[-37.347778,-11.18778],[-37.336113,-11.230278],[-37.41222,-11.40278],[-37.39722,-11.460001],[-37.487907,-11.520227],[-37.42334,-11.545279],[-37.659172,-12.05833],[-37.935005,-12.43472],[-37.99556,-12.57611],[-38.316116,-12.935556],[-38.476669,-13.018057],[-38.535561,-13.01583],[-38.48473,-12.91639],[-38.505,-12.72889],[-38.62694,-12.710556],[-38.69445,-12.576389],[-38.75111,-12.765],[-38.810005,-12.845],[-38.85334,-12.827778],[-38.87528,-12.75667],[-38.86445,-12.65806],[-38.917229,-12.74361],[-38.855835,-12.85167],[-38.72528,-12.874445],[-38.75944,-12.985001],[-38.83889,-13.058334],[-38.850838,-13.17],[-38.94278,-13.24445],[-38.956673,-13.380001],[-39.043335,-13.355835],[-39.056396,-13.377501],[-39.080284,-13.53833],[-39.05278,-13.48389],[-39.005,-13.509445],[-39.00404,-13.60488],[-38.96306,-13.68139],[-39.030006,-13.843334],[-38.992393,-14.05989],[-39.02528,-14.091112],[-39.0725,-14.082779],[-39.075562,-14.143612],[-39.038895,-14.175835],[-38.958618,-14.06556],[-38.990562,-13.92056],[-38.941391,-13.887779],[-38.920563,-13.91556],[-39.066948,-14.64389],[-38.935562,-15.66222],[-38.87195,-15.874168],[-39.013893,-16.28694],[-39.20667,-17.1475],[-39.190559,-17.57556],[-39.13084,-17.683891],[-39.275558,-17.869167],[-39.45167,-17.949722],[-39.643616,-18.22333],[-39.748062,-18.70528],[-39.69917,-19.393059],[-39.801392,-19.6325],[-40.01028,-19.74472],[-40.12806,-19.96472],[-40.23723,-20.28389],[-40.29945,-20.23417],[-40.34972,-20.23473],[-40.36834,-20.313614],[-40.282227,-20.343613],[-40.40611,-20.599445],[-40.624168,-20.83139],[-40.65501,-20.81111],[-40.76334,-20.855003],[-40.81361,-20.92778],[-40.84889,-21.098335],[-40.960556,-21.23584],[-41.04333,-21.57667],[-40.971672,-21.98806],[-41.206673,-22.13139],[-41.581673,-22.243614],[-41.76306,-22.34611],[-41.990837,-22.57139],[-41.97139,-22.73861],[-42.03445,-22.91917],[-42.150841,-22.94972],[-42.570282,-22.93944],[-42.933891,-22.981392],[-43.091949,-22.95472],[-43.12945,-22.890556],[-43.02056,-22.71639],[-43.01917,-22.68167],[-43.07584,-22.668335],[-43.26472,-22.74445],[-43.25445,-22.82028],[-43.16639,-22.889725],[-43.14473,-22.94639],[-43.218338,-22.99695],[-44.003891,-23.10195],[-43.9725,-23.038334],[-43.79333,-23.055],[-43.60389,-23.01889],[-43.859169,-22.89584],[-44.038612,-22.93695],[-44.11834,-23.02861],[-44.191948,-23.05111],[-44.241669,-23.047501],[-44.32528,-22.91917],[-44.40611,-22.94139],[-44.47333,-23.008057],[-44.66251,-23.04806],[-44.708336,-23.22472],[-44.5625,-23.22972],[-44.498894,-23.29],[-44.577225,-23.356113],[-44.715836,-23.34472],[-44.835281,-23.390556],[-44.894447,-23.338612],[-44.921669,-23.347778],[-45.06,-23.49611],[-45.410835,-23.62889],[-45.42834,-23.707779],[-45.3914,-23.791668],[-45.418335,-23.83083],[-45.50028,-23.844448],[-45.635284,-23.78833],[-45.89001,-23.76778],[-45.98306,-23.79028],[-46.22362,-23.91139],[-46.19278,-23.921112],[-46.110001,-23.86778],[-46.19556,-23.992226],[-46.29306,-24.026947],[-46.315,-24.01167],[-46.273056,-23.98333],[-46.30584,-23.917778],[-46.382782,-23.86834],[-46.43417,-23.93306],[-46.415,-23.987503],[-46.43611,-24.02139],[-46.92445,-24.27084],[-46.98639,-24.31889],[-47.003059,-24.39473],[-47.21473,-24.563057],[-47.42278,-24.677502],[-47.54556,-24.708614],[-48.02611,-25.015],[-48.050835,-25.06028],[-47.95889,-25.08139],[-47.890556,-25.059723],[-47.91028,-25.145279],[-48.17278,-25.37722],[-48.20862,-25.46167],[-48.24778,-25.45195],[-48.22639,-25.340279],[-48.13139,-25.27222],[-48.28139,-25.33],[-48.395,-25.296112],[-48.4475,-25.37167],[-48.41278,-25.42778],[-48.47723,-25.47972],[-48.718613,-25.424725],[-48.730278,-25.47722],[-48.70417,-25.501114],[-48.598335,-25.53195],[-48.512222,-25.517223],[-48.36139,-25.57639],[-48.425835,-25.620556],[-48.522781,-25.780281],[-48.77056,-25.88],[-48.58112,-25.87222],[-48.57167,-25.94111],[-48.61084,-26.04945],[-48.581947,-26.18],[-48.67917,-26.24278],[-48.73389,-26.22333],[-48.802505,-26.06722],[-48.755562,-26.289448],[-48.60806,-26.43861],[-48.676392,-26.576946],[-48.68445,-26.67306],[-48.678062,-26.733334],[-48.62556,-26.77528],[-48.613892,-27.10611],[-48.569561,-27.15339],[-48.51195,-27.12167],[-48.48528,-27.211391],[-48.55683,-27.200169],[-48.6225,-27.242226],[-48.6425,-27.456947],[-48.60195,-27.601669],[-48.64389,-27.64722],[-48.563896,-27.86444],[-48.61917,-27.99778],[-48.6525,-28.22556],[-48.761948,-28.492226],[-48.808334,-28.44528],[-48.79362,-28.375557],[-48.847778,-28.32028],[-48.87195,-28.34556],[-48.85778,-28.47861],[-48.77473,-28.52222],[-48.84251,-28.61778],[-48.96278,-28.663612],[-49.395279,-28.97389],[-49.752502,-29.369724],[-50.055,-29.83945],[-50.311394,-30.46167],[-50.74945,-31.081112],[-51.0639,-31.408337],[-51.480835,-31.735001],[-51.900558,-31.959724],[-52.0725,-32.174171],[-52.014725,-31.953892],[-52.08639,-31.82361],[-51.85223,-31.870556],[-51.643616,-31.758614],[-51.420563,-31.51111],[-51.34195,-31.525],[-51.2514,-31.47167],[-51.19,-31.399723],[-51.157784,-31.27889],[-51.162506,-31.078056],[-51.010559,-31.0875],[-51.00167,-31.13778],[-50.97834,-31.13639],[-50.98972,-31.04806],[-50.95695,-30.930557],[-50.70667,-30.75917],[-50.67334,-30.59917],[-50.686951,-30.472504],[-50.65472,-30.427223],[-50.60778,-30.48389],[-50.567223,-30.45723],[-50.54028,-30.26889],[-50.608894,-30.19056],[-50.653618,-30.197781],[-50.67306,-30.292778],[-50.91334,-30.3175],[-50.928337,-30.41944],[-51.018059,-30.384445],[-51.02139,-30.26667],[-51.16972,-30.231392],[-51.243896,-30.08583],[-51.233894,-30.045559],[-51.28167,-30.01],[-51.31417,-30.164448],[-51.28612,-30.28806],[-51.20251,-30.40028],[-51.291115,-30.595837],[-51.271118,-30.795559],[-51.310562,-30.78222],[-51.28751,-30.76889],[-51.32228,-30.6545],[-51.37195,-30.645],[-51.387779,-30.74695],[-51.478615,-30.928059],[-51.4625,-31.06667],[-51.620834,-31.13611],[-51.655838,-31.22528],[-51.96223,-31.335281],[-52.004723,-31.549168],[-52.063614,-31.669724],[-52.22139,-31.74695],[-52.22472,-31.841114],[-52.17556,-31.94167],[-52.23917,-31.96917],[-52.25472,-32.055283],[-52.23112,-32.089729],[-52.100838,-32.115],[-52.09,-32.16667],[-52.229172,-32.255],[-52.37278,-32.494171],[-52.49945,-32.87278],[-52.63667,-33.129448],[-52.74139,-33.25695],[-53.22889,-33.650558],[-53.386391,-33.743896],[-53.534447,-33.656952],[-53.5014,-33.428062],[-53.51973,-33.136948],[-53.093056,-32.72973],[-53.186394,-32.636948],[-53.409172,-32.565559],[-53.55334,-32.446114],[-53.63028,-32.36111],[-53.66473,-32.20695],[-53.879723,-31.967781],[-54.06695,-31.875],[-54.16445,-31.887222],[-54.285835,-31.80445],[-54.4634,-31.672611],[-54.472504,-31.576668],[-54.58806,-31.46278],[-54.825562,-31.43],[-54.97695,-31.31889],[-55.08556,-31.32778],[-55.23556,-31.24528],[-55.42167,-30.96306],[-55.581947,-30.845837],[-55.633057,-30.85222],[-55.67195,-30.949448],[-55.83694,-31.073891],[-56.00892,-31.07979],[-55.97639,-30.85389],[-56.00167,-30.79583],[-56.23584,-30.558334],[-56.811394,-30.105278],[-57.06583,-30.106113],[-57.1414,-30.18028],[-57.15,-30.243336],[-57.220284,-30.29333],[-57.326118,-30.26639],[-57.52806,-30.27389],[-57.608002,-30.18492],[-57.49334,-30.13695],[-57.328415,-29.98458],[-57.31597,-29.86278],[-57.27417,-29.80028],[-57.070557,-29.732502],[-56.695557,-29.34361],[-56.59611,-29.14417],[-56.431175,-29.07359],[-56.28945,-28.784725],[-56.17001,-28.72834],[-56.066116,-28.626114],[-55.8914,-28.36778],[-55.73556,-28.36195],[-55.6925,-28.40889],[-55.66862,-28.32028],[-55.76501,-28.259167],[-55.765282,-28.226112],[-55.626297,-28.141022],[-55.44778,-28.08667],[-55.32612,-27.92445],[-55.186394,-27.856945],[-55.02167,-27.83389],[-54.91222,-27.73722],[-54.81111,-27.532501],[-54.77639,-27.56611],[-54.6889,-27.55611],[-54.358063,-27.456947],[-54.28306,-27.427502],[-54.148613,-27.28917],[-54.07084,-27.268059],[-54.00417,-27.18917],[-53.85778,-27.14917],[-53.838753,-27.17112],[-53.698616,-26.889446],[-53.73584,-26.69583],[-53.713615,-26.366669],[-53.65028,-26.243893],[-53.825,-25.957779],[-53.82389,-25.80695],[-53.89028,-25.631947],[-54.104172,-25.49389],[-54.177505,-25.56195],[-54.291115,-25.54889],[-54.45251,-25.633057],[-54.53834,-25.57139],[-54.598915,-25.57322],[-54.61695,-25.438057],[-54.42306,-25.143059],[-54.45639,-25.08722],[-54.45251,-25.011112],[-54.313896,-24.62167],[-54.33139,-24.49278],[-54.248894,-24.35361],[-54.33778,-24.14389],[-54.243896,-24.053608],[-54.40723,-23.916668],[-54.627785,-23.80389],[-55.03139,-23.99445],[-55.188614,-24.020279],[-55.40501,-23.964447],[-55.441673,-23.70084],[-55.52167,-23.60278],[-55.53612,-23.46417],[-55.50243,-23.379723],[-55.548889,-23.32445],[-55.549171,-23.1375],[-55.646118,-22.852501],[-55.60945,-22.63389],[-55.71278,-22.57],[-55.743057,-22.399723],[-55.84972,-22.28889],[-56.20583,-22.273613],[-56.35751,-22.16306],[-56.40306,-22.06556],[-56.50834,-22.09639],[-56.63417,-22.25194],[-56.70723,-22.215],[-56.8775,-22.27417],[-57.15334,-22.203613],[-57.371117,-22.218056],[-57.595001,-22.18222],[-57.64001,-22.12111],[-57.76778,-22.113056],[-57.82751,-22.145],[-57.98511,-22.091827],[-57.92139,-21.66222],[-57.9539,-21.51083],[-57.85028,-21.336945],[-57.81444,-20.97195],[-57.85722,-20.73917],[-57.92028,-20.668335],[-57.97861,-20.711113],[-58.0089,-20.495834],[-58.136948,-20.27889],[-58.15889,-20.16806],[-57.84875,-19.978794],[-58.121117,-19.74139],[-57.776672,-19.047501],[-57.70473,-19.043613],[-57.719727,-18.91389],[-57.77112,-18.90945],[-57.521118,-18.203892],[-57.71889,-17.845001],[-57.717285,-17.727577],[-57.77948,-17.63774],[-57.74306,-17.593056],[-57.901672,-17.46194],[-58.022781,-17.49556],[-58.397507,-17.249168],[-58.47577,-16.67463],[-58.34639,-16.50611],[-58.32751,-16.27917],[-58.38667,-16.278057],[-58.44445,-16.33],[-60.160278,-16.263058],[-60.22723,-15.47861],[-60.571396,-15.0975],[-60.2589,-15.09361],[-60.281113,-14.623335],[-60.48208,-14.17555],[-60.383896,-13.984446],[-60.47084,-13.80722],[-60.79937,-13.67655],[-60.957779,-13.582779],[-61.03898,-13.49312],[-61.49278,-13.553335],[-61.59353,-13.50724],[-61.83389,-13.54472],[-61.87445,-13.452223],[-62.085556,-13.27139],[-62.11195,-13.1525],[-62.222778,-13.12],[-62.38473,-13.14583],[-62.64389,-13.03389],[-62.68722,-12.96667],[-62.76973,-13.00583],[-62.99417,-12.83933],[-63.075,-12.65],[-63.136642,-12.63635],[-63.241394,-12.704445],[-63.33139,-12.70333],[-63.41556,-12.65389],[-63.476112,-12.56444],[-63.67195,-12.47056],[-63.7975,-12.46],[-63.933891,-12.55028],[-64.39418,-12.46167],[-64.498337,-12.364168],[-64.51334,-12.2425],[-64.736389,-12.153057],[-64.80724,-12.02972],[-64.991669,-12.00806],[-65.06334,-11.7525],[-65.12149,-11.69275],[-65.148621,-11.777224],[-65.202515,-11.74],[-65.16862,-11.61195],[-65.2314,-11.51],[-65.3214,-11.480721],[-65.39279,-11.26639],[-65.401947,-11.16972],[-65.30057,-10.96722],[-65.436951,-10.624723],[-65.44951,-10.47924],[-65.31334,-10.29389],[-65.28778,-10.20167],[-65.336945,-9.95694],[-65.29945,-9.84278],[-65.390015,-9.69222],[-65.44234,-9.679195],[-65.49251,-9.71917],[-65.57001,-9.83639],[-65.74583,-9.770557],[-66.080841,-9.775278],[-66.430283,-9.889446],[-66.634445,-9.906946],[-66.648056,-9.942223],[-66.88806,-10.08639],[-67.080841,-10.271946],[-67.17445,-10.325],[-67.32417,-10.32083],[-67.325012,-10.36444],[-67.5825,-10.50445],[-67.70334,-10.694723],[-67.74556,-10.7125],[-67.84557,-10.657501],[-68.06111,-10.67639],[-68.28056,-10.98],[-68.620834,-11.11639],[-68.76417,-11.13972],[-68.84889,-11.01611],[-69.41223,-10.937778],[-69.730835,-10.965279],[-69.780563,-10.923334],[-69.92917,-10.91445],[-70.15417,-11.030001],[-70.3289,-11.06917],[-70.431396,-11.03222],[-70.53279,-10.932222],[-70.631393,-11.009167],[-70.62807,-9.835556],[-70.58112,-9.64444],[-70.60759,-9.575665],[-70.51466,-9.428001],[-70.59279,-9.44361],[-70.881958,-9.67],[-71.00223,-9.814724],[-71.13612,-9.860834],[-71.18445,-9.93694],[-71.29889,-9.99639],[-72.18584,-10.003889],[-72.15085,-9.88278],[-72.180008,-9.80139],[-72.271118,-9.746668],[-72.251953,-9.65972],[-72.305557,-9.530001],[-72.730011,-9.41306],[-73.20529,-9.40722],[-72.9664,-9.143057],[-72.96417,-8.983334],[-73.06279,-8.89917],[-73.16972,-8.710279],[-73.273346,-8.675835],[-73.343338,-8.606945],[-73.40472,-8.450556],[-73.53307,-8.35556],[-73.645,-8.02389],[-73.77196,-7.948056],[-73.78528,-7.87528],[-73.7139,-7.8725],[-73.70361,-7.77861],[-73.8289,-7.728333],[-74.00973,-7.5475],[-73.954727,-7.52389],[-73.931122,-7.35917],[-73.70279,-7.30694],[-73.799728,-7.08083],[-73.74417,-6.876945],[-73.35306,-6.576945],[-73.191681,-6.55278],[-73.1239,-6.447223],[-73.12001,-6.37389],[-73.22974,-6.093612],[-73.13028,-5.87639],[-72.96335,-5.65417],[-72.9425,-5.543334],[-72.962784,-5.45806],[-72.89862,-5.172778],[-72.85196,-5.124722],[-72.47696,-4.94111],[-72.399734,-4.87111],[-72.37529,-4.784445],[-72.235001,-4.753334],[-71.90248,-4.518188],[-71.74719,-4.49035],[-71.64473,-4.50917],[-71.16945,-4.35778],[-70.95029,-4.38139],[-70.834732,-4.18778],[-70.765839,-4.146389],[-70.628891,-4.156667],[-70.58417,-4.19556],[-70.43333,-4.13167],[-70.3239,-4.13667],[-70.306671,-4.244722],[-70.20157,-4.33213],[-70.018616,-4.33917],[-69.95029,-4.2625],[-69.45264,-1.526032],[-69.378067,-1.338056],[-69.43472,-0.99417],[-69.52917,-0.92444],[-69.61473,-0.75111],[-69.57278,-0.63667],[-69.60751,-0.5175],[-69.74612,-0.452222],[-69.92834,-0.30944],[-70.05806,-0.1575],[-70.04417,0.59083],[-69.797791,0.600278],[-69.68861,0.675555],[-69.46417,0.740278],[-69.28696,0.620833],[-69.12472,0.645],[-69.160278,0.750556000000131],[-69.14001,0.86694],[-69.27,1.038333],[-69.343613,1.074722],[-69.435287,1.038333],[-69.61362,1.078055],[-69.84222,1.072222],[-69.8461,1.710455],[-69.55585,1.784167],[-69.37695,1.72805],[-68.15306,1.72417],[-68.17584,1.763055],[-68.23279,1.775555],[-68.25723,1.852778],[-68.196396,1.9775],[-68.10112,1.948056],[-68.005,1.763055],[-67.914734,1.745278],[-67.78334,1.806944],[-67.58223,2.056111],[-67.41833,2.1425],[-67.335007,2.111111],[-67.07251,1.625278],[-67.076675,1.173333000000127],[-66.870453,1.220932000000118],[-66.311951,0.750556000000131],[-66.1239,0.733889],[-65.97111,0.803889],[-65.87083,0.908333],[-65.74084,0.981667],[-65.58974,0.989167000000123],[-65.52473,0.93111],[-65.506668,0.862222],[-65.58389,0.718889000000104],[-65.5475,0.653611],[-65.489182,0.660278],[-65.43611,0.69528],[-65.389725,0.83083],[-65.315002,0.91889],[-65.18834,0.929167],[-65.12083,1.13361],[-65.006958,1.165833],[-64.821121,1.281111],[-64.7189,1.250833],[-64.58751,1.335833],[-64.53612,1.429722],[-64.39917,1.51],[-64.26445,1.476111000000117],[-64.077225,1.636389],[-64.05223,1.89083],[-64.00195,1.951111],[-63.739174,2.003055],[-63.605,2.10722],[-63.40139,2.146389],[-63.357506,2.269722],[-63.34639,2.406111],[-63.371117,2.42305],[-63.812225,2.424722],[-64.03667,2.47055],[-63.9875,2.723889],[-64.20529,3.193333],[-64.23695,3.426944],[-64.19057,3.505278],[-64.19112,3.594444],[-64.30806,3.718333],[-64.45973,3.796111],[-64.6364,3.976111],[-64.718063,4.152778],[-64.80084,4.20194],[-64.79529,4.281388],[-64.65834,4.246666],[-64.58223,4.121666000000118],[-64.335556,4.15417],[-64.13,4.112778000000105],[-64.05556,3.910833],[-64.01779,3.886111],[-63.84112,3.960278],[-63.60834,3.94361],[-63.53722,3.870555],[-63.48195,3.85805],[-63.42334,3.966111],[-63.34306,3.961111],[-63.246391,3.90417],[-62.98723,3.600833],[-62.875,3.56028],[-62.775284,3.60694],[-62.73251,3.68194],[-62.781113,3.902222],[-62.74583,4.0325],[-62.595001,4.040555],[-62.535561,4.123888],[-62.43834,4.184166],[-62.136391,4.09361],[-61.99556,4.169722],[-61.84889,4.160555000000102],[-61.75695,4.24722],[-61.553062,4.249166],[-61.51222,4.298055],[-61.49861,4.4025],[-61.31361,4.506666000000109],[-60.98917,4.518055],[-60.885,4.711666],[-60.72889,4.771111],[-60.65223,4.838888],[-60.576118,4.964444],[-60.651672,5.17805],[-60.73037,5.2048],[-60.31583,5.197499],[-60.2075,5.273889],[-60.09833,5.217222]]]]}},{"type":"Feature","properties":{"FIPS":"BU","ISO2":"BG","ISO3":"BGR","UN":100,"NAME":"Bulgaria","AREA":11063,"POP2005":7744591,"REGION":150,"SUBREGION":151,"LON":25.231,"LAT":42.761},"geometry":{"type":"Polygon","coordinates":[[[27.879166,42.841103],[27.896938,42.702766],[27.728886,42.709717],[27.514996,42.556389],[27.44833,42.469994],[27.50555,42.431107],[27.616665,42.44722],[27.704163,42.399994],[27.759995,42.246101],[27.968609,42.072495],[28.013054,41.982216],[27.830273,42.001389],[27.638054,41.958321],[27.566666,41.907776],[27.41,41.995827],[27.361664,42.064995],[27.233051,42.109993],[27.031384,42.081383],[26.962221,42.003323],[26.621384,41.973053],[26.560593,41.928925],[26.542217,41.828049],[26.374722,41.819153],[26.331944,41.748878],[26.361095,41.711052],[26.171944,41.748322],[26.074444,41.711937],[26.068604,41.660271],[26.13472,41.63221],[26.183884,41.536942],[26.198051,41.439438],[26.139996,41.354713],[25.886662,41.309166],[25.814159,41.336098],[25.567776,41.32222],[25.279716,41.24305],[25.061192,41.362572],[24.898888,41.411942],[24.819443,41.405],[24.809444,41.352219],[24.608887,41.43222],[24.564442,41.503326],[24.46611,41.551941],[24.307777,41.546387],[24.263885,41.570549],[24.09333,41.549995],[24.066387,41.485275],[23.978886,41.441109],[23.796387,41.436661],[23.63583,41.378052],[23.29472,41.406105],[23.180832,41.322777],[22.935604,41.342125],[22.966663,41.374161],[22.952499,41.634438],[23.02972,41.71666],[23.014721,41.762215],[22.961941,41.77861],[22.828609,42.026939],[22.521111,42.148605],[22.365276,42.323883],[22.519444,42.399162],[22.558052,42.479164],[22.44722,42.599442],[22.442219,42.821663],[22.524998,42.878609],[22.745552,42.893608],[22.966389,43.101662],[23.004997,43.192772],[22.904442,43.230827],[22.766666,43.385826],[22.543331,43.472496],[22.367222,43.826942],[22.416943,44.006943],[22.552776,44.063889],[22.681435,44.224701],[23.044167,44.076111],[23.003407,44.017799],[22.88472,43.988052],[22.843243,43.90506],[22.863331,43.848328],[22.966942,43.81694],[23.071457,43.802177],[23.418224,43.856171],[24.179996,43.684715],[24.352497,43.695549],[24.52861,43.761108],[24.705555,43.715271],[25.224716,43.687485],[25.396111,43.623322],[25.772495,43.705544],[26.128609,43.979156],[26.301941,44.030823],[26.671104,44.071938],[26.913403,44.136124],[27.272713,44.132149],[27.29055,44.088051],[27.399998,44.021935],[27.656109,44.042496],[27.747215,43.95916],[27.927773,44.002769],[28.001942,43.8536],[28.181942,43.785271],[28.583244,43.747765],[28.572777,43.600822],[28.606384,43.536385],[28.553883,43.448318],[28.453331,43.385277],[28.299721,43.421654],[28.093327,43.369713],[27.888882,43.041382],[27.90416,42.887497],[27.879166,42.841103]]]}},{"type":"Feature","properties":{"FIPS":"BX","ISO2":"BN","ISO3":"BRN","UN":96,"NAME":"Brunei Darussalam","AREA":527,"POP2005":373831,"REGION":142,"SUBREGION":35,"LON":114.591,"LAT":4.468},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.22304,4.804998000000126],[115.28249400000014,4.611666],[115.272491,4.454166],[115.355553,4.351665],[115.343323,4.31194],[115.10054,4.382221000000129],[115.026657,4.656666],[115.02912900000011,4.82021],[115.061653,4.803054],[115.13220200000012,4.855555],[115.145782,4.90324],[115.22304,4.804998000000126]]],[[[114.98137,4.8924990000001],[115.01843,4.895795000000135],[114.979431,4.831666],[114.856369,4.806388],[114.77916,4.73305],[114.86692800000014,4.355277],[114.80748,4.146944000000133],[114.70166000000016,4.046944],[114.61831700000016,4.02167],[114.329987,4.326944],[114.31137100000011,4.429166],[114.246094,4.521666],[114.09508,4.59054],[114.28997800000013,4.59278],[114.520264,4.69111],[114.66609200000016,4.8325],[114.913597,4.996387],[115.10277,5.045277],[114.98137,4.8924990000001]]]]}},{"type":"Feature","properties":{"FIPS":"CA","ISO2":"CA","ISO3":"CAN","UN":124,"NAME":"Canada","AREA":909351,"POP2005":32270507,"REGION":19,"SUBREGION":21,"LON":-109.433,"LAT":59.081},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.61362,43.420273],[-65.63306,43.47470900000013],[-65.605835,43.51611],[-65.566101,43.508331],[-65.61362,43.420273]]],[[[-59.81695,43.92833],[-59.95333,43.8986],[-60.129997,43.941933],[-59.915,43.925552],[-59.724716,43.991104000000114],[-59.81695,43.92833]]],[[[-66.28278,44.289719000000105],[-66.32223,44.252777],[-66.20639,44.395271],[-66.20805,44.372765],[-66.28278,44.289719000000105]]],[[[-66.88612,44.614441],[-66.85861,44.74305],[-66.772507,44.809158],[-66.74028,44.707771],[-66.88612,44.614441]]],[[[-61.199997,45.558327],[-61.21278,45.556656],[-61.224167,45.56415600000014],[-61.21416,45.568886000000134],[-61.199997,45.558327]]],[[[-60.993889,45.45777],[-61.10445,45.546387],[-61.02361,45.574997],[-60.88,45.560547],[-60.9525,45.529991],[-60.993889,45.45777]]],[[[-63.246391,46.435547],[-63.26167299999985,46.436378],[-63.285004,46.450829],[-63.245834,46.442764000000125],[-63.246391,46.435547]]],[[[-71.11111,46.850548],[-71.09889,46.898048],[-70.936935,46.992493],[-70.860001,47.027771],[-70.809158,47.015274],[-70.90417,46.913605],[-71.11111,46.850548]]],[[[-60.44527,46.86166400000013],[-60.32084,46.864441],[-60.322777,46.736382],[-60.47888,46.389992],[-60.609169,46.20193],[-60.443886,46.326942],[-60.41638899999986,46.328049],[-60.42,46.279991],[-60.645836,46.106102],[-61.1130599999999,45.95527],[-61.12556,45.923607],[-61.0175,45.940712],[-60.85306,46.03138],[-60.734169,46.053322],[-60.807503,45.93110700000011],[-61.09666,45.860275],[-60.968056,45.883331],[-60.915833,45.852776],[-61.118057,45.763611],[-61.14917,45.699715],[-61.07084,45.689987],[-60.922226,45.753609],[-60.800835,45.711662],[-60.40916,45.97999],[-60.39584,45.996101],[-60.68611,45.88694],[-60.78973,45.934433000000126],[-60.305,46.210548],[-60.29528,46.232208],[-60.372772,46.223320000000115],[-60.6561,46.067772],[-60.347778,46.31055],[-60.285278,46.321381],[-60.20556,46.240273],[-60.1,46.246384],[-59.87305,46.175827],[-59.808608999999876,46.111938],[-59.85389,46.002495],[-59.840553,45.938324],[-60.13612,45.865],[-60.23389,45.7011],[-60.39223,45.64111],[-60.96083,45.59943],[-61.16833,45.551384],[-61.19692,45.58374],[-61.336945,45.573326],[-61.45472,45.70555100000013],[-61.5275,45.989433],[-61.44778,46.14944],[-61.28333,46.238884],[-61.097221,46.44609800000012],[-60.892227,46.77388],[-60.70444,46.89138],[-60.609169,47.024437],[-60.460830999999864,46.999161],[-60.427498,46.96583],[-60.498055,46.89666000000011],[-60.44527,46.86166400000013]]],[[[-64.039719,46.743324],[-63.97916,46.74638],[-63.8325,46.61721],[-63.86889,46.531937],[-63.840836,46.46444],[-63.742226,46.43943000000012],[-63.69805,46.456383],[-63.739998,46.496101],[-63.71611,46.55387900000011],[-63.64722399999988,46.567215],[-63.315,46.488602],[-63.27198,46.426926],[-63.21639,46.41220900000013],[-62.45556,46.47860000000014],[-62.16639,46.486107],[-61.965,46.453323],[-62.17333,46.34943],[-62.35778,46.355827],[-62.33472,46.311935],[-62.424721,46.215546],[-62.60389,46.18249500000013],[-62.542229,46.12249],[-62.478333,46.120827000000126],[-62.51389,46.14222],[-62.468887,46.1461],[-62.45917,46.006386],[-62.54167,45.970543],[-62.76112,45.954163],[-62.856667,45.977486],[-62.97083,46.074165],[-62.87527,46.134995],[-62.88528,46.155823],[-63.122223,46.2116620000001],[-62.96278,46.319992],[-63.090836,46.269157],[-63.165001,46.210548],[-63.140556,46.186378000000104],[-63.224442,46.139717],[-63.591942,46.211937],[-63.81111,46.32749200000011],[-63.77222,46.360825],[-63.714722,46.354164],[-63.745003,46.394714000000135],[-64.12999,46.40721100000013],[-64.10556,46.61805],[-64.38751,46.620827],[-64.415558,46.670547],[-64.40028,46.72748600000011],[-64.28612,46.809433],[-64.236389,46.897491000000116],[-64.020844,47.038605000000125],[-63.967498999999854,46.89166],[-64.09167,46.778603],[-64.039719,46.743324]]],[[[-55.876106,47.260551],[-55.96833,47.25777],[-55.88111,47.29333],[-55.855003,47.269714],[-55.876106,47.260551]]],[[[-61.380554,47.62027000000012],[-61.542229,47.54554700000011],[-61.470551,47.61693600000012],[-61.541946,47.61721],[-61.85556,47.417213],[-61.777222,47.431664],[-61.69138,47.51555],[-61.74084,47.444992],[-61.925278,47.34360500000013],[-61.965,47.275551],[-61.81945,47.23333],[-61.78305799999986,47.260551],[-61.799446,47.23276],[-62.013062,47.22582],[-61.92805,47.407211],[-61.535835,47.63166],[-61.380554,47.62027000000012]]],[[[-54.261391,47.390274],[-54.36555,47.411659],[-54.262222,47.474709],[-54.12888,47.670547],[-54.16083,47.534996],[-54.261391,47.390274]]],[[[-54.0775,47.479431],[-54.101944,47.501389],[-54.071388,47.68555],[-54.058891,47.527214],[-54.0775,47.479431]]],[[[-55.90193899999986,47.602493],[-56.097778,47.627487],[-56.11362,47.644714],[-55.93388,47.688324],[-55.93,47.639435],[-55.87639,47.611664],[-55.90193899999986,47.602493]]],[[[-64.482773,47.91777],[-64.514725,47.832497],[-64.605,47.748329000000126],[-64.69055,47.75305200000014],[-64.70279,47.82361],[-64.667496,47.866936],[-64.482773,47.91777]]],[[[-64.5675,47.89944],[-64.59361299999988,47.91805],[-64.501114,48.02749],[-64.47055,47.953323],[-64.5675,47.89944]]],[[[-53.71278,48.14888],[-53.50973,48.198326],[-53.53083,48.097771],[-53.63417,48.075272],[-53.85611,48.09804],[-53.935829,48.182495000000124],[-53.90639,48.21027400000014],[-53.85556,48.169991],[-53.71278,48.14888]]],[[[-123.474442,48.70916],[-123.549438,48.746658],[-123.59666,48.946938],[-123.433884,48.844437],[-123.37027,48.768326],[-123.474442,48.70916]]],[[[-58.34222,49.06610100000011],[-58.35611,49.06582600000012],[-58.333611,49.07777],[-58.330559,49.073326],[-58.34222,49.06610100000011]]],[[[-123.32278,48.861107],[-123.37888,48.85694100000012],[-123.54056,48.94499200000013],[-123.66251,49.035271],[-123.7025,49.10555],[-123.49916,48.94721],[-123.32251,48.89277],[-123.32278,48.861107]]],[[[-125.816101,49.12582400000014],[-125.90639,49.160820000000115],[-125.93306,49.218048000000124],[-125.87888,49.23582],[-125.79916,49.208328],[-125.816101,49.12582400000014]]],[[[-126.13194,49.39333],[-126.07278,49.343048],[-126.06471299999987,49.250832],[-126.239166,49.289719],[-126.23473,49.374161],[-126.13194,49.39333]]],[[[-123.37944,49.32694],[-123.426666,49.344154],[-123.42027,49.38166],[-123.31221,49.41499],[-123.331123,49.354996],[-123.37944,49.32694]]],[[[-54.705276,49.400543],[-54.75917,49.43777],[-54.67306,49.492493],[-54.64084,49.46388],[-54.705276,49.400543]]],[[[-124.179169,49.44110100000012],[-124.31361,49.4561],[-124.3811,49.51194],[-124.24472,49.501389],[-124.181671,49.471375],[-124.179169,49.44110100000012]]],[[[-123.332779,49.44110100000012],[-123.448036,49.441658],[-123.445267,49.515274],[-123.3550029999999,49.53194],[-123.319458,49.47471],[-123.332779,49.44110100000012]]],[[[-55.69555,49.506943],[-55.735001,49.51361],[-55.722771,49.55777000000012],[-55.65305299999988,49.55526700000012],[-55.69555,49.506943]]],[[[-124.68944,49.48027],[-124.82362,49.53944],[-124.83168,49.61055],[-124.77888,49.568886],[-124.68944,49.48027]]],[[[-55.69305,49.567497],[-55.722771,49.581383],[-55.65972,49.635551],[-55.5675,49.59999800000014],[-55.69305,49.567497]]],[[[-54.57667,49.55860100000012],[-54.855835,49.48443600000013],[-54.894447,49.585266],[-54.80556,49.595825],[-54.784172,49.554161000000136],[-54.72972,49.54805],[-54.53612,49.664154],[-54.53805,49.587494000000106],[-54.57667,49.55860100000012]]],[[[-54.004448,49.647491000000116],[-54.25778,49.566666],[-54.298889,49.609993],[-54.28278,49.71666],[-54.141945,49.75],[-54.08583,49.745544],[-54.004448,49.647491000000116]]],[[[-124.129707,49.650826],[-124.18694,49.668884],[-124.19943,49.7061],[-124.13722,49.75222],[-124.01611,49.775551],[-124.129707,49.650826]]],[[[-56.803612,49.763329],[-56.8275,49.76111],[-56.83805,49.767494],[-56.782219,49.786942],[-56.803612,49.763329]]],[[[-124.44611,49.723320000000115],[-124.35139,49.698044],[-124.122772,49.493607],[-124.62721,49.719154],[-124.660828,49.74276700000012],[-124.65666,49.79694],[-124.44611,49.723320000000115]]],[[[-126.6761,49.583603],[-126.80804,49.619713],[-126.965286,49.72694],[-126.940552,49.831383],[-126.7775,49.879715],[-126.67805,49.825272],[-126.61333,49.64833],[-126.62416,49.60139],[-126.6761,49.583603]]],[[[-62.08972199999988,49.38638300000013],[-61.875557,49.344994],[-61.66167,49.14444],[-61.79611,49.07805],[-62.195549,49.074997],[-63.09,49.228043],[-63.28333,49.31777],[-63.57306,49.39666000000011],[-63.66277,49.533051],[-63.88194,49.659157],[-64.39,49.789719000000105],[-64.513901,49.863609],[-64.445541,49.904434],[-64.14278,49.948044],[-63.13612,49.78082],[-62.54555,49.59999800000014],[-62.20583,49.41137700000013],[-62.08972199999988,49.38638300000013]]],[[[-124.92416,50.058601],[-124.96861,50.03583],[-125.06696,50.107498000000135],[-124.98222,50.17610200000012],[-124.98332,50.225548],[-124.91528,50.14138],[-124.897781,50.077492],[-124.92416,50.058601]]],[[[-63.859444,50.197769],[-63.916107,50.20166],[-63.930557,50.229431],[-63.889725,50.242218],[-63.859444,50.197769]]],[[[-125.16777,49.98082],[-125.21417,50.069992],[-125.32362,50.143326],[-125.34,50.26888300000013],[-125.2547299999999,50.29361],[-125.16722099999987,50.213608],[-125.16777,49.98082]]],[[[-124.8125,50.11138],[-124.963058,50.236382],[-124.91832699999986,50.29972],[-124.75667,50.17833],[-124.8125,50.11138]]],[[[-124.73083,50.30222],[-124.659439,50.25833],[-124.695831,50.157494],[-124.794998,50.228874],[-124.73083,50.30222]]],[[[-125.543877,50.393883],[-125.63583,50.37971],[-125.763634,50.39749100000011],[-125.523903,50.434433000000126],[-125.543877,50.393883]]],[[[-125.165558,50.374435],[-125.048607,50.207771],[-125.14029,50.121658],[-125.15611,50.23916],[-125.21362,50.316666],[-125.372223,50.289436],[-125.40028,50.320831],[-125.28444,50.435822000000144],[-125.165558,50.374435]]],[[[-125.426102,50.3555530000001],[-125.52806,50.381660000000124],[-125.37999,50.460823],[-125.331947,50.435547],[-125.426102,50.3555530000001]]],[[[-125.80722,50.413605],[-125.92194399999987,50.410271],[-125.95111,50.433876],[-125.81416,50.468048],[-125.73805,50.428047],[-125.80722,50.413605]]],[[[-126.22583,50.55526700000012],[-126.35056,50.520271],[-126.623894,50.53388],[-126.28612,50.59833],[-126.22583,50.55526700000012]]],[[[-126.4664,50.575829],[-126.554169,50.60277600000012],[-126.361389,50.61582900000013],[-126.39139,50.592766],[-126.4664,50.575829]]],[[[-59.34583,50.53388],[-59.38417,50.633049],[-59.37194,50.65277100000014],[-59.300278,50.58194],[-59.34583,50.53388]]],[[[-126.873322,50.663322],[-126.83112,50.629158],[-127.14473,50.633881],[-127.093887,50.669159],[-126.873322,50.663322]]],[[[-126.64389,50.691933],[-126.68555,50.75888800000013],[-126.53639,50.763611],[-126.53583,50.758606],[-126.64389,50.691933]]],[[[-55.56472,50.69971],[-55.651665,50.723045],[-55.624718,50.787216],[-55.450554,50.798332],[-55.56472,50.69971]]],[[[-126.27306,50.65277100000014],[-126.463333,50.641663],[-126.61749,50.66777],[-126.38972,50.806381],[-126.2664,50.82777],[-126.176666,50.743881],[-126.253052,50.699646],[-126.27306,50.65277100000014]]],[[[-126.731377,50.77193],[-126.853333,50.78277],[-126.90584,50.8227690000001],[-126.643341,50.846939000000134],[-126.56305,50.79999500000014],[-126.731377,50.77193]]],[[[-127.226936,50.636108],[-126.56389,50.483604],[-126.205,50.466660000000104],[-125.94777,50.384995],[-125.564163,50.36388],[-125.449722,50.32361],[-125.36278,50.138046],[-125.22166,50.018051],[-125.16861,49.912766],[-124.89806,49.73166],[-124.916397,49.631660000000124],[-124.7894359999999,49.464157],[-123.94305,49.2111],[-123.85638,49.149162],[-123.87138,49.181107],[-123.824448,49.192764000000125],[-123.699432,49.143883],[-123.731377,49.117493],[-123.85056,49.145546],[-123.751953,49.040833],[-123.76334,48.97693600000014],[-123.582779,48.83194],[-123.509453,48.587494],[-123.464447,48.683327],[-123.39639,48.677773000000116],[-123.34834,48.535828],[-123.276108,48.4511030000001],[-123.289719,48.41332],[-123.36028299999985,48.397217],[-123.425003,48.431938],[-123.58333,48.301102],[-124.72084,48.586655],[-124.82278,48.65248900000012],[-125.11389,48.731102],[-125.184998,48.800827],[-124.84277299999987,49.015549],[-124.780838,49.13138],[-124.80777,49.240547],[-124.82611,49.12249],[-124.906113,49.001938],[-125.126938,48.991104],[-125.22417,48.95166000000012],[-125.32722,48.9661],[-125.483612,48.915825],[-125.75111,49.055267],[-125.76807,49.098602],[-125.641678,49.163048],[-125.611107,49.22027],[-125.75334,49.147491],[-125.79666,49.310272],[-125.96501199999989,49.225266],[-126.020554,49.263054000000125],[-125.945541,49.31666600000011],[-125.90472,49.435822000000144],[-126.001953,49.321938],[-126.06111,49.344154],[-126.120003,49.42305],[-126.54222,49.37443500000011],[-126.579453,49.41332200000011],[-126.5661,49.58443],[-126.470284,49.635551],[-126.08751,49.662209],[-126.11972,49.681107],[-126.340843,49.648605],[-126.58501,49.701103],[-126.679718,49.878876000000105],[-126.80444299999988,49.909157],[-126.8761,49.873322],[-127.121117,49.852287],[-127.241379,49.961937],[-127.13028,50.084717000000126],[-127.15834,50.096382],[-127.27055,50.0991590000001],[-127.2775,50.055267],[-127.38055,50.0261],[-127.54805,50.130272000000105],[-127.78029,50.08416],[-127.895844,50.10889],[-127.903343,50.13249200000013],[-127.78889,50.222214],[-127.80444,50.321381],[-127.93138,50.316101],[-127.978607,50.342491],[-127.923889,50.462769],[-127.58417,50.486938],[-127.446953,50.37276500000013],[-127.57001,50.51221],[-127.41139,50.587494000000106],[-127.873322,50.62388],[-127.589722,50.54610400000013],[-128.05142,50.446693],[-128.319458,50.608604],[-128.41666,50.76916],[-128.05307,50.871933],[-127.9097289999999,50.871376],[-127.50723,50.772217],[-127.45917,50.718323],[-127.226936,50.636108]]],[[[-127.65472,50.837769],[-127.75307,50.852776],[-127.83861,50.88166],[-127.72639,50.9086],[-127.65472,50.837769]]],[[[-55.555557,50.886383],[-55.61555,50.9060970000001],[-55.63528,50.96138000000013],[-55.53528,50.981377],[-55.555557,50.886383]]],[[[-55.993889,51.200272],[-55.998055,51.2075],[-55.96777,51.226654],[-55.97055,51.218323],[-55.993889,51.200272]]],[[[-58.41333,51.238884],[-58.462219,51.216103],[-58.565,51.23333],[-58.41945,51.274712000000136],[-58.41333,51.238884]]],[[[-53.75637,48.50326200000012],[-54.011116,48.42166],[-54.09444,48.425827],[-54.147224,48.39138],[-54.138054,48.359161],[-53.647224,48.541107],[-53.574722,48.50722],[-53.55805,48.474709],[-53.588051,48.428047000000106],[-53.488609,48.50722],[-53.43722,48.619987],[-53.34583,48.61583],[-53.22639,48.55555],[-53.079727,48.6988750000001],[-52.97805,48.60443900000013],[-53.053886,48.442764],[-53.1875,48.35083],[-53.345001,48.360275],[-53.388892999999875,48.30387900000011],[-53.662216,48.163322],[-53.93417,48.23333000000014],[-53.94527,48.178879],[-53.912498,48.08416],[-53.683887,48.060822000000144],[-53.91138,48.019157],[-53.77917,47.996658],[-53.60778,48.051102],[-53.737778,47.82666],[-53.793335,47.7686],[-53.8525,47.78527100000014],[-53.85055,47.760551000000135],[-53.8375,47.699432],[-53.76028,47.609993000000145],[-53.55055,47.52916],[-53.461113,47.80666],[-53.274445,48.013329],[-53.17055,48.0536],[-53.053329,48.049721],[-52.919998,48.171379],[-52.83139,48.10166],[-52.928337,48.07555],[-53.05805,47.922493],[-53.178337,47.651382],[-53.26722,47.606102],[-53.26167,47.54639],[-53.17556,47.4313810000001],[-53.121941,47.413322],[-52.89695,47.558601],[-52.779442,47.803047000000106],[-52.700554,47.749435],[-52.61445,47.51666],[-52.65333,47.437767],[-52.787506,47.30804],[-52.938332,46.789162],[-53.102501,46.636658],[-53.192497,46.623322],[-53.36195,46.737495],[-53.532776,46.614159],[-53.61777,46.644157],[-53.647781,46.80193],[-53.594719,46.9447100000001],[-53.64167,46.983879],[-53.539444,47.11416],[-53.591385,47.1561],[-54.05333,46.794998000000135],[-54.18777,46.81916],[-54.16083,46.981934],[-53.993889,47.265274],[-53.879997,47.34804500000013],[-53.8675,47.402771],[-53.90028,47.486107],[-53.89472,47.6055530000001],[-53.98389,47.757774],[-54.19527,47.857498],[-54.21916,47.766106],[-54.435272,47.505554],[-54.48277,47.391663],[-54.61306,47.35833],[-54.41833,47.603607],[-54.62138,47.389992],[-54.727219,47.351387],[-54.81861099999986,47.363609],[-54.787506,47.418884000000105],[-54.856392,47.390549],[-55.043892,47.220825],[-55.06945,47.082214],[-55.24695,46.916939],[-55.38417,46.865829000000126],[-55.47194,46.88638300000014],[-55.68972,46.85833],[-55.92361,46.889717],[-55.98305,46.952492],[-55.86555,47.07277],[-55.48778,47.13721],[-55.29834,47.26721],[-55.266663,47.39666],[-55.179169,47.460548],[-54.95139299999988,47.504997],[-54.84583,47.556938],[-54.845551,47.633881],[-54.97083,47.596657],[-55.03761,47.626602],[-54.93611,47.78166],[-55.13077,47.61193800000012],[-55.26278,47.650543],[-55.357506,47.726097],[-55.427498,47.71166],[-55.4675,47.61916],[-55.400276,47.615547000000106],[-55.40666,47.49305],[-55.55527,47.440269],[-55.587776,47.3986],[-55.654167,47.49527],[-55.79528,47.492767],[-55.92556,47.439156],[-55.745834,47.585266],[-56.104172,47.463608],[-56.17250099999989,47.497215],[-55.628334,47.674713],[-55.83889,47.61721],[-55.917503,47.65749],[-55.79944599999987,47.799164],[-55.742226,47.923325],[-55.773613,47.95694],[-55.854446,47.794716],[-56.04973,47.699432],[-56.0875,47.736938],[-56.057503,47.77833],[-56.125,47.75722],[-56.185272,47.680275],[-56.16138,47.634163000000115],[-56.394722,47.60110500000013],[-56.61555,47.613327],[-56.840836,47.521378],[-56.9925,47.583878000000134],[-57.126106,47.563881],[-57.53082999999987,47.630821],[-57.657776,47.6030500000001],[-58.03639,47.696098],[-59.135559,47.55638],[-59.30444,47.609993000000145],[-59.325562,47.807213],[-59.406944,47.889717],[-59.23028,48.022766],[-58.958054,48.149994],[-58.58778,48.43055],[-58.492775,48.455551],[-58.601112,48.400826],[-58.483612,48.427773],[-58.41833499999989,48.48666],[-58.42028,48.508049],[-58.682503,48.554993],[-59.26112,48.476654],[-59.1375,48.59888],[-58.774719,48.778877],[-58.95861,48.61388],[-58.89695,48.551933],[-58.709442,48.570831],[-58.658051,48.74305],[-58.543892,48.86082],[-58.50084,49.00361],[-58.39611,49.13138],[-58.34888,49.14582800000011],[-58.368019,49.061428],[-58.3537,49.056656],[-58.17832,49.063217],[-58.06028,48.9761],[-57.881668,48.96888],[-58.05055,48.995827],[-58.10805,49.03777],[-58.144447,49.121933],[-57.91861,49.12471],[-57.87888,49.17027300000012],[-57.939438,49.144997],[-58.095894,49.1662710000001],[-57.92805,49.240273000000116],[-58.20083599999986,49.239716],[-58.24194,49.29166],[-58.22333,49.390274],[-58.15222,49.46888],[-57.998337,49.559158],[-57.74695,49.453606],[-57.696388,49.463608],[-57.872719,49.537773],[-57.94472,49.607498],[-57.94833,49.674164],[-57.3725,50.5908280000001],[-57.148056,50.621933000000126],[-57.37861,50.687767],[-57.08944,50.780548000000124],[-56.927498,50.91582],[-56.89917,51.02444],[-56.964722,51.043327],[-56.78445,51.13777],[-56.809723,51.183601],[-56.793892,51.23999],[-56.682503,51.3394320000001],[-56.110557999999855,51.52388],[-55.898056,51.62860100000012],[-55.83778,51.621376],[-55.885,51.562492000000134],[-55.877777,51.492218],[-55.64,51.481934],[-55.737503,51.55249],[-55.718605,51.587212],[-55.58139,51.56027],[-55.51584,51.602219],[-55.405273,51.56166100000013],[-55.492226,51.377769],[-55.597778,51.303604],[-56.085556,51.36832],[-56.09639,51.318329],[-55.992561,51.17657500000013],[-55.83778,51.230545],[-55.76083,51.21388],[-55.71,51.173607],[-55.7325,51.07999400000011],[-56.068893,50.724434],[-56.133331,50.773048],[-56.10389,50.898331],[-56.15527,50.885551000000135],[-56.13578,50.66988400000014],[-56.16333,50.617767],[-56.42306,50.352776],[-56.51195,50.203606],[-56.74306,50.022766000000104],[-56.781944,49.917496],[-56.72666,49.9161],[-56.75985,49.83728],[-56.905331,49.74752000000012],[-56.78401,49.731243],[-56.84888,49.544441],[-56.598609999999894,49.811935],[-56.477776,49.89222],[-56.43195,49.890549000000135],[-56.330284,50.024994000000106],[-56.15388,50.150543],[-56.11666,50.153046],[-56.005,50.03138],[-55.896111,50.031937],[-55.75500499999986,49.924164],[-55.4917,50.007309],[-55.45972,49.957497],[-55.492226,49.917213],[-55.98611499999987,49.74694],[-56.11528,49.63999200000012],[-56.124168,49.613327],[-55.89389,49.714157000000114],[-55.83333,49.68665],[-55.88028,49.58499],[-56.08,49.486938],[-56.129166,49.425552],[-55.82778,49.5241620000001],[-55.72083,49.475822],[-55.664444,49.381935],[-55.523056,49.48666],[-55.566666,49.36277],[-55.496109,49.45388],[-55.36945,49.503326],[-55.31528,49.31444],[-55.264336,49.406441],[-55.305557,49.534439],[-55.14111,49.54527300000012],[-55.12472,49.465271000000136],[-55.221107,49.26194],[-55.365837,49.165268],[-55.31945,49.149162],[-55.30778,49.0991590000001],[-55.383331,49.040833],[-55.27222,49.099998],[-55.27528,49.20444],[-55.081116,49.283882],[-55.078056,49.356941],[-54.99055,49.281662],[-54.824448,49.269157],[-54.528885,49.533333],[-54.474716,49.535],[-54.43083,49.465828],[-54.48333,49.36193800000012],[-54.48695,49.25972],[-54.40083,49.325272],[-54.407501,49.37471000000011],[-54.35805,49.426941],[-54.178886,49.370827],[-54.14,49.448601],[-54.04167,49.48082],[-53.775,49.396103],[-53.511116,49.277214],[-53.488609,49.220543000000134],[-53.593887,49.03555],[-53.804443,49.022217],[-53.725273,49.00972],[-53.97444,48.847771],[-54.09611,48.81221000000011],[-53.89917,48.838043],[-53.800835,48.812767],[-53.93222,48.713936],[-53.932503,48.62471000000011],[-53.790001,48.67999300000014],[-53.92445,48.671379],[-53.85756,48.704937],[-53.60194,48.689713],[-53.658607,48.641937],[-53.78778,48.62249],[-53.95611,48.543884],[-53.746391,48.5586],[-53.75637,48.50326200000012]]],[[[-127.914436,51.41082],[-128.08112,51.47470900000013],[-128.15307599999988,51.60166],[-128.145569,51.653603],[-128,51.72054],[-127.87361,51.464439],[-127.914436,51.41082]]],[[[-55.3675,51.874161],[-55.430557,51.89666],[-55.27,52.000549],[-55.30222,51.93333],[-55.3675,51.874161]]],[[[-128.053894,51.753609],[-128.13193,51.7438810000001],[-128.25308,51.87221],[-128.15085,52.035271],[-127.983322,52.06193],[-127.95122,52.04691300000013],[-127.954727,51.9811],[-128.00723,51.78249],[-128.053894,51.753609]]],[[[-79.252792,52.071381],[-79.376663,51.936104],[-79.611664,51.91443600000014],[-79.654175,51.98666],[-79.623322,52.025269],[-79.53833,52.023323],[-79.33833,52.110275],[-79.252792,52.071381]]],[[[-131.01889,51.946098],[-131.101654,52.002777],[-131.1272,52.095543],[-131.11026,52.1511],[-131.00946,52.102776],[-131.01889,51.946098]]],[[[-127.96278399999989,52.07471],[-128.07638,52.07999400000011],[-128.12082,52.14194],[-127.881104,52.172218],[-127.96278399999989,52.07471]]],[[[-128.21194,52.01554900000013],[-128.25308,52.019714000000135],[-128.29416,52.113609],[-128.239716,52.18415800000014],[-128.15307599999988,52.195267],[-128.15112,52.081108],[-128.21194,52.01554900000013]]],[[[-128.42834,52.13749700000011],[-128.51114,52.16999],[-128.416412,52.22637900000012],[-128.40778,52.152771],[-128.42834,52.13749700000011]]],[[[-128.29999,52.133606],[-128.36499,52.1624910000001],[-128.377197,52.223877],[-128.227203,52.21888000000012],[-128.29999,52.133606]]],[[[-81.476944,52.249161],[-81.646118,52.251389],[-81.710007,52.262497],[-81.551666,52.29805],[-81.48056,52.277489],[-81.476944,52.249161]]],[[[-127.92471,52.174164000000125],[-128.07971,52.18638],[-128.17001,52.24971800000014],[-128.04779,52.300545],[-127.972778,52.29527300000012],[-127.90944,52.210274],[-127.92471,52.174164000000125]]],[[[-128.18445,52.2786],[-128.21362,52.279716],[-128.18917799999986,52.330826000000116],[-128.104431,52.421379],[-128.05667,52.32888],[-128.18445,52.2786]]],[[[-127.72444,51.976936],[-127.87082699999989,51.94471],[-127.899437,51.97332],[-127.881104,52.07888],[-127.78917,52.22193],[-127.51000999999984,52.306938],[-127.453339,52.37305],[-127.263901,52.436653],[-127.23473,52.416939],[-127.207779,52.344711],[-127.23222,52.313049],[-127.579727,52.177216],[-127.654167,52.12388],[-127.72444,51.976936]]],[[[-128.66861,52.266388],[-128.748322,52.369156],[-128.74722,52.471657],[-128.674438,52.482208],[-128.615814,52.453606],[-128.61777,52.329994],[-128.66861,52.266388]]],[[[-128.471924,52.49276700000012],[-128.47082,52.44971],[-128.51807,52.431938],[-128.66314699999987,52.49193],[-128.78473,52.496101000000124],[-128.813904,52.524994000000106],[-128.732483,52.59055],[-128.57818599999987,52.5936430000001],[-128.535278,52.647217],[-128.471924,52.49276700000012]]],[[[-131.464447,52.627487],[-131.5936,52.585823],[-131.709717,52.705269],[-131.475281,52.73666],[-131.43918,52.70166],[-131.464447,52.627487]]],[[[-128.4303,52.36805],[-128.46777,52.393051],[-128.441681,52.746941000000106],[-128.383331,52.797493],[-128.275024,52.48999],[-128.3114,52.423882],[-128.4303,52.36805]]],[[[-128.974426,52.453323],[-129.27057,52.71915],[-129.27722199999988,52.823051000000135],[-129.10416,52.7411],[-128.92334,52.606659],[-128.92252,52.515274],[-128.974426,52.453323]]],[[[-128.26974,52.596939000000134],[-128.32501,52.7761],[-128.210632,52.798515],[-128.177795,52.826103],[-128.26974,52.596939000000134]]],[[[-131.63974,52.82804900000013],[-131.73306,52.808601],[-131.83139,52.841934],[-131.7486,52.85332],[-131.63974,52.82804900000013]]],[[[-128.50528,52.641106],[-128.54001,52.703323],[-128.50613,52.873047],[-128.45084,52.805267],[-128.50528,52.641106]]],[[[-129.610535,52.954994],[-129.62222,52.958046],[-129.650848,53.01888300000013],[-129.557495,53.00666],[-129.561127,52.970543],[-129.610535,52.954994]]],[[[-129.531677,53.010551000000135],[-129.546967,53.008888],[-129.640015,53.04416],[-129.56277,53.05305],[-129.51779,53.02999100000011],[-129.531677,53.010551000000135]]],[[[-55.76306,53.029434],[-55.853333,53.015274],[-55.87639,53.027489],[-55.80055,53.093605],[-55.749168,53.06916],[-55.76306,53.029434]]],[[[-129.60248,53.057213],[-129.701935,53.07833],[-129.738312,53.127213],[-129.65445,53.132767],[-129.58417,53.08027600000014],[-129.60248,53.057213]]],[[[-79.909164,53.081940000000145],[-79.938599,53.134995],[-79.897781,53.174438],[-79.78722,53.10193600000014],[-79.909164,53.081940000000145]]],[[[-129.43249,53.151382],[-129.29000899999988,52.993607],[-129.28945899999982,52.97193],[-129.41418,53.010551000000135],[-129.475281,53.10193600000014],[-129.54724,53.133049000000135],[-129.4986,53.188599],[-129.43249,53.151382]]],[[[-81.10610999999989,53.19971],[-80.763336,52.931381],[-80.66777,52.771935],[-80.699722,52.69609800000011],[-81.91666,52.961662],[-82.0633239999999,53.026657000000114],[-81.96529,53.122215],[-81.84805,53.181664],[-81.3852839999999,53.22499],[-81.10610999999989,53.19971]]],[[[-131.762238,53.196655],[-131.594727,53.035271],[-131.79474,53.073051],[-131.964722,53.04639],[-131.911957,53.005272],[-131.831116,53.04305],[-131.6286,52.99833],[-131.59582,52.964714],[-131.61554,52.920273],[-131.6875,52.86916],[-131.80222,52.86472],[-131.906677,52.940269],[-131.982483,52.879715],[-131.85638,52.856102],[-131.65945,52.581665],[-131.4675,52.501389000000124],[-131.39534,52.37549200000012],[-131.328339,52.431107],[-131.236389,52.439156],[-131.25085,52.35916],[-131.330597,52.33277],[-131.328339,52.285],[-131.136414,52.311378],[-131.00751,52.217209],[-131.030304,52.173882],[-131.26473999999982,52.119713],[-131.55112,52.333878],[-131.58056599999983,52.39055],[-131.520294,52.397774],[-131.5614,52.431664000000126],[-131.7753,52.511665],[-132.08472,52.732208],[-132.002502,52.776939],[-131.91751099999988,52.72249],[-131.95166,52.78110500000014],[-132.06168,52.813881],[-132.12747,52.750832],[-132.34695,52.93638],[-132.255585,52.95471],[-132.16779,52.928047000000106],[-132.11276,52.997772],[-132.26697,53.030823],[-132.47971,53.027214],[-132.55279,53.08971400000013],[-132.563629,53.13916],[-132.41363499999986,53.12749],[-132.07083,53.153877],[-131.928345,53.230545],[-131.811127,53.25361],[-131.762238,53.196655]]],[[[-55.77805,53.289719000000105],[-55.786667,53.28833],[-55.797226,53.295547],[-55.785,53.303604],[-55.77805,53.289719000000105]]],[[[-128.68945,53.164436],[-128.62469,53.155548],[-128.57611,53.10527000000013],[-128.51834099999988,52.911102000000135],[-128.59222,52.613884],[-128.74887,52.59721400000012],[-128.74805,52.754166],[-128.64474,52.90416],[-128.646973,52.96333],[-128.67694,52.962769],[-128.753906,52.830826],[-128.7789,52.66415400000011],[-128.88446,52.64804800000013],[-129.04779,52.731377],[-129.12192,52.863052],[-128.8436,53.04416],[-129.011688,53.139717],[-128.993866,53.097214],[-128.862213,53.034164],[-129.06915,52.903877],[-129.16583,52.92305],[-129.191376,53.01332900000011],[-129.161682,53.0711060000001],[-129.11499,53.06471],[-129.075287,53.1030500000001],[-129.05889899999988,53.23137700000012],[-129.08972,53.28721600000011],[-129.06665,53.300827],[-128.8913879999999,53.287773],[-128.68945,53.164436]]],[[[-129.15308,53.098328],[-129.28945899999982,53.10193600000014],[-129.332489,53.13749700000011],[-129.336395,53.19110100000012],[-129.2680659999999,53.33194],[-129.16861,53.29610400000013],[-129.13193,53.11361],[-129.15308,53.098328]]],[[[-79.942764,53.26694],[-80.01806599999986,53.265831],[-80.085281,53.326942],[-80.06139,53.355553],[-79.94472,53.36805],[-79.911942,53.29055000000011],[-79.942764,53.26694]]],[[[-129.358337,53.304161],[-129.434998,53.378876000000105],[-129.39502,53.41082],[-129.30334,53.33111],[-129.358337,53.304161]]],[[[-55.78751,53.394157],[-55.94944,53.4302750000001],[-55.97916,53.45916],[-55.87805,53.486656],[-55.72916,53.4552690000001],[-55.78751,53.394157]]],[[[-128.9425,53.317497],[-129.11139,53.31582600000013],[-129.14334,53.349716],[-129.01529,53.53666],[-128.98471,53.533051],[-128.97555499999987,53.47276],[-128.90112,53.386658],[-128.9425,53.317497]]],[[[-79.709732,53.50804900000014],[-79.74695,53.513329],[-79.773621,53.531662],[-79.7614,53.546104],[-79.709732,53.50804900000014]]],[[[-129.93472299999985,53.484161],[-129.95221,53.483047],[-130.02112,53.505272],[-129.94196,53.551102],[-129.886688,53.542221],[-129.93472299999985,53.484161]]],[[[-129.87942,53.39277],[-129.72916,53.215271],[-129.76224,53.158882],[-129.931671,53.158043],[-130.111115,53.328049],[-130.20334,53.378876000000105],[-130.30585,53.384163],[-130.527222,53.552216],[-130.52029,53.62471],[-130.459991,53.637497],[-130.202209,53.55388],[-129.87942,53.39277]]],[[[-129.086395,53.4461],[-129.1575,53.39277],[-129.15308,53.638603],[-129.00806,53.693321],[-128.818878,53.70916000000011],[-129.085541,53.504997],[-129.086395,53.4461]]],[[[-130.09109,53.569443],[-130.32916,53.61805],[-130.40335,53.682495],[-130.29889,53.796944],[-130.26169,53.79639],[-130.119446,53.686653],[-130.09109,53.569443]]],[[[-56.867218,53.765],[-56.94861,53.75],[-57.01445,53.78555300000011],[-56.844444,53.792496],[-56.867218,53.765]]],[[[-129.82611,53.72416],[-129.424713,53.411377],[-129.454987,53.37249],[-129.473877,53.23999],[-129.50668,53.216660000000104],[-129.563904,53.2074970000001],[-129.80722,53.384163],[-129.858337,53.456383],[-129.883911,53.57972],[-129.9249,53.605545],[-130.016113,53.5727690000001],[-130.056396,53.60388200000011],[-129.92821,53.6396],[-130.091949,53.6772160000001],[-130.286407,53.837494],[-130.26642,53.881378],[-130.1864,53.9161],[-129.82611,53.72416]]],[[[-79.864166,53.90638],[-79.906113,53.913879],[-79.926392,53.935265],[-79.86749,53.919716],[-79.864166,53.90638]]],[[[-130.14975,53.989159],[-130.214996,54.029160000000104],[-130.193604,54.07972000000012],[-130.132477,54.049995],[-130.122498,54.0086060000001],[-130.14975,53.989159]]],[[[-130.25919,54.004715],[-130.23330699999985,53.9469380000001],[-130.344452,53.835266],[-130.4585,53.88216],[-130.407776,53.963326],[-130.327484,53.966934],[-130.35498,53.993324],[-130.4375,53.981659],[-130.48517,53.912048],[-130.54724,53.903877],[-130.60278,53.956657],[-130.666962,53.963882000000126],[-130.698059,53.914154],[-130.61804,53.857216],[-130.64252,53.832771],[-130.712769,53.86110700000012],[-130.7202759999999,53.934715],[-130.667236,53.986938],[-130.411133,54.10083],[-130.25919,54.004715]]],[[[-58.518333,54.051659],[-58.56139,54.06388],[-58.468605,54.114716],[-58.37389,54.104164],[-58.518333,54.051659]]],[[[-132.808044,54.12027],[-132.658356,54.14222],[-132.569733,54.111938],[-132.56665,54.029160000000104],[-132.66418,53.98333],[-132.681671,53.952774],[-132.6589049999999,53.93943],[-132.55585,53.989159],[-132.54056,54.03833],[-132.30112,54.111664000000125],[-132.1503,53.992767],[-132.11111,53.878326],[-132.225006,53.780273],[-132.66333,53.67943600000012],[-132.41806,53.606102],[-132.156403,53.716385],[-132.152496,53.812492],[-132.0845,53.872738],[-132.126373,53.979431],[-132.07251,54.022766],[-131.875,54.052773],[-131.66305,54.152214],[-131.704987,53.966934],[-131.868866,53.793327],[-131.93332,53.615273],[-131.90863,53.357498],[-131.98221,53.25166300000012],[-132.2728,53.210274],[-132.121918,53.18943],[-132.18695,53.160545],[-132.457489,53.145271],[-132.59665,53.24749],[-132.683624,53.25666],[-132.54333,53.330551],[-132.73389,53.337212],[-132.69751,53.37694],[-132.41055,53.294716],[-132.406677,53.339714],[-132.52084,53.41220900000013],[-132.86749,53.463608000000136],[-132.972504,53.55582400000014],[-132.98889,53.591934],[-132.881927,53.60555],[-133.007782,53.67638],[-132.95444,53.702774],[-132.98444,53.742767],[-133.10638,53.782494],[-133.13892,53.880272],[-133.041107,54.03166],[-133.08194,54.10249],[-133.07165,54.168884],[-132.808044,54.12027]]],[[[-130.19556,54.11805],[-130.255,54.13221],[-130.25281,54.185547],[-130.151947,54.154434],[-130.19556,54.11805]]],[[[-79.469727,54.167496],[-79.47555,54.191376000000105],[-79.41305,54.19166],[-79.426392,54.183052],[-79.469727,54.167496]]],[[[-130.64862,54.114441],[-130.785,54.149994],[-130.78168,54.2116620000001],[-130.648895,54.149719],[-130.64862,54.114441]]],[[[-130.35556,54.25777],[-130.375,54.24416],[-130.46722,54.308601],[-130.41779,54.326385],[-130.35556,54.25777]]],[[[-130.26642,54.260551],[-130.33417,54.244713],[-130.350281,54.30555],[-130.27279699999988,54.32972],[-130.26642,54.260551]]],[[[-130.70416,54.356659],[-130.75446,54.356102000000135],[-130.76779199999987,54.38499500000012],[-130.699432,54.406654],[-130.70416,54.356659]]],[[[-57.32472,54.498878],[-57.36278,54.5061040000001],[-57.359444,54.53333],[-57.26722,54.58554800000013],[-57.24028,54.517769],[-57.32472,54.498878]]],[[[-130.95166,54.45471],[-130.96472,54.52777100000014],[-130.92557,54.619438],[-130.74777,54.62609900000012],[-130.76083,54.55471000000011],[-130.95166,54.45471]]],[[[-79.66722,54.76388500000013],[-79.726944,54.752495],[-79.58722,54.799164],[-79.63779,54.773605],[-79.66722,54.76388500000013]]],[[[-130.26834,54.715],[-130.370544,54.69221],[-130.37887599999988,54.695267],[-130.20944199999985,54.80777000000012],[-130.21722,54.741661],[-130.26834,54.715]]],[[[-130.51834,54.70249200000012],[-130.61166,54.758049],[-130.469452,54.80777000000012],[-130.43582,54.76332900000011],[-130.4538879999999,54.71915400000012],[-130.51834,54.70249200000012]]],[[[-57.94083,54.91193],[-57.988609,54.86721],[-57.98388699999987,54.80222],[-57.864723,54.832214],[-57.841667,54.812492],[-58.119995,54.755554],[-58.174171,54.76777],[-58.17238,54.797314],[-58.22472,54.835266],[-58.215836,54.878044],[-57.94083,54.91193]]],[[[-79.12582,54.897217],[-79.235,54.89666000000011],[-79.776947,54.77804600000013],[-79.68693,54.838326],[-79.46722,54.888329],[-79.01501,54.938324],[-79.12582,54.897217]]],[[[-58.675278,54.914154],[-58.76055899999989,54.92055],[-58.697495,55.003326],[-58.66028,55.0086060000001],[-58.675278,54.914154]]],[[[-130.385284,54.76999],[-130.459991,54.828331],[-130.168335,55.019714],[-130.16333,54.931381],[-130.385284,54.76999]]],[[[-82.964722,55.263611],[-82.97,55.25972],[-83.035278,55.278877],[-82.980835,55.278877],[-82.964722,55.263611]]],[[[-77.59277,55.43526500000013],[-77.64416499999986,55.425827],[-77.336121,55.60443900000012],[-77.2,55.650269],[-77.59277,55.43526500000013]]],[[[-60.97083,55.86944],[-61.01694,55.87305],[-61.070557,55.938599],[-60.968056,55.93665],[-60.90833,55.89833],[-60.97083,55.86944]]],[[[-60.85861,55.864716],[-60.902222,55.871376000000105],[-60.865,55.952774],[-60.686386,55.92193600000013],[-60.85861,55.864716]]],[[[-79.12305,55.789993],[-79.00935,56.063614],[-78.9575,56.0836],[-78.93971,56.02527],[-79.12305,55.789993]]],[[[-60.943329,56.00666],[-61.17111199999988,56.0286],[-61.23277,56.091103],[-61.089165,56.169991],[-60.94444,56.09499],[-60.943329,56.00666]]],[[[-61.62361,56.399994],[-61.474716,56.406654],[-61.411667,56.37221],[-61.412216,56.32666],[-61.57973,56.322495],[-61.79611,56.413048],[-61.62361,56.399994]]],[[[-78.84,56.12999],[-78.93332,56.115547],[-78.916946,56.17249300000014],[-78.825287,56.262772],[-78.80943,56.338882000000126],[-78.8325,56.35083],[-78.7514,56.432495],[-78.66722,56.439713],[-78.65083,56.28916],[-78.676392,56.181107],[-78.84,56.12999]]],[[[-79.626938,56.26527],[-79.538605,56.43305],[-79.49222,56.44694],[-79.56111,56.299164],[-79.626938,56.26527]]],[[[-79.619995,56.385269],[-79.714447,56.299995],[-79.98611,56.199715],[-80.109726,56.197769],[-80.04445,56.310822000000144],[-79.698883,56.36888],[-79.54333,56.52777100000014],[-79.619995,56.385269]]],[[[-61.435829,56.541382000000105],[-61.16806,56.474709],[-61.14889,56.441101],[-61.517501999999865,56.44694],[-61.642227,56.486382],[-61.42306,56.4791560000001],[-61.634445,56.512497],[-61.588333,56.558044],[-61.435829,56.541382000000105]]],[[[-79.02167,56.426941],[-78.924713,56.419441],[-78.94333,56.284996],[-79.19527,55.891937],[-78.990829,56.261665],[-78.977219,56.3886],[-79.055267,56.344437],[-79.09306,56.256943],[-79.083328,56.174164],[-79.283325,55.864441],[-79.133896,56.126656],[-79.150558,56.233047],[-79.479996,55.86388],[-79.604996,55.881660000000124],[-79.781952,55.788048],[-79.474716,56.09833],[-79.513062,56.13499500000011],[-79.865829,55.847214],[-79.909164,55.840546],[-79.98582,55.898048],[-79.96194,55.960274],[-79.587784,56.23027000000013],[-79.52684,56.304214000000115],[-79.45889299999988,56.464157],[-79.46611,56.54833200000013],[-79.438599,56.547775],[-79.41944899999987,56.4436],[-79.531387,56.20694000000014],[-79.51445,56.186378],[-79.41305,56.21666],[-79.3011,56.447212],[-79.28639,56.57027],[-79.133057,56.54277],[-79.111938,56.475266],[-79.02167,56.426941]]],[[[-79.14195,56.616661],[-79.26889,56.629158],[-79.28029,56.654991],[-79.20889,56.683876],[-79.14195,56.616661]]],[[[-61.1875,56.5861],[-61.2175,56.582771],[-61.231941,56.61971],[-61.16583,56.684433000000126],[-61.07778199999989,56.67499500000014],[-61.059441,56.62638],[-61.1875,56.5861]]],[[[-79.56082,56.61776700000013],[-79.59,56.768326],[-79.5675,56.817772],[-79.496384,56.76694],[-79.474716,56.68915600000014],[-79.56082,56.61776700000013]]],[[[-79.88194,56.743607],[-79.941101,56.76361],[-79.958618,56.81138],[-79.915009,56.861382],[-79.858047,56.86582900000013],[-79.813614,56.81694],[-79.88194,56.743607]]],[[[-79.75056,56.905823],[-79.7175,56.813606],[-79.757507,56.78194],[-79.78832999999985,56.785828],[-79.823769,56.895],[-79.89751,56.884995],[-79.85861,56.938599],[-79.80833,56.94832600000012],[-79.75056,56.905823]]],[[[-61.429211,56.929707],[-61.343319,56.934227],[-61.404716,56.879715],[-61.35583,56.85277600000012],[-61.585556,56.766388],[-61.38663,56.775913],[-61.36863,56.6857720000001],[-61.37912,56.62682],[-61.40914,56.615608],[-61.64439,56.73478],[-61.6321,56.859547],[-61.53481,56.901859],[-61.499371,56.95285],[-61.429211,56.929707]]],[[[-76.62111,57.07555400000012],[-76.67555,57.087769],[-76.70862,57.188324],[-76.669998,57.20249],[-76.62111,57.07555400000012]]],[[[-61.621666,57.335548000000124],[-61.58944,57.325272],[-61.65222,57.29055],[-61.73473,57.290276],[-61.76861,57.324997],[-61.726944,57.37443500000011],[-61.621666,57.335548000000124]]],[[[-76.715012,57.29277],[-76.74445,57.299438],[-76.82167,57.429436],[-76.73111,57.381935],[-76.715012,57.29277]]],[[[-61.655273,57.39138],[-61.83972,57.40804300000013],[-61.90028,57.437492000000134],[-61.77274,57.4951],[-61.742775,57.535],[-61.648056,57.53027],[-61.61362,57.41610000000014],[-61.655273,57.39138]]],[[[-61.878334,57.463051],[-61.955833,57.458046],[-62.020279,57.540276],[-61.94444,57.590828],[-61.78361,57.550545],[-61.78305799999986,57.50833100000011],[-61.878334,57.463051]]],[[[-79.797501,57.418884],[-79.83583,57.460274],[-79.82694999999988,57.538048],[-79.72778,57.61721],[-79.69861,57.519989000000116],[-79.797501,57.418884]]],[[[-61.68861,57.713051000000114],[-61.76889,57.716934],[-61.89611,57.769714],[-61.80055,57.841377],[-61.711113,57.83416000000012],[-61.65222,57.782494],[-61.68861,57.713051000000114]]],[[[-61.947495,57.787216000000114],[-62.089165,57.80804],[-62.10805,57.8377690000001],[-62.00917,57.904434],[-61.92834,57.9086],[-61.86777499999988,57.8386],[-61.947495,57.787216000000114]]],[[[-77.67833,58.23555],[-77.76112,58.2575],[-77.95084,58.324165],[-77.807495,58.305267],[-77.67833,58.23555]]],[[[-67.596115,58.284164],[-67.676666,58.301384],[-67.619995,58.372215000000104],[-67.5175,58.335266],[-67.596115,58.284164]]],[[[-78.453888,58.539993],[-78.672501,58.61055],[-78.69861,58.688599],[-78.63194,58.616386],[-78.453888,58.539993]]],[[[-69.19444,59.06471],[-69.17833,59.02972],[-69.22722,58.971931],[-69.35556,58.949715],[-69.318344,59.02555],[-69.319458,59.098045000000134],[-69.35722,59.13971700000014],[-69.19861,59.14527],[-69.19444,59.06471]]],[[[-80.534439,59.369438],[-80.555832,59.369438],[-80.54944,59.446938],[-80.47555,59.481102],[-80.534439,59.369438]]],[[[-80.2775,59.618599000000124],[-80.343887,59.619156],[-80.232773,59.72527],[-80.145279,59.705551],[-80.2775,59.618599000000124]]],[[[-64.01973,59.71471],[-64.146118,59.696655],[-64.20445,59.734436],[-64.121933,59.84943],[-64.06139,59.86444],[-64.04277,59.783882],[-63.95972,59.756386],[-64.01973,59.71471]]],[[[-80.08972,59.751938],[-80.18472,59.752777],[-80.115005,59.837769],[-80.015015,59.88499500000012],[-79.878876,59.85471300000012],[-80.08972,59.751938]]],[[[-64.427673,60.372932],[-64.452789,60.357216],[-64.42361,60.282494],[-64.44861,60.284164],[-64.610001,60.35361],[-64.728882,60.363327],[-64.86806,60.458885],[-64.82306,60.48526800000013],[-64.64,60.484718],[-64.42694,60.40138],[-64.427673,60.372932]]],[[[-68.251404,60.23082],[-68.36194,60.225822],[-68.39307,60.2761],[-68.11916,60.577217],[-67.95666,60.5661],[-67.79861499999987,60.4574970000001],[-67.81528,60.408043],[-67.934433,60.32166],[-68.251404,60.23082]]],[[[-64.68999,60.584435],[-64.71083,60.60277600000012],[-64.59277,60.685547],[-64.620544,60.616661],[-64.68999,60.584435]]],[[[-78.65639,60.702774],[-78.69777,60.724159],[-78.573624,60.78416],[-78.219452,60.823883],[-78.285004,60.766106],[-78.65639,60.702774]]],[[[-69.977219,60.93305],[-70.00778,60.93916],[-70.02501,61.001938],[-69.943604,61.03138000000012],[-69.930832,61.004715],[-69.977219,60.93305]]],[[[-64.72389,61.53833],[-64.68331899999987,61.531105],[-64.686935,61.46583],[-64.87527,61.322495],[-64.9725,61.34415400000012],[-65.195267,61.49916],[-65.3725,61.537216],[-65.486938,61.610825],[-65.435822,61.658043],[-65.01888999999989,61.69249],[-64.71916,61.658043],[-64.646118,61.599716],[-64.72389,61.53833]]],[[[-65.69526699999987,61.776657],[-65.80305,61.755554],[-65.94804,61.790276],[-65.77806099999987,61.865547000000106],[-65.71472,61.836937],[-65.69526699999987,61.776657]]],[[[-92.9639,61.879158],[-93.070282,61.825272],[-93.13583,61.87249],[-93.21112,61.875267],[-93.226105,61.908325],[-93.06221,61.93055],[-92.9639,61.879158]]],[[[-64.91611,61.719437],[-65.15666,61.783882],[-65.21055599999988,61.81694],[-65.255,61.901657],[-65.170273,61.94776900000011],[-64.98083,61.885826],[-64.82584,61.76194],[-64.91611,61.719437]]],[[[-65.85249,62.084717],[-65.91333,62.08499],[-66.02084,62.131660000000124],[-65.904449,62.15277100000014],[-65.83556,62.11527],[-65.85249,62.084717]]],[[[-92.22362,62.35555],[-92.349731,62.356659],[-92.372498,62.391937],[-92.34778,62.414436],[-92.13972,62.399719],[-92.22362,62.35555]]],[[[-79.540558,62.411102],[-79.442764,62.37999],[-79.35916,62.296104],[-79.26083,62.25361],[-79.2614,62.163605],[-79.32973,62.015274],[-79.524445,61.811378],[-79.60527,61.76527],[-79.656952,61.642494000000106],[-79.7614,61.576942],[-79.84611,61.569992],[-79.954178,61.68360100000012],[-80.275284,61.806656],[-80.295273,61.983604],[-80.268616,62.107216],[-80.0175,62.358604],[-79.84277,62.403603],[-79.540558,62.411102]]],[[[-92.41112,62.39388300000014],[-92.53944,62.37721],[-92.60055,62.38694],[-92.53111,62.43138],[-92.41112,62.39388300000014]]],[[[-64.65388,62.540833],[-64.54973,62.56221],[-64.382767,62.51138300000014],[-64.394165,62.46138],[-64.59889,62.366386],[-64.93721,62.4211],[-64.96584,62.46583],[-64.84611,62.555267],[-64.65388,62.540833]]],[[[-78.008347,62.593605],[-77.867218,62.589157000000114],[-77.837784,62.556938000000116],[-77.88501,62.53749800000014],[-78.11305,62.56221],[-78.008347,62.593605]]],[[[-77.805267,62.5924910000001],[-77.628052,62.58832600000011],[-77.621384,62.584435],[-77.74527,62.53416],[-77.81361,62.551102],[-77.83168,62.595825000000104],[-77.805267,62.5924910000001]]],[[[-64.983063,62.528046],[-65.11972,62.53749800000014],[-65.14168,62.5469440000001],[-64.9725,62.602493],[-64.839447,62.57777],[-64.983063,62.528046]]],[[[-91.57278,62.627487],[-91.66806,62.649162],[-91.68555,62.66693900000013],[-91.581955,62.64138],[-91.57278,62.627487]]],[[[-90.98,62.65777],[-91.09889,62.65443],[-91.27112,62.67999],[-91.08029,62.686935],[-90.98,62.65777]]],[[[-74.347778,62.679436],[-74.14584,62.687767],[-74.00917,62.66249],[-73.958054,62.612495],[-74.18361,62.603882],[-74.54138,62.668327],[-74.65139799999986,62.716934],[-74.52667,62.748878000000104],[-74.347778,62.679436]]],[[[-70.71167,62.814995],[-70.39696,62.723045],[-70.21112,62.57916300000011],[-70.39307,62.530273],[-70.74638,62.55471],[-70.82501,62.61444100000011],[-70.84666,62.766106],[-71.01916,62.81193],[-71.15834,62.79722],[-71.241379,62.881378],[-70.71167,62.814995]]],[[[-66.36833,62.835266],[-66.49028,62.85527000000013],[-66.601669,62.90665400000012],[-66.547775,62.910545],[-66.36833,62.835266]]],[[[-81.871109,62.92832900000014],[-81.9386,62.709991000000116],[-82.36916,62.547493],[-82.44221,62.458603],[-82.641113,62.385269],[-82.743607,62.30249],[-83.087784,62.17887900000011],[-83.33778,62.25222],[-83.70389,62.141663],[-83.73167,62.303604],[-83.945267,62.427216],[-83.90834,62.48276],[-83.70418,62.569443],[-83.559433,62.68416],[-83.523056,62.82527],[-83.310822,62.924438],[-83.21167,62.913605],[-83.1425,62.85443900000013],[-83.041107,62.837212],[-82.69444,62.93943],[-82.39805599999988,62.92749],[-82.26666,62.989159],[-81.871109,62.92832900000014]]],[[[-66.82556,62.984161],[-66.88945,62.99527],[-67.069458,63.107498],[-66.94610599999987,63.07499700000011],[-66.82556,62.984161]]],[[[-67.76445,63.162491],[-67.85194,63.191376000000105],[-67.875,63.223045],[-67.831955,63.24416],[-67.74611,63.17887900000011],[-67.76445,63.162491]]],[[[-67.925003,63.183327],[-67.966949,63.183876],[-68.112213,63.3136060000001],[-68.048889,63.297493],[-67.925003,63.183327]]],[[[-78.079727,63.46944],[-77.845001,63.472214],[-77.680557,63.434433],[-77.494995,63.265831],[-77.641953,63.171936],[-77.946655,63.091103],[-78.52389,63.37249],[-78.57278,63.440269000000114],[-78.214111,63.496536],[-78.079727,63.46944]]],[[[-90.65388,63.441101],[-90.71916,63.443604],[-90.75723,63.49443800000011],[-90.598053,63.45444],[-90.65388,63.441101]]],[[[-78.557495,63.457497],[-78.603333,63.45777],[-78.515839,63.531662],[-78.46167,63.5075],[-78.46722,63.46944],[-78.557495,63.457497]]],[[[-90.79361,63.494156],[-90.87721,63.514717],[-90.968338,63.550270000000125],[-90.74805,63.550270000000125],[-90.674713,63.51388],[-90.79361,63.494156]]],[[[-64.851944,63.38582600000012],[-64.942215,63.430824],[-65.051941,63.55222],[-64.9675,63.568329],[-64.912216,63.533333],[-64.851944,63.38582600000012]]],[[[-72.182495,63.519989],[-72.22694,63.525826],[-72.2866669999999,63.58332800000011],[-72.129166,63.55888],[-72.182495,63.519989]]],[[[-91.32918,63.55971],[-91.436386,63.551933],[-91.540558,63.60666],[-91.29973,63.56777],[-91.32918,63.55971]]],[[[-64.0925,63.481659],[-64.184158,63.537216],[-64.21278,63.623604000000114],[-64.182495,63.639435000000105],[-64.093338,63.568329],[-64.0925,63.481659]]],[[[-68.65639,63.626381],[-68.73111,63.625549],[-68.82167,63.65249],[-68.676941,63.671379000000115],[-68.65639,63.626381]]],[[[-64.06111,63.27054600000014],[-64.266953,63.32638],[-64.35388199999989,63.3958280000001],[-64.49610899999988,63.6097180000001],[-64.47917,63.63694],[-64.37721,63.67749],[-64.328888,63.644440000000145],[-64.26251,63.42110400000013],[-64.06111,63.27054600000014]]],[[[-71.799164,63.61555],[-71.863327,63.619438],[-71.864166,63.66944],[-71.77945,63.688324],[-71.799164,63.61555]]],[[[-76.81055,63.60110500000013],[-76.710556,63.565826],[-76.67223,63.528877],[-76.68161,63.481354],[-76.54195,63.462494000000106],[-76.70334,63.365829],[-76.98416,63.40638],[-77.327789,63.57222000000013],[-77.42778,63.589157000000114],[-77.45723,63.64333],[-77.343338,63.696098],[-77.061386,63.672768],[-76.81055,63.60110500000013]]],[[[-72.594727,63.642494],[-72.780563,63.65999],[-72.78332499999988,63.664436],[-72.48389,63.708885],[-72.45973,63.679161],[-72.594727,63.642494]]],[[[-64.032501,63.689713],[-64.181107,63.675827],[-64.212509,63.712212],[-64.07529,63.758049],[-64.03029,63.72971300000012],[-64.032501,63.689713]]],[[[-72.66777,63.69582400000013],[-72.73889,63.714439],[-72.719727,63.76388500000013],[-72.626663,63.73221],[-72.66777,63.69582400000013]]],[[[-64.284439,63.7086],[-64.34862,63.72804],[-64.381104,63.80749500000013],[-64.27861,63.77082800000011],[-64.255,63.725266],[-64.284439,63.7086]]],[[[-64.170273,63.856384],[-64.1808319999999,63.78527],[-64.23444,63.77137800000014],[-64.39917,63.849434],[-64.170273,63.856384]]],[[[-92.954178,63.871101],[-93.068619,63.888046],[-93.09445,63.904991],[-92.978333,63.90832],[-92.954178,63.871101]]],[[[-64.57611099999986,63.780823],[-64.426102,63.777771],[-64.38612,63.70166],[-64.45944,63.672768],[-64.66167,63.75499700000012],[-64.89029,63.78944],[-64.92027,63.824715],[-64.71056,63.908882],[-64.55722,63.90998800000011],[-64.57611099999986,63.780823]]],[[[-77.74388,63.92666],[-77.94861,63.95082900000011],[-77.982498,63.983047],[-77.774445,64.031662],[-77.54445,64.021927],[-77.74388,63.92666]]],[[[-89.808884,64.056366],[-89.86111,64.07165500000013],[-89.867767,64.095825],[-89.83167999999989,64.09109],[-89.808884,64.056366]]],[[[-64.962784,64.110809],[-64.869995,64.093323],[-64.988892,64.081375],[-65.057495,64.113037],[-64.962784,64.110809]]],[[[-64.491104,64.10914600000012],[-64.5114,64.10832],[-64.59584,64.156647],[-64.453339,64.146942],[-64.491104,64.10914600000012]]],[[[-73.176941,64.20027],[-73.282776,64.143326],[-73.401672,64.16554300000013],[-73.385559,64.196365],[-73.176941,64.20027]]],[[[-81.47139,64.188873],[-81.53805,64.21804800000011],[-81.4700009999999,64.239426],[-81.37582,64.220825],[-81.47139,64.188873]]],[[[-64.520279,64.22026100000011],[-64.60167,64.212494],[-64.647781,64.25000000000011],[-64.557526,64.264862],[-64.46222,64.23749],[-64.520279,64.22026100000011]]],[[[-75.551392,64.30386],[-75.69194,64.30247500000013],[-75.70584,64.341934],[-75.493607,64.3163760000001],[-75.551392,64.30386]]],[[[-64.938599,64.235535],[-64.989166,64.209152],[-65.05999799999988,64.22331200000013],[-65.112503,64.339706],[-65.01028,64.361649],[-64.88473,64.287766],[-64.938599,64.235535]]],[[[-73.876389,64.301376],[-73.9725,64.30971],[-73.956665,64.368317],[-73.87917,64.35193],[-73.876389,64.301376]]],[[[-73.69776899999988,64.269989],[-73.833618,64.331665],[-73.781387,64.40555],[-73.726944,64.383331],[-73.69776899999988,64.269989]]],[[[-64.84973,64.30748],[-64.93777,64.361649],[-64.958618,64.405823],[-64.910004,64.41666],[-64.77194,64.348877],[-64.84973,64.30748]]],[[[-74.271942,64.41360500000013],[-74.37721,64.4244230000001],[-74.439438,64.45332300000013],[-74.31041,64.49884],[-74.173325,64.439148],[-74.271942,64.41360500000013]]],[[[-73.744995,64.426086],[-73.781387,64.43193100000012],[-73.77333,64.503326],[-73.66861,64.464432],[-73.744995,64.426086]]],[[[-74.212784,64.483047],[-74.331116,64.52666],[-74.357773,64.55108600000011],[-74.16972,64.52388],[-74.212784,64.483047]]],[[[-73.557495,64.31276],[-73.655563,64.320267],[-73.66953299999989,64.42684900000012],[-73.61044,64.47049],[-73.682495,64.50972000000013],[-73.527786,64.56694],[-73.488327,64.443863],[-73.557495,64.31276]]],[[[-65.492767,64.517761],[-65.69028,64.524155],[-65.651108,64.580551],[-65.38194,64.716934],[-65.2925,64.735535],[-65.208054,64.63971],[-65.492767,64.517761]]],[[[-63.353333,64.99498000000011],[-63.33056,64.9869230000001],[-63.2589,64.92109700000015],[-63.42028,64.976089],[-63.353333,64.99498000000011]]],[[[-63.24361,65.25499000000013],[-63.31167,65.298035],[-63.24445,65.322769],[-63.16639,65.286102],[-63.24361,65.25499000000013]]],[[[-66.924713,65.28442400000012],[-66.989166,65.286377],[-67.010559,65.33332800000011],[-66.91082799999985,65.35693],[-66.924713,65.28442400000012]]],[[[-89.00557,65.385544],[-89.07611,65.394714],[-89.09999,65.40582],[-89.031952,65.407211],[-89.00557,65.385544]]],[[[-88.43028,65.455261],[-88.48999,65.45665],[-88.512222,65.469711],[-88.394165,65.46582000000012],[-88.43028,65.455261]]],[[[-62.79500599999988,65.51999],[-62.89389,65.5811000000001],[-62.88444,65.60554500000012],[-62.842773,65.616379],[-62.75084,65.551376],[-62.79500599999988,65.51999]]],[[[-83.88277,65.666931],[-83.9375,65.6772],[-83.94221,65.68692],[-83.87277,65.7122],[-83.88277,65.666931]]],[[[-67.472504,65.705261],[-67.69138,65.685806],[-67.71584,65.70166],[-67.424438,65.73526],[-67.472504,65.705261]]],[[[-62.26833,65.70166],[-62.18639,65.711929],[-62.13194,65.657211],[-62.2025,65.61026],[-62.29695,65.624985],[-62.46611,65.663879],[-62.48444,65.72693],[-62.2525,65.741928],[-62.297501,65.7086],[-62.26833,65.70166]]],[[[-83.28389,65.83415200000013],[-83.48527,65.800812],[-83.586121,65.854156],[-83.36999,65.866653],[-83.28389,65.83415200000013]]],[[[-65.64584,65.813034],[-65.647781,65.879974],[-65.5114,65.90304600000013],[-65.559433,65.834717],[-65.64584,65.813034]]],[[[-85.48056,65.79193],[-85.369995,65.83499100000012],[-85.15639,65.776657],[-85.051666,65.60693400000014],[-85.311935,65.537766],[-85.015015,65.41832],[-85.01167,65.352203],[-84.924713,65.209717],[-84.792496,65.226929],[-84.74805,65.292755],[-84.75473,65.341095],[-84.58556,65.48109],[-84.44028,65.45665],[-84.314438,65.38165300000014],[-84.15111,65.338593],[-84.23083,65.26944],[-84.141388,65.219986],[-83.8761,65.162766],[-83.54028,65.16415400000011],[-83.40861,65.135544],[-83.334732,65.069992],[-83.33084,65.021378],[-83.19804399999987,64.941086],[-82.86583,64.873596],[-82.800278,64.808868],[-82.70917,64.776382],[-82.361389,64.76361],[-82.21194,64.718323],[-82.20361,64.684418],[-82.064438,64.648605],[-81.763062,64.501099],[-81.75307,64.35582],[-81.777222,64.31164600000011],[-81.60028,64.202774],[-81.60249,64.129974],[-81.95584,64.06192],[-81.986938,63.99416],[-81.560822,64.02943],[-81.38362,64.090546],[-80.94249,63.99055],[-80.90334,64.013885],[-80.97389,64.062485],[-80.93582,64.111923],[-80.89084,64.11554],[-80.522507,63.9786],[-80.488327,63.910545],[-80.5675,63.889435],[-80.19448,63.804474],[-80.17166,63.7711],[-80.454178,63.72777],[-80.587784,63.635826],[-80.922501,63.521378],[-80.95805,63.458328],[-81.076401,63.451385],[-81.76889,63.638046],[-81.90973,63.631935],[-82.05249,63.68915600000014],[-82.285553,63.678047],[-82.32889,63.65027],[-82.47223,63.680275],[-82.546951,63.764717],[-82.376389,63.817497],[-82.361389,63.905266],[-82.54889,63.969154],[-83.09889,63.95916],[-83.145279,64.00109900000012],[-82.960556,64.14055],[-83.00835,64.18748],[-83.07278,64.186646],[-83.54834,64.10247800000013],[-83.68222,64.007217],[-83.60417,63.928047],[-83.596664,63.820831],[-83.637222,63.766388],[-83.75084,63.776657000000114],[-84.099731,63.60527000000014],[-84.28612,63.61555],[-84.400558,63.548607],[-84.47749,63.3836060000001],[-84.56332,63.337494],[-84.89056,63.207214],[-85.2664,63.11749300000014],[-85.49333,63.119987],[-85.58917,63.174713],[-85.63806,63.244995],[-85.65388,63.408882],[-85.60722399999986,63.49443800000011],[-85.59334,63.631935],[-85.613327,63.66972],[-85.7175,63.716103],[-86.26695,63.638046],[-86.59611,63.668602],[-86.879166,63.55555],[-87.09528,63.551384],[-87.18804899999985,63.589989],[-87.22639,63.64111],[-87.20083599999987,63.70665700000012],[-86.93443,63.906097],[-86.18943799999988,64.101654],[-86.212219,64.178589],[-86.308884,64.226379],[-86.35472,64.28997800000013],[-86.401672,64.436646],[-86.36888,64.62942],[-86.23889,64.80415],[-86.17166,64.82304],[-86.15334,64.92776500000014],[-86.22778,64.983871],[-86.19833,65.054153],[-86.13834,65.094437],[-86.17166,65.27887],[-86.09778,65.5291600000001],[-86.01001,65.714996],[-85.770554,65.862198],[-85.49388,65.93220500000012],[-85.46973,65.90887],[-85.523621,65.82304],[-85.48056,65.79193]]],[[[-62.136665,65.851379],[-62.21083,65.880539],[-62.296669,65.938583],[-62.137779,65.92581],[-62.136665,65.851379]]],[[[-67.13834,65.926926],[-67.18527,65.94832],[-67.211945,65.9827580000001],[-67.153885,65.978592],[-67.13834,65.926926]]],[[[-83.57695,65.983047],[-83.604446,65.987762],[-83.49306,66.01277],[-83.51001,66.00333],[-83.57695,65.983047]]],[[[-84.72278,65.546097],[-84.84084,65.588043],[-84.878601,65.669144],[-85.10695,65.75055],[-85.18195,65.945526],[-85.17305,65.994705],[-85.08168,66.026657],[-84.924713,66.008041],[-84.88333099999988,65.940811],[-84.58667,65.6922],[-84.58501,65.619141],[-84.72278,65.546097]]],[[[-83.608612,66.044144],[-83.642227,66.03498800000011],[-83.65361,66.041367],[-83.60722,66.07748400000014],[-83.570847,66.056366],[-83.608612,66.044144]]],[[[-85.01916,66.057205],[-85.13556,66.044434],[-85.14917,66.050537],[-85.099731,66.089706],[-85.01611,66.079712],[-85.01916,66.057205]]],[[[-83.64944,66.0836],[-83.69249,66.09137],[-83.68527,66.12109],[-83.587784,66.117203],[-83.64944,66.0836]]],[[[-83.92139,66.00972],[-83.69415,65.9247],[-83.72749,65.79971300000011],[-83.525009,65.73776],[-83.21083099999987,65.705826],[-83.28889,65.63275],[-83.379166,65.61554],[-83.49306,65.657761],[-83.84277,65.64915500000012],[-83.78583,65.7247],[-83.68277,65.74942],[-83.797501,65.789429],[-83.960007,65.73776],[-84.14362,65.76416],[-84.101105,65.819717],[-84.12361,65.900269],[-84.19804,65.973038],[-84.42416,66.028046],[-84.46806,66.06499],[-84.47028,66.13333100000011],[-84.03944,66.076935],[-83.92139,66.00972]]],[[[-84.579727,66.141373],[-84.64,66.140549],[-84.678604,66.18248],[-84.59334,66.171097],[-84.579727,66.141373]]],[[[-84.265289,66.177765],[-84.353333,66.190262],[-84.36362,66.209427],[-84.273056,66.19664],[-84.265289,66.177765]]],[[[-62.18388399999986,66.237198],[-62.19916,66.21693],[-62.43,66.2291560000001],[-62.26167,66.280273],[-62.18388399999986,66.237198]]],[[[-83.06722999999988,66.255554],[-82.9025,66.27165200000013],[-82.996384,66.19859300000013],[-83.08029,66.19664],[-83.287216,66.25610400000011],[-83.29833999999987,66.31387300000011],[-83.22694,66.339981],[-83.16806,66.28387],[-83.06722999999988,66.255554]]],[[[-66.623322,66.280823],[-66.678879,66.286926],[-66.958344,66.411926],[-66.575012,66.31387300000011],[-66.623322,66.280823]]],[[[-66.99834,66.493042],[-66.87332,66.4686],[-66.86888,66.46443],[-67.03667,66.4561],[-66.99834,66.493042]]],[[[-107.92305,66.85054],[-107.945541,66.856934],[-107.837784,67.003876],[-107.794998,66.997208],[-107.8239,66.901093],[-107.92305,66.85054]]],[[[-108.01445,66.897766],[-108.09639,66.967484],[-108.1066,67.026001],[-107.93832,66.94693],[-108.01445,66.897766]]],[[[-63.059166,66.95776400000011],[-63.11694,66.963043],[-63.16611,67.00499000000012],[-63.110831999999895,67.033875],[-62.99999999999988,66.98442],[-63.059166,66.95776400000011]]],[[[-62.91833,67.00972],[-63.03778,67.01582300000013],[-63.138054,67.06526200000013],[-63.002228,67.069443],[-62.91833,67.00972]]],[[[-62.64416,67.05748],[-62.76445,67.00915500000013],[-62.899445,67.05832],[-62.81028,67.056931],[-62.631942999999865,67.176926],[-62.41806,67.190811],[-62.37527,67.165817],[-62.64416,67.05748]]],[[[-107.407784,67.083054],[-107.527786,67.07805],[-107.626663,67.200272],[-107.40056,67.11303700000013],[-107.407784,67.083054]]],[[[-95.36166,67.19775400000015],[-95.41528,67.1997070000001],[-95.55278,67.23526],[-95.30722,67.25249],[-95.36166,67.19775400000015]]],[[[-107.66278,67.220261],[-107.730293,67.289978],[-107.72501,67.31303400000012],[-107.66,67.298874],[-107.63945,67.242752],[-107.66278,67.220261]]],[[[-63.366394,67.287766],[-63.45611,67.264435],[-63.82972699999987,67.284149],[-63.58583099999988,67.353317],[-63.366394,67.287766]]],[[[-107.91083,67.310532],[-108.08444,67.381363],[-108.0739,67.4308170000001],[-107.89473,67.485535],[-107.91083,67.310532]]],[[[-108.368332,67.467209],[-108.45889299999986,67.48803700000013],[-108.49138,67.563034],[-108.297501,67.557205],[-108.29527,67.496933],[-108.368332,67.467209]]],[[[-108.141113,67.449997],[-108.271942,67.47137],[-108.21916199999987,67.571106],[-108.1661069999999,67.5430450000001],[-108.141113,67.449997]]],[[[-108.32278,67.58998],[-108.420273,67.599426],[-108.48389,67.636658],[-108.390289,67.631088],[-108.32278,67.58998]]],[[[-63.88194,67.503326],[-64.02972399999987,67.513885],[-64.03444,67.558594],[-63.976944,67.649429],[-63.75806,67.520538],[-63.88194,67.503326]]],[[[-108.059998,67.475266],[-108.103333,67.467209],[-108.14389,67.53055],[-108.11362,67.67526],[-107.995537,67.655258],[-107.921387,67.546646],[-108.059998,67.475266]]],[[[-97.50279,67.62442],[-97.54944,67.63805],[-97.56055,67.692749],[-97.337784,67.724152],[-97.332779,67.675812],[-97.50279,67.62442]]],[[[-109.112213,67.763321],[-109.195267,67.775543],[-109.207779,67.783875],[-109.03917,67.79332000000011],[-109.112213,67.763321]]],[[[-96.170547,67.77304100000015],[-96.19638,67.778046],[-96.17139,67.806366],[-96.07722,67.83888200000013],[-95.997498,67.820831],[-96.170547,67.77304100000015]]],[[[-114.11501,67.88388],[-114.022232,67.884155],[-113.92139,67.878036],[-114.19527,67.872482],[-114.296951,67.89526],[-114.11501,67.88388]]],[[[-97.85638,67.85054],[-97.963333,67.86026],[-97.974442,67.904984],[-97.92027,67.8936000000001],[-97.85638,67.85054]]],[[[-108.64696,67.869431],[-108.66916,67.872482],[-108.54472,67.928314],[-108.35944,67.89999],[-108.64696,67.869431]]],[[[-113.390289,67.897766],[-113.526947,67.89637800000014],[-113.60333,67.903046],[-113.24695,67.914429],[-113.390289,67.897766]]],[[[-112.930557,67.91666],[-113.06027,67.915268],[-113.147507,67.9122],[-112.88722,67.9272],[-112.930557,67.91666]]],[[[-111.07167,67.847488],[-111.09111,67.852203],[-110.80722,67.954987],[-110.869453,67.889984],[-111.07167,67.847488]]],[[[-114.21916,67.94525],[-114.31722999999987,67.9497070000001],[-114.12111,67.961929],[-114.16333,67.949142],[-114.21916,67.94525]]],[[[-108.138062,67.872482],[-108.25557,67.88721],[-108.19804,67.950821],[-108.05444299999988,67.963318],[-108.06834,67.895538],[-108.138062,67.872482]]],[[[-113.72,67.973312],[-113.75362,67.966095],[-113.99306,67.9611],[-113.772232,67.98027],[-113.72,67.973312]]],[[[-109.195267,67.98997],[-109.04999,67.958328],[-108.9511109999999,67.973312],[-108.884453,67.94859300000013],[-108.8661,67.900269],[-108.900558,67.86970500000011],[-109.048889,67.90387],[-109.16972,67.94525],[-109.195267,67.98997]]],[[[-110.33444,68.01165800000012],[-110.410004,68.011932],[-110.420837,68.020828],[-110.3175,68.049713],[-110.33444,68.01165800000012]]],[[[-98.951401,67.97998],[-99.01445,67.99109],[-99.07861,68.045593],[-98.97555,68.077209],[-98.93443,67.99664300000012],[-98.951401,67.97998]]],[[[-65.397232,68.03997800000013],[-65.50029,68.04609700000015],[-65.51973,68.06749],[-65.3864,68.08831800000013],[-65.397232,68.03997800000013]]],[[[-108.506119,68.03471400000012],[-108.54028,68.03997800000013],[-108.447487,68.087769],[-108.451401,68.068054],[-108.506119,68.03471400000012]]],[[[-109.32167,67.981094],[-109.49805,68.0227660000001],[-109.5430599999999,68.0522],[-109.49749799999988,68.0935970000001],[-109.44722,68.092209],[-109.31527699999987,68.035812],[-109.32167,67.981094]]],[[[-108.36055,68.049713],[-108.40805,68.06972],[-108.29445,68.097214],[-108.300827,68.079437],[-108.36055,68.049713]]],[[[-110.213623,68.03804],[-110.258621,68.041931],[-109.87721,68.126923],[-109.92111,68.08166],[-110.213623,68.03804]]],[[[-112.78056,68.131088],[-112.89,68.137207],[-112.922234,68.146652],[-112.876389,68.17387400000013],[-112.75168,68.16470300000015],[-112.78056,68.131088]]],[[[-74.215561,68.11775],[-74.16472,68.065536],[-73.428329,67.982208],[-73.34862,67.82805],[-73.429443,67.76277],[-74.38861,67.77527],[-74.597229,67.828598],[-74.777222,67.97387700000013],[-74.74861,68.065536],[-74.436661,68.097488],[-74.34695,68.176376],[-74.215561,68.11775]]],[[[-65.642227,68.159424],[-65.502792,68.15109300000012],[-65.495544,68.128311],[-65.70973,68.106094],[-65.71167,68.180267],[-65.642227,68.159424]]],[[[-107.47362,68.144714],[-107.5014,68.1436],[-107.55417,68.16609],[-107.468063,68.188583],[-107.47362,68.144714]]],[[[-104.453056,68.102203],[-104.497772,68.08028],[-104.553879,68.16165],[-104.37721,68.199707],[-104.453056,68.102203]]],[[[-107.388901,68.172211],[-107.445267,68.20166],[-107.291672,68.20277],[-107.31055,68.196091],[-107.388901,68.172211]]],[[[-111.833328,68.181931],[-111.865547,68.188034],[-111.755,68.21582000000012],[-111.79195,68.193588],[-111.833328,68.181931]]],[[[-98.650284,68.180267],[-98.70445,68.176086],[-98.69333,68.213608],[-98.64307,68.21609500000011],[-98.650284,68.180267]]],[[[-74.06277,68.151657],[-74.13834,68.170258],[-74.176392,68.204163],[-74.079727,68.232483],[-74.06277,68.151657]]],[[[-108.590286,68.21443],[-108.63945,68.151382],[-108.67749,68.168869],[-108.62749,68.23359700000015],[-108.559723,68.236099],[-108.590286,68.21443]]],[[[-109.78389,68.13749700000011],[-109.85666,68.147766],[-109.568069,68.24720800000011],[-109.673889,68.173309],[-109.78389,68.13749700000011]]],[[[-66.313614,68.147766],[-66.601944,68.18248],[-66.60722,68.217209],[-66.22194,68.2410890000001],[-66.256668,68.163605],[-66.313614,68.147766]]],[[[-96.38417,68.200821],[-96.436935,68.198593],[-96.462784,68.21609500000011],[-96.364166,68.2580410000001],[-96.3175,68.231934],[-96.38417,68.200821]]],[[[-78.57167,68.200272],[-78.655563,68.187759],[-78.662216,68.18915],[-78.54805,68.26304600000014],[-78.51723,68.223312],[-78.57167,68.200272]]],[[[-86.42639,68.06915],[-86.36861,67.95471],[-86.39612,67.85971100000012],[-86.47084,67.781372],[-86.58362,67.72526600000015],[-86.690552,67.733871],[-86.87944,67.810257],[-86.95194999999988,67.923874],[-86.84334,67.958603],[-86.84084,68.010818],[-86.99277,68.06666600000011],[-86.90639,68.180267],[-86.675003,68.306091],[-86.41112,68.208878],[-86.42639,68.06915]]],[[[-111.710281,68.22053],[-111.77722,68.25305200000014],[-111.70388799999989,68.29942],[-111.49944,68.296936],[-111.60527,68.2811],[-111.63945,68.233322],[-111.710281,68.22053]]],[[[-75.582779,68.300262],[-75.13473499999986,68.23471100000012],[-75.00307,68.132202],[-75.05249,68.036652],[-75.16444,67.954163],[-75.06416,67.782486],[-75.025284,67.619431],[-75.07194,67.538879],[-75.19861,67.443314],[-75.38806,67.35471],[-75.844452,67.26416],[-76.66362,67.219986],[-77.04472,67.260544],[-77.24695,67.451935],[-77.22583,67.543869],[-77.32251,67.698029],[-77.251953,67.82638500000013],[-76.86555,68.157761],[-76.726105,68.2388760000001],[-76.281952,68.33276400000011],[-76.22166,68.301376],[-76.06055,68.296936],[-75.88751,68.33971],[-75.582779,68.300262]]],[[[-79.02055,68.169144],[-79.17694,68.20942700000012],[-79.1911,68.31944],[-79.12555,68.35026600000015],[-78.9299929999999,68.338882],[-78.801666,68.2791600000001],[-79.02055,68.169144]]],[[[-100.074722,68.34971600000011],[-100.099442,68.278595],[-100.23083,68.319717],[-100.08583,68.368866],[-100.074722,68.34971600000011]]],[[[-82.059998,68.306091],[-82.27112,68.33859300000012],[-82.34555,68.36775200000011],[-82.23056,68.38554],[-81.997223,68.34137],[-82.059998,68.306091]]],[[[-111.11444,68.405823],[-111.14917,68.43997200000013],[-111.0825,68.44470200000012],[-111.08417,68.424988],[-111.11444,68.405823]]],[[[-99.045273,68.423874],[-99.05499,68.40832],[-99.15916,68.451096],[-99.087219,68.44942],[-99.045273,68.423874]]],[[[-74.162216,68.24609],[-74.260559,68.27331],[-74.38861,68.39833],[-74.39307,68.445251],[-74.27945,68.45832800000011],[-74.07945,68.33859300000012],[-74.162216,68.24609]]],[[[-100.71056,68.40248],[-100.78944,68.409988],[-100.88972,68.452774],[-100.79332699999986,68.46887200000015],[-100.71056,68.40248]]],[[[-110.8625,68.474152],[-111.05444,68.46971100000013],[-111.097504,68.48276],[-110.82167,68.548035],[-110.69611,68.486374],[-110.8625,68.474152]]],[[[-110.586937,68.524155],[-110.72112,68.5310970000001],[-110.761948,68.56165],[-110.518341,68.539154],[-110.586937,68.524155]]],[[[-104.545273,68.3961],[-104.91916,68.459991],[-105.08168,68.54637100000014],[-104.938599,68.583328],[-104.6825,68.573883],[-104.48277,68.511658],[-104.42777999999987,68.45694],[-104.44138,68.417206],[-104.545273,68.3961]]],[[[-105.139183,68.53637700000012],[-105.058884,68.504166],[-105.23361,68.541092],[-105.29222,68.582214],[-105.185822,68.58082600000012],[-105.139183,68.53637700000012]]],[[[-113.78612,68.582764],[-113.88945,68.586929],[-113.96611,68.611099],[-113.761948,68.592209],[-113.78612,68.582764]]],[[[-100.740547,68.596375],[-100.86806,68.603043],[-100.882492,68.611374],[-100.813889,68.619141],[-100.740547,68.596375]]],[[[-78.468887,68.563873],[-78.668884,68.554153],[-78.72472,68.521927],[-78.61082,68.498032],[-78.743057,68.442749],[-78.959732,68.4747],[-78.936935,68.516388],[-78.72389,68.54748],[-78.66861,68.583328],[-78.898056,68.64888],[-78.863892,68.65971400000012],[-78.48195,68.624985],[-78.468887,68.563873]]],[[[-74.76889,68.673874],[-74.648346,68.652206],[-74.51834,68.558594],[-74.821945,68.565811],[-74.890289,68.624985],[-74.76889,68.673874]]],[[[-114.04723,68.613602],[-114.12666,68.63721],[-114.18998699999985,68.68027],[-114.141953,68.67693],[-114.04723,68.613602]]],[[[-74.8113859999999,68.320541],[-75.00223,68.333603],[-75.03751,68.394714],[-75.369995,68.4897],[-75.416397,68.51805100000013],[-75.39695699999987,68.611099],[-75.25472999999988,68.717484],[-75,68.672241],[-74.9383239999999,68.57165500000013],[-74.768341,68.47331],[-74.8113859999999,68.320541]]],[[[-84.80804,68.763885],[-84.83583,68.766663],[-84.939163,68.793594],[-84.855835,68.810806],[-84.80804,68.763885]]],[[[-68.110275,68.782761],[-67.67917,68.71138],[-67.66139,68.7019350000001],[-67.86972,68.698593],[-68.45944,68.791092],[-68.42833,68.813034],[-68.110275,68.782761]]],[[[-101.831123,68.56694],[-102.230003,68.640274],[-102.316391,68.672211],[-102.073059,68.756943],[-102.023064,68.819443],[-101.69388,68.768051],[-101.682503,68.661652],[-101.831123,68.56694]]],[[[-102.60083,68.813309],[-102.6075,68.80914300000012],[-102.70723,68.81666600000011],[-102.61278,68.843048],[-102.60083,68.813309]]],[[[-89.94444,68.6622],[-90.027786,68.758606],[-89.94444,68.847488],[-89.78168,68.766663],[-89.94444,68.6622]]],[[[-114.35083,68.871643],[-114.429169,68.873596],[-114.471657,68.892487],[-114.32333,68.883041],[-114.35083,68.871643]]],[[[-67.84778,68.85193],[-67.908051,68.85720800000013],[-67.960556,68.929977],[-67.87639,68.949417],[-67.839447,68.91192600000011],[-67.84778,68.85193]]],[[[-85.341675,68.9836],[-85.407227,68.98442],[-85.45306,69.005829],[-85.369995,69.001938],[-85.341675,68.9836]]],[[[-89.90834,68.91775500000011],[-90.075562,68.94803],[-90.070557,68.981934],[-89.920837,69.010269],[-89.90834,68.91775500000011]]],[[[-100.17555199999987,68.794708],[-100.22084,68.764435],[-100.29916,68.773315],[-100.36694,68.710541],[-100.62305,68.761932],[-100.59999,69.00055],[-100.54361,69.036652],[-100.3811,69.02082800000011],[-100.238892,68.924149],[-100.131104,68.909988],[-100.17555199999987,68.794708]]],[[[-85.11945,69.014709],[-85.170273,69.035812],[-85.14555399999989,69.058319],[-85.06139,69.036652],[-85.11945,69.014709]]],[[[-85.265289,69.07249500000012],[-85.357773,69.0636],[-85.39889,69.0861],[-85.241943,69.09137],[-85.265289,69.07249500000012]]],[[[-99.99943,68.943588],[-100.16167,68.96138000000013],[-100.25862,69.041931],[-100.23195,69.0872],[-100.12971,69.13026400000012],[-100.053047,69.102478],[-99.978882,69.01388500000013],[-99.99943,68.943588]]],[[[-90.12471,69.049423],[-90.247498,69.07026700000011],[-90.27639799999986,69.125809],[-90.25389,69.142761],[-90.14723,69.103592],[-90.12471,69.049423]]],[[[-101.664169,69.083603],[-101.69833,69.09526100000011],[-101.718063,69.17859],[-101.695267,69.20694],[-101.558609,69.2166600000001],[-101.495,69.165543],[-101.563606,69.09999],[-101.664169,69.083603]]],[[[-90.512512,69.20248400000014],[-90.613327,69.207764],[-90.77722,69.272491],[-90.77583,69.329987],[-90.692215,69.37164300000012],[-90.5825,69.359711],[-90.46083,69.267487],[-90.45445299999989,69.22637900000012],[-90.512512,69.20248400000014]]],[[[-78.41221599999989,69.37970000000013],[-78.27972,69.370255],[-78.21083,69.29443400000014],[-78.472504,69.19136],[-78.55666,69.083603],[-78.70723,69.014709],[-78.725281,68.968872],[-78.83029,68.91304],[-79.238892,68.827484],[-79.400284,68.871918],[-79.40222,68.9236],[-79.30388,68.97831700000012],[-79.227219,69.076385],[-78.96028,69.102478],[-78.85583,69.14554],[-78.71611,69.340271],[-78.48999,69.39109800000011],[-78.41221599999989,69.37970000000013]]],[[[-135.28891,69.309418],[-135.526947,69.37052900000013],[-135.56555,69.39055],[-135.33777,69.388596],[-135.27224699999988,69.35832],[-135.28891,69.309418]]],[[[-76.95083599999987,69.395264],[-76.72333,69.423599],[-76.64473,69.381363],[-76.64667,69.336929],[-76.93361,69.21388200000013],[-76.95889,69.142487],[-77.13779,69.11665],[-77.28583,69.153595],[-77.38194299999986,69.247482],[-77.34834,69.401657],[-77.12999,69.445251],[-76.95083599999987,69.395264]]],[[[-90.329453,69.235809],[-90.50639,69.329163],[-90.51445,69.363876],[-90.20084,69.444427],[-90.15472,69.350815],[-90.329453,69.235809]]],[[[-135.59222,69.482208],[-135.574432,69.44664],[-135.815552,69.502487],[-135.74527,69.524704],[-135.59222,69.482208]]],[[[-101.053047,69.50444],[-101.006119,69.486923],[-101.00862,69.450272],[-101.23029,69.368591],[-101.279167,69.382477],[-101.2369379999999,69.39471],[-101.186394,69.47527],[-101.38722,69.537766],[-101.34973,69.572495],[-101.26167,69.581665],[-101.06277,69.531372],[-101.053047,69.50444]]],[[[-96.66305,69.569717],[-96.37361,69.560806],[-96.316391,69.526382],[-96.16972,69.5669400000001],[-96.13333,69.555542],[-96.096115,69.468048],[-96.14667,69.345825],[-96.23389,69.359711],[-96.73666,69.57666],[-96.66305,69.569717]]],[[[-67.31055,69.54914900000011],[-67.55249,69.52304100000015],[-67.49249299999985,69.495529],[-67.749725,69.521103],[-67.484436,69.59027100000013],[-67.31055,69.54914900000011]]],[[[-96.76056,69.545532],[-96.883896,69.55914300000012],[-96.90222,69.5977630000001],[-96.816391,69.59027100000013],[-96.76056,69.545532]]],[[[-91.110001,69.549423],[-91.1425,69.56499],[-91.10889,69.602203],[-90.91916,69.60609],[-91.110001,69.549423]]],[[[-133.93222,69.56026],[-134.01666,69.576096],[-133.93362,69.6160890000001],[-133.844727,69.600815],[-133.868042,69.567215],[-133.93222,69.56026]]],[[[-95.488892,69.56553600000012],[-95.359726,69.509155],[-95.4025,69.383331],[-95.515839,69.33082600000012],[-95.736938,69.324432],[-95.72778299999987,69.37859],[-95.648346,69.40332],[-95.66916,69.507492],[-95.70805,69.54887400000013],[-95.815826,69.562759],[-95.79723,69.48166],[-95.862213,69.34804],[-95.990829,69.35331700000012],[-96.00973,69.483047],[-95.919998,69.595261],[-95.78944,69.634155],[-95.612213,69.61443],[-95.488892,69.56553600000012]]],[[[-138.86722,69.588318],[-139.02307,69.580826],[-139.12109,69.52916],[-139.33249,69.56609],[-139.12027,69.649994],[-138.86722,69.588318]]],[[[-135.51724,69.569153],[-135.5894469999999,69.5961],[-135.511963,69.64166300000011],[-135.3978,69.646942],[-135.51724,69.569153]]],[[[-67.920273,69.521927],[-68.238892,69.570267],[-68.24889,69.59664900000013],[-67.88972,69.708328],[-67.82112,69.676376],[-67.83168,69.60193],[-67.920273,69.521927]]],[[[-134.26058999999987,68.73354],[-134.227264,68.696426],[-134.45749,68.71914700000013],[-134.46194,68.72387700000013],[-134.536407,68.786926],[-134.6694639999999,68.89444000000013],[-134.82584,68.978867],[-134.914734,68.96666],[-134.92029,68.914703],[-134.961121,68.892487],[-135.141968,68.901382],[-135.20166,68.9327550000001],[-135.460815,68.9427490000001],[-135.769165,68.896378],[-135.90585,68.91138],[-136.002502,68.94664],[-135.97833,69.040817],[-135.80249,68.989426],[-135.51779,69.02388],[-135.92749,69.09137],[-135.96722,69.214706],[-135.898621,69.255554],[-135.65668,69.1436],[-135.486938,69.11331200000012],[-135.64001,69.15498400000013],[-135.85416,69.290817],[-135.55612,69.338882],[-135.170563,69.257767],[-135.287231,69.419144],[-135.15085,69.476929],[-134.43832,69.454712],[-134.408356,69.491364],[-134.468872,69.542755],[-134.402496,69.649719],[-134.49109,69.722214],[-134.30972,69.71582],[-134.20389,69.66887],[-134.17749,69.640274],[-134.242218,69.568054],[-134.113312,69.538879],[-134.02002,69.559418],[-133.91833,69.508331],[-133.778351,69.57638],[-133.74832,69.54221],[-133.81805,69.46415700000011],[-134.21112,69.27609],[-134.27557,69.22608900000012],[-134.2803,69.180267],[-134.38364,69.11832],[-134.56805,69.10664400000013],[-134.673615,69.017761],[-134.66666,68.9561],[-134.48859,68.87025],[-134.43112,68.792755],[-134.26058999999987,68.73354]]],[[[-102.145279,69.6486],[-102.2261,69.6702580000001],[-102.241379,69.710266],[-102.134743,69.724701],[-102.11555,69.66666],[-102.145279,69.6486]]],[[[-77.946655,69.646652],[-78.50500499999987,69.488876],[-78.64611799999989,69.509995],[-78.838608,69.451385],[-78.88028,69.476929],[-78.57584,69.636383],[-78.24527,69.66360500000013],[-78.22806,69.677475],[-78.26862,69.732208],[-78.180557,69.752213],[-77.992767,69.699417],[-77.946655,69.646652]]],[[[-82.50778,69.704987],[-82.720001,69.73332],[-82.87944,69.77859500000011],[-82.80305,69.805817],[-82.460281,69.76165800000012],[-82.455,69.714432],[-82.50778,69.704987]]],[[[-79.42305,69.784988],[-79.32945,69.701385],[-79.600281,69.61276],[-80.065552,69.64166300000011],[-80.07889,69.62220800000011],[-79.93555,69.52721],[-80.011948,69.49165],[-80.200562,69.53082300000011],[-80.214722,69.586655],[-80.492767,69.664993],[-80.809433,69.683044],[-80.7202759999999,69.750549],[-80.52,69.720825],[-80.5,69.783325],[-80.388901,69.799988],[-80.329727,69.7741550000001],[-80.206665,69.798035],[-79.972778,69.723312],[-79.76807,69.752777],[-79.68721,69.814697],[-79.42305,69.784988]]],[[[-83.67444,69.719986],[-83.80695,69.739426],[-83.91722,69.77859500000011],[-83.886948,69.818604],[-83.8325,69.825272],[-83.52917,69.786652],[-83.708618,69.75943],[-83.655838,69.732208],[-83.67444,69.719986]]],[[[-82.429443,69.78221],[-82.551392,69.79664600000012],[-82.688599,69.85081500000013],[-82.660553,69.876083],[-82.51723,69.85416],[-82.42888,69.812195],[-82.429443,69.78221]]],[[[-91.52,69.731369],[-91.56027199999988,69.72832],[-91.73555,69.789154],[-91.409164,69.87498],[-91.46333,69.763611],[-91.52,69.731369]]],[[[-91.81917,69.821655],[-91.864166,69.84415],[-91.745544,69.88165300000014],[-91.639725,69.85498000000013],[-91.81917,69.821655]]],[[[-97.397781,69.685532],[-97.49027999999987,69.668594],[-97.37888,69.59248400000013],[-97.316391,69.686646],[-97.27389,69.694702],[-96.87917,69.491364],[-96.5025,69.40971400000012],[-96.20889,69.30693100000012],[-96.170547,69.260544],[-96.209732,69.226654],[-96.218887,69.0458220000001],[-96.11888,69.02554],[-96.155838,69.168594],[-96.04777499999989,69.228317],[-95.924438,69.089432],[-95.978882,69.04387],[-95.820282,68.87025],[-95.756958,68.891373],[-95.6261,68.82666],[-95.351395,68.89942900000011],[-95.206955,68.850266],[-95.476395,68.71192900000011],[-95.54361,68.702484],[-95.59389,68.752777],[-95.801666,68.73387],[-95.859726,68.65332],[-96.00084,68.619431],[-96.29138,68.473038],[-96.530563,68.444977],[-97.09445199999988,68.539154],[-97.181107,68.51138],[-97.47501,68.53554],[-97.91861,68.67553700000013],[-98.04999,68.69497700000011],[-98.119995,68.6708220000001],[-98.290558,68.755554],[-98.24416,68.82222000000013],[-98.38333,68.859985],[-98.425003,68.84137],[-98.40028,68.770828],[-98.519455,68.74748],[-98.859436,68.82916300000011],[-98.869995,68.874146],[-98.81139,68.915817],[-98.849442,68.933594],[-98.993057,68.94775400000015],[-99.09584,68.89942900000011],[-99.04415899999987,68.85971100000012],[-99.188599,68.824158],[-99.43777,68.891098],[-99.460556,68.950821],[-99.59639,69.020538],[-99.46666,69.134995],[-99.31139,69.158875],[-99.006958,69.13638300000014],[-98.73056,69.189423],[-98.61555,69.294708],[-98.393341,69.308029],[-98.397232,69.338318],[-98.61194,69.444138],[-98.577225,69.47943],[-98.41945,69.471375],[-98.601669,69.520828],[-98.55665599999986,69.580826],[-98.357773,69.55914300000012],[-98.0925,69.424988],[-98.003891,69.435806],[-98.263062,69.578873],[-98.367767,69.60108900000012],[-98.28195,69.751663],[-98.211121,69.799423],[-98.1077729999999,69.814697],[-98.012222,69.88582],[-97.755,69.851379],[-97.339447,69.701385],[-97.397781,69.685532]]],[[[-97.325012,69.88916],[-97.22694,69.87359600000013],[-97.28389,69.852768],[-97.48029,69.89888000000013],[-97.488602,69.943863],[-97.335556,69.946091],[-97.351669,69.901382],[-97.325012,69.88916]]],[[[-100.84973,69.925537],[-100.87999,69.933044],[-100.85861,69.97777],[-100.806953,69.985809],[-100.84973,69.925537]]],[[[-87.091385,70.150269],[-86.798889,70.087204],[-86.611664,70.111923],[-86.456665,70.00749],[-86.662216,69.96748400000013],[-87.00223,70.0149990000001],[-87.104172,69.98776],[-87.255,70.025269],[-87.28833,70.07332],[-87.37833,70.0961],[-87.10278,70.120819],[-87.145279,70.142761],[-87.091385,70.150269]]],[[[-125.05695,70.1183170000001],[-125.123322,70.135468],[-124.955,70.164154],[-124.99777,70.129974],[-125.05695,70.1183170000001]]],[[[-124.67944,70.16165200000012],[-124.76195,70.191925],[-124.50528,70.198318],[-124.536942,70.181931],[-124.67944,70.16165200000012]]],[[[-112.65527,70.2661],[-112.747223,70.278595],[-112.7614,70.2986],[-112.6875,70.306366],[-112.65527,70.2661]]],[[[-112.969727,70.281372],[-113.14084,70.283325],[-113.203613,70.29248],[-113.12888,70.312485],[-112.94554,70.286652],[-112.969727,70.281372]]],[[[-100.765289,70.25],[-100.868332,70.295532],[-100.851936,70.32388300000014],[-100.74805,70.3169400000001],[-100.765289,70.25]]],[[[-116.80527,70.50943],[-116.633904,70.493591],[-116.56834,70.47388],[-116.71916,70.47026100000011],[-116.828613,70.503601],[-116.80527,70.50943]]],[[[-116.287781,70.55331400000011],[-116.12749,70.535812],[-116.495827,70.52277],[-116.47,70.53804],[-116.287781,70.55331400000011]]],[[[-116.56305,70.534424],[-116.75029,70.539154],[-116.774437,70.545258],[-116.509453,70.556091],[-116.56305,70.534424]]],[[[-115.92054699999989,70.541367],[-115.993332,70.541656],[-116.06111,70.54832],[-115.808037,70.5705410000001],[-115.92054699999989,70.541367]]],[[[-116.87944,70.54748500000011],[-117.20195,70.537766],[-117.301666,70.56192],[-117.19943,70.5916600000001],[-116.87944,70.54748500000011]]],[[[-128.086121,70.605545],[-128.13275,70.569153],[-128.34167,70.54221],[-128.23416099999986,70.6560970000001],[-128.086121,70.605545]]],[[[-100.23083,70.45166],[-100.670837,70.558868],[-100.651947,70.669708],[-100.480003,70.67330900000013],[-100.218338,70.56442],[-100.23083,70.45166]]],[[[-103.17778,70.622482],[-103.2664,70.624146],[-103.281387,70.638046],[-103.210007,70.676651],[-103.17778,70.622482]]],[[[-103.35083,70.687195],[-103.42888,70.699997],[-103.46278,70.732208],[-103.34111,70.720261],[-103.35083,70.687195]]],[[[-71.471664,71.012772],[-71.339722,70.991364],[-71.41556,70.907761],[-71.65445,70.89082],[-71.95557,70.818329],[-72.112213,70.811371],[-72.226395,70.930542],[-72.078339,70.923599],[-72.03944,70.950272],[-72.02139,71.04193],[-71.88417,71.068878],[-71.471664,71.012772]]],[[[-96.56332,71.29221],[-96.472504,71.232208],[-96.480835,71.20887800000014],[-96.63861,71.226089],[-96.64917,71.29304500000012],[-96.56332,71.29221]]],[[[-98.895554,71.277771],[-98.974442,71.284714],[-99.0089,71.313873],[-98.95584,71.352203],[-98.895554,71.277771]]],[[[-73.120544,71.47971],[-73.12944,71.450821],[-72.972229,71.521378],[-72.8175,71.44497700000011],[-73.03111,71.40665],[-72.971939,71.31749000000013],[-73.06055,71.294708],[-73.27251,71.361923],[-73.25473,71.415268],[-73.37416,71.485809],[-73.37999,71.519714],[-73.147507,71.56442300000015],[-73.07362,71.536926],[-73.120544,71.47971]]],[[[-72.76083399999987,71.531937],[-72.949997,71.54721100000012],[-73.03999,71.579987],[-72.94861,71.644714],[-72.69583,71.65109300000012],[-72.66055,71.598038],[-72.76083399999987,71.531937]]],[[[-73.37027,71.554428],[-73.44804,71.59415],[-73.276108,71.69192],[-73.14889,71.679977],[-73.282776,71.63777],[-73.37027,71.554428]]],[[[-96.95889,71.704437],[-97.05028,71.704163],[-96.9639,71.75221],[-96.844452,71.744141],[-96.95889,71.704437]]],[[[-95.34,71.731369],[-95.435822,71.72998],[-95.48805199999987,71.74552900000015],[-95.440277,71.824158],[-95.26584,71.836655],[-95.31055,71.737198],[-95.34,71.731369]]],[[[-134.49554,68.752213],[-134.473877,68.71138],[-134.40112,68.687759],[-134.22693,68.69413800000012],[-134.223328,68.69971],[-134.262512,68.73637400000013],[-134.541687,68.919708],[-134.62915,69.00888],[-134.537506,69.093872],[-134.3388979999999,69.106369],[-134.1539,69.25888],[-133.90557899999988,69.28749],[-133.86972,69.334152],[-133.55057,69.405823],[-133.20584099999988,69.39888],[-132.99942,69.48193400000014],[-132.95221,69.563309],[-132.988586,69.595261],[-132.89389,69.65387],[-132.41751,69.635544],[-132.32748,69.677765],[-132.58673,69.69165],[-132.54056,69.74081400000011],[-132.39975,69.751663],[-132.14697,69.68526],[-132.107208,69.723602],[-131.8347169999999,69.7686],[-131.765564,69.79471],[-131.76001,69.827484],[-131.447784,69.918594],[-131.41028,69.957214],[-131.237213,69.9272],[-131.20138,69.883881],[-131.220551,69.843048],[-131.184998,69.824158],[-131.08057,69.884995],[-131.01028,69.986923],[-131.01947,70.027771],[-130.930298,70.08305400000012],[-130.74832,70.08194000000015],[-130.54306,70.16832],[-130.467712,70.17009],[-130.54724,70.127472],[-130.5102839999999,70.101089],[-130.407227,70.14053300000012],[-130.18472,70.053589],[-129.97555,70.06944],[-129.890839,70.09275800000012],[-129.8324889999999,70.19553],[-129.67306,70.26694],[-129.40335,70.11775200000011],[-129.497498,70.0205380000001],[-130.49582,69.781662],[-130.578339,69.708038],[-130.789734,69.67276],[-130.84415,69.599716],[-130.92862,69.563309],[-131.02667,69.593048],[-131.05307,69.63721],[-131.32861,69.57998700000013],[-131.99722,69.531372],[-132.141693,69.412766],[-132.085266,69.390823],[-132.094727,69.362762],[-132.76028,69.25416600000011],[-132.90723,69.1244200000001],[-132.90527,69.04275],[-133.193329,69.037491],[-133.2261,68.91360500000013],[-133.33472,68.866089],[-133.399445,68.88136],[-133.36945,68.910538],[-133.461121,68.8927610000001],[-133.49081,68.821655],[-133.32138,68.74636800000012],[-133.03751,68.690536],[-132.918335,68.690262],[-132.95471,68.715271],[-133.1525,68.720825],[-133.26611,68.77887],[-133.13974,68.766937],[-133.33554,68.78970300000015],[-133.35416,68.83221400000014],[-133.23776,68.861099],[-133.062225,68.80276500000014],[-132.93668,68.85498],[-132.75363,68.80276500000014],[-132.470276,68.806931],[-132.39279,68.859985],[-132.503632,68.909714],[-132.5675,68.915268],[-132.55557,68.878311],[-132.66528,68.841934],[-132.77779,68.860153],[-132.833618,68.91775500000011],[-132.869446,69.062759],[-132.66333,69.08581500000014],[-132.540833,69.135269],[-132.45917,69.108032],[-132.38501,69.13916],[-132.32056,69.233871],[-132.2236,69.213608],[-132.2225,69.141663],[-132.116943,69.242203],[-131.86499,69.28305100000011],[-131.714447,69.3977660000001],[-131.97,69.406372],[-131.65222,69.471924],[-131.42911,69.43470000000012],[-131.52585,69.32944],[-131.41278,69.366653],[-131.32193,69.493317],[-131.24582,69.498322],[-131.21304,69.387497],[-131.41446,69.296936],[-131.32471,69.319992],[-131.193329,69.36526],[-131.166504,69.40493],[-131.16223,69.49054],[-131.25386,69.57184600000011],[-131.22546,69.5807190000001],[-131.110535,69.485329],[-131.14851,69.403534],[-131.12833,69.361923],[-131.06085,69.47068800000011],[-131.06395,69.51239],[-131.194733,69.578873],[-131.13834,69.61415],[-131.083069,69.60054],[-131.027802,69.463882],[-131.116394,69.322495],[-131.02667,69.38386500000013],[-130.98999,69.44914],[-130.990265,69.539429],[-130.94223,69.53415],[-130.92443799999987,69.448593],[-131.036682,69.310532],[-130.89612,69.380539],[-130.91428,69.31831],[-131.024719,69.20971700000011],[-131.01419,69.136932],[-130.93722499999987,69.13443],[-130.941681,69.270538],[-130.81305,69.37970000000013],[-130.689728,69.4061],[-130.645294,69.454712],[-130.74777,69.44914],[-130.507233,69.55247],[-130.36608899999987,69.686371],[-129.602203,69.81888],[-129.09943,69.858871],[-128.965271,69.962494],[-128.90085,69.97192400000012],[-128.85471,69.95471],[-128.93445,69.84415],[-129.169464,69.82471],[-129.14999,69.695526],[-128.92502,69.680817],[-128.64001,69.843048],[-128.310547,69.958328],[-128.308624,70.0080410000001],[-128.361389,70.058868],[-128.35333,70.113037],[-128.10916,70.1822],[-127.51500699999985,70.221649],[-128.06664999999987,70.307205],[-128.07843,70.346436],[-127.96001,70.34748800000011],[-127.90195,70.393326],[-128.19665,70.391937],[-128.13583,70.52304100000015],[-127.99666,70.59054600000013],[-127.4285959999999,70.393326],[-127.173607,70.272217],[-126.87888,70.00055],[-126.70584,69.76609800000011],[-126.25584,69.526657],[-125.910553,69.405548],[-125.426392,69.31218000000011],[-125.36555,69.342468],[-125.401108,69.37413],[-125.37749,69.39609],[-125.16528,69.381638],[-125.089447,69.44971],[-125.462784,69.452469],[-125.622498,69.41859],[-125.57806,69.471649],[-125.46472199999987,69.5122070000001],[-125.11806,69.48579],[-125.265556,69.526917],[-125.41,69.628036],[-125.36555,69.690262],[-125.01695,69.74052400000011],[-124.9675,69.726929],[-124.925,69.64471400000014],[-124.821953,69.715],[-124.897507,69.750549],[-125.241379,69.760254],[-125.2764,69.808243],[-125.18443,69.855804],[-125.165009,69.79550200000011],[-125.05666,69.795242],[-124.94027699999985,69.91693],[-124.76445,69.970825],[-124.79527,70.00888],[-124.99028,70.006104],[-125.190826,69.93243],[-125.21777,69.942337],[-125.197487,70.00450100000012],[-125,70.079987],[-124.98195,70.04776],[-125.045273,70.01799000000011],[-124.645279,70.07193],[-124.59778,70.015274],[-124.55583,70.01304600000014],[-124.423607,70.05636600000014],[-124.585564,70.115265],[-124.735817,70.089432],[-124.752502,70.121643],[-124.69415,70.148605],[-124.43611,70.151093],[-124.391388,70.13415500000013],[-124.35861199999988,70.068604],[-124.45944,69.956375],[-124.42972,69.84943],[-124.5016779999999,69.7844240000001],[-124.50056,69.725815],[-124.294998,69.695251],[-124.1875,69.73054500000012],[-124.040833,69.701385],[-124.24055,69.550262],[-124.51889,69.40416],[-124.44666,69.36720300000013],[-124.161942,69.34915200000012],[-123.81696,69.38888500000013],[-123.67999,69.35331700000012],[-123.46611,69.383881],[-123.407501,69.416092],[-123.45084,69.452209],[-123.39999,69.490265],[-123.16861,69.4952550000001],[-123.09639,69.670532],[-123.10527,69.77916],[-122.95917,69.833603],[-122.80804,69.79359],[-122.66444,69.818054],[-121.683884,69.79359],[-120.825562,69.623596],[-120.6161,69.520264],[-120.231667,69.39166],[-119.934998,69.33971],[-118.84056,69.25055],[-118.64473,69.212494],[-118.457779,69.11747700000012],[-118.03555,69.01971400000014],[-117.41583,68.953598],[-117.153877,68.885544],[-116.93908,68.91100300000011],[-116.50029,68.85720800000013],[-116.38138,68.88247700000011],[-116.213623,68.830551],[-115.96001,68.804703],[-116.33,68.9561],[-116.20500199999985,68.98498500000011],[-115.8674929999999,68.92276],[-115.766953,68.939148],[-115.833328,68.992477],[-115.593063,68.97164900000013],[-114.98999,68.86276],[-114.79195,68.799423],[-114.72945,68.74443100000013],[-114.44833,68.689697],[-114.465286,68.66443],[-114.404716,68.61499000000015],[-114.23361,68.569443],[-114.07056,68.477478],[-114.02333,68.241364],[-114.7025,68.250275],[-114.75528,68.18969700000014],[-114.89639,68.146942],[-115.23721299999987,68.182205],[-115.24055,68.036377],[-115.11055,68.012207],[-115.54250299999988,67.921646],[-115.521118,67.89166300000011],[-115.281387,67.86637900000011],[-115.1036069999999,67.79664600000012],[-114.71889,67.813309],[-114.29778,67.7185970000001],[-114.14835,67.7369230000001],[-113.84584,67.69136],[-112.3958439999999,67.679153],[-111.91278,67.754166],[-111.57278,67.74443100000013],[-111.17583,67.837494],[-111.120827,67.78082300000011],[-111.00584,67.765],[-110.840561,67.800262],[-110.732498,67.864426],[-110.08389,68.006943],[-109.97084,67.95804],[-109.988892,67.84137],[-109.91722,67.839157],[-109.94194,67.88443],[-109.81416,67.862198],[-109.73083,67.791931],[-109.75168,67.733597],[-109.7261,67.71693],[-109.53473,67.685806],[-109.37027,67.72916],[-109.065826,67.71415700000011],[-108.91916,67.53581200000013],[-109.01529,67.494141],[-109.01807,67.462494],[-108.84999,67.388596],[-108.825012,67.34942600000011],[-108.74445,67.44553],[-108.736389,67.603043],[-108.65527,67.628311],[-108.57888799999989,67.605545],[-108.5114,67.48749],[-108.522781,67.440811],[-108.48416,67.34942600000011],[-108.42471,67.364151],[-108.43999,67.42747500000013],[-108.36694,67.444977],[-108.015289,67.293045],[-107.875,67.140823],[-107.88055,67.048325],[-108.14862,67.0766600000001],[-108.232773,67.01915],[-108.622772,67.14999],[-108.516113,67.03442],[-108.45612,67.0705410000001],[-108.33057,66.9869230000001],[-108.149986,66.95444],[-107.94138,66.788315],[-107.949432,66.720535],[-107.88276699999987,66.663315],[-107.888344,66.75555400000013],[-107.85333,66.756378],[-107.64751,66.5747070000001],[-107.235001,66.34860200000014],[-107.195831,66.366379],[-107.23555,66.407486],[-107.56221,66.59137],[-107.624161,66.660812],[-107.69388,66.755829],[-107.746658,66.92276],[-107.638062,67.024429],[-107.66805999999985,67.068329],[-107.63612,67.073883],[-107.523903,67.020264],[-107.48389,66.924149],[-107.67139,66.937035],[-107.564438,66.8336],[-107.40889,66.811096],[-107.39111,66.891373],[-107.44472,66.96249],[-107.421944,66.97276],[-107.08362,66.820541],[-107.30527,67.0058290000001],[-107.31139,67.127197],[-107.503067,67.1927490000001],[-107.64862,67.359985],[-107.582779,67.496368],[-108.006958,67.70748900000012],[-108.0139,67.756104],[-107.94194,67.84693900000013],[-107.71472,67.892487],[-107.651108,67.94054],[-107.910278,67.988586],[-107.89055599999989,68.08166],[-107.85167,68.106094],[-107.6936,68.071655],[-107.80943,68.05165],[-107.83389,68.007217],[-107.77901,67.996765],[-107.61028,68.05859],[-107.349442,68.048599],[-107.154449,68.126923],[-107.11028,68.126923],[-107.11888099999986,68.084717],[-106.84111,68.116379],[-106.80028,68.21748400000013],[-106.61444,68.248032],[-106.431953,68.153046],[-106.34473,68.18332],[-106.49583,68.22554],[-106.46501,68.33581500000014],[-106.244164,68.38998400000014],[-106.1547159999999,68.37387100000012],[-105.739723,68.41527],[-105.69722,68.48665],[-105.743057,68.56469700000014],[-105.645,68.633881],[-106.02945,68.6197],[-106.543877,68.51193200000012],[-106.631668,68.461929],[-106.48056,68.39554],[-106.54333,68.291367],[-106.80278,68.41443],[-107.013634,68.369431],[-107.13222,68.2833250000001],[-107.246109,68.261383],[-107.33806,68.315811],[-107.560822,68.34915],[-107.82611,68.341095],[-107.88528,68.268875],[-107.603058,68.165268],[-108.16139199999985,68.17276],[-108.38556,68.113037],[-108.42805,68.15416],[-108.36694,68.161102],[-108.36528,68.133606],[-108.324448,68.192749],[-108.40222,68.29414400000012],[-108.484444,68.30525],[-108.71556,68.231369],[-108.81917,68.26666300000011],[-108.314163,68.611374],[-107.231377,68.718872],[-106.820847,68.811371],[-106.63501,68.818329],[-106.214722,68.94136],[-105.79805,68.879425],[-105.486938,68.72943],[-105.49944,68.621368],[-105.380829,68.48665],[-105.52945,68.450272],[-105.54111,68.412766],[-105.39028899999988,68.40942400000012],[-105.286942,68.335266],[-105.055557,68.2580410000001],[-105.006615,68.2686],[-105.026108,68.309418],[-104.848053,68.3247070000001],[-104.853058,68.27665700000011],[-104.952789,68.252487],[-104.914436,68.227203],[-104.609734,68.241364],[-104.597229,68.22221400000012],[-104.67027,68.13859600000012],[-104.5,68.031937],[-103.76695,68.02832],[-103.54444899999987,68.059982],[-103.55305,68.109711],[-103.42166,68.1666560000001],[-103.34138,68.116089],[-103.366096,68.005829],[-103.136948,67.95804],[-103.093063,67.923035],[-102.95944199999985,67.926926],[-102.80028,67.820831],[-102.47084,67.786926],[-102.25111,67.72526600000015],[-102.1416779999999,67.76915],[-101.926102,67.760269],[-101.51501,67.679428],[-101.446663,67.73248300000012],[-100.999733,67.743317],[-100.72028,67.83442700000012],[-100.39555,67.847488],[-99.82001,67.79582],[-99.50056,67.799713],[-99.210556,67.70694000000015],[-98.35445,67.796097],[-98.44943,67.865814],[-98.54028,67.87220800000011],[-98.72416699999985,67.953598],[-98.73277,68.070267],[-98.61555,68.07471],[-98.26695299999989,67.92330900000013],[-98.09445,67.766098],[-97.59277299999984,67.601654],[-97.50973,67.5991520000001],[-97.1389,67.674149],[-97.11916,67.79248],[-97.24028,67.926086],[-97.291107,67.88499500000012],[-97.392227,67.87637300000011],[-97.68306,68.0186],[-97.71056,67.991653],[-98.03,67.94192],[-98.06389,67.82916],[-98.10666,67.836929],[-98.587509,68.14942900000011],[-98.459732,68.183594],[-98.42444,68.15221],[-98.439438,68.10416],[-98.37999,68.07916300000011],[-98.33972,68.103867],[-98.32611,68.17137100000014],[-98.50111,68.2086],[-98.714447,68.372208],[-98.606384,68.37276],[-98.5114,68.32971],[-98.46222,68.353592],[-98.494995,68.40942400000012],[-98.199722,68.300262],[-97.89412,68.386459],[-97.74889,68.3647],[-97.78195,68.406647],[-97.89999,68.41971],[-98.0114,68.503052],[-97.99416,68.541092],[-97.85249,68.54248],[-97.692764,68.516663],[-97.646118,68.45082],[-97.537781,68.41832],[-97.500565,68.434982],[-97.617767,68.462494],[-97.53111,68.50193800000011],[-97.25917099999985,68.4666600000001],[-97.053329,68.35332],[-97.08029,68.259155],[-96.925003,68.239151],[-96.68056,68.280823],[-96.62527499999987,68.25166300000012],[-96.40417,68.311371],[-96.62305,68.11554],[-96.81221,68.043869],[-96.70834,68.00861],[-96.4664,68.03887900000012],[-96.479996,68.090271],[-96.547501,68.0894320000001],[-96.43222,68.156097],[-95.98029,68.254715],[-95.968338,68.23082],[-96.07861,68.1499940000001],[-96.020279,68.106094],[-96.21528599999988,67.823608],[-96.22139,67.697754],[-96.168335,67.69497700000011],[-96.174713,67.643051],[-96.329727,67.61026],[-96.43777,67.541367],[-96.46472199999987,67.47804300000013],[-96.363892,67.47804300000013],[-96.21001,67.419144],[-96.09723,67.464706],[-96.07028,67.42831400000011],[-96.226944,67.316666],[-96.252228,67.247482],[-96.114441,67.213318],[-95.73999,67.376648],[-95.56583,67.376648],[-95.52501,67.351089],[-95.55333,67.31330900000012],[-95.83333,67.16276600000013],[-95.54416,67.2124940000001],[-95.43555,67.193863],[-95.37944,67.15471],[-95.32611,67.02721],[-95.343338,66.974701],[-95.534729,66.941086],[-95.614166,66.97026100000011],[-95.9025,66.94664],[-95.99388,67.00972],[-95.946945,67.07222000000013],[-96.05167,67.010818],[-96.033066,66.967484],[-96.123322,66.95027],[-96.279175,66.99915],[-96.261124,67.0410920000001],[-96.28805,67.068329],[-96.392227,67.08693],[-96.46055599999988,67.062195],[-96.40388,67.008331],[-96.14639,66.89471400000014],[-96.10889,66.832764],[-95.848053,66.752777],[-95.780838,66.62915],[-95.64667,66.66443],[-95.62749,66.686096],[-95.652222,66.728592],[-95.7847289999999,66.73719800000015],[-96.09277,66.916931],[-96.00029,66.950546],[-95.785004,66.93692],[-95.73805,66.90138200000013],[-95.31139,66.889984],[-95.2208399999999,66.96832],[-95.345,67.08442700000012],[-95.35222,67.148331],[-95.16333,67.2872],[-95.33639,67.348328],[-95.38417,67.444138],[-95.32417,67.516663],[-95.343613,67.55497700000012],[-95.4664,67.637207],[-95.70917,67.727768],[-95.534439,67.820831],[-95.416946,68.02777100000014],[-95.47528,68.058319],[-95.07556199999988,68.068878],[-94.867218,68.03414900000013],[-94.722229,68.054977],[-94.605,68.13971],[-94.19916,68.267761],[-94.21083,68.36137400000013],[-94.12305,68.416931],[-93.61916,68.544144],[-93.553329,68.58638],[-93.55972,68.61164900000011],[-93.705276,68.65721100000013],[-93.695267,68.751938],[-93.5675,68.839706],[-93.64223,68.963882],[-93.92555199999987,68.974701],[-94.055832,68.9019320000001],[-94.079727,68.847488],[-94.034164,68.83332800000011],[-93.813889,68.884995],[-94.095276,68.758041],[-94.49083,68.728867],[-94.625,68.76138300000014],[-94.545273,68.88472],[-94.59,68.908325],[-94.604172,68.961929],[-94.22417,69.02777100000014],[-94.072784,69.126648],[-94.24834,69.120529],[-94.32306,69.149994],[-94.28416,69.318878],[-93.5264,69.438309],[-93.82861,69.265549],[-93.85666,69.172211],[-93.83721899999989,69.164429],[-93.362778,69.37164300000012],[-93.565,69.367752],[-93.43944,69.47527],[-93.540833,69.523315],[-93.68388,69.522217],[-93.86972,69.45166000000012],[-94.279175,69.440262],[-94.45167,69.5186],[-94.62944,69.683044],[-94.755,69.661652],[-94.730835,69.60277],[-94.846664,69.56553600000012],[-95.00944,69.621643],[-95.40834,69.68193100000013],[-95.648056,69.780273],[-95.960831,69.77805],[-96.07445,69.841934],[-96.097778,69.94664],[-96.25723,69.963043],[-96.531677,70.131088],[-96.57167099999987,70.234421],[-96.54834,70.32887],[-96.232773,70.562195],[-96.06973,70.587769],[-95.923325,70.545258],[-95.78944,70.53665200000012],[-96.06138599999986,70.617203],[-96.04834,70.646942],[-95.81778,70.71027],[-96.11555,70.6560970000001],[-96.16362,70.61554000000012],[-96.3761,70.673035],[-96.434723,70.737198],[-96.611938,70.794434],[-96.59167,70.86692800000014],[-96.513062,70.949707],[-96.49583399999987,71.040268],[-96.369995,71.089981],[-96.409439,71.119431],[-96.41362,71.084152],[-96.46139,71.08055100000013],[-96.56055,71.126373],[-96.46722,71.16527],[-96.4622,71.255501],[-96.50389,71.27721],[-96.04639,71.418045],[-95.89389,71.390823],[-95.67305,71.2874910000001],[-95.535278,71.29082],[-95.451401,71.375809],[-95.54777,71.487762],[-95.78,71.50388],[-95.943054,71.5535890000001],[-95.87721,71.618317],[-95.74472,71.624146],[-95.53972,71.7036],[-95.30162,71.7211],[-95.226944,71.82666],[-94.89029,71.844711],[-94.734436,71.82332],[-94.60666,71.863312],[-94.75696,71.83749],[-94.90388,71.85026600000013],[-95.213333,71.84304800000012],[-95.255,71.89554],[-95.2014,71.94720500000011],[-94.499435,71.98803700000013],[-94.38861,71.92414900000011],[-94.46056,71.84942600000011],[-94.64416,71.818329],[-94.59416,71.743317],[-94.5386,71.75833100000011],[-94.488327,71.824158],[-94.35665899999987,71.796371],[-94.418335,71.65999],[-94.19444,71.791931],[-94.023621,71.785812],[-93.94249,71.74359],[-93.81889299999989,71.7747],[-93.71167,71.761383],[-93.696655,71.710815],[-93.81862,71.6519320000001],[-93.618057,71.568604],[-93.230835,71.47360200000014],[-93.1425,71.374985],[-92.97389,71.34082000000012],[-92.93083,71.2144320000001],[-92.85445,71.15138200000011],[-92.90695,70.9124910000001],[-93.04834,70.87387],[-93.0275,70.852768],[-92.676666,70.771652],[-92.621933,70.683594],[-92.199158,70.606644],[-92.15666,70.573044],[-92.25,70.56972],[-92.25,70.50138900000013],[-92.1100009999999,70.468323],[-91.99695,70.390823],[-91.959732,70.2586060000001],[-91.890289,70.354431],[-91.737213,70.3586],[-91.69387799999986,70.33638],[-91.63612,70.23166],[-91.51363,70.167206],[-91.5425,70.14082300000013],[-91.97223,70.118591],[-92.268341,70.20887800000014],[-92.39307,70.150543],[-92.450287,70.0711060000001],[-92.12999,70.084991],[-91.93971,70.020264],[-92.543335,69.780548],[-92.77861,69.722214],[-92.53528,69.70526100000012],[-92.920273,69.669708],[-92.69444,69.65637200000015],[-92.34084,69.69413800000012],[-92.088333,69.623032],[-92.30055,69.64166300000011],[-92.12471,69.554977],[-91.803329,69.49887],[-91.485001,69.66331500000013],[-91.20222,69.655258],[-91.091949,69.63165],[-91.360825,69.545532],[-91.57028,69.520264],[-91.192215,69.562759],[-91.114166,69.51082],[-90.75862,69.4827580000001],[-90.69861,69.539429],[-90.30777,69.450272],[-90.55556,69.422485],[-90.70361,69.453598],[-90.58223,69.416931],[-90.79028,69.362762],[-90.82223,69.25166300000011],[-91.08112,69.26694],[-91.44722,69.352768],[-90.66472,69.083328],[-90.58389,68.928864],[-90.43639,68.87442],[-90.41945,68.84082],[-90.44611,68.77970900000014],[-90.527786,68.736649],[-90.479172,68.705826],[-90.474442,68.53082],[-90.60666,68.44609100000014],[-90.3175,68.373306],[-90.36749,68.34526100000011],[-90.27139,68.2388760000001],[-90.12277,68.253601],[-89.91222,68.467209],[-89.89307,68.54332],[-89.94972,68.607758],[-89.809723,68.710266],[-89.74695,68.66970800000013],[-89.684723,68.810257],[-89.75695799999988,68.939972],[-89.71666,69.00610400000011],[-89.48999,69.110535],[-89.39,69.219147],[-89.30666,69.251389],[-89.11444099999989,69.275269],[-88.96889,69.241364],[-88.782501,69.103043],[-88.20862,68.911652],[-88.05222,68.823044],[-87.947769,68.731659],[-87.91666,68.65637200000015],[-87.947769,68.605255],[-87.791672,68.39833],[-87.79222,68.334427],[-87.84889199999986,68.244141],[-87.935822,68.19582],[-88.10665899999987,68.242752],[-88.221939,68.36554],[-88.392227,68.28749],[-88.2775,68.111649],[-88.381104,68.025269],[-88.370834,67.959152],[-88.26916,67.793594],[-88.13945,67.66443],[-87.955841,67.607483],[-87.357773,67.262207],[-87.505569,67.18526],[-87.510284,67.11219800000015],[-87.322784,67.16276600000013],[-87.24083,67.21609],[-86.96861,67.245255],[-87.09,67.35081500000013],[-86.874435,67.40498400000013],[-86.779175,67.422211],[-86.67555,67.36554],[-86.52362,67.352203],[-86.451401,67.59748800000011],[-86.525284,67.68136600000012],[-86.35055,67.83333],[-86.098053,67.978043],[-85.8925,68.05137600000012],[-85.9164,68.09414700000013],[-85.84277,68.31721],[-85.71278,68.4116520000001],[-85.73332,68.598602],[-85.66362,68.726929],[-85.46416,68.75299100000012],[-85.56277,68.77666],[-85.514175,68.783875],[-85.228882,68.710266],[-85.14835,68.75000000000011],[-84.78722,68.733597],[-84.75418,68.772217],[-84.834732,68.8205410000001],[-85.031677,68.810806],[-85.19444299999985,68.867203],[-85.00195,68.88247700000011],[-84.997498,68.925812],[-85.14056,68.94664],[-85.115005,68.958603],[-84.79138,68.943314],[-84.98692,68.99951],[-84.957779,69.017487],[-84.57806,68.993866],[-84.52834,69.017487],[-85.108337,69.11331200000012],[-84.99472,69.17303500000014],[-85.15178,69.16609],[-85.22362,69.12886],[-85.308334,69.1436],[-85.22684,69.179871],[-85.383057,69.205551],[-85.47333,69.271927],[-85.50334,69.405258],[-85.339172,69.43887300000011],[-85.42277,69.462494],[-85.49138,69.436646],[-85.53889,69.46693],[-85.54777,69.647217],[-85.514725,69.768051],[-85.40916,69.78858900000012],[-85.39195,69.7502750000001],[-85.331955,69.77916],[-85.361938,69.82193],[-85.58639,69.82693],[-85.571945,69.856094],[-85.361938,69.848877],[-85.064438,69.769989],[-84.854172,69.831375],[-84.37582,69.85748300000012],[-83.705,69.703598],[-83.34639,69.676086],[-83.25334,69.70526100000012],[-83.00806,69.67915],[-82.69665,69.695816],[-82.25473,69.636383],[-82.653885,69.623032],[-82.65472,69.56860400000011],[-82.47667,69.49776],[-82.50056,69.492203],[-83.22806,69.538589],[-82.237213,69.400818],[-82.291382,69.246643],[-82.25862,69.233871],[-81.707779,69.264709],[-81.33250399999986,69.18248],[-81.299438,69.1202550000001],[-81.570282,68.992477],[-82.05722,68.873871],[-81.819458,68.9086],[-81.661942,68.902771],[-81.58195,68.86499],[-81.38277,68.86665],[-81.234436,68.769989],[-81.2675,68.6330410000001],[-81.97084,68.42109700000015],[-82.02444,68.43692],[-82.0775,68.503601],[-82.229446,68.531662],[-82.27112,68.527481],[-82.17332,68.48581],[-82.22806,68.455261],[-82.44888,68.478592],[-82.55777,68.5269320000001],[-82.638901,68.497208],[-82.4911039999999,68.4538730000001],[-82.49055,68.40221],[-82.351105,68.331375],[-82.501404,68.308594],[-82.38695,68.266388],[-82.264725,68.284424],[-82.33722,68.15582300000011],[-82.179169,68.111649],[-82.0475009999999,68.20972],[-81.988892,68.20665],[-82.02722,68.12276],[-82.114502,68.08287],[-82.173889,68.00249],[-82.09666,67.902481],[-81.43306,67.611374],[-81.24306,67.474991],[-81.239166,67.436096],[-81.304718,67.386108],[-81.347778,67.292755],[-81.413895,67.09137],[-81.512512,66.994705],[-81.92972,66.978592],[-82.026947,66.926086],[-82.183884,66.76416],[-82.36972,66.72581500000013],[-82.55638,66.62387100000012],[-82.585556,66.564697],[-83.01807,66.539978],[-83.05861,66.47026],[-83.368332,66.348877],[-83.450562,66.346649],[-83.65279,66.407761],[-83.61833199999988,66.44081100000011],[-83.534729,66.37804],[-83.681107,66.524994],[-83.97749,66.582214],[-84.01556,66.68775900000014],[-83.945541,66.702484],[-83.886124,66.813873],[-83.916397,66.88109],[-83.945541,66.813599],[-84.104996,66.708328],[-84.273056,66.7186],[-84.436386,66.81832900000012],[-84.42778,66.9611],[-84.370834,66.971375],[-84.92694,67.05941800000011],[-84.871658,66.98498],[-84.76556,67.006378],[-84.63972499999988,66.978043],[-85.04834,66.963318],[-85.228882,66.873306],[-85.119995,66.83554100000013],[-84.94861,66.85859700000013],[-84.90105,66.90037500000011],[-84.96173,66.912704],[-84.862335,66.939835],[-84.602219,66.93580600000013],[-84.56221,66.90138200000013],[-84.746384,66.897491],[-84.50584,66.82777],[-84.69055,66.83998],[-84.466949,66.78776600000015],[-84.44249,66.71081],[-84.144455,66.681366],[-84.1863859999999,66.601379],[-83.898056,66.432755],[-83.76862,66.260818],[-83.678604,66.20109600000012],[-83.84778,66.15332],[-84.118057,66.254715],[-84.178329,66.315536],[-84.31723,66.299713],[-84.51695,66.40470900000014],[-84.636124,66.328873],[-84.4075,66.215546],[-84.37471,66.1586],[-84.86916,66.26666],[-84.96666,66.244431],[-85.13194,66.291931],[-85.22778,66.264435],[-85.30666,66.3141480000001],[-85.343338,66.486923],[-85.47972,66.581375],[-85.845276,66.49942],[-86.77528,66.526093],[-86.633621,66.43637100000011],[-86.809158,66.437195],[-86.63834,66.315262],[-86.306107,66.27638200000013],[-85.897232,66.16832],[-85.97749,66.07777],[-85.979996,66.028595],[-86.42027,65.892487],[-86.49695,65.808029],[-86.455276,65.78610200000013],[-86.45111099999984,65.747208],[-86.53028899999985,65.69553],[-86.829727,65.555817],[-87.077789,65.484985],[-87.118607,65.4433140000001],[-87.111664,65.390274],[-87.37277,65.322769],[-88.03029,65.345261],[-88.21278399999989,65.402771],[-88.33362,65.492477],[-88.559723,65.58692900000011],[-88.82972699999988,65.64137],[-88.498886,65.626923],[-88.51334,65.64444],[-88.962784,65.68858300000011],[-89.67166,65.93942300000013],[-90,65.94435900000013],[-89.731674,65.869141],[-89.736389,65.829163],[-89.79333,65.822495],[-90.04861,65.888321],[-90.26584,65.86053500000014],[-90.432495,65.882751],[-90.21556,65.904434],[-90.23473,65.922485],[-90.59611,65.896652],[-91.31639,65.9699860000001],[-91.42917,65.951096],[-91.44444299999986,65.930817],[-91.35333,65.889435],[-91.02055,65.806091],[-91.121384,65.914993],[-90.53168,65.880539],[-89.96001,65.788879],[-89.660278,65.68332],[-89.05444,65.3288730000001],[-88.06166,65.258881],[-87.67305,65.29137],[-87.357773,65.270828],[-87.075012,65.23665],[-86.93332,65.13804600000014],[-86.9702759999999,65.054428],[-87.110001,64.999146],[-87.586121,64.56275900000013],[-87.80722,64.51443],[-87.98389,64.191086],[-88.113327,64.136108],[-88.73666,63.968323],[-89.07778899999988,64.02609300000012],[-89.26083399999987,64.160538],[-89.28639,64.136658],[-89.182495,64.036652],[-89.023621,63.950272],[-89.24666,63.959717000000126],[-89.39612,64.038589],[-89.558609,64.07388300000014],[-89.56332399999985,64.00943],[-89.48555,63.942215],[-89.64416,64.053864],[-89.712219,64.079437],[-89.72694,64.04748],[-89.81807,64.098602],[-89.809723,64.12886],[-89.73582,64.14526],[-89.78416,64.244705],[-89.823624,64.14444],[-89.9675,64.161377],[-90.124161,64.128586],[-89.950562,64.086929],[-89.81361,63.93721],[-89.93889,63.90971],[-89.998337,63.926102],[-89.94861,63.945267],[-89.968613,63.97804300000012],[-90.279175,64.003601],[-90.19694,63.982491],[-89.96417,63.81193500000012],[-90.14889,63.629158],[-90.20528,63.612213],[-90.429443,63.615829],[-90.48805,63.672493],[-90.62389,63.70416],[-90.69916,63.657494],[-90.590286,63.67666],[-90.55556,63.655266],[-90.55139,63.601387],[-90.93056,63.564156],[-91.158051,63.635551],[-91.37582,63.65915700000011],[-91.40666,63.676102],[-91.329453,63.67777],[-91.52917,63.729988],[-91.59555099999989,63.71138],[-92.13612,63.7455440000001],[-92.48277,63.81193500000012],[-92.39555,63.736938],[-92.25111,63.740547],[-92.101669,63.696938],[-92.20418,63.638046],[-92.489716,63.567215],[-92.480835,63.527214],[-92.28,63.55609900000014],[-92.16528,63.62443500000012],[-91.76334,63.71333],[-91.61749,63.64888000000013],[-91.60083,63.580551],[-90.94554,63.440269000000114],[-90.85472,63.4086],[-90.975006,63.419441],[-90.94221,63.393051],[-90.741943,63.360825],[-90.62749,63.059433],[-90.785004,62.93804],[-91.04805,62.942215],[-91.182495,62.90582300000011],[-91.213333,62.854164],[-91.35638,62.788605],[-91.99028,62.846939],[-92.0875089999999,62.818886],[-92.42084,62.831383],[-92.455841,62.79583],[-92.33362,62.709991000000116],[-92.178329,62.65638],[-91.948883,62.6519320000001],[-91.882767,62.624161],[-91.88501,62.599159],[-91.94804,62.53138],[-92.05333,62.526657],[-92.15306,62.59804500000013],[-92.26611,62.595268],[-92.325562,62.540833],[-92.539169,62.532494],[-92.60611,62.464996],[-92.71001,62.46583],[-92.714722,62.34388],[-92.58501,62.302216],[-92.604,62.23632400000014],[-92.470016,62.146614],[-92.60388,62.15638],[-92.639938,62.21777],[-92.747498,62.289993],[-93.122223,62.334991000000116],[-92.76472,62.219437],[-92.79584,62.172768],[-92.954453,62.192764],[-93.11,62.15665400000012],[-93.12693799999988,62.132492],[-93.08139,62.104439],[-93.01916,62.126099],[-92.93138,62.104164],[-93.140839,62.00972000000012],[-93.32529,62.051384],[-93.41139,62.03138],[-93.22223,61.9575],[-93.28195199999988,61.89138],[-93.616104,61.93999],[-93.61722,61.86193800000012],[-93.23778,61.777214],[-93.255569,61.74249300000014],[-93.85666,61.549164000000125],[-93.984726,61.456100000000106],[-93.968613,61.39666],[-93.86806,61.38916],[-93.819168,61.347214],[-93.940552,61.294998],[-94.22694,60.942764],[-94.34917,60.8586],[-94.50944,60.544159],[-94.673325,60.52249],[-94.615,60.37527],[-94.7075,60.0836030000001],[-94.7664,60.061378000000104],[-94.82167,59.95916000000011],[-94.819168,59.636383],[-94.788605,59.515274],[-94.680557,59.357216],[-94.775009,59.293327],[-94.789719,59.092216],[-94.676392,58.934433],[-94.47778,58.806656],[-94.43721,58.723045],[-94.343613,58.715546],[-94.228882,58.784996],[-94.28917,58.427773000000116],[-94.363327,58.21888],[-94.22861,58.396103],[-94.24527,58.59166],[-94.14389,58.76361],[-93.709732,58.78583],[-93.47555,58.732491],[-93.19638,58.758331],[-93.15222,58.73777],[-93.095276,58.467209],[-92.81166099999989,58.071663],[-92.75362,57.85083],[-92.45084,57.44249000000013],[-92.418884,57.337494],[-92.441101,57.23054500000012],[-92.5764,57.05693800000011],[-92.71584,56.94748700000013],[-92.876099,56.907494],[-92.691101,56.933601],[-92.443054,57.04472],[-92.21222,57.058044],[-92.4664,56.932495000000124],[-92.15527,57.03666],[-90.992767,57.261383],[-90.45111,57.193878],[-89.970276,57.004166],[-88.815002,56.82444],[-88.65472,56.69638],[-88.365829,56.561661],[-87.97555,56.43749],[-87.72389,56.20388],[-87.702789,56.15193],[-87.54861,56.04999500000014],[-87.35194399999989,55.99276700000013],[-87.35527,55.962769],[-86.97945,55.93166],[-86.47778,55.808884],[-86.277222,55.72887],[-85.731674,55.63694],[-85.55666,55.55027],[-85.499435,55.472214],[-85.39334,55.40888],[-85.128876,55.346382],[-85.121933,55.303322],[-85.21529,55.2686],[-85.398056,55.10083],[-85.38362,55.067497],[-85.423889,54.99055],[-85.194153,55.24416],[-85.00195,55.29666],[-84.59917,55.241661],[-84.32278,55.28999],[-84.09222,55.27166000000011],[-83.89751,55.3169400000001],[-83.654396,55.235493],[-83.57028,55.18804200000011],[-83.5916749999999,55.154434],[-83.561935,55.13082],[-83.55666,55.179436],[-83.58806,55.23333],[-83.706116,55.27999],[-83.17971799999987,55.19721],[-82.964722,55.23360400000013],[-82.874435,55.154434],[-82.50835,55.15277100000014],[-82.33556,55.071014],[-82.30804,55.121933000000126],[-82.35556,55.162491],[-82.30777,55.14888],[-82.24583,55.10277600000012],[-82.287216,55.030273000000136],[-82.221115,54.787498],[-82.441101,54.361664],[-82.434158,54.209435],[-82.24388,54.06805400000013],[-82.13194,53.817772],[-82.13667,53.74916100000013],[-82.21666,53.60388200000011],[-82.11389,53.286659],[-82.26945,53.163879],[-82.29666,53.0186],[-82.25751,52.93277],[-82.101669,52.87999],[-81.71916,52.53833],[-81.54999,52.441101],[-81.561386,52.316383],[-81.85083,52.244995000000124],[-81.88362,52.187492000000134],[-81.75835,52.239433],[-81.47888,52.225822],[-81.35278,52.10110500000013],[-80.988327,52.008049],[-80.89999,51.895271],[-80.69861,51.79472],[-80.58917,51.699715],[-80.515015,51.524437],[-80.43638599999986,51.464157000000114],[-80.426392,51.358887],[-80.6525,51.27833],[-81.015015,51.028328],[-80.92805,51.04583],[-80.850281,51.12249],[-80.69444,51.156097],[-80.530563,51.28361],[-80.40028399999989,51.337212],[-80.12027,51.296387],[-79.741104,51.12360400000011],[-79.6851,51.045361],[-79.438599,50.87221],[-79.33223,50.723877],[-79.33223,50.775826],[-79.42084,50.879715],[-79.537354,50.983765],[-79.67805,51.054710000000114],[-79.749435,51.16833],[-79.682495,51.292496],[-79.66861,51.398605],[-79.54710399999988,51.46012900000011],[-79.47417,51.57916],[-79.32223,51.662766],[-79.23611,51.63082],[-79.28528,51.562492000000134],[-79.26723,51.52166],[-79.12748699999986,51.538048],[-79.01222,51.464996],[-78.96333,51.353325],[-78.951401,51.215546],[-78.85333,51.165543],[-78.920273,51.24971800000014],[-78.88834,51.39666000000011],[-78.779175,51.47499],[-78.82611,51.522491],[-78.791672,51.60388],[-78.944153,51.670547],[-79.035553,51.770271],[-78.84639,51.8324970000001],[-78.83444,51.85777],[-78.89416,51.938324],[-78.747772,51.97332],[-78.57945,52.111382000000106],[-78.50111,52.255829],[-78.524445,52.311104000000114],[-78.50696,52.460548],[-78.577225,52.53666],[-78.76334,52.564438],[-78.69194,52.5961],[-78.79695,52.77388],[-78.72472,52.78555300000011],[-78.738327,52.872215],[-78.79445,52.86138],[-78.880829,52.896942],[-78.86472,52.963608],[-78.915833,53],[-78.92305,53.068886],[-78.895844,53.265274],[-78.949722,53.399994],[-79.06332,53.43943],[-79.110275,53.502495000000124],[-79.035553,53.532768],[-79.012787,53.5311],[-79.041382,53.505554000000124],[-79.000679,53.496609],[-78.915833,53.560547],[-79.00334,53.641663],[-79.1514,53.704994],[-79.046951,53.835548],[-78.9014,53.81527],[-79.10611,53.905548000000124],[-79.07250999999985,53.999161],[-78.96028,54.001389],[-79.11945,54.07861],[-79.048889,54.183327],[-79.20584,54.154991],[-79.345276,54.199432],[-79.505,54.42582700000014],[-79.48805,54.458603],[-79.52139,54.587212000000136],[-79.76445,54.65221400000013],[-79.46362,54.753609],[-78.976669,54.843048000000124],[-78.838608,54.914436],[-78.37389,55.030273000000136],[-77.74861,55.300827],[-77.214722,55.59527],[-76.811386,55.9711],[-76.68195,56.03388200000012],[-76.53833,56.297775000000115],[-76.51889,56.4060970000001],[-76.50557,56.803047000000106],[-76.555832,57.034996],[-76.52972399999987,57.105827],[-76.65306,57.401382],[-76.92305,57.78611],[-77.14723,58.02277],[-77.44444,58.152489],[-77.46722,58.203323000000125],[-78.012512,58.378601],[-78.39723,58.62082700000013],[-78.4261,58.606102],[-78.347778,58.536659],[-78.5739,58.630547],[-78.57001,58.6730500000001],[-78.46722,58.70166000000011],[-78.570557,58.96138000000013],[-78.36166,58.958603],[-78.363892,58.91249],[-78.338333,58.912766],[-78.08667,59.156654],[-78.09277,59.215],[-77.82889,59.281105],[-77.67722,59.399994000000106],[-77.787216,59.42666],[-77.91028,59.405548],[-77.86749,59.5],[-77.72139,59.539719000000105],[-77.724716,59.59388],[-77.801102,59.67527],[-77.77389,59.709717],[-77.539886,59.65338100000014],[-77.45418,59.579163],[-77.313889,59.56499500000013],[-77.441666,59.62472],[-77.542496,59.74749],[-77.29360999999987,59.79361000000011],[-77.36361699999986,59.890831],[-77.42749,59.91471],[-77.206955,60.04277],[-76.84805,60.099159],[-76.758896,60.15915700000011],[-76.9244379999999,60.111664],[-77.2,60.150826],[-77.232498,60.05387900000011],[-77.31583,60.030548],[-77.59222,60.064156],[-77.60028,60.10860400000013],[-77.49695,60.156097],[-77.470276,60.21333],[-77.63972,60.362213],[-77.74776,60.40813400000013],[-77.5675,60.529716],[-77.41333,60.544159],[-77.549438,60.571381],[-77.670273,60.549721],[-77.83389,60.63943],[-77.51167,60.83638],[-77.85638,60.764442],[-77.920547,60.79138200000012],[-77.89639299999986,60.82804900000013],[-78.192764,60.790833],[-78.159439,60.86721],[-77.846664,61.05249],[-77.701675,61.21749100000011],[-77.76112,61.410271],[-77.678879,61.4611],[-77.542496,61.47943],[-77.613892,61.504166],[-77.59611,61.555824000000136],[-77.47472,61.541664],[-77.58917,61.604439],[-77.71055599999988,61.605827],[-77.816666,61.68499],[-77.99249,61.71471400000013],[-78.08139,61.951103],[-78.14139,62.020546],[-78.155838,62.278328],[-78.02389,62.393326],[-77.71139,62.468048000000124],[-77.508347,62.561661],[-77.354996,62.5580440000001],[-76.756958,62.506943],[-75.709732,62.296387],[-75.71921,62.242493],[-75.890839,62.156937],[-75.57917799999989,62.242218],[-75.478882,62.298607],[-75.321945,62.311104],[-74.898056,62.240273],[-74.693054,62.127769],[-74.57167,62.1030500000001],[-74.75973,62.20638300000013],[-74.700287,62.250832],[-74.410004,62.25138900000013],[-73.981384,62.377769],[-73.838058,62.457497],[-73.67888,62.479988],[-73.502792,62.386658],[-73.21139,62.312767],[-73.19193999999987,62.25361],[-72.899445,62.138329],[-72.626663,62.115547],[-72.59611499999988,62.049164],[-72.619888,61.97088],[-72.74861,61.856384000000105],[-72.59611499999988,61.80555],[-72.628876,61.873047],[-72.58723,61.924377],[-72.235001,61.872215],[-72.010056,61.67527],[-72.087784,61.598877],[-72.23666,61.619438],[-72.30333,61.567215],[-71.98029,61.599998],[-71.93361,61.663605000000125],[-71.95605,61.69888300000014],[-71.928879,61.705826000000116],[-71.57501,61.608604],[-71.54943799999988,61.558884],[-71.75111,61.538048],[-71.789444,61.52193],[-71.74695,61.46583],[-71.88751,61.428047],[-71.68472,61.40499],[-71.671936,61.33055100000013],[-71.59889,61.254166],[-71.39,61.137772],[-71.0114,61.12166],[-70.55305,61.024994],[-70.535278,61.059433],[-70.41362,61.086655],[-70.14611799999989,61.084717],[-70.10722,61.06443800000011],[-70.08805799999988,60.89777400000014],[-69.92749,60.80777],[-69.85055,60.841934],[-69.89473,60.85555],[-69.75696,60.918884000000105],[-69.74055,60.88138],[-69.658615,60.87693800000011],[-69.64389,60.90332],[-69.68971,60.961662],[-69.65666,61.053604],[-69.59999,61.08194000000014],[-69.51445,61.06944],[-69.368057,60.903046],[-69.371933,60.804436],[-69.71611,60.68277000000011],[-69.65695,60.574715],[-69.82611,60.525551],[-69.748886,60.461662],[-69.721664,60.368881],[-69.764725,60.307495],[-69.606384,60.232765],[-69.636978,60.179047],[-69.59416,60.180824000000136],[-69.62471,60.06749700000012],[-69.89223,59.999718],[-70.534729,59.991936],[-70.94583,60.06305],[-70.56696,59.968597],[-70.22722,59.98666],[-70.061386,59.944992],[-69.726944,59.963608],[-69.60055499999987,59.833054],[-69.610001,59.728600000000135],[-69.540833,59.671104],[-69.605,59.58833],[-69.69804,59.55304700000011],[-69.76112,59.484161],[-69.697495,59.480545],[-69.63138,59.37499200000013],[-69.758347,59.32027],[-69.631104,59.298882],[-69.412506,59.355],[-69.24972,59.32361],[-69.23473,59.233879],[-69.373886,59.18943],[-69.439438,59.22443],[-69.53056,59.182213],[-69.527786,59.10666],[-69.463058,59.12943300000012],[-69.34416,59.091103],[-69.43195,59.025269],[-69.49333,59.037498],[-69.45418,58.89222],[-69.5475009999999,58.808044],[-69.67084,58.79222],[-69.71611,58.86472],[-69.672226,58.89138000000014],[-69.67166,58.93055],[-69.86916,59.053047],[-69.815826,58.823883],[-70.15361,58.77749],[-69.931107,58.733047],[-69.81889,58.5886],[-69.60805,58.75471],[-69.279175,58.888046000000145],[-68.756958,58.91249],[-68.60167,58.88582600000012],[-68.36055,58.78194],[-68.34584,58.626938],[-68.20306,58.441658],[-68.32251,58.226936],[-68.34416,58.127487],[-68.50362,58.03138],[-68.874161,57.969154],[-69.13501,57.896942],[-69.36905,57.765251],[-68.96528599999988,57.933876],[-68.404175,58.039719],[-68.30499,58.113884],[-68.301102,58.19804],[-68.185822,58.36055],[-68.171387,58.48999],[-68.00334,58.576385],[-67.89389,58.496658],[-67.923325,58.403046],[-67.857498,58.32027],[-68.09584,58.1386],[-68.12833,58.073608],[-68.00667,58.131935],[-67.801392,58.296661],[-67.83057,58.331383],[-67.8133239999999,58.4161],[-67.783066,58.468048],[-67.72389,58.458885],[-67.667496,58.42749],[-67.737213,58.31554],[-67.64278,58.248604],[-67.728607,57.976654],[-67.71389799999986,57.92305],[-67.65944,58.110275],[-67.578339,58.215271],[-67.16861,58.378044],[-67.090561,58.350548],[-66.944153,58.50194],[-66.878052,58.4686],[-66.62971,58.503609],[-66.65167,58.54277000000013],[-66.551941,58.71138],[-66.469727,58.816383],[-66.38861,58.85054800000012],[-66.07223,58.650826],[-65.935822,58.609718],[-66.089447,58.365273],[-66.05888,58.32027],[-66.04167,58.36805],[-65.965012,58.39194],[-65.92027,58.44582400000013],[-65.98195,58.480545],[-65.87693799999988,58.58194],[-65.87999,58.627213],[-66.103882,58.7736],[-66.03722,58.851662],[-65.84584,58.82666],[-65.78944,58.861938],[-65.988602,58.903603],[-65.885559,59.001938],[-65.7775,59.029991],[-65.660278,59.044159],[-65.5,58.98333000000013],[-65.572891,59.044106000000106],[-65.510284,59.06694],[-65.3175,59.04138200000011],[-65.35417,59.06749700000012],[-65.651947,59.0791630000001],[-65.71806,59.153046],[-65.74306,59.265831],[-65.676102,59.261108],[-65.587509,59.20249200000011],[-65.61471599999987,59.243607],[-65.58168,59.377213],[-65.35722,59.277214],[-65.43777,59.393883],[-65.561386,59.48610700000012],[-65.26056,59.46638500000011],[-64.983322,59.37638],[-65.22084,59.48832700000014],[-65.41167,59.50944],[-65.527786,59.71693],[-65.33389,59.84721400000012],[-65.152786,59.779991],[-64.98389,59.76277],[-65.13277,59.79694400000011],[-65.23195,59.88582600000012],[-65.14334,59.94999700000011],[-65.110001,60.04305],[-65.02972,60.077217],[-64.92111,60.194992],[-64.83417,60.323051],[-64.854446,60.361107],[-64.6416779999999,60.344711],[-64.43109,60.25811],[-64.61305,60.28943600000014],[-64.72583,60.258331000000105],[-64.759445,60.231102000000135],[-64.63417,60.268883],[-64.53639,60.2586060000001],[-64.42168,60.215656],[-64.376938,60.160545],[-64.476944,60.07972],[-64.655,60.053604],[-64.8275,59.986382],[-64.49083,60.059433],[-64.373886,60.123604000000114],[-64.39473,59.941658],[-64.499435,59.891663],[-64.363327,59.922493],[-64.32045,60.02727],[-64.26501,60.0480500000001],[-64.166946,60.024994],[-64.177216,59.78555],[-64.266663,59.77916],[-64.05777,59.62526700000012],[-64.11694,59.517494],[-64.040833,59.553604],[-63.997223,59.62665600000014],[-63.876106,59.615829],[-63.7225,59.513885],[-63.785278,59.426102],[-64.000565,59.414436],[-64.06221,59.382492],[-63.7514,59.375824],[-63.75645,59.30838],[-63.813889,59.240829],[-63.649994,59.362495],[-63.54306,59.348045],[-63.393333,59.264999],[-63.356392,59.204994],[-63.42556,59.126381],[-63.58,59.06749700000012],[-63.93444,59.081108],[-64.043884,59.01527],[-63.73444,59.015],[-63.37277,59.1011],[-63.13417,59.058327],[-63.175278,59.026939],[-63.33611,59.024994],[-63.17306,58.979713],[-63.16055,58.926384],[-63.325,58.855827],[-63.03333,58.873878000000104],[-62.91833,58.817497],[-62.8475,58.69054],[-62.84778,58.65305],[-62.915833,58.60027],[-63.33410999999989,58.45577],[-63.589439,58.30082700000014],[-63.26472,58.46305100000012],[-63.037506,58.45305],[-62.62055,58.50499700000011],[-62.557503,58.482491],[-62.61972,58.376938],[-62.62305,58.304436],[-62.828056,58.25222],[-62.654442,58.270271],[-62.59277,58.248604],[-62.58444,58.214439],[-62.661385,58.17305],[-62.965004,58.153877],[-63.21167,58.062492],[-63.14084,58.048882],[-63.16778,58.021103],[-63.340836,57.979988],[-63.12888,57.997772],[-63.08916499999987,58.06221],[-62.94028,58.12582400000014],[-62.832222,58.14527],[-62.646111,58.11916],[-62.45278,58.17527],[-62.52917,58.102776],[-62.51445,58.057495],[-62.48277,58.100273],[-62.375,58.11277],[-62.30695,58.0311],[-62.528336,58.00555400000013],[-62.67277,57.929993],[-62.537780999999875,57.9711],[-62.20028,57.935822],[-62.127495,57.968048000000124],[-62.059723,57.897774],[-62.13805,57.835823],[-62.12527,57.806938],[-61.996666,57.772217],[-61.88444,57.626938],[-62.30861,57.49055],[-62.54528,57.501106],[-62.36528,57.419716],[-62.16722,57.464439],[-61.891388,57.411934],[-61.80305,57.358887],[-61.863892,57.28555300000011],[-62.015839,57.24305],[-61.8525,57.165268],[-61.45889,57.154709],[-61.35834,57.087494],[-61.37083,56.97860000000014],[-61.53556,56.9611],[-61.645,56.87832600000013],[-61.661385,56.809433],[-61.90639,56.79527300000012],[-61.89,56.698044],[-61.824997,56.746826000000105],[-61.7025,56.73082],[-61.73444,56.697212],[-61.825,56.706657],[-61.64973,56.641663],[-61.6725,56.61999],[-61.911667,56.642769],[-62.505,56.78889],[-62.049445999999875,56.8325],[-62.50834,56.849998000000134],[-62.57389099999989,56.79277000000013],[-62.00528,56.61693600000012],[-62.24111199999987,56.623322],[-62.22472,56.609161],[-61.729439,56.57444],[-61.65833,56.537498],[-61.662216,56.50610400000011],[-61.754723,56.484993],[-62.04695,56.504715],[-62.08527,56.48305],[-61.946945,56.4711],[-62.143059,56.449158000000125],[-61.79806,56.395271],[-61.661385,56.270271],[-62.08,56.29361000000011],[-62.01167,56.235825],[-61.575,56.21693],[-61.56028,56.194435],[-61.35084,56.222214],[-61.330284,56.176659],[-61.39722399999988,56.155823],[-61.452225,56.05694],[-61.23750299999989,56.04277],[-61.50362,56.00694],[-61.415001,55.960274],[-61.11777,55.966103],[-61.07667,55.906937],[-61.20167,55.884163000000115],[-61.10445,55.845543000000134],[-60.94611,55.86582900000013],[-60.72972,55.82944],[-60.742226,55.79055],[-60.87944,55.732765],[-60.74695,55.731659],[-60.647224,55.822769],[-60.60194,55.814713],[-60.6297229999999,55.638329],[-60.66806,55.5894320000001],[-60.60222599999985,55.626656],[-60.503059,55.80305],[-60.328888,55.78166],[-60.38055,55.691933],[-60.493889,55.658043000000134],[-60.53111,55.597214],[-60.481384,55.627769000000114],[-60.316391,55.573883],[-60.32167,55.509995],[-60.42632,55.448204],[-60.47833,55.347488],[-60.31945,55.491379],[-60.21389,55.489433],[-60.19555,55.431381],[-60.35472,55.394997],[-60.53805,55.200546000000145],[-60.34805,55.250549],[-60.512222,55.12054],[-60.67055,55.044716],[-60.6833269999999,54.994995000000124],[-60.25917,55.24416],[-60.176109,55.270828],[-60.073776,55.24794],[-60.12361,55.15638000000012],[-60.28834,55.05332],[-60.293892,55.019440000000145],[-60.099442,55.136658],[-60.021889,55.21855],[-59.91695,55.233879000000115],[-59.86389,55.296104],[-59.779167,55.32972],[-59.711945,55.269714],[-59.7325,55.19721],[-59.86389,55.154160000000104],[-59.96278,55.161102],[-59.963615,55.110275000000115],[-59.615837,55.136383],[-59.531387,55.18138],[-59.42778,55.135826],[-59.71666,54.955826],[-59.93861,54.74638],[-59.791115,54.785553],[-59.75472299999989,54.897491000000116],[-59.41111,55.0563810000001],[-59.29389,55.16971600000011],[-59.16138,55.23693800000012],[-59.12444299999987,55.1861],[-59.38861,54.97665400000011],[-59.25084,55.035828],[-59.23666,55.07749200000011],[-59.023613,55.156654],[-58.95611,55.13027],[-59.00194,55.017769],[-58.894164999999866,54.95277],[-59.015556,54.89222],[-58.904167,54.844711],[-58.56083,54.7761],[-58.196663,54.79527],[-58.184166,54.75166],[-58.145554,54.739716],[-57.855,54.737495],[-57.69361,54.63472],[-57.45055,54.64999],[-57.3475,54.579437],[-57.39695,54.49582700000013],[-57.70222,54.473045],[-57.421112,54.455826],[-57.62944,54.38166],[-58.14639,54.365273],[-58.26195,54.311104],[-58.09583,54.325829],[-58.23389,54.254166],[-58.453888,54.237213],[-58.692772,54.151657],[-58.915276,54.1386030000001],[-59.376106,54.04694],[-59.575562,54.04943800000012],[-59.509727,53.99554400000011],[-59.265839,54.023048],[-58.70306,54.12416100000013],[-58.37194,54.228043],[-58.6325,54.03527100000014],[-59.03861,54.026939],[-58.91945,54.01082600000012],[-59.00834,53.95527],[-59.20139,53.92749],[-59.46333,53.830551],[-59.82584,53.842766],[-60.082779,53.762497],[-60.11999,53.611382],[-60.06444,53.56027200000011],[-60.133888,53.528328],[-60.390556,53.665543],[-60.85695,53.79277],[-60.88028,53.713051],[-60.53722,53.678329],[-60.10361,53.500549],[-60.106392,53.457497],[-60.41333,53.357773],[-60.391113,53.33111],[-60.188606,53.350548],[-60.19083,53.32194],[-60.418335,53.269440000000145],[-60.13361,53.283607000000124],[-59.841942,53.476379],[-59.785,53.47721],[-59.901108,53.519714],[-59.87556,53.534996],[-59.60583,53.529716],[-59.32973,53.653877],[-59.07973,53.68055],[-59.01083,53.744438000000116],[-59.06528,53.791107],[-59.04278,53.814995],[-58.87028,53.90470900000014],[-58.55028,54.009163],[-58.193775,54.075939],[-57.78639,54.07166],[-58.0765,54.124489],[-58.24517,54.09916],[-58.415276,54.13526900000011],[-58.35556,54.20638300000013],[-58.03083,54.23555],[-57.856392,54.196098],[-57.46833,54.19388],[-57.38417,54.150543],[-57.22111,53.91833],[-57.076393,53.823051],[-57.15139,53.73582],[-57.549995,53.591934],[-57.44472,53.618599],[-57.316666,53.57972],[-57.303329,53.50944],[-57.336945,53.440269000000114],[-57.28333,53.4386],[-57.28528,53.477486],[-57.01472,53.71138000000013],[-56.66083,53.720543000000134],[-56.483612,53.782494],[-56.431671,53.764442],[-56.41528,53.720543000000134],[-56.680283,53.67276800000013],[-56.32028,53.585266000000104],[-56.031387,53.57638500000013],[-55.97888,53.542221],[-56.00878,53.503666],[-56.063332,53.540833],[-56.266113,53.54999500000014],[-55.96555,53.409157],[-56.038338,53.36749300000014],[-55.912216,53.3949970000001],[-55.80805,53.340546],[-55.80746,53.284966000000104],[-55.745834,53.24943500000011],[-55.747498,53.14361],[-55.926666,53.02332300000011],[-56.166946,53.029434],[-55.94944,52.994995],[-55.83417,52.921936],[-55.80805,52.82638500000013],[-55.97361,52.810547],[-56.060829,52.766106],[-55.960556,52.679161000000136],[-55.779167,52.682495],[-55.739998,52.63943],[-55.792778,52.601662],[-56.108612,52.655266],[-55.97083,52.615547],[-56.25306,52.543884],[-56.49687,52.594147],[-56.26222,52.531662],[-55.82973,52.5124970000001],[-55.743057,52.490829],[-55.7664,52.447769],[-55.64861,52.43971],[-55.64778,52.354164],[-55.782501,52.33416000000011],[-56.196945,52.439987],[-55.707222,52.248329000000126],[-55.67722,52.20833],[-55.686386,52.109436],[-55.89667,51.950829],[-56.209724,51.789719],[-56.468887,51.70943],[-56.94972,51.424713],[-57.10424,51.412674],[-57.24722,51.504166],[-57.60223,51.428047],[-57.68583,51.430824],[-57.68944,51.466385],[-57.74805,51.47221400000012],[-58.02138,51.308884],[-58.21139,51.27166],[-58.407776,51.295547],[-58.62805,51.275551],[-58.68,51.234161],[-58.59222,51.184715],[-58.618607,51.153046],[-59.00333,51.015549],[-58.9525,50.99249300000013],[-58.94666,50.833878],[-59.015282,50.748604000000114],[-59.06834,50.75916300000011],[-59.09472,50.815269],[-59.118889,50.80360400000012],[-59.18639,50.742218],[-59.45444,50.621933000000126],[-59.585274,50.47804300000013],[-59.810555,50.437492000000134],[-59.88167,50.371658],[-59.85389,50.3261],[-59.817223,50.332771],[-60.005,50.248878000000104],[-60.11445,50.23305],[-60.18444,50.27971600000012],[-60.29861,50.243324000000136],[-60.49167,50.25055],[-60.583611,50.208328],[-61.28944,50.199158000000125],[-61.72083,50.091934],[-61.74828,50.10994],[-61.573891,50.181664],[-61.7575,50.14527],[-61.864723,50.2286],[-62.2025,50.23443600000013],[-62.3975,50.294441],[-62.446106,50.25750000000011],[-63.1125,50.29138200000011],[-63.23666,50.23443600000013],[-63.80333,50.311661],[-64.16222,50.26221],[-64.44611,50.31916],[-64.628052,50.279160000000104],[-64.89999,50.27082800000011],[-65.275009,50.308044],[-65.829453,50.253326],[-65.9525,50.288887],[-66.08972199999988,50.191376],[-66.314163,50.209717],[-66.42305,50.26777],[-66.469727,50.26194],[-66.72333,50.078331],[-66.95862,49.974709],[-66.96333,49.914711],[-67.01640299999985,49.85471],[-67.14667,49.812492000000134],[-67.238892,49.590546],[-67.23389,49.470268],[-67.375,49.327217],[-68.12721,49.26944],[-68.194992,49.10833],[-68.36945,49.069443],[-68.44249,49.095543],[-68.590561,49.054161],[-68.69638,48.939987],[-69.060822,48.767494],[-69.12389,48.614716],[-69.23639,48.581108],[-69.29277,48.457771],[-69.43777,48.303047],[-69.683884,48.137772],[-69.81027,48.155823],[-69.73029,48.10943600000013],[-69.839447,47.90721],[-69.925827,47.773048],[-70.19028,47.599159],[-70.22555,47.496384],[-70.46194,47.429993],[-70.721664,47.1013870000001],[-70.97362,47.003326],[-71.197495,46.852493],[-71.299164,46.742218],[-71.14999,46.842491],[-70.772232,46.915825],[-70.486389,47.03360700000013],[-70.04889,47.38611],[-69.9675,47.505829],[-69.659439,47.744713000000104],[-69.450562,47.97916],[-69.0164,48.254166],[-68.541382,48.451385],[-68.453613,48.532494],[-68.354446,48.551384],[-68.21112,48.636658000000125],[-67.531387,48.85916],[-66.306107,49.18693500000012],[-65.49695,49.26166],[-64.80583,49.183327],[-64.588058,49.112213],[-64.37639,48.997772],[-64.22166,48.898331],[-64.1525,48.75999500000012],[-64.54889,48.878326],[-64.374161,48.787773],[-64.160004,48.62276500000013],[-64.265289,48.610825],[-64.27917,48.554161000000136],[-64.21916,48.52833],[-64.32250999999985,48.4372100000001],[-64.686386,48.33832600000011],[-64.77139,48.196381],[-64.931671,48.171661],[-65.153061,48.052216],[-65.32695,48.00222000000013],[-65.4639,48.002777],[-65.504181,48.048882],[-65.7644499999999,48.109993],[-65.904175,48.205826],[-66.12971,48.10721600000011],[-66.47084,48.119438],[-66.67361,48.0261],[-66.8425,47.992218],[-66.75,47.979988000000105],[-66.35666,48.073326],[-66.25917,47.99943500000012],[-65.79361,47.890831],[-65.718613,47.818886],[-65.671936,47.645828],[-65.63473,47.620827],[-65.202789,47.818604],[-65.020844,47.84499],[-64.797226,47.8063810000001],[-64.670273,47.726936],[-64.85973,47.57666000000011],[-64.910004,47.35305],[-65.138062,47.192215],[-65.36999,47.086655000000114],[-65.21888699999988,47.053604],[-65.01723,47.091377],[-64.79861,47.079994],[-64.80333,46.987495],[-64.89612,46.908882],[-64.90361,46.84083],[-64.81807,46.721657],[-64.71333,46.68415800000014],[-64.661942,46.468048000000124],[-64.504181,46.240273],[-64.237503,46.22916],[-63.77639,46.121101],[-63.91945,46.053047000000106],[-64.068069,46.059433],[-64.093887,46.02166],[-63.864166,45.961105],[-63.66416,45.81527],[-63.60028,45.86999],[-63.47444,45.876938],[-63.40388,45.85443900000013],[-63.43444,45.82083100000011],[-63.5236129999999,45.80999],[-63.229439,45.804993],[-63.379997,45.766106],[-63.35445,45.74249300000014],[-63.18972,45.73443600000013],[-63.082779,45.80332],[-62.67778,45.76416],[-62.46194,45.612495],[-61.917503,45.885551],[-61.881386,45.686653],[-61.79223,45.63916000000011],[-61.61806,45.61055],[-61.565,45.673882000000106],[-61.471382,45.682495],[-61.26,45.510277],[-61.23236,45.46119],[-61.462219,45.384438],[-61.46389,45.346939000000134],[-61.04723,45.335548],[-60.96611,45.31832900000012],[-60.970276,45.269714],[-61.123329,45.2086],[-61.31306,45.24277],[-61.384445,45.159157],[-61.63805,45.12027],[-62.02666,44.98472],[-62.476386999999875,44.89554600000014],[-62.546112,44.821663],[-62.801109,44.778603],[-62.809998,44.734718],[-62.85111,44.71832300000011],[-63.0625,44.771378],[-63.0125,44.713326],[-63.04834,44.67610200000013],[-63.10445,44.74665800000014],[-63.142776,44.688599000000124],[-63.43999,44.590828],[-63.65833,44.715],[-63.635559,44.668884000000105],[-63.583611,44.65694],[-63.520279,44.50777],[-63.63111,44.435822],[-63.932503,44.513329],[-63.93861,44.616104],[-63.908607,44.678047000000106],[-64.04527,44.63582600000012],[-64.06555,44.595268],[-64.01001,44.50777],[-64.083069,44.46666],[-64.12166,44.48526800000013],[-64.12749,44.552773000000116],[-64.20084,44.57638],[-64.305267,44.53333],[-64.337509,44.41193],[-64.346115,44.357216],[-64.31111,44.31916],[-64.301102,44.34193],[-64.26056,44.324165],[-64.25806,44.26998900000012],[-64.355835,44.27332300000011],[-64.44472,44.190269],[-64.616394,44.13304900000014],[-64.666397,43.990273000000116],[-64.81807,43.946381],[-64.906387,43.80054],[-65.03056,43.704163],[-65.32583599999987,43.674995],[-65.37527499999987,43.575272],[-65.45334,43.55499300000013],[-65.48138,43.464439],[-65.56862,43.570274],[-65.61749,43.5236],[-65.72582999999985,43.502495],[-65.78332,43.571106],[-65.76972999999987,43.67916100000013],[-65.91221599999989,43.825272],[-65.94249,43.819443],[-65.975006,43.707214],[-66.02055,43.691101],[-66.04222,43.74805],[-66.121658,43.762215],[-66.16695,43.858604],[-66.149734,44.011108],[-66.204453,44.086655],[-66.118607,44.338043],[-65.84445199999988,44.578331],[-65.94305,44.577774],[-66.190552,44.383331],[-66.1911,44.423325],[-65.97166,44.591934],[-65.81673,44.65577],[-65.797897,44.613937],[-65.69028,44.614441],[-65.522507,44.73777],[-65.704117,44.694992],[-65.71777,44.721931],[-65.64696,44.76527],[-64.861938,45.139717],[-64.55055,45.216660000000104],[-64.39389,45.286942],[-64.48917,45.335266000000104],[-64.3275,45.303322],[-64.38027999999986,45.1311040000001],[-64.35973,45.09749],[-64.31139,45.14138],[-64.21028,45.103607],[-64.14696,45.044441],[-64.15639,44.978325],[-64.11417,45.046661],[-64.19888,45.12249],[-64.152786,45.192764],[-63.80583,45.30193300000013],[-63.47083299999985,45.321663000000115],[-63.360832,45.36082],[-63.75556,45.398048000000124],[-63.98805,45.384438],[-64.06973,45.410271],[-64.35777,45.381104],[-64.53,45.408043],[-64.93721,45.326942],[-64.91777,45.4086],[-64.83139,45.47916],[-64.568893,45.60416],[-64.275558,45.799995],[-64.27667,45.842766],[-64.36139,45.879158],[-64.357498,45.85110500000013],[-64.47833,45.750549],[-64.49222,45.81554],[-64.747498,46.090546],[-64.583069,45.826942000000145],[-64.77834,45.607216],[-64.904175,45.62776900000011],[-65.015015,45.548882],[-65.326675,45.457497],[-65.531952,45.342491],[-65.90361,45.205551],[-65.983322,45.21971100000013],[-66.09461,45.300659],[-66.08389,45.342766],[-66.00307,45.3949970000001],[-66.002502,45.461662],[-66.190277,45.339432],[-66.114,45.25877400000013],[-66.147232,45.192215],[-66.42778,45.084991],[-66.48889,45.149994],[-66.792496,45.05526700000012],[-66.777786,45.0961],[-66.96556,45.179436],[-67.027222,45.16805],[-67.04639,45.126938],[-67.261124,45.201103],[-67.34195,45.149994],[-67.46501199999987,45.281105],[-67.485275,45.494438],[-67.410828,45.529991],[-67.41251,45.58694],[-67.65666,45.63055],[-67.799164,45.7011],[-67.772507,45.9575],[-67.794998,47.069992],[-68.185822,47.332771],[-68.30666,47.36444],[-68.895279,47.189987],[-69.044998,47.264442],[-69.04861,47.43555],[-69.232498,47.471375],[-70.00917099999987,46.69804],[-70.05055,46.438599000000124],[-70.20029,46.33638],[-70.28778,46.20304900000013],[-70.3125,45.985825],[-70.23972,45.956657],[-70.255,45.913048],[-70.46666,45.711937],[-70.693054,45.571938],[-70.725281,45.499718],[-70.68944,45.458046],[-70.8786,45.2386],[-71.021118,45.32666],[-71.14,45.253052],[-71.31471,45.299438],[-71.424438,45.25],[-71.39584,45.20527],[-71.49306,45.07527],[-71.49416,45.020546],[-74.249161,44.992218],[-74.82889,45.019157],[-74.990829,44.98666],[-75.301666,44.846657],[-75.537216,44.691376],[-75.820557,44.47499],[-75.864166,44.40277100000014],[-76.05777,44.34499],[-76.434723,44.104713],[-76.80194,43.63361],[-78.72472,43.629433],[-79.184723,43.46554600000013],[-79.054169,43.262497],[-79.04584,43.14888000000013],[-79.08112,43.085548],[-79.02167,42.987213],[-78.918335,42.934715],[-78.935272,42.862495],[-78.98694,42.819992],[-80.09695,42.396385],[-81.249161,42.224991],[-82.425278,41.67555],[-82.69665,41.683876],[-83.07194,41.85972],[-83.16861,42.046104],[-83.08696,42.300545],[-82.808884,42.41332200000011],[-82.66528,42.54416],[-82.58639,42.558601000000124],[-82.52139,42.618881],[-82.41878,43.018639],[-82.13028,43.585266000000104],[-82.54306,45.35583],[-83.597778,45.827217],[-83.447769,46.01194],[-83.5775,46.10527],[-83.84611,46.124992000000134],[-83.95889,46.07166300000011],[-84.10583,46.247772],[-84.15834,46.39666],[-84.126389,46.531937],[-84.192764,46.546661],[-84.42833,46.503052],[-84.48639,46.45888500000012],[-84.565002,46.466385],[-84.77501,46.653046],[-84.85695,46.902214],[-88.36806,48.31221],[-88.69167,48.255554],[-89.35666,47.979713],[-89.760559,48.029991],[-89.903885,47.989159],[-89.993057,48.022766],[-90.065,48.10833],[-90.15639,48.12249],[-90.740829,48.090828],[-90.838608,48.184158],[-90.83029,48.225548],[-90.868607,48.23749500000014],[-91.1261,48.15499100000011],[-91.248886,48.079437],[-91.418335,48.041107],[-91.645142,48.09834300000011],[-91.73972,48.193321],[-91.956589,48.236633],[-92.05194,48.353882],[-92.25723,48.346939],[-92.30055,48.304993],[-92.28555,48.250549],[-92.35666,48.22860000000014],[-92.45528,48.394157],[-92.697769,48.485268],[-92.71529,48.541382],[-92.95306,48.623322],[-93.244995,48.640549],[-93.45666,48.594994],[-93.4541779999999,48.55971],[-93.48944,48.539719],[-93.77861,48.51638800000012],[-93.851944,48.626938],[-94.235275,48.653046],[-94.291107,48.7061],[-94.476395,48.693878],[-94.605835,48.72443],[-94.70666,48.79055000000011],[-94.7075,48.94193],[-94.798889,49.15916],[-94.818344,49.30999],[-94.93593,49.3603],[-95.15279,49.376656],[-95.15417,48.99943500000012],[-122.7603,48.99943500000012],[-122.86250299999989,49.022217],[-122.859444,49.077217],[-122.899986,49.08721],[-123.039169,49.04249600000014],[-123.03432,48.99943500000012],[-123.09375,48.99943500000012],[-123.1389,49.1072160000001],[-123.209732,49.12721],[-123.24889,49.273605],[-122.92361,49.28833],[-122.85278,49.436104],[-122.87639,49.455551],[-122.93138,49.328049000000135],[-123.236389,49.338882],[-123.25667,49.512772],[-123.159729,49.699158],[-123.241943,49.66054],[-123.27096,49.59322],[-123.49249,49.50972000000013],[-123.47667,49.419159],[-123.53555,49.381378],[-123.89612,49.470543],[-124.06807,49.633881],[-124.021118,49.726379],[-123.94055,49.742493],[-123.833069,49.62749],[-123.7764,49.50388],[-123.770279,49.588043],[-123.533623,49.68971],[-123.79666,49.638329],[-123.934998,49.768326],[-123.872772,49.87721],[-123.889183,49.92277],[-123.95889,49.962212],[-123.744453,50.08694],[-123.8214,50.15221],[-123.990547,50.2158280000001],[-123.80916,50.099998],[-123.99916,50.006386],[-123.97972,49.91666],[-123.91112,49.869713000000104],[-123.926392,49.825829],[-124.004181,49.81055],[-124.037781,49.922493000000145],[-124.090286,49.79583000000014],[-124.41362,49.76361],[-124.511948,49.796104],[-124.57195,49.874435],[-124.741943,49.958328],[-124.82973,50.061935],[-124.703339,49.995544],[-124.60139,50.238884],[-124.71501,50.327492],[-124.6519469999999,50.38916],[-124.434158,50.431664],[-124.347778,50.502495],[-124.71167,50.375549],[-124.815826,50.31221],[-125.078339,50.32249500000011],[-125.05666,50.476936],[-124.965286,50.501106],[-124.85973399999988,50.585823],[-124.878052,50.811378],[-124.78694,50.884438],[-124.805832,50.92083],[-124.861389,50.928879],[-124.944992,50.77527],[-124.90361,50.619987],[-125.10417199999988,50.496941],[-125.119453,50.43277],[-125.1875,50.412491],[-125.24611,50.462212000000136],[-125.33612,50.47971300000012],[-125.488327,50.45638300000013],[-125.54811,50.49205],[-125.532227,50.627213],[-125.4436,50.714157000000114],[-125.54723,50.66193],[-125.637222,50.44554],[-125.705841,50.427773000000116],[-125.84666,50.502777],[-125.968613,50.46888000000013],[-126.27501,50.5075],[-126.1856,50.566322],[-126.27472,50.63166],[-125.73833,50.682213000000104],[-125.622498,50.750000000000114],[-125.505569,50.933327],[-125.551666,51.042221],[-125.633904,51.096939],[-125.583328,50.974709],[-125.73111,50.73555],[-126.131004,50.678658],[-126.22223,50.691101],[-126.11166,50.753883],[-126.19888,50.855827],[-126.376099,50.85527],[-126.49333,50.816383],[-126.55972,50.84388000000013],[-126.5535959999999,50.88138],[-126.494453,50.9180530000001],[-126.22583,50.8986],[-126.17778,50.951385],[-126.245537,50.923325],[-126.426392,50.938599000000124],[-126.67778,50.86639],[-126.819168,50.91582],[-127.17999,50.92582700000014],[-126.965996,50.866936],[-127.03333,50.817772],[-127.398621,50.926384],[-127.53833,51.005554],[-127.495,51.0991590000001],[-127.35445,51.051659],[-127.24249,51.041382000000105],[-126.81689499999987,51.064716],[-126.691673,51.11055],[-126.6514,51.15332],[-126.66251,51.194992],[-126.7175,51.132767000000115],[-126.84655,51.093105],[-127.206673,51.05638],[-127.38861,51.068054],[-127.50985,51.117359000000135],[-127.66665599999988,51.095268],[-127.78999,51.165543],[-127.761948,51.249435],[-127.599731,51.28944],[-127.36472,51.2741620000001],[-127.1330569999999,51.325554],[-127.11583,51.391663],[-127.18805,51.32361],[-127.280563,51.30110200000013],[-127.395844,51.302216],[-127.462784,51.34166],[-127.77888,51.324715],[-127.778343,51.361107],[-127.551666,51.468323],[-127.48805,51.619438000000116],[-127.09584,51.66805],[-126.708054,51.641937],[-126.620003,51.679993],[-126.607773,51.72499],[-126.660278,51.792221],[-126.64,51.709991],[-126.69305,51.664711],[-127.05387899999987,51.697769],[-127.43222,51.668327],[-127.42749,51.73193400000014],[-127.359444,51.777214],[-127.3511,51.863609],[-127.57195299999988,51.706940000000145],[-127.58556399999986,51.677773],[-127.546387,51.62749],[-127.56111,51.53860500000013],[-127.63583,51.46054800000013],[-127.70639,51.45638300000013],[-127.76083,51.489716],[-127.712784,51.50444],[-127.878052,51.673882],[-127.88945,51.80777],[-127.86165599999985,51.90416],[-127.664436,51.95388],[-127.6514,52.051659],[-127.58029,52.129158],[-127.48056,52.1511],[-127.46251,52.112495],[-127.5844419999999,52.093605],[-127.613327,52.032494],[-127.420837,52.12027000000012],[-127.44972,52.18277],[-127.24527,52.248878000000104],[-127.17166,52.312492],[-127.005,52.303604],[-126.66945,51.983604],[-126.66972,52.041939],[-126.90056,52.20527],[-126.940826,52.303879],[-126.87361,52.35083],[-126.73666,52.378044],[-126.79277,52.395546],[-126.98138,52.335266],[-127.0825,52.33499100000011],[-127.157784,52.35249],[-127.228058,52.453049000000135],[-127.23666,52.511665],[-127.19695,52.54999500000013],[-126.98944,52.631935],[-126.924713,52.71471400000013],[-126.966949,52.828606],[-127.01778,52.845543],[-126.98111,52.717491],[-127.04738,52.643463],[-127.25723,52.54583000000014],[-127.26666299999988,52.464157000000114],[-127.46542,52.395477],[-127.618332,52.29193900000013],[-127.75029,52.28166],[-127.86916,52.211105],[-127.90527,52.278877],[-127.88167,52.5124970000001],[-127.92972,52.427547],[-127.905388,52.397884],[-127.956947,52.32444],[-128.012512,52.3411],[-128.05722,52.39471],[-128.05945,52.47027],[-127.89612,52.54222],[-127.87971,52.57972],[-128.09973,52.503052],[-128.28891,52.27332300000012],[-128.39388999999989,52.291382],[-128.2219239999999,52.465271],[-128.241943,52.55471],[-128.120544,52.757217],[-128.131653,52.876381],[-128.249725,52.801384],[-128.441101,52.822769],[-128.49554,52.8875],[-128.539734,53.13193],[-128.62555,53.202217],[-128.68527,53.18943],[-128.85889,53.283607000000124],[-128.88798,53.424965],[-128.97278,53.553047],[-128.795013,53.56860400000011],[-128.523621,53.39666],[-128.4295039999999,53.429825],[-128.13193,53.448875],[-127.95195,53.3261],[-127.94611399999985,53.25222],[-127.867767,53.23972],[-127.9226,53.273685],[-127.92593,53.33075],[-128.126923,53.481102],[-128.45187,53.503323],[-128.544571,53.478992],[-128.81305,53.61916],[-128.77057,53.79583],[-128.66067,53.84544],[-128.47137,53.832497],[-128.67903,53.907524],[-128.600555,54.03166],[-128.68527,54.000832000000116],[-128.931946,53.77471],[-129.1180419999999,53.714157],[-129.232483,53.62582400000013],[-129.23749,53.4336],[-129.2728,53.379158],[-129.62914999999987,53.587769],[-130.10138,53.946655000000135],[-130.09082,54.07166],[-130.04666,54.15332000000012],[-129.83194,54.21944],[-129.6141659999999,54.178917],[-129.470001,54.237213],[-129.8549799999999,54.238045],[-130.122772,54.154434],[-130.191681,54.193321],[-130.26114,54.34277],[-130.39139,54.330276],[-130.48111,54.36472],[-130.433624,54.49665800000014],[-130.440552,54.617493],[-130.41666,54.630272],[-130.05777,54.336105],[-129.95917,54.3161],[-130.043884,54.345825],[-130.374146,54.654991],[-130.32501,54.69221],[-130.171936,54.703606],[-130.0269469999999,54.623047],[-129.910278,54.60555],[-130.20166,54.726936],[-130.17389,54.846657],[-130.03195,54.965271000000136],[-129.622498,54.997772],[-129.91391,54.99638],[-129.99637,55.024162],[-129.64334,55.434158],[-129.523895,55.439987],[-129.4711,55.47276],[-129.70979,55.450657],[-129.786957,55.56666600000011],[-129.7803,55.359718],[-129.8175,55.28333],[-130.068329,54.996941],[-130.113617,54.99638],[-130.16,55.086105],[-129.94388,55.282211],[-130.103607,55.56666600000011],[-130.12192,55.7625],[-129.962219,55.91777],[-130.015076,55.90918],[-130.01474,56.025826],[-130.08859,56.11805],[-130.22916,56.090271000000136],[-130.36526,56.123878000000104],[-130.46194,56.23526800000013],[-130.6272,56.258606],[-130.774445,56.366104],[-131.05499,56.398048],[-131.55777,56.602219000000105],[-131.824158,56.596939],[-131.86139,56.799721],[-132.103058,56.866661],[-132.027496,57.036385],[-132.336945,57.088326],[-132.226654,57.20471],[-132.88165,57.86360900000011],[-133.070831,58.012215],[-133.136963,58.13582600000012],[-133.36111,58.280548],[-133.4303,58.359993],[-133.38791,58.4120640000001],[-133.42999,58.45916],[-133.826935,58.726097],[-134.245544,58.856941],[-134.325562,58.92083],[-134.325562,58.9711],[-134.46139,59.126656],[-134.56641,59.130547],[-134.67166,59.200272],[-134.6880489999999,59.243324],[-134.95193,59.2799910000001],[-135.09167,59.426941],[-135.02112,59.4711],[-135.01446,59.567497],[-135.097229,59.621376],[-135.17749,59.63694],[-135.4736,59.801933],[-135.949158,59.66916],[-136.343872,59.60277600000012],[-136.239166,59.56138],[-136.23389,59.525826],[-136.37164,59.452492],[-136.46362,59.46971100000013],[-136.462769,59.289436],[-136.58389299999988,59.16332],[-136.808899,59.165268],[-137.478058,58.907211000000125],[-137.507507,58.925552],[-137.47971,58.99805],[-137.59082,59.238602],[-138.615814,59.774162],[-138.690277,59.90694],[-139.04779,59.99749],[-139.18890399999984,60.088882],[-139.06805,60.352219],[-139.67667,60.340546],[-139.97943,60.18776700000012],[-140.45084,60.309715],[-140.52139,60.22221400000012],[-140.995544,60.307213],[-141.002991,69.642365],[-140.39612,69.5961],[-139.88834,69.616653],[-139.14307,69.51082],[-138.95749,69.407486],[-138.7514,69.346375],[-138.60498,69.247482],[-138.26916,69.196365],[-137.255,68.948318],[-136.97860699999987,68.93193100000013],[-136.745544,68.875259],[-136.477478,68.91081200000013],[-136.0278019999999,68.873032],[-135.54056,68.75249],[-135.40695,68.67997700000012],[-135.14639,68.66387900000012],[-135.50613,68.83249],[-135.33804,68.834991],[-135.623596,68.88611],[-135.24167,68.926926],[-135.186951,68.900269],[-134.97748,68.878311],[-134.845551,68.92942800000014],[-134.6694639999999,68.87331],[-134.49554,68.752213]],[[-93.51973,63.8394320000001],[-93.34,63.808327],[-93.2175,63.8386],[-93.33389,63.85916],[-93.448883,63.925827],[-93.45111,63.959717000000126],[-93.39,63.97166],[-93.273056,63.928047],[-92.651947,63.787498],[-92.50751,63.816383],[-92.93555,63.904991],[-92.965286,63.93665],[-93.436661,64.015274],[-93.77972,64.189697],[-93.604172,64.04443400000014],[-93.65472,63.992493],[-93.75917,63.984161],[-93.77055,63.957771],[-93.51973,63.8394320000001]],[[-70.78307,48.380547],[-70.782501,48.34804500000013],[-70.383057,48.331108],[-70.19861,48.26249700000011],[-69.995544,48.23999],[-69.828339,48.166382],[-69.977219,48.27444],[-70.13194,48.269714],[-70.78,48.43555],[-71.04861,48.445267],[-70.78307,48.380547]]],[[[-108.138901,71.98166],[-108.18721,71.986649],[-108.19972,72.050537],[-108.06416,72.03027],[-108.138901,71.98166]]],[[[-85.847229,72.294144],[-85.83722,72.26277],[-85.889175,72.21805],[-86.110001,72.28970300000015],[-85.847229,72.294144]]],[[[-78.735001,72.36554000000012],[-78.95029,72.334991],[-79.05305,72.360809],[-79.075012,72.409714],[-78.95557,72.444427],[-78.735001,72.36554000000012]]],[[[-79.50806,72.348602],[-79.594452,72.356934],[-79.68332,72.43054200000012],[-79.576675,72.4561],[-79.429718,72.411652],[-79.44665,72.36499],[-79.50806,72.348602]]],[[[-79.993607,72.41331500000013],[-80.022232,72.41360500000013],[-80.13333,72.51944],[-80.0369419999999,72.51638800000012],[-79.916397,72.45804],[-79.993607,72.41331500000013]]],[[[-110.46916,72.56915],[-110.54416,72.56915],[-110.593887,72.59414700000013],[-110.516663,72.593323],[-110.46916,72.56915]]],[[[-110.35583,72.601929],[-110.395,72.603043],[-110.49472,72.61914100000013],[-110.345001,72.6119230000001],[-110.35583,72.601929]]],[[[-108.510559,72.602768],[-108.593613,72.61775200000011],[-108.61361699999986,72.636658],[-108.496658,72.64137],[-108.510559,72.602768]]],[[[-110.30722,72.63081],[-110.36389,72.63081],[-110.41083,72.639435],[-110.28084,72.64221],[-110.30722,72.63081]]],[[[-109.215012,72.790268],[-109.37277,72.806091],[-109.41945,72.820541],[-109.33389,72.83499],[-109.215012,72.790268]]],[[[-95.735,72.798874],[-95.77139,72.799149],[-95.854172,72.85359],[-95.76916,72.87803600000012],[-95.71417,72.83859300000012],[-95.735,72.798874]]],[[[-96.754181,72.72137],[-96.95528,72.734146],[-97.01112,72.77581800000013],[-96.91112,72.841095],[-96.71333,72.893326],[-96.64,72.786652],[-96.754181,72.72137]]],[[[-95.756958,72.89248700000013],[-95.808334,72.90721],[-95.82472,72.965271],[-95.78667,73.0125],[-95.7025,72.93359],[-95.756958,72.89248700000013]]],[[[-95.73389,73.12886],[-95.715561,73.105545],[-95.74554,73.049423],[-95.893341,73.09582],[-95.86888,73.140549],[-95.73389,73.12886]]],[[[-96.80833,72.9263760000001],[-97.032227,72.94664],[-97.111938,73.00471],[-97.14111,73.08554100000015],[-97.045547,73.147491],[-96.809433,73.1891480000001],[-96.65306,73.136383],[-96.57501199999989,73.074997],[-96.565552,73.044708],[-96.643341,72.96138],[-96.80833,72.9263760000001]]],[[[-96.905838,73.220825],[-96.98473,73.220535],[-97.117767,73.24915],[-96.96777,73.273315],[-96.9514,73.239426],[-96.88667,73.231094],[-96.905838,73.220825]]],[[[-113.997498,72.7994230000001],[-114.235817,72.79166],[-114.35139,72.747482],[-114.327789,72.688873],[-114.365829,72.662766],[-114.60472,72.60165400000011],[-114.558327,72.560806],[-114.35139,72.55748],[-114.06277,72.640274],[-113.89307,72.66026],[-113.80666,72.63916],[-113.506119,72.699142],[-113.73083,72.609421],[-113.657501,72.611374],[-113.442757,72.672211],[-113.41,72.729431],[-113.5975,72.75416600000011],[-113.59889,72.78276],[-113.30278,72.948868],[-113.028061,73.00943],[-112.56361,72.959152],[-112.344727,72.90221],[-112.06166,72.889435],[-111.220001,72.718323],[-111.2025,72.670532],[-111.27694699999988,72.56749],[-111.527786,72.44999700000011],[-111.90556,72.349716],[-111.66389,72.276382],[-111.41916,72.34387],[-111.56166099999989,72.336655],[-111.609444,72.367203],[-111.293877,72.46277],[-111.2025,72.460266],[-111.301392,72.40416],[-111.2775,72.36998],[-111.11278,72.3352660000001],[-111.09138,72.4019320000001],[-111.00446,72.465271],[-110.803047,72.48526],[-110.827789,72.525818],[-110.701401,72.57554600000014],[-110.53528,72.546646],[-110.5264,72.52693],[-110.59361299999989,72.489151],[-110.35056,72.42804],[-110.303879,72.43054200000012],[-110.53056,72.50249],[-110.343338,72.553864],[-110.05055,72.433868],[-109.9525,72.4599910000001],[-109.782784,72.42942800000013],[-110.25583599999987,72.556931],[-110.104172,72.55775],[-109.88861099999984,72.484711],[-109.784729,72.49832200000014],[-109.95889,72.612762],[-110.291107,72.671097],[-110.18832,72.7260890000001],[-110.07808,72.72707],[-109.832779,72.663315],[-109.770279,72.72221400000012],[-110.17888,72.76915],[-110.21167,72.81833],[-110.53555,72.847214],[-110.75667,72.97137],[-110.694153,73.00499],[-110.432503,73.0144350000001],[-109.65944,72.924988],[-109.618607,72.90387],[-109.75473,72.87859],[-109.37971,72.7705380000001],[-109.22778,72.761658],[-109.051102,72.680267],[-109.04333,72.56749],[-108.86528,72.564987],[-108.81917,72.591095],[-108.62138,72.549988],[-108.589447,72.494431],[-108.645,72.426651],[-108.65834,72.336105],[-108.52417,72.19971],[-108.404449,72.146942],[-108.39612,72.031372],[-108.186661,71.955826],[-108.28639,71.86080900000012],[-108.242767,71.718597],[-108.066101,71.717758],[-107.82889,71.604431],[-107.72417,71.623871],[-107.836403,71.681656],[-107.81528,71.7227630000001],[-107.63028,71.732208],[-107.49472,71.786377],[-107.45168,71.857483],[-107.2525,71.89554],[-107.61389,72.012497],[-107.653343,72.066376],[-107.610001,72.088593],[-107.63528,72.12192],[-107.77888,72.136658],[-107.77806,72.208038],[-107.87749,72.4244230000001],[-107.88055,72.577484],[-108.011948,72.61998000000011],[-108.02667,72.719986],[-108.16528,73.01082],[-108.29361,73.12025],[-108.291946,73.153595],[-108.133904,73.20694000000015],[-107.86417,73.188583],[-108.11639,73.264435],[-108.15361,73.30247500000013],[-108.0714,73.353317],[-107.614441,73.317215],[-107.06973,73.173874],[-107.01083,73.19136000000015],[-107.12361,73.240265],[-107.03029,73.295532],[-106.7614,73.293045],[-106.69666,73.237488],[-106.24028,73.085815],[-106.047501,73.044708],[-105.83195,73.04971300000011],[-105.82973,73.00694],[-105.56221,72.91304],[-105.32611,72.746368],[-105.37778,72.729431],[-105.51001,72.7769320000001],[-105.45723,72.70277],[-105.294724,72.631927],[-105.19583099999988,72.482483],[-105.21777,72.444977],[-105.29778299999987,72.450546],[-104.9575,72.18136600000014],[-105.03751,72.1183170000001],[-105.01862,72.06694],[-104.87193,71.989975],[-104.78999,71.84137],[-104.673317,71.82332],[-104.35527,71.574432],[-104.40361,71.50861],[-104.33333,71.39637800000014],[-104.35722399999986,71.357483],[-104.493332,71.33415200000013],[-104.440552,71.2361],[-104.64862,71.119141],[-104.58583,71.066666],[-104.22389,70.96193],[-104.11665,70.91026],[-103.994164,70.752777],[-103.806107,70.72304],[-103.55638,70.600815],[-103.30916,70.595261],[-103.121658,70.501938],[-102.92027,70.49498],[-103.1261,70.573883],[-103.14917,70.671646],[-103.0250089999999,70.66026],[-102.84834,70.59387],[-102.83583,70.54803500000014],[-102.744453,70.494705],[-102.11749,70.339432],[-101.92555,70.260544],[-101.84916699999985,70.25665300000014],[-101.799728,70.3022],[-101.714722,70.30886800000013],[-101.588608,70.271927],[-101.65056,70.210815],[-101.539719,70.10693400000014],[-101.397232,70.139435],[-101.37582,70.17776500000014],[-101.22223,70.131927],[-101.13501,70.15971],[-101.111938,70.19720500000011],[-100.999733,70.17276],[-100.870003,69.788315],[-100.95723,69.66249],[-101.32972699999986,69.66998300000012],[-101.47333,69.832764],[-101.416107,69.8869320000001],[-101.445267,69.909149],[-101.569458,69.737488],[-101.69194,69.68026700000013],[-101.856377,69.74304200000012],[-101.940552,69.737198],[-102.06555,69.85054000000014],[-102.230293,69.91721],[-102.37582,69.80941800000011],[-102.51028,69.75804],[-102.576401,69.737488],[-102.680557,69.759995],[-102.592216,69.69386],[-102.48361199999988,69.6922],[-102.50778,69.56415],[-102.81304899999986,69.52970900000012],[-103.321953,69.6922],[-103.476936,69.693588],[-103.50418,69.61304],[-103.02333,69.493866],[-102.99083,69.419434],[-103.02306,69.271652],[-103.20445,69.200821],[-103.21777,69.1372070000001],[-103.19499,69.114426],[-103.021118,69.216934],[-102.840843,69.383331],[-102.72278,69.380264],[-102.51083,69.439697],[-102.471939,69.47943],[-102.31305,69.498322],[-102.05750299999988,69.483597],[-101.93138,69.412766],[-102.03528,69.2872],[-102.21278,69.276382],[-102.217216,69.225266],[-102.09361299999988,69.17859],[-102.03667,69.23166],[-101.92194,69.260269],[-101.75473,69.175812],[-101.81807,68.993591],[-101.976936,68.96666],[-102.06221,68.99693300000013],[-102.14503,68.947662],[-102.38612,68.925537],[-102.53583,68.86443],[-102.763062,68.877762],[-102.89473,68.799988],[-103.00584,68.795258],[-103.19499,68.844437],[-103.32085,68.829712],[-103.40306,68.77721],[-104.09473,68.856644],[-104.445267,68.938873],[-104.50279199999989,68.877762],[-104.583618,68.85971100000012],[-105.14473,68.899155],[-105.2488939999999,68.945526],[-105.173317,68.991928],[-105.039169,68.99026500000014],[-104.936394,69.030548],[-104.915009,69.070541],[-105.083328,69.106369],[-105.16028,69.07193],[-105.47362,69.10693400000014],[-105.61694,69.160812],[-106.17778,69.14415],[-106.40611,69.180542],[-106.394447,69.236923],[-106.267776,69.292206],[-106.316391,69.386658],[-106.602219,69.49887],[-106.73306,69.44165],[-106.745537,69.407761],[-106.98555,69.3461],[-106.929169,69.2166600000001],[-107.138062,69.150543],[-107.34222,69.018875],[-107.955841,68.931046],[-108.534439,68.944702],[-108.563889,68.927765],[-108.53029,68.895828],[-108.597229,68.859146],[-109.10472,68.710541],[-109.399986,68.69331],[-109.68332,68.630539],[-110.22,68.62915],[-110.36362,68.574707],[-110.440826,68.611099],[-110.576683,68.616653],[-110.95029,68.551926],[-111.0386,68.558594],[-110.84306,68.601654],[-111.41666,68.571106],[-111.204453,68.544708],[-111.23805,68.5144350000001],[-111.6005629999999,68.543594],[-113.26945,68.4538730000001],[-113.310272,68.473038],[-113.03389,68.49498000000011],[-113.118057,68.54443400000014],[-113.36722,68.594986],[-113.67694,68.811096],[-113.67722,68.90081800000013],[-113.56946,68.957214],[-113.545,69.048035],[-113.657784,69.091095],[-113.69221,69.189423],[-113.52112,69.17859],[-114.311394,69.284988],[-115.2536159999999,69.24525],[-115.955841,69.292206],[-116.525833,69.407486],[-116.62971,69.45887800000014],[-116.561394,69.488586],[-116.58138999999987,69.56053],[-116.78138699999987,69.557205],[-116.897507,69.587494],[-116.8475,69.6486],[-117.2475,69.756943],[-117.436111,69.993042],[-117.08168,70.10887100000014],[-115.1675,70.277771],[-114.254997,70.31721500000015],[-113.841667,70.26944000000015],[-113.33333,70.277206],[-112.56471,70.198318],[-112.517227,70.20749],[-112.580841,70.22137],[-112.543327,70.23749],[-112.13834,70.271378],[-112.30472,70.29332],[-112.28333,70.299988],[-111.92639,70.25221],[-111.445267,70.284149],[-111.487213,70.336929],[-111.9805599999999,70.37082],[-112.199158,70.502213],[-112.528061,70.51416],[-112.70973,70.56749],[-112.9375,70.567215],[-113.49222,70.6772],[-113.591667,70.646103],[-113.93832,70.715271],[-114.171112,70.664703],[-114.37749,70.67581200000012],[-114.64111,70.622482],[-115.136948,70.598038],[-116.055557,70.57222000000012],[-116.17111,70.62692300000013],[-116.363892,70.63916000000012],[-116.715012,70.60304300000013],[-117.376663,70.62553400000013],[-117.55943,70.59721400000012],[-117.724716,70.641373],[-117.741669,70.66138],[-117.70944199999985,70.693863],[-117.73582,70.71165500000012],[-118.20584,70.84387200000015],[-118.41945,70.991928],[-117.79666,71.166382],[-116.98528,71.2361],[-116.20889,71.36415],[-115.72694,71.3763730000001],[-115.93361,71.38888500000013],[-116.06471,71.438583],[-115.82806,71.483047],[-115.620827,71.498596],[-115.37833,71.4497070000001],[-115.057503,71.52304100000013],[-115.44276,71.488037],[-115.55861,71.50833],[-115.5122219999999,71.537766],[-115.70639,71.555817],[-117.37721299999987,71.382751],[-117.41665599999988,71.391373],[-117.378326,71.454163],[-117.56277,71.49971],[-117.63333,71.46192900000011],[-117.48332,71.43248],[-117.539436,71.372757],[-118.112213,71.373596],[-118.283623,71.404709],[-118.309433,71.46582],[-118.08612099999988,71.54027],[-117.675003,71.55276500000014],[-117.6514,71.56694],[-117.90889,71.61499],[-117.69638,71.666092],[-118.02779,71.671646],[-118.17278,71.628036],[-118.176666,71.59637],[-118.31778,71.582764],[-118.45500199999987,71.650818],[-118.841667,71.6647],[-118.90388,71.6147],[-118.866096,71.586929],[-118.89778,71.577774],[-119.074722,71.64415],[-119.134453,71.765274],[-119.087509,71.908325],[-118.929169,72.00055],[-118.72501399999987,72.0619200000001],[-118.69194,72.130539],[-118.576401,72.17915],[-118.10805,72.237762],[-118.121384,72.30802900000015],[-118.16472,72.33442700000012],[-118.44666,72.345261],[-118.55499,72.380814],[-118.58806,72.43526],[-118.53694,72.493866],[-118.20723,72.618591],[-117.86888,72.699997],[-117.35361,72.91638200000011],[-116.94138,72.956375],[-116.57417,73.054153],[-114.561661,73.37553400000013],[-114.22609699999987,73.318329],[-113.96167,73.15304600000013],[-113.9575,73.113312],[-114.035553,73.00499],[-114.05499,72.88361],[-113.96889,72.82499700000011],[-113.997498,72.7994230000001]]],[[[-95.66972,73.60498000000013],[-95.7025,73.60554500000012],[-95.71167,73.612198],[-95.655563,73.61665],[-95.66972,73.60498000000013]]],[[[-107.89555399999989,73.541367],[-108.02306,73.55137600000012],[-108.083328,73.597214],[-107.824448,73.6244200000001],[-107.5825,73.59776],[-107.89555399999989,73.541367]]],[[[-124.307503,73.55636600000014],[-124.351936,73.5711060000001],[-124.35861199999988,73.630264],[-124.17944,73.606369],[-124.113892,73.5641480000001],[-124.307503,73.55636600000014]]],[[[-124.58473,73.679153],[-124.640556,73.67886],[-124.733612,73.70055],[-124.564438,73.687195],[-124.58473,73.679153]]],[[[-105.089447,73.73526],[-104.580841,73.60026600000015],[-104.48306,73.53442400000012],[-104.57333,73.323044],[-104.79416,73.168045],[-104.97556,73.0852660000001],[-104.984734,73.020538],[-105.22583,72.93304400000011],[-105.354446,72.953323],[-105.32417,72.9061],[-105.20418,72.864151],[-105.27556,72.84553],[-105.38306,72.866653],[-105.462509,72.94136],[-106.0925,73.19971],[-106.081947,73.24109],[-106.46611,73.401382],[-107.03555,73.48082000000011],[-106.70029,73.67609],[-106.572243,73.711929],[-105.726669,73.728592],[-105.51666,73.76332100000013],[-105.089447,73.73526]]],[[[-80.14222699999986,73.69664000000012],[-79.9014,73.698318],[-79.45195,73.63053900000011],[-78.166397,73.668045],[-77.42444,73.554703],[-77.19194,73.501389],[-77.04889,73.36192],[-76.89334,73.32111],[-76.708054,73.317764],[-76.579727,73.219711],[-76.61972,73.17581200000012],[-76.586945,73.14637800000014],[-76.313614,73.10054],[-76.33307,72.96361],[-76.118607,72.94026200000013],[-76.05943299999988,72.900818],[-76.149994,72.84220900000014],[-76.5625,72.81248],[-77.704178,72.89722],[-78.236359,72.893005],[-79.1619419999999,72.75055],[-79.42917,72.735809],[-79.99861,72.863037],[-80.18138,73.043869],[-80.131668,73.088593],[-80.11,73.179703],[-80.151947,73.22249],[-80.7975,73.276932],[-80.8761,73.327774],[-80.872498,73.424988],[-80.82028,73.489151],[-80.809998,73.64444],[-80.85777,73.741928],[-80.434998,73.766098],[-80.14222699999986,73.69664000000012]]],[[[-73.35467,68.32922],[-73.21167,68.376923],[-73.318069,68.393051],[-73.357498,68.37136800000013],[-73.349442,68.3311000000001],[-73.620834,68.24609],[-73.85167,68.34220900000014],[-73.89612,68.39221],[-73.87361,68.487762],[-73.72583,68.525818],[-73.70473,68.656647],[-73.7614,68.686371],[-74.09416,68.719986],[-74.10611,68.690536],[-73.881668,68.556641],[-73.99028,68.49275],[-74.37944,68.54221],[-74.726105,68.73027000000013],[-74.719452,68.77054],[-74.57695,68.793045],[-74.551392,68.830551],[-74.66666,68.8458250000001],[-74.72305,68.822319],[-74.63501,68.79332000000011],[-74.77167,68.77415500000012],[-74.91777,68.80138],[-74.740173,68.87271],[-74.72223,68.934143],[-74.87278,68.955],[-75.04277,68.928314],[-75.021118,68.953049],[-74.764725,69.01944],[-74.638062,69.01609800000011],[-74.82085,69.082214],[-75.05194099999989,69.00861],[-75.0714,68.921097],[-75.139725,68.88472],[-75.4664,69.02137800000013],[-75.57861,68.98414600000012],[-75.494995,68.93026700000013],[-75.60388,68.8797],[-76.420547,68.67915],[-76.66083,68.69942],[-76.68805,68.746933],[-76.52167,68.87025],[-76.60666,68.883041],[-76.65556,68.924698],[-76.62555,69.018326],[-76.34889,69.05498],[-75.99693,69.003036],[-75.813889,69.06776],[-75.605835,69.08527],[-75.56973,69.152771],[-75.59167,69.221649],[-75.95638999999989,69.36609],[-76.29805,69.407761],[-76.64111,69.554153],[-76.47778,69.652206],[-76.2614,69.62665],[-76.18777,69.665268],[-76.63417,69.683594],[-76.517776,69.66277],[-76.7075,69.559418],[-77.20056,69.646103],[-77.15556,69.68054],[-76.89667,69.67915],[-76.793884,69.718597],[-76.781387,69.748596],[-76.83528,69.815811],[-77.31055,69.83581],[-77.24306,69.88136],[-76.98056,69.938034],[-77.43805,69.857208],[-77.508347,69.82666000000012],[-77.449158,69.78471400000012],[-77.62639,69.74498],[-77.695267,69.988037],[-77.66501,70.088043],[-77.67833,70.18775900000014],[-77.88417,70.2586060000001],[-78.239166,70.2038730000001],[-78.401672,70.212494],[-78.480835,70.288589],[-78.389175,70.332214],[-78.425827,70.3477630000001],[-78.557495,70.351379],[-78.578888,70.309708],[-78.70473,70.374695],[-78.747498,70.438873],[-79.070557,70.469711],[-79.10028,70.498322],[-79.08168,70.52998400000013],[-78.87999,70.59471100000013],[-78.71889,70.54776],[-78.840561,70.63499500000012],[-78.97694,70.63582],[-79.009445,70.6797],[-79.158051,70.62220800000011],[-79.06807,70.61554000000012],[-79.174164,70.42804000000011],[-79.22389,70.419434],[-79.30833399999989,70.48027000000013],[-79.40361,70.49332],[-79.57556,70.429428],[-79.5889,70.399429],[-79.42361499999987,70.35582000000011],[-79.3577729999999,70.369705],[-79.20944,70.313309],[-79.10889,70.304977],[-79.05666,70.34137],[-78.92166,70.300812],[-78.763062,70.18359],[-78.66417,70.004166],[-78.68777,69.934418],[-78.79195,69.891098],[-79.40805,69.884995],[-79.682495,69.848877],[-79.89139,69.973877],[-80.05305,69.99720800000011],[-80.232498,70.007767],[-80.32611,69.98027],[-80.57749899999988,70.048874],[-81.763336,70.12303],[-81.68777499999986,70.06776400000012],[-81.464722,70.0247],[-81.31361,70.03221100000013],[-81.188599,69.9910890000001],[-81.126389,69.927765],[-80.763062,69.767212],[-80.9525,69.713882],[-81.43306,69.91304],[-81.795273,69.98858600000011],[-82.1011,70.108032],[-83.00696,70.30470300000013],[-83.04805,70.30693100000013],[-82.82223,70.2208250000001],[-82.29973,70.118866],[-81.710831,69.93414],[-81.74137899999988,69.872757],[-81.960281,69.84415],[-82.02000399999986,69.873871],[-82.14334,69.781372],[-82.243607,69.801651],[-82.27139,69.82638500000013],[-82.20666,69.828598],[-82.30305,69.85664400000013],[-82.5264,69.86080900000013],[-83.066666,70.010818],[-83.71528599999988,69.94775400000015],[-84.656952,70.002487],[-85.176102,70.09304800000012],[-85.666397,70.10471],[-85.87805,70.0769350000001],[-85.851669,70.03831500000013],[-85.618057,70.070831],[-85.236115,69.989151],[-85.82333,70.000275],[-86.255,70.10554500000012],[-86.551941,70.234985],[-86.58112,70.356934],[-86.558609,70.386932],[-86.287506,70.484421],[-86.37471,70.525269],[-86.340561,70.48387],[-86.589722,70.41748],[-86.662216,70.361099],[-86.647232,70.319443],[-86.876099,70.326096],[-86.99055,70.43166],[-86.921936,70.45555],[-86.996384,70.467484],[-87.132767,70.439148],[-87.184998,70.388596],[-86.991379,70.364151],[-86.98582,70.281662],[-87.67361,70.319153],[-87.61027,70.284714],[-87.92305,70.242752],[-88.26472,70.328049],[-88.206665,70.35247800000012],[-87.87999,70.31137100000011],[-87.914719,70.331665],[-88.37443,70.43220500000012],[-88.69305,70.45526100000012],[-88.89751,70.532761],[-89.00528,70.65694],[-89.33057,70.791931],[-89.44833,70.902481],[-89.22278,70.93553],[-89.195267,70.968323],[-89.54973,71.08859300000012],[-89.228333,71.072769],[-89.20306,71.03804],[-89.13444,71.0269320000001],[-88.617767,71.04443400000014],[-88.38028,71.01193],[-88.3186189999999,70.953873],[-87.99999999999989,70.929153],[-87.353607,70.94525],[-87.308609,70.995529],[-87.24695,71.009155],[-87.002792,70.994141],[-87.38583,71.04193],[-87.712784,71.126083],[-87.84889199999986,71.184982],[-87.81667,71.25471],[-87.84416,71.26416],[-88.131104,71.21914700000013],[-89.83,71.32887],[-89.968613,71.416931],[-90.01306,71.600266],[-89.997223,71.641373],[-89.808334,71.747757],[-89.960281,71.824158],[-90.04861,71.9538730000001],[-89.993057,72.070541],[-89.73889,72.124985],[-89.66472,72.113312],[-89.57472,72.163605],[-89.780563,72.15749],[-89.897232,72.188583],[-89.95666,72.32165500000013],[-89.9075,72.432205],[-89.79360999999989,72.46277],[-89.75389,72.605545],[-89.572784,72.61692800000014],[-89.47055,72.66609],[-89.57472,72.698868],[-89.57472,72.785263],[-89.33057,72.755829],[-89.29416,72.797211],[-89.36139,72.99165],[-89.228333,73.125809],[-88.99055,73.2836],[-88.409164,73.523605],[-87.73999,73.71138],[-86.71666,73.84082000000012],[-86.10916,73.8499910000001],[-85.06945799999988,73.801926],[-84.837784,73.74165],[-84.956116,73.66527],[-85.59639,73.48664900000011],[-85.93028,73.355255],[-86.137787,73.228867],[-86.29222,73.10331700000012],[-86.328339,73.03665],[-86.65361,72.868866],[-86.732773,72.71609500000011],[-86.686935,72.644714],[-86.397232,72.534988],[-86.240829,72.4202580000001],[-86.435822,72.270264],[-86.455276,72.207214],[-86.420547,72.01277],[-86.11055,71.783051],[-85.50084,71.511108],[-84.934723,71.41832],[-84.83389,71.27415],[-85.1725009999999,71.27249],[-85.50029,71.1772],[-85.93277,71.178864],[-86.248886,71.058594],[-86.820007,70.98858600000011],[-86.60194,70.971649],[-86.29222,71.000275],[-85.77917,71.13916],[-84.96167,71.18858300000011],[-84.84999,71.154709],[-84.87582399999985,71.069992],[-84.980835,71.101089],[-85.14696,71.082764],[-84.960281,71.07222],[-84.92694,70.98803700000013],[-84.975281,70.94525],[-84.95862,70.919434],[-84.79889,70.92164600000012],[-84.748337,70.97554],[-84.771118,71.03749],[-84.82972699999986,71.07332],[-84.766663,71.197479],[-84.797226,71.30331400000011],[-84.76251199999989,71.40665],[-84.526108,71.468872],[-84.56139,71.549988],[-84.65834,71.58387800000014],[-84.604446,71.646103],[-84.625,71.665817],[-84.8275,71.675262],[-84.926666,71.63611],[-85.27972,71.668594],[-85.579727,71.784988],[-85.43277,71.80636600000014],[-85.55972,71.900543],[-86.022781,71.980545],[-86.050827,72.01111],[-85.50944,72.06805400000013],[-85.440552,72.132751],[-85.501678,72.184143],[-85.487213,72.260269],[-84.86777,72.220825],[-84.81528,72.18136600000014],[-84.28639,72.028595],[-84.19444,71.930817],[-84.16888399999988,71.944138],[-84.16471899999988,72.021103],[-84.34666,72.069717],[-84.38055,72.123596],[-84.61333,72.163605],[-84.93527,72.289429],[-84.816101,72.35277],[-84.52112,72.35054000000014],[-84.442215,72.383041],[-84.8761,72.37220800000011],[-84.87083,72.40081800000013],[-84.78667,72.408875],[-84.776947,72.458328],[-85.14473,72.35942100000011],[-85.53528,72.469711],[-85.617218,72.545532],[-85.47555,72.575272],[-85.62389,72.58693],[-85.705276,72.63777],[-85.68805,72.8936],[-85.570557,72.966934],[-85.283066,72.96443],[-83.95306,72.752487],[-85.059998,72.996643],[-85.53528,73.021927],[-85.44777,73.12025],[-85.37999,73.13361],[-85.30028,73.078049],[-85.17589,73.058655],[-85.1525,73.07276900000011],[-85.223053,73.13472000000013],[-85.08917,73.1375],[-84.82972699999986,73.08554100000015],[-83.86777,73.02970900000014],[-83.634445,72.9824830000001],[-83.91362,73.05832],[-84.58444,73.115814],[-85.188599,73.228867],[-85.11583,73.31442300000015],[-84.80804,73.38832100000013],[-84.741669,73.376083],[-84.655,73.305542],[-84.339447,73.226089],[-84.586945,73.323044],[-84.656113,73.390549],[-84.19444,73.474701],[-83.751923,73.42749],[-83.68944,73.323608],[-83.60055,73.297485],[-83.6525,73.44525],[-84.00696,73.50972000000013],[-83.21916199999986,73.656647],[-83.01834,73.66609],[-82.84084,73.732758],[-81.55388,73.717209],[-81.45723,73.691086],[-81.228882,73.535538],[-81.18832,73.389709],[-81.204727,73.266663],[-80.59639,73.148041],[-80.54944,73.08194],[-80.647507,72.99054],[-80.63834,72.92276],[-80.487778,72.828598],[-80.31946,72.799149],[-80.247498,72.730545],[-80.95389,72.450546],[-81.199722,72.289154],[-81.37944,72.24165],[-81.22972,72.258606],[-80.71501,72.47304],[-80.5164,72.50388],[-80.492767,72.453049],[-80.51417,72.3797],[-80.783325,72.29027],[-80.905563,72.180542],[-80.56723,72.07277],[-80.9411,72.0874940000001],[-81.08029,72.051651],[-80.847229,72.05664100000011],[-80.79277,72.027771],[-80.833328,71.94582],[-80.971664,71.881653],[-80.756119,71.93414300000012],[-80.74695,71.98248300000012],[-80.38501,72.048325],[-80.34723,72.088318],[-80.486664,72.18942300000015],[-80.2411039999999,72.197754],[-80.30638,72.25526400000012],[-80.26083,72.294983],[-80.155838,72.273605],[-79.99166899999989,72.1766510000001],[-79.67444,72.12665],[-79.941101,72.195816],[-80.1664,72.32222000000013],[-79.799164,72.501389],[-79.692215,72.466934],[-79.7686389999999,72.41177],[-79.59555,72.33471700000013],[-79.638901,72.289154],[-79.768616,72.2452550000001],[-79.75,72.215546],[-79.56583,72.275269],[-79.3425,72.400269],[-79.012787,72.27388000000013],[-78.946945,72.18692],[-79.03639,72.069443],[-79.233063,71.97637900000012],[-79.20306,71.961929],[-79.06111,71.975266],[-78.50362,71.868866],[-78.607498,71.93858300000011],[-78.923615,72.014999],[-78.85445,72.173035],[-78.476105,72.087204],[-78.38194,71.92804],[-78.21083,71.82582100000013],[-77.90445,71.768051],[-78.14,71.83055100000013],[-78.321396,71.93692],[-78.14168,71.96415700000011],[-77.785553,71.78749],[-78.10722,71.974152],[-78.33417,71.991364],[-78.40222,72.10498],[-78.870834,72.226654],[-78.73473,72.32859800000011],[-78.604172,72.35942100000011],[-78.515839,72.330551],[-78.52917,72.235535],[-78.40834,72.16638200000011],[-78.38417,72.17553700000013],[-78.41112,72.21666],[-78.47278,72.24247700000012],[-78.45111,72.324158],[-77.8275,72.24859600000013],[-77.644455,72.186646],[-77.289444,72.183319],[-76.99583,72.12886],[-77.278061,72.19693],[-77.54999,72.198029],[-78.389175,72.373032],[-78.559158,72.438034],[-78.55666,72.5044400000001],[-78.43056,72.586655],[-77.613892,72.75166300000012],[-77.05582,72.75286100000011],[-76.75307,72.72053],[-76.6625059999999,72.67859],[-76.646118,72.63971],[-76.166946,72.58638],[-76.162506,72.526093],[-76.107773,72.47304],[-76.0369419999999,72.489426],[-76.06471299999987,72.549988],[-75.93195,72.583603],[-75.19249,72.491928],[-75.200287,72.461929],[-75.132492,72.3936000000001],[-74.94749,72.2497100000001],[-75.23833,72.1183170000001],[-75.607498,72.143326],[-76.015015,72.08665500000012],[-76.34805299999988,71.891663],[-76.08972,71.978867],[-76.01973,72.046097],[-75.79666,72.10359],[-75.48805,72.118866],[-75.21945199999988,72.074432],[-75.28167699999989,72.038589],[-75.58667,71.999146],[-75.686661,71.883041],[-75.692215,71.833328],[-75.80249,71.75055],[-76.085281,71.69192],[-75.794998,71.725815],[-75.655,71.82609600000012],[-75.57028,71.91748],[-75.558334,71.97665400000011],[-75.19777,72.02331500000014],[-75.03583,72.125809],[-74.26001,72.076096],[-74.12222,71.983597],[-74.166107,71.874695],[-74.24306,71.818604],[-74.570557,71.809418],[-74.69611,71.73858600000011],[-74.88501,71.7086],[-75.13667,71.716934],[-75.39,71.681091],[-75.04361,71.699707],[-74.933609,71.663879],[-75.40639,71.512207],[-75.205276,71.546371],[-74.78416,71.682755],[-74.686661,71.69636500000013],[-74.63194,71.662491],[-74.73389,71.57554600000014],[-75.03667,71.530548],[-75.151947,71.471649],[-75.03332,71.513046],[-74.83833,71.52193],[-74.69943,71.390823],[-75.08139,71.179428],[-74.87416,71.24776],[-74.63751,71.380539],[-74.638062,71.4266510000001],[-74.73555,71.47249],[-74.73611499999987,71.530548],[-74.619995,71.558029],[-74.543884,71.63136],[-74.2886,71.72747800000013],[-74.10916,71.735809],[-74.12887599999986,71.671646],[-74.25446,71.606644],[-74.24306,71.56972],[-74.15028399999989,71.533325],[-74.14612,71.6375],[-74.01472,71.7410890000001],[-73.74805,71.77693],[-73.59,71.756943],[-73.638062,71.706375],[-73.890839,71.609421],[-74.01083,71.49136],[-74.315826,71.414429],[-74.02861,71.437759],[-74.091675,71.285538],[-74.240829,71.20082100000013],[-74.039444,71.3022],[-73.862213,71.5311],[-73.74695,71.585266],[-73.62193,71.58332800000011],[-73.565,71.551926],[-73.61945,71.51582300000013],[-73.63501,71.35942100000011],[-73.51889,71.37915],[-73.503067,71.42469800000015],[-73.446945,71.440262],[-73.38028,71.385269],[-73.62304699999987,71.291092],[-73.67888,71.238037],[-73.73582,71.09332300000011],[-73.898346,71.05748000000011],[-73.674438,71.088318],[-73.67361,71.16304],[-73.62361,71.22554000000012],[-73.433884,71.308594],[-73.43611,71.34055],[-73.320847,71.34082000000012],[-73.04944,71.26833],[-73.27194199999984,71.220535],[-73.235001,71.162201],[-73.29445,71.09248],[-73.45084,71.035263],[-73.37749,70.980545],[-73.17361499999987,71.156937],[-73.180283,71.211655],[-72.994995,71.25],[-72.9514,71.31609],[-72.988892,71.405548],[-72.75917,71.426926],[-72.769165,71.459152],[-72.618607,71.559418],[-72.593887,71.642487],[-72.53805,71.66081200000013],[-71.55417,71.50388],[-71.435272,71.463608],[-71.11972,71.26416],[-71.34056099999987,71.170532],[-71.464447,71.06248],[-71.910828,71.107758],[-72.099731,71.063873],[-72.101944,71.016098],[-72.17972,70.962204],[-72.297226,70.947205],[-72.33417,70.87859],[-72.65361,70.827774],[-72.30278,70.867203],[-72.16362,70.83638],[-72.38194,70.6772],[-72.62332,70.628036],[-72.56945799999988,70.609985],[-72.32611,70.667206],[-72.155838,70.773605],[-71.35445,70.88275],[-71.287506,70.906097],[-71.18554699999987,71.01944],[-70.83612,71.114426],[-70.75557,71.11554],[-70.601669,71.053864],[-70.51445,70.921097],[-70.678879,70.840546],[-70.74695,70.74552900000015],[-71.10055,70.654984],[-71.175278,70.5836],[-71.59277,70.606934],[-71.583618,70.54637100000014],[-71.80305,70.428314],[-71.727219,70.41748],[-71.746384,70.3477630000001],[-71.84973,70.290817],[-71.73361,70.313873],[-71.640289,70.450546],[-71.51001,70.535812],[-71.50696,70.57638500000013],[-71.162506,70.525269],[-71.32251,70.312759],[-71.28,70.27499],[-71.289169,70.246094],[-71.53583,70.01971400000014],[-71.33168,70.12859],[-71.210556,70.26221],[-71.23195,70.294983],[-71.030563,70.540543],[-71.05305,70.55304],[-70.99722,70.62581],[-69.90472,70.881363],[-69.770554,70.856094],[-69.87944,70.768051],[-70.084732,70.683594],[-70.244995,70.63832100000013],[-70.454727,70.627762],[-70.478882,70.606644],[-70.397507,70.52415500000012],[-70.49611,70.47943],[-70.30972,70.49803],[-70.37111,70.573608],[-70.34445,70.61303700000013],[-70.02333,70.610535],[-69.978607,70.65332],[-69.77583,70.682205],[-69.619995,70.75804],[-69.451401,70.791931],[-69.22694,70.779984],[-68.95805,70.688583],[-68.313889,70.563034],[-68.27917,70.531097],[-68.289719,70.50000000000011],[-68.4514,70.40942400000012],[-68.458618,70.369431],[-68.57584,70.3961],[-68.54805,70.447754],[-68.5825,70.4644320000001],[-68.66167,70.431091],[-68.65111,70.345825],[-68.682495,70.329437],[-69.66806,70.198593],[-69.829453,70.15416],[-69.91777,70.085541],[-70.086121,70.066666],[-70.18555,70.02804600000013],[-69.90111,70.048325],[-69.815552,69.9847110000001],[-70.16444399999989,69.9616550000001],[-70.228607,69.91165],[-70.46861,69.842758],[-70.35583,69.84137],[-70.076675,69.95804],[-69.75084,69.972488],[-69.74416,70.0080410000001],[-69.80471799999987,70.038879],[-69.79277,70.080826],[-69.65334,70.144989],[-68.839172,70.203598],[-68.678329,70.202484],[-68.6425,70.149429],[-68.783066,70.04443],[-69.153061,69.953049],[-69.42694,69.81972],[-69.683884,69.839981],[-69.805832,69.81999200000013],[-69.99805,69.66998300000012],[-69.99055,69.61499],[-69.741943,69.8035890000001],[-69.395844,69.77777100000013],[-69.07667,69.92387400000013],[-68.751953,69.94664],[-68.22139,70.102768],[-68.193604,70.123596],[-68.333618,70.13916],[-68.34528,70.188034],[-68.160004,70.28276100000011],[-68.03944,70.301376],[-67.79472,70.258881],[-67.222778,69.943863],[-67.12777699999987,69.726929],[-67.40695199999988,69.71471],[-67.761124,69.77859500000011],[-67.996109,69.774429],[-68.208054,69.715546],[-68.329453,69.62776200000013],[-68.645279,69.641098],[-69.220001,69.535812],[-69.688889,69.569443],[-70.03084,69.536102],[-69.88583,69.507217],[-69.66333,69.54832],[-69.29999,69.506104],[-68.611938,69.587494],[-67.98222,69.45748900000012],[-67.79222,69.484146],[-67.21001,69.46138],[-66.79554699999989,69.341095],[-66.645844,69.224991],[-66.668335,69.17831400000011],[-66.75862,69.12803600000012],[-66.99695,69.17776],[-67.67639,69.169434],[-68.184479,69.308014],[-68.37555,69.294708],[-69.015015,69.35498],[-69.257782,69.27026400000011],[-68.92138699999987,69.33194],[-68.19861,69.2747],[-68.07749899999988,69.217484],[-68.96777,69.2211],[-68.502502,69.198593],[-68.69055,69.141098],[-68.99805,69.103592],[-68.926666,69.079987],[-68.95889,69.00305200000014],[-69.025833,68.968597],[-68.930557,68.992752],[-68.85833699999989,69.08831800000013],[-68.41278,69.176926],[-68.178329,69.146652],[-67.70584,69.01638800000012],[-68.02945,68.971375],[-68.31416,69.010544],[-68.556107,68.964157],[-68.30305,68.985809],[-68.04834,68.943863],[-67.972778,68.859146],[-68.49167,68.896652],[-67.77139,68.781372],[-68.56555,68.84721400000012],[-68.61166,68.835815],[-68.526947,68.795258],[-68.795273,68.799423],[-69.280838,68.87580900000012],[-69.39806,68.86219800000013],[-69.15222,68.82805],[-69.371109,68.81275900000014],[-68.044998,68.678314],[-68.09445,68.62776200000013],[-68.657776,68.65637200000015],[-68.9025,68.603592],[-68.804169,68.58998],[-68.647507,68.635544],[-68.46945,68.606369],[-68.70705,68.5660400000001],[-68.24445,68.588043],[-67.86694,68.50972],[-67.664169,68.562759],[-67.50084,68.538315],[-67.510559,68.51138],[-67.628052,68.496368],[-67.6125,68.37942],[-67.51112,68.483322],[-67.426102,68.49443],[-67.2175,68.471924],[-67.22305,68.42608600000011],[-67.324448,68.407761],[-67.104996,68.414154],[-67.112778,68.478867],[-66.706955,68.44470200000012],[-66.905,68.41638200000011],[-66.936386,68.37442],[-67.01112,68.353592],[-67.28639,68.395828],[-67.74388,68.34332],[-67.83223,68.32026700000011],[-67.878326,68.265274],[-67.83333,68.261383],[-67.74526999999989,68.320541],[-67.597778,68.323044],[-67.576675,68.2686],[-67.694992,68.2410890000001],[-67.57973,68.251389],[-67.533066,68.27137800000014],[-67.54028,68.299713],[-67.401947,68.352478],[-67.2325,68.357483],[-67.01167,68.316086],[-67.235,68.29166],[-67.32779,68.24359],[-67.32779,68.181091],[-67.387787,68.146378],[-67.59834,68.16276600000015],[-67.374161,68.127472],[-67.27389,68.19081100000011],[-67.27471899999989,68.244141],[-67.0114,68.2949830000001],[-66.765839,68.23858600000011],[-66.852219,68.115265],[-66.96556,68.06387300000011],[-66.94665,68.013611],[-66.83612,68.095535],[-66.69444,68.14305100000013],[-66.670837,68.12886000000015],[-66.67805,68.04332],[-66.735,67.982208],[-66.69722,67.987488],[-66.647232,68.01555],[-66.61555,68.13247700000011],[-66.54194599999988,68.14833],[-66.315277,68.13026400000012],[-66.366394,68.08332800000011],[-66.478607,68.077209],[-66.25917,68.08581],[-66.18416,68.018875],[-66.30972,67.986099],[-66.4014,67.888596],[-66.73222,67.867203],[-66.35666,67.821381],[-66.276672,67.95444],[-65.943604,68.04609700000015],[-65.960556,68.14444000000015],[-65.91194,68.158875],[-65.853607,68.07332],[-66.03223,67.952484],[-65.96722,67.853317],[-66.02888,67.72442600000011],[-66.008621,67.625534],[-65.936935,67.765549],[-65.95334,67.821381],[-65.804169,67.863602],[-65.76363,67.909988],[-65.80777,67.9711],[-65.4436,67.99220300000013],[-65.520279,67.843048],[-65.615829,67.786102],[-65.42639,67.696365],[-65.34639,67.59332300000011],[-65.318344,67.601089],[-65.36916,67.702774],[-65.554443,67.783051],[-65.42361,67.898041],[-65.17166,67.966095],[-65.14139,67.990265],[-65.176666,68.022491],[-65.047775,68.04942],[-64.72362,67.99054],[-65.015289,67.862488],[-65.008347,67.78526],[-65.14555,67.738876],[-65.19638,67.69720500000011],[-65.204178,67.648331],[-65.16722,67.635818],[-65.129715,67.71582],[-64.91972,67.79081700000012],[-64.81055,67.77721],[-64.81610099999989,67.710541],[-64.862778,67.69165],[-64.820557,67.68831],[-64.768616,67.709427],[-64.75,67.82276900000011],[-64.506958,67.807205],[-64.36389,67.75444],[-64.4014,67.70776400000011],[-64.57834,67.69693],[-64.639175,67.660538],[-64.38082899999989,67.698029],[-64.305557,67.733597],[-64.072784,67.61026],[-64.0386,67.528595],[-64.2386,67.467484],[-64.440552,67.474991],[-64.29666,67.448029],[-64.01083,67.45971700000013],[-63.95111,67.40998800000011],[-63.90417,67.305817],[-64.7975,67.35664400000013],[-64.23195,67.29332],[-64.35611,67.250275],[-64.550278,67.256104],[-64.81610099999989,67.20694],[-64.78332,67.190262],[-63.96278,67.272491],[-64.02139,67.208878],[-64.611938,67.13247700000011],[-64.68999,67.0836],[-64.69194,67.000549],[-64.62833,67.012207],[-64.604172,67.08832],[-64.506393,67.129425],[-63.97138,67.182205],[-63.7975,67.24026500000014],[-63.450554,67.22248800000011],[-63.453888,67.16943400000014],[-63.529442,67.104431],[-63.79584,67.006653],[-63.77249899999987,66.958878],[-63.750557,67.01748700000013],[-63.53528,67.07083100000011],[-63.402779,67.14444000000015],[-63.42084,67.200272],[-63.3325,67.281937],[-63.11028299999986,67.329987],[-62.99778,67.28137200000015],[-62.97083,67.221375],[-63.04472399999986,67.16721],[-63.284447,67.105255],[-63.220276,67.016937],[-63.240837,66.961655],[-63.545554999999865,66.903595],[-63.57194,66.837494],[-63.77138,66.811096],[-63.48889,66.82832300000013],[-63.496947999999854,66.880814],[-63.441666,66.9083250000001],[-63.407219,66.814423],[-63.453056,66.711655],[-63.42028,66.698868],[-63.224716,66.899429],[-62.9625,66.963882],[-62.84695,66.96192900000011],[-62.820557,66.813599],[-62.89973,66.63665800000011],[-62.835274,66.66638200000011],[-62.73417,66.79082],[-62.77417,66.840546],[-62.743057,66.94192],[-62.56889299999988,66.94413800000012],[-62.313332,66.726929],[-62.292778,66.761658],[-62.424721,66.847488],[-62.42722,66.921097],[-62.28473,66.946091],[-62.27861,67.03943],[-62.10139,67.054703],[-62.00556,67.0352630000001],[-62.10223,66.91304000000014],[-62.01889,66.90165700000011],[-61.938606,66.96944],[-61.749725,66.948029],[-61.314163,66.687195],[-61.2625,66.629425],[-61.44778,66.53831500000013],[-61.59861,66.550262],[-61.72583,66.643051],[-61.950554,66.676926],[-62.123886,66.626373],[-61.98,66.648041],[-61.830284,66.62136800000013],[-61.575279,66.482758],[-61.86972,66.44582],[-61.97805,66.40387],[-61.5694499999999,66.415543],[-61.4625,66.36914100000013],[-61.87749,66.28332],[-62.198883,66.3141480000001],[-62.229996,66.40416],[-62.45611,66.42387400000013],[-62.71611,66.407211],[-62.47805,66.36998000000011],[-62.32056,66.299713],[-62.66695,66.214432],[-62.757225,66.245255],[-62.77944,66.30720500000012],[-62.895,66.329712],[-62.80944,66.24081400000011],[-62.715,66.20166],[-62.48805,66.20027],[-62.180557,66.1486],[-62.03751,66.100815],[-61.954445,66.01915],[-62.188889,66.0122070000001],[-62.30778,65.97388],[-62.525276,66.03414900000011],[-62.778885,66.033325],[-62.84222,66.06415],[-62.88417099999987,66.12997],[-62.970551,66.148041],[-63.06194,66.120819],[-62.89223,66.07666],[-62.79362,66.010818],[-62.523056,66.002213],[-62.418335,65.970535],[-62.31722,65.808029],[-62.619995,65.80304],[-62.72722,65.828598],[-62.864166,65.911102],[-62.874718,65.8830410000001],[-62.76,65.816666],[-62.56945,65.75749200000013],[-62.599442,65.71887200000015],[-62.83344299999987,65.752991],[-62.79917099999989,65.711929],[-62.59194,65.67192],[-62.653053,65.5861],[-62.80305,65.59887700000013],[-62.859726,65.63472],[-62.885,65.72697],[-62.93611,65.75499],[-62.962219,65.748322],[-62.91666,65.72221400000012],[-62.89167,65.638321],[-62.96167,65.58305400000012],[-63.0275,65.635818],[-63.200279,65.633331],[-63.443054,65.85471],[-63.474167,65.833054],[-63.368332,65.669434],[-63.72360999999989,65.680267],[-63.671669,65.64833],[-63.375,65.632202],[-63.32,65.593323],[-63.359726,65.536102],[-63.48222,65.525269],[-63.58128,65.591873],[-63.608894,65.589981],[-63.61833,65.541931],[-63.292778,65.42886],[-63.65556,65.470825],[-63.48361,65.404984],[-63.335556,65.300537],[-63.47222,65.196365],[-63.37694,65.110809],[-63.527222,64.971924],[-63.54695,64.887207],[-63.82417,64.984711],[-63.82556199999988,65.01277],[-63.66472,65.043594],[-63.84972,65.030273],[-63.88167,65.09693900000013],[-63.94861,65.10054],[-64.13249,65.044434],[-64.275833,65.098877],[-64.129715,65.193588],[-64.231384,65.19693],[-64.31471,65.152481],[-64.38082899999989,65.181091],[-64.40279,65.2910920000001],[-64.255569,65.38638],[-64.237213,65.429977],[-64.291107,65.42248],[-64.46167,65.294983],[-64.46222,65.190811],[-64.55556,65.092209],[-64.760284,65.252213],[-64.801102,65.23082000000011],[-64.910553,65.299423],[-64.684433,65.341095],[-64.912216,65.33804],[-64.59111,65.42970300000013],[-64.44194,65.4202580000001],[-64.418335,65.482758],[-64.97417,65.40471],[-65.00111,65.36665],[-65.149994,65.434143],[-65.16,65.488037],[-64.92972,65.5247],[-64.83694,65.60582],[-64.710007,65.65221],[-64.853333,65.65470900000012],[-64.99360699999988,65.548035],[-65.31111,65.548874],[-65.33861,65.575546],[-65.29999,65.6308140000001],[-65.12582,65.633331],[-65.099731,65.67192],[-64.795,65.72804300000013],[-65.024719,65.716934],[-65.16833,65.656097],[-65.44166599999988,65.67164600000012],[-65.460281,65.741364],[-65.505569,65.743317],[-65.449158,65.84109],[-65.35722,65.90248],[-64.94611,66.00138900000012],[-64.735001,65.96944],[-64.82167,66.044708],[-64.72166,66.21748],[-64.356384,66.34972],[-64.718887,66.273315],[-64.84,66.19331],[-64.85417,66.1097110000001],[-64.933884,66.080276],[-65.38194,65.97581500000013],[-65.91611,65.951096],[-65.9639,66.043869],[-65.91166699999985,66.0916600000001],[-65.63417,66.172485],[-65.54555,66.2433170000001],[-65.47111,66.342484],[-65.47362,66.38582],[-65.55388,66.327774],[-65.57167,66.268326],[-65.7025,66.177475],[-65.95195,66.108871],[-66.07362,66.120529],[-66.147232,66.135269],[-66.20084,66.194977],[-66.1911,66.23997],[-66.505,66.208878],[-66.57611,66.359146],[-66.43721,66.413315],[-66.61749,66.368591],[-66.76778,66.38053900000011],[-66.82167,66.45804],[-66.80638,66.53194],[-66.85194,66.583328],[-67.048889,66.644714],[-66.88417099999987,66.566086],[-67.11833,66.484985],[-67.19861,66.494141],[-67.190277,66.5291600000001],[-67.33833,66.59776],[-67.742767,66.56833],[-67.365829,66.54443400000014],[-67.148621,66.443863],[-67.138062,66.382202],[-67.172501,66.363876],[-67.410553,66.425262],[-67.12527,66.306931],[-67.254181,66.30276500000014],[-67.28223,66.275269],[-67.413895,66.296646],[-67.566666,66.409424],[-67.92361,66.516098],[-67.992767,66.506943],[-67.87027,66.454712],[-67.67223,66.22831700000012],[-67.162506,66.03526],[-67.24352,65.9783],[-67.17304999999988,65.91859],[-67.19444,65.90971400000012],[-67.82417,65.880814],[-67.938599,65.908035],[-68.030563,65.998032],[-68.02583,66.06581100000011],[-68.24472,66.1827550000001],[-68.85139,66.189972],[-68.414719,66.159424],[-68.23778,66.069992],[-68.218887,66.081375],[-68.24695,66.11276],[-68.2025,66.12886],[-68.047226,66.06499],[-68.053604,65.99109],[-68.123886,65.963043],[-68.30444299999988,66.028046],[-68.333618,65.931931],[-68.287781,65.907761],[-68.14,65.927475],[-68.14723,65.798325],[-68.02389499999987,65.775269],[-67.88612399999987,65.804977],[-67.82112,65.76805],[-67.94249,65.61804200000012],[-68.058884,65.56805],[-67.951675,65.568329],[-68.02583,65.48109],[-67.712219,65.64082300000013],[-67.4025,65.67747500000013],[-67.28056,65.64248700000013],[-67.25334,65.601654],[-67.45889,65.498032],[-67.347504,65.4586],[-67.08168,65.462494],[-67.058334,65.426651],[-67.11806,65.36192],[-67.316101,65.358597],[-67.416107,65.33915700000011],[-67.32667,65.31694],[-67.26916,65.352203],[-67.119995,65.309982],[-67.063889,65.21832],[-66.92888,65.22971],[-66.95917,65.106644],[-67.055557,65.105255],[-67.09611,65.056091],[-66.89056,65.103317],[-66.726105,65.18026700000013],[-66.801666,65.060806],[-66.743057,64.96304],[-66.73416,64.820541],[-66.69804399999987,64.76193],[-66.632492,64.78137200000015],[-66.6761,64.876083],[-66.68866,65.03877],[-66.535278,65.01082],[-66.478607,64.929153],[-66.379166,64.912201],[-66.334732,64.93470800000011],[-66.148346,64.868866],[-66.213333,64.756104],[-66.21222,64.68553],[-66.151947,64.68915],[-66.116943,64.78137200000015],[-66.02084,64.849716],[-66.01251199999989,64.699417],[-65.846664,64.676086],[-65.89917,64.732758],[-65.956665,64.886108],[-65.71777,64.840271],[-65.660278,64.79915],[-65.74249,64.7410890000001],[-65.70473,64.687485],[-65.708618,64.736099],[-65.66528,64.77137800000014],[-65.55583,64.723312],[-65.58333,64.64276100000012],[-65.714172,64.570541],[-65.721664,64.494141],[-65.51807,64.49971],[-65.505569,64.468872],[-65.38417,64.524155],[-65.21055599999988,64.536102],[-65.07779,64.475815],[-65.07167,64.440811],[-65.210831,64.30386],[-65.55417,64.323318],[-65.65834,64.30276500000014],[-65.42277,64.29637100000014],[-65.049438,64.07222],[-65.214172,64.025543],[-64.66112,64.02859],[-64.63834,63.969154],[-64.87527,63.9011],[-64.9875,63.823051],[-64.948883,63.774437],[-64.683609,63.74638],[-64.522507,63.672768],[-64.50751,63.630821],[-64.53667,63.581108],[-64.49554,63.32777],[-64.62471,63.318054],[-64.482773,63.28583],[-64.53111,63.249718],[-64.65834,63.249161],[-64.7675,63.323883],[-64.85055,63.510826],[-64.94249,63.63221],[-65.070847,63.671936],[-65.20473,63.803322],[-65.30388,63.806938],[-65.05305,63.638046],[-65.039169,63.57416500000011],[-65.09195,63.55971],[-65.0994419999999,63.52638],[-65.026947,63.3991620000001],[-64.94249,63.35305],[-64.901108,63.237495],[-65.14695699999987,63.28138],[-65.05499,63.172218],[-64.92027,63.184158],[-64.78389,63.122215],[-64.75334,63.09665700000011],[-64.77139,62.98333],[-64.62721,62.90416],[-64.76945,62.862213000000104],[-64.88194299999986,62.867493],[-65.23611,62.957771],[-65.25473,62.985268],[-65.269165,62.959991],[-64.984726,62.714157],[-64.948883,62.6486],[-65.1875,62.56221],[-65.295,62.669441],[-65.26695,62.694435],[-65.3275,62.691658],[-65.32806,62.66610000000014],[-65.35388,62.684433],[-65.33972,62.837494],[-65.579178,62.81193],[-65.74694799999986,62.91777],[-65.90944,62.925827],[-65.93332,62.955826],[-65.838333,63.033333],[-65.950562,62.975822],[-66.01445,62.978874000000125],[-66.27583,63.133881],[-66.291382,63.11610400000012],[-66.19665,63.03166],[-66.091385,62.983604],[-66.103058,62.946655000000135],[-66.15916,62.93665],[-66.44444299999985,63.020546],[-66.51834,63.065269],[-66.551941,63.179436],[-66.62639,63.252220000000136],[-66.642776,63.37249],[-66.74028,63.283607],[-66.60249,63.205269],[-66.54666,62.99137900000011],[-66.68222,63.026382],[-66.76807,63.08777],[-66.807495,63.273323],[-66.84917,63.245544],[-66.79944,63.17249],[-66.84416,63.147217000000126],[-67.02389,63.24305],[-66.97778,63.399719],[-67.017227,63.397217],[-67.04083,63.33555],[-67.017227,63.281105],[-67.17972,63.275551],[-67.5,63.442764000000125],[-67.68332,63.619438],[-67.914719,63.759438],[-67.675003,63.418053],[-67.685272,63.36888],[-67.820557,63.400269],[-67.858047,63.457497],[-68.02528,63.54083],[-68.365829,63.64527],[-68.54277,63.73249],[-68.99695,63.753609],[-68.81305,63.635551],[-68.75473,63.548607],[-68.288605,63.298332],[-68.146118,63.150269],[-67.926392,63.141106],[-67.91278,63.083328],[-67.59999,63.08443],[-67.773056,63.025826],[-67.76973,62.95833],[-67.728058,62.95499],[-67.736938,62.995544000000116],[-67.68693,63.02665700000011],[-67.55305,63.048607000000125],[-67.49972,63.00777],[-67.6514,62.96749],[-67.672775,62.92332],[-67.47028,62.985268],[-67.398056,62.967209],[-67.19472,62.87027],[-66.957779,62.681107],[-66.733063,62.671661],[-66.77305599999988,62.63249200000013],[-66.60695,62.604996],[-66.425,62.44526700000011],[-66.35167,62.44499200000013],[-66.33057,62.379158],[-66.47,62.332214],[-66.318619,62.26471700000013],[-66.351944,62.334991000000116],[-66.20834399999988,62.332214],[-66.16722,62.25444],[-66.25723299999987,62.25972],[-66.05860899999988,62.22415900000011],[-65.993057,62.24416],[-65.93056,62.193321],[-66.132492,62.089432],[-66.110001,62.01749400000011],[-66.03583,61.95277],[-65.99221799999987,61.962769],[-65.946655,61.899162],[-66.066101,61.868599],[-66.287781,61.85833],[-66.54333,61.898880000000126],[-66.632767,61.918884],[-66.75557,62.011108],[-67.10472,62.03221100000014],[-67.46306,62.139435],[-68.56471,62.25193800000011],[-69.16,62.42527],[-69.43056,62.58416],[-69.44972,62.551102],[-69.59723,62.66249],[-69.55722,62.726379],[-69.4825,62.763611],[-69.72749,62.7799910000001],[-70.22917,62.748878000000104],[-70.49943,62.864441],[-70.88556,62.907211],[-70.84777799999989,62.947212],[-70.97484,62.989437],[-71.15666,62.989159],[-71.13667,63.0286],[-71.00738,63.04344],[-70.863892,63.112213],[-70.856384,63.139435],[-70.90889,63.17083],[-70.99028,63.14804800000013],[-70.98999,63.10249],[-71.02972,63.07194],[-71.13861,63.073326],[-71.232773,63.0019380000001],[-71.400558,63.051659],[-71.45473,63.101936],[-71.7139,63.17916100000013],[-71.77,63.256386],[-71.79555,63.38472],[-72.0764,63.398048],[-72.145554,63.44609800000011],[-71.615005,63.422493000000145],[-71.41167,63.485825],[-71.22972,63.604713],[-71.30695,63.61138],[-71.33168,63.56554],[-71.407501,63.56777],[-71.362503,63.61332700000014],[-71.407776,63.635551],[-71.44694,63.580826],[-71.57695,63.581665],[-71.581116,63.715],[-71.70056,63.696381],[-71.904449,63.80999],[-71.97055,63.79583],[-72.004181,63.75278],[-71.843887,63.755554],[-71.87944,63.68194],[-71.933884,63.649437],[-72.16945,63.748604],[-72.218887,63.673882],[-72.32417,63.67666],[-72.36362,63.75444],[-72.27,63.787216],[-72.215012,63.867767],[-72.238892,63.952492],[-72.364716,63.845543000000134],[-72.372772,63.778603],[-72.5264,63.787773],[-72.456116,63.8144380000001],[-72.63473,63.852493],[-72.59277299999985,64.022217],[-72.66472,64.080551],[-72.705841,64.009155],[-72.658615,63.98777],[-72.72,63.961105],[-72.75835,64.004166],[-72.940277,64.058594],[-72.86888,64.09915200000012],[-72.91167,64.16887],[-73.22389,64.31164600000011],[-73.27917,64.258606],[-73.380554,64.2686],[-73.415558,64.445816],[-73.16472,64.579712],[-73.16944899999987,64.609985],[-73.30278,64.658875],[-73.347504,64.634995],[-73.30333,64.538315],[-73.463333,64.50249],[-73.46722,64.612762],[-73.655563,64.631653],[-73.667496,64.577209],[-73.753891,64.535263],[-73.929443,64.602203],[-73.84473,64.501938],[-73.97277799999989,64.43026700000013],[-73.99943499999989,64.32805],[-74.06277,64.33442700000012],[-74.10221899999988,64.36748],[-74.12805,64.533051],[-74.06528,64.533051],[-74.05388,64.728592],[-74.120544,64.741928],[-74.24028,64.58027600000014],[-74.390289,64.56972],[-74.535278,64.622208],[-74.7041779999999,64.735535],[-74.5675,64.832764],[-74.476395,64.838882],[-74.54584,64.892212],[-74.64,64.90359500000011],[-74.74138,64.84748800000011],[-74.70666,64.800537],[-74.72639,64.77082800000011],[-74.98527,64.795822],[-74.47,64.55748],[-74.68582,64.37109],[-74.974716,64.416092],[-75.174713,64.492752],[-75.18721,64.473602],[-75.144165,64.453049],[-75.215561,64.428864],[-75.409164,64.5227660000001],[-75.82417,64.61165],[-75.84723,64.60443],[-75.818893,64.530823],[-75.631668,64.453598],[-75.70834,64.437759],[-75.773056,64.46748400000013],[-75.9225,64.481094],[-75.85777,64.468048],[-75.726944,64.367203],[-75.95056,64.399155],[-76.25362,64.357758],[-76.26445,64.319153],[-76.18971,64.301376],[-76.30055,64.27887],[-76.48473,64.266663],[-76.50667,64.29748500000011],[-76.591949,64.310532],[-76.73388699999987,64.290543],[-76.72166,64.238312],[-76.65472,64.209152],[-76.67055,64.184143],[-77.13834,64.289429],[-77.37999,64.2452550000001],[-77.434158,64.320267],[-77.65222,64.388046],[-77.679718,64.32111],[-77.74722,64.337769],[-77.83139,64.41249],[-78.18332,64.57249500000012],[-78.160553,64.690536],[-78.184433,64.73109],[-78.064438,64.849426],[-78.11722,64.876083],[-78.145279,64.95748900000012],[-77.973053,65.041367],[-77.31583,65.190536],[-77.513062,65.31888],[-77.46112099999988,65.37915],[-77.28751,65.367752],[-77.42166,65.46138],[-77.23805,65.469437],[-77.08667,65.407211],[-76.84999,65.42831],[-76.62694,65.39888000000012],[-75.76916,65.218872],[-75.73999,65.16832],[-75.52861,65.108871],[-75.424438,65.043869],[-75.42805,64.968323],[-75.519165,64.93692],[-75.667496,64.940811],[-75.59416,64.86026],[-75.46139,64.811646],[-75.37305,64.714996],[-75.28944,64.739975],[-75.37389,64.83305400000012],[-75.35722,64.8977660000001],[-75.469727,64.869431],[-75.5675,64.88361],[-75.38473,64.98193400000014],[-75.264175,64.966095],[-75.18693,65.101654],[-75.25917,65.102203],[-75.28,65.03526],[-75.360001,65.003876],[-75.51640299999985,65.138596],[-75.89056,65.26915],[-75.950287,65.318329],[-75.186661,65.251938],[-75.083618,65.286102],[-75.070847,65.330276],[-75.10805,65.39305100000013],[-74.524445,65.33332800000011],[-74.357773,65.3986],[-74.31139,65.463882],[-74.18277,65.525269],[-73.845276,65.53221100000013],[-73.73694,65.514709],[-73.73694,65.48776],[-73.6514,65.45471],[-73.50056,65.474426],[-73.66222,65.6586],[-73.70973,65.762497],[-74.05804,65.875534],[-74.444992,66.096939],[-74.46611,66.1519320000001],[-74.34222,66.225266],[-73.444153,66.551086],[-73.351944,66.649994],[-73.10861,66.72331],[-72.87389,66.93193],[-72.82417,67.029434],[-72.684998,67.076096],[-72.368607,67.11249],[-72.276108,67.16693],[-72.25834699999989,67.2480319999999],[-72.43639,67.47221400000011],[-72.485825,67.62303],[-72.597778,67.639709],[-72.67639,67.69386],[-72.58332799999987,67.75027],[-72.612503,67.790268],[-72.84389,67.850815],[-72.94444,67.92804],[-72.89612,68.01416],[-72.98111,68.13916],[-72.99388,68.212204],[-73.16112,68.22887],[-73.27111799999989,68.28194],[-73.49611,68.27554],[-73.35467,68.32922]]],[[[-124.43056,73.878586],[-124.51529,73.894989],[-124.55278,73.916931],[-124.420273,73.909149],[-124.43056,73.878586]]],[[[-99.80456,73.889099],[-99.23500099999988,73.73776],[-98.17999,73.80415],[-97.761948,73.911926],[-97.47139,73.857758],[-97.22362,73.856369],[-96.96221899999988,73.73858600000011],[-96.93277,73.6922],[-96.988892,73.624695],[-97.43611,73.52554],[-97.63806,73.5385890000001],[-97.668335,73.48332],[-97.60722,73.45471],[-97.41722,73.493317],[-97.19722,73.469711],[-97.150284,73.389984],[-97.171936,73.352768],[-97.64500399999986,73.318054],[-97.84138499999989,73.273315],[-97.86250299999989,73.23387100000014],[-97.983612,73.181091],[-98.450287,73.02026400000011],[-98.450562,72.874985],[-98.419998,72.858597],[-98.39778,72.90277100000014],[-98.22721899999988,72.98749],[-97.84695,73.0486],[-97.44249,72.999146],[-97.225006,72.93997200000011],[-97.265289,72.84887700000013],[-97.023056,72.73220800000013],[-97.179443,72.66748],[-97.196655,72.60443],[-97.08101,72.60592700000012],[-96.915558,72.67859],[-96.611938,72.746933],[-96.5175,72.714706],[-96.521942,72.674423],[-96.325562,72.488312],[-96.29834,72.415817],[-96.668335,72.309708],[-96.87193,72.32111],[-96.56111,72.275543],[-96.48306,72.113037],[-96.537216,72.07499700000011],[-96.866943,72.04109],[-96.672501,72.01277],[-96.4886,72.034988],[-96.52251,71.959152],[-96.76445,71.91499],[-96.70084,71.8999940000001],[-96.522781,71.93441800000011],[-96.49306,71.91415],[-96.591949,71.81081],[-96.74472,71.792206],[-96.73805,71.824997],[-96.79138,71.827774],[-96.983612,71.77582],[-97.16501,71.675537],[-97.505,71.611649],[-97.98805,71.661926],[-98.218063,71.64971900000012],[-98.35973,71.728043],[-98.3214,71.803314],[-98.20862,71.88443],[-98.267227,71.90416],[-98.450562,71.794144],[-98.49388,71.713882],[-98.037506,71.526657],[-98.19804,71.414703],[-98.46611,71.313309],[-98.72972,71.270538],[-98.829453,71.293869],[-98.960281,71.379974],[-99.23805,71.344986],[-99.46278,71.593048],[-99.578888,71.622757],[-99.67833,71.760544],[-99.84222,71.83499],[-100.10194,71.88472],[-100.31471,71.97998],[-100.63445,72.185532],[-100.88528,72.20776400000011],[-100.96777,72.174149],[-101.22055,72.33221400000012],[-101.46945,72.265549],[-101.63474,72.306931],[-101.776947,72.299713],[-101.88834,72.35859700000013],[-101.981316,72.47811100000013],[-102.465843,72.604706],[-102.74166899999989,72.724152],[-102.74944,72.81721],[-102.64667,72.864426],[-102.51306,73.02609300000012],[-102.1372219999999,73.086929],[-101.97084,73.070541],[-101.7411,72.924149],[-101.52167,72.87831100000011],[-101.40444899999989,72.78248600000012],[-101.41333,72.748322],[-101.2975,72.709991],[-100.91583,72.688034],[-100.70723,72.755829],[-100.41222,72.741928],[-100.31444,72.796371],[-100.357117,72.8591540000001],[-100.498894,72.95054600000014],[-100.45195,73.020538],[-100.356377,73.049423],[-100.30943,73.028046],[-100.3577729999999,73.010544],[-100.38138,72.949142],[-100.285278,72.873596],[-100.09639,72.886383],[-100.03139,72.934982],[-100.232224,73.13443000000012],[-100.382492,73.122757],[-100.44276,73.087204],[-100.60194,73.140823],[-100.58000199999987,73.173035],[-100.378326,73.28997800000013],[-100.03751,73.183868],[-99.77167,73.208038],[-100.0775,73.251389],[-100.38417099999987,73.396378],[-100.387787,73.338593],[-100.56166,73.28665200000012],[-100.88945,73.264435],[-101.30499,73.361649],[-101.31723,73.401657],[-101.58084,73.450272],[-101.621384,73.49026500000014],[-101.42749,73.5522],[-101.28084,73.552475],[-101.217216,73.60416],[-100.909439,73.59971600000011],[-100.67278,73.464432],[-100.430557,73.40694],[-100.429718,73.430267],[-100.61,73.50305200000014],[-100.543877,73.55636600000014],[-100.551666,73.59888],[-100.91139,73.62276],[-100.85361,73.662201],[-101.04695,73.67303500000014],[-101.120003,73.727203],[-100.9974979999999,73.802475],[-100.554169,73.85471],[-100.06305,73.764999],[-99.86583,73.837769],[-99.86978,73.870201],[-100.13667,73.827484],[-100.29973,73.86026],[-100.252792,73.905258],[-99.98111,73.945816],[-99.800827,73.93166],[-99.80456,73.889099]]],[[[-89.988892,73.98831200000012],[-90.21777,74.00444],[-90.285,74.02970900000014],[-89.99194,74.06667],[-89.901947,74.037766],[-89.988892,73.98831200000012]]],[[[-98.91861,73.806091],[-99.14084,73.81805400000013],[-99.4375,73.896942],[-98.93805,73.99859600000013],[-98.03999,74.10582],[-97.73721,74.117477],[-97.637787,74.075546],[-97.76363,73.98831200000012],[-98.145,73.873596],[-98.91861,73.806091]]],[[[-92.63806199999988,74.10304300000013],[-92.296951,74.014435],[-92.272781,73.984421],[-92.329727,73.94247],[-92.132492,73.946365],[-92.09416,73.989151],[-91.92555,74.01277],[-91.570847,74.025818],[-91.065002,74.0061],[-90.19444,73.899719],[-90.58139,73.657761],[-91.180557,73.3458250000001],[-91.25306699999987,73.26915],[-91.642776,73.021103],[-91.818893,72.862198],[-92.0958399999999,72.743042],[-92.39334,72.70721],[-93.337784,72.8077550000001],[-94.315552,72.76304600000014],[-94.332779,72.731934],[-94.297501,72.713318],[-94.23639,72.734985],[-94.0014,72.704163],[-93.839447,72.717209],[-93.79834,72.70221],[-93.81723,72.64221],[-93.568619,72.57083100000011],[-93.463333,72.462204],[-93.628052,72.341934],[-93.81973,72.307205],[-94.014175,72.16387900000012],[-94.080841,72.06694],[-94.198883,72.052765],[-94.18838,72.03093000000013],[-94.060822,72.03526],[-94.02972,71.99942],[-94.06305,71.978317],[-94.44972,72.02331500000014],[-95.12193,71.966095],[-95.213333,71.994431],[-95.19665,72.106644],[-94.752228,72.15332],[-95.17111,72.13916],[-95.21472,72.205261],[-95.13333099999987,72.460266],[-95.200287,72.524429],[-95.3161,72.539703],[-95.346664,72.58749],[-95.31332,72.601089],[-95.36444099999989,72.64332600000012],[-95.60222,72.70221],[-95.67361,72.813873],[-95.645844,72.912766],[-95.68332,73.075821],[-95.5825,73.12776200000013],[-95.575012,73.164993],[-95.60054,73.283905],[-95.65083,73.325272],[-95.61362,73.342758],[-95.683884,73.450272],[-95.700287,73.553864],[-95.61256,73.610977],[-95.676086,73.66506],[-95.67305,73.723312],[-95.29973,73.771103],[-94.956665,73.65914900000013],[-94.61806,73.651382],[-94.883331,73.6922],[-95.116104,73.80664100000013],[-94.958054,73.83194],[-94.9825,73.84553],[-95.15417,73.823608],[-95.32778899999988,73.909149],[-95.31916799999988,73.96415700000011],[-95.24527,74.010269],[-94.73222,74.095261],[-93.95195,74.138885],[-93.75835,74.09693900000012],[-93.730835,74.15416],[-93.515015,74.173035],[-92.63806199999988,74.10304300000013]]],[[[-98.65723,74.299423],[-98.81027,74.298325],[-98.86472,74.304703],[-98.630829,74.342484],[-98.511124,74.318329],[-98.65723,74.299423]]],[[[-120.149986,74.272491],[-119.60916,74.23332],[-119.6725,74.165817],[-119.833618,74.082764],[-119.74481,74.025513],[-119.737778,74.05802900000013],[-119.50084,74.213882],[-119.14862,74.212204],[-119.06528,74.103317],[-119.147232,74.062195],[-119.18721,73.99414100000013],[-119.1675,73.98719800000015],[-118.97305,74.00027],[-118.79028,74.107758],[-118.881104,74.17804],[-118.67389,74.219986],[-118.101936,74.27638200000013],[-117.422234,74.226929],[-116.785004,74.059708],[-116.32778899999987,73.867752],[-115.60388,73.65221],[-115.402222,73.568329],[-115.315,73.47971],[-115.83473,73.339981],[-116.45612,73.257492],[-117.0264,73.106934],[-117.46611,73.03637700000013],[-118.366096,72.82443200000012],[-118.496109,72.76361],[-118.75307,72.73692],[-119.13751,72.632477],[-119.309433,72.438873],[-119.3325,72.38721],[-119.31111,72.352203],[-119.801392,72.221375],[-120.251106,72.258606],[-120.25862,72.234146],[-120.145,72.1436],[-120.19415,72.07832300000013],[-120.44915799999988,71.94693000000012],[-120.379173,71.883881],[-120.42639,71.744431],[-120.37694,71.688034],[-120.54333,71.516663],[-120.87721,71.44136000000015],[-121.42917,71.378311],[-121.60306,71.399429],[-121.53195,71.417755],[-121.56973,71.45166],[-121.74388,71.453323],[-122.1216579999999,71.26721],[-122.605003,71.174988],[-122.781113,71.0861],[-123.095,71.079987],[-123.259453,71.12970000000013],[-123.42999,71.2369230000001],[-123.66583,71.49636800000013],[-124.013344,71.685806],[-124.678879,71.8008120000001],[-125.25362,71.95026],[-124.953888,71.938034],[-124.94833,71.961105],[-125.7614,71.950821],[-125.97362,71.960541],[-125.99777,71.973602],[-125.7788769999999,71.986374],[-125.724716,72.051926],[-125.73944099999989,72.11026],[-125.714447,72.15749],[-125.51445,72.29108],[-125.43666,72.409134],[-125.29111,72.487183],[-125.02806,72.566071],[-124.94055,72.70248400000014],[-125.026108,72.821091],[-124.893341,72.87387100000012],[-124.47583,72.9272],[-124.497223,72.977203],[-124.7261,73.00665300000014],[-124.86888,73.080551],[-124.59916699999984,73.227768],[-124.43306,73.42137],[-124.29333,73.481659],[-124.16055,73.486923],[-124.07001,73.546097],[-124.03889,73.58692900000011],[-124.07861299999989,73.62276],[-124.06778,73.65470900000014],[-123.83389,73.700272],[-123.774719,73.7644350000001],[-123.847778,73.82527],[-124.21749899999986,73.872757],[-124.41167,74.056366],[-124.434158,74.13443],[-124.600281,74.268326],[-124.69304699999986,74.26944],[-124.770844,74.340271],[-123.63834,74.42137100000014],[-122.337509,74.4711],[-121.564163,74.551086],[-121.13612,74.506943],[-121.0111239999999,74.47221400000012],[-120.97556,74.42970300000013],[-120.149986,74.272491]]],[[[-97.652786,74.455826],[-97.792496,74.485809],[-97.445831,74.626083],[-97.25696,74.590546],[-97.38751,74.50638],[-97.652786,74.455826]]],[[[-95.31111,74.497757],[-95.66167,74.523605],[-95.866394,74.574158],[-95.653885,74.64221],[-95.5175,74.630264],[-95.244995,74.527771],[-95.31111,74.497757]]],[[[-97.175827,75.244141],[-97.23195,75.25444],[-97.275284,75.347488],[-97.15306,75.315262],[-97.175827,75.244141]]],[[[-103.9175029999999,75.054977],[-104.22917,75.018051],[-104.459442,75.02887],[-104.84723,75.109146],[-104.85722,75.164703],[-104.74472,75.24609],[-104.768623,75.281937],[-104.67361,75.34166],[-104.42805,75.42082],[-104.18222,75.43553],[-103.81055,75.34860200000014],[-103.58307,75.164703],[-103.9175029999999,75.054977]]],[[[-100.17223,75.601379],[-100.15778,75.58499100000012],[-100.454178,75.546371],[-100.47972,75.545822],[-100.29361,75.584427],[-100.88556,75.545822],[-101.039436,75.56721500000015],[-100.51112,75.619141],[-100.17223,75.601379]]],[[[-94.363892,75.59082000000012],[-93.4875,75.256653],[-93.529175,75.176376],[-93.406387,74.88361],[-93.46777,74.70305],[-93.71722399999987,74.636932],[-94.64334,74.623596],[-95.08,74.680817],[-95.10445,74.74414100000013],[-95.28332,74.798035],[-95.4575,74.79832],[-95.48306,74.783325],[-95.462219,74.75665300000014],[-95.547226,74.76111],[-95.70557,74.82998700000012],[-95.864166,74.826096],[-96.13528399999988,74.95109600000012],[-96.05638,75.01027],[-96.07417299999985,75.023605],[-96.142227,75.017761],[-96.209732,74.91554300000013],[-96.268341,74.90387],[-96.403061,74.92581200000012],[-96.386124,74.97387700000013],[-96.320557,74.97943],[-96.3311159999999,75.00471500000015],[-96.616943,74.99109],[-96.60472,75.063309],[-96.45639,75.19693],[-95.90334,75.289978],[-96.061935,75.315262],[-95.829781,75.3725890000001],[-96.03332,75.401093],[-96.175278,75.37942],[-96.16194,75.39554],[-95.97417,75.436096],[-95.81438,75.400322],[-95.682495,75.408325],[-95.836945,75.45359800000011],[-95.749725,75.51332100000013],[-94.91777,75.637207],[-94.363892,75.59082000000012]]],[[[-95.91,75.56026],[-96.220276,75.455551],[-96.451,75.529991],[-96.41167,75.54882],[-96.441833,75.555664],[-96.5536039999999,75.50888],[-96.511948,75.455826],[-96.65834,75.388596],[-96.8511,75.35026600000015],[-96.932495,75.376083],[-97.05305,75.492203],[-96.469383,75.588425],[-96.379715,75.651093],[-95.91,75.56026]]],[[[-96.954453,75.59553],[-97.005,75.604431],[-96.71584,75.659988],[-96.84917,75.613312],[-96.954453,75.59553]]],[[[-96.57917799999989,75.7369230000001],[-96.71722,75.7397],[-96.66083,75.789429],[-96.455841,75.817764],[-96.45917,75.789429],[-96.57917799999989,75.7369230000001]]],[[[-111.79999,75.839157],[-111.922501,75.85277],[-111.57861,75.879974],[-111.64806,75.851929],[-111.79999,75.839157]]],[[[-122.340843,75.86276],[-122.39862,75.85942100000011],[-122.695541,75.908035],[-122.353058,75.914429],[-122.32417,75.899719],[-122.340843,75.86276]]],[[[-121.09306,75.726089],[-121.28833,75.752777],[-121.02944899999989,75.81137100000011],[-120.99833699999986,75.867752],[-121.042503,75.905548],[-120.87778,75.93609600000012],[-120.87111,75.87553400000012],[-120.921112,75.80331400000011],[-121.09306,75.726089]]],[[[-95.79277,75.899719],[-95.80943,75.89471400000014],[-95.899994,75.953873],[-95.735825,75.96832300000011],[-95.79277,75.899719]]],[[[-94.405563,75.750824],[-94.7775,75.7686],[-94.82223,75.794144],[-94.904449,75.9369200000001],[-94.48195,75.974426],[-94.42027,75.86859],[-94.28778,75.783875],[-94.405563,75.750824]]],[[[-103.137787,75.74275200000011],[-103.38277,75.765549],[-102.986938,75.909424],[-102.19138,75.9897],[-101.98332199999987,75.945816],[-102.39417,75.880814],[-102.49695,75.795532],[-102.59029,75.77054],[-103.137787,75.74275200000011]]],[[[-122.81917,76.060532],[-122.687767,76.059982],[-122.630829,76.04664600000012],[-122.8925,76.013611],[-122.81917,76.060532]]],[[[-102.39,76.083603],[-102.3325,76.065536],[-102.319458,76.024704],[-103.655563,75.888596],[-103.901947,75.8986],[-103.97166,75.9383090000001],[-102.86833,76.06694],[-102.39,76.083603]]],[[[-118.316391,75.572495],[-118.60472,75.496368],[-118.928047,75.562759],[-119.19695,75.562485],[-119.408051,75.60582000000011],[-118.58139,75.92499],[-118.15222,75.971375],[-118.105003,76.02388],[-117.93361,76.047485],[-117.77888,76.108597],[-117.4639,76.083054],[-117.57306,75.981934],[-117.83833,75.859985],[-118.01584,75.69942],[-118.263634,75.616928],[-118.316391,75.572495]]],[[[-78.92639,75.875809],[-78.87944,75.844147],[-79.31946,75.873596],[-79.45862,75.810806],[-79.75222799999989,75.878586],[-79.27278,76.02805],[-79.09138499999989,76.114426],[-78.805832,76.093048],[-78.845551,76.047485],[-79.176392,75.952774],[-79.14029,75.91887],[-78.92639,75.875809]]],[[[-94.843613,76.122208],[-94.831116,76.096649],[-94.889175,76.058029],[-95.006668,76.047485],[-95.147232,76.11693],[-94.843613,76.122208]]],[[[-81.327789,76.147217],[-81.45249899999988,76.15582],[-81.46251,76.158875],[-81.34889,76.187485],[-81.201401,76.177765],[-81.327789,76.147217]]],[[[-102.530838,76.223312],[-102.58056599999986,76.152481],[-102.73666,76.0986],[-103.34222,76.036652],[-103.962219,76.03471400000012],[-103.86945,76.047485],[-104.391113,76.078323],[-104.48277,76.14221],[-104.272507,76.21609500000011],[-103.110001,76.304703],[-102.765556,76.311646],[-102.530838,76.223312]]],[[[-89.39889,76.435532],[-89.61362,76.440811],[-89.62555,76.444977],[-89.53307,76.47665400000011],[-89.37805,76.444138],[-89.39889,76.435532]]],[[[-83.962784,76.42638],[-84.109436,76.44442700000013],[-84.13945,76.507217],[-83.90805,76.464996],[-83.962784,76.42638]]],[[[-104.053879,76.563034],[-103.87888,76.573608],[-103.85944,76.607208],[-103.78751,76.62052900000015],[-103.58195,76.54776],[-103.587784,76.52499],[-103.00446,76.429977],[-103.281387,76.33692900000011],[-103.554443,76.310257],[-104.33501,76.318604],[-104.40472,76.333328],[-104.32806,76.363876],[-104.391113,76.461105],[-104.448883,76.491089],[-104.563889,76.48220800000013],[-104.665833,76.551651],[-104.637222,76.60331700000012],[-104.351936,76.660263],[-104.05333,76.664703],[-103.92250099999988,76.63361],[-104.053879,76.563034]]],[[[-98.41806,76.66832],[-98.41972,76.622482],[-98.180557,76.586929],[-98.401947,76.591934],[-98.357773,76.56553600000012],[-97.69333,76.487762],[-97.6625059999999,76.419434],[-97.727219,76.39554],[-97.7614,76.33499],[-97.7261,76.27832],[-97.50917,76.188873],[-97.49444599999987,76.138885],[-97.588333,76.080826],[-97.65639,75.97276],[-97.597778,75.84693900000013],[-97.664169,75.79332],[-97.9386,75.741364],[-97.38667,75.68275],[-97.36916,75.65332],[-97.411942,75.61554],[-97.422501,75.50638],[-97.378326,75.43414300000012],[-97.28084,75.39694],[-97.46916,75.42276],[-97.496658,75.4785920000001],[-97.74416,75.571106],[-97.8275529999999,75.545815],[-97.74804699999986,75.48442100000011],[-97.75639,75.462204],[-97.83583,75.460815],[-97.90834,75.51332100000013],[-98.043335,75.48137],[-97.77472,75.42303500000014],[-98.032387,75.40087900000015],[-97.8766629999999,75.36499],[-98.1077729999999,75.371918],[-98.16528,75.334152],[-98.101395,75.291931],[-97.873886,75.270264],[-97.743607,75.2249910000001],[-97.75973,75.188583],[-97.597778,75.164703],[-97.56778,75.152481],[-97.5825,75.137497],[-97.86250299999989,75.111099],[-98.024719,75.16249],[-98.025833,75.210815],[-98.09862,75.2227630000001],[-98.14555,75.159988],[-97.966949,75.10416],[-97.93889,75.06972],[-97.949997,75.021103],[-99.406113,74.99332],[-99.387512,75.037766],[-99.272232,75.115814],[-99.308044,75.12248],[-99.5,75.02054],[-99.426392,74.991364],[-99.60278,74.9711],[-100.145844,74.99109],[-100.38945,75.031097],[-100.39806,75.1586],[-100.54695,75.199417],[-100.438599,75.226654],[-99.987778,75.236099],[-100.406113,75.26666300000011],[-100.25723,75.31331],[-100.52306,75.293045],[-100.7788769999999,75.35054],[-100.42833,75.38053900000011],[-100.723053,75.43248],[-100.697769,75.436371],[-100.011948,75.46138],[-100.306953,75.471649],[-100.12999,75.52581800000011],[-99.845,75.540817],[-100.039436,75.55415],[-99.66777,75.611099],[-99.86305,75.614426],[-99.8175,75.655258],[-98.89,75.695251],[-98.95028699999989,75.70999],[-99.74083,75.690811],[-101.2255629999999,75.5874940000001],[-101.4955369999999,75.601929],[-102.534157,75.511383],[-102.67305,75.514709],[-102.883904,75.619141],[-102.701401,75.62886],[-102.68916,75.670532],[-102.53889,75.721375],[-102.00917,75.70305],[-102.09167,75.721924],[-102.120003,75.776382],[-102.09361299999988,75.791092],[-102.371658,75.79582],[-102.29028,75.85720800000013],[-102.16306,75.87886],[-101.86444,75.902206],[-101.55638099999987,75.82111],[-101.438599,75.75555400000013],[-101.254997,75.744705],[-101.18222,75.77970900000014],[-101.34778,75.7749940000001],[-101.32362,75.80748],[-101.36389,75.8477630000001],[-101.526947,75.858322],[-101.57918,75.9086],[-101.31583,76.01915],[-101.678329,75.979706],[-101.8325,76.016663],[-101.907227,76.078598],[-101.88861,76.11914100000011],[-101.761124,76.17415],[-101.38779,76.25194],[-101.749733,76.21582000000012],[-102.165833,76.238312],[-102.058037,76.259155],[-102.001106,76.352768],[-102.050827,76.39804100000015],[-101.88583,76.444977],[-101.31583,76.41443],[-101.058327,76.3269350000001],[-101.09389,76.283051],[-101.004463,76.23776],[-100.43999,76.105255],[-100.047234,75.913879],[-99.88834,75.886383],[-99.439438,75.97053],[-99.863327,75.935532],[-100.0775,76.03887900000012],[-100.15279,76.13247700000011],[-100.031113,76.15554800000012],[-99.680832,76.118591],[-99.414444,76.158325],[-99.71695,76.139709],[-99.94888,76.18969700000014],[-100.438889,76.212494],[-100.51112,76.25972000000013],[-99.844727,76.28027],[-100.301666,76.38275],[-100.69444,76.374985],[-100.982498,76.50499],[-100.737213,76.5310970000001],[-100.65306,76.576385],[-100.31889,76.635544],[-99.83778399999989,76.6086],[-99.684433,76.63333100000011],[-99.569458,76.62052900000015],[-99.184433,76.41581700000012],[-99.079727,76.397217],[-99.133896,76.45665],[-98.98083,76.471649],[-98.925827,76.436096],[-98.846115,76.436096],[-98.86528,76.469147],[-99.05055,76.53610200000014],[-99.02722,76.60109],[-98.589172,76.611374],[-98.488327,76.650818],[-98.857773,76.66387900000012],[-98.8214,76.67693],[-98.41806,76.66832]]],[[[-99.99695,76.734421],[-99.64639,76.74803],[-99.43056,76.69942],[-99.58168,76.670258],[-100.1286,76.721924],[-99.97223,76.747208],[-99.99695,76.734421]]],[[[-120.883621,76.7397],[-120.970001,76.71666],[-121.18472,76.731094],[-120.978333,76.755264],[-120.883621,76.7397]]],[[[-101.38055,76.55359],[-101.68832,76.58638],[-100.74388,76.75332600000013],[-100.248894,76.734711],[-101.38055,76.55359]]],[[[-89.93443,76.47665400000011],[-90.184433,76.515274],[-90.59999,76.746643],[-90.474716,76.799713],[-90.02528,76.83916],[-89.82584,76.806091],[-89.67389,76.73749],[-89.729446,76.673309],[-89.83721899999989,76.66304000000014],[-89.862778,76.60387],[-89.79445,76.533325],[-89.67139,76.504166],[-89.93443,76.47665400000011]]],[[[-108.651108,76.813599],[-108.68832,76.766098],[-108.50389,76.7561],[-108.43805,76.708038],[-108.54472,76.64637800000014],[-108.727219,76.63804600000014],[-108.61055,76.569717],[-108.55804,76.4086],[-108.318619,76.39415],[-108.0775,76.280548],[-108.408623,76.147766],[-108.39612,76.04609700000015],[-107.838333,76.061371],[-107.632492,75.99109],[-107.930283,75.885544],[-108.031113,75.822495],[-108.020279,75.78082300000011],[-107.87361,75.79803500000014],[-107.739441,75.87915],[-107.18666,75.90387],[-107.08,75.892761],[-107.098053,75.82304],[-106.89667,75.72026100000011],[-106.88028,75.76582],[-106.83057,75.785812],[-106.61583,75.797211],[-106.888901,75.83471700000013],[-106.89612,75.941086],[-106.86972,75.964157],[-106.6389,76.05304000000012],[-106.33667,76.054703],[-105.837219,75.99693],[-105.60638,75.934708],[-105.453339,75.84166],[-105.391953,75.63888500000013],[-105.49638,75.55525200000011],[-105.751404,75.4897],[-105.59277,75.467484],[-105.66055,75.34971600000011],[-105.866943,75.275818],[-105.93776699999988,75.214432],[-105.872498,75.171921],[-105.876938,75.145828],[-106.01889,75.133881],[-106.07945299999989,75.096939],[-105.99416,75.062195],[-106.01112,75.050812],[-106.72556,75.002213],[-106.93056,74.933594],[-107.19722,74.910812],[-107.66251,74.96666],[-107.72389,75.016388],[-107.68138,75.04248],[-107.69499,75.075272],[-107.77333,75.0961],[-107.74388,75.037201],[-107.895,75.003601],[-107.94194,74.930817],[-108.37305,74.910538],[-108.80722,74.983597],[-108.5114,74.97554],[-108.6514,75.05386],[-108.8325,75.069992],[-109.00111,75.00499000000013],[-109.364166,74.939697],[-109.52278,74.863312],[-110.34555099999989,74.84693900000013],[-110.40417,74.82666],[-110.39667,74.799423],[-110.59,74.778046],[-110.59138,74.724152],[-110.8075,74.657486],[-111.43056,74.560532],[-111.677223,74.493317],[-112.753067,74.401382],[-113.69638,74.446091],[-114.29834,74.602768],[-114.44777,74.674698],[-114.01028,74.790543],[-113.282784,74.848602],[-113.151947,74.92499],[-112.91111799999987,74.970825],[-112.0150069999999,75.00249],[-111.75334,74.981659],[-111.551392,75.01138300000014],[-111.029167,75.171097],[-110.91278,75.23387100000014],[-111.06806899999987,75.27192700000012],[-111.23083,75.26416],[-111.33417,75.197479],[-111.577217,75.1436000000001],[-111.787216,75.16666],[-112.39056,75.123032],[-112.47084,75.146378],[-112.295837,75.202774],[-112.40889,75.24081400000011],[-112.461937,75.218872],[-112.432503,75.1869200000001],[-112.5925,75.181656],[-112.636948,75.21054100000015],[-112.58583,75.23915],[-112.665833,75.27859500000011],[-112.735817,75.20332300000013],[-112.6886,75.171921],[-112.699997,75.13832100000013],[-112.806953,75.115814],[-113.917503,75.0535890000001],[-113.97305,75.09637],[-113.93138,75.189148],[-113.80583,75.32666000000012],[-113.34056,75.413315],[-113.471123,75.42776],[-113.902222,75.3744200000001],[-113.99222,75.448318],[-114.06500199999986,75.46609500000011],[-114.09389,75.410812],[-114.040558,75.362198],[-114.17083699999989,75.226929],[-114.284729,75.23498500000011],[-114.51279,75.314697],[-114.61528,75.274994],[-114.44304699999986,75.25722],[-114.297234,75.17915],[-114.395,75.09054600000013],[-115.050827,74.9611],[-115.19527,74.989975],[-115.225281,75.06415],[-115.17278,75.107758],[-115.25696,75.179977],[-115.27917,75.140823],[-115.404167,75.098877],[-115.62389,75.121368],[-115.53751,75.02721],[-115.690552,74.964157],[-116.1630629999999,75.04027],[-116.27917,75.099426],[-116.24695,75.205261],[-116.56055,75.17915],[-116.71722,75.11665],[-117.41916,75.18248],[-117.683884,75.25305200000014],[-117.66194,75.298035],[-117.53667,75.361649],[-117.24055,75.473602],[-116.02194,75.484985],[-114.99973,75.690811],[-115.6675,75.64721700000013],[-116.3475,75.559143],[-117.194992,75.57361],[-117.25111,75.597488],[-117.06444,75.7141570000001],[-116.85056,75.79304500000012],[-116.03722,75.809708],[-115.74944,75.85498],[-115.59445,75.833328],[-114.98083,75.85304300000011],[-114.817497,75.880814],[-114.798607,75.892212],[-114.88167,75.90748600000012],[-116.15083,75.8647],[-116.623894,75.88192700000013],[-116.73416,75.922485],[-116.69972,75.95999],[-116.461937,75.9749910000001],[-116.52834,76.02748],[-116.70557,76.039154],[-116.641388,76.11331200000012],[-116.296112,76.188583],[-114.66251,76.160538],[-115.272232,76.23027],[-115.82722,76.239426],[-115.92500299999989,76.286652],[-115.9014,76.349991],[-115.514717,76.45138500000013],[-115.02139,76.4747],[-114.89972699999986,76.51694],[-114.14806,76.45138500000013],[-114.09111,76.388885],[-114.12944,76.31192],[-114.05972,76.217758],[-113.98332,76.190262],[-113.32333,76.262772],[-112.999161,76.267487],[-112.750557,76.200546],[-112.453888,76.176376],[-112.425,76.16775500000011],[-112.528061,76.103867],[-112.41333,76.04248],[-112.04333,75.99887100000012],[-111.72778,75.921646],[-112.075012,75.873871],[-112.22556,75.811096],[-111.45195,75.836655],[-111.35388,75.7185970000001],[-111.407227,75.61499000000015],[-111.24722,75.518051],[-110.49554,75.569153],[-110.33389,75.539154],[-109.253891,75.51416000000012],[-108.89944,75.47637900000012],[-108.924438,75.52388],[-108.836121,75.612762],[-108.8269499999999,75.686646],[-109.21001,75.76277],[-109.62944,75.799988],[-109.66362,75.870819],[-109.90778,75.849991],[-110.05556,75.8905489999999],[-109.65666,75.948029],[-109.42139,76.035812],[-109.313606,76.109146],[-109.7,76.218872],[-109.882767,76.233871],[-109.89667,76.193588],[-110.201683,76.285538],[-110.372772,76.29443],[-110.39306599999986,76.391937],[-110.383904,76.42747500000013],[-109.718338,76.515274],[-109.8472289999999,76.532486],[-109.64667,76.59332300000011],[-109.50974299999989,76.708328],[-109.30278,76.79693600000013],[-108.91888,76.80942],[-108.773621,76.857758],[-108.651108,76.813599]]],[[[-97.04527,76.79776],[-97.1886,76.82276900000011],[-97.20084,76.85748],[-96.99722,76.813309],[-97.04527,76.79776]]],[[[-113.46611,76.766388],[-113.6525,76.70444],[-114.05472,76.703598],[-114.87582,76.770828],[-114.606377,76.865814],[-113.885559,76.891663],[-113.49805,76.83332800000011],[-113.46611,76.766388]]],[[[-109.0661,76.900543],[-109.229172,76.90694],[-109.30777,76.92804],[-109.179443,76.93248],[-109.0661,76.900543]]],[[[-97.25639,76.96748400000013],[-97.335007,76.968048],[-97.47305,76.980545],[-97.243057,77.037491],[-97.09222,77.010818],[-97.25639,76.96748400000013]]],[[[-95.65973,77.058868],[-95.41777,77.056931],[-95.16833,76.994141],[-94.5264,76.969437],[-94.23889,76.8894350000001],[-94.08168,76.890274],[-93.9436,76.93387],[-93.739166,76.920822],[-93.17972,76.74109],[-93.174438,76.67499],[-93.30666,76.546646],[-93.651947,76.44165],[-93.54833999999988,76.386108],[-93.45695,76.40359500000011],[-93.576401,76.426651],[-93.35722,76.470535],[-93.04639,76.616089],[-92.36861,76.594437],[-91.938599,76.66832],[-91.41055,76.6891480000001],[-90.98611,76.649155],[-90.81778,76.593597],[-90.5825,76.565262],[-90.50307,76.531372],[-90.468063,76.473038],[-90.63834,76.455826],[-91.37388599999986,76.51111],[-91.566666,76.498871],[-91.4025,76.45749],[-90.9911,76.447754],[-89.292496,76.296097],[-89.20862,76.260818],[-89.19860799999987,76.225266],[-89.58833,76.16582],[-90.45584,76.16721],[-90.04861,76.132751],[-90.08528099999988,76.1244200000001],[-91.11221299999988,76.19192],[-91.61362,76.26221],[-91.332779,76.214157],[-91.33667,76.17859],[-91.271942,76.15582],[-90.665009,76.11219800000015],[-90.84889,76.060806],[-90.54834,76.09137],[-90.190552,76.061096],[-90.301666,76.032486],[-91.16083,76.018051],[-90.9386,75.951385],[-91.12944,75.9086],[-91.12999,75.839157],[-90.793884,75.994705],[-90.429443,75.96832300000011],[-90.52611,75.93054],[-90.52999899999986,75.898331],[-90.50473,75.89526],[-90.339447,75.96832300000011],[-90.118057,75.94192],[-90.060272,76.004715],[-90.015015,76.01026900000011],[-89.92972,76.004715],[-89.90916,75.965],[-89.6875,75.899994],[-89.778885,75.831665],[-89.77501,75.7874910000001],[-89.69249,75.79637100000012],[-89.58751,75.859146],[-89.172775,75.78054800000012],[-89.16055,75.75583],[-89.262787,75.62776],[-89.64917,75.61554],[-89.76528899999988,75.575546],[-89.542496,75.570541],[-89.706955,75.55748],[-89.57667,75.54776],[-89.431671,75.584427],[-89.21722,75.58499100000012],[-89.099731,75.484146],[-88.95056,75.42970300000013],[-88.76889,75.434708],[-88.75,75.474991],[-88.865829,75.586105],[-88.738892,75.679428],[-88.203613,75.5310970000001],[-88.30583199999988,75.492203],[-88.228882,75.4711],[-87.7514,75.57666],[-87.66139,75.56721500000015],[-87.495544,75.485809],[-87.60638,75.449707],[-87.53361499999988,75.44609],[-87.41833499999989,75.479706],[-87.46666,75.521103],[-87.46278,75.563034],[-87.3811,75.609421],[-87.251114,75.621094],[-86.807495,75.479156],[-86.58389299999988,75.474701],[-86.36555,75.423309],[-86.61528,75.36554],[-86.54472,75.359146],[-86.17,75.418594],[-85.680557,75.408035],[-86.154449,75.50082],[-85.90861,75.54387],[-85.329178,75.56109600000013],[-85.039169,75.657761],[-84.4974979999999,75.631653],[-84.65111,75.6436],[-84.66362,75.686096],[-84.299164,75.702774],[-83.87815,75.818962],[-83.7225,75.822495],[-83.69804,75.814423],[-83.752228,75.801376],[-83.12361,75.734421],[-82.32722,75.836929],[-81.53694,75.809418],[-81.212509,75.771378],[-81.22084,75.704712],[-81.27112,75.65138200000013],[-80.48056,75.651093],[-79.94861,75.534149],[-80.358337,75.4586],[-79.92917,75.479706],[-79.5747219999999,75.449997],[-79.682495,75.4308170000001],[-79.4886,75.36249],[-79.611938,75.298325],[-79.443085,75.28019],[-79.571121,75.199142],[-79.92944299999988,75.140549],[-79.97416699999985,75.089981],[-80.440552,75.03804],[-80.17389,74.982483],[-80.26611,74.94664],[-79.795273,75.02748],[-79.61389,75.019989],[-79.505,74.99832],[-79.555557,74.987198],[-79.333618,74.89444],[-79.930557,74.813309],[-80.253067,74.87082],[-80.32167,74.937759],[-80.416107,74.88888500000013],[-80.097778,74.820267],[-80.19138,74.698029],[-80.14667,74.626923],[-80.231674,74.578049],[-81.21916,74.571381],[-81.81082,74.45694],[-82.914169,74.549149],[-83.07973,74.630264],[-83.123886,74.684982],[-83.10777,74.748032],[-83.023056,74.78054800000012],[-83.08168,74.818054],[-83.248886,74.823608],[-83.5114,74.9016570000001],[-83.56055,74.88721],[-83.518616,74.839432],[-83.318893,74.77499],[-83.47444,74.57971],[-83.611664,74.540817],[-83.85527,74.55081200000012],[-84.28555,74.503601],[-84.899445,74.503326],[-84.983063,74.570541],[-84.95084,74.67276],[-84.99055,74.698029],[-85.07251,74.64109800000011],[-85.04472,74.612198],[-85.04361,74.52331],[-85.214447,74.491928],[-85.36362,74.501938],[-85.37027,74.552475],[-85.52722199999988,74.68887300000011],[-85.54999,74.681931],[-85.48029,74.5372],[-85.604172,74.49582],[-86.12083,74.48221],[-86.082779,74.55525],[-86.19749,74.615265],[-86.24055,74.596939],[-86.24472,74.52388],[-86.42332,74.47887],[-86.69110099999988,74.54414400000013],[-86.78528,74.61692800000014],[-86.797226,74.543594],[-86.6936,74.468048],[-87.270279,74.468323],[-87.35278,74.49525],[-87.669998,74.459991],[-88.49694799999986,74.497757],[-88.571121,74.54999],[-88.56082,74.59304800000011],[-88.347504,74.784714],[-88.54777,74.907761],[-88.743607,74.783875],[-88.75334,74.71415700000011],[-88.848343,74.65914900000013],[-88.91722,74.71971100000013],[-88.90972899999986,74.777771],[-89.097778,74.836105],[-89.01112,74.78082],[-89.047501,74.722488],[-89.271118,74.754715],[-89.09584,74.68803],[-89.13194,74.61137400000013],[-89.48972,74.545532],[-89.94611,74.53221100000013],[-90.60722,74.616379],[-90.73167,74.664154],[-90.751114,74.716385],[-90.89561,74.681137],[-91.02472,74.702774],[-90.758057,74.8311],[-90.740829,74.84748800000011],[-90.772232,74.88499500000012],[-90.85388,74.87525900000014],[-91.10194,74.75109900000012],[-91.22583,74.733597],[-91.10666,74.625809],[-91.539993,74.646378],[-91.684998,74.67776500000014],[-91.62193,74.700272],[-91.65167,74.71998600000012],[-91.851105,74.698868],[-91.89223,74.75082],[-92.057495,74.796646],[-92.00806,74.863602],[-92.01529,74.9136],[-92.04805,74.958328],[-92.164169,74.99803],[-92.228882,75.07111],[-92.01251,75.095261],[-92.055557,75.150269],[-92.325562,75.151657],[-92.490829,75.213608],[-92.38834,75.441925],[-92.210281,75.551376],[-92.005,75.594986],[-92.00835,75.661377],[-92.17444,75.74443100000013],[-92.10472,75.805252],[-92.108612,75.858871],[-92.408615,75.928589],[-92.583618,76.008881],[-92.637222,76.11581],[-92.79388,76.207489],[-93.066956,76.299149],[-93.05638099999986,76.33859300000012],[-93.083618,76.358032],[-93.31528,76.36026],[-93.58778399999989,76.292755],[-93.6583399999999,76.29387],[-93.62361,76.31080600000013],[-93.67888,76.32222],[-93.763901,76.286377],[-93.69722,76.26388500000013],[-93.784439,76.25305200000012],[-94.64168,76.29332],[-95.02917,76.236099],[-95.376099,76.23442100000011],[-95.36694,76.301376],[-95.279175,76.28137200000013],[-95.01056,76.3311000000001],[-94.800827,76.321655],[-95.851105,76.401093],[-96.10695,76.49443],[-96.05249,76.524155],[-95.77861,76.518875],[-95.587784,76.6035920000001],[-95.78056,76.54887400000011],[-96.016953,76.549149],[-96.22528099999987,76.625809],[-96.40334,76.639709],[-96.47028,76.685532],[-96.816391,76.69748],[-96.964447,76.733322],[-96.855,76.813034],[-96.5925,76.758881],[-96.30556,76.753876],[-96.320557,76.806641],[-96.813614,76.868042],[-96.864166,76.919708],[-96.65916,76.949142],[-96.82779,76.968872],[-96.810272,76.9791560000001],[-96.483612,76.9711],[-96.353882,76.993042],[-96.387787,77.030548],[-95.65973,77.058868]]],[[[-113.328888,77.079987],[-113.40889,77.078873],[-113.4974979999999,77.08831800000013],[-113.344727,77.127762],[-113.286942,77.096375],[-113.328888,77.079987]]],[[[-113.77861,77.10416],[-113.88055,77.108032],[-113.93138,77.1297],[-113.798607,77.152481],[-113.657784,77.12915],[-113.77861,77.10416]]],[[[-104.252502,77.072769],[-104.43167,77.098877],[-104.27333,77.159714],[-104.113892,77.166092],[-104.001106,77.135818],[-104.252502,77.072769]]],[[[-95.224442,77.16721],[-95.36278,77.17192],[-95.64,77.23776],[-95.35611,77.236374],[-95.2164,77.20166],[-95.224442,77.16721]]],[[[-90.93306,77.25444],[-90.71362,77.200821],[-90.81139,77.146652],[-90.9786069999999,77.13777],[-91.238892,77.174423],[-91.299164,77.217758],[-90.93306,77.25444]]],[[[-116.3511,77.539154],[-115.49526999999989,77.359421],[-115.390289,77.306366],[-115.87778,77.21527100000014],[-116.280563,77.183594],[-116.31973,77.11775200000011],[-116.2424929999999,77.044144],[-115.731377,76.9497070000001],[-115.903343,76.89387],[-116.36528,76.926376],[-116.18361,76.8458250000001],[-116.00029,76.811371],[-115.89667,76.69165],[-116.09306,76.619141],[-116.32251,76.5811],[-117.05388,76.53305100000011],[-117.07278,76.503052],[-117.00389,76.477478],[-116.935822,76.351929],[-117.09555,76.29526],[-117.31973,76.257767],[-117.57501,76.268875],[-117.657784,76.29332],[-117.65527,76.31749],[-117.877777,76.34193],[-118.059998,76.40914900000011],[-117.91916,76.68803400000012],[-117.73444,76.77832000000011],[-117.842216,76.823883],[-118.00584,76.76138300000014],[-118.31946,76.77304100000015],[-118.495003,76.7122],[-118.47472,76.679703],[-118.34138,76.6436],[-118.3161,76.5747070000001],[-118.50279,76.50972],[-118.651672,76.50555],[-118.841667,76.554977],[-118.968063,76.50526400000012],[-118.681953,76.445251],[-118.567497,76.336655],[-118.65556,76.284149],[-118.91139,76.26555],[-118.942207,76.21054100000013],[-118.904716,76.169144],[-119.07584,76.083328],[-119.2825,76.127472],[-119.301666,76.19136],[-119.54916,76.324158],[-119.655,76.30304],[-119.675,76.24582],[-119.56696,76.168869],[-119.64334,76.11249],[-119.80499,76.108871],[-119.491379,76.035538],[-119.48110999999987,75.970825],[-119.636948,75.99220300000012],[-119.703339,75.9427490000001],[-119.612503,75.910263],[-119.87,75.857483],[-120.04915599999985,75.83888200000011],[-120.14917,75.89637800000014],[-120.28888699999987,75.81609],[-120.454453,75.81581100000011],[-120.489723,75.849991],[-120.460007,75.922485],[-120.406113,75.954987],[-120.4349979999999,76.003052],[-120.59389,75.978043],[-120.696663,76.01388],[-120.75168,76.09943],[-120.71194,76.12915],[-120.72749,76.1586],[-120.85722399999985,76.19664],[-121.01251,76.13916],[-121.022781,76.059143],[-120.931953,75.95999],[-120.99944,75.939697],[-121.0111239999999,75.970825],[-120.98611,75.98415],[-121.01527,75.992149],[-121.34862,75.92804],[-121.595001,76.005554],[-122.13417,76.036377],[-122.16945,75.978043],[-122.416397,75.928589],[-122.563606,75.93193100000013],[-122.728882,75.973038],[-122.5625,76.014435],[-122.471123,76.11026],[-122.70445,76.114426],[-122.48999,76.141098],[-122.62027,76.174423],[-123.03778,76.084717],[-122.84862,76.208878],[-122.636124,76.264709],[-122.63249,76.329987],[-122.59889,76.348328],[-122.309433,76.408875],[-121.53307,76.437195],[-121.21251,76.649719],[-120.401672,76.797211],[-120.09138,77.00305],[-119.95,77.012497],[-119.8125,77.096649],[-119.389183,77.184418],[-119.295837,77.27665700000011],[-119.153343,77.325821],[-117.86722,77.388596],[-117.724442,77.338043],[-117.02306,77.290817],[-117.06082,77.32666],[-117.181671,77.346375],[-116.795837,77.31749],[-116.64835,77.383331],[-116.99472,77.39444],[-117.14999,77.45721400000014],[-116.75723,77.511658],[-116.92694,77.524704],[-116.875,77.53498800000011],[-116.3511,77.539154]]],[[[-85.285278,77.587494],[-85.01112,77.573883],[-84.813889,77.497208],[-85.15361,77.454437],[-85.178604,77.46415700000011],[-85.13861,77.49498000000011],[-85.170273,77.511658],[-85.53833,77.539978],[-85.285278,77.587494]]],[[[-90.603058,77.628311],[-90.24249299999984,77.612488],[-89.91722099999987,77.52721],[-89.71916,77.45832800000011],[-89.636124,77.339157],[-90.00917,77.211929],[-90.366943,77.197754],[-90.946655,77.309418],[-91.14667,77.362198],[-91.20889,77.414993],[-91.20695,77.56860400000011],[-91.17361,77.61304],[-90.88083,77.654434],[-90.603058,77.628311]]],[[[-105.01027699999986,77.40803],[-104.741096,77.41443],[-104.39555,77.276382],[-104.36555,77.23027],[-104.472504,77.13749700000011],[-104.74028,77.108597],[-105.24695,77.193863],[-105.40889,77.28166],[-105.571953,77.32332],[-105.691101,77.497208],[-105.83444,77.61026],[-106.094727,77.72415],[-105.91389,77.762497],[-105.470284,77.709152],[-104.968613,77.514435],[-104.946663,77.47916],[-105.01027699999986,77.458603],[-105.01027699999986,77.40803]]],[[[-95.405838,77.763885],[-95.363892,77.737198],[-94.72888,77.788315],[-94.09,77.76582300000013],[-93.93138,77.732483],[-93.62944,77.776093],[-93.23388699999987,77.732483],[-93.101944,77.66249],[-93.37944,77.630814],[-93.48639,77.545532],[-93.502502,77.503052],[-93.475281,77.471375],[-93.57056,77.43775900000014],[-94.468887,77.476929],[-95.864166,77.4622],[-96.083328,77.49776],[-96.328888,77.60498],[-96.25557,77.689697],[-95.934433,77.753052],[-95.46529,77.808029],[-95.418335,77.798874],[-95.405838,77.763885]]],[[[-77.851944,77.774429],[-77.955,77.830276],[-77.71777,77.86303700000013],[-77.568619,77.849716],[-77.59277,77.813309],[-77.851944,77.774429]]],[[[-101.711403,77.901657],[-101.19138,77.830826],[-100.92555,77.737198],[-102.06778,77.682205],[-102.44444,77.731934],[-102.529716,77.834152],[-102.41666,77.881927],[-101.711403,77.901657]]],[[[-114.07306,77.981659],[-113.9583439999999,77.914993],[-113.70639,77.891663],[-113.57611,77.81415],[-113.78833,77.745255],[-114.277222,77.702209],[-114.84834,77.854706],[-115.1161,77.958328],[-114.797783,77.97554],[-114.355003,78.070541],[-114.07306,77.981659]]],[[[-109.58806,78.064697],[-109.585281,78.035538],[-109.70556599999986,77.9599910000001],[-110.904716,77.84387200000015],[-110.65889,77.75972],[-110.09029,77.76915],[-110.040558,77.637497],[-110.08417,77.557755],[-110.20334,77.51138300000014],[-110.87721,77.411377],[-111.29999,77.419144],[-112.031113,77.3247070000001],[-112.41306,77.356094],[-112.507782,77.381363],[-112.6011,77.455261],[-112.790833,77.441086],[-112.95778,77.46944],[-113.01167,77.51277],[-113.198036,77.52388000000013],[-113.24028,77.587204],[-113.16251,77.60914600000012],[-113.1875,77.739426],[-113.31973,77.79553],[-113.209732,77.908875],[-112.9436,77.91192600000011],[-112.294998,78.010544],[-111.73056,78.024155],[-111.093338,78.092484],[-110.83307,78.06303400000013],[-110.72721899999988,78.09776],[-110.465843,78.108597],[-109.78917,78.0997160000001],[-109.58806,78.064697]]],[[[-101.6514,78.144714],[-101.859444,78.155258],[-101.88194,78.162201],[-101.70722999999987,78.232758],[-101.603607,78.187485],[-101.60527,78.15914900000013],[-101.6514,78.144714]]],[[[-103.056953,78.119705],[-103.212784,78.120529],[-103.282227,78.157761],[-102.986938,78.272766],[-102.782227,78.238586],[-102.79333,78.19942],[-103.056953,78.119705]]],[[[-94.36665,78.15914900000013],[-94.50612,78.17276],[-94.69415,78.2586060000001],[-94.602219,78.2872],[-94.48195,78.26833],[-94.309433,78.191086],[-94.36665,78.15914900000013]]],[[[-88.28722,78.243317],[-88.38194,78.24248],[-88.409729,78.29221],[-88.23527499999989,78.426926],[-88.094452,78.45694000000013],[-88.04333,78.436646],[-88.1664,78.308029],[-88.28722,78.243317]]],[[[-109.64806,78.58804],[-109.40527,78.556931],[-109.26056,78.487198],[-109.26056,78.455826],[-109.31807,78.358032],[-109.428596,78.303314],[-109.82445,78.293869],[-109.98389,78.325546],[-110.4119419999999,78.277206],[-110.71556,78.29248000000013],[-111.14139,78.386108],[-111.27779,78.37221],[-111.30611,78.321106],[-111.462509,78.267487],[-111.820007,78.2736],[-111.91861,78.332764],[-112.133057,78.36554],[-112.58307,78.343597],[-113.142227,78.26833],[-113.33417,78.332764],[-113.03833,78.43692],[-112.23805,78.547211],[-111.7525,78.550537],[-111.45557,78.592758],[-111.160553,78.69165],[-110.63751199999989,78.748596],[-110.395279,78.75610400000011],[-109.86166,78.66693],[-109.85527,78.6375],[-109.64806,78.58804]]],[[[-74.30695,78.676651],[-74.614166,78.702774],[-74.710281,78.731094],[-74.59111,78.77887],[-74.16362,78.716095],[-74.30695,78.676651]]],[[[-96.76807,78.684143],[-96.53361,78.676926],[-96.29388,78.615265],[-96.18443,78.628586],[-96.1525,78.611374],[-96.2164,78.56053],[-96.17805,78.518875],[-96.009445,78.49247700000012],[-95.53722,78.51471],[-94.87778,78.3913730000001],[-94.83084,78.35277],[-95.39917,78.23109],[-95.130829,78.194138],[-95.089722,78.15498400000011],[-94.88695,78.102768],[-94.91166699999985,78.055252],[-95.112503,77.951385],[-95.37999,77.96638],[-96.28555,77.859421],[-96.541107,77.897217],[-96.735,77.866928],[-96.49166899999989,77.87025],[-96.51556,77.845535],[-96.71167,77.839706],[-96.82945,77.789154],[-97.09695,77.803314],[-97.119995,77.87025],[-96.994995,77.921097],[-97.77556,78.034988],[-97.647781,78.09082],[-96.910278,78.079163],[-96.85556,78.10416],[-96.870544,78.133331],[-97.32112,78.20749],[-97.829453,78.219147],[-97.84944,78.23471100000012],[-97.76334,78.244431],[-98.05472,78.301651],[-98.04361,78.389435],[-98.347778,78.443039],[-98.41139,78.4952550000001],[-98.308884,78.533875],[-98.02223,78.53637700000013],[-98.04222,78.56972],[-98.31528,78.643875],[-98.371658,78.719986],[-98.36472,78.768051],[-98.14445,78.81666600000011],[-97.599731,78.80748],[-96.76807,78.684143]]],[[[-86.319458,78.883606],[-86.484436,78.8927610000001],[-86.346115,78.93969700000014],[-86.28361,78.998032],[-85.89612,79.05693100000013],[-85.3214,79.053864],[-85.16722,79.02082800000011],[-85.301392,78.975266],[-86.319458,78.883606]]],[[[-103.59388699999988,79.325821],[-103.08362,79.27943],[-102.921112,79.217484],[-102.891678,79.166656],[-102.62,79.097214],[-102.61221,79.05664100000013],[-102.72084,78.938309],[-102.560822,78.869705],[-102.39195,78.931656],[-102.398064,78.987198],[-102.36305,79.0149990000001],[-101.942207,79.084717],[-101.6489,79.075821],[-101.23167,78.95942700000012],[-101.140839,78.974152],[-100.98666,78.937195],[-101.200562,78.82083100000011],[-101.186394,78.80276500000014],[-100.86389,78.781372],[-100.3511,78.828323],[-100.32333,78.77804600000013],[-99.9525,78.72554],[-99.89307,78.6869200000001],[-100.0625,78.635544],[-99.98889,78.61387600000012],[-99.8175,78.630539],[-99.52972,78.57805],[-99.6702729999999,78.479706],[-99.867767,78.43748],[-99.748337,78.38361],[-99.79388399999988,78.297211],[-99.529449,78.282486],[-99.41389,78.205261],[-98.94583099999988,78.055817],[-98.97166,77.997757],[-99.09917,77.960815],[-99.02223,77.88247700000011],[-99.906952,77.77859500000011],[-100.60638,77.8799740000001],[-100.8239,78.00444],[-100.853882,78.096649],[-101.009743,78.13665800000012],[-101.035553,78.19609100000012],[-101.28944,78.18248],[-101.47417,78.23471100000012],[-102.1330569999999,78.282761],[-102.618607,78.241364],[-102.809433,78.28831500000013],[-102.808037,78.31694],[-102.66583299999989,78.3586],[-102.806107,78.37776200000012],[-103.67999,78.3119200000001],[-103.963058,78.233597],[-104.4675,78.265274],[-104.820557,78.35582000000011],[-105.051392,78.49443100000012],[-104.83139,78.569992],[-104.66666,78.579712],[-103.523621,78.496094],[-103.378052,78.586105],[-103.39999,78.61554000000012],[-104.04222,78.62997],[-103.82611,78.671921],[-103.48361,78.66914400000013],[-103.525284,78.70526100000012],[-103.31639,78.734421],[-103.468063,78.787491],[-103.796112,78.735809],[-103.695267,78.79387],[-103.72694,78.8022],[-103.886124,78.804428],[-103.90527,78.768875],[-103.9911,78.758881],[-104.198883,78.770264],[-104.215286,78.79359],[-104.16722,78.8163760000001],[-103.82167,78.89833],[-104.203613,78.991653],[-104.455,78.9561],[-104.564163,78.8647],[-104.78583,78.806641],[-104.988327,78.798325],[-105.028343,78.83276],[-104.681107,79.01666300000011],[-104.9025,79.049713],[-105.54333,79.02026],[-105.60666,79.051926],[-105.6286,79.161377],[-105.43999,79.329163],[-105.12721,79.29748500000011],[-103.97778,79.368866],[-103.59388699999988,79.325821]]],[[[-99.47166,80.109711],[-99.13667,80.13304],[-98.86888,80.077774],[-98.705841,79.96582],[-98.64416499999987,79.794144],[-98.83,79.664429],[-98.93611,79.719711],[-99.31723,79.75861],[-99.295837,79.833328],[-99.315826,79.84860200000013],[-99.614166,79.89332600000012],[-100.07028,79.876923],[-100.17749,79.90998800000011],[-100.193329,80.033875],[-100.065552,80.08998],[-99.75917,80.149719],[-99.47166,80.109711]]],[[[-99.155563,80.1747],[-99.11389,80.16387900000012],[-99.41806,80.15721100000012],[-99.36694,80.18220500000012],[-99.155563,80.1747]]],[[[-95.03084,80.670258],[-94.970551,80.635269],[-95.2261,80.609146],[-96.14917,80.66470300000013],[-95.491379,80.699997],[-95.03084,80.670258]]],[[[-92.72778,81.305542],[-92.12471,81.232758],[-91.858047,81.167755],[-91.78389,81.0836],[-91.908615,81.070541],[-91.538895,80.98166],[-91.517776,80.93275],[-91.321121,80.88275],[-91.121658,80.754715],[-90.754181,80.715],[-90.59361,80.64526400000011],[-90.7664,80.565536],[-90.04639,80.541656],[-89.751114,80.464432],[-89.78416,80.500824],[-89.74833699999988,80.53276],[-89.546112,80.547485],[-89.244995,80.517212],[-89.059158,80.46138000000013],[-89.25723,80.396942],[-89.07584,80.393051],[-89.11417,80.33333],[-89.26222,80.28665200000012],[-89.09222,80.20082100000013],[-88.776672,80.131363],[-88.145554,80.093872],[-88.273056,80.195526],[-88.63028,80.249146],[-88.68527,80.371643],[-88.61528,80.40387],[-88.383896,80.443588],[-87.683884,80.410263],[-87.607498,80.324158],[-87.56277,80.179153],[-88.065552,80.12082],[-87.89139,80.0555420000001],[-87.27555799999988,80.06694],[-87.04333,79.964996],[-87.48554999999988,79.834991],[-87.190826,79.86609],[-87.02472,79.91609],[-86.957779,79.90359],[-87.144165,79.63777],[-87.42555,79.57916300000011],[-87.462509,79.53471],[-87.309998,79.502213],[-87.16112,79.571655],[-86.96666,79.60165400000011],[-86.823624,79.587769],[-86.84639,79.549988],[-86.78999,79.53888],[-86.69499,79.56749],[-86.81305,79.611923],[-86.762222,79.63165300000014],[-86.33417,79.645538],[-86.046112,79.56888],[-86.02806,79.474701],[-86.167496,79.45776400000011],[-86.070847,79.434143],[-85.901108,79.493591],[-85.893341,79.554703],[-85.828339,79.60748300000012],[-85.68195,79.61331200000012],[-85.27806,79.41554300000013],[-85.03971899999988,79.350815],[-84.904175,79.26776100000012],[-85.297226,79.187195],[-86.422501,79.075546],[-86.550827,79.048874],[-86.58778,78.98359700000015],[-86.70222,78.955261],[-86.785004,78.95721],[-86.983322,79.05664100000013],[-87.004456,78.987198],[-86.9525,78.906647],[-87.32806,78.79470800000011],[-87.615829,78.64526400000011],[-87.87277,78.694977],[-88.00334,78.80720500000012],[-87.985275,78.95721],[-87.813614,78.996933],[-87.72472,79.075821],[-87.84917,79.05497700000012],[-87.899994,79.011108],[-88.162506,78.99054000000011],[-88.21529,78.960815],[-88.222229,78.78332],[-88.13222,78.680817],[-87.908615,78.596939],[-87.90834,78.548599],[-88.011948,78.481369],[-88.23416,78.453598],[-88.5594329999999,78.604156],[-88.80417,78.60971100000012],[-88.74611,78.535812],[-88.535553,78.41304000000014],[-88.672501,78.316086],[-88.7514,78.19693000000011],[-88.81778,78.154434],[-89.11583,78.200821],[-89.35388199999989,78.33971],[-89.819458,78.500549],[-89.98056,78.60971100000012],[-90.08833,78.595825],[-90.10083,78.549713],[-89.985,78.436096],[-89.774445,78.393875],[-89.4525,78.162491],[-89.59584,78.156937],[-89.67389,78.217209],[-89.91112,78.21887200000015],[-90.02333,78.298035],[-90.24249299999984,78.336105],[-90.74861,78.320267],[-90.41028,78.276657],[-90.2675,78.18664600000011],[-90.33029,78.146103],[-90.433884,78.13638300000014],[-91.48971599999987,78.17693],[-91.857498,78.2397],[-92.058334,78.20887800000013],[-92.589447,78.323608],[-92.9875,78.465546],[-92.86389,78.50526400000012],[-92.621933,78.487198],[-92.487213,78.507767],[-92.56332,78.52054],[-91.635284,78.546097],[-92.585556,78.5961],[-92.806107,78.6336060000001],[-93.271118,78.584152],[-93.81361,78.765823],[-93.589722,78.7836],[-93.16333,78.73553500000014],[-93.05499,78.73997],[-93.03778,78.765823],[-93.416397,78.825],[-93.87471,78.833603],[-94.288605,78.986374],[-93.60194399999988,79.06833],[-93.472778,79.10887100000014],[-93.460556,79.142761],[-93.295,79.166931],[-92.243057,79.14694],[-90.56416,79.21554600000013],[-90.363266,79.246811],[-92.238892,79.205551],[-92.69472,79.257217],[-92.57194,79.304153],[-91.96194,79.295532],[-91.23167,79.34804],[-91.119995,79.386383],[-92.181107,79.345825],[-92.5775,79.37915],[-92.228607,79.43136600000014],[-92.25917,79.44693],[-92.580841,79.452209],[-92.876099,79.407761],[-93.090561,79.482208],[-93.14667,79.469986],[-93.00696,79.38916000000012],[-93.264175,79.3535920000001],[-93.3125,79.372757],[-93.235001,79.435257],[-93.33806,79.447205],[-93.485275,79.354156],[-93.869995,79.263885],[-94.206955,79.27249],[-94.05638,79.3797],[-94.38612,79.421371],[-94.50917,79.416382],[-94.5,79.3797],[-94.39,79.368866],[-94.506668,79.337204],[-95.087555,79.27075200000012],[-95.318619,79.332214],[-95.285004,79.35304],[-95.295837,79.379425],[-95.655563,79.39166300000011],[-95.779449,79.42581200000012],[-95.73639,79.537491],[-94.699432,79.61219800000015],[-94.329453,79.688309],[-94.282776,79.757492],[-94.361664,79.781937],[-94.81444,79.6702580000001],[-95.85333,79.646103],[-96.335556,79.815536],[-96.589447,79.852478],[-96.615005,79.883881],[-96.458618,79.914429],[-96.14778,79.9124910000001],[-96.58057,79.95277],[-96.679443,80.014435],[-96.39168,80.045822],[-96.6761,80.04193],[-96.80278,80.09082000000012],[-96.71112,80.144989],[-96.41,80.13888500000013],[-95.84777799999988,80.053314],[-94.85278299999987,80.04414400000013],[-94.38362,79.98248],[-94.748886,80.079987],[-94.48055999999985,80.159149],[-94.08389,80.17553700000013],[-94.485,80.209991],[-95.367767,80.1183170000001],[-95.695831,80.178314],[-95.229996,80.2361],[-95.645844,80.2397],[-95.933609,80.194427],[-96.434998,80.269714],[-96.464447,80.313034],[-96.68167099999988,80.342209],[-96.59222,80.36276],[-96.23222,80.33471700000013],[-96.280838,80.361923],[-96.04777499999989,80.389984],[-95.436935,80.341095],[-95.468063,80.3822020000001],[-95.653885,80.396652],[-95.852219,80.454163],[-96.027222,80.574158],[-95.979996,80.584717],[-94.994995,80.603043],[-94.75279,80.559982],[-93.78639,80.525543],[-94.005,80.585266],[-94.543335,80.59972],[-94.672775,80.663879],[-94.553604,80.694977],[-94.075562,80.7061],[-94.108337,80.718872],[-94.722778,80.7285920000001],[-95.03582799999985,80.768326],[-95.025284,80.8016510000001],[-95.282501,80.7861],[-95.534164,80.818878],[-95.15083,80.881088],[-95.484726,80.89915500000012],[-95.28361,80.949997],[-95.255,80.996643],[-95.18306,81.019714],[-94.66305,81.0486],[-94.49388,81.017487],[-94.508057,80.979431],[-94.40861,80.96554600000013],[-93.906387,81.040543],[-94.36221,81.10054],[-94.31305,81.11554],[-93.29999,81.07971],[-93.15222,81.094711],[-93.09167,81.159988],[-93.25973,81.2122],[-93.928879,81.203873],[-94.388062,81.25499000000013],[-94.268616,81.3461],[-94.035278,81.36331],[-93.553329,81.305542],[-93.483063,81.31972],[-93.56471,81.3766480000001],[-93.5175,81.384995],[-92.72778,81.305542]]],[[[-91.71834,81.549149],[-91.86362,81.55525],[-91.960556,81.59498600000012],[-91.58223,81.578049],[-91.71834,81.549149]]],[[[-78.36583,82.88361],[-78.41945,82.899155],[-78.41472,82.941925],[-78.27389499999987,82.963043],[-78.116943,82.9422],[-78.36583,82.88361]]],[[[-70.11194,83.109421],[-69.665009,83.1083220000001],[-69.66417,83.07083],[-69.77528,83.04776],[-69.45111,83.035812],[-69.55972,82.99414100000013],[-69.01556,83.04081700000012],[-68.90279,82.988312],[-68.154175,82.99109],[-68.188599,82.946091],[-68.145554,82.934982],[-67.666946,82.969711],[-67.241669,82.93692],[-67.09222,82.9611],[-66.29944,82.929428],[-66.36916,82.888321],[-66.84111,82.810806],[-68.35666,82.688034],[-68.67223,82.637772],[-68.6425,82.62859],[-67.47084,82.65221],[-65.767776,82.843048],[-65.46777299999985,82.833328],[-65.52722,82.79748],[-65.164444,82.763046],[-65.35306,82.797211],[-65.10278,82.84804],[-65.28917,82.873306],[-64.72972,82.9041600000001],[-64.65556,82.896942],[-64.93693,82.871368],[-64.723053,82.856369],[-64.75084,82.82832300000011],[-64.44527,82.76193200000012],[-64.103058,82.831665],[-63.49084,82.825272],[-63.38917,82.804977],[-63.38222,82.7677610000001],[-63.52583,82.730545],[-63.850281,82.71582],[-63.65166,82.714996],[-63.226105,82.64027],[-63.380829,82.615265],[-63.3475,82.60498],[-62.926109,82.57609600000012],[-63.05944,82.51193],[-63.08944,82.46638500000012],[-63.369995,82.438873],[-63.07167,82.451935],[-62.678337,82.516098],[-62.171669,82.52554],[-62.32278,82.511108],[-62.35278,82.481094],[-62.09805,82.50221],[-61.53083,82.47831700000012],[-61.17028,82.39526400000011],[-61.07639,82.320831],[-61.10778,82.267761],[-61.19333,82.223602],[-61.804443,82.146652],[-61.885,82.10054],[-62.278885,82.01582],[-62.513618,82.00471500000013],[-63.84972,81.801086],[-64.05305,81.789978],[-64.325287,81.8247070000001],[-64.118057,81.7644350000001],[-64.35527,81.72637900000012],[-65.21666,81.745529],[-66.04222,81.690536],[-65.33667,81.688034],[-65.78944,81.632202],[-66.02472,81.653046],[-66.172501,81.61804200000012],[-67.559723,81.599152],[-68.15666,81.561096],[-69.291382,81.71887],[-68.35249,81.541656],[-68.85695,81.54776],[-68.57945299999989,81.514435],[-67.107773,81.564987],[-66.608612,81.512772],[-68.618057,81.290543],[-69.02861,81.258606],[-69.42694,81.269989],[-69.468887,81.259995],[-69.31221,81.24054],[-70.210007,81.173874],[-69.638062,81.177475],[-70.025284,81.10277],[-69.95557,81.099426],[-69.43056,81.18719],[-65.72472,81.493866],[-64.56639,81.545532],[-64.43639,81.479431],[-64.80861,81.360535],[-65.44138,81.256378],[-66.1997219999999,81.183868],[-66.603333,81.05525200000011],[-67.16444,80.948593],[-67.60666,80.929977],[-67.530838,80.89749100000012],[-68.95249899999988,80.603043],[-69.42749,80.382751],[-70.28444,80.35108900000012],[-70.31082,80.36303700000013],[-70.220001,80.41693],[-70.314163,80.464432],[-70.82528699999989,80.55859],[-70.476669,80.454437],[-70.42332,80.421646],[-70.47223,80.368042],[-70.444153,80.34027100000014],[-69.960556,80.256378],[-70.145554,80.19359],[-70.821121,80.195526],[-71.69444,80.110809],[-72.006393,80.18858300000011],[-72.420837,80.2111],[-71.89555,80.114151],[-72.39168,80.08554100000013],[-72.34056,80.059143],[-71.489166,80.068878],[-70.762512,80.13333],[-70.626663,80.130539],[-70.497498,80.082764],[-70.494995,80.05081200000012],[-70.64667,80.03194],[-70.71945,79.986374],[-71.241669,79.960815],[-71.46055599999988,79.901382],[-71.10973,79.91527],[-70.910278,79.885818],[-71.00584,79.819717],[-71.183884,79.777481],[-72.26723,79.659149],[-72.91278,79.70221],[-73.06277,79.799423],[-72.9025,79.815262],[-72.926392,79.81944],[-73.85333,79.829163],[-73.74249299999984,79.84999],[-74.23889,79.8872070000001],[-74.84639,79.847214],[-74.683884,79.789978],[-74.236389,79.80193],[-73.38473,79.748871],[-73.36082499999986,79.712769],[-73.174438,79.651657],[-73.12582,79.55832],[-73.35388,79.50582900000012],[-73.657776,79.49636800000013],[-73.988892,79.551926],[-73.95306,79.47276],[-74.160278,79.436371],[-74.61749299999985,79.438583],[-74.964447,79.513046],[-75.059433,79.48387100000014],[-74.8830569999999,79.408325],[-75.058334,79.373871],[-75.9575,79.426086],[-76.26112,79.49776],[-76.905838,79.50972],[-77.14250199999987,79.547485],[-77.19138,79.511108],[-76.17916899999989,79.459717],[-76.138901,79.441086],[-76.208054,79.429703],[-76.157501,79.39166300000011],[-75.879166,79.35138],[-76.86972,79.349426],[-77.212509,79.447754],[-77.35916,79.45555100000013],[-77.397507,79.447205],[-77.158615,79.329163],[-78.05139,79.354706],[-77.32223,79.267487],[-77.48805,79.24498000000011],[-76.67139,79.277481],[-76.136124,79.2686000000001],[-75.938889,79.23027000000013],[-74.49695,79.22499],[-74.464722,79.2199860000001],[-74.82695,79.174149],[-74.61749299999985,79.15138],[-74.436661,79.057755],[-74.72501,79.022766],[-75.655563,79.06833],[-75.885284,79.09748800000011],[-75.85777,79.15221],[-76.098053,79.199142],[-77.044998,79.18332],[-77.7775,79.20887800000013],[-78.253891,79.169983],[-76.64,79.151093],[-76.081955,79.09971600000011],[-76.17054699999989,79.075821],[-77.07333,79.070831],[-77.494995,79.017761],[-77.79999,79.066666],[-78.351105,79.08638000000013],[-78.89138799999989,79.06330900000012],[-77.829453,79.048035],[-77.703339,79.006943],[-77.946945,78.95166],[-78.297226,78.78887900000012],[-78.24805,78.770264],[-77.71194,78.96609500000011],[-76.710556,79.02832],[-75.720276,78.96555],[-75.825562,78.926086],[-76.315552,78.896103],[-76.44611,78.863876],[-76.44028,78.8394320000001],[-76.204727,78.881088],[-75.316101,78.89221],[-74.775009,78.829987],[-74.71973,78.707489],[-74.869995,78.67581200000012],[-74.78999,78.59137],[-75.04805,78.528046],[-75.83,78.50471500000015],[-76.43721,78.548599],[-76.693604,78.50972],[-76.289444,78.515549],[-76.057495,78.46192900000011],[-75.41083,78.4266510000001],[-75.09,78.368866],[-75.031387,78.331375],[-75.0625,78.309708],[-75.35861,78.301651],[-75.479172,78.22221400000012],[-75.613617,78.198029],[-76.57417,78.24971],[-76.912216,78.201096],[-75.57556,78.1077580000001],[-75.922775,77.95665],[-76.24611,78.015823],[-76.46695,77.98471],[-76.54834,77.944977],[-76.931107,77.901382],[-77.16,77.946091],[-77.8389,77.9427490000001],[-78.26083,77.99525],[-78.42639,77.906372],[-77.95861799999989,77.8022],[-77.94055,77.759995],[-77.98110999999989,77.701385],[-77.71861,77.60582],[-77.952225,77.5558170000001],[-77.94861,77.50193800000011],[-78.25667,77.38193],[-78.690552,77.31554],[-78.839722,77.31026],[-78.725281,77.371094],[-78.78444,77.3808140000001],[-79.20723,77.28831500000013],[-79.653885,77.318604],[-80.019165,77.272217],[-80.456116,77.296097],[-81.2775,77.42442],[-81.37054,77.47554000000014],[-81.58778,77.517487],[-81.61055,77.576096],[-81.83972,77.625809],[-81.8475,77.665817],[-81.930283,77.684982],[-81.94943,77.64498900000012],[-81.91139,77.609421],[-81.67055,77.531662],[-81.67084,77.496094],[-81.74805,77.448029],[-81.728882,77.429977],[-81.484726,77.37221],[-81.203888,77.37052900000015],[-81.165833,77.337204],[-81.875,77.29248000000013],[-82.09195,77.316376],[-82.166107,77.29248000000013],[-81.978882,77.25833100000011],[-81.83416699999987,77.162491],[-81.14917,77.2747],[-80.116104,77.20138500000013],[-80.40973,77.0811000000001],[-80.37305,77.07138],[-80.01334,77.190536],[-79.72583,77.239975],[-79.255,77.2186],[-79.04194599999988,77.161102],[-79.005,77.096939],[-79.36555,76.963318],[-79.386948,76.927475],[-78.886124,76.926926],[-78.866394,76.918869],[-78.910004,76.886658],[-78.91528,76.839706],[-78.72194,76.82138],[-78.563614,76.90664700000013],[-78.55388,76.938583],[-78.38444,76.99971],[-78.087219,77.017761],[-77.89667,76.95555100000013],[-77.77945,76.791367],[-77.81361,76.687759],[-77.76945,76.6583250000001],[-78.089722,76.60942],[-78.37749,76.4580380000001],[-78.55249,76.46415700000011],[-78.61945,76.496094],[-78.58833,76.513046],[-78.62721,76.563873],[-78.790558,76.57165500000013],[-78.969452,76.43414300000012],[-79.18971299999986,76.40582300000011],[-79.261124,76.3522],[-79.27278,76.30415],[-79.573624,76.311646],[-80.08722,76.223602],[-80.293335,76.23526],[-80.672501,76.158325],[-81.053329,76.128036],[-81.09029,76.1375],[-81.095551,76.212204],[-80.783615,76.374985],[-80.77167,76.419144],[-81.275009,76.533325],[-81.49249,76.469437],[-82.03972,76.50943],[-82.08362,76.52388],[-81.98195,76.584717],[-82.05665599999986,76.60914600000012],[-81.778885,76.68109],[-82.08112,76.63109],[-82.2925,76.635544],[-82.72501,76.819153],[-82.76973,76.811096],[-82.556107,76.723038],[-82.5625,76.688873],[-82.460556,76.636108],[-82.08112,76.56109600000013],[-82.225281,76.526657],[-82.12721,76.44165],[-82.260284,76.398605],[-82.704453,76.386932],[-83.00362,76.429153],[-83.09973,76.46388200000013],[-83.061935,76.497208],[-83.11665,76.586105],[-83.33889799999986,76.66415400000011],[-83.38417,76.73082],[-83.35583,76.752213],[-83.400833,76.75999],[-83.52055,76.695251],[-83.254181,76.579437],[-83.18832,76.419434],[-83.6911,76.42886],[-84.03361,76.534714],[-84.08667,76.62414600000011],[-84.310822,76.6583250000001],[-84.330841,76.647491],[-84.19305,76.60998500000011],[-84.249725,76.536926],[-84.17972,76.491928],[-84.19554,76.456375],[-84.61972,76.431656],[-84.78389,76.46998600000012],[-84.795273,76.503876],[-84.95056,76.57777],[-85.02834,76.57499700000011],[-85.05139,76.51416],[-84.960281,76.420532],[-84.3761,76.31776400000012],[-84.92833,76.286377],[-85.174438,76.28027],[-85.69833,76.34887700000013],[-86.372223,76.386383],[-86.412216,76.407761],[-86.41861,76.469147],[-86.21194,76.53526],[-86.59416,76.63499],[-86.630341,76.63513200000011],[-86.34222,76.51221],[-86.64917,76.45887800000014],[-86.71666,76.3461],[-87.130829,76.38415500000013],[-87.225281,76.448029],[-87.4266659999999,76.4686],[-87.46278,76.586929],[-87.56361,76.61637900000011],[-87.59862,76.540817],[-87.553604,76.451096],[-87.42999,76.417755],[-87.4025,76.352768],[-87.64889499999987,76.338043],[-87.81723,76.390549],[-87.94833,76.3577580000001],[-88.38999899999988,76.38971],[-88.434433,76.40221],[-88.34944,76.5144350000001],[-88.51529,76.636108],[-88.47471599999987,76.788879],[-88.49472,76.817215],[-88.70195,76.70748900000011],[-88.49554,76.5522],[-88.489441,76.503326],[-88.603218,76.449265],[-88.60805,76.399994],[-88.693604,76.41470300000015],[-88.640289,76.558594],[-88.71001,76.594986],[-88.79138,76.51332100000013],[-88.78332,76.460815],[-88.92111,76.405258],[-89.23167,76.43359],[-89.49028,76.55748],[-89.67944,76.57165500000013],[-89.41167,76.68027],[-89.533325,76.853592],[-88.71945,77.007492],[-88.47333,77.096649],[-88.545837,77.10026600000015],[-87.690552,77.135269],[-87.56889299999989,77.09942600000011],[-87.34917,77.106094],[-87.460556,77.125534],[-87.31277,77.1808170000001],[-87.04445,77.180542],[-86.80444,77.127197],[-86.73999,77.17414900000011],[-87.19611,77.199997],[-87.16695,77.233871],[-86.91055,77.260269],[-87.197495,77.275269],[-87.248886,77.303314],[-86.829727,77.353043],[-86.851944,77.36053500000014],[-87.39111,77.33055100000013],[-87.711945,77.35998500000011],[-87.784729,77.429703],[-87.6425,77.48027000000013],[-87.69444,77.537201],[-88.214722,77.65054],[-88.162781,77.758331],[-88.068069,77.820267],[-87.23138,77.89888000000013],[-86.42223,77.830826],[-85.97528099999988,77.70583],[-85.718887,77.472214],[-85.79445,77.41970800000013],[-85.53056,77.46193],[-85.399734,77.395828],[-84.97332799999987,77.37719700000014],[-84.719727,77.31165],[-84.479446,77.29443400000014],[-84.61277799999988,77.38916],[-84.00584,77.397491],[-83.46472,77.34833],[-83.472504,77.387207],[-83.71167,77.404709],[-83.835556,77.455261],[-83.426102,77.4997100000001],[-83.21611,77.57777],[-82.89500399999986,77.717484],[-82.54167,77.920532],[-82.52611,77.961929],[-82.591675,78.017487],[-82.37749,78.035812],[-82.318619,78.070831],[-82.549438,78.07193],[-82.78029,78.0149990000001],[-82.78528,77.969986],[-82.73611,77.92415],[-82.9491579999999,77.87469],[-83.38667,77.616653],[-83.89835,77.49054],[-84.38667,77.528595],[-84.77917,77.52249],[-84.871109,77.569153],[-84.52,77.664703],[-84.42833,77.72276],[-84.443054,77.73637400000013],[-84.50307,77.74971],[-84.476669,77.72832],[-84.520844,77.6891480000001],[-84.9525,77.60137900000012],[-85.298889,77.660538],[-85.34889,77.728867],[-85.05499,77.79693600000013],[-85.053604,77.830551],[-85.297775,77.79721100000012],[-85.4025,77.81999],[-85.20778,77.883881],[-84.325012,77.896103],[-84.63444,77.926926],[-85.47472,77.868591],[-85.67888,77.92942800000013],[-85.06555,78.05636600000014],[-84.76167,78.023605],[-84.547501,78.0711060000001],[-84.28805,78.075546],[-84.5327759999999,78.085541],[-84.79889,78.055252],[-85.09445,78.097488],[-84.99499,78.16304],[-84.63110399999988,78.199997],[-84.12778,78.1711],[-84.47972,78.216934],[-84.968613,78.202484],[-84.834442,78.314987],[-84.575562,78.346375],[-84.601944,78.368866],[-84.735001,78.34027],[-84.866943,78.369141],[-84.782501,78.50582900000012],[-84.61945,78.588318],[-84.63861,78.594147],[-84.83833,78.516663],[-84.978333,78.414993],[-84.96666,78.338882],[-85.48611,78.102478],[-86.14835,78.054703],[-86.28833,78.076385],[-86.251404,78.156647],[-86.11305199999987,78.170532],[-85.931107,78.236649],[-85.835281,78.332214],[-85.83307,78.379974],[-86.05278,78.297485],[-86.07362,78.248596],[-86.28528,78.193314],[-86.49777,78.21554600000013],[-86.736938,78.11804200000012],[-87.109436,78.103043],[-87.538605,78.138046],[-87.352219,78.191086],[-87.089447,78.201935],[-87.51334,78.22499],[-87.49445,78.2986],[-87.52472,78.41638200000011],[-87.14056,78.550262],[-86.85834,78.54776],[-86.898621,78.575821],[-87.12389,78.5811],[-86.85695,78.734985],[-86.615829,78.80304000000012],[-85.64666699999987,78.84860200000013],[-85.064163,78.919144],[-84.71278,78.86775200000011],[-83.74695,78.83693],[-83.10139,78.714432],[-82.82251,78.69525],[-82.61055,78.611374],[-82.337784,78.56667],[-82.23555,78.595825],[-82.594452,78.703049],[-82.22055099999989,78.732208],[-82.781387,78.731094],[-83.210556,78.798874],[-83.25473,78.834991],[-83.05695,78.856094],[-82.429443,78.83332800000011],[-81.947495,78.865814],[-81.712509,78.839706],[-81.656952,78.888321],[-81.75584,78.91804500000012],[-81.69861,78.973877],[-81.47722,79.047211],[-81.54861,79.06136],[-81.91028,79.00499],[-82.11027,78.913605],[-82.503067,78.88275],[-82.924438,78.9349820000001],[-84.25917,78.95942700000012],[-84.74805,79.03194],[-84.78917,79.06944],[-84.50362,79.14444],[-84.135559,79.121918],[-83.89639,79.03804000000014],[-83.474716,79.024155],[-83.35861,79.05081200000012],[-83.54611,79.04248000000013],[-84.03,79.151657],[-83.93999,79.185532],[-83.95666,79.221924],[-84.121933,79.18470800000011],[-84.32695,79.188583],[-84.335556,79.252213],[-84.428879,79.290268],[-84.48473,79.40637200000015],[-84.882492,79.4860989999999],[-85.06889,79.626083],[-85.49333,79.700546],[-85.948883,79.708328],[-86.486389,79.763611],[-86.460281,79.919708],[-86.367218,79.962769],[-85.656952,79.938034],[-85.365829,79.896378],[-85.255,79.92082],[-86.482773,80.0086060000001],[-86.579453,80.04304500000012],[-86.65861499999987,80.117752],[-86.51472,80.299149],[-85.897507,80.333054],[-85.29083,80.2686],[-83.781952,80.245819],[-82.153061,79.85887],[-82.0625,79.816086],[-81.978882,79.71832300000011],[-81.684723,79.675812],[-81.616394,79.62331],[-81.78527799999989,79.61499],[-81.70666,79.586655],[-81.42471,79.636658],[-80.630554,79.56415],[-80.58972,79.568054],[-80.641953,79.58804],[-80.56916799999988,79.605255],[-79.90472,79.646942],[-79.7514,79.701385],[-80.8275,79.648331],[-81.51973,79.73082000000011],[-81.66305,79.903046],[-81.40028,79.93776],[-82.16833,80.01361],[-83.20389,80.318054],[-82.03139,80.398331],[-80.36777,80.462204],[-80.29415899999987,80.48664900000011],[-80.35722,80.501389],[-80.15334,80.52638200000011],[-78.03805,80.567215],[-78.01363,80.591095],[-79.96055599999988,80.608032],[-78.58528,80.772217],[-76.48473,80.86554],[-76.62111,80.900818],[-77.5811159999999,80.911377],[-78.86945,80.8522],[-78.934998,80.875534],[-78.928604,80.99054],[-78.52888,81.08194],[-78.39307,81.142761],[-78.46362,81.160812],[-76.74527,81.439148],[-77.02861,81.433319],[-78.17416,81.300537],[-78.67528,81.191925],[-78.754181,81.135818],[-78.69083,81.119431],[-78.89502,81.098999],[-79.501678,81.193588],[-79.06361,81.08554100000015],[-79.25528,81.05886800000013],[-79.343887,80.998322],[-79.16528,80.96666],[-79.61806,80.81944],[-80.91945,80.65554800000012],[-83.0275,80.53858900000012],[-83.165009,80.551926],[-83.16139199999986,80.601089],[-83.05638,80.64915],[-82.2164,80.719147],[-81.758896,80.813034],[-81.99611,80.83027600000014],[-82.56723,80.740814],[-83.35695,80.68553],[-83.541107,80.704163],[-83.569458,80.73915],[-83.12027,80.82332],[-83.256958,80.83859300000012],[-83.66777,80.75],[-83.863892,80.75749200000013],[-83.7200009999999,80.636658],[-83.84056099999985,80.545532],[-85.066956,80.505264],[-85.865829,80.541367],[-85.56471,80.61943100000013],[-86.08084,80.52832],[-86.744995,80.603043],[-86.49777,80.73526],[-85.605835,80.97581500000013],[-85.00306699999987,81.02832],[-82.785004,81.125534],[-82.364441,81.179428],[-85.68167,81.0494230000001],[-86.351944,80.930542],[-87.076401,80.7227630000001],[-87.21501,80.638321],[-87.59473,80.628586],[-89.29056,80.84942600000011],[-89.46611,80.914154],[-88.590286,80.996368],[-87.44638,80.97693],[-86.671936,81.00526400000012],[-84.73389,81.281097],[-84.93666,81.307755],[-85.27917,81.28997800000013],[-86.0775,81.207489],[-86.43805,81.12608300000011],[-87.29723,81.076935],[-88.34,81.069717],[-89.820847,81.01082],[-90.14917,81.054977],[-90.35194,81.16748],[-90.011124,81.24192800000014],[-89.535004,81.2061000000001],[-88.94415,81.244141],[-89.33528,81.24275200000011],[-89.95249899999988,81.329437],[-89.62721,81.356644],[-88.84695,81.49971],[-87.98416,81.535812],[-87.24472,81.49026500000014],[-88.352219,81.579712],[-88.99805,81.54054300000013],[-90.44305,81.36665],[-90.553329,81.384995],[-90.48778,81.3986],[-90.85666,81.444138],[-89.58501,81.625809],[-90.06946,81.633606],[-90.29695,81.698593],[-90.360825,81.685257],[-90.35472,81.651382],[-90.678879,81.668869],[-90.96695,81.621094],[-91.006958,81.59888],[-90.988602,81.55775],[-91.091949,81.53387],[-91.446381,81.524429],[-91.46777,81.527206],[-91.40639,81.54776],[-91.444153,81.583603],[-91.900284,81.61692800000013],[-91.95666,81.6586],[-91.770844,81.663315],[-91.72361799999987,81.721649],[-91.48555,81.76998900000012],[-91.05333,81.761658],[-91.03332,81.767761],[-91.1525,81.798035],[-90.436661,81.887497],[-89.70084,81.91554300000013],[-89.62999,81.856369],[-89.35638,81.81109600000013],[-89.199059,81.885208],[-89.41695,81.925812],[-89.288895,81.94304],[-89.00723299999987,81.91554300000013],[-88.98639,81.94498],[-89.05444,81.98749],[-88.62555,82.062759],[-88.07556,82.10498],[-87.35278,82.067215],[-87.1744379999999,82.01471],[-87.30943,81.967484],[-86.768341,81.89027],[-86.726944,81.89721700000013],[-87.13027999999986,81.968323],[-86.8925,82.054153],[-86.356384,82.05359],[-85.960556,82.007492],[-85.422501,81.857483],[-85.371658,81.859711],[-85.73195,81.983322],[-85.18832,81.99275200000011],[-85.01889,81.919434],[-84.816887,81.88537],[-85.0661,81.98749],[-84.88917,81.990265],[-84.751442,81.910538],[-84.604996,81.88998400000014],[-84.72972,81.977203],[-84.899734,82.015274],[-86.63751,82.12442],[-86.876099,82.20221],[-85.66222,82.2397],[-85.37083,82.27998400000013],[-85.347229,82.286377],[-85.48999,82.31972],[-85.531677,82.369705],[-85.51529,82.40332],[-85.921112,82.429977],[-85.79472,82.4586],[-85.04695,82.481934],[-84.641678,82.465546],[-84.61333,82.443314],[-84.94388,82.425812],[-84.449997,82.38611],[-84.344452,82.352768],[-83.96139,82.368591],[-83.5164,82.31694],[-83.368607,82.27638],[-83.34445,82.22720300000015],[-82.95306,82.11998],[-83.11194,82.06526],[-82.28416,82.066376],[-81.87805,82.03637700000013],[-82.020844,82.08221],[-82.651947,82.100266],[-83.02778599999988,82.23526],[-83.025558,82.283325],[-82.990829,82.29248],[-82.65444899999989,82.28221],[-81.91806,82.154984],[-80.08501,81.97360200000014],[-79.564163,81.82527],[-79.22917,81.81609],[-79.84445,81.971375],[-79.853333,82.018875],[-80.791107,82.079437],[-80.97555,82.123596],[-80.86806,82.154984],[-81.25334,82.159714],[-81.799728,82.22276],[-82.62555,82.359146],[-82.73222,82.401657],[-82.498337,82.50638],[-81.541672,82.49609],[-81.92749,82.522766],[-82.39473,82.617477],[-82.215286,82.668594],[-81.432495,82.62915],[-80.891953,82.532761],[-80.57806,82.546097],[-81.584442,82.79443400000014],[-81.473053,82.82499700000011],[-80.381104,82.788879],[-80.138901,82.71998600000012],[-80.182495,82.6947],[-80.16028,82.681366],[-79.861664,82.64415],[-79.800827,82.64665200000013],[-79.98332,82.68915],[-79.829727,82.70887800000014],[-79.14999,82.667755],[-78.502792,82.68109],[-79.33168,82.69971],[-79.83694499999989,82.750549],[-79.99695,82.803314],[-79.672226,82.82388300000014],[-80.194153,82.838318],[-80.43028,82.887497],[-79.793335,82.95748900000012],[-79.370544,82.974152],[-79.17749,82.9519350000001],[-79.066101,82.889435],[-78.67111,82.945526],[-78.50334,82.91331],[-78.55777,82.86053500000014],[-78.534439,82.8477630000001],[-78.14416,82.823318],[-78.10666,82.83194],[-78.238892,82.86526500000014],[-77.81304899999985,82.92442],[-77.12833,82.863312],[-76.96666,82.80470300000013],[-76.95917,82.774155],[-76.766663,82.75082],[-76.57056,82.666656],[-75.892227,82.59193],[-76.2075,82.50638],[-76.261002,82.46655],[-76.230835,82.444702],[-75.67139,82.586929],[-75.396118,82.6147],[-76.10306,82.686096],[-76.309158,82.752777],[-75.9761,82.784714],[-76.447495,82.79748],[-76.752792,82.89499],[-77.38138,82.99443100000013],[-77.18388,83.033875],[-77.13556,83.01138300000014],[-76.55943,83.011932],[-76.02861,83.054428],[-74.435822,83.02721],[-74.01807,82.95694000000013],[-73.81778,82.85277],[-72.6339,82.69442700000013],[-72.498886,82.718323],[-73.21139,82.813873],[-73.43056,82.8936],[-73.650558,82.92581],[-72.65056,83.09637],[-72.47749299999987,83.07666],[-71.71278399999989,83.098877],[-71.58168,83.09109500000011],[-71.79222,83.007492],[-71.56723,82.941086],[-70.871384,82.88109],[-70.83501,82.8830410000001],[-71.497498,83.007217],[-71.12527,83.087494],[-70.11194,83.109421]]]]}},{"type":"Feature","properties":{"FIPS":"CB","ISO2":"KH","ISO3":"KHM","UN":116,"NAME":"Cambodia","AREA":17652,"POP2005":13955507,"REGION":142,"SUBREGION":35,"LON":104.564,"LAT":12.714},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.77525,10.442497000000117],[103.748581,10.476387],[103.760803,10.514999],[103.798859,10.5],[103.80246,10.45583],[103.77525,10.442497000000117]]],[[[103.314148,10.723053],[103.269707,10.66972],[103.193314,10.756388],[103.245247,10.779444],[103.314148,10.723053]]],[[[103.02803,11.24639],[102.986908,11.274443],[102.986359,11.42222],[103.041924,11.37555],[103.02803,11.24639]]],[[[103.032753,11.431942],[102.99551,11.506109],[103.00941,11.525],[103.045517,11.469719],[103.032753,11.431942]]],[[[107.489151,14.44861],[107.416092,14.429443],[107.378036,14.352776],[107.38582,14.247498],[107.3416600000001,14.113331],[107.371918,14.01777600000014],[107.473495,13.931707],[107.464188,13.794365000000141],[107.62886,13.542776],[107.636383,13.381664],[107.48332,13.02055],[107.510818,12.87944],[107.56944,12.795832],[107.59304800000011,12.603886],[107.555817,12.373608],[107.43414,12.251944],[107.350273,12.333609000000138],[107.16693,12.277777],[106.98137,12.086109],[106.7892,12.073462],[106.71997,11.969719000000111],[106.420242,11.973608],[106.46136,11.885],[106.437737,11.79361],[106.458214,11.665863000000115],[106.305527,11.677776],[106.260803,11.72639],[106.046356,11.777222],[105.961906,11.64305],[105.85107,11.66],[105.819077,11.594013000000132],[105.881912,11.545277],[105.90164,11.438332000000115],[105.86969,11.296944],[106.104424,11.083887000000118],[106.15912600000013,11.093887000000109],[106.1908,11.053053],[106.214417,10.9755540000001],[106.152763,10.974442000000124],[106.14581,10.9155540000001],[106.20331,10.770554],[105.858307,10.916666],[105.77914,11.022776],[105.524292,10.94577],[105.432739,10.966942],[105.358856,10.871664],[105.233856,10.889721000000122],[105.10191,10.955553],[105.037193,10.88389],[105.098022,10.715832],[104.961357,10.63833],[104.883873,10.534443],[104.595253,10.53333],[104.54524200000014,10.458332],[104.445328,10.42274],[104.247742,10.567497],[104.09747,10.547499],[103.92691000000013,10.590275000000133],[103.758553,10.53196],[103.738022,10.496386],[103.623306,10.49555],[103.51608,10.638054000000123],[103.559402,10.715553000000114],[103.68438700000011,10.740566],[103.66302,10.760555],[103.72191,10.866108],[103.66664100000014,11.027777],[103.555237,11.156942000000129],[103.4758,11.13194],[103.41164,10.943888],[103.348862,10.884722],[103.12970000000013,10.88305],[103.094704,10.937777],[103.101357,11.348608],[103.02885,11.541943],[102.95636,11.551388],[102.98494,11.59016],[102.966637,11.675276],[103.01804400000015,11.719997],[103.064003,11.70218],[103.084412,11.723886],[103.0233,11.72889],[102.975517,11.710554],[102.957405,11.756529000000114],[102.893044,11.828054],[102.966919,11.718054],[102.954422,11.56972],[102.916092,11.635851],[102.913857,11.752222],[102.847473,11.835831],[102.716377,12.16555],[102.779427,12.45194],[102.636108,12.60111],[102.507217,12.67222],[102.53498800000011,12.805277000000103],[102.49247700000012,12.976664],[102.34554300000013,13.277498],[102.37719700000014,13.573887],[102.53830700000015,13.569164],[102.60027300000013,13.60555],[102.56165,13.678886],[102.72442600000011,13.76583],[102.791656,13.93694],[102.902481,14.03666],[102.95999100000012,14.204998],[103.143883,14.317221],[103.46692700000011,14.371664],[103.659149,14.447777],[103.72276,14.390276],[103.922211,14.339165],[104.278587,14.408888000000104],[104.473038,14.356941],[104.57554600000014,14.36527],[104.645538,14.430277],[104.805542,14.448332],[105.001938,14.383333],[105.00943,14.28889],[105.069443,14.21833],[105.146652,14.246386],[105.17804000000012,14.342775],[105.21060200000011,14.349648],[105.209991,14.284443000000124],[105.36415,14.109442000000115],[105.5591280000001,14.168325],[105.7836,14.081387],[105.796944,14.026388],[105.91027800000012,13.932842000000107],[106.056641,13.93],[106.111099,13.945831000000112],[106.17553700000013,14.064720000000136],[106.0338670000001,14.237219],[105.99971,14.369719],[106.216377,14.376942],[106.253883,14.494442000000104],[106.3311,14.444721],[106.408333,14.456387],[106.522491,14.595831],[106.627762,14.466942],[106.75262,14.40942],[106.853592,14.30305],[107.12109,14.405277000000126],[107.25360100000012,14.531111],[107.47304,14.64],[107.5466,14.708618],[107.558319,14.651388],[107.489151,14.44861]]]]}},{"type":"Feature","properties":{"FIPS":"CE","ISO2":"LK","ISO3":"LKA","UN":144,"NAME":"Sri Lanka","AREA":6463,"POP2005":19120763,"REGION":142,"SUBREGION":34,"LON":80.704,"LAT":7.612},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.714996,7.681388],[81.70166,7.68111],[81.712769,7.705],[81.718048,7.692498],[81.714996,7.681388]]],[[[81.80693100000013,7.477777],[81.78137200000015,7.492777],[81.78751,7.567166],[81.723312,7.738610000000108],[81.80415,7.60055],[81.82721,7.484721],[81.80693100000013,7.477777]]],[[[79.9124910000001,9.018055],[79.894989,8.986664000000133],[79.85054,9.00111],[79.69303900000011,9.092497],[79.826385,9.083887],[79.9124910000001,9.018055]]],[[[79.71638,9.47722],[79.658035,9.499165],[79.657486,9.555832000000123],[79.719147,9.520832],[79.71638,9.47722]]],[[[79.974426,9.615274],[79.871918,9.63444],[79.854706,9.750832],[79.882202,9.75999800000011],[79.897217,9.676109],[79.974426,9.615274]]],[[[80.274704,9.775],[80.4019320000001,9.624998],[80.670532,9.427498],[80.82443200000012,9.26194],[80.9322,9.040833],[80.914703,8.943054000000132],[80.9686,8.952221000000122],[81.027206,8.916666000000134],[81.231094,8.65111],[81.252213,8.54222],[81.208328,8.570831],[81.130539,8.5],[81.265549,8.453609000000142],[81.320267,8.519999],[81.361374,8.487219],[81.423035,8.201942],[81.39194,8.149443],[81.51944,8.00028],[81.613876,7.824721],[81.7080380000001,7.743888],[81.686241,7.681669],[81.772217,7.570277],[81.766663,7.462777],[81.81035,7.441926],[81.830276,7.468888000000106],[81.881653,7.288054000000102],[81.890549,7.000555],[81.832214,6.76583],[81.777771,6.615276],[81.661102,6.439999000000114],[81.324158,6.198332],[80.829163,6.040833],[80.5872,5.917777],[80.18441800000011,6.034721000000104],[80.046097,6.23972],[79.857483,6.801943],[79.796936,7.661388000000102],[79.702484,8.079443],[79.698318,8.19749800000011],[79.74914600000011,8.265554],[79.731094,8.00916500000011],[79.827774,7.995554000000141],[79.81303400000013,8.245831],[79.86609,8.535],[79.91467,8.56221],[79.941925,8.630831],[79.91721,8.93778],[80.050262,9.02638800000011],[80.123306,9.248053],[80.094437,9.411388000000102],[80.19497700000011,9.47028],[80.051926,9.594442000000129],[80.276657,9.49972],[80.472488,9.488886],[80.61219800000015,9.443054],[80.464157,9.531666],[80.331665,9.555277],[80.186646,9.647778],[80.1660920000001,9.636387],[80.195251,9.5841640000001],[80.12052900000015,9.599998000000141],[79.94582,9.689165000000116],[79.925812,9.74472],[79.9833220000001,9.817497],[80.113647,9.802999],[80.136024,9.769053],[80.226379,9.751389000000131],[80.311371,9.648888],[80.44413800000012,9.57166500000011],[80.224052,9.774459],[80.14055,9.79222],[80.24498,9.828054],[80.274704,9.775]]]]}},{"type":"Feature","properties":{"FIPS":"CF","ISO2":"CG","ISO3":"COG","UN":178,"NAME":"Congo","AREA":34150,"POP2005":3609851,"REGION":2,"SUBREGION":17,"LON":15.986,"LAT":-0.055},"geometry":{"type":"Polygon","coordinates":[[[12.779047,-4.388991],[12.65,-4.559445],[12.395277,-4.6125],[12.335278,-4.7875],[12.206388,-4.758889],[12.166388,-4.895834],[12.004166,-5.018612],[11.80722,-4.781667],[11.780277,-4.550279],[11.384998,-4.195834],[11.349998,-4.1],[11.140661,-3.925277],[11.225555,-3.693611],[11.496944,-3.506945],[11.580276,-3.531667],[11.654999,-3.640278],[11.74,-3.686667],[11.87361,-3.708611],[11.925833,-3.636945],[11.839443,-3.556111],[11.9725,-3.311389],[11.701111,-3.178056],[11.717499,-3.050556],[11.804443,-3.013056],[11.642776,-2.818056],[11.543333,-2.856945],[11.54611,-2.793889],[11.647499,-2.620833],[11.574165,-2.333333],[11.659166,-2.353889],[11.733332,-2.418889],[11.801666,-2.372222],[11.964167,-2.333333],[12.0525,-2.416945],[12.478054,-2.327222],[12.502222,-2.133889],[12.448055,-2.024445],[12.440277,-1.890833],[12.506943,-1.921667],[12.520555,-1.8725],[12.584999,-1.827222],[12.65,-1.8225],[12.821388,-1.912778],[12.921389,-2.184167],[12.967499,-2.1825],[13.006388,-2.240278],[13.001507,-2.367672],[13.041388,-2.327778],[13.482777,-2.4375],[13.727221,-2.184167],[13.76222,-2.088889],[13.878887,-2.314723],[13.865833,-2.468889],[14.110832,-2.493056],[14.221388,-2.292778],[14.258333,-1.973056],[14.429722,-1.891667],[14.404444,-1.597778],[14.464722,-1.550556],[14.482498,-1.26],[14.420277,-0.995278],[14.51861,-0.609167],[14.4175,-0.478889],[14.322222,-0.435556],[14.192499,-0.444722],[14.128887,-0.277778],[13.943054,-0.235278],[13.901667,-0.266667],[13.848331,-0.198611],[13.940277,-0.038056],[13.949999,0.033333],[13.886944,0.214722],[13.957777,0.344167],[14.0875,0.537778],[14.273888,0.546667],[14.343611,0.618055],[14.47361,0.830833],[14.487221,0.913611],[14.320555,1.106111],[14.273888,1.326389],[14.188889,1.391389],[14.073889,1.375278],[13.90361,1.438889],[13.803333,1.435833],[13.782776,1.388889],[13.573055,1.305833],[13.186785,1.222476],[13.175833,1.278055],[13.247776,1.325833],[13.246387,1.395555],[13.137499,1.568611],[13.141943,1.703055],[13.194443,1.813056],[13.184166,1.929167],[13.279722,2.048055],[13.293888,2.163611],[14.463055,2.143055],[14.564999,2.169444],[14.714167,2.124166],[14.759165,2.0725],[14.856667,2.082778],[14.88722,2.016666],[15.090555,1.977778],[15.146387,2.037777],[15.211111,2.036111],[15.296389,1.975],[15.486387,1.976389],[15.704166,1.930833],[15.978333,1.771111],[16.07222,1.654166],[16.162498,1.726666],[16.094166,1.9525],[16.083885,2.158889],[16.104721,2.199722],[16.163887,2.183333],[16.206387,2.216111],[16.501663,2.849444],[16.465832,2.9225],[16.482777,3.156666],[16.588886,3.481944],[16.699165,3.545278],[16.972221,3.547222],[17.346664,3.611111],[17.475277,3.713055],[17.615276,3.629722],[17.823608,3.620555],[17.858887,3.535555],[18.119442,3.560555],[18.178055,3.483333],[18.230274,3.495833],[18.272499,3.583055],[18.490833,3.637777],[18.590553,3.486389],[18.624958,3.479444],[18.641388,3.204444],[18.611664,3.131944],[18.540848,3.076287],[18.342777,2.612778],[18.233055,2.519166],[18.222775,2.413611],[18.091942,2.224166],[18.071388,1.534722],[17.873608,0.995833],[17.907742,0.802778],[17.894997,0.6],[17.965832,0.477778],[17.961109,0.399722],[17.803608,0.148611],[17.717777,-0.133889],[17.745831,-0.376389],[17.714996,-0.537222],[17.54472,-0.785833],[17.326942,-1.001111],[17.121944,-1.068333],[16.875275,-1.24],[16.750553,-1.411111],[16.528439,-1.862468],[16.195831,-2.175834],[16.215832,-2.696945],[16.18222,-2.911667],[16.191944,-3.261945],[16.226944,-3.328333],[15.890505,-3.943009],[15.542221,-4.05139],[15.48361,-4.145],[15.456665,-4.267778],[15.41111,-4.298056],[15.328054,-4.277223],[15.209721,-4.339445],[15.094166,-4.500278],[14.919998,-4.656945],[14.829721,-4.82389],[14.661388,-4.909445],[14.489443,-4.84],[14.418888,-4.887222],[14.418888,-4.75639],[14.364721,-4.557778],[14.487499,-4.426945],[14.400833,-4.2775],[14.014999,-4.440834],[13.964998,-4.495001],[13.905474,-4.489439],[13.819166,-4.421667],[13.729443,-4.445834],[13.739443,-4.562222],[13.69861,-4.728333],[13.595276,-4.783611],[13.543888,-4.751945],[13.501665,-4.768333],[13.514999,-4.797501],[13.410276,-4.883056],[13.191387,-4.680278],[13.138611,-4.582223],[13.096666,-4.575278],[13.091389,-4.633056],[13.05722,-4.620001],[12.909166,-4.47],[12.895832,-4.415278],[12.779047,-4.388991]]]}},{"type":"Feature","properties":{"FIPS":"CG","ISO2":"CD","ISO3":"COD","UN":180,"NAME":"Democratic Republic of the Congo","AREA":226705,"POP2005":58740547,"REGION":2,"SUBREGION":17,"LON":23.654,"LAT":-2.876},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.953054,-5.87611],[12.865,-5.886111],[12.73722,-5.94361],[12.75166,-5.9025],[12.84417,-5.85056],[12.971666,-5.854445],[12.953054,-5.87611]]],[[[25.89167,5.192499000000112],[26.06555200000014,5.197499],[26.1275,5.249166],[26.393887,5.13278],[26.488888,5.046389],[26.745277,5.09139],[26.861664,5.02861],[26.94527,5.146111],[27.06666600000011,5.201111000000139],[27.1425,5.195277],[27.41111,5.08],[27.524441,4.94361],[27.66666400000014,4.8925],[27.78221900000011,4.76028],[27.787498,4.60139],[28.028053,4.502222],[28.1925,4.352777],[28.363052,4.29],[28.65083,4.423611000000108],[28.712498,4.537499],[28.776665,4.561944],[28.82583,4.48278],[29.01333,4.498333],[29.215275,4.340278],[29.328331,4.39333],[29.43278,4.525555],[29.487499000000128,4.683055],[29.806664000000126,4.565833000000111],[29.79472,4.379444],[29.959442,4.291389],[30.058331000000123,4.13472],[30.143887000000124,4.10556],[30.208611,3.95917],[30.551941,3.864722],[30.582222,3.69028],[30.558887,3.61389],[30.786388,3.66],[30.858818,3.493394000000137],[30.903053,3.52528],[30.926388,3.510555],[30.93166,3.401389],[30.828053,3.240278000000103],[30.76361,3.067222],[30.855553,2.9575],[30.878609,2.84972],[30.754997000000117,2.598611],[30.729721,2.448055],[30.89110900000014,2.335],[30.942497000000117,2.406111],[30.987221,2.408333],[31.299202,2.16285],[31.302776,2.121388],[31.03666,1.765555],[30.688053,1.493889],[30.44861,1.20667],[30.236111,1.134166],[30.218609,0.996389],[30.145832,0.898333],[29.96055200000012,0.825555],[29.93833,0.634444],[29.9625,0.487222],[29.85833,0.366667],[29.81389,0.158611],[29.773331,0.172222],[29.716663,0.072222000000124],[29.734964000000105,0],[29.648609000000135,-0.439722],[29.666664,-0.58056],[29.618332,-0.73333],[29.62833,-0.88889],[29.574444,-0.921944],[29.596943,-1.38583],[29.456390000000113,-1.50417],[29.361111,-1.510278],[29.270832,-1.626389],[29.12722,-1.860278],[29.170555,-2.10028],[29.114998000000128,-2.24806],[28.889164,-2.36722],[28.863609,-2.41028],[28.853333,-2.52028],[28.902222,-2.66],[29.025139,-2.73834],[28.987499,-2.810556],[29.239166,-3.06361],[29.210552,-3.236667],[29.236965,-3.27187],[29.208332,-3.311667],[29.246944,-3.59444],[29.236385,-3.916111],[29.33916,-4.041112],[29.387218,-4.15944],[29.43027500000011,-4.50111],[29.341389000000103,-4.797778],[29.34916,-4.939723],[29.631664,-5.72194],[29.4977760000001,-5.97972],[29.550278,-6.29528],[29.732498,-6.627501],[29.891388,-6.75528],[30.045277,-6.82833],[30.17555,-6.9475],[30.311386,-7.136945],[30.406944,-7.35639],[30.455830000000102,-7.58028],[30.654442,-7.88694],[30.77124,-8.192247],[28.90166,-8.47861],[28.961666,-8.66778],[28.86833,-8.826946],[28.62249800000012,-9.09389],[28.37222,-9.26083],[28.402222,-9.31167],[28.518055,-9.35472],[28.53777700000012,-9.470835],[28.696388000000127,-9.79139],[28.625832000000116,-9.94778],[28.595,-10.246113],[28.63361,-10.52083],[28.699718000000132,-10.65333],[28.666943000000117,-10.71],[28.620831,-10.717501],[28.552498,-10.83528],[28.46694200000013,-11.23972],[28.361088,-11.444065],[28.363331,-11.550835],[28.49638700000014,-11.8675],[28.835552,-12.09694],[28.93972,-12.20667],[29.03139,-12.383057],[29.257221,-12.364168],[29.49361,-12.458057],[29.527775000000133,-12.39639],[29.48638,-12.39361],[29.446941,-12.34222],[29.48111,-12.23944],[29.571663,-12.190001],[29.80505,-12.15525],[29.801388,-13.45417],[29.63833,-13.42167],[29.621387,-13.371946],[29.685833,-13.269724],[29.58944,-13.221945],[29.203053,-13.435556],[29.098053,-13.38917],[29.015831,-13.397779],[28.961666,-13.34778],[28.920277,-13.150557],[28.733887,-12.896946],[28.662777,-12.836945],[28.586941000000134,-12.89889],[28.561386,-12.878889],[28.49361,-12.741945],[28.531666,-12.65917],[28.44194,-12.519724],[28.341942,-12.438057],[28.163609,-12.42944],[27.865833,-12.25611],[27.791386,-12.300001],[27.660000000000135,-12.296667],[27.535831,-12.173334],[27.478611,-11.96667],[27.232498000000135,-11.781389],[27.199249,-11.5679],[27.03221900000011,-11.59611],[26.978611000000114,-11.89167],[26.868610000000103,-11.97361],[26.678055,-11.989168],[26.443054,-11.911112],[26.004719,-11.9025],[25.842499,-11.802223],[25.498333000000116,-11.71],[25.359722,-11.64167],[25.28861,-11.37639],[25.344719,-11.28111],[25.332222,-11.193335],[25.18416600000012,-11.25417],[24.74472,-11.315001],[24.585552,-11.44083],[24.44833,-11.463612],[24.361111000000108,-11.355278],[24.413055,-11.269445],[24.397499,-11.10945],[24.318054,-11.050001],[24.178886,-11.030001],[24.128609,-10.91139],[23.998333,-10.86917],[23.863888,-11.02722],[23.476387,-10.95833],[23.368053,-10.98278],[23.218609,-11.076389],[23.084999,-11.09667],[22.94278,-11.095],[22.86360900000011,-11.049168],[22.716663,-11.093334],[22.560555,-11.033611],[22.515553000000125,-11.04472],[22.4675,-11.14167],[22.29888,-11.23722],[22.253887,-11.209723],[22.246109,-11.073057],[22.16361,-10.86139],[22.31583,-10.73028],[22.272499,-10.513056],[22.31222,-10.36444],[22.207222,-10.15417],[22.162498,-9.930557],[22.02138,-9.84806],[21.874722,-9.665001],[21.79055,-9.40556],[21.939999,-8.49611],[21.836109000000132,-8.13167],[21.75416600000011,-7.99944],[21.77305200000012,-7.77611],[21.851109,-7.59167],[21.859997,-7.48],[21.839996,-7.367778],[21.782959,-7.280842],[20.54872,-7.28362],[20.543053,-7.124445],[20.629745,-6.913882],[20.3325,-6.91444],[20.311386,-6.994722],[19.538948,-6.99661],[19.489998,-7.29389],[19.535831,-7.46],[19.467777000000126,-7.571945],[19.374218,-7.57232],[19.4025,-7.688056],[19.34944,-7.889723],[19.373055,-7.99611],[18.791759,-7.99898],[18.764038,-7.92967],[18.531109,-7.93028],[18.525833,-7.995556],[18.19611,-7.996667],[18.112572,-8.02862],[18.115417,-8.10711],[18.00722,-8.10806],[17.899441,-8.04167],[17.624165,-8.09806],[17.525555,-8.053612],[17.43833,-7.876667],[17.309444,-7.75611],[17.151108000000136,-7.452778],[16.991386,-7.29361],[16.941666,-7.19861],[16.968609,-7.01083],[16.928886,-6.889723],[16.8675,-6.854167],[16.782776,-6.68167],[16.687775,-6.402223],[16.725224,-6.197441],[16.60611,-6.027223],[16.579720000000123,-5.90083],[16.215832,-5.852501],[15.07639,-5.86278],[14.596388000000104,-5.90806],[13.980276000000117,-5.83583],[13.11139,-5.87056],[12.904165,-5.81111],[12.759722000000124,-5.85889],[12.704721,-5.961945],[12.435833,-6.01667],[12.264999,-5.86472],[12.21455200000014,-5.76856],[12.283888000000102,-5.73444],[12.52667,-5.72417],[12.53222,-5.115834],[12.565554000000134,-5.025556],[12.708055,-4.918612],[12.82055,-4.7375],[13.0825,-4.67],[13.100832,-4.5725],[13.413887,-4.882501],[13.515,-4.797501],[13.501665,-4.76833],[13.54389,-4.75194],[13.595276000000126,-4.783611],[13.69861,-4.72833],[13.739443,-4.562222],[13.729443,-4.445834],[13.81917,-4.42167],[13.905474,-4.48944],[13.964998,-4.495001],[14.014999,-4.44083],[14.40083,-4.2775],[14.487499,-4.42694],[14.364721,-4.55778],[14.418888,-4.75639],[14.418888,-4.88722],[14.489443,-4.84],[14.66139,-4.909445],[14.829721,-4.82389],[14.92,-4.65694],[15.094166,-4.500278],[15.209721,-4.339445],[15.328054,-4.27722],[15.41111,-4.29806],[15.456665,-4.26778],[15.48361,-4.145],[15.542221,-4.05139],[15.890505,-3.943009],[16.226944,-3.328333],[16.19194,-3.261945],[16.18222,-2.911667],[16.215832,-2.696945],[16.195831,-2.17583],[16.528439000000105,-1.86247],[16.750553,-1.411111],[16.875275,-1.24],[17.121944,-1.068333],[17.32694,-1.001111],[17.54472,-0.785833],[17.714996,-0.53722],[17.74583,-0.376389],[17.717777000000126,-0.133889],[17.80360800000011,0.14861100000013],[17.961109,0.399722],[17.965832,0.477778],[17.894997,0.600000000000136],[17.90774,0.80278],[17.87361,0.995833000000118],[18.071388,1.53472],[18.09194200000013,2.22417],[18.222775,2.413611],[18.233055,2.51917],[18.342777,2.612778],[18.540848,3.07629],[18.611664,3.13194],[18.64138800000012,3.204444],[18.590553,3.719166],[18.647778,4.021388],[18.63028,4.13472],[18.534443,4.316111],[18.58222,4.370555000000138],[18.64333,4.35389],[18.75333000000012,4.392221],[18.833885,4.569722],[18.996387,4.745555000000138],[19.106388,4.9325],[19.19055,4.94583],[19.42139,5.13417],[19.703888,5.136666],[19.834442,5.09083],[19.896942,4.997499],[20.004444,4.97611],[20.3425,4.76555500000012],[20.456665,4.624722],[20.452785,4.522378],[20.58555200000012,4.410000000000139],[20.838608000000136,4.44917],[20.964722,4.434166],[21.07249800000011,4.393888],[21.208611,4.288888],[21.539165,4.24528],[21.651665,4.299166000000127],[21.742775,4.294999000000132],[22.103054,4.214444],[22.25972,4.134166],[22.37916600000011,4.1275],[22.4536,4.144581],[22.538609,4.218888],[22.59194200000013,4.46667],[22.690277,4.48361],[22.77583,4.70667],[22.89583,4.82111],[22.974998,4.831388000000118],[23.022499,4.743055],[23.211941,4.681944],[23.326664000000108,4.599166000000139],[23.420277,4.59111],[23.441666,4.65361],[23.584442,4.73444400000011],[24.372219,5.010833],[24.400555,5.040833],[24.355,5.059999000000118],[24.394165,5.11555],[24.525555,5.077222],[24.734444,4.910832000000141],[24.942776,4.984444],[25.089722,4.973611],[25.308331,5.0325],[25.349442,5.144722000000115],[25.310555,5.19111],[25.361942,5.314722],[25.54222,5.381389],[25.635555000000124,5.305277],[25.89167,5.192499000000112]]]]}},{"type":"Feature","properties":{"FIPS":"BY","ISO2":"BI","ISO3":"BDI","UN":108,"NAME":"Burundi","AREA":2568,"POP2005":7858791,"REGION":2,"SUBREGION":14,"LON":29.887,"LAT":-3.356},"geometry":{"type":"Polygon","coordinates":[[[29.229897,-3.750964],[29.246944,-3.594445],[29.208332,-3.311667],[29.236965,-3.271866],[29.210552,-3.236667],[29.239166,-3.063612],[28.987499,-2.810556],[28.987778,-2.77],[29.052219,-2.705833],[29.058887,-2.604722],[29.140553,-2.589167],[29.328888,-2.653611],[29.367222,-2.825],[29.443892,-2.795836],[29.533607,-2.826111],[29.630831,-2.781113],[29.736385,-2.803611],[29.85083,-2.759722],[29.907497,-2.693056],[29.952221,-2.309445],[30.15361,-2.430556],[30.386665,-2.298056],[30.57333,-2.399167],[30.519444,-2.4675],[30.4175,-2.861945],[30.484997,-2.947222],[30.563332,-2.893056],[30.666111,-2.976389],[30.843662,-2.978794],[30.834999,-3.256945],[30.651665,-3.3325],[30.6222,-3.370114],[30.663609,-3.386667],[30.66222,-3.418889],[30.449165,-3.547223],[30.391388,-3.711109],[30.400833,-3.786111],[30.32111,-3.786667],[30.228054,-3.928056],[30.172222,-4.086667],[30.026108,-4.269444],[29.766388,-4.438056],[29.423885,-4.448056],[29.387218,-4.159445],[29.339165,-4.041112],[29.236385,-3.916111],[29.229897,-3.750964]]]}},{"type":"Feature","properties":{"FIPS":"CH","ISO2":"CN","ISO3":"CHN","UN":156,"NAME":"China","AREA":932743,"POP2005":1312978855,"REGION":142,"SUBREGION":30,"LON":106.514,"LAT":33.42},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.524147,19.134441],[110.514999,19.13277],[110.510269,19.139164],[110.521927,19.139717000000132],[110.524147,19.134441]]],[[[110.72054300000013,20.063332],[110.781372,20.008053],[110.93082,20.001389],[111.0311,19.639996],[110.967758,19.631664],[110.85498,19.528885],[110.81749,19.543610000000115],[110.668587,19.356663],[110.5836,19.15628],[110.48034700000011,19.1672],[110.523239,19.12377],[110.58087,19.141798],[110.48909800000011,18.910831],[110.525543,18.800831],[110.396378,18.70361],[110.23997,18.647774],[110.10498000000013,18.540283],[110.04776,18.38055],[109.96999,18.381664000000114],[109.914993,18.41944100000012],[109.766663,18.395],[109.703873,18.25972000000013],[109.74080700000013,18.248604],[109.722214,18.21610600000014],[109.703598,18.197773],[109.67915,18.237495],[109.63443000000012,18.229996],[109.566673,18.168884],[109.544708,18.221107],[109.45694,18.27916],[109.2227630000001,18.303051],[108.685532,18.505276],[108.69914,18.66555],[108.6183170000001,19.08083],[108.62831100000011,19.280277000000126],[108.69026200000013,19.38111],[108.76471,19.38805],[109.012207,19.598331],[109.15776100000011,19.648052],[109.29387,19.759998],[109.303589,19.782776],[109.27082800000011,19.786942000000124],[109.164429,19.724438],[109.16330700000015,19.800274],[109.25943000000012,19.901661],[109.31081,19.919163],[109.452477,19.866386],[109.46582,19.828609],[109.51776100000012,19.88055],[109.527771,19.947216],[109.610809,19.99388],[109.710541,20.007500000000107],[109.785812,19.965549],[109.934982,19.992218],[109.978592,19.944717],[110.016937,19.948601],[110.09387200000015,19.97304],[110.156097,20.061386],[110.57166300000011,20.027222],[110.57222,20.091942],[110.66554300000013,20.133606],[110.72054300000013,20.063332]]],[[[116.71887200000013,20.709438],[116.705261,20.711384],[116.70193,20.71999],[116.71555,20.715271],[116.71887200000013,20.709438]]],[[[110.59721,20.87944],[110.548027,20.913883],[110.59664900000013,20.95833],[110.63721,20.938328],[110.59721,20.87944]]],[[[109.121918,21.055275],[109.11581,21.0225],[109.072769,21.01028],[109.07193000000012,21.050274],[109.121918,21.055275]]],[[[110.54887,21.059162],[110.498032,20.95583],[110.445251,21.001942],[110.248871,20.977219],[110.272491,21.053329],[110.329163,21.075554],[110.54887,21.059162]]],[[[110.4994200000001,21.193329],[110.461929,21.18277],[110.614151,21.193329],[110.53665,21.09694],[110.441933,21.156384000000116],[110.454712,21.201385],[110.4994200000001,21.193329]]],[[[111.83611300000013,21.565273],[111.80554,21.561108],[111.84055,21.643051000000128],[112.002487,21.651939],[111.995247,21.615273],[111.83611300000013,21.565273]]],[[[108.329712,21.654163],[108.32083100000011,21.665829],[108.328873,21.678608],[108.33305,21.674438],[108.329712,21.654163]]],[[[112.5338670000001,21.59083],[112.51805100000013,21.611107000000118],[112.56749000000013,21.675827],[112.648041,21.70277],[112.646942,21.63861],[112.5338670000001,21.59083]]],[[[112.805817,21.65333],[112.79358700000012,21.574165000000107],[112.764427,21.576385000000126],[112.70332,21.6877750000001],[112.77609300000017,21.767776],[112.868874,21.76638800000012],[112.805817,21.65333]]],[[[113.38333100000011,22.00889],[113.366928,21.99721],[113.30748,22.019718],[113.378036,22.084721],[113.404984,22.05722],[113.38333100000011,22.00889]]],[[[113.2966540000001,22.06388500000014],[113.267761,22.11360900000011],[113.36026,22.153606],[113.325546,22.083054],[113.2966540000001,22.06388500000014]]],[[[113.594994,22.652218000000115],[113.56887800000015,22.651108],[113.48580900000013,22.726662],[113.5435870000001,22.736382],[113.594994,22.652218000000115]]],[[[113.58804,22.75055300000014],[113.450546,22.826385],[113.38721,22.897495],[113.48387100000012,22.900829],[113.60476700000015,22.76677],[113.58804,22.75055300000014]]],[[[117.11804,23.399162],[116.953598,23.42055],[116.94470200000012,23.43888500000014],[117.098038,23.49055],[117.13025700000014,23.449718],[117.11804,23.399162]]],[[[117.40470900000014,23.771111],[117.50749,23.726383000000112],[117.39415,23.585274000000137],[117.3116530000001,23.57972],[117.36831700000016,23.759998],[117.40470900000014,23.771111]]],[[[118.126923,24.425827],[118.06218700000011,24.45722],[118.09471,24.553329],[118.17830700000012,24.52916],[118.18887,24.49388],[118.126923,24.425827]]],[[[119.301651,25.419441000000116],[119.277481,25.503052],[119.333878,25.57027],[119.31915300000014,25.43110700000011],[119.301651,25.419441000000116]]],[[[119.82666000000017,25.582775],[119.844994,25.5405540000001],[119.80304000000011,25.524441],[119.76555,25.407497],[119.69637300000012,25.428051],[119.66970800000013,25.481937],[119.72304,25.63888],[119.779427,25.656940000000134],[119.82666000000017,25.582775]]],[[[119.277771,26.035275],[119.32944,26.033333],[119.408333,25.983604],[119.387497,25.959995000000106],[119.2705380000001,25.99138],[119.211327,26.07193],[119.277771,26.035275]]],[[[121.17082200000016,28.046944],[121.129433,28.05722],[121.119141,28.133884000000137],[121.19359,28.202774],[121.241928,28.200550000000135],[121.26749,28.18055],[121.23943,28.086941],[121.17082200000016,28.046944]]],[[[121.94109300000014,29.05277600000011],[121.888603,29.069996],[121.87359600000012,29.14916],[121.94136,29.164997],[121.964706,29.098606],[121.94109300000014,29.05277600000011]]],[[[122.111923,29.787777],[122.18193,29.698051],[122.166092,29.652496],[122.097214,29.717216],[122.03082,29.71610600000014],[122.05581700000016,29.775276],[122.111923,29.787777]]],[[[122.411377,29.933052],[122.396652,29.829163],[122.390823,29.82944],[122.3186,29.941662],[122.411377,29.933052]]],[[[121.86580700000013,29.969994],[121.82832,29.998882],[121.8611,30.0816650000001],[121.906647,30.032219],[121.900818,29.986382],[121.86580700000013,29.969994]]],[[[122.325272,30.018608],[122.28665200000012,29.928883],[122.17581,29.99388],[122.008041,30.00444],[121.96165,30.13916],[122.165817,30.119164],[122.28692600000011,30.067497],[122.325272,30.018608]]],[[[122.21111,30.241104],[122.142487,30.250000000000114],[122.0747070000001,30.28722],[122.21219600000016,30.339165],[122.23526000000014,30.31111],[122.21111,30.241104]]],[[[122.420258,30.41360900000012],[122.275543,30.43222],[122.27277400000013,30.474995],[122.412773,30.448883000000137],[122.420258,30.41360900000012]]],[[[121.844994,31.288052000000107],[121.81442300000013,31.313053000000135],[121.79193,31.369995000000127],[121.87886000000015,31.35666300000014],[121.844994,31.288052000000107]]],[[[121.487762,31.717773],[121.46471,31.7061],[121.56469700000014,31.63583],[121.85693400000014,31.54389],[121.86831700000016,31.489162],[121.82832,31.45166],[121.74971,31.464718],[121.40193,31.598331],[121.298599,31.668884],[121.20386,31.800537],[121.333054,31.81832900000012],[121.487762,31.717773]]],[[[119.89943,32.07111],[119.786926,32.12221],[119.81960300000013,32.19235],[119.716087,32.271935],[119.76389,32.291939],[119.823883,32.268051],[119.89943,32.07111]]],[[[121.43609600000013,39.391663],[121.409416,39.361382],[121.26082,39.378326],[121.25582900000019,39.409431],[121.337196,39.4786],[121.393051,39.4791560000001],[121.4511,39.451935],[121.43609600000013,39.391663]]],[[[123.3822020000001,53.526657],[123.60999300000024,53.54444100000012],[123.86638,53.48054500000012],[124.104431,53.3408280000001],[124.255257,53.356659],[124.402206,53.212212000000136],[124.634987,53.18971],[124.818329,53.126938],[124.96360800000012,53.18277],[125.16499,53.19305],[125.48552700000015,53.06916],[125.61609,53.052773],[125.72609,52.983604],[125.723877,52.946381],[125.64861,52.91277],[125.65248,52.875549],[125.85637,52.87276500000012],[125.97720300000013,52.760277],[126.05081,52.78583],[126.095543,52.764442],[125.97304,52.64166300000011],[125.98858600000015,52.582214],[126.030823,52.563324],[126.08472,52.589989],[126.18609600000015,52.540833],[126.213608,52.513054],[126.19775,52.464439],[126.267487,52.458603],[126.333878,52.395828],[126.34860200000014,52.29166],[126.31887800000014,52.192215],[126.55721300000016,52.130547],[126.51221,52.038887],[126.461647,52.026939],[126.4422,51.988045],[126.6091540000001,51.787216],[126.71887200000015,51.713051],[126.79054,51.424438],[126.915268,51.379158],[126.821381,51.33027600000014],[126.81609300000014,51.266388],[126.89333300000021,51.239159],[126.887154,51.30305],[126.97276,51.31805400000013],[126.89861,51.18665],[126.93054,51.05999],[127.127197,50.915543],[127.29193,50.741379],[127.279984,50.680824],[127.36775200000011,50.570831],[127.28942900000028,50.460274],[127.331383,50.31916],[127.58607,50.208565],[127.56972,50.128326],[127.48831,50.042221],[127.529427,49.78916],[127.671654,49.748878],[127.69136000000015,49.66721300000012],[127.83804,49.586655],[128.18246,49.534164],[128.50525,49.586937],[128.77359,49.575554],[128.875244,49.47777],[128.99881,49.43888],[129.050781,49.36473100000011],[129.103271,49.346680000000106],[129.390503,49.427864],[129.482697,49.41843],[129.523468,49.391235],[129.54495,49.293182],[129.721863,49.26627],[129.73269700000014,49.19293],[129.91272,49.082413],[129.90662,49.0368580000001],[130.221619,48.864716],[130.41803,48.8961],[130.504425,48.851936],[130.67163100000013,48.864998],[130.52164,48.607773],[130.826355,48.32222000000013],[130.83081100000015,48.290833],[130.65942400000017,48.098602],[130.681366,48.045547],[130.88970900000015,47.900269],[130.96301,47.700829],[131.09524,47.672432],[131.26110800000026,47.729156],[131.44192,47.738327],[131.618011,47.663879],[131.919434,47.66999],[132.341064,47.742493],[132.54248,47.713882000000126],[132.664429,47.878044],[133.08856200000014,48.10166],[133.506653,48.071381],[133.593567,48.172493000000145],[133.751373,48.249718],[134.41534,48.391121],[134.740753,48.267128],[134.68136600000014,48.220543000000134],[134.66775500000017,48.10721600000011],[134.5838620000003,48.06277],[134.55719000000022,47.994713],[134.68436,47.800903],[134.7702640000002,47.739433],[134.76721,47.7075],[134.55209400000012,47.46691900000013],[134.47912600000018,47.427773],[134.314697,47.42110400000013],[134.182465,47.323326],[134.14776600000016,47.249435],[134.222198,47.11082],[134.113586,47.055824],[134.03937,46.860489],[134.01944,46.666664],[133.90164200000015,46.57222000000012],[133.84579500000018,46.475548],[133.849976,46.439987],[133.92859,46.39249400000011],[133.9001770000002,46.25031300000012],[133.74469,46.155823],[133.656647,45.929718],[133.58304,45.871376000000105],[133.522217,45.88666],[133.477448,45.82666000000012],[133.468292,45.62221],[133.190521,45.504166],[133.1491390000001,45.450829],[133.09246800000017,45.24416],[133.128021,45.153046],[133.074677,45.088882],[132.923309,45.021935],[131.988556,45.24193600000012],[131.86468500000012,45.345543],[131.7033080000001,45.216103],[131.64444000000026,45.105553],[131.46912,44.973877],[131.349976,44.974709],[131.212463,44.910545],[131.11801100000014,44.925827],[130.95386,44.8461],[131.09552,44.691376],[131.29803500000014,44.051933],[131.24719200000013,44.027489],[131.231079,43.973877],[131.18719,43.55277],[131.304413,43.455826],[131.31137100000024,43.39222],[131.26110800000026,43.264442],[131.104675,43.03611],[131.123291,42.91082000000011],[131.015259,42.854996],[130.81857300000013,42.876099],[130.638031,42.831665],[130.40524300000016,42.71805],[130.45886200000018,42.679993],[130.5388790000003,42.681938],[130.60522500000013,42.61971],[130.580261,42.481102],[130.6043700000001,42.42186],[130.56747400000017,42.44305],[130.51416000000017,42.56805400000013],[130.33359,42.63833],[130.24328600000024,42.718323],[130.252197,42.892494000000106],[129.907532,43.00582],[129.84705,42.942482],[129.757751,42.729713],[129.711914,42.444153],[129.51470900000015,42.38694],[129.44220000000018,42.434433000000126],[129.341919,42.445824],[129.24606300000016,42.375824],[129.210236,42.21720900000014],[129.11441000000013,42.139435000000105],[128.95773,42.081108],[128.925812,42.02444],[128.48941,41.995544],[128.2824710000001,42.03916],[128.05886800000016,42.00332600000013],[128.101898,41.796104],[128.30191,41.577774],[128.15582,41.382492],[128.04412800000011,41.389435],[127.92970300000012,41.44804],[127.835274,41.409988000000105],[127.69415300000013,41.413132],[127.270828,41.472488],[127.159416,41.52999100000011],[127.13498700000025,41.593605],[127.057037,41.643501],[127.04802700000016,41.70832800000011],[126.91304000000025,41.796104],[126.795532,41.708046],[126.56656,41.616974],[126.584427,41.568604],[126.49247700000011,41.365273],[126.411102,41.31916],[126.016937,40.899994],[125.698029,40.85916],[125.60386700000015,40.755829],[125.457489,40.703323],[125.4126890000001,40.653801],[125.286102,40.647491000000116],[125.042763,40.537498],[125.021103,40.49833],[125.03997800000012,40.457214],[124.880539,40.470543],[124.70844,40.305046],[124.554703,40.242218],[124.3613660000002,40.09166],[124.34444,39.98193400000014],[124.131088,39.829163],[123.98526,39.80999],[123.69109300000014,39.833878],[123.40694,39.734436],[123.37804,39.777489],[123.23858600000017,39.814156],[123.20999100000016,39.748878000000104],[123.262207,39.69332],[122.814423,39.581940000000145],[122.46165,39.41082],[122.39861,39.411659],[122.28777300000012,39.345825000000104],[122.13136,39.141106],[121.96276900000021,39.03305100000011],[121.73082,39.03138],[121.648041,38.996384],[121.64694200000018,38.92749],[121.709427,38.895828],[121.69582400000013,38.859436],[121.447746,38.80638],[121.34471,38.81554],[121.24136400000019,38.77388],[121.19136,38.7186],[121.13443,38.733604],[121.088318,38.914436],[121.130257,38.94499],[121.22608900000021,38.933601],[121.675537,39.085823],[121.689423,39.121933000000126],[121.59471,39.18471],[121.599426,39.2185970000001],[121.75109900000018,39.351662],[121.515266,39.364998],[121.431664,39.51166],[121.30330700000023,39.496384],[121.228043,39.51527],[121.228867,39.53833],[121.46193,39.626656],[121.535812,39.621658],[121.54609700000013,39.68082400000014],[121.50388,39.684433000000126],[121.4561,39.741104],[121.46832,39.811378],[121.692749,39.92555],[121.77082800000028,39.914711],[121.87580900000022,39.993607],[122.299423,40.5],[122.045258,40.742218],[121.751389,40.8408280000001],[121.56526,40.83665500000012],[121.52388,40.88805],[121.3647,40.931938],[121.17747,40.921936],[121.081673,40.839432],[120.970543,40.816666],[120.938026,40.739433],[121.03692600000011,40.712212000000136],[120.82776600000011,40.66305],[120.54027,40.394440000000145],[120.50193800000021,40.24332400000014],[120.455261,40.200546],[119.519707,39.86805],[119.34082000000012,39.71527100000014],[119.25582900000018,39.551102],[119.25305200000014,39.39971900000012],[118.924423,39.128044],[118.891098,39.12471],[118.96720900000014,39.192215],[118.748322,39.14277],[118.60498,39.18943],[118.321381,39.03889],[118.24275,39.068054],[118.16499,39.18249500000013],[118.051651,39.224159],[117.87997,39.195541],[117.743874,39.10499600000014],[117.536377,38.675552],[117.67221,38.386658],[117.80053700000019,38.27527],[118.110527,38.146385],[118.48359700000026,38.100548],[118.84192700000017,38.15054],[118.95499,38.034164],[119.036926,37.87276500000013],[119.046944,37.666664],[118.97998,37.612213],[118.9536,37.54055],[118.95665,37.300545],[119.23276,37.14361],[119.40416000000016,37.12249],[119.767212,37.15138],[119.89026600000011,37.244438],[119.85416,37.35943600000013],[120.141663,37.4761],[120.30165,37.595268],[120.30941800000016,37.66249],[120.34887700000013,37.68526500000013],[120.74054,37.835266],[120.930817,37.81332400000014],[120.93665,37.77388],[121.12719700000014,37.6560970000001],[121.14998600000011,37.584435],[121.382751,37.55360400000012],[121.570541,37.424713],[121.694702,37.45805],[121.940536,37.4611],[122.123306,37.557213000000104],[122.165817,37.42083],[122.562187,37.396385],[122.59721400000024,37.209991],[122.467484,37.10583],[122.448318,37.14666],[122.40054,37.02582600000011],[122.41110200000014,36.99638],[122.54027,37.022491],[122.50471,36.893608],[122.3544310000002,36.827774],[122.200272,36.839989],[122.164703,36.944153],[121.94914200000017,37],[121.91748,36.97804],[121.945251,36.932495],[121.59444,36.758888],[121.501976,36.771381],[121.598038,36.845543],[121.489433,36.8211060000001],[121.372757,36.72276],[121.17554,36.67749],[121.02150700000016,36.58088700000013],[120.84860200000013,36.648048],[120.783333,36.621933],[120.734421,36.561104],[120.756378,36.537216],[120.847214,36.60416],[120.959991,36.526382],[120.875259,36.375824],[120.81944,36.46027400000014],[120.70387300000014,36.42083],[120.66832,36.26998100000014],[120.69969200000025,36.146935],[120.68081700000015,36.12748],[120.351646,36.04050400000011],[120.288269,36.06136],[120.35609,36.185852000000125],[120.30171,36.26843300000013],[120.2724,36.20274],[120.088852,36.199982],[120.09314700000016,36.103455],[120.177757,35.981659],[120.237762,35.959435],[120.09665,35.89888],[119.909988,35.747215],[119.90470900000014,35.644714000000135],[119.652206,35.58638],[119.549713,35.377213],[119.40138200000013,35.248878000000104],[119.369141,35.1097180000001],[119.209991,35.051659],[119.17608600000015,34.88499500000012],[119.197479,34.769714],[119.43775900000014,34.746101000000124],[119.478867,34.703323],[119.45860300000027,34.674713],[119.648041,34.529716],[119.9274670000002,34.45527],[120.253883,34.30999],[120.48082,33.76194],[120.498322,33.65721],[120.63610800000015,33.455826],[120.665543,33.32083100000011],[120.885818,32.97499],[120.894989,32.895271],[120.82693,32.699997],[120.8358230000001,32.640831],[121.286926,32.458046],[121.397774,32.37943300000012],[121.42469800000015,32.24916100000013],[121.37192,32.219711],[121.437477,32.114998],[121.560257,32.10305],[121.738876,31.998604000000114],[121.827766,31.918606],[121.890266,31.761944],[121.8911,31.687496],[121.82747700000014,31.67832900000013],[121.64333,31.713608],[121.474152,31.817219000000133],[121.29971300000012,31.869164],[120.944427,31.866386],[120.810532,32.019157],[120.51944000000026,32.102493],[120.266098,31.94416],[120.091927,31.94721600000014],[120.00694,31.992218],[119.9180530000001,32.10972],[119.86360200000011,32.274162],[119.77110300000014,32.326942],[119.68081700000016,32.303047],[119.607483,32.19471],[119.645828,32.1905440000001],[119.694107,32.236275],[119.7872,32.188042],[119.76801300000011,32.119835],[119.872597,32.066845],[119.88498700000015,31.990273],[120.1436,31.902218],[120.37776,31.954716],[120.43581,32.021103],[120.709427,31.986382000000102],[120.78997800000013,31.871384],[120.772774,31.81583000000012],[120.718872,31.856384],[120.718872,31.817497],[120.86026,31.75222],[120.978317,31.751389],[121.2211,31.62416500000012],[121.32515000000012,31.492218],[121.698868,31.285275],[121.86971300000016,31.008331],[121.891937,30.924995],[121.86831700000016,30.86138],[121.62804,30.854164],[121.44386,30.80444],[121.34248400000013,30.70583],[120.987198,30.56555200000014],[120.93221300000016,30.47083],[120.93665,30.415272],[120.875259,30.363884],[120.79248,30.32805300000012],[120.64943,30.398052],[120.453873,30.392494000000113],[120.14470700000014,30.199997],[120.305252,30.222218],[120.414703,30.291107000000125],[120.5122070000001,30.309719],[120.613602,30.110828],[120.79332,30.060555000000132],[120.776093,30.09111],[121.0793,30.262951],[121.284416,30.304443000000102],[121.483597,30.185272],[121.677757,29.963051000000124],[121.80081,29.94694],[121.931374,29.882217],[122.12442,29.89361],[121.868591,29.76722],[121.69747900000027,29.562496],[121.52304100000013,29.516941],[121.49609,29.54972],[121.44832,29.511665],[121.439697,29.416939000000124],[121.467484,29.459438],[121.71471,29.534996],[121.758614,29.52222],[121.74693300000011,29.46693800000014],[121.795532,29.474995],[121.84804,29.531387],[121.73359700000013,29.55638],[121.796371,29.60722],[121.912201,29.634995],[121.979713,29.585274],[121.888046,29.385551000000135],[121.9102630000001,29.27277400000014],[121.97527300000023,29.282776],[121.98692300000016,29.254997],[121.93359,29.195274],[121.84275800000012,29.16083],[121.8022,29.195827000000122],[121.795822,29.37333],[121.75888,29.359161],[121.743591,29.19416],[121.66026,29.186108],[121.561096,29.291107],[121.50499000000013,29.205551],[121.411926,29.16333],[121.46832,29.09583],[121.627762,29.101109],[121.69136,29.021942],[121.713318,28.9486],[121.68332,28.91444],[121.53858900000012,28.953606],[121.4897,28.938885],[121.53415,28.897774],[121.60108900000012,28.893608],[121.66304,28.826385],[121.61026,28.724995],[121.50471,28.69416],[121.36677,28.71127],[121.138603,28.84055],[121.29082,28.73527100000012],[121.481659,28.674164],[121.52361300000018,28.50027],[121.641663,28.34722],[121.578598,28.269165],[121.53166200000021,28.329163],[121.453049,28.336662],[121.4083330000002,28.303608],[121.341927,28.138885],[121.257492,28.207497000000103],[121.209717,28.357498],[121.16165200000012,28.382774],[121.10220300000013,28.290833],[121.10386700000015,28.2061],[120.94136,27.983051],[120.59082000000024,28.07944],[120.61331,28.018608],[120.846649,27.944717],[120.84305,27.876942],[120.694702,27.722218],[120.6552580000001,27.616665000000122],[120.573883,27.587498],[120.597763,27.51472100000012],[120.64553800000022,27.497215],[120.665543,27.45082900000011],[120.63416300000017,27.368885],[120.58332800000017,27.38944],[120.477478,27.177494000000138],[120.44664,27.225552000000107],[120.415268,27.172218],[120.30832,27.31277],[120.19359,27.290276],[120.179428,27.21277],[120.257217,27.251942],[120.32887300000017,27.229439],[120.42221,27.145275],[120.382477,27.09416],[120.24498000000027,27.12861],[120.204163,26.916107],[120.03387,26.899719000000115],[120.019707,26.837219],[120.1041560000001,26.793888],[120.12719700000014,26.641663000000108],[119.86026,26.51777600000014],[119.830276,26.534443],[119.853592,26.59360900000013],[119.95804,26.6325],[120.072769,26.794163],[119.92137100000012,26.789719],[119.89943,26.65666],[119.87220800000023,26.648605],[119.79248000000018,26.686661],[119.78804,26.799164],[119.6866530000002,26.81222],[119.67637600000023,26.760277],[119.731659,26.711662],[119.70694000000015,26.693886],[119.616653,26.796387],[119.54914900000028,26.753609],[119.5336,26.65055100000012],[119.55748,26.611664],[119.599716,26.573887],[119.734993,26.609718],[119.780273,26.572773],[119.82193,26.444439],[119.764427,26.405273],[119.661652,26.49055],[119.577477,26.473885],[119.56554,26.434162],[119.658043,26.338608000000136],[119.73603100000014,26.329941000000133],[119.824158,26.420273],[119.939423,26.354164],[119.888046,26.309441],[119.80942,26.31944],[119.79276300000014,26.280552],[119.666382,26.28083],[119.507492,26.055832],[119.42526,25.996941000000106],[119.0927580000001,26.142494],[119.25665300000013,25.963051],[119.34499400000016,25.938328],[119.447479,25.960274],[119.526657,26.04472],[119.70555100000013,25.99360700000011],[119.59137,25.863609],[119.62109,25.75666],[119.58665,25.68027],[119.4511,25.68027],[119.478592,25.574718000000132],[119.55942,25.563053],[119.652206,25.35722],[119.60138,25.340275],[119.580833,25.421383],[119.423309,25.510830000000112],[119.37915,25.58583],[119.30887,25.60694100000012],[119.23027,25.47499],[119.102203,25.408051],[119.169983,25.34416],[119.28749100000016,25.32222],[119.35304300000017,25.250275],[119.26833300000021,25.169163],[119.094711,25.10555],[119.02832000000022,25.13305],[119.06805,25.20249600000011],[119.061371,25.27305200000012],[118.871918,25.24388],[118.972214,25.166107],[118.93665,25.10305],[118.845543,25.079998000000103],[119.0161,24.954163],[118.717209,24.843052],[118.69193,24.853886000000102],[118.72916,24.894997000000103],[118.669434,24.947216],[118.57388300000014,24.884163],[118.62664800000015,24.768887],[118.70276600000011,24.80444],[118.765,24.761665],[118.622757,24.543888],[118.550537,24.511387],[118.55971,24.57611],[118.43997200000013,24.62833000000012],[118.2397,24.53638],[118.160538,24.688606],[117.97165,24.547497000000135],[118.0513760000001,24.523331],[118.018051,24.436382],[117.883614,24.482494],[117.792023,24.461319],[117.896652,24.383606],[118.041931,24.40221800000012],[118.12331,24.25611],[117.95999100000019,24.153606],[117.738586,23.898605],[117.72831700000016,23.94416],[117.79721,24.006107],[117.760818,24.063885],[117.709717,24.041664],[117.6147,23.863609000000107],[117.477203,23.84027],[117.304703,23.758331],[117.201927,23.626942],[117.12442,23.591385],[117.037491,23.6561],[116.916092,23.65944],[116.8688740000001,23.604443],[116.85915400000022,23.464439],[116.755257,23.349998],[116.608597,23.36888],[116.52137800000013,23.42083],[116.55304000000024,23.334995],[116.593597,23.31],[116.73943,23.320831000000112],[116.78749100000027,23.233883000000105],[116.777771,23.207771],[116.741928,23.2313840000001],[116.513893,23.210827],[116.53804000000014,23.00916],[116.48082000000022,22.93805],[116.226929,22.930828],[116.12692300000015,22.844162],[116.080833,22.827774],[116.05026,22.8525],[115.79776000000014,22.73916],[115.783867,22.7972180000001],[115.64027,22.884163],[115.535538,22.832775],[115.562477,22.681938000000116],[115.536652,22.658886],[115.37303200000018,22.682774],[115.22360200000013,22.78360700000013],[115.24054,22.827496],[115.161377,22.808331],[114.88889,22.70277],[114.936653,22.649998],[114.872208,22.533054000000106],[114.868317,22.583607],[114.73108700000012,22.59639],[114.72248800000023,22.722496],[114.81581100000015,22.77861],[114.76915,22.814720000000136],[114.52082800000015,22.699718],[114.50055,22.650551],[114.52582,22.584995],[114.603867,22.535275],[114.60999300000015,22.497494],[114.518333,22.47444],[114.461929,22.559162],[114.374977,22.61055],[114.0333304004439,22.509138149174643],[113.948868,22.521942000000138],[113.86080900000013,22.47444],[113.75777,22.748051],[113.60054000000012,22.841663],[113.60776,22.992493],[113.544983,22.98249],[113.524429,23.01111],[113.544708,23.074165],[113.60735,23.101685],[113.71443,23.13361],[113.82971,23.117218],[113.6702580000001,23.148331],[113.477478,23.052776],[113.48082,22.914719],[113.42126,22.928846],[113.35915,22.883331],[113.49174,22.770885],[113.437782,22.737835000000132],[113.565811,22.550274],[113.53086900000017,22.409008],[113.58804,22.36694],[113.5811,22.255554000000128],[113.51833,22.18055],[113.42720000000018,22.183052],[113.267487,22.382774],[113.16527,22.571384],[113.15971400000012,22.478329],[113.23165900000015,22.421108000000114],[113.38804600000014,22.176662000000135],[113.29914900000028,22.17555],[113.22415,22.037498],[113.115044,22.08382],[113.12637,22.155552],[113.110527,22.210552],[113.08638,22.20694],[112.98831,22.09583],[113.00444,21.938885],[112.93914800000015,21.868607],[112.88943,21.858608],[112.82138,21.964439],[112.74637,21.93472],[112.59276,21.7699970000001],[112.478043,21.802498],[112.28194,21.701385],[111.95583,21.844719],[111.892487,21.920273],[111.900818,21.82111],[111.966927,21.751389],[111.8555530000001,21.672218],[111.795822,21.736938],[111.675262,21.779999],[111.769989,21.710552],[111.789146,21.613609],[111.692467,21.609161],[111.63721,21.521111000000133],[111.37915,21.529442],[111.14471,21.464996],[111.092484,21.467216],[111.074158,21.514721],[111.022774,21.52417],[110.988312,21.51277],[110.976379,21.444996],[111.065811,21.47083],[110.88054,21.384163],[110.79305,21.402775],[110.714157,21.356941],[110.65109,21.25444],[110.62915,21.358608],[110.74915,21.404995],[110.764427,21.43777],[110.630814,21.37249800000012],[110.611649,21.321384],[110.635818,21.23166300000014],[110.53276100000011,21.211384],[110.432747,21.217495],[110.428589,21.36916],[110.39825,21.380669000000125],[110.372482,21.318054],[110.410538,21.23055],[110.393051,21.163609],[110.200272,21.047775],[110.153587,20.985271],[110.15804300000013,20.84555],[110.376923,20.839996],[110.401093,20.731384],[110.380539,20.708607],[110.356644,20.730549],[110.34220900000014,20.815273000000104],[110.309143,20.748329],[110.32388300000014,20.639996],[110.437187,20.56555],[110.473038,20.57222000000013],[110.52916,20.473328],[110.40387,20.301662],[110.27887,20.246105000000114],[110.11665,20.23999],[110.033333,20.29888],[109.97831700000012,20.29139],[109.9244230000001,20.2336],[109.882751,20.359997],[109.94748,20.38888500000013],[109.973038,20.35305],[110.00943000000012,20.429161000000136],[109.850807,20.504444],[109.75109900000012,20.64111],[109.661926,20.918884],[109.69165,21.01833],[109.673599,21.131939000000102],[109.76915,21.334721000000116],[109.904709,21.38805000000013],[109.941093,21.446941],[109.924149,21.47416],[109.82276900000011,21.460552],[109.76471,21.58194],[109.74247700000012,21.569164],[109.770264,21.484993],[109.733597,21.468052000000114],[109.666931,21.498604],[109.562477,21.668053],[109.573318,21.72333],[109.503883,21.67638],[109.57666,21.575829000000113],[109.529984,21.491104],[109.14276100000012,21.39666],[109.06805,21.432217],[109.14971900000012,21.521385],[109.1375,21.583054],[109.031937,21.618607],[108.9122,21.615273],[108.858322,21.67749],[108.86637900000011,21.72222],[108.921097,21.760555000000124],[108.870247,21.798885],[108.781372,21.809998],[108.84833,21.761387],[108.827843,21.69298],[108.858322,21.63583],[108.79082,21.639996],[108.740257,21.598885],[108.602768,21.833332],[108.628632,21.888149],[108.475807,21.940273],[108.442749,21.86388],[108.56581,21.679718],[108.46304,21.557774],[108.38998,21.561386],[108.437759,21.663052],[108.333603,21.689995000000124],[108.305862,21.674721],[108.309982,21.57972],[108.213882,21.497215],[108.235809,21.554443],[108.20444,21.59444],[108.077477,21.534443000000124],[107.959152,21.536385],[107.86388,21.64749],[107.78305100000011,21.666939],[107.536102,21.586384],[107.36273200000011,21.60526],[107.30137600000012,21.731106000000125],[107.22083,21.708328],[107.020264,21.822498],[107.04914900000011,21.90722],[107.02916,21.936661],[106.693314,22.03083],[106.66527,22.19944],[106.695824,22.2225],[106.65833,22.32444],[106.565536,22.345829],[106.551712,22.456821],[106.607208,22.606941],[106.717484,22.63055],[106.78749,22.763885],[106.75749200000013,22.821941],[106.52026,22.935272],[106.49609,22.897495],[106.28498800000011,22.858608],[106.25000000000011,22.87416500000012],[106.22943,22.950829000000113],[106.13472000000013,22.988605],[106.01526600000011,22.984718],[105.98719800000015,22.93583],[105.8724820000001,22.910275],[105.761932,23.023888000000113],[105.574432,23.0602760000001],[105.554428,23.16027],[105.353867,23.334721],[104.90749,23.18027500000011],[104.82361,23.103329],[104.85416,22.958328000000108],[104.731369,22.816666],[104.573608,22.829998],[104.36998,22.685829],[104.26193200000012,22.737774],[104.267227,22.829193],[104.1091540000001,22.798332],[104.03305,22.68527200000011],[104.009743,22.52423],[103.96443,22.499111],[103.65526,22.7825],[103.612488,22.776665],[103.566673,22.70694],[103.584152,22.64416100000011],[103.531662,22.583607],[103.45694000000015,22.642494],[103.400269,22.76778],[103.33638000000013,22.796387],[103.17082,22.546944],[103.046944,22.434994],[102.92859,22.48194],[102.862762,22.601387],[102.484154,22.77389],[102.38889300000011,22.609161],[102.140747,22.39629],[102.10582,22.4375],[101.919983,22.436108],[101.77748,22.500832],[101.69136000000015,22.472218],[101.661926,22.413052],[101.680542,22.37916200000012],[101.574432,22.20916],[101.625526,21.971939],[101.765266,21.834442],[101.752487,21.724438000000134],[101.783051,21.65083],[101.739151,21.316387],[101.85137900000012,21.249161],[101.784714,21.14277],[101.73256,21.139492000000132],[101.5686,21.247494],[101.281937,21.18027],[101.234154,21.252777],[101.265266,21.376106],[101.184708,21.558887],[101.148239,21.572636],[101.168587,21.630276],[101.12056000000013,21.77052],[100.840553,21.650272],[100.725273,21.513332],[100.588593,21.456104],[100.48137,21.45916],[100.429977,21.52861000000013],[100.37886,21.538887],[100.193314,21.441383],[100.116379,21.526108],[100.1060870000001,21.583332],[100.141373,21.634163],[99.97360200000014,21.733883],[99.941925,21.824997],[99.99054,21.958328000000108],[99.9644320000001,22.04888],[99.749146,22.075275],[99.709152,22.039719000000105],[99.667755,22.084721],[99.46555,22.13583],[99.359421,22.093052],[99.232483,22.114441],[99.16277,22.15916],[99.287766,22.401386],[99.38443,22.50389],[99.384995,22.60333],[99.34082,22.716938],[99.442474,22.869995],[99.566376,22.93805],[99.5038760000001,23.089718],[99.35637,23.134995000000117],[99.111099,23.10194],[98.927475,23.189163],[98.914703,23.417217],[98.879974,23.483604],[98.8247070000001,23.48083],[98.80693100000013,23.535553],[98.85277,23.637775],[98.821381,23.75861],[98.687485,23.816387],[98.6772,23.96805],[98.893906,24.09795],[98.890732,24.160069000000135],[98.837463,24.124264],[98.590576,24.092121],[98.446594,24.134956],[98.0644840000001,24.089096],[97.912491,24.02666],[97.649979,23.851704],[97.62387,23.898331],[97.535538,23.939716],[97.74942,24.163609000000122],[97.7586060000001,24.263607],[97.672485,24.436939],[97.543045,24.47666],[97.55053700000013,24.738049],[97.689423,24.834442000000134],[97.736649,24.918884],[97.725815,25.06472],[97.789429,25.137497],[97.824158,25.246941000000106],[97.846375,25.26833],[97.911102,25.208328],[97.95138500000012,25.219715],[98.124695,25.38999600000011],[98.191086,25.615273000000116],[98.32666000000012,25.551662],[98.383041,25.591942],[98.530823,25.845551],[98.631927,25.801109000000107],[98.714706,25.86555],[98.709152,25.90527],[98.605255,25.988605],[98.56805,26.12305],[98.64888000000013,26.151661],[98.664429,26.09833100000014],[98.730545,26.177219],[98.701096,26.25194],[98.775543,26.605831],[98.777771,26.791664],[98.69165,27.20194],[98.736649,27.329163],[98.685532,27.466106],[98.699707,27.539165],[98.646103,27.605274],[98.458878,27.672497000000135],[98.397491,27.546387],[98.3163760000001,27.541943],[98.14498900000012,28.00278],[98.146652,28.146942000000134],[98.013046,28.214718],[98.018875,28.278332],[97.908875,28.376385],[97.796936,28.34916],[97.700821,28.52111],[97.555252,28.548054],[97.468872,28.296108],[97.410538,28.292496],[97.348877,28.222771],[97.13499,28.381386000000134],[96.98471100000012,28.3325],[96.784149,28.373051],[96.65387,28.467495],[96.46054,28.42194],[96.40193,28.351109],[96.361649,28.39277],[96.34027100000014,28.524998],[96.60609,28.739437],[96.615814,28.790276],[96.484421,28.968327],[96.49582,29.03611000000012],[96.470825,29.056664],[96.343872,29.0325],[96.169144,28.903606],[96.14888,29.059719],[96.21887200000015,29.14722],[96.35304,29.183052],[96.395264,29.255276],[96.362488,29.290554],[96.289429,29.241383],[96.23526,29.25444],[96.083878,29.467773000000136],[95.62469,29.254997],[95.541367,29.191105],[95.460541,29.051662],[95.387772,29.035275000000127],[94.864082,29.17499],[94.697357,29.33653],[94.647507,29.33346],[94.5812,29.231529],[94.42776,29.215509],[94.234558,29.07348100000013],[94.152458,28.9307],[94.0211,28.83602900000011],[93.961723,28.669201],[93.858513,28.69038],[93.647293,28.647461],[93.50206,28.679159],[93.351936,28.618759],[93.215538,28.41832],[93.238167,28.387449],[93.222054,28.3193],[93.0457080000001,28.31026100000014],[92.887337,28.19872],[92.830032,28.212761000000114],[92.710442,28.1419],[92.67524700000013,28.080709],[92.728378,28.03598],[92.718323,27.97361],[92.6510770000001,27.920549],[92.3311,27.79472],[92.261658,27.874161],[92.25388,27.81583],[92.118317,27.8125],[92.014427,27.73472],[91.657761,27.764721],[91.667206,27.941940000000102],[91.449997,27.99721],[91.30137600000012,28.081108],[91.214432,28.073051],[91.086929,27.96999],[91.010818,27.979996],[90.909988,28.049442000000113],[90.370529,28.08027600000014],[90.350266,28.1122170000001],[90.395538,28.198883],[90.38165300000014,28.25139],[89.996368,28.32333],[89.863037,28.271385000000123],[89.78248600000012,28.188606],[89.590271,28.143330000000105],[89.487488,28.05777400000011],[89.359985,27.871662],[89.22554,27.794998],[89.128036,27.623329000000126],[89.125809,27.567497],[88.9711,27.47360600000013],[88.917725,27.320324],[88.783325,27.43805],[88.76332,27.543331000000137],[88.834427,27.66110600000013],[88.8808140000001,27.836662000000103],[88.844986,27.99638],[88.62886000000015,28.119164],[88.397491,27.98333],[88.14554,27.95527],[88.12052900000013,27.904716],[88.1427920000001,27.866055],[87.868866,27.9188840000001],[87.79721100000012,27.837219],[87.72053,27.804996],[87.53665200000012,27.840275],[87.192749,27.82305100000013],[87.03027,27.965271000000143],[86.947075,27.94764],[86.76416,28.026665],[86.758041,28.08027600000014],[86.704163,28.111107],[86.57193000000012,28.10583],[86.53498800000011,27.954994],[86.44497700000011,27.908051000000114],[86.22637900000012,28.006664],[86.18359,28.16388],[86.093597,28.086109000000135],[86.1372070000001,27.93194],[86.089417,27.890829],[86.014435,27.882774],[85.97304,27.915829],[85.88611,28.15166],[85.78082300000011,28.2061],[85.721375,28.27916],[85.43942300000015,28.301662],[85.37665,28.263611000000136],[85.10664400000013,28.30944],[85.18997,28.603329],[85.059982,28.64111],[84.95471,28.544163],[84.846649,28.54444100000012],[84.7061000000001,28.601387],[84.70665,28.660553],[84.636383,28.702774],[84.48109,28.736660000000146],[84.39554,28.859161],[84.236923,28.918884],[84.23997500000013,29.053886],[84.158325,29.13472],[84.18553,29.205551],[84.11914100000013,29.26],[83.969711,29.297218],[83.720535,29.228882],[83.67192100000011,29.160275],[83.552765,29.185829000000126],[83.380539,29.416386],[83.37915,29.466106],[83.19525,29.630829],[83.0599820000001,29.623329000000123],[82.923874,29.693886],[82.855255,29.6688840000001],[82.420822,30.010277],[82.231094,30.075275],[82.177765,30.06361],[82.10054,30.342220000000108],[81.80304,30.363609],[81.6372070000001,30.42443800000012],[81.55775,30.381939],[81.541931,30.330551],[81.421097,30.385273],[81.377762,30.16666400000014],[81.24748,30.056385],[81.240814,30.01361100000014],[81.119431,30.01944400000013],[80.998871,30.261944],[80.803864,30.32666],[80.751938,30.394997],[80.60693400000014,30.474716],[80.207001,30.57552],[80.25027,30.739994],[80.18359,30.797775],[79.923599,30.888885],[79.87915,30.95916],[79.748871,30.989716],[79.60637,30.935551],[79.558868,30.954163000000108],[79.39325,31.101067000000114],[79.31499,31.133053],[79.240265,31.24416],[79.217484,31.34083],[79.092484,31.43749600000012],[79.026382,31.418606],[78.877655,31.291626],[78.767212,31.309998],[78.71277,31.50972000000013],[78.84387200000015,31.609997],[78.75,31.676662],[78.6924740000001,31.774166],[78.7711,31.981106],[78.68054200000012,32.035271],[78.544708,32.20943],[78.4759370000001,32.243042000000116],[78.477203,32.42471300000011],[78.397766,32.54860700000012],[78.496094,32.582497],[78.638596,32.577774],[78.70444,32.63110400000011],[78.760544,32.635551],[78.780273,32.478874],[78.9711,32.35083],[79.078049,32.381378],[79.16554,32.49305],[79.253174,32.515999],[79.31387,32.496658],[79.49054,32.637772],[79.530273,32.754166],[79.35609,32.964996],[79.378311,33.106384],[79.274704,33.18943000000013],[79.005554,33.308601],[78.936508,33.407997],[78.8311000000001,33.486382],[78.805817,33.55526700000012],[78.812485,33.81388],[78.735809,34.068329],[78.972488,34.19221],[79.0086060000001,34.294998000000135],[78.95138,34.38082],[78.70221,34.525826],[78.3683170000001,34.593048],[78.299149,34.65499100000011],[78.121918,35.11193800000012],[78.02388,35.274437],[78.076385,35.496941],[77.999146,35.498047],[77.92107,35.437576],[77.79471,35.505272000000105],[77.70109600000012,35.461105],[77.43137,35.471657],[76.89526400000011,35.612495],[76.594147,35.757217],[76.55304,35.906654],[76.384995,35.841377000000136],[76.176926,35.814438],[76.123871,35.97777],[75.97276,36.011658],[75.926086,36.077209],[75.923035,36.123596000000134],[75.993866,36.159721],[76.041656,36.23751],[76.00499000000013,36.458603],[75.855255,36.6671750000001],[75.63916,36.763542],[75.546371,36.76963],[75.523041,36.729065],[75.44914,36.732941],[75.424698,36.86156],[75.370529,36.926834],[75.13832100000013,37.001534000000106],[74.974152,36.98484000000013],[74.690811,37.06259200000011],[74.5654300000001,37.027817],[74.400543,37.13896],[74.39221,37.175072],[74.522217,37.239265],[74.743317,37.30265],[74.811096,37.22041300000012],[74.91574100000014,37.237328],[75.096649,37.321854],[75.187485,37.40658600000012],[74.94942,37.562981],[74.902771,37.647156],[74.99109,37.783829],[74.902771,37.84716],[74.9136,38.017715],[74.81469700000014,38.0788270000001],[74.79443400000014,38.306038000000115],[74.8647,38.388824],[74.856644,38.470482],[74.788589,38.52743],[74.354706,38.674377],[74.14055,38.676323],[74.06053,38.60465],[74.07916,38.54355],[73.9422,38.538826],[73.81026,38.617706],[73.705261,38.864098],[73.743042,38.926598],[73.832764,38.93882],[73.85331700000012,38.96909],[73.721649,39.082436],[73.6172,39.232147],[73.669983,39.34409],[73.655685,39.45482600000014],[73.84804,39.47493],[73.9561000000001,39.59771],[73.910812,39.725204],[73.842758,39.778816],[73.98749,40.0379870000001],[74.198029,40.113823],[74.383606,40.107712],[74.73692,40.34243],[74.88443000000012,40.327713],[74.826096,40.407982],[74.86026,40.519386],[75.058868,40.447716],[75.22554,40.446884],[75.578049,40.647995],[75.625534,40.59132],[75.69720500000011,40.29911],[75.928864,40.3055],[75.988876,40.369934],[76.09943,40.398277],[76.223602,40.40382],[76.345825,40.35022],[76.5,40.442436],[76.563873,40.556328],[76.639435,40.60855],[76.649719,40.744942],[76.788315,40.9491],[76.873871,41.014107],[77.058319,41.04911],[77.138046,41.016052],[77.3461,41.028000000000134],[77.543594,40.98661],[77.684708,41.001892],[77.854706,41.0694],[78.080826,41.04078700000014],[78.188873,41.101341],[78.28831500000013,41.227722],[78.373596,41.275505],[78.375534,41.37883000000011],[78.670822,41.531891],[79.34082000000012,41.792175],[79.66304,41.884399],[79.778595,41.887177],[79.87942,42.01635],[80.26249700000011,42.04884],[80.281097,42.091896],[80.234024,42.19622],[80.281097,42.212173],[80.293869,42.25218200000012],[80.23831200000012,42.36328900000012],[80.17192100000011,42.660507],[80.26065,42.81940500000013],[80.578598,42.891075000000114],[80.561371,42.92635300000012],[80.390274,42.992737],[80.383606,43.033577],[80.646378,43.14135],[80.778595,43.110245],[80.81721,43.156067],[80.7397,43.465797000000116],[80.36276,44.125244],[80.399994,44.25831],[80.348877,44.450249],[80.38499500000012,44.635803],[80.520828,44.732475],[80.2622070000001,44.82442500000013],[80.00166300000012,44.79776],[79.875809,44.865532000000144],[79.871094,44.904976],[80.12136800000013,45.039421],[80.409714,45.05164300000013],[80.524994,45.10858900000011],[80.916931,45.150253],[81.55636600000014,45.295815],[81.688309,45.350815],[81.79776,45.305809],[81.815811,45.20053],[81.948029,45.157478],[82.29693600000013,45.237755],[82.481659,45.127472],[82.561646,45.12942],[82.63554,45.240532000000144],[82.649429,45.43026],[82.36219800000015,45.495529],[82.317764,45.570534],[82.510818,45.90192400000012],[82.57332,46.17304200000012],[82.70887800000014,46.354156],[82.873871,46.763603],[83.01471,46.960274],[83.040543,47.212212],[83.16249,47.22360200000014],[83.564987,47.061104],[83.922485,46.973877],[84.29470800000011,47.0075],[84.67804000000012,46.993607],[84.77887,46.931664],[84.73526,46.836937],[84.75943,46.826385],[84.963608,46.86416],[85.25777,47.05110200000013],[85.529312,47.06016],[85.568054,47.14444],[85.694702,47.21998600000012],[85.70555100000013,47.364998],[85.60914600000012,47.499435],[85.62220800000011,47.62110100000012],[85.53776600000015,47.959991],[85.61387600000012,48.158325000000104],[85.75915500000013,48.38777],[85.915268,48.428879],[86.23082,48.42527],[86.344147,48.49527],[86.46360800000014,48.49360700000011],[86.5961,48.53611],[86.63804600000014,48.608047],[86.78332,48.72777],[86.80775,48.82388300000014],[86.73054500000012,48.972214],[86.883881,49.112495],[87.16748,49.133049],[87.44664,49.077492],[87.520264,49.119713000000104],[87.840698,49.172951],[87.899429,49.002220000000136],[87.873032,48.951935000000105],[87.776093,48.924164],[87.75943000000011,48.88166],[87.841095,48.794998],[88.00055,48.763054],[88.088593,48.70638300000013],[87.969437,48.607498],[87.9833220000001,48.56944],[88.523315,48.403046],[88.5949860000001,48.344154],[88.584427,48.278046],[88.618317,48.206100000000106],[88.856369,48.11610400000012],[88.94136,48.11305],[89.0775,47.995544],[89.23387,47.981651],[89.37886000000015,48.04583000000014],[89.55775,48.041664],[89.78194,47.82843000000014],[89.93887300000011,47.83654],[89.983597,47.893776],[90.074432,47.886383],[90.083328,47.797493000000145],[90.12915,47.74166],[90.35748300000012,47.643326000000116],[90.46582000000012,47.5002750000001],[90.48997500000013,47.3219380000001],[90.544144,47.244438],[90.76111,46.999718],[90.910263,46.95638300000013],[91.044144,46.72221],[91.02025,46.60011],[91.07222000000013,46.57332600000012],[90.920258,46.302773000000116],[91.022217,46.130547],[91.028595,46.0186],[90.719437,45.73555],[90.681931,45.57972],[90.675812,45.497772],[90.777206,45.436378],[90.8969419999999,45.253052],[91.141663,45.212769],[91.27832,45.13526900000011],[91.383041,45.118599],[91.462204,45.1586],[91.56776400000012,45.075],[92.06749,45.08305400000012],[92.4888760000001,45.00305200000014],[92.882751,45.04583],[92.990265,45.00972000000013],[93.179428,45.016388],[93.55470300000013,44.957214],[94.11080900000013,44.70999],[94.34304800000012,44.557213],[94.606934,44.450546000000145],[94.724426,44.34916],[95.0205380000001,44.25694],[95.41666,44.293884000000105],[95.350266,44.177773000000116],[95.336105,44.02082800000011],[95.53997800000013,43.992767],[95.74636800000013,43.58499100000011],[95.863037,43.42083],[95.881363,43.279160000000104],[96.356934,42.90694],[96.3830410000001,42.731102],[96.998596,42.76138300000013],[97.171646,42.797493],[98.221375,42.64583],[99.498596,42.570831],[99.98637400000011,42.653603],[100.25499,42.641106],[100.314987,42.691101],[100.835541,42.678047],[101.81469700000014,42.50972],[102.077209,42.23333],[102.44247,42.1511],[102.712486,42.16137700000013],[103.41638200000011,41.88721],[103.849426,41.80249],[104.06109600000012,41.803322],[104.526657,41.87721],[104.52415,41.66387900000012],[104.930542,41.65193],[105.01221,41.581383],[105.226929,41.75],[105.855263,41.98749500000014],[106.78194,42.295547],[107.262497,42.359993],[107.27721,42.410545],[107.471916,42.466103],[107.571114,42.410271],[107.907761,42.408325],[108.24944,42.46234500000014],[108.845543,42.399994],[109.00000000000011,42.45832800000011],[109.307747,42.42999300000013],[109.517487,42.45694],[109.927757,42.64138],[110.10637,42.64576],[110.440536,42.777771],[110.47192,42.8461],[110.623032,42.939987],[110.689972,43.053604],[110.9897,43.31694],[111.638603,43.54333],[111.783867,43.672493000000145],[111.958328,43.692215],[111.95972,43.835266],[111.87943300000012,43.93888],[111.67499,44.051102],[111.421371,44.35916],[111.43692,44.436378000000104],[111.561096,44.577774],[111.568047,44.679161],[111.784988,45.00055],[111.873032,45.04943800000012],[112.051086,45.100548],[112.097214,45.07527],[112.4272,45.08055100000013],[112.60748300000012,44.92638],[112.853043,44.8461],[113.638046,44.74527],[113.916931,44.922768],[114.080276,44.9411],[114.46219600000029,45.2116620000001],[114.541092,45.32277],[114.545258,45.389435],[114.73609900000018,45.442215],[114.938026,45.382767],[115.39221,45.39888],[115.701927,45.458603],[116.031372,45.68555],[116.112198,45.681107],[116.212769,45.72387700000013],[116.28166,45.80666],[116.2341540000001,45.88777],[116.29027,45.990829],[116.38416300000016,46.11249500000014],[116.566383,46.246384],[116.585541,46.29583000000014],[116.75861,46.33111],[116.84166000000016,46.393608],[117.37082,46.364441],[117.44386,46.52777100000014],[117.421097,46.578331],[117.59887700000013,46.61193800000012],[117.632751,46.551102],[117.71666,46.513885],[117.844147,46.53443900000013],[117.933594,46.619438],[118.31026,46.736938],[118.464996,46.693047],[118.76555,46.68277],[118.86943,46.772766],[119.07060200000011,46.67266100000012],[119.36303700000018,46.61444100000011],[119.462769,46.63916],[119.70748900000022,46.598602],[119.89749100000017,46.675552],[119.9349820000001,46.719986],[119.922493,46.902214],[119.80137600000012,46.99388],[119.78777300000013,47.092766],[119.72998,47.16415400000011],[119.338318,47.419716],[119.34082000000012,47.462212],[119.149429,47.533882],[119.124969,47.66498600000011],[118.767288,47.772774],[118.539337,47.994751],[118.23027,48.029991],[117.80108600000017,48.010551],[117.37219200000014,47.653595],[117.111076,47.813599000000124],[116.87468700000011,47.888046],[116.50777,47.84527],[116.25833,47.87860100000012],[116.11554000000012,47.82194],[115.936897,47.68721],[115.59219,47.919441],[115.53997800000026,48.13582600000012],[115.835823,48.252495000000124],[115.81109600000013,48.520546],[116.08415200000013,48.81583],[116.06165,48.872765],[116.71138000000018,49.830467],[117.16998300000023,49.65248900000011],[117.49443,49.62305],[117.78970300000015,49.5186],[117.87471000000016,49.520576],[118.47554000000014,49.830826000000116],[118.58332800000015,49.92694100000011],[119.174149,50.001389],[119.31832900000016,50.09277],[119.359421,50.34193],[119.1983180000002,50.34527],[119.1386,50.394714],[119.242203,50.445267],[119.28692600000012,50.59388],[119.502213,50.742218],[119.52249100000017,50.90499100000011],[119.74664300000016,51.073608],[119.780548,51.16610000000014],[119.762497,51.192764],[119.95665,51.38999200000012],[119.98304700000028,51.49305],[120.096939,51.661377],[120.176376,51.671936],[120.488586,51.87721],[120.652344,51.913803000000144],[120.776657,52.115],[120.751663,52.21054800000013],[120.62275700000022,52.340271],[120.68665,52.433601],[120.713608,52.544716],[120.440262,52.63721],[120.18914800000017,52.580276],[120.07303600000023,52.589989],[120.03055,52.61721000000011],[120.02916,52.768051],[120.27721,52.861938000000116],[120.863876,53.279716],[121.208328,53.270546],[121.324997,53.31832900000012],[121.47379300000011,53.323814],[121.82998700000017,53.41304800000012],[122.062187,53.41220900000013],[122.246094,53.45694000000014],[122.82443200000012,53.449997],[123.15332,53.500549],[123.263321,53.554436],[123.3822020000001,53.526657]]]]}},{"type":"Feature","properties":{"FIPS":"AF","ISO2":"AF","ISO3":"AFG","UN":4,"NAME":"Afghanistan","AREA":65209,"POP2005":25067407,"REGION":142,"SUBREGION":34,"LON":65.216,"LAT":33.677},"geometry":{"type":"Polygon","coordinates":[[[74.915741,37.237328],[74.811096,37.220413],[74.751099,37.303757],[74.52222,37.239265],[74.38666,37.16062],[74.568329,37.026741],[74.558029,36.965057],[74.488876,37.010338],[74.419983,37.001434],[74.038315,36.814682],[73.852203,36.892723],[73.668304,36.909637],[72.578598,36.825432],[72.47415,36.762398],[72.181656,36.714363],[72.145813,36.647736],[71.74501,36.416122],[71.624176,36.458061],[71.581131,36.346443],[71.243576,36.129715],[71.187607,36.04747],[71.447754,35.861107],[71.545258,35.711105],[71.528046,35.662766],[71.649429,35.424995],[71.547485,35.323608],[71.612762,35.23082],[71.496094,34.959435],[71.095825,34.676659],[71.088593,34.559433],[70.987488,34.551102],[71.000549,34.463051],[71.158875,34.348328],[71.135544,34.1661],[71.08194,34.055824],[70.891098,33.966385],[70.491364,33.943047],[70.002777,34.052773],[69.906372,34.035271],[69.869141,33.929993],[69.985535,33.753052],[70.137497,33.732491],[70.19664,33.640831],[70.168045,33.520828],[70.286102,33.422768],[70.326935,33.33194],[70.02887,33.135826],[69.881088,33.089989],[69.575546,33.087212],[69.505264,33.034164],[69.515274,32.873878],[69.394989,32.77388],[69.458328,32.670547],[69.377762,32.568329],[69.287491,32.526382],[69.248032,32.443878],[69.291367,32.317497],[69.271927,32.145271],[69.328247,31.940365],[69.224396,31.871292],[69.12915,31.734161],[69.02916,31.65583],[68.833054,31.603886],[68.718048,31.727772],[68.570831,31.825554],[68.437195,31.786663],[68.571655,31.765274],[68.537766,31.726662],[68.272217,31.771664],[68.166092,31.833054],[67.980545,31.63583],[67.881927,31.63805],[67.731934,31.529163],[67.575546,31.53194],[67.615265,31.427773],[67.791367,31.395275],[67.778046,31.332218],[67.38472,31.215271],[67.281937,31.212494],[67.055817,31.24305],[67.04694,31.312775],[66.97415,31.321941],[66.723038,31.212215],[66.684143,31.086109],[66.572769,30.981384],[66.395538,30.94083],[66.281937,30.575275],[66.351654,30.445274],[66.325272,30.237774],[66.238312,30.071384],[66.362198,29.956104],[66.256653,29.85194],[65.034149,29.541107],[64.660538,29.587776],[64.3797,29.553608],[64.059143,29.41444],[63.587212,29.503887],[62.484436,29.406105],[60.868599,29.863884],[61.758331,30.790276],[61.851105,31.021111],[61.766804,31.256184],[61.771103,31.318329],[61.713608,31.383331],[60.84388,31.498329],[60.811378,31.659718],[60.806938,31.996662],[60.857773,32.234718],[60.582497,33.066101],[60.591103,33.163048],[60.803322,33.390831],[60.854439,33.48999],[60.943047,33.51944],[60.886383,33.557213],[60.6661,33.567497],[60.527771,33.644157],[60.505272,33.739159],[60.554161,33.813324],[60.508331,34.140274],[60.665543,34.312492],[60.878876,34.319717],[60.883606,34.35527],[60.804436,34.458046],[60.721657,34.522217],[60.971375,34.64444],[61.051102,34.789436],[61.136383,35.12471],[61.094711,35.184158],[61.104439,35.27916],[61.183601,35.348602],[61.275269,35.514999],[61.289162,35.626381],[61.378876,35.635269],[61.429344,35.554771],[61.595825,35.444153],[61.80249,35.411102],[61.95916,35.458328],[62.029716,35.448601],[62.270271,35.259438],[62.309158,35.141663],[62.464996,35.288605],[62.554436,35.233604],[62.722214,35.254715],[62.922493,35.384163],[63.10527,35.450829],[63.126656,35.533607],[63.095268,35.626099],[63.184715,35.673607],[63.106102,35.82222],[63.119438,35.861938],[63.317215,35.852219],[63.517212,35.900826],[63.601105,35.964439],[63.986107,36.038048],[64.169434,36.167496],[64.47388,36.255554],[64.624146,36.447212],[64.622757,36.654991],[64.797485,36.929161],[64.789429,37.11805],[65.072769,37.244438],[65.554428,37.256386],[65.646103,37.346382],[65.646942,37.458885],[65.708878,37.538605],[66.105255,37.421379],[66.289978,37.324715],[66.408325,37.3461],[66.447479,37.318604],[66.524994,37.365829],[67.004166,37.38221],[67.096481,37.339966],[67.239975,37.186104],[67.526382,37.2686],[67.743866,37.224709],[67.77916,37.193604],[67.782211,37.0961],[68.001389,36.936104],[68.058014,36.932526],[68.187195,37.020546],[68.28415,37.030548],[68.334427,37.108887],[68.623871,37.200546],[68.664154,37.274994],[68.887772,37.3386],[68.99971,37.30777],[69.125259,37.163048],[69.246643,37.094154],[69.286652,37.104164],[69.421249,37.196411],[69.380264,37.451103],[69.515823,37.580826],[69.793045,37.582771],[69.899155,37.614998],[70.013885,37.545547],[70.155823,37.536232],[70.253601,37.615746],[70.286377,37.702339],[70.246933,37.812546],[70.16554,37.871719],[70.16138,37.933372],[70.236649,37.937263],[70.346939,38.022278],[70.71138,38.409866],[70.953049,38.47184],[71.363037,38.248497],[71.35887,38.162094],[71.252777,37.922035],[71.334717,37.887871],[71.515366,37.948456],[71.591934,37.902618],[71.588593,37.815651],[71.50296,37.604546],[71.490265,37.28363],[71.44693,37.20723],[71.429428,37.075829],[71.45694,36.944733],[71.554688,36.760681],[71.6772,36.67601],[71.842758,36.692101],[72.306351,36.978104],[72.658508,37.021202],[72.793594,37.226234],[73.307205,37.462753],[73.456375,37.476105],[73.775986,37.434296],[73.768875,37.341125],[73.649429,37.304153],[73.61998,37.262482],[73.738586,37.221649],[74.146103,37.336182],[74.247208,37.409546],[74.542206,37.381798],[74.684265,37.399742],[74.832764,37.325447],[74.915741,37.237328]]]}},{"type":"Feature","properties":{"FIPS":"BT","ISO2":"BT","ISO3":"BTN","UN":64,"NAME":"Bhutan","AREA":4700,"POP2005":637013,"REGION":142,"SUBREGION":34,"LON":90.429,"LAT":27.415},"geometry":{"type":"Polygon","coordinates":[[[90.466385,28.071663],[90.909988,28.049442],[91.010818,27.979996],[91.086929,27.969994],[91.214432,28.073051],[91.301376,28.081108],[91.449997,27.997215],[91.667206,27.94194],[91.656097,27.721661],[91.595825,27.657497],[91.617477,27.560829],[91.770828,27.431664],[92.007767,27.471939],[92.115265,27.291386],[92.015274,27.168053],[92.009995,27.104717],[92.10081,26.97916],[92.09553,26.882217],[92.02388,26.85083],[91.835815,26.863331],[91.712494,26.799999],[91.542206,26.804443],[91.497208,26.872498],[91.424698,26.875553],[91.3797,26.807499],[91.314423,26.778053],[91.1197,26.809162],[90.694702,26.772221],[90.559143,26.80722],[90.385269,26.903328],[90.216934,26.85083],[90.143051,26.75333],[89.762497,26.703049],[89.631653,26.718052],[89.636108,26.771111],[89.5336,26.812218],[89.468323,26.799442],[89.367203,26.85944],[89.220825,26.81472],[89.115265,26.826942],[89.03499,26.924717],[88.893875,26.975552],[88.860535,27.096386],[88.751938,27.148605],[88.798035,27.246384],[88.90887,27.28944],[88.9711,27.473606],[89.125809,27.567497],[89.128036,27.623329],[89.23526,27.806664],[89.359985,27.871662],[89.487488,28.057774],[89.59027,28.14333],[89.782486,28.188606],[89.863037,28.271385],[90.017487,28.325275],[90.381653,28.251389],[90.39554,28.198883],[90.351654,28.098885],[90.466385,28.071663]]]}},{"type":"Feature","properties":{"FIPS":"CI","ISO2":"CL","ISO3":"CHL","UN":152,"NAME":"Chile","AREA":74880,"POP2005":16295102,"REGION":19,"SUBREGION":5,"LON":-69.433,"LAT":-23.389},"geometry":{"type":"MultiPolygon","coordinates":[[[[-67.21278,-55.893616],[-67.24695,-55.895],[-67.413895,-55.83223],[-67.24695,-55.828056],[-67.21278,-55.893616]]],[[[-67.49306,-55.82917],[-67.53029,-55.88334],[-67.59167,-55.873894],[-67.6119539999999,-55.902229],[-67.65501,-55.84945],[-67.85751,-55.849167],[-67.79779,-55.815559],[-67.49306,-55.82917]]],[[[-67.085281,-55.917503],[-67.17168,-55.87417],[-67.10583,-55.80195],[-67.083618,-55.816673],[-67.085281,-55.917503]]],[[[-67.16724,-55.78639],[-67.215561,-55.80334],[-67.241394,-55.79028],[-67.173889,-55.75973],[-67.16724,-55.78639]]],[[[-67.26807,-55.72139],[-67.253891,-55.77],[-67.3389,-55.79084],[-67.34668,-55.75528],[-67.552505,-55.73778],[-67.556396,-55.71223],[-67.54001,-55.660278],[-67.356674,-55.57472],[-67.26807,-55.72139]]],[[[-67.72862,-55.62445],[-67.688065,-55.50167],[-67.648056,-55.49556],[-67.589737,-55.54056],[-67.590561,-55.58223],[-67.72862,-55.62445]]],[[[-69.690567,-55.41251],[-69.7664,-55.40417],[-69.764725,-55.33778],[-69.63751,-55.38251],[-69.690567,-55.41251]]],[[[-69.98529,-55.36417],[-70.01807,-55.36695],[-70.106125,-55.29584],[-69.94223,-55.28722],[-69.98529,-55.36417]]],[[[-66.87472,-55.33223],[-67.05695,-55.3289],[-67.073624,-55.276115],[-67.025009,-55.242226],[-66.87862,-55.22889],[-66.826401,-55.29139],[-66.87472,-55.33223]]],[[[-66.5714,-55.284729],[-66.63667,-55.27306],[-66.626114,-55.19972],[-66.5175,-55.165001],[-66.420563,-55.194725],[-66.5714,-55.284729]]],[[[-66.816681,-55.11861],[-67.06111,-55.02667],[-67.07223,-55.002785],[-66.862228,-55.02639],[-66.816681,-55.11861]]],[[[-68.39667,-54.95945],[-68.337509,-55.00834],[-68.330841,-55.06722],[-68.601395,-55.15278],[-68.7764,-55.133896],[-69.026947,-55.02334],[-69.06111,-55.05723],[-68.78195,-55.17639],[-68.376114,-55.186394],[-68.210556,-55.26501],[-68.22417,-55.29306],[-68.512222,-55.31334],[-68.61584,-55.3075],[-68.68445,-55.25084],[-68.74501,-55.271118],[-68.60057,-55.35473],[-68.460556,-55.325279],[-68.15945,-55.398613],[-68.173065,-55.467781],[-68.0666,-55.46966],[-68.10779,-55.52806],[-68.043839,-55.58324],[-67.9639,-55.59334],[-67.979446,-55.67195],[-68.053619,-55.7125],[-68.102234,-55.71639],[-68.26807,-55.578613],[-68.248337,-55.52917],[-68.376114,-55.47695],[-68.4575,-55.50611],[-68.53946,-55.46945],[-68.729172,-55.46806],[-68.84584,-55.511116],[-68.93918,-55.45972],[-68.9725,-55.42334],[-68.94057,-55.400284],[-68.77501,-55.38417],[-68.761948,-55.33334],[-68.897507,-55.361389],[-68.912506,-55.34222],[-68.864731,-55.23695],[-68.80362,-55.188614],[-69.03279,-55.269173],[-69.190567,-55.23028],[-69.239456,-55.13945],[-69.430008,-55.161949],[-69.29085,-55.167503],[-69.266113,-55.22945],[-69.37251,-55.249168],[-69.38834,-55.29056],[-69.30278,-55.36639],[-69.30112,-55.43],[-69.138336,-55.44306],[-69.17418,-55.512222],[-69.425568,-55.502785],[-69.49251,-55.413063],[-69.39418,-55.359169],[-69.498337,-55.338058],[-69.57333,-55.377785],[-69.61389,-55.332779],[-69.706955,-55.31028],[-69.658615,-55.24028],[-69.5,-55.175003],[-69.85196,-55.261116],[-69.921402,-55.22778],[-69.843613,-55.20417],[-70.03334,-55.15639],[-69.93167,-55.078339],[-69.79279,-55.054726],[-69.193344,-54.98945],[-68.82613,-54.983337],[-68.652237,-54.939728],[-68.39667,-54.95945]]],[[[-67.78056,-54.91945],[-67.429733,-54.91833],[-67.22389,-54.95084],[-67.05751,-55.06972],[-67.05362,-55.136391],[-67.243896,-55.308891],[-67.439178,-55.282501],[-67.46028,-55.25306],[-67.427231,-55.203613],[-67.52612,-55.170837],[-67.61111,-55.18834],[-67.65501,-55.268616],[-67.87529,-55.246391],[-67.85362,-55.21278],[-67.883896,-55.18195],[-68.09529,-55.23695],[-68.151672,-55.2075],[-68.20695,-54.98862],[-68.314728,-54.995285],[-68.364456,-54.94445],[-68.200562,-54.90834],[-67.78056,-54.91945]]],[[[-70.50876,-54.97005],[-70.51779,-54.99778],[-70.708618,-54.99195],[-70.73418,-55.015282],[-70.49057,-55.044174],[-70.28723,-55.030556],[-70.26445,-55.116112],[-70.329727,-55.13],[-70.4111709999999,-55.08623],[-70.449448,-55.122505],[-70.38,-55.17028],[-70.54584,-55.211113],[-70.55,-55.12195],[-70.60667,-55.08306],[-70.702789,-55.129173],[-70.937225,-55.078339],[-71.00696,-55.04778],[-71.01584,-54.966667],[-70.877502,-54.938057],[-70.581955,-54.972504],[-70.5614,-54.96528],[-70.6239,-54.95251],[-70.50307,-54.907501],[-70.311676,-54.904724],[-70.50876,-54.97005]]],[[[-69.762222,-55.03861],[-69.90611,-55.04306],[-69.90056,-54.99972],[-69.95279,-54.96806],[-69.93195,-54.89917],[-69.6864,-54.868896],[-69.166397,-54.958336],[-69.762222,-55.03861]]],[[[-70.60918,-54.904724],[-70.74556,-54.874451],[-70.51501,-54.82973],[-70.393616,-54.87167],[-70.60918,-54.904724]]],[[[-71.10695,-54.87195],[-70.99861,-54.856674],[-70.912231,-54.92445],[-71.07223,-54.955],[-71.205,-54.90667],[-71.345,-54.95528],[-71.40417,-54.945557],[-71.45668,-54.885],[-71.39696,-54.825],[-71.10695,-54.87195]]],[[[-72.02112,-54.634727],[-71.9214,-54.704445],[-71.93112,-54.744728],[-71.98611,-54.76083],[-71.97917,-54.710281],[-72.037231,-54.655556],[-72.071396,-54.67861],[-72.101395,-54.65639],[-72.02112,-54.634727]]],[[[-72.30833,-54.369171],[-72.46335,-54.43],[-72.540558,-54.34139],[-72.406403,-54.30945],[-72.295563,-54.33667],[-72.30833,-54.369171]]],[[[-70.2814,-54.27556],[-70.465012,-54.23667],[-70.511124,-54.16083],[-70.468338,-54.14917],[-70.218903,-54.22667],[-70.2814,-54.27556]]],[[[-72.32223,-54.258057],[-72.468338,-54.25861],[-72.51112,-54.202782],[-72.386948,-54.09139],[-72.301682,-54.07167],[-72.20695,-54.14834],[-72.32223,-54.258057]]],[[[-73.194168,-54.128891],[-73.27251,-54.135559],[-73.470566,-54.07278],[-73.38528,-54.028061],[-73.24667,-54.03583],[-73.18333,-54.056396],[-73.159729,-54.11528],[-73.194168,-54.128891]]],[[[-71.257507,-54.07612],[-71.081955,-54.0625],[-71.00973,-54.10278],[-70.98695,-54.270279],[-71.116394,-54.38473],[-71.34778,-54.31084],[-71.44612,-54.19417],[-71.37167,-54.155556],[-71.40723,-54.11695],[-71.493622,-54.15667],[-71.540558,-54.25917],[-71.6564,-54.23667],[-71.699448,-54.16112],[-71.63528,-54.10806],[-71.66028,-53.984169],[-71.607788,-53.94584],[-71.4689,-53.94334],[-71.29945,-53.99195],[-71.257507,-54.07612]]],[[[-71.671112,-53.943893],[-71.72139,-53.97472],[-71.654175,-54.093613],[-71.73611,-54.16361],[-71.82167,-54.144447],[-71.9214,-54.053612],[-71.92334,-54.008614],[-71.95361,-54.019447],[-71.91446,-54.12167],[-71.740005,-54.237785],[-71.84668,-54.33973],[-71.94223,-54.327225],[-71.94723,-54.252785],[-72.20668,-54.09389],[-72.257507,-53.941116],[-72.189178,-53.92195],[-72.060013,-53.96584],[-71.99501,-53.86611],[-71.94084,-53.850563],[-71.65945,-53.91667],[-71.671112,-53.943893]]],[[[-70.44196,-53.86056],[-70.348068,-54.004448],[-70.37195,-54.03639],[-70.47612,-54.033615],[-70.67445,-53.92667],[-70.53862,-54.127228],[-70.524445,-54.228615],[-70.69694,-54.18306],[-70.87862,-54.05083],[-70.898056,-53.879723],[-70.78667,-53.835556],[-70.61806,-53.862503],[-70.614731,-53.826118],[-70.702789,-53.78167],[-70.708069,-53.69278],[-70.607788,-53.649445],[-70.53445,-53.560837],[-70.47362,-53.57111],[-70.494171,-53.70945],[-70.44196,-53.86056]]],[[[-73.831955,-53.59028],[-73.87418,-53.538895],[-73.85722,-53.45334],[-73.6875,-53.52167],[-73.831955,-53.59028]]],[[[-72.91112,-53.42945],[-72.87195,-53.53834],[-72.90945,-53.627228],[-72.87834,-53.68195],[-72.80945,-53.54889],[-72.86696,-53.46889],[-72.8439,-53.45806],[-72.734726,-53.52139],[-72.67389,-53.605003],[-72.588348,-53.56417],[-72.44556,-53.58639],[-72.40167,-53.65806],[-72.4869539999999,-53.677223],[-72.44084,-53.75167],[-72.36667,-53.69361],[-72.24084,-53.72889],[-72.13945,-53.80167],[-72.22029,-53.868057],[-72.35196,-53.864174],[-72.41945,-53.89917],[-72.41585,-53.96861],[-72.316681,-53.99473],[-72.330841,-54.04528],[-72.430557,-54.04806],[-72.53946,-54.10334],[-72.62695,-54.063896],[-72.87083,-54.13667],[-73.0314,-54.07973],[-72.776947,-54.01723],[-72.73222,-53.83973],[-72.80751,-53.821945],[-72.91585,-53.874168],[-73.008057,-53.874168],[-73.02417,-53.820282],[-73.06557,-53.81334],[-73.132507,-54.01167],[-73.223343,-53.98723],[-73.313904,-53.84445],[-73.25473,-53.8064],[-73.25,-53.70723],[-73.58778,-53.755562],[-73.47945,-53.69889],[-73.493057,-53.66611],[-73.616959,-53.6525],[-73.570557,-53.57861],[-73.49217,-53.591354],[-73.407501,-53.56583],[-73.277237,-53.653061],[-73.171951,-53.67612],[-72.95222,-53.66695],[-72.967514,-53.63583],[-73.07085,-53.65667],[-73.27112,-53.628616],[-73.42612,-53.46917],[-73.10861,-53.51806],[-73.16833,-53.41222],[-72.91112,-53.42945]]],[[[-73.4639,-53.475006],[-73.39307,-53.54139],[-73.49474,-53.57445],[-73.801956,-53.42917],[-73.622513,-53.475838],[-73.535278,-53.45417],[-73.5789,-53.431396],[-73.565,-53.39333],[-73.39445,-53.409172],[-73.4639,-53.475006]]],[[[-74.191681,-53.331947],[-74.243622,-53.29973],[-74.10973,-53.22917],[-74.05945,-53.24306],[-74.10556,-53.30917],[-74.191681,-53.331947]]],[[[-73.41307,-52.878616],[-73.374451,-52.910004],[-73.39111,-52.953613],[-73.4575,-52.95334],[-73.49612,-52.92195],[-73.45946,-52.90445],[-73.53279,-52.884445],[-73.752228,-52.89333],[-73.57584,-52.845284],[-73.41307,-52.878616]]],[[[-70.725845,-52.89362],[-70.780838,-52.87778],[-70.618896,-52.8214],[-70.637222,-52.84389],[-70.725845,-52.89362]]],[[[-74.360565,-52.948891],[-74.25195,-52.96612],[-74.12862,-52.93611],[-73.716949,-53.07778],[-73.60751,-53.065285],[-73.53612,-53.14917],[-73.57362,-53.190285],[-73.521118,-53.26083],[-73.46945,-53.226669],[-73.5025,-53.145279],[-73.45557,-53.138893],[-73.309723,-53.23833],[-73.367783,-53.26973],[-73.29306,-53.263062],[-73.090012,-53.354729],[-73.24084,-53.36861],[-73.490005,-53.32917],[-73.50168,-53.29139],[-73.893341,-53.064728],[-74.06778,-53.107506],[-74.322784,-53.09695],[-74.42445,-52.97945],[-74.587509,-52.93084],[-74.56778,-52.851112],[-74.59639,-52.82751],[-74.74501,-52.75667],[-74.693619,-52.71806],[-74.64279,-52.73806],[-74.360565,-52.948891]]],[[[-73.38528,-52.740005],[-73.398056,-52.732506],[-73.32806,-52.69945],[-73.37195,-52.734169],[-73.38528,-52.740005]]],[[[-70.917236,-54.708618],[-70.77139,-54.681114],[-70.87028,-54.686394],[-70.93368,-54.71545],[-71.01445,-54.775284],[-71.04085,-54.777229],[-70.97057,-54.620285],[-71.01417,-54.61445],[-71.0614,-54.665001],[-71.18056,-54.703339],[-71.27278,-54.679726],[-71.30446,-54.65695],[-71.275284,-54.64667],[-71.265015,-54.578339],[-71.34029,-54.522224],[-71.40085,-54.55278],[-71.485291,-54.69139],[-71.68251,-54.60639],[-71.806396,-54.652229],[-71.94806,-54.65417],[-72.001678,-54.56612],[-72.00307,-54.46361],[-71.924728,-54.46306],[-71.84056,-54.54195],[-71.675293,-54.57695],[-71.58168,-54.54861],[-71.70056,-54.468338],[-71.831009,-54.458561],[-71.84778,-54.41806],[-71.7164,-54.40389],[-71.63779,-54.493614],[-71.56473,-54.512779],[-71.48889,-54.48306],[-71.580841,-54.466118],[-71.61917,-54.41445],[-71.4489,-54.442223],[-71.37779,-54.42278],[-71.42946,-54.404449],[-71.368057,-54.37445],[-70.97029,-54.47389],[-70.93445,-54.41917],[-70.94806,-54.35361],[-70.77724,-54.322227],[-70.6125,-54.34417],[-70.71251,-54.455559],[-70.754181,-54.59473],[-70.71945,-54.57084],[-70.64362,-54.60945],[-70.706955,-54.523056],[-70.66334,-54.44278],[-70.58694,-54.390839],[-70.28696,-54.565285],[-70.13084,-54.548889],[-70.443893,-54.42722],[-70.566681,-54.284172],[-70.8589,-54.253334],[-70.91833,-54.141113],[-70.88028,-54.1339],[-70.344727,-54.320557],[-70.14279,-54.42834],[-70.06778,-54.368614],[-70.20084,-54.316116],[-70.055283,-54.249168],[-69.97278,-54.29723],[-69.77,-54.557503],[-69.73889,-54.48528],[-69.88528,-54.315],[-69.85918,-54.28306],[-69.241119,-54.4464],[-69.228058,-54.47806],[-69.41695,-54.62361],[-69.3764,-54.686668],[-69.277237,-54.54084],[-69.2164,-54.528336],[-69.177505,-54.58083],[-69.14835,-54.55167],[-69.176392,-54.492783],[-69.15779,-54.45528],[-69.016678,-54.478615],[-68.99167,-54.43195],[-69.566681,-54.22917],[-69.886124,-54.16584],[-70.04251,-54.101112],[-70.18445,-53.813614],[-70.163895,-53.7525],[-69.922501,-53.656113],[-69.76779,-53.645279],[-69.353897,-53.50611],[-69.3564,-53.351112],[-69.57112,-53.32472],[-69.89223,-53.35195],[-70.21751,-53.47333],[-70.44667,-53.368057],[-70.48723,-53.230835],[-70.44446,-53.01278],[-70.350571,-52.94445],[-70.34167,-53.03973],[-70.18973,-53.01694],[-70.13667,-52.98695],[-70.09973,-52.904167],[-70.215561,-52.869728],[-70.2914,-52.78528],[-70.42473,-52.773056],[-70.36835,-52.738335],[-70.14917,-52.71889],[-70.00723,-52.82528],[-69.917236,-52.82584],[-69.72307,-52.75167],[-69.61223,-52.63889],[-69.60891,-52.529041],[-69.42056,-52.45806],[-69.15167,-52.68445],[-68.8114,-52.57639],[-68.61758,-52.64151],[-68.63722,-54.885],[-68.886948,-54.79917],[-68.74628,-54.902618],[-69.11111,-54.94833],[-69.65695,-54.82001],[-69.6239,-54.761391],[-69.630569,-54.69389],[-69.71501,-54.72723],[-69.74084,-54.808617],[-70.275558,-54.854729],[-70.32362,-54.79417],[-70.235,-54.688614],[-70.36402,-54.81368],[-70.62807,-54.80695],[-70.76279,-54.84112],[-70.836945,-54.80945],[-70.538895,-54.701393],[-70.45723,-54.62833],[-70.55806,-54.62833],[-70.62834,-54.67028],[-70.58835,-54.696396],[-70.730904,-54.73417],[-70.892624,-54.74501],[-70.917236,-54.708618]]],[[[-73.80751,-52.69833],[-73.92612,-52.72639],[-74.07779,-52.606674],[-73.98807,-52.520561],[-73.742233,-52.40362],[-73.671402,-52.481674],[-73.80751,-52.69833]]],[[[-74.73946,-52.31695],[-74.80972,-52.27972],[-74.82056,-52.229446],[-74.62001,-52.20778],[-74.68611,-52.29834],[-74.73946,-52.31695]]],[[[-73.80806,-52.397224],[-73.881668,-52.36139],[-74.09279,-52.161949],[-74.037231,-52.14167],[-73.789169,-52.26417],[-73.74751,-52.365562],[-73.80806,-52.397224]]],[[[-74.194168,-52.13667],[-73.938065,-52.317223],[-73.93501,-52.33723],[-74.139725,-52.39639],[-74.226669,-52.32722],[-74.233902,-52.24861],[-74.199722,-52.22834],[-74.10501,-52.25389],[-74.14584,-52.197227],[-74.418625,-52.13972],[-74.30057,-52.08362],[-74.194168,-52.13667]]],[[[-74.762512,-52.18834],[-74.80334,-52.166946],[-74.78528,-52.121391],[-74.596115,-52.073616],[-74.68306,-52.16917],[-74.762512,-52.18834]]],[[[-74.360565,-52.077225],[-74.396423,-52.0766],[-74.405838,-52.04723],[-74.35417,-52.056114],[-74.360565,-52.077225]]],[[[-74.71722,-52.08723],[-74.70946,-52.03223],[-74.55196,-51.927505],[-74.487793,-51.95723],[-74.49972,-52.004173],[-74.71722,-52.08723]]],[[[-73.69473,-52.241669],[-73.872787,-52.09667],[-74.112793,-51.99861],[-74.09529,-51.92278],[-74.047501,-51.90778],[-73.76807,-52.06834],[-73.708618,-52.152504],[-73.69473,-52.241669]]],[[[-74.86362,-52.13917],[-74.897781,-52.111671],[-74.74695,-51.83389],[-74.59917,-51.84056],[-74.76973,-52.08362],[-74.86362,-52.13917]]],[[[-75.08974,-51.90167],[-75.12251,-51.88167],[-75.070847,-51.74028],[-74.972504,-51.72362],[-75.007782,-51.855835],[-75.08974,-51.90167]]],[[[-74.14473,-51.95139],[-74.377502,-51.889725],[-74.50528,-51.714172],[-74.3739,-51.739723],[-74.09222,-51.875],[-74.14473,-51.95139]]],[[[-73.79668,-51.819168],[-73.84917,-51.809723],[-73.94,-51.66306],[-73.793335,-51.72861],[-73.765015,-51.77139],[-73.79668,-51.819168]]],[[[-74.78111,-51.82167],[-74.88444,-52.04556],[-74.969727,-52.118057],[-75.059723,-51.97056],[-74.959732,-51.810837],[-74.921112,-51.83806],[-74.93001,-51.86806],[-74.829727,-51.841667],[-74.86084,-51.72445],[-74.93251,-51.643616],[-74.86446,-51.619728],[-74.78946,-51.648338],[-74.78111,-51.82167]]],[[[-74.05501,-51.55361],[-73.92612,-51.75695],[-73.94,-51.78583],[-74.045288,-51.79806],[-74.238068,-51.701393],[-74.22696,-51.675],[-74.14029,-51.67028],[-74.08862,-51.614723],[-74.10084,-51.545837],[-74.05501,-51.55361]]],[[[-74.117783,-51.45444],[-74.245285,-51.40445],[-74.2614,-51.30056],[-74.17111,-51.285835],[-74.111389,-51.38834],[-74.117783,-51.45444]]],[[[-75.00029,-51.39556],[-75.076675,-51.40834],[-75.155838,-51.57973],[-75.310287,-51.63417],[-75.31917,-51.54778],[-75.23056,-51.47056],[-75.20529,-51.29917],[-75.13028,-51.26556],[-75.00473,-51.335838],[-75.00029,-51.39556]]],[[[-73.7814,-51.371391],[-73.86945,-51.35806],[-73.91446,-51.3],[-73.84639,-51.25223],[-73.791397,-51.261116],[-73.75723,-51.30056],[-73.7814,-51.371391]]],[[[-74.04584,-51.37917],[-74.10335,-51.35973],[-74.09723,-51.225838],[-73.968063,-51.244171],[-73.95584,-51.3325],[-74.04584,-51.37917]]],[[[-74.53612,-51.279167],[-74.544724,-51.365],[-74.600571,-51.40695],[-74.6414,-51.405556],[-74.67834,-51.33],[-74.783615,-51.432228],[-75.021118,-51.468338],[-75.013062,-51.437782],[-74.79723,-51.333061],[-74.93224,-51.36917],[-74.96474,-51.341667],[-74.7939,-51.20945],[-74.61362,-51.1925],[-74.53612,-51.279167]]],[[[-74.99556,-51.17722],[-75.01889,-51.153618],[-74.94,-51.09862],[-74.85722,-51.13528],[-74.99556,-51.17722]]],[[[-74.41167,-51.20834],[-74.5739,-51.160004],[-74.60306,-51.07751],[-74.466675,-51.02834],[-74.38806,-51.13195],[-74.41167,-51.20834]]],[[[-74.26334,-51.24778],[-74.33778,-51.02889],[-74.34889,-50.937782],[-74.32223,-50.91972],[-74.191391,-51.195557],[-74.26334,-51.24778]]],[[[-74.39667,-50.86056],[-74.37001,-51.02222],[-74.40556,-51.08973],[-74.48222,-50.99778],[-74.60278,-51.04362],[-74.633057,-51.095284],[-74.720566,-51.11195],[-74.88306,-51.0639],[-74.96474,-50.965836],[-74.92529,-50.884445],[-74.69112,-50.92111],[-74.616119,-50.895],[-74.61418,-50.79389],[-74.68445,-50.74861],[-74.6575,-50.72667],[-74.48668,-50.780838],[-74.39667,-50.86056]]],[[[-74.68918,-50.890839],[-74.92834,-50.85445],[-74.954727,-50.73112],[-74.819168,-50.662781],[-74.7489,-50.70195],[-74.66307,-50.8225],[-74.68918,-50.890839]]],[[[-74.993896,-50.813896],[-75.06807,-50.79723],[-75.10973,-50.736389],[-75.070847,-50.652229],[-74.97974,-50.66445],[-74.993896,-50.813896]]],[[[-74.6514,-50.588615],[-74.685837,-50.52167],[-74.63779,-50.505],[-74.58168,-50.53223],[-74.6514,-50.588615]]],[[[-75.09639,-50.5164],[-75.1964,-50.60056],[-75.27473,-50.58472],[-75.28889,-50.785835],[-75.44945,-50.769173],[-75.515015,-50.66306],[-75.431671,-50.604729],[-75.371124,-50.616112],[-75.39667,-50.54111],[-75.464172,-50.505562],[-75.41667,-50.46722],[-75.09639,-50.5164]]],[[[-74.363892,-50.49139],[-74.18112,-50.77028],[-74.193344,-50.848335],[-74.265015,-50.785835],[-74.319458,-50.814728],[-74.51501,-50.733063],[-74.573059,-50.621117],[-74.42361,-50.523613],[-74.67001,-50.479446],[-74.54001,-50.41833],[-74.363892,-50.49139]]],[[[-74.73834,-50.5],[-74.78723,-50.48528],[-74.753067,-50.38834],[-74.68861,-50.361671],[-74.54362,-50.38139],[-74.73834,-50.5]]],[[[-75.04861,-50.16695],[-75.069458,-50.19056],[-74.86334,-50.16473],[-74.86111,-50.12528],[-74.81834,-50.11389],[-74.78973,-50.149445],[-74.81334,-50.215279],[-75.05508,-50.29945],[-75.21417,-50.43667],[-75.322784,-50.41334],[-75.198624,-50.30945],[-75.458618,-50.364174],[-75.445847,-50.27556],[-75.37445,-50.14834],[-75.25612,-50.166672],[-75.34695,-50.19445],[-75.320282,-50.22723],[-75.14362,-50.246391],[-75.155838,-50.16806],[-75.38057,-50.08223],[-75.39973,-50.03667],[-75.30667,-50.000282],[-75.14362,-50.026115],[-74.99972,-50.13583],[-75.04861,-50.16695]]],[[[-75.30695,-49.67195],[-75.198624,-49.81639],[-75.173889,-49.903061],[-75.27473,-49.8289],[-75.25917,-49.89167],[-75.295288,-49.894173],[-75.3739,-49.826118],[-75.36945,-49.79611],[-75.42778,-49.770279],[-75.54362,-49.840279],[-75.591949,-49.78389],[-75.604446,-49.66445],[-75.558624,-49.623894],[-75.37862,-49.61528],[-75.30695,-49.67195]]],[[[-75.48056,-49.547226],[-75.565567,-49.5014],[-75.5789,-49.464729],[-75.484451,-49.48112],[-75.48056,-49.547226]]],[[[-74.294174,-49.560562],[-74.41945,-49.627785],[-74.43584,-49.4275],[-74.33917,-49.47861],[-74.294174,-49.560562]]],[[[-74.920563,-49.295006],[-75.04584,-49.205284],[-75.237228,-49.13722],[-75.124725,-49.024445],[-74.972504,-49.031113],[-74.89418,-49.08417],[-74.920563,-49.295006]]],[[[-75.28584,-49.10028],[-75.51417,-49.27195],[-75.6564,-49.216949],[-75.60167,-49.142227],[-75.4647,-49.090141],[-75.3589,-48.98556],[-75.28584,-49.10028]]],[[[-75.2814,-48.89001],[-75.2014,-49.03639],[-75.25778,-49.08195],[-75.32251,-48.954445],[-75.41917,-48.98028],[-75.5,-49.046394],[-75.656677,-48.938896],[-75.625565,-48.85945],[-75.54501,-48.84112],[-75.369171,-48.849167],[-75.2814,-48.89001]]],[[[-75.17612,-48.999725],[-75.226395,-48.96695],[-75.3125,-48.800003],[-75.18445,-48.82389],[-75.08223,-48.88917],[-75.06334,-48.96389],[-75.17612,-48.999725]]],[[[-74.97945,-48.7425],[-75.04529,-48.73222],[-74.99139,-48.64889],[-74.825562,-48.66167],[-74.97945,-48.7425]]],[[[-75.28168,-48.713341],[-75.49139,-48.780838],[-75.61279,-48.79695],[-75.65472,-48.768059],[-75.64389,-48.70278],[-75.49751,-48.72362],[-75.34807,-48.63556],[-75.29918,-48.659447],[-75.28168,-48.713341]]],[[[-75.12056,-48.833618],[-75.24834,-48.77139],[-75.0714,-48.63444],[-75.056671,-48.70251],[-75.12056,-48.833618]]],[[[-75.32251,-48.604172],[-75.496399,-48.69445],[-75.60112,-48.69195],[-75.441391,-48.61362],[-75.52501,-48.63945],[-75.649734,-48.61861],[-75.670837,-48.58611],[-75.65056,-48.48195],[-75.618896,-48.44472],[-75.34639,-48.431396],[-75.32251,-48.604172]]],[[[-74.41139,-48.530006],[-74.505,-48.431396],[-74.497787,-48.39917],[-74.301956,-48.47584],[-74.41139,-48.530006]]],[[[-74.04918,-48.446114],[-74.07417,-48.491112],[-74.2489,-48.376396],[-74.17529,-48.36945],[-74.04918,-48.446114]]],[[[-74.26445,-48.466949],[-74.46167,-48.38528],[-74.491669,-48.351112],[-74.306396,-48.28667],[-74.310013,-48.35639],[-74.214737,-48.437782],[-74.26445,-48.466949]]],[[[-74.608337,-48.45583],[-74.59445,-48.57917],[-74.54445,-48.621391],[-74.52751,-48.58028],[-74.48195,-48.60695],[-74.505,-48.66445],[-74.60278,-48.69833],[-74.525284,-48.73195],[-74.4425,-49.22778],[-74.468063,-49.42223],[-74.52196,-49.53973],[-74.4989,-49.58472],[-74.60196,-49.714447],[-74.53056,-49.67695],[-74.5289,-49.631393],[-74.47111,-49.62417],[-74.42361,-49.668335],[-74.41278,-49.73251],[-74.47417,-49.94445],[-74.621124,-50.045006],[-74.77112,-50.055],[-74.872513,-50.0014],[-74.72696,-49.9225],[-74.662506,-49.95528],[-74.73251,-49.900284],[-74.896118,-49.954445],[-74.88306,-49.793892],[-74.92001,-49.68306],[-74.889175,-49.54139],[-74.78445,-49.47778],[-74.64639,-49.35556],[-74.94057,-49.54333],[-74.97362,-49.47472],[-75.005,-49.50806],[-75.00528,-49.636948],[-74.964172,-49.67695],[-75.017227,-49.899445],[-75.14445,-49.84945],[-75.298065,-49.635],[-75.273056,-49.57417],[-75.29251,-49.503616],[-75.364182,-49.43472],[-75.439178,-49.45834],[-75.471115,-49.33167],[-75.42807,-49.28445],[-75.37973,-49.28139],[-75.28418,-49.41972],[-75.167511,-49.5025],[-75.28723,-49.36834],[-75.32085,-49.26501],[-75.273056,-49.25695],[-75.16307,-49.34139],[-75.077789,-49.265556],[-75.08639,-49.19917],[-74.91806,-49.336113],[-74.82722,-49.09584],[-74.969727,-48.988892],[-75.0614,-48.846947],[-75.051392,-48.79834],[-74.83639,-48.69584],[-74.61111,-48.69667],[-74.741119,-48.635],[-74.99528,-48.60223],[-75.028625,-48.495003],[-74.921951,-48.41222],[-74.840561,-48.41095],[-74.75917,-48.497505],[-74.708618,-48.45417],[-74.76363,-48.422501],[-74.813065,-48.331673],[-74.735,-48.12306],[-74.70084,-48.15501],[-74.67778,-48.302223],[-74.587784,-48.40861],[-74.608337,-48.45583]]],[[[-74.4189,-48.304726],[-74.537231,-48.33389],[-74.59668,-48.24667],[-74.59973,-48.151672],[-74.546112,-48.122223],[-74.390289,-48.22611],[-74.36696,-48.262779],[-74.4189,-48.304726]]],[[[-74.925,-48.155838],[-74.80389,-48.18111],[-74.836945,-48.36195],[-75.044174,-48.44361],[-75.195007,-48.229172],[-75.25696,-48.07333],[-75.03862,-48.09833],[-74.925,-48.155838]]],[[[-75.23946,-48.27056],[-75.08417,-48.50556],[-75.07194,-48.59611],[-75.234451,-48.71139],[-75.31946,-48.498062],[-75.29501,-48.436668],[-75.39639,-48.39639],[-75.4989,-48.42556],[-75.55585,-48.40861],[-75.535,-48.37195],[-75.3925,-48.341118],[-75.344177,-48.295837],[-75.54333,-48.32362],[-75.5825,-48.08667],[-75.50696,-48.032784],[-75.344177,-48.01028],[-75.23946,-48.27056]]],[[[-74.805283,-47.898056],[-74.805283,-48.03639],[-74.86974,-48.06917],[-75.02972,-48.03528],[-75.02482,-47.9994],[-75.07012,-47.98781],[-75.17056,-48.03612],[-75.266678,-48.03195],[-75.179459,-47.958618],[-75.04779,-47.935005],[-74.83446,-47.80778],[-74.805283,-47.898056]]],[[[-73.92445,-47.886116],[-73.843338,-47.86139],[-73.799728,-47.887779],[-73.82501,-47.94334],[-73.87195,-47.95889],[-74.117233,-47.94501],[-74.3175,-47.983894],[-74.4989,-47.92306],[-74.4064,-47.846672],[-74.27806,-47.801392],[-73.92445,-47.886116]]],[[[-75.13196,-47.84889],[-75.1989,-47.863335],[-75.18278,-47.807503],[-75.303619,-47.77334],[-75.134445,-47.69833],[-75.060013,-47.7925],[-75.13196,-47.84889]]],[[[-74.954727,-47.78306],[-75.04472,-47.763618],[-75.07529,-47.69445],[-74.951401,-47.70639],[-74.903625,-47.75584],[-74.954727,-47.78306]]],[[[-74.45529,-47.17695],[-74.48418,-47.083336],[-74.313065,-47.062782],[-74.332779,-47.108612],[-74.45529,-47.17695]]],[[[-74.15445,-47.172501],[-74.229446,-47.127785],[-74.183624,-47.02528],[-73.97528,-47.047501],[-74.08057,-47.14917],[-74.15445,-47.172501]]],[[[-73.765015,-46.211113],[-73.93167,-46.07778],[-73.91223,-46.020279],[-73.82918,-46.01556],[-73.68333,-46.07667],[-73.765015,-46.211113]]],[[[-73.68112,-46.02834],[-73.81946,-45.998894],[-73.778061,-45.905006],[-73.708618,-45.925285],[-73.68112,-46.02834]]],[[[-74.715561,-45.85195],[-74.76862,-46.00056],[-74.910568,-46.104446],[-75.08307,-46.088615],[-75.093613,-46.0325],[-74.94917,-46.01139],[-74.95959,-45.98852],[-75.06467,-45.99026],[-75.1019589999999,-45.874168],[-74.94446,-45.902504],[-74.723068,-45.80167],[-74.715561,-45.85195]]],[[[-73.7039,-45.84278],[-73.69667,-45.895],[-73.801392,-45.88306],[-73.851395,-45.975838],[-73.92889,-45.975838],[-73.94556,-45.928612],[-73.88417,-45.85861],[-73.737793,-45.79806],[-73.7039,-45.84278]]],[[[-74.01501,-45.917778],[-74.10695,-45.788338],[-74.03862,-45.73639],[-73.965561,-45.754173],[-73.969177,-45.874168],[-74.01501,-45.917778]]],[[[-74.75279,-45.707779],[-74.87668,-45.64973],[-74.869171,-45.605835],[-74.79945,-45.617226],[-74.75279,-45.707779]]],[[[-74.6202849999999,-45.75695],[-74.697784,-45.743057],[-74.68251,-45.636948],[-74.54861,-45.57751],[-74.54945,-45.68722],[-74.6202849999999,-45.75695]]],[[[-73.98695,-45.72472],[-74.05945,-45.71167],[-74.11528,-45.603615],[-74.0289,-45.538612],[-73.960846,-45.55695],[-73.89612,-45.62056],[-73.922791,-45.70195],[-73.98695,-45.72472]]],[[[-74.458618,-45.779167],[-74.499451,-45.73251],[-74.44723,-45.677505],[-74.466675,-45.538895],[-74.390289,-45.443893],[-74.276947,-45.49195],[-74.210007,-45.636116],[-74.23695,-45.681671],[-74.458618,-45.779167]]],[[[-73.645569,-45.759445],[-73.78195,-45.67028],[-73.7847289999999,-45.53195],[-73.70056,-45.443893],[-73.58084,-45.475006],[-73.645569,-45.759445]]],[[[-74.504456,-45.53945],[-74.51001,-45.593613],[-74.570007,-45.529167],[-74.518341,-45.443893],[-74.438065,-45.42389],[-74.504456,-45.53945]]],[[[-74.01779,-45.43306],[-73.88667,-45.473335],[-73.83139,-45.452782],[-73.81584,-45.475838],[-73.86584,-45.569725],[-74.041397,-45.517227],[-74.14473,-45.57639],[-74.071945,-45.43195],[-74.01779,-45.43306]]],[[[-73.89696,-45.43417],[-74.01472,-45.41389],[-74.02417,-45.400284],[-73.82556,-45.373062],[-73.82556,-45.411667],[-73.89696,-45.43417]]],[[[-74.3414,-45.406113],[-74.48222,-45.35834],[-74.527786,-45.30528],[-74.387222,-45.288063],[-74.30945,-45.395],[-74.3414,-45.406113]]],[[[-73.97667,-45.2675],[-73.831116,-45.26306],[-73.783066,-45.335281],[-74.010284,-45.356674],[-74.13612,-45.321945],[-74.16612,-45.250557],[-74.07112,-45.20917],[-73.97667,-45.2675]]],[[[-74.308899,-45.30584],[-74.4189,-45.242783],[-74.39473,-45.15445],[-74.270569,-45.214172],[-74.308899,-45.30584]]],[[[-73.84668,-45.002785],[-73.703339,-45.133896],[-73.7314,-45.28445],[-73.829651,-45.23942],[-73.998337,-45.242226],[-74.110001,-45.14889],[-74.23584,-45.160278],[-74.24084,-45.07778],[-74.17973,-45.030281],[-73.84668,-45.002785]]],[[[-73.98029,-44.98445],[-74.194168,-44.995003],[-74.27724,-45.030838],[-74.366669,-45.01056],[-74.16833,-44.86667],[-73.96612,-44.901672],[-73.911957,-44.95862],[-73.98029,-44.98445]]],[[[-75.069458,-44.92556],[-75.10918,-44.92223],[-75.148056,-44.840004],[-75.11168,-44.77834],[-75.023056,-44.84639],[-75.02389,-44.897507],[-75.069458,-44.92556]]],[[[-74.02612,-44.85695],[-74.06723,-44.85751],[-74.186676,-44.8125],[-73.957779,-44.78361],[-73.965012,-44.832779],[-74.02612,-44.85695]]],[[[-73.79362,-44.965],[-73.92418,-44.89223],[-73.91779,-44.78167],[-73.833618,-44.78695],[-73.770279,-44.902229],[-73.79362,-44.965]]],[[[-73.65112,-44.844452],[-73.74501,-44.81306],[-73.7489,-44.756393],[-73.608337,-44.74111],[-73.617508,-44.82751],[-73.65112,-44.844452]]],[[[-74.37695,-44.85945],[-74.46417,-44.83139],[-74.5264,-44.74195],[-74.42946,-44.719452],[-74.3114,-44.83973],[-74.37695,-44.85945]]],[[[-74.45557,-44.693893],[-74.62889,-44.69833],[-74.67361,-44.66862],[-74.578339,-44.620003],[-74.46362,-44.640282],[-74.45557,-44.693893]]],[[[-74.20973,-44.78445],[-74.263062,-44.807503],[-74.352234,-44.77389],[-74.41362,-44.692223],[-74.409729,-44.634445],[-74.24751,-44.600563],[-73.99528,-44.60778],[-73.873337,-44.68695],[-74.20973,-44.78445]]],[[[-74.77724,-44.6875],[-74.82501,-44.628616],[-74.80417,-44.54917],[-74.72612,-44.59778],[-74.74196,-44.67195],[-74.77724,-44.6875]]],[[[-73.74556,-44.74361],[-73.82223,-44.68],[-73.82306,-44.57167],[-73.68861,-44.54445],[-73.58974,-44.709724],[-73.74556,-44.74361]]],[[[-74.29529,-44.577225],[-74.343338,-44.575],[-74.36835,-44.532784],[-74.195847,-44.49556],[-74.13917,-44.55056],[-74.29529,-44.577225]]],[[[-74.01973,-44.55667],[-74.129456,-44.532501],[-74.129456,-44.44833],[-73.95946,-44.48278],[-73.94917,-44.54806],[-74.01973,-44.55667]]],[[[-74.412506,-44.51278],[-74.401672,-44.550835],[-74.50973,-44.53306],[-74.5475,-44.468056],[-74.319458,-44.39695],[-74.26584,-44.407784],[-74.21779,-44.468056],[-74.412506,-44.51278]]],[[[-73.84418,-44.464447],[-73.90224,-44.456947],[-73.89889,-44.37167],[-73.78862,-44.422501],[-73.78418,-44.454445],[-73.84418,-44.464447]]],[[[-72.72278,-44.54917],[-72.819168,-44.64056],[-72.98334,-44.60612],[-72.828339,-44.690559],[-73.068619,-44.87361],[-73.22473,-44.93917],[-73.291397,-44.933891],[-73.40779,-44.82056],[-73.306396,-44.788895],[-73.25528,-44.81417],[-73.20723,-44.79861],[-73.29501,-44.762779],[-73.389175,-44.79111],[-73.464737,-44.644447],[-73.415009,-44.59611],[-73.27528,-44.579727],[-73.22723,-44.41723],[-72.998062,-44.367226],[-72.77167,-44.468613],[-72.72278,-44.54917]]],[[[-73.6889,-44.43973],[-73.7139,-44.436951],[-73.78807,-44.38195],[-73.65279,-44.35278],[-73.6889,-44.43973]]],[[[-73.929459,-44.448059],[-74.08223,-44.388893],[-74.10556,-44.322784],[-73.93085,-44.35556],[-73.929459,-44.448059]]],[[[-73.241959,-44.38834],[-73.30334,-44.36333],[-73.24972,-44.310837],[-73.1689,-44.370003],[-73.241959,-44.38834]]],[[[-73.84695,-44.33806],[-73.95834,-44.323616],[-73.97389,-44.28195],[-73.80223,-44.27084],[-73.793335,-44.32306],[-73.84695,-44.33806]]],[[[-74.291672,-44.306396],[-74.39889,-44.292229],[-74.4214,-44.262779],[-74.32722,-44.246391],[-74.291672,-44.306396]]],[[[-73.71139,-44.304169],[-73.75334,-44.291672],[-73.76112,-44.25389],[-73.66556,-44.251396],[-73.71139,-44.304169]]],[[[-74.01167,-44.28417],[-74.00723,-44.3325],[-74.075562,-44.303062],[-74.126114,-44.207779],[-74.06723,-44.151947],[-73.95084,-44.24056],[-74.00639,-44.25389],[-74.01167,-44.28417]]],[[[-74.320007,-44.19501],[-74.342514,-44.18944],[-74.38556,-44.154449],[-74.25917,-44.159447],[-74.320007,-44.19501]]],[[[-73.85278,-44.19584],[-73.97446,-44.182228],[-74.01112,-44.141945],[-73.92223,-44.09889],[-73.8289,-44.16056],[-73.85278,-44.19584]]],[[[-74.293335,-44.031952],[-74.319458,-44.01723],[-74.20473,-44.019173],[-74.25557,-44.028618],[-74.293335,-44.031952]]],[[[-73.646118,-44.13139],[-73.75667,-43.99445],[-73.72862,-43.9389],[-73.63444,-44.01],[-73.612503,-44.084724],[-73.646118,-44.13139]]],[[[-73.15501,-44.02278],[-73.275848,-43.994171],[-73.26945,-43.920837],[-73.148056,-43.88834],[-73.15501,-44.02278]]],[[[-73.85556,-43.765839],[-73.78973,-43.82167],[-73.765015,-43.89333],[-73.853897,-43.89473],[-73.89239,-43.8744],[-73.879181,-43.845001],[-73.95695,-43.849449],[-73.968903,-43.878616],[-73.927177,-43.90984],[-73.99278,-43.940002],[-74.1725,-43.877785],[-74.12807,-43.80584],[-73.91751,-43.801674],[-73.85556,-43.765839]]],[[[-74.646118,-43.612503],[-74.7939,-43.647781],[-74.862503,-43.5625],[-74.761124,-43.52778],[-74.666672,-43.56556],[-74.646118,-43.612503]]],[[[-73.39188,-42.99847],[-73.45639,-42.9975],[-73.610291,-42.932228],[-73.552505,-42.9175],[-73.364731,-42.98445],[-73.39188,-42.99847]]],[[[-73.597504,-42.618057],[-73.609726,-42.645],[-73.75307,-42.61167],[-73.618896,-42.570282],[-73.597504,-42.618057]]],[[[-73.416672,-42.556396],[-73.472778,-42.501114],[-73.62361,-42.449722],[-73.65279,-42.38139],[-73.53584,-42.385],[-73.41695,-42.52056],[-73.416672,-42.556396]]],[[[-73.10612,-42.311394],[-73.176117,-42.292778],[-73.189728,-42.2514],[-73.06917,-42.26028],[-73.10612,-42.311394]]],[[[-72.513062,-42.152504],[-72.60751,-42.11472],[-72.616959,-42.097778],[-72.56946,-42.057503],[-72.509445,-42.060837],[-72.513062,-42.152504]]],[[[-73.88528,-41.815559],[-73.91612,-41.84556],[-74.005,-41.831947],[-73.87112,-41.899445],[-73.68779,-41.80972],[-73.577515,-41.804169],[-73.50111,-41.84334],[-73.52585,-41.973061],[-73.44389,-42.06806],[-73.498062,-42.14001],[-73.39084,-42.19167],[-73.36862,-42.250557],[-73.399734,-42.31278],[-73.57333,-42.320557],[-73.672226,-42.36195],[-73.6925,-42.46028],[-73.618057,-42.517227],[-73.74028,-42.54362],[-73.785843,-42.508614],[-73.76083,-42.46194],[-73.820282,-42.50751],[-73.800293,-42.617783],[-73.4989,-42.800835],[-73.49528,-42.87917],[-73.63722,-42.88945],[-73.6539,-42.933334],[-73.56973,-42.994171],[-73.48946,-43.114723],[-73.77251,-43.117226],[-73.76973,-43.2075],[-73.694458,-43.275558],[-73.71474,-43.370285],[-73.85918,-43.4],[-73.946121,-43.355003],[-74.275009,-43.315285],[-74.40779,-43.243614],[-74.333618,-43.10917],[-74.239456,-43.028336],[-74.2525,-42.99167],[-74.177231,-42.88417],[-74.148056,-42.586113],[-74.214447,-42.493896],[-74.173065,-42.23195],[-74.07362,-42.13834],[-74.046402,-42.06444],[-74.012787,-41.91334],[-74.0614,-41.81084],[-74.02057,-41.77195],[-73.917236,-41.77889],[-73.88528,-41.815559]]],[[[-73.015839,-41.86445],[-73.089737,-41.84417],[-73.077515,-41.740005],[-73.001114,-41.83139],[-73.015839,-41.86445]]],[[[-80.737793,-33.779449],[-80.77473,-33.74195],[-80.735291,-33.68944],[-80.70167,-33.748062],[-80.737793,-33.779449]]],[[[-78.772507,-33.62361],[-78.76334,-33.647507],[-78.8764,-33.627785],[-78.991669,-33.66806],[-78.88834,-33.58056],[-78.772507,-33.62361]]],[[[-109.241386,-27.13306],[-109.42778,-27.201946],[-109.44917,-27.193058],[-109.39084,-27.066669],[-109.22139,-27.095837],[-109.241386,-27.13306]]],[[[-105.45639,-26.460556],[-105.45946,-26.46472],[-105.47417,-26.45306],[-105.462509,-26.45361],[-105.45639,-26.460556]]],[[[-79.882507,-26.34695],[-79.90251,-26.34944],[-79.90695,-26.34639],[-79.86945,-26.340836],[-79.882507,-26.34695]]],[[[-80.07695,-26.26167],[-80.08223,-26.2625],[-80.099731,-26.26139],[-80.08057,-26.25139],[-80.07695,-26.26167]]],[[[-69.48361,-17.635559],[-69.33057,-17.790279],[-69.298889,-17.97306],[-69.07167,-18.03889],[-69.14973,-18.15556],[-69.087509,-18.233334],[-69.075562,-18.389446],[-69.02417,-18.47722],[-69.02444,-18.658611],[-68.93278,-18.88278],[-68.96584,-18.95306],[-68.90779,-19.05528],[-68.4375,-19.43028],[-68.699722,-19.730003],[-68.566956,-19.83389],[-68.523346,-19.91639],[-68.574448,-20.057503],[-68.784729,-20.09778],[-68.70361,-20.338058],[-68.75307,-20.366112],[-68.756958,-20.406948],[-68.69723,-20.50028],[-68.46667,-20.628891],[-68.56529,-20.73],[-68.55806,-20.89639],[-68.5,-20.93944],[-68.42111,-20.93917],[-68.188614,-21.29695],[-68.188614,-21.60639],[-68.10278,-21.753056],[-68.08446,-21.966946],[-67.94528,-22.10222],[-67.93278,-22.30028],[-67.84807,-22.549168],[-67.876404,-22.828056],[-67.79333,-22.87806],[-67.57918,-22.901112],[-67.183624,-22.821667],[-67.00084,-23.002781],[-67.150848,-23.391945],[-67.335846,-24.02167],[-68.25223,-24.39639],[-68.307785,-24.4925],[-68.38917,-24.501667],[-68.565,-24.77444],[-68.55139,-24.865559],[-68.497513,-24.896114],[-68.35196,-25.117226],[-68.502228,-25.177223],[-68.5975,-25.44334],[-68.397781,-26.15611],[-68.563614,-26.30056],[-68.58362,-26.50528],[-68.287231,-26.91528],[-68.32333,-27.02333],[-68.40611,-27.06472],[-68.640289,-27.14389],[-68.71085,-27.10556],[-68.810837,-27.120556],[-68.877228,-27.230835],[-68.86584,-27.28806],[-68.90472,-27.36667],[-69.08223,-27.64],[-69.185837,-27.96584],[-69.300293,-27.99945],[-69.35529,-28.13306],[-69.65538,-28.400932],[-69.666397,-28.57278],[-69.74501,-28.66056],[-69.72307,-28.803337],[-69.7939,-29.098614],[-69.90807,-29.141392],[-70.031403,-29.30639],[-69.960556,-29.55028],[-69.968338,-29.66111],[-69.91389,-29.72306],[-69.92494,-30],[-69.833618,-30.13333],[-69.83168,-30.19056],[-69.939178,-30.37361],[-70.133896,-30.439724],[-70.2525,-30.63778],[-70.31473,-30.818058],[-70.331116,-30.94861],[-70.29501,-31.02972],[-70.36195,-31.093056],[-70.430283,-31.11361],[-70.46306,-31.09139],[-70.533066,-31.188057],[-70.58694,-31.56667],[-70.430283,-31.86861],[-70.29668,-31.88417],[-70.234451,-31.9425],[-70.262512,-32.04362],[-70.34889,-32.08694],[-70.321121,-32.27389],[-70.244324,-32.309837],[-70.15417,-32.475838],[-70.17168,-32.61945],[-70.14418,-32.76167],[-69.987503,-32.878891],[-70.09964,-33.05184],[-70.09889,-33.172501],[-69.995834,-33.30195],[-69.91917,-33.23806],[-69.80778,-33.27389],[-69.774445,-33.38111],[-69.868896,-33.55195],[-69.90611,-33.787781],[-69.8125,-34.23556],[-69.88806,-34.278336],[-70.0494539999999,-34.28751],[-70.0475,-34.40917],[-70.23251,-34.66195],[-70.359756,-34.99691],[-70.368057,-35.15889],[-70.53639,-35.20639],[-70.5675,-35.24778],[-70.550293,-35.29667],[-70.421951,-35.36445],[-70.396118,-35.51501],[-70.420288,-35.643616],[-70.337784,-35.808334],[-70.410568,-35.886948],[-70.396118,-36.075562],[-70.42432,-36.13604],[-70.46112,-36.163063],[-70.58862,-36.16473],[-70.70473,-36.27056],[-70.708069,-36.417778],[-71.03778,-36.486115],[-71.185287,-36.84222],[-71.11279,-37.11445],[-71.19751,-37.308617],[-71.107788,-37.470001],[-71.11557,-37.57944],[-71.17168,-37.61806],[-71.18028,-37.69806],[-70.99751,-38.07111],[-71.013062,-38.23056],[-70.97084,-38.41806],[-70.82417,-38.56806],[-70.860001,-38.68806],[-70.92584,-38.7425],[-71.05917,-38.750282],[-71.4014,-38.92028],[-71.42279,-39.03695],[-71.388062,-39.246391],[-71.493622,-39.6025],[-71.61528,-39.619728],[-71.66695,-39.565],[-71.69556,-39.58445],[-71.704453,-39.73278],[-71.633347,-39.950562],[-71.66695,-40.047501],[-71.791397,-40.115005],[-71.81862,-40.20195],[-71.72862,-40.30112],[-71.702515,-40.27639],[-71.66972,-40.29472],[-71.66389,-40.336113],[-71.719727,-40.42778],[-71.791397,-40.41528],[-71.8439,-40.61639],[-71.95056,-40.73278],[-71.83694,-40.95945],[-71.899445,-41.35861],[-71.850006,-41.54945],[-71.91833,-41.64473],[-71.785278,-41.866112],[-71.72612,-42.096672],[-71.913895,-42.17806],[-71.9639,-42.1275],[-72.012222,-42.13111],[-72.131958,-42.28889],[-72.0430599999999,-42.366394],[-72.139175,-42.5875],[-72.10196,-42.85473],[-72.13695,-43.00917],[-72.05278,-43.104729],[-71.83639,-43.13195],[-71.73279,-43.18806],[-71.74335,-43.302223],[-71.89418,-43.323059],[-71.94667,-43.44723],[-71.70279,-43.59584],[-71.69862,-43.687225],[-71.8114,-43.749168],[-71.647232,-43.91862],[-71.82362,-44.156113],[-71.7939,-44.32556],[-71.85501,-44.37167],[-71.81612,-44.40611],[-71.410278,-44.39973],[-71.203613,-44.42695],[-71.108063,-44.53973],[-71.13473,-44.58389],[-71.19723,-44.59695],[-71.23334,-44.662781],[-71.22362,-44.745003],[-71.28223,-44.80028],[-71.50084,-44.74306],[-71.65362,-44.78278],[-71.777786,-44.755],[-71.84946,-44.79306],[-72.078613,-44.769447],[-72.06279,-44.90556],[-71.57362,-44.97945],[-71.297791,-45.293335],[-71.46751,-45.477501],[-71.752502,-45.558891],[-71.78056,-45.64889],[-71.79251,-45.73251],[-71.7589,-45.84417],[-71.637512,-45.89223],[-71.60167,-45.97472],[-71.760284,-46.11417],[-71.906403,-46.15389],[-71.747513,-46.242783],[-71.725006,-46.430557],[-71.670288,-46.535],[-71.66945,-46.679169],[-71.808899,-46.784172],[-71.940292,-46.815559],[-71.97639,-47.03445],[-71.86056,-47.14194],[-71.868622,-47.221672],[-72.015015,-47.274445],[-72.16167,-47.41278],[-72.29306,-47.420006],[-72.360291,-47.470001],[-72.305557,-47.507225],[-72.33168,-47.60167],[-72.53639,-47.921394],[-72.48611,-47.983063],[-72.32278,-48.075562],[-72.287231,-48.341949],[-72.601395,-48.479729],[-72.560287,-48.657501],[-72.56418,-48.80445],[-72.75528,-48.92806],[-72.98807,-48.981674],[-73.175568,-49.215279],[-73.16769,-49.25264],[-73.082779,-49.26917],[-73.136124,-49.304169],[-73.464737,-49.311394],[-73.58362,-49.538063],[-73.51501,-49.60334],[-73.444458,-49.782501],[-73.564453,-49.924728],[-73.46722,-50.00667],[-73.53223,-50.140556],[-73.34639,-50.23806],[-73.280014,-50.322784],[-73.2289,-50.59806],[-73.16612,-50.753334],[-73.052231,-50.76167],[-72.90611,-50.667503],[-72.75835,-50.618896],[-72.62973,-50.67306],[-72.501114,-50.60334],[-72.29417,-50.649727],[-72.341675,-50.743896],[-72.24223,-50.85111],[-72.266953,-51.017227],[-72.341125,-51.03667],[-72.397781,-51.114174],[-72.37167,-51.16473],[-72.24528,-51.24445],[-72.30917,-51.30222],[-72.339447,-51.47584],[-72.400558,-51.51362],[-72.29085,-51.695557],[-72.135559,-51.740005],[-71.952789,-51.86056],[-71.910568,-51.99583],[-69.998337,-51.996391],[-69.46139,-52.143616],[-69.233612,-52.14333],[-68.82861,-52.27972],[-68.43417,-52.32917],[-68.441757,-52.377777],[-68.49918,-52.326118],[-68.933624,-52.29139],[-69.147781,-52.208061],[-69.26112,-52.20639],[-69.47,-52.26889],[-69.49501,-52.391113],[-69.670563,-52.52806],[-69.81557,-52.496391],[-70.504456,-52.706673],[-70.81168,-52.732506],[-70.84361,-52.878616],[-70.80972,-52.92278],[-70.8114,-52.99],[-70.94945,-53.19278],[-70.99306,-53.387222],[-70.9364,-53.595001],[-70.97362,-53.755562],[-71.05307,-53.82667],[-71.284729,-53.88639],[-71.45668,-53.83445],[-71.69057,-53.812782],[-71.85362,-53.7425],[-72.11168,-53.68917],[-72.28834,-53.58083],[-72.4539,-53.40139],[-72.42279,-53.319168],[-72.285278,-53.24334],[-72.122223,-53.25],[-72.079727,-53.31222],[-72.08723,-53.381393],[-72.238892,-53.436394],[-72.10529,-53.429726],[-72.00528,-53.385559],[-72.00667,-53.23056],[-71.864456,-53.221672],[-71.78723,-53.4425],[-71.999451,-53.527504],[-72.00723,-53.563057],[-71.80307,-53.5164],[-71.752792,-53.455],[-71.775284,-53.33889],[-71.743057,-53.21722],[-71.335846,-53.10612],[-71.117233,-52.874725],[-71.17056,-52.80806],[-71.349731,-52.79111],[-71.604446,-52.875557],[-71.90417,-53.00084],[-72.02362,-53.12528],[-72.11612,-53.130562],[-72.217514,-53.04806],[-72.30862,-53.02889],[-72.55278,-53.074722],[-72.366959,-53.074722],[-72.188614,-53.183891],[-72.34584,-53.227501],[-72.532791,-53.1975],[-72.53612,-53.21889],[-72.41446,-53.25695],[-72.52724,-53.370003],[-72.65417,-53.32389],[-72.5614,-53.42306],[-72.488068,-53.408615],[-72.39751,-53.497223],[-72.40028,-53.54028],[-72.50696,-53.549728],[-73.147781,-53.27195],[-73.301392,-53.158615],[-72.94112,-53.16445],[-72.75389,-53.297501],[-72.70612,-53.29306],[-72.685287,-53.24834],[-72.79306,-53.178337],[-72.756958,-53.141113],[-72.65306,-53.14695],[-72.77196,-53.12056],[-72.847778,-53.15],[-72.940002,-53.101669],[-72.87083,-53.023613],[-72.950562,-52.933617],[-72.95834,-52.85751],[-72.91585,-52.82472],[-72.719452,-52.746117],[-72.42168,-52.812782],[-72.159729,-52.63972],[-72.00696,-52.63251],[-71.84695,-52.688614],[-71.625565,-52.678612],[-71.475281,-52.63334],[-71.53445,-52.560562],[-72.303894,-52.51973],[-72.422501,-52.656952],[-72.550003,-52.588341],[-72.4814,-52.537781],[-72.40001,-52.531448],[-72.39639,-52.50362],[-72.547501,-52.53945],[-72.79918,-52.53973],[-72.89889,-52.62556],[-72.809723,-52.608894],[-72.67529,-52.65889],[-72.79918,-52.75751],[-72.945282,-52.801674],[-73.005844,-52.85417],[-72.94751,-52.98],[-72.98083,-53.066116],[-73.1989,-53.10722],[-73.45113,-53.006668],[-73.235001,-52.889725],[-73.35722,-52.879173],[-73.56279,-52.79362],[-73.23611,-52.791672],[-73.256393,-52.71861],[-73.10196,-52.50695],[-72.88501,-52.515556],[-73.01306,-52.481674],[-73.14973,-52.489723],[-73.176392,-52.506668],[-73.16612,-52.574722],[-73.26918,-52.67306],[-73.33029,-52.65889],[-73.33778,-52.59695],[-73.365005,-52.586945],[-73.55667,-52.68611],[-73.61168,-52.745834],[-73.690002,-52.725006],[-73.68224,-52.59639],[-73.547791,-52.53889],[-73.59807,-52.53306],[-73.667236,-52.421669],[-73.658615,-52.378616],[-73.5939,-52.386948],[-73.56529,-52.32556],[-73.58362,-52.235001],[-73.725281,-52.09528],[-73.731125,-52.034172],[-73.69084,-52.02556],[-73.54889,-52.189728],[-73.464737,-52.1725],[-73.32751,-52.22362],[-73.24335,-52.20778],[-73.16501,-52.111671],[-72.988617,-52.06861],[-72.98668,-52.1875],[-72.86195,-52.26417],[-72.77006,-52.111061],[-72.784729,-52.06222],[-72.87807,-52.205559],[-72.941681,-52.176117],[-72.943344,-52.08778],[-72.850571,-51.95195],[-72.79668,-51.93944],[-72.69833,-51.98334],[-72.69746,-52.05356],[-72.60612,-52.10778],[-72.5314,-52.20361],[-72.57056,-52.315834],[-72.935287,-52.445282],[-72.899445,-52.458618],[-72.63501,-52.39556],[-72.49084,-52.31889],[-72.47168,-52.1925],[-72.65112,-52.05139],[-72.66945,-51.966667],[-72.46584,-51.93195],[-72.468903,-51.78917],[-72.50862,-51.72611],[-72.7189,-51.58083],[-72.916397,-51.54556],[-73.116394,-51.44334],[-73.243622,-51.46223],[-73.256119,-51.503616],[-73.057785,-51.507225],[-72.70612,-51.696114],[-72.56834,-51.72195],[-72.56084,-51.78167],[-72.633057,-51.834724],[-72.72473,-51.83667],[-72.82278,-51.769447],[-73.281403,-51.61028],[-73.22389,-51.713058],[-73.08168,-51.717506],[-72.994171,-51.78667],[-73.065,-51.85139],[-73.20084,-51.888618],[-73.07412,-51.86839],[-72.97667,-51.819168],[-72.92418,-51.863335],[-73.13583,-51.93611],[-73.18445,-52.09445],[-73.23695,-52.09],[-73.27528,-52.03306],[-73.320847,-51.723335],[-73.38667,-51.65556],[-73.33667,-51.75556],[-73.28361,-52.155006],[-73.33,-52.16806],[-73.545288,-52.056396],[-73.654449,-51.83667],[-73.59529,-51.81667],[-73.436676,-52.02195],[-73.400558,-52.020836],[-73.593338,-51.75389],[-73.46167,-51.687225],[-73.61584,-51.71973],[-73.70473,-51.79167],[-73.791397,-51.64389],[-73.905838,-51.622505],[-73.92889,-51.434723],[-73.89418,-51.370003],[-73.71223,-51.46722],[-73.618057,-51.6339],[-73.59807,-51.61834],[-73.78334,-51.233063],[-73.735565,-51.203613],[-73.68112,-51.274445],[-73.71167,-51.159729],[-73.7614,-51.14445],[-73.758057,-51.170837],[-73.895,-51.24278],[-74.08694,-51.207779],[-74.138062,-51.177505],[-74.152237,-51.07389],[-74.23834,-51.03278],[-74.25279,-50.940834],[-74.133896,-50.870834],[-73.916672,-50.86861],[-73.851395,-50.91667],[-73.780014,-50.79084],[-73.78361,-50.6925],[-73.747787,-50.659172],[-73.62001,-50.647224],[-73.528625,-50.714447],[-73.503891,-50.66222],[-73.655563,-50.616394],[-73.72473,-50.55778],[-73.71028,-50.52528],[-73.605011,-50.490837],[-73.566391,-50.401672],[-73.77139,-50.537506],[-73.82751,-50.767784],[-73.93973,-50.83362],[-74.04834,-50.82751],[-74.11835,-50.77556],[-74.29306,-50.48222],[-74.21779,-50.463341],[-74.02972,-50.53167],[-73.88473,-50.538895],[-73.9989,-50.511116],[-74.1239,-50.435005],[-74.298889,-50.427223],[-74.693619,-50.203339],[-74.68973,-50.16695],[-74.579178,-50.100006],[-74.355011,-50.08723],[-74.20361,-50.217781],[-73.86584,-50.29389],[-74.18278,-50.199448],[-74.372513,-49.99139],[-74.34167,-49.9275],[-74.268341,-49.93333],[-74.124451,-50.01222],[-73.88501,-50.06945],[-73.90306,-50.015282],[-74.303619,-49.8914],[-74.343903,-49.79445],[-74.076401,-49.74778],[-74.061951,-49.71806],[-74.29529,-49.743896],[-74.325287,-49.627228],[-74.242233,-49.57028],[-74.11168,-49.541946],[-73.95668,-49.55611],[-73.88945,-49.662506],[-73.75667,-49.72389],[-73.72362,-49.789169],[-73.712509,-49.757225],[-73.76584,-49.66611],[-73.85834,-49.653061],[-73.88028,-49.52417],[-74.11168,-49.48028],[-74.12195,-49.41056],[-74.06612,-49.260559],[-73.96529,-49.3289],[-73.84251,-49.351112],[-73.94057,-49.316948],[-73.99806,-49.258614],[-74.0289,-49.093056],[-73.95862,-49.028336],[-73.84306,-49.059723],[-73.83417,-49.029167],[-74.04333,-49.02195],[-74.03946,-49.152779],[-74.150009,-49.319168],[-74.210281,-49.529167],[-74.26001,-49.52723],[-74.3739,-49.4275],[-74.395844,-48.96334],[-74.449722,-48.81222],[-74.372223,-48.72445],[-74.30697,-48.75268],[-74.212509,-48.721672],[-74.06084,-48.74139],[-74.170837,-48.706673],[-74.311951,-48.729172],[-74.400284,-48.61445],[-74.199722,-48.47528],[-74.04668,-48.54778],[-74.021118,-48.41361],[-74.153343,-48.3599],[-74.23418,-48.35639],[-74.11917,-48.31972],[-74.26445,-48.28278],[-74.489182,-48.13111],[-74.641113,-48.080284],[-74.65445,-48.02389],[-74.522781,-47.95639],[-74.41585,-47.98667],[-74.332779,-48.041672],[-74.27528,-48.19445],[-74.210556,-48.23473],[-74.17557,-48.220001],[-74.324448,-48],[-74.085007,-47.99445],[-73.958069,-48.04834],[-73.774734,-48.02889],[-73.59584,-48.13251],[-73.55334,-48.245834],[-73.498337,-48.176674],[-73.34917,-48.1975],[-73.283066,-48.151672],[-73.27417,-48.08723],[-73.291672,-48.0675],[-73.29611,-48.128334],[-73.37001,-48.16833],[-73.48418,-48.124725],[-73.64418,-47.987785],[-73.65417,-47.90362],[-73.5739,-47.90611],[-73.495834,-47.98334],[-73.22084,-48.001114],[-73.48807,-47.96001],[-73.710007,-47.784447],[-73.74028,-47.70695],[-73.655838,-47.63056],[-73.71918,-47.528336],[-73.77251,-47.592781],[-73.72751,-47.62945],[-73.767227,-47.78223],[-73.93445,-47.846947],[-74.031403,-47.83223],[-74.06001,-47.78695],[-74.381393,-47.746391],[-74.61418,-47.77251],[-74.74167,-47.715836],[-74.55362,-47.548889],[-74.371674,-47.592781],[-74.317604,-47.70353],[-74.2289,-47.753616],[-74.160568,-47.749168],[-74.28334,-47.719452],[-74.297791,-47.67778],[-74.255,-47.629173],[-74.04112,-47.618057],[-74.05833,-47.538895],[-74.1714,-47.59222],[-74.311951,-47.60084],[-74.52917,-47.43778],[-74.316956,-47.218338],[-74.17445,-47.210281],[-74.16139,-47.279449],[-74.10529,-47.347504],[-74.141113,-47.273613],[-74.12807,-47.20583],[-73.93445,-47.03612],[-74.0289,-46.97695],[-74.13583,-46.988335],[-74.2489,-46.86945],[-74.265015,-46.78556],[-74.618622,-46.78556],[-74.62195,-46.84222],[-74.432785,-46.85945],[-74.4989,-46.903336],[-75.013901,-46.750282],[-75.08,-46.63528],[-74.93945,-46.510559],[-74.94223,-46.440002],[-75.12001,-46.59584],[-75.34639,-46.658615],[-75.505,-46.66584],[-75.598068,-46.703056],[-75.65472,-46.76501],[-75.628067,-46.782784],[-75.47389,-46.70251],[-75.42001,-46.71389],[-75.3414,-46.878334],[-75.413071,-46.933891],[-75.57194,-46.939728],[-75.712234,-46.79139],[-75.717514,-46.72528],[-75.707779,-46.63945],[-75.642227,-46.57001],[-75.51918,-46.555],[-75.394455,-46.479446],[-75.39723,-46.43445],[-75.275284,-46.36778],[-75.218903,-46.40889],[-75.20113,-46.30278],[-75.094452,-46.217781],[-74.95639,-46.215561],[-74.82167,-46.112785],[-74.67807,-45.828056],[-74.36111,-45.791115],[-74.3156659999999,-45.835468],[-74.14084,-45.80584],[-74.06001,-45.93195],[-74.06723,-45.99306],[-73.97862,-46.03583],[-73.97446,-46.094727],[-74.08362,-46.18611],[-74.311676,-46.249168],[-74.372787,-46.241669],[-74.481125,-46.16473],[-74.49445,-46.190285],[-74.34084,-46.2664],[-74.049728,-46.19556],[-74.00473,-46.290001],[-73.853897,-46.34723],[-74.02,-46.21584],[-73.964737,-46.14362],[-73.88278,-46.141113],[-73.763901,-46.237228],[-73.76807,-46.30278],[-73.809723,-46.38889],[-73.99501,-46.561394],[-73.913071,-46.60306],[-73.841125,-46.58889],[-73.74306,-46.41862],[-73.571945,-46.27361],[-73.42557,-46.07445],[-73.443069,-46.06334],[-73.62723,-46.28389],[-73.69084,-46.31917],[-73.619171,-46.090279],[-73.663345,-45.973335],[-73.547501,-45.81417],[-73.39639,-45.69694],[-73.18224,-45.667503],[-73.40334,-45.64834],[-73.587234,-45.77972],[-73.51556,-45.455],[-73.2189,-45.300003],[-73.17084,-45.36028],[-73.0114,-45.45],[-72.86584,-45.472504],[-72.82722,-45.422501],[-72.84529,-45.39473],[-72.943344,-45.41389],[-73.04806,-45.38056],[-73.255,-45.245285],[-73.34001,-45.29472],[-73.446945,-45.28528],[-73.44667,-45.197784],[-73.347504,-45.19112],[-73.29945,-45.14167],[-73.4014,-45.03945],[-73.391678,-44.98056],[-73.1425,-44.94445],[-72.9391779999999,-44.863892],[-72.766113,-44.75333],[-72.613892,-44.472778],[-72.608063,-44.37167],[-72.741669,-44.456116],[-72.926682,-44.346947],[-72.93224,-44.31028],[-73.19196,-44.24834],[-73.28946,-44.143616],[-73.14085,-44.031849],[-73.0175,-43.80917],[-72.84584,-43.77667],[-72.858612,-43.70583],[-72.88196,-43.75306],[-73.0421,-43.733837],[-73.037781,-43.58389],[-73.116394,-43.43973],[-73.08084,-43.30945],[-72.905838,-43.233894],[-72.93417,-43.119171],[-72.86528,-43.02084],[-72.827515,-43.008057],[-72.74528,-43.04834],[-72.74057,-42.91473],[-72.8264,-42.855003],[-72.860001,-42.76694],[-72.86084,-42.574448],[-72.80806,-42.493896],[-72.681122,-42.50194],[-72.535004,-42.55917],[-72.68584,-42.477501],[-72.847504,-42.280006],[-72.748337,-42.218056],[-72.59167,-42.18611],[-72.54472,-42.23278],[-72.45306,-42.45583],[-72.4214,-42.453056],[-72.49057,-42.12278],[-72.462784,-41.971115],[-72.526947,-41.964172],[-72.622787,-42.022224],[-72.7489,-42.00806],[-72.82861,-41.97639],[-72.859451,-41.906952],[-72.66223,-41.73112],[-72.47945,-41.71751],[-72.350571,-41.6525],[-72.310013,-41.43584],[-72.34639,-41.44584],[-72.39917,-41.653061],[-72.571396,-41.707779],[-72.670288,-41.683334],[-72.80945,-41.51334],[-72.94667,-41.483337],[-73.05389,-41.5164],[-73.10779,-41.586945],[-73.05806,-41.69694],[-73.20361,-41.792503],[-73.39889,-41.77417],[-73.51056,-41.805283],[-73.75029,-41.754723],[-73.68278,-41.624725],[-73.564178,-41.61362],[-73.49196,-41.520836],[-73.57167,-41.597504],[-73.700287,-41.597229],[-73.868896,-41.482506],[-73.85612,-41.35084],[-73.95029,-41.183617],[-73.99501,-40.97],[-73.83168,-40.6225],[-73.74751,-40.52473],[-73.7814,-40.417778],[-73.731125,-40.18],[-73.658066,-40.11028],[-73.714447,-39.97861],[-73.49112,-39.87334],[-73.404175,-39.885],[-73.37807,-39.85473],[-73.37973,-39.736389],[-73.222504,-39.41473],[-73.24597,-39.38583],[-73.21779,-39.34806],[-73.22723,-39.240837],[-73.518616,-38.53722],[-73.54112,-38.388893],[-73.505,-38.32131],[-73.52223,-38.26445],[-73.47084,-38.200279],[-73.4539,-38.055557],[-73.538071,-37.873337],[-73.66945,-37.726112],[-73.687225,-37.601112],[-73.5939,-37.47111],[-73.67946,-37.335556],[-73.63583,-37.190285],[-73.591675,-37.145279],[-73.436951,-37.23528],[-73.29333,-37.21806],[-73.19862,-37.15472],[-73.162231,-37.051117],[-73.129456,-36.682503],[-73.03973,-36.72056],[-72.982788,-36.70195],[-72.83639,-36.32528],[-72.798065,-35.97695],[-72.5889,-35.796669],[-72.584732,-35.731674],[-72.651947,-35.5825],[-72.50751,-35.47695],[-72.39584,-35.23806],[-72.21278,-35.091949],[-72.186951,-34.890282],[-72.05833,-34.65806],[-72.05473,-34.42445],[-71.986389,-34.364174],[-72.0164,-34.14278],[-71.87,-33.933903],[-71.809723,-33.777504],[-71.699448,-33.740562],[-71.65501,-33.662506],[-71.639725,-33.554726],[-71.756958,-33.09556],[-71.68722,-33.087784],[-71.568619,-33.01056],[-71.44667,-32.665],[-71.441681,-32.491112],[-71.40529,-32.39333],[-71.53836,-32.186958],[-71.50973,-31.7775],[-71.66779,-31.157501],[-71.64862,-30.98445],[-71.70334,-30.76167],[-71.69585,-30.50667],[-71.64557,-30.273613],[-71.543335,-30.291668],[-71.40889,-30.18972],[-71.287796,-29.896946],[-71.341217,-29.740002],[-71.30751,-29.426392],[-71.352509,-29.30722],[-71.482788,-29.218334],[-71.49474,-28.98028],[-71.52167,-28.97],[-71.49918,-28.864723],[-71.29834,-28.67694],[-71.28307,-28.557781],[-71.163345,-28.35222],[-71.14056,-27.96167],[-71.080841,-27.78195],[-71.0114,-27.676392],[-70.91084,-27.62195],[-70.89168,-27.484726],[-70.966675,-27.17917],[-70.934723,-27.11139],[-70.863892,-27.10083],[-70.78612,-26.99361],[-70.82529,-26.86889],[-70.700287,-26.590557],[-70.638062,-26.301392],[-70.668335,-26.16639],[-70.6286159999999,-25.99806],[-70.733063,-25.80556],[-70.63335,-25.56695],[-70.44917,-25.364723],[-70.43167,-25.207779],[-70.502502,-25.08861],[-70.49695,-24.95583],[-70.58389,-24.715],[-70.55278,-24.32028],[-70.50307,-24.16556],[-70.511948,-23.852222],[-70.5,-23.78583],[-70.406403,-23.654167],[-70.39111,-23.56195],[-70.4164,-23.493057],[-70.4839,-23.450279],[-70.54668,-23.52111],[-70.62251,-23.49278],[-70.574722,-23.066948],[-70.50917,-23.010559],[-70.481125,-23.0825],[-70.38863,-23.06084],[-70.28557,-22.89],[-70.31084,-22.79695],[-70.15417,-21.666946],[-70.090012,-21.58],[-70.05334,-21.425652],[-70.095291,-21.33667],[-70.065567,-21.290836],[-70.17001,-21.01083],[-70.13917,-20.875557],[-70.21223,-20.79972],[-70.13306,-20.27333],[-70.16528,-20.20389],[-70.124176,-19.977222],[-70.20529,-19.49028],[-70.28418,-19.29195],[-70.27167,-19.14139],[-70.343613,-18.82333],[-70.34917,-18.625835],[-70.31001,-18.43445],[-70.405487,-18.348545],[-70.35583,-18.319725],[-70.141113,-18.32333],[-69.96584,-18.25611],[-69.8414,-18.12861],[-69.77,-17.96889],[-69.85084,-17.74861],[-69.81473,-17.65222],[-69.683899,-17.663612],[-69.499725,-17.50528],[-69.48361,-17.635559]],[[-74.06946,-46.00611],[-74.10501,-46.0875],[-74.16446,-46.13667],[-74.07223,-46.097778],[-74.06946,-46.00611]]]]}},{"type":"Feature","properties":{"FIPS":"CJ","ISO2":"KY","ISO3":"CYM","UN":136,"NAME":"Cayman Islands","AREA":26,"POP2005":45591,"REGION":19,"SUBREGION":29,"LON":-81.198,"LAT":19.314},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.09723,19.30888700000014],[-81.266953,19.26472],[-81.390015,19.26472],[-81.40112,19.28833],[-81.395,19.326111],[-81.316956,19.306389],[-81.254456,19.35389],[-81.108337,19.3525],[-81.09723,19.30888700000014]]],[[[-80.0975,19.65416],[-80.07584,19.6975],[-79.966675,19.707222],[-79.96918,19.699718000000132],[-80.0975,19.65416]]],[[[-79.86639,19.686943],[-79.89334,19.69333],[-79.769455,19.761665],[-79.73279,19.748608],[-79.86639,19.686943]]]]}},{"type":"Feature","properties":{"FIPS":"CM","ISO2":"CM","ISO3":"CMR","UN":120,"NAME":"Cameroon","AREA":46540,"POP2005":17795149,"REGION":2,"SUBREGION":17,"LON":12.277,"LAT":5.133},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.687222,3.574722],[9.62611,3.551111000000105],[9.6425,3.578611000000137],[9.687222,3.574722]]],[[[14.57722,12.73860900000011],[14.711666,12.71389],[14.825853,12.63035],[14.902348000000131,12.375975],[14.891754,12.153397],[14.953609,12.096109],[15.042597,12.078888],[15.081944,11.754721],[15.061666,11.687222],[15.11083,11.49861],[15.05139,11.396666],[15.017221,11.19916],[15.078054,10.895555],[15.061666,10.789999],[15.190277,10.502777],[15.37305,10.24861],[15.499722000000133,10.100277],[15.68185000000011,9.98965],[15.422222,9.926943],[15.159443,9.989166],[15.043888,9.947222],[14.920277,9.971666000000141],[14.776388,9.92111],[14.45833,9.998888],[14.194769000000122,9.98175],[14.12333,9.831665],[13.958055,9.65111],[14.32860900000014,9.258333000000105],[14.348055,9.19694],[14.56611,9.001665],[14.824720000000127,8.81111],[14.883055,8.805555],[15.079166,8.638332],[15.2125,8.468887],[15.47527700000012,7.814444],[15.504862,7.77264],[15.579977,7.76041],[15.57278,7.629999],[15.445555,7.394722],[15.227499000000137,7.231667],[15.059166000000118,6.77861],[14.958611,6.733611],[14.796944,6.389999],[14.804998,6.346666],[14.74028,6.2625],[14.449165,6.096110000000123],[14.419167,6.035277],[14.493055,5.914444],[14.592777000000126,5.930555],[14.61583,5.906666],[14.622221,5.518055],[14.53167,5.293611],[14.670277,5.187778],[14.734999000000128,4.618333],[14.80361,4.537499],[15.01138900000012,4.4175],[15.090277000000128,4.288055],[15.101944,4.145555000000115],[15.146387,4.069722000000127],[15.043888,4.029166],[15.076944,3.92055],[15.260277,3.67389],[15.809444,3.10222],[15.939999,3.100555],[16.10305,2.898333],[16.11444,2.828888],[16.069443,2.785],[16.09471900000011,2.497777],[16.207222,2.220833],[16.16389,2.183333],[16.104721,2.199722],[16.083885,2.15889],[16.09417,1.9525000000001],[16.161663,1.721944],[16.07222000000013,1.654166],[15.978333,1.77111],[15.70417,1.930833],[15.486387,1.97639],[15.29639,1.975000000000136],[15.211111,2.036111],[15.146387,2.037777],[15.090555,1.977778000000114],[14.88722,2.016666],[14.856667,2.082778],[14.759165,2.0725],[14.714167,2.124166],[14.564999,2.169444],[14.463055,2.143055],[13.293888,2.163611],[13.29583200000013,2.22555],[13.259722,2.26444],[13.161943,2.283889],[12.755,2.232778],[12.335657000000138,2.317898],[12.22028,2.2825],[11.76111,2.28083],[11.693609,2.315],[11.57972100000012,2.31528],[11.367777,2.303611],[11.339764,2.168611],[10.02611,2.16806],[9.93528,2.19139],[9.835278,2.25444],[9.811764,2.343698],[9.895555,2.95305],[9.966665,3.075],[9.909443,3.240833],[9.927935000000105,3.268324],[9.66694,3.523611],[9.745771,3.617586000000131],[9.627114,3.597228],[9.63666,3.646667],[9.543055,3.808888000000139],[9.640554,3.85722],[9.721666,3.8425],[9.7225,3.865278],[9.52833,4.03],[9.488888,4.115833000000123],[9.449585,4.07266],[9.530554000000109,3.98333],[9.431944,3.899167],[9.35139,3.908611],[8.975832,4.09666600000014],[8.987778000000105,4.214167],[8.922499,4.301944000000105],[8.898054,4.44111],[8.933611,4.546944],[8.841665,4.64083],[8.871387,4.53889],[8.73222,4.57028],[8.666388,4.681389],[8.71222,4.497777],[8.533888000000104,4.503055],[8.502222,4.532777000000124],[8.582222,4.80305],[8.638332,4.831666],[8.62194,4.894722],[8.82472,5.188611],[8.86,5.497499],[8.921665,5.595277],[8.850832,5.7225],[8.865276,5.841944],[9.223331,6.150555],[9.363333,6.325833000000102],[9.434999,6.327777],[9.468529,6.4043],[9.637777000000142,6.523333],[9.708845,6.52125100000012],[9.795555,6.801666],[9.874722,6.77583],[10.164999000000135,7.021111],[10.205,6.900555000000111],[10.26944,6.87472],[10.51333,6.878055],[10.559999000000117,7.02167],[10.615,7.06861],[10.837221,6.965],[10.88278,6.827777],[10.94333300000011,6.778055000000109],[11.01916,6.77861],[11.07833,6.7075],[11.073332,6.59111],[11.129166,6.435833],[11.376944,6.45167],[11.437222,6.590833],[11.5183320000001,6.6075],[11.580832,6.718611],[11.589167,6.78],[11.554722,6.82111],[11.5875,6.892221000000119],[11.864166,7.084722],[11.8825,7.132222],[11.74972,7.270555000000115],[12.04361,7.577777000000141],[12.033054,7.715],[12.209444,8.003332000000114],[12.202499000000103,8.111944000000108],[12.25555,8.197777],[12.253887,8.408054],[12.341110000000128,8.421665000000132],[12.415833000000134,8.491943],[12.395832,8.594999],[12.674721,8.652777000000128],[12.79416700000013,8.7658330000001],[12.897778,9.34805],[13.02389,9.496111],[13.186666000000116,9.526667],[13.239166,9.578888],[13.259722,9.751665],[13.228054,9.902777],[13.254999,10.07694],[13.398054,10.111111],[13.462221000000111,10.17194400000011],[13.560833000000116,10.64361],[13.768055,10.931665000000123],[13.80722,11.055832],[14.00361,11.283333],[14.18861,11.244165],[14.41083,11.403889000000106],[14.61055,11.499166],[14.6425,11.56555],[14.641109,11.646944],[14.588610000000129,11.692221000000131],[14.588610000000129,11.754999],[14.63083300000011,11.891388],[14.645277,12.188332000000116],[14.554722,12.243332],[14.490833,12.335833],[14.235832,12.353888],[14.174444000000108,12.39667],[14.199165,12.501389],[14.07472,13.0816650000001],[14.443054000000132,13.084721],[14.52555500000011,12.974998],[14.544722,12.776943],[14.57722,12.73860900000011]]]]}},{"type":"Feature","properties":{"FIPS":"CD","ISO2":"TD","ISO3":"TCD","UN":148,"NAME":"Chad","AREA":125920,"POP2005":10145609,"REGION":2,"SUBREGION":17,"LON":18.665,"LAT":15.361},"geometry":{"type":"Polygon","coordinates":[[[14.500875,13.001314],[14.443054,13.084721],[14.07472,13.081665],[13.62512,13.718338],[13.463333,14.445276],[13.540277,14.50861],[13.672777,14.548611],[13.681389,14.617498],[13.794167,14.732777],[13.767221,14.848055],[13.859165,15.037777],[14.368889,15.733889],[15.485138,16.89809],[15.602499,18.782219],[15.753887,19.932499],[15.996666,20.353054],[15.673887,20.698887],[15.575832,20.766388],[15.558332,20.884441],[15.627222,20.955276],[15.284443,21.445274],[15.202499,21.495831],[15.194721,21.998886],[14.997889,23.000591],[16.000832,23.450554],[19.873886,21.611664],[24.002747,19.499065],[23.999603,15.698709],[23.608887,15.758333],[23.356941,15.681665],[23.118156,15.710293],[22.937222,15.561943],[22.923054,15.487221],[22.998333,15.356388],[22.935833,15.11611],[22.849163,15.078333],[22.670555,14.859444],[22.702499,14.691387],[22.469997,14.629444],[22.384163,14.554165],[22.381386,14.523054],[22.445553,14.479721],[22.449444,14.33],[22.511665,14.240276],[22.555275,14.231943],[22.554996,14.125555],[22.230274,13.962776],[22.084442,13.779165],[22.294167,13.35861],[22.159721,13.190277],[22.020554,13.137777],[21.943333,13.05361],[21.827774,12.797499],[21.952774,12.643888],[22.140553,12.655277],[22.223331,12.747221],[22.466942,12.621666],[22.406387,12.483055],[22.50333,12.165833],[22.611385,11.992777],[22.556389,11.636389],[22.65472,11.5075],[22.790276,11.429443],[22.930832,11.415833],[22.971107,11.198332],[22.866505,10.922447],[22.460552,11.000277],[22.24472,10.910831],[21.957222,10.732222],[21.719444,10.639444],[21.701385,10.514444],[21.747776,10.406666],[21.715553,10.290554],[21.638885,10.223055],[21.526943,10.206388],[21.371944,9.973888],[21.256386,9.97361],[21.048054,9.766388],[20.974442,9.603333],[20.837776,9.476387],[20.816841,9.415667],[20.498474,9.277681],[20.487778,9.209721],[20.422222,9.139721],[20.328888,9.104443],[20.067497,9.135277],[19.93375,9.05752],[19.109444,9.013611],[18.988888,8.964167],[18.86861,8.849443],[19.125832,8.672777],[18.840275,8.292221],[18.66861,8.197777],[18.635277,8.077776],[18.588886,8.040277],[18.046108,8.016666],[17.88361,7.958333],[17.640831,7.987222],[17.589722,7.934722],[17.237221,7.803055],[17.218609,7.758611],[17.058887,7.662777],[16.874443,7.626944],[16.829441,7.548055],[16.569443,7.781111],[16.566528,7.873506],[16.430832,7.798055],[16.407497,7.691111],[16.219166,7.614444],[16.076385,7.594166],[15.971388,7.499722],[15.782776,7.457777],[15.689165,7.523889],[15.499008,7.526609],[15.572777,7.629999],[15.579977,7.760406],[15.504862,7.772637],[15.475277,7.814444],[15.375555,8.116388],[15.201944,8.485832],[14.922777,8.775276],[14.82472,8.81111],[14.348055,9.196943],[14.352499,9.23],[14.0175,9.612778],[13.957499,9.638611],[14.028332,9.753611],[14.123333,9.831665],[14.194769,9.98175],[14.458332,9.998888],[14.776388,9.92111],[14.920277,9.971666],[15.043888,9.947222],[15.159443,9.989166],[15.422222,9.926943],[15.68185,9.989649],[15.499722,10.100277],[15.373055,10.24861],[15.190277,10.502777],[15.061666,10.789999],[15.078054,10.895555],[15.017221,11.199165],[15.051388,11.396666],[15.110832,11.49861],[15.061666,11.687222],[15.081944,11.754721],[15.042597,12.078888],[14.953609,12.096109],[14.891754,12.153397],[14.902348,12.375975],[14.825853,12.630348],[14.711666,12.713888],[14.547777,12.766388],[14.500875,13.001314]]]}},{"type":"Feature","properties":{"FIPS":"CN","ISO2":"KM","ISO3":"COM","UN":174,"NAME":"Comoros","AREA":223,"POP2005":797902,"REGION":2,"SUBREGION":14,"LON":43.337,"LAT":-11.758},"geometry":{"type":"MultiPolygon","coordinates":[[[[43.86055,-12.35611],[43.85444,-12.383057],[43.66861,-12.3575],[43.622772,-12.25833],[43.725,-12.26778],[43.86055,-12.35611]]],[[[44.487495,-12.09306],[44.53083,-12.34472],[44.513611,-12.38028],[44.206665,-12.16194],[44.36360900000011,-12.180834],[44.408882,-12.15389],[44.412773,-12.09028],[44.464996,-12.06944],[44.487495,-12.09306]]],[[[43.459717000000126,-11.93556],[43.27611,-11.836113],[43.219162,-11.761112],[43.25,-11.44083],[43.28139,-11.379723],[43.37055,-11.37111],[43.395271,-11.40611],[43.37389,-11.614168],[43.49805,-11.879168],[43.459717000000126,-11.93556]]]]}},{"type":"Feature","properties":{"FIPS":"CO","ISO2":"CO","ISO3":"COL","UN":170,"NAME":"Colombia","AREA":103870,"POP2005":4494579,"REGION":19,"SUBREGION":5,"LON":-73.076,"LAT":3.9},"geometry":{"type":"MultiPolygon","coordinates":[[[[-78.545288,2.416111],[-78.553619,2.406666],[-78.55029,2.433333],[-78.54417,2.4325],[-78.545288,2.416111]]],[[[-78.121399,2.50083],[-78.21556,2.577777],[-78.18918,2.640555],[-78.127792,2.643055],[-78.091675,2.539444],[-78.121399,2.50083]]],[[[-77.986389,2.542500000000132],[-78.045563,2.583055000000115],[-77.977509,2.651944],[-77.94833,2.627778],[-77.986389,2.542500000000132]]],[[[-77.85751,2.573333],[-77.883347,2.586944],[-77.921112,2.693889000000127],[-77.78696,2.592778000000123],[-77.85751,2.573333]]],[[[-77.76973,2.591389000000106],[-77.839737,2.64028],[-77.88473,2.717222],[-77.827789,2.703888],[-77.74972,2.615],[-77.76973,2.591389000000106]]],[[[-77.568893,3.069167],[-77.662781,3.075833],[-77.53056,3.209444],[-77.5289,3.13611],[-77.568893,3.069167]]],[[[-77.44833,4.074166000000105],[-77.464737,4.060555000000136],[-77.53557,4.16722],[-77.494171,4.20417],[-77.44833,4.1675],[-77.44833,4.074166000000105]]],[[[-77.54306,4.193333],[-77.53862,4.232499],[-77.42612,4.334722],[-77.31973,4.25167],[-77.54306,4.193333]]],[[[-71.56361,12.453609],[-71.222229,12.304165],[-71.113892,12.096109],[-71.124451,12.024443],[-71.4033359999999,11.812777],[-71.977234,11.664999],[-72.209351,11.25],[-72.31029,11.163055],[-72.493057,11.121111],[-72.905014,10.442499000000112],[-73.00473,9.7683320000001],[-73.37807,9.171389],[-73.2189,9.171389],[-73.00639,9.304443],[-72.96529,9.17055],[-72.77972,9.080276],[-72.6644589999999,8.641109000000142],[-72.38417,8.363054],[-72.32529,8.095554],[-72.33362,8.049444],[-72.402512,8.041943],[-72.45973,7.920555],[-72.47168,7.491944],[-72.404175,7.40833],[-72.25944,7.389722],[-72.15472,7.325277],[-72.13528,7.177777],[-72.0661,7.06241],[-72,7.018888000000118],[-71.832779,6.98722],[-71.60695,7.059722],[-71.325562,7.021944],[-71.186676,6.96277700000013],[-71.02501,6.984444],[-70.89001,7.075],[-70.71973,7.098055000000102],[-70.552505,7.058332],[-70.30084,6.939166],[-70.11917,6.975833],[-69.429459,6.11861],[-69.325012,6.15361],[-69.245285,6.081388],[-69.056396,6.21611],[-68.63722,6.133888],[-68.4539,6.19055],[-68.313614,6.166944],[-68.15224,6.223332],[-67.99501,6.207777000000135],[-67.82278,6.30944],[-67.568344,6.264722],[-67.454453,6.193055],[-67.491989,6.118653],[-67.4128,5.99246],[-67.622223,5.787499000000139],[-67.651947,5.676389],[-67.613068,5.539166],[-67.64944,5.478333],[-67.80279,5.38556],[-67.84973,5.307777000000101],[-67.801117,4.979425],[-67.85973,4.55861],[-67.78029,4.351666],[-67.80724,4.239166],[-67.78862,4.17139],[-67.70851,4.046954000000142],[-67.61862,3.76333],[-67.491959,3.726388],[-67.387787,3.49305500000014],[-67.30724,3.45555],[-67.29056,3.3975],[-67.33612,3.318611],[-67.83307,2.876667],[-67.82834,2.825000000000102],[-67.60695,2.795555],[-67.53528,2.68],[-67.320557,2.46833],[-67.1925,2.3925],[-67.17306,2.34167],[-67.21085,2.24055],[-66.991669,1.695833],[-66.871887,1.221642],[-67.076675,1.173333000000127],[-67.07251,1.625278],[-67.335007,2.111111],[-67.42418,2.143888],[-67.589737,2.050000000000125],[-67.805557,1.788333000000137],[-67.914734,1.745278],[-68.005,1.763055],[-68.10112,1.948056],[-68.196396,1.9775],[-68.25723,1.852778],[-68.23279,1.775555],[-68.17584,1.763055],[-68.15306,1.72417],[-69.37695,1.72805],[-69.55585,1.784167],[-69.8461,1.710455],[-69.84222,1.072222],[-69.61362,1.078055],[-69.435287,1.038333],[-69.343613,1.074722],[-69.27,1.038333],[-69.14001,0.86694],[-69.160278,0.750556000000131],[-69.12472,0.645],[-69.28696,0.620833],[-69.46417,0.740278],[-69.68861,0.675555],[-69.797791,0.600278],[-70.04417,0.59083],[-70.05806,-0.1575],[-69.92834,-0.30944],[-69.74612,-0.452222],[-69.60751,-0.5175],[-69.57278,-0.63667],[-69.61473,-0.75111],[-69.52917,-0.92444],[-69.43472,-0.99417],[-69.378067,-1.338056],[-69.45264,-1.526032],[-69.95692,-4.23687],[-69.983063,-4.180834],[-70.126404,-4.06889],[-70.18085,-3.938334],[-70.32306,-3.799167],[-70.37195,-3.788333],[-70.516113,-3.86111],[-70.72417,-3.779723],[-70.0675,-2.75556],[-70.091675,-2.69111],[-70.116119,-2.70417],[-70.1889,-2.65139],[-70.218613,-2.56806],[-70.288345,-2.505],[-70.577515,-2.48722],[-70.65973,-2.3525],[-70.86111,-2.22306],[-71.188065,-2.36056],[-71.35779,-2.3525],[-71.406113,-2.28472],[-71.515015,-2.235278],[-71.669174,-2.229167],[-71.698059,-2.14694],[-71.813065,-2.235278],[-71.88834,-2.38167],[-71.98695,-2.3675],[-72.22751,-2.498889],[-72.595566,-2.407222],[-72.88196,-2.506389],[-72.93556,-2.395556],[-73.00307,-2.41056],[-73.112228,-2.33806],[-73.133621,-2.243333],[-73.088348,-2.22361],[-73.05751,-2.14],[-73.08778,-1.929167],[-73.13278,-1.849167],[-73.19917,-1.803056],[-73.300003,-1.87583],[-73.49057,-1.766945],[-73.48695,-1.65444],[-73.44334,-1.60583],[-73.54279,-1.46806],[-73.556396,-1.370833],[-73.65834,-1.281667],[-73.837784,-1.27028],[-73.868057,-1.208611],[-74.07779,-1.07278],[-74.227234,-1.027778],[-74.28279,-0.930278],[-74.247787,-0.85361],[-74.31612,-0.781667],[-74.37611,-0.568056],[-74.60751,-0.38361],[-74.638336,-0.40972],[-74.70668,-0.367222],[-74.776947,-0.20417],[-74.854172,-0.232778],[-74.93085,-0.20472],[-75.150848,-0.03833],[-75.211121,-0.0375],[-75.22696,-0.099167],[-75.27519,-0.12325],[-75.58334,0.037222],[-75.74223,0.037222],[-75.91278,0.16333],[-76.043274,0.339992],[-76.243057,0.395555],[-76.400848,0.3923190000001],[-76.407791,0.271667],[-76.550293,0.218056],[-76.71194,0.285833000000139],[-76.72696,0.258611],[-76.868896,0.238611000000105],[-77.02972,0.3025],[-77.079605,0.35956],[-77.2189,0.33611100000013],[-77.37946,0.384722],[-77.42445,0.413333000000137],[-77.45251,0.645833],[-77.54167,0.656111],[-77.640289,0.721667],[-77.67834,0.837222000000111],[-77.84584,0.81139],[-77.995834,0.90417],[-78.091675,0.910555],[-78.241394,1.027222],[-78.348068,1.064167000000111],[-78.46861,1.195555],[-78.560287,1.198611000000142],[-78.677505,1.285555],[-78.80972,1.43778],[-78.85751,1.552222],[-79.02612,1.595000000000141],[-79.05334,1.62833],[-78.96918,1.756389],[-78.85445,1.836111],[-78.58417,1.768889],[-78.54472,1.911944],[-78.59279,2.014444],[-78.654175,2.063889],[-78.687225,2.2],[-78.56529,2.429166],[-78.551689,2.38887],[-78.5387,2.430409],[-78.465302,2.443154000000106],[-78.44057,2.50944],[-78.343613,2.436666000000116],[-78.265015,2.51917],[-78.125565,2.486944000000108],[-77.98695,2.5225],[-77.94862,2.55944],[-77.94,2.655],[-77.867233,2.56028],[-77.79251,2.5675],[-77.74084,2.60472],[-77.78111,2.756389],[-77.40832,3.2881],[-77.488892,3.22972],[-77.54251,3.254722],[-77.497513,3.316667000000109],[-77.431633,3.301173000000119],[-77.468613,3.341944],[-77.36389,3.4125],[-77.14111,3.665833],[-77.12611,3.771111000000133],[-77.028625,3.917778],[-77.188614,3.843611],[-77.27167,3.840833],[-77.290344,3.94894],[-77.267227,3.98528],[-77.26334,3.95917],[-77.209732,3.97389],[-77.187225,4.060277],[-77.26056,4.095555],[-77.364456,3.925],[-77.43417,4.028333],[-77.426956,4.178333],[-77.3539,4.221666],[-77.27612,4.215],[-77.23918,4.259999],[-77.335556,4.26611000000014],[-77.38417,4.341944],[-77.311676,4.551944],[-77.37222,5.082777],[-77.347778,5.240555],[-77.398056,5.458333],[-77.53223,5.518888],[-77.49945,5.589444],[-77.41779,5.624722],[-77.32751,5.615277],[-77.24084,5.751389],[-77.3389,5.987499],[-77.49028,6.190833],[-77.475845,6.283055],[-77.40028,6.243889],[-77.340012,6.567778],[-77.4064,6.688889],[-77.666397,6.876666],[-77.653061,6.986944],[-77.67917,7.054166000000123],[-77.889725,7.228889],[-77.810837,7.48],[-77.750565,7.482778],[-77.72307,7.524166],[-77.758896,7.628611],[-77.74667,7.722221],[-77.662231,7.677777],[-77.5739,7.52528],[-77.333344,7.698889],[-77.37195,7.786111],[-77.29834,7.90361],[-77.21556,7.937222],[-77.216675,8.093332],[-77.36195,8.282221000000106],[-77.41362,8.463333],[-77.474731,8.469721000000106],[-77.472229,8.532221],[-77.36667,8.674999],[-77.34695,8.66222],[-77.28334,8.508055],[-77.1364,8.41361000000012],[-77.08168,8.32611100000014],[-76.968613,8.238333],[-76.948624,8.159166],[-76.88779,8.121666],[-76.83417,8.131388],[-76.833618,8.0275],[-76.912231,8.041666],[-76.92418,7.934999],[-76.86528,7.9075],[-76.75528,7.91889],[-76.730835,8.075554000000125],[-76.769455,8.39944],[-76.8239,8.48499900000013],[-76.93445,8.53583],[-76.92834,8.56833300000011],[-76.883896,8.623888],[-76.672791,8.676388],[-76.435837,8.869444],[-76.426758,8.90639],[-76.315567,8.94],[-76.25917,9.000832],[-76.171951,9.238609],[-76.089737,9.335833],[-75.91862,9.42222],[-75.820282,9.439722],[-75.68472,9.41111],[-75.62946,9.453609],[-75.585281,9.606388],[-75.660843,9.760277],[-75.57167,10.134443],[-75.53445,10.179998],[-75.485291,10.446665],[-75.505,10.552500000000121],[-75.40889,10.65861],[-75.288071,10.724443],[-75.230011,10.719166],[-75.23029,10.76222],[-75.27028,10.754444],[-75.26973,10.798332],[-75.03862,10.904999],[-75.02167,10.968611000000124],[-74.860809,11.125486],[-74.49972,10.991665],[-74.28862,11.002499],[-74.335556,10.972776000000122],[-74.469177,10.9725],[-74.59222,10.878054],[-74.60251,10.78],[-74.51918,10.812777],[-74.455,10.738333],[-74.39056,10.74305500000014],[-74.22835,11.113333],[-74.23695,11.23499900000013],[-74.155014,11.331388],[-74.012787,11.355276],[-73.79445,11.26583],[-73.28445,11.29555],[-72.760284,11.693054000000132],[-72.52389,11.786943],[-72.420837,11.795555],[-72.258621,11.889166],[-72.1394,12.10361],[-72.1664,12.23583200000013],[-71.9639,12.258055000000127],[-72.012222,12.19028],[-71.96306,12.153610000000128],[-71.86806,12.202499000000103],[-71.809723,12.313332],[-71.630844,12.420832],[-71.6864,12.44861],[-71.738892,12.415277000000117],[-71.718063,12.44861],[-71.56361,12.453609]]],[[[-81.71028,12.490833000000121],[-81.719727,12.549999],[-81.68834,12.59111],[-81.690567,12.533609],[-81.71028,12.490833000000121]]],[[[-81.36557,13.32305],[-81.38945,13.334999],[-81.3539,13.378611],[-81.34917,13.334444000000133],[-81.36557,13.32305]]]]}},{"type":"Feature","properties":{"FIPS":"CS","ISO2":"CR","ISO3":"CRI","UN":188,"NAME":"Costa Rica","AREA":5106,"POP2005":4327228,"REGION":19,"SUBREGION":13,"LON":-83.946,"LAT":9.971},"geometry":{"type":"MultiPolygon","coordinates":[[[[-85.11584,10.07361],[-85.17612,10.077499],[-85.196945,10.113054],[-85.10918,10.105833],[-85.11584,10.07361]]],[[[-85.08778,11.009998],[-84.90279,10.940832000000112],[-84.67445,11.07805],[-84.343063,10.953888],[-84.195908,10.78452],[-83.99972,10.769444],[-83.91556,10.708611],[-83.66724,10.7925],[-83.6425,10.923611],[-83.5025,10.562222],[-83.339737,10.299721],[-82.77444,9.659443],[-82.563568,9.56287600000013],[-82.5614,9.53555],[-82.63779,9.488333000000125],[-82.7489,9.584166],[-82.833069,9.61222],[-82.93472,9.471666],[-82.93047,9.06312],[-82.88223,9.067221],[-82.71085,8.931110000000103],[-82.877792,8.8275],[-82.91446,8.762777],[-82.83195,8.626665],[-82.82993,8.47465],[-83.03029,8.310555],[-82.93085,8.254721],[-82.886124,8.103333000000134],[-82.89885,8.025669],[-82.895844,8.093887],[-82.96695,8.224722],[-83.142227,8.354166],[-83.0939,8.44861],[-83.18028,8.599722],[-83.32667,8.670832],[-83.341675,8.726944000000115],[-83.48473,8.70333],[-83.40001,8.586943],[-83.293335,8.53055],[-83.29112,8.37028],[-83.59557,8.468332],[-83.73083,8.583055],[-83.708618,8.67472],[-83.67418,8.68861],[-83.58723,8.849443],[-83.62418,9.035276000000124],[-83.93417,9.302221],[-84.14612,9.374998000000119],[-84.22945,9.468611],[-84.53279,9.51861],[-84.61528,9.575832000000105],[-84.675,9.68528],[-84.63057,9.77],[-84.74028,9.966665],[-84.88167,10.003332],[-85.070023,10.155340000000137],[-85.24306,10.204166],[-85.22862,10.088888],[-85.15779,10.04528],[-85.13444,9.991665],[-84.93224,9.892221],[-84.897232,9.807499],[-84.95113,9.730555],[-85.142227,9.589443],[-85.270569,9.78],[-85.345001,9.832777],[-85.66446,9.908609000000126],[-85.79529,10.099998],[-85.86168,10.368332000000123],[-85.63196,10.626389],[-85.675568,10.796944],[-85.91139,10.891109],[-85.84889,10.941666],[-85.71474,10.92166],[-85.667236,11.044443],[-85.692383,11.076061],[-85.61446,11.21361],[-85.08778,11.009998]]]]}},{"type":"Feature","properties":{"FIPS":"CT","ISO2":"CF","ISO3":"CAF","UN":140,"NAME":"Central African Republic","AREA":62298,"POP2005":4191429,"REGION":2,"SUBREGION":17,"LON":20.483,"LAT":6.571},"geometry":{"type":"Polygon","coordinates":[[[19.058792,8.578382],[19.114998,8.691387],[18.866665,8.854443],[18.988888,8.964167],[19.109444,9.013611],[19.93375,9.05752],[20.067497,9.135277],[20.371666,9.108332],[20.487778,9.209721],[20.498474,9.277681],[20.816841,9.415667],[20.837776,9.476387],[20.974442,9.603333],[21.048054,9.766388],[21.256386,9.97361],[21.371944,9.973888],[21.526943,10.206388],[21.638885,10.223055],[21.715553,10.290554],[21.747776,10.406666],[21.701385,10.514444],[21.719444,10.639444],[21.957222,10.732222],[22.24472,10.910831],[22.460552,11.000277],[22.866505,10.922447],[23.009441,10.69861],[23.303886,10.459166],[23.669167,9.866943],[23.694721,9.671665],[23.623333,9.535276],[23.631386,9.449444],[23.664444,9.440832],[23.652222,9.279999],[23.556389,9.181665],[23.492775,9.174166],[23.448608,9.025],[23.503609,8.959721],[23.565277,9.005278],[23.583054,8.988609],[23.581665,8.906111],[23.498333,8.778332],[23.517776,8.714167],[23.823887,8.727777],[24.201111,8.686943],[24.269165,8.583055],[24.161388,8.468332],[24.140274,8.375832],[24.192497,8.30361],[24.804443,8.192778],[24.934444,8.093332],[24.970276,8.003332],[25.080276,7.897499],[25.186108,7.901944],[25.25333,7.850555],[25.296108,7.65],[25.183887,7.583333],[25.206944,7.497499],[25.331108,7.425278],[25.374165,7.339444],[25.984444,7.018332],[26.047775,6.963888],[26.10083,6.84111],[26.266109,6.708333],[26.404999,6.646388],[26.298054,6.465555],[26.300552,6.401388],[26.523609,6.22111],[26.523609,6.173611],[26.437496,6.077777],[26.808609,5.98],[26.839443,5.898333],[27.142776,5.771944],[27.281666,5.57861],[27.235832,5.428611],[27.254719,5.331388],[27.299999,5.22611],[27.458054,5.083611],[27.455276,5.016388],[27.393608,5.089167],[27.084164,5.204166],[26.937775,5.14111],[26.867775,5.029166],[26.745277,5.091389],[26.488888,5.046389],[26.393887,5.132777],[26.197498,5.232778],[26.127499,5.249166],[26.065552,5.197499],[25.911388,5.178611],[25.635555,5.305277],[25.542221,5.381389],[25.361942,5.314722],[25.310555,5.191111],[25.343609,5.111666],[25.289997,5.025],[25.089722,4.973611],[24.942776,4.984444],[24.734444,4.910832],[24.525555,5.077222],[24.394165,5.115555],[24.355,5.059999],[24.400555,5.040833],[24.372219,5.010833],[23.574997,4.730277],[23.441666,4.65361],[23.426388,4.591944],[23.326664,4.599166],[23.211941,4.681944],[23.084442,4.709999],[23.018608,4.746388],[22.974998,4.831388],[22.895832,4.821111],[22.775833,4.706666],[22.690277,4.483611],[22.591942,4.466666],[22.538609,4.218888],[22.453602,4.144581],[22.294441,4.128055],[22.103054,4.214444],[21.742775,4.294999],[21.651665,4.299166],[21.539165,4.245277],[21.208611,4.288888],[21.072498,4.393888],[20.964722,4.434166],[20.838608,4.449166],[20.585552,4.41],[20.452785,4.522378],[20.456665,4.624722],[20.342499,4.765555],[20.004444,4.97611],[19.896942,4.997499],[19.834442,5.090833],[19.652222,5.1425],[19.421387,5.134166],[19.190552,4.945833],[19.071941,4.900555],[18.996387,4.745555],[18.833885,4.569722],[18.75,4.388888],[18.631107,4.3525],[18.582222,4.370555],[18.541943,4.335555],[18.647778,4.021388],[18.590832,3.7325],[18.624958,3.479444],[18.590553,3.486389],[18.481388,3.641944],[18.272499,3.583055],[18.230274,3.495833],[18.178055,3.483333],[18.119442,3.560555],[17.858887,3.535555],[17.823608,3.620555],[17.615276,3.629722],[17.475277,3.713055],[17.346664,3.611111],[16.972221,3.547222],[16.876663,3.565833],[16.659721,3.533333],[16.576664,3.460556],[16.556664,3.322778],[16.482777,3.156666],[16.465832,2.9225],[16.501663,2.849444],[16.207222,2.220833],[16.094719,2.497777],[16.069443,2.785],[16.114441,2.828888],[16.103054,2.898333],[15.939999,3.100555],[15.809444,3.102222],[15.260277,3.673889],[15.076944,3.920555],[15.043888,4.029166],[15.146387,4.069722],[15.101944,4.145555],[15.083611,4.301389],[15.011389,4.4175],[14.80361,4.537499],[14.732777,4.623055],[14.670277,5.187778],[14.531666,5.293611],[14.622221,5.518055],[14.61861,5.895833],[14.592777,5.930555],[14.555832,5.904722],[14.484999,5.919999],[14.424166,6.006944],[14.429789,6.079683],[14.740276,6.2625],[14.804998,6.346666],[14.796944,6.389999],[14.958611,6.733611],[15.059166,6.77861],[15.227499,7.231667],[15.445555,7.394722],[15.499008,7.526609],[15.689165,7.523889],[15.782776,7.457777],[15.971388,7.499722],[16.076385,7.594166],[16.219166,7.614444],[16.407497,7.691111],[16.430832,7.798055],[16.566528,7.873506],[16.569443,7.781111],[16.829441,7.548055],[16.874443,7.626944],[17.058887,7.662777],[17.218609,7.758611],[17.237221,7.803055],[17.589722,7.934722],[17.640831,7.987222],[17.88361,7.958333],[18.046108,8.016666],[18.588886,8.040277],[18.635277,8.077776],[18.66861,8.197777],[18.809444,8.260832],[19.058792,8.578382]]]}},{"type":"Feature","properties":{"FIPS":"CU","ISO2":"CU","ISO3":"CUB","UN":192,"NAME":"Cuba","AREA":10982,"POP2005":11259905,"REGION":19,"SUBREGION":29,"LON":-77.781,"LAT":21.297},"geometry":{"type":"MultiPolygon","coordinates":[[[[-78.327789,20.513611],[-78.3914,20.540833],[-78.458344,20.60555],[-78.34584,20.569443],[-78.327789,20.513611]]],[[[-78.381958,20.637775],[-78.41223,20.647221],[-78.402786,20.675831],[-78.38945,20.676666],[-78.381958,20.637775]]],[[[-78.441681,20.710552],[-78.513336,20.689999000000114],[-78.547501,20.703609],[-78.45862,20.731667],[-78.441681,20.710552]]],[[[-78.7675,20.706108],[-78.81557,20.736111],[-78.821945,20.756943],[-78.76363,20.730553],[-78.7675,20.706108]]],[[[-75.48723,20.72889],[-75.571121,20.755833],[-75.57806,20.781109],[-75.515015,20.79194],[-75.48723,20.72889]]],[[[-78.8475,20.771664],[-78.93584,20.78944],[-78.96584,20.80999800000012],[-78.93167,20.83416],[-78.8475,20.771664]]],[[[-78.97778,20.83944300000013],[-79.05112,20.87167],[-79.077515,20.893887],[-78.969727,20.87416],[-78.97778,20.83944300000013]]],[[[-79.08446,20.89833],[-79.11806,20.907776],[-79.22557,21.00055300000014],[-79.176682,21.00861],[-79.077515,20.921387],[-79.08446,20.89833]]],[[[-79.406403,21.10472],[-79.44278,21.109997],[-79.45113,21.1227760000001],[-79.402512,21.121109],[-79.406403,21.10472]]],[[[-79.302231,21.064442],[-79.342514,21.07222],[-79.38417,21.11972],[-79.3414,21.121109],[-79.302231,21.064442]]],[[[-81.530838,21.600277],[-81.55695,21.62278],[-81.36696,21.711941000000134],[-81.42195,21.656666],[-81.530838,21.600277]]],[[[-82.545288,21.57111],[-82.710556,21.48444],[-82.89723,21.43278],[-83.076675,21.464443],[-83.14889,21.527222],[-83.193069,21.621387],[-83.0614,21.541386000000102],[-82.937225,21.579998000000103],[-83.089447,21.785553],[-82.97446,21.94278],[-82.71584,21.89027],[-82.69972,21.833611],[-82.593063,21.739998],[-82.545288,21.57111]]],[[[-77.91505,22.094696],[-77.65334,22.069721],[-77.621124,22.03083],[-77.63834,21.953053000000125],[-77.70557,21.908607],[-77.93278,22.0425],[-77.94723,22.098331],[-77.91505,22.094696]]],[[[-77.84639,22.106388],[-77.895279,22.0975],[-78.04417,22.186665],[-77.997513,22.285275],[-77.859451,22.218052000000114],[-77.828339,22.15333],[-77.84639,22.106388]]],[[[-77.777237,22.195],[-77.77167,22.16805],[-77.85001,22.29472],[-77.836121,22.29],[-77.777237,22.195]]],[[[-78.118622,22.41389],[-78.019455,22.261944],[-78.162231,22.303886],[-78.191956,22.364998],[-78.3114,22.403889],[-78.208618,22.436943],[-78.118622,22.41389]]],[[[-78.3414,22.533886],[-78.2764,22.439720000000136],[-78.425293,22.412498],[-78.400009,22.460552],[-78.536957,22.448055],[-78.69667,22.514721],[-78.67306,22.558052],[-78.551392,22.523609],[-78.404175,22.55861],[-78.3414,22.533886]]],[[[-78.976395,22.63749700000011],[-79.025848,22.651108],[-79.05446,22.66528],[-78.9689,22.669167],[-78.976395,22.63749700000011]]],[[[-79.32306,22.614719],[-79.6275,22.77722],[-79.63251,22.799999],[-79.57613,22.809998],[-79.32306,22.614719]]],[[[-79.891953,22.928333],[-79.94278,22.92083],[-79.958618,22.947498],[-79.88306,22.965275],[-79.891953,22.928333]]],[[[-80.23279,22.994999],[-80.23418,22.956387],[-80.349457,22.981667],[-80.24945,23.01111],[-80.23279,22.994999]]],[[[-80.04945,23.026108],[-80.07722,23.041943],[-80.076675,23.07444],[-80.058334,23.064999000000114],[-80.04945,23.026108]]],[[[-80.14639,23.070274],[-80.168625,23.056389],[-80.22417,23.099442000000124],[-80.199448,23.12194],[-80.14639,23.070274]]],[[[-80.927505,23.12555300000014],[-80.97362,23.107498],[-80.847229,23.179443],[-80.797226,23.150555],[-80.927505,23.12555300000014]]],[[[-82.003891,23.186386],[-81.84889,23.15333],[-81.58057,23.155552],[-81.50084,23.05555],[-81.22696,23.161663],[-81.285568,23.119720000000143],[-81.13473,23.023052],[-80.982788,23.076664],[-80.633057,23.098331],[-80.54445,22.991108],[-80.278625,22.905277],[-80.03334,22.95111],[-79.98195,22.875832],[-79.85445,22.803608],[-79.676682,22.758888],[-79.538895,22.55999800000012],[-79.335846,22.406944],[-79.25612,22.371944],[-78.790558,22.394997],[-78.57333,22.32194],[-78.31222,22.16666400000014],[-78.05556,22.078888],[-77.90028,21.888885],[-77.86418,21.898888],[-77.74695,21.799442000000113],[-77.4575,21.777222],[-77.423889,21.739998],[-77.45723,21.74139],[-77.43278,21.657497],[-77.341125,21.63611],[-77.44806,21.802498],[-77.610001,21.883053],[-77.54306,21.918610000000115],[-77.46529,21.82611100000014],[-77.14001,21.652775],[-77.15939,21.57644],[-77.364456,21.617222],[-77.258896,21.47361],[-77.21028,21.454166],[-77.156403,21.47972],[-77.10495,21.574999],[-77.061951,21.585],[-76.883896,21.41972],[-76.896118,21.306389],[-76.79529,21.384163],[-76.65834,21.35305],[-76.574615,21.283667],[-76.60529,21.207497000000103],[-76.5414,21.183052],[-76.45834,21.21722],[-76.51518,21.248888000000136],[-76.49057,21.283054],[-76.364456,21.274441],[-76.02167,21.0841640000001],[-75.81696,21.132774],[-75.70723,21.12194],[-75.614731,21.068886],[-75.57973,21.00694],[-75.633896,20.845833],[-75.767227,20.826385],[-75.78001,20.743053],[-75.73668,20.696941],[-75.44945,20.688889000000128],[-75.47362,20.72472],[-75.435287,20.734165000000132],[-74.95557,20.68528],[-74.74667,20.593052],[-74.60196,20.483608],[-74.50111,20.351665],[-74.38417,20.290276],[-74.222778,20.314163],[-74.1414,20.25222],[-74.13331,20.191307000000105],[-74.2814,20.056942],[-74.36557,20.078609],[-74.762222,20.048054],[-75.01529,19.90389],[-75.085281,19.89304],[-75.08723,19.965553],[-75.13974,19.962872],[-75.07751,20.010555000000124],[-75.09279,20.056389],[-75.17584,20.004719],[-75.157272,19.96416],[-75.19585,19.958611000000133],[-75.223724,19.901554],[-75.35556,19.875553],[-75.59279,19.88944],[-75.72501,19.955],[-76.2489,19.990833],[-76.79668,19.929165],[-77.005,19.876389000000128],[-77.29333,19.905277],[-77.35556,19.855831],[-77.722504,19.832775],[-77.742233,19.874443],[-77.59862,20.044998000000135],[-77.379181,20.211388],[-77.175568,20.296108],[-77.11584,20.364998],[-77.07834,20.47],[-77.236389,20.663055],[-77.35722,20.71833],[-77.53001,20.68222],[-77.76889,20.696388000000123],[-77.86084,20.730274],[-77.93584,20.691387],[-78.05029,20.69971800000013],[-78.27335,20.90361],[-78.49501,21.030277000000126],[-78.603058,21.484165000000132],[-78.75029,21.639164],[-79.23195,21.541111],[-79.462509,21.594444],[-79.668335,21.693607],[-79.89001,21.74694],[-79.987793,21.72361],[-80.047226,21.78833],[-80.199448,21.84861],[-80.366959,21.970554],[-80.43306,22.061943],[-80.3925,22.071941],[-80.39667,22.104443],[-80.49196,22.177219],[-80.53528,22.17583100000013],[-80.55594,22.062828],[-80.591125,22.050552],[-80.891113,22.039719000000105],[-81.0914,22.085278],[-81.13417,22.148052000000117],[-81.20557,22.09472],[-81.34557,22.084164],[-81.4064,22.178333],[-81.64751,22.21027800000013],[-81.758621,22.171944],[-81.82306,22.183609000000104],[-82.163071,22.398331],[-82.119171,22.43278],[-81.79501,22.436386],[-81.64889,22.491386],[-81.64473,22.57611],[-81.88501,22.68083200000012],[-82.763901,22.70055],[-82.80139,22.616943],[-83.07333,22.47972],[-83.166672,22.332775],[-83.258347,22.346943],[-83.37001,22.199997],[-83.47696,22.174164],[-83.589447,22.213055],[-83.66724,22.174999],[-83.931396,22.16111],[-84.00723,22.05555],[-83.99084,21.944443],[-84.02612,21.915],[-84.122223,21.93972],[-84.22945,21.90916],[-84.501114,21.765553000000125],[-84.52972,21.773331],[-84.47084,21.870277],[-84.49501,21.93444],[-84.64889,21.916111000000114],[-84.81557,21.81583],[-84.953339,21.859997],[-84.925003,21.917221],[-84.89084,21.88361],[-84.51417,22.045277],[-84.37889,22.04361],[-84.338058,22.01222],[-84.320847,22.0791660000001],[-84.440002,22.203609],[-84.400558,22.332775],[-84.07695,22.660553],[-83.22917,22.998886],[-83,23.01523200000014],[-83.00806,22.976387],[-82.97362,22.966389],[-82.91751,23.024719000000115],[-82.590012,23.048611],[-82.331116,23.16666400000014],[-82.003891,23.186386]]],[[[-80.49306,23.188053],[-80.49695,23.16472],[-80.579727,23.176109],[-80.558624,23.203609],[-80.49306,23.188053]]]]}},{"type":"Feature","properties":{"FIPS":"CV","ISO2":"CV","ISO3":"CPV","UN":132,"NAME":"Cape Verde","AREA":403,"POP2005":506807,"REGION":2,"SUBREGION":11,"LON":-23.634,"LAT":15.071},"geometry":{"type":"MultiPolygon","coordinates":[[[[-24.368336,14.812222],[-24.44917,14.83],[-24.52528,14.92111],[-24.485001,14.991943],[-24.381668,15.047499],[-24.31361,15.01138900000012],[-24.295834,14.9275],[-24.29945,14.86027700000011],[-24.368336,14.812222]]],[[[-23.44667,14.982777000000112],[-23.525837,14.896111000000133],[-23.681393,14.935555],[-23.79056,15.066111],[-23.76667,15.253054],[-23.695,15.294998],[-23.5125,15.11611],[-23.44667,14.982777000000112]]],[[[-22.706112,16.03639],[-22.800556,15.978054],[-22.876114,15.980555],[-22.956112,16.023609],[-22.957779,16.089443],[-22.87195,16.206108],[-22.79861,16.235275000000115],[-22.72389,16.214165],[-22.67445,16.13611],[-22.66639,16.091942],[-22.706112,16.03639]]],[[[-24.034168,16.594166],[-24.0475,16.554722],[-24.268059,16.59],[-24.32139,16.482777],[-24.43222,16.644165],[-24.3525,16.68472],[-24.034168,16.594166]]],[[[-24.92611,16.799999000000128],[-24.993336,16.77972],[-25.093334,16.83083],[-25.060837,16.88222100000013],[-24.93306,16.92139],[-24.87611,16.831944],[-24.92611,16.799999000000128]]],[[[-25.28139,16.91333],[-25.31222,16.924999],[-25.360558,17.04444100000012],[-25.33028,17.096386],[-25.097504,17.193054],[-24.97444,17.112778],[-24.993336,17.05944],[-25.17528,16.925278],[-25.28139,16.91333]]]]}},{"type":"Feature","properties":{"FIPS":"CW","ISO2":"CK","ISO3":"COK","UN":184,"NAME":"Cook Islands","AREA":24,"POP2005":13984,"REGION":9,"SUBREGION":61,"LON":-159.782,"LAT":-21.219},"geometry":{"type":"MultiPolygon","coordinates":[[[[-157.890564,-21.938053],[-157.94504,-21.940559],[-157.9628,-21.904167],[-157.92197,-21.880283],[-157.890564,-21.938053]]],[[[-159.74112,-21.254169],[-159.834747,-21.24778],[-159.83389,-21.195831],[-159.7525,-21.19305],[-159.74112,-21.254169]]],[[[-157.31644,-20.188053],[-157.33749,-20.17695],[-157.332214,-20.13306],[-157.30917,-20.147781],[-157.31644,-20.188053]]],[[[-158.09836,-20.016113],[-158.126678,-20.00944],[-158.118591,-19.97306],[-158.08197,-19.98694],[-158.09836,-20.016113]]],[[[-158.27948,-19.817783],[-158.262512,-19.83667],[-158.29138,-19.83333],[-158.27948,-19.817783]]],[[[-157.708649,-19.85305],[-157.74136,-19.814167],[-157.71393,-19.77028],[-157.703369,-19.83333],[-157.708649,-19.85305]]],[[[-158.92865,-19.270283],[-158.94391,-19.27195],[-158.95193,-19.242496],[-158.924713,-19.260284],[-158.92865,-19.270283]]],[[[-159.78833,-18.890556],[-159.803345,-18.86139],[-159.78421,-18.84139],[-159.7778,-18.845001],[-159.78833,-18.890556]]],[[[-163.16333,-18.089443],[-163.17032,-18.079449],[-163.15472,-18.056667],[-163.15335,-18.06972],[-163.16333,-18.089443]]],[[[-165.42224,-11.54833],[-165.4364,-11.54917],[-165.43503,-11.5375],[-165.414185,-11.537781],[-165.42224,-11.54833]]],[[[-165.82666,-10.88833],[-165.8486,-10.890556],[-165.85028,-10.88417],[-165.831146,-10.87694],[-165.82666,-10.88833]]],[[[-161.022827,-10.431391],[-161.04333,-10.41972],[-161.04861,-10.392778],[-161.02307,-10.423058],[-161.022827,-10.431391]]],[[[-160.97559,-10.395555],[-160.99335,-10.385557],[-161.01251,-10.352777],[-160.9736,-10.37806],[-160.97559,-10.395555]]],[[[-161.084442,-10.04194],[-161.09058,-10.01833],[-161.072266,-10.008059],[-161.07443,-10.018059],[-161.084442,-10.04194]]],[[[-157.941681,-8.982502],[-157.97226,-8.981943],[-158.00836,-8.951389],[-157.996399,-8.95],[-157.941681,-8.982502]]]]}},{"type":"Feature","properties":{"FIPS":"CY","ISO2":"CY","ISO3":"CYP","UN":196,"NAME":"Cyprus","AREA":924,"POP2005":836321,"REGION":142,"SUBREGION":145,"LON":33.219,"LAT":35.043},"geometry":{"type":"Polygon","coordinates":[[[33.652618,35.354103],[33.969719,35.436104],[34.590271,35.690277],[34.569717,35.643608],[33.921387,35.272774],[33.902496,35.161659],[34.083328,34.959442],[33.976944,34.981384],[33.858887,34.936661],[33.790276,34.970276],[33.677498,34.965553],[33.606667,34.820274],[33.365273,34.725273],[33.059715,34.679161],[33.007023,34.632397],[33.030838,34.56255],[32.941936,34.56255],[32.918125,34.629223],[32.859444,34.666107],[32.698326,34.64222],[32.40416,34.750832],[32.274162,35.043884],[32.281944,35.097221],[32.369164,35.039719],[32.428055,35.045273],[32.549164,35.173607],[32.660553,35.190277],[32.830551,35.14222],[32.882774,35.162216],[32.932098,35.263626],[32.921299,35.393208],[33.369438,35.328606],[33.652618,35.354103]]]}},{"type":"Feature","properties":{"FIPS":"DA","ISO2":"DK","ISO3":"DNK","UN":208,"NAME":"Denmark","AREA":4243,"POP2005":5416945,"REGION":150,"SUBREGION":154,"LON":9.264,"LAT":56.058},"geometry":{"type":"MultiPolygon","coordinates":[[[[11.513887,54.829720000000115],[11.564444,54.82194],[11.656944,54.903885],[11.84944300000012,54.765831],[11.85611,54.683327000000126],[11.785,54.639999],[11.57888800000012,54.66333],[11.45555,54.619438],[10.989891000000114,54.79085],[11.025276,54.8144380000001],[11.031944,54.914719],[11.164444,54.956665],[11.275555,54.94971],[11.361111,54.883888],[11.513887,54.829720000000115]]],[[[12.03805,54.892494],[12.11055,54.88749700000011],[12.169443,54.839165],[11.969721000000105,54.69944],[11.964443,54.561661],[11.871944,54.651382],[11.899166,54.71860500000014],[11.708611,54.936661],[11.846666,54.95611],[12.03805,54.892494]]],[[[10.432777,54.84166],[10.407221000000106,54.82139],[10.248333000000116,54.90416],[10.184166,54.97361],[10.440832,54.86388],[10.432777,54.84166]]],[[[12.557499,54.964165],[12.338055,54.958885],[12.18361,54.880272],[12.115833000000123,54.90416],[12.135832,54.956665],[12.311943,55.03527100000014],[12.527777000000128,55.01028],[12.557499,54.964165]]],[[[10.615,54.950272],[10.549166000000127,54.949997],[10.49861,55.006386],[10.631943,55.043327],[10.677221,54.98944100000011],[10.615,54.950272]]],[[[9.792500000000132,55.07499700000011],[9.97194,55.00889],[10.07111,54.87471000000011],[9.956388,54.85805],[9.785831,54.9061],[9.760555,54.98111],[9.84417,54.942215],[9.798887,55.01111],[9.696665,55.010551],[9.630554,55.04943800000012],[9.792500000000132,55.07499700000011]]],[[[10.756943,54.77722],[10.714722000000108,54.724998000000134],[10.674999,54.75388],[10.651943,54.83721900000011],[10.68194,54.908607],[10.801388,54.991104],[10.949165,55.16111],[10.897778000000129,55.001106],[10.756943,54.77722]]],[[[15.051666,54.994995000000124],[14.679722,55.099716],[14.746387,55.295555],[15.141109,55.138611],[15.148333,55.0825],[15.051666,54.994995000000124]]],[[[8.46361,55.33416],[8.403055,55.37944],[8.360277,55.45777],[8.401388,55.4675],[8.45833,55.42638],[8.46361,55.33416]]],[[[10.745277000000101,55.482216],[10.834721,55.293884],[10.782776,55.122498],[10.733332000000132,55.064438],[10.49778,55.028885],[10.15278,55.08444],[10.11861,55.178886],[10.005833,55.193329],[9.896944,55.279716],[9.88722,55.34221600000012],[9.810833,55.436661],[9.675554,55.49916100000012],[9.81305,55.547493],[9.904999,55.505829],[10.309721,55.616943],[10.484722,55.53249],[10.416111,55.452774],[10.478611,55.438049],[10.60611,55.486382],[10.619165,55.619164],[10.745277000000101,55.482216]]],[[[12.579443,55.551384],[12.511944,55.6097180000001],[12.60611,55.69611],[12.67861,55.59055],[12.579443,55.551384]]],[[[10.630554,55.865555],[10.666893,55.892586],[10.613888,55.76332900000011],[10.527498,55.76583],[10.523611,55.98138],[10.562498000000119,55.996109],[10.560555,55.952774],[10.630554,55.865555]]],[[[12.567221,55.992218],[12.515554,55.91944100000012],[12.59861,55.793327],[12.600277,55.704163],[12.495554000000139,55.603882],[12.380833,55.609993000000145],[12.253332,55.552498],[12.190832,55.47861],[12.224165,55.427773],[12.430555,55.361664],[12.461666,55.286385],[12.014999000000103,55.161385],[12.18111,55.117218],[12.171665,54.998886],[12.071943,54.968605],[11.91389,55.004715],[11.900913000000116,54.97882],[11.730555,55.060555000000136],[11.797777,55.15583],[11.730833000000132,55.20361],[11.246666,55.19971],[11.187777,55.338882000000126],[11.218054,55.393608],[11.203609000000142,55.44888300000014],[11.089167,55.662773],[10.87361,55.7325],[11.211111,55.698883],[11.34333,55.747498000000114],[11.506388,55.86722],[11.491665,55.930275],[11.273333,55.991661000000136],[11.60639,55.936386],[11.76389,55.964722],[11.778332,55.948608],[11.670277000000112,55.890549],[11.67055,55.814163],[11.745277000000101,55.784164],[11.79444,55.66166],[11.914165,55.929718],[11.998888,55.89444],[12.05694,55.742218],[11.970554000000105,55.717499],[11.935833,55.653328],[12.05722,55.653328],[12.093887000000107,55.711105],[12.03972,55.924164],[12.007500000000105,55.959442],[11.866388,55.93721800000014],[11.859444,55.966660000000104],[12.290554,56.12888],[12.618889,56.041939],[12.567221,55.992218]]],[[[11.565832,56.67083000000014],[11.503332000000114,56.707771],[11.648054,56.723328],[11.64861100000013,56.719994],[11.565832,56.67083000000014]]],[[[8.924721,56.91861],[8.878887000000134,56.79860700000012],[8.766943,56.692215],[8.655277,56.67416400000013],[8.603054,56.72583],[8.509165,56.73555],[8.65,56.889442],[8.81361,56.904999],[8.85972,56.95527600000013],[8.924721,56.91861]]],[[[9.974274,57.07173200000011],[10.179443000000106,56.994164],[10.311891,56.981304],[10.26833,56.90416],[10.305277,56.748055],[9.866388000000143,56.65028],[10.33861,56.695274],[10.36360900000011,56.638885],[10.218887,56.55305],[10.187777,56.4686],[10.230833,56.47305],[10.230276,56.54944],[10.308666,56.57815900000014],[10.530277,56.50833],[10.786943,56.534164],[10.960833,56.445],[10.921389,56.343605],[10.744999,56.163887],[10.673887,56.18777],[10.684444,56.22110700000013],[10.611111,56.22361],[10.549166000000127,56.166382],[10.57778,56.123055],[10.54583200000013,56.098885],[10.353054,56.19527],[10.479443000000117,56.220551000000114],[10.508333,56.265],[10.40055500000011,56.290833],[10.216110000000128,56.146111],[10.279722,56.018883],[10.189165,55.828049],[10.09389,55.878609],[9.86555,55.84638200000012],[10.04861,55.81443800000011],[10.045832,55.750275],[9.992777,55.704994],[9.811666,55.66944],[9.55,55.705826],[9.819166,55.604721],[9.70417,55.53110500000014],[9.588333,55.421661],[9.596666000000141,55.367218],[9.71111100000013,55.26111],[9.68861,55.196938],[9.565277,55.187218000000136],[9.45917,55.123886],[9.5075,55.050278],[9.727499,54.98944100000011],[9.768055,54.891106],[9.737221,54.827774],[9.620554,54.85527000000013],[9.614166,54.890549],[9.648054000000116,54.9138870000001],[9.612778000000105,54.928329],[9.445358,54.825401],[9.342777,54.808609000000104],[9.253611,54.80888],[9.22416,54.853607],[8.94111,54.905548],[8.68611,54.898888],[8.654722000000106,54.981941],[8.676109,55.114166],[8.561388000000136,55.10083],[8.49583200000012,55.060272],[8.456944,55.123886],[8.506388,55.19749500000012],[8.592777,55.185555],[8.56916600000011,55.144165],[8.688889,55.136383],[8.623888,55.427498],[8.439999,55.45221700000013],[8.307499000000119,55.553329],[8.256943,55.49110400000012],[8.087221,55.548882],[8.185555000000136,55.74305],[8.127222,55.98555],[8.186388000000136,55.809998],[8.397221,55.897499],[8.31111,56.053055],[8.255,56.082771],[8.137499,56.110832],[8.141943000000138,55.996384],[8.108332,56.01777600000014],[8.118332,56.53083],[8.165277,56.6533280000001],[8.221109,56.70944200000014],[8.237778000000105,56.6877750000001],[8.203888,56.638054],[8.24972,56.604996],[8.470833,56.561104000000114],[8.632776,56.47527300000013],[8.728333,56.48222],[8.764444,56.56443800000011],[8.68111,56.619995],[8.952499,56.804718],[9.07557,56.807449],[9.113333,56.790276],[9.152498,56.70388800000011],[9.053333,56.628052],[9.05861,56.56694],[9.09111,56.568886],[9.106943,56.61055],[9.274166,56.629997],[9.25083,56.58027600000014],[9.321665,56.52555100000012],[9.376389,56.564995],[9.344166,56.56638],[9.304443,56.699997],[9.16611,56.67805],[9.178200000000118,56.916031],[9.309444,57.001938],[9.559166000000118,57.00471],[9.974274,57.07173200000011]]],[[[11.19583,57.31082900000012],[10.997499,57.22333],[10.854443000000117,57.26305],[11.02583,57.320274],[11.19583,57.31082900000012]]],[[[10.43249900000012,57.592216],[10.528055000000109,57.41389],[10.54222,57.229996000000135],[10.423887,57.157219],[10.33662,56.991665],[10.218611,56.992775],[10.006666,57.089989],[9.243889000000138,56.99555],[9.115549,57.05277300000011],[9.03861000000012,57.01194],[8.670832,56.945274],[8.607498,56.844162],[8.48722,56.788055],[8.46305500000011,56.697777],[8.415797,56.678127],[8.591389,56.686104],[8.60722,56.63055400000013],[8.554998,56.582497],[8.43693,56.65852],[8.240276,56.70722200000011],[8.26417,56.83277],[8.617222,57.121666],[8.766109,57.101105],[9.017221,57.15361],[9.39,57.15110800000013],[9.580555,57.241104],[9.949720000000127,57.583611],[10.218332,57.602219],[10.544167,57.740273],[10.645953000000132,57.736267],[10.526388,57.683609],[10.43249900000012,57.592216]]]]}},{"type":"Feature","properties":{"FIPS":"DJ","ISO2":"DJ","ISO3":"DJI","UN":262,"NAME":"Djibouti","AREA":2318,"POP2005":804206,"REGION":2,"SUBREGION":14,"LON":42.516,"LAT":11.9},"geometry":{"type":"Polygon","coordinates":[[[42.866806,11.585428],[43.157219,11.570833],[43.249222,11.469534],[42.944092,11.002438],[42.807777,10.988888],[42.751938,11.076666],[42.634438,11.098055],[42.358887,11.019165],[42.122772,10.998888],[42.012215,10.941944],[41.837219,10.973055],[41.789719,11.008055],[41.812492,11.24861],[41.759995,11.510555],[41.828606,11.74],[41.948608,11.816666],[42.308327,12.308332],[42.339439,12.396944],[42.456108,12.529165],[42.535828,12.504166],[42.698608,12.363888],[42.81916,12.440277],[42.821938,12.539721],[42.929718,12.623888],[43.121384,12.708332],[43.327496,12.476728],[43.412498,12.226387],[43.413887,12.056944],[43.369164,11.99],[43.199165,11.951944],[43.052216,11.801388],[42.774719,11.733889],[42.66861,11.557777],[42.508606,11.567221],[42.534164,11.506943],[42.623886,11.466665],[42.685829,11.485554],[42.663055,11.527777],[42.866806,11.585428]]]}},{"type":"Feature","properties":{"FIPS":"DO","ISO2":"DM","ISO3":"DMA","UN":212,"NAME":"Dominica","AREA":75,"POP2005":67827,"REGION":19,"SUBREGION":29,"LON":-61.356,"LAT":15.475},"geometry":{"type":"Polygon","coordinates":[[[-61.363617,15.198055],[-61.392784,15.354721],[-61.491394,15.540554],[-61.452225,15.631943],[-61.304169,15.57361],[-61.253334,15.461388],[-61.265007,15.258055],[-61.363617,15.198055]]]}},{"type":"Feature","properties":{"FIPS":"DR","ISO2":"DO","ISO3":"DOM","UN":214,"NAME":"Dominican Republic","AREA":4838,"POP2005":9469601,"REGION":19,"SUBREGION":29,"LON":-70.729,"LAT":19.015},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.532227,17.540276],[-71.522232,17.615276],[-71.46306,17.581944],[-71.49306,17.556389],[-71.532227,17.540276]]],[[[-68.574448,18.12944],[-68.57333,18.10166500000014],[-68.73195,18.119999],[-68.78389,18.195],[-68.597778,18.16139],[-68.574448,18.12944]]],[[[-70.783615,19.846664],[-70.63,19.75861],[-70.455,19.783607],[-70.27528,19.645554],[-70.125,19.620831],[-70.035568,19.682499],[-69.9364,19.671108000000117],[-69.88223,19.61222],[-69.876114,19.439999],[-69.75362,19.289444000000117],[-69.52585,19.335552],[-69.319168,19.316387],[-69.22168,19.362221],[-69.156113,19.2872200000001],[-69.220001,19.184166],[-69.60945,19.22666],[-69.63167,19.101665],[-69.41528,19.105831],[-69.35583,19.052219],[-69.19223,19.01194],[-68.926682,19.03083],[-68.729172,18.952774],[-68.32556,18.61666],[-68.44972,18.355831000000137],[-68.51889,18.344166],[-68.595,18.37833000000012],[-68.640289,18.208611000000133],[-68.701401,18.203331],[-68.755,18.216942],[-68.8325,18.357498],[-68.895279,18.396385],[-69.05972,18.39055],[-69.196945,18.42916],[-69.516678,18.402775000000133],[-69.69723,18.45694],[-69.881668,18.469444],[-70.010681,18.416895000000125],[-70.15417,18.233055],[-70.387512,18.236664],[-70.51083,18.19472],[-70.58703,18.27462400000013],[-70.586121,18.40166],[-70.690002,18.433887],[-70.730011,18.35805],[-70.866959,18.312222],[-70.93584,18.253887000000134],[-70.99084,18.295277000000112],[-71.079727,18.301109],[-71.10306,18.245831],[-71.055557,18.144444],[-71.426392,17.603611000000114],[-71.625565,17.836388],[-71.67223,17.97528],[-71.767868,18.038502],[-71.76918,18.202221],[-71.69473,18.32222],[-71.9075,18.437775],[-71.88501,18.47722],[-72.00307,18.60083],[-71.83168,18.6225],[-71.72612,18.71611],[-71.71529,18.874722],[-71.77917,18.957775],[-71.63501,19.15805],[-71.629181,19.219721000000103],[-71.74474,19.285831],[-71.691956,19.498333],[-71.754181,19.705830000000105],[-71.71722,19.706944],[-71.77585,19.778889000000106],[-71.66389,19.89527500000014],[-71.58334,19.908054],[-71.48584,19.90472],[-71.26083,19.823055],[-70.99806,19.93111],[-70.84195,19.90361],[-70.783615,19.846664]]]]}},{"type":"Feature","properties":{"FIPS":"EC","ISO2":"EC","ISO3":"ECU","UN":218,"NAME":"Ecuador","AREA":27684,"POP2005":13060993,"REGION":19,"SUBREGION":5,"LON":-78.497,"LAT":-1.385},"geometry":{"type":"MultiPolygon","coordinates":[[[[-80.19334,-3.03472],[-80.274445,-3.011389],[-80.26501,-2.850833],[-80.20668,-2.724167],[-80.01973,-2.66222],[-79.903061,-2.71972],[-79.927505,-2.764722],[-80.12361,-2.88833],[-80.11307,-3.00278],[-80.19334,-3.03472]]],[[[-79.838623,-2.641945],[-79.886948,-2.62694],[-79.85667,-2.46667],[-79.82167,-2.543612],[-79.838623,-2.641945]]],[[[-89.621124,-1.406667],[-89.68224,-1.401945],[-89.751953,-1.360833],[-89.64835,-1.34389],[-89.60945,-1.375834],[-89.621124,-1.406667]]],[[[-90.43445,-1.35528],[-90.523056,-1.30667],[-90.481674,-1.219167],[-90.36584,-1.26917],[-90.43445,-1.35528]]],[[[-90.043335,-0.838889],[-90.083069,-0.82917],[-90.08223,-0.801111],[-90.039734,-0.80944],[-90.043335,-0.838889]]],[[[-89.443619,-0.936667],[-89.53334,-0.95861],[-89.629456,-0.92722],[-89.417511,-0.72167],[-89.258621,-0.6875],[-89.27501,-0.76694],[-89.443619,-0.936667]]],[[[-90.260559,-0.75111],[-90.33862,-0.78139],[-90.43056,-0.77028],[-90.54333,-0.68889],[-90.535278,-0.58389],[-90.454453,-0.51389],[-90.29195,-0.498333],[-90.190567,-0.54278],[-90.19667,-0.683333],[-90.260559,-0.75111]]],[[[-91.4989,-0.49611],[-91.6125,-0.448333],[-91.663895,-0.31611],[-91.47111,-0.248056],[-91.4014,-0.308333],[-91.396118,-0.437222],[-91.4989,-0.49611]]],[[[-90.547501,-0.305],[-90.605835,-0.375556],[-90.824448,-0.33917],[-90.87445,-0.27],[-90.793335,-0.149444],[-90.62222,-0.21389],[-90.547501,-0.305]]],[[[-91.218903,-0.011111],[-91.17029,-0.240556],[-90.96417,-0.422778],[-90.96417,-0.551667],[-90.810837,-0.7325],[-90.87445,-0.91556],[-90.92639,-0.96833],[-91.16779,-1.03333],[-91.37611,-1.02667],[-91.424728,-1.015],[-91.491119,-0.92389],[-91.47612,-0.826389],[-91.3114,-0.68528],[-91.24028,-0.66194],[-91.15834,-0.6825],[-91.08057,-0.587222],[-91.1575,-0.54611],[-91.406403,-0.23167],[-91.424728,-0.025556],[-91.477509,-0.013611],[-91.56778,-0.055],[-91.605835,-0.005],[-91.383621,0.130278],[-91.315,0.115],[-91.275848,0.021111000000133],[-91.218903,-0.011111]]],[[[-90.45917,0.266389],[-90.53584,0.296667],[-90.532501,0.346667],[-90.478897,0.364444],[-90.40834,0.32694400000014],[-90.45917,0.266389]]],[[[-90.751114,0.5475],[-90.79973,0.563333000000114],[-90.79224,0.651667],[-90.74695,0.60777800000011],[-90.751114,0.5475]]],[[[-78.91223,1.23917],[-78.962509,1.236944],[-78.9989,1.275],[-78.90334,1.367778000000101],[-78.91223,1.23917]]],[[[-78.591675,1.243055],[-78.560287,1.198611000000142],[-78.46861,1.195555],[-78.348068,1.064167000000111],[-78.241394,1.027222],[-78.091675,0.910555],[-77.995834,0.90417],[-77.84584,0.81139],[-77.67834,0.837222000000111],[-77.640289,0.721667],[-77.54167,0.656111],[-77.45251,0.645833],[-77.42445,0.413333000000137],[-77.37946,0.384722],[-77.2189,0.33611100000013],[-77.079605,0.35956],[-77.02972,0.3025],[-76.868896,0.238611000000105],[-76.72696,0.258611],[-76.71194,0.285833000000139],[-76.550293,0.218056],[-76.407791,0.271667],[-76.400848,0.3923190000001],[-76.243057,0.395555],[-76.043274,0.339992],[-75.91278,0.16333],[-75.75528,0.043333],[-75.58334,0.037222],[-75.43445,-0.05944],[-75.29279,-0.106667],[-75.305283,-0.134722],[-75.4189,-0.165],[-75.61974,-0.106667],[-75.626114,-0.1725],[-75.48556,-0.22667],[-75.40945,-0.42583],[-75.24612,-0.554167],[-75.29279,-0.73056],[-75.21608,-0.96534],[-75.32501,-0.981111],[-75.402237,-0.92278],[-75.55917,-1.53417],[-76.07417,-2.13111],[-76.66063,-2.57213],[-77.85722,-2.98444],[-78.205841,-3.33917],[-78.21779,-3.36917],[-78.1689,-3.45],[-78.23195,-3.51861],[-78.25584,-3.51694],[-78.2664,-3.417778],[-78.33751,-3.422778],[-78.39639,-3.738611],[-78.53168,-3.912778],[-78.563614,-4.09556],[-78.67207,-4.307094],[-78.665558,-4.554445],[-78.87611,-4.677222],[-78.918335,-4.73917],[-78.928619,-4.868334],[-79.05482,-5.00913],[-79.10695,-4.97139],[-79.29085,-4.96333],[-79.440002,-4.80889],[-79.53917,-4.52083],[-79.63667,-4.438056],[-79.813614,-4.48],[-80.1346,-4.284491],[-80.36334,-4.46778],[-80.47778,-4.42806],[-80.47806,-4.383334],[-80.335556,-4.19944],[-80.441681,-4.222778],[-80.468613,-4.20111],[-80.501678,-4.05028],[-80.46722,-3.98694],[-80.38612,-3.979167],[-80.316391,-4.01306],[-80.15334,-3.884228],[-80.21139,-3.73917],[-80.25389,-3.420834],[-80.34042,-3.380517],[-80.291397,-3.328333],[-80.14279,-3.33472],[-79.954453,-3.20667],[-79.781113,-2.659167],[-79.727509,-2.60278],[-79.7489,-2.48472],[-79.79001,-2.48333],[-79.84584,-2.376389],[-79.854172,-2.187222],[-79.762222,-2.018889],[-79.88972,-2.103056],[-79.90279,-2.211389],[-79.86334,-2.281111],[-79.899445,-2.55222],[-80.0025,-2.6125],[-80.06222,-2.581944],[-80.00917,-2.36222],[-79.951675,-2.31028],[-80.015015,-2.33167],[-80.10251,-2.509167],[-80.21722,-2.626389],[-80.25639,-2.73639],[-80.456116,-2.633334],[-80.686951,-2.39417],[-80.79918,-2.37778],[-80.890015,-2.320556],[-80.97667,-2.185],[-80.91945,-2.20583],[-80.783615,-2.123056],[-80.73029,-1.93194],[-80.85529,-1.592778],[-80.78418,-1.46306],[-80.755844,-1.32917],[-80.915558,-1.055],[-80.835556,-0.9275],[-80.62167,-0.92778],[-80.575562,-0.898056],[-80.43028,-0.565833],[-80.38223,-0.63333],[-80.26472,-0.627222],[-80.37862,-0.60889],[-80.50195,-0.3675],[-80.340286,-0.18694],[-80.23222,-0.12917],[-80.068344,0.062778],[-80.04028,0.3575],[-80.00314,0.34297],[-79.992233,0.36638900000014],[-80.04806,0.484444],[-80.023346,0.591111],[-80.11,0.681667],[-80.104446,0.763611],[-80.059723,0.828611000000137],[-79.86362,0.868611],[-79.66139,0.996667],[-79.54529,0.992778000000101],[-79.44362,1.074722],[-79.17834,1.088611],[-79.07973,1.187500000000114],[-78.999451,1.172222],[-78.88929,1.23837],[-78.87445,1.338333],[-78.80972,1.43778],[-78.677505,1.285555],[-78.591675,1.243055]]]]}},{"type":"Feature","properties":{"FIPS":"EG","ISO2":"EG","ISO3":"EGY","UN":818,"NAME":"Egypt","AREA":99545,"POP2005":72849793,"REGION":2,"SUBREGION":15,"LON":29.872,"LAT":26.494},"geometry":{"type":"MultiPolygon","coordinates":[[[[34.001389,26.707222],[33.98749500000014,26.71722],[33.959999,26.78833],[33.99472,26.749722],[34.001389,26.707222]]],[[[34.02638,27.498333],[34.041939,27.442219],[33.926109,27.49555],[33.917496,27.526386],[33.97333,27.534721],[34.02638,27.498333]]],[[[32.047218,31.14333],[32.041939,31.14222],[32.04277,31.158054],[32.04999500000014,31.15333],[32.047218,31.14333]]],[[[33.476662,31.137497],[33.42499500000014,31.16555],[33.26666,31.215275],[33.400551,31.181664000000122],[33.476662,31.137497]]],[[[33.19527,31.232777],[33.253609,31.221664],[33.261383,31.214996],[33.101662,31.227219000000108],[32.976662,31.168331],[33.096107,31.232498],[33.19527,31.232777]]],[[[25.316666,31.50111],[25.94722,31.617775],[26.373055,31.513611],[27.331108,31.374996],[27.38111,31.264721],[27.438889,31.222775],[27.657219,31.172497000000135],[27.847775000000123,31.24361],[27.914719000000105,31.099442000000128],[28.40972,31.08472],[28.75528,30.974998],[28.897499,30.87194],[29.06944,30.82166],[29.224998,30.84222],[29.483330000000137,30.937775],[30.064442,31.320274],[30.144444,31.22083],[30.29,31.236942],[30.354443,31.44833],[30.38943,31.441889],[30.35749800000013,31.507774],[30.494442000000106,31.451385],[30.96333,31.57722],[30.560276,31.422775],[30.54416700000013,31.391109],[30.9025,31.420277],[31.007221,31.480274],[31.132221000000126,31.50222],[31.10889,31.54583],[30.97666500000014,31.58388],[31.027775,31.600555],[31.22583,31.574444],[31.556942,31.442219000000136],[31.755554,31.479164],[31.871704,31.53491800000012],[31.92148,31.52988],[32.041382,31.382221],[32.204994,31.29],[32.017220000000115,31.38055],[31.899998,31.531109],[31.856110000000115,31.513332],[31.773888000000113,31.271664],[31.798225000000116,31.284695],[31.927498,31.181664000000122],[32.034721,31.213886],[32.03608,31.143202],[32.07805,31.0825],[32.14307,31.074165],[32.18777,31.126389],[32.230042,31.103264000000138],[32.28777300000012,31.132500000000103],[32.279999,31.263611],[32.210548,31.288055],[32.331108,31.268330000000102],[32.552216,31.070274],[32.71721600000012,31.032497],[33.111664,31.19305],[33.143608,31.058331000000123],[33.410553,31.15472],[33.532776000000126,31.116943],[33.743889,31.133331000000116],[34.04055,31.223053],[34.21666,31.323330000000112],[34.48944100000011,30.691109],[34.558884,30.486111],[34.545273,30.406944],[34.614441,30.364998],[34.723343,30.089344],[34.903801,29.486706],[34.854439,29.468052000000114],[34.76138300000014,29.334721000000112],[34.66555,29.03916500000014],[34.627777,28.734165000000132],[34.40610500000014,28.309998],[34.453049000000135,28.166111000000114],[34.44194,27.99694],[34.29416700000013,27.854443000000117],[34.25444,27.728611],[33.763329,28.021942],[33.565552,28.293888],[33.433884,28.360832],[33.24277,28.554443000000106],[33.19638800000013,28.671387],[33.17027300000012,29.004719],[32.889717,29.233608000000117],[32.741386,29.45472000000012],[32.68972,29.616386],[32.695549,29.728054],[32.606384000000105,29.825832],[32.575,30.005276],[32.47416,29.933052],[32.45944200000014,29.895554],[32.493332,29.86278],[32.35611,29.674999000000128],[32.34083,29.59278],[32.59638200000012,29.340553],[32.66555,29.10278],[32.62389,29.056389],[32.61972,28.97805],[32.688606,28.867775],[32.80805,28.772221000000116],[32.860832,28.626389],[32.99916100000013,28.484444],[33.12999700000012,28.27916],[33.334442,28.074997],[33.479721,27.989441],[33.558884,27.88305300000013],[33.585548,27.791664],[33.487778,27.838886],[33.46889,27.81222200000013],[33.49472000000014,27.643887],[33.633049,27.489998],[33.70416300000011,27.32],[33.836662,27.24249600000013],[33.835548,27.11389],[33.94638800000013,26.93111],[33.935272,26.659443],[34.009995,26.613888],[34.324165,26.026108],[34.549438,25.727219000000105],[35.086662,24.723053],[35.138611,24.517498000000103],[35.383049,24.29055],[35.45166000000012,24.17833],[35.754997,23.986111],[35.81305,23.916111],[35.60611,23.93472],[35.536659,23.985832],[35.483055,23.938332000000116],[35.47583,23.811943],[35.51611,23.712219],[35.490829,23.489719],[35.54361,23.403332],[35.570549,23.233887],[35.642776,23.110554],[35.670555,22.96583],[35.849442,22.759441],[36.23333,22.6325],[36.465553000000114,22.318333],[36.550827,22.296944000000106],[36.7502750000001,22.161663],[36.88277,22.057777],[36.89333,22.003052],[31.453888,21.998333],[31.51610900000014,22.16555],[31.441109,22.23222],[31.39222000000012,22.21027800000013],[31.271111000000133,21.998333],[25.001423,21.99969],[24.99778,29.248886],[24.877499,29.506386],[24.83472,29.876663],[24.70666,30.16861],[24.926109,30.50611],[25.019165,30.787498],[24.869442,31.156387],[24.868332,31.374996],[25.00916300000011,31.481110000000115],[25.148052,31.64611],[25.17416,31.53722],[25.316666,31.50111]]]]}},{"type":"Feature","properties":{"FIPS":"EI","ISO2":"IE","ISO3":"IRL","UN":372,"NAME":"Ireland","AREA":6889,"POP2005":4143294,"REGION":150,"SUBREGION":154,"LON":-8.152,"LAT":53.177},"geometry":{"type":"MultiPolygon","coordinates":[[[[-9.65639,53.222221],[-9.70389,53.22694400000012],[-9.72472,53.268051],[-9.660833,53.279999],[-9.65639,53.222221]]],[[[-9.964169,54.018608],[-9.92389,53.950554000000125],[-9.955,53.876663],[-10.15222,53.959717000000126],[-10.268612,53.974998],[-10.19667,54.00833100000011],[-9.964169,54.018608]]],[[[-8.43694,54.944443],[-8.448891,54.945274],[-8.45389,54.95499],[-8.43861,54.955276],[-8.43694,54.944443]]],[[[-8.518612,54.964165],[-8.56444,54.972771],[-8.54695,55.01194],[-8.49056,54.99472],[-8.518612,54.964165]]],[[[-7.40639,54.953331],[-7.55333,54.762772],[-7.73917,54.710548],[-7.82972,54.73555],[-7.927501,54.69888300000014],[-7.752223,54.594444],[-8.17167,54.463879000000134],[-8.05583,54.366386],[-7.878056,54.28916],[-7.8675,54.2241590000001],[-7.82056,54.19916500000011],[-7.69694,54.2024990000001],[-7.55944,54.126938],[-7.330278,54.113052],[-7.14583,54.225273],[-7.175556,54.28916],[-7.16083,54.33666],[-7.02528,54.41693900000013],[-6.87611,54.345276],[-6.625,54.039162],[-6.4475,54.058327],[-6.33889,54.115555],[-6.10528,54.002777],[-6.155001,53.972221],[-6.35056,54.013885],[-6.38194,53.94944],[-6.36222,53.888054],[-6.255,53.833611],[-6.21417,53.635551],[-6.081112,53.56360600000011],[-6.14972,53.386108],[-6.22472,53.35388],[-6.11056,53.252495],[-6.03556,53.11388],[-6.013056,52.945],[-6.218056,52.66027],[-6.21111,52.53833],[-6.361945,52.392776],[-6.498889,52.356110000000115],[-6.321667,52.240273],[-6.357779,52.18055],[-6.78944,52.216942],[-6.83278,52.169716],[-6.9025,52.166382],[-6.994722,52.28277600000012],[-6.97417,52.168053],[-7.00528,52.13611],[-7.160278,52.15028],[-7.578889,52.100273],[-7.62028,52.06472],[-7.546112,52.05305],[-7.58833,51.991661],[-7.725278,51.93777],[-7.823611,51.944443],[-7.85134,51.976799],[-7.88917,51.890274],[-8.16639,51.792221],[-8.24383,51.80677],[-8.175556,51.854439],[-8.210556,51.88444],[-8.421112,51.88389],[-8.334723,51.866943],[-8.297001,51.803719],[-8.31306,51.738609],[-8.694168,51.573608],[-9.11222,51.54805],[-9.23417,51.48055],[-9.378334,51.470833],[-9.45472,51.53083],[-9.63833,51.50944],[-9.817501,51.445549],[-9.800835,51.490273],[-9.64972,51.551109],[-9.591946,51.609993],[-9.84472,51.547775],[-9.45167,51.68805],[-9.45167,51.724716000000114],[-9.53556,51.750000000000114],[-9.630112,51.686829],[-10.1325,51.59333],[-9.98806,51.677773],[-9.99667,51.719444],[-9.5775,51.87221],[-10.10195,51.752220000000136],[-10.18278,51.78583],[-10.205278,51.847221],[-10.338593,51.782921],[-10.371946,51.87888],[-10.263613,51.988052],[-9.986668,52.049995],[-9.75778,52.148605],[-10.444168,52.092499],[-10.470001,52.107498],[-10.464724,52.179718],[-10.169445,52.287498],[-9.94583,52.23027],[-9.740835,52.24472000000014],[-9.83583,52.286659],[-9.83972,52.379715],[-9.651669,52.56194],[-9.33167,52.57111],[-8.81833,52.66555],[-9.028057,52.730553],[-9.16694,52.61666],[-9.554167,52.638054],[-9.707779,52.57638],[-9.93639,52.55583200000012],[-9.81167,52.593887],[-9.485834,52.80055],[-9.394724,52.926666],[-9.473333,52.940552],[-9.26667,53.14944],[-9.15417,53.106941],[-9.00148,53.145592],[-9.04361,53.166664],[-8.938057,53.140549],[-8.94111,53.26416],[-9.60806,53.232216],[-9.624168,53.25361],[-9.55778,53.335548],[-9.563334,53.38333],[-9.655001,53.385826],[-9.786667,53.294167],[-9.90472,53.31721],[-9.88311,53.35377],[-9.789446,53.38666500000011],[-9.80611,53.417221],[-9.95917,53.371941000000106],[-10.175835,53.407776],[-10.18611,53.550278000000105],[-9.99445,53.60638],[-9.69528,53.59861],[-9.91306,53.6475],[-9.906389,53.75861],[-9.587778,53.784439000000134],[-9.56944,53.799438],[-9.617224,53.811943],[-9.61417,53.83527400000014],[-9.56139,53.8597180000001],[-9.56778,53.894722],[-9.940556,53.866943],[-9.91278,53.94944],[-9.81194,53.93972],[-9.7975,53.909439],[-9.787779,53.94194],[-9.935835,54.060829],[-9.94883,54.18005],[-10.00611,54.21889],[-10.083612,54.148605],[-10.06695,54.088608],[-10.12444,54.09638200000012],[-10.11222,54.229996],[-10.003056,54.30138],[-9.88417,54.258331],[-9.92389,54.221382],[-9.982779,54.233887],[-9.974167,54.21333],[-9.892778,54.208054],[-9.84639,54.322777],[-9.79667,54.33472],[-9.33639,54.3169400000001],[-9.211945,54.27471900000012],[-9.131773,54.159683],[-9.13139,54.20082900000011],[-9.04139,54.286942],[-8.62,54.257217],[-8.471668,54.27388800000011],[-8.519445,54.326111],[-8.668335,54.349442000000124],[-8.38098,54.467087],[-8.28444,54.473328],[-8.26611,54.52416],[-8.17,54.591385],[-8.188334,54.633606],[-8.58445,54.609718],[-8.788334,54.657494],[-8.800835,54.691666],[-8.31583,54.86972],[-8.339169,54.90361000000013],[-8.38611,54.879997],[-8.4375,54.896942],[-8.459723,54.93833],[-8.38512,54.94198],[-8.45667,54.99860400000011],[-8.3175,55.108887],[-8.022223,55.181664000000126],[-7.98145,55.216457],[-7.899699,55.177803],[-7.79351,55.243118],[-7.810835,55.176472],[-7.712197,55.1587],[-7.696667,55.093048],[-7.6675,55.146385],[-7.69861,55.214165],[-7.720278,55.21666],[-7.715751,55.171139],[-7.79173,55.21201700000011],[-7.6575,55.274437],[-7.525278,55.120552],[-7.63639,55.03833],[-7.68139,54.948326],[-7.446945,55.053604],[-7.45583,55.135551000000135],[-7.55056,55.20888],[-7.51194,55.274437],[-7.391389,55.29027600000012],[-7.354445,55.33361100000013],[-7.393889,55.37944],[-6.931667,55.235832],[-7.18361,55.131943],[-7.32639,55.04527300000012],[-7.40639,54.953331]]]]}},{"type":"Feature","properties":{"FIPS":"EK","ISO2":"GQ","ISO3":"GNQ","UN":226,"NAME":"Equatorial Guinea","AREA":2805,"POP2005":484098,"REGION":2,"SUBREGION":17,"LON":10.488,"LAT":1.607},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.641388,-1.47472],[5.615277,-1.469167],[5.633888000000126,-1.42056],[5.647499,-1.446389],[5.641388,-1.47472]]],[[[10.02611,2.16806],[11.339764,2.168611],[11.35389,1.001944],[9.992213,1.00188],[9.94392,0.926066],[9.80398,1.002608],[9.844721000000106,1.079167],[9.75694,1.101111000000117],[9.571943,1.071666000000107],[9.543888,1.125],[9.494165,1.136389000000122],[9.393888,1.111666],[9.356943,1.167222],[9.456944,1.390833],[9.639444,1.583889],[9.611944,1.660278],[9.814165,1.92472],[9.772499,2.324722000000122],[9.811764,2.343698],[9.83861,2.251111],[10.02611,2.16806]]],[[[8.85667,3.49944],[8.691387000000134,3.196389000000124],[8.44611,3.27444400000013],[8.424166000000126,3.346944],[8.44972,3.435277],[8.581944,3.467222],[8.625043,3.650001],[8.68611,3.741666],[8.908609000000126,3.751944],[8.958887000000118,3.703888],[8.950554,3.624722],[8.85667,3.49944]]]]}},{"type":"Feature","properties":{"FIPS":"EN","ISO2":"EE","ISO3":"EST","UN":233,"NAME":"Estonia","AREA":4239,"POP2005":1344312,"REGION":150,"SUBREGION":154,"LON":25.793,"LAT":58.674},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.990829,58.099998],[23.938885,58.11444100000011],[23.947773,58.147217],[24.022186,58.14275],[23.990829,58.099998]]],[[[22.990829,58.597771],[23.273052,58.491936],[23.332775,58.441658],[23.142494000000113,58.44360400000011],[23.02861,58.35777300000012],[22.756943,58.240273000000116],[22.36749600000013,58.219711],[22.2716640000001,58.178604],[22.202496,57.986107],[22.051662,57.90971400000012],[21.994160000000136,57.922768],[21.98582800000014,57.976379],[22.201385,58.144714],[21.84860600000013,58.278877000000136],[21.874439,58.339989],[22.0075,58.35332],[21.83194,58.50499700000011],[22.112495000000134,58.492218],[22.19833,58.54943800000012],[22.501663,58.602219],[22.990829,58.597771]]],[[[23.364998,58.529991000000116],[23.227219000000105,58.529716],[23.057774,58.60833000000013],[23.149719,58.670273],[23.247459,58.671051],[23.347218,58.6386030000001],[23.399162,58.558884],[23.364998,58.529991000000116]]],[[[23.277222,58.963051],[23.152496,58.9658280000001],[23.110828,59.024712],[23.325829000000113,59.037498],[23.391663,58.99805],[23.277222,58.963051]]],[[[22.749718000000144,59.00000000000011],[22.929718,58.98249],[23.045277,58.83638],[22.88444,58.833054],[22.88444,58.779716],[22.848053,58.7736],[22.784443,58.775826],[22.829163,58.81832900000011],[22.77583,58.81860400000011],[22.666939,58.705269],[22.53167,58.688599],[22.469715,58.703606],[22.44999700000011,58.831383],[22.381939,58.88694],[22.229439000000127,58.87804],[22.04222,58.939987],[22.375553,58.95166],[22.468052,58.978043],[22.575829000000113,59.068604],[22.699162,59.051384],[22.70305,59.013611],[22.749718000000144,59.00000000000011]]],[[[25.780277,59.628876000000105],[25.873051,59.598877],[25.97999600000014,59.632767],[26.479996,59.53388200000012],[26.65055100000012,59.553322],[26.98083,59.44388],[27.427219,59.44833],[27.848053,59.40665400000012],[27.953884,59.42527000000013],[28.015831,59.4786],[28.180828,59.389435],[28.19361,59.363327],[28.143995,59.290802],[27.912537,59.27182],[27.788052000000107,59.058601],[27.493607,58.881935],[27.423050000000103,58.80138],[27.542496000000142,58.413879],[27.539165,58.361664],[27.464718,58.297775],[27.474163,58.213882],[27.554165,58.13276700000011],[27.67332800000014,58.07888000000014],[27.686661,57.965271],[27.82111,57.865829],[27.545830000000137,57.817772],[27.348053,57.59554300000013],[27.372059,57.535637],[27.08722,57.56221],[27.01861,57.611382],[26.898331,57.633881],[26.53889,57.522217000000126],[26.299164,57.611382],[26.034996,57.823326],[25.62277200000011,57.916382],[25.294998000000135,58.084435],[25.263054000000125,58.06916],[25.299999,58.01416],[25.247215,57.99249],[25.17972,58.070274],[25.12443900000011,58.076103],[24.723885,57.964996],[24.54277400000012,57.95166],[24.420273,57.874435],[24.31498,57.871826],[24.456661,58.076103],[24.472771,58.247215],[24.542496,58.284439],[24.55555,58.327217],[24.458885,58.37833],[24.335552,58.3886],[24.246105,58.27666],[24.110554,58.232208],[23.973328,58.315826],[23.770832,58.346939],[23.679161,58.425552],[23.63082900000012,58.5236],[23.50111,58.576942],[23.495548,58.69415],[23.529442,58.741661],[23.874996,58.7686],[23.79139,58.800827],[23.483051000000103,58.80999],[23.416107,58.910545],[23.431107,58.93943000000014],[23.637775,58.970543000000134],[23.623329,59.015549],[23.56028,59.047493],[23.611942,59.010277],[23.514164000000108,58.981102],[23.407219,59.0186],[23.482494,59.08943],[23.470551,59.212494],[23.727219,59.22971],[23.742218,59.278603],[24.027222,59.287773],[24.03722,59.390549],[24.21221500000013,59.344994],[24.350552,59.47137500000013],[24.72277,59.45277],[24.791943,59.51028],[24.776665,59.564438],[24.909439,59.507217],[25.121941,59.533333],[25.392494,59.485825],[25.490829,59.561104],[25.476383000000112,59.66304800000012],[25.655552,59.562767],[25.715271,59.579437],[25.683605,59.664711],[25.780277,59.628876000000105]]]]}},{"type":"Feature","properties":{"FIPS":"ER","ISO2":"ER","ISO3":"ERI","UN":232,"NAME":"Eritrea","AREA":10100,"POP2005":4526722,"REGION":2,"SUBREGION":14,"LON":38.219,"LAT":16.045},"geometry":{"type":"MultiPolygon","coordinates":[[[[40.087219,15.851665],[40.141388,15.80361],[40.12888,15.718611],[40.161942,15.642776],[40.23749500000014,15.628054],[40.251938,15.655554],[40.221939,15.68694],[40.29639,15.699165000000107],[40.402771,15.638332000000107],[40.419441,15.57388900000012],[39.977776,15.605],[39.953552,15.678444],[40.034439,15.638611],[40.080551,15.6675],[40.0191650000001,15.73166700000013],[39.934,15.7435],[39.92889,15.78889],[40.03999,15.82861],[40,15.885777],[40.087219,15.851665]]],[[[40.113327,16.055832],[40.104721,15.987778],[39.979721,16.012218000000132],[40.030273,16.095276],[40.113327,16.055832]]],[[[38.797775,17.65333],[38.945274,17.348053],[39.13888500000013,16.770554000000114],[39.2691650000001,15.988609],[39.305832,15.901943],[39.423607,15.769722],[39.459717,15.521111],[39.55555,15.538332000000137],[39.617218,15.48139],[39.714439,15.257776],[39.692772,15.138054],[39.714996,15.091944],[39.76778000000013,15.062777],[39.81833,15.081388],[39.85527,15.190277],[39.81694,15.281666],[39.781944,15.260832],[39.771111,15.397499],[39.88139,15.489443],[40.050278000000105,15.289444],[40.02471900000012,15.237499000000126],[40.17083,14.973610000000122],[40.301109,14.911665],[40.455276,15.00861],[40.673882,14.904165],[40.80722,14.705555],[40.882774,14.71611],[41.17055,14.6325],[41.611938,14.06778],[41.676666000000125,13.93583],[41.95444,13.85861],[42.18444,13.576666000000102],[42.231384,13.553888000000143],[42.217773,13.6375],[42.15833,13.654722],[42.174721,13.669167],[42.222496,13.636665],[42.283333,13.575554],[42.374718,13.214998],[42.57527,13.161943],[42.71666,13.047499],[42.804718,12.845],[42.944717,12.801943000000108],[42.986107,12.823332],[43.00222,12.894165],[43.079437,12.828609],[43.121384,12.70833],[42.92972,12.623888],[42.8219380000001,12.539721],[42.808884,12.429722],[42.69861,12.363888],[42.501389,12.516666],[42.45611,12.529165],[42.399719,12.469721],[42.198051,12.742777],[41.957222,12.881388],[41.75694,13.23639],[41.22499800000014,13.605],[41.06860400000011,13.872776000000101],[40.814438,14.145277],[40.552773,14.220276000000124],[40.271111000000126,14.424721],[40.15666,14.464722],[39.920555,14.427776],[39.78944400000011,14.513611],[39.688889,14.494444],[39.531387,14.565554],[39.47749,14.507776],[39.263054,14.47361],[39.209717,14.485554],[39.135277,14.617777],[39.02402100000012,14.655162000000132],[39.010826,14.58527800000013],[38.893051,14.500832],[38.44944,14.4175],[38.33416,14.518610000000136],[38.261665,14.679443000000106],[38.035553,14.724165],[37.911385,14.88361],[37.57221,14.102253],[37.52444,14.11861],[37.388611,14.360554],[37.291664,14.451944],[37.12722,14.429998],[37.084442,14.297499],[37.008888,14.26194],[36.824997,14.328054],[36.63832900000011,14.316111],[36.54281600000013,14.262053],[36.44328300000012,15.149952],[36.54277,15.234722],[36.69778,15.753054],[36.763611,15.80805400000014],[36.915833,16.215],[36.97305300000011,16.269444],[36.95694,16.425278000000105],[36.896385000000116,16.51778],[36.912216000000114,16.641109000000142],[37.009163,16.782497],[36.995827,17.073887],[37.151939,17.015553],[37.423286,17.034214],[37.52057600000012,17.195801],[37.51249700000011,17.32333],[37.895554,17.441387000000134],[38.05583,17.551941],[38.13555,17.498886],[38.25777,17.5325],[38.370277,17.666111],[38.458611,17.87111],[38.60069,17.994881],[38.797775,17.65333]]]]}},{"type":"Feature","properties":{"FIPS":"ES","ISO2":"SV","ISO3":"SLV","UN":222,"NAME":"El Salvador","AREA":2072,"POP2005":6668356,"REGION":19,"SUBREGION":13,"LON":-88.866,"LAT":13.736},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6864,13.168333],[-87.72168,13.16805],[-87.723068,13.21472],[-87.70222,13.211943],[-87.6864,13.168333]]],[[[-89.33974,14.416111],[-89.12112,14.32361],[-89.027512,14.330276],[-88.960007,14.19305],[-88.88028,14.192778],[-88.82167,14.09333],[-88.755569,14.136389],[-88.69862,14.03639],[-88.504181,13.98139],[-88.47084,13.855276],[-88.41307,13.88361],[-88.35223,13.867777],[-88.25961,13.905283],[-88.19688,13.987619],[-88.12195,13.990555],[-88.060013,13.963888],[-88.00586,13.875046],[-87.80084,13.896944000000131],[-87.75029,13.864166],[-87.69467,13.819008],[-87.784256,13.525038],[-87.7198,13.509706],[-87.71335,13.471109],[-87.81558,13.405386],[-87.83667,13.437222],[-87.87167,13.389166000000102],[-87.785004,13.297777000000108],[-87.795837,13.263332000000105],[-87.93779,13.156387],[-88.409508,13.18711],[-88.607224,13.284166000000141],[-88.719727,13.268888000000118],[-88.579727,13.261944],[-88.49601,13.18922],[-88.7589,13.23555],[-89.296951,13.48305],[-89.80917,13.52611],[-89.858063,13.616665],[-90.09639,13.745832],[-90.092514,13.86055],[-90.01889,13.94028],[-89.854446,14.059444],[-89.73973,14.04139],[-89.74556,14.079721],[-89.6864,14.169998000000135],[-89.51779,14.230276],[-89.54472,14.30639],[-89.59029,14.32194],[-89.573059,14.413332],[-89.33974,14.416111]]]]}},{"type":"Feature","properties":{"FIPS":"ET","ISO2":"ET","ISO3":"ETH","UN":231,"NAME":"Ethiopia","AREA":100000,"POP2005":78985857,"REGION":2,"SUBREGION":14,"LON":39.616,"LAT":8.626},"geometry":{"type":"Polygon","coordinates":[[[36.542816,14.262053],[36.638329,14.316111],[36.824997,14.328054],[37.008888,14.261944],[37.084442,14.297499],[37.12722,14.429998],[37.291664,14.451944],[37.388611,14.360554],[37.524437,14.11861],[37.572212,14.102253],[37.911385,14.88361],[38.035553,14.724165],[38.261665,14.679443],[38.33416,14.51861],[38.44944,14.4175],[38.893051,14.500832],[39.010826,14.585278],[39.024021,14.655162],[39.135277,14.617777],[39.209717,14.485554],[39.263054,14.47361],[39.477493,14.507776],[39.531387,14.565554],[39.688889,14.494444],[39.789444,14.513611],[39.920555,14.427776],[40.156662,14.464722],[40.271111,14.424721],[40.552773,14.220276],[40.801941,14.154165],[41.068604,13.872776],[41.224998,13.605],[41.756943,13.236387],[41.957222,12.881388],[42.198051,12.742777],[42.399719,12.469721],[41.948608,11.816666],[41.828606,11.74],[41.759995,11.510555],[41.812492,11.24861],[41.789719,11.008055],[41.837219,10.973055],[42.012215,10.941944],[42.122772,10.998888],[42.358887,11.019165],[42.634438,11.098055],[42.751938,11.076666],[42.807777,10.988888],[42.944092,11.002438],[42.66555,10.621387],[42.78611,10.455555],[42.861107,10.204443],[43.009163,10.0875],[43.076942,9.931389],[43.21611,9.881388],[43.275276,9.645555],[43.386665,9.556944],[43.438332,9.419443],[43.583054,9.336111],[43.62722,9.354443],[44.010551,9.007221],[46.99472,8.006109],[47.987221,8.00111],[46.561386,6.619444],[44.950829,4.902499],[43.981941,4.963055],[43.686386,4.891944],[43.163887,4.670833],[42.98027,4.520555],[42.925827,4.371944],[42.860275,4.306944],[42.379166,4.203055],[42.117775,4.193889],[41.955826,4.085278],[41.937218,4.016944],[41.843605,3.9475],[41.722771,4.000555],[41.472221,3.949444],[41.160553,3.945833],[40.783768,4.287975],[39.866661,3.869444],[39.782776,3.678333],[39.594994,3.500833],[39.560272,3.406666],[39.524437,3.406389],[39.498055,3.455277],[39.331383,3.469166],[39.328888,3.501667],[39.248886,3.471389],[39.084717,3.534444],[38.913605,3.513889],[38.516937,3.626944],[38.448051,3.599444],[38.121109,3.611666],[37.998055,3.728611],[37.130272,4.286388],[37.039719,4.375555],[36.887772,4.434722],[36.045296,4.44708],[35.951111,4.521111],[35.940552,4.622499],[35.774437,4.798611],[35.773888,5.075277],[35.832497,5.166111],[35.795273,5.237499],[35.821663,5.32861],[35.504715,5.431389],[35.447495,5.429444],[35.356384,5.350277],[35.301941,5.378055],[35.269722,5.441111],[35.289993,5.507777],[35.103882,5.6325],[35.105827,5.692778],[34.986382,5.878055],[34.981384,6.06111],[34.870552,6.237499],[34.762772,6.605833],[34.70472,6.677777],[34.637497,6.727221],[34.529999,6.743889],[34.469994,6.916111],[34.294701,6.966427],[34.236938,7.017777],[34.16333,7.171666],[34.027222,7.245],[34.025551,7.383055],[33.711388,7.660277],[33.470276,7.743333],[33.053886,7.788888],[32.991104,7.924999],[33.114716,8.096943],[33.186424,8.136978],[33.166107,8.392776],[33.252777,8.458611],[33.387772,8.437777],[33.631943,8.469721],[33.693329,8.386389],[33.771324,8.367748],[33.852493,8.425833],[33.978882,8.441387],[34.120552,8.577221],[34.134995,8.955276],[34.085831,9.553055],[34.231384,10.030277],[34.323051,10.117222],[34.347771,10.231943],[34.28611,10.554165],[34.43972,10.784443],[34.594444,10.887777],[34.800552,10.723331],[34.864441,10.734999],[34.975273,10.864443],[34.978607,10.915277],[34.933327,10.956665],[35.0075,11.198332],[34.963882,11.256943],[35.093605,11.557777],[35.058052,11.720554],[35.096939,11.826944],[35.265434,11.933611],[35.645554,12.588888],[35.695274,12.612221],[35.70108,12.666115],[36.006386,12.724165],[36.142693,12.706923],[36.165276,12.875277],[36.132774,12.923332],[36.169716,12.984165],[36.159439,13.041666],[36.248604,13.368055],[36.397499,13.567778],[36.486938,13.839443],[36.446388,13.956944],[36.542816,14.262053]]]}},{"type":"Feature","properties":{"FIPS":"AU","ISO2":"AT","ISO3":"AUT","UN":40,"NAME":"Austria","AREA":8245,"POP2005":8291979,"REGION":150,"SUBREGION":155,"LON":14.912,"LAT":47.683},"geometry":{"type":"Polygon","coordinates":[[[13.833611,48.773605],[14.007221,48.710274],[14.184166,48.596107],[14.278332,48.582497],[14.608889,48.628883],[14.70028,48.581379],[14.72611,48.69194],[14.812498,48.781387],[14.958887,48.794716],[14.978054,48.977219],[15.025833,49.018883],[15.364721,48.983604],[15.68861,48.863327],[15.849432,48.859703],[16.103333,48.75],[16.376389,48.734444],[16.461941,48.813332],[16.644997,48.79055],[16.782776,48.720551],[16.885277,48.729439],[16.91861,48.703331],[16.943333,48.573326],[16.864441,48.467216],[16.84222,48.365273],[16.94972,48.278049],[16.975277,48.188332],[17.069145,48.135265],[17.116665,48.038605],[17.166386,48.012497],[17.108055,47.971382],[17.060555,47.876938],[17.053886,47.709442],[16.761944,47.685272],[16.715832,47.734718],[16.561386,47.75666],[16.426941,47.671387],[16.645275,47.631943],[16.713886,47.543884],[16.655205,47.458153],[16.592499,47.425278],[16.451942,47.415276],[16.491665,47.279999],[16.420555,47.20916],[16.505554,47.114998],[16.510555,47.00666],[16.302776,47.011383],[16.136108,46.877777],[15.985554,46.831108],[15.988054,46.751106],[15.406111,46.652496],[15.105276,46.657219],[14.870554,46.615829],[14.811666,46.509995],[14.544998,46.407494],[14.159443,46.440826],[14.112499,46.48111],[13.936943,46.515831],[13.2575,46.561943],[12.440554,46.690826],[12.378611,46.726662],[12.301666,46.84111],[12.160276,46.928055],[12.127222,47.00972],[12.230833,47.07222],[12.189165,47.094719],[11.755833,46.977493],[11.483889,47.01416],[11.171389,46.96666],[11.096666,46.912498],[11.072498,46.824997],[11.014721,46.772499],[10.834166,46.786942],[10.679443,46.874718],[10.497776,46.85527],[10.471235,46.871353],[10.487499,46.937775],[10.391109,47.003609],[10.231388,46.878883],[10.109444,46.850273],[9.879444,46.939156],[9.875555,47.022491],[9.598635,47.063835],[9.633888,47.130554],[9.533569,47.274544],[9.673332,47.398605],[9.65111,47.458328],[9.559721,47.499718],[9.566724,47.540451],[9.7292,47.535297],[9.782499,47.594444],[9.955,47.539719],[10.231388,47.381386],[10.173332,47.274719],[10.337221,47.312492],[10.473331,47.435555],[10.426943,47.576942],[10.478054,47.591942],[10.569443,47.540276],[10.690832,47.553886],[10.909443,47.518051],[10.97361,47.400551],[11.095554,47.396111],[11.296389,47.428886],[11.683054,47.584717],[12.006388,47.624443],[12.195745,47.608124],[12.201111,47.657494],[12.455,47.66777],[12.518055,47.632217],[12.606943,47.674438],[12.735554,47.684166],[12.829166,47.622215],[12.78611,47.585831],[12.809721,47.552216],[13.016666,47.470276],[13.054998,47.5],[13.099998,47.644997],[13.034443,47.722221],[12.911943,47.720833],[13.008888,47.854164],[12.768332,48.079163],[12.758333,48.123886],[13.017776,48.259438],[13.27861,48.303055],[13.394999,48.366104],[13.439999,48.435272],[13.441666,48.565552],[13.526943,48.584999],[13.725996,48.515587],[13.822777,48.617218],[13.833611,48.773605]]]}},{"type":"Feature","properties":{"FIPS":"EZ","ISO2":"CZ","ISO3":"CZE","UN":203,"NAME":"Czech Republic","AREA":7727,"POP2005":10191762,"REGION":150,"SUBREGION":151,"LON":15.338,"LAT":49.743},"geometry":{"type":"Polygon","coordinates":[[[14.70028,48.581379],[14.608889,48.628883],[14.278332,48.582497],[14.184166,48.596107],[14.007221,48.710274],[13.815554,48.778328],[13.740833,48.88166],[13.677776,48.884163],[13.626389,48.953331],[13.402542,49.006187],[13.395277,49.050278],[13.173054,49.167221],[12.966665,49.33194],[12.78611,49.344162],[12.674444,49.424995],[12.515554,49.679443],[12.455555,49.695549],[12.467499,49.782219],[12.544167,49.918053],[12.49,49.976662],[12.206142,50.106209],[12.208611,50.169441],[12.093704,50.322533],[12.177221,50.318054],[12.323055,50.206665],[12.398611,50.309166],[12.51861,50.393883],[12.818888,50.454437],[12.985558,50.418327],[13.079443,50.498055],[13.191111,50.503609],[13.25111,50.589996],[13.378332,50.62944],[13.463888,50.600273],[13.582222,50.709442],[14.311388,50.882217],[14.368332,50.934998],[14.256109,50.987778],[14.309721,51.053604],[14.569166,51.005554],[14.628332,50.923607],[14.619165,50.857498],[14.766666,50.818329],[14.804165,50.820549],[14.828333,50.865829],[15.005278,50.867218],[15.010555,50.984161],[15.176943,51.014717],[15.295277,50.954163],[15.283333,50.890831],[15.364166,50.841385],[15.37972,50.779442],[15.787498,50.744164],[16.024441,50.629997],[16.237499,50.670555],[16.369999,50.644165],[16.448055,50.572777],[16.368332,50.498604],[16.310833,50.504166],[16.203331,50.428604],[16.441387,50.316666],[16.638054,50.109444],[16.725277,50.099716],[16.849998,50.203331],[17.00222,50.216942],[16.972775,50.309998],[16.869442,50.405273],[16.890274,50.439438],[17.118053,50.39666],[17.433052,50.270271],[17.63361,50.265549],[17.722775,50.319717],[17.753052,50.297775],[17.762497,50.205551],[17.597775,50.158333],[17.836388,49.990829],[17.933052,49.979721],[18.053162,50.055931],[18.270275,49.957771],[18.577221,49.914444],[18.57935,49.814995],[18.634163,49.737778],[18.809998,49.674438],[18.839443,49.594994],[18.851246,49.517357],[18.562222,49.493889],[18.379444,49.330276],[18.212776,49.288055],[18.121944,49.082771],[17.7575,48.876663],[17.403889,48.822777],[17.187908,48.869446],[17.044167,48.771385],[16.946182,48.619064],[16.885277,48.729439],[16.78833,48.719162],[16.54361,48.811943],[16.457497,48.811943],[16.376389,48.734444],[16.103333,48.75],[15.849432,48.859703],[15.68861,48.863327],[15.364721,48.983604],[15.025833,49.018883],[14.978054,48.977219],[14.958887,48.794716],[14.812498,48.781387],[14.72611,48.69194],[14.70028,48.581379]]]}},{"type":"Feature","properties":{"FIPS":"FG","ISO2":"GF","ISO3":"GUF","UN":254,"NAME":"French Guiana","AREA":8815,"POP2005":192099,"REGION":19,"SUBREGION":5,"LON":-53.241,"LAT":3.924},"geometry":{"type":"Polygon","coordinates":[[[-53.494339,5.572342],[-52.937782,5.458333],[-52.606117,5.124999],[-52.422226,4.992499],[-52.285278,4.937499],[-51.995003,4.638333],[-51.950836,4.423888],[-52.040001,4.331388],[-51.929169,4.398333],[-51.922501,4.629167],[-51.905281,4.660277],[-51.85778,4.659166],[-51.794449,4.605556],[-51.711113,4.305277],[-51.653618,4.221944],[-51.659172,4.089444],[-51.97834,3.7075],[-51.998894,3.618611],[-52.220284,3.260278],[-52.278336,3.238889],[-52.34494,3.157403],[-52.351952,3.04],[-52.553894,2.623611],[-52.544174,2.560833],[-52.675285,2.373888],[-52.964447,2.173889],[-53.092506,2.221111],[-53.239174,2.208333],[-53.226112,2.264444],[-53.328339,2.353333],[-53.458618,2.2575],[-53.529724,2.249166],[-53.701668,2.310277],[-53.745003,2.373888],[-54.123337,2.113611],[-54.46389,2.210833],[-54.541946,2.316389],[-54.603783,2.329195],[-54.499168,2.365],[-54.374725,2.484722],[-54.313057,2.633889],[-54.200562,2.781111],[-54.160835,2.956388],[-54.206116,3.145278],[-54.001114,3.448333],[-53.984169,3.593889],[-54.361671,4.040555],[-54.365005,4.16361],[-54.452225,4.509166],[-54.420006,4.593333],[-54.477501,4.747777],[-54.45639,4.998333],[-54.290283,5.248055],[-54.066673,5.421944],[-54.00528,5.545278],[-54.003616,5.649722],[-53.939728,5.744721],[-53.75695,5.733889],[-53.494339,5.572342]]]}},{"type":"Feature","properties":{"FIPS":"FI","ISO2":"FI","ISO3":"FIN","UN":246,"NAME":"Finland","AREA":30459,"POP2005":5246004,"REGION":150,"SUBREGION":154,"LON":26.272,"LAT":64.504},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.705826,59.927216],[23.40222200000011,59.90083],[23.369999,59.91138500000011],[23.53833,59.960274],[23.729439,59.931938],[23.705826,59.927216]]],[[[22.833611,59.956383],[23.001938000000106,59.960548],[23.072498,59.951111],[23.049999000000128,59.8986],[22.9175,59.898331],[22.80222,59.954994],[22.833611,59.956383]]],[[[22.43888500000014,59.99582700000013],[22.373329000000126,59.98999800000013],[22.35194,60.06694],[22.440552,60.07249500000011],[22.43888500000014,59.99582700000013]]],[[[21.598053,60.098053],[21.520554,60.093605],[21.48527,60.11388],[21.552776,60.164444],[21.655552000000114,60.15554800000013],[21.63528,60.10472],[21.598053,60.098053]]],[[[21.748886,60.111382000000106],[21.695274,60.115829],[21.715553,60.183052],[21.885277,60.177216],[21.748886,60.111382000000106]]],[[[21.39666,60.17860400000012],[21.385277,60.156662],[21.268330000000105,60.188049],[21.350277,60.20472],[21.39666,60.17860400000012]]],[[[22.000832,60.12944],[21.952221,60.135277],[21.937496,60.169998],[22.060833,60.20388800000011],[22.000832,60.12944]]],[[[25.84861,60.195549],[25.83,60.192497],[25.810555,60.204163],[25.874996,60.211105],[25.84861,60.195549]]],[[[22.824444,60.227219],[22.839165,60.09638],[22.73611,60.00305],[22.601109000000122,59.98333000000014],[22.572498,60.027496000000106],[22.469463000000133,60],[22.471132,60.072083000000134],[22.415276,60.152222],[22.449718000000132,60.21833],[22.587776,60.2025],[22.824444,60.227219]]],[[[22.24222200000014,60.18110700000011],[22.215275,60.179443000000106],[22.217777000000126,60.21860500000014],[22.29444100000012,60.248604],[22.302776,60.217773],[22.24222200000014,60.18110700000011]]],[[[25.677219,60.234993],[25.634998,60.19805],[25.598053,60.2077710000001],[25.561108,60.265831],[25.595276,60.29193900000012],[25.677219,60.234993]]],[[[22.34222000000011,60.28305],[22.21333,60.24166],[22.20916,60.2725],[22.068886,60.268608],[22.096107,60.30778],[22.34222000000011,60.28305]]],[[[22.38333100000011,60.28833],[22.31528,60.316666],[22.32527,60.334717],[22.39666,60.351105],[22.476944,60.32361],[22.38333100000011,60.28833]]],[[[21.98277700000011,60.324165],[21.789997,60.372498],[21.807499,60.465553],[21.933331,60.416664],[21.996666,60.358887],[21.98277700000011,60.324165]]],[[[21.75166,60.498329],[21.691666,60.450272],[21.684444,60.452774],[21.73,60.520271],[21.763332,60.522499],[21.75166,60.498329]]],[[[21.32889,60.48111],[21.275833,60.47805],[21.226944000000117,60.55249800000013],[21.278053000000114,60.54028],[21.32889,60.48111]]],[[[21.483330000000137,60.520271],[21.432499,60.469719],[21.324997,60.51611],[21.32194,60.543053],[21.39278,60.556664],[21.483330000000137,60.520271]]],[[[21.29028,60.612221],[21.289165,60.56139],[21.214165,60.61972000000014],[21.2666660000001,60.643608],[21.29028,60.612221]]],[[[21.3275,60.87722],[21.263885,60.879166],[21.254166,60.958885],[21.296387,60.967773],[21.35722,60.92194],[21.3275,60.87722]]],[[[21.080276,63.281387],[21.29222,63.23944100000011],[21.41333,63.25138900000013],[21.427219,63.196938],[21.246944,63.14472200000011],[21.18611,63.190826],[21.144722000000115,63.178329],[21.080276,63.281387]]],[[[22.180832,63.265274],[22.078331000000105,63.279442],[22.040833,63.30693800000011],[22.192497000000117,63.321938],[22.21,63.300827],[22.180832,63.265274]]],[[[21.32333,63.28916],[21.315552,63.287216],[21.231941,63.32555400000012],[21.38111,63.34111000000013],[21.32333,63.28916]]],[[[22.87361,63.799995],[22.868332000000123,63.770554],[22.671387,63.794441],[22.80611,63.876938],[22.897499,63.866943000000106],[22.917221,63.82194],[22.87361,63.799995]]],[[[24.734997000000135,64.944443],[24.603054,64.96193],[24.551666,65.0249940000001],[24.808609,65.078049],[25.035,65.036102],[24.84666,65.003601],[24.820274,64.963882],[24.734997000000135,64.944443]]],[[[24.462219,65.763885],[24.43694,65.769714],[24.50305200000014,65.78054800000012],[24.5,65.776657],[24.462219,65.763885]]],[[[28.165833,69.91221600000011],[28.32333,69.8875],[28.404999,69.821655],[29.09889,69.70805400000012],[29.299721,69.48555],[28.819164,69.231934],[28.786942,69.119156],[28.957340000000105,69.05162],[28.431942,68.896942],[28.479164,68.873596],[28.737778000000105,68.87582],[28.820553,68.844437],[28.73860900000011,68.73416],[28.457497,68.53194],[28.696663000000115,68.19332900000012],[29.356941000000116,68.08248900000012],[29.691666,67.815277],[30.02861,67.69472],[29.932777,67.513885],[29.525276000000133,67.293884],[29.15694400000012,67.03082300000011],[29.087776,66.969986],[29.074997000000106,66.89582800000011],[29.123055,66.824707],[29.359444,66.673325],[29.554443,66.470276],[29.638611000000136,66.32249500000012],[29.910275,66.12693800000011],[30.09666,65.833328],[30.134163,65.71916],[30.123886,65.66499],[30.024441,65.69110100000012],[29.818886,65.65332000000012],[29.83416,65.588333],[29.738331,65.48111000000011],[29.7475,65.341934],[29.596386,65.24889],[29.853611,65.21611],[29.873886,65.12082],[29.628887,65.063049],[29.60666700000013,65.001663],[29.636665,64.92805],[29.804722,64.7938840000001],[30.140831,64.774155],[30.199165,64.65027],[29.974998,64.5811000000001],[30.00967,64.51286],[30.087219,64.483047],[30.053608,64.404999],[30.156109,64.354156],[30.389721,64.30943300000013],[30.578053,64.221375],[30.614441000000113,64.08665500000012],[30.59527600000013,64.046936],[30.255833000000106,63.817772000000105],[29.993332,63.743607],[30.228333,63.600555],[30.399441,63.546104],[30.481667,63.47861],[30.714722,63.42443800000013],[31.219719,63.223053],[31.588928000000124,62.91441300000014],[31.4675,62.806389],[31.25972,62.507774],[30.704166,62.210548000000124],[29.809166,61.60833],[29.21361,61.253326],[28.812775,61.103333],[28.638885,60.96611000000012],[28.529163,60.954994],[28.38888500000013,60.886665],[27.807831,60.546402],[27.74361,60.572495],[27.738052,60.51138300000014],[27.47666500000014,60.506386],[27.473053,60.476387],[27.29555,60.503883],[27.215275000000133,60.585548],[27.031387,60.53889],[26.960278,60.44194],[26.905277000000126,60.47610500000013],[26.666943000000117,60.42666600000013],[26.497219,60.446938],[26.474163,60.47916],[26.594997,60.59805300000011],[26.668331,60.607498],[26.753887,60.57166300000011],[26.659164,60.6475],[26.60722,60.63694],[26.461941,60.5075],[26.48222,60.43694],[26.421665,60.391937],[26.146111,60.39388],[26.051388,60.427498],[26.111664,60.330276],[26.041943,60.2930530000001],[26.04055,60.322495],[25.83805500000011,60.401108],[25.9180530000001,60.35139],[25.919998,60.24166],[25.753887,60.314720000000136],[25.74555,60.286110000000114],[25.845833,60.2649990000001],[25.780277,60.232773],[25.720554,60.248055],[25.649719,60.296387],[25.647778,60.335548],[25.694553,60.342216],[25.66222,60.362221],[25.545277,60.311104000000114],[25.48944,60.245827],[25.200832000000105,60.241943],[25.14638,60.219444],[25.201111,60.2075],[25.19527,60.186386],[25.06583,60.156105],[24.603333,60.121941],[24.591942,60.05666400000012],[24.48222,59.991386],[24.421104,59.987221],[24.421387,60.02722],[24.333054,60.071938],[23.7972180000001,59.961937],[23.5613570000001,59.970669],[23.426662,59.953888],[23.537498,60.025276000000126],[23.53833,60.06972],[23.25249900000011,59.839165],[22.90972,59.80499300000013],[22.889721,59.806389],[22.93472,59.840553],[23.257217,59.919441],[23.33833,60.02],[23.224995,59.926109],[23.10722,59.922493],[23.107777,59.96833],[23.25972,60.03555300000011],[23.049442,60.03611],[22.985554,60.062775],[23.041943,60.120827],[22.87444,60.14555400000011],[22.901386000000116,60.213333],[23.086941000000134,60.346939],[22.574997,60.210548],[22.44722,60.244438],[22.632221,60.391937],[22.276943,60.385826],[22.01444,60.465271],[21.937496,60.521385000000116],[21.83972200000011,60.524162],[21.863052,60.471939],[21.803055,60.482498000000135],[21.824444,60.61916],[21.58833,60.50694],[21.576942,60.56249200000013],[21.429996,60.573326],[21.358608,60.65361],[21.392498000000103,60.755554],[21.328331,60.865273],[21.387775,60.94082600000012],[21.44444,61.167221],[21.554443,61.309441],[21.519444,61.509163000000115],[21.465275,61.550552],[21.493332000000123,61.573883],[21.668053,61.5469440000001],[21.535275,61.65333],[21.470276,61.755272],[21.488052,61.80305],[21.410553,61.890549],[21.280277,61.948051],[21.25333,62.005554],[21.333885,62.153885000000116],[21.382774,62.185272],[21.371666,62.259995],[21.33667,62.348885],[21.111664000000133,62.45166],[21.1252750000001,62.547493],[21.064163,62.596382],[21.106110000000115,62.76944],[21.29805,62.860832],[21.37722,62.86388],[21.445831,62.967499],[21.439163,63.042496],[21.50611,63.06721],[21.619999,63.018608],[21.686108,63.02499],[21.521942000000134,63.120552],[21.4977760000001,63.21],[21.542774,63.231941],[21.647221,63.19194],[21.881943,63.25666],[21.892776,63.206108],[21.96666,63.183052],[22.337219,63.2736],[22.371387,63.31582600000013],[22.35555,63.339722],[22.203053,63.417221],[22.188053,63.463051],[22.292500000000132,63.527222],[22.39638,63.472496],[22.589165,63.695549],[22.68055,63.697777],[22.733608,63.621666],[22.78055,63.625832],[22.899998,63.698608],[22.92333,63.801109],[23.143055,63.876938],[23.318886000000134,63.896660000000104],[23.371944,63.938889],[23.38472,64.0486],[23.511387,64.03637700000013],[23.6022190000001,64.064438],[23.652222,64.140823],[23.926666000000125,64.2691650000001],[23.999443,64.38582],[24.34333,64.523605],[24.37167,64.622208],[24.535275000000123,64.74137900000011],[24.542221,64.80249],[25.086388,64.912766],[25.233330000000137,64.81776400000012],[25.31944,64.81776400000012],[25.364166,64.83194],[25.365555,64.90222],[25.233608,64.92776500000014],[25.188332,64.96611],[25.21860900000013,64.989166],[25.407497,64.94472],[25.448608,64.960541],[25.37055,65.079437],[25.284721,65.110825],[25.267498000000103,65.16999800000013],[25.35527400000012,65.410828],[25.353333,65.476944],[25.310833000000116,65.511108],[25.123333,65.55749500000012],[25.070274,65.61055],[24.66917,65.65470900000012],[24.557499,65.727768],[24.553886,65.775543],[24.68916,65.8961],[24.62166600000012,65.886108],[24.538609000000122,65.795273],[24.419998,65.768326],[24.176666,65.789154],[23.930832,66.135544],[23.71917,66.204987],[23.640274,66.436096],[23.878609,66.55722],[23.89,66.743042],[24.00777,66.800552],[23.571663,67.156662],[23.6055530000001,67.25943000000012],[23.773331,67.31443800000011],[23.76777600000014,67.41610700000011],[23.43111,67.46554600000013],[23.507774,67.66554300000013],[23.48333,67.86305],[23.644722,67.913055],[23.65694400000012,67.950821],[23.394444000000135,68.042496],[23.066944,68.286377],[22.899719,68.3316650000001],[22.82361,68.388046],[22.371944,68.46361],[22.050552,68.47916],[21.89722,68.569992],[21.757500000000107,68.576935],[21.62305,68.649429],[21.46555300000011,68.678055],[21.420555,68.724152],[21.081387,68.86665],[20.895275,68.8936],[20.888885,68.925827],[20.938889,68.958328],[20.866665,69.00499],[20.580929,69.0603],[20.738331,69.096375],[21.059444,69.034439],[21.113052,69.108047],[21.053608,69.140549],[21.0325,69.21304],[21.320831,69.326111],[21.68194,69.284714],[22.346664,68.84471100000013],[22.398331,68.7111],[22.549999,68.73778],[22.802776000000105,68.691376],[23.063889,68.695541],[23.204166,68.62860100000012],[23.69278,68.71221900000012],[23.83,68.829987],[23.97639,68.83249],[24.351387,68.710541],[24.75444,68.660263],[24.859203,68.587341],[24.93492,68.580811],[25.103333000000134,68.63472000000013],[25.15472,68.767776],[25.214443,68.81749],[25.43111,68.890549],[25.623333,68.884155],[25.76111,68.989166],[25.71333,69.255264],[25.754997,69.34220900000014],[25.82972,69.37805],[25.957497,69.59027100000013],[25.97416,69.635269],[25.945831,69.673325],[26.36944,69.84999],[26.449997,69.927216],[26.80658,69.95206],[27.068886,69.9086],[27.291943000000117,69.949997],[27.299999,69.99055],[27.57333,70.068878],[27.902496,70.088882],[27.960552,70.06694],[27.98472,70.00221],[28.165833,69.91221600000011]]]]}},{"type":"Feature","properties":{"FIPS":"FJ","ISO2":"FJ","ISO3":"FJI","UN":242,"NAME":"Fiji","AREA":1827,"POP2005":828046,"REGION":9,"SUBREGION":54,"LON":177.974,"LAT":-17.819},"geometry":{"type":"MultiPolygon","coordinates":[[[[-178.70776,-20.67444],[-178.737213,-20.66611],[-178.73056,-20.646114],[-178.72086,-20.648056],[-178.70776,-20.67444]]],[[[-178.21143,-19.8525],[-178.22305,-19.84555],[-178.209747,-19.82639],[-178.19809,-19.835838],[-178.21143,-19.8525]]],[[[-178.3967,-19.185],[-178.42505,-19.1775],[-178.398621,-19.12917],[-178.386414,-19.13889],[-178.3967,-19.185]]],[[[179.779694,-19.19528],[179.7402340000001,-19.188053],[179.773041,-19.123333],[179.797485,-19.18444],[179.779694,-19.19528]]],[[[-178.5386,-19.18195],[-178.59695,-19.155834],[-178.58585,-19.113613],[-178.55084,-19.11778],[-178.5386,-19.18195]]],[[[178.4982910000001,-18.99],[178.417206,-19.04695],[178.33746,-19.05056],[178.307465,-18.99916],[178.191925,-19.045834],[178.09412,-19.162777],[177.99884,-19.162498],[177.95108,-19.13139],[178.306915,-18.935555],[178.4682920000001,-18.956387],[178.4982910000001,-18.99]]],[[[-178.93671,-18.98944],[-178.96722,-18.97834],[-178.949432,-18.925835],[-178.93335,-18.93694],[-178.93671,-18.98944]]],[[[-179.78363,-18.94639],[-179.80307,-18.98638],[-179.840027,-18.950832],[-179.868896,-19.00528],[-179.845,-18.922504],[-179.78363,-18.94639]]],[[[178.528046,-18.91083],[178.49719200000015,-18.933887],[178.47662400000013,-18.883057],[178.52164,-18.85972],[178.528046,-18.91083]]],[[[-178.498627,-18.67472],[-178.521393,-18.66139],[-178.50668,-18.63528],[-178.473053,-18.65056],[-178.498627,-18.67472]]],[[[179.91275,-18.64194],[179.837463,-18.57639],[179.96386700000016,-18.54056],[179.966644,-18.560001],[179.91275,-18.64194]]],[[[177.66330000000013,-18.590279],[177.61911,-18.538334],[177.63079800000014,-18.491943],[177.65164200000015,-18.509724],[177.66330000000013,-18.590279]]],[[[178.13272100000017,-18.4175],[178.109406,-18.4075],[178.13970900000015,-18.351944],[178.156647,-18.377777],[178.13272100000017,-18.4175]]],[[[-178.77835,-18.24972],[-178.843872,-18.216946],[-178.82861,-18.19],[-178.747528,-18.201389],[-178.77835,-18.24972]]],[[[179.35189800000012,-18.12111],[179.245789,-18.03639],[179.236359,-17.96833],[179.266663,-17.93611],[179.353302,-18.00917],[179.35189800000012,-18.12111]]],[[[-179.011719,-17.99528],[-179.07059,-17.96333],[-179.068359,-17.932503],[-178.99112,-17.950832],[-179.011719,-17.99528]]],[[[-178.28699,-17.96611],[-178.34003,-17.95583],[-178.34781,-17.894165],[-178.24448,-17.91778],[-178.243896,-17.95167],[-178.28699,-17.96611]]],[[[179.421906,-17.848335],[179.39609,-17.821945],[179.392761,-17.78639],[179.42108,-17.79722],[179.421906,-17.848335]]],[[[-179.29251,-17.7839],[-179.33115,-17.771954],[-179.31915,-17.727509],[-179.285004,-17.740837],[-179.29251,-17.7839]]],[[[178.820251,-17.74277],[178.77191200000016,-17.75445],[178.74774200000013,-17.719719],[178.748566,-17.655834],[178.791931,-17.62111],[178.832733,-17.627224],[178.853027,-17.66972],[178.820251,-17.74277]]],[[[-179.142,-17.47695],[-179.17337,-17.467781],[-179.17889,-17.433064],[-179.14334,-17.43111],[-179.142,-17.47695]]],[[[178.28082,-17.40305],[178.598297,-17.643055],[178.597748,-17.784168],[178.693298,-18.025],[178.67804,-18.07833],[178.58828700000015,-18.13528],[178.532196,-18.09222],[178.348846,-18.116112],[178.16024800000014,-18.25472],[177.96023600000012,-18.26833],[177.47302200000013,-18.162777],[177.33331,-18.11945],[177.299133,-18.078613],[177.24884,-17.96278],[177.256653,-17.874168],[177.429688,-17.761669],[177.38803100000018,-17.63278],[177.510254,-17.509445],[177.82526,-17.36278],[177.833313,-17.396111],[177.95358,-17.41056],[178.170532,-17.3425],[178.193024,-17.30111],[178.269135,-17.34389],[178.28082,-17.40305]]],[[[177.112457,-17.31444],[177.10025,-17.27111],[177.14194,-17.24778],[177.158325,-17.26806],[177.112457,-17.31444]]],[[[-179.12863,-17.283611],[-179.15338,-17.28223],[-179.162811,-17.250835],[-179.12143,-17.25862],[-179.12863,-17.283611]]],[[[179.39941,-17.394444],[179.35718,-17.25944],[179.433044,-17.242222],[179.448029,-17.31583],[179.39941,-17.394444]]],[[[-178.92529,-17.257225],[-178.98584,-17.318058],[-179.02005,-17.153053],[-178.92224,-17.197781],[-178.92529,-17.257225]]],[[[177.26361,-17.12361],[177.199402,-17.17028],[177.17718500000012,-17.16361],[177.20831,-17.08889],[177.2811,-17.05194],[177.26361,-17.12361]]],[[[178.33304,-16.83583],[178.2821960000001,-16.833889],[178.27719,-16.789444],[178.329956,-16.79639],[178.33304,-16.83583]]],[[[179.947479,-17.002781],[179.88245,-16.964165],[180,-16.78739],[180,-16.965725],[179.947479,-17.002781]]],[[[-179.993317,-16.955276],[-180,-16.78736],[-179.86163,-16.680321],[-179.82111,-16.781094],[-179.993317,-16.955276]]],[[[177.443024,-16.83778],[177.55832,-16.721943],[177.55996700000014,-16.677498],[177.593018,-16.687778],[177.521637,-16.790001],[177.443024,-16.83778]]],[[[179.929413,-16.65916],[179.88443,-16.6575],[179.947754,-16.61306],[179.94913,-16.643612],[179.929413,-16.65916]]],[[[180,-16.53792],[179.98107900000014,-16.524445],[180,-16.49427],[180,-16.53792]]],[[[-179.97617,-16.535278],[-180,-16.53792],[-179.988617,-16.47695],[-179.896423,-16.43111],[-179.92694,-16.51889],[-179.97617,-16.535278]]],[[[179.958008,-16.197498],[179.853027,-16.29111],[179.7538760000001,-16.446388],[179.59164,-16.53972],[179.47858,-16.70111],[179.493011,-16.76167],[179.559692,-16.76361],[179.93246,-16.46083],[179.95026,-16.51306],[179.87133800000015,-16.665001],[179.95190400000013,-16.741943],[179.90219100000013,-16.76945],[179.74633800000015,-16.72639],[179.66275,-16.73972],[179.571625,-16.80111],[179.331909,-16.80222],[179.35580400000015,-16.739441],[179.265808,-16.69056],[179.05304000000012,-16.80056],[179.01638800000012,-16.895279],[179.073578,-16.88278],[179.023865,-16.925278],[178.8696900000001,-16.86083],[178.810242,-16.90805],[178.79608,-16.984165],[178.747192,-17.011948],[178.690247,-16.992496],[178.62497,-16.835556],[178.47885,-16.78167],[178.595245,-16.641666],[178.70773,-16.67528],[178.9819,-16.469719],[179.22412,-16.3975],[179.40054,-16.41305],[179.401367,-16.34917],[179.50332600000013,-16.273891],[180,-16.15472],[179.958008,-16.197498]]],[[[-179.96887,-16.16761],[-180,-16.154732],[-179.94113,-16.12834],[-179.94473,-16.147369],[-179.96887,-16.16761]]],[[[177.119415,-12.514446],[177.06024,-12.516945],[177.026917,-12.50722],[177.11911,-12.484722],[177.119415,-12.514446]]]]}},{"type":"Feature","properties":{"FIPS":"FK","ISO2":"FK","ISO3":"FLK","UN":238,"NAME":"Falkland Islands (Malvinas)","AREA":1217,"POP2005":2975,"REGION":19,"SUBREGION":5,"LON":-58.694,"LAT":-51.665},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.69167,-52.242783],[-59.761116,-52.273613],[-59.753334,-52.17001],[-59.68389,-52.17278],[-59.69167,-52.242783]]],[[[-58.435,-52.09389],[-58.52417,-52.055],[-58.53389,-52.02444],[-58.432503,-51.99028],[-58.435,-52.09389]]],[[[-61.224449,-51.86472],[-61.28306,-51.855003],[-61.3139,-51.824722],[-61.215004,-51.797226],[-61.19445,-51.84862],[-61.224449,-51.86472]]],[[[-61.034447,-51.86945],[-60.89084,-51.82584],[-60.867783,-51.90334],[-60.88111,-51.93445],[-60.993057,-51.965836],[-61.149445,-51.84889],[-61.01306,-51.77972],[-60.94056,-51.800285],[-61.034447,-51.86945]]],[[[-61.19584,-51.699448],[-61.264168,-51.704445],[-61.28473,-51.75611],[-61.31583,-51.733612],[-61.305,-51.693062],[-61.19584,-51.699448]]],[[[-59.210556,-51.410561],[-59.392784,-51.59917],[-59.577782,-51.68834],[-59.953056,-51.983063],[-60.06028,-51.940285],[-60.19,-51.97834],[-60.36806,-52.15917],[-60.6175,-52.24556],[-60.98083,-52.061951],[-60.74361,-52.01028],[-60.841667,-51.95639],[-60.44472,-51.965836],[-60.398338,-51.913895],[-60.449448,-51.883057],[-60.43834,-51.779167],[-60.37167,-51.76833],[-60.376114,-51.837784],[-60.34528,-51.86084],[-60.26,-51.773056],[-60.22278,-51.787781],[-60.18056,-51.758896],[-60.178894,-51.70945],[-60.227501,-51.700279],[-60.55611,-51.775558],[-60.63834,-51.72223],[-60.61778,-51.66972],[-60.45723,-51.702225],[-60.36472,-51.667503],[-60.163612,-51.66139],[-60.40445,-51.55139],[-60.38417,-51.48639],[-60.40784,-51.464783],[-60.620003,-51.413895],[-60.64223,-51.35556],[-60.13222,-51.494728],[-59.98473,-51.467781],[-60.05195,-51.45],[-60.0625,-51.420837],[-60.01945,-51.38],[-59.889725,-51.37278],[-59.81195,-51.442223],[-59.458618,-51.458061],[-59.38945,-51.43028],[-59.448334,-51.39973],[-59.44889,-51.358337],[-59.40306,-51.33639],[-59.210556,-51.410561]]],[[[-58.69667,-51.33667],[-58.47139,-51.30667],[-58.3475,-51.36417],[-58.320282,-51.42028],[-58.36195,-51.44445],[-58.4475,-51.45251],[-58.49361,-51.394447],[-58.55028,-51.433617],[-58.420563,-51.55667],[-58.335838,-51.56667],[-58.22695,-51.654449],[-58.1889,-51.585281],[-58.31111,-51.497223],[-58.35778,-51.503059],[-58.279449,-51.4175],[-57.911949,-51.376396],[-57.76889,-51.500557],[-57.76167,-51.538338],[-57.930283,-51.540001],[-58.031113,-51.50167],[-58.14278,-51.55389],[-57.78639,-51.614723],[-57.73139,-51.692223],[-58.032501,-51.75751],[-58.25917,-51.75695],[-58.17361,-51.79667],[-58.358337,-51.82667],[-58.234726,-51.832779],[-58.415001,-51.900558],[-58.76889,-51.891945],[-58.940559,-51.80195],[-58.971115,-51.85778],[-58.626396,-51.968338],[-58.60389,-52.001396],[-58.64695,-52.06722],[-58.67806,-52.093056],[-58.792503,-52.034447],[-58.930557,-52.10028],[-59.13778,-51.98556],[-59.28973,-52.004173],[-59.29333,-52.02723],[-59.130562,-52.05806],[-59.03528,-52.14389],[-59.07722,-52.231674],[-59.384727,-52.116394],[-59.44917,-52.140839],[-59.43,-52.215004],[-59.339729,-52.25528],[-59.348061,-52.34306],[-59.71806,-52.12112],[-59.518059,-51.87528],[-59.22861,-51.71973],[-59.06361,-51.68611],[-59.02667,-51.75639],[-59.04278,-51.81778],[-58.99473,-51.806671],[-59.02389,-51.67695],[-59.174171,-51.581116],[-59.108612,-51.513893],[-59.043892,-51.58417],[-59.008896,-51.56917],[-58.98695,-51.503059],[-59.082779,-51.468338],[-59.08472,-51.41167],[-58.875,-51.379448],[-58.89001,-51.32362],[-58.84862,-51.29139],[-58.69667,-51.33667]]],[[[-59.935562,-51.350838],[-59.985,-51.33472],[-60.02528,-51.29778],[-59.90611,-51.303062],[-59.935562,-51.350838]]],[[[-60.11056,-51.405281],[-60.26833,-51.398056],[-60.30028,-51.27139],[-60.068062,-51.307503],[-60.04778,-51.33667],[-60.11056,-51.405281]]],[[[-59.50834,-51.3375],[-59.573616,-51.33362],[-59.81111,-51.26973],[-59.47917,-51.26472],[-59.445557,-51.32333],[-59.50834,-51.3375]]]]}},{"type":"Feature","properties":{"FIPS":"FM","ISO2":"FM","ISO3":"FSM","UN":583,"NAME":"Micronesia, Federated States of","AREA":70,"POP2005":110058,"REGION":9,"SUBREGION":57,"LON":158.235,"LAT":6.883},"geometry":{"type":"MultiPolygon","coordinates":[[[[153.67441,5.286943],[153.659973,5.291666],[153.711365,5.31972],[153.70914,5.306665],[153.67441,5.286943]]],[[[163.0074770000001,5.263055000000122],[162.92190600000015,5.274721],[162.904144,5.307221],[163.01639,5.378332],[163.043304,5.323055000000124],[163.0074770000001,5.263055000000122]]],[[[143.0636,6.707222000000115],[143.054688,6.714722],[143.0636,6.719443],[143.0672,6.715833],[143.0636,6.707222000000115]]],[[[149.320251,6.69833],[149.313293,6.7025],[149.32498,6.721944],[149.32775900000013,6.71111],[149.320251,6.69833]]],[[[157.94220000000018,6.71861],[157.931915,6.721944],[157.9524540000001,6.734444],[157.9524540000001,6.728888],[157.94220000000018,6.71861]]],[[[157.973572,6.738332],[157.964142,6.74111],[157.99273700000015,6.751944],[157.98718,6.745276000000104],[157.973572,6.738332]]],[[[158.29776,6.786110000000122],[158.175812,6.798332],[158.12079,6.92972],[158.18469200000015,6.978610000000117],[158.318848,6.93028],[158.33551,6.871665],[158.29776,6.786110000000122]]],[[[158.253876,6.983333],[158.241638,6.992777],[158.259979,7.000278],[158.26221,6.995554000000141],[158.253876,6.983333]]],[[[151.860504,7.31861],[151.83828700000015,7.361943],[151.839966,7.370276000000103],[151.86664,7.358610000000112],[151.860504,7.31861]]],[[[149.20163,7.363333],[149.194702,7.361388],[149.203033,7.376388],[149.20440700000017,7.367498],[149.20163,7.363333]]],[[[149.191345,7.37555],[149.181091,7.37361],[149.177765,7.3825],[149.188019,7.38444],[149.191345,7.37555]]],[[[143.9202580000001,7.379721000000131],[143.9119260000001,7.3825],[143.914154,7.391388],[143.919708,7.389999],[143.9202580000001,7.379721000000131]]],[[[151.63916000000015,7.326666000000102],[151.56720000000018,7.34111],[151.60831,7.395277],[151.65082,7.372221],[151.63916000000015,7.326666000000102]]],[[[151.911652,7.444999],[151.86300700000015,7.419721],[151.85495,7.423888],[151.86664,7.463888000000112],[151.911652,7.444999]]],[[[146.19329800000014,7.504167],[146.179688,7.505555000000129],[146.179688,7.510833],[146.18719,7.515555],[146.19329800000014,7.504167]]],[[[149.674988,8.575554],[149.65942400000014,8.590275],[149.68887,8.617496],[149.6902470000001,8.60805],[149.674988,8.575554]]],[[[150.378021,8.617496],[150.3732910000001,8.61277600000011],[150.36664,8.626387],[150.375519,8.62694],[150.378021,8.617496]]],[[[150.13025,8.978331],[150.11828600000013,8.97639],[150.12802,8.992496],[150.135529,8.986664000000133],[150.13025,8.978331]]],[[[138.209137,9.523888000000113],[138.131622,9.498886],[138.060242,9.415276000000118],[138.13361,9.571943],[138.186371,9.588886],[138.209137,9.523888000000113]]]]}},{"type":"Feature","properties":{"FIPS":"FP","ISO2":"PF","ISO3":"PYF","UN":258,"NAME":"French Polynesia","AREA":366,"POP2005":255632,"REGION":9,"SUBREGION":61,"LON":-149.462,"LAT":-17.626},"geometry":{"type":"MultiPolygon","coordinates":[[[[-143.482483,-27.914448],[-143.491699,-27.91389],[-143.50891,-27.890839],[-143.48392,-27.90028],[-143.482483,-27.914448]]],[[[-144.30753,-27.64278],[-144.3475,-27.608337],[-144.32474,-27.553333],[-144.285553,-27.5775],[-144.30753,-27.64278]]],[[[-147.68976,-23.881668],[-147.72031,-23.865276],[-147.648621,-23.85334],[-147.648621,-23.862225],[-147.68976,-23.881668]]],[[[-149.483337,-23.401943],[-149.514496,-23.40139],[-149.52533,-23.373894],[-149.45721,-23.36167],[-149.44864,-23.39583],[-149.483337,-23.401943]]],[[[-135.05194,-23.16389],[-135.06308,-23.156113],[-135.03171,-23.14333],[-135.028351,-23.157501],[-135.05194,-23.16389]]],[[[-134.985535,-23.13944],[-135.015564,-23.12167],[-134.94141,-23.08584],[-134.94473,-23.09667],[-134.985535,-23.13944]]],[[[-152.86002,-22.65639],[-152.87836,-22.63473],[-152.84555,-22.605003],[-152.82642,-22.63417],[-152.86002,-22.65639]]],[[[-151.36557,-22.51862],[-151.39639,-22.45167],[-151.38782,-22.425835],[-151.350281,-22.464725],[-151.36557,-22.51862]]],[[[-138.714722,-22.27167],[-138.762512,-22.28639],[-138.79666,-22.22028],[-138.743591,-22.204449],[-138.714722,-22.27167]]],[[[-140.609467,-21.71917],[-140.66864,-21.70833],[-140.666687,-21.655834],[-140.642242,-21.653336],[-140.609467,-21.71917]]],[[[-144.956146,-19.923332],[-144.965027,-19.929169],[-144.958344,-19.89528],[-144.95111,-19.905834],[-144.956146,-19.923332]]],[[[-150.64807,-17.662498],[-150.66449,-17.659447],[-150.66946,-17.64528],[-150.64529,-17.6425],[-150.64807,-17.662498]]],[[[-149.21143,-17.73389],[-149.181976,-17.72916],[-149.148926,-17.779449],[-149.179199,-17.870834],[-149.275024,-17.847221],[-149.36948,-17.738892],[-149.484711,-17.766949],[-149.590576,-17.711391],[-149.639771,-17.623894],[-149.632507,-17.549999],[-149.49503,-17.49389],[-149.373627,-17.526947],[-149.33276,-17.57028],[-149.321381,-17.701389],[-149.21143,-17.73389]]],[[[-149.8486,-17.57361],[-149.92505,-17.52528],[-149.937256,-17.484165],[-149.78613,-17.46917],[-149.8486,-17.57361]]],[[[-149.532257,-16.97444],[-149.54306,-16.974998],[-149.54419,-16.964443],[-149.535553,-16.964443],[-149.532257,-16.97444]]],[[[-149.572266,-16.96972],[-149.584747,-16.981113],[-149.59198,-16.980003],[-149.58612,-16.95611],[-149.572266,-16.96972]]],[[[-150.99832,-16.82417],[-151.04004,-16.78612],[-150.99448,-16.7625],[-150.96918,-16.79306],[-150.99832,-16.82417]]],[[[-151.40033,-16.888332],[-151.47665,-16.895283],[-151.497772,-16.780834],[-151.47504,-16.740276],[-151.42889,-16.74722],[-151.34946,-16.848061],[-151.40033,-16.888332]]],[[[-151.03833,-16.76973],[-151.05249,-16.74417],[-151.037537,-16.693054],[-151.00723,-16.74472],[-151.03833,-16.76973]]],[[[-151.45834,-16.673332],[-151.53778,-16.644726],[-151.532257,-16.589443],[-151.4411,-16.599171],[-151.45834,-16.673332]]],[[[-151.74863,-16.53445],[-151.786987,-16.499168],[-151.775879,-16.47333],[-151.742249,-16.490833],[-151.74863,-16.53445]]],[[[-146.335846,-16.16472],[-146.38782,-16.158337],[-146.38446,-16.110279],[-146.33499,-16.11306],[-146.335846,-16.16472]]],[[[-148.23526,-15.848612],[-148.26532,-15.846947],[-148.28363,-15.800835],[-148.26779,-15.79917],[-148.23526,-15.848612]]],[[[-144.62195,-15.74861],[-144.64639,-15.73889],[-144.63367,-15.70805],[-144.61749,-15.726946],[-144.62195,-15.74861]]],[[[-138.65671,-10.54972],[-138.695038,-10.52806],[-138.69559,-10.43111],[-138.61835,-10.46555],[-138.61612,-10.515],[-138.65671,-10.54972]]],[[[-139.10748,-9.97806],[-139.13504,-10.015],[-139.12582,-9.906113],[-139.04779,-9.91417],[-139.10748,-9.97806]]],[[[-138.955261,-9.743055],[-138.809479,-9.744999],[-138.8931,-9.805555],[-139.05139,-9.808891],[-139.054749,-9.859999],[-139.14111,-9.83083],[-139.17255,-9.780281],[-139.049164,-9.696114],[-138.97943,-9.705557],[-138.955261,-9.743055]]],[[[-140.07724,-9.450556],[-140.147827,-9.38056],[-140.08612,-9.324724],[-140.03754,-9.364723],[-140.07724,-9.450556]]],[[[-139.58252,-8.87361],[-139.52005,-8.880001],[-139.504181,-8.91722],[-139.61197,-8.95639],[-139.62891,-8.902502],[-139.58252,-8.87361]]],[[[-140.026428,-8.901112],[-140.18945,-8.95417],[-140.22864,-8.926392],[-140.24976,-8.80278],[-140.2225,-8.777502],[-140.06890899999988,-8.81167],[-140.01611,-8.85139],[-140.026428,-8.901112]]],[[[-140.70471,-8.04417],[-140.709747,-7.965556],[-140.63782,-7.959446],[-140.667816,-7.97861],[-140.70471,-8.04417]]],[[[-140.58499,-7.92389],[-140.60614,-7.913611],[-140.56308,-7.88833],[-140.56171,-7.90889],[-140.58499,-7.92389]]]]}},{"type":"Feature","properties":{"FIPS":"FR","ISO2":"FR","ISO3":"FRA","UN":250,"NAME":"France","AREA":55010,"POP2005":60990544,"REGION":150,"SUBREGION":155,"LON":2.55,"LAT":46.565},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.48583200000013,42.615273000000116],[9.49472,42.603607000000125],[9.457777,42.643326],[9.48583200000013,42.615273000000116]]],[[[9.446665,42.67889],[9.473888,42.582222],[9.509998,42.563606],[9.497221,42.60083],[9.533888000000104,42.54193900000013],[9.553333000000123,42.115555],[9.41111,41.954163],[9.398888,41.698883],[9.27167,41.520554],[9.248888,41.40888200000012],[9.180832000000123,41.3647160000001],[9.115833,41.431938000000116],[8.789165,41.55805],[8.79472,41.6325],[8.921389,41.68805],[8.725832000000139,41.72943900000013],[8.705,41.75944],[8.78889,41.853333],[8.784166000000141,41.92443800000012],[8.627222,41.90666],[8.58861,41.963051],[8.64611100000013,41.969162],[8.659443,42.008331],[8.744999,42.051384],[8.587221,42.16972],[8.570555000000127,42.22166],[8.688055000000134,42.270271],[8.575832000000105,42.383606],[8.721666,42.57444],[9.055277,42.677498],[9.11944,42.73027000000013],[9.251389,42.720833],[9.29389,42.67555],[9.342499,42.737778],[9.308054,42.836105],[9.3530540000001,43.003883],[9.460833,42.986382],[9.489166000000125,42.805275],[9.446665,42.67889]]],[[[-1.19444,45.82249500000012],[-1.211945,45.806938],[-1.28222,45.905548000000124],[-1.37361,45.958054],[-1.40167,46.050552],[-1.23306,45.964722],[-1.170833,45.891663],[-1.19444,45.82249500000012]]],[[[-1.26083,46.156387],[-1.50694,46.20416300000011],[-1.553056,46.244995],[-1.474445,46.25583],[-1.291667,46.198051000000135],[-1.26083,46.156387]]],[[[-2.27083,46.69332900000012],[-2.36389,46.698051],[-2.385,46.72555],[-2.33361,46.73055],[-2.27083,46.69332900000012]]],[[[-2.196945,47.01722000000012],[-2.13722,46.943886000000134],[-2.145,46.90583],[-2.199445,46.961105],[-2.262778,46.969719],[-2.28472,47.02055400000012],[-2.196945,47.01722000000012]]],[[[-3.06667,47.306664],[-3.21583,47.302498],[-3.25861,47.376106],[-3.243333,47.391663],[-3.06667,47.306664]]],[[[-5.055,48.454163],[-5.10139,48.44221],[-5.134723,48.458328],[-5.064723,48.483055],[-5.055,48.454163]]],[[[-3.57667,48.803886],[-3.575556,48.81249],[-3.56333,48.808609],[-3.56611,48.80583200000012],[-3.57667,48.803886]]],[[[2.541667000000132,51.09111],[2.650555,50.816109],[2.898056,50.703049],[2.960556,50.7575],[3.149722,50.78999],[3.242222,50.66805],[3.298611,50.523048],[3.37278,50.49499500000013],[3.518055,50.518883],[3.607778,50.495827],[3.66055,50.45638300000013],[3.676944,50.395271],[3.774722000000111,50.353882],[4.038333,50.3555530000001],[4.165,50.283051],[4.194444,50.23749500000014],[4.149238,49.978371],[4.510555,49.947495],[4.673611,49.996384],[4.696944,50.09083],[4.832503,50.16861],[4.894722,50.140274],[4.820833,49.992775],[4.873055000000135,49.797218],[4.996666,49.80249800000013],[5.331111,49.656662],[5.437778,49.59999800000014],[5.4775,49.50416600000011],[5.792222,49.54583],[5.977777000000117,49.448608],[6.094444000000124,49.454163],[6.165277000000117,49.504715],[6.36217,49.45939],[6.416111,49.47583],[6.540555,49.425827],[6.730833,49.166107],[6.838888,49.154999],[6.8475,49.215271],[6.930555,49.22083],[7.090555,49.127495],[7.287777,49.111107],[7.423611,49.1772160000001],[7.486944,49.164162],[7.652089,49.04493700000012],[7.938611,49.048882],[8.22608,48.964417],[8.139166,48.895554],[8.092222,48.803604],[7.88,48.66416],[7.80222,48.575829],[7.736666,48.3986],[7.750833,48.336662],[7.578888,48.11972000000014],[7.56919,48.044777],[7.624166,47.97694400000012],[7.510833,47.703331],[7.588268,47.58448],[7.501389,47.55055],[7.49694,47.494995],[7.3825,47.432495],[7.24694,47.42083],[7.178333,47.445831],[7.14642,47.499054000000115],[6.990555,47.497215],[6.879999,47.360275],[7.00083,47.364998],[6.971666,47.291939],[6.639722,47.004166],[6.528333,46.971664],[6.460278,46.895828],[6.434999000000118,46.758049],[6.129999000000112,46.59333],[6.13528,46.539719],[6.071111,46.426384],[6.158333,46.373886],[6.106109,46.297489],[6.119166,46.264442000000145],[5.96611,46.20528],[5.996388,46.14694200000013],[6.152222,46.15361000000013],[6.271944000000133,46.26194],[6.225555,46.322495],[6.246388,46.357773],[6.491944,46.453049],[6.633611,46.464165],[6.803055,46.427773],[6.78389,46.148048],[7.005833000000109,45.999443],[7.03805,45.931938000000116],[6.980833,45.872215],[6.808888,45.831383],[6.809722000000136,45.72777600000012],[6.969444,45.596939],[6.99944,45.51832600000011],[7.146944,45.43055],[7.15861,45.377495],[7.127777,45.25777],[7.064722,45.223053],[6.826944,45.149719],[6.760833,45.168327],[6.61976,45.110138],[6.746944,44.91944],[7.031666,44.83138300000013],[7.02833,44.74472],[6.852777,44.540833],[6.876944,44.376663],[7.031388,44.246941],[7.348332,44.131943],[7.61472,44.180275],[7.66222,44.17083000000014],[7.70833,44.07944],[7.495,43.88166],[7.528055,43.788605],[7.15861,43.66305],[6.892221000000119,43.43583],[6.794167,43.422775],[6.636389,43.311104000000114],[6.700277000000142,43.275551],[6.6416660000001,43.184998],[6.18694,43.12861],[6.165277000000117,43.05055],[5.955555,43.118332],[5.838611,43.05999800000012],[5.776111,43.088051],[5.815555000000131,43.12028],[5.68922,43.188507],[5.36361,43.221939000000134],[5.36389,43.328331000000105],[5.322222000000124,43.366661],[5.213055,43.338608],[5.038888,43.347496],[5.04561,43.393997],[5.232499,43.467499],[5.2272210000001,43.496109000000104],[5.031388,43.556664],[5.009722,43.512215],[5.057500000000118,43.471382],[5.0397210000001,43.437607],[4.919167,43.435555],[4.83005,43.411385],[4.83939,43.390217],[4.743889000000138,43.42860400000012],[4.74917,43.51805100000013],[4.696666,43.57777],[4.73189,43.400444],[4.77272,43.373608],[4.652778,43.359718],[4.583888,43.369995],[4.60111,43.42860400000012],[4.535555000000102,43.45832800000011],[4.321111,43.45832800000011],[4.30944,43.512215],[4.241433,43.485954],[4.28778,43.45694],[4.190555,43.461937],[4.124722,43.498329],[4.138055,43.526108000000136],[4.10805,43.55499300000013],[3.964722,43.540833],[3.546667,43.319717],[3.25805,43.22749],[3.081388000000117,43.069443],[3.045278,42.954163],[2.96,42.83777600000013],[3.03805,42.728333],[3.049444000000108,42.553886],[3.143055,42.516388],[3.177655000000129,42.436806],[3.092222,42.42999300000013],[3.045278,42.474716],[2.95,42.48055],[2.678333,42.401665],[2.666389,42.34194200000013],[2.484722,42.343048000000124],[2.269166,42.43722],[2.137777,42.417221],[2.093611,42.364166],[2.017222,42.35305000000011],[1.906389000000104,42.446938],[1.723611,42.50944],[1.74305500000014,42.563606],[1.78172,42.569962],[1.73861,42.616386],[1.491944000000103,42.65361],[1.445833000000107,42.601944],[1.359167000000127,42.715271],[1.17389,42.709717],[1.091666,42.78444],[0.72,42.859161],[0.66778,42.839165],[0.651944,42.784996],[0.675506,42.688484],[0.43278,42.686661],[0.178611,42.735275],[-0.00556,42.68499800000012],[-0.308739,42.848381],[-0.39194,42.796387],[-0.562222,42.781387],[-0.73194,42.899162],[-0.746667,42.965553],[-0.93417,42.9525],[-1.300278,43.071663],[-1.360278,43.031662],[-1.43444,43.045555],[-1.4725,43.09111],[-1.41139,43.136665],[-1.39139,43.262772],[-1.73038,43.29898100000014],[-1.78088,43.359924],[-1.666945,43.385277],[-1.585278,43.44138],[-1.443889,43.640549000000135],[-1.208611,44.625832000000116],[-1.03611,44.675278],[-1.16889,44.776108],[-1.250278,44.662498],[-1.14111,45.4897160000001],[-1.08389,45.564438],[-1.058056,45.571388],[-1.05778,45.520828],[-0.7975,45.35694100000011],[-0.699445,45.09861],[-0.53667,44.89555400000012],[-0.554167,45.023331],[-0.65528,45.098328],[-0.717778,45.35721600000011],[-0.77667,45.4611],[-1.000278,45.61444100000011],[-1.240834,45.70166],[-1.23056,45.78805],[-1.14594,45.80294],[-1.148056,45.867775],[-1.06778,45.908882],[-1.05056,46.034439],[-1.148611,46.153328],[-1.10583,46.258606],[-1.11463,46.31658],[-1.172778,46.325829],[-1.220278,46.289719],[-1.78639,46.488327],[-1.86056,46.63777],[-2.130834,46.838333],[-2.13,46.89833],[-1.98417,47.034439],[-2.051667,47.097221],[-2.17083,47.126663],[-2.134167,47.278053],[-1.938334,47.274162],[-1.8025,47.211937],[-1.72861,47.210831],[-2.00333,47.31916],[-2.12944,47.309715],[-2.28917,47.23888],[-2.540278,47.29666],[-2.5275,47.38611],[-2.46667,47.417496],[-2.406389,47.407494],[-2.48472,47.45027],[-2.491667,47.49305],[-2.361111,47.504166],[-2.58083,47.537773],[-2.79306,47.48888],[-2.86994,47.540276],[-2.732778,47.545555],[-2.685,47.597221000000104],[-2.698056,47.637215],[-2.925333,47.581051],[-3.125,47.599442],[-3.12028,47.500549],[-3.08611,47.47361],[-3.10639,47.472221],[-3.150278,47.524994],[-3.14,47.59388700000011],[-3.21694,47.650551],[-3.50889,47.7586060000001],[-3.833889,47.800552],[-3.98222,47.889717],[-4.151112,47.854439],[-4.18278,47.804161],[-4.366389,47.804161],[-4.35,47.871941000000106],[-4.43611,47.9725],[-4.529443,48.022499],[-4.72614,48.04058],[-4.70806,48.06832900000012],[-4.28361,48.11472],[-4.31028,48.201385],[-4.441389,48.238327],[-4.49306,48.236107],[-4.555834,48.174995],[-4.62389,48.281944000000124],[-4.55944,48.336105],[-4.531112,48.341660000000104],[-4.55139,48.306107],[-4.530556,48.28999],[-4.18611,48.299995],[-4.43861,48.333054],[-4.440556,48.354996],[-4.76361,48.335274],[-4.77778,48.509438],[-4.6975,48.571663],[-4.58972,48.55999800000012],[-4.54167,48.635277],[-4.354167,48.674164],[-3.968056,48.72555],[-3.949445,48.6561],[-3.8575,48.636108],[-3.86028,48.683609],[-3.81056,48.726105],[-3.583056,48.675827],[-3.531945,48.73916600000012],[-3.58167,48.774994],[-3.536667,48.825829],[-3.38,48.82194],[-3.220834,48.870552],[-3.12444,48.864998],[-3.06083,48.826385],[-2.68528,48.50166],[-2.461667,48.637215],[-2.307222,48.67610900000011],[-2.03928,48.599552],[-1.97722,48.512497],[-1.94194,48.533607],[-1.95528,48.57944],[-2.006667,48.602776],[-2.01711,48.65094],[-1.98806,48.68694],[-1.84611,48.70916],[-1.87,48.649994000000106],[-1.825556,48.611382000000106],[-1.36889,48.64361],[-1.49889,48.689163],[-1.5625,48.747772],[-1.556389,49.015831000000105],[-1.585,49.00888800000013],[-1.5975,49.04027600000011],[-1.60972,49.215],[-1.75,49.35944],[-1.812222,49.377777],[-1.84861,49.635826],[-1.94556,49.67555],[-1.941667,49.72388],[-1.620556,49.655273],[-1.518813,49.658356],[-1.41083,49.70499400000011],[-1.26417,49.684166],[-1.22778,49.614441],[-1.296111,49.581665],[-1.29833,49.537216],[-1.11389,49.365273],[-1.06778,49.394722],[-0.92778,49.394722],[-0.827222,49.361664],[-0.410833,49.34083],[-0.22833,49.283607],[-0.039444,49.31472],[0.149167,49.409439],[0.424722,49.45166],[0.494444,49.48805],[0.25611,49.457222000000115],[0.119167,49.48472],[0.074167000000102,49.526665],[0.208889,49.718048],[0.640278000000137,49.86610400000012],[1.073611,49.92722],[1.2325,49.981667],[1.461111,50.124161],[1.552778,50.359993],[1.603851,50.36879],[1.558055,50.4061],[1.564444,50.705826],[1.625,50.877777],[1.792778,50.962776],[2.541667000000132,51.09111]]]]}},{"type":"Feature","properties":{"FIPS":"GA","ISO2":"GM","ISO3":"GMB","UN":270,"NAME":"Gambia","AREA":1000,"POP2005":1617029,"REGION":2,"SUBREGION":11,"LON":-15.386,"LAT":13.453},"geometry":{"type":"Polygon","coordinates":[[[-16.73167,13.44972],[-16.681946,13.49],[-16.591114,13.463888],[-16.584167,13.434999],[-16.622501,13.425833],[-16.546669,13.28861],[-16.421669,13.256943],[-16.247501,13.319443],[-16.221668,13.251389],[-16.154724,13.276667],[-16.203613,13.261944],[-16.224724,13.329166],[-16.162224,13.425278],[-16.052223,13.405277],[-15.773335,13.433054],[-15.636667,13.452776],[-15.544168,13.507776],[-15.328335,13.43861],[-15.30139,13.454166],[-15.295834,13.491665],[-15.362223,13.450554],[-15.556667,13.529999],[-15.811945,13.456388],[-16.091114,13.43111],[-16.14389,13.454166],[-16.272781,13.357498],[-16.394726,13.330555],[-16.513336,13.36861],[-16.501667,13.416111],[-16.56567,13.589998],[-15.48889,13.589443],[-15.458612,13.704443],[-15.364445,13.781387],[-15.30389,13.792221],[-15.25139,13.74472],[-15.070278,13.826387],[-14.856335,13.778612],[-14.791945,13.653332],[-14.718613,13.611944],[-14.631945,13.666943],[-14.540001,13.653332],[-14.497501,13.621666],[-14.472778,13.534443],[-14.337778,13.453888],[-13.973333,13.583055],[-13.886112,13.545555],[-13.798613,13.406387],[-13.867224,13.322498],[-14.095556,13.285],[-14.194168,13.231667],[-14.351112,13.237778],[-14.547777,13.335939],[-14.714724,13.360554],[-14.765001,13.423054],[-14.954723,13.471943],[-15.111668,13.595833],[-15.200556,13.531111],[-15.212778,13.429165],[-15.285002,13.374443],[-15.803612,13.347776],[-15.809723,13.159721],[-16.689724,13.164444],[-16.750874,13.059977],[-16.821667,13.323332],[-16.819168,13.368889],[-16.73167,13.44972]]]}},{"type":"Feature","properties":{"FIPS":"GB","ISO2":"GA","ISO3":"GAB","UN":266,"NAME":"Gabon","AREA":25767,"POP2005":1290693,"REGION":2,"SUBREGION":17,"LON":11.797,"LAT":-0.591},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.007776,-0.76778],[8.968611,-0.740556],[8.94666,-0.65833],[9.006666,-0.59889],[9.046665,-0.666667],[9.007776,-0.76778]]],[[[9.55444,0.274444],[9.54139,0.267222],[9.538055,0.27083],[9.544443,0.285000000000139],[9.55444,0.274444]]],[[[12.523611,2.283333],[12.755,2.232778],[13.161943,2.283889],[13.259722,2.26444],[13.29583200000013,2.22555],[13.288332,2.06694],[13.184166,1.929167],[13.19444,1.813056],[13.141943,1.703055],[13.137499,1.56861],[13.24638700000014,1.39555],[13.24778,1.325833],[13.175833000000125,1.278055],[13.18678,1.22248],[13.573055,1.305833],[13.78278,1.38889],[13.803333,1.43583],[13.903610000000128,1.438889],[14.073889,1.375278],[14.18889,1.391389],[14.273888,1.326389],[14.320555,1.106111000000112],[14.484165000000132,0.920833],[14.47361,0.83083],[14.349998,0.625],[14.273888,0.54667],[14.0875,0.537778000000117],[13.888611,0.222778000000119],[13.95083,0.024722],[13.848331,-0.19861],[13.90167,-0.26667],[13.943054,-0.235278],[14.128887000000134,-0.27778],[14.192499,-0.444722],[14.322222000000124,-0.435556],[14.4175,-0.47889],[14.518610000000136,-0.60917],[14.420277,-0.99528],[14.482498,-1.26],[14.464722,-1.55056],[14.404444000000124,-1.597778],[14.42972200000014,-1.89167],[14.258333,-1.97306],[14.221388000000102,-2.29278],[14.110832,-2.493056],[13.865833000000121,-2.468889],[13.878887,-2.314723],[13.76222,-2.088889],[13.72722,-2.18417],[13.482777,-2.4375],[13.04139,-2.32778],[13.001507,-2.367672],[13.006388,-2.24028],[12.967499,-2.1825],[12.921389,-2.18417],[12.82139,-1.91278],[12.65,-1.8225],[12.585,-1.827222],[12.52055,-1.8725],[12.506943,-1.921667],[12.440277,-1.890833],[12.448055,-2.02444],[12.502222,-2.133889],[12.4780540000001,-2.327222],[12.0525,-2.41694],[11.96417,-2.33333],[11.801666000000125,-2.37222],[11.733332000000132,-2.41889],[11.659166,-2.35389],[11.57416,-2.33333],[11.647499,-2.620833],[11.54611,-2.79389],[11.543333000000132,-2.856945],[11.64278,-2.818056],[11.804443,-3.01306],[11.7175,-3.05056],[11.701111,-3.178056],[11.9725,-3.311389],[11.83944300000013,-3.556111],[11.925833,-3.636945],[11.87361,-3.70861],[11.740000000000123,-3.686667],[11.654999,-3.640278],[11.580276,-3.531667],[11.496944,-3.50694],[11.22555,-3.69361],[11.140661,-3.925277],[11.010555000000123,-3.8075],[10.953888,-3.66778],[10.71417,-3.47194],[10.629721,-3.308889],[10.501389000000131,-3.16889],[9.884443,-2.646111],[9.700832,-2.44556],[9.769053,-2.495432],[9.96944,-2.580556],[9.97305,-2.625556],[10.016109000000142,-2.63972],[10.15583,-2.580278],[10.130554000000132,-2.52],[10.07611,-2.493333],[9.981388,-2.56111],[9.868055,-2.41944],[9.75861,-2.48],[9.615276,-2.37667],[9.57472,-2.21361],[9.38083300000011,-2.015556],[9.322498,-1.9075],[9.443333,-1.9175],[9.537777,-2.07028],[9.566111,-2.03194],[9.485277,-1.864167],[9.379721,-1.8225],[9.34805,-1.856667],[9.257500000000107,-1.84611],[9.23055,-1.61472],[9.030277,-1.336111],[9.007786,-1.29776],[8.98305,-1.23417],[9.028325,-1.32361],[9.075554000000125,-1.34028],[9.233332,-1.53028],[9.291111,-1.638889],[9.361944,-1.629167],[9.41166,-1.672778],[9.42277700000011,-1.61417],[9.513887,-1.59667],[9.437777,-1.512778],[9.391943,-1.563334],[9.284721,-1.56722],[9.251389,-1.49861],[9.339167,-1.395],[9.352777,-1.34194],[9.334444,-1.281667],[9.32944300000014,-1.36806],[9.219166,-1.4125],[9.173332,-1.411945],[9.028055,-1.29972],[8.99944,-1.15972],[8.78639,-0.81389],[8.699165000000107,-0.586111],[8.79111,-0.681667],[8.9558320000001,-0.75194],[9.01389,-0.81917],[9.098888,-0.60472],[9.311666,-0.336389],[9.352221,0.01889],[9.303055,0.311667],[9.3475,0.363056],[9.38166600000011,0.20361],[9.46694,0.167222],[9.737221,0.114444],[9.92111,0.18528],[9.775833,0.183333000000118],[9.55003,0.29846],[9.5,0.290833000000134],[9.403055,0.485556],[9.351665,0.53],[9.30361,0.528333],[9.315832,0.6225],[9.537777,0.675000000000125],[9.599998000000141,0.48111],[9.63111,0.552778],[9.625277,0.780833],[9.559999000000118,0.9533330000001],[9.57778,1.00472],[9.680832,1.0575],[9.749722,1.056389000000138],[9.94392,0.926066],[9.992213,1.00188],[11.35389,1.001944],[11.339764,2.168611],[11.367777,2.303611],[12.22028,2.2825],[12.335657000000138,2.317898],[12.523611,2.283333]]]]}},{"type":"Feature","properties":{"FIPS":"GG","ISO2":"GE","ISO3":"GEO","UN":268,"NAME":"Georgia","AREA":6949,"POP2005":4473409,"REGION":142,"SUBREGION":145,"LON":43.518,"LAT":42.176},"geometry":{"type":"Polygon","coordinates":[[[41.547623,42.405777],[41.522484,42.561371],[41.438599,42.731659],[41.213608,42.800262],[41.155823,42.789162],[41.032761,42.973038],[40.93277,42.972214],[40.843597,43.067772],[40.36055,43.163315],[40.215271,43.318604],[40.002968,43.379265],[40.077492,43.546944],[40.220818,43.584717],[40.543053,43.508606],[40.684708,43.54583],[41.037766,43.377213],[41.193047,43.38472],[41.605263,43.220261],[42.031097,43.187485],[42.181107,43.23555],[42.415268,43.239159],[42.625824,43.143044],[42.701096,43.182487],[42.857216,43.177483],[43.200829,42.936371],[43.560547,42.860825],[43.67083,42.7911],[43.8325,42.748322],[43.735268,42.645264],[43.784714,42.600822],[43.911934,42.583321],[44.184433,42.623871],[44.549721,42.759438],[44.671928,42.744156],[44.808327,42.665268],[44.900826,42.763054],[45.060265,42.69249],[45.158875,42.705826],[45.351662,42.529427],[45.552773,42.550262],[45.756943,42.482201],[45.647484,42.204712],[45.986931,42.028603],[46.239983,42.001389],[46.446381,41.904427],[46.42054,41.837769],[46.33194,41.759163],[46.211372,41.748871],[46.197762,41.669159],[46.333878,41.481659],[46.621094,41.364998],[46.690819,41.316666],[46.710815,41.255272],[46.62249,41.100548],[46.508606,41.046097],[46.243317,41.205544],[46.03138,41.170273],[45.850822,41.212769],[45.717766,41.277489],[45.716927,41.348595],[45.328606,41.463608],[44.863602,41.214706],[44.562202,41.185265],[44.248871,41.223595],[44.144707,41.18499],[43.862488,41.162209],[43.782204,41.115822],[43.561661,41.136375],[43.46077,41.112961],[43.457497,41.1661],[43.387215,41.200554],[43.233597,41.190269],[42.827492,41.584991],[42.597771,41.583054],[42.564995,41.508324],[42.472214,41.433327],[42.182487,41.5075],[41.96804,41.519157],[41.833321,41.428322],[41.724709,41.492493],[41.531559,41.523876],[41.727211,41.7211],[41.776093,41.841927],[41.760818,41.961372],[41.656647,42.130547],[41.632767,42.271935],[41.547623,42.405777]]]}},{"type":"Feature","properties":{"FIPS":"GH","ISO2":"GH","ISO3":"GHA","UN":288,"NAME":"Ghana","AREA":22754,"POP2005":2253501,"REGION":2,"SUBREGION":11,"LON":-1.207,"LAT":7.96},"geometry":{"type":"Polygon","coordinates":[[[0.63953,5.845486],[0.662222,5.754167],[0.359167,5.778055],[0.255833,5.757777],[-0.069167,5.578055],[-0.357858,5.49314],[-0.493333,5.367777],[-0.69,5.307777],[-0.795556,5.208055],[-1.062222,5.196666],[-1.250834,5.094166],[-1.613333,5.020833],[-1.955833,4.768611],[-2.058889,4.730833],[-2.33,4.913888],[-3.103041,5.085022],[-3.102272,5.109545],[-2.975556,5.083055],[-2.734445,5.112778],[-2.783611,5.280277],[-2.741667,5.446388],[-2.7975,5.615555],[-2.937778,5.613889],[-3.013611,5.7075],[-3.006389,5.857778],[-3.070278,5.991944],[-3.094722,6.145277],[-3.168039,6.256312],[-3.249167,6.611388],[-3.206667,6.695277],[-3.224442,6.818616],[-3.096355,7.050622],[-3.023889,7.073055],[-2.923611,7.595555],[-2.785,7.853611],[-2.774445,7.946666],[-2.660278,8.023054],[-2.560278,8.164165],[-2.487778,8.197777],[-2.579445,8.764999],[-2.617796,8.78414],[-2.595556,8.82472],[-2.616667,8.914444],[-2.655556,9.013054],[-2.7675,9.06361],[-2.760834,9.121666],[-2.681111,9.229721],[-2.667778,9.382776],[-2.676111,9.471388],[-2.771111,9.572777],[-2.744666,9.65304],[-2.794167,9.728888],[-2.761389,9.802221],[-2.796112,10.057777],[-2.771389,10.216944],[-2.916389,10.598055],[-2.927525,10.708147],[-2.836945,10.885832],[-2.834048,11.002007],[-0.986945,11.014444],[-0.679834,10.997797],[-0.618333,10.911665],[-0.285278,11.166666],[-0.149762,11.13854],[-0.096667,11.092222],[0.029722,11.084166],[0.031111,10.984165],[-0.059444,10.782221],[-0.077222,10.645555],[0.045833,10.586111],[0.228889,10.409443],[0.289722,10.410276],[0.368333,10.259443],[0.352778,10.098055],[0.4,10.054998],[0.400229,10.030489],[0.353611,10.031111],[0.324444,9.76222],[0.253056,9.65361],[0.2175,9.457222],[0.276389,9.41861],[0.358889,9.488609],[0.440556,9.494165],[0.502778,9.472221],[0.553889,9.394165],[0.5275,9.206388],[0.448333,9.032221],[0.514444,8.918888],[0.512778,8.844444],[0.4875,8.79361],[0.3875,8.740833],[0.465556,8.599722],[0.646944,8.476944],[0.728889,8.309721],[0.611667,8.21611],[0.622926,7.89673],[0.596389,7.705555],[0.519444,7.580277],[0.510556,7.460555],[0.564722,7.386666],[0.646667,7.4],[0.652222,7.282777],[0.608055,7.014444],[0.525,6.947778],[0.566944,6.816111],[0.648333,6.72611],[0.658056,6.612222],[0.744722,6.573333],[0.723333,6.518332],[0.758889,6.447778],[0.904722,6.329444],[1.000278,6.327777],[1.099975,6.160341],[1.201111,6.16],[1.198891,6.100546],[1.030555,5.961944],[0.965278,5.794722],[0.692222,5.748055],[0.634444,5.948055],[0.51209,6.055245],[0.411944,6.084167],[0.370556,6.044999],[0.255833,6.102777],[0.208197,6.089699],[0.359167,6.021944],[0.42,6.070555],[0.488889,6.043611],[0.614444,5.949166],[0.63953,5.845486]]]}},{"type":"Feature","properties":{"FIPS":"GJ","ISO2":"GD","ISO3":"GRD","UN":308,"NAME":"Grenada","AREA":34,"POP2005":105237,"REGION":19,"SUBREGION":29,"LON":-61.678,"LAT":12.118},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.74695,11.997499],[-61.78973,12.009165],[-61.72472,12.17222],[-61.675835,12.227777000000117],[-61.61195,12.23111],[-61.59639,12.125555],[-61.628616,12.048054],[-61.74695,11.997499]]],[[[-61.58,12.29555],[-61.589172,12.29805],[-61.5789,12.323055],[-61.5725,12.30888700000014],[-61.58,12.29555]]],[[[-61.42834,12.453609],[-61.49695,12.443609],[-61.43445,12.529165],[-61.41945,12.5075],[-61.42834,12.453609]]]]}},{"type":"Feature","properties":{"FIPS":"GL","ISO2":"GL","ISO3":"GRL","UN":304,"NAME":"Greenland","AREA":41045,"POP2005":57475,"REGION":19,"SUBREGION":21,"LON":-41.391,"LAT":74.719},"geometry":{"type":"MultiPolygon","coordinates":[[[[-43.648056,59.847488],[-43.902222,59.79027600000012],[-44.08167,59.800827],[-44.11555,59.82916],[-44.10778,59.86999],[-43.95805,59.979713],[-43.72666,59.913322],[-43.638054,59.86805],[-43.648056,59.847488]]],[[[-43.29501,59.92083],[-43.371109,59.914154],[-43.32778,59.997215],[-43.20417,59.968323000000105],[-43.29501,59.92083]]],[[[-44.313889,59.871933],[-44.38028,59.909431],[-44.244164,60.01166],[-43.992226,60.008331],[-44.145546,59.89951],[-44.313889,59.871933]]],[[[-43.39999,59.92610200000013],[-43.50917,59.91249],[-43.45333,60.03804800000011],[-43.34028,60.009995],[-43.39999,59.92610200000013]]],[[[-44.40944,59.947769],[-44.497498,60.00861],[-44.434441,60.14138],[-44.27917,60.121933],[-44.20167,60.046104],[-44.40944,59.947769]]],[[[-43.354172,60.084435],[-43.13111,60.055267],[-43.19805,59.988045],[-43.575,60.078049],[-43.477776,60.04833200000012],[-43.57278,59.91471],[-43.91194,59.993881],[-43.93444,60.044998000000135],[-44.11666,60.102776],[-44.13277,60.140831000000105],[-44.088608,60.174164000000125],[-43.98611,60.167213],[-43.354172,60.084435]]],[[[-45.232498,60.14332600000011],[-45.27583,60.130547],[-45.299995,60.145828],[-45.266113,60.18749200000013],[-45.22472,60.173882],[-45.232498,60.14332600000011]]],[[[-45.365,60.185265],[-45.41111,60.181664],[-45.35389,60.382492],[-45.152222,60.37638],[-45.135,60.343605],[-45.19028,60.26028],[-45.365,60.185265]]],[[[-45.95472,60.615547],[-45.99695,60.626656],[-45.97083,60.681938],[-45.78333,60.660820000000115],[-45.95472,60.615547]]],[[[-45.88861,60.695824],[-45.985203,60.692226],[-46.091942,60.635551000000135],[-46.20472,60.67277],[-46.00695,60.706383],[-45.88861,60.695824]]],[[[-46.345551,60.66805],[-46.450554,60.676384],[-46.49944,60.699158],[-46.42333,60.748604],[-46.27722,60.772217],[-46.258057,60.744995],[-46.345551,60.66805]]],[[[-47.23444,60.76944],[-47.30695,60.769714],[-47.358337,60.791664],[-47.315552,60.806938000000116],[-47.23444,60.76944]]],[[[-46.980278,60.772766000000104],[-47.021385,60.778046],[-47.04945,60.805267],[-47.011116,60.80804400000011],[-46.980278,60.772766000000104]]],[[[-47.16138,60.79805],[-47.203888,60.801384],[-47.22694,60.818054],[-47.15278,60.816666000000104],[-47.16138,60.79805]]],[[[-47.75417,60.80471000000011],[-47.83112,60.753883],[-47.65083,60.75471],[-47.90278,60.676384],[-48.076393,60.698875],[-48.23889,60.795547000000106],[-47.95389,60.837494],[-47.75417,60.80471000000011]]],[[[-47.101944,60.822769],[-47.17639,60.827774],[-47.1925,60.83582300000012],[-47.083611,60.87471],[-47.101944,60.822769]]],[[[-47.231384,60.841934],[-47.25861,60.855827],[-47.17834,60.871933],[-47.17805,60.86693600000012],[-47.231384,60.841934]]],[[[-47.140839,60.87915800000013],[-47.171669,60.8836060000001],[-47.07333,60.92666],[-47.08889,60.89888],[-47.140839,60.87915800000013]]],[[[-47.029442,60.897217],[-47.05028,60.895271],[-46.958054,60.925552],[-46.982498,60.90777],[-47.029442,60.897217]]],[[[-46.75362,60.75027500000011],[-46.845001,60.760551],[-46.34639,60.9191590000001],[-46.206947,60.949715],[-46.16444,60.922493],[-46.20666,60.885269],[-46.75362,60.75027500000011]]],[[[-46.46639,60.922218],[-46.51417,60.93055],[-46.52666,60.988884],[-46.429443,60.9758220000001],[-46.42167,60.933327000000126],[-46.46639,60.922218]]],[[[-48.073616,61.053879],[-48.33083,61.053604],[-48.37055,61.07861],[-48.243332,61.098602000000135],[-48.046112,61.060272],[-48.073616,61.053879]]],[[[-48.93444,61.249161],[-48.955276,61.252777],[-48.9375,61.275551],[-48.87417,61.30138],[-48.724167,61.291382],[-48.93444,61.249161]]],[[[-48.58333,61.312767],[-48.65361,61.309715],[-48.83306,61.334991000000116],[-48.713615,61.36749300000014],[-48.52333,61.361107],[-48.51916,61.325554],[-48.58333,61.312767]]],[[[-42.453056,61.441376],[-42.496666,61.454994000000106],[-42.38972,61.48888],[-42.392227,61.48387900000011],[-42.453056,61.441376]]],[[[-49.089722,61.63333100000011],[-49.14,61.626656],[-49.19444,61.662209],[-49.149445,61.700546],[-49.084442,61.671661],[-49.089722,61.63333100000011]]],[[[-49.39223,61.70694],[-49.46584,61.713882],[-49.48527,61.751389],[-49.462219,61.77444],[-49.349998,61.74305],[-49.39223,61.70694]]],[[[-42.26916,61.750275],[-42.16194,61.85666],[-42.08444,61.874992],[-42.12111,61.77276600000011],[-42.26916,61.750275]]],[[[-49.44055,61.87471000000011],[-49.570557,61.883606],[-49.63417,61.93082400000014],[-49.41945,61.93055],[-49.44055,61.87471000000011]]],[[[-49.66333,62.18027],[-49.751114,62.190269],[-49.79834,62.213882000000126],[-49.650276,62.23777],[-49.626663,62.200546000000145],[-49.66333,62.18027]]],[[[-42.27722,62.577217],[-42.13111,62.56471],[-42.125557,62.496384],[-42.257225,62.5061],[-42.29861,62.571663],[-42.27722,62.577217]]],[[[-41.996109,62.774994],[-41.94549,62.735409],[-41.86195,62.734718],[-41.92944,62.71832300000011],[-42.04861,62.749435],[-42.20306,62.731659],[-42.025276,62.723602],[-42.06611,62.68277],[-42.228607,62.711105],[-42.375832,62.679161],[-42.44778,62.751389],[-42.32611,62.79972],[-41.996109,62.774994]]],[[[-41.561386,62.873604],[-41.6125,62.912209],[-41.58861,63.002495],[-41.45834,63.016388],[-41.561386,62.873604]]],[[[-50.63666,63.07388300000013],[-50.67028,63.025269],[-50.755,63.06193500000011],[-50.66194,63.10305],[-50.63666,63.07388300000013]]],[[[-41.33388,63.05027],[-41.464447,63.049164],[-41.52639,63.081383],[-41.37333,63.109993],[-41.305832,63.07416],[-41.33388,63.05027]]],[[[-50.799728,63.0816650000001],[-50.88722,63.122215],[-50.78805,63.186653],[-50.68278,63.116661],[-50.799728,63.0816650000001]]],[[[-50.618057,63.114716],[-50.681114,63.145271],[-50.612221,63.20166000000011],[-50.55805,63.20610000000011],[-50.4686,63.15332],[-50.618057,63.114716]]],[[[-41.20944,63.157768],[-41.18444,63.122765],[-41.401939,63.132492],[-41.46639,63.171379],[-41.435829,63.20916],[-41.20944,63.157768]]],[[[-41.09583,63.2211],[-41.43083,63.231377],[-41.70639,63.382767],[-41.84583,63.424995],[-41.87194,63.46666],[-41.67361,63.489716],[-41.556862,63.41943400000014],[-41.226944,63.330276],[-41.09583,63.2211]]],[[[-51.273613,63.476936],[-51.357224,63.468323000000105],[-51.35805,63.48333000000013],[-51.322227,63.527489],[-51.20472,63.49916100000012],[-51.273613,63.476936]]],[[[-52.00084,64.12776200000013],[-52.04695,64.130539],[-52.063614,64.16387900000012],[-51.90583,64.188873],[-52.00084,64.12776200000013]]],[[[-40.674171,64.291367],[-40.67944,64.208603],[-41.01972,64.192749],[-41.05278,64.2327580000001],[-40.88612,64.300537],[-40.674171,64.291367]]],[[[-41.12556,64.288315],[-41.18527,64.257492],[-41.374168,64.28498800000011],[-41.29695,64.317215],[-41.12556,64.288315]]],[[[-51.56722,64.2561],[-51.60084,64.282486],[-51.43972,64.36249],[-51.321388,64.32638500000013],[-51.56722,64.2561]]],[[[-51.239723,64.214706],[-51.34194,64.25332600000013],[-51.139442,64.38721],[-51.025,64.549423],[-50.81917,64.541656],[-50.82417,64.4749910000001],[-50.97111,64.41775500000011],[-51.12694,64.299423],[-51.141388,64.257767],[-51.239723,64.214706]]],[[[-51.32362,64.373596],[-51.42139,64.41331500000013],[-51.22666,64.55609],[-51.091942,64.56666600000011],[-51.23444,64.41331500000013],[-51.32362,64.373596]]],[[[-52.08306,64.59137],[-52.14194,64.59776],[-52.14917,64.627197],[-52.119995,64.62915],[-52.08306,64.59137]]],[[[-40.18,64.431091],[-40.49028,64.49081400000011],[-40.573891,64.68692],[-40.78528,64.80525200000011],[-40.864723,64.9086],[-40.74834,64.933868],[-40.542778,64.844147],[-40.44444,64.74971],[-40.51139,64.721649],[-40.3675,64.554703],[-40.14917,64.489426],[-40.18,64.431091]]],[[[-40.495834,65.015274],[-40.61611,65.027771],[-40.62527,65.038589],[-40.556389,65.073883],[-40.48361,65.054428],[-40.495834,65.015274]]],[[[-52.39667,65.10942100000011],[-52.39917,65.1574860000001],[-52.36139,65.1869200000001],[-52.245003,65.18166],[-52.39667,65.10942100000011]]],[[[-39.49445,65.31999],[-39.509445,65.2727660000001],[-39.56444,65.26582300000013],[-39.80444,65.33387800000014],[-39.72639,65.370819],[-39.49445,65.31999]]],[[[-39.277779,65.46138],[-39.289444,65.453049],[-39.386948,65.501938],[-39.238892,65.50861],[-39.277779,65.46138]]],[[[-52.928337,65.425262],[-53.01306,65.449417],[-53.087776,65.492477],[-52.958611,65.527206],[-52.871941,65.513611],[-52.928337,65.425262]]],[[[-37.03751,65.532761],[-37.19154,65.53262300000011],[-37.21333,65.578049],[-37.09972,65.584427],[-37.0275,65.554428],[-37.03751,65.532761]]],[[[-38.849167,65.5186],[-38.95666,65.5080410000001],[-38.95861,65.517761],[-38.82445,65.5894320000001],[-38.761116,65.54166],[-38.849167,65.5186]]],[[[-52.995003,65.548874],[-53.167778,65.555817],[-53.232498,65.598328],[-53.01472,65.656937],[-52.84805,65.64415],[-52.895279,65.577484],[-52.995003,65.548874]]],[[[-36.99555,65.584427],[-37.105278,65.60693400000014],[-37.2125,65.68441800000011],[-37.07973,65.729431],[-36.992226,65.701096],[-36.90944,65.646378],[-36.99555,65.584427]]],[[[-36.79834,65.75055],[-36.8425,65.733597],[-36.93805,65.785538],[-36.942772,65.819717],[-36.776947,65.863876],[-36.79834,65.75055]]],[[[-37.39416,65.813599],[-37.26945,65.755829],[-37.38583,65.75544000000012],[-37.49472,65.808319],[-37.43999,65.71138],[-37.311668,65.688034],[-37.38277,65.63053900000011],[-37.485001,65.607208],[-37.5695,65.598427],[-37.608612,65.638885],[-37.70722,65.655258],[-37.644943,65.59960200000012],[-37.685555,65.572495],[-37.865837,65.573044],[-37.934998,65.594986],[-37.989166,65.698318],[-37.958336,65.79443400000014],[-37.68694,65.9041600000001],[-37.39416,65.813599]]],[[[-36.31972,65.82193],[-36.38194,65.833328],[-36.371109,65.87747200000013],[-36.24972,65.91832],[-36.18306,65.878036],[-36.31972,65.82193]]],[[[-36.619995,65.7952580000001],[-36.736664,65.801651],[-36.74834,65.90971400000012],[-36.50722,65.95694000000015],[-36.51195,65.913315],[-36.619995,65.7952580000001]]],[[[-53.525276,66.04248],[-53.62194,66.038315],[-53.679726,66.08194],[-53.42306,66.08442700000012],[-53.525276,66.04248]]],[[[-35.499725,66.174149],[-35.55639,66.18637],[-35.537506,66.22554],[-35.385,66.24081400000011],[-35.499725,66.174149]]],[[[-33.86195,66.793869],[-33.96111,66.788879],[-33.970551,66.83971],[-33.88444,66.872482],[-33.836945,66.82165500000013],[-33.86195,66.793869]]],[[[-53.07084,66.8660890000001],[-53.20583,66.82276900000011],[-53.464165,66.79887400000013],[-53.443329,66.83665500000012],[-53.34583,66.873871],[-52.86823,66.89721700000013],[-53.07084,66.8660890000001]]],[[[-33.43111,67.142212],[-33.46333,67.134155],[-33.4761,67.18054200000012],[-33.34222,67.20471],[-33.43111,67.142212]]],[[[-33.252228,67.295258],[-33.28306,67.296097],[-33.327782,67.3361],[-33.25695,67.376083],[-33.252228,67.295258]]],[[[-53.65889,67.675812],[-53.753616,67.736649],[-53.763062,67.776932],[-53.672501,67.782211],[-53.58778,67.733597],[-53.590553,67.702484],[-53.65889,67.675812]]],[[[-53.34722,68.009995],[-53.38028,68.012497],[-53.473053,68.06915],[-53.34972,68.111649],[-53.22527,68.05859],[-53.34722,68.009995]]],[[[-51.29333,68.10081500000013],[-51.89167,68.059982],[-52.00751,68.07666000000012],[-51.432777,68.150543],[-51.205276,68.121643],[-51.29333,68.10081500000013]]],[[[-31.75417,68.15387],[-31.93028,68.173599],[-31.95805,68.20665],[-31.73722,68.224701],[-31.76589,68.19190200000014],[-31.690556,68.174988],[-31.75417,68.15387]]],[[[-29.838055,68.140823],[-30.002781,68.16832000000011],[-30.011669,68.207489],[-29.89472,68.23858600000011],[-29.69472,68.2086],[-29.723331,68.168869],[-29.838055,68.140823]]],[[[-52.07084,68.115265],[-52.315834,68.168869],[-51.45417,68.257767],[-51.546669,68.200821],[-52.07084,68.115265]]],[[[-52.988892,68.357758],[-53.11195,68.357758],[-53.211945,68.40138],[-53.01972,68.49443],[-52.85417,68.43332],[-52.988892,68.357758]]],[[[-52.74972,68.484711],[-52.83417,68.515549],[-52.88417,68.54887400000013],[-52.80944,68.56860400000011],[-52.73722,68.51776100000012],[-52.74972,68.484711]]],[[[-52.64167,68.529984],[-52.69472,68.546097],[-52.564163,68.586105],[-52.43944,68.560806],[-52.64167,68.529984]]],[[[-51.94194,68.594437],[-52.04945,68.57499700000011],[-52.42139,68.571381],[-52.39999,68.610809],[-52.217216,68.641937],[-52.03278,68.623032],[-52.11445,68.60193],[-52.07695,68.58082600000012],[-51.93694,68.641098],[-51.80333,68.627197],[-51.94194,68.594437]]],[[[-51.03528,68.639435],[-51.211113,68.645264],[-51.232773,68.66666],[-51.12944,68.68275],[-51.03528,68.639435]]],[[[-52.13473,68.70109600000012],[-52.3275,68.632751],[-52.70583,68.62052900000015],[-53.12055,68.564148],[-53.04917,68.636108],[-52.801392,68.653595],[-52.767776,68.66554300000013],[-52.846947,68.66666],[-52.63417,68.710266],[-52.13473,68.70109600000012]]],[[[-23.28667,69.641098],[-23.50695,69.65776],[-23.593056,69.713043],[-23.289444,69.738312],[-23.22166,69.66943400000014],[-23.28667,69.641098]]],[[[-50.50528,69.810532],[-50.535,69.81192],[-50.60639,69.85637],[-50.409721,69.8611],[-50.50528,69.810532]]],[[[-50.92333,69.89276100000012],[-50.77972,69.885269],[-50.653885,69.836655],[-50.79667,69.761383],[-50.875832,69.770828],[-50.96528,69.724426],[-50.98695,69.630264],[-50.958336,69.550537],[-51.121941,69.50444],[-51.24139,69.52943],[-51.334442,69.68526],[-51.38805,69.70526100000012],[-51.00695,69.87997400000012],[-51.197495,69.83332800000011],[-51.362778,69.851929],[-51.221107,69.91304],[-51.019722,69.92303500000014],[-50.92333,69.89276100000012]]],[[[-52.693054,69.91748],[-51.99695,69.798599],[-51.903885,69.731934],[-52.02666,69.6736],[-51.833328,69.626083],[-52.01028,69.524429],[-52.25417,69.44832],[-53.574722,69.229431],[-53.8525,69.26332100000013],[-53.901665,69.3119200000001],[-54.15361,69.33554100000015],[-54.269165,69.402206],[-54.22138,69.451096],[-53.79555,69.41748],[-53.386391,69.439697],[-53.57667,69.474152],[-53.485832,69.56053],[-53.3475,69.579712],[-53.558609,69.56553600000012],[-53.62861,69.49054],[-53.791946,69.451096],[-53.858612,69.466095],[-53.730827,69.515549],[-53.991943,69.49165],[-53.86555,69.56749000000013],[-53.951393,69.605545],[-53.99028,69.59693900000013],[-53.984726,69.560806],[-54.071388,69.54582],[-54.65889,69.570541],[-54.99445,69.694702],[-54.896111,69.74887100000012],[-54.67695,69.751389],[-54.38944,69.675262],[-54.634445,69.774994],[-54.88473,69.804153],[-54.93611,69.845535],[-54.863892,69.93664600000011],[-54.753891,69.96443],[-54.229439,69.91304],[-54.60917,69.986923],[-54.82973,70.078323],[-54.84333,70.175812],[-54.76112,70.24054000000012],[-54.42917,70.309708],[-53.51972,70.240814],[-53.2664,70.194977],[-53.0475,70.120255],[-52.693054,69.91748]]],[[[-54.661385,70.372482],[-54.934723,70.375534],[-54.992775,70.402481],[-55.027779,70.483047],[-54.73722,70.433594],[-54.661667,70.399429],[-54.661385,70.372482]]],[[[-51.512779,70.65387],[-51.69444,70.677765],[-51.86167,70.722214],[-51.6925,70.72777],[-51.512779,70.65387]]],[[[-27.68528,70.73387100000014],[-27.75333,70.75194],[-27.76167,70.859985],[-27.736942,70.882202],[-27.276112,70.874985],[-27.39167,70.805817],[-27.68528,70.73387100000014]]],[[[-51.565834,70.8647],[-51.650833,70.834991],[-52.16222,70.88666],[-52.13306,70.952209],[-52.023056,70.979156],[-51.565834,70.8647]]],[[[-25.39472,70.91165200000012],[-25.28278,70.689697],[-25.294445,70.659714],[-25.798611,70.602478],[-26.02972,70.521103],[-26.21333,70.585266],[-26.53333,70.529434],[-26.940556,70.51915],[-27.878056,70.428864],[-28.136665,70.454712],[-28.027225,70.60054000000014],[-27.67,70.6519320000001],[-27.520279,70.73082000000011],[-27.267223,70.7958220000001],[-27.14959,70.87439000000012],[-26.33167,70.92886],[-25.71167,71.08055100000013],[-25.67639,71.07666],[-25.68639,71.00194],[-25.39472,70.91165200000012]]],[[[-25.308891,71.0144350000001],[-25.414444,71.02388],[-25.57917,71.10220300000015],[-25.460556,71.1041560000001],[-25.308891,71.0144350000001]]],[[[-25.282501,71.13193],[-25.400555,71.131363],[-25.47277,71.150543],[-25.359722,71.205261],[-25.254169,71.13888],[-25.282501,71.13193]]],[[[-53.64917,71.024155],[-53.95639,71.0961],[-53.99028,71.131363],[-53.59805,71.313309],[-53.376389,71.11499000000015],[-53.473053,71.042206],[-53.64917,71.024155]]],[[[-52.571388,71.3461],[-52.402222,71.35054],[-52.328339,71.28776600000015],[-52.60278,71.23137],[-52.642227,71.169144],[-52.935829,71.14721700000013],[-53.115837,71.2061],[-53.18444,71.321381],[-52.961388,71.385269],[-52.571388,71.3461]]],[[[-53.133614,71.661926],[-52.88917,71.653595],[-52.75611,71.66026],[-53.21806,71.52638],[-53.435272,71.55247500000013],[-53.474442,71.652481],[-53.133614,71.661926]]],[[[-55.559166,71.81915300000014],[-55.68694,71.825546],[-55.805557,71.87886],[-55.54834,71.93109],[-55.41,71.89027],[-55.559166,71.81915300000014]]],[[[-55.79611,72.070541],[-55.91361,72.07388300000014],[-55.93861,72.079437],[-55.725273,72.12608],[-55.74611,72.079437],[-55.79611,72.070541]]],[[[-55.374168,72.15971400000011],[-55.506393,72.143051],[-55.68889,72.198593],[-55.52333,72.270264],[-55.015282,72.377197],[-55.02972,72.294434],[-55.205,72.25027],[-55.374168,72.15971400000011]]],[[[-55.065002,72.525269],[-55.21333,72.52693],[-55.383331,72.545258],[-55.030556,72.588882],[-55.065002,72.525269]]],[[[-55.65028,72.58248900000012],[-55.84583,72.549988],[-55.82084,72.57471],[-55.99472,72.55748],[-55.943054,72.5935970000001],[-55.65028,72.58248900000012]]],[[[-55.13194,72.60081500000013],[-55.26222,72.597763],[-55.196663,72.67747],[-54.946663,72.672211],[-55.13194,72.60081500000013]]],[[[-54.8325,72.69553],[-55.032219,72.69525],[-55.0625,72.718323],[-54.98138,72.76361],[-54.872498,72.756943],[-54.806107,72.731934],[-54.8325,72.69553]]],[[[-55.70417,72.715],[-55.77167,72.681366],[-55.84111,72.700546],[-56.036667,72.65027],[-56.17028,72.658325],[-56.2261,72.7061],[-55.63944,72.777771],[-55.70417,72.715]]],[[[-55.946663,72.82361],[-55.823891,72.808319],[-55.80167,72.79248000000013],[-55.992226,72.786652],[-55.946663,72.82361]]],[[[-55.28556,72.681091],[-55.53278,72.55165],[-55.58388,72.58693],[-55.48138,72.609146],[-55.84944,72.611374],[-55.815552,72.65498],[-55.60583,72.704163],[-55.61777,72.75499],[-55.19747,72.84532],[-54.96472,72.811371],[-55.09389,72.732483],[-55.28556,72.681091]]],[[[-23.60861,72.83499],[-23.14389,72.8361],[-23.03167,72.748032],[-22.706387,72.659424],[-22.68028,72.627197],[-21.9525,72.48332],[-21.928612,72.47053],[-21.932499,72.399155],[-22.052223,72.38693],[-22.25806,72.438583],[-22.65028,72.46666],[-22.756947,72.44136],[-22.742496,72.3894350000001],[-22.675831,72.35971100000012],[-22.134167,72.271652],[-22.12389,72.164993],[-22.160278,72.13361],[-22.31139,72.11276],[-22.562778,72.13888500000013],[-22.973331,72.24165],[-23.0875,72.31192],[-24.000278,72.46582000000012],[-24.01111,72.50943000000012],[-24.08694,72.545258],[-24.3475,72.583603],[-24.48444,72.825821],[-24.262779,72.87052900000015],[-24.00695,72.87387100000012],[-23.60861,72.83499]]],[[[-55.58639,72.89027],[-55.51445,72.888596],[-55.352501,72.85220300000015],[-55.536667,72.822495],[-55.61028,72.882202],[-55.58639,72.89027]]],[[[-24.89667,72.777771],[-25.214722,72.822769],[-25.21083,72.851654],[-25.14583,72.881653],[-24.771389,72.910812],[-24.865833,72.85054],[-24.89667,72.777771]]],[[[-55.07556,72.96554600000013],[-55.13417,72.93109],[-55.30583,72.91832],[-55.387779,72.962494],[-55.501114,72.948868],[-55.689163,72.993591],[-55.51861,73.045822],[-55.07556,72.96554600000013]]],[[[-55.753334,73.01138300000014],[-55.862503,73.016098],[-55.889725,73.025818],[-55.76722,73.051651],[-55.69389,73.032211],[-55.753334,73.01138300000014]]],[[[-22.549168,73.007217],[-22.242222,72.972763],[-22.10139,72.925812],[-21.90667,72.920258],[-21.89056,72.88888],[-22.19194,72.805817],[-21.991108,72.78027],[-21.865833,72.71388200000013],[-21.91583,72.675812],[-22.529446,72.705261],[-22.789444,72.80664100000013],[-23.132221,72.87052900000015],[-24.02972,72.91415],[-24.528614,72.895828],[-24.58889,72.95748900000012],[-24.5275,72.984146],[-23.27333,73.062759],[-22.549168,73.007217]]],[[[-21.35333,73.09137],[-21.46278,73.11859],[-21.17305,73.13443000000012],[-21.20222,73.11554],[-21.35333,73.09137]]],[[[-56.201942,73.155548],[-56.29362,73.15887],[-56.331673,73.172211],[-56.27333,73.218872],[-56.1725,73.186371],[-56.201942,73.155548]]],[[[-56.097778,73.08638],[-56.13222,73.08194],[-56.03928,73.135651],[-56.026947,73.180817],[-56.06111,73.198868],[-56.01722,73.228592],[-55.886116,73.261383],[-55.815552,73.224701],[-55.95139,73.171646],[-55.97138,73.12191800000011],[-56.097778,73.08638]]],[[[-55.686386,73.282761],[-55.80278,73.279434],[-55.871666,73.327774],[-55.785278,73.36026],[-55.654167,73.35637],[-55.628052,73.298874],[-55.686386,73.282761]]],[[[-55.95389,73.29914900000011],[-56.11056,73.289154],[-56.15333,73.304153],[-56.017776,73.409988],[-55.83083,73.37331],[-55.95389,73.29914900000011]]],[[[-55.53167,73.318054],[-55.593887,73.344147],[-55.37527,73.41693],[-55.32834,73.394989],[-55.53167,73.318054]]],[[[-24.36,73.41192600000011],[-23.711666,73.34054600000012],[-23.21,73.233597],[-23.657776,73.22026100000011],[-24.24722,73.293045],[-24.907501,73.32443],[-25.010281,73.30941800000011],[-23.63055,73.184143],[-23.130833,73.18136600000012],[-22.93861,73.13472000000013],[-23.009167,73.094986],[-24.40389,73.02388000000013],[-25.04667,73.11499],[-25.4525,73.12109],[-25.712776,73.186371],[-25.290836,73.327774],[-25.29945,73.378586],[-25.24305,73.405823],[-24.36,73.41192600000011]]],[[[-55.80666,73.41943400000014],[-56.03445,73.444138],[-56.055275,73.454437],[-55.815552,73.473602],[-55.782776,73.438873],[-55.80666,73.41943400000014]]],[[[-55.58972,73.381088],[-55.751671,73.392212],[-55.686386,73.475815],[-56.115837,73.55664],[-55.943054,73.57026700000011],[-55.89999,73.535263],[-55.47083,73.43193100000013],[-55.58972,73.381088]]],[[[-56.41028,73.541931],[-56.558609,73.55636600000014],[-56.51417,73.603317],[-56.33,73.656097],[-56.188606,73.627472],[-56.41028,73.541931]]],[[[-56.34416,73.67248500000011],[-56.833328,73.61137400000013],[-56.965553,73.65803],[-56.443329,73.705261],[-56.34416,73.67248500000011]]],[[[-56.368607,73.766098],[-56.26556,73.764709],[-56.205559,73.718323],[-56.43694,73.76805],[-56.368607,73.766098]]],[[[-55.95666,73.834717],[-55.98389,73.8077550000001],[-56.15361,73.823608],[-56.32333,73.783325],[-56.35834,73.789154],[-56.318893,73.832214],[-56.62722,73.81137100000012],[-56.777222,73.875809],[-56.61777,73.915817],[-55.95666,73.834717]]],[[[-20.016113,73.88443000000012],[-20.09639,73.882751],[-20.23472,73.92637600000012],[-20.11361,73.93275],[-20.016113,73.88443000000012]]],[[[-20.92694,74.419983],[-20.53167,74.401382],[-20.43444,74.34943],[-20.46416,74.310532],[-20.427776,74.273315],[-20.12389,74.20109600000012],[-20.213612,74.15776100000011],[-21.21,74.086105],[-21.990833,74.22720300000015],[-21.86611,74.340271],[-21.557503,74.41304],[-21.17444,74.45387],[-20.92694,74.419983]]],[[[-56.53083,74.530548],[-56.462776,74.50416600000011],[-56.628052,74.47998],[-57.55666,74.488312],[-56.730278,74.559418],[-56.53083,74.530548]]],[[[-56.982773,74.553589],[-57.095551,74.55748000000011],[-56.938606,74.61053500000014],[-56.83861,74.59166],[-56.982773,74.553589]]],[[[-57.185272,74.57609600000012],[-57.28194,74.5816650000001],[-57.168892,74.62942],[-57.08306,74.613037],[-57.185272,74.57609600000012]]],[[[-18.83861,74.53831500000013],[-19.15833,74.550262],[-19.22,74.5811000000001],[-18.866665,74.674988],[-18.752781,74.6561],[-18.72055,74.623596],[-18.73,74.569717],[-18.83861,74.53831500000013]]],[[[-18.530003,74.7122],[-18.319721,74.710815],[-18.300556,74.705261],[-18.361279,74.682533],[-18.316666,74.638596],[-18.383057,74.620255],[-18.49416,74.627762],[-18.593613,74.717209],[-18.530003,74.7122]]],[[[-57.47639,74.7061],[-57.66666,74.704987],[-57.72722,74.721924],[-57.54861,74.74443],[-57.431114,74.717484],[-57.47639,74.7061]]],[[[-20.166943,74.897491],[-20.03056,74.923035],[-19.729164,74.85859700000015],[-20.08445,74.702774],[-20.45083,74.73109],[-20.687778,74.81165],[-20.54667,74.910538],[-20.611111,74.983047],[-20.49305,75.03082300000011],[-20.29528,75.049713],[-19.960556,74.992477],[-20.199997,74.920258],[-20.166943,74.897491]]],[[[-17.80833,75.30609],[-17.991665,75.254715],[-18.13194,75.262497],[-18.215275,75.225266],[-17.76111,75.08137],[-17.5975,75.098328],[-17.53528,75.14444000000015],[-17.433056,75.16138],[-17.319721,75.131088],[-17.400555,75.011108],[-17.62083,74.93109],[-17.64416,74.937759],[-17.60472,74.993866],[-17.87222,75.029434],[-18.509445,74.98054500000012],[-18.91555,75.004166],[-18.92389,75.086105],[-18.8325,75.15443],[-18.85889,75.2958220000001],[-18.83917,75.328323],[-18.552502,75.37359600000013],[-18.442497,75.351379],[-18.38222,75.305817],[-18.244164,75.302475],[-18.134167,75.33194000000015],[-18.136387,75.379974],[-18.083611,75.42164600000012],[-17.860001,75.358597],[-17.80833,75.30609]]],[[[-65.049438,76.01388],[-65.106384,76.01471],[-65.221115,76.04553],[-65.056107,76.086105],[-64.95557,76.054977],[-65.049438,76.01388]]],[[[-64.05556,76.059418],[-64.078613,76.059143],[-64.146118,76.093048],[-64.097229,76.128311],[-64.01472,76.110535],[-64.05556,76.059418]]],[[[-61.89944,76.1297],[-61.965,76.14415],[-61.962219,76.17859],[-61.88167,76.18664600000011],[-61.85333,76.15582],[-61.89944,76.1297]]],[[[-20.343056,76.2641600000001],[-20.40639,76.263611],[-20.66083,76.338882],[-20.456387,76.36720300000013],[-20.158611,76.346939],[-20.343056,76.2641600000001]]],[[[-69.976105,76.39415],[-70.15167,76.412201],[-70.18832,76.43915],[-69.98416,76.459152],[-69.894455,76.43692],[-69.976105,76.39415]]],[[[-20.388054,76.4516600000001],[-20.49611,76.47499],[-20.26778,76.49525],[-20.271389,76.475266],[-20.388054,76.4516600000001]]],[[[-21.35305,76.472488],[-21.445831,76.475266],[-21.48972,76.4897],[-21.420277,76.518326],[-21.24944,76.49971],[-21.35305,76.472488]]],[[[-20.793335,76.38998400000014],[-20.946388,76.395264],[-21.141109,76.447479],[-20.835556,76.5247],[-20.72083,76.513885],[-20.695553,76.411102],[-20.793335,76.38998400000014]]],[[[-20.712776,76.560806],[-20.933887,76.519714],[-20.93944,76.52331500000014],[-20.78528,76.59082000000011],[-20.62556,76.579437],[-20.712776,76.560806]]],[[[-69.66945,76.53054800000012],[-69.76334,76.52887],[-70.03639,76.563309],[-69.591675,76.60971],[-69.464722,76.579437],[-69.66945,76.53054800000012]]],[[[-21.08306,76.569153],[-21.40361,76.5683290000001],[-21.547501,76.61526500000014],[-21.39555,76.648331],[-20.963886,76.62915],[-21.12472,76.58971],[-21.08306,76.569153]]],[[[-19.648056,76.69832],[-19.745831,76.70082100000013],[-19.85722,76.73193400000014],[-19.761112,76.757492],[-19.60556,76.726379],[-19.648056,76.69832]]],[[[-18.65305,76.60165],[-18.7225,76.509995],[-18.695553,76.33276400000011],[-18.60445,76.223602],[-18.64861,76.163605],[-18.54889,76.023605],[-18.560833,75.944702],[-18.63528,75.889984],[-18.655834,75.9019320000001],[-18.636665,75.982758],[-18.87917,76.203049],[-18.90833,76.24971],[-18.891945,76.29332],[-19.141945,76.52943],[-19.04528,76.593872],[-18.76306,76.587769],[-18.98083,76.6230319999999],[-19.08333,76.72859],[-19.01917,76.75943],[-18.73527,76.68830900000012],[-18.65305,76.60165]]],[[[-19.69194,76.781937],[-19.76889,76.782486],[-19.809166,76.78859],[-19.726109,76.852203],[-19.59,76.81164600000011],[-19.69194,76.781937]]],[[[-20.19278,76.82249],[-20.33667,76.819153],[-20.38944,76.84721400000011],[-20.210556,76.86859],[-20.16611,76.850815],[-20.19278,76.82249]]],[[[-71.942215,77.30442800000014],[-72.115005,77.314697],[-72.5739,77.41387900000012],[-72.25944,77.45583],[-71.34584,77.375809],[-71.56221,77.32527],[-71.942215,77.30442800000014]]],[[[-70.66777,77.45776],[-70.05638,77.399155],[-71.07556,77.37136800000013],[-71.299438,77.447754],[-70.66777,77.45776]]],[[[-66.19638,77.50444],[-66.66083,77.488586],[-66.731384,77.507217],[-66.29277,77.51721],[-66.19638,77.50444]]],[[[-19.834446,77.50555400000012],[-19.93528,77.51805100000013],[-20.04167,77.56581100000011],[-19.9775,77.583054],[-19.83028,77.55470300000013],[-19.834446,77.50555400000012]]],[[[-66.90056,77.59166],[-66.97084,77.599426],[-66.62582,77.636383],[-66.765015,77.60498],[-66.90056,77.59166]]],[[[-20.113335,77.65332],[-20.00833,77.606934],[-20.121666,77.580551],[-20.27722,77.62915],[-20.43833,77.62886],[-20.141666,77.68830900000012],[-20.10805,77.683868],[-20.113335,77.65332]]],[[[-18.03722,77.666092],[-18.242222,77.67997700000012],[-17.94194,77.84137],[-17.91111,77.88777],[-17.681667,77.9124910000001],[-17.58417,77.837769],[-17.73278,77.708603],[-18.03722,77.666092]]],[[[-19.54222,77.916092],[-19.61861,77.92276],[-19.699722,77.965],[-19.61361,77.97192],[-19.54222,77.916092]]],[[[-19.94056,77.96666],[-20.0725,77.957764],[-19.698887,77.88472],[-19.349445,77.892487],[-19.229164,77.829712],[-19.351944,77.801651],[-19.77583,77.830551],[-20.490833,77.95471],[-20.36444,77.97747800000013],[-19.94056,77.96666]]],[[[-21.31028,77.885544],[-21.39056,77.88859600000012],[-21.42805,77.9236],[-21.24694,78.00166],[-21.111111,78.01221],[-21.31028,77.885544]]],[[[-20.536114,78.015823],[-20.63194,78.03248600000012],[-20.36278,78.0516510000001],[-20.39083,78.039703],[-20.536114,78.015823]]],[[[-19.276669,78.11775200000011],[-19.36306,78.12248],[-19.38333,78.1272],[-19.29889,78.175812],[-19.24528,78.139435],[-19.276669,78.11775200000011]]],[[[-19.043335,78.0769350000001],[-19.19194,78.11775200000011],[-18.82972,78.17638],[-18.91222,78.14749100000012],[-19.043335,78.0769350000001]]],[[[-20.915833,78.146103],[-20.98638,78.150269],[-21.04306,78.181366],[-20.85556,78.16527],[-20.915833,78.146103]]],[[[-20.52667,78.161377],[-20.599998,78.16165200000012],[-20.78333,78.19136],[-20.535278,78.229431],[-20.302223,78.213318],[-20.52667,78.161377]]],[[[-19.49055,78.241364],[-19.55361,78.23803700000012],[-19.595,78.247208],[-19.51722,78.2872],[-19.42277,78.276657],[-19.49055,78.241364]]],[[[-19.15889,78.240265],[-19.26083,78.23831],[-19.353333,78.283325],[-19.046112,78.32998700000013],[-18.885555,78.2952580000001],[-19.15889,78.240265]]],[[[-19.633331,78.276657],[-19.710278,78.2986],[-19.6775,78.386383],[-19.49055,78.330551],[-19.534447,78.28831500000013],[-19.633331,78.276657]]],[[[-19.28833,78.313873],[-19.36945,78.327484],[-19.4025,78.39444],[-19.252781,78.417206],[-19.081944,78.363037],[-19.28833,78.313873]]],[[[-18.97,78.392487],[-19.083057,78.408035],[-19.09778,78.42526],[-18.88111,78.428864],[-18.97,78.392487]]],[[[-19.12611,78.455261],[-19.25417,78.445816],[-19.10778,78.483871],[-18.96416,78.47499],[-19.12611,78.455261]]],[[[-18.571945,78.57805],[-18.73889,78.606094],[-18.52889,78.68054200000012],[-18.314724,78.6736],[-18.571945,78.57805]]],[[[-18.24305,78.750824],[-18.292778,78.739426],[-18.325832,78.79721100000012],[-18.29722,78.856094],[-18.18444,78.86775200000011],[-18.07556,78.817764],[-18.24305,78.750824]]],[[[-19.346947,78.811371],[-19.18222,78.803864],[-19.41778,78.78332],[-19.159443,78.77083],[-19.47555,78.724701],[-19.75667,78.795258],[-19.40722,78.925537],[-19.190834,78.95305],[-19.205,78.877472],[-19.32556,78.853317],[-19.346947,78.811371]]],[[[-18.03722,78.992752],[-18.119999,78.997757],[-18.10722,79.07944],[-17.849998,79.21554600000013],[-17.74194,79.232208],[-17.556389,79.164154],[-17.607224,79.087769],[-18.03722,78.992752]]],[[[-19.375,79.126373],[-19.43944,79.13443],[-19.496666,79.195816],[-19.31444,79.23137],[-19.375,79.126373]]],[[[-19.90833,80.059143],[-19.97555,80.059418],[-20.01417,80.09664900000011],[-19.870556,80.21192900000011],[-19.756947,80.241364],[-19.441666,80.239151],[-19.01889,80.163605],[-19.90833,80.059143]]],[[[-66.59528,80.608597],[-66.789169,80.61026],[-66.878876,80.63777],[-66.896118,80.671097],[-66.76556,80.681091],[-66.53168,80.61693],[-66.59528,80.608597]]],[[[-20.59722,81.67248500000011],[-20.52,81.66581700000012],[-20.164444,81.681931],[-20.453053,81.6244200000001],[-20.93055,81.606369],[-20.79528,81.635269],[-20.76778,81.67831400000011],[-20.97111,81.71443],[-20.80222,81.729706],[-20.610279,81.701096],[-20.63139,81.679428],[-20.59722,81.67248500000011]]],[[[-18.585556,81.646652],[-19.17305,81.74942],[-19.245831,81.777771],[-18.755001,81.801926],[-18.30445,81.662201],[-18.585556,81.646652]]],[[[-19.77778,81.870255],[-20.24555,81.900269],[-20.72472,82.054428],[-20.78194,82.13388],[-20.554722,82.17804],[-20.306667,82.130539],[-20.193054,82.092209],[-20.16361,82.051926],[-19.88583,81.9747],[-19.74694,81.89721700000013],[-19.77778,81.870255]]],[[[-18.858334,81.97442600000011],[-19.003056,81.9897],[-19.0125,82.038315],[-19.26583,82.106934],[-19.41389,82.20555100000013],[-19.23889,82.188034],[-18.79222,81.99192800000014],[-18.858334,81.97442600000011]]],[[[-51.88861,82.208878],[-52.22333,82.218597],[-52.277222,82.23305],[-52.293892,82.27748],[-52.087776,82.29027],[-51.79528,82.214157],[-51.88861,82.208878]]],[[[-51.46889,81.968323],[-51.93444,81.98027000000013],[-53.164444,82.10582],[-53.22805,82.12109],[-53.35751,82.2249910000001],[-53.324448,82.268875],[-53.167778,82.31749],[-52.81834,82.31666600000011],[-52.55805,82.275818],[-52.59917,82.25861],[-52.431114,82.190262],[-51.846947,82.13804600000014],[-51.19194,81.993591],[-51.46889,81.968323]]],[[[-48.2125,82.395828],[-48.42778,82.468323],[-48.86445,82.53915400000011],[-48.31945,82.53137200000015],[-48.034729,82.46443],[-48.12444,82.403595],[-48.2125,82.395828]]],[[[-46.00306,82.64444],[-44.962776,82.505829],[-44.43889,82.396942],[-44.418892,82.366089],[-44.865005,82.28442400000012],[-45.067223,82.21666],[-44.73722,82.09582],[-45.07667,82.0558170000001],[-45.438606,82.18248000000011],[-46.94138,82.370529],[-47.17917,82.502487],[-47.749168,82.624985],[-46.855835,82.63916],[-46.83611,82.670258],[-46.675003,82.67608600000011],[-46.00306,82.64444]]],[[[-40.17445,82.6602630000001],[-40.255562,82.65971],[-40.4725,82.686371],[-40.28917,82.698029],[-40.17445,82.6602630000001]]],[[[-49.95472,82.769989],[-50.067223,82.775543],[-49.967216,82.7994230000001],[-49.72305,82.779984],[-49.95472,82.769989]]],[[[-47.56861,82.782486],[-48.29111,82.7836],[-48.39306,82.803314],[-48.41555,82.84804],[-48.3375,82.886383],[-48.140556,82.88888500000012],[-47.442497,82.803864],[-47.56861,82.782486]]],[[[-46.443886,82.832489],[-46.799995,82.83998],[-47.2625,82.930817],[-46.86861,82.914703],[-46.407501,82.836105],[-46.443886,82.832489]]],[[[-39.57056,82.996643],[-40.363335,83.083054],[-40.546112,83.15332],[-40.11195,83.164703],[-39.2775,83.081375],[-39.57056,82.996643]]],[[[-39.905,82.99887100000012],[-39.860832,82.97916],[-40.595551,83.00943],[-41.48277,83.164993],[-40.836945,83.16360500000013],[-40.53167,83.081375],[-40.08583,83.04914900000011],[-39.905,82.99887100000012]]],[[[-38.31861,83.1336060000001],[-38.57,83.13972500000011],[-38.65972,83.164703],[-38.00917,83.152481],[-38.31861,83.1336060000001]]],[[[-40.157776,83.20332300000013],[-40.24917,83.20166],[-40.57917,83.219711],[-40.086945,83.2116550000001],[-40.157776,83.20332300000013]]],[[[-41.03722,83.208603],[-41.53667,83.21138000000013],[-41.60639,83.224426],[-41.42417,83.24220300000013],[-41.00167,83.212204],[-41.03722,83.208603]]],[[[-42.097778,83.24220300000013],[-42.38194,83.245255],[-42.41806,83.25388],[-42.35028,83.274994],[-41.959442,83.251663],[-42.097778,83.24220300000013]]],[[[-41.24445,83.287766],[-41.61472,83.3022],[-41.68444,83.313599],[-41.45639,83.327209],[-41.232773,83.30554],[-41.24445,83.287766]]],[[[-39.64611,83.262207],[-39.394447,83.206375],[-38.79945,83.167206],[-38.639725,83.115814],[-39.493057,83.148041],[-40.051941,83.25610400000011],[-40.67333,83.280273],[-40.648056,83.322769],[-40.5089,83.359421],[-39.64611,83.262207]]],[[[-38.902779,83.29054300000013],[-39.238609,83.289703],[-39.62194,83.33692900000011],[-39.42028,83.397217],[-39.223885,83.396942],[-39.07084,83.377197],[-38.902779,83.29054300000013]]],[[[-32.30028,83.57026700000011],[-31.87194,83.596375],[-31.154167,83.56721500000015],[-30.215,83.5961],[-29.254723,83.52916],[-29.21333,83.519714],[-29.255558,83.498032],[-29.15722,83.47998],[-28.826946,83.51416000000012],[-28.51306,83.494141],[-28.90805,83.4712070000001],[-28.602501,83.416092],[-28.149723,83.430267],[-28.44305,83.45359800000011],[-28.39194,83.462769],[-27.43283,83.466614],[-26.099998,83.369705],[-25.650555,83.291656],[-26.03889,83.20665],[-26.95611,83.1436],[-30.047501,83.171371],[-31.929165,83.051651],[-33.38778,83.150543],[-33.48305,83.142212],[-32.88277,83.110809],[-32.471382,83.04693600000013],[-34.131668,82.935532],[-35.61777,82.901093],[-35.296394,82.886383],[-35.41945,82.86581400000011],[-35.55139,82.7644350000001],[-35.434998,82.741364],[-35.307503,82.844711],[-34.886948,82.90637200000015],[-33.92445,82.90332],[-33.80556,82.84748800000011],[-33.9375,82.79332],[-33.88194,82.788879],[-33.690277,82.83082600000012],[-33.728882,82.91304000000014],[-33.53695,82.945251],[-31.97583,82.99414100000013],[-31.77528,82.983597],[-31.719444,82.96804800000011],[-31.70916,82.93136600000014],[-31.643612,82.92915],[-31.46967,82.994652],[-30.88278,83.070267],[-30.356667,83.080276],[-30.05944,83.12553400000013],[-28.55305,83.10498],[-28.1775,83.041931],[-27.925831,83.07916300000011],[-26.665001,83.060806],[-25.142223,83.16276600000015],[-24.84528,83.111099],[-24.987221,83.080551],[-24.751114,83.000824],[-25.24305,82.844147],[-25.606945,82.783875],[-25.901112,82.777481],[-25.487778,82.77916],[-24.586666,82.898605],[-24.20666,82.8797],[-23.99277,82.911652],[-23.84111,82.892487],[-24.02556,82.86554],[-24.02222,82.757217],[-23.768059,82.77832],[-23.68778,82.832214],[-23.378887,82.848877],[-22.83389,82.758331],[-22.599445,82.794708],[-21.31417,82.608032],[-21.431389,82.54999],[-22.21611,82.447205],[-22.307777,82.421097],[-22.208611,82.381927],[-22.481667,82.33083],[-23.049999,82.28997800000013],[-23.765,82.29137],[-25.06889,82.152481],[-26.16389,82.14415],[-27.9675,82.186371],[-29.78722,82.130539],[-30.359165,82.188583],[-31.618889,82.207489],[-30.45555,82.17581200000012],[-30.02583,82.13832100000013],[-29.90472,82.093323],[-32.772224,81.86053500000013],[-33.04945,81.818878],[-33.098335,81.77388],[-33.01833,81.656372],[-32.56444,81.680542],[-32.351395,81.74386600000012],[-31.62722,81.831375],[-29.723331,81.94165],[-29.68694,81.933044],[-29.77028,81.89554],[-29.758892,81.87052900000015],[-29.639168,81.8683170000001],[-29.43055,81.921371],[-29.47611,81.94609100000014],[-28.99722,81.99443100000013],[-27.369999,82.024704],[-25.2025,81.989426],[-25.24583,81.820831],[-25.42833,81.748032],[-27.630833,81.486099],[-27.5175,81.454437],[-27.2525,81.454437],[-27.18444,81.408325],[-27.57278,81.391098],[-27.32861,81.38081],[-25.13583,81.64305100000013],[-24.946667,81.69136],[-24.210556,81.70833],[-24.102501,81.768875],[-24.1525,81.86526],[-24.119999,81.947754],[-24.002224,82.00972],[-22.301392,82.08442700000012],[-22.016945,81.933044],[-21.95972,81.768051],[-21.97361,81.73304700000011],[-22.23111,81.46582000000011],[-22.584724,81.317764],[-22.96416,81.29332],[-22.761948,81.26165800000012],[-23.87944,80.88916],[-23.803612,80.80664100000011],[-23.97583,80.72887],[-24.419445,80.684418],[-24.06139,80.688873],[-24.545,80.554153],[-24.51167,80.540817],[-23.671944,80.71666],[-23.62861,80.77665700000011],[-23.50639,80.81248],[-23.584446,80.8683170000001],[-23.55944,80.889435],[-23.265278,80.906372],[-22.76167,80.992752],[-22.744999,81.039154],[-22.36389,81.13721],[-21.75944,81.245819],[-21.77583,81.27415500000012],[-21.74722,81.29803500000014],[-21.48055,81.3311],[-21.44833,81.414429],[-20.76917,81.58055],[-19.94083,81.68304],[-19.90639,81.680542],[-20.23139,81.601379],[-20.216942,81.56192],[-20.30556,81.451096],[-20.252224,81.4236],[-20.107777,81.433044],[-19.924168,81.49582],[-19.55667,81.551926],[-19.22889,81.55498],[-18.97361,81.541931],[-18.87611,81.473877],[-18.79417,81.482208],[-18.775,81.51915],[-18.72277,81.529709],[-18.42222,81.450821],[-18.017223,81.468048],[-18.04139,81.54248],[-17.784168,81.5522],[-17.60833,81.603043],[-17.88833,81.6372070000001],[-17.9275,81.672211],[-17.862778,81.730545],[-17.35389,81.701935],[-17.53722,81.745529],[-17.534725,81.853592],[-16.895279,81.857208],[-16.839722,81.87303],[-16.909443,81.905258],[-16.70055,81.931931],[-15.66305,81.90138200000013],[-14.768057,81.91832],[-13.910278,81.82222],[-13.169167,81.780823],[-12.77972,81.724701],[-12.56045,81.645973],[-12.155001,81.603317],[-12.58278,81.4791560000001],[-13.11333,81.403595],[-13.243889,81.35137900000012],[-13.19889,81.32805],[-13.219721,81.32222000000013],[-13.65222,81.27832000000011],[-13.7675,81.21331800000013],[-14.02722,81.141937],[-14.975277,81.128311],[-15.14056,81.083328],[-14.94111,81.00082],[-14.65056,80.94693000000012],[-14.95667,80.875259],[-15.83,80.829987],[-15.923334,80.8022],[-16.005001,80.7285920000001],[-16.67444,80.7061],[-17.66444,80.74275],[-17.95916,80.80525],[-18.0225,80.792206],[-18.03361,80.75305200000014],[-17.99694,80.72608900000012],[-18.01778,80.71443],[-18.577778,80.625259],[-20.0875,80.687195],[-20.579723,80.584991],[-21.247498,80.57554600000014],[-20.81139,80.55247500000013],[-20.84389,80.51416],[-20.81167,80.49832200000014],[-20.642776,80.55247500000013],[-20.262222,80.584717],[-20.06861,80.646942],[-18.5125,80.545532],[-17.86139,80.56972],[-17.43861,80.6297],[-16.97528,80.5663760000001],[-16.22472,80.54054300000011],[-16.11389,80.50249],[-16.541946,80.380539],[-16.685555,80.370529],[-16.607777,80.403595],[-16.758892,80.40416],[-16.724998,80.361923],[-16.58167,80.343323],[-17.11389,80.2369230000001],[-18.37972,80.21081500000014],[-19.700832,80.285812],[-19.99611,80.25109900000012],[-20.22472,80.143875],[-20.554722,80.10582000000011],[-20.363613,80.083328],[-20.43306,80.045822],[-20.599167,80.02887],[-20.465275,79.9897],[-20.755001,79.86499],[-20.41222,79.84526100000011],[-20.326946,79.760544],[-19.876667,79.84193],[-20.20694,79.81694],[-20.257225,79.881363],[-20.05333,79.979706],[-19.28944,80.10331700000012],[-18.91213,80.07957],[-17.933887,80.14109800000011],[-17.69333,80.12608],[-17.449165,80.055817],[-17.991108,79.816666],[-18.2225,79.75499],[-18.49667,79.7410890000001],[-19.228611,79.78887900000011],[-19.63139,79.66137700000013],[-19.576389,79.62997400000012],[-19.595,79.56387300000011],[-19.724998,79.526382],[-19.802223,79.45694000000015],[-19.68167,79.432205],[-19.64722,79.4041600000001],[-19.656387,79.350266],[-19.87111,79.19971],[-19.868889,79.15305],[-19.6775,79.22998000000013],[-19.619999,79.31499],[-19.573612,79.3311],[-19.09167,79.299988],[-19.206387,79.218048],[-19.078888,79.20054600000014],[-19.306667,79.168869],[-19.29444,79.257492],[-19.196777,79.27894],[-19.37833,79.2749940000001],[-19.565,79.205261],[-19.523613,79.154709],[-19.575,79.124985],[-19.93,79.117752],[-20.09111,79.06359900000012],[-19.91472,78.96416],[-19.91722,78.91748],[-20.01806,78.877197],[-20.66444,78.891663],[-20.79528,78.83581500000012],[-21.182499,78.809982],[-21.099167,78.798325],[-21.012779,78.71054100000015],[-20.92639,78.689972],[-21.42694,78.64444000000015],[-21.33778,78.623596],[-20.968056,78.651382],[-20.90639,78.624146],[-21.13028,78.51416],[-21.373055,78.30554200000012],[-21.37611,78.261658],[-21.277225,78.23526],[-21.28805,78.2122],[-21.48889,78.12970000000013],[-21.75889,78.13443],[-21.406109,78.110535],[-21.73694,78.00166],[-21.835556,77.918594],[-21.57917,77.971375],[-21.89722,77.806641],[-22.03944,77.68830900000012],[-21.42667,77.673035],[-21.72805,77.546097],[-21.57833,77.56415],[-21.41389,77.635269],[-21.36694,77.8072],[-21.08917,77.95221],[-20.86639,78.015274],[-20.605835,77.97415200000012],[-20.603611,77.933319],[-20.31195,77.870819],[-19.239998,77.763046],[-18.956665,77.62886],[-19.353611,77.582489],[-19.9675,77.712494],[-20.256947,77.7291560000001],[-20.91389,77.66887],[-20.39028,77.61026],[-20.24555,77.55470300000013],[-20.48083,77.56832900000012],[-20.653053,77.54665],[-20.357224,77.527481],[-20.40389,77.507217],[-21.053612,77.543869],[-20.712776,77.49304],[-20.011948,77.453598],[-20.20361,77.413315],[-20.539444,77.433319],[-20.77528,77.41304],[-19.70666,77.386932],[-19.41222,77.316666],[-19.398056,77.297485],[-19.461388,77.25055],[-19.420834,77.239975],[-19.295002,77.26193],[-19.01278,77.22693],[-19.01694,77.285538],[-19.07444,77.328049],[-18.968887,77.37276],[-18.39583,77.3427580000001],[-18.23194,77.277481],[-18.144722,77.08749],[-18.120556,76.948318],[-18.30528,76.806091],[-18.51861,76.80971],[-18.4575,76.741364],[-18.91083,76.85609],[-19.29695,76.861649],[-19.87111,76.959717],[-20.17139,76.9422],[-20.72305,76.988312],[-20.97778,76.981934],[-21.03583,76.943588],[-20.69944,76.95444],[-20.580555,76.91914400000013],[-20.79972,76.86859],[-21.116665,76.899155],[-21.72889,76.8836060000001],[-20.93944,76.842484],[-21.068333,76.785812],[-21.30528,76.79664600000012],[-21.28889,76.783051],[-21.32667,76.74109],[-21.605,76.64471400000014],[-21.748608,76.659149],[-21.938053,76.766937],[-22.24055,76.85720800000013],[-22.41944,76.8336],[-22.360279,76.775543],[-22.40833,76.74414100000011],[-22.6125,76.743591],[-22.73889,76.70444],[-22.7075,76.672485],[-22.5,76.62251300000014],[-22.434166,76.545532],[-22.32917,76.51138],[-22.285278,76.52442900000011],[-22.33833,76.581375],[-22.184166,76.637207],[-21.81444,76.59027],[-21.677776,76.52388],[-22.03611,76.46193],[-21.674442,76.47804300000011],[-21.74555,76.44136],[-21.92,76.426651],[-22.18805,76.43942300000015],[-22.402222,76.4986],[-22.506947,76.448029],[-22.19,76.412491],[-21.57305,76.436646],[-21.55695,76.37942],[-21.646389,76.33305400000012],[-21.707222,76.25],[-21.68222,76.239151],[-21.49778,76.219986],[-21.379166,76.25999500000012],[-21.11222,76.280548],[-20.56139,76.133881],[-20.42055,76.13777],[-21.08778,76.297211],[-20.905834,76.30497700000012],[-20.43444,76.220535],[-19.94611,76.259155],[-19.805836,76.2285920000001],[-19.66806,76.13247700000011],[-19.71611,76.05970800000011],[-19.98194,76.05832],[-20.397778,75.978867],[-20.916111,76.000275],[-21.676666,75.969986],[-21.833611,75.992752],[-21.926109,76.042755],[-21.98222,75.991928],[-21.859165,75.95471],[-20.70666,75.96138000000013],[-19.825,75.909149],[-19.55584,75.771652],[-19.61195,75.673599],[-19.39611,75.559982],[-19.33556,75.40498400000013],[-19.386112,75.25972000000012],[-19.46333,75.19664],[-19.610001,75.133041],[-19.88278,75.145828],[-20.005001,75.187195],[-20.023056,75.24914600000011],[-19.956665,75.2844240000001],[-20.13555,75.33166],[-20.68528,75.29248],[-21.169167,75.402771],[-21.23333,75.470535],[-21.50167,75.54971300000011],[-22.25111,75.66415],[-22.286667,75.655258],[-21.60889,75.52442900000011],[-21.40639,75.455551],[-22.113056,75.477478],[-22.41472,75.515823],[-22.476109,75.55525200000011],[-22.511391,75.530823],[-22.07556,75.46304],[-21.415,75.423599],[-21.325558,75.36137],[-21.00778,75.31442300000013],[-20.85722,75.252213],[-20.588055,75.20166],[-20.515,75.140823],[-21.22972,75.111923],[-21.473331,75.025818],[-21.73638,74.976089],[-21.85611,75.006653],[-21.92889,75.078323],[-22.435555,75.163879],[-21.958054,75.056931],[-21.896946,74.982483],[-21.742496,74.9536],[-21.47555,74.977478],[-21.129723,75.0872],[-20.638889,75.06192],[-20.683331,74.917206],[-20.76278,74.84693900000013],[-20.60611,74.73692],[-20.79695,74.66554],[-21.11972,74.66165200000012],[-20.847778,74.63554],[-20.192497,74.674698],[-19.797501,74.58083],[-19.392776,74.68470800000011],[-19.27167,74.646378],[-19.31611,74.601089],[-19.27917,74.521927],[-18.977776,74.481659],[-19.17305,74.397766],[-19.179443,74.34444],[-19.37778,74.260818],[-19.684998,74.237488],[-20.13167,74.272491],[-20.21222,74.3035890000001],[-20.23889,74.36499],[-20.363335,74.443039],[-21.259167,74.47164900000013],[-21.66111,74.447205],[-22.082779,74.59833],[-22.11222,74.589432],[-21.92528,74.52137800000013],[-21.765,74.419434],[-21.826946,74.36943100000013],[-21.99916,74.32083100000011],[-22.479164,74.31192],[-22.318058,74.280823],[-22.05305,74.28387],[-22.049725,74.235809],[-22.19944,74.184982],[-22.16305,74.11276],[-22.492496,74.074432],[-21.98055,73.998032],[-21.81417,73.844437],[-21.85389,73.7686000000001],[-21.82167,73.651093],[-21.70305,73.701096],[-21.76028,73.864151],[-21.88944,73.9266510000001],[-21.914444,74.01054],[-21.748608,74.05832],[-20.71722,73.88526900000011],[-20.28306,73.879974],[-20.263058,73.840271],[-20.28722,73.789978],[-20.453888,73.77026400000011],[-20.53306,73.720825],[-20.458611,73.63749700000011],[-20.522778,73.55664],[-20.369999,73.527206],[-20.50111,73.45277],[-21.560833,73.478043],[-21.61361,73.463043],[-21.677498,73.384155],[-21.933887,73.340271],[-22.18944,73.25000000000011],[-22.37917,73.250549],[-23.112499,73.35054000000014],[-23.22277,73.398331],[-23.50639,73.444702],[-23.98361,73.59275800000012],[-24.03222,73.70248400000014],[-23.508057,73.7038730000001],[-22.69444,73.544434],[-22.178333,73.624695],[-22.74722,73.56303400000013],[-23.48917,73.72665400000011],[-23.892223,73.746933],[-24.044167,73.814697],[-24.33333,73.776382],[-24.450554,73.701096],[-24.465275,73.641098],[-24.379166,73.55053700000012],[-24.463055,73.535812],[-24.959721,73.613037],[-24.994999,73.638046],[-24.962219,73.682205],[-24.982498,73.70832800000011],[-25.415833,73.815811],[-25.50778,73.90387],[-25.68694,73.952484],[-25.738609,73.923874],[-25.586666,73.8647],[-25.551113,73.806366],[-25.08944,73.69026200000012],[-25.111668,73.62886],[-25.02417,73.59166],[-24.674168,73.513321],[-25.315,73.46165500000012],[-25.49361,73.402206],[-25.496666,73.3372],[-25.721386,73.263611],[-26.0125,73.24220300000013],[-26.16722,73.243866],[-26.457775,73.339981],[-26.817501,73.334991],[-27.246387,73.491653],[-27.3375,73.492477],[-27.458611,73.44303900000011],[-27.083057,73.343323],[-26.47583,73.283051],[-26.3875,73.24136],[-26.584446,73.213043],[-26.711666,73.13109],[-27.11195,73.189697],[-27.728611,73.1297],[-27.406387,73.109985],[-27.367222,72.9897],[-27.52611,72.931656],[-27.497498,72.924423],[-27.31528,72.972763],[-27.31361,73.0961],[-27.265,73.1197],[-27.147778,73.14721700000013],[-26.664444,73.100266],[-26.449165,73.193588],[-25.991943,73.198029],[-25.629723,73.117477],[-25.05389,73.082764],[-24.98944,73.008331],[-25.159721,72.92747500000013],[-25.31972,72.89137],[-25.712776,72.89554],[-26.02722,72.7872],[-26.26083,72.777771],[-26.716389,72.871094],[-27.10083,72.82193],[-27.32194,72.857483],[-27.38833,72.83665],[-27.16972,72.80497700000012],[-26.74305,72.8316650000001],[-26.394722,72.766098],[-26.76222,72.7061],[-26.30472,72.72777],[-26.365833,72.633606],[-26.46278,72.57222],[-26.13361,72.713318],[-25.869999,72.74387],[-25.566666,72.8330540000001],[-24.8425,72.719437],[-24.699165,72.672211],[-24.74166,72.646652],[-24.72139,72.585266],[-24.60305,72.549149],[-24.609444,72.523315],[-25.11972,72.431091],[-25.90833,72.413879],[-25.75417,72.38611],[-25.48889,72.405823],[-25.289169,72.38443],[-25.485275,72.238586],[-25.526669,72.121368],[-25.39083,72.148041],[-25.40639,72.20637],[-25.36139,72.27388000000013],[-25.19361,72.357758],[-24.807503,72.427765],[-24.58833,72.421097],[-24.32556,72.328323],[-23.75611,72.24192800000014],[-23.64667,72.148041],[-23.09111,72.05554200000012],[-23.19528,72.017487],[-23.164444,72.003876],[-23.02861,72.011383],[-22.494442,71.892761],[-23.03111,71.722488],[-23.127224,71.668869],[-23.125557,71.626083],[-22.99694,71.63693200000012],[-22.43444,71.795258],[-22.40417,71.779709],[-22.437778,71.744431],[-22.659443,71.657211],[-22.63917,71.57916300000011],[-22.397778,71.63582],[-22.30695,71.726654],[-22.22889,71.751938],[-21.89583,71.74081400000011],[-21.99472,71.676376],[-22.218887,71.633041],[-22.101944,71.611374],[-22.11917,71.598877],[-22.42361,71.58387800000014],[-22.50639,71.549713],[-22.54139,71.4772],[-22.492222,71.39415],[-22.473331,71.263046],[-22.365833,71.258331],[-22.28139,71.4327550000001],[-22.093334,71.4933170000001],[-21.80556,71.50943],[-21.670834,71.40054],[-21.769447,71.375809],[-21.81667,71.31499],[-21.603611,71.32304],[-21.96167,71.263885],[-21.902779,71.23193400000014],[-21.805779,71.264885],[-21.72472,71.247208],[-21.66444,71.186371],[-21.6875,71.149155],[-21.789444,71.101929],[-22.333889,71.053589],[-21.68111,71.06833],[-21.59306,70.962769],[-21.70222,70.822769],[-21.755558,70.795532],[-21.92916,70.8022],[-21.83,70.774155],[-21.637222,70.79470800000013],[-21.546669,70.7061],[-21.76334,70.703598],[-21.653889,70.66249],[-21.77722,70.579712],[-21.61666,70.58471700000013],[-21.47472,70.53997800000013],[-21.64416,70.43719],[-21.95833,70.389709],[-22.000278,70.40721100000013],[-21.94194,70.46944],[-22.03528,70.49803],[-22.37722,70.44165],[-22.41722,70.4994200000001],[-22.41472,70.59721400000012],[-22.474167,70.66249],[-22.428333,70.83804],[-22.506947,70.85054],[-22.64611,70.716095],[-22.64806,70.655823],[-22.56389,70.57638500000013],[-22.62278,70.44664],[-23.345833,70.439148],[-23.82833,70.56694],[-24.021946,70.652206],[-24.18194,70.79498],[-24.231941,70.9308170000001],[-24.192497,71.01304600000014],[-24.27917,71.091095],[-24.57333,71.209991],[-24.74,71.332214],[-25.099167,71.29832],[-25.62389,71.537201],[-26.32861,71.578873],[-26.711109,71.541656],[-26.95027,71.578598],[-27.176109,71.67276],[-27.213055,71.73888],[-27.60889,71.859711],[-27.63111,71.87886],[-27.60389,71.89554],[-27.69389,71.930267],[-28.2225,72],[-28.578056,72.13109],[-28.63972,72.12442],[-28.70444,72.082764],[-28.50417,72.0686],[-28.35472,72.012497],[-28.48889,71.97554000000014],[-28.461109,71.93664600000011],[-27.84639,71.89915500000012],[-27.801666,71.87276],[-27.872223,71.845535],[-27.325,71.709717],[-27.408054,71.63582],[-27.60528,71.64999],[-28.065556,71.57638500000013],[-28.489719,71.57805],[-28.466942,71.55247500000013],[-28.05389,71.551926],[-27.63111,71.612762],[-27.385,71.602478],[-27.125,71.5663760000001],[-27.32556,71.513321],[-27.234997,71.483597],[-27.019722,71.52998400000013],[-26.674999,71.475815],[-25.87778,71.5002750000001],[-25.719719,71.471649],[-25.41139,71.349152],[-25.41139,71.27249],[-25.515556,71.212494],[-25.77806,71.253052],[-25.596947,71.193314],[-25.597778,71.169144],[-26.009724,71.055817],[-26.25944,71.0372],[-26.47889,70.9602660000001],[-26.78417,70.930542],[-27.505,70.938034],[-27.79889,71.149719],[-27.922501,71.12831100000011],[-27.81528,71.035538],[-27.615833,70.94636500000013],[-28.0175,70.991928],[-28.40916,70.975815],[-28.14056,70.94136],[-27.914165,70.867203],[-28.02556,70.71165500000012],[-28.30305,70.560532],[-29.20555,70.4622],[-29.23722,70.44386],[-29.206944,70.39415],[-29.125,70.386658],[-28.75417,70.471649],[-28.29778,70.507492],[-28.27778,70.503876],[-28.346947,70.423874],[-28.225277,70.368317],[-26.72444,70.478592],[-26.496109,70.46775800000012],[-26.322224,70.373032],[-26.69611,70.288589],[-26.95361,70.323608],[-27.853333,70.088043],[-28.14917,70.143875],[-28.591946,70.0935970000001],[-28.542778,70.04470800000011],[-28.12556,70.07193],[-27.967777,70.006943],[-27.547501,70.0516510000001],[-27.520279,70.039703],[-27.517223,69.966934],[-27.341946,69.962494],[-27.185555,70.086655],[-27.170277,70.169434],[-26.898888,70.2486],[-26.307503,70.197754],[-25.6375,70.355255],[-25.229164,70.41443],[-25.195831,70.405548],[-25.34084,70.321106],[-25.34639,70.282211],[-25.23,70.272491],[-25.031113,70.363037],[-24.53278,70.25499],[-23.560558,70.106094],[-22.78583,70.079163],[-22.20027,70.150543],[-22.079166,70.12970000000013],[-22.361111,69.97415200000012],[-22.47972,69.981369],[-22.61389,69.93414],[-22.91666,69.948593],[-22.906443,69.92081],[-22.76972,69.890274],[-22.79583,69.87997400000012],[-23.06556,69.939972],[-23.09361,69.91638],[-23.040001,69.870819],[-23.19608,69.88305700000012],[-23.275558,69.858597],[-22.91,69.81192],[-22.99583,69.757217],[-23.365,69.855545],[-23.394722,69.848877],[-23.32528,69.83638],[-23.241108,69.752213],[-23.65722,69.726654],[-23.93055,69.755264],[-23.70194,69.715271],[-23.57917,69.623596],[-23.64889,69.55914300000012],[-23.81945,69.507492],[-24.343334,69.604431],[-24.116665,69.537201],[-24.07278,69.478043],[-24.16833,69.42276],[-24.3425,69.412491],[-24.43306,69.358032],[-24.652222,69.39444],[-24.66944,69.373596],[-24.61389,69.32193],[-24.608612,69.274994],[-24.66416,69.246933],[-24.805,69.23887600000012],[-25.08778,69.296936],[-25.20972,69.27442900000011],[-25.280003,69.232758],[-25.03,69.221649],[-24.990833,69.20833],[-24.992775,69.163315],[-25.04306,69.116379],[-25.29528,69.01915],[-25.609444,69.103592],[-25.641945,69.08248900000012],[-25.437222,68.970261],[-25.7025,68.955261],[-25.708611,68.928314],[-25.57972,68.903046],[-25.957775,68.78498800000011],[-26.15222,68.781662],[-26.363335,68.66748],[-26.6525,68.65138200000013],[-26.72,68.6772],[-26.894165,68.646942],[-27.05806,68.576385],[-27.340279,68.5961],[-27.22972,68.53637700000012],[-27.497498,68.540268],[-27.52472,68.552475],[-27.488331,68.573883],[-27.56333,68.580551],[-27.706387,68.51221],[-27.604168,68.488586],[-27.619999,68.476089],[-27.79167,68.469437],[-27.920277,68.51082],[-27.94555,68.56860400000011],[-28.01611,68.562759],[-28.03722,68.5522],[-28.01195,68.448868],[-28.496109,68.44693000000012],[-28.63805,68.39137],[-28.84167,68.371918],[-28.847778,68.318604],[-29.187222,68.390549],[-29.20916,68.37859],[-29.174999,68.3461],[-29.102501,68.3247070000001],[-29.120277,68.280548],[-29.192497,68.25943],[-29.28333,68.316376],[-29.333889,68.305542],[-29.378056,68.19886800000012],[-29.61222,68.241928],[-29.773056,68.309143],[-29.781113,68.372208],[-29.862221,68.413605],[-29.99694,68.374985],[-30.196945,68.242477],[-30.110558,68.217758],[-30.015278,68.135269],[-30.03028,68.111649],[-30.35222,68.092484],[-30.40889,68.14221],[-30.402222,68.21971],[-30.709721,68.260818],[-30.817501,68.246368],[-30.484997,68.17859],[-30.42194,68.065811],[-30.89389,68.07471],[-31.02195,68.03943],[-31.454166,68.12915],[-31.33861,68.14526400000011],[-31.388889,68.154984],[-31.501114,68.136658],[-31.422501,68.08248900000012],[-31.571667,68.06694],[-31.70444,68.098328],[-31.67865,68.17832900000013],[-31.745831,68.210815],[-31.535835,68.239426],[-32.007225,68.261932],[-32.215836,68.42747500000013],[-32.325279,68.44359],[-32.365005,68.569717],[-32.40889,68.614151],[-32.485001,68.61998],[-32.50194,68.586105],[-32.41972,68.510544],[-32.569168,68.502487],[-32.525276,68.448029],[-32.431114,68.37942],[-32.19028,68.325],[-32.133331,68.196091],[-32.39167,68.22637900000012],[-32.40028,68.199417],[-32.05556,68.152771],[-31.999165,68.09526],[-31.996666,68.04942],[-32.035278,68.04721100000012],[-32.11111,67.93166],[-32.12277,67.857758],[-32.524445,67.86887],[-32.5475,67.81638],[-32.77972,67.722488],[-33.023613,67.6766510000001],[-33.19861,67.68803400000013],[-33.18444,67.647491],[-33.055,67.63443000000012],[-33.2375,67.536652],[-33.27583,67.398605],[-33.378052,67.351654],[-33.60055,67.37137],[-33.426392,67.33692900000011],[-33.365837,67.24693300000013],[-33.51722,67.1897],[-33.55194,67.11249],[-33.676392,67.085541],[-33.732773,66.987488],[-33.97305,66.99054],[-34.04778,66.738586],[-34.26722,66.575821],[-34.27,66.631927],[-34.308891,66.63888],[-34.369164,66.594711],[-34.3925,66.613876],[-34.40361,66.73027000000013],[-34.429726,66.741364],[-34.484169,66.632202],[-34.406944,66.540817],[-34.71999,66.33831800000013],[-34.98417,66.284149],[-35.12944,66.337769],[-35.12194,66.417755],[-35.22666,66.362762],[-35.235001,66.312485],[-35.043892,66.246094],[-35.203888,66.237762],[-35.623055,66.31999200000013],[-35.771111,66.434708],[-35.851669,66.433594],[-35.87944,66.413315],[-35.54973,66.24220300000013],[-35.62205,66.20453600000012],[-35.570557,66.13721],[-35.5875,66.11026],[-35.723053,66.117752],[-36.08306,65.928314],[-36.26834,65.956673],[-36.331947,65.90721100000013],[-36.38417,65.92026],[-36.39389,65.99637],[-36.34306,66.079987],[-36.56667,66.07666],[-36.47555,66.04637100000014],[-36.52111,65.984711],[-36.98028,65.8374940000001],[-37.04167,65.843872],[-37.09222,65.93692],[-37.03333,66.04221],[-37.0775,66.062195],[-37.17028,66.003601],[-37.08833,65.853043],[-37.193054,65.76915],[-37.655556,65.92915],[-37.75861,65.911102],[-37.811386,66.030548],[-37.65972,66.074158],[-37.55028,66.16887],[-37.326393,66.28442400000012],[-37.168335,66.313599],[-37.184723,66.34166],[-37.575874,66.318207],[-37.79056,66.367203],[-38.10611,66.38693200000012],[-38.14917,66.34166],[-37.691666,66.25972000000013],[-37.790001,66.209427],[-37.809166,66.241653],[-37.995003,66.24054],[-37.851395,66.193863],[-38.0164,66.100266],[-37.974716,65.96192900000011],[-38.05194,65.912491],[-38.0775,65.915817],[-38.07417,65.959152],[-38.17639,65.968872],[-38.196663,65.953598],[-38.14611,65.93109],[-38.153885,65.90637],[-38.283615,65.90332],[-38.35111,65.933044],[-38.34167,65.959152],[-38.404442,66.013885],[-38.48361,66.010269],[-38.453056,65.912491],[-38.27583,65.83415200000013],[-38.10084,65.80304],[-38.24194,65.62942],[-38.42695,65.621918],[-38.46083,65.660812],[-38.43444,65.67831400000011],[-38.52972,65.707764],[-38.56111,65.631927],[-38.747498,65.6922],[-38.779167,65.658875],[-38.63083,65.62915],[-38.60084,65.57222],[-38.85154,65.611824],[-38.890282,65.57193],[-39.057503,65.559418],[-39.14028,65.66165200000012],[-39.32445,65.71554600000013],[-39.20111,65.583603],[-39.410553,65.5333250000001],[-39.543335,65.6111],[-39.53889,65.63665800000012],[-39.66389,65.680267],[-39.82861,65.587769],[-39.765282,65.53943],[-39.82944,65.49582],[-40.03056,65.578873],[-40.09639,65.567215],[-40.217216,65.503326],[-40.20889,65.48332],[-39.7925,65.415268],[-39.78417,65.39415],[-39.88417,65.41304],[-39.941666,65.36499],[-39.755562,65.24275200000011],[-40.118889,65.130814],[-40.19194,65.040268],[-40.256393,65.016388],[-40.423889,65.032486],[-40.59611,65.13499500000012],[-40.70084,65.058594],[-40.989998,65.080276],[-41.056389,64.967758],[-41.155556,64.9644320000001],[-41.067223,64.876923],[-40.594719,64.676651],[-40.56333,64.50833],[-40.63861,64.465],[-40.38861,64.40776100000011],[-40.358894,64.348328],[-40.78805,64.38443],[-41.091667,64.3022],[-41.32584,64.34137],[-41.50695,64.325821],[-41.56945,64.265549],[-41.38222,64.17221100000012],[-41.05722,64.136383],[-40.774445,64.160263],[-40.56778,64.10914600000012],[-40.54472,64.057205],[-40.838608,63.945541000000105],[-40.61972,63.922768],[-40.51806,63.697212],[-40.95639,63.69582400000013],[-41.35055,63.777214],[-41.418335,63.833328],[-41.617775,63.792221],[-41.62833,63.774437],[-41.571388,63.748604],[-41.438889,63.76305400000012],[-40.89223,63.65638],[-40.84341,63.5935750000001],[-40.7525,63.58194],[-40.74834,63.509163],[-40.99972,63.52916],[-41.04806,63.507774],[-40.996666,63.457497],[-41.03867,63.4396],[-41.17067,63.5136030000001],[-41.082832,63.431938],[-40.99889,63.407494],[-41.113335,63.385269],[-41.176392,63.387772],[-41.39416,63.55222],[-41.414444,63.549438],[-41.238335,63.404434],[-41.447495,63.485268],[-41.58083,63.48777],[-41.113335,63.307213],[-41.55695,63.43693500000011],[-41.687218,63.524994],[-41.907501,63.46471400000012],[-41.85944,63.399437],[-41.677223,63.34055],[-41.472771,63.21998600000012],[-41.48742,63.16962400000011],[-41.42917,63.126381],[-41.558891,63.091377],[-41.78695,63.19971],[-42.023056,63.24694],[-41.64639,63.11166400000013],[-41.53667,63.03527100000014],[-41.730278,63.029716],[-41.96611,63.06721],[-42.085274,63.176659],[-42.17445,63.20166000000011],[-42.11584,63.09166],[-41.99972,63.03138],[-41.61528,62.987495],[-41.618607,62.934715],[-41.755562,62.8394320000001],[-41.85055,62.817772000000105],[-41.96358,62.84467],[-42.02834,62.785],[-42.323891,62.809158],[-42.363892,62.89138],[-42.28333,62.935822000000144],[-42.30361,62.941658],[-42.43333,62.908325],[-42.45556,62.86055],[-42.40916,62.81638],[-42.527779,62.723045],[-42.69055,62.7708280000001],[-42.726105,62.68721000000011],[-43.14722,62.757774],[-43.122772,62.691933],[-42.78805,62.6511],[-42.68388,62.5886],[-42.60223,62.626656],[-42.374168,62.565826],[-42.32667,62.47860000000014],[-42.55311,62.47221],[-42.3975,62.427773],[-42.254723,62.432213],[-42.162216,62.38388],[-42.318062,62.362770000000125],[-42.716942,62.498329],[-42.97916,62.51527],[-42.97055,62.46693],[-42.78167,62.438042],[-42.63612,62.35555],[-42.38306,62.335548],[-42.26112,62.242493],[-42.307503,62.102219],[-42.54084,61.9436040000001],[-42.330559,62.01749400000011],[-42.11584,62.00666],[-42.20417,61.916382],[-42.42055,61.915268],[-42.18972,61.86193800000012],[-42.325562,61.761383],[-42.580559,61.732765],[-42.76889,61.818054],[-42.86945,61.773048],[-42.782776,61.78666],[-42.62417,61.705551000000135],[-42.41945,61.691101],[-42.3975,61.65638],[-42.31583,61.64083],[-42.434723,61.55721],[-42.63417,61.54666],[-43.07917,61.59360500000014],[-42.87389,61.53583],[-42.53167,61.529716],[-42.526947,61.440826],[-42.427223,61.403603],[-42.50751,61.35527],[-42.66194,61.284439],[-42.88528,61.342216],[-43.24611,61.339157],[-42.775,61.27388],[-42.90361,61.249718],[-42.87289,61.245216000000134],[-42.661385,61.255554],[-42.57472,61.194992],[-43.089722,61.197487],[-42.70111,61.14332600000011],[-42.63,61.098328],[-43.61278,61.127769],[-42.70472,61.05777000000012],[-42.66472,61.022491],[-42.671944,60.983604],[-42.800278,60.919441],[-43.008614,60.883881],[-43.484444,60.933327000000126],[-43.480278,60.90777],[-43.26445,60.898331],[-42.79084,60.801102],[-43.526665,60.837212000000136],[-42.95944,60.77916],[-42.770279,60.728043],[-42.910553,60.652489],[-43.11117,60.668434],[-43.082329,60.65494],[-42.89233,60.6361],[-42.74944,60.68360100000012],[-42.82584,60.606659],[-42.94061,60.59005],[-42.833885,60.570549],[-43.06861,60.498878],[-43.31861,60.550827],[-43.145,60.48276],[-43.208611,60.464439],[-43.55472,60.539436],[-43.693886,60.7161],[-43.7075,60.682213],[-43.629498,60.54887],[-44.047501,60.587494],[-44.16083,60.6375],[-44.1925,60.635551000000135],[-44.2025,60.593323],[-43.31416,60.440826],[-43.59695,60.30526700000013],[-43.36584,60.386658000000125],[-43.16861,60.397491],[-43.092773,60.25722],[-43.3275,60.215271000000136],[-43.129723,60.205551],[-43.08722,60.100273],[-43.1375,60.079437],[-44.113892,60.183601],[-44.073059,60.26028],[-43.993889,60.307495],[-44.100838,60.384163],[-44.080559,60.28638],[-44.22361,60.234993],[-44.308891,60.15027],[-44.456665,60.14833],[-44.52194,60.033333],[-44.604172,59.98249],[-44.969444,60.031937],[-44.99555,60.092766],[-45.035,60.10666],[-45.111671,60.102493],[-45.112778,60.06332400000013],[-45.152779,60.07416500000011],[-45.17111,60.089989],[-45.07695,60.159431],[-44.824448,60.18999],[-44.59944,60.424995],[-44.499168,60.47694],[-44.47083,60.557213],[-44.86306,60.2649990000001],[-44.884727,60.21666],[-45.085274,60.195267],[-45.189995,60.129158],[-45.170837,60.165825],[-45.208336,60.172493],[-45.16917,60.2227630000001],[-44.947495,60.34415],[-44.76889,60.65943],[-44.626106,60.73333000000014],[-44.81361,60.67110400000013],[-44.83972,60.60527],[-45.0125,60.476379],[-45.203331,60.435265],[-45.27861,60.4574970000001],[-45.266113,60.49527000000011],[-45.099167,60.64582800000011],[-45.276108,60.551102],[-45.49194,60.48999],[-45.373886,60.60527],[-45.26945,60.647774],[-45.313332,60.7],[-45.46361,60.616936],[-45.574722,60.469154],[-45.732773,60.587212],[-45.68138,60.637032],[-45.82695,60.557495],[-45.978333,60.573883],[-45.67178,60.67632700000012],[-45.84972,60.69748700000014],[-45.589165,60.76832600000012],[-45.59222,60.792221],[-45.39306,60.8886],[-45.253059,60.901932],[-45.39722,61.00750000000011],[-45.481384,60.885551],[-45.68639,60.774712],[-45.880554,60.75222],[-45.890556,60.774994],[-45.75362,60.82972],[-45.83333,60.849434],[-45.940723,60.82666000000012],[-46.043892,60.719986],[-46.22138,60.753609],[-45.99766,60.840775],[-45.97617,60.857441],[-46.19472,60.810547],[-46.004448,60.89111],[-45.489723,60.98916],[-45.44167,61.042221],[-45.252228,61.107216],[-45.199722,61.18999],[-45.235,61.198044],[-45.373886,61.090271],[-45.50056,61.23333],[-45.521111,61.175827],[-45.48277,61.102776],[-45.63139,61.00722],[-45.80556,60.951935],[-45.827782,60.970543],[-46.00667,60.912209],[-46.065552,60.921104],[-46.105835,60.968048],[-45.65361,61.14222],[-45.868889,61.216660000000104],[-45.712776,61.321663000000115],[-45.769722,61.333603],[-46.009727,61.22304500000013],[-45.84,61.16499],[-45.838051,61.132492],[-45.915001,61.090271],[-46.229439,60.974709],[-46.26334,61.045547],[-46.406105,61.08416],[-46.38028,61.041107],[-46.442223,60.999161],[-46.52333,61.015274],[-46.581673,60.905823],[-46.835274,60.930275],[-46.705276,60.88138],[-46.85722,60.797493],[-46.910278,60.80249],[-46.95861,60.86332700000014],[-46.914444,60.933327000000126],[-47.023056,60.976097],[-47.16333,60.93943],[-47.318062,60.952217],[-47.49416,60.8986],[-47.76472,60.905823],[-47.80944,60.87915800000013],[-47.31945,60.86777],[-47.44778,60.820274],[-47.65388,60.808601],[-48.01195,60.844994],[-48.23889,60.81972],[-48.17722,60.86305],[-47.689438,61.005],[-47.89639,61.013054000000125],[-48.13222,60.964439],[-48.406387,60.988327],[-47.83361,61.041939],[-47.88889,61.123322],[-48.09084,61.086937],[-48.218887,61.18499],[-48.08139,61.294998],[-47.91722,61.324165],[-48.12194,61.3155440000001],[-48.244164,61.24194],[-48.267784,61.18335],[-48.21639,61.13638300000014],[-48.41028,61.13221],[-48.440834,61.155548],[-48.31889,61.2061],[-48.480278,61.17332],[-48.63805,61.208046],[-48.63722,61.23804500000011],[-48.577782,61.285],[-48.383614,61.299721],[-48.37861,61.363884],[-48.74583,61.396385],[-48.988609,61.35583],[-49.06611,61.398048000000124],[-48.831673,61.461937],[-48.232498,61.533882],[-48.34416,61.604996],[-48.948883,61.465546],[-49.297501,61.557495],[-49.24583,61.602776],[-48.924721,61.578606],[-48.599213,61.63633700000014],[-48.97833,61.60305],[-49.05472,61.619713000000104],[-49.046909,61.722786],[-49.148888,61.718597],[-49.10389,61.827774],[-48.89416,61.94471],[-48.74695,61.955551],[-48.763062,61.98472],[-49.00084,61.954163],[-49.18861,61.83915700000011],[-49.18278,61.74554],[-49.23138,61.71277],[-49.35417,61.76555],[-49.21472,61.883606],[-49.290001,61.866104],[-49.35805,61.80609900000013],[-49.440277,61.842216],[-49.374168,61.94665500000013],[-49.15417,61.966934],[-48.99861,62.045547],[-48.84055,62.07694200000014],[-49.09611,62.07888],[-49.00584,62.20416300000011],[-49.029442,62.213882000000126],[-49.148613,62.107498],[-49.162216,62.01888300000013],[-49.404716,61.983604],[-49.66945,61.99554400000011],[-49.69722,62.010277],[-49.693329,62.11582900000014],[-49.420837,62.08999],[-49.29362,62.134163000000115],[-49.293892,62.17222],[-49.3715,62.192772],[-49.47166,62.144714],[-49.63834,62.150826],[-49.5675,62.228043000000135],[-49.39477,62.24689],[-49.71222,62.26361],[-49.837219,62.237495],[-49.90833,62.319443],[-50.02583,62.333054],[-50.31778,62.49527],[-50.22361,62.66972],[-49.94749,62.827217],[-49.94611,62.87027],[-50.280281,62.70471],[-50.31722,62.74305],[-50.15083,62.93082400000014],[-49.833611,62.99638],[-49.70139,63.057495],[-49.796669,63.059433],[-50.191502,62.933659],[-50.379997,62.784439],[-50.399994,62.85139],[-50.32333,62.93221],[-50.14999,63.015274],[-50.22888,63.038605000000125],[-50.28194,62.97443],[-50.40388,62.940826],[-50.59389,62.969986],[-50.60639,63.094437],[-50.435555,63.136383],[-50.419998,63.15193],[-50.452225,63.162491],[-50.386116,63.19054],[-50.059845,63.22875],[-50.362221,63.22527],[-50.467216,63.181107],[-50.57028,63.227211],[-50.794281,63.196896],[-50.905,63.137497],[-50.926109,63.171661],[-50.78,63.25027],[-51.00834,63.16054500000012],[-51.05944,63.184158],[-51.10778,63.33943],[-50.27611,63.401382],[-50.379997,63.421936],[-51.054169,63.369156],[-51.15833,63.37804],[-51.221382,63.43943000000013],[-51.140556,63.486107],[-50.74416,63.54554700000011],[-51.095001,63.524712],[-51.14695,63.58416],[-51.128052,63.62249],[-51.03473,63.638885],[-50.91111,63.613609],[-50.5975,63.642494],[-50.553612,63.60833],[-50.50472,63.667213],[-50.88639,63.62776900000012],[-51.0775,63.666939],[-51.18694,63.621658],[-51.118057,63.5186],[-51.16861,63.502777],[-51.559441,63.70916],[-51.523056,63.76416000000011],[-51.221107,63.835548],[-50.924171,63.932495],[-51.443329,63.804993],[-51.47639,63.843048000000124],[-51.394722,63.84638200000012],[-51.362221,63.966934],[-51.65833,64.01138],[-51.601944,64.034714],[-50.873055,64.093597],[-50.62583,64.166092],[-50.47194,64.137497],[-50.25084,64.19497700000011],[-50.07973,64.16415400000011],[-50.04834,64.19414],[-50.14695,64.238037],[-50.554718,64.18109],[-50.47555,64.29109],[-50.60084,64.22971],[-50.96028,64.13916],[-51.445831,64.078049],[-51.6475,64.123596],[-51.5315,64.168045],[-51.379997,64.13888500000012],[-51.421776,64.170761],[-51.523056,64.196365],[-51.684998,64.140823],[-51.76139,64.181931],[-51.44361,64.218872],[-51.27222,64.172485],[-50.95084,64.21804800000011],[-50.843056,64.254166],[-51.04195,64.275543],[-50.856392,64.415543],[-50.772774,64.424698],[-50.622223,64.373871],[-50.35223,64.382751],[-50.17306,64.448318],[-50.20722,64.479431],[-50.3975,64.41943400000014],[-50.57389,64.448318],[-50.65194,64.481094],[-50.44111,64.548874],[-50.650551,64.517487],[-50.742226,64.580551],[-50.91083,64.592209],[-50.856667,64.633041],[-50.58472,64.630539],[-50.45167,64.66304],[-50.601944,64.658325],[-50.66389,64.68692],[-50.525276,64.70498700000013],[-50.32278,64.676376],[-50.255,64.635818],[-50.218605,64.54609700000015],[-50.137779,64.478043],[-49.69833,64.3399809999999],[-49.5843,64.337646],[-49.678337,64.425537],[-49.76417,64.425537],[-50.065552,64.5291600000001],[-50.122772,64.63611],[-49.98889,64.697205],[-50.15694,64.693863],[-50.213615,64.72608900000012],[-50.135559,64.8077550000001],[-49.99889,64.869141],[-50.17556,64.829163],[-50.29695,64.74359],[-50.560555,64.768051],[-50.68694,64.905258],[-50.69305,64.99414100000013],[-50.78639,65.039978],[-50.84695,65.158325],[-50.97861,65.219711],[-50.883331,64.97665400000011],[-50.726944,64.99498000000011],[-50.63666,64.75305200000014],[-50.823616,64.71582],[-51.03333,64.621643],[-51.14333,64.61360200000013],[-51.21916,64.62804],[-51.09722,64.754715],[-51.023888,64.754715],[-51.06444,64.78581200000013],[-51.22417,64.76221],[-51.41861,64.610535],[-51.44277,64.517487],[-51.66639,64.370529],[-51.665001,64.306091],[-51.835556,64.217484],[-52.00695,64.203598],[-52.03333,64.234985],[-52.005,64.266937],[-52.039169,64.399155],[-52.10556,64.38721],[-52.1025,64.551926],[-52.057503,64.599083],[-52.121666,64.642487],[-52.12028,64.720261],[-51.860001,64.825546],[-51.53944,64.856094],[-51.41361,64.951385],[-51.24695,65.017487],[-51.42445,64.99054],[-51.680832,64.885818],[-51.703888,64.886383],[-51.65028,64.96415700000011],[-51.56194,64.988876],[-51.702782,65.01833],[-51.82362,64.92776500000014],[-51.877495,64.834717],[-52.10194,64.79387],[-51.94222,64.876373],[-52.02861,64.90498400000013],[-52.057503,64.851929],[-52.211388,64.80664100000013],[-52.22028,64.90887],[-52.011391,64.97916],[-52.085556,65.01776100000012],[-52.16305,64.9994200000001],[-52.285278,65.08415200000013],[-52.09972,65.239151],[-52.313332,65.2019350000001],[-52.186386,65.280548],[-52.20834,65.330826],[-52.519165,65.185257],[-52.558891,65.327484],[-51.72083,65.582214],[-51.901108,65.62387100000011],[-51.69444,65.698593],[-51.243889,65.75972],[-50.94694,65.75555],[-50.71666,65.676926],[-50.545837,65.70694],[-50.69444,65.71887200000015],[-50.7225,65.754715],[-51.20917,65.796097],[-51.48473,65.763046],[-51.948051,65.658875],[-51.93444,65.546371],[-52.49778,65.38721],[-52.613892,65.487488],[-52.5925,65.54332],[-52.46916,65.64082300000013],[-52.68805,65.500824],[-52.80194,65.53887900000012],[-52.801666,65.594711],[-52.60722,65.6586],[-52.769722,65.63554],[-52.686386,65.719147],[-52.688889,65.80554200000012],[-52.810555,65.67164600000012],[-53.236664,65.68304400000011],[-52.875,65.80304],[-53.115837,65.742203],[-53.26833,65.746933],[-53.08195,65.79248000000013],[-53.03,65.857483],[-52.69861,65.935532],[-52.32,65.868866],[-52.19583,65.948593],[-51.97472,66.00444],[-51.813889,65.964706],[-51.83195,66.0558170000001],[-52.18417,65.996094],[-52.3175,65.899155],[-52.52528,65.9061],[-52.618057,65.97998000000013],[-53.15166,65.85582000000011],[-53.229996,65.869431],[-53.23333,65.923035],[-52.879723,66.025269],[-53.35389,65.92998],[-53.468605,65.97526600000015],[-53.12689,66.016151],[-53.462219,66.03414900000011],[-52.79945,66.234421],[-52.63194,66.3391570000001],[-52.373886,66.43248],[-52.0675,66.481659],[-51.900551,66.62970000000013],[-51.60944,66.70054600000014],[-51.27138,66.843872],[-51.12444,66.87915],[-50.810829,66.824997],[-50.32917,66.833054],[-50.662216,66.867477],[-50.77111,66.844986],[-51.00695,66.899719],[-50.95639,66.934708],[-50.683327,67.00499000000012],[-50.165001,66.969986],[-49.99778,66.98082],[-50.63222,67.01582300000013],[-50.285278,67.065811],[-50.334724,67.07193000000012],[-51.189438,66.917755],[-51.72694,66.71443],[-51.98611,66.654709],[-52.129997,66.51304600000014],[-52.710556,66.352478],[-52.996666,66.19664],[-53.47666,66.098877],[-53.62472,66.15443],[-53.583061,66.208603],[-53.51083,66.23526],[-53.118332,66.285812],[-53.61972,66.2433170000001],[-53.698051,66.33194],[-53.63333,66.50444],[-53.358894,66.5361],[-53.20972,66.516098],[-53.336662,66.50943],[-53.17028,66.491653],[-52.921669,66.54999],[-52.48305,66.5186],[-52.41639,66.546371],[-52.94972,66.5760960000001],[-53.224167,66.547211],[-53.481667,66.60471],[-53.451942,66.637497],[-53.26417,66.696365],[-52.972771,66.672485],[-52.582779,66.703873],[-52.59778,66.73831200000012],[-52.95967,66.71887200000013],[-53.20639,66.746368],[-52.84983,66.783035],[-52.99667,66.794708],[-53.11573,66.7596],[-53.05583,66.804977],[-53.081673,66.81860400000011],[-52.982773,66.85304],[-52.559441,66.863037],[-52.336113,66.81053],[-52.228882,66.83998],[-52.34277,66.838043],[-52.4625,66.873032],[-52.498337,66.91249],[-52.770554,66.887772],[-52.87146,66.90739],[-53.203056,66.92499],[-53.649445,66.909424],[-53.82472,66.9827580000001],[-53.21972,66.99220300000013],[-53.78083,67.011383],[-53.836388,67.063034],[-53.542778,67.068878],[-53.39223,67.111923],[-53.965553,67.07471],[-53.923332,67.140823],[-53.816666,67.178864],[-53.38,67.20221],[-53.58889,67.215],[-53.51445,67.23498500000011],[-53.091942,67.24664300000012],[-52.15139,67.36998],[-52.031387,67.333328],[-51.524719,67.323044],[-51.305557,67.16026],[-51.189438,67.1236],[-50.78556,67.18526],[-50.35111,67.18054200000012],[-50.532776,67.222214],[-51.173332,67.1394350000001],[-51.52583,67.351089],[-51.11611,67.419983],[-51.151665,67.423309],[-51.61222,67.358032],[-52.22639,67.389435],[-53.10278,67.2791600000001],[-53.22305,67.291367],[-53.252228,67.320541],[-53.79834,67.20277],[-53.88111,67.26388500000013],[-53.821114,67.405548],[-53.71806,67.45055],[-52.91111,67.68166],[-53.10389,67.6541600000001],[-53.03333,67.69386],[-52.846947,67.72499],[-52.62389,67.71138],[-52.535004,67.73831200000012],[-52.8275,67.738037],[-52.49611,67.769714],[-52.114166,67.696091],[-52.03194,67.705826],[-51.80944,67.625809],[-51.33028,67.675812],[-50.70055,67.49165],[-50.19833,67.467209],[-50.07194,67.50999500000012],[-50.57111,67.50694],[-50.85223,67.59082000000012],[-50.27444,67.731094],[-50.07973,67.713882],[-50.085,67.68831],[-49.936661,67.69386],[-50.288612,67.74498],[-50.65028,67.65166],[-50.96972,67.622208],[-51.23083,67.69720500000011],[-50.9875,67.721924],[-50.64917,67.81972],[-50.428612,67.817215],[-50.4175,67.844437],[-50.779442,67.90664700000013],[-50.85472,67.86415],[-50.67805,67.85054],[-50.714447,67.81860400000011],[-51.17361,67.758606],[-51.33112,67.86887],[-51.201942,67.907211],[-50.971382,67.88333100000011],[-50.97527,67.91914400000013],[-51.059998,67.97415200000012],[-51.209442,67.969147],[-51.34861,67.91943400000014],[-51.5675,67.9327550000001],[-51.321114,67.811096],[-51.46222,67.733597],[-51.53389,67.728867],[-51.46083,67.74859600000013],[-51.48111,67.757492],[-51.58833,67.750549],[-51.713058,67.69497700000011],[-51.84389,67.73193400000014],[-51.626389,67.769714],[-52.24306,67.76832600000012],[-52.341942,67.82443],[-52.19833,67.875809],[-51.91972,67.88136],[-51.60389,67.93609600000013],[-51.575562,67.96720900000014],[-51.91167,67.90748600000012],[-52.19944,67.898331],[-52.625832,67.787201],[-52.96999,67.763885],[-53.32389,67.588882],[-53.59972,67.50694],[-53.68306,67.50082],[-53.753616,67.601089],[-53.55805,67.655258],[-53.5425,67.720535],[-53.639725,67.787201],[-53.627777,67.81469700000014],[-53.484169,67.855255],[-53.456665,67.818329],[-53.48944,67.800812],[-53.30422,67.807755],[-53.48333,67.874146],[-53.3825,67.898331],[-53.294724,67.8766480000001],[-53.30695,67.84965],[-53.273056,67.830551],[-53.288338,67.849426],[-53.16416,67.885269],[-53.05583,67.879974],[-53.14139,67.911377],[-53.26083,67.889984],[-53.2775,67.91360500000013],[-53.23305,67.96054100000015],[-52.954559,67.978981],[-53.259727,67.98305],[-53.187218,68.04332],[-53.081673,68.06275900000014],[-52.74834,67.968323],[-52.212219,67.923035],[-52.059998,67.975266],[-52.20111,67.94999700000011],[-52.690552,67.974701],[-52.81889,67.998596],[-53.134445,68.138046],[-53.45417,68.15221],[-53.321114,68.184418],[-53.148056,68.199142],[-52.41444,68.06275900000014],[-52.390556,68.07249500000012],[-52.802223,68.168869],[-52.74695,68.19582],[-52.579727,68.18915],[-51.85778,68.041931],[-51.188606,68.063599],[-50.56945,67.90081800000013],[-50.44138,67.93026700000011],[-50.22055,67.90637200000015],[-50.153053,67.933319],[-50.31167,67.93248000000011],[-50.93222,68.04776],[-51.434166,68.198318],[-50.95666,68.182755],[-51.22083,68.273605],[-51.14278,68.291367],[-51.12389,68.34526100000011],[-51.183609,68.39888],[-50.76916,68.484146],[-50.82,68.503601],[-51.27639,68.411102],[-51.645,68.407761],[-51.482773,68.352768],[-51.29555,68.35803],[-51.226105,68.327209],[-51.240837,68.289978],[-52.419167,68.18054200000012],[-52.49778,68.19136],[-52.468887,68.21165500000012],[-52.55805,68.253326],[-52.73,68.264992],[-52.629166,68.235535],[-52.719719,68.210541],[-52.897224,68.225266],[-52.938332,68.255829],[-52.73947,68.32260100000013],[-53.34972,68.267761],[-53.38917,68.327774],[-53.24167,68.351379],[-53.079727,68.323044],[-52.60389,68.453323],[-52.585556,68.499146],[-52.6425,68.514999],[-52.46167,68.544983],[-51.880829,68.583878],[-51.81416,68.57276900000011],[-51.96139,68.557205],[-51.958336,68.53554],[-51.61833,68.519989],[-51.47194,68.56026],[-51.04528,68.575821],[-51.003616,68.6455380000001],[-50.865837,68.6147],[-50.80805,68.673874],[-50.91639,68.66666],[-50.98722,68.732483],[-50.656387,68.82554600000014],[-50.781944,68.838318],[-51.124168,68.733597],[-51.2925,68.74832],[-51.214722,68.84082],[-50.96333,68.93193100000013],[-51.11445,68.926926],[-51.118889,69.04498],[-51.06972,69.131088],[-50.79945,69.126923],[-50.801666,69.086655],[-50.98889,69.034149],[-50.90472,69.024429],[-50.65916,69.0769350000001],[-50.525558,69.023041],[-50.54611,68.99609],[-50.52417,68.94803],[-50.379997,68.90081800000013],[-50.310829,68.92499],[-50.364723,68.96720900000014],[-50.457222,68.96748400000013],[-50.49223,69.01305],[-50.25917,69.05498],[-50.29639,68.98526],[-50.209442,68.960815],[-50.175835,69.02388],[-50.243889,69.07527],[-50.434441,69.0513760000001],[-50.68777,69.117752],[-50.278053,69.13554],[-50.13861,69.17747500000013],[-50.145,69.224701],[-50.25695,69.193588],[-50.46528,69.195251],[-50.46777,69.29971300000011],[-50.380829,69.338882],[-50.51584,69.31554],[-50.55944,69.261658],[-50.65694,69.220535],[-50.886116,69.17303500000014],[-51.122772,69.20138500000013],[-50.97083,69.299423],[-50.855835,69.4611],[-50.5164,69.488037],[-50.42445,69.50943],[-50.28722,69.489426],[-50.20472,69.521927],[-50.88306,69.491364],[-50.791115,69.55470300000013],[-50.846107,69.620819],[-50.80055,69.642212],[-50.40722,69.59248400000013],[-50.446388,69.643051],[-50.77444,69.66748000000013],[-50.813614,69.676376],[-50.81139,69.709427],[-50.651665,69.74054],[-50.59722,69.783325],[-50.191666,69.757492],[-50.313614,69.87330600000013],[-50.589165,69.921921],[-50.5775,69.97053],[-50.306107,69.97638],[-50.21416,70.021652],[-50.487503,70.038879],[-50.940834,69.95972],[-51.26056,69.960815],[-51.079727,70.036102],[-50.985001,69.993866],[-50.860832,70.023315],[-51.065552,70.072769],[-51.243057,70.068604],[-51.45528,69.95972],[-51.56889,69.974991],[-51.60333,70.00972000000013],[-51.95111,70.003601],[-52.31277,70.046646],[-52.593056,70.20054600000014],[-52.8475,70.272766],[-53.224167,70.3461],[-53.92167,70.386108],[-54.16444,70.46666],[-54.35333,70.585266],[-54.55389,70.657211],[-54.626389,70.6519320000001],[-54.54417,70.731094],[-54.063332,70.829712],[-53.46999,70.755264],[-53.103333,70.773315],[-52.72222,70.744705],[-52.458611,70.70027],[-51.587776,70.440811],[-50.67639,70.32277],[-50.54306,70.34248400000013],[-50.560555,70.38333100000011],[-50.678886,70.397491],[-50.49055,70.50972],[-50.5825,70.519989],[-50.7625,70.418045],[-51.03722,70.430817],[-51.09639,70.4622],[-50.93972,70.46775800000012],[-51.345001,70.56667],[-51.22972,70.604706],[-50.888893,70.50555400000013],[-50.738609,70.54248],[-50.989441,70.61886600000014],[-50.88972,70.65776100000011],[-50.61889,70.628586],[-50.850838,70.681091],[-51.086113,70.65555],[-51.175835,70.690262],[-51.4025,70.69413800000011],[-51.43861,70.747757],[-51.28973,70.757767],[-51.238609,70.811646],[-50.782776,70.71165500000012],[-50.65278,70.71027],[-50.633057,70.74026],[-50.89889,70.802475],[-50.9225,70.8311000000001],[-50.85805,70.876373],[-51.14639,70.846939],[-51.225,70.88443],[-51.595,70.925812],[-51.9525,71.021103],[-51.83,71.066376],[-51.214722,70.955261],[-50.92889,70.98858600000011],[-50.91806,71.021927],[-51.485275,71.063034],[-51.22666,71.141663],[-51.608894,71.107208],[-51.86555,71.132202],[-52.061386,71.094437],[-52.24944,71.123306],[-51.88,71.2494200000001],[-51.526947,71.274704],[-51.52917,71.305252],[-51.645554,71.361374],[-52.41333,71.14665200000013],[-52.50973,71.142761],[-52.55556,71.171371],[-52.488892,71.222763],[-52.282776,71.25471],[-52.245277,71.289429],[-52.288612,71.348038],[-52.185555,71.37915],[-51.645836,71.454987],[-51.38805,71.439697],[-51.348053,71.4861],[-51.71167,71.505264],[-52.44361,71.37553],[-52.98361,71.415268],[-52.69833,71.52165200000013],[-52.48583,71.556641],[-51.80278,71.594437],[-51.640556,71.711105],[-51.78306,71.72164900000013],[-51.86389,71.65525800000012],[-52.17445,71.61026],[-52.57333,71.64749],[-52.63972,71.681366],[-53.250557,71.70277],[-53.16806,71.755554],[-52.921112,71.816666],[-52.85667,71.8611],[-52.903885,71.87387100000012],[-52.90833,71.908875],[-52.684441,72.00166300000012],[-52.78083,72.011383],[-52.952782,71.940536],[-53.02055,71.89415],[-52.98361,71.842484],[-53.239166,71.805252],[-53.32194,71.82222],[-53.417503,71.98248300000012],[-53.39306,72.033875],[-53.70194,72.1230319999999],[-53.857506,72.32165500000013],[-53.56028,72.358032],[-53.87361,72.35137900000012],[-53.955,72.322495],[-53.83583,72.19497700000011],[-53.82584,72.147766],[-53.58112,72.04443400000014],[-53.39667,71.851929],[-53.6358,71.73717],[-53.918335,71.736374],[-53.738609,71.700272],[-53.72194,71.6586],[-53.775,71.633331],[-53.91945,71.63832100000013],[-54.011116,71.70582600000012],[-54.10028,71.707489],[-54.099167,71.6336060000001],[-53.851944,71.55304],[-53.91555,71.44192],[-54.396111,71.36387600000012],[-54.825562,71.35277],[-55.25834,71.49054],[-55.116661,71.386658],[-55.32362,71.386932],[-55.54362,71.46832],[-55.68139,71.62442],[-55.574448,71.64276100000012],[-55.90583,71.67859],[-55.775276,71.7410890000001],[-55.44361,71.802765],[-55.32,71.881653],[-54.830559,71.915543],[-54.53667,72.041367],[-54.525276,72.10165],[-54.38444,72.222488],[-54.5225,72.184418],[-54.678337,72.011658],[-54.86195,71.942749],[-55.29834,71.928589],[-55.58,71.998871],[-55.41305,72.084717],[-54.93167,72.23831200000012],[-54.94416,72.3622],[-54.76445,72.350815],[-54.682777,72.36637900000011],[-54.913612,72.37581],[-54.97083,72.40387],[-54.896111,72.425537],[-55.020279,72.423035],[-55.231941,72.358871],[-55.285835,72.372482],[-55.305275,72.424149],[-55.507225,72.389709],[-55.625832,72.421097],[-55.64889,72.439148],[-55.626389,72.457489],[-55.46999,72.52192700000012],[-54.99389,72.48414600000012],[-54.29639,72.47998],[-55.0164,72.519989],[-54.996391,72.5705410000001],[-54.906387,72.60525],[-54.62722,72.621643],[-54.87055,72.642487],[-54.872223,72.672211],[-54.6425,72.71138],[-54.655,72.7649990000001],[-54.92695,72.777771],[-54.60472,72.828049],[-54.85055,73.0144350000001],[-55.69778,73.066666],[-55.709442,73.092758],[-55.651665,73.12109],[-55.477,73.121651],[-55.3375,73.171646],[-55.145,73.18193],[-55.140839,73.209991],[-55.24361,73.2397],[-55.46,73.25582900000012],[-55.274445,73.385544],[-55.08583,73.362762],[-55.16972,73.411652],[-55.527222,73.474426],[-55.52917,73.506104],[-55.66222,73.578323],[-56.07584,73.648605],[-55.86122,73.681038],[-56.036667,73.68332],[-55.958611,73.76221],[-55.63972,73.694138],[-55.60778,73.720261],[-55.74695,73.72221400000012],[-55.94722,73.853043],[-55.67139,73.835815],[-55.63277,73.85277],[-55.645279,73.87164300000012],[-56.09917,73.9611],[-56.122498,74.006653],[-55.985,74.006378],[-55.96889,74.02998],[-56.40972,74.06609],[-56.165276,74.193863],[-56.129166,74.27832],[-56.60778,74.155823],[-57.325,74.107758],[-57.26445,74.143051],[-56.693886,74.200546],[-56.55944,74.2544400000001],[-56.309166,74.287201],[-56.388054,74.30859],[-56.568893,74.286377],[-56.71333,74.34082],[-56.13111,74.383881],[-56.212219,74.414154],[-56.587776,74.402481],[-56.797226,74.4433140000001],[-56.24944,74.480545],[-56.1925,74.5516510000001],[-56.373886,74.54248000000013],[-56.56945,74.58305400000012],[-56.63417,74.643875],[-56.86028,74.706375],[-57.01501,74.671371],[-57.19028,74.770828],[-57.10111,74.795822],[-56.978882,74.75943],[-56.86111,74.806931],[-57.02639,74.91387900000012],[-57.29362,74.904434],[-57.40222,74.95555100000013],[-57.839722,75.013611],[-57.906944,75.049713],[-58.137222,75.045532],[-58.14695,75.080826],[-57.918335,75.166092],[-58.23417,75.213608],[-58.334724,75.26527],[-58.34972,75.314987],[-58.30278,75.32944],[-58.295448,75.38687900000014],[-58.425278,75.395828],[-58.523056,75.338882],[-58.69778,75.346375],[-58.62361,75.38638300000014],[-58.20889,75.441925],[-58.17194,75.521927],[-58.43388,75.564423],[-58.31611,75.648605],[-58.599998,75.667755],[-58.40805,75.715271],[-58.67639,75.735535],[-59.061668,75.70416300000011],[-59.22639,75.775543],[-59.23111,75.807755],[-59.139725,75.8461],[-59.21611,75.87220800000011],[-59.51083,75.85971100000012],[-59.61445,75.8099820000001],[-59.78473,75.79637100000012],[-59.81416,75.82276900000011],[-59.757782,75.862198],[-59.592224,75.909988],[-59.761116,75.96582],[-59.99055,75.926086],[-60.13528,75.984711],[-60.089439,76.011108],[-60.10778,76.02222],[-60.506668,76.065536],[-60.73805,75.9933170000001],[-60.82861,76.030273],[-60.85306,76.080551],[-60.83083,76.14276100000012],[-60.87861,76.152481],[-61.675003,76.17831],[-61.947495,76.23526],[-62.180832,76.22221],[-62.1525,76.261383],[-62.23972,76.286652],[-62.367,76.242905],[-62.729996,76.25833100000011],[-62.77528,76.234985],[-62.73305,76.207489],[-62.77861,76.193588],[-62.85306,76.236649],[-62.823891,76.28137200000013],[-62.883331,76.307205],[-63.440834,76.373306],[-63.49834,76.3647],[-63.48778,76.32222],[-63.78889,76.15694],[-64.12027,76.14804],[-64.218887,76.247482],[-64.218887,76.299713],[-64.166107,76.315262],[-64.34389,76.35471],[-64.412216,76.347214],[-64.365829,76.27916],[-64.4411,76.22887],[-64.68332,76.25861],[-64.697769,76.168594],[-64.603882,76.126923],[-65.00111,76.176651],[-65.03278,76.13582],[-65.17805,76.11943100000013],[-65.23889,76.135269],[-65.212509,76.182205],[-65.35083,76.172211],[-65.363617,76.12942],[-65.295547,76.07138],[-65.47972,76.0186],[-65.88834,76.098328],[-65.76083,76.13472],[-65.69028,76.194138],[-65.770844,76.20471],[-65.553329,76.233871],[-65.76945,76.27554],[-66.19415,76.28027],[-66.36472,76.15776100000011],[-66.36945,76.0986],[-66.43306,76.082764],[-66.525284,76.0936],[-66.818893,76.24136],[-66.960007,76.263611],[-67.13501,76.242752],[-67.306107,76.16748],[-67.05333,76.13693200000012],[-66.94249,76.05054],[-66.50528,75.95027],[-66.45862,75.909714],[-67.349731,76.008881],[-68.500565,76.086929],[-68.575562,76.112762],[-68.43944,76.1486],[-68.808884,76.160812],[-68.74695,76.18248],[-69.633331,76.3808140000001],[-69.56946,76.435806],[-69.06555,76.48166],[-68.734436,76.58415200000013],[-68.03029,76.579163],[-67.976669,76.60582],[-67.98222,76.679428],[-68.0925,76.704987],[-68.561661,76.6583250000001],[-69.21139,76.67526],[-69.9675,76.756653],[-70.10194,76.799423],[-69.75,76.961105],[-69.539444,77.000549],[-69.6725,77.012497],[-69.75723,77.009995],[-70.35916,76.79803500000014],[-70.547226,76.78859],[-70.826401,76.8344270000001],[-70.985275,76.89415],[-70.68306,76.937195],[-71.16112,76.944977],[-71.352219,76.993591],[-71.37527,77.05609],[-71.19388,77.133331],[-70.813614,77.160812],[-70.910278,77.188309],[-70.14917,77.24054000000012],[-68.540558,77.166092],[-67.85777,77.201935],[-66.935822,77.123032],[-66.44861,77.133881],[-66.170837,77.1933140000001],[-66.906952,77.14554],[-67.70029,77.211105],[-68.667496,77.220261],[-69.101669,77.271927],[-68.30861,77.367752],[-67.619995,77.386383],[-66.76889,77.352478],[-66.54584,77.28137200000015],[-66.238327,77.248596],[-66.195267,77.25972],[-66.460556,77.297211],[-66.65916,77.41443],[-66.170273,77.424988],[-66.08,77.44914],[-66.055557,77.491364],[-66.28361,77.61304],[-66.72583,77.68082],[-67.12083,77.66887],[-67.24527,77.57304],[-67.581116,77.521378],[-68.344727,77.49859600000013],[-68.39195,77.503601],[-68.383057,77.56860400000011],[-68.699432,77.663879],[-68.815552,77.651382],[-68.66556,77.5936],[-68.597778,77.550537],[-68.60194,77.521378],[-69.25029,77.45305],[-70.28999,77.563599],[-69.50111,77.684708],[-69.48361,77.7536],[-69.705,77.700546],[-70.12749,77.665543],[-70.60278,77.67804],[-70.614441,77.713608],[-70.24388,77.81303],[-69.96861,77.8336],[-70.372498,77.85776],[-70.67027,77.77998400000013],[-71.32001,77.763611],[-71.440552,77.793045],[-71.2117,77.866776],[-71.59889,77.852768],[-71.60388,77.918594],[-71.93944,77.88611],[-72.23555,77.94693],[-72.35556,78.00943000000012],[-72.29333,78.05053700000013],[-72.505,78.058319],[-72.86972,78.14554],[-73.0536,78.157211],[-72.73277,78.189697],[-72.81583,78.22137],[-72.674164,78.283875],[-72.45666,78.28638],[-72.84944,78.314148],[-72.80861,78.356369],[-72.59111,78.4061],[-72.63473,78.49637],[-72.552216,78.521103],[-71.90417,78.556931],[-71.55444,78.6336060000001],[-70.871933,78.611099],[-70.80305,78.67276],[-70.700287,78.69999700000011],[-69.97084,78.7536010000001],[-70.01973,78.773041],[-69.928329,78.79470800000011],[-69.41777,78.80775],[-69.13751,78.88275],[-68.790558,78.829163],[-68.88417,78.878311],[-69.173325,78.922485],[-69.046951,78.973038],[-68.34056,79.063034],[-68.04111,79.07304],[-67.72223,79.039154],[-67.66666,79.051086],[-67.741669,79.063034],[-67.73083,79.083878],[-67.5,79.132729],[-66.81555,79.10887100000014],[-66.366394,79.141663],[-66.23972,79.10554500000012],[-65.976669,79.101654],[-65.68416,79.249146],[-65.15639,79.37082],[-65.08084,79.444977],[-64.87999,79.49275200000011],[-64.82333,79.5336],[-64.81778,79.599426],[-64.981674,79.66943400000014],[-65.07667,79.837769],[-65.0139,79.929428],[-65.068893,80.009155],[-64.37555,80.066666],[-64.15222,80.136658],[-63.92306,80.12915],[-63.78447,80.148331],[-64.14416,80.155823],[-64.20306,80.186371],[-64.16501,80.234421],[-64.205,80.250549],[-64.269165,80.229706],[-64.347778,80.13526900000011],[-64.9025,80.063309],[-65.28473,80.103043],[-65.526947,80.04304500000012],[-65.898056,80.00749200000013],[-66.08861,80.019714],[-66.16528,80.07222],[-66.40723,80.106934],[-66.58639,80.07083],[-67.049728,80.05748],[-67.16777,80.156647],[-67.494995,80.19693],[-67.480835,80.325546],[-66.7886,80.457214],[-66.722778,80.492477],[-66.792496,80.532486],[-66.7158359999999,80.554977],[-66.14889,80.60637],[-65.986389,80.669983],[-65.50639,80.663315],[-65.712784,80.705826],[-65.074722,80.790268],[-64.986938,80.83692900000011],[-65.032501,80.884995],[-64.709442,80.93275],[-64.79472,80.9561],[-64.785278,80.983597],[-63.948883,81.050812],[-63.68056,81.143875],[-63.47194,81.11581400000011],[-63.30666,80.95054600000014],[-62.79445,80.751099],[-62.73695,80.777771],[-63.23167,80.975266],[-63.33167,81.065811],[-63.371666,81.155823],[-62.8275,81.227203],[-62.213058,81.195251],[-61.55055,81.068054],[-61.50194,81.069992],[-61.52722,81.095261],[-61.49555,81.10331700000012],[-61.056664,81.1197],[-60.891945,81.16554300000011],[-61.082222,81.21804800000012],[-61.313332,81.35582],[-60.8225,81.459717],[-60.77084,81.50055],[-61.35778,81.682755],[-61.452225,81.753052],[-61.26666,81.809982],[-60.80666,81.879974],[-60.0625,81.94470200000012],[-58.899445,81.8647],[-58.77666,81.833054],[-58.7425,81.784988],[-58.758057,81.719437],[-58.6425,81.675537],[-57.918335,81.590271],[-57.644722,81.5861],[-57.523056,81.531937],[-57.17695,81.469147],[-57.28167,81.45471],[-57.205,81.426376],[-56.73695,81.386658],[-56.47833,81.33249],[-56.44944,81.342484],[-56.62389,81.39971900000012],[-57.06555,81.437485],[-57.18805,81.49942],[-57.18666,81.52666],[-57.72888,81.64221],[-58.12722,81.6772],[-58.33666,81.75082],[-58.49889,81.87665],[-59.466942,81.996933],[-58.30278,82.12220800000011],[-56.586388,82.227768],[-56.441666,82.22526600000015],[-56.28667,82.158875],[-56.180283,82.18830900000012],[-56.112221,82.253052],[-55.9025,82.268051],[-55.27111,82.244141],[-55.225,82.232483],[-55.338051,82.218597],[-55.113335,82.15664700000013],[-55.09805,82.18609600000013],[-55.270279,82.275269],[-55.60333,82.279434],[-54.50528,82.36554],[-54.07944,82.31694],[-53.559723,82.116089],[-53.50834,81.893875],[-53.58195,81.807205],[-53.7375,81.75722],[-53.823616,81.693588],[-53.80278,81.55748000000011],[-53.634445,81.513321],[-53.473053,81.501663],[-53.51861,81.517212],[-53.54056,81.676086],[-52.938606,81.856369],[-52.952782,81.96360800000012],[-53.02805,82.01193200000012],[-52.89917,82.03415],[-51.018333,81.84220900000014],[-50.28056,81.720261],[-50.176392,81.63638300000012],[-49.90361,81.609421],[-49.61472,81.640274],[-49.88028,81.662491],[-49.90222,81.70416],[-50.01083,81.729706],[-50.49223,81.7769320000001],[-50.63695,81.82416],[-50.62749,81.84887700000013],[-50.89472,81.868591],[-51.065552,81.93220500000011],[-50.962219,81.950272],[-49.82056,81.870255],[-49.43222,81.92776500000014],[-50.11445,82.038315],[-50.695,82.18248000000011],[-50.84444,82.362762],[-51.05305,82.433044],[-51.118889,82.494141],[-50.3175,82.518326],[-49.191666,82.469986],[-48.89389,82.4236],[-48.617279,82.3353],[-47.94222,82.283325],[-47.47055,82.172211],[-46.39278,82.0977630000001],[-45.96999,82.01471],[-45.953331,81.9644320000001],[-46.039444,81.94664],[-45.54056,81.896378],[-45.134445,81.78166],[-44.64,81.75416600000011],[-44.18333,81.834152],[-44.38612,81.88443000000012],[-44.588608,81.88888500000013],[-44.72666,81.935257],[-44.498337,81.939697],[-44.472771,81.96776],[-44.925278,81.9897],[-44.93056,82.03970300000015],[-44.502502,82.089706],[-44.793892,82.183594],[-44.70861,82.252777],[-44.618057,82.276657],[-44.12888,82.311371],[-42.29917,82.21666],[-42.750557,82.27415500000012],[-43.301941,82.280273],[-43.830284,82.33581],[-43.886116,82.371094],[-43.72666,82.401657],[-44.305832,82.47693],[-44.597221,82.55775],[-45.66972,82.72499],[-45.765839,82.7644350000001],[-42.142776,82.761658],[-42.05055,82.74971],[-42.16722,82.713608],[-42.142227,82.69609100000012],[-41.83,82.645264],[-41.805,82.603592],[-41.851395,82.539978],[-41.68278,82.47804],[-41.58611,82.484985],[-41.55695,82.527771],[-41.60889,82.641663],[-41.898056,82.732758],[-41.55028,82.736649],[-40.642776,82.57527],[-40.203331,82.560257],[-40.05944,82.46388],[-40.07834,82.421646],[-39.930832,82.368591],[-39.79472,82.364426],[-39.752785,82.39888000000013],[-40.01195,82.559982],[-39.872498,82.61137400000013],[-39.905,82.67164600000012],[-40.13528,82.71443],[-40.601395,82.7122],[-41.276108,82.795532],[-42.19111,82.851654],[-44.49361,82.845825],[-45.06167,82.906937],[-44.863892,82.867752],[-45.99306,82.844437],[-46.53695,82.886108],[-46.89,82.9611],[-46.465553,82.96331800000013],[-45.98333,82.914703],[-46.22666,82.97526600000015],[-46.70167,83.00555400000012],[-46.03306,83.088593],[-45.087219,82.970825],[-45.10722,82.93109],[-44.755,82.9644320000001],[-43.989441,82.911926],[-43.38666,82.91443],[-43.36611,82.920258],[-43.98389,82.921097],[-44.86972,83.000549],[-45.52472,83.12220800000011],[-45.388054,83.15416],[-45.28,83.12581],[-45.0775,83.152481],[-44.70556,83.104431],[-44.679169,83.107758],[-44.75084,83.150269],[-44.264725,83.16304],[-43.68777,83.11499],[-43.261948,83.135544],[-42.872772,83.092758],[-42.851395,83.09637],[-43.29333,83.158875],[-43.983093,83.20105],[-42.930557,83.202774],[-42.88861,83.208878],[-43.32417,83.237488],[-43.21361,83.26609800000011],[-42.695,83.274429],[-42.44527,83.231934],[-41.97694,83.221375],[-41.70556,83.171646],[-41.93195,83.087494],[-41.62639,83.1336060000001],[-40.553329,82.967484],[-39.44694,82.95776400000011],[-39.03445,82.880539],[-38.905556,82.815811],[-38.574448,82.74414],[-38.53583,82.822495],[-38.73444,82.82832300000011],[-38.80917,82.91249],[-39.15028,82.98027000000013],[-39.00751,83.008606],[-37.715279,83.02916],[-37.270279,83.005264],[-37.76,83.045532],[-38.800835,83.0533140000001],[-38.365837,83.10277],[-36.87749,83.147217],[-37.53,83.14777],[-37.992226,83.201935],[-38.67805,83.205261],[-38.85722,83.2502750000001],[-38.821114,83.340271],[-38.856392,83.431656],[-37.796112,83.359146],[-37.74,83.36914100000013],[-38.05861,83.431366],[-37.950554,83.487488],[-37.62583,83.50416600000011],[-36.841942,83.432205],[-36.711113,83.38666],[-36.43805,83.3611],[-36.399727,83.365814],[-36.69277,83.4124910000001],[-36.574722,83.425812],[-36.61111,83.450821],[-36.904167,83.490814],[-36.67194,83.53692600000011],[-36.28944,83.55081200000012],[-35.19944,83.53499],[-34.769447,83.60054],[-34.487778,83.540817],[-34.45444,83.58305400000012],[-34.364166,83.596939],[-34.195,83.521927],[-33.88277,83.45248400000013],[-33.745277,83.485809],[-34.014168,83.52887],[-34.08139,83.566376],[-33.146111,83.616653],[-32.203888,83.603867],[-32.30028,83.57026700000011]]]]}},{"type":"Feature","properties":{"FIPS":"GM","ISO2":"DE","ISO3":"DEU","UN":276,"NAME":"Germany","AREA":34895,"POP2005":82652369,"REGION":150,"SUBREGION":155,"LON":9.851,"LAT":51.11},"geometry":{"type":"MultiPolygon","coordinates":[[[[8.710255,47.69681],[8.678595,47.693344],[8.670555,47.711105],[8.705,47.71305100000012],[8.710255,47.69681]]],[[[6.806389,53.602219],[6.723055,53.584999],[6.746944,53.56027200000011],[6.658333000000141,53.586105],[6.747499,53.618607],[6.806389,53.602219]]],[[[6.939444,53.669441],[6.876389,53.67027300000012],[7.088333,53.68416600000012],[7.08417,53.679993],[6.939444,53.669441]]],[[[7.242499000000123,53.70444],[7.15861,53.69888300000014],[7.135833,53.706108],[7.346944000000121,53.721107],[7.242499000000123,53.70444]]],[[[8.19111,53.724716],[8.124166000000116,53.708885000000116],[8.11999900000012,53.713051],[8.14277600000014,53.733604],[8.19111,53.724716]]],[[[7.622222,53.7544400000001],[7.628888,53.742218],[7.467777,53.733055],[7.485833,53.7575],[7.622222,53.7544400000001]]],[[[7.75889,53.76055],[7.669722,53.754715],[7.664444,53.76166],[7.812778,53.77555100000012],[7.75889,53.76055]]],[[[8.425278000000105,53.928055],[8.41166,53.955551],[8.455,53.96305100000012],[8.457222000000115,53.96083],[8.425278000000105,53.928055]]],[[[11.45917,53.961105],[11.388611,53.969162],[11.373888,53.988609],[11.488609,54.023048],[11.45917,53.961105]]],[[[13.94028,54.024994],[13.930832,54.016388],[13.92583,54.018326],[13.93444,54.027771],[13.94028,54.024994]]],[[[8.695555,54.041107],[8.673054,54.04943800000012],[8.67139,54.077774],[8.693333,54.082497],[8.695555,54.041107]]],[[[11.544167,54.061386],[11.51111,54.04860700000012],[11.61242,54.10458],[11.568054,54.074715],[11.544167,54.061386]]],[[[14.001317,54.065361],[14.225555,53.92860400000012],[14.218887000000109,53.869019],[13.823431,53.853745],[13.92916,53.897499],[13.98207,53.96255100000013],[14.048565,53.942425],[14.056003,53.984863],[13.97988,54.05661],[13.929569,54.063171],[13.857498,54.000275],[13.759165,54.159996],[13.813055,54.16861],[13.89238,54.090298000000125],[14.001317,54.065361]]],[[[10.979443,54.380554],[10.994999,54.381943],[11.017776,54.380272],[11.003054000000134,54.376938],[10.979443,54.380554]]],[[[8.893055,54.461937],[8.819443,54.465271],[8.814999,54.500832],[8.960554,54.519165],[8.893055,54.461937]]],[[[11.31278,54.406944],[11.123888000000136,54.406944],[11.006388000000129,54.461662],[11.06472,54.53416],[11.184166,54.52],[11.242777000000101,54.49555],[11.31278,54.406944]]],[[[8.662777,54.494164],[8.612499000000128,54.493889],[8.59111,54.52777100000014],[8.710833,54.55167],[8.662777,54.494164]]],[[[13.07361,54.488609],[13.063055,54.465271],[13.09666600000014,54.590553],[13.15138800000011,54.602776],[13.07361,54.488609]]],[[[13.383055,54.638885],[13.433424,54.57784],[13.676666,54.56528],[13.675278000000105,54.526382],[13.577776,54.453888],[13.617498,54.40416],[13.71388800000011,54.37778],[13.743889000000138,54.33111],[13.730833,54.275833],[13.693888,54.282776],[13.712776000000133,54.32111],[13.68944,54.34833],[13.508333,54.342773],[13.35667,54.273048],[13.421944,54.25916],[13.393055,54.221382],[13.249722,54.258331],[13.118332,54.333885],[13.134165,54.37221],[13.2675,54.3825000000001],[13.164639000000136,54.434349],[13.23222,54.485817],[13.14696,54.54560500000014],[13.30397,54.550285],[13.3674,54.580437],[13.447461,54.488937],[13.50309,54.493095],[13.502570000000105,54.549767],[13.38351,54.57836],[13.374676,54.610073],[13.24472,54.559166],[13.24472,54.656662],[13.443054000000132,54.675827],[13.383055,54.638885]]],[[[8.364443,54.61332700000014],[8.294443,54.666664],[8.35389,54.711662],[8.4,54.627777],[8.364443,54.61332700000014]]],[[[8.567778,54.68527],[8.47833,54.686943],[8.39694,54.713882],[8.44472,54.748329],[8.551109,54.75388],[8.594721,54.721382],[8.567778,54.68527]]],[[[10.979443,54.380554],[10.955555,54.382774],[11.016943,54.36999],[11.07389,54.376389],[11.093054000000109,54.19749500000011],[10.758055,54.05194100000011],[10.789999,53.99721],[10.88389,53.98333],[10.890554000000122,53.950829],[10.818535,53.890053],[10.90443,53.957344],[11.094721,54.01361],[11.189444,54.012497],[11.263332,53.933052],[11.412777,53.919716],[11.480833,53.960274],[11.5175,54.031944],[11.573889,54.032494],[11.625555,54.075554],[11.61972,54.106110000000115],[11.676109,54.149994],[12.129721,54.191109],[12.343611000000124,54.29777],[12.526943,54.474159],[12.924166,54.426941000000106],[12.465555000000109,54.39582800000011],[12.36666,54.307495],[12.36972,54.264999],[12.453054000000122,54.248886],[12.41416500000014,54.265274],[12.427221,54.29222],[12.581944,54.368332],[13.02389,54.399719],[13.117777,54.275276],[13.282221,54.236664],[13.4558320000001,54.096107],[13.499722,54.0861],[13.480555,54.11972],[13.71833,54.16971600000011],[13.788887,54.109718],[13.786110000000122,54.049995],[13.86694,53.905],[13.813055,53.845276000000126],[13.95917,53.774994],[14.275627,53.699066],[14.413261,53.33896],[14.391689,53.144165],[14.342222,53.044998000000135],[14.149443,52.96277600000013],[14.149166,52.862778],[14.640276,52.572495],[14.636389000000122,52.490555],[14.534443,52.394722000000115],[14.58166,52.28611000000012],[14.710554000000114,52.24388900000014],[14.760765,52.069862],[14.692499,51.89888800000011],[14.59944300000012,51.81860400000011],[14.666943,51.724159],[14.755278,51.66999800000013],[14.759998,51.604439],[14.714998,51.554722],[14.73611,51.528053000000114],[14.95111,51.471382],[14.975555,51.440826],[14.971666,51.355553],[15.03889,51.27166],[14.96472,51.050827],[14.801666,50.81889],[14.61916,50.8575],[14.628332000000114,50.92360700000012],[14.569166,51.005554],[14.30972,51.053604],[14.256109,50.987778000000105],[14.368332,50.934998],[14.311388,50.88222],[13.582222,50.709442],[13.463888,50.60027],[13.378332,50.6294400000001],[13.25111,50.59],[13.19111,50.50361],[13.079443,50.498055],[12.985558,50.41833],[12.818888,50.454437],[12.51861,50.393883],[12.398611,50.309166],[12.323055,50.206665],[12.177221,50.318054],[12.093704,50.322533],[12.208611,50.169441],[12.206142,50.106209],[12.490000000000121,49.976662],[12.544167,49.91805],[12.467499,49.782219],[12.455555000000118,49.695549],[12.515554,49.679443],[12.674444,49.42499500000014],[12.795555,49.33972],[12.96666,49.33194],[13.173054,49.16722],[13.39528,49.050278000000105],[13.40254,49.006187],[13.580555,48.970833],[13.677776,48.884163],[13.740833,48.88166],[13.833611,48.7736],[13.82278,48.617218],[13.725996,48.515587],[13.526943,48.585],[13.441666,48.565552],[13.44,48.43527],[13.394999,48.366104],[13.27861,48.30305],[13.01777600000014,48.2594380000001],[12.75833,48.123886],[12.768332,48.079163],[13.008888,47.854164],[12.911943,47.720833],[13.034443,47.722221],[13.099998000000141,47.645],[13.054998,47.5],[13.011665,47.469162],[12.809721,47.55222],[12.78611,47.585831],[12.82917,47.622215],[12.735554,47.684166],[12.606943,47.674438],[12.518055,47.632217],[12.455,47.66777],[12.201111,47.65749],[12.195745000000102,47.608124],[12.006388000000129,47.624443],[11.68305400000014,47.584717],[11.296389,47.428886],[11.095554,47.396111],[10.97361,47.400551],[10.909443,47.518051],[10.690832,47.55389],[10.569443,47.540276],[10.47805,47.591942000000124],[10.426943,47.57694],[10.47333,47.435555000000136],[10.337221000000113,47.312492000000134],[10.173332,47.274719],[10.23139,47.381386],[9.81361,47.593605],[9.763054,47.584717],[9.7292,47.535297],[9.60706,47.52951400000012],[9.261095,47.662842],[9.0425,47.688889],[8.89278,47.651382],[8.808887,47.73583200000013],[8.772221,47.717499],[8.800133,47.681725],[8.720222,47.69662],[8.734999,47.761383],[8.56611,47.806938],[8.406666,47.70388800000012],[8.47555,47.646942],[8.620832,47.66111],[8.57642,47.59137],[8.519999,47.634163000000115],[8.435833,47.57361],[8.198889,47.62167],[8.086666,47.560555],[7.621111,47.5611],[7.676944,47.603607],[7.588268,47.58448],[7.510833,47.703331],[7.624166,47.97694400000012],[7.56919,48.044777],[7.578888,48.11972000000014],[7.750833,48.336662],[7.736666,48.3986],[7.80222,48.575829],[7.88,48.66416],[8.092222,48.803604],[8.139166,48.895554],[8.22608,48.964417],[7.938611,49.048882],[7.652089,49.04493700000012],[7.486944,49.164162],[7.423611,49.1772160000001],[7.287777,49.111107],[7.090555,49.127495],[6.930555,49.22083],[6.8475,49.215271],[6.838888,49.154999],[6.730833,49.166107],[6.540555,49.425827],[6.416111,49.47583],[6.36217,49.45939],[6.356486,49.525864],[6.420833,49.665833],[6.505835,49.706627],[6.524444,49.808609],[6.395555,49.817772],[6.25528,49.880554],[6.112778,50.05888],[6.173333,50.232498],[6.398204,50.32317],[6.37361,50.443329],[6.333888000000115,50.48972],[6.264722,50.497772],[6.268611,50.623604],[6.011798,50.757271],[6.013888000000122,50.84166],[6.06778,50.849716],[6.080277000000137,50.915833],[6.025555,50.978333],[5.891666,50.972771],[5.864166,51.04361],[6.0975,51.1311],[6.076388,51.240273],[6.222777,51.364716],[6.2075,51.509995],[6.094166,51.604439],[6.028889,51.70666],[5.95205,51.747528],[5.986666,51.766937],[5.9625,51.807777],[6.12361,51.888054],[6.35111,51.848053],[6.746388,51.906105],[6.8308320000001,51.971382],[6.728611,52.035271],[6.759428,52.114563],[6.860555,52.12028],[6.901111,52.171387],[7.053094,52.23776],[7.028055,52.280273000000136],[7.065555,52.385826],[6.99083,52.459717],[6.94611,52.434441],[6.764444000000139,52.45916],[6.705555,52.485832],[6.688889,52.54916400000013],[6.75944,52.56472],[6.718923000000132,52.626785],[6.76805,52.65222],[7.051666,52.643608],[7.069722,52.814995],[7.210278,53.001938],[7.208364,53.242805],[7.256389,53.31832900000012],[7.364444,53.29916],[7.3325,53.32388300000014],[7.058055,53.337219],[7.019444,53.372215],[7.031388,53.47943900000012],[7.088055000000111,53.582771],[7.226944,53.664993],[8.008333,53.709999],[8.04611,53.636383],[8.165833,53.549721],[8.163332,53.520554],[8.061388,53.500549],[8.097776,53.44444],[8.22305,53.40083],[8.28916,53.42249300000014],[8.319721,53.515274],[8.233055,53.51944],[8.243055,53.586105],[8.341389,53.613609],[8.494444,53.55499300000014],[8.51833,53.513611],[8.48278,53.453888],[8.503054,53.354164],[8.498055,53.471939],[8.56833300000011,53.53333],[8.483332,53.690277],[8.580276,53.85860400000012],[8.680555,53.894722],[8.85305,53.82972],[9.279999,53.85777300000012],[9.573055,53.59111],[9.832499,53.536385],[9.56111,53.621666],[9.393055,53.823883],[9.327776,53.857216],[9.205276,53.890549],[8.983332000000132,53.890274],[8.899721,53.94082600000013],[8.836111,54.031105],[8.97889,54.018608],[9.017221,54.084999],[8.971109,54.131660000000124],[8.85861,54.123886],[8.824999,54.155273],[8.841389000000106,54.250549],[8.88361,54.294167],[8.669443,54.26694],[8.599443,54.333885],[8.63889,54.39666],[8.85555,54.405548],[8.99472,54.451942000000145],[9.019444,54.49305],[8.58055,54.867878],[8.3025,54.859993],[8.28833,54.737495],[8.291111,54.894722],[8.3933320000001,55.053055],[8.46305500000011,55.04805],[8.352777000000117,54.95138500000013],[8.456798,54.900558],[8.919998000000135,54.908051],[9.22416,54.853607],[9.253611,54.80888],[9.3925,54.83527400000014],[9.445358,54.825401],[9.43916,54.80222],[9.5783330000001,54.825554],[9.916666,54.791107],[10.036943,54.67115],[10.0325,54.555275],[9.970554,54.5075],[9.845276,54.478607],[9.870277,54.45444],[10.126944,54.489716],[10.60972,54.3605500000001],[10.706665,54.30694],[10.78777700000012,54.309715],[10.936666,54.38361],[10.95167,54.38472000000013],[10.979443,54.380554]],[[12.729721,54.41666],[12.70278,54.428329],[12.68611,54.418327],[12.68861,54.41555],[12.729721,54.41666]]]]}},{"type":"Feature","properties":{"FIPS":"GQ","ISO2":"GU","ISO3":"GUM","UN":316,"NAME":"Guam","AREA":55,"POP2005":16857,"REGION":9,"SUBREGION":57,"LON":144.707,"LAT":13.385},"geometry":{"type":"Polygon","coordinates":[[[144.70941,13.234997],[144.644989,13.292221],[144.655243,13.427776],[144.795807,13.524166],[144.834686,13.626108],[144.875244,13.65361],[144.953308,13.584164],[144.786102,13.420277],[144.756104,13.276388],[144.70941,13.234997]]]}},{"type":"Feature","properties":{"FIPS":"GR","ISO2":"GR","ISO3":"GRC","UN":300,"NAME":"Greece","AREA":12890,"POP2005":11099737,"REGION":150,"SUBREGION":39,"LON":21.766,"LAT":39.666},"geometry":{"type":"MultiPolygon","coordinates":[[[[24.128609,34.85666700000013],[24.128609,34.808884],[24.04472,34.849998],[24.074718,34.868607],[24.128609,34.85666700000013]]],[[[26.900555,35.358887],[26.880554,35.34333],[26.84972,35.372215],[26.898052,35.42],[27.0199970000001,35.430832],[26.900555,35.358887]]],[[[23.858608,35.52166],[23.99555,35.515549],[24.069611000000123,35.54805],[24.084999,35.588333],[24.172222,35.590553],[24.205276,35.54277],[24.187222,35.509995],[24.102608,35.488384],[24.319721,35.35166],[24.78889,35.408882],[24.963333,35.404442],[25.04639,35.383888],[25.063889,35.344719],[25.377220000000136,35.335548],[25.445274,35.29166],[25.658054000000106,35.3425],[25.7666660000001,35.334717],[25.728333,35.294167],[25.722775000000127,35.263885],[25.742758,35.286358],[25.755173,35.25359300000014],[25.710831,35.171104],[25.80805,35.10805],[26.02666,35.224442],[26.111942000000113,35.205276],[26.301109,35.28305],[26.29055,35.1311],[26.237499,35.033607],[26.11972,34.992775],[25.987499000000124,35.033051],[25.33527800000013,34.984993],[25.016941,34.93083],[24.752777,34.94221],[24.762775,35.015831],[24.723053,35.09055],[24.565552,35.098053],[24.526665,35.142494],[24.399441,35.18694],[24.04888,35.189995000000124],[23.824165,35.246666],[23.598331,35.23055],[23.521111,35.288055],[23.606388,35.613327],[23.618332000000123,35.51777600000014],[23.718887,35.5075],[23.708332,35.648331],[23.748608000000104,35.686386],[23.775555,35.666107],[23.787498,35.548332],[23.858608,35.52166]]],[[[27.157497,35.44583100000011],[27.14222000000012,35.399719],[27.06611,35.604996],[27.16249800000014,35.724716000000114],[27.16,35.79583],[27.22805,35.82638500000013],[27.177498000000128,35.601105],[27.202221,35.47805],[27.157497,35.44583100000011]]],[[[23.332222,35.825272],[23.29583,35.853882],[23.273052,35.89999],[23.325832,35.87221],[23.332222,35.825272]]],[[[23.049442,36.13694],[22.91222,36.19944],[22.895275,36.325829],[22.929443,36.3794400000001],[23.10722,36.243889],[23.049442,36.13694]]],[[[25.83888,36.34805],[25.767773,36.346931],[25.730270000000132,36.36971],[25.771111,36.40193],[25.85693700000013,36.358887],[25.83888,36.34805]]],[[[25.399162,36.39444],[25.391388,36.408051],[25.406666,36.41055300000011],[25.4086,36.40083],[25.399162,36.39444]]],[[[27.78666,35.890549],[27.719166,35.94082600000013],[27.740829000000133,36.10443900000013],[27.719719,36.1661],[27.895828,36.332222],[28.22583,36.453049],[28.206944,36.343597],[28.12277,36.185822000000144],[27.865555,35.93222],[27.78666,35.890549]]],[[[27.40027,36.372498],[27.29472,36.42443100000014],[27.297771,36.4644320000001],[27.358887,36.475548],[27.445827000000122,36.4086],[27.40027,36.372498]]],[[[25.457771,36.33361],[25.38485,36.3446],[25.430054,36.3968],[25.371941,36.472488],[25.421104,36.469994],[25.486382,36.408051],[25.457771,36.33361]]],[[[26.342216,36.506386],[26.28860900000012,36.518044],[26.262497,36.59166],[26.385551,36.640549],[26.46054800000013,36.59805300000011],[26.471104,36.578331],[26.405827,36.565269],[26.342216,36.506386]]],[[[27.854717,36.527222],[27.764996,36.574997],[27.859718,36.650269],[27.87527,36.542763],[27.854717,36.527222]]],[[[24.950275,36.590553],[24.915276,36.596107],[24.840832,36.65888],[24.938332,36.632774],[24.950275,36.590553]]],[[[25.089722,36.63388],[25.063889,36.639992],[25.102219,36.69333],[25.18777,36.71666],[25.089722,36.63388]]],[[[21.785831000000144,36.736938],[21.775,36.69778],[21.75055300000014,36.712494000000106],[21.760555000000124,36.754997],[21.785831000000144,36.736938]]],[[[24.413609,36.66027100000014],[24.324718,36.652771],[24.349163,36.746109],[24.548054,36.7594380000001],[24.53805,36.674995],[24.413609,36.66027100000014]]],[[[25.385551,36.651665],[25.342773000000136,36.651665],[25.25861,36.728882],[25.275829,36.78138000000013],[25.308048,36.788322],[25.407219,36.717766],[25.385551,36.651665]]],[[[24.66277700000012,36.747498],[24.62833000000012,36.74944],[24.609722,36.778328],[24.665276000000116,36.776382000000126],[24.66277700000012,36.747498]]],[[[21.698608,36.739166],[21.704441,36.796661],[21.728333,36.79277],[21.720554000000106,36.770271],[21.698608,36.739166]]],[[[24.558609000000104,36.77555100000012],[24.521111,36.823883],[24.562496,36.84861000000012],[24.59916,36.823883],[24.558609000000104,36.77555100000012]]],[[[25.459995,36.82222],[25.420830000000137,36.83194],[25.4741590000001,36.869164],[25.48333,36.843323],[25.459995,36.82222]]],[[[25.826664,36.779709],[25.73693800000012,36.78443],[25.97666,36.874161],[25.920551,36.8361],[25.826664,36.779709]]],[[[26.965832,36.681664],[26.92083,36.708878],[26.917770000000132,36.755272],[27.06415900000013,36.838875],[27.177498000000128,36.88888],[27.284443,36.900551],[27.35277600000012,36.872208],[27.32944,36.842766],[26.980553,36.746941000000106],[26.965832,36.681664]]],[[[25.680832,36.878052],[25.612778000000105,36.88083],[25.60916,36.886658],[25.651939,36.906097],[25.680832,36.878052]]],[[[25.076664000000108,36.95193],[25.023605,36.999146],[25.083881,37.042480000000126],[25.086941,37.040543],[25.076664000000108,36.95193]]],[[[24.711941,36.903053000000114],[24.683052,36.930275],[24.641109000000142,37.042221],[24.70666,37.027771],[24.765274,36.958328],[24.711941,36.903053000000114]]],[[[26.97555,36.924431],[26.919167,36.946663],[26.890831,37.07638],[27.048328000000136,36.993607],[27.049438,36.94611],[26.97555,36.924431]]],[[[25.83444,37.09304],[25.793884,37.103043],[25.78249,37.119987],[25.82555,37.125542],[25.83444,37.09304]]],[[[25.250275,37.008324],[25.191383,36.973885],[25.098328,37.027489],[25.16333,37.12166600000012],[25.2686,37.138611],[25.250275,37.008324]]],[[[26.886662,37.09665700000011],[26.820553,37.11055],[26.76916100000011,37.176384],[26.85833,37.181107],[26.886662,37.09665700000011]]],[[[25.461388,36.919434],[25.433331,36.922211],[25.341106,37.075],[25.54472,37.198044],[25.600552,37.118889],[25.580273,37.015549000000135],[25.554165,36.95498700000013],[25.461388,36.919434]]],[[[24.53500000000014,37.182495],[24.509163,37.112778000000105],[24.414719,37.12722],[24.460278,37.19583100000011],[24.53500000000014,37.182495]]],[[[26.767494,37.186935],[26.772221,37.206657],[26.787495,37.20694],[26.788609,37.202209],[26.767494,37.186935]]],[[[23.15667,37.240273],[23.129719,37.237495],[23.096943000000124,37.277496],[23.150555,37.27277400000013],[23.15667,37.240273]]],[[[23.410831,37.300827],[23.373886,37.299721],[23.516109,37.36472],[23.583332,37.36417],[23.410831,37.300827]]],[[[24.37944,37.30583200000012],[24.36861,37.427216],[24.44278,37.481667],[24.43055,37.442215],[24.48333,37.39804800000013],[24.37944,37.30583200000012]]],[[[25.359161,37.40778],[25.328053,37.41776],[25.313889,37.488045],[25.463608,37.469719],[25.359161,37.40778]]],[[[24.952499,37.38555100000013],[24.88444,37.363609],[24.889721,37.51249700000011],[24.944164,37.491104],[24.9725,37.402771],[24.952499,37.38555100000013]]],[[[23.497776,37.50471],[23.451942,37.509163000000115],[23.432777,37.526665],[23.5225,37.524162],[23.497776,37.50471]]],[[[25.228333,37.534431],[25.113888,37.551102],[24.97583,37.675552],[25.238888,37.62194],[25.25555,37.58387800000014],[25.228333,37.534431]]],[[[24.29861,37.526382],[24.269165,37.588882000000126],[24.29833,37.654999],[24.394165,37.673332],[24.393055000000118,37.612495],[24.29861,37.526382]]],[[[26.020828,37.514435],[25.974716000000114,37.53138],[26.06805,37.63194],[26.361111,37.68666100000013],[26.214993,37.55888],[26.020828,37.514435]]],[[[23.513054000000125,37.691666],[23.476387,37.679161],[23.425552,37.762497],[23.56389,37.762772],[23.513054000000125,37.691666]]],[[[27.06944,37.711937],[26.81805,37.636658],[26.711388000000113,37.70832100000012],[26.59722,37.67499],[26.571663000000115,37.730553],[26.748608,37.811378],[27.02860600000014,37.77166],[27.06944,37.711937]]],[[[20.898052,37.80527500000011],[20.994442,37.698608],[20.87028,37.726105],[20.831108,37.64638500000012],[20.703331000000105,37.732773],[20.629997000000117,37.80888],[20.621944,37.860832],[20.69971800000013,37.93027],[20.898052,37.80527500000011]]],[[[24.791664,37.99832900000012],[24.962776,37.872498],[24.998886,37.76388500000013],[24.96027800000013,37.685555000000136],[24.765553,37.873604],[24.71333,37.872772],[24.692219,37.95944200000014],[24.791664,37.99832900000012]]],[[[23.462498,37.87861],[23.405552000000114,37.895271],[23.437496000000124,37.98583200000013],[23.538887,37.98583200000013],[23.540276,37.920555],[23.462498,37.87861]]],[[[20.612499,38.39416],[20.813332000000116,38.118332],[20.7925,38.060272],[20.557777,38.090553],[20.34139,38.17722],[20.398609,38.325554000000125],[20.483608,38.30832700000013],[20.53639,38.344719000000104],[20.539165,38.470551000000114],[20.57111,38.468048000000124],[20.612499,38.39416]]],[[[20.735554,38.309998],[20.644722,38.398048],[20.613331000000127,38.469162],[20.648888000000113,38.5002750000001],[20.743332,38.37249800000012],[20.761108,38.325272],[20.735554,38.309998]]],[[[26.02555500000011,38.17694],[26.014721,38.14944],[25.971661,38.163605],[25.862495,38.241379],[25.991665,38.34388000000013],[25.945827,38.455269],[25.827221,38.53611],[25.861664,38.583611],[26.001389,38.601379],[26.159443,38.544434],[26.133327,38.408333],[26.160275,38.30138],[26.02555500000011,38.17694]]],[[[20.903053,38.545555],[20.899166,38.56638],[20.938889,38.60527000000013],[20.939999,38.59389],[20.903053,38.545555]]],[[[25.599995,38.531937],[25.561939,38.530823],[25.52916,38.599709000000125],[25.613331,38.589989],[25.599995,38.531937]]],[[[20.643608,38.581108],[20.543610000000115,38.564438],[20.557777,38.683884],[20.64305,38.826942000000145],[20.701385,38.834717],[20.730000000000132,38.803886],[20.72305,38.62638900000013],[20.643608,38.581108]]],[[[24.683052,38.79805],[24.646942000000138,38.76416000000012],[24.592777,38.789993],[24.553333,38.768326],[24.456665,38.88082900000012],[24.45833,38.962776],[24.489998,38.97805],[24.577499,38.926109],[24.683052,38.79805]]],[[[23.46194,38.853333],[23.59194200000013,38.764717],[23.84666,38.68222],[24.153889,38.64666],[24.187222,38.39249400000011],[24.247219,38.231941],[24.338886,38.158607],[24.568607,38.147499],[24.590832,38.060272],[24.564163,37.98722],[24.504444,37.953331],[24.387218000000132,37.993607],[24.148609000000135,38.215271],[24.049721,38.391937],[23.64222,38.418884000000105],[23.59861,38.57000000000011],[23.19611,38.83277],[23.137218,38.852219000000105],[22.829998,38.829163],[22.844997,38.861382000000106],[23.129719,39.003326],[23.2925,39.03889],[23.374722,39.00555],[23.46194,38.853333]]],[[[23.736664,39.074715],[23.662777000000116,39.086105],[23.59083,39.20444],[23.786663,39.124161],[23.736664,39.074715]]],[[[23.50861,39.159721],[23.455830000000105,39.13],[23.392498,39.152222],[23.461388,39.208328],[23.50861,39.159721]]],[[[20.198330000000112,39.17444],[20.136665,39.200554],[20.123608,39.236382000000106],[20.165,39.222496],[20.198330000000112,39.17444]]],[[[23.862499,39.13666500000011],[23.8341640000001,39.152222],[23.953609,39.289719],[23.9780540000001,39.260277],[23.862499,39.13666500000011]]],[[[26.37722,39.273598],[26.474716,39.21944],[26.614441,39.012497],[26.51833,38.972488],[26.323887000000127,38.977776],[26.086941,39.07499700000011],[26.276939,39.15638000000013],[26.292217,39.184166],[26.261662,39.202492],[26.16528,39.19111],[26.06805,39.084435],[25.832222000000115,39.1836],[25.856384,39.253052],[25.907776000000126,39.286942000000124],[25.98444400000011,39.27166000000011],[26.169167,39.323601],[26.165833,39.371941],[26.221661,39.383041],[26.323887000000127,39.37443],[26.419994,39.32583],[26.37722,39.273598]]],[[[24.992496,39.466385],[24.969719,39.508049],[25.006386,39.56331],[25.05360800000011,39.530823],[24.992496,39.466385]]],[[[19.92611,39.794441],[19.94278,39.74416400000012],[19.842499,39.70277],[19.846664,39.649162],[19.931942000000106,39.47166],[20.027775,39.431938],[20.071663,39.453606],[20.111664000000133,39.36305],[19.880276,39.44638800000013],[19.84417,39.55194],[19.675831,39.674721],[19.641388,39.744438],[19.67305,39.793053],[19.855,39.81833],[19.92611,39.794441]]],[[[19.404163,39.843605],[19.378887,39.86860700000011],[19.430553,39.86749300000014],[19.428608,39.86388],[19.404163,39.843605]]],[[[25.44167,40.00471],[25.336388000000113,39.876099],[25.373608,39.814438],[25.355827,39.78638500000011],[25.29194,39.808044],[25.25972000000013,39.913605],[25.178608,39.84665700000011],[25.22305,39.799431],[25.05444,39.86055],[25.049995,39.9897160000001],[25.27194,39.988319],[25.451382,40.033875],[25.44167,40.00471]]],[[[25.60166,40.398041],[25.557499,40.40137],[25.44389,40.475822],[25.571384000000137,40.5113750000001],[25.69471700000014,40.466103],[25.695000000000107,40.424721],[25.60166,40.398041]]],[[[24.773331,40.63166000000012],[24.64361,40.570831],[24.50944,40.658051],[24.565552,40.75055],[24.645275,40.797775],[24.761387000000127,40.749161],[24.773331,40.63166000000012]]],[[[26.294167000000126,41.708054],[26.36109,41.711052],[26.570271,41.611382],[26.635277,41.358887],[26.325,41.234711],[26.323887000000127,41.09304],[26.3752750000001,41.025551],[26.361382000000102,40.955826],[26.213608,40.877213],[26.10777700000011,40.73972],[26.04472,40.735825],[26.022778,40.82972],[25.719994,40.84583],[25.347775000000123,40.94082],[25.17639,40.94193],[25.132217,40.95443000000011],[25.16639,40.991379],[25.138054,41.01137],[25.03545000000014,41.004272],[24.801344,40.85197],[24.62749900000011,40.858604],[24.561386,40.95194200000014],[24.398052,40.936943],[24.317497000000117,40.877777],[24.31583,40.828888],[24.084164,40.71611],[23.846107,40.787216000000114],[23.723053,40.746666],[23.69028,40.67305],[23.794998,40.58305400000011],[23.824718000000132,40.463051],[23.874165,40.406662],[24.181942,40.34722],[24.396385000000123,40.162498],[24.301109,40.119995],[24.159443,40.281944000000124],[24.04694400000011,40.29361],[23.907776,40.367218],[23.727776,40.35055],[23.691109,40.297775],[23.773888000000113,40.196106],[23.99222200000014,40.111107],[24.015,40.01138300000013],[23.985832,39.951385],[23.932220000000143,39.943054],[23.826942,40.025551],[23.671108,40.21833],[23.413609,40.281387],[23.330276,40.213608],[23.368053,40.14388300000013],[23.498886,40.031662],[23.748886,39.92555],[23.595833,39.921944],[23.37944,39.99277500000011],[23.305553,40.229164],[22.899441000000138,40.39666],[22.843609,40.474998],[22.98222,40.549164],[22.91166,40.642776],[22.865833000000123,40.638611],[22.813332,40.567772],[22.59111,40.47666],[22.629997,40.38305],[22.54722,40.147774],[22.595,40.012215],[22.712219,39.95194],[22.852219,39.79361],[22.929443,39.584442],[23.25861,39.331665],[23.345,39.178055],[23.206108,39.10527],[23.05805,39.093887],[23.07889,39.146385],[23.115276,39.14361],[23.105,39.10249],[23.210831,39.15083],[23.221107,39.18499800000012],[23.119720000000143,39.30638900000014],[22.937775,39.358604],[22.826664,39.271385],[22.824718000000132,39.206940000000145],[22.854443,39.15583],[22.876389,39.177773],[22.965275,39.11860700000011],[22.994999,39.04277000000013],[23.072777,39.036942],[22.937775,38.92860400000012],[22.833054000000114,38.891106],[22.750832000000116,38.869995],[22.611942000000113,38.908882],[22.526943,38.8825],[22.52333,38.857216],[22.953609,38.75166300000012],[23.063889,38.692497],[23.113331,38.627495],[23.192776,38.66249800000014],[23.316109,38.645271],[23.33833,38.605827],[23.305553,38.56749700000012],[23.335,38.53805],[23.534721,38.49944],[23.675552,38.34861],[23.926666000000125,38.294998],[24.073887,38.196938],[24.00555400000013,38.067772],[24.030552,37.872498],[24.090275000000133,37.77861],[24.069443,37.689438],[24.034443,37.651665],[23.950832,37.669716],[23.887497,37.782776],[23.559444,37.969162],[23.586109000000135,38.03889],[23.515553000000125,38.04055000000011],[23.4122200000001,37.979996],[23.23555,37.97555],[23.109165,37.91527600000012],[23.01694,37.923607],[22.991386,37.88055400000013],[23.012218000000132,37.844994],[23.103611,37.84166],[23.14861,37.758049],[23.16222,37.616661000000136],[23.328609,37.531662],[23.36639,37.550278],[23.32638500000013,37.60666700000013],[23.40583,37.588333],[23.421801,37.527229],[23.520832,37.461662],[23.513611,37.429443],[23.270554,37.40083],[23.177219,37.29055000000011],[23.066387,37.358604],[23.066387,37.393051],[23.136944,37.41805],[23.128887000000134,37.448051],[22.779999,37.589996],[22.72583,37.568329],[22.75861,37.408051],[22.911388000000102,37.19416],[22.901943,37.11805],[22.957222,37.116104],[23.014999,36.934441000000106],[23.11417,36.774719],[23.032219,36.732773],[23.03388600000011,36.63222],[23.19833,36.431938],[23.09,36.439995],[22.969719,36.52111],[22.785553,36.798607],[22.63416,36.804443],[22.572777,36.773888],[22.482498,36.60611],[22.508331,36.453049],[22.488888,36.386108],[22.3975,36.47388500000011],[22.35611,36.69944],[22.296944000000106,36.814995],[22.146385,36.950829],[22.152775,37.02166],[22.05,37.029160000000104],[21.937496,36.987778],[21.923054,36.862778],[21.961666,36.79805],[21.881386,36.720276],[21.82222,36.804993],[21.704441,36.815277],[21.68666500000012,36.8825],[21.711941000000134,36.944443],[21.58194,37.061104000000114],[21.56416,37.1525],[21.694721,37.305275],[21.649719000000115,37.44194],[21.29361,37.77861],[21.106388,37.846664],[21.127499,37.93694],[21.19055200000014,37.93027],[21.31583000000012,38.028885],[21.38444,38.21139],[21.612499,38.152222],[21.671665000000132,38.169998000000135],[21.779999,38.308052],[21.85833,38.340828],[21.958611,38.329437],[22.224442,38.181938],[22.652222,38.076111],[22.86805,37.938049],[22.954998000000103,37.9469380000001],[22.978886,37.98221600000011],[22.85472,38.034721000000104],[22.952499000000103,38.081108],[23.05916600000012,38.057495],[23.16889,38.07444],[23.21639,38.099716],[23.226109,38.153053],[23.116108,38.2111],[22.966942,38.213608000000136],[22.944443,38.186943],[22.78139,38.23333],[22.68972,38.323608],[22.533886,38.34499],[22.40333,38.448051],[22.37861,38.33416],[22.193886,38.337219],[21.947777,38.409439],[21.53333,38.312218],[21.35055,38.43278],[21.26694,38.339165],[21.147778,38.304161],[21.108887,38.34805300000011],[21.139442,38.396942],[20.98944,38.669998],[20.901108,38.73194100000011],[20.76972200000011,38.758331000000105],[20.73222,38.801109],[20.74972,38.909721],[20.781109,38.93166],[21.02972,38.93055],[21.02583,38.895828],[21.086941,38.86388],[21.166386,38.975273],[21.138611,39.015549],[21.083050000000128,39.056664],[21.045277000000112,39.013329],[20.821663,39.114441],[20.774719,39.085274],[20.7575,39.02055400000012],[20.82917,38.95832800000011],[20.735832,38.95082900000011],[20.694721,39.061943],[20.53444300000012,39.185829000000126],[20.480274,39.273605],[20.34333,39.288605],[20.290276,39.32666],[20.214165,39.43777],[20.24528,39.441383],[20.18861,39.619164],[20.010029,39.6912],[20.221664,39.64833],[20.319443,39.729439],[20.29139,39.806664],[20.381386000000134,39.78722],[20.41222,39.815826],[20.316109,39.993332],[20.449997,40.072495],[20.671944,40.0980530000001],[20.721107,40.223053],[20.713055,40.278328],[20.75861,40.31194],[20.791924,40.43154],[20.833332,40.462219],[20.945553,40.466942],[21.041386,40.561943],[21.053055,40.673332],[20.98389,40.7930530000001],[20.98349,40.855888],[21.343052,40.871941000000106],[21.41972,40.91916700000013],[21.599998,40.872772000000104],[21.792221,40.932777],[21.911942000000124,41.049438],[21.916111000000114,41.095276],[21.98055,41.1336060000001],[22.256664000000114,41.171387],[22.434719,41.12138],[22.720554000000106,41.14277600000014],[22.75972,41.309441],[22.803886,41.346939],[23.180832,41.32278],[23.29472,41.406105],[23.63583,41.378052],[23.796387,41.43666100000012],[23.97889,41.441109],[24.066387,41.485275],[24.09333,41.549995],[24.25389,41.57],[24.46611000000013,41.55194100000011],[24.564442,41.503326],[24.608887,41.43222],[24.809444,41.352219000000105],[24.819443,41.405],[24.898888,41.41194],[25.061192,41.362572],[25.279716000000118,41.24305],[25.567776,41.32222],[25.97916,41.31944],[26.139996,41.354713],[26.198051,41.439438],[26.181664,41.54332],[26.13472,41.63221],[26.068604,41.660271],[26.074444,41.711937],[26.17194,41.748322],[26.294167000000126,41.708054]]]]}},{"type":"Feature","properties":{"FIPS":"GT","ISO2":"GT","ISO3":"GTM","UN":320,"NAME":"Guatemala","AREA":10843,"POP2005":12709564,"REGION":19,"SUBREGION":13,"LON":-90.398,"LAT":15.256},"geometry":{"type":"Polygon","coordinates":[[[-90.62762,13.930555],[-91.08139,13.913055],[-91.384735,13.978888],[-91.813065,14.211388],[-92.218903,14.521666],[-92.24678,14.550547],[-92.187225,14.588333],[-92.152237,14.690277],[-92.185837,14.843611],[-92.065842,15.077776],[-92.211395,15.26222],[-91.729172,16.074997],[-90.441956,16.088333],[-90.42778,16.170277],[-90.459732,16.19083],[-90.459457,16.252777],[-90.384445,16.376942],[-90.406403,16.416386],[-90.593903,16.476665],[-90.645,16.519165],[-90.658066,16.644165],[-90.714279,16.72646],[-90.80334,16.804996],[-90.921112,16.82972],[-90.948898,16.889164],[-91.063614,16.924442],[-91.26973,17.136387],[-91.4375,17.241108],[-90.983902,17.256107],[-90.982422,17.820652],[-89.14195,17.818886],[-89.145004,17.013885],[-89.216171,15.889851],[-89.047226,15.906387],[-88.812225,15.865555],[-88.742508,15.833887],[-88.61223,15.697498],[-88.490845,15.844721],[-88.576675,15.916388],[-88.551392,15.940832],[-88.214737,15.724443],[-88.313904,15.671389],[-88.66833,15.349998],[-88.98056,15.135555],[-89.150375,15.073481],[-89.181396,15.003332],[-89.15417,14.978054],[-89.224731,14.865],[-89.131073,14.715069],[-89.194458,14.584166],[-89.239456,14.580832],[-89.34723,14.479443],[-89.348312,14.431982],[-89.573059,14.413332],[-89.590286,14.321943],[-89.544724,14.306389],[-89.51779,14.230276],[-89.686401,14.169998],[-89.74556,14.079721],[-89.739731,14.041388],[-89.854446,14.059444],[-90.01889,13.940277],[-90.092514,13.860554],[-90.09639,13.745832],[-90.62762,13.930555]]]}},{"type":"Feature","properties":{"FIPS":"GV","ISO2":"GN","ISO3":"GIN","UN":324,"NAME":"Guinea","AREA":24572,"POP2005":9002656,"REGION":2,"SUBREGION":11,"LON":-10.942,"LAT":10.439},"geometry":{"type":"Polygon","coordinates":[[[-13.602783,9.734441],[-13.65139,9.842777],[-13.673889,9.745554],[-13.750557,9.762777],[-13.687778,9.901943],[-13.688639,9.95219],[-13.740835,9.865],[-13.829723,9.852221],[-14.065556,10.032221],[-14.220835,10.101665],[-14.4575,10.29361],[-14.548334,10.412222],[-14.535828,10.506674],[-14.664446,10.476665],[-14.613611,10.692778],[-14.511667,10.834999],[-14.575834,10.806944],[-14.637779,10.684166],[-14.702501,10.638887],[-14.707779,10.756666],[-14.747223,10.833611],[-14.808613,10.820833],[-14.819445,10.911388],[-14.814167,10.939722],[-14.734167,10.958611],[-14.693056,11.035276],[-14.749723,10.978054],[-14.87639,10.969721],[-14.958057,10.771387],[-15.023613,10.781111],[-15.081112,10.878054],[-14.961945,11.016388],[-14.808334,11.347776],[-14.686945,11.509722],[-14.515278,11.51222],[-14.309168,11.628887],[-14.27639,11.678888],[-13.995001,11.640833],[-13.709167,11.715277],[-13.708612,12.012775],[-13.971035,12.154758],[-13.963114,12.202526],[-13.859444,12.27861],[-13.804167,12.292221],[-13.811388,12.254721],[-13.731668,12.258055],[-13.666945,12.323055],[-13.644167,12.471388],[-13.716667,12.574444],[-13.713139,12.677221],[-13.061111,12.639721],[-13.041668,12.589998],[-13.069445,12.529999],[-13.037779,12.473055],[-12.963612,12.470554],[-12.943056,12.531944],[-12.901112,12.546944],[-12.786947,12.464998],[-12.633059,12.437496],[-12.582781,12.363607],[-12.496948,12.396664],[-12.399446,12.371386],[-12.345404,12.301748],[-12.03389,12.400555],[-11.736391,12.380552],[-11.638056,12.426386],[-11.427223,12.426386],[-11.373058,12.407774],[-11.493612,12.170553],[-11.376945,12.108053],[-11.315556,12.022774],[-11.248058,11.994719],[-11.178057,12.015833],[-11.041389,12.210552],[-10.92889,12.224442],[-10.814722,12.112776],[-10.731947,11.920277],[-10.652748,11.892609],[-10.458891,12.115831],[-10.333059,12.185274],[-10.323893,12.224997],[-10.095837,12.178053],[-9.865219,12.054811],[-9.701946,12.029163],[-9.628334,12.165552],[-9.313334,12.273331],[-9.293612,12.361664],[-9.400558,12.45583],[-9.311676,12.504696],[-9.155556,12.486111],[-8.943613,12.348888],[-8.979496,12.223265],[-8.796904,12.006344],[-8.779724,11.925833],[-8.831667,11.661665],[-8.745001,11.63361],[-8.703056,11.658888],[-8.640001,11.49861],[-8.580557,11.469166],[-8.53388,11.49391],[-8.513889,11.430277],[-8.359579,11.371357],[-8.367224,11.287777],[-8.4825,11.284721],[-8.610001,11.127222],[-8.680557,10.966389],[-8.583612,10.972776],[-8.458057,11.050833],[-8.350834,11.05722],[-8.289722,11.007776],[-8.2875,10.849443],[-8.32139,10.760832],[-8.26889,10.5],[-8.215279,10.421665],[-8.141111,10.423887],[-7.980556,10.334999],[-7.940278,10.243332],[-8.009167,10.099443],[-8.109724,10.046665],[-8.160557,9.944166],[-8.101946,9.82111],[-8.143612,9.533888],[-8.05139,9.397499],[-7.875278,9.356388],[-7.917778,9.194443],[-7.732779,9.088055],[-7.910001,9.009165],[-7.957778,8.813332],[-7.914167,8.767221],[-7.790278,8.754166],[-7.677501,8.624998],[-7.675556,8.440277],[-7.646536,8.378416],[-7.748334,8.376389],[-7.819167,8.487499],[-8.198057,8.496666],[-8.243286,8.442682],[-8.228889,8.240276],[-8.110001,8.174444],[-8.020557,8.179722],[-7.946838,8.018505],[-8.053391,8.03282],[-8.120001,7.862222],[-8.080427,7.805403],[-8.188057,7.569444],[-8.216667,7.543056],[-8.403057,7.619166],[-8.469749,7.561325],[-8.555834,7.61861],[-8.551689,7.691749],[-8.660557,7.695],[-8.710556,7.640833],[-8.709167,7.512777],[-8.79389,7.405277],[-8.843613,7.270833],[-9.106945,7.198889],[-9.099724,7.237222],[-9.325001,7.428611],[-9.422501,7.424999],[-9.485161,7.361989],[-9.384167,7.559999],[-9.353859,7.742367],[-9.437223,7.901111],[-9.406389,8.021111],[-9.462778,8.165554],[-9.48365,8.346931],[-9.6625,8.489166],[-9.787779,8.51222],[-9.965557,8.474998],[-10.169724,8.512777],[-10.218334,8.477499],[-10.326389,8.508888],[-10.390001,8.492222],[-10.437223,8.401943],[-10.535278,8.317499],[-10.695835,8.298611],[-10.618891,8.54611],[-10.532501,8.620832],[-10.502779,8.710833],[-10.591667,8.858055],[-10.571526,9.059532],[-10.737223,9.083332],[-10.656668,9.305832],[-10.838612,9.479721],[-10.980001,9.727499],[-11.113056,9.858889],[-11.181391,9.985832],[-11.894724,9.996111],[-11.897779,9.927776],[-12.131668,9.874998],[-12.235279,9.938889],[-12.456112,9.888332],[-12.616667,9.60611],[-12.680557,9.417221],[-12.815556,9.287777],[-12.945002,9.282499],[-13.007502,9.103611],[-13.107224,9.043333],[-13.187223,9.086943],[-13.29561,9.032143],[-13.326389,9.061666],[-13.269724,9.139721],[-13.272779,9.202221],[-13.411945,9.282776],[-13.520557,9.457222],[-13.493134,9.560076],[-13.540001,9.499166],[-13.672224,9.563332],[-13.602783,9.734441]]]}},{"type":"Feature","properties":{"FIPS":"GY","ISO2":"GY","ISO3":"GUY","UN":328,"NAME":"Guyana","AREA":19685,"POP2005":739472,"REGION":19,"SUBREGION":5,"LON":-58.974,"LAT":4.792},"geometry":{"type":"MultiPolygon","coordinates":[[[[-58.45056,6.896944000000133],[-58.41334,6.96917],[-58.328056,6.956666],[-58.37195,6.92639],[-58.45056,6.896944000000133]]],[[[-59.78917,8.34111],[-59.75362,8.408054],[-59.121391,8.034166000000141],[-58.80695,7.730556],[-58.71834,7.593888],[-58.641945,7.569444],[-58.47278,7.349999000000138],[-58.47889,7.0125],[-58.563057,6.91639],[-58.64612,6.42611],[-58.593338,6.42],[-58.553894,6.668333000000132],[-58.460007,6.823889000000122],[-58.413612,6.874444],[-58.314728,6.894722000000115],[-58.17261,6.812222],[-58.14917,6.8308320000001],[-57.986389,6.79055],[-57.632782,6.479166],[-57.51919,6.270767],[-57.50111,6.338055],[-57.463058,6.338055],[-57.33667,6.274722],[-57.188896,6.13111],[-57.135,5.947778],[-57.176117,5.631389000000127],[-57.324448,5.30361],[-57.27917,5.223332],[-57.235207,5.259945],[-57.18861,5.16861],[-57.22889,5.140833],[-57.28778,5.17222],[-57.32722,5.026111],[-57.42028,4.989166000000124],[-57.688057,5.010278],[-57.84112,4.927777000000106],[-57.90139,4.85556],[-57.92334,4.787777],[-57.88473,4.764444],[-57.838615,4.654722],[-57.9539,4.28778],[-58.0714,4.159166],[-58.047226,4.008333000000107],[-57.87667,3.809166],[-57.83584,3.665],[-57.73473,3.61028],[-57.65445,3.518611],[-57.642227,3.356389],[-57.42945,3.34722],[-57.301392,3.3775],[-57.28528,3.143888],[-57.205,3.012500000000102],[-57.20139,2.821389000000124],[-57.098061,2.749166],[-56.81056,2.193333],[-56.69187,2.02874],[-56.56278,2.023889000000111],[-56.47063,1.944499000000121],[-56.724449,1.92055],[-56.78334,1.872500000000116],[-57.01112,1.926111],[-57.089172,2.023333],[-57.23695,1.947222],[-57.32472,1.975278],[-57.420006,1.913055],[-57.448616,1.814444],[-57.55417,1.701389],[-57.76389,1.717222],[-57.97223,1.62],[-58.01389,1.512222000000122],[-58.127785,1.517778000000135],[-58.29723,1.582778000000133],[-58.386116,1.476666],[-58.502289,1.454674000000125],[-58.46695,1.343889000000104],[-58.510284,1.269722],[-58.695282,1.286944],[-58.726112,1.228611],[-58.80695,1.185555],[-58.899445,1.23],[-58.92834,1.302778000000103],[-59.241669,1.383611],[-59.50751,1.6875],[-59.67278,1.762778],[-59.63411,1.846419],[-59.75194,1.865278000000103],[-59.73028,2.27805],[-59.900558,2.376944],[-59.893333,2.457222],[-59.988892,2.687222],[-59.98278,2.860278000000108],[-59.90472,3.20417],[-59.809723,3.361944],[-59.83195,3.524167],[-59.78612,3.620555],[-59.66556,3.711389],[-59.56861,3.899444],[-59.58167,3.998888],[-59.72945,4.210833],[-59.730835,4.293333000000132],[-59.675835,4.388888],[-59.929726,4.506389],[-60.055,4.493889],[-60.149445,4.522499],[-60.15223,4.573333],[-60.07917,4.60833300000013],[-60.025841,4.70722],[-59.983063,5.0225],[-60.01389,5.11],[-60.08087,5.161513000000126],[-60.116112,5.2475],[-60.200562,5.273611],[-60.31583,5.197499],[-60.73037,5.2048],[-61.389725,5.940000000000111],[-61.33384,5.97556],[-61.26445,6.106111],[-61.15584,6.184999],[-61.14001,6.40861],[-61.20473,6.58139],[-61.134026,6.71104],[-60.941116,6.7225],[-60.81612,6.788333],[-60.71306,6.758055],[-60.64167,6.833888],[-60.463615,6.90667],[-60.288612,7.057221],[-60.279167,7.120832000000121],[-60.36723,7.179999],[-60.456116,7.195833],[-60.535561,7.123888],[-60.6175,7.194444],[-60.63444,7.258055],[-60.59195,7.339167],[-60.64556,7.436666],[-60.69112,7.455832],[-60.71528,7.545833000000131],[-60.590279,7.636944],[-60.57917,7.726666],[-60.52,7.814722],[-60.319725,7.8775],[-60.09972,8.040833],[-60.023338,8.041388],[-59.97472,8.18083],[-59.82556,8.236111],[-59.80917,8.300833000000125],[-59.99028,8.535276],[-59.78917,8.34111]]]]}},{"type":"Feature","properties":{"FIPS":"HA","ISO2":"HT","ISO3":"HTI","UN":332,"NAME":"Haiti","AREA":2756,"POP2005":9296291,"REGION":19,"SUBREGION":29,"LON":-72.278,"LAT":19.142},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.584732,18.056942],[-73.667511,18.05722000000014],[-73.70612,18.101387],[-73.59807,18.08972],[-73.584732,18.056942]]],[[[-73.739456,18.584164],[-73.79529,18.596386],[-73.79806,18.624722000000133],[-73.715286,18.62444],[-73.739456,18.584164]]],[[[-72.815567,18.69889],[-73.218063,18.83416],[-73.300003,18.927219],[-73.1989,18.968887],[-72.85722,18.835],[-72.81111,18.77639],[-72.815567,18.69889]]],[[[-72.67361,19.916664],[-72.3175,19.76277],[-71.735,19.68417],[-71.691681,19.485832],[-71.74474,19.285831],[-71.628891,19.207222000000115],[-71.640839,19.134163000000115],[-71.77917,18.957775],[-71.71529,18.874722],[-71.71584,18.749722],[-71.83168,18.6225],[-72.00307,18.60083],[-71.88501,18.47722],[-71.9075,18.437775],[-71.69473,18.32222],[-71.76918,18.202221],[-71.767868,18.038502],[-71.908066,18.174164000000133],[-72.06917,18.239719],[-72.38223,18.229443],[-72.819168,18.138332000000105],[-73.3864,18.261944],[-73.78612,18.171665000000132],[-73.8414,18.113609],[-73.78973,18.031387],[-73.881668,18.022778],[-73.95306,18.129719000000136],[-74.09807,18.24499900000012],[-74.233612,18.306389],[-74.36195,18.289444000000117],[-74.44667,18.34194],[-74.46779,18.450832],[-74.421112,18.612499],[-74.26807,18.665833000000134],[-74.17778,18.667221],[-73.787231,18.532219],[-73.69917,18.570831],[-73.577515,18.580276],[-73.60873,18.550554],[-73.7075,18.546108],[-73.651947,18.496666],[-73.506958,18.525555],[-72.73973,18.424164],[-72.62195,18.556389],[-72.350006,18.530277],[-72.32806,18.683331],[-72.54695,18.781666],[-72.640289,18.905552000000114],[-72.800293,19.033054],[-72.7614,19.161942000000124],[-72.802231,19.224998],[-72.725845,19.37444],[-72.723343,19.454998],[-73.057785,19.613331],[-73.3764,19.624165],[-73.46529,19.68777],[-73.407501,19.830555],[-73.329178,19.8375],[-73.15472,19.922222],[-72.79834,19.94278],[-72.67361,19.916664]]],[[[-72.62834,19.986942],[-72.876114,20.025],[-72.95639,20.056664],[-72.81195,20.09222],[-72.65807,20.029999],[-72.62834,19.986942]]]]}},{"type":"Feature","properties":{"FIPS":"HO","ISO2":"HN","ISO3":"HND","UN":340,"NAME":"Honduras","AREA":11189,"POP2005":683411,"REGION":19,"SUBREGION":13,"LON":-86.863,"LAT":14.819},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62251,13.24638700000014],[-87.65945,13.249443],[-87.66972,13.278332],[-87.614731,13.28611],[-87.62251,13.24638700000014]]],[[[-87.57194,13.36861],[-87.58168,13.303610000000106],[-87.65834,13.33583],[-87.63473,13.37083200000012],[-87.57194,13.36861]]],[[[-85.84195,16.010555],[-85.49445,15.888887000000125],[-85.177231,15.908888],[-85.023056,15.986111],[-84.920563,15.977499],[-84.67522,15.884998],[-84.59167,15.773054],[-84.43945,15.821388],[-84.52556,15.846109],[-84.26472,15.82861],[-83.8555599999999,15.459999],[-84.00667,15.534721],[-84.20862,15.549999],[-84.07751,15.351387],[-83.91585,15.23889],[-83.8289,15.25861],[-84.030838,15.397499],[-83.95612,15.404722],[-83.77444,15.285],[-83.758347,15.19666],[-83.626236,15.269554],[-83.531403,15.268888],[-83.542511,15.197222],[-83.589447,15.23361],[-83.62418,15.19528],[-83.568344,15.1575],[-83.49695,15.203054000000122],[-83.50639,15.279722000000106],[-83.62811,15.334944],[-83.612289,15.352611],[-83.38667,15.252499000000112],[-83.28723,15.07],[-83.13185,14.992979000000105],[-83.48584,15.006109],[-83.569458,14.915277],[-83.84361,14.785],[-84.19667,14.716389000000104],[-84.482788,14.617777],[-84.688614,14.678333],[-84.810562,14.824999000000103],[-84.906677,14.808611],[-85.030014,14.669998],[-85.03241,14.573465],[-85.14639,14.489166],[-85.18056,14.426666],[-85.158615,14.333332],[-85.32973,14.271387],[-85.436951,14.122499],[-85.73056,13.9625],[-85.73231,13.82923],[-85.79834,13.837776],[-86.0175,13.997221],[-86.015839,14.065832000000114],[-86.12195,14.029444],[-86.33029,13.760277],[-86.69778,13.777498],[-86.763016,13.751621],[-86.695007,13.29694400000011],[-86.745285,13.260832],[-86.81612,13.299166000000127],[-86.89723,13.253887],[-86.92473,13.082777],[-87.046112,12.979721],[-87.063614,13.00028],[-87.30139,12.986599],[-87.3414,13.089722],[-87.513062,13.273611],[-87.44723,13.349165],[-87.38,13.373751],[-87.40028,13.413887],[-87.45222,13.413887],[-87.47223,13.359165],[-87.531403,13.346388],[-87.56174,13.371357],[-87.614731,13.38048],[-87.62526,13.461185],[-87.710556,13.353611],[-87.81558,13.405386],[-87.71335,13.471109],[-87.7198,13.509706],[-87.784256,13.525038],[-87.69467,13.819008],[-87.80084,13.896944000000131],[-88.00586,13.875046],[-88.060013,13.963888],[-88.19688,13.987619],[-88.25961,13.905283],[-88.47084,13.855276],[-88.504181,13.98139],[-88.69862,14.03639],[-88.755569,14.136389],[-88.82167,14.09333],[-88.88028,14.192778],[-88.960007,14.19305],[-89.027512,14.330276],[-89.12112,14.32361],[-89.34831,14.431982],[-89.347229,14.479443],[-89.239456,14.58083],[-89.19446,14.584166],[-89.13779,14.68472],[-89.224731,14.855555],[-89.154175,14.978054000000101],[-89.181396,15.00333],[-89.150375,15.073481],[-88.98056,15.135555],[-88.668335,15.349998],[-88.3139,15.67139],[-88.214737,15.72444],[-88.124451,15.685276],[-87.916397,15.864721],[-87.70473,15.922499000000132],[-87.47057,15.783054],[-87.31334,15.836111],[-86.938904,15.756388],[-86.48834,15.801109],[-86.3925,15.76667],[-86.186676,15.880833],[-85.99695,15.896944],[-85.91806,15.94444],[-85.905014,15.997499000000117],[-86.0114,16.02528],[-85.84195,16.010555]]],[[[-86.883621,16.086666],[-86.954178,16.069443],[-86.991669,16.087219],[-86.87611,16.121666],[-86.883621,16.086666]]],[[[-86.59973,16.296108],[-86.635284,16.27555500000011],[-86.59639,16.337776],[-86.41028,16.421665000000132],[-86.263336,16.423332],[-86.59973,16.296108]]],[[[-85.94473,16.409721],[-85.90028,16.494720000000143],[-85.835556,16.498886],[-85.87112,16.45583],[-85.94473,16.409721]]],[[[-83.94667,17.405277],[-83.95612,17.408607],[-83.95529,17.417774],[-83.944458,17.414165],[-83.94667,17.405277]]],[[[-83.910568,17.409721],[-83.92279,17.40916],[-83.926392,17.416664],[-83.91,17.418610000000115],[-83.910568,17.409721]]]]}},{"type":"Feature","properties":{"FIPS":"HR","ISO2":"HR","ISO3":"HRV","UN":191,"NAME":"Croatia","AREA":5592,"POP2005":455149,"REGION":150,"SUBREGION":39,"LON":16.693,"LAT":45.723},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.903889,42.72610500000013],[16.82222,42.732216],[16.813889,42.76805100000013],[16.93972,42.76832600000011],[16.903889,42.72610500000013]]],[[[17.744999,42.69194],[17.372498,42.757217],[17.321663,42.788055],[17.39944,42.797775000000115],[17.744999,42.69194]]],[[[16.820553,42.959999],[17.04472,42.97527],[17.13583,42.961937],[17.183609,42.91861],[16.981972,42.928719000000115],[16.866108,42.89777400000014],[16.660887,42.921288],[16.64082,42.929462000000115],[16.70771200000013,42.956963],[16.633053,42.981110000000115],[16.820553,42.959999]]],[[[17.298885,43.006943],[17.661663,42.87471800000014],[17.698055,42.9272160000001],[17.797497,42.903885],[17.882774,42.81916],[18.268608,42.618332],[18.397499,42.614441],[18.455555,42.56583],[18.460278,42.48694],[18.526108000000136,42.39833],[17.87722,42.767776],[17.439163,42.873886],[17.218052,42.979164],[17.071663,42.986382],[17.013054,43.00527],[17.004166,43.046661],[17.298885,43.006943]]],[[[16.20833,43.022217000000126],[16.06444,43.01055],[16.050552,43.06305],[16.25194,43.07249500000012],[16.20833,43.022217000000126]]],[[[16.562035,43.23085],[16.66014500000011,43.211525],[16.7196,43.161728],[17.19008300000013,43.126053],[16.654163,43.11972],[16.373055000000136,43.194160000000124],[16.47583,43.21194],[16.582102,43.18402500000013],[16.524872,43.22193],[16.562035,43.23085]]],[[[16.851665,43.26916],[16.519722,43.276382],[16.40472,43.329720000000115],[16.429996,43.391106],[16.753052,43.362778000000105],[16.886665000000107,43.31721],[16.851665,43.26916]]],[[[16.390553,43.332771],[16.20861,43.382774],[16.19833,43.41166],[16.326385,43.394165],[16.390553,43.332771]]],[[[15.687498,43.630829],[15.640833,43.65083],[15.606667,43.674995],[15.662222,43.665833000000134],[15.687498,43.630829]]],[[[15.34639,43.80888],[15.376669,43.775925],[15.225,43.873055],[15.23861,43.874992],[15.34639,43.80888]]],[[[15.44666500000011,43.887215],[15.35111,43.92638],[15.260832,44.00666],[15.376944,43.968048],[15.44666500000011,43.887215]]],[[[15.250555,44.01666300000011],[15.12999900000011,44.084442],[15.062498000000117,44.157219],[15.243055,44.05305],[15.250555,44.01666300000011]]],[[[14.855276,44.175278000000105],[15.021396,44.071758],[15.085554000000116,43.98444400000011],[15.22639,43.90110800000013],[15.19417,43.871109],[15.137499,43.89638500000012],[14.977777000000115,44.065277],[14.816319,44.152782],[14.871387,44.142776],[14.855276,44.175278000000105]]],[[[14.838655,44.60950100000013],[14.909166,44.607773],[15.039999000000135,44.525551],[15.074999,44.478882],[14.9469,44.54557000000011],[14.914257000000134,44.542305],[15.058196000000123,44.42656],[15.097668,44.408161],[15.046389,44.476662],[15.116943,44.43944],[15.248888,44.327774],[15.174534,44.318237],[15.174166,44.29610400000012],[15.125277,44.311943],[15.091435,44.367504],[15.116959000000122,44.37878],[15.035641,44.39302],[14.907246,44.480892],[14.91783,44.50489],[14.732777,44.698051],[14.838655,44.60950100000013]]],[[[14.521944,44.474159],[14.367498000000126,44.59027100000014],[14.3375,44.710274],[14.39083,44.691383],[14.407221,44.60388200000011],[14.530554,44.497772],[14.521944,44.474159]]],[[[14.757311,44.80375300000014],[14.825219,44.762333],[14.865276,44.7066650000001],[14.65925,44.794735],[14.726944,44.79722],[14.684999,44.840271],[14.72361,44.85333300000013],[14.758888,44.83861],[14.757311,44.80375300000014]]],[[[14.455074,44.909698000000105],[14.475497,44.700562],[14.531387,44.63333100000011],[14.493332,44.606384],[14.389444000000138,44.695],[14.294137,44.9072460000001],[14.308842,44.947277],[14.359165,44.907776],[14.400276,44.91528],[14.353888,45.04527300000012],[14.27528,45.103333],[14.315277,45.174995],[14.363609,45.16055300000011],[14.376944,45.052498],[14.476315,44.95953],[14.455074,44.909698000000105]]],[[[14.755833,44.941383],[14.638611,44.96860500000014],[14.428888,45.07833],[14.523697,45.144974],[14.539165,45.23944100000011],[14.59166,45.238609],[14.704166,45.068329],[14.813332,44.987778],[14.755833,44.941383]]],[[[16.5725,46.475273],[16.66111,46.465553000000114],[16.866108,46.355827],[16.937771,46.249451],[17.157497,46.177773],[17.311386,45.975273],[17.389442,45.938049],[17.576664,45.94055],[17.669441,45.835],[17.880833,45.783882],[18.153332,45.787216],[18.424164,45.749161],[18.559444,45.801666000000125],[18.715553000000114,45.913605],[18.817020000000127,45.91296],[18.95861,45.77861],[18.968357,45.66301700000013],[18.909458,45.620758],[18.902496,45.570274],[18.955269,45.537186],[19.02052300000014,45.56298800000013],[19.099987,45.515869],[19.08784,45.48950200000013],[19,45.49083],[18.98032400000011,45.378624],[19.138611,45.2875],[19.423885,45.22583],[19.41111,45.174995],[19.163609,45.212219],[19.104164,45.09666],[19.115555,45.031944],[19.004444,44.904442],[19.039719,44.86138],[18.957222,44.85305],[18.794167,44.894997],[18.761108,44.938889],[18.797775000000115,44.94221],[18.794167,44.99721],[18.634163,45.083328],[18.25194,45.138885],[18.197498,45.0816650000001],[18.070274,45.104439],[17.851944,45.04943800000012],[17.689999,45.12277],[17.48389,45.111107],[17.2825,45.176384],[17.177219,45.148605],[16.913925,45.26594],[16.82444,45.187492],[16.526386,45.224442],[16.417805,45.12426],[16.35702,45.00849900000014],[16.291759,44.999115],[16.209721,45.034439],[16.015274,45.21833],[15.8825,45.2225],[15.786665,45.171944],[15.736944000000108,44.812492],[15.854721,44.71444],[15.956944000000135,44.69999700000011],[16.03333,44.57416],[16.126389,44.498604000000114],[16.198055,44.353607000000125],[16.14305,44.19944],[16.265,44.189438],[16.35472,44.08166],[16.53722,44.013611],[16.97639,43.586105],[17.261665000000107,43.459717000000126],[17.298054,43.28083],[17.63028,43.07694],[17.688015,42.9746090000001],[17.668331,42.960548],[17.51916,42.951942],[17.454998000000103,43.033333],[17.073055000000124,43.23389],[16.88444,43.403053],[16.64,43.44028],[16.465275000000133,43.53889],[16.348331000000144,43.550827],[16.105831,43.47555],[15.988333,43.50444],[15.91555,43.571388],[15.917221,43.630554],[15.96917,43.63361],[15.940832,43.683609000000104],[15.688889,43.77888],[15.451944,43.925552],[15.151667,44.196388],[15.120832000000119,44.278053000000114],[15.174534,44.24612000000013],[15.213116,44.29242],[15.289444,44.24721],[15.268910000000117,44.330406],[15.414444,44.25999500000012],[15.529722,44.263054],[15.27667,44.364441],[15.000832,44.56860400000011],[14.896111000000133,44.69194],[14.879166,44.851662],[14.920832,44.966942],[14.839443,45.114166],[14.732222,45.14444],[14.585,45.25222],[14.482777,45.311104],[14.324999,45.353333],[14.23,45.142494],[14.15416,45.079994],[14.16694,44.981384],[13.997499,44.89638500000012],[13.975277,44.844994],[13.995554,44.808052],[13.907221000000105,44.770828],[13.60305,45.157776],[13.594444,45.254166],[13.496387,45.49083],[13.703609000000142,45.44416],[14.3975,45.486938],[14.485832,45.529716],[14.564999,45.664993],[14.601387,45.675278],[14.62611,45.606941],[14.81805400000013,45.46611],[14.979067,45.500473],[15.174458,45.425819],[15.277222,45.462776],[15.307089000000133,45.6298680000001],[15.352591,45.651756],[15.36805,45.702774],[15.28972,45.689163],[15.309166,45.751938],[15.49944,45.835831],[15.697777,45.84416],[15.718332,46.0472180000001],[15.629444,46.086937],[15.599722,46.142494],[15.65472,46.219444],[16.01722,46.29805],[16.083332,46.33416],[16.07592,46.384331],[16.266109000000142,46.419441],[16.24944,46.49027],[16.292507000000114,46.53081500000013],[16.461388,46.52166],[16.5725,46.475273]]]]}},{"type":"Feature","properties":{"FIPS":"HU","ISO2":"HU","ISO3":"HUN","UN":348,"NAME":"Hungary","AREA":9210,"POP2005":10086387,"REGION":150,"SUBREGION":151,"LON":19.134,"LAT":47.07},"geometry":{"type":"Polygon","coordinates":[[[18.81702,45.912964],[18.715553,45.913605],[18.559444,45.801666],[18.424164,45.749161],[18.153332,45.787216],[17.880833,45.783882],[17.669441,45.834999],[17.576664,45.940552],[17.389442,45.938049],[17.311386,45.975273],[17.157497,46.177773],[16.937771,46.249451],[16.866108,46.355827],[16.532497,46.507774],[16.324165,46.757217],[16.346107,46.846939],[16.111805,46.86972],[16.302776,47.011383],[16.510555,47.00666],[16.505554,47.114998],[16.420555,47.20916],[16.491665,47.279999],[16.451942,47.415276],[16.592499,47.425278],[16.655205,47.458153],[16.713886,47.543884],[16.645275,47.631943],[16.426941,47.671387],[16.561386,47.75666],[16.715832,47.734718],[16.761944,47.685272],[17.053886,47.709442],[17.060555,47.876938],[17.108055,47.971382],[17.236664,48.025833],[17.340553,47.997498],[17.466389,47.888329],[17.784409,47.746803],[18.67083,47.760826],[18.749729,47.813156],[18.84972,47.817772],[18.758888,47.907494],[18.771664,47.965553],[18.849098,48.051064],[19.472218,48.087219],[19.524166,48.205826],[19.630554,48.233887],[19.783607,48.201111],[19.91861,48.129997],[20.235554,48.274994],[20.317219,48.269722],[20.539719,48.536942],[20.811665,48.57666],[20.955276,48.522499],[21.153332,48.511108],[21.442776,48.575272],[21.614166,48.498329],[21.712776,48.361382],[21.777496,48.340828],[21.935833,48.379166],[22.101665,48.37722],[22.151442,48.411919],[22.268887,48.407211],[22.270275,48.359993],[22.378609,48.245544],[22.495827,48.251106],[22.621151,48.101639],[22.79361,48.116661],[22.886108,48.040276],[22.859165,47.993889],[22.894804,47.95454],[22.774441,47.836388],[22.634163,47.77166],[22.454441,47.796387],[22.276943,47.728607],[22.186386,47.59861],[22.015274,47.514442],[22.00972,47.380829],[21.922497,47.354439],[21.790833,47.120277],[21.651108,47.029716],[21.695831,47.000832],[21.613331,46.884163],[21.519722,46.815277],[21.488052,46.752777],[21.521942,46.712776],[21.326664,46.619995],[21.288887,46.460548],[21.19722,46.391388],[21.176666,46.295555],[21.059444,46.239166],[20.820274,46.274719],[20.75333,46.238884],[20.720554,46.16555],[20.624722,46.130272],[20.48695,46.181107],[20.276665,46.144722],[20.261024,46.11485],[20.112221,46.167496],[19.842499,46.149162],[19.559998,46.171944],[19.46722,46.078606],[19.286388,45.989441],[19.155277,45.987221],[19.096386,46.024437],[18.995552,45.952499],[18.81702,45.912964]]]}},{"type":"Feature","properties":{"FIPS":"IC","ISO2":"IS","ISO3":"ISL","UN":352,"NAME":"Iceland","AREA":10025,"POP2005":295732,"REGION":150,"SUBREGION":154,"LON":-18.48,"LAT":64.764},"geometry":{"type":"Polygon","coordinates":[[[-15.070835,66.1436],[-15.178335,66.111938],[-15.011391,66.049988],[-14.714724,66.063599],[-14.618891,65.994431],[-14.622223,65.911102],[-14.801111,65.829437],[-14.865557,65.755829],[-14.848333,65.731384],[-14.336668,65.783051],[-14.313057,65.669708],[-14.539446,65.535263],[-14.563612,65.494995],[-14.283611,65.656387],[-14,65.598877],[-13.86389,65.611374],[-13.611389,65.509995],[-13.636946,65.424713],[-13.739445,65.314438],[-13.570278,65.25943],[-13.660002,65.214432],[-14.034723,65.193054],[-13.622223,65.19249],[-13.636946,65.157776],[-13.517502,65.11221],[-13.499445,65.06915],[-13.678612,64.982208],[-13.988056,65.063889],[-14.006945,65.017776],[-13.700001,64.922485],[-14.050835,64.933884],[-13.765278,64.861374],[-13.871113,64.799164],[-14.041389,64.785828],[-13.989723,64.742493],[-14.018057,64.723602],[-14.250278,64.689163],[-14.432501,64.78833],[-14.511112,64.797485],[-14.387779,64.722488],[-14.365945,64.674103],[-14.429146,64.607285],[-14.584167,64.586655],[-14.459946,64.546989],[-14.539167,64.406097],[-14.710001,64.407776],[-14.871668,64.339996],[-14.877501,64.28082],[-14.925001,64.26416],[-15.220278,64.298599],[-15.383335,64.371933],[-15.388613,64.275269],[-16.015556,64.133331],[-16.488613,63.895828],[-16.805279,63.826385],[-16.966667,63.917221],[-17.023335,63.793884],[-17.243792,63.798992],[-17.722504,63.713333],[-17.869724,63.731941],[-17.973335,63.66861],[-17.944447,63.608055],[-17.860558,63.602493],[-17.933334,63.528328],[-18.710003,63.391106],[-19.275837,63.433327],[-19.841667,63.544441],[-20.196945,63.542496],[-20.541168,63.707108],[-20.543056,63.745552],[-20.477222,63.768051],[-20.310837,63.729721],[-20.361946,63.761665],[-20.443336,63.783333],[-20.561111,63.751106],[-20.585279,63.718937],[-20.731279,63.760384],[-20.601788,63.765297],[-20.673889,63.847221],[-20.84639,63.79055],[-21.183613,63.880829],[-21.188614,63.929161],[-21.053612,63.945],[-21.257504,63.943329],[-21.369167,63.867493],[-21.618893,63.823883],[-22.326115,63.86055],[-22.689167,63.80555],[-22.71917,63.825554],[-22.740002,63.982773],[-22.703335,64.080826],[-22.589725,64.044434],[-22.523056,63.97805],[-22.395557,63.974998],[-22.3675,64.01221],[-22.045559,64.046661],[-21.914722,64.106934],[-21.973335,64.156937],[-21.699448,64.178879],[-21.807781,64.232498],[-21.880001,64.232208],[-21.759167,64.340271],[-21.583057,64.382492],[-21.488892,64.361938],[-21.36278,64.384987],[-21.67778,64.401108],[-21.938614,64.304443],[-22.102501,64.314438],[-21.978889,64.500824],[-21.702225,64.608047],[-21.583529,64.570999],[-21.496862,64.566055],[-21.680279,64.617767],[-21.508057,64.645554],[-21.701115,64.627777],[-22.170834,64.453888],[-22.355003,64.561096],[-22.410004,64.650833],[-22.299725,64.704437],[-22.407223,64.812485],[-23.043335,64.794708],[-23.392223,64.823044],[-23.527225,64.811096],[-23.663612,64.737778],[-23.840279,64.726105],[-23.945004,64.764709],[-24.059532,64.890884],[-23.833889,64.927216],[-23.649445,64.892212],[-23.190002,65.015823],[-22.9575,65.002487],[-22.355278,65.059433],[-22.146667,65.026657],[-21.835835,65.030273],[-21.727222,65.160828],[-21.736946,65.199432],[-21.822781,65.199707],[-21.913334,65.142212],[-22.070557,65.104721],[-22.56139,65.171097],[-22.505001,65.22888],[-22.353615,65.289154],[-21.698612,65.449158],[-21.814724,65.433609],[-22.037781,65.499435],[-22.222778,65.424438],[-22.335392,65.480881],[-22.159168,65.541656],[-22.108612,65.594986],[-22.259445,65.525833],[-22.473614,65.504715],[-22.573891,65.531097],[-22.78278,65.503876],[-22.912502,65.564713],[-23.15028,65.547775],[-23.229168,65.482773],[-23.623337,65.464432],[-23.722778,65.41722],[-23.879448,65.402496],[-23.976391,65.41305],[-24.015835,65.469986],[-24.183334,65.496384],[-24.542225,65.497772],[-24.376114,65.559433],[-24.375,65.602768],[-24.31778,65.637497],[-23.892223,65.518051],[-23.805557,65.530548],[-24.06778,65.628876],[-24.083614,65.647217],[-23.803337,65.607773],[-24.059448,65.690277],[-24.121391,65.74249],[-24.133057,65.782776],[-24.105835,65.806656],[-23.620003,65.699997],[-23.527225,65.627777],[-23.343613,65.666107],[-23.452778,65.672485],[-23.537224,65.719437],[-23.226391,65.741653],[-23.192223,65.775833],[-23.53167,65.750824],[-23.743614,65.776108],[-23.873058,65.866653],[-23.84528,65.910263],[-23.793335,65.919434],[-23.213337,65.837494],[-23.585556,65.905273],[-23.81889,66.013321],[-23.767223,66.070541],[-23.371113,65.986664],[-23.425556,66.032211],[-23.665558,66.1111],[-23.473614,66.199158],[-23.031391,66.10527],[-22.981392,66.078598],[-22.978889,66.034439],[-22.809723,65.994156],[-22.756947,66.056656],[-22.67778,66.044998],[-22.576668,65.963333],[-22.652779,65.827499],[-22.499725,65.96611],[-22.418613,65.916382],[-22.467781,65.834152],[-22.424725,65.847488],[-22.385834,65.90416],[-22.397503,65.955826],[-22.5,66.076965],[-22.841667,66.147491],[-22.972225,66.221375],[-22.801392,66.261383],[-22.548058,66.229996],[-22.43417,66.267776],[-22.832779,66.32361],[-23.027225,66.30249],[-23.188614,66.349716],[-23.057503,66.392487],[-23.078335,66.436661],[-22.9375,66.466385],[-22.421669,66.433319],[-22.258335,66.340271],[-22.202503,66.271942],[-21.969723,66.272766],[-21.766392,66.185822],[-21.644169,66.066666],[-21.65139,66.018875],[-21.618614,66.060547],[-21.399445,66.027222],[-21.392502,65.983047],[-21.603058,65.953323],[-21.39278,65.960266],[-21.288612,65.925278],[-21.278336,65.85611],[-21.33778,65.733322],[-21.437778,65.688049],[-21.589169,65.688049],[-21.67028,65.760544],[-21.777779,65.765823],[-21.648335,65.651108],[-21.308891,65.596939],[-21.283337,65.479431],[-21.200558,65.43277],[-21.187778,65.34027],[-21.084446,65.159164],[-21.094723,65.452499],[-20.977501,65.430832],[-20.982224,65.519989],[-20.927223,65.588882],[-20.664169,65.690826],[-20.62278,65.66777],[-20.644169,65.54332],[-20.446667,65.494995],[-20.263058,65.723602],[-20.310837,65.860275],[-20.398891,65.953598],[-20.424446,66.083054],[-20.179169,66.12944],[-20.090557,66.121658],[-19.921947,65.936661],[-19.700279,65.86194],[-19.635559,65.746933],[-19.451668,65.72583],[-19.390003,65.832764],[-19.485001,65.940552],[-19.453056,66.056381],[-19.231113,66.091385],[-19.079723,66.077499],[-19.090279,66.133331],[-19.064724,66.162491],[-18.784168,66.191101],[-18.548058,66.081665],[-18.519169,66.024155],[-18.536114,65.969711],[-18.335556,65.943054],[-18.283337,65.9086],[-18.206669,65.821106],[-18.180557,65.736099],[-18.069447,65.64333],[-18.046669,65.664154],[-18.0625,65.824432],[-18.101112,65.893326],[-18.221111,65.929153],[-18.293056,66.012207],[-18.333057,66.147766],[-18.299446,66.174713],[-17.912781,66.145554],[-17.609169,65.98749],[-17.419445,65.984436],[-17.265556,66.166931],[-17.131111,66.210541],[-16.968891,66.185547],[-16.910004,66.12471],[-16.594723,66.09111],[-16.688614,66.159439],[-16.508892,66.198318],[-16.416946,66.270828],[-16.577225,66.474991],[-16.527779,66.508041],[-16.021946,66.536102],[-15.894167,66.487488],[-15.854168,66.416931],[-15.709723,66.397217],[-15.681946,66.341385],[-15.749723,66.292221],[-15.691389,66.224152],[-15.558889,66.216385],[-15.381945,66.142776],[-15.327778,66.214722],[-15.099445,66.278885],[-14.943611,66.378876],[-14.710835,66.367218],[-15.006668,66.274719],[-14.93639,66.203049],[-15.070835,66.1436]]]}},{"type":"Feature","properties":{"FIPS":"IN","ISO2":"IN","ISO3":"IND","UN":356,"NAME":"India","AREA":297319,"POP2005":1134403141,"REGION":142,"SUBREGION":34,"LON":78.5,"LAT":21},"geometry":{"type":"MultiPolygon","coordinates":[[[[93.91276600000015,7.02861],[93.929688,6.949165000000107],[93.902191,6.81111],[93.823868,6.745554],[93.76469400000013,6.92055],[93.647766,7.032499],[93.671097,7.181943],[93.82859800000011,7.234999],[93.91276600000015,7.02861]]],[[[93.6622,7.40583],[93.652481,7.40861],[93.654434,7.417499],[93.66415400000011,7.414721],[93.6622,7.40583]]],[[[93.63943,7.247221],[93.5961,7.308887],[93.693588,7.438888],[93.728317,7.324721],[93.63943,7.247221]]],[[[93.573608,7.927776000000108],[93.502777,7.977221],[93.540543,8.015554],[93.57165500000013,7.979444],[93.573608,7.927776000000108]]],[[[93.454712,7.868888],[93.34942600000011,7.88],[93.308029,7.927776000000108],[93.31749,7.997499000000118],[93.387772,8.015833],[93.443863,7.94361],[93.454712,7.868888]]],[[[93.48803700000013,7.98889],[93.443039,8.15361],[93.51332100000013,8.22639],[93.537201,8.043888],[93.48803700000013,7.98889]]],[[[73.032211,8.246664],[73.020828,8.268610000000137],[73.07887,8.310276],[73.07193,8.271111],[73.032211,8.246664]]],[[[93.169144,8.201387],[93.103867,8.218054],[93.059982,8.271666],[93.073883,8.348053],[93.09972,8.349998],[93.108322,8.25833],[93.169144,8.201387]]],[[[93.60942100000011,8.429998],[93.59553,8.53861],[93.601929,8.565275],[93.62608300000011,8.508055],[93.60942100000011,8.429998]]],[[[92.774429,9.12472],[92.728867,9.12833],[92.708878,9.16361],[92.76166,9.263611],[92.812195,9.163332],[92.774429,9.12472]]],[[[73.63749700000011,10.05278],[73.630264,10.07111],[73.64554,10.0975],[73.645264,10.068609],[73.63749700000011,10.05278]]],[[[72.633606,10.550831],[72.62469,10.552776],[72.650543,10.577497],[72.652481,10.570831],[72.633606,10.550831]]],[[[73.68414300000012,10.82305300000013],[73.66638,10.822775],[73.662201,10.82778],[73.685257,10.829998000000103],[73.68414300000012,10.82305300000013]]],[[[72.17998,10.8175],[72.170532,10.809721000000138],[72.19748,10.872774],[72.195526,10.848053],[72.17998,10.8175]]],[[[92.492752,10.5183320000001],[92.357483,10.54444],[92.346649,10.694164],[92.358322,10.791943],[92.49498000000011,10.90111000000013],[92.528595,10.872219],[92.576935,10.70083],[92.492752,10.5183320000001]]],[[[72.29914900000011,10.938053],[72.289429,10.942776],[72.301376,10.95416],[72.299423,10.949165],[72.29914900000011,10.938053]]],[[[72.74942,11.108887],[72.73915,11.105],[72.736649,11.10722],[72.74720800000011,11.12055],[72.74942,11.108887]]],[[[72.107483,11.20278],[72.099716,11.201109],[72.108032,11.215553],[72.11276,11.211943],[72.107483,11.20278]]],[[[72.77832,11.188887],[72.77082800000011,11.201109],[72.78915400000011,11.25694],[72.793594,11.251944],[72.77832,11.188887]]],[[[73.00694,11.476664],[73.003326,11.47583],[73.00444,11.5075],[73.013321,11.502222000000131],[73.00694,11.476664]]],[[[92.63304,11.354164],[92.594437,11.37722],[92.6436,11.51417],[92.689697,11.46444300000013],[92.703323,11.385555000000124],[92.63304,11.354164]]],[[[92.27137800000013,11.52444],[92.229431,11.53555],[92.216934,11.594721000000106],[92.275818,11.582220000000119],[92.27137800000013,11.52444]]],[[[72.712494,11.68861],[72.705551,11.681942],[72.700821,11.686386000000141],[72.71527100000014,11.699999000000105],[72.712494,11.68861]]],[[[93.058319,11.888611],[92.94331,11.982775],[92.978592,12.033609000000125],[93.025818,12.026943],[93.058319,11.888611]]],[[[93.13611,12.131941],[93.125534,12.133888],[93.13136,12.14917],[93.13841,12.144524000000102],[93.13611,12.131941]]],[[[93.09387200000015,12.088053],[93.060806,12.143888],[93.086655,12.20722],[93.103622,12.17931],[93.09387200000015,12.088053]]],[[[92.71705600000013,12.1828],[92.766098,12.17916],[92.748032,12.0816650000001],[92.79582,11.901943],[92.7185970000001,11.491108],[92.618591,11.603886000000102],[92.52442900000011,11.85416400000014],[92.55359,11.92222],[92.5999910000001,11.8933320000001],[92.624695,11.943331],[92.668045,12.204998000000103],[92.71192900000011,12.234997000000135],[92.71705600000013,12.1828]]],[[[93.86554000000011,12.25916],[93.8458250000001,12.264721000000122],[93.848602,12.275831],[93.87331,12.277498],[93.86554000000011,12.25916]]],[[[92.7825320000001,12.287678000000142],[92.775543,12.284998],[92.77415500000012,12.290554],[92.783325,12.293888],[92.7825320000001,12.287678000000142]]],[[[92.831612,12.31652],[92.90165700000011,12.265833],[92.808594,12.09222],[92.754272,12.071337],[92.79037,12.202005],[92.755272,12.279798],[92.78576,12.272211],[92.793907,12.291598000000134],[92.781059,12.311801],[92.831612,12.31652]]],[[[92.904984,12.380831],[92.88109,12.383888],[92.872757,12.405832],[92.91081200000013,12.40416],[92.904984,12.380831]]],[[[92.928589,12.90916],[92.992477,12.712219],[92.987488,12.50861],[92.9369200000001,12.416388],[92.896942,12.449165],[92.849426,12.430832],[92.89415,12.32166500000011],[92.87442,12.306665000000123],[92.824951,12.320398],[92.78786500000012,12.318994],[92.758881,12.304998],[92.713882,12.357498],[92.73637,12.809721],[92.813309,12.895077],[92.87852,12.88363],[92.928589,12.90916]]],[[[92.691086,12.79611],[92.66887,12.855276],[92.714432,12.989998],[92.73166,12.890276],[92.691086,12.79611]]],[[[92.875809,13.391388],[92.869431,13.39083],[92.866653,13.400555],[92.87608300000011,13.403887],[92.875809,13.391388]]],[[[94.2769320000001,13.41361],[94.263885,13.430277],[94.284149,13.44416],[94.29193,13.425831],[94.2769320000001,13.41361]]],[[[93.06442300000013,13.237497],[93.029434,13.039442000000122],[92.978592,13.02472],[92.963318,13.079720000000123],[92.933044,13.068054000000132],[92.88201100000015,12.889813],[92.858963,12.89892],[92.813416,12.897921],[92.84109500000011,13.330553],[92.885056,13.379123000000106],[92.892487,13.464998],[92.943863,13.54305],[93.003876,13.57111],[93.058868,13.54611],[93.06442300000013,13.237497]]],[[[93.049423,13.63944],[92.998596,13.649443],[92.993042,13.66166],[93.036377,13.679998],[93.049423,13.63944]]],[[[80.948029,15.736664],[80.87136800000013,15.80333],[80.87859,15.84333],[80.991928,15.765833],[80.948029,15.736664]]],[[[82.37086,16.867775],[82.370819,16.85833],[82.36886600000014,16.871109],[82.37086,16.867775]]],[[[86.2836,20.038052],[86.2586060000001,20.038052],[86.251389,20.044998000000135],[86.27609300000012,20.049999],[86.2836,20.038052]]],[[[88.897217,21.524998],[88.844986,21.526943],[88.827774,21.59972],[88.9086,21.56861],[88.897217,21.524998]]],[[[72.718048,21.60638],[72.6499940000001,21.605274000000122],[72.603317,21.643608],[72.766098,21.655273000000133],[72.718048,21.60638]]],[[[88.13472000000013,21.61999500000013],[88.052765,21.634441],[88.0449830000001,21.660828],[88.132477,21.87611],[88.166656,21.769718000000125],[88.13472000000013,21.61999500000013]]],[[[88.646378,21.825554],[88.644989,21.78472],[88.57916300000011,21.82694],[88.64194,21.92166],[88.675812,21.90722],[88.646378,21.825554]]],[[[88.088593,21.849442],[88.066666,21.88194],[88.113037,21.9486],[88.13526900000011,21.907497],[88.088593,21.849442]]],[[[78.075546,35.445824],[78.02388,35.274437],[78.121918,35.11193800000012],[78.309143,34.64249],[78.3936,34.585548],[78.66249,34.543327],[78.985352,34.3500140000001],[79.01304600000014,34.26416000000012],[78.984985,34.20277],[78.735809,34.068329],[78.812485,33.81388],[78.811646,33.52582600000011],[78.996368,33.314995],[79.274704,33.18943000000013],[79.378311,33.106384],[79.35609,32.964996],[79.530273,32.754166],[79.49054,32.637772],[79.31387,32.496658],[79.253174,32.515999],[79.16554,32.49305],[79.078049,32.381378],[78.9711,32.35083],[78.780273,32.478874],[78.760544,32.635551],[78.70444,32.63110400000011],[78.638596,32.577774],[78.496094,32.582497],[78.397766,32.54860700000012],[78.477203,32.42471300000011],[78.4759370000001,32.243042000000116],[78.544708,32.20943],[78.68054200000012,32.035271],[78.7711,31.981106],[78.6924740000001,31.774166],[78.75,31.676662],[78.84387200000015,31.609997],[78.71277,31.50972000000013],[78.767212,31.309998],[78.877655,31.291626],[79.026382,31.418606],[79.092484,31.43749600000012],[79.217484,31.34083],[79.240265,31.24416],[79.31499,31.133053],[79.39325,31.101067000000114],[79.558868,30.954163000000108],[79.60637,30.935551],[79.748871,30.989716],[79.87915,30.95916],[79.923599,30.888885],[80.18359,30.797775],[80.25027,30.739994],[80.207001,30.57552],[80.60693400000014,30.474716],[80.751938,30.394997],[80.803864,30.32666],[80.998871,30.261944],[81.031662,30.214161],[80.875534,30.143051],[80.67886,29.970272],[80.598877,29.95527],[80.539703,29.846107000000128],[80.37692300000015,29.748604],[80.40694,29.596386],[80.23637,29.425274],[80.275818,29.322498],[80.306931,29.310555],[80.287766,29.205551],[80.069717,28.94944],[80.055817,28.836109000000135],[80.246094,28.750832],[80.387497,28.624996],[80.472214,28.589996],[80.541367,28.685272],[80.93858300000011,28.441105],[81.193588,28.366663],[81.29803500000014,28.16388],[81.37442,28.166107000000125],[81.880264,27.85722],[81.977768,27.917217],[82.04332000000011,27.918606],[82.434708,27.675552],[82.701096,27.7111],[82.7686000000001,27.501663],[83.176376,27.448883],[83.2711,27.346107],[83.316086,27.335552],[83.376648,27.3752750000001],[83.41832000000011,27.472771000000137],[83.607758,27.46916],[83.85831,27.35222],[83.871368,27.440273],[84.04027,27.44471700000014],[84.147217,27.511387000000127],[84.29776,27.388329],[84.63443000000012,27.314999000000114],[84.686096,27.19694],[84.65138200000013,27.04166400000014],[84.85498,26.995548],[85.211655,26.766941],[85.328049,26.736107],[85.630264,26.867496000000127],[85.726089,26.801662],[85.74054,26.653885000000116],[85.855545,26.570274],[86.036377,26.66333],[86.20665,26.585552],[86.334152,26.607773],[86.731659,26.419994],[87.00444,26.534443],[87.169983,26.399998],[87.269714,26.3752750000001],[87.476929,26.435551],[87.643044,26.392492],[87.890549,26.473328],[88.014709,26.36472],[88.095825,26.438885],[88.101929,26.530279],[88.19498,26.754166],[88.118591,26.98444000000012],[87.99304,27.114441],[88.05693100000012,27.53333],[88.119141,27.60833],[88.18887300000011,27.787777000000116],[88.19386,27.8475],[88.12859,27.882496],[88.130539,27.940552],[88.397491,27.98333],[88.62886000000015,28.119164],[88.839157,28.00611],[88.87719700000014,27.875553],[88.834427,27.66110600000013],[88.76332,27.543331000000137],[88.783325,27.43805],[88.917206,27.314442],[88.901382,27.282219],[88.798035,27.24638],[88.751938,27.148605],[88.86053,27.09638600000011],[88.893875,26.97555],[89.03499,26.9247170000001],[89.11526500000014,26.826942],[89.220825,26.81472],[89.367203,26.85944],[89.46832300000011,26.799442],[89.5336,26.81222],[89.63611,26.771111000000133],[89.631653,26.718052000000114],[89.762497,26.703049],[90.143051,26.75333000000012],[90.21693,26.85083],[90.385269,26.90333],[90.559143,26.80722],[90.694702,26.772221],[91.11970500000011,26.809162],[91.31442300000015,26.778053],[91.3797,26.807499],[91.424698,26.875553],[91.49720800000011,26.87249800000012],[91.542206,26.804443000000106],[91.712494,26.799999],[91.835815,26.86333100000013],[92.02388,26.85083],[92.095535,26.882217],[92.10081,26.97916],[92.009995,27.104717],[92.01527,27.168053],[92.115265,27.291386],[92.00417,27.47583],[91.770828,27.431664000000126],[91.673599,27.488605],[91.594986,27.64555],[91.65277100000014,27.711662],[91.657761,27.764721],[91.824417,27.766390000000115],[91.978317,27.72861],[92.118317,27.8125],[92.25388,27.81583],[92.261658,27.874161],[92.32332,27.79389],[92.544983,27.861940000000118],[92.718323,27.97361],[92.728378,28.03598],[92.67524700000013,28.080709],[92.710442,28.1419],[92.830032,28.212761000000114],[92.887337,28.19872],[93.0457080000001,28.31026100000014],[93.222054,28.3193],[93.238167,28.387449],[93.215538,28.41832],[93.351936,28.618759],[93.50206,28.679159],[93.647293,28.647461],[93.858513,28.69038],[93.961723,28.669201],[94.0211,28.83602900000011],[94.152458,28.9307],[94.234558,29.07348100000013],[94.42776,29.215509],[94.5812,29.231529],[94.647507,29.33346],[94.697357,29.33653],[94.864082,29.17499],[95.387772,29.035275000000127],[95.460541,29.051662],[95.541367,29.191105],[95.62469,29.254997],[96.077484,29.468605],[96.23526,29.25444],[96.289429,29.241383],[96.362488,29.290554],[96.395264,29.255276],[96.35304,29.183052],[96.21887200000015,29.14722],[96.14888,29.059719],[96.169144,28.903606],[96.343872,29.0325],[96.470825,29.056664],[96.49582,29.03611000000012],[96.484421,28.968327],[96.615814,28.790276],[96.60609,28.739437],[96.34027100000014,28.524998],[96.361649,28.39277],[96.40193,28.351109],[96.45526100000012,28.419441],[96.603867,28.468884],[96.74081400000011,28.426384],[96.784149,28.373051],[96.98471100000012,28.3325],[97.13499,28.381386000000134],[97.348877,28.222771],[97.316086,28.089165],[97.380539,27.991383],[97.361099,27.94083000000012],[96.888885,27.6175],[96.905258,27.451660000000118],[97.15887,27.13861],[97.136658,27.085831],[97.059723,27.093002],[96.888321,27.178051],[96.82332,27.31944],[96.729156,27.365551],[96.621918,27.365829000000133],[96.49664,27.302219],[96.194138,27.270832],[96.03581200000012,27.192493],[95.919144,27.035553000000107],[95.803864,27.00111],[95.610809,26.821384],[95.51944,26.823051000000135],[95.441086,26.70916],[95.271103,26.644718000000125],[95.246368,26.679718],[95.14137,26.612495],[95.066376,26.479717],[95.065262,26.325554],[95.113312,26.138329],[95.17804,26.058887],[95.059982,25.943607],[94.996368,25.732216],[94.885269,25.578609],[94.78943,25.496662],[94.695251,25.4725],[94.62553400000012,25.397774],[94.57638,25.214439],[94.599426,25.17833],[94.728592,25.136383],[94.734421,25.024719],[94.618317,24.76028],[94.472214,24.5816650000001],[94.313873,24.285831],[94.151093,23.855274],[93.926651,23.95583],[93.819153,23.935272],[93.753311,24.007496],[93.62135300000011,24.01611],[93.596375,23.972218],[93.48193,23.964996],[93.40576,24.07634],[93.33650200000011,24.073467000000107],[93.328049,23.981663],[93.42276,23.662495],[93.371918,23.35777],[93.388596,23.223328],[93.35026600000015,23.07333],[93.303314,23.014721000000122],[93.23887600000012,23.008888000000127],[93.20138,23.058887],[93.138046,23.04805],[93.092758,22.714439],[93.13611,22.47444],[93.18054200000012,22.440552],[93.199142,22.266941],[93.15387,22.186661],[93.047485,22.20583],[92.99081400000011,22.048607],[92.924423,22.004997],[92.71192900000011,22.15971800000011],[92.679703,22.02694300000013],[92.600815,21.982216],[92.516388,22.715828],[92.374695,22.94194],[92.34860200000014,23.223606],[92.38786,23.289547],[92.272766,23.716385000000116],[92.203049,23.706661],[92.17485,23.73682],[92.030548,23.645275],[91.95,23.732216],[91.9644320000001,23.496662],[91.933044,23.44444],[91.844986,23.410275],[91.7686000000001,23.274166],[91.81832900000012,23.087219],[91.72499,22.994717],[91.613602,22.94305],[91.5494230000001,22.998329],[91.4760890000001,23.218052000000114],[91.4166560000001,23.26611],[91.377472,23.20694],[91.40221,23.069443],[91.34860200000014,23.09138],[91.28221100000013,23.373329000000126],[91.159424,23.640553],[91.1586,23.73666],[91.216385,23.7561070000001],[91.250549,23.830276],[91.237762,23.907772],[91.37329100000011,24.10194],[91.546326,24.086941000000138],[91.751923,24.15444200000013],[91.892487,24.149715],[91.9236,24.33499],[91.989426,24.319439],[92.121368,24.393330000000105],[92.13247700000011,24.51388500000013],[92.19109,24.5652730000001],[92.256653,24.773888000000113],[92.248032,24.896385],[92.29359,24.904995],[92.401733,24.84042],[92.493835,24.878788],[92.48304700000011,24.92999600000013],[92.4166560000001,24.972496],[92.406372,25.030552],[92.04081700000012,25.18777],[91.488312,25.13805],[91.257767,25.207771],[90.848038,25.1486],[90.523315,25.1747170000001],[90.438309,25.147217],[89.917206,25.30999800000012],[89.845261,25.28861],[89.81554,25.36694],[89.864426,25.640553000000125],[89.807205,25.823051],[89.849014,25.90617],[89.73915,26.156384],[89.681656,26.159439],[89.6386,26.227800000000116],[89.601723,26.22747],[89.559868,26.16146],[89.60242,26.06896],[89.54821800000013,26.015631],[89.319908,26.02483],[89.12967700000013,26.159269],[89.067207,26.38769900000011],[88.938782,26.44582],[88.91457400000013,26.36074],[89.0466770000001,26.26742],[89.02047700000014,26.23517],[88.85715,26.240141],[88.735764,26.29351],[88.680817,26.420271],[88.433044,26.55139],[88.4041600000001,26.62916],[88.337769,26.473885],[88.353592,26.45166],[88.37109,26.489162000000135],[88.48332,26.461105],[88.525543,26.359718],[88.39637800000013,26.325275],[88.353592,26.279999],[88.355255,26.223328],[88.18441800000011,26.152496],[88.09553,25.915272],[88.11053500000014,25.83555200000012],[88.15193,25.77861],[88.27998,25.801662],[88.44693,25.666107],[88.450546,25.593887],[88.556641,25.504719],[88.711929,25.48499],[88.799713,25.510555],[88.838882,25.467773],[88.820541,25.407219],[88.84444,25.362495],[89.00943,25.28833],[88.940811,25.16555000000011],[88.450821,25.18777],[88.45999,25.069443],[88.34248400000011,24.870274],[88.276932,24.888050000000135],[88.221344,24.95432],[88.137772,24.921383],[88.17109700000015,24.85166],[88.04332,24.684162],[88.125534,24.50861],[88.36554000000011,24.41194],[88.49776,24.32083100000011],[88.697433,24.30958],[88.752914,24.214123],[88.699707,24.147217],[88.701385,24.07916],[88.75919,24.03603],[88.736649,23.919796000000133],[88.60284,23.862396000000103],[88.56387300000011,23.652218],[88.74942,23.466938],[88.79332,23.49416],[88.71138,23.308609],[88.7211,23.251663],[88.986099,23.208328],[88.870255,23.087776000000133],[88.862762,22.96666],[88.93332,22.865829000000133],[88.993317,22.32444],[89.096375,22.148605],[89.065262,22.115273000000116],[89.042206,22.132774],[89.064148,21.94166],[89.00555,21.90361],[89.088882,21.628052],[89.00749200000013,21.599998],[88.85554500000012,21.63277],[88.784424,21.556942],[88.707214,21.566387000000134],[88.682205,21.696106],[88.69664,21.84297],[88.723984,21.96353],[88.765617,22.00516],[88.713043,22.061943],[88.72747800000013,22.015831],[88.688309,21.93472],[88.63054,21.945],[88.66775500000011,22.202217],[88.613876,22.10083],[88.625534,22.036942],[88.556931,21.813332],[88.562485,21.76638800000012],[88.608597,21.780552],[88.628586,21.749161],[88.57222000000013,21.559998],[88.511932,21.521942000000134],[88.48332,21.550831],[88.518051,21.59528],[88.531937,21.83166],[88.496094,21.950272],[88.453873,21.614998],[88.399719,21.583332],[88.308594,21.60305],[88.297211,21.772774],[88.26193200000012,21.799999],[88.30832,21.570553],[88.254166,21.548607],[88.18137,21.663609],[88.205826,21.801388],[88.142212,21.948883],[88.2185970000001,22.070831],[88.19942,22.155273],[88.00749200000013,22.235271],[87.939423,22.412773],[87.907761,22.421661],[87.981934,22.223049],[88.141937,22.17222],[88.168045,22.091663],[88.082214,22.018055000000118],[87.97192400000012,21.839439],[87.796371,21.698883],[87.673035,21.643887],[87.21554600000013,21.552776],[87.071655,21.481937],[86.963318,21.381939],[86.875534,21.274441],[86.82805,21.1525],[86.96748400000013,20.79528],[86.891373,20.75944],[86.94081100000011,20.696384000000137],[87.02556,20.674828],[86.755829,20.49138],[86.720825,20.372498],[86.804428,20.436108000000104],[86.80054,20.381664],[86.65165700000011,20.24388],[86.486649,20.176384],[86.420258,19.982773],[86.37442,19.98110600000012],[86.28959700000013,20.060112000000117],[86.196365,20.075],[86.360809,19.960274],[86.15803,19.871384],[85.45138500000013,19.660275000000127],[85.42231,19.69598200000013],[85.54924800000015,19.73242800000014],[85.575005,19.83548],[85.53416,19.88072],[85.434883,19.887009],[85.23883100000012,19.7406],[85.14375300000012,19.603033],[85.121948,19.51312600000011],[85.167656,19.511156],[85.253929,19.654575000000136],[85.30883,19.64187600000014],[85.38614700000011,19.684454],[85.4102630000001,19.65444200000013],[85.38472,19.613884],[85.340271,19.591385000000116],[85.316673,19.618347],[85.289787,19.59519],[85.32982,19.57116100000013],[84.880539,19.22833],[84.794434,19.12083],[84.726585,19.124001],[84.73526,19.074718],[84.78082300000011,19.09416],[84.67637600000012,18.94194],[84.10637,18.292221],[83.77245,18.139694],[83.582764,18.0175],[83.23414600000011,17.59249],[82.61499,17.291107],[82.364426,17.10083],[82.248596,16.920273000000122],[82.27638,16.85944000000012],[82.359711,16.820553],[82.37114,16.845276],[82.301697,16.583054000000118],[81.99447600000013,16.407772],[81.727264,16.310829000000126],[81.412262,16.38527],[81.31337,16.363331],[81.245865,16.30999800000012],[81.15033000000011,15.97],[81.001709,15.844442000000129],[81.017273,15.775555],[80.89976500000012,15.858053],[80.912201,15.93222],[80.891937,16.026108],[80.89749100000012,15.91111],[80.82527,15.751944],[80.77887,15.876387],[80.684708,15.9],[80.554153,15.87694],[80.27943,15.699165000000107],[80.09082000000012,15.309164],[80.04887,15.04889],[80.108597,14.759998],[80.19497700000011,14.555832],[80.177475,14.358053],[80.12608,14.200275],[80.15138200000013,14.035831],[80.247482,13.808887],[80.22581500000013,13.679998],[80.313034,13.439165],[80.15248,13.718054],[80.09248400000013,13.69027],[80.0494230000001,13.617775000000108],[80.1188580000001,13.499723],[80.23137,13.479998000000137],[80.31387,13.42222],[80.349716,13.334164],[80.26277,12.94916],[80.258881,12.782221],[80.160263,12.473053],[79.8672,12.032776000000124],[79.76304600000014,11.64889],[79.751389,11.549166000000127],[79.83305400000012,11.339441],[79.85416,11.13722],[79.859711,10.288887],[79.786926,10.267221],[79.745605,10.303776],[79.67742900000013,10.300276],[79.753937,10.288276000000108],[79.763611,10.258333000000107],[79.399155,10.319719],[79.324997,10.280832],[79.240814,10.18111],[79.25,10.017221000000118],[78.981934,9.66416500000014],[78.90803,9.479719],[79.009155,9.331665],[79.331665,9.264166000000102],[79.451385,9.15],[79.294434,9.246664],[78.9711,9.273609],[78.396652,9.08972],[78.192474,8.90416],[78.131653,8.486664],[78.060532,8.364164],[77.78804,8.19611],[77.587204,8.134722],[77.536102,8.07194],[77.299149,8.133053],[76.998596,8.365274],[76.575821,8.87694],[76.570831,8.939165],[76.60054,8.971943],[76.6586,8.964998],[76.66748,9.003611],[76.534149,8.964998],[76.380264,9.281387],[76.30775,9.49694],[76.242752,9.96611],[76.292206,9.91389],[76.257767,9.906942],[76.28627,9.831053],[76.326385,9.76972],[76.35693400000014,9.776665],[76.38275,9.64667],[76.3522,9.5225],[76.46998600000012,9.495275],[76.4986,9.532221],[76.424423,9.594442000000129],[76.38415500000013,9.860275],[76.21638500000012,10.132219],[76.23887600000012,9.983608],[76.203049,10.037777],[75.68887300000011,11.435276],[75.613037,11.471664],[75.528595,11.700275],[75.27441,12.007776],[75.192474,12.007776],[75.127472,12.208054],[74.81026,12.864719],[74.619141,13.832499],[74.497757,14.046387],[74.375259,14.448332],[74.411926,14.48333200000013],[74.358032,14.568331],[74.333603,14.515554],[74.300812,14.521666],[74.250824,14.718887],[74.089706,14.797777],[74.10136,14.867094],[73.958328,15.065832],[73.905823,15.301388],[73.784424,15.403053000000115],[73.912491,15.40111],[73.96360800000014,15.363609],[73.95027,15.4],[73.791367,15.450554],[73.681931,15.697777],[73.697205,15.721939],[73.641937,15.740274000000113],[73.649429,15.784164],[73.593872,15.892776],[73.44775400000015,16.055832],[73.326096,16.485828],[73.360535,16.512218],[73.312485,16.606384],[73.269714,16.853329],[73.274704,17.08194],[73.114426,17.636662],[73.10914600000012,17.769718],[73.01138300000014,17.990829000000133],[72.967209,18.301662000000135],[72.89415,18.415829],[72.90277100000014,18.518887],[72.853867,18.660553],[72.857483,18.795277],[72.93304400000011,18.81971700000014],[72.98749,18.727772],[72.993042,18.790554],[72.911926,18.917496],[73.05554200000012,19.01194],[72.96971100000013,19.078884],[72.82304,18.91249],[72.76998900000012,18.94305],[72.825546,19.05305],[72.820831,19.172771000000125],[72.7833250000001,19.148052],[72.76666300000011,19.22805],[72.780548,19.3125],[72.856369,19.317776],[72.99193,19.257221],[73.016098,19.20583],[73.047226,19.217255000000137],[72.963882,19.30916],[72.79776,19.32611],[72.75444,19.36972],[72.664154,19.870831],[72.753601,20.294998],[72.885269,20.513054],[72.93441800000011,20.774719],[72.92526,20.812775],[72.846939,20.84416],[72.853043,21.067776],[72.808029,21.126385],[72.70277,21.074165],[72.615814,21.097218],[72.615265,21.12722],[72.718048,21.19611],[72.60748300000012,21.25805300000013],[72.5641480000001,21.37805200000014],[72.75194,21.455273],[72.71527100000014,21.474995],[72.58581500000014,21.41333],[72.631363,21.49444],[72.81330900000012,21.632217],[72.89833,21.642494],[73.130814,21.753609],[72.936646,21.681664],[72.541656,21.663883],[72.525269,21.694717],[72.56749,21.848053],[72.626373,21.928329],[72.681091,21.930275],[72.73442100000011,21.986382],[72.62276,21.960274],[72.55165,21.90722],[72.500824,21.976662],[72.57554600000014,22.19527],[72.625259,22.20888],[72.746933,22.16472],[72.81776400000012,22.2397160000001],[72.91499,22.216106],[72.919144,22.267776],[72.779984,22.252220000000136],[72.5811000000001,22.28611],[72.466385,22.2272190000001],[72.389709,22.249439],[72.37581,22.299164000000133],[72.15193,22.283886],[72.178864,22.247494],[72.29693600000013,22.232216],[72.325821,22.15666],[72.265274,22.016109],[72.03166,21.942772],[72.152206,21.92860800000011],[72.161926,21.83527400000014],[71.99414,21.847775],[71.99248,21.789165000000136],[72.019714,21.773609],[72.172485,21.785831000000144],[72.289154,21.61082800000014],[72.24247700000012,21.465271],[72.103867,21.309719],[72.11053500000014,21.201939],[72.003326,21.13472],[71.568054,20.974995],[71.46693,20.88194],[70.966095,20.702774],[70.81888,20.697495],[70.517761,20.816666000000108],[70.06080600000013,21.14444],[69.78858900000012,21.466385],[69.11554,22.062496000000124],[68.944427,22.294163],[68.986374,22.418327],[69.067215,22.48083],[69.17747500000013,22.360275],[69.171097,22.302776],[69.238312,22.27333],[69.870819,22.465549000000124],[70.04054300000013,22.558331],[70.165543,22.54833200000013],[70.367477,22.888607],[70.434708,22.961384],[70.51138300000014,22.985271],[70.52859,23.046387],[70.486649,23.124996],[70.404709,23.076107],[70.389435,22.935272],[70.227203,22.957497000000103],[69.84943,22.858608],[69.75499000000013,22.806107],[69.710266,22.742771],[69.26944000000015,22.829163],[69.14749100000012,22.869164],[68.66666,23.14222],[68.43304400000011,23.429996],[68.40832,23.612774],[68.741364,23.844162],[68.447479,23.72694],[68.326385,23.58277500000014],[68.139435,23.609718],[68.201096,23.66416],[68.21443,23.868328000000133],[68.290543,23.944439],[68.747208,23.969994],[68.745224,24.315655000000106],[68.783051,24.332775],[68.926926,24.325554],[68.988037,24.256943],[69.08027600000014,24.29722],[69.598602,24.281387],[69.723602,24.171108000000117],[70.014709,24.169716],[70.070709,24.197918],[70.120087,24.30903],[70.555542,24.435272000000108],[70.600815,24.415],[70.58442700000012,24.278332],[70.650543,24.24138],[70.761932,24.235828],[70.885818,24.274441000000138],[70.864426,24.31694],[70.94165,24.369164],[71.02916,24.363609],[71.10582,24.41639],[70.995819,24.480827],[70.984146,24.620831000000123],[71.07742300000011,24.68046],[70.94220000000013,24.935551],[70.8797,25.156105],[70.753326,25.273888],[70.677475,25.40166],[70.666382,25.698330000000112],[70.60637,25.714161],[70.386108,25.67472],[70.281662,25.706661],[70.088043,25.982773],[70.096649,26.092495],[70.173874,26.244438],[70.18359,26.53611],[70.092484,26.59333],[69.800812,26.594162],[69.72276,26.665272],[69.506104,26.754444],[69.484985,26.817219],[69.50972,26.992218],[69.580276,27.173328],[69.86747700000012,27.408607],[70.03749,27.599998],[70.12803600000012,27.828884000000127],[70.368317,28.020832],[70.4869230000001,28.045551],[70.583054,28.006664],[70.66360500000013,27.92832900000013],[70.6622,27.86333100000013],[70.737762,27.731384],[70.82944,27.706383],[71.22581500000013,27.845829],[71.6147,27.876106],[71.89694,27.961941000000138],[71.919983,28.120831000000123],[72.20665,28.402496],[72.29221,28.679996],[72.389709,28.784996],[72.948318,29.035831000000144],[72.988876,29.141941],[73.08638,29.245827],[73.26527,29.55305],[73.397491,29.94277],[73.93340300000011,30.136],[73.964432,30.2347180000001],[73.93441800000011,30.314163],[73.858597,30.360275],[73.872498,30.390099],[74.30748,30.84888500000011],[74.69458800000012,31.053961],[74.704536,31.10009],[74.623741,31.12393],[74.55728,31.07605],[74.522667,31.175079],[74.54837,31.35444],[74.62688,31.419411],[74.632797,31.462111],[74.488731,31.72159],[74.60532400000011,31.877119],[74.851173,31.99859],[74.903473,32.053291],[74.996353,32.036289000000124],[75.256531,32.092869],[75.38129,32.214241],[75.391296,32.241581],[75.328583,32.292759],[75.31915300000014,32.34777],[75.0663760000001,32.47193],[74.717484,32.475822],[74.654709,32.576385],[74.646378,32.780548000000124],[74.53166,32.75027],[74.359711,32.775826],[74.329666,32.81543],[74.363876,32.869438000000116],[74.334152,33.000549],[74.188583,33.03833],[74.016388,33.188599000000124],[74.020828,33.27166],[74.117477,33.32888],[74.18248000000011,33.510551],[74.15443,33.561378],[74.00000000000011,33.65416],[73.99054,33.7438810000001],[74.050262,33.831665],[74.235809,33.884163],[74.295822,33.97749],[74.244431,34.01915700000012],[73.978867,34.011383],[73.913315,34.068604],[73.912201,34.115273],[74.01416,34.175552],[74.01776100000012,34.218048],[73.97331200000013,34.302773],[73.84804,34.3186],[73.796371,34.385551],[73.94165,34.646385],[74.38916,34.781937],[74.69275,34.693604],[75.243004,34.62610200000012],[75.392487,34.55471],[75.661377,34.500832],[75.805542,34.507217],[75.988037,34.62694],[76.16748,34.58638000000013],[76.229156,34.60943600000013],[76.29359,34.70027],[76.470261,34.769989],[76.727203,34.743881],[76.801376,34.672218],[76.86998000000011,34.658882],[76.91693,34.68138],[76.95444,34.86277],[77.060806,35.014717],[77.049423,35.103882],[77.82392900000013,35.501328],[77.903046,35.436935],[78.05193,35.505829],[78.088043,35.47694],[78.075546,35.445824]]]]}},{"type":"Feature","properties":{"FIPS":"IR","ISO2":"IR","ISO3":"IRN","UN":364,"NAME":"Iran (Islamic Republic of)","AREA":163620,"POP2005":69420607,"REGION":142,"SUBREGION":34,"LON":54.301,"LAT":32.565},"geometry":{"type":"MultiPolygon","coordinates":[[[[54.034439,26.484718],[53.946381,26.492218],[53.9036,26.53611],[54.018883,26.554165],[54.051384,26.50889],[54.034439,26.484718]]],[[[53.318054000000124,26.797775000000115],[53.203323,26.802498],[53.151657,26.846386],[53.30499,26.823608],[53.318054000000124,26.797775000000115]]],[[[56.346657,26.82222000000013],[56.317215,26.836109],[56.34388000000013,26.884163],[56.4086,26.885551],[56.346657,26.82222000000013]]],[[[55.734993,26.83805100000012],[55.731659,26.797497],[55.632767000000115,26.79472],[55.63638300000014,26.859997000000135],[55.688599,26.929161],[55.734993,26.83805100000012]]],[[[56.24527,26.927494],[55.987213,26.727772],[55.696098,26.688885],[55.327492,26.546108],[55.283607,26.558609],[55.28249,26.658051],[55.360275,26.64277],[55.769989000000116,26.792774],[55.75222,26.951939],[55.853359,26.91555000000011],[56.22054,27.00055],[56.29027600000012,26.963329],[56.24527,26.927494]]],[[[56.470825,27.037777],[56.432495,27.075554],[56.469986,27.108608000000114],[56.509163,27.071663],[56.470825,27.037777]]],[[[50.32888,29.20805],[50.315826,29.214718],[50.29138200000011,29.27805300000011],[50.338326,29.268887],[50.32888,29.20805]]],[[[45.004433,39.416382],[45.115822,39.312202],[45.1461,39.214149000000134],[45.30999,39.19832],[45.34220900000014,39.16887700000012],[45.439423,38.998047],[46.178246000000115,38.84115],[46.354706,38.910538],[46.540375,38.875587],[46.838326,39.15527],[46.948868,39.154427],[47.025551,39.189423],[47.099709,39.304436],[47.292213,39.37693800000011],[47.391663,39.470543000000134],[47.542496,39.515266],[47.80666,39.677216],[47.976662,39.719231],[48.35979,39.385216],[48.189156,39.333321],[48.11998,39.263611],[48.13499500000012,39.208878],[48.29388,39.112488],[48.327766,39.05166],[48.312485,39.007767000000115],[48.071381,38.951378],[48.014153,38.90582300000011],[48.020821,38.835541],[48.243874,38.72777],[48.243607,38.66720600000013],[48.327766,38.60332],[48.441933,38.62165],[48.62305,38.39526],[48.789429,38.447762000000125],[48.888283,38.442406],[48.869431,38.300545],[48.94165,37.90749],[48.99776500000012,37.763611],[49.102486,37.643044],[49.41999,37.49332],[49.936104000000114,37.452492],[50.191376,37.38916000000012],[50.333603,37.1344380000001],[51.000275,36.766106],[51.873878,36.58416],[52.10443900000013,36.5991590000001],[53.22304500000012,36.848328],[53.922768,36.909714],[54.0086060000001,36.948326],[53.984993,36.8986],[53.60749800000013,36.868324],[53.681938,36.817215],[53.894714,36.79361],[54.013885,36.816101],[54.03166,36.948326],[53.90564,37.35085300000014],[54.20166000000011,37.330276],[54.57666000000012,37.452492],[54.681107,37.443604],[54.786942,37.51915700000012],[54.80971,37.579437],[54.78221100000013,37.648048],[54.83305400000012,37.74638],[54.954712,37.804993],[55.140831,37.9561],[55.442764000000125,38.086105],[55.76388500000013,38.12416100000013],[55.991379,38.071663000000115],[56.31972,38.083328],[56.352776,38.132767],[56.322495,38.185265],[56.424438,38.25471],[56.75574,38.286263],[56.845825,38.23166],[57.050827,38.193604],[57.164993,38.275826],[57.23916,38.27388000000013],[57.371101000000124,38.093048000000124],[57.356941,37.985825],[57.450272,37.93915600000014],[57.708046,37.92666],[58.17443800000012,37.79639],[58.238045,37.67527],[58.467209,37.639992],[58.92610200000013,37.669991],[59.052773,37.63138],[59.25,37.513329],[59.338882,37.53916],[59.38082,37.48555],[59.393051,37.323051],[59.479988000000105,37.232765],[60.029434,37.036942],[60.33305400000012,36.6560970000001],[61.157211,36.649994],[61.18999,36.567772],[61.160271,36.414154],[61.222763,36.171104],[61.2116620000001,35.937492000000134],[61.262215,35.81972],[61.22887400000013,35.67805],[61.287773,35.54999500000014],[61.183601,35.348602],[61.10443900000012,35.279160000000104],[61.094711,35.18415800000013],[61.13694,35.137215],[61.131660000000124,35.08582300000012],[61.0511,34.789436],[60.981377,34.657768],[60.85083,34.566101],[60.72166,34.522217],[60.804436,34.458046],[60.8836060000001,34.35527000000013],[60.878876,34.319717],[60.66554300000013,34.312492],[60.508331,34.140274],[60.554161,33.813324],[60.50527200000011,33.739159],[60.527771,33.644157],[60.6661,33.567497],[60.886383,33.557213],[60.943047,33.51944],[60.85444,33.48999],[60.803322,33.390831000000105],[60.591103,33.163048],[60.5825,33.06610100000011],[60.857773000000115,32.234718],[60.806938000000116,31.996662],[60.811378,31.659718],[60.843880000000134,31.498329],[61.713608,31.383331],[61.7711,31.318329],[61.766804,31.256184],[61.851387,31.027496],[61.758331,30.790276],[60.866302,29.863655],[61.314438,29.395828000000108],[61.360275000000115,29.2658310000001],[61.51194,29.07111],[61.651382,28.785275],[61.90554800000012,28.554996],[62.404991000000116,28.417217],[62.5924910000001,28.2336],[62.78138000000013,28.26694],[62.757774,28.000275],[62.82194,27.760277],[62.83971,27.474438],[62.782494,27.260555],[62.933327000000126,27.213329],[63.205826,27.267498],[63.28833,27.21860500000014],[63.341934,27.122498],[63.2786,27.121941],[63.253052,27.083607],[63.25916300000012,26.934441],[63.2161,26.853886],[63.185822,26.637218],[62.772766,26.649719],[62.74305,26.611664],[62.429718,26.564163],[62.31027,26.502777],[62.271378,26.42472],[62.27803,26.35402],[62.14138,26.382774],[62.103882,26.314442],[61.858047,26.23472],[61.775826,25.81861],[61.686378,25.794998],[61.611031,25.197647],[61.51944,25.171108],[61.438599,25.075275],[61.224991,25.118607],[61.17305,25.174438],[60.62221,25.268055],[60.60277600000012,25.400272],[60.547218,25.441662],[60.454994000000106,25.431664],[60.395271,25.375553],[60.461105,25.263611],[60.2930530000001,25.356106],[59.95804600000013,25.372772],[59.82444,25.41194200000012],[59.62027,25.391663],[59.47804300000013,25.47722],[59.11999,25.391663],[59.02583,25.397495000000106],[58.919991,25.51472],[58.78999,25.564720000000136],[58.368599,25.604443],[58.121376,25.544441],[58.030548,25.591106],[57.95777,25.700272],[57.7786,25.668606],[57.748047,25.74555],[57.5241620000001,25.737774],[57.310547,25.777775],[57.271378,25.919441],[57.167213,26.072220000000126],[57.074165,26.44721600000014],[57.087769,26.639717],[57.025551,26.842773],[56.845268,27.024998],[56.86749300000014,27.059441],[56.808884,27.123608],[56.348877,27.201107],[56.132767,27.160275],[55.94638,27.023888],[55.64554600000013,26.983330000000137],[55.579437,26.917217],[55.59388,26.793610000000115],[55.417213,26.754719000000133],[55.2438810000001,26.781666],[54.794716,26.489994],[54.47249,26.588329],[54.290833,26.71833],[54.211937,26.695827000000122],[54.065826,26.724716000000114],[53.74777200000011,26.70916],[53.48999,26.851662],[53.465271,26.948883000000137],[53.39582800000011,26.999439],[53.001106,27.12944],[52.756386,27.289165],[52.60305,27.35083],[52.57111,27.38944],[52.6205440000001,27.41277300000013],[52.626381,27.461662000000103],[52.440269,27.640831],[52.2241590000001,27.686382],[52.020271,27.830276],[51.606384,27.841942],[51.430275,27.937775],[51.32527,28.04833200000013],[51.237778,28.278053000000114],[51.09333,28.497219],[51.057495,28.73444400000011],[51.004166,28.803608],[50.876106,28.831944000000135],[50.801941,28.92416400000013],[50.823326,28.993889000000138],[50.899719,28.946663],[50.925278,29.062496],[50.82444,29.138332],[50.681664000000126,29.117222],[50.641106,29.13805],[50.66916700000012,29.402222],[50.63666,29.475],[50.390831,29.657497],[50.239998,29.860832],[50.1475,29.932777],[50.1336060000001,30.068886],[50.048607,30.207222],[49.898888,30.198051],[49.551384,30.0075],[49.501381,30.05388],[49.47971300000011,30.155552],[49.315819,30.163609],[49.006653,30.29555],[48.926102,30.391663000000104],[49.060265,30.40667],[49.195267000000115,30.354443],[49.26555,30.429722000000137],[49.192772,30.489716],[48.984993,30.513054000000125],[48.86416,30.353886],[48.866936,30.293884],[48.94249,30.175278],[48.91721300000012,30.038883],[48.708054,30.027222000000105],[48.602486,29.94971500000014],[48.469437,29.98444],[48.41110200000014,30.103607000000125],[48.40780600000011,30.211208],[48.160431,30.427082],[48.032494,30.49138],[48.03638500000011,30.997494000000135],[47.693878,31.00111],[47.697212,31.40777200000014],[47.864441,31.798607000000114],[47.413322,32.341103],[47.434158,32.39777400000014],[47.356102,32.47638],[47.274994000000106,32.491936],[47.137497,32.463051],[46.74749,32.753052],[46.42388,32.937492],[46.107216,32.967491],[46.113052,33.083054],[46.1986,33.191101],[46.181938,33.260277],[46.05027,33.377769],[46.00647,33.485779],[45.87471000000011,33.49166100000013],[45.948601,33.55666],[45.89888000000013,33.633049],[45.746941000000106,33.59166],[45.752327,33.63728300000014],[45.68888,33.674995],[45.50804900000014,33.94249],[45.437767,33.945267000000115],[45.40105,33.979568],[45.46888,34.07916300000011],[45.56276700000012,34.140549],[45.584717000000126,34.30249],[45.53555,34.35110500000013],[45.48777,34.335823],[45.438042,34.460274],[45.562923,34.586105],[45.722214,34.556656],[45.708328,34.659157],[45.65221,34.73999],[45.688599000000124,34.815269],[45.766106,34.845825000000104],[45.79773,34.91404],[45.86776700000013,34.9036],[45.89554600000014,34.963608],[45.878601,35.035271],[45.933769,35.098755],[46.03943600000014,35.058327],[46.171364,35.11341],[46.189987,35.22221400000012],[46.15416,35.23443600000013],[46.148048,35.297462],[45.984161,35.501663],[45.97999,35.58472],[46.02166,35.68027500000011],[46.22943,35.712212],[46.349998,35.80609900000013],[46.29999500000014,35.834435],[46.181664000000126,35.804161],[46.0961,35.866386],[45.765831,35.811935],[45.63347,35.966805],[45.505547,36.020546],[45.405823,35.990829],[45.354439,36.0644380000001],[45.27916,36.38110400000011],[45.239159,36.43137400000012],[45.143326000000116,36.40887500000014],[45.089989,36.427773],[45.013088,36.542858],[45.064156,36.68555],[44.950829,36.77916],[44.84415,36.808037],[44.906647,36.888329],[44.909714,37.023872],[44.765549,37.109993],[44.81526200000013,37.30526],[44.588593,37.440262],[44.584435,37.613884],[44.61805,37.72777],[44.223969,37.89915],[44.484154,38.345543],[44.43470800000011,38.395546],[44.307316,38.38784],[44.31388,38.63777],[44.26082,38.721657],[44.30332,38.83443],[44.208046,38.895821000000126],[44.159424,39.00221],[44.215828,39.140831],[44.034157,39.38499500000012],[44.20054,39.41693900000012],[44.31554,39.387497],[44.4161,39.425262],[44.471085,39.698868],[44.60582,39.78054],[44.81304200000011,39.63081],[44.871933,39.62165],[44.950272,39.435822],[45.004433,39.416382]]]]}},{"type":"Feature","properties":{"FIPS":"IS","ISO2":"IL","ISO3":"ISR","UN":376,"NAME":"Israel","AREA":2171,"POP2005":6692037,"REGION":142,"SUBREGION":145,"LON":34.851,"LAT":31.026},"geometry":{"type":"MultiPolygon","coordinates":[[[[35.25972,31.7872200000001],[35.25166300000012,31.788055000000103],[35.24638,31.80805],[35.26361,31.803608],[35.25972,31.7872200000001]]],[[[35.62363,33.245728],[35.683052,33.238884],[35.61446400000011,32.8949],[35.667496,32.78138700000011],[35.648888,32.685272],[35.571938,32.645828],[35.55257,32.394196],[35.48111,32.412773],[35.40416,32.50750000000011],[35.208054,32.546387],[35.077217,32.46722],[34.979164,32.15305],[35.0075,32.028053],[34.965557,31.830551000000128],[35.10828400000014,31.833073],[35.209717000000126,31.75],[34.98555,31.633331],[34.890549,31.377499],[34.933609,31.349998],[35.229721,31.37861],[35.405273,31.494999],[35.478195,31.497322],[35.478607,31.449165],[35.411385,31.225277],[35.462219,31.12111],[35.20611,30.594719],[35.158607,30.44416400000011],[35.164719,30.126389],[35.101662,30.043888],[34.97998,29.5457530000001],[34.903801,29.486706],[34.723343,30.089344],[34.614441,30.364998],[34.545273,30.406944],[34.558884,30.486111],[34.48944100000011,30.691109],[34.26757800000013,31.21654],[34.37055,31.29472],[34.388885,31.394722],[34.558609,31.533054],[34.490547,31.596096000000102],[34.711937,31.954998],[34.871109000000104,32.414444],[34.950554,32.82388300000014],[35.01722,32.815277],[35.06694,32.85499600000014],[35.10083,33.093605],[35.428329,33.068886000000134],[35.50471,33.09416],[35.585548,33.270271],[35.62363,33.245728]]]]}},{"type":"Feature","properties":{"FIPS":"IT","ISO2":"IT","ISO3":"ITA","UN":380,"NAME":"Italy","AREA":29411,"POP2005":58646360,"REGION":150,"SUBREGION":39,"LON":12.8,"LAT":42.7},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.127777,47.00166300000012],[12.160276000000124,46.92805],[12.301666,46.84111],[12.378611,46.72666],[12.440554,46.69082600000013],[13.2575,46.56194],[13.718655,46.52661100000011],[13.68944,46.447495],[13.511389,46.38472000000013],[13.383888,46.293053],[13.416111,46.21333],[13.485832,46.232498],[13.669167,46.177498],[13.480000000000132,46.01111],[13.5425,45.967499],[13.632221,45.991104],[13.577776,45.854164],[13.598055,45.810829000000126],[13.788887,45.7544400000001],[13.919167,45.637497],[13.850832,45.585274],[13.716944,45.596107],[13.804722,45.613609],[13.656111,45.753609],[13.549999,45.787216],[13.529165,45.724716],[13.392221,45.672493],[13.426943000000108,45.696663000000115],[13.411110000000122,45.724442000000124],[13.13111,45.77194200000014],[13.07,45.714722],[13.086111,45.635551],[12.922499,45.618332],[12.420555,45.431107],[12.448055,45.48360400000013],[12.522499,45.4897160000001],[12.581388,45.54666],[12.48,45.565826],[12.281387000000109,45.468048000000124],[12.158333,45.313889],[12.16111,45.263885],[12.361944,45.056107],[12.539165,44.961105],[12.44222,44.81416300000012],[12.440554,44.894997],[12.41194,44.899437],[12.396944,44.79138200000011],[12.28555,44.84083],[12.24555,44.7158280000001],[12.28,44.47610500000013],[12.356943000000115,44.269722],[12.41555,44.19583],[12.681665000000121,43.991104000000114],[12.903055,43.924721],[13.302500000000121,43.67139],[13.546665,43.604721],[13.621666,43.553886],[13.6275,43.491104],[13.84805,43.078331],[13.876389,42.95555100000013],[14.016666,42.669998000000135],[14.199999,42.482498000000135],[14.50417,42.261383],[14.715555,42.17194],[14.739721,42.08554800000013],[15.170832,41.92333200000013],[15.413055,41.903885],[16.018055,41.94722],[16.14194,41.914162],[16.19611,41.823883],[16.189999000000114,41.781105],[15.9,41.616386],[15.895555000000114,41.536942],[15.93249900000012,41.47805],[16.657776,41.191383],[17.17972200000014,41.031387],[17.475277,40.827774],[18.011665,40.64444],[18.039719,40.553604],[18.426109,40.287216],[18.51222,40.13666500000011],[18.479721,40.045273],[18.417774,39.992218],[18.390831,39.814438],[18.349442,39.79193900000013],[18.15583,39.856667],[18.04389,39.93361],[17.99472,39.994164],[18.022221000000116,40.01361],[18.015,40.097771],[17.859165,40.283607],[17.509441,40.296944],[17.204441,40.407219],[17.315552,40.497498],[17.068886000000134,40.5199970000001],[16.913609000000122,40.44554900000014],[16.695274,40.152771],[16.607777,40.087219],[16.61138,39.991104],[16.486664,39.76749400000011],[16.5430530000001,39.65028],[16.741386,39.617218],[17.151108000000136,39.389999],[17.10889,39.263054],[17.117222,39.09499],[17.166664,39.03388200000012],[17.169167,38.96333],[17.103611,38.895271],[16.929443,38.93583],[16.594997,38.80082700000014],[16.531944,38.703331],[16.571388000000127,38.431389],[16.470554000000106,38.346382],[16.32694,38.296104],[16.1655540000001,38.13916],[16.116665000000125,37.979721],[16.062496,37.92416400000013],[15.756109,37.92083000000014],[15.66889,37.95638300000013],[15.63166600000011,38.011665],[15.630554,38.232216],[15.809721,38.295273],[15.92063,38.518036],[15.832777,38.63916],[15.98639,38.722496],[16.10416,38.71083],[16.178608,38.744995],[16.2225,38.91083],[16.101109,39.019440000000145],[16.034443000000124,39.344994],[15.80694,39.680832],[15.783054,39.866661],[15.666666,40.03083],[15.611944,40.069443],[15.519722,40.073326],[15.416943,39.990273],[15.359722,39.997772],[15.128887000000134,40.16583300000013],[14.941944,40.23416],[14.927221,40.271111000000126],[14.990555,40.399162],[14.903889000000106,40.551666000000125],[14.776943000000132,40.672218],[14.327296,40.57301],[14.339117,40.61832],[14.475555,40.70082900000011],[14.458055,40.74277500000011],[14.2666660000001,40.84166],[14.16694,40.806938],[14.073889,40.82194],[13.9,41.078049000000135],[13.71305500000011,41.251389],[13.564999,41.237221],[13.294167,41.295555],[13.108889,41.237778],[13.031944,41.255272],[12.892221,41.39555400000011],[12.646387000000118,41.456383],[12.576111,41.50722],[12.217222,41.782494],[12.116943000000106,41.927498],[11.91944,42.033882],[11.82833,42.029442],[11.623055,42.301666000000125],[11.37472,42.405],[11.206944,42.413605],[11.178333,42.363327],[11.09889,42.393051],[11.085833,42.431664],[11.163055,42.442215],[11.180832,42.47583],[11.15805,42.554993],[10.973888000000102,42.71888700000011],[10.764444,42.82471],[10.767776,42.910553],[10.58888800000011,42.9575],[10.531387000000109,43.04471600000011],[10.522221,43.249161],[10.422777,43.398048],[10.323055,43.475273],[10.252222,43.84333],[10.107498,44.00750000000011],[9.714996,44.1147160000001],[9.23361,44.346382],[8.748888000000136,44.429161000000136],[8.44944,44.287773],[8.415277,44.19028],[8.267776,44.136108],[8.158054,43.994438000000116],[8.1655540000001,43.955276],[8.06778,43.893051],[7.675278,43.779716],[7.531935,43.78204],[7.495,43.88166],[7.70833,44.07944],[7.66222,44.17083000000014],[7.348332,44.131943],[7.031388,44.246941],[6.876944,44.376663],[6.852777,44.540833],[7.02833,44.74472],[7.031666,44.83138300000013],[6.746944,44.91944],[6.61976,45.110138],[6.760833,45.168327],[6.826944,45.149719],[7.064722,45.223053],[7.127777,45.25777],[7.15861,45.377495],[7.146944,45.43055],[6.99944,45.51832600000011],[6.969444,45.596939],[6.809722000000136,45.72777600000012],[6.81861,45.839165],[6.973055,45.868889],[7.03805,45.931938000000116],[7.099444,45.883606],[7.188611,45.879166],[7.295555,45.92305],[7.3933320000001,45.916107000000125],[7.536666000000139,45.98166700000012],[7.647499,45.98111],[7.855742,45.919052],[7.88194,45.977776],[8.00861,46.00833100000011],[8.148888000000113,46.14944],[8.139999,46.226105000000125],[8.30278,46.422493000000145],[8.436388,46.463333],[8.46611,46.37722],[8.445555,46.245827],[8.617777,46.1202770000001],[8.826111,46.09666],[8.85333,46.061104000000114],[8.813055,45.988609],[8.895555,45.955826],[8.95111100000014,45.845276000000126],[9.03666,45.837776],[9.085554,45.901939],[8.998055,45.976944],[9.083332,46.121109],[9.189444,46.186661],[9.276667,46.29249600000014],[9.296944,46.35305],[9.249722000000133,46.448051],[9.296944,46.503883],[9.455,46.472496],[9.45666,46.387772],[9.5425,46.306938000000116],[9.708332,46.298332],[9.81305,46.35833],[9.943888,46.37999700000012],[9.991943000000106,46.357773],[9.994999,46.291664],[10.063055,46.22277100000014],[10.129999,46.227219000000105],[10.17722,46.272499],[10.153889,46.390274],[10.046665,46.445831],[10.050278,46.53999],[10.11916,46.61138],[10.233332,46.639999],[10.247499,46.583885],[10.305555,46.55389],[10.465277,46.54639],[10.486387,46.619438],[10.447498,46.763054000000125],[10.471235,46.871353],[10.560833,46.84861],[10.679443,46.874718],[10.83417,46.786942],[11.014721,46.7725],[11.072498,46.824997],[11.096666,46.91249800000014],[11.186388,46.97028],[11.483889,47.01416],[11.755833,46.977493],[12.183054,47.094444000000124],[12.23111,47.080826000000116],[12.127777,47.00166300000012]],[[12.45917,43.896111],[12.510555,43.939163],[12.50999800000011,43.986938],[12.404999,43.948326],[12.41222,43.906105],[12.45917,43.896111]],[[12.445090330888604,41.90311752178485],[12.456660170953795,41.90142602469916],[12.451653339580501,41.90798903339123],[12.445090330888604,41.90311752178485]]],[[[12.422777,45.420555],[12.37829,45.419754],[12.316387,45.350555],[12.37333,45.428055],[12.422777,45.420555]]],[[[9.84417,43.034439000000134],[9.806944000000101,43.00972],[9.804165,43.063889],[9.831665,43.075554],[9.84417,43.034439000000134]]],[[[10.441111,42.844444],[10.423054,42.70888],[10.34361,42.765],[10.149166,42.72972],[10.101944000000115,42.772499],[10.145,42.810829],[10.35389,42.803055],[10.411388000000102,42.870277],[10.441111,42.844444]]],[[[10.08833,42.57222],[10.06944,42.591942],[10.081944000000135,42.61889],[10.101665,42.5936],[10.08833,42.57222]]],[[[10.915833,42.32527],[10.866388,42.35860400000012],[10.877777,42.388054],[10.914444,42.368889],[10.915833,42.32527]]],[[[10.316666,42.317497],[10.2897210000001,42.323051],[10.293055,42.349998],[10.326111,42.34333],[10.316666,42.317497]]],[[[9.513332,41.14666],[9.562498000000119,41.11777500000011],[9.633888,40.989166],[9.50361,40.91805],[9.612778000000105,40.921104],[9.746944,40.682495],[9.75111,40.59583],[9.825832,40.526108],[9.77194,40.394722],[9.623055,40.255554],[9.62333,40.199715],[9.71361000000013,40.04055],[9.56916600000011,39.15055100000012],[9.52167,39.118332],[9.442636000000107,39.12442],[9.321665,39.205826],[9.018332,39.266388],[9.016109000000142,39.10166],[9.043333,39.044998],[8.859165,38.879166],[8.715277,38.923607],[8.646387,38.89027],[8.55139,39.04999],[8.507442,39.061386],[8.40694,38.958611],[8.35805,39.035553],[8.356667,39.10833],[8.469000000000108,39.09566100000012],[8.36611,39.22610500000013],[8.43361,39.28916],[8.371111,39.374718],[8.44944,39.628052],[8.44278,39.75666],[8.50444,39.72555],[8.55666,39.86610400000012],[8.509722,39.908051],[8.394722,39.9025],[8.461666,40.22666],[8.457222000000115,40.321388],[8.36722200000014,40.492775],[8.301109,40.589165],[8.190554,40.616386],[8.159443,40.56277],[8.144444000000135,40.592216],[8.17833,40.63638300000014],[8.148888000000113,40.744164000000126],[8.192499,40.913605],[8.228333,40.94138],[8.278055,40.864441],[8.356388,40.836105],[8.48,40.820274],[8.600832,40.84666],[8.642221000000118,40.89361],[8.810276000000101,40.934441],[9.010832,41.121109],[9.160831,41.191666],[9.175554,41.24582700000013],[9.233055,41.254715],[9.513332,41.14666]]],[[[8.339167,41.062492000000134],[8.2675,41.054718],[8.24472,40.986107],[8.21528,40.992493],[8.32111,41.12138],[8.339167,41.062492000000134]]],[[[12.964167,40.883888],[12.950277000000142,40.91777],[12.98805,40.931389],[12.974165,40.894722000000115],[12.964167,40.883888]]],[[[13.951387000000123,40.70138500000013],[13.863609,40.701111],[13.85389,40.73472],[13.879166,40.76111],[13.948055000000124,40.742493],[13.951387000000123,40.70138500000013]]],[[[14.210554,40.56055],[14.258333,40.55971],[14.26194,40.55555],[14.197222,40.5366590000001],[14.210554,40.56055]]],[[[8.292221,39.09360500000014],[8.25111,39.10583],[8.22389,39.164719],[8.30278,39.189995],[8.292221,39.09360500000014]]],[[[15.21361,38.770554],[15.190277,38.79055],[15.239166,38.806107],[15.22972,38.78083],[15.21361,38.770554]]],[[[13.17333200000013,38.69028],[13.16222,38.714439],[13.198332000000107,38.711388],[13.195833000000107,38.70472],[13.17333200000013,38.69028]]],[[[14.868332000000121,38.531387],[14.796944,38.55861],[14.79472,38.56777],[14.86861,38.578049000000135],[14.868332000000121,38.531387]]],[[[14.95528,38.44554900000014],[14.901667,38.476105],[14.91222,38.516663],[14.963888,38.517494],[14.95528,38.44554900000014]]],[[[14.98889,38.364166000000125],[14.941111,38.399437],[14.958887,38.431107],[15.004166,38.37916600000011],[14.98889,38.364166000000125]]],[[[15.528889,38.13694],[15.219721,37.764442],[15.178055,37.575554000000125],[15.08667,37.479439],[15.093887,37.342773],[15.229443,37.12610600000011],[15.303333,37.102219],[15.316666000000113,37.008888],[15.14861,36.910271],[15.094721000000108,36.79972],[15.13611,36.677773],[15.081388,36.649162],[15.019444,36.69999700000011],[14.868055,36.728333],[14.77916,36.70444],[14.55361,36.780273],[14.460554,36.830826],[14.37361,36.966385000000116],[14.245832,37.062218],[14.093887,37.110832],[13.880554,37.101105],[13.67305,37.18972],[13.56194,37.27916],[13.33,37.361107],[13.15889,37.491104],[13.085833,37.49305],[12.920555,37.573608],[12.657499,37.558609],[12.468332,37.699165],[12.422222,37.796104],[12.461666,37.82249500000012],[12.466389,37.916107000000125],[12.556389000000138,38.059715],[12.73361,38.139717],[12.875832,38.030273000000136],[12.930555,38.02583],[13.06278,38.07861],[13.054165,38.138611],[13.100832,38.185272],[13.316666,38.21833],[13.382500000000105,38.107498],[13.768888,37.970551],[13.947777,38.03138700000011],[14.31194,38.01221],[14.519444,38.04277000000013],[14.87444,38.170555],[15.08667,38.12082700000013],[15.523611,38.295273],[15.6525,38.27027],[15.577221000000122,38.2397160000001],[15.528889,38.13694]]],[[[12.073889000000122,37.953606],[12.043888,37.95611],[12.029999,37.986938],[12.059166,37.989166000000125],[12.073889000000122,37.953606]]],[[[12.354166,37.9061],[12.283888000000102,37.919167],[12.271387000000118,37.936386],[12.33917,37.934441],[12.354166,37.9061]]],[[[12.01583,36.738327],[11.953609000000142,36.761383],[11.930832000000123,36.82972],[12.048332,36.796944],[12.054165,36.761665],[12.01583,36.738327]]]]}},{"type":"Feature","properties":{"FIPS":"IV","ISO2":"CI","ISO3":"CIV","UN":384,"NAME":"Cote d'Ivoire","AREA":31800,"POP2005":18584701,"REGION":2,"SUBREGION":11,"LON":-5.556,"LAT":7.632},"geometry":{"type":"MultiPolygon","coordinates":[[[[-3.102272,5.109545],[-3.103041,5.085022],[-3.16833,5.117222],[-3.102272,5.109545]]],[[[-4.787278,5.168312],[-4.714445,5.20277700000014],[-4.40556,5.222221000000104],[-4.146389,5.277222],[-4.030278,5.272778],[-4.00444,5.231667],[-4.77806,5.141666],[-4.787278,5.168312]]],[[[-4.787278,5.168312],[-4.79139,5.140833],[-4.976945,5.130833],[-5.009445,5.1525],[-5.00194,5.21194400000013],[-5.10983,5.183874],[-5.319723,5.230833],[-5.34083,5.20139],[-5.29722,5.194722],[-5.30861,5.17222],[-5.35306,5.1485],[-5.41222,5.16528],[-5.406112,5.14138800000012],[-5.277779,5.121666],[-5.23039,5.199207],[-5.09975,5.16455],[-5.05278,5.189444],[-5.00293,5.12924],[-5.89,5.02277800000013],[-6.61889,4.722777],[-6.91222,4.656111],[-7.04222,4.541944000000114],[-7.19461,4.515019],[-7.430834,4.35055],[-7.5254,4.3528060000001],[-7.56111,4.382500000000106],[-7.55778,4.744166],[-7.59083,4.82194],[-7.560556,5.051389],[-7.49528,5.101110000000119],[-7.366667,5.329444000000137],[-7.43639,5.43055500000014],[-7.3725,5.569444],[-7.431667,5.714999],[-7.426667,5.849722],[-7.498056,5.843333],[-7.655,5.938055000000134],[-7.685556,5.904444],[-7.758889,5.947222000000124],[-7.822223,6.20277700000014],[-7.89778,6.261944],[-7.99944,6.300555],[-8.16972,6.275],[-8.37444,6.360555],[-8.545,6.493055],[-8.60638,6.507815],[-8.56944,6.562222],[-8.536945,6.562222],[-8.53083,6.606111],[-8.50583,6.59417],[-8.41806,6.667222],[-8.308334,6.860833000000127],[-8.28556,7.176110000000108],[-8.39194,7.31528],[-8.415834,7.496388000000138],[-8.46975,7.561325000000125],[-8.40306,7.619166],[-8.211945,7.544999],[-8.08043,7.8054],[-8.12,7.862222],[-8.05339,8.032820000000129],[-7.94684,8.018505],[-8.020557,8.179722000000138],[-8.110001,8.174444],[-8.22889,8.240276],[-8.241945,8.446665],[-8.182222,8.501665000000116],[-7.819167,8.487499],[-7.74833,8.376389000000131],[-7.646536,8.37842],[-7.675556,8.440277],[-7.677501,8.624998],[-7.79444,8.75694],[-7.954722,8.79555],[-7.910001,9.009165],[-7.732779,9.088055],[-7.917778,9.194443],[-7.87528,9.356388],[-8.05139,9.397499],[-8.13194,9.496944],[-8.1475,9.620554],[-8.10389,9.86111],[-8.16056,9.94416600000011],[-8.10972,10.046665],[-8.01917,10.089167],[-7.97398,10.16561],[-7.81889,10.206944],[-7.731945,10.377222],[-7.641111,10.446943],[-7.45167,10.397221000000114],[-7.35972,10.350832],[-7.269723,10.254444],[-7.078611,10.203333],[-7.01028,10.141943],[-6.94972,10.17194400000011],[-6.94583,10.214722],[-6.9825,10.247221000000138],[-6.94361,10.353054],[-6.65333,10.35722],[-6.63194,10.436388],[-6.685,10.491665],[-6.64765,10.66507],[-6.53306,10.576111],[-6.42361,10.549166000000127],[-6.38194,10.590555],[-6.419168,10.622776],[-6.41417,10.690277],[-6.2434,10.735256],[-6.18889,10.6425],[-6.2125,10.569443],[-6.18167,10.434721000000138],[-6.19717,10.23636],[-6.090279,10.190832],[-6.00139,10.191944],[-5.87778,10.375555],[-5.782308,10.426426],[-5.571667,10.458332],[-5.51985,10.436272],[-5.4025,10.29555],[-5.13,10.304722],[-4.949722,9.94861],[-4.78722,9.830832],[-4.77889,9.785276000000124],[-4.81222,9.771666],[-4.704445,9.698055],[-4.60222,9.721388000000104],[-4.312456,9.599972],[-4.26694,9.739166],[-4.12694,9.828609000000142],[-4.03417,9.806944000000101],[-3.882223,9.89777800000013],[-3.63361,9.954443],[-3.20861,9.901388],[-2.98278,9.721109000000126],[-2.91889,9.571943],[-2.779723,9.403610000000128],[-2.745,9.396387],[-2.676111,9.471388],[-2.681111,9.229721],[-2.76083,9.121666],[-2.7675,9.06361],[-2.655556,9.01305],[-2.616667,8.914444000000117],[-2.59556,8.82472],[-2.617796,8.78414],[-2.579445,8.764999],[-2.48778,8.197777],[-2.56028,8.164165],[-2.660278,8.023054],[-2.774445,7.946666],[-2.785,7.853611000000114],[-2.923611,7.595555000000105],[-3.023889,7.07305],[-3.096355,7.05062],[-3.22444,6.818616],[-3.20667,6.69528],[-3.24917,6.611388],[-3.16804,6.25631],[-3.094722,6.145277],[-3.07028,5.991944000000103],[-3.006389,5.85778],[-3.01361,5.7075],[-2.937778,5.613889],[-2.84,5.62944],[-2.764445,5.57917],[-2.741667,5.446388000000127],[-2.783611,5.280277],[-2.734445,5.112778000000105],[-2.928128,5.100222],[-2.84167,5.14111],[-2.867222,5.187778],[-3.00611,5.128888],[-3.136111,5.14222100000012],[-3.19917,5.209444],[-3.125,5.325555],[-3.1425,5.36778],[-3.25861,5.335278],[-3.29722,5.118055],[-3.812778,5.192778],[-4.004168,5.25361],[-3.732778,5.259166],[-3.713611,5.280833],[-3.75444,5.35333],[-3.80778,5.375555],[-3.7425,5.27],[-3.91139,5.32],[-4.465556,5.296666],[-4.5125,5.257222000000126],[-4.7985,5.212246],[-4.81167,5.178333],[-4.787278,5.168312]]]]}},{"type":"Feature","properties":{"FIPS":"IZ","ISO2":"IQ","ISO3":"IRQ","UN":368,"NAME":"Iraq","AREA":43737,"POP2005":27995984,"REGION":142,"SUBREGION":145,"LON":43.772,"LAT":33.048},"geometry":{"type":"Polygon","coordinates":[[[45.797733,34.91404],[45.766106,34.845825],[45.688599,34.815269],[45.652214,34.73999],[45.708328,34.659157],[45.722214,34.556656],[45.562923,34.586105],[45.435547,34.455269],[45.48777,34.335823],[45.535553,34.351105],[45.584717,34.30249],[45.562767,34.140549],[45.46888,34.079163],[45.401054,33.979568],[45.437767,33.945267],[45.508049,33.94249],[45.688881,33.674995],[45.752327,33.63728],[45.746941,33.59166],[45.89888,33.633049],[45.948601,33.556656],[45.87471,33.491661],[46.00647,33.485779],[46.05027,33.377769],[46.181938,33.260277],[46.1986,33.191101],[46.113052,33.083054],[46.107216,32.967491],[46.423882,32.937492],[46.74749,32.753052],[47.137497,32.463051],[47.274994,32.491936],[47.356102,32.476379],[47.434158,32.397774],[47.413322,32.341103],[47.864441,31.798607],[47.697212,31.407772],[47.693878,31.00111],[48.036385,30.997494],[48.032494,30.491383],[48.160431,30.427082],[48.407806,30.211208],[48.453323,29.998051],[48.545555,29.96303],[48.554436,29.93055],[48.383881,29.939716],[48.158875,30.038052],[47.938881,30.016663],[47.731377,30.083881],[47.351105,30.081661],[47.209435,30.035553],[47.128876,29.974716],[46.948318,29.585274],[46.690384,29.230343],[46.546944,29.104198],[46.42667,29.061661],[44.721661,29.19833],[42.084999,31.11166],[41.439999,31.373329],[40.41333,31.94833],[39.196743,32.154942],[39.301109,32.236382],[39.259998,32.355541],[39.043652,32.30405],[38.986019,32.477661],[39.08601,32.501511],[38.794701,33.377594],[41.003876,34.419434],[41.229156,34.788322],[41.215271,35.224709],[41.277771,35.495544],[41.383881,35.625275],[41.378052,35.838608],[41.25499,36.054993],[41.290276,36.355553],[41.403046,36.525551],[41.835274,36.598885],[42.377228,37.064674],[42.355614,37.106926],[42.581657,37.152771],[42.724709,37.351944],[42.78611,37.384438],[42.955544,37.32222],[43.156937,37.373878],[43.623047,37.229996],[43.903603,37.221657],[44.014153,37.320541],[44.116379,37.316376],[44.261658,37.241936],[44.267769,37.167496],[44.193329,37.100266],[44.255272,36.986664],[44.317215,36.970543],[44.349709,37.038322],[44.638054,37.187485],[44.777771,37.163879],[44.784988,37.084717],[44.909714,37.023872],[44.906647,36.888329],[44.849152,36.798325],[44.950829,36.77916],[45.064156,36.685547],[45.013088,36.542858],[45.089989,36.427773],[45.143326,36.408875],[45.239159,36.431374],[45.27916,36.381104],[45.354439,36.064438],[45.405823,35.990829],[45.505547,36.020546],[45.633469,35.966805],[45.765831,35.811935],[46.087494,35.866386],[46.181664,35.804161],[46.299995,35.834435],[46.346939,35.817215],[46.2686,35.728043],[46.029434,35.687767],[45.979988,35.584717],[45.992218,35.481102],[46.192215,35.217209],[46.171364,35.113411],[46.039436,35.058327],[45.933769,35.098755],[45.878601,35.035271],[45.895546,34.963608],[45.867767,34.903603],[45.797733,34.91404]]]}},{"type":"Feature","properties":{"FIPS":"JA","ISO2":"JP","ISO3":"JPN","UN":392,"NAME":"Japan","AREA":36450,"POP2005":127896740,"REGION":142,"SUBREGION":30,"LON":139.068,"LAT":36.491},"geometry":{"type":"MultiPolygon","coordinates":[[[[153.95859,24.295],[153.93969700000014,24.300831],[153.95276,24.321384],[153.96579,24.31361],[153.95859,24.295]]],[[[123.87082,24.252499],[123.718323,24.277222],[123.67886,24.316109],[123.771103,24.418053],[123.92192100000011,24.371109],[123.92526,24.321384],[123.87082,24.252499]]],[[[122.996933,24.438885],[122.948029,24.436382],[122.935257,24.45805],[123.00943,24.466938],[122.996933,24.438885]]],[[[131.26416,24.454994],[131.246918,24.459995],[131.243011,24.48444],[131.27359000000013,24.475826],[131.26416,24.454994]]],[[[124.26165800000012,24.4575],[124.21914700000013,24.33527],[124.125526,24.341385],[124.075821,24.424717],[124.215271,24.44332900000012],[124.32443,24.587498],[124.26165800000012,24.4575]]],[[[141.309143,24.748051],[141.284424,24.72916],[141.29025300000012,24.77805300000011],[141.35745,24.78889],[141.309143,24.748051]]],[[[125.356369,24.776665],[125.451103,24.739716],[125.25722,24.72916],[125.263321,24.884163],[125.356369,24.776665]]],[[[141.293579,25.41833],[141.27221700000018,25.42388],[141.268311,25.445274],[141.293579,25.451385000000126],[141.293579,25.41833]]],[[[131.243835,25.816666],[131.208008,25.83333],[131.250824,25.87222],[131.27386500000011,25.856106],[131.243835,25.816666]]],[[[126.7619320000001,26.38694],[126.8099820000001,26.346943],[126.787201,26.296944],[126.6922,26.36055],[126.7619320000001,26.38694]]],[[[142.177765,26.6225],[142.163025,26.621109],[142.111359,26.715271],[142.153046,26.687218],[142.177765,26.6225]]],[[[128.252777,26.63888500000013],[127.94637300000011,26.451107],[127.84166,26.42944],[127.778587,26.23666],[127.813026,26.155552000000114],[127.71944,26.083607],[127.65277100000013,26.083054],[127.639977,26.208607000000143],[127.743874,26.306942],[127.716927,26.434994],[127.80054,26.44249],[127.958878,26.544441],[127.948318,26.598606],[127.878311,26.615829],[127.883881,26.667496],[127.961929,26.69527],[127.99693300000013,26.67999600000013],[127.99054,26.637218],[128.06747400000017,26.64249],[128.2872,26.854996],[128.3355100000001,26.765],[128.252777,26.63888500000013]]],[[[142.23245,27.033333],[142.199127,27.049164],[142.178314,27.075275],[142.23331,27.089165],[142.23245,27.033333]]],[[[142.1947,27.14833],[142.17859,27.156662],[142.194122,27.191105000000103],[142.20413,27.167496000000142],[142.1947,27.14833]]],[[[140.8780210000001,27.225826],[140.864136,27.21944000000013],[140.872192,27.24305],[140.879395,27.243607],[140.8780210000001,27.225826]]],[[[128.609131,27.358887],[128.5369260000001,27.35305],[128.52359000000013,27.413609],[128.701904,27.445827000000122],[128.609131,27.358887]]],[[[142.19553,27.599163],[142.18387,27.602776],[142.16998300000012,27.624718000000144],[142.193298,27.617775],[142.19553,27.599163]]],[[[142.08914200000015,27.717773],[142.07053,27.721107],[142.068848,27.72666],[142.08691,27.732216],[142.08914200000015,27.717773]]],[[[128.95108,27.67582700000014],[128.89721700000018,27.725826],[128.88025,27.824718],[128.89886500000011,27.89777400000014],[128.947479,27.907497],[129.029968,27.774441000000134],[128.95108,27.67582700000014]]],[[[129.33609000000013,28.075275],[129.219116,28.097775],[129.191071,28.188606],[129.3402400000001,28.110828],[129.33609000000013,28.075275]]],[[[129.992188,28.281666],[129.91497800000013,28.296108],[130.027466,28.36639],[130.0324710000001,28.35305],[129.992188,28.281666]]],[[[129.715515,28.45111],[129.584412,28.369995],[129.37551900000017,28.115273],[129.143585,28.25027],[129.57498,28.461662],[129.621613,28.476940000000127],[129.61911,28.44833],[129.69046,28.497719],[129.715515,28.45111]]],[[[129.733032,29.609718],[129.706085,29.64749],[129.741333,29.66333],[129.75332600000013,29.64777400000014],[129.733032,29.609718]]],[[[129.89636200000018,29.87416500000012],[129.923309,29.824997],[129.92190600000015,29.819717],[129.851898,29.852219000000105],[129.89636200000018,29.87416500000012]]],[[[129.96301,29.957218000000125],[129.92746,29.974438],[129.9285890000001,30],[129.967194,29.974163],[129.96301,29.957218000000125]]],[[[130.55859,30.236382000000102],[130.440247,30.252777],[130.382721,30.393887],[130.489685,30.460827],[130.666382,30.381939],[130.649414,30.28777700000012],[130.55859,30.236382000000102]]],[[[140.330261,30.462494000000103],[140.305542,30.460274],[140.30304,30.47527],[140.329132,30.47916],[140.330261,30.462494000000103]]],[[[130.906097,30.354717000000107],[130.870789,30.36777],[130.869415,30.469715],[130.951904,30.583054],[130.945251,30.683331000000123],[131.05359,30.840275],[131.08551,30.800552],[131.074402,30.689163],[130.9696960000001,30.390553],[130.906097,30.354717000000107]]],[[[129.72134,31.632217],[129.670532,31.65833],[129.782745,31.793331],[129.80191,31.758053],[129.72134,31.632217]]],[[[140.025543,31.933052],[140.01248,31.932217],[139.99939,31.942493000000127],[140.009705,31.946663],[140.025543,31.933052]]],[[[130.157745,32.10889],[130.12579300000016,32.121658],[130.11636,32.21666],[130.195526,32.17694100000011],[130.157745,32.10889]]],[[[130.36941500000012,32.37471],[130.238281,32.39554600000014],[130.209412,32.443047],[130.331909,32.516388],[130.448029,32.50527],[130.36941500000012,32.37471]]],[[[130.029968,32.194992],[130,32.18832],[129.955231,32.24082900000013],[129.987457,32.409431],[130.027191,32.49833],[130.157196,32.54361],[130.198578,32.483604],[130.208588,32.334991],[130.029968,32.194992]]],[[[128.900818,32.643051],[128.74191,32.589157],[128.60107400000015,32.618599],[128.6524,32.696640000000116],[128.660797,32.78194],[128.813293,32.7925],[128.900818,32.643051]]],[[[129.100525,32.97860000000014],[129.1830440000001,32.986107],[129.05554,32.816383],[129.00555,32.93499],[129.117737,33.145546],[129.100525,32.97860000000014]]],[[[139.84164,33.034996],[139.78192100000012,33.05609900000013],[139.74356,33.138046],[139.864136,33.101662],[139.84164,33.034996]]],[[[129.392212,33.16471],[129.35995500000013,33.17137900000011],[129.45413,33.33166],[129.56469700000014,33.38694],[129.49273700000015,33.216385],[129.392212,33.16471]]],[[[129.833313,33.3411],[129.81970200000012,33.344711],[129.8136,33.397774],[129.86108400000012,33.375549],[129.833313,33.3411]]],[[[132.276093,33.75944],[132.26470900000015,33.75471],[132.18551600000012,33.78333],[132.23053,33.795273],[132.276093,33.75944]]],[[[129.7547,33.72693600000014],[129.72079500000018,33.69749],[129.658875,33.744995],[129.70163,33.856941],[129.77609300000017,33.84221600000012],[129.794128,33.76277],[129.7547,33.72693600000014]]],[[[139.61828600000013,33.832214],[139.582733,33.84360500000014],[139.601074,33.887772],[139.62381,33.872269],[139.61828600000013,33.832214]]],[[[131.214142,33.595543000000134],[131.41803,33.5655440000001],[131.52441,33.66805],[131.589966,33.679993],[131.669708,33.647491],[131.73941,33.553322],[131.72885,33.46333],[131.70135500000015,33.413879],[131.588867,33.34527],[131.50803,33.347214],[131.51638800000012,33.265549000000135],[131.79385400000012,33.23333000000014],[131.90277100000014,33.256943],[131.814972,33.116386],[131.98522900000012,32.903877000000136],[131.98941,32.830551],[131.89721700000018,32.78333],[131.853027,32.68277],[131.76803600000017,32.64888],[131.685516,32.539993],[131.704132,32.460274],[131.61578,32.339989],[131.447205,31.89222],[131.44607,31.834442],[131.492737,31.79472],[131.343018,31.373886],[131.24774200000013,31.38277],[131.207733,31.459995000000102],[131.068573,31.44833],[131.00027,31.356384],[131.103851,31.325554000000125],[131.131073,31.269444],[130.942749,31.120274],[130.666382,30.996662],[130.677185,31.073051],[130.76416000000017,31.160828],[130.799133,31.313053000000135],[130.67746,31.542496],[130.59802200000013,31.581108],[130.679138,31.619442],[130.7511,31.553329],[130.79357900000014,31.598053],[130.808594,31.684162],[130.64498900000012,31.714161000000104],[130.53442400000014,31.528885000000116],[130.51416000000017,31.454163],[130.56387,31.324165000000104],[130.664978,31.260277],[130.635529,31.178883],[130.522491,31.161663],[130.487732,31.232216],[130.228027,31.24888],[130.203308,31.339165],[130.306641,31.455551],[130.339417,31.613331],[130.1774600000001,31.765831],[130.1994,31.899441000000134],[130.162476,32.00694],[130.19971,32.12054400000011],[130.257202,32.125267],[130.28637700000013,32.09499],[130.32413,32.11859900000013],[130.56970200000012,32.442490000000134],[130.609131,32.588882],[130.58746,32.63193],[130.44607,32.620544],[130.602448,32.71554600000013],[130.60553,32.791382],[130.45163,32.914436],[130.4158,33.087494],[130.361084,33.138329],[130.21109,33.17083],[130.13776,33.105827],[130.22106900000017,32.954712],[130.0938420000001,32.856102000000135],[130.171356,32.82916],[130.2482910000001,32.864998],[130.330261,32.852219],[130.376617,32.772217],[130.346069,32.664436],[130.173309,32.586655],[130.131348,32.673607],[130.20108,32.73333],[130.17636100000016,32.784164],[130.091064,32.78527100000014],[129.94442700000013,32.726097],[129.897491,32.643883],[129.74606,32.561104000000114],[129.85968000000014,32.711105],[129.775269,32.80249],[129.7319,32.7925],[129.68551600000012,32.838043],[129.63443,32.961937],[129.675537,33.069992],[129.767212,33.041107000000125],[129.820801,32.97943],[129.83246,32.91054500000013],[129.798584,32.93943],[129.793854,32.884995],[129.848846,32.82277],[129.96997,32.86305],[129.944122,32.99249],[129.56387,33.207214],[129.57886,33.353607],[129.602173,33.3688810000001],[129.82663000000014,33.287773],[129.87929,33.382229],[129.79721,33.44582400000013],[129.860779,33.524712],[129.9283140000001,33.53611000000012],[129.966644,33.503609],[129.948853,33.470543],[130.00665300000014,33.43943],[130.207458,33.650826],[130.28665200000012,33.574165],[130.39358500000012,33.597771],[130.46912,33.742218],[130.452759,33.806381],[130.534973,33.87721],[130.6908,33.935822],[130.982178,33.881104],[130.955811,33.81055],[131.08773800000017,33.619987],[131.214142,33.595543000000134]]],[[[132.32608,33.894714000000135],[132.42303500000014,33.941101],[132.45163,33.92276800000013],[132.331635,33.84916],[132.2152400000001,33.85388200000011],[132.184418,33.907494],[132.195801,33.941101],[132.24606,33.94748700000014],[132.32608,33.894714000000135]]],[[[139.526093,34.03249],[139.48218,34.06999],[139.507751,34.106102],[139.56052,34.106102],[139.566071,34.054710000000114],[139.526093,34.03249]]],[[[132.545532,34.11110700000012],[132.585236,34.106941],[132.557465,34.061104],[132.456635,34.086937],[132.508835,34.12085],[132.52887,34.182495],[132.545532,34.11110700000012]]],[[[132.448853,34.11555],[132.385529,34.243607],[132.4819,34.279160000000104],[132.485504,34.132492],[132.448853,34.11555]]],[[[132.97106900000017,34.18582],[132.94998,34.193047],[132.972748,34.25861],[133.02969,34.291107],[133.05054,34.209717],[132.97106900000017,34.18582]]],[[[129.23691,34.082214000000135],[129.18359,34.103882],[129.217468,34.32194],[129.349396,34.27999100000011],[129.2952580000001,34.126381],[129.23691,34.082214000000135]]],[[[134.2235720000001,34.34444],[134.25943,34.288048],[134.426636,34.209991000000116],[134.579132,34.22416],[134.63245,34.145828],[134.60245,33.98555],[134.693024,33.93499],[134.753052,33.826103],[134.37857,33.619713],[134.245239,33.44249000000013],[134.187744,33.238327],[133.91912800000011,33.477211],[133.743835,33.516937],[133.598846,33.501389],[133.39444000000015,33.3886],[133.28247,33.364159],[133.24746700000014,33.318886],[133.268036,33.254997],[133.241638,33.19665],[133.110229,33.047028000000125],[133.01388,32.993324],[133.0074770000001,32.767494],[132.96441700000014,32.74305],[132.86578,32.772491],[132.80304,32.73555],[132.636932,32.75361],[132.711639,32.908325000000104],[132.48053,32.89721700000012],[132.464142,33.024994],[132.48773,33.17027300000012],[132.534698,33.24471],[132.3783,33.308327],[132.39636200000018,33.431938000000116],[132.372467,33.466385000000116],[132.150818,33.35443900000013],[132.015808,33.337212],[132.64413500000012,33.67749],[132.6958,33.752220000000136],[132.71246,33.88333100000011],[132.89914,34.10777300000012],[132.976074,34.106941],[133.06469700000014,33.95583],[133.142487,33.91249],[133.31942700000013,33.985268],[133.524139,33.961380000000126],[133.630249,34.05777],[133.67190600000015,34.217209],[133.89386,34.359993],[134.080536,34.336655],[134.134155,34.38749700000011],[134.2235720000001,34.34444]]],[[[139.27887,34.3211060000001],[139.24857,34.35083],[139.29608,34.41971600000011],[139.29913,34.378876],[139.27887,34.3211060000001]]],[[[134.3508,34.434433000000126],[134.19384800000012,34.47137500000014],[134.19275,34.509995],[134.3685610000001,34.55027],[134.3508,34.434433000000126]]],[[[134.790253,34.19332],[134.748291,34.18721000000011],[134.67526,34.235825],[134.666931,34.296944],[134.87497,34.511665],[135.018036,34.592766],[135.023315,34.557213],[134.89358500000012,34.366661],[134.948578,34.26332900000011],[134.790253,34.19332]]],[[[129.339966,34.294716],[129.245239,34.356659],[129.300262,34.556938],[129.33496100000013,34.63388],[129.463867,34.68943],[129.505829,34.65499100000011],[129.476074,34.534439],[129.378296,34.30999],[129.339966,34.294716]]],[[[139.453308,34.672493000000145],[139.36996,34.69249],[139.371613,34.781662],[139.44275,34.764442],[139.453308,34.672493000000145]]],[[[133.07053,35.990273000000116],[133.02221700000018,35.99137900000011],[133.01080300000012,36.014442],[133.043854,36.016937],[133.07053,35.990273000000116]]],[[[133.098846,36.02999100000011],[133.07526,36.0241620000001],[133.074677,36.079994],[133.131897,36.099998],[133.098846,36.02999100000011]]],[[[133.002197,36.033051],[132.953033,36.066383],[133.03247,36.123322],[133.08664,36.12388],[133.05136100000016,36.052773],[133.002197,36.033051]]],[[[133.291931,36.32499700000011],[133.38525400000012,36.25444],[133.37857,36.20055],[133.332458,36.157768],[133.25247200000013,36.15248900000012],[133.188568,36.203049000000135],[133.189148,36.269714],[133.291931,36.32499700000011]]],[[[137.057465,37.143051],[137.050262,37.11027],[136.954132,37.089432],[136.90942400000017,37.137215],[137.057465,37.143051]]],[[[138.435242,38.047493],[138.54608,38.079994],[138.58108500000014,38.057213],[138.47858,37.88221],[138.35858,37.817215],[138.21829200000013,37.80082700000014],[138.213287,37.825829],[138.282196,37.84888],[138.337189,37.966660000000104],[138.2952580000001,37.9986],[138.23941,37.97193],[138.24246200000016,38.07499700000011],[138.44830300000012,38.293884],[138.51638800000012,38.320274],[138.435242,38.047493]]],[[[141.27081,41.3424910000001],[141.417755,41.373878],[141.455811,41.34388],[141.39554,41.144714],[141.4158,40.74527000000012],[141.46051,40.59388],[141.4819,40.552773],[141.58273,40.530273],[141.68914800000016,40.436935],[141.82025,40.26721],[141.86245700000018,40.157494],[141.840515,40.063324],[141.957184,39.962769],[141.97885,39.652771],[142.069702,39.546661],[142.03637700000013,39.416382],[141.98273,39.415268],[141.90637200000015,39.32999],[141.85107400000015,39.020828],[141.633331,38.993324],[141.64554,38.883331],[141.588287,38.883881],[141.533051,38.780548],[141.525818,38.266388],[141.46051,38.298607],[141.425537,38.37915800000013],[141.357727,38.398331],[141.09579500000018,38.364441],[140.953583,38.14804800000013],[140.91830400000015,37.934715],[140.958313,37.784439],[141.02249100000017,37.720825],[141.03887900000018,37.456383],[140.97552,36.987770000000125],[140.930817,36.936104],[140.82189900000014,36.900269],[140.746063,36.77916],[140.63665800000012,36.530548000000124],[140.56552,36.24749],[140.59301800000014,36.09444],[140.837189,35.74332],[140.824127,35.694992],[140.626068,35.654434],[140.450806,35.503883],[140.39636200000018,35.373878],[140.414703,35.222488],[140.334686,35.131378],[140.121887,35.08638],[139.993011,35.008331],[139.94165,34.904709],[139.84164,34.893608],[139.770264,34.95332],[139.86691,34.993629],[139.8235780000001,35.164711000000125],[139.848846,35.278877000000136],[140.11328100000011,35.549721],[140.0452580000001,35.641937],[139.96856700000012,35.660820000000115],[139.777191,35.63333100000011],[139.78027,35.503883],[139.64554,35.458885],[139.650543,35.294998],[139.747467,35.248878000000104],[139.676636,35.135269],[139.61496,35.12971],[139.612457,35.21666],[139.554413,35.286942],[139.325806,35.29805],[139.17108,35.236107],[139.08828700000015,35.057213000000104],[139.091064,34.990547],[139.149139,34.93888],[139.13858,34.87471],[138.981628,34.66638200000011],[138.84747300000015,34.592491],[138.74469,34.684433],[138.767212,34.953049],[138.784698,35.000549],[138.90915,35.02916],[138.74496,35.12276500000013],[138.5646970000001,35.087769],[138.332458,34.85804700000011],[138.19913,34.653603],[138.21414200000015,34.59916],[137.982452,34.652214],[137.79941,34.63388],[137.591339,34.668884],[137.036102,34.564713],[137.0699770000001,34.639992],[137.347473,34.722214],[137.276917,34.801933],[137.023865,34.760826],[136.98053,34.83138300000013],[136.980255,34.919441],[136.916382,34.780273],[136.9735720000001,34.68249500000013],[136.877747,34.72027],[136.847473,34.746658],[136.82385,34.913879],[136.902466,35.04277],[136.895813,35.07972],[136.846924,35.078331],[136.657745,34.97999],[136.639709,34.85416],[136.51944000000015,34.69249],[136.535736,34.601273000000106],[136.630249,34.587212],[136.91748,34.431664],[136.8991390000001,34.266937],[136.834686,34.24110400000012],[136.774139,34.25666],[136.76498400000014,34.294441],[136.66885400000012,34.29833200000013],[136.3438420000001,34.189713],[136.29248,34.144157],[136.27469,33.96915],[136.095795,33.86305],[135.951355,33.57666],[135.77221700000018,33.454994],[135.457733,33.539993],[135.336639,33.65416],[135.39804100000012,33.705551],[135.063293,33.877769],[135.12912,34.056656],[135.19720500000017,34.13916],[135.09802200000013,34.249435],[135.13245,34.317215],[135.295807,34.390831],[135.45727,34.560837],[135.41794,34.693306],[135.333588,34.718323],[135.0636,34.616936],[134.96551,34.63526900000011],[134.762482,34.756660000000124],[134.67081,34.7783280000001],[134.345795,34.700546],[134.2502750000001,34.715271],[134.189423,34.62471],[134.11664,34.579994],[134.001923,34.607498],[133.92996200000016,34.582214],[133.942474,34.548332],[133.980255,34.584435],[134.044708,34.5816650000001],[133.933044,34.4488750000001],[133.703033,34.52166],[133.342468,34.34554],[133.297485,34.342491],[133.31497200000013,34.36749],[133.247192,34.422218],[133.19607,34.28166],[133.07775900000013,34.24749],[133.04636,34.324165],[132.82302900000013,34.308601000000124],[132.764984,34.231659],[132.5571900000001,34.18888],[132.5038760000001,34.322495],[132.36773700000015,34.358604],[132.224121,34.23804500000011],[132.241058,34.161102000000135],[132.213287,33.990547],[132.129532,33.941471],[132.15664700000013,33.83694],[132.050537,33.77249],[132.04858400000012,33.895271],[131.74579,34.05360400000012],[131.396088,33.976379],[131.2622070000001,33.9180530000001],[131.17468,33.93027500000011],[131.10858,34.011383],[131.033325,34.04027600000012],[130.893311,33.921661],[130.886932,34.125267],[130.92776500000014,34.181381],[130.879669,34.29305],[130.94635,34.41638],[131.165527,34.41721],[131.211914,34.39833],[131.207733,34.3688810000001],[131.40554800000018,34.41944100000012],[131.60385,34.653603],[131.84301800000014,34.7011],[132.13079800000014,34.94999700000011],[132.29999,35.03611],[132.412476,35.170547],[132.63888,35.28638],[132.681915,35.372215],[132.632172,35.42083],[132.8530270000001,35.494995],[132.96441700000014,35.494438],[133.08801,35.581665],[133.248566,35.5286],[133.31387,35.45638300000013],[133.401642,35.445267],[133.57468,35.516663],[133.813599,35.48555],[134.25305200000014,35.536659],[134.517761,35.64666],[134.9136,35.634438],[135.08609,35.7291560000001],[135.222198,35.762215],[135.30609100000015,35.680824],[135.18829300000016,35.530273],[135.3872070000001,35.466385],[135.397491,35.50193800000011],[135.3544,35.500549],[135.34719800000016,35.541939],[135.46109,35.588043],[135.513885,35.487495],[135.736359,35.483879],[135.968842,35.646385],[135.964417,35.706100000000106],[136.017487,35.742218],[136.049713,35.697769],[136.034973,35.669441],[136.072754,35.648605],[136.09192,35.782211],[135.95941200000016,35.97332],[136.1283,36.195541],[136.40692100000012,36.397217000000126],[136.712463,36.751389],[136.76886,36.882767000000115],[136.767761,36.96527100000014],[136.682465,37.176102],[136.73608400000012,37.3219380000001],[136.786926,37.362213],[137.24857,37.516937],[137.356354,37.50471],[137.355225,37.43138],[137.037476,37.181938],[136.92136,37.19721],[136.863281,37.087769],[136.979126,37.041107],[137.044434,37.05666],[137.05359,36.961105],[136.9899600000001,36.856102],[137.005554,36.82916300000011],[137.09274300000016,36.77166],[137.30246,36.746384],[137.39444,36.797493],[137.445801,36.927216],[138.243835,37.172493],[138.580536,37.398605],[138.7402340000001,37.580276],[138.838562,37.806938],[138.98218,37.900543],[139.235779,37.993881],[139.424408,38.151657],[139.48745700000018,38.43888],[139.62301600000012,38.66833],[139.765808,38.791107],[139.904144,39.15971400000012],[140.02277,39.378601],[140.070801,39.585548],[140.0383,39.803047000000106],[139.93191500000012,39.889717],[139.753326,39.858047],[139.70245,39.931938],[139.70026,39.99305],[139.80996700000014,39.9574970000001],[139.895264,39.991379],[140.02054,40.23082000000011],[140.02469,40.318886000000134],[139.938507,40.428604],[139.935516,40.536385],[139.852753,40.60110500000013],[140.02469,40.746941],[140.11386100000016,40.731934],[140.26886,40.806656],[140.33996600000012,41.03777300000013],[140.31665,41.094437],[140.348572,41.24805],[140.46109000000013,41.1813810000001],[140.566071,41.2211],[140.64221,41.178329],[140.66079700000012,40.92555],[140.724976,40.829163],[140.83523600000012,40.844711],[140.885803,40.992493],[141.149414,40.862213],[141.228027,40.97860000000014],[141.27832,41.144157],[141.228851,41.229988],[141.1583250000001,41.26194],[141.157196,41.23416],[141.06274,41.177216],[140.97106900000014,41.182213],[140.806091,41.122765],[140.763031,41.17276800000013],[140.836914,41.397217],[140.918854,41.530273000000136],[141.10607900000014,41.460823],[141.208588,41.36221300000011],[141.27081,41.3424910000001]]],[[[139.56301900000017,42.2286],[139.501923,42.081108],[139.45773,42.04722],[139.428314,42.061661],[139.40774,42.150826],[139.43332,42.201935],[139.56301900000017,42.2286]]],[[[145.290863,43.538658],[145.2957,43.57032800000013],[145.22000100000014,43.60255100000012],[145.36108400000012,43.55555],[145.290863,43.538658]]],[[[143.97024,44.141106],[143.8777470000001,44.147774],[143.81192,44.168053],[143.94635000000017,44.151657],[143.97024,44.141106]]],[[[141.25943,45.098045],[141.149719,45.138885],[141.134705,45.21388200000012],[141.20831,45.250549],[141.308319,45.188881],[141.332458,45.14888],[141.25943,45.098045]]],[[[141.039429,45.26694],[141.027771,45.268326],[140.973572,45.465271],[141.074402,45.41415400000011],[141.039429,45.26694]]],[[[142.048309,45.404709],[142.186646,45.3261030000001],[142.510254,45.049721],[142.617462,44.89777400000014],[142.819122,44.70583],[143.38470500000017,44.325554],[143.69165,44.208046],[143.68054,44.177216],[143.77221700000018,44.094154],[144.00415,44.133331],[144.16275,44.112495],[144.367737,43.95388],[144.779419,43.913322],[145.18692,44.195267],[145.342468,44.34415400000011],[145.3768920000001,44.25972],[145.2511,44.05555],[145.131622,43.9313810000001],[145.0699770000001,43.774712],[145.13361,43.66054500000013],[145.2015990000001,43.607033],[145.30359,43.368599],[145.256104,43.314995],[145.315247,43.273605],[145.47247300000012,43.251106],[145.64471400000014,43.376099],[145.822205,43.36944],[145.620514,43.303322],[145.52081,43.170273],[145.1535950000001,43.134995],[145.107178,43.04583],[144.981903,42.97748600000011],[144.874664,42.978874],[144.7988590000001,43.04471600000011],[144.735229,42.990829000000126],[144.74051,42.960823],[144.661652,42.9372100000001],[144.46359300000017,42.930824],[144.32498,42.99805],[143.98968500000012,42.906654],[143.6149600000001,42.636383],[143.434967,42.44249],[143.334137,42.29388],[143.31692,42.04277],[143.2399600000001,41.924164],[143.1069030000001,42.030823000000105],[142.485229,42.258049],[141.790527,42.606384],[141.616638,42.613884],[141.42746,42.566383],[141.111359,42.39833],[140.98608400000012,42.29499800000013],[140.934692,42.31221],[140.88443,42.44110100000011],[140.745239,42.55526700000013],[140.461639,42.567772],[140.30054,42.382767],[140.284973,42.25305200000014],[140.534973,42.10833],[140.73468,42.12027000000012],[140.973572,41.905823],[141.09329200000013,41.87555],[141.199127,41.798332],[140.98468000000014,41.704712],[140.662476,41.824715],[140.597748,41.730270000000125],[140.45026,41.679718],[140.444427,41.539719000000105],[140.41748,41.515274],[140.2622070000001,41.47554800000012],[140.196625,41.39527],[140.069702,41.419159],[139.978027,41.581108],[140.01913500000012,41.693604],[140.129395,41.81832900000012],[140.13888,41.981377],[140.049133,42.09083],[139.93219,42.131378],[139.7821960000001,42.24638],[139.769135,42.315269000000114],[139.84164,42.444992],[139.836365,42.615273000000116],[139.889435,42.670273],[140.031097,42.678047],[140.219971,42.798607],[140.30832,42.80915800000014],[140.52887,43.000549],[140.32135,43.2355500000001],[140.358307,43.318886],[140.467743,43.36721],[140.80304,43.18582200000014],[141.158875,43.13777],[141.28802,43.186378],[141.407196,43.291382],[141.43856800000015,43.39027],[141.336914,43.71249],[141.38638300000014,43.78749800000014],[141.572205,43.859436],[141.64581,43.94221],[141.670258,44.028877000000136],[141.650818,44.294716],[141.75082,44.429718],[141.797211,44.624992],[141.76416,44.85527000000013],[141.60025,45.12749],[141.578033,45.232491],[141.6905210000001,45.40165700000011],[141.813873,45.41666],[141.97106900000017,45.486382000000106],[142.048309,45.404709]]]]}},{"type":"Feature","properties":{"FIPS":"JM","ISO2":"JM","ISO3":"JAM","UN":388,"NAME":"Jamaica","AREA":1083,"POP2005":2682469,"REGION":19,"SUBREGION":29,"LON":-77.32,"LAT":18.151},"geometry":{"type":"Polygon","coordinates":[[[-77.131958,17.878887],[-77.193893,17.77972],[-77.12529,17.727497],[-77.168625,17.696663],[-77.412231,17.859722],[-77.493347,17.836666],[-77.733337,17.84861],[-77.79723,17.891941],[-77.84695,18.010555],[-77.952789,18.031666],[-78.057236,18.196388],[-78.232788,18.188889],[-78.362228,18.234722],[-78.339737,18.362499],[-78.213898,18.450832],[-78.000015,18.441383],[-77.864456,18.522499],[-76.945282,18.394444],[-76.782791,18.26833],[-76.341675,18.149719],[-76.221115,17.904163],[-76.350571,17.855553],[-76.597504,17.861664],[-76.6577,17.929253],[-76.829727,17.987221],[-76.948334,17.829441],[-77.048889,17.893887],[-77.131958,17.878887]]]}},{"type":"Feature","properties":{"FIPS":"JO","ISO2":"JO","ISO3":"JOR","UN":400,"NAME":"Jordan","AREA":8824,"POP2005":5544066,"REGION":142,"SUBREGION":145,"LON":36.319,"LAT":30.703},"geometry":{"type":"Polygon","coordinates":[[[34.961388,29.360832],[35.005272,29.526108],[34.974625,29.577015],[35.075554,29.858887],[35.073051,29.953609],[35.164719,30.126389],[35.158607,30.444164],[35.462219,31.121109],[35.411385,31.225277],[35.473885,31.411942],[35.498055,31.641666],[35.555824,31.766106],[35.516388,32.041107],[35.573296,32.225548],[35.546944,32.404999],[35.571938,32.645828],[35.763321,32.748886],[35.928886,32.721664],[36.079994,32.543327],[36.197495,32.533333],[36.400276,32.381943],[36.837776,32.313606],[38.794701,33.377594],[39.08601,32.501511],[38.986019,32.477661],[39.043652,32.30405],[39.259998,32.355541],[39.301109,32.236382],[39.004997,32.005554],[37.005272,31.505554],[38.001389,30.504166],[37.667496,30.336388],[37.502777,30.00222],[36.743607,29.864719],[36.500549,29.502777],[36.07,29.188889],[34.961388,29.360832]]]}},{"type":"Feature","properties":{"FIPS":"KE","ISO2":"KE","ISO3":"KEN","UN":404,"NAME":"Kenya","AREA":56914,"POP2005":35598952,"REGION":2,"SUBREGION":14,"LON":37.858,"LAT":0.53},"geometry":{"type":"MultiPolygon","coordinates":[[[[41.138054,-2.12444],[41.016106,-2.148889],[40.997498,-2.203056],[40.95027,-2.173611],[40.988609,-2.09083],[41.063889,-2.044167],[41.162773,-2.080556],[41.138054,-2.12444]]],[[[35.940552,4.622499],[35.951111,4.521111000000133],[36.04529600000012,4.44708],[36.88777,4.43472],[37.03972,4.375555000000134],[37.130272,4.28639],[37.998055,3.728611000000114],[38.121109,3.611666],[38.448051,3.599444],[38.516937,3.626944],[38.913605,3.513889],[39.084717,3.534444],[39.248886,3.47139],[39.32888800000012,3.501667],[39.33138300000013,3.46917],[39.498055,3.455277],[39.52444,3.406389],[39.560272,3.40667],[39.594994,3.500833000000114],[39.782776000000126,3.67833],[39.866661,3.86944],[40.78376800000012,4.287975],[41.171387,3.9425],[41.472221,3.949444000000141],[41.72277,4.000555000000134],[41.84360500000014,3.9475],[41.90516700000012,3.980322],[41.336937,3.1675],[40.986595000000136,2.82996],[40.998329,-0.86611],[41.55527500000011,-1.592222],[41.55816,-1.674868],[41.315277,-1.95806],[41.10555,-1.981945],[40.991661,-2.034167],[40.8916630000001,-2.01917],[40.945,-2.2125],[40.98305,-2.2525],[40.963608000000136,-2.29889],[40.909439,-2.316389],[40.927498,-2.280834],[40.894722000000115,-2.225833],[40.85499600000014,-2.236111],[40.784164,-2.30694],[40.81721,-2.39667],[40.638054,-2.55],[40.485832,-2.535278],[40.23666400000013,-2.663333],[40.169998000000135,-2.78611],[40.177498,-2.98306],[40.119164000000126,-3.181389],[40.12471800000014,-3.268611],[39.974159,-3.375834],[39.80555,-3.875556],[39.6827770000001,-4.053889],[39.398331,-4.637222],[39.32583,-4.64],[39.300827,-4.59722],[39.203026000000136,-4.66962],[37.783051,-3.651111],[37.74110400000012,-3.53139],[37.613609,-3.504167],[37.60749800000013,-3.40556],[37.71999,-3.31194],[37.67528,-3.05139],[37.602776,-2.995833],[34.020554,-1.00139],[33.920273000000115,-1.001111],[33.91861,-0.45278],[33.976105,-0.13417],[33.907219,0.10306],[34.10638,0.387778],[34.161659,0.60861100000011],[34.272217000000126,0.650833],[34.442215,0.87194],[34.525551,1.113895],[34.575546,1.092677],[34.597771,1.153055000000109],[34.685272,1.20583],[34.822495,1.23555],[34.792221,1.393611],[34.852219,1.423889],[34.887497,1.535278],[34.953888,1.578889],[34.99944,1.668611000000112],[35.00972000000013,1.895278],[34.994438000000116,2.085],[34.87888,2.389722000000119],[34.909439,2.521111],[34.78999,2.68472],[34.75361,2.853333000000134],[34.71221900000012,2.87805],[34.662216,2.861111000000107],[34.5908280000001,2.939444],[34.570831,3.088333],[34.506104,3.145833],[34.40416,3.382222],[34.40027600000013,3.47722],[34.455551,3.524167],[34.46333,3.671389],[34.381660000000124,3.731667],[34.222221,3.779166],[34.12861,3.94361],[34.06305,4.173611],[33.99666600000012,4.222777000000121],[34.38819100000012,4.609682],[35.940552,4.622499]]]]}},{"type":"Feature","properties":{"FIPS":"KG","ISO2":"KG","ISO3":"KGZ","UN":417,"NAME":"Kyrgyzstan","AREA":19180,"POP2005":5203547,"REGION":142,"SUBREGION":143,"LON":74.555,"LAT":41.465},"geometry":{"type":"Polygon","coordinates":[[[80.234024,42.19622],[80.283325,42.079681],[80.238876,42.036621],[79.87942,42.01635],[79.778595,41.887177],[79.66304,41.884399],[79.34082,41.792175],[78.695526,41.543007],[78.401093,41.396057],[78.36554,41.366341],[78.373596,41.275505],[78.288315,41.227722],[78.188873,41.101341],[78.080826,41.040787],[77.854706,41.069397],[77.684708,41.001892],[77.543594,40.98661],[77.3461,41.028],[77.138046,41.016052],[77.058319,41.04911],[76.873871,41.014107],[76.788315,40.949104],[76.649719,40.744942],[76.639435,40.608551],[76.563873,40.556328],[76.5,40.442436],[76.345825,40.35022],[76.2236,40.403824],[76.099426,40.398277],[75.988876,40.369934],[75.928864,40.305496],[75.697205,40.29911],[75.625534,40.591324],[75.578049,40.647995],[75.22554,40.446884],[75.058868,40.447716],[74.86026,40.519386],[74.826096,40.407982],[74.88443,40.327713],[74.730545,40.339653],[74.362198,40.099655],[74.198029,40.113823],[73.994431,40.046043],[73.845825,39.81076],[73.844437,39.755768],[73.910812,39.725204],[73.9561,39.59771],[73.848038,39.47493],[73.491364,39.469925],[73.369705,39.441872],[73.343872,39.394653],[73.15387,39.353264],[72.650543,39.400764],[72.593048,39.363823],[72.342209,39.336319],[72.248596,39.191856],[72.139709,39.274635],[72.07666,39.374641],[71.773041,39.277946],[71.731369,39.337395],[71.77443,39.391022],[71.759995,39.458252],[71.54248,39.461014],[71.515,39.498787],[71.55304,39.567139],[71.479706,39.620193],[71.097214,39.510429],[71.032761,39.411781],[70.99054,39.40094],[70.7211,39.425377],[70.633881,39.580673],[70.491928,39.60817],[70.301926,39.551506],[70.181366,39.584366],[69.85054,39.536942],[69.750275,39.58194],[69.609146,39.582214],[69.526093,39.540276],[69.33194,39.518051],[69.301926,39.55471],[69.308594,39.691933],[69.249146,39.75444],[69.332489,39.994713],[69.424988,39.901932],[69.526093,39.931938],[69.483871,40.03611],[69.540817,40.131378],[69.60582,40.111938],[70.015823,40.218315],[70.279709,40.135193],[70.348602,40.082962],[70.542206,40.046021],[70.5522,40.009346],[70.467209,39.936272],[70.50444,39.907936],[70.6436,39.989349],[70.661102,40.103539],[70.974426,40.181053],[70.99915,40.270218],[71.389984,40.30188],[71.710541,40.145767],[71.903595,40.250488],[72.043869,40.266327],[72.012772,40.334373],[72.173599,40.46022],[72.282486,40.462433],[72.287766,40.431877],[72.4236,40.388824],[72.453049,40.464378],[72.381088,40.521049],[72.385468,40.614929],[72.636383,40.51355],[72.804428,40.67466],[73.170258,40.817162],[73.152481,40.84716],[73.049149,40.868271],[72.631653,40.885216],[72.506104,41.015221],[72.395264,41.040222],[72.19548,41.006592],[72.21666,41.059937],[72.183594,41.192436],[71.893326,41.194389],[71.887207,41.333282],[71.69136,41.556335],[71.6461,41.556335],[71.620529,41.507454],[71.659988,41.428833],[71.603592,41.319115],[71.550262,41.300781],[71.438034,41.348831],[71.439972,41.137169],[71.418045,41.118553],[71.251938,41.194946],[71.156937,41.161057],[70.813309,41.250504],[70.792755,41.35746],[70.70775,41.474258],[70.481094,41.411064],[70.376648,41.496902],[70.187195,41.52829],[70.19664,41.594688],[70.469986,41.71302],[70.526093,41.796631],[70.685257,41.904961],[70.844147,41.92524],[70.871094,42.039963],[70.986923,42.044411],[71.25972,42.170242],[71.276093,42.204132],[71.067215,42.302742],[70.962494,42.25441],[70.906937,42.266907],[70.873306,42.313026],[70.96582,42.393303],[70.954987,42.427467],[71.031097,42.573586],[71.169708,42.626076],[71.166931,42.686913],[71.275269,42.75914],[71.424698,42.804138],[71.597214,42.763588],[71.72554,42.82164],[71.898041,42.827469],[72.296936,42.773575],[72.757217,42.656067],[72.883881,42.554131],[73.148605,42.560783],[73.3286,42.512459],[73.344147,42.429123],[73.507217,42.404671],[73.533325,42.434395],[73.451096,42.533295],[73.43248,42.621063],[73.525818,42.799965],[73.583878,43.038574],[74.059418,43.188011],[74.29359,43.216904],[74.56694,43.132736],[74.752777,42.993576],[74.893326,42.979126],[75.243317,42.855232],[75.664429,42.807457],[75.74721,42.85051],[75.802475,42.940506],[76.616928,42.90023],[76.976929,42.996346],[77.14749,42.965508],[77.208191,42.918152],[77.729706,42.914673],[78.101654,42.857178],[78.512207,42.885239],[79.027771,42.759682],[79.194702,42.795792],[79.215271,42.679123],[79.356644,42.607735],[79.443863,42.472176],[79.57193,42.45301],[79.716934,42.474121],[79.952774,42.43412],[80.234024,42.19622]]]}},{"type":"Feature","properties":{"FIPS":"KN","ISO2":"KP","ISO3":"PRK","UN":408,"NAME":"Korea, Democratic People's Republic of","AREA":12041,"POP2005":23615611,"REGION":142,"SUBREGION":30,"LON":126.451,"LAT":39.778},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.8461,39.497215],[124.88916000000017,39.6055530000001],[124.934143,39.60833],[124.921921,39.55222],[124.8461,39.497215]]],[[[130.638885,42.406937],[130.650543,42.32332600000012],[130.68887,42.283882],[130.596924,42.253609],[130.578033,42.30666],[130.420807,42.31193500000012],[129.98636,41.982033000000115],[129.85522500000013,41.76111],[129.779419,41.75471],[129.699402,41.648605],[129.66721,41.476936],[129.808014,41.372215],[129.718567,41.177216],[129.72024,40.9847180000001],[129.755829,40.931938],[129.70941200000016,40.829994],[129.561371,40.82054900000014],[129.22912600000018,40.690269],[129.10553,40.474709],[128.98053,40.45166],[128.876068,40.36555],[128.636658,40.272766000000104],[128.59802,40.174164],[128.33246,40.053604],[128.184143,40.0236],[128.00137,40.03721600000011],[127.874687,39.888046],[127.617477,39.814156],[127.50694,39.724709000000125],[127.56165,39.306381],[127.51944000000016,39.31027200000011],[127.537773,39.365547],[127.50694,39.423882],[127.457207,39.420547],[127.374687,39.37221],[127.380539,39.218048000000124],[127.454712,39.16054500000012],[127.782761,39.088326],[128.00803,38.859993],[128.12219200000015,38.81916],[128.20135500000015,38.735268],[128.266663,38.738884],[128.35886,38.683601],[128.3635560000001,38.625244],[128.30191,38.578331],[128.301361,38.468323000000105],[128.224976,38.38166],[128.054688,38.306656],[127.36638,38.323326],[127.127762,38.297218],[126.99054,38.218048],[126.82443,38.01611],[126.727768,37.952492],[126.688492,37.83390800000012],[126.58748600000011,37.77082800000011],[126.384987,37.887215],[126.1436,37.82361],[126.157211,37.73804],[126.108032,37.73999],[126.04276300000015,37.863609],[125.97554,37.905548],[125.94165,37.887215],[125.98275800000012,37.82249500000012],[125.911377,37.838882],[125.79776000000015,37.98972],[125.589157,38.027214],[125.590271,37.993607],[125.72442600000011,37.91082],[125.643051,37.818886],[125.521103,37.784439],[125.3427580000001,37.671379000000115],[125.332207,37.713051],[125.380547,37.789772],[125.48749,37.837494],[125.512207,37.88694],[125.4561,37.9124910000001],[125.35080700000015,37.859436],[125.243591,37.931664],[125.16249100000014,37.862495],[124.9805530000001,37.924438],[125.11443,38.041664],[125.200546,38.04610400000013],[125.24609,38.013054],[125.268051,38.07277],[125.133041,38.091103],[125.014427,38.062767],[124.66470300000015,38.121101],[124.86248800000011,38.22916],[124.86554,38.3325],[124.958328,38.463326],[124.993591,38.58832600000011],[125.05859,38.579437],[125.15664700000012,38.644714],[125.31749,38.650543],[125.447197,38.700546],[125.65332000000012,38.627213],[125.51721,38.71777],[125.28471400000012,38.69582400000013],[125.139977,38.796387],[125.29027,39.15527],[125.41165200000013,39.279716],[125.40166,39.35889],[125.33777,39.435822],[125.448318,39.576385],[125.294144,39.51944],[125.123032,39.557213],[124.74443,39.776939],[124.74387400000012,39.630272],[124.62415,39.594994],[124.650269,39.68721],[124.561653,39.799995],[124.406372,39.8316650000001],[124.322769,39.911377],[124.39276,40.02193],[124.37359600000015,40.09362],[124.554703,40.242218],[124.70844,40.305046],[124.880539,40.470543],[125.03997800000012,40.457214],[125.021103,40.49833],[125.042763,40.537498],[125.286102,40.647491000000116],[125.4126890000001,40.653801],[125.457489,40.703323],[125.60386700000015,40.755829],[125.698029,40.85916],[126.016937,40.899994],[126.411102,41.31916],[126.49247700000011,41.365273],[126.584427,41.568604],[126.56656,41.616974],[126.795532,41.708046],[126.91304000000012,41.796104],[127.04802700000016,41.70832800000011],[127.057037,41.643501],[127.13498700000012,41.593605],[127.159416,41.52999100000011],[127.270828,41.472488],[127.69415300000013,41.413132],[127.835274,41.409988000000105],[127.92970300000012,41.44804],[128.04412800000011,41.389435],[128.15582,41.382492],[128.30191,41.577774],[128.101898,41.796104],[128.058868,42.00332600000013],[128.2824710000001,42.03916],[128.48941,41.995544],[128.925812,42.02444],[128.95773,42.081108],[129.11441000000013,42.139435000000105],[129.210236,42.21720900000014],[129.246063,42.375824],[129.341919,42.445824],[129.44220000000018,42.434433000000126],[129.51470900000015,42.38694],[129.711914,42.444153],[129.757751,42.729713],[129.84705,42.942482],[129.907532,43.00582],[130.252197,42.892494000000106],[130.24328600000013,42.718323],[130.33359,42.63833],[130.51416000000017,42.56805400000013],[130.57413,42.434433000000126],[130.638885,42.406937]]]]}},{"type":"Feature","properties":{"FIPS":"KR","ISO2":"KI","ISO3":"KIR","UN":296,"NAME":"Kiribati","AREA":73,"POP2005":92003,"REGION":9,"SUBREGION":57,"LON":175.036,"LAT":-1.508},"geometry":{"type":"MultiPolygon","coordinates":[[[[-151.78363,-11.46639],[-151.808044,-11.44972],[-151.81445,-11.3925],[-151.778656,-11.436666],[-151.78363,-11.46639]]],[[[-152.391418,-10.10528],[-152.39639,-10.10722],[-152.40671,-10.097221],[-152.395599,-10.09583],[-152.391418,-10.10528]]],[[[-150.22415,-9.95417],[-150.233063,-9.93861],[-150.22055,-9.923891],[-150.21582,-9.929722],[-150.22415,-9.95417]]],[[[-150.22528,-9.91583],[-150.23361,-9.91167],[-150.22888,-9.89083],[-150.21918,-9.90139],[-150.22528,-9.91583]]],[[[-155.87805,-5.64],[-155.91309,-5.638056],[-155.92807,-5.61889],[-155.85614,-5.61944],[-155.87805,-5.64]]],[[[-172.1875,-4.53167],[-172.21918,-4.528889],[-172.231384,-4.50445],[-172.196381,-4.491944],[-172.16977,-4.51389],[-172.1875,-4.53167]]],[[[-171.23169,-4.46139],[-171.25891,-4.45861],[-171.264496,-4.446388],[-171.235535,-4.438055],[-171.23169,-4.46139]]],[[[-154.939209,-4.04555],[-154.95639,-4.102501],[-155.016113,-4.060834],[-154.962494,-4.031945],[-154.939209,-4.04555]]],[[[-171.078064,-3.14167],[-171.08972,-3.1375],[-171.08643,-3.108889],[-171.080841,-3.11028],[-171.078064,-3.14167]]],[[[-171.62781,-2.8325],[-171.62637,-2.86944],[-171.72559,-2.772778],[-171.69415,-2.768611],[-171.62781,-2.8325]]],[[[176.848297,-2.669445],[176.77636700000016,-2.620833],[176.774139,-2.60778],[176.83331,-2.63389],[176.848297,-2.669445]]],[[[175.97189300000014,-2.505],[175.960236,-2.505834],[175.964417,-2.481111],[175.97106900000017,-2.48667],[175.97189300000014,-2.505]]],[[[175.58609000000013,-1.91972],[175.581909,-1.9225],[175.54776,-1.821667],[175.592743,-1.88333],[175.58609000000013,-1.91972]]],[[[175.53137200000015,-1.806111],[175.496338,-1.779444],[175.493561,-1.76972],[175.51971400000014,-1.777778],[175.53137200000015,-1.806111]]],[[[175.041931,-1.5525],[175.001648,-1.52861],[175.04608,-1.434722],[175.06942700000013,-1.474444],[175.041931,-1.5525]]],[[[174.87329,-1.40806],[174.85745,-1.408611],[174.85358,-1.399167],[174.86386100000016,-1.397778],[174.87329,-1.40806]]],[[[176.46469100000013,-1.43528],[176.447479,-1.431389],[176.39053300000012,-1.324445],[176.42136,-1.348333],[176.46469100000013,-1.43528]]],[[[175.954681,-1.27917],[176.02191200000016,-1.365556],[176.018311,-1.389444],[175.95886200000018,-1.2875],[175.934143,-1.3025],[175.954681,-1.27917]]],[[[174.767761,-1.255833],[174.74857,-1.250556],[174.71637,-1.14],[174.76721,-1.207222],[174.767761,-1.255833]]],[[[174.48968500000012,-0.81667],[174.478577,-0.81944],[174.495239,-0.78806],[174.458008,-0.65361],[174.49579,-0.77028],[174.5,-0.79972],[174.48968500000012,-0.81667]]],[[[174.458862,-0.65167],[174.45245,-0.652222],[174.37717,-0.5975],[174.392487,-0.59472],[174.458862,-0.65167]]],[[[173.618011,0.13361],[173.60412600000018,0.2125],[173.631622,0.216667],[173.6363830000001,0.17694],[173.618011,0.13361]]],[[[173.40969800000016,0.20361],[173.399414,0.200278],[173.402191,0.23306],[173.425537,0.215278],[173.40969800000016,0.20361]]],[[[173.38497900000016,0.244167],[173.371338,0.250278],[173.37662,0.266111],[173.382172,0.26472200000012],[173.38497900000016,0.244167]]],[[[173.93191500000012,0.298055],[173.923584,0.30222],[173.93942300000015,0.320833],[173.9422,0.316667],[173.93191500000012,0.298055]]],[[[173.830536,0.448333],[173.9086,0.402222],[173.921631,0.379722],[173.804962,0.431111000000101],[173.830536,0.448333]]],[[[173.021912,1.006667],[173.08414,0.951944],[173.04776000000015,0.892222],[172.99023,0.82638900000012],[172.98135400000012,0.821667],[173.0655210000001,0.943611],[172.988861,1.021111000000133],[173.021912,1.006667]]],[[[172.93969700000014,1.336111],[172.92441,1.336944],[172.914154,1.34639],[172.943573,1.34583],[172.93969700000014,1.336111]]],[[[173.126617,1.349166],[173.113007,1.345],[173.0985720000001,1.35139],[173.11911,1.373333],[173.126617,1.349166]]],[[[173.062195,1.410278000000119],[173.039703,1.417778],[173.03469800000016,1.44444],[173.05664100000013,1.418333],[173.062195,1.410278000000119]]],[[[173.012756,1.472500000000139],[173.016388,1.465],[172.99719200000015,1.500556],[173.0011,1.49528],[173.012756,1.472500000000139]]],[[[172.9819030000001,1.529444],[172.96078,1.553333000000123],[172.955231,1.619166],[172.966919,1.596667],[172.9819030000001,1.529444]]],[[[172.88470500000017,1.83833],[172.856628,1.843889],[172.834137,1.863611],[172.85800200000017,1.861666],[172.88470500000017,1.83833]]],[[[173.014984,1.706111000000135],[173.025269,1.816389000000129],[172.929962,1.93611],[173.027191,1.821111],[173.014984,1.706111000000135]]],[[[172.89166,1.93],[172.88272100000017,1.932777],[172.88552900000013,1.943889000000127],[172.894989,1.939722000000131],[172.89166,1.93]]],[[[173.32886,1.94028],[173.311096,1.958055],[173.3494,1.96583],[173.349976,1.950555],[173.32886,1.94028]]],[[[173.343018,1.982777],[173.313599,1.973889],[173.32526,2.015833],[173.33773800000017,2.009444],[173.343018,1.982777]]],[[[-157.43167,2.021388000000115],[-157.35083,1.971944],[-157.343079,1.841111],[-157.1911,1.764444],[-157.17944,1.714444],[-157.23502,1.705],[-157.57138,1.858888],[-157.57971,1.9],[-157.5206,1.935833],[-157.54388,1.871944],[-157.42944,1.831666],[-157.35001,1.938333000000114],[-157.510284,2.01638800000012],[-157.43167,2.021388000000115]]],[[[172.870239,3.064444],[172.77499,3.002222],[172.74911,3.024166],[172.82858,3.063055],[172.870239,3.064444]]],[[[172.96829200000013,3.24861],[172.957458,3.281388],[172.97662400000013,3.296389],[172.98080400000015,3.293611],[172.96829200000013,3.24861]]],[[[-159.34003,3.920833],[-159.248871,3.827222],[-159.271698,3.789722],[-159.33444,3.795777],[-159.27917,3.83139],[-159.347504,3.900555],[-159.388062,3.892777],[-159.3774,3.849277],[-159.40448,3.864166],[-159.39087,3.91889],[-159.34003,3.920833]]],[[[-160.39474,4.685554],[-160.42001,4.699999000000105],[-160.405609,4.725276],[-160.37973,4.71833],[-160.39474,4.685554]]]]}},{"type":"Feature","properties":{"FIPS":"KS","ISO2":"KR","ISO3":"KOR","UN":410,"NAME":"Korea, Republic of","AREA":9873,"POP2005":47869837,"REGION":142,"SUBREGION":30,"LON":128.103,"LAT":36.504},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.622208,33.23999],[126.340553,33.227211],[126.26638800000012,33.19083],[126.170532,33.262497],[126.15833,33.31471],[126.270264,33.422768],[126.37804,33.47470900000013],[126.79305,33.550827],[126.898041,33.52332300000012],[126.93665,33.424438],[126.84749,33.311661],[126.622208,33.23999]]],[[[126.765549,34.280823],[126.65138200000013,34.316101],[126.66388,34.382492],[126.73082,34.36388],[126.765549,34.280823]]],[[[127.213608,34.418884],[127.145828,34.41499],[127.11137,34.460274],[127.22272,34.483627000000126],[127.244141,34.453323],[127.213608,34.418884]]],[[[127.79082,34.47637900000012],[127.758331,34.487495],[127.71193,34.526657],[127.77082800000015,34.53833],[127.79082,34.47637900000012]]],[[[126.18665,34.35139],[126.11249,34.378876],[126.09971600000016,34.419159],[126.243317,34.573326],[126.380257,34.494713],[126.342484,34.401382],[126.18665,34.35139]]],[[[127.80386,34.575554],[127.73442,34.613327],[127.76805100000011,34.66415400000011],[127.81218700000011,34.64138800000012],[127.80386,34.575554]]],[[[125.99136,34.66805],[125.96360800000014,34.648605],[125.914993,34.692215],[125.981369,34.71693],[126.00861,34.691376],[125.99136,34.66805]]],[[[125.99304,34.791939],[126.009163,34.759995],[125.94525,34.75471],[125.932213,34.718323],[125.89055,34.728043],[125.898041,34.76721],[125.99304,34.791939]]],[[[128.08578,34.830276],[127.9972080000001,34.835266000000104],[127.9741520000001,34.85833],[128.024139,34.913879],[128.08578,34.830276]]],[[[126.063599,34.854439],[125.99304,34.85833],[125.983597,34.864998],[126.06275900000014,34.928329],[126.09444,34.909714],[126.063599,34.854439]]],[[[127.9561,34.800827],[128.07330300000012,34.80471],[128.060791,34.7011],[127.85720800000014,34.72388],[127.82222000000013,34.843048],[127.879967,34.92943600000012],[127.93387,34.91610000000014],[127.90915,34.84721400000012],[127.9561,34.800827]]],[[[128.754425,34.87693800000011],[128.74191,34.781662],[128.68551600000012,34.724159],[128.594116,34.697769],[128.60080000000016,34.830551],[128.526093,34.80582400000014],[128.488556,34.856384],[128.501923,34.887497],[128.71109000000013,34.976654],[128.754425,34.87693800000011]]],[[[126.10608700000012,35.046944],[126.05942,35.055267],[126.059982,35.09083],[126.162201,35.143326000000116],[126.10608700000012,35.046944]]],[[[126.428307,36.399719],[126.33582300000012,36.438599],[126.32499700000017,36.565544],[126.346939,36.591103],[126.378593,36.586105],[126.428307,36.399719]]],[[[126.16943400000014,36.82582900000011],[126.15915,36.827774],[126.16110200000014,36.83804],[126.172447,36.836838],[126.16943400000014,36.82582900000011]]],[[[130.887482,37.453323],[130.81884800000012,37.467766],[130.807465,37.518326000000116],[130.919434,37.545273],[130.920807,37.476654],[130.887482,37.453323]]],[[[126.501389,37.594437],[126.37303,37.621658],[126.36665300000014,37.784721],[126.40054,37.818886],[126.516098,37.761108],[126.539429,37.627769000000114],[126.501389,37.594437]]],[[[124.695534,37.9161],[124.63665800000012,37.91833],[124.615257,37.9686],[124.72554000000012,37.98166],[124.746643,37.954712],[124.695534,37.9161]]],[[[128.53247,38.330551],[128.641083,38.11721],[129.063019,37.668884000000105],[129.06638,37.62443500000012],[129.342468,37.257217],[129.362488,37.150024],[129.433594,37.058884],[129.416077,36.94221],[129.47302200000013,36.710274],[129.41693,36.616661000000136],[129.450531,36.500549],[129.438019,36.400269],[129.38192700000013,36.3144],[129.3869,36.036018],[129.457184,35.99305],[129.557251,36.078773000000126],[129.58835,36.01931000000013],[129.464752,35.644608],[129.43942300000015,35.475822],[129.2811,35.30082700000014],[129.23749,35.18990300000013],[129.136932,35.11221300000011],[128.978577,35.084991],[128.973907,35.134827],[128.924988,35.09083],[128.810516,35.08416],[128.57275400000015,35.16999],[128.3780210000001,35.03611],[128.372467,35.004715],[128.477173,35.05387900000011],[128.501373,35.008331],[128.434967,34.83471700000012],[128.3355100000001,34.871376],[128.356628,34.905266],[128.32913,34.949432],[128.216064,34.93055],[128.20386,34.88832900000011],[128.06665,34.92443800000012],[128.020538,34.986382],[127.86387600000012,34.940269],[127.7674,34.96028100000012],[127.643051,34.900826],[127.593323,34.941658],[127.57639,34.88694],[127.6386,34.81415600000014],[127.773613,34.84388000000013],[127.74776,34.727486],[127.640823,34.616936],[127.556374,34.651382000000126],[127.567757,34.76666],[127.52249100000019,34.856941],[127.4938740000001,34.851662],[127.363876,34.75138900000013],[127.51443,34.591377],[127.389427,34.4711],[127.315262,34.443604],[127.24359100000015,34.511383],[127.124687,34.53721600000011],[127.20166000000017,34.633049],[127.192749,34.569443],[127.242203,34.569443],[127.3286,34.652214],[127.35277,34.69276],[127.3286,34.74305],[127.00972000000012,34.602219],[126.98552700000016,34.526382],[126.88943,34.412491],[126.81165,34.445541000000105],[126.802757,34.569443],[126.772491,34.582771],[126.60027300000012,34.30027],[126.556374,34.300545],[126.478317,34.34527],[126.46332,34.48472],[126.288307,34.59027],[126.266937,34.683327],[126.303864,34.75111],[126.45166000000017,34.578049],[126.451393,34.648331],[126.52887,34.61416],[126.618317,34.619438000000116],[126.47692900000015,34.72499],[126.65971400000012,34.81276700000012],[126.59082000000012,34.877487],[126.539978,34.873047],[126.51053600000012,34.775551],[126.37580900000012,34.78555],[126.43359,34.963608],[126.34387200000015,34.917496],[126.318047,34.932213],[126.24915,35.116661],[126.344994,35.151657],[126.359711,35.06916],[126.431374,35.023323],[126.45887800000014,35.090546],[126.360527,35.18027],[126.42192100000011,35.406654],[126.523041,35.524994000000106],[126.68775900000014,35.53333],[126.66499300000011,35.59166],[126.498596,35.578049],[126.4747,35.635826000000115],[126.75193800000011,35.778328],[126.80108600000017,35.861664],[126.78830700000015,35.894714],[126.615257,35.89083],[126.631653,35.96720900000014],[126.7619320000001,35.99527],[126.872993,36.054718],[126.68533300000013,35.999962],[126.544418,36.136406],[126.46443,36.57471],[126.52721,36.59277],[126.49720800000011,36.72387700000013],[126.34749,36.73999],[126.30359,36.692764000000125],[126.33693,36.645546],[126.29305,36.58194],[126.272774,36.717491],[126.17276000000015,36.67276800000013],[126.12359600000013,36.70916000000011],[126.12886000000013,36.751663],[126.19166600000015,36.819885],[126.18442,36.878326],[126.291092,36.962494],[126.32166300000016,36.88444],[126.28942900000015,36.785828],[126.401093,36.85193600000014],[126.413597,36.93332700000013],[126.348328,36.95249200000011],[126.35582,36.99638],[126.44247,36.99971800000014],[126.483322,36.84249100000011],[126.51416,36.941376],[126.502487,37.052773],[126.61998000000015,36.9727630000001],[126.781097,36.963608],[126.830551,36.894157],[126.83859300000017,36.75332600000013],[127.000229,36.92972],[126.908043,36.91944],[126.752777,37.04860700000012],[126.776382,37.123604],[126.86525700000014,37.140831],[126.869141,37.176384],[126.769989,37.174164],[126.69442700000013,37.12165800000013],[126.661102,37.1561],[126.661926,37.253883],[126.7661,37.23193],[126.865807,37.26694],[126.843323,37.30832700000013],[126.722214,37.328049],[126.74192800000014,37.386787],[126.65637200000013,37.411102],[126.62192,37.481377],[126.67442300000016,37.488045],[126.65887,37.554993],[126.549988,37.642494],[126.532761,37.762497],[126.64137300000017,37.760551000000135],[126.68054,37.684433],[126.727768,37.952492],[126.82443,38.01611],[126.99054,38.218048],[127.133881,38.29916400000013],[127.36638,38.323326],[128.07995600000015,38.311935],[128.27969,38.43027500000011],[128.30359,38.58387800000014],[128.3635560000001,38.625244],[128.53247,38.330551]]]]}},{"type":"Feature","properties":{"FIPS":"KU","ISO2":"KW","ISO3":"KWT","UN":414,"NAME":"Kuwait","AREA":1782,"POP2005":2700,"REGION":142,"SUBREGION":145,"LON":47.376,"LAT":29.476},"geometry":{"type":"MultiPolygon","coordinates":[[[[48.36249,29.450272],[48.388329,29.395554],[48.26693,29.44111],[48.283043,29.468884],[48.36249,29.450272]]],[[[48.224709,29.594719],[48.167763,29.612221],[48.07998700000012,29.773331],[48.1461,29.929722],[48.11222,29.97833],[48.15222,29.99194000000011],[48.188538,29.98193],[48.359444,29.744999],[48.329987,29.67499],[48.224709,29.594719]]],[[[48.032219,29.968052],[48.008606,29.973885],[48.03777,30.011105],[48.111664,30.023048],[48.032219,29.968052]]],[[[47.93109900000013,30.018887],[48.006096,29.803608],[48.088051,29.71416],[48.167213,29.55305],[47.96332600000011,29.6277730000001],[47.708321000000126,29.407494],[47.707222000000115,29.375832000000113],[47.822487,29.328606],[47.962212000000136,29.384438],[48.0286,29.34499],[48.17305,28.97805],[48.379715,28.714165],[48.41659,28.545277],[47.68888,28.538883],[47.602768,28.634995000000117],[47.57332,28.777222],[47.459991000000116,28.99944],[46.546944,29.104198],[46.65741,29.19086],[46.940269,29.571663],[47.169991,30.01527],[47.351105,30.08166100000011],[47.71555,30.084438],[47.93109900000013,30.018887]]]]}},{"type":"Feature","properties":{"FIPS":"KZ","ISO2":"KZ","ISO3":"KAZ","UN":398,"NAME":"Kazakhstan","AREA":269970,"POP2005":15210609,"REGION":142,"SUBREGION":143,"LON":67.301,"LAT":48.16},"geometry":{"type":"MultiPolygon","coordinates":[[[[50.116104,44.83804],[50.188042,44.854713],[50.150269,44.812767],[50.06666600000011,44.83416],[49.978867,44.956383],[50.04249600000014,45.056938],[50.11277,45.077492],[50.015549,44.963326],[50.059158,44.874992],[50.116104,44.83804]]],[[[50.29166,44.949997],[50.26333,44.958046],[50.265549000000135,45.036659],[50.28833,45.08027600000014],[50.342766,45.08305400000012],[50.32972,44.978874],[50.29166,44.949997]]],[[[53.024994,46.2286],[52.960274,46.266388],[53.04639,46.367493],[53.097488,46.29666],[53.024994,46.2286]]],[[[69.18553,55.34388000000013],[69.232758,55.3325],[69.351379,55.39444],[69.67276,55.354439],[69.8461,55.294998],[69.949142,55.204163],[70.048325,55.206940000000145],[70.238876,55.13888500000013],[70.469986,55.29666],[70.578323,55.276382],[70.67915,55.31360600000011],[70.843323,55.301933],[70.803314,55.250832],[70.997757,55.09582],[70.968323,54.893051],[71.01304600000014,54.797493000000145],[71.105255,54.736107],[71.227478,54.733879],[71.27887,54.690269],[71.288315,54.634163],[71.1602630000001,54.595543],[71.221649,54.41027],[71.21360800000014,54.325829],[70.996933,54.339157],[70.997757,54.278046],[71.07499700000011,54.270828],[71.06694,54.193604],[71.185532,54.103325],[71.25776700000011,54.126099],[71.33638,54.214996],[71.483322,54.193604],[71.501099,54.113327],[71.653595,54.109993],[71.749146,54.154434],[71.730545,54.213051],[71.767761,54.255272000000105],[71.95832800000011,54.247772],[72.12221,54.133049],[72.196091,54.137497],[72.209152,54.195267],[72.08966,54.25272],[72.051651,54.387772],[72.19693,54.373878],[72.36026,54.24416],[72.32165500000013,54.186104],[72.508881,54.14277],[72.392487,53.93110700000011],[72.468597,53.90888200000012],[72.55053700000013,53.960274],[72.73109,53.96166],[72.669434,54.063606],[72.527435,54.050766],[72.55053700000013,54.107773],[72.6133120000001,54.145271],[72.975266,54.12832600000013],[73.000549,54.053604],[73.069443,53.988884],[73.29081700000012,53.95388],[73.5458220000001,53.959435],[73.54166,54.015274],[73.611649,54.077492],[73.763885,54.065544],[73.711655,53.874992],[73.44303900000011,53.875824],[73.35637,53.789719],[73.3288730000001,53.694153],[73.26026900000011,53.683327],[73.238586,53.64444000000014],[73.253876,53.57999],[73.414429,53.527771],[73.37025,53.46693],[73.437195,53.436104000000114],[73.581665,53.519714],[73.60081500000013,53.57305100000013],[73.676926,53.619438],[73.91748,53.65416],[74.24664300000012,53.602219],[74.28387,53.52748900000011],[74.376373,53.471657],[74.429153,53.478600000000135],[74.48359700000015,53.584435],[74.438873,53.60999],[74.46638500000012,53.693321],[74.64694,53.688324],[74.67526,53.76388500000013],[74.789429,53.83638],[74.947205,53.8386],[75.033875,53.80666],[75.45721400000014,53.994156],[75.38415,54.06721],[75.501099,54.11527300000011],[75.69136,54.110275000000115],[76.207214,54.25916],[76.18553,54.295547],[76.23887600000012,54.35889],[76.487762,54.32555],[76.656937,54.367767],[76.70665,54.447212],[76.81164600000011,54.447769],[76.85971100000012,54.299438],[76.721375,54.15332000000012],[76.39332600000012,54.163605],[76.521652,53.993881],[77.52388000000013,53.506386],[77.908035,53.271103],[78.92303500000014,52.17638],[79.536377,51.449997],[79.99386600000014,50.813049],[80.077957,50.758087],[80.109604,50.75947600000012],[80.06712,50.799477],[80.091858,50.84948],[80.46791100000013,50.968231],[80.48678600000011,51.058777],[80.43067900000011,51.119087],[80.4387210000001,51.197968],[80.633438,51.21476],[80.687836,51.31472],[81.040833,51.181435],[81.183594,51.196098],[81.07304,50.952255],[81.424698,50.966385],[81.468048,50.81610100000012],[81.43526,50.76916],[81.468048,50.742218],[81.67859,50.741104],[81.91554300000013,50.78694],[82.150269,50.710548],[82.35637,50.75972],[82.442749,50.75804900000014],[82.498871,50.7211],[82.720261,50.810822000000144],[82.727478,50.89888],[82.76111,50.910820000000115],[83.009995,50.88943],[83.087204,50.92360700000012],[83.138596,51.001938],[83.456375,51.002495000000124],[83.835815,50.880821],[83.97249,50.80166],[83.969986,50.715546],[84.170532,50.595825],[84.224701,50.50972],[84.19693,50.453049000000135],[84.26388500000013,50.274994],[84.363037,50.212212],[84.52106,50.21678200000014],[85.014435,50.07582900000011],[85.058319,50.013611],[84.9791560000001,49.99777],[84.977768,49.912766],[85.083603,49.88138],[85.210541,49.71554600000013],[85.211105,49.64722],[85.258606,49.591377],[85.40387,49.623322000000144],[85.5,49.590271],[85.657761,49.60833000000013],[86.191086,49.472488],[86.245819,49.501389],[86.28749,49.585823],[86.50582900000012,49.676384],[86.61637900000011,49.797218],[86.774994,49.78889],[86.80026,49.702217],[86.682205,49.66999],[86.616653,49.587212],[86.846939,49.52166],[86.839706,49.452217],[86.926651,49.35305],[87.040268,49.271935],[87.29971300000011,49.210548],[87.348206,49.092621],[87.16748,49.133049],[86.87469,49.110825],[86.73054500000012,48.972214],[86.80775,48.82388300000014],[86.78332,48.72777],[86.63804600000014,48.608047],[86.5961,48.53611],[86.46360800000014,48.49360700000011],[86.344147,48.49527],[86.23082,48.42527],[85.915268,48.428879],[85.75915500000013,48.38777],[85.61387600000012,48.158325000000104],[85.53776600000015,47.959991],[85.62220800000011,47.62110100000012],[85.60914600000012,47.499435],[85.70555100000013,47.364998],[85.694702,47.21998600000012],[85.568054,47.14444],[85.529312,47.06016],[85.25777,47.05110200000013],[84.963608,46.86416],[84.75943,46.826385],[84.73526,46.836937],[84.77887,46.931664],[84.67804000000012,46.993607],[84.29470800000011,47.0075],[83.922485,46.973877],[83.564987,47.061104],[83.16249,47.22360200000014],[83.040543,47.212212],[83.01471,46.960274],[82.873871,46.763603],[82.70887800000014,46.354156],[82.57332,46.17304200000012],[82.510818,45.90192400000012],[82.317764,45.570534],[82.36219800000015,45.495529],[82.649429,45.43026],[82.63554,45.240532000000144],[82.561646,45.12942],[82.481659,45.127472],[82.29693600000013,45.237755],[81.948029,45.157478],[81.815811,45.20053],[81.79776,45.305809],[81.688309,45.350815],[81.55636600000014,45.295815],[80.916931,45.150253],[80.524994,45.10858900000011],[80.409714,45.05164300000013],[80.12136800000013,45.039421],[79.871094,44.904976],[79.875809,44.865532000000144],[80.00166300000012,44.79776],[80.2622070000001,44.82442500000013],[80.520828,44.732475],[80.38499500000012,44.635803],[80.348877,44.450249],[80.399994,44.25831],[80.36276,44.125244],[80.7397,43.465797000000116],[80.81721,43.156067],[80.778595,43.110245],[80.646378,43.14135],[80.383606,43.033577],[80.390274,42.992737],[80.561371,42.92635300000012],[80.578598,42.891075000000114],[80.25526400000012,42.811905],[80.158035,42.632454],[80.27769500000011,42.308144],[80.281097,42.212173],[80.1922,42.20912],[79.95277,42.43412],[79.716934,42.47412],[79.57193000000012,42.453011],[79.44386,42.472176],[79.356644,42.607735],[79.215271,42.679123],[79.19470200000012,42.795792],[79.027771,42.759682],[78.512207,42.885239],[78.101654,42.85718],[77.72971,42.914673],[77.208191,42.918152000000134],[77.1474910000001,42.96550800000011],[76.976929,42.996346],[76.616928,42.900230000000136],[75.80247,42.94050600000014],[75.747208,42.85051],[75.664429,42.807457],[75.18387,42.868843],[74.893326,42.97912600000012],[74.740814,42.998299],[74.56694,43.132736],[74.24109,43.216629],[73.583878,43.03857],[73.525818,42.79996],[73.43248,42.621063000000106],[73.451096,42.533295],[73.5333250000001,42.434395],[73.50722,42.404671],[73.344147,42.429123],[73.328598,42.512459],[73.148605,42.56078],[72.883881,42.554131],[72.75722,42.656067],[72.29693600000013,42.7735750000001],[71.89804100000015,42.82746900000012],[71.72554,42.821640000000116],[71.597214,42.763588000000134],[71.42469800000015,42.804138],[71.275269,42.75914],[71.166931,42.68691300000012],[71.16970800000013,42.626076],[71.0310970000001,42.573586],[70.95498700000012,42.427467],[70.96582,42.393303],[70.87330600000013,42.31303],[70.906937,42.266907],[70.97081000000014,42.25467],[70.85693400000014,42.19635],[70.752777,42.20107300000012],[70.630539,42.021629],[70.539154,42.038017],[70.488312,42.099968],[70.39637800000014,42.07302],[70.24414,41.955238],[70.144989,41.831375],[69.9308170000001,41.711662],[69.642212,41.673325],[69.36137400000013,41.48472],[69.25499,41.47082],[69.05636600000014,41.37943300000012],[69.08055,41.35083],[69.06303400000013,41.216103],[68.783325,41.084435],[68.72442600000011,40.978874],[68.593597,40.919991],[68.568054,40.861382],[68.589157,40.738884],[68.628586,40.718048],[68.649155,40.62166],[68.479706,40.59444],[68.233322,40.691376],[68.048035,40.810272],[68.103317,40.879433],[68.15416,41.03611],[67.935532,41.183327],[67.071945,41.143295],[66.71998600000012,41.174995],[66.558594,41.73276],[66.526382,42.003052],[66.02916,42.003052],[66.03665200000012,42.42332],[66.070786,42.42387],[66.123871,42.996941000000106],[65.82193,42.87721],[65.52693,43.31721],[65.26832600000012,43.432495],[64.93137,43.73777],[64.45804,43.54805],[63.21138,43.636383],[62.025108,43.48479],[61.149162,44.211098],[58.569717,45.57111],[55.99749,45.001106],[56.000961,41.32845300000014],[55.903877,41.333603],[55.65249,41.267212],[55.45694,41.2866590000001],[55.394714,41.387215],[55.28916,41.439713],[54.971657,41.802216],[54.956657,41.91249],[54.761108,42.05888],[54.1730500000001,42.337212],[53.99554400000011,42.34860200000014],[53.462769,42.27137800000014],[53.0149990000001,42.138885],[52.4400710000001,41.74094],[52.495544,41.898605],[52.405823,42.094437],[52.435822,42.17749],[52.59471,42.335266],[52.74471,42.64444],[52.738327,42.71027400000014],[52.55499300000014,42.805824000000136],[52.34304800000012,42.825829],[52.17749,42.88333100000011],[51.902489,42.841934],[51.655548,43.18332700000013],[51.265549000000135,43.153046],[51.31443800000011,43.29277000000013],[51.315826,43.44971],[51.265549000000135,43.55915800000014],[51.210274,43.613609],[51.146103,43.619713000000104],[51.028603,43.789719],[50.85972,44.061661],[50.839989,44.193047],[50.678604,44.264442000000145],[50.281105,44.32861],[50.231377,44.368881],[50.239433,44.57638],[50.31554,44.6586],[50.693604,44.615547],[50.86666,44.628601],[50.99527,44.530548000000124],[51.139992,44.47943],[51.37165800000014,44.5186],[51.570274,44.513885],[51.42722,44.609161],[51.30749500000013,44.59249],[51.22221,44.726379],[50.953049,44.86193800000012],[50.949715,44.960548],[51.242493,45.099716000000114],[51.247772,45.16777],[51.40527,45.37054400000011],[51.566666,45.333328],[51.72388,45.402771],[51.944992,45.364441],[52.48333,45.408325000000104],[53.10083,45.298332],[53.22804300000013,45.337769],[52.758331,45.511665],[52.733047,45.549438],[52.74777200000011,45.646942],[52.93638,45.803047],[53.08305400000012,46.001389],[53.15638,46.267494],[53.145,46.37249],[53.039993,46.483604],[52.99721,46.48249],[53.027771,46.55222],[53.0911,46.553322],[53.207214000000135,46.64666],[53.194153,46.715],[53.10083,46.77833],[53.06471,46.883881],[52.865829,46.951935],[52.624161,46.944153],[52.45082900000011,46.995827],[52.23999,46.80249],[52.097214,46.81332400000014],[51.771378,46.907211],[51.683052,46.954437],[51.683876,46.9961],[51.634995,47.042496],[51.18999,47.114716],[50.844154,47.008049],[50.786385,46.93971],[50.709717,46.94638],[50.52166,46.872215],[50.430275,46.9011],[49.81220200000013,46.531937],[49.768883,46.56304200000011],[49.62470200000013,46.576653],[49.563042,46.52998400000012],[49.454163,46.510818],[49.324158,46.564995],[49.387215,46.493317000000104],[49.371368,46.393326],[49.280823,46.438599000000124],[49.21666,46.378036],[49.222527,46.34630600000014],[48.918129,46.48922],[48.833878,46.484993],[48.740273,46.558327],[48.560547,46.564995],[48.494431,46.667206000000135],[48.538605,46.751656],[48.69109300000014,46.76777],[48.76526600000011,46.690819],[48.941376,46.704163],[49.02721,46.776093],[48.7211,47.09833],[48.568886,47.372765],[48.443871,47.436928],[48.204430000000116,47.70498700000013],[48.064713,47.779709],[47.691376,47.765831],[47.435822,47.843597],[47.383324,47.68888],[47.136658,47.822495],[47.122765,48.27166000000011],[46.49916100000013,48.4175],[46.778877000000136,48.936653],[46.954437,49.013054],[47.0563810000001,49.124435],[47.039993,49.224709],[46.79583,49.339714],[46.929436,49.863609],[47.18832400000014,49.94415300000014],[47.34943,50.080276],[47.346382,50.12221],[47.280548,50.182213],[47.32083,50.299164],[47.41610000000014,50.331940000000145],[47.49082900000013,50.421379],[47.62027000000012,50.459991],[48.012215,50.191376],[48.127487,50.076103],[48.139717,50.008606],[48.251663,49.869713000000104],[48.450829,49.8169400000001],[48.796944,49.94193300000012],[48.916939,50.03416],[48.746658,50.272766],[48.68915600000014,50.51332900000011],[48.697487,50.59193],[48.85833000000014,50.60527],[49.03082300000011,50.68804200000011],[49.158325,50.79277],[49.431107000000104,50.854996],[49.44082600000013,50.905823],[49.36444100000011,50.979713],[49.46194,51.124161],[49.804161,51.110275],[49.968048000000124,51.226097],[50.363327,51.31694],[50.35443900000013,51.378044],[50.38472,51.425270000000125],[50.548882000000106,51.4686],[50.557495,51.580276],[50.60277600000012,51.639992],[50.7174910000001,51.62249],[50.68277,51.573051],[50.81055,51.59166],[50.81360600000011,51.64804800000013],[50.758606,51.719711],[50.77330000000012,51.76918],[50.863327,51.75138900000013],[50.93888,51.688881],[51.275269,51.683876],[51.38999200000012,51.63832900000011],[51.39138,51.568886],[51.258888,51.550545],[51.30305,51.479713],[51.64582800000011,51.48555],[51.690826,51.45527],[51.803322,51.5],[51.780548,51.594437],[51.874161,51.67360700000011],[52.105827,51.66415400000011],[52.17749,51.728874],[52.338326,51.782211],[52.501389000000124,51.51028],[52.603325,51.45694],[52.769714,51.504166],[52.884995,51.464996],[53.14749100000011,51.501106],[53.428604,51.491661000000136],[53.638603,51.393051],[53.61055,51.303604],[53.678329,51.227486],[53.95721,51.193047],[54.133049,51.106102],[54.16721300000011,50.998329],[54.30138,50.907494],[54.506386,50.856941],[54.438042,50.765274],[54.397774,50.625549],[54.453323,50.55555],[54.523933,50.52884],[54.610275,50.54361],[54.701935,50.60694100000012],[54.658325,50.721931],[54.673882000000106,50.873878000000104],[54.548607,50.9222180000001],[54.548607,51.006386],[54.647217,51.036942000000124],[54.82888,50.98333000000014],[55.369987,50.65193],[55.49777200000011,50.6616590000001],[55.539436,50.60916],[55.692490000000134,50.532494],[56.116104000000114,50.739159],[56.17249300000014,50.913048],[56.337212000000136,50.891106],[56.449158000000125,50.973045],[56.43916,51.034996],[56.510826,51.08332800000011],[56.626099000000124,50.98582],[56.729156,50.977768],[56.700272,51.05638],[56.774437,51.09083],[56.873322000000144,51.058327],[57.13333100000011,51.08804],[57.266106,51.018051],[57.36110700000012,50.899994],[57.481934,50.86472],[57.56916,50.925552],[57.741936000000116,50.913605000000125],[57.749718,51.07249500000012],[57.79443400000013,51.118942],[58.1722180000001,51.054436],[58.215271,51.115829],[58.337769,51.156097],[58.609993,51.03833],[58.624435,50.988602],[58.566666,50.908882],[58.66554300000013,50.80499300000014],[58.94026900000012,50.683052],[59.492493,50.629433],[59.58638000000013,50.58443],[59.575829,50.5563810000001],[59.46638500000011,50.532494],[59.542496,50.478325],[59.6508260000001,50.53388],[59.81972,50.5472180000001],[59.939713,50.711937],[59.98444,50.838326],[60.04361,50.863327],[60.165268,50.84582],[60.170273,50.77527],[60.3122100000001,50.69249],[60.698044,50.6616590000001],[61.403603,50.78999],[61.461662,50.873047],[61.549164000000125,51.215546],[61.685822,51.265831],[61.581665,51.30305],[61.490829,51.424995],[60.978043,51.497772],[60.93387600000011,51.561104],[60.94294700000011,51.61888900000014],[60.527771,51.62721],[60.386658000000125,51.672493000000145],[60.373604,51.695541],[60.461662,51.73777],[60.496658,51.801933],[60.22416,51.871933],[60.06444,51.873604000000114],[60.00222,51.958328],[60.02555100000012,52.000832],[60.22304500000013,51.999161],[60.486656,52.15470900000014],[60.715271,52.156937],[60.78249,52.220268],[61.061935000000126,52.342491],[60.9786,52.41304800000012],[60.970825,52.494995],[60.83471700000012,52.529991],[60.83471700000012,52.63582600000012],[60.73582,52.637497],[60.694153000000135,52.680824],[60.731659,52.749718],[61.01999,52.88638],[61.099159,52.981659],[61.203323,53.021935],[61.354996000000135,52.991936],[61.46277,53.02971600000012],[61.695541,52.98304700000011],[61.862495,52.98666],[61.967209,52.93749200000013],[62.11832400000014,53.00416600000011],[62.144157000000114,53.080826],[62.104713,53.12499200000013],[61.60638,53.2286],[61.50972,53.21971100000013],[61.390274,53.27388],[61.184715,53.306656],[61.151657,53.37471],[61.24194,53.506943],[61.424995,53.442215],[61.577492,53.513329],[61.53889,53.593323],[61.395271,53.59277],[61.324436,53.555832],[61.182495,53.569443],[61.094154,53.616936],[60.90554800000012,53.62027],[60.908325,53.66027100000014],[61.05971,53.643326],[61.226936,53.811935],[61.118599,53.883331],[61.00055,53.88971700000013],[61.01416,53.947487],[61.113052,53.963608],[61.3261,54.06916],[61.420273,54.066666],[61.486656,54.015549000000135],[61.789719,54.00416600000011],[61.85527000000013,53.95166],[62.0258260000001,53.939713],[62.02471200000014,54.024994],[62.35804700000011,54.022766],[62.42222,53.938042],[62.547493,53.87943300000012],[62.57416500000011,53.896942],[62.565544,54.03305],[62.591377000000136,54.053047000000106],[62.68721000000011,54.085266],[63.109993,54.09554300000013],[63.14888,54.11416],[63.13526900000011,54.174164],[63.172218,54.186378000000104],[63.4049910000001,54.172768],[63.72638,54.25972],[63.899101,54.19813],[64.019989,54.23777],[63.979988000000105,54.28054800000012],[63.99277,54.311104],[64.53887900000012,54.363884],[64.73776,54.341103],[64.924423,54.409714],[64.997208,54.396385],[65.10609,54.315544],[65.216385,54.318886],[65.24054,54.34804],[65.20109600000012,54.46138000000013],[65.218597,54.52777100000014],[65.48332,54.638046],[65.75749200000013,54.601387],[65.844437,54.684715],[65.96693,54.713608],[65.99109,54.617493],[66.49525,54.723045],[66.722763,54.726936],[66.80886800000013,54.76666300000011],[67.24552900000015,54.80666],[67.322769,54.86749],[67.581375,54.85443900000013],[67.766388,54.891937],[67.83221,54.96332600000011],[67.929703,54.98333],[68.03442400000012,54.950272],[68.205261,54.966103],[68.329987,55.06805400000013],[68.2102660000001,55.13888500000013],[68.220261,55.18721],[68.625809,55.201935],[68.731369,55.3705440000001],[68.87997400000012,55.34277],[68.933319,55.28611],[69.00249,55.28749800000014],[69.001099,55.353607],[68.939423,55.37027],[68.92330900000013,55.424164],[68.952484,55.44471],[69.16832000000011,55.40054],[69.18553,55.34388000000013]]]]}},{"type":"Feature","properties":{"FIPS":"LA","ISO2":"LA","ISO3":"LAO","UN":418,"NAME":"Lao People's Democratic Republic","AREA":23080,"POP2005":566391,"REGION":142,"SUBREGION":35,"LON":102.471,"LAT":19.905},"geometry":{"type":"Polygon","coordinates":[[[107.5466,14.708618],[107.473038,14.639999],[107.253601,14.531111],[107.12109,14.405277],[106.853592,14.303053],[106.75262,14.40942],[106.627762,14.466942],[106.540741,14.598724],[106.47304,14.56361],[106.408333,14.456387],[106.3311,14.444721],[106.253883,14.494442],[106.216377,14.376942],[106.004707,14.373053],[106.03387,14.237219],[106.175537,14.06472],[106.111099,13.945831],[106.056641,13.929998],[105.910278,13.932842],[105.796944,14.026388],[105.7836,14.081387],[105.559128,14.168325],[105.380814,14.105276],[105.282761,14.178055],[105.209991,14.284443],[105.210602,14.349648],[105.444427,14.450554],[105.536102,14.563332],[105.5125,14.805832],[105.566383,14.883053],[105.590553,15.000555],[105.468872,15.124998],[105.531662,15.394444],[105.599991,15.433054],[105.632477,15.67861],[105.596367,15.728054],[105.50471,15.767498],[105.449142,15.756943],[105.401093,15.80722],[105.345543,15.929998],[105.419708,16.013885],[105.07693,16.097496],[105.012497,16.251663],[104.752777,16.517498],[104.76915,16.721107],[104.740807,17.006943],[104.809143,17.190273],[104.805542,17.381939],[104.699142,17.523331],[104.467758,17.64333],[104.335541,17.826385],[104.27777,17.849998],[104.216927,17.988049],[104.103317,18.104717],[104.07193,18.199718],[103.972488,18.329441],[103.84248,18.311108],[103.507767,18.421661],[103.305252,18.421108],[103.236366,18.353886],[103.256653,18.274998],[103.06942,18.123026],[103.044983,17.99416],[102.95166,18.007221],[102.858597,17.974716],[102.683594,17.819996],[102.609154,17.882217],[102.593872,17.95694],[102.419434,17.983883],[102.295258,18.050274],[102.178864,18.193886],[102.089394,18.214983],[101.907211,18.034164],[101.779984,18.063332],[101.689148,17.90583],[101.575821,17.85944],[101.559708,17.813835],[101.58249,17.785831],[101.309708,17.624718],[101.162773,17.459995],[101.02832,17.544441],[100.91277,17.575275],[100.987488,17.71944],[101.021103,17.890274],[101.111099,17.953606],[101.170822,18.087219],[101.160263,18.342495],[101.09166,18.376942],[101.058029,18.446384],[101.267487,18.68055],[101.236923,18.741383],[101.251938,18.889717],[101.354431,19.038609],[101.289978,19.106106],[101.202477,19.353886],[101.210541,19.459438],[101.268883,19.477219],[101.281097,19.562218],[101.219353,19.596405],[100.912201,19.619717],[100.775269,19.48444],[100.651932,19.551662],[100.582764,19.49305],[100.503601,19.526665],[100.40416,19.754444],[100.50916,19.881939],[100.58046,20.157768],[100.520538,20.144997],[100.454353,20.190887],[100.332764,20.388607],[100.25638,20.385273],[100.16304,20.28833],[100.105263,20.309441],[100.09137,20.348606],[100.17526,20.635273],[100.253883,20.745548],[100.368874,20.826942],[100.531937,20.805275],[100.647217,20.870552],[100.633614,20.891541],[100.52554,20.871109],[100.519989,20.94944],[100.545532,21.025276],[100.621368,21.051662],[100.671921,21.128052],[100.722603,21.307709],[100.83472,21.302498],[100.997482,21.395828],[101.161652,21.530552],[101.148239,21.572636],[101.184708,21.558887],[101.265266,21.376106],[101.234154,21.252777],[101.281937,21.180275],[101.568604,21.247494],[101.73256,21.139492],[101.781097,21.142494],[101.845261,21.216106],[101.8461,21.256386],[101.739151,21.316387],[101.783051,21.650829],[101.75249,21.724438],[101.76527,21.834442],[101.625526,21.971939],[101.574432,22.20916],[101.680542,22.379162],[101.661926,22.413052],[101.69136,22.472218],[101.777481,22.500832],[101.91998,22.436108],[102.030823,22.455273],[102.119431,22.430275],[102.238312,22.242493],[102.419434,22.120552],[102.505547,21.962215],[102.607758,21.925552],[102.648331,21.849998],[102.676651,21.65583],[102.972763,21.74416],[102.988586,21.575275],[102.874977,21.432774],[102.904984,21.440273],[102.883041,21.254997],[102.918869,21.232494],[102.914436,21.168053],[103.037491,21.053886],[103.170532,20.846664],[103.603867,20.741104],[103.693588,20.657219],[103.738312,20.669994],[103.77887,20.784443],[103.856644,20.852497],[104.109154,20.977219],[104.314148,20.889717],[104.499153,20.713608],[104.6436,20.660275],[104.5161,20.51722],[104.381927,20.444717],[104.514427,20.407497],[104.616089,20.416664],[104.831673,20.228607],[104.943588,20.181385],[104.984711,20.098331],[104.979156,20.004997],[104.785812,19.887497],[104.786926,19.861385],[104.8461,19.853329],[104.837769,19.794163],[104.713318,19.746384],[104.64027,19.611942],[104.5161,19.606106],[104.420822,19.67194],[104.24609,19.704441],[104.135269,19.659439],[104.037247,19.692944],[104.021652,19.665829],[104.10165,19.559719],[104.103867,19.478607],[104.052757,19.417496],[103.87997,19.319996],[103.879433,19.29361],[103.998596,19.229717],[104.059418,19.239994],[104.1711,19.19305],[104.224152,19.151386],[104.220757,19.111324],[104.283867,19.110554],[104.526382,18.976662],[104.573318,18.900551],[104.741364,18.797218],[105.105553,18.696663],[105.193863,18.642494],[105.194138,18.609999],[105.14638,18.59444],[105.103317,18.466938],[105.18332,18.334442],[105.258614,18.254444],[105.318604,18.259998],[105.32193,18.196678],[105.358597,18.167496],[105.50444,18.168327],[105.627243,17.987503],[105.753883,17.669994],[105.860809,17.618607],[106.084717,17.361664],[106.34082,17.169163],[106.444427,16.987495],[106.52026,16.965549],[106.561096,16.996941],[106.56026,16.677494],[106.685532,16.45805],[106.76054,16.421383],[106.845261,16.535553],[106.880539,16.53611],[106.987198,16.299721],[107.093887,16.300819],[107.14722,16.263332],[107.161102,16.187775],[107.33415,16.056942],[107.464706,16.078609],[107.475273,16.021111],[107.398331,15.913887],[107.20387,15.859997],[107.175537,15.784164],[107.263046,15.647778],[107.420258,15.503332],[107.517487,15.46833],[107.695251,15.270832],[107.615257,15.06222],[107.46776,15.025],[107.482758,14.966108],[107.541367,14.918055],[107.5466,14.708618]]]}},{"type":"Feature","properties":{"FIPS":"LE","ISO2":"LB","ISO3":"LBN","UN":422,"NAME":"Lebanon","AREA":1023,"POP2005":401074,"REGION":142,"SUBREGION":145,"LON":35.888,"LAT":33.92},"geometry":{"type":"Polygon","coordinates":[[[35.623634,33.245728],[35.585548,33.270271],[35.504715,33.094162],[35.428329,33.068886],[35.10083,33.093605],[35.203049,33.20916],[35.273331,33.454163],[35.357216,33.528328],[35.476944,33.794716],[35.469994,33.903053],[35.569443,33.906944],[35.634438,34.012772],[35.628326,34.198326],[35.670555,34.313889],[35.982773,34.525833],[35.972771,34.647499],[36.459999,34.635277],[36.351227,34.500748],[36.429993,34.501938],[36.525833,34.431938],[36.623741,34.204994],[36.283333,33.91777],[36.388611,33.858604],[36.378052,33.831665],[36.240829,33.856384],[36.07,33.827217],[35.933884,33.654716],[36.059166,33.579437],[35.826942,33.404999],[35.810555,33.360832],[35.624718,33.275551],[35.623634,33.245728]]]}},{"type":"Feature","properties":{"FIPS":"LG","ISO2":"LV","ISO3":"LVA","UN":428,"NAME":"Latvia","AREA":6205,"POP2005":2301793,"REGION":150,"SUBREGION":154,"LON":25.641,"LAT":56.858},"geometry":{"type":"Polygon","coordinates":[[[21.068607,56.435547],[21.026665,56.614159],[21.06472,56.742767],[21.053608,56.83638],[21.261387,56.922768],[21.391663,57.021935],[21.420551,57.289436],[21.73333,57.576942],[22.00111,57.597214],[22.610275,57.756386],[22.584164,57.676102],[22.637218,57.588882],[23.137218,57.363052],[23.259163,57.098045],[23.586109,56.976654],[23.785831,56.970268],[24.155273,57.097488],[24.407497,57.25666],[24.362217,57.580826],[24.289719,57.792496],[24.31498,57.871826],[24.420273,57.874435],[24.542774,57.95166],[24.723885,57.964996],[25.124439,58.076103],[25.179718,58.070274],[25.247215,57.992493],[25.299999,58.01416],[25.263054,58.06916],[25.294998,58.084435],[25.622772,57.916382],[26.034996,57.823326],[26.299164,57.611382],[26.523609,57.523048],[26.608887,57.526939],[26.898331,57.633881],[27.018608,57.611382],[27.087219,57.56221],[27.547218,57.536385],[27.527222,57.438599],[27.861107,57.302216],[27.848331,57.174164],[27.70166,56.914711],[27.731106,56.869156],[27.837776,56.875549],[27.938885,56.82444],[27.917496,56.78611],[27.943607,56.722763],[28.147774,56.471375],[28.237774,56.271103],[28.168011,56.150154],[28.118328,56.167213],[27.92944,56.113327],[27.647217,55.924164],[27.598824,55.791718],[27.156105,55.846382],[26.989994,55.834717],[26.849998,55.710823],[26.745274,55.686653],[26.661663,55.705826],[26.591385,55.674995],[26.338608,55.726379],[26.19083,55.867493],[25.696941,56.115273],[25.096943,56.201103],[24.899719,56.450546],[24.653328,56.365829],[24.558331,56.28833],[24.44944,56.269714],[24.332218,56.310547],[24.16333,56.261108],[23.948883,56.332214],[23.608608,56.364159],[23.525276,56.33416],[23.319996,56.380272],[23.171108,56.361938],[23.096107,56.305824],[22.941383,56.423882],[22.691383,56.356659],[22.519165,56.404434],[22.067219,56.419441],[21.354443,56.23999],[21.244438,56.168327],[21.218052,56.089989],[21.051685,56.077309],[20.971939,56.245827],[20.995548,56.508331],[21.02861,56.508049],[21.068607,56.435547]]]}},{"type":"Feature","properties":{"FIPS":"BO","ISO2":"BY","ISO3":"BLR","UN":112,"NAME":"Belarus","AREA":20748,"POP2005":9795287,"REGION":150,"SUBREGION":151,"LON":28.047,"LAT":53.54},"geometry":{"type":"Polygon","coordinates":[[[26.613209,55.674835],[26.661663,55.705826],[26.745274,55.686653],[26.849998,55.710823],[26.989994,55.834717],[27.156105,55.846382],[27.598824,55.791718],[27.647217,55.924164],[27.92944,56.113327],[28.124996,56.16777],[28.312496,56.049995],[28.387497,56.0961],[28.646107,56.093605],[28.754166,55.95388],[28.846943,55.94249],[28.869442,55.980545],[29.059441,56.032768],[29.412216,55.957771],[29.464439,55.911102],[29.40694,55.895828],[29.359161,55.789436],[29.493885,55.688881],[29.946384,55.854439],[30.245827,55.854439],[30.489716,55.799995],[30.756664,55.596657],[30.926247,55.60257],[30.939438,55.399437],[30.81361,55.293327],[30.94833,55.18943],[31.02972,55.043327],[30.838886,54.922493],[30.781387,54.79361],[31.10305,54.645546],[31.144718,54.582214],[31.084442,54.498604],[31.231937,54.456657],[31.311665,54.35083],[31.331665,54.237495],[31.544163,54.143326],[31.844162,54.064438],[31.85722,53.969711],[31.764225,53.80262],[31.902218,53.777771],[32.119713,53.819992],[32.48027,53.714439],[32.503883,53.672218],[32.414711,53.646385],[32.438599,53.577774],[32.738045,53.465828],[32.724434,53.360275],[32.298882,53.131935],[32.136658,53.0886],[31.804996,53.123604],[31.775555,53.194153],[31.630276,53.217209],[31.404716,53.195824],[31.386383,53.099159],[31.266388,53.021935],[31.415272,52.893051],[31.536942,52.856102],[31.58083,52.803047],[31.594997,52.738045],[31.5,52.689987],[31.590553,52.589714],[31.629719,52.370544],[31.586662,52.318886],[31.782497,52.165825],[31.783886,52.108047],[31.422497,52.119987],[31.291386,52.082771],[30.943096,52.073792],[30.930492,52.030083],[30.958885,52.000832],[30.824997,51.947487],[30.665272,51.826942],[30.62833,51.71138],[30.564999,51.643326],[30.553886,51.541939],[30.644161,51.332771],[30.570831,51.301933],[30.551414,51.251846],[30.176384,51.491936],[29.766388,51.440544],[29.717773,51.494438],[29.669716,51.498878],[29.339165,51.373047],[29.181385,51.61805],[29.118053,51.63694],[28.828609,51.546387],[28.766109,51.484718],[28.752499,51.411102],[28.660553,51.451935],[28.62722,51.566383],[28.319443,51.589157],[28.25861,51.661102],[28.088051,51.564995],[27.975273,51.567772],[27.851387,51.62027],[27.811665,51.5886],[27.817497,51.530548],[27.746941,51.465546],[27.679996,51.494438],[27.728329,51.571938],[27.711662,51.596657],[27.511971,51.628868],[27.279442,51.597771],[27.199997,51.670273],[27.196941,51.758888],[26.919716,51.751106],[26.649719,51.820274],[26.444717,51.814995],[26.436939,51.856941],[26.180828,51.861382],[25.775829,51.939156],[25.439995,51.922218],[25.17944,51.959717],[24.891384,51.899994],[24.396664,51.886658],[24.313332,51.822495],[24.279442,51.73777],[24.043053,51.610275],[23.953884,51.584991],[23.896664,51.635826],[23.666664,51.640549],[23.608608,51.608047],[23.646107,51.520828],[23.563885,51.539436],[23.534992,51.653595],[23.660828,52.006104],[23.638607,52.079437],[23.35833,52.204712],[23.206383,52.225266],[23.1654,52.282276],[23.397217,52.514442],[23.597218,52.596382],[23.753887,52.615829],[23.91555,52.695541],[23.941105,52.749718],[23.933052,53.01416],[23.858608,53.195824],[23.640274,53.55916],[23.50404,53.947044],[23.709438,53.923882],[24.088608,53.937492],[24.175552,53.967491],[24.277775,53.899719],[24.38694,53.888603],[24.612217,53.992218],[24.820831,53.977211],[24.840553,54.034439],[24.795551,54.101387],[24.840275,54.14222],[24.968884,54.1586],[25.071941,54.13472],[25.207497,54.221375],[25.391663,54.255829],[25.471661,54.306099],[25.577221,54.240273],[25.506107,54.18721],[25.534443,54.146942],[25.785275,54.160545],[25.807774,54.248047],[25.717495,54.328606],[25.58194,54.311661],[25.547497,54.332771],[25.648884,54.517494],[25.764164,54.579163],[25.72694,54.683052],[25.73666,54.789436],[25.788887,54.87027],[25.911942,54.953606],[26.160828,54.977211],[26.284164,55.148048],[26.521385,55.148331],[26.819717,55.281105],[26.766941,55.313606],[26.45583,55.341377],[26.626663,55.593048],[26.613209,55.674835]]]}},{"type":"Feature","properties":{"FIPS":"LH","ISO2":"LT","ISO3":"LTU","UN":440,"NAME":"Lithuania","AREA":6268,"POP2005":3425077,"REGION":150,"SUBREGION":154,"LON":23.897,"LAT":55.336},"geometry":{"type":"MultiPolygon","coordinates":[[[[21.044441,55.32638500000012],[20.984814,55.27655],[20.942833,55.287201],[21.039440000000127,55.40082600000011],[21.088608,55.514717],[21.09,55.719986],[21.13472,55.629158],[21.10305,55.42083],[21.044441,55.32638500000012]]],[[[25.00000000000011,56.29555],[25.133884,56.188881],[25.582775,56.151382000000126],[25.696941,56.115273000000116],[26.19083000000012,55.86749300000014],[26.338608000000136,55.72637900000012],[26.613209,55.674835],[26.62666,55.593048],[26.45583,55.34138],[26.766941,55.31360600000011],[26.81971700000014,55.281105],[26.52138500000012,55.148331],[26.284164,55.14804800000013],[26.16083,54.977211],[25.911942,54.953606],[25.78889,54.87027],[25.73666,54.789436],[25.726940000000127,54.68305],[25.764164,54.57916300000011],[25.648884,54.517494],[25.547497,54.332771],[25.58194,54.31166100000013],[25.717495,54.328606],[25.807774,54.248047],[25.785275,54.16054],[25.534443,54.14694200000014],[25.5061070000001,54.18721],[25.577221000000122,54.240273],[25.471661,54.306099],[25.391663,54.255829],[25.2075,54.22137500000014],[25.07194,54.13472],[24.968884,54.1586],[24.840275000000133,54.14222],[24.79555,54.10139],[24.840553,54.034439],[24.820831,53.977211],[24.612217,53.992218],[24.38694,53.8886],[24.27777500000013,53.89971900000012],[24.175552,53.96749],[24.088608,53.937492000000134],[23.70944,53.923882],[23.50404,53.947044],[23.51722,54.047218],[23.48444000000012,54.138329],[23.350273,54.238884],[23.115829,54.304436],[22.987495,54.38916000000011],[22.85611,54.4086],[22.78588,54.36384],[22.694439000000102,54.47332],[22.719162,54.691376],[22.869164,54.82332600000012],[22.84249,54.896942],[22.732216000000108,54.962494],[22.643887,54.963608],[22.602219000000105,55.046661],[22.27972,55.06721],[22.061943,55.027489],[21.38128300000011,55.287094],[21.263935000000117,55.248985],[21.289719,55.28749800000014],[21.255999,55.36594800000011],[21.183626000000118,55.34074],[21.247215,55.463326],[21.145275,55.676102],[21.073887000000127,55.73666],[21.04472,55.882767],[21.051685,56.077309],[21.21805,56.08998900000012],[21.244438,56.168327],[21.34583,56.23555],[22.067219000000136,56.419441],[22.519165,56.40443],[22.691383,56.35666],[22.94138,56.423882000000106],[23.096107,56.30582400000014],[23.171108000000117,56.36194],[23.32,56.380272000000105],[23.525276,56.33416],[23.608608,56.364159],[23.948883,56.332214000000135],[24.16333,56.261108],[24.332218,56.310547],[24.44944,56.269714],[24.558331,56.28833],[24.653328,56.365829],[24.899719,56.450546],[25.00000000000011,56.29555]]]]}},{"type":"Feature","properties":{"FIPS":"LI","ISO2":"LR","ISO3":"LBR","UN":430,"NAME":"Liberia","AREA":9632,"POP2005":3441796,"REGION":2,"SUBREGION":11,"LON":-9.657,"LAT":6.682},"geometry":{"type":"Polygon","coordinates":[[[-10.806074,6.403],[-10.970001,6.537777],[-11.359167,6.698333],[-11.378334,6.828055],[-11.492331,6.927091],[-11.421391,6.941944],[-11.305279,7.216944],[-11.189445,7.2575],[-11.102779,7.384444],[-10.863056,7.530555],[-10.68889,7.741666],[-10.607779,7.772499],[-10.602222,8.035276],[-10.497778,8.136389],[-10.355278,8.146387],[-10.302223,8.189999],[-10.266651,8.488377],[-10.218334,8.477499],[-10.169724,8.512777],[-9.965557,8.474998],[-9.787779,8.51222],[-9.6625,8.489166],[-9.48365,8.346931],[-9.462778,8.165554],[-9.406389,8.021111],[-9.437223,7.901111],[-9.353859,7.742367],[-9.384167,7.559999],[-9.485161,7.361989],[-9.422501,7.424999],[-9.325001,7.428611],[-9.099724,7.237222],[-9.106945,7.198889],[-8.846945,7.2675],[-8.79389,7.405277],[-8.709167,7.512777],[-8.70639,7.650555],[-8.660557,7.695],[-8.551689,7.691749],[-8.555834,7.61861],[-8.432987,7.527675],[-8.391945,7.315277],[-8.285557,7.17611],[-8.290556,7.022778],[-8.309446,6.855277],[-8.369167,6.730833],[-8.606384,6.507815],[-8.545,6.493055],[-8.374445,6.360555],[-8.169724,6.275],[-7.999445,6.300555],[-7.897779,6.261944],[-7.822223,6.202777],[-7.758889,5.947222],[-7.685556,5.904444],[-7.655001,5.938055],[-7.498056,5.843333],[-7.426667,5.849722],[-7.431667,5.714999],[-7.3725,5.569444],[-7.436389,5.430555],[-7.3675,5.323333],[-7.495278,5.10111],[-7.560556,5.051389],[-7.588334,4.905833],[-7.551111,4.609444],[-7.56389,4.393332],[-7.525402,4.352806],[-7.717778,4.357778],[-7.948611,4.502222],[-8.252224,4.574444],[-9.142778,5.055555],[-9.407778,5.256389],[-9.591391,5.476666],[-9.784723,5.610833],[-10.233612,6.048611],[-10.364168,6.108611],[-10.377224,6.167222],[-10.764168,6.271111],[-10.811668,6.31111],[-10.806074,6.403]]]}},{"type":"Feature","properties":{"FIPS":"LO","ISO2":"SK","ISO3":"SVK","UN":703,"NAME":"Slovakia","AREA":4808,"POP2005":5386995,"REGION":150,"SUBREGION":151,"LON":19.491,"LAT":48.707},"geometry":{"type":"Polygon","coordinates":[[[17.251656,48.024994],[17.166386,48.012497],[17.116665,48.038605],[17.069145,48.135265],[16.975277,48.188332],[16.94972,48.278049],[16.839996,48.372215],[16.864441,48.467216],[16.933331,48.532776],[16.946182,48.619064],[17.044167,48.771385],[17.187908,48.869446],[17.403889,48.822777],[17.7575,48.876663],[17.91111,48.984993],[18.075279,49.041943],[18.147778,49.115555],[18.208054,49.284164],[18.379444,49.330276],[18.568886,49.496109],[18.851246,49.517357],[18.968609,49.481667],[18.978054,49.39666],[19.163609,49.400551],[19.270275,49.527771],[19.475555,49.599998],[19.520981,49.574165],[19.574997,49.461105],[19.658607,49.406662],[19.790276,49.406662],[19.826942,49.278053],[19.771111,49.206383],[19.846664,49.19194],[19.97472,49.227219],[20.074444,49.175278],[20.143608,49.314995],[20.360554,49.393051],[20.740833,49.388885],[20.916386,49.296104],[20.984165,49.310555],[21.076111,49.423607],[21.278889,49.456665],[21.459442,49.41111],[21.618889,49.436386],[21.956944,49.341385],[22.037777,49.210831],[22.558052,49.079437],[22.53722,48.995544],[22.461384,48.949432],[22.328884,48.686935],[22.158886,48.580276],[22.150555,48.408607],[22.101665,48.37722],[21.726665,48.352493],[21.614166,48.498329],[21.442776,48.575272],[21.153332,48.511108],[20.955276,48.522499],[20.818607,48.576385],[20.660553,48.563332],[20.500832,48.50444],[20.366943,48.308884],[20.299721,48.258606],[20.235554,48.274994],[19.937775,48.135277],[19.630554,48.233887],[19.524166,48.205826],[19.472218,48.087219],[18.849098,48.051064],[18.771664,47.965553],[18.758888,47.907494],[18.84972,47.817772],[18.749729,47.813156],[18.655277,47.758606],[17.784409,47.746803],[17.485867,47.877968],[17.355553,47.988884],[17.251656,48.024994]]]}},{"type":"Feature","properties":{"FIPS":"LS","ISO2":"LI","ISO3":"LIE","UN":438,"NAME":"Liechtenstein","AREA":16,"POP2005":34598,"REGION":150,"SUBREGION":155,"LON":9.555,"LAT":47.153},"geometry":{"type":"Polygon","coordinates":[[[9.533569,47.274544],[9.634998,47.094994],[9.598635,47.063835],[9.474637,47.057457],[9.512499,47.100273],[9.485832,47.200272],[9.533569,47.274544]]]}},{"type":"Feature","properties":{"FIPS":"LY","ISO2":"LY","ISO3":"LBY","UN":434,"NAME":"Libyan Arab Jamahiriya","AREA":175954,"POP2005":5918217,"REGION":2,"SUBREGION":15,"LON":18.023,"LAT":27.044},"geometry":{"type":"Polygon","coordinates":[[[9.948332,27.824444],[9.954166,27.86861],[9.789721,28.256664],[9.873333,28.859165],[9.839722,29.16],[9.766388,29.427776],[9.578888,29.789165],[9.303888,30.122498],[9.637499,30.278053],[9.882496,30.347775],[10.21361,30.730831],[10.290833,30.914165],[10.263887,31.079166],[10.123333,31.422497],[10.139444,31.509998],[10.287222,31.694164],[10.342222,31.729443],[10.504999,31.741386],[10.69861,31.962498],[10.820276,32.029999],[10.8825,32.13916],[11.567499,32.442215],[11.576944,32.512497],[11.466389,32.644165],[11.526081,33.171135],[11.64361,33.099442],[11.888887,33.060555],[12.310555,32.834999],[12.813889,32.799438],[13.259165,32.91861],[13.585554,32.793884],[13.783609,32.799721],[14.177221,32.712494],[14.480276,32.512215],[14.725035,32.449303],[15.165833,32.398605],[15.268888,32.326111],[15.366943,32.167221],[15.357777,31.96833],[15.485277,31.664165],[15.614443,31.495552],[15.761665,31.385555],[16.182777,31.241386],[16.70583,31.228054],[17.370831,31.081665],[17.460831,31.026386],[17.808331,30.923054],[17.916943,30.853333],[18.193333,30.776386],[18.5975,30.463886],[19.001389,30.266941],[19.316109,30.286388],[19.617775,30.417221],[19.770832,30.524437],[20.060555,30.855274],[20.125832,30.979164],[20.155552,31.149998],[20.105553,31.297497],[20.040554,31.358887],[19.96833,31.516102],[19.919441,31.757496],[19.945553,31.969166],[20.084442,32.184715],[20.337219,32.409164],[20.567627,32.560913],[21.062496,32.772774],[21.427776,32.796661],[21.621387,32.933609],[22.355553,32.876663],[22.524998,32.78083],[23.112499,32.6325],[23.081387,32.332771],[23.204441,32.278885],[23.247196,32.216225],[23.73333,32.17305],[23.986385,32.098328],[23.967777,32.067497],[24.094719,32.001106],[24.543053,31.985275],[24.727497,32.026939],[24.991386,31.963055],[25.03611,31.924442],[25.025555,31.841389],[25.152496,31.667774],[25.047222,31.519997],[24.864719,31.362221],[24.869442,31.156387],[25.019165,30.787498],[24.926109,30.506107],[24.706665,30.16861],[24.834721,29.876663],[24.877499,29.506386],[24.997776,29.248886],[25.000832,19.999119],[24.000832,20.001942],[24.002747,19.499065],[19.873886,21.611664],[16.000832,23.450554],[14.997889,23.000591],[14.234999,22.614166],[13.543888,23.16861],[11.986475,23.522305],[11.558887,24.302498],[10.715277,24.567219],[10.422222,24.478054],[10.252222,24.605831],[10.218332,24.75111],[10.054443,24.838055],[10.037498,25.321388],[9.398333,26.153332],[9.400276,26.204998],[9.499443,26.357498],[9.871666,26.514164],[9.930555,26.859722],[9.848331,26.908607],[9.733889,27.316944],[9.948332,27.824444]]]}},{"type":"Feature","properties":{"FIPS":"MA","ISO2":"MG","ISO3":"MDG","UN":450,"NAME":"Madagascar","AREA":58154,"POP2005":18642586,"REGION":2,"SUBREGION":14,"LON":46.706,"LAT":-19.374},"geometry":{"type":"MultiPolygon","coordinates":[[[[49.83361100000013,-17.089725],[49.818054,-17.03945],[49.8605500000001,-16.91389],[50.010551,-16.72556],[49.83361100000013,-17.089725]]],[[[47.219719,-15.436668],[47.207771,-15.43445],[47.200554,-15.427502],[47.219444,-15.420834],[47.219719,-15.436668]]],[[[48.342499,-13.41806],[48.20555100000013,-13.39139],[48.196663,-13.27],[48.281387,-13.19667],[48.32222000000013,-13.2],[48.36332700000014,-13.40667],[48.342499,-13.41806]]],[[[49.604439,-12.62639],[49.594444,-12.62361],[49.59583,-12.610001],[49.60583,-12.614168],[49.604439,-12.62639]]],[[[49.356941,-12.09083],[49.371941,-12.20722],[49.26194,-12.14389],[49.232498,-12.225],[49.27444,-12.28556],[49.346382,-12.303335],[49.366386,-12.2625],[49.518326,-12.34583],[49.595551000000114,-12.50778],[49.570621,-12.648771],[49.79805,-12.81611],[49.943329,-13.03945],[49.943604,-13.224445],[50.148331,-13.82028],[50.144165,-13.98889],[50.176109,-14.06194],[50.159996,-14.22167],[50.216942,-14.304167],[50.19999700000011,-14.57028],[50.33749,-14.99861],[50.49678,-15.249453],[50.433609,-15.58],[50.240829,-15.96889],[50.172775,-15.97972],[50.033882,-15.86694],[50.026665,-15.798334],[49.903885,-15.56111],[49.902222,-15.46833],[49.86610400000012,-15.432501],[49.720551,-15.4475],[49.63361,-15.5575],[49.73360400000013,-15.89972],[49.68249,-16.05945],[49.70971700000012,-16.1275],[49.853607000000125,-16.226948],[49.82499700000011,-16.347778],[49.86305,-16.45528],[49.84583,-16.565834],[49.717499,-16.72389],[49.788605,-16.83028],[49.596939,-16.908611],[49.422775000000115,-17.31583],[49.510277,-17.711391],[49.368332,-18.35139],[48.875549,-19.628334],[48.759163,-20.09111],[48.616661,-20.38806],[48.217773000000136,-21.745003],[47.908051,-22.461945],[47.83721900000012,-22.867226],[47.628883,-23.56167],[47.57582900000011,-23.83917],[47.339439,-24.306114],[47.30332900000013,-24.50389],[47.131386000000134,-24.84139],[47.133049,-24.928059],[46.71944400000012,-25.17139],[46.64666,-25.19167],[46.41333,-25.16167],[46.290833,-25.18611],[45.92305,-25.328892],[45.550278000000105,-25.562225],[45.214722,-25.588337],[44.78249,-25.321114],[44.35583,-25.255558],[44.293327,-25.15778],[44.38916,-25.23278],[44.401939,-25.19334],[44.174721,-25.064724],[44.10833,-25.061668],[44.01722,-24.985279],[44.005272,-24.88028],[43.91777000000013,-24.74111],[43.90583,-24.59889],[43.711937,-24.41722],[43.664162,-24.31139],[43.636383,-23.65778],[43.652222,-23.61945],[43.74582700000013,-23.58167],[43.7594380000001,-23.463612],[43.630554,-23.347504],[43.58805,-23.07833],[43.361938,-22.852779],[43.238884,-22.282501],[43.26082600000012,-22.21334],[43.236824,-22.06874],[43.279160000000104,-21.908337],[43.328049,-21.84639],[43.33416,-21.75861],[43.431107,-21.66389],[43.47222,-21.672501],[43.46611,-21.463337],[43.500549,-21.333889],[43.57972,-21.280556],[43.741104,-21.286114],[43.808609,-21.225281],[43.911659,-20.85],[43.968048,-20.76417],[44.03611,-20.72389],[44.340271,-20.15722],[44.437492,-20.06861],[44.482216,-19.97028],[44.47055,-19.87278],[44.399719,-19.8325],[44.369995,-19.772224],[44.442215,-19.54834],[44.482216,-19.53167],[44.46916,-19.438335],[44.23138,-19.081112],[44.25694,-18.820557],[44.158882,-18.582226],[44.035828,-18.4125],[44.04361,-18.201389],[44.00110600000011,-17.94861],[44.031387,-17.75695],[43.924438,-17.600834],[43.937218,-17.479446],[44.346107,-16.79695],[44.437775,-16.69222],[44.46611,-16.495834],[44.397217000000126,-16.346111],[44.45916,-16.18445],[44.873604000000114,-16.210281],[45.034439,-16.12056],[45.136665,-15.996389],[45.264999,-15.927502],[45.298607,-16.11778],[45.412773,-16.04139],[45.365829,-15.98778],[45.39054900000013,-15.97333],[45.57249,-15.94917],[45.59416,-15.987501],[45.573326,-16.034447],[45.61777500000011,-16.057503],[45.643883,-15.883057],[45.71666,-15.791668],[45.82611,-15.81472],[45.921387,-15.7725],[45.9575,-15.78389],[45.964996,-15.85333],[46.06361,-15.87195],[46.07054900000014,-15.78417],[46.011383,-15.82389],[46.006386,-15.80444],[46.151382000000126,-15.70361],[46.232498,-15.714169],[46.24667,-15.846945],[46.302216,-15.961113],[46.477219,-15.966112],[46.44722,-15.88583],[46.37555,-15.83389],[46.304443000000106,-15.71722],[46.338333,-15.62472],[46.47361,-15.498056],[46.94722000000013,-15.198891],[47.076385,-15.334446],[47.007217,-15.405834],[46.959442,-15.55806],[47.1290130000001,-15.44518],[47.223618,-15.448465],[47.235645,-15.41292],[47.111938,-15.305557],[47.05833,-15.185],[47.310555,-14.9125],[47.285431,-14.85286],[47.454994,-14.665279],[47.500832,-14.71167],[47.50639,-14.82695],[47.412498,-14.97139],[47.4272160000001,-15.11056],[47.491943000000106,-15.07667],[47.698608,-14.68361],[47.811275,-14.60389],[47.978607,-14.625834],[48.001663,-14.76556],[48.00694,-14.62278],[47.91917,-14.56917],[47.74638,-14.602779],[47.69944,-14.42056],[47.778885,-14.26139],[47.82611,-14.230835],[47.927773,-14.25389],[47.949387,-14.18106],[47.904442,-14.092779],[48.016663,-14.1475],[47.980827,-14.32445],[48.003052,-14.32278],[48.048332,-14.15556],[48.041107,-14.06889],[47.94194,-14.00639],[48.021111,-13.95611],[47.91055300000011,-13.897501],[47.88361,-13.82695],[47.905273,-13.59639],[48.019722,-13.581112],[48.04777,-13.550001],[48.023048,-13.52083],[48.063332,-13.518057],[48.152771,-13.60083],[48.179993,-13.754168],[48.287216,-13.808056],[48.33554800000013,-13.77306],[48.34111,-13.547501],[48.50388,-13.515556],[48.50055,-13.44417],[48.536942,-13.425556],[48.66555,-13.44917],[48.73972,-13.427223],[48.798332,-13.354168],[48.82388300000014,-13.12],[48.959442,-12.822224],[48.879715,-12.573057],[48.730827,-12.43417],[48.766388,-12.39917],[48.85083,-12.413334],[48.90721900000011,-12.495834],[48.948051,-12.48278],[48.9805530000001,-12.34139],[49.16444400000011,-12.23806],[49.189438,-12.12556],[49.12944,-12.103613],[49.258331,-11.945557],[49.29722,-11.964445],[49.356941,-12.09083]]]]}},{"type":"Feature","properties":{"FIPS":"MB","ISO2":"MQ","ISO3":"MTQ","UN":474,"NAME":"Martinique","AREA":106,"POP2005":395896,"REGION":19,"SUBREGION":29,"LON":-61.021,"LAT":14.653},"geometry":{"type":"Polygon","coordinates":[[[-60.86084,14.402777],[-60.886948,14.465555],[-61.03389,14.465832],[-61.231674,14.809444],[-61.174728,14.876944],[-61.034447,14.829166],[-60.940834,14.740833],[-60.829727,14.57],[-60.816673,14.470554],[-60.86084,14.402777]]]}},{"type":"Feature","properties":{"FIPS":"MG","ISO2":"MN","ISO3":"MNG","UN":496,"NAME":"Mongolia","AREA":156650,"POP2005":2580704,"REGION":142,"SUBREGION":30,"LON":102.876,"LAT":46.056},"geometry":{"type":"Polygon","coordinates":[[[91.020248,46.600109],[91.044144,46.722214],[90.916931,46.948044],[90.71138,47.041939],[90.489975,47.321938],[90.46582,47.500275],[90.357483,47.643326],[90.100266,47.7686],[90.074432,47.886383],[89.983597,47.893776],[89.938873,47.83654],[89.78194,47.82843],[89.557755,48.041664],[89.37886,48.04583],[89.233871,47.981651],[89.092773,47.991936],[88.94136,48.113052],[88.65332,48.18277],[88.597488,48.232765],[88.594986,48.344154],[88.523315,48.403046],[87.973312,48.576942],[87.969437,48.607498],[88.088593,48.706383],[88.000549,48.763054],[87.841095,48.794998],[87.75943,48.88166],[87.776093,48.924164],[87.87303,48.951935],[87.899429,49.00222],[87.840698,49.172951],[87.988586,49.177216],[88.162201,49.272217],[88.131927,49.368324],[88.220825,49.461662],[88.407761,49.483879],[88.899994,49.443321],[88.879425,49.529716],[88.913605,49.548882],[89.003052,49.462494],[89.181931,49.506943],[89.2397,49.550545],[89.197754,49.604996],[89.22665,49.638329],[89.372208,49.57972],[89.459717,49.649994],[89.718048,49.717491],[89.732758,49.754166],[89.65109,49.795273],[89.6427,49.904831],[90.01138,49.98333],[90.051376,50.082497],[90.244431,50.12027],[90.50972,50.224434],[90.69859,50.219437],[91.002487,50.422493],[91.458038,50.507774],[91.78749,50.69471],[92.221375,50.705551],[92.28499,50.740829],[92.322769,50.814995],[92.447754,50.810822],[92.660812,50.681664],[92.760269,50.712494],[92.802765,50.79361],[92.974991,50.791107],[92.99915,50.751389],[92.971024,50.666489],[93.019714,50.613052],[93.112762,50.5961],[93.448868,50.62249],[93.726929,50.57972],[94.274994,50.569443],[94.3522,50.414993],[94.389984,50.214439],[94.51082,50.164993],[94.635269,50.024437],[94.976089,50.056099],[95.066086,49.961937],[95.422485,49.9561],[95.529434,49.893326],[95.742203,49.957214],[95.817215,50.021935],[95.907211,50.01416],[95.960266,49.944153],[96.074432,50.006943],[96.294434,49.946655],[96.37915,49.893608],[96.547485,49.925827],[96.592484,49.864998],[96.722488,49.921104],[96.996933,49.894157],[97.169029,49.761993],[97.34082,49.734436],[97.559982,49.826942],[97.719147,49.95166],[97.890823,49.955551],[98.107208,50.048882],[98.289703,50.293884],[98.315262,50.531937],[98.063309,50.630547],[97.963882,50.778328],[98.01305,50.855827],[97.877472,50.929718],[97.827774,51.001106],[97.908875,51.119438],[98.05307,51.460953],[98.232346,51.459892],[98.259995,51.515831],[98.248032,51.581108],[98.315262,51.704163],[98.62442,51.779991],[98.708038,51.828049],[98.869431,52.038605],[98.881088,52.114159],[98.93027,52.143608],[99.026932,52.061104],[99.323044,51.948044],[99.73526,51.888046],[99.94693,51.751389],[100.553589,51.735825],[101.27388,51.5211],[101.377472,51.452774],[101.601089,51.484161],[102.077209,51.390831],[102.218872,51.333603],[102.224991,51.306381],[102.15416,51.244995],[102.168259,51.12043],[102.258041,50.980545],[102.264999,50.893326],[102.232758,50.825554],[102.356369,50.722488],[102.29387,50.642769],[102.327766,50.569717],[102.536652,50.513054],[102.613037,50.413605],[102.77971,50.387215],[102.918587,50.315269],[103.223602,50.308601],[103.309418,50.201385],[103.697746,50.13604],[103.820541,50.20118],[104.101929,50.149918],[104.250267,50.184883],[104.425537,50.311371],[104.62553,50.318306],[104.96666,50.404839],[105.132202,50.398331],[105.335541,50.483604],[105.989151,50.410545],[106.069427,50.375267],[106.078308,50.341629],[106.253326,50.298332],[106.66304,50.3386],[106.79498,50.308044],[107.005547,50.201103],[107.07832,50.084991],[107.182213,50.024162],[107.97713,49.943626],[107.949142,49.678047],[108.57222,49.333603],[108.950546,49.357773],[109.074997,49.334435],[109.20694,49.360275],[109.351929,49.336937],[109.544144,49.232491],[110.208038,49.169159],[110.352203,49.213608],[110.662491,49.145828],[110.788589,49.149437],[111.326927,49.342491],[111.514709,49.351105],[111.682213,49.406654],[111.963882,49.406937],[112.491699,49.541382],[112.766937,49.500832],[113.09082,49.598602],[113.101379,49.678879],[113.21666,49.81916],[113.586113,50.016388],[113.782494,50.086937],[113.874687,50.086937],[114.176376,50.248329],[114.313026,50.284164],[114.44386,50.24527],[114.675812,50.26416],[114.854156,50.228325],[115.039978,50.141937],[115.22137,49.988327],[115.4147,49.898331],[115.75471,49.884438],[116.069717,50.002777],[116.246094,50.027489],[116.61554,49.931381],[116.71138,49.830467],[116.061653,48.872765],[116.084152,48.815826],[115.811096,48.520546],[115.835823,48.252495],[115.54248,48.141663],[115.592194,47.919441],[115.936897,47.68721],[116.11554,47.821938],[116.25833,47.878601],[116.507767,47.845268],[116.874687,47.888046],[117.111076,47.813599],[117.37219,47.653595],[117.80109,48.010551],[118.23027,48.029991],[118.539337,47.994751],[118.767288,47.772774],[119.124969,47.664986],[119.149429,47.533882],[119.34082,47.462212],[119.33832,47.419716],[119.72499,47.168884],[119.787773,47.092766],[119.801376,46.993881],[119.922493,46.902214],[119.934982,46.719986],[119.890808,46.671692],[119.69136,46.597771],[119.648613,46.626381],[119.462769,46.63916],[119.296654,46.621376],[119.070602,46.672661],[118.869431,46.772766],[118.765549,46.68277],[118.465,46.693047],[118.310257,46.736938],[117.933594,46.619438],[117.844147,46.534439],[117.71666,46.513885],[117.632751,46.551102],[117.598877,46.611938],[117.421097,46.578331],[117.443863,46.527771],[117.370819,46.364441],[116.84166,46.393608],[116.758614,46.331108],[116.585541,46.29583],[116.566383,46.246384],[116.384163,46.112495],[116.290268,45.990829],[116.234154,45.887772],[116.281662,45.806656],[116.212769,45.723877],[116.112198,45.681107],[116.031372,45.685547],[115.70193,45.458603],[115.39221,45.39888],[114.93803,45.382767],[114.736099,45.442215],[114.545258,45.389435],[114.541092,45.322769],[114.462196,45.211662],[114.080276,44.941101],[113.916931,44.922768],[113.638046,44.74527],[112.853043,44.8461],[112.607483,44.926384],[112.4272,45.080551],[111.98082,45.09166],[111.784988,45.000549],[111.568047,44.679161],[111.561096,44.577774],[111.421371,44.382492],[111.4297,44.328606],[111.674988,44.051102],[111.879433,43.938881],[111.959717,43.835266],[111.958328,43.692215],[111.783867,43.672493],[111.638603,43.543327],[110.9897,43.31694],[110.689972,43.053604],[110.623032,42.939987],[110.471916,42.8461],[110.440536,42.777771],[110.106369,42.64576],[109.92776,42.64138],[109.517487,42.45694],[109.3136,42.429993],[109,42.458328],[108.845543,42.399994],[108.249443,42.462345],[107.907761,42.408325],[107.571114,42.410271],[107.471916,42.466103],[107.277206,42.410545],[107.262497,42.359993],[106.781937,42.295547],[105.855263,41.987495],[105.226929,41.75],[105.012207,41.581383],[104.930542,41.651932],[104.524147,41.663879],[104.526657,41.877213],[104.061096,41.803322],[103.849426,41.80249],[103.416382,41.887215],[102.712486,42.161377],[102.44247,42.1511],[102.077209,42.23333],[101.8147,42.50972],[100.835541,42.678047],[100.31499,42.691101],[100.25499,42.641106],[99.98637,42.653603],[99.498596,42.570831],[98.221375,42.645828],[97.171646,42.797493],[96.998596,42.761383],[96.383041,42.731102],[96.356934,42.906937],[95.881363,43.27916],[95.863037,43.42083],[95.746368,43.584991],[95.539978,43.992767],[95.336105,44.020828],[95.350266,44.177773],[95.416656,44.293884],[95.020538,44.256943],[94.724426,44.349159],[94.606934,44.450546],[94.343048,44.557213],[94.110809,44.709991],[93.554703,44.957214],[93.179428,45.016388],[92.990265,45.00972],[92.882751,45.04583],[92.488876,45.003052],[92.06749,45.083054],[91.567764,45.074997],[91.462204,45.1586],[91.383041,45.118599],[91.27832,45.135269],[91.141663,45.212769],[90.896942,45.253052],[90.777206,45.436378],[90.675812,45.497772],[90.681931,45.57972],[90.719437,45.73555],[91.028595,46.0186],[91.02222,46.130547],[90.920258,46.302773],[91.07222,46.573326],[91.020248,46.600109]]]}},{"type":"Feature","properties":{"FIPS":"MH","ISO2":"MS","ISO3":"MSR","UN":500,"NAME":"Montserrat","AREA":10,"POP2005":5628,"REGION":19,"SUBREGION":29,"LON":-62.187,"LAT":16.736},"geometry":{"type":"Polygon","coordinates":[[[-62.171394,16.671387],[-62.236671,16.711941],[-62.20195,16.81361],[-62.146393,16.746666],[-62.137505,16.692776],[-62.171394,16.671387]]]}},{"type":"Feature","properties":{"FIPS":"MK","ISO2":"MK","ISO3":"MKD","UN":807,"NAME":"The former Yugoslav Republic of Macedonia","AREA":2543,"POP2005":2033655,"REGION":150,"SUBREGION":39,"LON":21.698,"LAT":41.6},"geometry":{"type":"Polygon","coordinates":[[[20.82111,40.908882],[20.733887,40.911942],[20.669998,41.088051],[20.600613,41.093185],[20.492775,41.331108],[20.562496,41.408051],[20.457775,41.522217],[20.533886,41.63472],[20.514164,41.727776],[20.568951,41.874542],[20.733055,41.863884],[20.777222,41.925552],[20.759163,41.993332],[20.807777,42.089996],[21.116943,42.202499],[21.221107,42.145271],[21.304996,42.147774],[21.466663,42.265831],[21.721386,42.232773],[21.850277,42.330826],[22.083332,42.300552],[22.324444,42.361382],[22.521111,42.148605],[22.828609,42.026939],[22.961941,41.77861],[23.032776,41.728333],[22.952499,41.634438],[22.960831,41.358604],[22.772221,41.32444],[22.729164,41.144722],[22.434719,41.121384],[22.256664,41.171387],[21.980553,41.133606],[21.916111,41.095276],[21.911942,41.049438],[21.792221,40.932777],[21.599998,40.872772],[21.41972,40.919167],[21.343052,40.871941],[20.98349,40.855888],[20.983887,40.893608],[20.944164,40.919167],[20.848331,40.935555],[20.82111,40.908882]]]}},{"type":"Feature","properties":{"FIPS":"ML","ISO2":"ML","ISO3":"MLI","UN":466,"NAME":"Mali","AREA":122019,"POP2005":1161109,"REGION":2,"SUBREGION":11,"LON":-3.524,"LAT":17.35},"geometry":{"type":"Polygon","coordinates":[[[-8.53388,11.49391],[-8.580557,11.469166],[-8.640001,11.49861],[-8.703056,11.658888],[-8.745001,11.63361],[-8.831667,11.661665],[-8.779724,11.925833],[-8.796904,12.006344],[-8.979496,12.223265],[-8.943613,12.348888],[-9.155556,12.486111],[-9.311676,12.504696],[-9.400558,12.45583],[-9.293612,12.361664],[-9.313334,12.273331],[-9.628334,12.165552],[-9.701946,12.029163],[-9.865219,12.054811],[-10.095837,12.178053],[-10.323893,12.224997],[-10.333059,12.185274],[-10.458891,12.115831],[-10.652748,11.892609],[-10.731947,11.920277],[-10.814722,12.112776],[-10.92889,12.224442],[-11.041389,12.210552],[-11.147221,12.047497],[-11.235281,11.994997],[-11.323612,12.028606],[-11.376945,12.108053],[-11.459446,12.136108],[-11.494722,12.206108],[-11.373058,12.407774],[-11.424168,12.656111],[-11.372501,12.972221],[-11.455557,13.083332],[-11.516668,13.114166],[-11.557501,13.209444],[-11.536667,13.256109],[-11.632502,13.390276],[-11.739168,13.410831],[-11.816389,13.308054],[-12.034445,13.610832],[-12.064445,13.695555],[-11.964445,13.785276],[-11.942501,13.858889],[-12.015001,14.012499],[-11.979445,14.16111],[-12.030834,14.278889],[-12.2064,14.395288],[-12.226112,14.502222],[-12.178612,14.607498],[-12.244833,14.764385],[-12.057484,14.725321],[-11.841391,14.863054],[-11.795557,15.013054],[-11.806112,15.051943],[-11.845564,15.052912],[-11.832224,15.195276],[-11.711668,15.544998],[-11.642223,15.524166],[-11.494167,15.646387],[-11.416389,15.633333],[-11.286667,15.455555],[-10.993057,15.242777],[-10.899637,15.106874],[-10.73139,15.345276],[-10.716387,15.438902],[-10.303612,15.441387],[-10.032778,15.366943],[-9.805,15.375555],[-9.696667,15.429998],[-9.411112,15.443888],[-9.442501,15.596943],[-9.338057,15.704721],[-9.310556,15.68611],[-9.333612,15.499722],[-5.49505,15.498371],[-5.335,16.328053],[-5.601389,16.507774],[-6.577223,24.999165],[-4.806111,25.000275],[-2.448334,23.487221],[-0.008056,21.830555],[1.169662,21.102543],[1.197148,21.00248],[1.1675,20.741108],[1.6275,20.57111],[1.663055,20.53611],[1.668056,20.408607],[1.795833,20.308331],[2.085,20.21722],[2.213055,20.281387],[2.344166,20.177776],[2.411666,20.057499],[2.587778,20.001663],[2.902222,19.966942],[3.233055,19.820274],[3.21,19.565277],[3.277222,19.389721],[3.114166,19.156387],[3.331944,18.976387],[4.245277,19.146664],[4.2525,16.994442],[4.198889,16.820831],[4.200833,16.393887],[4.069722,16.293888],[3.885,15.709166],[3.823889,15.665277],[3.726666,15.652777],[3.567222,15.51222],[3.523981,15.358152],[3.0325,15.433054],[3.020833,15.341944],[2.628055,15.350555],[1.3125,15.286665],[0.974722,14.978611],[0.695,14.942221],[0.512222,15.000832],[0.396667,14.960554],[0.229992,15.002522],[0.235048,14.915068],[-0.246389,15.077499],[-0.386667,15.005278],[-0.443611,15.082777],[-0.725278,15.082777],[-1.074167,14.776943],[-1.318889,14.728611],[-1.678334,14.500555],[-1.980834,14.474722],[-2.006945,14.187777],[-2.1075,14.151388],[-2.474722,14.287498],[-2.599722,14.211666],[-2.84,14.005554],[-2.904445,13.816666],[-2.879167,13.655554],[-2.958319,13.629166],[-3.099445,13.68611],[-3.2575,13.696665],[-3.273334,13.550278],[-3.232223,13.288055],[-3.440536,13.274389],[-3.437675,13.166498],[-3.588611,13.202776],[-3.964253,13.50383],[-4.148056,13.283888],[-4.236945,13.240833],[-4.337223,13.121666],[-4.209445,12.956665],[-4.194445,12.828609],[-4.219445,12.736944],[-4.257501,12.719166],[-4.468889,12.723888],[-4.473889,12.657776],[-4.365556,12.538887],[-4.437779,12.434443],[-4.4175,12.300831],[-4.569447,12.201109],[-4.633427,12.067223],[-5.1175,11.964443],[-5.273056,11.843887],[-5.2875,11.788055],[-5.201667,11.541666],[-5.208611,11.461666],[-5.299445,11.139444],[-5.488334,11.076387],[-5.410001,10.847221],[-5.51985,10.436272],[-5.571667,10.458332],[-5.802501,10.419167],[-5.877778,10.375555],[-6.00139,10.191944],[-6.090279,10.190832],[-6.197167,10.236362],[-6.181667,10.434721],[-6.212501,10.569443],[-6.18889,10.6425],[-6.243402,10.735256],[-6.414167,10.690277],[-6.419168,10.622776],[-6.381945,10.590555],[-6.423612,10.549166],[-6.533056,10.576111],[-6.647655,10.66507],[-6.685,10.491665],[-6.631945,10.436388],[-6.648334,10.364721],[-6.943611,10.353054],[-6.9825,10.247221],[-6.946945,10.183054],[-6.988056,10.147499],[-7.027779,10.143888],[-7.122778,10.221388],[-7.269723,10.254444],[-7.359723,10.350832],[-7.451667,10.397221],[-7.635556,10.448332],[-7.731945,10.377222],[-7.81889,10.206944],[-7.966667,10.160555],[-7.940278,10.243332],[-7.980556,10.334999],[-8.141111,10.423887],[-8.215279,10.421665],[-8.271112,10.504999],[-8.32139,10.760832],[-8.2875,10.849443],[-8.289722,11.007776],[-8.350834,11.05722],[-8.458057,11.050833],[-8.583612,10.972776],[-8.680557,10.966389],[-8.610001,11.127222],[-8.4825,11.284721],[-8.387501,11.279722],[-8.357779,11.305555],[-8.360834,11.373888],[-8.513889,11.430277],[-8.53388,11.49391]]]}},{"type":"Feature","properties":{"FIPS":"MO","ISO2":"MA","ISO3":"MAR","UN":504,"NAME":"Morocco","AREA":44630,"POP2005":30494991,"REGION":2,"SUBREGION":15,"LON":-5.758,"LAT":32.706},"geometry":{"type":"Polygon","coordinates":[[[-9.053169,32.734802],[-8.627779,33.115829],[-8.538334,33.250549],[-8.415279,33.273605],[-8.294724,33.380272],[-7.496667,33.648331],[-7.031112,33.872215],[-6.843056,34.018608],[-6.315278,34.834999],[-5.918744,35.790649],[-5.595834,35.821938],[-5.407778,35.919167],[-5.345834,35.84166],[-5.31889,35.695],[-5.253056,35.576942],[-4.912223,35.315277],[-4.721667,35.216942],[-4.353889,35.146111],[-3.925278,35.259995],[-3.892778,35.215828],[-3.813889,35.200272],[-3.659167,35.272774],[-3.577222,35.226662],[-3.3325,35.191383],[-3.066389,35.289444],[-2.986111,35.418053],[-2.946945,35.329163],[-2.967223,35.284439],[-2.901389,35.259163],[-2.913611,35.19194],[-2.871945,35.138885],[-2.772778,35.123444],[-2.885556,35.242775],[-2.743556,35.13483],[-2.635,35.099716],[-2.343056,35.123604],[-2.209445,35.085831],[-2.180278,35.012215],[-1.75,34.751663],[-1.8575,34.610275],[-1.686711,34.485512],[-1.793334,34.378326],[-1.750556,34.349442],[-1.654444,34.083611],[-1.730556,33.704994],[-1.641667,33.650833],[-1.600278,33.556938],[-1.666667,33.383331],[-1.668056,33.261108],[-1.480278,33.063049],[-1.487222,32.979164],[-1.5425,32.939438],[-1.382778,32.724442],[-1.010278,32.508331],[-1.12,32.41555],[-1.196111,32.404716],[-1.249722,32.326942],[-1.257725,32.208023],[-1.295833,32.163055],[-1.200834,32.170273],[-1.175556,32.120827],[-1.213056,32.089722],[-2.331111,32.157494],[-2.853889,32.088333],[-2.938056,32.028885],[-2.951389,31.89222],[-2.999444,31.833332],[-3.511667,31.673332],[-3.685278,31.715832],[-3.808611,31.700554],[-3.843889,31.498333],[-3.803889,31.339165],[-3.826111,31.163887],[-3.697778,31.150276],[-3.602222,31.095554],[-3.594445,31.014999],[-3.626667,30.970554],[-4.016945,30.91111],[-4.169168,30.769165],[-4.396945,30.648331],[-4.920556,30.508053],[-5.085556,30.255554],[-5.275834,30.055275],[-5.538334,29.902496],[-6.002778,29.829441],[-6.145834,29.8475],[-6.217223,29.798885],[-6.400278,29.804443],[-6.481112,29.743053],[-6.513889,29.628887],[-6.585834,29.567219],[-7.112223,29.640274],[-7.298334,29.53833],[-7.433889,29.397221],[-7.644723,29.384998],[-7.986945,29.122776],[-8.176945,29.040833],[-8.495556,28.790554],[-8.667223,28.709442],[-8.666668,27.666664],[-13.174961,27.666958],[-13.033611,27.763054],[-12.961113,27.924442],[-12.9025,27.954166],[-12.065834,28.083054],[-11.458057,28.334442],[-11.081112,28.738609],[-10.550556,29.006107],[-10.138056,29.428055],[-10.063612,29.584442],[-9.794445,29.865276],[-9.640278,30.168053],[-9.607779,30.402775],[-9.708334,30.547222],[-9.840279,30.628052],[-9.853889,30.726944],[-9.812223,30.820274],[-9.844446,31.114998],[-9.802223,31.318607],[-9.809168,31.446663],[-9.689167,31.626942],[-9.679167,31.708611],[-9.360001,32.02916],[-9.281113,32.175552],[-9.27639,32.558327],[-9.053169,32.734802]]]}},{"type":"Feature","properties":{"FIPS":"MP","ISO2":"MU","ISO3":"MUS","UN":480,"NAME":"Mauritius","AREA":203,"POP2005":1241173,"REGION":2,"SUBREGION":14,"LON":57.583,"LAT":-20.255},"geometry":{"type":"MultiPolygon","coordinates":[[[[57.572495,-20.51417],[57.38611,-20.50306],[57.304718,-20.44917],[57.404716,-20.19583],[57.533882,-20.020557],[57.624443,-19.98639],[57.682777,-20.01417],[57.794998,-20.224445],[57.791939,-20.27084],[57.722771,-20.438892],[57.572495,-20.51417]]],[[[63.466385,-19.735836],[63.369438,-19.76667],[63.328606,-19.73806],[63.4611,-19.673058],[63.498604,-19.68861],[63.466385,-19.735836]]],[[[56.56443800000011,-10.397223],[56.5116650000001,-10.346668],[56.513611,-10.316668],[56.563889,-10.38833],[56.56443800000011,-10.397223]]]]}},{"type":"Feature","properties":{"FIPS":"MR","ISO2":"MR","ISO3":"MRT","UN":478,"NAME":"Mauritania","AREA":102522,"POP2005":2963105,"REGION":2,"SUBREGION":11,"LON":-10.332,"LAT":20.26},"geometry":{"type":"MultiPolygon","coordinates":[[[[-16.4275,19.603611],[-16.46,19.699718000000132],[-16.41389,19.810555],[-16.344448,19.866386],[-16.36195,19.730553],[-16.4275,19.603611]]],[[[-6.662778,26.129166],[-4.80611,25.00027],[-6.577223,24.99916500000012],[-5.60139,16.507774],[-5.335,16.328053],[-5.49505,15.498371],[-9.333612,15.499722000000133],[-9.31056,15.68611],[-9.338057,15.70472100000012],[-9.442501,15.596943],[-9.411112,15.443888],[-9.69667,15.429998],[-9.805,15.375555],[-10.03278,15.366943],[-10.303612,15.441387],[-10.716387,15.438902],[-10.73139,15.34528],[-10.89964,15.106874],[-10.993057,15.242777],[-11.28667,15.455555],[-11.41639,15.633333],[-11.494167,15.646387],[-11.64222,15.524166],[-11.71167,15.544998000000135],[-11.832224,15.19528],[-11.845564,15.052912000000104],[-11.80611,15.051943],[-11.79556,15.013054],[-11.84139,14.863054],[-12.05748,14.725321],[-12.24483,14.764385],[-12.39583,14.853054],[-12.448612,14.904999],[-12.48639,15.01555400000012],[-12.62667,15.098888000000102],[-12.708057,15.097776000000122],[-12.84972,15.208055],[-12.89333,15.261665],[-12.85139,15.263611],[-12.841112,15.298611],[-12.9325,15.36805],[-12.96028,15.503611],[-13.065834,15.480276],[-13.245834,15.680555],[-13.398056,16.059166],[-13.520557,16.132221],[-13.67694,16.098888],[-13.712778,16.13194],[-13.704723,16.184719],[-13.823057,16.131664],[-13.973333,16.237221],[-13.9825,16.306664000000126],[-14.02972,16.357777000000112],[-14.34528,16.638611],[-14.90695,16.635277],[-14.981112,16.693054],[-15.02556,16.63555],[-15.232779,16.559719],[-15.44139,16.57944],[-15.67028,16.48111],[-15.89444,16.513054],[-16.0525,16.480831],[-16.12417,16.552776000000108],[-16.280834,16.519722],[-16.383057,16.22777600000012],[-16.52768,16.060249],[-16.53722,16.301666000000125],[-16.47278,16.48222],[-16.46584,16.61972],[-16.13306,17.361942],[-16.039448,17.7280540000001],[-16.055557,18.422497],[-16.144447,18.689999],[-16.179169,18.913055],[-16.28139,19.127777],[-16.351112,19.205555],[-16.46306,19.255402],[-16.51167,19.352219],[-16.37861,19.395275],[-16.284168,19.52972],[-16.360723,19.528055],[-16.43056,19.475277],[-16.440556,19.408886],[-16.468334,19.410553000000107],[-16.42722,19.53639],[-16.233612,19.791111],[-16.19639,20.223053],[-16.314167,20.377499],[-16.493057,20.72499800000014],[-16.53139,20.728054],[-16.54333,20.560555],[-16.64833,20.66139],[-16.91972,21.161663],[-16.98778,21.065552],[-17.05233,20.76409500000011],[-17.07556,20.905552],[-16.953056,21.338333],[-12.999723,21.33805500000011],[-13.08,22.520275],[-13.15028,22.757500000000107],[-13.105278,22.893055],[-12.998335,23.024719000000115],[-12.57139,23.291386000000102],[-12.365835,23.31861],[-12.00028,23.454441],[-12.00056,26],[-8.66694,26.0002750000001],[-8.66679,27.290459],[-6.662778,26.129166]]]]}},{"type":"Feature","properties":{"FIPS":"MT","ISO2":"MT","ISO3":"MLT","UN":470,"NAME":"Malta","AREA":32,"POP2005":402617,"REGION":150,"SUBREGION":39,"LON":14.442,"LAT":35.89},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.562222,35.820274],[14.519722000000115,35.799995],[14.374998,35.8475],[14.336388,35.88388800000013],[14.326387000000125,35.97888],[14.374998,35.990829],[14.510277,35.92528],[14.57,35.869438],[14.562222,35.820274]]],[[[14.2675,36.011383],[14.19111,36.02444],[14.181110000000103,36.060829000000126],[14.253332000000112,36.073051],[14.34111,36.033882],[14.2675,36.011383]]]]}},{"type":"Feature","properties":{"FIPS":"MU","ISO2":"OM","ISO3":"OMN","UN":512,"NAME":"Oman","AREA":30950,"POP2005":2507042,"REGION":142,"SUBREGION":145,"LON":57.407,"LAT":21.656},"geometry":{"type":"MultiPolygon","coordinates":[[[[55.874718,17.490833],[55.85944400000011,17.486111000000108],[55.829163,17.493610000000103],[55.859718,17.51667],[55.874718,17.490833]]],[[[56.024162,17.484165],[55.9574970000001,17.51916],[56.05277,17.5525],[56.09360500000013,17.51472],[56.024162,17.484165]]],[[[58.842773,20.44111],[58.783607,20.275555],[58.649719,20.16889],[58.647499,20.364719],[58.78333,20.46444300000013],[58.899719,20.69305400000013],[58.95221700000013,20.51249700000011],[58.842773,20.44111]]],[[[56.0375,24.93889],[56.050827,24.866108],[56.000549,24.891109],[55.978333000000134,24.872776],[56.053886,24.752777],[56.104164,24.734722],[56.146385,24.741943],[56.1887660000001,24.824997000000106],[56.335831,24.89666],[56.335274,24.966389],[56.373528,24.97938],[56.619995,24.476665],[56.797218,24.308887],[56.907494,24.140553],[57.174721,23.932220000000143],[57.88721,23.718052],[58.14971900000012,23.703609000000142],[58.304993,23.620831000000123],[58.439438,23.619164],[58.50083200000012,23.65694400000012],[58.60944400000011,23.63305300000013],[58.927773,23.319443],[59.032776,23.11861],[59.11083200000013,23.021385000000123],[59.22488,22.946857],[59.29527300000012,22.79555],[59.397774,22.68055],[59.53388200000012,22.576385],[59.808052,22.532497],[59.847221,22.43278],[59.811386,22.226665],[59.71360800000013,22.0975],[59.654716000000114,21.93694],[59.49499500000013,21.761387],[59.455276,21.622498],[59.346107000000124,21.441666],[59.087776,21.29694400000011],[58.837219,21.039444000000117],[58.710831,20.847221000000104],[58.726387,20.757774],[58.59666,20.65472],[58.51583,20.411663],[58.437492000000134,20.354443],[58.209160000000104,20.398609],[58.26749,20.583611],[58.21083,20.612499],[58.08111,20.555832],[58.047218,20.46472200000011],[57.829437,20.218887],[57.844994,20.138332],[57.81361,19.976109],[57.687492,19.711109],[57.77166,19.41305],[57.74305,19.28167],[57.84166,19.031387],[57.803886,18.96944400000012],[57.16555,18.89527500000014],[56.814484,18.747684],[56.64583,18.584442000000138],[56.609993,18.333611],[56.55305,18.203331],[56.561661,18.13667],[56.461388,18.08028],[56.353333000000134,17.93417],[56.026665,17.9375],[55.643883,17.891109],[55.436943,17.82888800000012],[55.365273,17.683052],[55.26944,17.617496],[55.227776,17.54139],[55.228882,17.475277],[55.300552,17.416943],[55.296387,17.359997],[55.21222,17.193054],[55.039993,17.01861],[54.80055,16.944164],[54.58554800000013,17.033886],[54.095276,17.015],[53.929443000000106,16.90861],[53.740273000000116,16.858055],[53.596382,16.744999],[53.35305,16.73],[53.114441,16.642778],[51.99929,18.99934400000012],[55,20],[55.66611,21.999722],[55.199165,22.699718],[55.214996,23.020554000000118],[55.561386,23.761944],[55.559441,23.883888],[55.510277,23.972775000000123],[55.646385000000116,24.02972],[55.801384,24.02],[56.02471900000012,24.076111],[55.94916500000011,24.234722],[55.85944400000011,24.213608],[55.77722,24.235275000000115],[55.82,24.416664],[55.77944200000013,24.563889000000128],[55.843605,24.649719],[55.807777,24.87805200000014],[55.929718,24.97972],[56.00944,24.974720000000104],[56.0375,24.93889]]],[[[56.3653680000001,26.382389],[56.44950100000011,26.330975],[56.500916,26.351673],[56.514935,26.320292],[56.40194,26.285000000000135],[56.438816,26.235491],[56.48027,26.243889000000138],[56.474716,26.141388],[56.378883,26.170277],[56.370827,26.206944],[56.320274,26.16972],[56.33471700000012,26.110275],[56.46953200000013,26.090597],[56.431107,26.054443],[56.39222000000012,25.873886],[56.275551,25.720554],[56.26972,25.63601],[56.238041,25.62611],[56.147221,25.666109],[56.13916000000012,25.8325],[56.185551,26.014721],[56.158878,26.083611],[56.079941,26.065559],[56.20222,26.266109],[56.23444,26.218052],[56.404999,26.215553],[56.37527,26.2425],[56.30638900000014,26.22166],[56.313286,26.284903],[56.36203000000012,26.267542],[56.32130100000012,26.312946000000125],[56.354721,26.321388000000127],[56.3653680000001,26.382389]]]]}},{"type":"Feature","properties":{"FIPS":"MV","ISO2":"MV","ISO3":"MDV","UN":462,"NAME":"Maldives","AREA":30,"POP2005":295297,"REGION":142,"SUBREGION":34,"LON":72.92,"LAT":3.548},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.176376,-0.68972],[73.161377,-0.688056],[73.15637200000015,-0.68389],[73.171921,-0.681667],[73.176376,-0.68972]]],[[[73.201385,-0.680833],[73.1924740000001,-0.68528],[73.18830900000012,-0.68472],[73.2019350000001,-0.66722],[73.201385,-0.680833]]],[[[73.12915,-0.66889],[73.12525900000013,-0.66889],[73.121368,-0.65333],[73.129974,-0.66472],[73.12915,-0.66889]]],[[[73.23082,-0.648056],[73.226089,-0.6325],[73.24220300000013,-0.61778],[73.243591,-0.62333],[73.23082,-0.648056]]],[[[73.11637900000011,-0.63583],[73.09082000000012,-0.606667],[73.09137,-0.5825],[73.10193,-0.58305],[73.11637900000011,-0.63583]]],[[[73.24803,-0.605278],[73.235809,-0.585556],[73.24915,-0.57611],[73.250824,-0.57861],[73.24803,-0.605278]]],[[[73.44693,-0.299444],[73.44775400000015,-0.30778],[73.428314,-0.28639],[73.442474,-0.28528],[73.44693,-0.299444]]],[[[73.106934,0.211944],[73.100266,0.213333],[73.09553,0.228056],[73.10331700000012,0.228889],[73.106934,0.211944]]],[[[73.214706,0.230833],[73.20776400000011,0.230833],[73.209152,0.24],[73.22026100000011,0.239167],[73.214706,0.230833]]],[[[73.044983,0.259444],[73.03442,0.261389],[73.03305100000011,0.272778],[73.035812,0.271944],[73.044983,0.259444]]],[[[73.37580900000012,0.28],[73.367203,0.281389],[73.3797,0.291944],[73.38081,0.28861],[73.37580900000012,0.28]]],[[[73.51304600000014,0.378333],[73.504715,0.383889],[73.508881,0.3925],[73.513611,0.387778],[73.51304600000014,0.378333]]],[[[72.943039,0.488611],[72.93803,0.48555],[72.937195,0.499722],[72.941086,0.496389],[72.943039,0.488611]]],[[[73.498032,0.499722],[73.493042,0.496944],[73.48776,0.508055],[73.492203,0.508055],[73.498032,0.499722]]],[[[73.37469,1.781667000000141],[73.363876,1.782500000000141],[73.361374,1.788611],[73.37469,1.79527800000011],[73.37469,1.781667000000141]]],[[[73.399155,1.793889],[73.397766,1.80639],[73.407761,1.805833],[73.408035,1.798889],[73.399155,1.793889]]],[[[73.287201,1.831944],[73.299423,1.826111],[73.29721,1.819166],[73.28442,1.823055000000124],[73.287201,1.831944]]],[[[73.506943,1.826667],[73.49498,1.823055000000124],[73.51666300000011,1.847222],[73.515823,1.836389000000111],[73.506943,1.826667]]],[[[73.250549,1.889166],[73.24192800000013,1.886111],[73.24776,1.898333],[73.251099,1.896944],[73.250549,1.889166]]],[[[73.54999,1.896389000000113],[73.539978,1.891944],[73.549713,1.937222],[73.55415,1.91972],[73.54999,1.896389000000113]]],[[[73.55304000000012,1.965],[73.548325,1.964166],[73.54721100000012,1.978333],[73.5522,1.973333],[73.55304000000012,1.965]]],[[[73.323044,1.985],[73.31387300000011,1.986388],[73.32249500000012,1.99555],[73.32666000000012,1.99],[73.323044,1.985]]],[[[73.588882,2.1075],[73.563873,2.091666],[73.559143,2.09611],[73.56776,2.11],[73.588882,2.1075]]],[[[73.123871,2.190555],[73.116653,2.189722],[73.11026,2.196944],[73.12191800000011,2.196944],[73.123871,2.190555]]],[[[72.930817,2.314444],[72.919983,2.322500000000105],[72.92276,2.328888],[72.929153,2.325277],[72.930817,2.314444]]],[[[73.36665,2.384444],[73.36192,2.382222],[73.350266,2.440833000000111],[73.36859,2.409721],[73.36665,2.384444]]],[[[73.31972,2.492499],[73.313599,2.491944],[73.311096,2.504722],[73.31499,2.50583],[73.31972,2.492499]]],[[[72.876083,2.681388],[72.866379,2.684999],[72.866379,2.69611],[72.87276,2.69417],[72.876083,2.681388]]],[[[73.025269,2.73444],[73.018875,2.736944],[73.03499,2.747499000000118],[73.03442,2.743333],[73.025269,2.73444]]],[[[73.356644,2.771666],[73.348877,2.770833],[73.349426,2.781944000000124],[73.352768,2.780555000000106],[73.356644,2.771666]]],[[[73.01776100000012,2.946944],[73.01193200000012,2.943888],[73.005829,2.946944],[73.012207,2.954722],[73.01776100000012,2.946944]]],[[[73.579987,2.948888],[73.57443200000012,2.950555],[73.585541,2.9675],[73.584991,2.9575],[73.579987,2.948888]]],[[[72.982208,3.101944],[72.97499,3.1025],[72.973877,3.10805],[72.98276,3.110833000000127],[72.982208,3.101944]]],[[[73.5872,3.367777],[73.581665,3.37222],[73.59082,3.376944],[73.59137,3.37278],[73.5872,3.367777]]],[[[73.753326,3.44639],[73.748596,3.44639],[73.747757,3.451111000000139],[73.751389,3.452499],[73.753326,3.44639]]],[[[72.802765,3.510278],[72.790817,3.509166],[72.78804000000014,3.511111],[72.7986,3.51694],[72.802765,3.510278]]],[[[72.92276,3.544167],[72.90803,3.537777000000119],[72.9272,3.55972],[72.9285890000001,3.551944000000105],[72.92276,3.544167]]],[[[72.6974790000001,3.714166],[72.69136,3.714722],[72.687759,3.72472],[72.699417,3.724166],[72.6974790000001,3.714166]]],[[[73.473877,3.933055],[73.465546,3.932222],[73.48027,3.940555],[73.478867,3.93722],[73.473877,3.933055]]],[[[72.70971700000013,3.995555000000138],[72.699142,3.99778],[72.697754,4.000833],[72.70776,4.003611],[72.70971700000013,3.995555000000138]]],[[[73.512207,4.09361],[73.501938,4.096388],[73.50305200000014,4.10694],[73.510818,4.100832],[73.512207,4.09361]]],[[[73.50360100000012,4.164165],[73.495255,4.162777],[73.4910890000001,4.174999],[73.505264,4.17861],[73.50360100000012,4.164165]]],[[[73.5186,4.191387000000134],[73.51915,4.176388],[73.511383,4.182221],[73.5186,4.191387000000134]]],[[[72.959717,4.26861],[72.97581500000013,4.267221],[72.977768,4.26167],[72.962494,4.262221],[72.959717,4.26861]]],[[[72.96971100000013,4.87778],[72.97026,4.898055],[72.98027000000013,4.901111000000128],[72.979431,4.895555],[72.96971100000013,4.87778]]],[[[73.589706,5.27361],[73.56944,5.27194],[73.56694,5.277499],[73.589706,5.286943],[73.589706,5.27361]]],[[[73.320267,5.36111],[73.31499,5.36528],[73.3336,5.366666],[73.33166,5.363888],[73.320267,5.36111]]],[[[73.63527,5.385555],[73.631927,5.383333000000107],[73.6202550000001,5.420833],[73.63749700000011,5.412777],[73.63527,5.385555]]],[[[73.384155,5.709722],[73.378036,5.712221],[73.38777,5.741943],[73.3927610000001,5.72861],[73.384155,5.709722]]],[[[72.991364,5.76111],[72.98166,5.758888],[72.98166,5.77167],[72.98692,5.77083],[72.991364,5.76111]]],[[[73.43637100000012,5.827222],[73.42970300000013,5.827222],[73.451096,5.849166],[73.449142,5.837221000000113],[73.43637100000012,5.827222]]],[[[72.96887200000015,5.850832],[72.964996,5.8475],[72.961105,5.867777],[72.96582,5.861388],[72.96887200000015,5.850832]]],[[[73.433044,5.902222],[73.4236,5.903610000000128],[73.422211,5.911666],[73.42942800000014,5.911388000000102],[73.433044,5.902222]]],[[[73.398331,5.955277],[73.379425,5.966666],[73.379425,5.97139],[73.393326,5.96861],[73.398331,5.955277]]],[[[72.93332,5.960833],[72.928314,5.955],[72.92608600000011,5.97194400000012],[72.931931,5.97139],[72.93332,5.960833]]],[[[73.27054,6.18528],[73.2686,6.175277000000108],[73.269989,6.19305],[73.27054,6.18528]]],[[[73.24803,6.231943],[73.2397,6.2275],[73.234711,6.23611],[73.245819,6.23889],[73.24803,6.231943]]],[[[73.20444,6.3175],[73.190262,6.320833000000106],[73.190811,6.324721000000125],[73.20166,6.327499000000103],[73.20444,6.3175]]],[[[73.050262,6.429166000000123],[73.04082,6.429999000000122],[73.041367,6.444165],[73.04915,6.441666],[73.050262,6.429166000000123]]],[[[73.06749000000013,6.66139],[73.0599820000001,6.657499],[73.068054,6.672776],[73.069717,6.668055],[73.06749000000013,6.66139]]],[[[73.10108900000012,6.69694],[73.093323,6.697221],[73.10247800000013,6.715555],[73.106094,6.709999],[73.10108900000012,6.69694]]],[[[73.13693,6.72639],[73.12915,6.733888],[73.161926,6.78416],[73.15721100000013,6.7575],[73.13693,6.72639]]],[[[73.18136600000012,6.8325],[73.18193,6.830555],[73.20166,6.828888],[73.184143,6.81861],[73.18136600000012,6.8325]]],[[[73.20526100000012,6.883611],[73.195526,6.889443000000141],[73.209991,6.926388],[73.214157,6.897778],[73.20526100000012,6.883611]]],[[[73.198868,6.947498],[73.19165,6.95111],[73.193588,6.978610000000117],[73.197754,6.978610000000117],[73.198868,6.947498]]],[[[72.985535,7.012221],[72.97998000000013,7.011666000000104],[72.97499,7.029444],[72.9861,7.019444],[72.985535,7.012221]]],[[[72.9160920000001,7.08167],[72.9102630000001,7.082222000000114],[72.90277100000014,7.093055000000106],[72.911926,7.094999],[72.9160920000001,7.08167]]]]}},{"type":"Feature","properties":{"FIPS":"MX","ISO2":"MX","ISO3":"MEX","UN":484,"NAME":"Mexico","AREA":190869,"POP2005":104266392,"REGION":19,"SUBREGION":13,"LON":-102.535,"LAT":23.951},"geometry":{"type":"MultiPolygon","coordinates":[[[[-114.742783,18.32278],[-114.7964,18.318886],[-114.80307,18.33277500000014],[-114.72389,18.353333],[-114.742783,18.32278]]],[[[-87.372787,18.400276000000133],[-87.33862,18.44833000000011],[-87.33168,18.503052],[-87.32695,18.453331],[-87.372787,18.400276000000133]]],[[[-87.251678,18.64138800000012],[-87.259445,18.62778],[-87.265015,18.733887],[-87.24667,18.689163],[-87.251678,18.64138800000012]]],[[[-91.828613,18.639164000000108],[-91.84195,18.659443],[-91.64612,18.753609],[-91.55334,18.78833],[-91.52389,18.770554],[-91.828613,18.639164000000108]]],[[[-110.92612,18.721107000000128],[-111.071404,18.768330000000105],[-111.00334,18.864998],[-110.939453,18.827499000000103],[-110.92612,18.721107000000128]]],[[[-110.78862,19.30805],[-110.83,19.271111],[-110.83585,19.27138],[-110.81334,19.341663],[-110.78862,19.30805]]],[[[-86.732788,20.58555200000012],[-86.88556,20.353886000000102],[-87,20.256386],[-87.02,20.39167],[-86.938904,20.539444],[-86.900284,20.56444],[-86.8289,20.541664],[-86.732788,20.58555200000012]]],[[[-86.7014,21.19722],[-86.73889,21.239998],[-86.74918,21.28639],[-86.72917,21.25861],[-86.7014,21.19722]]],[[[-106.195557,21.255276],[-106.269447,21.294998],[-106.26501,21.33667],[-106.19751,21.338608],[-106.195557,21.255276]]],[[[-106.38667,21.42083],[-106.50195,21.43222],[-106.5114,21.450275],[-106.47168,21.51055],[-106.33556,21.49889],[-106.327217,21.468609],[-106.38667,21.42083]]],[[[-106.51501,21.51305],[-106.62834,21.572498],[-106.645844,21.688332],[-106.58556,21.715832],[-106.530006,21.69083000000012],[-106.497787,21.596664],[-106.51501,21.51305]]],[[[-106.656403,21.752499],[-106.67529,21.74139],[-106.670563,21.816387],[-106.64362,21.76861],[-106.656403,21.752499]]],[[[-97.60779,21.736664],[-97.67418,21.790276],[-97.685562,21.859997],[-97.60028,21.750275],[-97.60779,21.736664]]],[[[-97.818893,22.682499],[-97.830841,22.69722],[-97.78418,22.774166],[-97.77834,22.753887000000134],[-97.818893,22.682499]]],[[[-97.773056,22.791386],[-97.781403,22.804996],[-97.760284,22.8341640000001],[-97.76668,22.799721],[-97.773056,22.791386]]],[[[-109.784447,24.134998],[-109.871399,24.1875],[-109.915558,24.368889],[-109.798607,24.19111],[-109.784447,24.134998]]],[[[-111.532501,24.378052],[-111.49474,24.351387],[-111.67029,24.371944],[-111.660843,24.391388],[-111.532501,24.378052]]],[[[-111.705841,24.33166],[-111.83501,24.427498000000128],[-112.01668,24.5325],[-111.83694,24.541111],[-111.69473,24.3916660000001],[-111.705841,24.33166]]],[[[-110.328056,24.400833],[-110.357788,24.433887],[-110.401947,24.579998],[-110.375,24.586941],[-110.3,24.484444],[-110.328056,24.400833]]],[[[-110.536957,24.88222100000013],[-110.64389,24.931110000000103],[-110.70889,25.0425],[-110.705,25.093887],[-110.5789,25.033886],[-110.536957,24.88222100000013]]],[[[-112.046112,24.51916],[-112.179169,24.662498],[-112.153343,24.708885],[-112.180557,24.78416],[-112.25279,24.809998],[-112.13362,25.281109],[-112.2025069999999,24.844997],[-112.046112,24.51916]]],[[[-108.84279,25.428608000000107],[-108.789169,25.372219],[-109.01112,25.438332],[-108.89195,25.441387],[-108.84279,25.428608000000107]]],[[[-110.79695,25.594997],[-110.825287,25.6425],[-110.80833,25.69583100000011],[-110.791672,25.64333],[-110.79695,25.594997]]],[[[-111.1975099999999,25.844997],[-111.206123,25.802776],[-111.22334,25.848888000000102],[-111.191391,26.038887000000102],[-111.08667,26.074444],[-111.1975099999999,25.844997]]],[[[-109.9489,27.024441000000138],[-109.94945,27.017498000000103],[-110.03445,27.091389],[-109.9814,27.076385],[-109.9489,27.024441000000138]]],[[[-110.546112,27.309998],[-110.52585,27.30139],[-110.58029,27.317219000000133],[-110.5975,27.336109],[-110.59029,27.415276],[-110.546112,27.309998]]],[[[-114.22,27.738331],[-114.31361,27.78],[-114.3239,27.81666600000011],[-114.24501,27.81444],[-114.22,27.738331]]],[[[-115.173889,28.027496],[-115.310013,28.100277],[-115.32668,28.138332000000105],[-115.249733,28.228333000000134],[-115.280563,28.315830000000116],[-115.24084,28.370552],[-115.17889,28.308887000000137],[-115.146118,28.17889],[-115.173889,28.027496]]],[[[-112.76001,28.593609],[-112.86307,28.65083],[-112.88583,28.683887000000137],[-112.796402,28.64416],[-112.76001,28.593609]]],[[[-112.58168,28.670277],[-112.60362,28.727219],[-112.54085,28.735832],[-112.54611,28.679165],[-112.58168,28.670277]]],[[[-118.28917,28.881664000000114],[-118.40417,29.147778],[-118.310013,29.195274],[-118.23834,29.030277000000122],[-118.243622,28.924442],[-118.28917,28.881664000000114]]],[[[-112.26195,28.773331],[-112.383347,28.778332],[-112.56418,28.87833],[-112.463058,29.17666600000012],[-112.34584,29.233608000000117],[-112.2664,29.22222],[-112.20279,29.032219],[-112.26195,28.773331]]],[[[-113.13556,29.019722],[-113.35722,29.17083],[-113.59222,29.42583100000013],[-113.58862,29.583611],[-113.40529,29.482498],[-113.36501,29.40333],[-113.381958,29.32],[-113.26083,29.29805],[-113.19585,29.228333000000134],[-113.186951,29.13028],[-113.124451,29.05888700000014],[-113.13556,29.019722]]],[[[-114.65085,31.69055],[-114.76363,31.712498],[-114.79028,31.799442],[-114.74501,31.786663],[-114.65085,31.69055]]],[[[-113.052887,31.971069],[-111.04584,31.333054],[-108.20834,31.333054],[-108.208618,31.783333],[-106.54889,31.782776000000123],[-106.400848,31.750275],[-106.214447,31.475277000000116],[-106.00862,31.394444000000135],[-105.841949,31.269165],[-105.770279,31.176109],[-105.597778,31.079998],[-105.39307,30.86583300000012],[-105.2614,30.797222],[-105.2075,30.801666],[-104.90056,30.57278],[-104.82223,30.38611],[-104.68224,30.187496],[-104.703613,30.054996],[-104.68028,29.945553],[-104.540009,29.671108],[-104.41917,29.569443],[-104.205,29.479443],[-104.04529,29.33083],[-103.889175,29.285831],[-103.29279,28.996666],[-103.15417,28.98139],[-102.955,29.183052],[-102.895844,29.254166],[-102.670288,29.742775],[-102.49278,29.78167],[-102.30585,29.889442],[-102.07667,29.798611000000108],[-101.405014,29.772778],[-101.31084,29.615276000000108],[-101.141678,29.491943000000102],[-101.04501,29.465836],[-100.668335,29.113331],[-100.63362,28.95611],[-100.35918,28.518330000000105],[-100.282501,28.28138700000011],[-100.1864,28.197498],[-100.0714,28.151108],[-99.881668,27.90638700000011],[-99.835556,27.775276000000133],[-99.6964,27.656944],[-99.59084,27.638885000000126],[-99.505,27.570274],[-99.44334,27.258053],[-99.45862,27.046944],[-99.32695,26.87222],[-99.26807,26.857498000000135],[-99.10474,26.434998],[-98.44473,26.226109],[-98.200012,26.062496],[-98.06639,26.03833],[-97.8439,26.06361],[-97.648056,26.029442],[-97.4189,25.84360900000013],[-97.349457,25.848888000000102],[-97.34807,25.898052],[-97.31529,25.919998],[-97.140739,25.966429000000115],[-97.188614,25.67472],[-97.29056,25.432499],[-97.5114,25.048611],[-97.651672,24.520275],[-97.71556,24.074997],[-97.763062,23.381664],[-97.74139,22.90583],[-97.889725,22.60083],[-97.776871,22.268055],[-97.768616,22.116943000000106],[-97.69917,21.97694],[-97.556122,21.775],[-97.31723,21.56416],[-97.32861,21.467777],[-97.416672,21.271111],[-97.47667,21.434166],[-97.386948,21.471943],[-97.36974,21.53805],[-97.61723,21.78527],[-97.74223,22.012497],[-97.66667,21.66166],[-97.57751,21.49944],[-97.501114,21.42639],[-97.1925,20.794441],[-97.17612,20.684998],[-96.67639,20.15722],[-96.44778,19.861664],[-96.29417,19.338886],[-96.139725,19.22944],[-96.08446,19.101665],[-95.95862,18.98860900000011],[-95.91139,18.825275],[-95.808899,18.746109],[-95.187225,18.70444],[-95.051392,18.61305],[-95.01889,18.55805],[-94.80223,18.522499],[-94.57979,18.190331],[-94.478897,18.1466640000001],[-94.015289,18.245277],[-93.7939,18.261944],[-93.58,18.352219],[-93.570282,18.407776],[-93.843613,18.311665],[-93.57806,18.423054],[-93.18167,18.438889],[-93.170288,18.36805],[-93.12695,18.338886],[-93.08778,18.40361000000013],[-92.88473,18.46111],[-92.73584,18.56499900000011],[-92.680008,18.51777600000014],[-92.58862,18.623608],[-92.40529,18.681110000000103],[-91.99501,18.727776],[-91.8589,18.611111],[-92.03445,18.59472],[-92.04251,18.550831],[-91.95668,18.54333],[-91.966675,18.59222],[-91.89206,18.547497],[-91.825562,18.495831],[-91.85722,18.430553],[-91.814728,18.383053],[-91.773621,18.445553],[-91.475006,18.43944],[-91.48195,18.49249600000013],[-91.505,18.484722],[-91.4375,18.54111],[-91.183899,18.652222],[-91.30695,18.78222],[-91.37668,18.773888],[-91.39001,18.820219000000122],[-91.33,18.893887],[-91.43362,18.855108],[-91.304733,18.955830000000105],[-91.13473,19.029442],[-90.75667,19.31583],[-90.68112,19.762218],[-90.52335,19.881386],[-90.454727,19.97527700000012],[-90.50056,20.085278],[-90.484726,20.549442],[-90.45862,20.72777600000012],[-90.38362,20.816666000000108],[-90.33751,20.969997],[-90.38667,20.838055],[-90.438614,20.78916],[-90.32751,21.03139],[-90.1064,21.160275],[-89.82806,21.270275],[-88.843338,21.413609000000122],[-88.708069,21.44778],[-88.60167,21.533886],[-88.4514,21.56888600000013],[-88.271118,21.553608],[-88.08639,21.585],[-88.24335,21.567219],[-88.156952,21.60666700000013],[-87.99417,21.602776],[-87.703613,21.533054000000106],[-87.85779,21.54583],[-87.75446,21.505554],[-87.60529,21.512218],[-87.24918,21.441387],[-87.148056,21.480553],[-87.129181,21.554722],[-87.39612,21.504166],[-87.41446,21.526943],[-87.33417,21.570274],[-87.07861,21.60611],[-87.00334,21.578331],[-86.89723,21.441387],[-86.828339,21.43027500000011],[-86.814453,21.188889],[-86.77278,21.151386000000112],[-86.913071,20.80194],[-87.0675,20.614719],[-87.22639,20.503887],[-87.43001,20.214722],[-87.47195,20.092777],[-87.44334,19.93305],[-87.4459,19.89277600000014],[-87.46656,19.844109],[-87.44806,19.923775],[-87.47696,19.961109],[-87.475227,19.87105],[-87.53168,19.799164],[-87.585007,19.796665],[-87.657227,19.678333],[-87.738892,19.674721],[-87.735,19.60166],[-87.6664,19.547775000000115],[-87.67001,19.505276],[-87.43445,19.618332],[-87.41167,19.578888000000116],[-87.46556,19.44722],[-87.53168,19.40027600000013],[-87.570557,19.395554],[-87.542511,19.434444],[-87.6264,19.399998],[-87.676392,19.31805400000013],[-87.6875,19.247776],[-87.64612,19.211109],[-87.552231,19.316666],[-87.5,19.326385],[-87.48862,19.29139],[-87.59584,19.05194],[-87.65224,18.765],[-87.729736,18.66777],[-87.75917,18.412498],[-87.82806,18.310833],[-87.847504,18.19083000000012],[-87.925568,18.420277],[-88.080841,18.517220000000123],[-88.001114,18.681389],[-88.037506,18.869442],[-88.21779,18.699997],[-88.16945,18.677219],[-88.289169,18.487499],[-88.490433,18.4701],[-88.600021,18.23583],[-88.681122,18.185555],[-88.728058,18.054722],[-88.8414,17.903889],[-89.02528,18.00639],[-89.143051,17.956066],[-89.14195,17.81889],[-90.98242,17.820652000000106],[-90.9839,17.25611],[-91.4375,17.24110800000011],[-91.26973,17.13639],[-91.063614,16.924442000000113],[-90.9489,16.889164000000108],[-90.921112,16.82972],[-90.80334,16.804996],[-90.71428,16.72646],[-90.658066,16.644165],[-90.645,16.51916],[-90.5939,16.47666],[-90.4064,16.41639],[-90.384445,16.376942],[-90.45946,16.25278],[-90.459732,16.19083],[-90.42778,16.170277],[-90.441956,16.08833],[-91.72917,16.074997],[-92.21139,15.26222],[-92.06584,15.07778],[-92.18584,14.84361],[-92.15445,14.675833],[-92.18722,14.58833],[-92.24678,14.55054700000011],[-92.75307,15.053333000000121],[-92.81279,15.140278],[-92.775284,15.15194],[-92.738892,15.087221],[-92.772781,15.174444000000108],[-92.97974,15.262499],[-93.20529,15.490833],[-93.788895,15.922777],[-93.93195,16.09417],[-94.2679,16.218664000000103],[-94.368057,16.294441],[-94.42445,16.278889000000106],[-94.43167,16.213055],[-94.31612,16.14666],[-94.26556,16.135555],[-94.34167,16.17639],[-94.07251,16.09222000000011],[-94.057785,16.040833],[-94.44112,16.181389],[-94.72473,16.19666300000011],[-94.61584,16.258053],[-94.57806,16.318333],[-94.667236,16.361942000000113],[-94.78973,16.257774],[-94.808624,16.286388000000102],[-94.773056,16.331944000000135],[-94.86195,16.427498000000128],[-95.06723,16.274719],[-94.857788,16.215832],[-95.20639,16.15583],[-95.35918,16.05611],[-95.401947,15.986111],[-95.94446,15.818609],[-96.18195,15.69167],[-96.43611,15.68861],[-96.47612,15.64361],[-96.55778,15.656387],[-96.845001,15.729721],[-97.19667,15.913332000000139],[-97.785,15.968611],[-98.12556,16.208885000000123],[-98.55139,16.314442],[-98.782227,16.553055],[-99.69223,16.708332],[-99.849731,16.7875],[-99.87807,16.870277],[-100.91,17.2175],[-101.633057,17.66694],[-101.787781,17.87611],[-101.95001,17.9775],[-102.047234,17.98889],[-102.170288,17.918331],[-102.565,18.0425],[-102.74501,18.06583],[-103.029449,18.189999],[-103.47389,18.326385],[-103.72501,18.67333200000013],[-103.97195,18.87722],[-104.315,19.008053],[-104.32779,19.095276000000126],[-104.66278,19.168053],[-105.02251,19.37194],[-105.10251,19.564999],[-105.27,19.679722],[-105.52779,20.04389],[-105.67696,20.424164],[-105.560287,20.49],[-105.35196,20.513054],[-105.244171,20.57416],[-105.23807,20.644444000000135],[-105.32278,20.767776],[-105.41724,20.753887],[-105.54445,20.785],[-105.241386,21.064720000000136],[-105.228058,21.31166500000012],[-105.189453,21.437496],[-105.24251,21.513885],[-105.4364,21.607777000000112],[-105.50862,21.791943000000117],[-105.654167,21.987778],[-105.64973,22.342777],[-105.81696,22.660275],[-106.37001,23.178333],[-106.53279,23.4125],[-106.80223,23.647499],[-106.895,23.836666],[-107.01918,23.963055],[-107.735359,24.465733],[-107.600952,24.42233],[-107.618958,24.520330000000115],[-107.68545,24.479164],[-107.74895,24.50733],[-107.808327,24.58721900000012],[-107.93472,24.63583],[-107.80528,24.53389],[-107.82417,24.526943],[-107.99918,24.6525],[-108.01668,24.734997000000135],[-107.989464,24.961941],[-108.049728,24.98666],[-108.04056,24.83111],[-108.10139,24.819443],[-108.22862,25.0275],[-108.132782,24.972221000000104],[-108.09631,25.01298],[-108.00307,25.000553],[-108.042511,25.073608],[-108.243057,25.159164],[-108.352509,25.16722],[-108.39418,25.141109],[-108.393623,25.205830000000105],[-108.436951,25.263054000000125],[-108.72862,25.396664],[-108.762222,25.43444],[-108.76779,25.54222],[-108.898903,25.561386],[-108.87779,25.507221],[-108.92001,25.45611],[-109.02945,25.459999],[-109.108902,25.526108000000136],[-109.0614,25.56333],[-108.97029,25.564442],[-108.87834,25.67028],[-108.82806,25.798332],[-108.90501,25.69194],[-109.13695,25.578053],[-109.17223,25.647778],[-109.30751,25.738331],[-109.38806,25.756107],[-109.4375,25.820274],[-109.42445,26.030552],[-109.30556,26.201664],[-109.27585,26.158607],[-109.214737,26.339165],[-109.16528,26.325275],[-109.175293,26.264721],[-109.10112,26.209164],[-109.103897,26.28361],[-109.440002,26.7125],[-109.524437,26.765],[-109.677231,26.672497000000135],[-109.75389,26.69611],[-109.86667,26.82333],[-109.950844,27.095276000000123],[-110.01889,27.116665],[-110.06334,27.095833],[-110.301964,27.16222],[-110.529716,27.371109],[-110.63583,27.656109],[-110.60529,27.7575],[-110.50974,27.866386],[-110.78946,27.916943],[-110.871674,27.842777000000126],[-111.05585,27.949165],[-111.10556,27.938332],[-111.2664,28.08721900000012],[-111.463348,28.374996],[-111.695557,28.464722000000105],[-111.77,28.596107],[-111.935287,28.73860900000011],[-111.91585,28.803608],[-112.11501,28.96638900000011],[-112.16473,28.9725],[-112.21056,29.301941],[-112.25195,29.334442000000134],[-112.33223,29.326664],[-112.396118,29.40972],[-112.37723,29.500553],[-112.577789,29.713333],[-112.73557,29.971107],[-112.75612,30.208611],[-112.858063,30.402496],[-113.08139,30.698887],[-113.117233,30.814442],[-113.03696,31.151943],[-113.08667,31.227219000000108],[-113.48251,31.285275],[-113.589737,31.33166],[-113.64973,31.507500000000107],[-113.965561,31.662498000000138],[-113.98195,31.572498],[-113.94556,31.568054],[-114.01584,31.500275],[-114.204178,31.516388000000116],[-114.58389,31.76083000000011],[-114.80862,31.82222],[-115.03418,31.96333],[-115.01445,31.907776],[-114.916672,31.866108000000107],[-114.77945,31.643608],[-114.85112,31.526386000000116],[-114.88028,31.148609],[-114.82973,30.996109000000104],[-114.70529,30.924999],[-114.69389,30.651108],[-114.62445,30.487778000000105],[-114.65973,30.19861],[-114.545288,30.00111],[-114.373062,29.79472],[-114.30446,29.759163],[-114.20612,29.75861],[-113.67307,29.289719],[-113.54195,29.095554],[-113.5464,28.95638700000012],[-113.50473,28.891388],[-113.453056,28.8925],[-113.463623,28.939163],[-113.41251,28.965],[-113.364182,28.943333],[-113.29028,28.80972],[-113.19417,28.814442],[-113.11195,28.47972],[-113.01807,28.437496],[-112.862793,28.433331],[-112.872513,28.275555],[-112.79001,28.197777],[-112.778633,28.02972],[-112.72328,27.999741],[-112.752502,27.834721],[-112.57278,27.630554],[-112.493622,27.615833],[-112.32278,27.511665],[-112.23001,27.23278],[-112.01418,27.041386],[-112.0289,26.996109],[-111.91212,26.841721],[-111.89473,26.772778],[-111.91724,26.73889],[-111.85861,26.661942],[-111.74335,26.552776],[-111.688057,26.590832],[-111.83168,26.758331],[-111.84222,26.903053000000114],[-111.56084,26.72361],[-111.556953,26.56499900000011],[-111.49667,26.52861],[-111.3914,26.32111],[-111.40945,26.28833],[-111.347229,26.132221],[-111.36195,25.95833],[-111.299728,25.780277],[-111.16528,25.5775],[-111.018341,25.525555],[-111.01945,25.419167],[-110.91112,25.17305],[-110.85501,25.08833],[-110.74667,25.01972],[-110.68695,24.899166],[-110.668327,24.79694],[-110.726669,24.674164],[-110.73418,24.57833],[-110.660568,24.337776],[-110.49556,24.216942],[-110.304169,24.18888900000013],[-110.34001,24.16],[-110.398903,24.18222],[-110.35417,24.115833],[-110.269447,24.189163],[-110.3,24.334442],[-110.213623,24.351944000000117],[-110.00334,24.164165],[-109.9741669999999,24.096386],[-109.799728,24.01221800000013],[-109.823624,23.916386],[-109.69778,23.797775],[-109.6864,23.66],[-109.47835,23.575554],[-109.410843,23.46833],[-109.435013,23.232777],[-109.48834,23.155552],[-109.91446,22.86861],[-110.005,22.886108],[-110.08057,22.986664],[-110.171951,23.328331],[-110.316681,23.567497],[-110.634453,23.73166700000013],[-111.04167,24.11222],[-111.47084,24.334442],[-111.65363,24.549164],[-111.79362,24.562496],[-111.843063,24.66861],[-111.96362,24.79333],[-111.98083,24.751663],[-112.087509,24.7561070000001],[-112.11584,24.86666],[-112.096123,25.025833],[-112.148903,24.901108],[-112.179459,24.89416],[-112.12807,25.1675],[-112.06807,25.272221000000116],[-112.070847,25.613052],[-112.10612,25.51833],[-112.112503,25.773609],[-112.222778,26.00611],[-112.325287,26.080555],[-112.39667,26.27278],[-112.43779,26.29166400000014],[-112.475853,26.264442],[-112.670837,26.32917],[-112.8925,26.522221],[-112.992783,26.55805],[-113.11667,26.672222],[-113.22029,26.705555000000118],[-113.223228,26.76960800000012],[-113.12807,26.880554],[-113.12834,26.958885],[-113.178619,26.970276],[-113.20639,26.826385000000126],[-113.28068,26.777441],[-113.445557,26.844444],[-113.53279,26.745831000000123],[-113.5975,26.736942],[-113.7225,26.82333],[-113.84889,26.983055],[-113.996117,26.980553],[-114.160278,27.1425],[-114.243896,27.165554],[-114.287781,27.145],[-114.46973,27.229443],[-114.52112,27.42083],[-114.889183,27.694721],[-114.988892,27.721107],[-115.0439,27.81778],[-115.02057,27.846664],[-114.61362,27.76722],[-114.5014,27.769444],[-114.429459,27.808052],[-114.3364,27.791111],[-114.28889,27.737499000000128],[-114.17889,27.69527],[-113.983063,27.702499],[-113.97639,27.733330000000137],[-114.03612,27.770554],[-114.16112,27.716942],[-114.22278,27.76527],[-114.24972,27.839369],[-114.310562,27.865555],[-114.285,27.946388],[-114.15723,28.049442000000113],[-114.161583,28.00055300000014],[-114.128555,28.023659],[-114.11195,28.178333],[-114.145844,28.310555000000132],[-114.06361,28.527222],[-114.161957,28.671665],[-114.315002,28.749165],[-114.40529,28.88583],[-114.55751,28.975277],[-114.950287,29.377499],[-115.18779,29.43278],[-115.23251,29.489166],[-115.50584,29.62527],[-115.69389,29.76833],[-115.8264,30.331944],[-115.98056,30.496666],[-116.01334,30.43888900000013],[-115.991386,30.373055],[-116.03639,30.442776],[-116.05417,30.797775],[-116.26695,30.963055],[-116.336937,31.213886],[-116.47974,31.390274],[-116.67751,31.55527500000011],[-116.60057,31.835278],[-116.84889,31.996109],[-116.909729,32.228333],[-117.02667,32.299995],[-117.122223,32.455826000000116],[-117.12237,32.535332],[-114.71909,32.718456],[-114.80983,32.506989],[-113.052887,31.971069]]]]}},{"type":"Feature","properties":{"FIPS":"MY","ISO2":"MY","ISO3":"MYS","UN":458,"NAME":"Malaysia","AREA":32855,"POP2005":25652985,"REGION":142,"SUBREGION":35,"LON":102.195,"LAT":4.201},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.120239,2.318889000000127],[104.149979,2.303055],[104.154968,2.287777],[104.10107,2.294167],[104.120239,2.318889000000127]]],[[[111.37082,2.360278],[111.30359,2.448055],[111.29332,2.733333],[111.32748,2.781388000000106],[111.38388,2.68],[111.376923,2.49528],[111.41387900000012,2.376111],[111.37082,2.360278]]],[[[104.17108,2.705277],[104.123291,2.781666],[104.17191,2.895],[104.22162600000013,2.729722],[104.17108,2.705277]]],[[[117.72665,4.16972],[117.68692,4.16834],[117.63889,4.228610000000117],[117.74915,4.258055000000127],[117.903557,4.17404],[117.72665,4.16972]]],[[[118.68193,4.499721],[118.75249,4.480555],[118.76277200000015,4.463611],[118.68942300000015,4.44111],[118.639977,4.48611],[118.68193,4.499721]]],[[[118.50972,4.554443],[118.517487,4.53611],[118.49942,4.52917],[118.492752,4.546944],[118.50972,4.554443]]],[[[118.570267,4.600832000000139],[118.529709,4.600277],[118.343872,4.670554],[118.478867,4.689165],[118.59832800000015,4.638611000000139],[118.570267,4.600832000000139]]],[[[115.23304700000017,5.259722],[115.158333,5.257777],[115.190262,5.347221],[115.24192800000014,5.384722],[115.263046,5.298055],[115.23304700000017,5.259722]]],[[[100.288857,5.25611],[100.203857,5.27111],[100.183853,5.4625],[100.272751,5.464722],[100.320251,5.427776],[100.288857,5.25611]]],[[[115.67221,5.707222000000114],[115.666656,5.705832],[115.62776,5.72833],[115.654427,5.73583],[115.67221,5.707222000000114]]],[[[118.17192,5.81222],[118.17886,5.84889],[118.23304700000016,5.84833],[118.22192,5.823889000000121],[118.17192,5.81222]]],[[[116.05942,6.00305],[116.0161,6.026944],[116.01694,6.03583],[116.056641,6.04],[116.05942,6.00305]]],[[[115.609154,6.19528],[115.59274300000014,6.204722000000117],[115.6077580000001,6.22111],[115.61943,6.205555000000118],[115.609154,6.19528]]],[[[99.873291,6.41611],[99.915802,6.389166],[99.923019,6.33083],[99.83914,6.277499],[99.813019,6.15667],[99.77580300000011,6.202222],[99.82858,6.27417],[99.736374,6.24861],[99.64082300000013,6.419721],[99.79692,6.41222],[99.852951,6.464153],[99.873291,6.41611]]],[[[100.654968,6.448332],[100.74858,6.503611],[100.822746,6.43611],[100.85747,6.23444],[101.009697,6.269444],[101.11551700000012,6.248888000000136],[101.119423,5.984444],[101.101357,5.926944],[101.035797,5.896111000000133],[100.99025,5.788054],[101.13969,5.63194],[101.22606700000011,5.673332],[101.3119,5.807221],[101.569977,5.916666],[101.658859,5.860555],[101.69164300000011,5.76361],[101.762482,5.78889],[101.833862,5.743332],[101.943848,5.861943],[101.946091,5.964722],[102.09053,6.15416],[102.09523,6.23614],[102.1666560000001,6.193609],[102.221649,6.217498],[102.34166,6.169443],[102.50499,5.87861],[102.83802800000012,5.59222],[102.97691,5.526944000000128],[103.126358,5.371387],[103.441071,4.765277],[103.492737,4.299166000000127],[103.44656,4.166437],[103.3972020000001,4.117221],[103.413857,3.958889],[103.334702,3.742222],[103.371078,3.642777],[103.478027,3.506667],[103.426361,3.392499],[103.454697,3.187777],[103.44024700000011,2.917778],[103.637016,2.664093],[103.76525900000013,2.625833],[103.820251,2.5775],[103.831093,2.463611],[103.97746300000011,2.243055],[104.22525000000013,1.713055],[104.293297,1.43778],[104.27580300000011,1.365555],[104.200813,1.337778],[104.099701,1.3725],[104.047737,1.468889],[104.07759,1.503359000000103],[103.95941,1.646944],[104.010803,1.538055],[103.998016,1.432777],[103.908577,1.430833],[103.829697,1.476666],[103.68829,1.449444],[103.512138,1.269528],[103.45636000000013,1.32278],[103.370796,1.536666],[103.191353,1.61472],[102.827187,1.84778],[102.70497100000011,1.85278],[102.5533,2.04805],[102.173019,2.217221],[101.8497,2.472499],[101.774689,2.583055000000115],[101.51747100000011,2.671666],[101.41359,2.80222],[101.284973,2.84111],[101.29469300000011,2.92],[101.37246700000014,3.000556],[101.294418,3.268888000000118],[101.111633,3.464722000000108],[101.02803,3.628055],[100.86858400000011,3.765555000000119],[100.81024200000013,3.777222],[100.84413100000012,3.844334],[100.75443300000012,3.84333],[100.697189,3.903888],[100.71053300000011,3.994444],[100.773033,3.982499],[100.869957,4.02305],[100.69690700000012,4.151943],[100.61441000000013,4.177221],[100.572197,4.339999],[100.6055300000001,4.79833200000013],[100.435516,4.92111],[100.361076,5.08611],[100.433578,5.194165000000112],[100.380249,5.524444],[100.3491360000001,5.569166],[100.37413,5.683332],[100.35553,5.963888],[100.126862,6.419617],[100.171356,6.476665],[100.193573,6.569444],[100.17468300000013,6.625832],[100.21498,6.71111],[100.30275000000012,6.698888000000125],[100.334412,6.58694400000013],[100.379044,6.540766],[100.654968,6.448332]]],[[[117.49359100000015,6.742498000000126],[117.512772,6.678610000000105],[117.46692700000015,6.6424990000001],[117.41554,6.625554000000136],[117.33719600000019,6.651388],[117.439423,6.694443],[117.40804300000012,6.74611],[117.49359100000015,6.742498000000126]]],[[[116.789146,6.57917],[116.862488,6.596388000000103],[117.04802700000016,6.825555000000122],[117.02970900000014,6.93111],[117.068604,6.979444],[117.17830700000013,6.990276],[117.25249,6.941387],[117.25305200000014,6.767777],[117.290817,6.635833000000105],[117.46332,6.53972],[117.646378,6.51611],[117.738876,6.389999],[117.721649,6.254444],[117.642212,6.24361],[117.599716,6.189721],[117.65999,6.099721000000101],[117.673866,5.98],[117.50305200000012,5.896111000000133],[117.782211,5.914999],[117.891098,5.955277],[118.008881,6.061666],[118.124687,5.861388],[118.080276,5.810277],[117.90942,5.80139],[117.9561000000001,5.683887],[118.12552600000015,5.689443],[118.157494,5.795277000000112],[118.25555,5.82777700000014],[118.37359600000013,5.807499],[118.93471,5.429721],[119.070267,5.404444000000125],[119.198593,5.43861],[119.27582,5.345],[119.27249100000016,5.223610000000122],[119.171097,5.112221],[118.70166,4.943054],[118.54971300000011,4.958611],[118.35080700000015,5.035832],[118.20915200000013,4.963611],[118.140549,4.888332000000105],[118.133041,4.850832],[118.28027,4.682221000000141],[118.41721300000016,4.593332],[118.43775900000013,4.613888],[118.48526,4.59278],[118.467262,4.53844],[118.509277,4.500577],[118.59693900000013,4.518888],[118.64415,4.434999],[118.54694400000015,4.350277000000119],[118.18359,4.307776],[117.988312,4.223888],[117.69304,4.374721],[117.62915,4.35361],[117.65193,4.266944],[117.592056,4.169818],[117.4433140000001,4.192777],[117.39833,4.258055000000127],[117.239433,4.35833],[117.189148,4.335555],[116.5336,4.330832],[116.46304,4.293332],[116.314697,4.357777],[116.15582,4.359165],[116.054153,4.277222000000108],[115.98664900000017,4.339722],[115.8724820000001,4.36111],[115.690811,4.18028],[115.659714,4.108596],[115.571381,3.666111],[115.62804,3.432222],[115.576393,3.426111],[115.53888,3.33361],[115.49552900000015,3.040000000000134],[115.37525900000013,2.99139],[115.24971,3.010833],[115.139709,2.90611],[115.083054,2.610833],[115.172211,2.604444],[115.237198,2.5225],[114.93942300000013,2.285555],[114.804703,2.248888],[114.77638200000013,2.14667],[114.800537,2.064722],[114.868317,2.043889],[114.859993,1.904166],[114.78333,1.86389],[114.710823,1.770555],[114.580551,1.443333],[114.533333,1.435555],[114.40165700000011,1.509722],[114.228867,1.4425],[114.084396,1.46999],[113.930817,1.44528],[113.794434,1.3075],[113.65833,1.22472],[113.58693,1.283611000000121],[113.4561000000001,1.288333],[113.34082000000012,1.365278],[113.12637,1.431666],[113.05442800000014,1.54528],[112.99971,1.57278],[112.47276,1.568055],[112.204712,1.453611],[112.180817,1.408889000000102],[112.213608,1.378889],[112.131363,1.147222000000113],[111.949707,1.13],[111.827209,0.998611],[111.66693,1.039166],[111.562759,0.999166],[111.40637,1.00889],[111.211929,1.069722],[110.90416,1.014444],[110.80609,0.906667],[110.574432,0.852778],[110.332489,1.001944],[110.187187,1.185],[110.071663,1.22],[109.931664,1.406944000000124],[109.66998,1.613055],[109.6672130000001,1.706388000000118],[109.563873,1.833611],[109.54665,1.904166],[109.648567,2.073409],[109.671371,1.898055000000113],[109.92830700000013,1.689166],[110.25305200000014,1.705555000000118],[110.333328,1.80222],[110.47998000000013,1.62417],[110.730438,1.543879],[110.73637,1.504167],[110.67442,1.44528],[110.746643,1.461111],[110.7724910000001,1.561111],[110.82193000000012,1.568055],[110.9727630000001,1.49944],[111.06303,1.405],[111.155548,1.363889],[111.376923,1.343889000000104],[111.2872,1.41305],[111.174698,1.39389],[111.061653,1.458889],[111,1.575555],[111.205551,2.066388],[111.247482,2.120555],[111.32832300000013,2.105555],[111.372757,2.150833],[111.168587,2.152222],[111.223312,2.421111],[111.368111,2.33909],[111.45027,2.36861],[111.403053,2.480833],[111.44470200000012,2.691666],[111.666092,2.846944000000121],[112.09305,2.905277],[113.01053600000012,3.160555000000102],[113.414993,3.69194],[113.73552700000016,3.99694],[113.92608600000017,4.244165],[113.994713,4.439721],[113.96304,4.56611],[113.986366,4.597499],[114.164993,4.577777],[114.23580900000012,4.531943],[114.31137100000011,4.429166],[114.329987,4.326944],[114.6411,4.018888],[114.80525200000011,4.142221],[114.86692800000014,4.355277],[114.78055,4.73861],[114.856369,4.806388],[114.979431,4.831666],[115.01843,4.895795000000135],[115.026657,4.656666],[115.10054,4.382221000000129],[115.348602,4.314165],[115.355553,4.351665],[115.27388,4.448609],[115.28249400000014,4.611666],[115.22304,4.804998000000126],[115.145782,4.90324],[115.21775800000012,4.958611],[115.32332,4.894444],[115.36665300000014,4.90333],[115.55775,5.06861],[115.574158,5.179166],[115.3611,5.307499],[115.37886000000015,5.398889],[115.52832,5.517499],[115.76249700000015,5.520277],[115.84887700000013,5.563888000000134],[115.91887,5.747499],[116.05108600000018,5.84083],[116.109993,6.127776],[116.328598,6.363333000000125],[116.498032,6.489443],[116.50417300000014,6.540555],[116.64388,6.701111],[116.656937,6.846666000000141],[116.76249700000017,7.02361],[116.834991,6.96111],[116.85971,6.803332],[116.78082,6.643332],[116.789146,6.57917]]],[[[117.283333,7.314721000000134],[117.24971,7.176665],[117.14943,7.16861],[117.06667300000015,7.101943],[117.074158,7.287499],[117.218872,7.352777000000116],[117.283333,7.314721000000134]]],[[[116.8724820000001,7.219999],[116.856934,7.18389],[116.87943,7.27555500000011],[117.00332600000011,7.353333000000134],[117.018883,7.26639],[116.8724820000001,7.219999]]]]}},{"type":"Feature","properties":{"FIPS":"MZ","ISO2":"MZ","ISO3":"MOZ","UN":508,"NAME":"Mozambique","AREA":78409,"POP2005":20532675,"REGION":2,"SUBREGION":14,"LON":37.923,"LAT":-14.422},"geometry":{"type":"MultiPolygon","coordinates":[[[[32.95444,-26.05861],[32.895271,-26.040836],[32.910271,-26.00056],[32.9805530000001,-25.972778],[32.95444,-26.05861]]],[[[35.48832700000014,-21.685001],[35.435555,-21.783337],[35.435829000000126,-21.65528],[35.47943900000013,-21.523891],[35.48832700000014,-21.685001]]],[[[39.901382000000126,-16.413334],[39.838882,-16.411114],[39.810829,-16.363056],[39.861382,-16.278057],[39.914719,-16.27972],[39.901382000000126,-16.413334]]],[[[40.500832000000116,-11.031946],[40.53944400000012,-11.00861],[40.570831,-11.036945],[40.38777,-11.31778],[40.481110000000115,-11.41639],[40.42416400000013,-11.649723],[40.505554,-11.957224],[40.512497,-12.43028],[40.471382,-12.50889],[40.558884,-12.55333],[40.64694200000013,-12.76083],[40.409996,-12.96194],[40.48972,-13.0275],[40.518326,-12.955],[40.597221000000104,-12.973333],[40.53944400000012,-13.31222],[40.59111,-13.374723],[40.52583,-13.515278],[40.578888,-13.56722],[40.537498,-13.64528],[40.649994000000106,-14.016945],[40.62277,-14.125557],[40.530548,-14.171667],[40.59861,-14.245834],[40.668884,-14.19028],[40.725273,-14.206112],[40.728607,-14.34306],[40.64361,-14.40139],[40.636108,-14.484724],[40.670555,-14.48778],[40.70832800000011,-14.42778],[40.81166100000013,-14.40778],[40.846107,-14.697779],[40.82,-14.81111],[40.722771,-14.892778],[40.77027,-14.97833],[40.708885,-15.07833],[40.528885,-15.13278],[40.514442,-15.187223],[40.578049,-15.20278],[40.627220000000136,-15.155001],[40.68471,-15.24972],[40.57833,-15.49889],[40.429718,-15.60778],[40.360275,-15.723333],[40.12555,-15.94],[40.10027300000013,-16.078892],[39.98360400000013,-16.231945],[39.888611,-16.23695],[39.78305,-16.29945],[39.817497,-16.412781],[39.698608,-16.536945],[39.127495,-16.870422],[39.094444000000124,-16.98639],[38.686104,-17.07083],[38.249718,-17.22945],[38.102219,-17.315281],[37.872215,-17.37639],[37.205826,-17.751392],[36.98389,-18.001392],[36.913605,-17.95028],[36.89666000000011,-17.886112],[36.841385,-17.87722],[36.820274,-17.90472],[36.97333,-18.051392],[36.943886,-18.10861],[36.47972,-18.576946],[36.398605,-18.733334],[36.252777,-18.891392],[36.131943,-18.903057],[36.13104,-18.808754],[36.106384000000105,-18.808334],[35.982773,-18.92694],[35.671944,-19.12028],[35.437492,-19.42861],[35.112221,-19.716946],[34.899162,-19.85722],[34.84360500000014,-19.854446],[34.811104,-19.776112],[34.619164,-19.61778],[34.67694100000011,-19.733334],[34.776939,-19.82556],[34.75944,-20.180557],[34.69778,-20.37945],[34.658607,-20.39167],[34.737495,-20.55611],[34.98888,-20.725281],[35.008888,-20.80695],[35.115829,-20.93528],[35.084717,-21.08417],[35.050278,-21.097778],[35.0791630000001,-21.32417],[35.2699970000001,-21.64833],[35.276665,-21.821392],[35.337494000000106,-22.074448],[35.312492,-22.41806],[35.39722,-22.460003],[35.403053,-22.22139],[35.477776,-22.091114],[35.545273,-22.232502],[35.54055000000011,-22.41417],[35.485832,-22.62611],[35.50444,-22.83417],[35.535271,-22.950279],[35.588608,-22.93139],[35.583328,-22.90695],[35.610275,-22.924168],[35.47833300000013,-23.17889],[35.485832,-23.29056],[35.413605,-23.515556],[35.40694400000012,-23.656113],[35.347771,-23.69528],[35.338333,-23.905834],[35.339722,-23.96945],[35.48333,-23.79417],[35.53083,-23.80028],[35.54222,-23.863613],[35.48277300000012,-24.04778],[35.497215,-24.10528],[35.179443000000106,-24.533611],[35.01221,-24.65417],[34.303886,-24.92694],[33.714165,-25.11195],[33.24110400000012,-25.32333],[32.886108,-25.535],[32.770271,-25.683613],[32.692215,-25.88111],[32.57611,-25.97556],[32.837494000000106,-26.29306],[32.8716,-26.27817],[32.8991620000001,-26.11167],[32.952499,-26.08389],[32.89043,-26.84714],[32.13340000000011,-26.839626],[32.12916600000011,-26.50584],[32.07222,-26.39333],[32.061104,-26.26139],[32.10083,-26.14861],[32.074715,-26.03722],[31.96851,-25.95784],[31.919441,-25.81417],[32.006104,-25.61584],[32.01611,-24.459446],[31.88583,-24.17112],[31.877399000000135,-23.950645],[31.769722,-23.85639],[31.683609,-23.61361],[31.550831000000134,-23.47667],[31.561665,-23.18667],[31.297504,-22.41476],[31.407497,-22.34028],[32.416107,-21.30722],[32.48887600000012,-21.34445],[32.35833,-21.130558],[32.521385,-20.914169],[32.483604,-20.66167],[32.50222,-20.598614],[32.55082700000014,-20.555],[32.665833,-20.557224],[32.871666,-20.27861],[32.904160000000104,-20.124168],[33.018883,-19.94334],[33.059441000000106,-19.78028],[32.9847180000001,-19.687225],[32.850555,-19.61778],[32.846939000000134,-19.483059],[32.783051000000114,-19.467781],[32.784721,-19.36639],[32.85499600000014,-19.27417],[32.884163,-19.09528],[32.839165,-19.023056],[32.71611,-19.02195],[32.69916500000011,-18.944447],[32.707222,-18.82917],[32.81721,-18.779167],[32.924995,-18.773056],[32.949715,-18.690281],[32.88832900000011,-18.530556],[33.01722,-18.463337],[33.073051000000135,-18.34889],[32.969444,-18.246391],[33.00111,-18.18333],[32.946106,-17.975002],[33.043610000000115,-17.620003],[32.954163,-17.500278],[33.041107000000125,-17.34445],[32.99194,-17.306393],[32.978607,-17.177502],[32.864998,-16.918613],[32.938606,-16.84222],[32.98114,-16.70905],[32.767464,-16.71804],[32.72805,-16.69361],[32.701111,-16.600834],[32.377777,-16.47],[31.908054000000103,-16.418335],[31.899441000000134,-16.35556],[31.721943,-16.214725],[31.428608,-16.16361],[31.276665,-16.018612],[31.143608,-15.994167],[30.422775,-16.009167],[30.417292,-15.64214],[30.36444,-15.344168],[30.25333000000012,-15.21861],[30.213017,-14.98172],[30.343609,-14.967779],[30.80805,-14.77806],[31.48472,-14.619722],[31.693054,-14.50445],[32.372772,-14.30833],[33.222229,-14.012566],[33.34333,-14.205],[33.633331,-14.53972],[34.379166,-14.389446],[34.541107,-14.615557],[34.59333,-15.25306],[34.436661,-15.464169],[34.42472,-15.655001],[34.262772,-15.798334],[34.255554,-15.89917],[34.423882,-16.05389],[34.408607,-16.19334],[34.44722000000012,-16.27722],[34.57,-16.315834],[34.66,-16.453613],[35.00222,-16.797779],[35.143883,-16.831112],[35.13916,-16.95195],[35.053329,-17.020279],[35.083885,-17.125],[35.29005400000011,-17.134266],[35.3022160000001,-16.80917],[35.27805,-16.70472],[35.168610000000115,-16.621113],[35.1353,-16.55337],[35.245277,-16.47389],[35.28833,-16.23389],[35.402771000000136,-16.129448],[35.54028,-16.16445],[35.709442,-16.11056],[35.814438,-16.019447],[35.867218,-15.419445],[35.800278,-15.17778],[35.92416400000013,-14.885557],[35.881104,-14.885],[35.87722,-14.656113],[35.095276000000126,-13.68611],[34.86599,-13.50631],[34.658051,-13.49639],[34.566383,-13.34222],[34.52388800000011,-12.714724],[34.367775,-12.21889],[34.38749700000011,-12.12306],[34.614441,-11.763889],[34.62610600000011,-11.57583],[35.238609,-11.57583],[35.570274,-11.6075],[35.652496,-11.584723],[35.73333000000014,-11.48333],[35.83833,-11.41472],[35.943054,-11.43472],[36.163055,-11.577778],[36.18972,-11.70667],[36.375549,-11.683889],[36.56194,-11.74028],[36.677773,-11.71472],[36.82972,-11.56861],[36.997772,-11.59139],[37.18805,-11.68944],[37.462044,-11.727329],[37.791939,-11.56111],[37.86166,-11.33889],[37.94138,-11.285],[38.096695,-11.25633],[38.49170700000013,-11.41531],[38.655273,-11.28111],[38.897774,-11.172224],[39.134438,-11.141945],[39.268051,-11.16806],[39.50833,-10.99528],[39.766937,-10.92056],[40.019722,-10.77917],[40.447777,-10.471111],[40.521111,-10.48417],[40.584442,-10.65417],[40.50305200000014,-10.79111],[40.61749,-10.83583],[40.507774,-10.93139],[40.500832000000116,-11.031946]],[[34.60277600000012,-12.01195],[34.618332,-12.03722],[34.623886,-12.036667],[34.63,-12.0125],[34.60277600000012,-12.01195]],[[34.72388500000011,-12.032778],[34.70472,-12.07833],[34.72610500000013,-12.09639],[34.75471,-12.04417],[34.72388500000011,-12.032778]]]]}},{"type":"Feature","properties":{"FIPS":"MI","ISO2":"MW","ISO3":"MWI","UN":454,"NAME":"Malawi","AREA":9408,"POP2005":13226091,"REGION":2,"SUBREGION":14,"LON":33.808,"LAT":-13.4},"geometry":{"type":"MultiPolygon","coordinates":[[[[34.73222,-12.09556],[34.70472,-12.07833],[34.726662,-12.031946],[34.75471,-12.04417],[34.73222,-12.09556]]],[[[34.623886,-12.036667],[34.60277600000012,-12.01195],[34.608887,-12.00445],[34.63,-12.0125],[34.623886,-12.036667]]],[[[33.13472,-9.49417],[33.3144380000001,-9.48556],[33.393883,-9.53806],[33.4377750000001,-9.61583],[33.75583,-9.582779],[33.919609,-9.70766],[33.953049,-9.673334],[33.957222,-9.526669],[34.039444,-9.482779],[34.32527,-9.73278],[34.504715,-9.975],[34.53611,-10.05139],[34.584999,-10.56167],[34.658882,-10.67361],[34.649994,-10.890278],[34.593048,-11.016668],[34.61360900000011,-11.105001],[34.799438,-11.33139],[34.890549,-11.383057],[34.959717,-11.486668],[34.96673,-11.572111],[34.62610600000011,-11.57583],[34.614441,-11.763889],[34.3752750000001,-12.155834],[34.37329100000011,-12.24642],[34.52388800000011,-12.714724],[34.566383,-13.34222],[34.658051,-13.49639],[34.86599,-13.50631],[35.095276000000126,-13.68611],[35.87722,-14.656113],[35.881104,-14.885],[35.92416400000013,-14.885557],[35.800278,-15.17778],[35.867218,-15.419445],[35.814438,-16.019447],[35.709442,-16.11056],[35.54028,-16.16445],[35.402771000000136,-16.129448],[35.28833,-16.23389],[35.245277,-16.47389],[35.1353,-16.55337],[35.168610000000115,-16.621113],[35.27805,-16.70472],[35.3022160000001,-16.80917],[35.29005400000011,-17.134266],[35.083885,-17.125],[35.053329,-17.020279],[35.13916,-16.95195],[35.143883,-16.831112],[35.00222,-16.797779],[34.66,-16.453613],[34.57,-16.315834],[34.44722000000012,-16.27722],[34.408607,-16.19334],[34.423882,-16.05389],[34.255554,-15.89917],[34.262772,-15.798334],[34.42472,-15.655001],[34.436661,-15.464169],[34.589722,-15.282778],[34.56361,-15.11778],[34.588882,-14.96389],[34.522217,-14.57167],[34.358887,-14.385557],[33.633331,-14.53972],[33.34333,-14.205],[33.169441,-13.927223],[33.0741650000001,-13.98583],[32.98999800000013,-13.934723],[32.785828,-13.640556],[32.679993,-13.616112],[32.69055200000013,-13.565001],[32.831665,-13.52861],[32.977493,-13.22917],[33.035271,-12.910278],[32.967773000000136,-12.85056],[32.959442,-12.768612],[33.046387,-12.60389],[33.238052,-12.58583],[33.370827,-12.5375],[33.547493000000145,-12.348612],[33.483604,-12.310835],[33.374443,-12.33167],[33.273331,-12.144445],[33.332222,-11.897223],[33.330826,-11.74472],[33.32361,-11.607779],[33.26194,-11.57139],[33.244164,-11.41306],[33.41166,-11.156389],[33.250549,-10.88667],[33.34416,-10.81389],[33.51082600000012,-10.775557],[33.702278,-10.56186],[33.567497,-10.3925],[33.554718,-10.22028],[33.324165,-10.06778],[33.359444,-9.933056],[33.32249500000012,-9.81111],[33.22666,-9.711113],[33.229164,-9.634167],[33.20694,-9.6025],[32.99613,-9.618893],[32.940277,-9.403612],[32.997772,-9.373335],[33.13472,-9.49417]]]]}},{"type":"Feature","properties":{"FIPS":"NC","ISO2":"NC","ISO3":"NCL","UN":540,"NAME":"New Caledonia","AREA":1828,"POP2005":234185,"REGION":9,"SUBREGION":54,"LON":165.447,"LAT":-21.359},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.534424,-22.69389],[167.508026,-22.68833],[167.53137200000015,-22.651112],[167.55664100000013,-22.674442],[167.534424,-22.69389]]],[[[167.50164800000016,-22.67222],[167.419128,-22.64639],[167.434692,-22.54306],[167.50637800000015,-22.56056],[167.55386,-22.6125],[167.50164800000016,-22.67222]]],[[[166.81607,-22.46333],[166.77249100000017,-22.45611],[166.777771,-22.40889],[166.8116460000001,-22.395],[166.842743,-22.408611],[166.81607,-22.46333]]],[[[171.31387,-22.33139],[171.30441,-22.33861],[171.300812,-22.335],[171.304962,-22.32778],[171.31387,-22.33139]]],[[[166.050537,-22.079445],[166.02719,-22.054722],[166.045532,-22.03445],[166.052765,-22.050556],[166.050537,-22.079445]]],[[[166.45026,-21.704445],[166.42859,-21.70389],[166.4155270000001,-21.69139],[166.4408,-21.68861],[166.45026,-21.704445]]],[[[168.00219700000014,-21.45194],[168.095245,-21.455555],[168.12857,-21.520557],[168.120239,-21.63111],[167.97024,-21.64861],[167.8833310000001,-21.56889],[167.80887,-21.38583],[167.962463,-21.38722],[168.00219700000014,-21.45194]]],[[[167.842743,-21.14389],[167.80136100000016,-21.11945],[167.80246,-21.100277],[167.82025,-21.099998],[167.842743,-21.14389]]],[[[166.44802900000013,-20.73416],[166.418854,-20.74],[166.38858,-20.72583],[166.45914,-20.71972],[166.44802900000013,-20.73416]]],[[[167.2872,-20.75639],[167.27914,-20.90639],[167.382172,-20.94444],[167.46524,-21.058056],[167.39804100000015,-21.17778],[167.14194,-21.07611],[167.059692,-20.988609],[167.06247,-20.921112],[167.13693200000012,-20.88944],[167.190247,-20.80695],[167.10553,-20.757225],[167.03970300000015,-20.77167],[167.04941,-20.72166],[167.21109000000013,-20.677498],[167.30496200000016,-20.719444],[167.2872,-20.75639]]],[[[166.62466400000014,-20.40611],[166.654419,-20.46722],[166.61358600000017,-20.4725],[166.57608,-20.55944],[166.58304,-20.599167],[166.62579300000016,-20.601665],[166.5744,-20.68694],[166.49911,-20.717777],[166.59692400000014,-20.47972],[166.59829700000012,-20.43694],[166.55719,-20.40222],[166.62466400000014,-20.40611]]],[[[164.288025,-20.255558],[164.275269,-20.248886],[164.2702640000001,-20.21972],[164.277771,-20.22639],[164.288025,-20.255558]]],[[[163.943848,-20.17055],[163.92248,-20.16972],[163.906921,-20.14389],[163.9238590000001,-20.143055],[163.943848,-20.17055]]],[[[164.31665,-20.327225],[164.30054,-20.23555],[164.5061,-20.305836],[164.583588,-20.404167],[164.74023,-20.488331],[164.858582,-20.62444],[165.062195,-20.737778],[165.22329700000012,-20.76528],[165.401093,-21.055836],[165.603027,-21.180832],[165.5946960000001,-21.225277],[165.630798,-21.27972],[165.75720200000012,-21.303333],[165.963867,-21.406944],[166.429962,-21.72722],[166.61969,-21.906944],[166.94747900000016,-22.09],[167.028046,-22.23278],[167.01470900000015,-22.321388],[166.92941,-22.3975],[166.83359,-22.298611],[166.8158,-22.362499],[166.73358,-22.369999],[166.679138,-22.30861],[166.524994,-22.23361],[166.451904,-22.31667],[166.381622,-22.18],[166.21637,-22.14361],[166.151367,-22.07305],[166.116364,-21.946388],[166.06469700000014,-21.91861],[165.96801800000014,-21.932777],[165.830261,-21.84444],[165.722198,-21.724442],[165.56219,-21.713886],[165.25997900000016,-21.558056],[164.829681,-21.195],[164.800812,-21.094444],[164.698303,-21.05333],[164.62384,-20.94083],[164.51416000000017,-20.896946],[164.381897,-20.780003],[164.3497,-20.688053],[164.171356,-20.50139],[164.147217,-20.39944],[164.165802,-20.340557],[163.992188,-20.15583],[163.98941,-20.087223],[164.31665,-20.327225]]],[[[164.234131,-20.161945],[164.161102,-20.113335],[164.16330000000016,-20.065277],[164.20968600000012,-20.115276],[164.234131,-20.161945]]],[[[163.821625,-20.082779],[163.79025300000012,-20.06195],[163.796936,-20.04084],[163.81775,-20.04084],[163.821625,-20.082779]]],[[[163.9771730000001,-20.08167],[163.939972,-20.068058],[163.9494,-20.002224],[163.9819030000001,-20.04945],[163.9771730000001,-20.08167]]],[[[163.671906,-19.78583],[163.63443,-19.710556],[163.6196900000001,-19.625832],[163.700806,-19.766392],[163.671906,-19.78583]]],[[[163.607452,-19.604168],[163.568024,-19.573055],[163.57663000000014,-19.54945],[163.612457,-19.59611],[163.607452,-19.604168]]],[[[159.949402,-19.343334],[159.922211,-19.25083],[159.95108,-19.11444],[159.978851,-19.17166],[159.949402,-19.343334]]]]}},{"type":"Feature","properties":{"FIPS":"NE","ISO2":"NU","ISO3":"NIU","UN":570,"NAME":"Niue","AREA":26,"POP2005":1632,"REGION":9,"SUBREGION":61,"LON":-169.869,"LAT":-19.052},"geometry":{"type":"Polygon","coordinates":[[[-169.89389,-19.145557],[-169.951416,-19.076389],[-169.931671,-19.016666],[-169.884766,-18.963333],[-169.817505,-18.96833],[-169.781403,-19.067783],[-169.89389,-19.145557]]]}},{"type":"Feature","properties":{"FIPS":"NG","ISO2":"NE","ISO3":"NER","UN":562,"NAME":"Niger","AREA":126670,"POP2005":1326419,"REGION":2,"SUBREGION":11,"LON":9.398,"LAT":17.426},"geometry":{"type":"Polygon","coordinates":[[[4.245,18.645275],[4.245277,19.146664],[5.812499,19.44611],[7.450807,20.852863],[9.742867,22.226391],[11.986475,23.522305],[13.543888,23.16861],[14.234999,22.614166],[14.997889,23.000591],[15.194721,21.998886],[15.202499,21.495831],[15.284443,21.445274],[15.627222,20.955276],[15.558332,20.884441],[15.575832,20.766388],[15.673887,20.698887],[15.996666,20.353054],[15.753887,19.932499],[15.602499,18.782219],[15.485138,16.89809],[14.368889,15.733889],[13.859165,15.037777],[13.767221,14.848055],[13.794167,14.732777],[13.681389,14.617498],[13.672777,14.548611],[13.468887,14.461111],[13.62512,13.718338],[13.347776,13.719999],[13.204721,13.528332],[13.08111,13.524721],[13.066387,13.548611],[12.87611,13.473331],[12.748333,13.346943],[12.589167,13.263611],[12.534166,13.194721],[12.542776,13.150276],[12.459166,13.066111],[12.007776,13.171389],[11.819721,13.273054],[11.463333,13.373333],[11.066666,13.359722],[10.724165,13.386389],[10.134722,13.252499],[9.929998,13.133055],[9.634932,12.802435],[8.984999,12.846666],[8.66361,12.943333],[8.541943,13.074999],[8.408609,13.088333],[8.122221,13.30361],[7.815,13.352777],[7.379722,13.099722],[7.218888,13.125555],[7.090555,12.995277],[6.933332,12.997221],[6.806389,13.108055],[6.679166,13.343887],[6.423055,13.605276],[6.285,13.683887],[6.133333,13.660831],[5.997499,13.701387],[5.548367,13.891499],[5.365,13.8475],[5.289166,13.752777],[4.923611,13.736387],[4.885555,13.781387],[4.469999,13.686943],[4.247777,13.481388],[4.1425,13.476944],[4.139722,13.177221],[4.105,12.996387],[3.952777,12.748888],[3.657777,12.528889],[3.666115,12.249439],[3.636947,12.107771],[3.671666,11.975554],[3.616944,11.919722],[3.631667,11.825277],[3.668611,11.812498],[3.688333,11.749722],[3.604459,11.693274],[3.473611,11.853611],[3.312222,11.889999],[3.250625,12.020784],[3.010035,12.268585],[2.83862,12.396658],[2.665006,12.302771],[2.378054,12.240274],[2.397925,11.896152],[2.058332,12.35722],[2.161666,12.415552],[2.244999,12.417219],[2.220833,12.593611],[2.1425,12.694443],[1.988889,12.73111],[1.928056,12.700554],[1.871666,12.608889],[1.578333,12.629999],[1.117222,13.01111],[0.989167,13.047222],[0.991667,13.371666],[1.182222,13.312777],[1.285306,13.349957],[1.244444,13.393055],[1.031667,13.4625],[0.995278,13.568054],[0.786389,13.668888],[0.616111,13.689999],[0.465,13.91361],[0.351389,14.126944],[0.410833,14.245832],[0.321111,14.362778],[0.189444,14.464722],[0.166667,14.523054],[0.241389,14.752222],[0.193333,14.835833],[0.237222,14.887499],[0.229992,15.002522],[0.396667,14.960554],[0.512222,15.000832],[0.695,14.942221],[0.974722,14.978611],[1.3125,15.286665],[2.628055,15.350555],[3.020833,15.341944],[3.0325,15.433054],[3.523981,15.358152],[3.567222,15.51222],[3.726666,15.652777],[3.823889,15.665277],[3.885,15.709166],[4.069722,16.293888],[4.200833,16.393887],[4.198889,16.820831],[4.2525,16.994442],[4.245,18.645275]]]}},{"type":"Feature","properties":{"FIPS":"AA","ISO2":"AW","ISO3":"ABW","UN":533,"NAME":"Aruba","AREA":0,"POP2005":102897,"REGION":19,"SUBREGION":29,"LON":-69.977,"LAT":12.517},"geometry":{"type":"Polygon","coordinates":[[[-69.882233,12.41111],[-70.059448,12.538055],[-70.063065,12.628611],[-69.93224,12.528055],[-69.882233,12.41111]]]}},{"type":"Feature","properties":{"FIPS":"AV","ISO2":"AI","ISO3":"AIA","UN":660,"NAME":"Anguilla","AREA":0,"POP2005":12256,"REGION":19,"SUBREGION":29,"LON":-63.032,"LAT":18.237},"geometry":{"type":"Polygon","coordinates":[[[-63.167778,18.164444],[-63.053337,18.259163],[-62.970001,18.272221],[-62.993057,18.227219],[-63.167778,18.164444]]]}},{"type":"Feature","properties":{"FIPS":"BE","ISO2":"BE","ISO3":"BEL","UN":56,"NAME":"Belgium","AREA":0,"POP2005":10398049,"REGION":150,"SUBREGION":155,"LON":4.664,"LAT":50.643},"geometry":{"type":"Polygon","coordinates":[[[4.302375,51.263184],[4.327703,51.290123],[4.252368,51.375145],[4.428055,51.361938],[4.393888,51.450272],[4.481944,51.479439],[4.549444,51.482773],[4.541944,51.426666],[4.650555,51.423332],[4.788333,51.503052],[4.845555,51.48111],[4.853055,51.414444],[4.929999,51.398605],[5.035555,51.487221],[5.104444,51.434998],[5.077222,51.395271],[5.139999,51.320831],[5.237499,51.308327],[5.238974,51.26228],[5.510833,51.294441],[5.568334,51.220711],[5.855,51.151108],[5.758055,50.959999],[5.640555,50.863052],[5.651667,50.824715],[5.701944,50.805832],[5.691911,50.760559],[6.011798,50.757271],[6.268611,50.623604],[6.264722,50.497772],[6.344444,50.484161],[6.398204,50.323174],[6.173333,50.232498],[6.134414,50.127846],[6.026256,50.181252],[5.969722,50.16861],[5.889444,50.104164],[5.834444,49.986938],[5.770833,49.95166],[5.734444,49.834999],[5.899166,49.662773],[5.863055,49.571663],[5.4775,49.504166],[5.437778,49.599998],[5.331111,49.656662],[4.996666,49.802498],[4.873055,49.797218],[4.820833,49.992775],[4.894722,50.140274],[4.832503,50.16861],[4.696944,50.090828],[4.673611,49.996384],[4.510555,49.947495],[4.149238,49.978371],[4.194444,50.237495],[4.165,50.283051],[4.038333,50.355553],[3.774722,50.353882],[3.676944,50.395271],[3.660555,50.456383],[3.607778,50.495827],[3.518055,50.518883],[3.372777,50.494995],[3.298611,50.523048],[3.242222,50.668053],[3.149722,50.789993],[2.960556,50.7575],[2.898056,50.703049],[2.650555,50.816109],[2.541667,51.09111],[3.112778,51.318329],[3.370866,51.373856],[3.380833,51.273605],[3.451944,51.242493],[3.520833,51.248055],[3.524722,51.28833],[3.608055,51.304161],[3.793056,51.26194],[3.796111,51.220276],[3.903611,51.205826],[4.127777,51.278885],[4.238898,51.350426],[4.312499,51.287498],[4.302375,51.263184]]]}},{"type":"Feature","properties":{"FIPS":"HK","ISO2":"HK","ISO3":"HKG","UN":344,"NAME":"Hong Kong","AREA":0,"POP2005":7057418,"REGION":142,"SUBREGION":30,"LON":114.129,"LAT":22.423},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.246094,22.203327],[114.13721,22.255554000000128],[114.124977,22.28],[114.2011,22.290554],[114.24664300000018,22.25000000000011],[114.246094,22.203327]]],[[[113.89665200000013,22.195827000000122],[113.833527,22.198067],[113.82527200000015,22.232216],[114.04776000000015,22.339996],[113.992203,22.236382000000102],[113.89665200000013,22.195827000000122]]],[[[114.31414800000016,22.342773],[114.295258,22.345829],[114.296097,22.368053],[114.31387,22.359997000000135],[114.31414800000016,22.342773]]],[[[114.21944,22.47444],[114.23943,22.430828],[114.31387,22.475552],[114.389977,22.42972],[114.37886000000015,22.365829],[114.29261,22.381836],[114.26208,22.35958900000014],[114.296104,22.260561],[114.198029,22.318054],[113.89998600000013,22.37444],[113.89665200000013,22.40694],[114.0333304004439,22.509138149174643],[114.22259578298247,22.55054824689705],[114.21944,22.47444]]]]}},{"type":"Feature","properties":{"FIPS":"CQ","ISO2":"MP","ISO3":"MNP","UN":580,"NAME":"Northern Mariana Islands","AREA":0,"POP2005":80258,"REGION":9,"SUBREGION":57,"LON":145.623,"LAT":15.005},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.28164700000013,14.158333],[145.20636,14.105276],[145.119965,14.122498],[145.23718,14.194998],[145.28497300000012,14.194998],[145.28164700000013,14.158333]]],[[[145.53524800000014,14.828331000000105],[145.52969,14.848331],[145.570251,14.844997],[145.56387,14.833609],[145.53524800000014,14.828331000000105]]],[[[145.62411,14.908054000000105],[145.57220500000017,15.01],[145.633026,15.083887],[145.66275,14.976664],[145.62411,14.908054000000105]]],[[[145.73608400000012,15.13361],[145.73468000000014,15.087219],[145.67914,15.105276],[145.731079,15.23889],[145.818024,15.265833],[145.73608400000012,15.13361]]],[[[145.65582,16.334721],[145.63443,16.376106],[145.714691,16.355831],[145.69693,16.336109000000132],[145.65582,16.334721]]],[[[145.798309,16.680275],[145.779144,16.678883],[145.774994,16.705273],[145.80163600000014,16.700550000000135],[145.798309,16.680275]]],[[[145.860779,17.28722],[145.84134,17.292496],[145.84024,17.317219],[145.86746200000016,17.304165000000125],[145.860779,17.28722]]],[[[145.860779,17.567776],[145.8244,17.57749600000011],[145.833862,17.604996000000142],[145.86551,17.598331],[145.860779,17.567776]]],[[[145.73608400000012,18.04389],[145.716644,18.054443],[145.779144,18.170830000000137],[145.8244,18.163052],[145.828583,18.117496],[145.73608400000012,18.04389]]],[[[145.67914,18.72138200000012],[145.643311,18.751389],[145.66330000000016,18.810276],[145.7105100000001,18.768330000000105],[145.67914,18.72138200000012]]],[[[145.405823,19.652775],[145.3816220000001,19.663883],[145.38916000000017,19.68888],[145.41525300000012,19.677219],[145.405823,19.652775]]],[[[145.256927,20.010830000000112],[145.227448,20.021942],[145.242188,20.052219],[145.27359,20.036385],[145.256927,20.010830000000112]]],[[[144.921082,20.518330000000105],[144.8991390000001,20.526108],[144.913605,20.55638],[144.93496700000014,20.544163],[144.921082,20.518330000000105]]]]}},{"type":"Feature","properties":{"FIPS":"FO","ISO2":"FO","ISO3":"FRO","UN":234,"NAME":"Faroe Islands","AREA":0,"POP2005":48205,"REGION":150,"SUBREGION":154,"LON":-6.864,"LAT":62.05},"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.655278,61.389442],[-6.845834,61.46805],[-6.962778,61.619164000000126],[-6.889445,61.644997],[-6.72444,61.573326],[-6.655278,61.389442]]],[[[-6.60417,61.821663],[-6.65222,61.742775],[-6.841111,61.81749700000011],[-6.908334,61.904716],[-6.776945,61.895271],[-6.60417,61.821663]]],[[[-7.04972,62.067772],[-7.20167,62.018608],[-7.226667,62.06443800000011],[-7.25111,62.04277000000013],[-7.378056,62.064995],[-7.435,62.14027],[-7.223333,62.159439000000134],[-7.045,62.094444],[-7.04972,62.067772]]],[[[-6.70694,61.937492000000134],[-6.86917,61.997498000000114],[-7.034582,62.11211],[-7.23222,62.172493],[-7.21083,62.284721],[-7.192223,62.30777700000011],[-7.06583,62.282219],[-6.99083,62.193054],[-6.72472,62.035],[-6.70694,61.937492000000134]]],[[[-6.620001,62.229721],[-6.68583,62.244995000000124],[-6.720834,62.331383],[-6.625556,62.253326],[-6.620001,62.229721]]],[[[-6.6575,62.0925],[-6.6575,62.055832],[-6.921945,62.167221],[-7.025,62.23778],[-7.06028,62.3136060000001],[-6.950278,62.338051],[-6.60111,62.196938],[-6.588056,62.134163000000115],[-6.6575,62.0925]]],[[[-6.41861,62.18388],[-6.518056,62.16888],[-6.5725,62.2116620000001],[-6.588056,62.23972],[-6.550858,62.250984],[-6.54897,62.3009],[-6.574403,62.34988],[-6.541667,62.357498],[-6.48889,62.28833],[-6.388889,62.254997],[-6.41861,62.18388]]],[[[-6.58583,62.256386],[-6.664445,62.322495],[-6.660833,62.372498],[-6.56639,62.296387],[-6.58583,62.256386]]],[[[-6.40611,62.284439],[-6.480278,62.29777],[-6.545279,62.38694],[-6.48917,62.381386000000134],[-6.40611,62.284439]]]]}},{"type":"Feature","properties":{"FIPS":"AN","ISO2":"AD","ISO3":"AND","UN":20,"NAME":"Andorra","AREA":0,"POP2005":73483,"REGION":150,"SUBREGION":39,"LON":1.576,"LAT":42.549},"geometry":{"type":"Polygon","coordinates":[[[1.78172,42.569962],[1.743055,42.563606],[1.718889,42.503052],[1.541667,42.437218],[1.454722,42.441666],[1.424166,42.493332],[1.421389,42.54583],[1.491944,42.65361],[1.738611,42.616386],[1.78172,42.569962]]]}},{"type":"Feature","properties":{"FIPS":"GI","ISO2":"GI","ISO3":"GIB","UN":292,"NAME":"Gibraltar","AREA":0,"POP2005":291,"REGION":150,"SUBREGION":39,"LON":-5.345,"LAT":36.138},"geometry":{"type":"Polygon","coordinates":[[[-5.334508,36.16256],[-5.33823,36.112175],[-5.345253,36.11274],[-5.355799,36.163307],[-5.334508,36.16256]]]}},{"type":"Feature","properties":{"FIPS":"IM","ISO2":"IM","ISO3":"IMN","UN":833,"NAME":"Isle of Man","AREA":0,"POP2005":78357,"REGION":150,"SUBREGION":154,"LON":-4.527,"LAT":54.229},"geometry":{"type":"Polygon","coordinates":[[[-4.777779,54.05555],[-4.713889,54.214439],[-4.618056,54.254166],[-4.5275,54.367218],[-4.354167,54.410828],[-4.307501,54.296944],[-4.394444,54.186386],[-4.623889,54.068604],[-4.777779,54.05555]]]}},{"type":"Feature","properties":{"FIPS":"LU","ISO2":"LU","ISO3":"LUX","UN":442,"NAME":"Luxembourg","AREA":0,"POP2005":456613,"REGION":150,"SUBREGION":155,"LON":6.088,"LAT":49.771},"geometry":{"type":"Polygon","coordinates":[[[6.026256,50.181252],[6.134414,50.127846],[6.130555,50.013885],[6.250278,49.884163],[6.395555,49.817772],[6.524444,49.808609],[6.505835,49.706627],[6.420833,49.665833],[6.356486,49.525864],[6.36217,49.459389],[6.229722,49.508331],[6.156111,49.503883],[6.090555,49.453049],[5.977777,49.448608],[5.809999,49.538887],[5.863055,49.571663],[5.899166,49.662773],[5.869444,49.719719],[5.748055,49.79277],[5.747777,49.907494],[5.834444,49.986938],[5.889444,50.104164],[6.026256,50.181252]]]}},{"type":"Feature","properties":{"FIPS":"MC","ISO2":"MO","ISO3":"MAC","UN":446,"NAME":"Macau","AREA":0,"POP2005":47309,"REGION":142,"SUBREGION":30,"LON":113.545,"LAT":22.2},"geometry":{"type":"Polygon","coordinates":[[[113.531662,22.194736],[113.536102,22.211662],[113.554428,22.21273],[113.552467,22.183052],[113.531662,22.194736]]]}},{"type":"Feature","properties":{"FIPS":"MN","ISO2":"MC","ISO3":"MCO","UN":492,"NAME":"Monaco","AREA":0,"POP2005":325,"REGION":150,"SUBREGION":155,"LON":7.412,"LAT":43.75},"geometry":{"type":"Polygon","coordinates":[[[7.439293,43.757523],[7.4175,43.734161],[7.391609,43.727547],[7.416111,43.770554],[7.439293,43.757523]]]}},{"type":"Feature","properties":{"FIPS":null,"ISO2":"PS","ISO3":"PSE","UN":275,"NAME":"Palestine","AREA":0,"POP2005":3762005,"REGION":142,"SUBREGION":145,"LON":35.278,"LAT":32.037},"geometry":{"type":"MultiPolygon","coordinates":[[[[34.33416,31.25972],[34.26757800000013,31.21654],[34.21666,31.323330000000112],[34.490547,31.596096000000102],[34.558609,31.533054],[34.388885,31.394722],[34.373055000000136,31.29972],[34.33416,31.25972]]],[[[35.282494,32.516937],[35.40416,32.50750000000011],[35.48111,32.412773],[35.559715,32.383606],[35.573296,32.225548],[35.516388,32.04111],[35.55582400000014,31.76611],[35.498055000000136,31.6416660000001],[35.478195,31.497322],[35.383888,31.48722],[35.229721,31.37861],[34.922775,31.352219],[34.884438,31.40472],[34.945,31.495552],[34.95361,31.594719],[35.0975,31.708332],[35.209717000000126,31.75],[35.10828400000014,31.833073],[34.965557,31.830551000000128],[35.0075,32.028053],[34.979164,32.15305],[35.026939,32.24082900000013],[35.05666400000012,32.425278000000105],[35.092773000000136,32.480827],[35.208054,32.546387],[35.282494,32.516937]],[[35.25166300000012,31.788055000000103],[35.26361,31.803608],[35.248886,31.80888700000014],[35.243607,31.803886],[35.25166300000012,31.788055000000103]]]]}},{"type":"Feature","properties":{"FIPS":"MJ","ISO2":"ME","ISO3":"MNE","UN":499,"NAME":"Montenegro","AREA":0,"POP2005":607969,"REGION":150,"SUBREGION":39,"LON":19.254,"LAT":42.792},"geometry":{"type":"Polygon","coordinates":[[[18.455555,42.565826],[18.577499,42.654999],[18.455555,42.825554],[18.480553,42.964439],[18.524441,43.012215],[18.649998,43.044167],[18.643887,43.13916],[18.699997,43.255554],[18.83934,43.348022],[18.914238,43.358315],[19.016666,43.239441],[19.068607,43.241386],[19.093609,43.308884],[19.023052,43.435555],[18.95583,43.458328],[18.949444,43.509438],[19.006664,43.555832],[19.223888,43.516388],[19.254719,43.459999],[19.511944,43.321938],[19.647778,43.181664],[19.969719,43.090553],[20.059719,43.005554],[20.297497,42.926384],[20.382774,42.835548],[20.231941,42.761108],[20.014999,42.752495],[19.977497,42.703888],[20.10722,42.654442],[20.071423,42.560913],[19.822498,42.471939],[19.746666,42.543053],[19.773609,42.593605],[19.75333,42.64222],[19.713055,42.660553],[19.645832,42.61805],[19.606388,42.539444],[19.282497,42.185555],[19.400276,42.10527],[19.346943,41.955551],[19.367771,41.848999],[19.15472,41.945831],[19.138611,42.043327],[18.883331,42.27861],[18.577221,42.387215],[18.55611,42.431389],[18.702499,42.393326],[18.709164,42.416664],[18.675278,42.462776],[18.498055,42.451111],[18.455276,42.500275],[18.455555,42.565826]]]}},{"type":"Feature","properties":{"FIPS":"MF","ISO2":"YT","ISO3":"MYT","UN":175,"NAME":"Mayotte","AREA":0,"POP2005":0,"REGION":2,"SUBREGION":14,"LON":45.155,"LAT":-12.777},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.282494,-12.804167],[45.2625,-12.76889],[45.283051000000114,-12.7475],[45.293327,-12.781668],[45.282494,-12.804167]]],[[[45.20499400000011,-12.84972],[45.181107,-12.97139],[45.097496,-12.985834],[45.06055,-12.89639],[45.099442,-12.91056],[45.124107,-12.88528],[45.039993,-12.73611],[45.078888,-12.6625],[45.222771,-12.73944],[45.20499400000011,-12.84972]]]]}},{"type":"Feature","properties":{"FIPS":null,"ISO2":"AX","ISO3":"ALA","UN":248,"NAME":"�land Islands","AREA":0,"POP2005":0,"REGION":150,"SUBREGION":154,"LON":19.952,"LAT":60.198},"geometry":{"type":"MultiPolygon","coordinates":[[[[20.210831,59.97999600000014],[20.137215,59.991661],[19.999165,60.05527],[20.102776,60.09555],[20.205276,60.063606],[20.210831,59.97999600000014]]],[[[20.270554000000118,60.057495000000124],[20.200275,60.085831],[20.215553,60.13916],[20.29222,60.125275],[20.270554000000118,60.057495000000124]]],[[[19.676666,60.15694],[19.5627750000001,60.122772],[19.510555,60.175278000000105],[19.541111000000114,60.23027],[19.601944,60.255829],[19.676666,60.15694]]],[[[20.397221000000112,60.195],[20.341942,60.235275],[20.36610800000011,60.265549000000135],[20.44111,60.25305200000014],[20.397221000000112,60.195]]],[[[20.084721,60.350273],[20.277496,60.274162],[20.171665,60.16389],[20.09222,60.170273],[20.1202770000001,60.239998],[20.025276,60.310555000000136],[19.91389,60.21166],[20.025776,60.154274],[20.052776000000105,60.095833],[19.957775,60.089439],[19.943886,60.04277],[19.918053,60.092773000000136],[19.750832,60.094994],[19.648331,60.25666],[19.74889,60.304718],[19.78283,60.292664],[19.76055,60.23833],[19.809166,60.184998],[19.937222,60.288887],[19.892220000000123,60.34333],[19.862221,60.312492],[19.78,60.34916],[19.824997,60.39222],[19.90583,60.399994],[20.084721,60.350273]]]]}},{"type":"Feature","properties":{"FIPS":"NF","ISO2":"NF","ISO3":"NFK","UN":574,"NAME":"Norfolk Island","AREA":0,"POP2005":0,"REGION":9,"SUBREGION":53,"LON":167.953,"LAT":-29.037},"geometry":{"type":"Polygon","coordinates":[[[167.96497,-29.081112],[167.923584,-29.056667],[167.912476,-29.00528],[167.99774,-29.025002],[167.96497,-29.081112]]]}},{"type":"Feature","properties":{"FIPS":"CK","ISO2":"CC","ISO3":"CCK","UN":166,"NAME":"Cocos (Keeling) Islands","AREA":1,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":96.839,"LAT":-12.173},"geometry":{"type":"MultiPolygon","coordinates":[[[[96.914154,-12.19805],[96.90248,-12.199999],[96.91470300000015,-12.151945],[96.924423,-12.182777],[96.914154,-12.19805]]],[[[96.862762,-12.19611],[96.81944,-12.178057],[96.826385,-12.12833],[96.86692800000014,-12.188055],[96.862762,-12.19611]]]]}},{"type":"Feature","properties":{"FIPS":"AY","ISO2":"AQ","ISO3":"ATA","UN":10,"NAME":"Antarctica","AREA":0,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":21.304,"LAT":-80.446},"geometry":{"type":"MultiPolygon","coordinates":[[[[-60.22,-80.28584],[-60.35223,-80.466949],[-60.48112,-80.556671],[-60.90861,-80.74834],[-61.18611,-80.8089],[-61.84389,-80.83639],[-62.711113,-80.77223],[-63.577782,-80.589737],[-63.92695,-80.462509],[-64.18085,-80.43112],[-64.579453,-80.440292],[-65.126953,-80.526947],[-66.07001,-80.450012],[-66.843063,-80.29501],[-67.015015,-80.233337],[-67.03195,-80.1664],[-67.00473,-80.096115],[-66.81639,-80.07223],[-65.69945,-80.214737],[-64.92834,-80.27556],[-63.976112,-80.289734],[-62.550003,-80.2589],[-62.16195,-80.211945],[-61.78945,-80.12445],[-61.72973,-80.066681],[-61.718338,-79.94473],[-61.68028,-79.87889],[-61.41862,-79.70668],[-61.057785,-79.632782],[-60.69501,-79.61],[-60.339729,-79.640015],[-60.17361,-79.71167],[-60.14639,-79.77057],[-60.21473,-79.90529],[-60.195175,-80.22783],[-60.22,-80.28584]]],[[[162.159729,-79.061676],[161.947784,-79.030838],[161.925842,-78.981674],[162.17252,-79.05031],[162.159729,-79.061676]]],[[[-162.13336,-78.741119],[-161.695557,-78.743896],[-161.17584,-78.83639],[-160.30835,-79.151947],[-159.247223,-79.35945],[-159.02307,-79.45473],[-158.969727,-79.50835],[-158.56863,-79.64195],[-158.532501,-79.7139],[-158.72668,-79.82834],[-159.04611,-79.88057],[-159.36252,-79.85278],[-160.10919,-79.86557],[-161.085846,-79.83528],[-162.748077,-79.59557],[-163.59222,-79.372513],[-163.81641,-79.2075],[-163.80917,-79.148346],[-163.75223,-79.10306],[-163.43085,-78.95723],[-163.073914,-78.87028],[-162.83612,-78.74583],[-162.54611,-78.71167],[-162.13336,-78.741119]]],[[[-39.9725,-78.554733],[-39.20723,-78.55833],[-37.45945,-78.64029],[-38.003616,-78.665009],[-38.6125,-78.631119],[-39.039169,-78.66417],[-39.47056,-78.608337],[-39.813057,-78.63306],[-40.99667,-78.584732],[-41.48695,-78.62251],[-41.930557,-78.591949],[-41.593338,-78.56862],[-41.026947,-78.47389],[-39.9725,-78.554733]]],[[[-70.945557,-79.650009],[-71.37306,-79.63501],[-71.73807,-79.570847],[-71.84834,-79.513062],[-71.85529,-79.420288],[-71.74861,-79.23167],[-71.52779,-79.10751],[-71.116394,-78.984726],[-70.304169,-78.805283],[-67.98889,-78.45639],[-67.45195,-78.4425],[-67.33974,-78.464447],[-67.31723,-78.50362],[-67.355835,-78.569458],[-67.57167,-78.65445],[-69.251114,-79.10918],[-69.92223,-79.40945],[-70.381958,-79.57806],[-70.631393,-79.63057],[-70.945557,-79.650009]]],[[[166.352203,-78.313629],[166.098358,-78.25557],[166.19830300000012,-78.207245],[166.1838990000001,-78.166397],[166.065552,-78.11475],[166.279694,-78.115],[166.686127,-78.177505],[166.77417000000014,-78.221115],[166.352203,-78.313629]]],[[[167.31555200000014,-78.25362],[167.061676,-78.251953],[166.871643,-78.20808],[167.322754,-78.076675],[167.425018,-77.99753],[167.58554100000015,-78.01474],[167.67749,-78.11752],[167.62558000000013,-78.181671],[167.510803,-78.24306],[167.31555200000014,-78.25362]]],[[[-44.11445,-78.6989],[-45.26306,-78.73529],[-45.45612,-78.77362],[-45.57528,-78.85196],[-45.498894,-78.895844],[-45.288063,-78.929733],[-44.162781,-78.91612],[-43.79333,-79.00362],[-43.78334,-79.13612],[-43.800835,-79.21085],[-43.839447,-79.23946],[-44.472229,-79.296112],[-44.58334,-79.33389],[-44.42278,-79.380569],[-43.72056,-79.41556],[-43.466118,-79.470291],[-43.36028,-79.53946],[-43.339172,-79.58585],[-43.354446,-79.77972],[-43.44306,-79.89835],[-43.66389,-80.055557],[-43.855835,-80.079453],[-44.340836,-80.05223],[-44.5725,-80.09222],[-44.06667,-80.257507],[-44.13806,-80.30667],[-44.28639,-80.33974],[-45.081673,-80.4514],[-46.59972,-80.60417],[-52.05556,-80.90279],[-54.262222,-80.90334],[-54.75167,-80.82613],[-54.90889,-80.71861],[-54.816673,-80.62056],[-54.46778,-80.454727],[-54.04,-80.3],[-52.425835,-80.139725],[-52.19778,-80.08446],[-51.89612,-79.960556],[-51.138893,-79.76445],[-50.958061,-79.66612],[-50.666115,-79.58862],[-50.578339,-79.50806],[-50.697227,-79.3739],[-50.701393,-79.23029],[-50.49917,-79.08],[-50.545837,-78.9375],[-50.18362,-78.650558],[-49.87584,-78.479172],[-49.55056,-78.3564],[-48.272781,-78.056396],[-47.303062,-77.93584],[-46.616394,-77.92168],[-45.553337,-78.00084],[-44.841949,-78.101395],[-43.891113,-78.36195],[-43.868896,-78.466675],[-43.9075,-78.55585],[-43.98222,-78.63335],[-44.11445,-78.6989]]],[[[-148.76114,-77.44223],[-148.86557,-77.44139],[-149.035278,-77.41695],[-148.82947,-77.4014],[-148.76114,-77.44223]]],[[[-148.85861,-77.354736],[-149.196136,-77.354736],[-149.51947,-77.29085],[-149.43445,-77.251404],[-149.16168,-77.258896],[-148.82306,-77.344452],[-148.85861,-77.354736]]],[[[-150.20752,-77.37001],[-150.95502,-77.323624],[-151.193909,-77.27196],[-151.12222,-77.236389],[-150.818909,-77.19501],[-150.076416,-77.34056],[-150.20752,-77.37001]]],[[[167.716949,-77.405838],[168.353333,-77.35556],[169.35553,-77.44752],[169.45084,-77.47],[169.45111,-77.496689],[169.28610200000014,-77.568893],[168.565308,-77.687225],[168.10364,-77.639175],[167.547211,-77.6414],[167.284729,-77.727249],[166.950287,-77.7839],[166.86611900000014,-77.846405],[166.776642,-77.857788],[166.679993,-77.815292],[166.87085,-77.72084],[166.54776,-77.70668],[166.88250700000015,-77.671951],[166.3750000000001,-77.6239],[166.23471,-77.573349],[166.2133480000001,-77.53863],[166.613861,-77.392227],[166.59164,-77.35751],[166.366119,-77.282242],[166.42999,-77.234192],[166.631653,-77.172806],[166.9919430000001,-77.19112],[167.07113600000014,-77.212509],[167.156677,-77.29057],[167.13974,-77.32306],[167.22918700000014,-77.353073],[167.716949,-77.405838]]],[[[-147.25223,-77.16556],[-147.0625,-77.17389],[-147.28809,-77.24306],[-147.53281,-77.151947],[-147.25223,-77.16556]]],[[[-147.896973,-77.42973],[-148.17084,-77.42473],[-148.30475,-77.358902],[-148.8642,-77.27084],[-148.79779,-77.11612],[-148.46445,-77.07056],[-148.202515,-77.090012],[-147.70889,-77.18945],[-147.633911,-77.24722],[-147.59085,-77.33168],[-147.68195,-77.41196],[-147.896973,-77.42973]]],[[[-147.633636,-77.10335],[-147.79446,-77.074448],[-147.835297,-77.0347289999999],[-147.65472,-77.04001],[-147.617798,-77.08334],[-147.633636,-77.10335]]],[[[-148.51169,-76.90779],[-148.206696,-76.97806],[-148.770844,-77.02],[-149.14307,-76.988617],[-149.194733,-76.95056],[-149.02057,-76.90861],[-148.51169,-76.90779]]],[[[-149.47836,-76.898346],[-149.07251,-77.100845],[-149.456696,-77.12611],[-150.162506,-77.08139],[-150.39944,-77.005844],[-150.73639,-76.95113],[-150.625854,-76.91028],[-149.82919,-76.86307],[-149.47836,-76.898346]]],[[[-146.710846,-76.97917],[-146.88278,-76.98195],[-146.97919,-76.898056],[-146.99167,-76.85139],[-146.91418,-76.81612],[-146.681396,-76.814178],[-146.28281,-76.86528],[-146.22336,-76.89751],[-146.3378,-76.946121],[-146.710846,-76.97917]]],[[[-148.533905,-76.722504],[-148.26419,-76.726669],[-148.15723,-76.76529],[-148.37781,-76.80833],[-148.85583,-76.83694],[-149.00836,-76.80862],[-149.169189,-76.73222],[-148.881958,-76.68472],[-148.533905,-76.722504]]],[[[-149.83197,-76.66446],[-149.77002,-76.70557],[-150.32086,-76.78168],[-150.70142,-76.71945],[-150.496674,-76.67584],[-149.83197,-76.66446]]],[[[-148.40945,-76.689453],[-148.686951,-76.678619],[-148.77475,-76.652786],[-148.709747,-76.61778],[-148.61917,-76.618057],[-148.36725,-76.67223],[-148.40945,-76.689453]]],[[[-147.433624,-76.688614],[-147.80139,-76.65334],[-147.95419,-76.591125],[-147.885559,-76.56111],[-147.5914,-76.593903],[-147.3753,-76.670288],[-147.433624,-76.688614]]],[[[-147.347229,-76.613892],[-147.44418,-76.6089],[-147.618073,-76.55695],[-147.47473,-76.55751],[-147.347229,-76.613892]]],[[[-146.772247,-76.714172],[-147.09195,-76.69723],[-147.251404,-76.57695],[-147.05972,-76.512512],[-146.76083,-76.57056],[-146.730011,-76.69501],[-146.772247,-76.714172]]],[[[168.603333,-76.23279],[168.467529,-76.21558],[168.36108400000012,-76.162506],[168.490814,-76.158615],[168.603333,-76.23279]]],[[[-146.58557,-76.305557],[-146.83807,-76.28418],[-147.2178,-76.168625],[-147.278076,-76.11334],[-147.128906,-76.081116],[-146.77612,-76.08723],[-146.57306,-76.22029],[-146.56058,-76.29333],[-146.58557,-76.305557]]],[[[-146.79056,-75.855835],[-146.90002,-75.85806],[-147.003632,-75.81946],[-146.85947,-75.80556],[-146.755585,-75.8439],[-146.79056,-75.855835]]],[[[-145.1539,-75.73668],[-145.60641,-75.69751],[-145.867279,-75.60455],[-145.80362,-75.54306],[-145.57169,-75.55278],[-145.177795,-75.66362],[-145.11529,-75.705],[-145.1539,-75.73668]]],[[[-143.0014,-75.52612],[-143.185852,-75.52834],[-143.28085,-75.491669],[-143.082245,-75.465286],[-142.96173,-75.51523],[-143.0014,-75.52612]]],[[[-132.37195,-74.46417],[-132.53751,-74.45639],[-132.66196,-74.41917],[-132.39252,-74.35667],[-132.20529,-74.3925],[-132.255585,-74.443069],[-132.37195,-74.46417]]],[[[-131.38974,-74.34695],[-130.791687,-74.37028],[-130.744751,-74.41501],[-130.800568,-74.51807],[-130.97336,-74.547226],[-131.191681,-74.528625],[-131.29028,-74.483337],[-131.523621,-74.502792],[-132.00778,-74.42917],[-131.74029,-74.298889],[-131.48779,-74.293625],[-131.38974,-74.34695]]],[[[-127.391113,-74.58029],[-127.512512,-74.569168],[-127.57251,-74.52],[-127.928886,-74.40501],[-128.16363,-74.276672],[-128.16086,-74.254181],[-127.82251,-74.25195],[-127.03612,-74.39223],[-127.055008,-74.497513],[-127.391113,-74.58029]]],[[[-117.11418,-74.33417],[-117.19833,-74.328339],[-117.152786,-74.29224],[-116.91335,-74.24057],[-116.75168,-74.24722],[-116.778633,-74.277512],[-117.11418,-74.33417]]],[[[-20.4675,-74.33029],[-20.58639,-74.462509],[-20.15084,-74.68556],[-20.06834,-74.79279],[-20.11945,-74.85057],[-20.448059,-74.83862],[-20.62417,-74.66167],[-20.81306,-74.57695],[-21.41417,-74.51973],[-21.55389,-74.49028],[-21.603615,-74.45084],[-21.49528,-74.404175],[-21.206112,-74.390289],[-20.93,-74.33612],[-20.69861,-74.2664],[-20.555557,-74.145],[-20.36945,-74.12167],[-20.32167,-74.24167],[-20.4675,-74.33029]]],[[[-115.930283,-73.961945],[-116.105293,-73.9989],[-116.28528,-74.085846],[-116.30307,-74.10278],[-116.25557,-74.1414],[-116.27362,-74.15362],[-117.24112,-74.1875],[-117.17195,-74.157227],[-117.11557,-74.059723],[-116.83057,-74.02167],[-116.728897,-73.970566],[-116.47084,-73.959732],[-116.32945,-73.901947],[-116.110001,-73.88528],[-115.884293,-73.92531],[-115.930283,-73.961945]]],[[[-122.14973,-73.614456],[-120.545563,-73.78946],[-120.2614,-73.76779],[-120.0100099999999,-73.80751],[-119.50528,-73.80528],[-119.16945,-73.75835],[-119.06584,-73.794174],[-118.662781,-73.81584],[-118.59584,-73.843338],[-118.54945,-73.92889],[-118.66612,-74.00056],[-119.43779,-74.16724],[-120.31778,-74.23889],[-120.783073,-74.242783],[-121.49751,-74.36446],[-122.13223,-74.368057],[-122.63,-74.32085],[-122.44972,-74.185013],[-122.45168,-74.125565],[-122.57613,-74.03917],[-122.401947,-73.90611],[-122.41446,-73.87056],[-122.79306,-73.83585],[-123.15939,-73.734039],[-123.09361,-73.64917],[-122.953613,-73.612503],[-122.14973,-73.614456]]],[[[169.824432,-73.59558],[169.54248,-73.594742],[169.38803100000018,-73.53308],[169.50943,-73.480026],[169.57419,-73.36528],[169.673889,-73.30362],[169.86859100000015,-73.28917],[169.89307,-73.30113],[169.850586,-73.37195],[169.93222,-73.44864],[169.91803,-73.55418],[169.824432,-73.59558]]],[[[-126.11835,-73.24722],[-126.040009,-73.308899],[-125.49695,-73.36667],[-125.492233,-73.40918],[-125.585281,-73.47612],[-125.102547,-73.58995],[-125.10112,-73.619171],[-125.18973,-73.67418],[-125.13417,-73.71806],[-124.791672,-73.72139],[-124.493896,-73.64168],[-124.23056,-73.689178],[-124.17195,-73.72612],[-124.186684,-73.770279],[-124.08723,-73.85834],[-123.722778,-73.98195],[-123.7241669999999,-74.10057],[-123.820282,-74.15529],[-123.987228,-74.16806],[-124.92639,-74.11389],[-125.25279,-74.0639],[-125.64307,-73.9725],[-125.699448,-73.906677],[-125.89418,-73.8764],[-126.02528,-73.82085],[-126.40028,-73.773621],[-126.35945,-73.70529],[-126.47612,-73.662231],[-127.121117,-73.667511],[-127.17807,-73.60945],[-127.08556,-73.535568],[-127.346947,-73.499176],[-127.3925,-73.41779],[-127.22835,-73.349457],[-127.23723,-73.300293],[-127.134453,-73.27084],[-126.33528,-73.2164],[-126.11835,-73.24722]]],[[[-78.048065,-73.44223],[-78.22057,-73.44334],[-78.356674,-73.40306],[-78.346115,-73.25279],[-78.222229,-73.21722],[-77.929459,-73.212509],[-77.6364,-73.300003],[-77.708618,-73.3625],[-78.048065,-73.44223]]],[[[-73.89111,-73.425003],[-73.98361,-73.40306],[-74.06418,-73.32556],[-73.79834,-73.224457],[-73.724457,-73.153625],[-73.4989,-73.153625],[-73.502792,-73.19723],[-73.62862,-73.320007],[-73.89111,-73.425003]]],[[[-104.86501,-73.23889],[-105.05251,-73.214172],[-105.22557,-73.10362],[-105.24112,-73.054733],[-105.152512,-72.961121],[-105.04001,-72.94917],[-104.75362,-73.12556],[-104.550293,-73.18668],[-104.86501,-73.23889]]],[[[-89.74501,-72.875565],[-89.529175,-72.87946],[-89.45668,-72.91362],[-89.735291,-73.05806],[-90.28084,-73.083069],[-90.37946,-73.047791],[-90.3625,-72.9814],[-90.29668,-72.93973],[-90.06168,-72.974457],[-90.01889,-72.9575],[-90.051956,-72.901947],[-89.98029,-72.8539],[-89.74501,-72.875565]]],[[[-74.222778,-72.97612],[-74.17584,-73.05334],[-74.45334,-73.2525],[-74.505,-73.3214],[-74.47835,-73.39389],[-74.268341,-73.535004],[-74.46556,-73.64835],[-74.82362,-73.608337],[-75.67223,-73.41779],[-75.927231,-73.329727],[-76.093613,-73.20946],[-76.06973,-73.157501],[-75.97084,-73.09445],[-75.66945,-73.13],[-75.395279,-73.06001],[-75.35751,-73.015015],[-75.38834,-72.99474],[-75.63556,-72.99861],[-75.72029,-72.94556],[-75.386124,-72.81807],[-74.83501,-72.8289],[-74.222778,-72.97612]]],[[[-93.759445,-72.91167],[-94.13028,-72.86835],[-94.13806,-72.839172],[-94.01167,-72.80917],[-93.80585,-72.815002],[-93.72696,-72.880569],[-93.759445,-72.91167]]],[[[-98.148056,-72.730011],[-98.343613,-72.699448],[-98.006393,-72.637512],[-97.825287,-72.66334],[-98.148056,-72.730011]]],[[[-93.36528,-72.654449],[-93.475571,-72.64639],[-93.461426,-72.584518],[-93.170288,-72.575562],[-93.237793,-72.62529],[-93.36528,-72.654449]]],[[[-99.74084,-72.62361],[-99.25446,-72.58778],[-99.0675,-72.61168],[-98.930283,-72.67361],[-99.026672,-72.74306],[-99.379456,-72.80196],[-99.637222,-72.809723],[-100.619453,-72.73306],[-100.85861,-72.66556],[-100.76918,-72.60278],[-100.335564,-72.556122],[-99.992508,-72.571396],[-99.74084,-72.62361]]],[[[-91.337234,-73.15695],[-91.421112,-73.127502],[-91.39111,-72.992233],[-91.32834,-72.888062],[-91.61723,-72.60474],[-91.23834,-72.52972],[-90.95113,-72.54224],[-90.806396,-72.59279],[-90.852509,-72.74667],[-90.85196,-72.916397],[-91.16196,-73.113892],[-91.337234,-73.15695]]],[[[-61.038612,-72.55972],[-61.10389,-72.558899],[-61.135,-72.54501],[-61.05445,-72.50473],[-60.97,-72.527512],[-61.038612,-72.55972]]],[[[-95.33139,-72.671951],[-95.518341,-72.64944],[-95.334732,-72.58],[-94.93333,-72.496399],[-94.837784,-72.51334],[-94.696762,-72.6142],[-95.33139,-72.671951]]],[[[-78.42001,-72.56778],[-78.1689,-72.58778],[-77.80945,-72.464172],[-77.57167,-72.5],[-77.43918,-72.58862],[-77.471115,-72.656113],[-77.58528,-72.73306],[-77.546112,-72.867508],[-77.59445,-72.910004],[-77.929733,-72.92862],[-78.26918,-72.98946],[-78.806366,-73.18166],[-79.03946,-73.16667],[-79.42168,-72.96001],[-79.02751,-72.88362],[-78.87445,-72.81612],[-78.84167,-72.77139],[-79.03168,-72.618057],[-79.46139,-72.56639],[-79.247513,-72.402512],[-79.06111,-72.376953],[-78.85001,-72.39195],[-78.61917,-72.520279],[-78.42001,-72.56778]]],[[[-68.81612,-72.474457],[-68.97751,-72.460556],[-68.713348,-72.37251],[-68.598068,-72.38583],[-68.645,-72.437225],[-68.81612,-72.474457]]],[[[-60.336945,-72.257507],[-60.45251,-72.25307],[-60.50194,-72.199722],[-60.343613,-72.19417],[-60.312782,-72.24667],[-60.336945,-72.257507]]],[[[68.48201,-72.277786],[68.396133,-72.26114],[68.69313,-72.08891],[68.748672,-72.09584],[68.820023,-72.16528],[68.776688,-72.22058],[68.48201,-72.277786]]],[[[69.797562,-72.03308],[69.74006700000012,-72.00447],[69.773087,-71.92363],[69.86702000000014,-71.891113],[69.957291,-71.91864],[69.797562,-72.03308]]],[[[-98.80307,-71.88667],[-98.50639,-71.82362],[-98.43445,-71.84584],[-98.526947,-71.91],[-98.297501,-71.87195],[-98.32695,-71.94278],[-98.49196,-71.98584],[-98.560562,-72.13112],[-98.52806,-72.150284],[-98.23418,-72.10751],[-98.204453,-72.12695],[-98.23973,-72.18417],[-98.19667,-72.19917],[-97.99362,-72.122513],[-98.136124,-72.04195],[-98.095566,-71.97696],[-98.13631,-71.892899],[-97.81445,-71.90695],[-97.712509,-72.010559],[-97.871399,-72.10529],[-97.767227,-72.172501],[-97.6864,-72.18195],[-97.56001,-72.15306],[-97.391953,-72.0614],[-97.33723,-71.9189],[-97.349457,-71.862503],[-97.148346,-71.844452],[-96.96278,-71.898056],[-96.65056,-71.87334],[-96.39667,-71.93224],[-96.342636,-72.002197],[-96.747787,-72.02862],[-96.70279,-72.079727],[-96.72223,-72.10695],[-97.25806,-72.22223],[-96.850845,-72.25806],[-96.69585,-72.18584],[-96.225845,-72.17334],[-95.99515,-72.08],[-95.82167,-72.189453],[-96.02362,-72.25],[-96.340012,-72.24945],[-96.596115,-72.2866669999999],[-96.0675,-72.34029],[-95.74884,-72.32072],[-95.67584,-72.36056],[-95.795288,-72.41585],[-96.272507,-72.460281],[-96.28389,-72.490005],[-96.20723,-72.537506],[-96.265015,-72.55724],[-97.39307,-72.564453],[-97.63057,-72.530014],[-97.647232,-72.47029],[-97.71695,-72.45361],[-97.82445,-72.52724],[-98.61612,-72.56889],[-98.822784,-72.54306],[-98.841125,-72.52139],[-98.808624,-72.48029],[-98.90056,-72.45946],[-99.521118,-72.46584],[-99.645,-72.439453],[-99.265015,-72.36418],[-99.343903,-72.341675],[-100.08223,-72.36639],[-100.792236,-72.26723],[-102.19945,-72.21362],[-102.46167,-72.17557],[-102.56279,-72.124725],[-102.472778,-72.08029],[-101.57085,-71.93834],[-101.36195,-71.98306],[-101.16084,-71.94084],[-100.925,-71.94084],[-101.114182,-72.001678],[-100.975281,-72.025558],[-100.41446,-71.88139],[-100.06166,-71.935135],[-100.51056,-72.02362],[-100.0625,-72.03279],[-100.235,-72.130844],[-99.93195,-72.0889],[-99.75917,-71.972504],[-99.6989,-71.964172],[-99.60806,-71.99167],[-99.634445,-72.109451],[-99.61111,-72.14111],[-99.4064,-72.04945],[-98.833069,-72.131393],[-98.82501,-72.09222],[-98.9164,-72.022232],[-99.30751,-71.94389],[-99.092514,-71.78056],[-99.02112,-71.76501],[-98.78557,-71.774445],[-98.75584,-71.8114],[-98.845001,-71.864182],[-98.80307,-71.88667]]],[[[0.452026,-71.100586],[0.270935000000122,-71.071411],[0.239807,-71.03361],[0.41925,-70.996414],[0.509277,-71.01114],[0.586731,-71.06445],[0.452026,-71.100586]]],[[[-60.53553,-71.056351],[-60.841118,-71.01167],[-60.95917,-70.94528],[-60.902504,-70.893616],[-60.82333,-70.87556],[-60.62472,-70.88501],[-60.519173,-70.97084],[-60.5089,-71.02362],[-60.53553,-71.056351]]],[[[-7.87944,-70.733902],[-7.990834,-70.72195],[-8.043612,-70.70001],[-7.923612,-70.673889],[-7.725278,-70.710281],[-7.87944,-70.733902]]],[[[-2.39,-70.75195],[-2.16222,-70.76001],[-1.982778,-70.81639],[-2.3725,-70.90056],[-2.625278,-71.02779],[-2.79639,-71.039734],[-2.97861,-71.01222],[-3.29139,-70.890289],[-3.420834,-70.785004],[-3.455,-70.69307],[-3.35639,-70.6364],[-3.037778,-70.63834],[-2.56639,-70.69084],[-2.39,-70.75195]]],[[[-73.685287,-70.68028],[-73.59778,-70.7514],[-73.71028,-70.86307],[-74.306122,-71.010284],[-75.080841,-71.0639],[-75.680283,-71.172501],[-76.1616669999999,-71.17001],[-76.39168,-71.2075],[-76.575562,-71.14835],[-76.63501,-71.060287],[-76.53778,-70.98862],[-76.0464,-70.88417],[-75.50334,-70.881119],[-75.3161159999999,-70.85278],[-75.118896,-70.776672],[-75.007782,-70.67168],[-74.535,-70.821121],[-74.497787,-70.80556],[-74.52585,-70.722229],[-74.45473,-70.64195],[-74.190002,-70.694168],[-74.110291,-70.63028],[-73.9489,-70.626404],[-73.685287,-70.68028]]],[[[2.050658,-70.69972],[1.922301,-70.68278],[1.895934000000125,-70.64612],[2.095091,-70.591125],[2.216734,-70.6364],[2.172057,-70.681137],[2.050658,-70.69972]]],[[[-60.81945,-70.662231],[-61.07556,-70.64195],[-61.15917,-70.57584],[-61.06945,-70.49861],[-60.90834,-70.468338],[-60.73584,-70.48222],[-60.63139,-70.54834],[-60.61973,-70.575287],[-60.656113,-70.61334],[-60.81945,-70.662231]]],[[[-6.04028,-70.579178],[-6.25111,-70.55833],[-6.376682,-70.47607],[-6.132223,-70.410278],[-5.96985,-70.417953],[-5.91611,-70.544174],[-6.04028,-70.579178]]],[[[2.957579,-70.625],[2.69842,-70.592804],[2.61316,-70.50502],[2.726500000000101,-70.421692],[2.91839,-70.39586],[3.180113,-70.403625],[3.32733,-70.46892],[3.2359,-70.55362],[2.957579,-70.625]]],[[[163.386139,-70.38057],[163.305298,-70.34918],[163.483337,-70.353897],[163.464752,-70.36557],[163.386139,-70.38057]]],[[[-3.12806,-70.504181],[-3.32972,-70.483337],[-3.25194,-70.351395],[-2.95056,-70.285004],[-2.71583,-70.29723],[-2.64417,-70.41528],[-2.81111,-70.4664],[-3.12806,-70.504181]]],[[[72.227,-70.613083],[71.831436,-70.55585],[71.688126,-70.338348],[71.795059,-70.267807],[71.930069,-70.29417],[72.058365,-70.439453],[72.2809,-70.57141],[72.227,-70.613083]]],[[[-1.790278,-70.23195],[-1.905556,-70.22334],[-1.97306,-70.181671],[-1.897222,-70.1689],[-1.79583,-70.204178],[-1.790278,-70.23195]]],[[[13.10955,-70.05725],[13.19036100000011,-70.089447],[13.221184000000108,-70.13751],[12.740105,-70.19112],[12.57757,-70.16528],[12.48174,-70.11056],[12.483696,-70.07753],[12.548698,-70.049728],[13.10955,-70.05725]]],[[[-61.385,-70.015289],[-61.47389,-70.006958],[-61.528061,-69.96529],[-61.40778,-69.90945],[-61.292503,-69.93417],[-61.294174,-69.967514],[-61.385,-70.015289]]],[[[15.99285,-70.17224],[15.55785,-70.145],[15.396477000000118,-70.090576],[15.360344,-70.0289],[15.52117,-69.917801],[15.92034,-69.86002],[16.175343,-69.895294],[16.29869,-69.9489],[16.362053,-70.01752],[16.345387,-70.056396],[16.170094,-70.1414],[15.99285,-70.17224]]],[[[-74.84222,-69.81584],[-74.842514,-69.89667],[-74.452515,-70.02167],[-74.55446,-70.058899],[-74.73195,-70.035568],[-74.733902,-70.13722],[-74.87001,-70.17361],[-75.26973,-70.17807],[-75.68251,-70.12472],[-75.861389,-70.055283],[-75.81696,-69.997223],[-75.68056,-69.9425],[-75.6664,-69.87001],[-75.62112,-69.83389],[-75.417236,-69.900284],[-75.273346,-69.813904],[-74.84222,-69.81584]]],[[[38.23148300000014,-69.67807],[38.118385,-69.67363],[38.05619000000013,-69.63669],[38.23148300000014,-69.64667],[38.25675200000012,-69.665024],[38.23148300000014,-69.67807]]],[[[-72.35529,-69.75751],[-72.72835,-69.7289],[-72.945282,-69.600845],[-72.80612,-69.518616],[-72.465286,-69.49362],[-72.36473,-69.52167],[-72.27612,-69.61334],[-72.04445,-69.69307],[-72.150284,-69.73834],[-72.35529,-69.75751]]],[[[-62.042229,-69.720001],[-62.170837,-69.67334],[-62.145279,-69.57333],[-62.19445,-69.410004],[-62.38195,-69.27612],[-62.39667,-69.2039],[-62.327225,-69.10751],[-62.116394,-69.13139],[-61.715561,-69.468613],[-62.042229,-69.720001]]],[[[155.87362700000014,-69.15112],[155.536133,-69.08668],[155.525848,-69.00058],[155.8837,-69.05897],[155.91723600000012,-69.109192],[155.87362700000014,-69.15112]]],[[[155.20084,-69.046112],[154.99197400000014,-69.04724],[154.95391800000013,-69.01723],[155.088165,-68.92219],[155.308899,-68.98114],[155.29279,-69.02336],[155.20084,-69.046112]]],[[[-63.44694,-68.85139],[-63.561394,-68.836121],[-63.62778,-68.796951],[-63.41334,-68.83723],[-63.44694,-68.85139]]],[[[-90.594452,-68.92584],[-90.730835,-68.87001],[-90.7514,-68.79918],[-90.63335,-68.770279],[-90.48695,-68.827789],[-90.483337,-68.892227],[-90.594452,-68.92584]]],[[[-70.15695,-68.84862],[-70.087509,-68.899734],[-70.011124,-69.064178],[-70.073624,-69.12445],[-70.08417,-69.26363],[-69.99695,-69.29362],[-69.72168,-69.301392],[-69.34167,-69.648056],[-69.30917,-69.82194],[-69.22696,-69.943069],[-69.08528,-70.03639],[-69.05695,-70.19278],[-68.88112,-70.28528],[-68.637512,-70.34529],[-68.641953,-70.404449],[-68.464737,-70.53946],[-68.377228,-70.649445],[-68.37807,-70.72862],[-68.30833,-70.797501],[-68.29362,-70.86945],[-68.312225,-70.97362],[-68.230835,-71.0764],[-68.18417,-71.26363],[-68.24112,-71.36639],[-68.071396,-71.63834],[-68.112228,-71.689178],[-68.137787,-71.88667],[-68.43028,-71.99556],[-68.31862,-72.07223],[-68.39168,-72.2339],[-68.705,-72.270279],[-68.79112,-72.31778],[-69.066681,-72.37529],[-69.16556,-72.443069],[-69.177505,-72.53528],[-69.26001,-72.56418],[-69.671951,-72.58446],[-70.49278,-72.6925],[-70.72667,-72.6339],[-70.98222,-72.68611],[-71.36223,-72.64723],[-71.78723,-72.64723],[-72.376114,-72.72778],[-72.908066,-72.563614],[-73.19446,-72.431396],[-73.01083,-72.3439],[-72.63695,-72.29918],[-72.226669,-72.37001],[-70.97473,-72.40834],[-70.74167,-72.367783],[-70.667511,-72.27251],[-70.52196,-72.207779],[-70.638901,-72.17639],[-70.934723,-72.26363],[-71.30667,-72.30029],[-72.04501,-72.19446],[-72.0614,-72.17473],[-72.01556,-72.150284],[-71.77945,-72.151947],[-71.67889,-72.10112],[-71.21417,-72.09001],[-70.94723,-72.038895],[-71.058334,-71.99057],[-71.4364,-72.0114],[-71.517227,-71.94945],[-71.841675,-71.92029],[-72.10001,-71.77139],[-72.16556,-71.679169],[-72.2675,-71.64612],[-72.375565,-71.65445],[-72.4425,-71.70946],[-72.62445,-71.75195],[-72.69917,-71.87973],[-72.86667,-71.934174],[-73.218063,-71.94389],[-73.51973,-71.85945],[-73.67168,-71.86334],[-73.879181,-71.820557],[-73.86279,-71.88084],[-73.58112,-72.047226],[-74.04333,-72.20889],[-74.273346,-72.191391],[-74.421112,-72.09834],[-74.560562,-72.056122],[-74.62834,-72.058624],[-74.69667,-72.105011],[-75.291946,-71.98584],[-75.37056,-71.954178],[-75.466125,-71.85112],[-75.249725,-71.81279],[-75.30139,-71.773056],[-75.466675,-71.73973],[-75.483902,-71.69833],[-75.14195,-71.577789],[-74.84273,-71.60017],[-74.7164,-71.69223],[-74.43584,-71.693069],[-74.396118,-71.66334],[-74.51083,-71.505],[-74.389175,-71.43417],[-74.19528,-71.429733],[-73.952515,-71.47278],[-73.845566,-71.517227],[-73.809723,-71.593338],[-73.529175,-71.643341],[-73.454727,-71.60722],[-73.51028,-71.530563],[-73.66862,-71.46722],[-73.67917,-71.35806],[-73.52167,-71.33084],[-73.24057,-71.3472289999999],[-72.83667,-71.45195],[-72.41196,-71.33639],[-73.159729,-71.185013],[-72.926392,-71.11584],[-72.60028,-71.11945],[-72.41028,-71.08694],[-72.14056,-71.145279],[-71.628891,-71.183624],[-71.360001,-71.13779],[-71.31084,-71.04112],[-71.23584,-71.02612],[-71.020279,-71.041397],[-70.92279,-71.14029],[-70.7014,-71.18224],[-70.61389,-71.1664],[-70.58473,-71.114456],[-70.64778,-71.04472],[-70.937225,-70.91917],[-70.941391,-70.84584],[-71.02084,-70.80334],[-71.51306,-70.708069],[-71.87584,-70.71335],[-72.46085,-70.60196],[-72.41196,-70.484726],[-72.329453,-70.430008],[-71.87001,-70.406952],[-71.82861,-70.32333],[-71.59251,-70.3289],[-71.389175,-70.23001],[-71.68501,-70.12028],[-71.815,-69.98418],[-71.79584,-69.878891],[-71.62418,-69.7789],[-71.66486,-69.69545],[-71.79028,-69.632782],[-71.645844,-69.5175],[-72.12028,-69.402512],[-72.191391,-69.258896],[-72.25334,-69.20723],[-72.087784,-69.066681],[-71.416397,-68.89639],[-70.956955,-68.86279],[-70.5164,-68.76779],[-70.15695,-68.84862]]],[[[-60.71806,-68.75473],[-60.93417,-68.736389],[-61.08167,-68.67946],[-60.82973,-68.66112],[-60.70278,-68.716675],[-60.688614,-68.74335],[-60.71806,-68.75473]]],[[[-67.50751,-67.81001],[-67.741669,-67.779449],[-67.81529,-67.689178],[-67.72389,-67.63501],[-67.52389,-67.600571],[-67.08417,-67.631393],[-67.2964,-67.754181],[-67.50751,-67.81001]]],[[[47.671181,-67.58668],[47.846169,-67.56308],[47.89804,-67.594284],[47.84592,-67.63307],[47.719765,-67.651413],[47.501198,-67.65279],[47.407867,-67.624725],[47.43618800000012,-67.57194],[47.53592700000012,-67.510559],[47.63980900000013,-67.52141],[47.631744,-67.564453],[47.671181,-67.58668]]],[[[59.355309,-67.33168],[59.28591200000011,-67.33639],[59.26926,-67.29028],[59.41647,-67.32057],[59.355309,-67.33168]]],[[[164.78723100000013,-67.59529],[164.737518,-67.59558],[164.622803,-67.51558],[164.646393,-67.416946],[164.561676,-67.27167],[164.6922300000001,-67.26028],[164.840027,-67.42363],[164.879456,-67.551132],[164.78723100000013,-67.59529]]],[[[58.642548,-67.12642],[58.551178,-67.131393],[58.52865,-67.1178],[58.671471,-67.12001],[58.642548,-67.12642]]],[[[58.860619,-67.12195],[58.800316,-67.120575],[58.774193,-67.108612],[58.824799,-67.102249],[58.860619,-67.12195]]],[[[50.34647,-67.116394],[50.255035,-67.11557],[50.13064600000013,-67.07419],[50.250092,-67.067795],[50.34647,-67.116394]]],[[[48.7939760000001,-66.75613],[48.840607,-66.81863],[48.397316,-66.890289],[48.321198,-66.87169],[48.291473,-66.82001],[48.364532,-66.76334],[48.7939760000001,-66.75613]]],[[[86.06532300000015,-67.00113],[85.800293,-66.976135],[85.385315,-66.81168],[85.372818,-66.746689],[85.561722,-66.721115],[85.87196,-66.77389],[86.183899,-66.92252],[86.17976,-66.95891],[86.06532300000015,-67.00113]]],[[[-67.244171,-66.747787],[-67.219177,-66.79918],[-67.2964,-66.8925],[-67.45807,-66.89889],[-67.54195,-66.86974],[-67.444458,-66.775009],[-67.51167,-66.744171],[-67.45973,-66.69723],[-67.395279,-66.68918],[-67.244171,-66.747787]]],[[[86.492798,-66.77473],[86.34504700000014,-66.75862],[86.3017,-66.71114],[86.3747560000001,-66.66724],[86.552002,-66.65335],[86.73201,-66.71223],[86.70229,-66.741974],[86.492798,-66.77473]]],[[[-68.10028,-67.393341],[-67.94362,-67.42418],[-68.082779,-67.55057],[-68.27306,-67.526947],[-68.38863,-67.55751],[-68.37807,-67.61584],[-68.40779,-67.65556],[-68.565,-67.74806],[-68.90362,-67.76611],[-69.172501,-67.63834],[-69.2289,-67.541397],[-68.833344,-67.327225],[-68.69501,-67.181396],[-68.62195,-67.03639],[-68.18611,-66.740005],[-67.80945,-66.60973],[-67.585556,-66.61389],[-67.68167,-66.720001],[-67.910843,-66.84889],[-67.913345,-67.04779],[-67.67473,-67.15918],[-68.13278,-67.325012],[-68.15472,-67.364456],[-68.10028,-67.393341]]],[[[99.294495,-66.74861],[99.215881,-66.723068],[99.39307,-66.60585],[99.520874,-66.59003],[99.49255,-66.645],[99.294495,-66.74861]]],[[[163.106964,-66.75613],[163.02056900000014,-66.716949],[162.94919,-66.57223],[163.021393,-66.56752],[163.118347,-66.623062],[163.13778700000012,-66.71251],[163.106964,-66.75613]]],[[[85.33284000000015,-66.62862],[85.190613,-66.6239],[85.15199300000012,-66.590286],[85.228409,-66.52612],[85.28419500000011,-66.520294],[85.396988,-66.59418],[85.33284000000015,-66.62862]]],[[[98.77197300000012,-66.491974],[98.62616,-66.476669],[98.60199,-66.43333],[98.756409,-66.423355],[98.862793,-66.454468],[98.77197300000012,-66.491974]]],[[[97.229187,-66.4664],[97.12366,-66.449188],[97.08837900000015,-66.41528],[97.205582,-66.38336],[97.353104,-66.42389],[97.229187,-66.4664]]],[[[162.5680850000001,-66.43503],[162.350006,-66.32501],[162.281677,-66.220581],[162.300293,-66.188919],[162.363892,-66.166397],[162.60141,-66.35059],[162.612518,-66.3792],[162.5680850000001,-66.43503]]],[[[100.273071,-66.192795],[100.220886,-66.18834],[100.22973600000012,-66.14889],[100.287781,-66.125],[100.351677,-66.14363],[100.34417700000012,-66.17363],[100.273071,-66.192795]]],[[[96.767517,-66.25973],[96.31892,-66.22195],[96.26001,-66.188919],[96.309769,-66.13751],[96.44001800000012,-66.10585],[96.671692,-66.094467],[96.847794,-66.121689],[96.879227,-66.204468],[96.767517,-66.25973]]],[[[-66.73222,-66.31056],[-66.779449,-66.31723],[-66.8025,-66.28862],[-66.743057,-66.117783],[-66.57556,-66.08806],[-66.555557,-66.10695],[-66.58,-66.225281],[-66.73222,-66.31056]]],[[[100.554749,-66.147232],[100.491699,-66.15001],[100.618652,-66.046951],[100.756409,-66.079193],[100.693359,-66.125],[100.554749,-66.147232]]],[[[100.821411,-66.026947],[100.790588,-66.02418],[100.772827,-66.01334],[100.817261,-65.99753],[100.842827,-66.01723],[100.821411,-66.026947]]],[[[100.92755100000011,-66.00557],[100.87726,-66.005844],[100.843628,-65.98308],[100.958923,-65.968338],[100.92755100000011,-66.00557]]],[[[100.770569,-65.861389],[100.70806900000014,-65.832794],[100.818657,-65.801697],[100.998108,-65.808914],[100.770569,-65.861389]]],[[[92.698929,-65.79835],[92.392273,-65.805298],[92.268921,-65.76417],[92.30141,-65.71086],[92.495056,-65.67224],[92.754471,-65.74475],[92.755875,-65.77725],[92.698929,-65.79835]]],[[[-65.66695,-65.687225],[-65.898346,-65.69833],[-65.83417,-65.76112],[-65.82695,-65.8389],[-66.16112,-65.868896],[-66.14667,-65.79945],[-66.055283,-65.68945],[-65.94223,-65.626953],[-65.950562,-65.55556],[-65.918335,-65.52972],[-65.594452,-65.51779],[-65.60667,-65.60278],[-65.66695,-65.687225]]],[[[100.754997,-65.67862],[100.397522,-65.66724],[100.2686230000001,-65.62028],[100.24695,-65.58362],[100.46143,-65.45584],[100.76030700000013,-65.39474],[101.085022,-65.4053],[101.196716,-65.44057],[101.256653,-65.503769],[101.235603,-65.57057],[101.13281200000011,-65.63585],[100.754997,-65.67862]]],[[[103.242798,-65.295837],[103.472527,-65.45001],[103.395569,-65.48697],[103.125847,-65.410019],[103.01532,-65.30585],[102.878906,-65.28462],[102.773933,-65.14029],[102.867798,-65.097519],[103.201172,-65.167801],[103.253906,-65.204468],[103.242798,-65.295837]]],[[[-59.43611,-65.25584],[-59.77,-65.170288],[-59.813057,-65.10722],[-59.765282,-65.08084],[-59.53306,-65.10945],[-59.39751,-65.22362],[-59.43611,-65.25584]]],[[[-63.144173,-64.781403],[-63.324448,-64.91196],[-63.555,-64.89307],[-63.48222,-64.79779],[-63.284447,-64.79333],[-63.115,-64.727509],[-63.144173,-64.781403]]],[[[-57.27917,-64.5525],[-57.45723,-64.53723],[-57.48862,-64.496399],[-57.41889,-64.44833],[-56.855,-64.33862],[-56.93944,-64.44057],[-57.066391,-64.5175],[-57.27917,-64.5525]]],[[[-63.306671,-64.42862],[-63.091949,-64.39917],[-63.06361,-64.466125],[-63.23584,-64.545288],[-63.21751,-64.55585],[-63.11,-64.560287],[-62.95862,-64.500565],[-62.83889,-64.505],[-62.76028,-64.560287],[-63.07973,-64.626404],[-63.29611,-64.75473],[-63.53389,-64.788895],[-63.64001,-64.83389],[-63.733337,-64.78778],[-64.19,-64.71861],[-64.220566,-64.67334],[-64.16585,-64.572784],[-63.84889,-64.51363],[-63.83028,-64.493057],[-63.88417,-64.46335],[-63.87195,-64.443069],[-63.67306,-64.41945],[-63.61195,-64.37056],[-63.618057,-64.318893],[-63.51584,-64.27806],[-63.270836,-64.24445],[-63.089447,-64.29668],[-63.306671,-64.42862]]],[[[-56.815002,-64.31696],[-56.858063,-64.310837],[-56.75834,-64.237793],[-56.57556,-64.219727],[-56.6375,-64.27834],[-56.815002,-64.31696]]],[[[-62.300003,-64.43445],[-62.413612,-64.48334],[-62.48112,-64.462784],[-62.54861,-64.51556],[-62.704727,-64.466125],[-62.42334,-64.23195],[-62.48528,-64.118057],[-62.48056,-64.043335],[-62.246391,-64.02972],[-62.01167,-64.214172],[-62.300003,-64.43445]]],[[[-57.815834,-63.96139],[-57.79861,-64.05917],[-57.721947,-64.084732],[-57.65028,-64.058899],[-57.70139,-64.030838],[-57.68528,-64.009445],[-57.463341,-63.91417],[-57.487228,-63.994728],[-57.45945,-64.03029],[-57.15,-64.075562],[-57.03334,-64.172501],[-57.34584,-64.29362],[-57.24028,-64.358612],[-57.27,-64.382782],[-57.535278,-64.375],[-57.91278,-64.445282],[-58.23945,-64.325012],[-58.091667,-64.228058],[-58.056114,-64.11557],[-58.08083,-64.084732],[-58.42861,-64.11334],[-58.42695,-64.07333],[-58.362503,-64.01445],[-58.183334,-63.980278],[-58.28473,-63.958061],[-58.255,-63.90889],[-57.940285,-63.800285],[-57.787506,-63.799728],[-57.75611,-63.89584],[-57.815834,-63.96139]]],[[[-57.570557,-63.78778],[-57.24917,-63.783615],[-57.045563,-63.82278],[-57.176674,-63.8925],[-57.31278,-63.8775],[-57.347778,-63.90445],[-57.41445,-63.87167],[-57.590004,-63.87917],[-57.69472,-63.816391],[-57.64473,-63.77195],[-57.570557,-63.78778]]],[[[-60.738335,-63.86834],[-60.83417,-63.866669],[-60.88612,-63.802505],[-60.79028,-63.721672],[-60.76417,-63.66056],[-60.53139,-63.651672],[-60.655006,-63.749168],[-60.65806,-63.83083],[-60.738335,-63.86834]]],[[[-55.97667,-63.58139],[-56.16667,-63.52917],[-56.205559,-63.45278],[-55.96389,-63.38111],[-55.78334,-63.39473],[-55.707779,-63.45251],[-55.74111,-63.5125],[-55.97667,-63.58139]]],[[[-62.15417,-63.32417],[-62.237503,-63.33528],[-62.26028,-63.253891],[-62.210556,-63.21139],[-62.069725,-63.21751],[-61.94334,-63.28167],[-62.15417,-63.32417]]],[[[-56.946396,-63.45056],[-56.737785,-63.543335],[-56.72139,-63.59473],[-56.80112,-63.65139],[-57.140839,-63.637222],[-57.16,-63.6125],[-57.12167,-63.522224],[-57.14556,-63.471672],[-57.38,-63.460556],[-57.50556,-63.53861],[-57.671394,-63.580833],[-57.58417,-63.59972],[-57.610001,-63.61945],[-57.865837,-63.67306],[-58.0275,-63.66528],[-58.20723,-63.72389],[-58.395561,-63.858337],[-58.600838,-63.94889],[-58.79834,-64.171951],[-58.88028,-64.2164],[-58.77444,-64.32278],[-58.72472,-64.42862],[-58.77864,-64.535812],[-58.99695,-64.50279],[-58.995003,-64.42973],[-59.18111,-64.45668],[-59.28306,-64.42195],[-59.41695,-64.316391],[-59.49306,-64.31612],[-59.5789,-64.34834],[-59.52417,-64.455841],[-59.46556,-64.49695],[-59.50528,-64.53723],[-59.698059,-64.5114],[-59.68944,-64.38667],[-59.918892,-64.412231],[-60.625,-64.70195],[-60.748062,-64.829453],[-61.0014,-64.929459],[-61.0175,-64.966125],[-61.49695,-65.066681],[-61.598061,-65.14445],[-61.62389,-65.225006],[-61.745,-65.23556],[-61.88195,-65.17917],[-61.95945,-65.180283],[-62.127785,-65.29779],[-62.089729,-65.44029],[-61.98584,-65.491394],[-61.68306,-65.53862],[-62.09222,-65.571396],[-62.13945,-65.60722],[-62.109169,-65.638062],[-62.20473,-65.716125],[-62.38,-65.76083],[-62.459724,-65.90472],[-62.36195,-65.997223],[-62.14612,-66.014175],[-62.04834,-66.11974],[-61.87278,-66.17195],[-61.72556,-66.13223],[-61.608337,-66.051117],[-61.347778,-66.070847],[-61.32973,-66.00389],[-61.3839,-65.954178],[-61.3214,-65.917236],[-61.150284,-65.964737],[-61.070557,-66.063065],[-60.986671,-66.00056],[-61.01723,-65.92334],[-60.999168,-65.90472],[-60.5575,-65.945282],[-60.683891,-66.07945],[-60.936951,-66.26001],[-61.151947,-66.32472],[-61.23945,-66.1925],[-61.416672,-66.12529],[-61.674728,-66.31946],[-61.65389,-66.430008],[-61.71389,-66.469177],[-61.81444,-66.43085],[-61.85778,-66.33639],[-61.98056,-66.238892],[-62.1814,-66.18028],[-62.70917,-66.20834],[-62.885284,-66.26279],[-62.868057,-66.29445],[-62.44361,-66.430283],[-62.58611,-66.48056],[-62.67945,-66.551392],[-62.553894,-66.66112],[-62.43195,-66.668335],[-62.4975,-66.715561],[-62.60889,-66.72835],[-62.73334,-66.69139],[-62.843338,-66.520569],[-63.142227,-66.34695],[-63.16222,-66.29556],[-63.573616,-66.190292],[-63.67556,-66.218338],[-63.801392,-66.28473],[-63.777779,-66.34946],[-63.58667,-66.37668],[-63.86445,-66.401947],[-63.785,-66.44473],[-63.98112,-66.48029],[-63.80806,-66.530014],[-63.801674,-66.58112],[-64.09668,-66.565002],[-64.19667,-66.72029],[-64.12611,-66.76167],[-63.77889,-66.775284],[-63.72111,-66.84529],[-63.743614,-66.89168],[-63.928894,-66.92946],[-64.44446,-66.87668],[-64.837784,-66.951401],[-64.93861,-67.02196],[-64.83057,-67.100281],[-64.69862,-67.09473],[-64.666946,-67.13251],[-64.69196,-67.165558],[-64.92473,-67.2164],[-64.768616,-67.25334],[-64.770569,-67.31723],[-65.00362,-67.3555599999999],[-65.155838,-67.320557],[-65.28946,-67.383896],[-65.32556,-67.3289],[-65.40695,-67.33417],[-65.516953,-67.394455],[-65.613892,-67.55917],[-65.29028,-67.67334],[-65.55612,-67.74335],[-65.61778,-67.88],[-65.32918,-67.97473],[-65.71722,-68.09668],[-65.74223,-68.11584],[-65.72362,-68.148056],[-65.35084,-68.1414],[-65.27585,-68.16972],[-64.97084,-68.02528],[-64.806396,-68.07251],[-64.76834,-68.122787],[-64.870285,-68.1925],[-65.114456,-68.2039],[-65.59668,-68.347504],[-65.56279,-68.38945],[-65.44972,-68.42334],[-65.091675,-68.441956],[-65.08168,-68.47584],[-65.378891,-68.537506],[-65.438614,-68.59529],[-65.31334,-68.71139],[-64.39056,-68.71779],[-63.85778,-68.84279],[-64.243622,-68.712509],[-64.266113,-68.68584],[-63.97584,-68.73889],[-64.06834,-68.67807],[-64.405014,-68.58389],[-64.390015,-68.51334],[-64.25111,-68.498062],[-64.071396,-68.420563],[-63.61417,-68.35529],[-63.02945,-68.349457],[-62.72834,-68.41],[-62.913063,-68.47612],[-63.07639,-68.405014],[-63.375,-68.389725],[-63.740837,-68.44528],[-63.974167,-68.53639],[-63.93556,-68.621124],[-63.501396,-68.69057],[-63.210556,-68.78696],[-63.233337,-68.8125],[-63.70667,-68.742508],[-63.749168,-68.80084],[-63.726395,-68.82028],[-63.460007,-68.898056],[-63.65639,-68.9189],[-63.616394,-68.979446],[-63.36806,-69.05],[-63.41611,-69.10751],[-63.621391,-69.16945],[-63.65195,-69.20056],[-63.63889,-69.22723],[-63.53223,-69.23723],[-63.3125,-69.15001],[-63.237228,-69.14973],[-63.148338,-69.22389],[-63.16862,-69.340286],[-63.123894,-69.368057],[-62.716949,-69.36084],[-62.475838,-69.45306],[-62.47195,-69.67557],[-62.5125,-69.79834],[-62.635,-69.85335],[-62.441391,-69.91112],[-62.095284,-70.08139],[-61.94083,-70.22917],[-62.083061,-70.29028],[-62.5014,-70.233902],[-62.490837,-70.38057],[-62.166672,-70.54085],[-61.77028,-70.50528],[-61.48445,-70.520279],[-61.646118,-70.59279],[-61.775841,-70.593338],[-61.794174,-70.61418],[-61.76528,-70.64778],[-61.78945,-70.666397],[-61.97889,-70.708618],[-62.20945,-70.70418],[-62.09361,-70.76167],[-62.14389,-70.8325],[-62.12889,-70.86557],[-61.904167,-70.911957],[-61.841667,-70.893341],[-61.83639,-70.80917],[-61.788338,-70.79112],[-61.38028,-70.81529],[-61.34862,-70.834732],[-61.34389,-70.951675],[-60.9425,-71.15834],[-61.072227,-71.18251],[-61.10195,-71.235565],[-61.00111,-71.282501],[-60.963615,-71.36111],[-61.259727,-71.32333],[-61.293892,-71.3564],[-61.10722,-71.425568],[-61.47778,-71.439728],[-61.93528,-71.62418],[-61.929726,-71.6564],[-61.73167,-71.665558],[-61.258896,-71.538895],[-60.9539,-71.67001],[-60.904167,-71.736389],[-60.95473,-71.76779],[-61.133896,-71.78361],[-61.146118,-71.85918],[-62.546394,-71.921951],[-62.56889,-71.940567],[-62.530281,-71.96085],[-62.24695,-71.99501],[-62.552505,-72.047501],[-62.30972,-72.06723],[-61.73056,-72.03584],[-61.34389,-72.13473],[-61.303894,-72.118057],[-61.311394,-72.07223],[-61.280838,-72.047226],[-61.025284,-72.055557],[-60.950562,-72.00612],[-60.86584,-72.00307],[-60.81861,-72.042511],[-60.81556,-72.101395],[-61.074722,-72.16362],[-60.791672,-72.24057],[-60.803337,-72.273056],[-61.003334,-72.282501],[-60.841667,-72.3439],[-60.852501,-72.388901],[-61.13,-72.440002],[-61.49528,-72.4039],[-61.549728,-72.42279],[-61.50556,-72.48222],[-61.35389,-72.53667],[-61.32111,-72.66112],[-61.27084,-72.70029],[-60.86528,-72.614731],[-60.61611,-72.643341],[-60.54945,-72.794174],[-60.56639,-72.925003],[-60.643616,-72.996399],[-60.617226,-73.028625],[-60.45056,-72.9514],[-60.16723,-72.983063],[-59.960556,-72.854736],[-59.77417,-72.90028],[-59.761116,-72.979446],[-59.878616,-73.06973],[-59.84945,-73.23306],[-60.21223,-73.283066],[-60.30945,-73.24722],[-60.382782,-73.16251],[-60.462784,-73.147781],[-60.525,-73.191681],[-60.53806,-73.32806],[-60.59972,-73.360291],[-61.088341,-73.285843],[-61.18584,-73.18695],[-61.42334,-73.14001],[-61.75584,-73.11974],[-61.91945,-73.14307],[-61.832779,-73.18167],[-61.54695,-73.219727],[-61.52556,-73.24528],[-61.76112,-73.2314],[-61.633614,-73.30278],[-61.43639,-73.343613],[-61.47167,-73.36667],[-61.83667,-73.366394],[-61.620003,-73.44723],[-61.63222,-73.53223],[-61.609169,-73.546112],[-61.364174,-73.45557],[-60.82194,-73.53612],[-60.67834,-73.5789],[-60.898338,-73.67445],[-60.911949,-73.713623],[-60.63195,-73.68112],[-60.58778,-73.70612],[-60.84806,-73.91389],[-60.97778,-73.957779],[-61.18778,-73.95529],[-61.375557,-73.875],[-61.7625,-73.91389],[-61.53167,-74.015839],[-61.03639,-74.098343],[-61.22945,-74.21335],[-61.75528,-74.306396],[-61.612785,-74.431396],[-61.94,-74.565292],[-62.02639,-74.63612],[-62.023338,-74.66167],[-61.90556,-74.70668],[-61.86195,-74.800003],[-61.8875,-74.83223],[-62.121117,-74.946396],[-62.53139,-74.98251],[-62.62222,-74.939178],[-62.594452,-74.801956],[-62.62083,-74.762222],[-63.245834,-74.604172],[-63.272507,-74.649445],[-63.21473,-74.723068],[-63.060005,-74.81001],[-63.051392,-74.895279],[-63.515282,-74.895279],[-63.62694,-74.95195],[-63.98945,-75.00806],[-63.26195,-75.01889],[-63.09584,-75.13084],[-64.08417,-75.19473],[-64.447784,-75.297791],[-64.38917,-75.33],[-64.21167,-75.34029],[-63.848061,-75.30917],[-63.09473,-75.325562],[-63.429169,-75.45056],[-64.10695,-75.61279],[-65.293335,-75.80667],[-65.46584,-75.87889],[-66.00835,-75.95279],[-66.313614,-76.0347289999999],[-66.92778,-76.058899],[-67.33778,-76.118057],[-67.96722,-76.1564],[-68.30917,-76.24278],[-69.38528,-76.296112],[-69.82501,-76.39029],[-69.91806,-76.53667],[-70.064178,-76.64279],[-70.476395,-76.707779],[-72.802231,-76.63],[-73.79695,-76.64223],[-74.41057,-76.565292],[-75.44446,-76.5464],[-75.9489,-76.45834],[-76.167236,-76.38251],[-76.266113,-76.288071],[-76.30833,-76.100571],[-76.380569,-76.065002],[-77.162781,-76.060287],[-77.43028,-75.95889],[-77.77167,-75.9189],[-77.80278,-75.94473],[-77.72473,-76.01167],[-77.73723,-76.03195],[-78.29945,-76.11945],[-78.47111,-76.195557],[-78.507507,-76.254456],[-78.349457,-76.327225],[-78.46945,-76.37361],[-78.476669,-76.407227],[-78.328339,-76.488617],[-77.906677,-76.58862],[-77.670563,-76.776947],[-77.21861,-76.920563],[-77.02112,-77.06334],[-76.527786,-77.171402],[-75.63278,-77.508621],[-75.458618,-77.521118],[-74.48306,-77.45889],[-73.27084,-77.53723],[-72.95834,-77.588623],[-72.83974,-77.64001],[-72.99057,-77.751953],[-73.371674,-77.906952],[-73.67418,-77.98529],[-74.28029,-78.100845],[-74.85335,-78.141113],[-76.410278,-77.968063],[-77.28195,-77.91945],[-77.92334,-77.93224],[-79.741394,-77.785568],[-80.21056,-77.73584],[-80.66362,-77.624451],[-81.309723,-77.60529],[-81.49695,-77.65779],[-81.45306,-77.70195],[-81.285,-77.7536159999999],[-80.60556,-77.8864],[-80.7075,-77.91028],[-81.50973,-77.88278],[-81.47,-77.897232],[-80.428894,-78.06168],[-78.13,-78.28361],[-77.663895,-78.39307],[-77.55334,-78.44751],[-77.4875,-78.52667],[-77.57112,-78.62418],[-77.790009,-78.68445],[-78.9575,-78.81334],[-79.89973,-78.82667],[-81.09084,-78.777512],[-82.057785,-78.60223],[-82.6239,-78.45557],[-82.93584,-78.31584],[-83.1714,-78.27862],[-83.87083,-78.29695],[-84.107788,-78.36084],[-83.631393,-78.531403],[-83.19667,-78.864731],[-82.88528,-79.008621],[-82.40611,-79.15529],[-81.88834,-79.124725],[-81.51723,-79.175293],[-81.406677,-79.22029],[-81.27389,-79.35529],[-80.726395,-79.53195],[-80.635559,-79.61917],[-80.403061,-79.589737],[-80.40028,-79.53418],[-80.55917,-79.31696],[-80.55139,-79.27612],[-80.20279,-79.228897],[-79.001953,-79.277512],[-77.538071,-79.25473],[-77.029449,-79.279449],[-76.31862,-79.40417],[-76.140015,-79.52084],[-76.083618,-79.645844],[-76.19029,-79.734451],[-76.529175,-79.86528],[-76.89473,-79.954453],[-77.32194,-80.0114],[-78.419724,-80.030838],[-79.775284,-79.905014],[-79.958618,-79.913895],[-79.84946,-79.954453],[-78.337784,-80.15056],[-76.70195,-80.13863],[-76.089447,-80.19723],[-75.80334,-80.26222],[-75.337234,-80.44223],[-74.94196,-80.64778],[-74.69389,-80.69723],[-74.141953,-80.739182],[-72.529175,-80.96779],[-69.835281,-81.13695],[-67.84807,-81.357788],[-63.19445,-82.02444],[-61.37361,-82.258896],[-59.648056,-82.4339],[-59.093613,-82.53639],[-58.78306,-82.645],[-58.771118,-82.684723],[-58.82417,-82.728897],[-59.147507,-82.88223],[-59.07973,-82.96584],[-58.74778,-83.0289],[-58.210838,-83.03334],[-57.84,-82.988892],[-55.54556,-82.38779],[-53.72584,-82.150284],[-50.326118,-81.92418],[-48.129173,-81.83139],[-46.03223,-81.81306],[-44.336945,-81.88695],[-43.08445,-81.85139],[-42.47889,-81.75751],[-42.31444,-81.69778],[-42.208618,-81.55917],[-42.116394,-81.502228],[-41.912781,-81.443069],[-41.488892,-81.383347],[-38.597778,-81.15112],[-36.682228,-80.92168],[-35.29084,-80.883057],[-34.509445,-80.74861],[-33.57389,-80.75362],[-33.14834,-80.686951],[-32.45667,-80.682785],[-31.72389,-80.575562],[-31.087391,-80.567902],[-31.01833,-80.545837],[-31.10583,-80.4875],[-31.095837,-80.46501],[-29.207226,-80.38335],[-28.645557,-80.337234],[-28.319447,-80.276947],[-28.08445,-80.17056],[-28.04222,-80.10612],[-28.0625,-80.00473],[-28.19445,-79.943344],[-28.49528,-79.88417],[-29.65417,-79.76056],[-30.210556,-79.666672],[-29.291115,-79.487793],[-28.44917,-79.26028],[-27.18333,-79.06361],[-27.085556,-79.01334],[-27.379448,-78.99223],[-29.39473,-79.13167],[-32.12694,-79.41585],[-33.00111,-79.4539],[-33.79084,-79.38444],[-34.215279,-79.234451],[-34.48723,-79.18611],[-35.985,-79.01918],[-36.190002,-78.93779],[-36.29028,-78.84084],[-36.30278,-78.779175],[-36.20251,-78.60695],[-36.10445,-78.51445],[-35.70723,-78.308334],[-35.303612,-78.154449],[-34.542229,-77.941956],[-33.886116,-77.660568],[-33.517227,-77.612793],[-33.223335,-77.503067],[-32.825562,-77.45723],[-32.529167,-77.37779],[-31.549168,-77.33168],[-31.06917,-77.120834],[-30.220837,-77.023056],[-29.66695,-76.87001],[-29.173058,-76.792511],[-28.935558,-76.67778],[-28.30528,-76.565292],[-27.729168,-76.51112],[-27.21972,-76.508347],[-26.90778,-76.42723],[-26.46306,-76.38501],[-26.60583,-76.314178],[-26.31195,-76.29333],[-26.043892,-76.34084],[-25.34278,-76.176956],[-24.560837,-76.08334],[-23.41389,-76.01695],[-22.99583,-76.02862],[-22.71028,-75.97862],[-22.29945,-75.98222],[-21.915,-75.91112],[-21.404167,-75.968613],[-20.78306,-75.964447],[-20.38611,-75.908615],[-20.178059,-75.80417],[-19.82333,-75.75723],[-18.735836,-75.81279],[-17.75806,-75.72974],[-17.773056,-75.700562],[-18.204445,-75.593613],[-18.26334,-75.53917],[-18.25639,-75.495834],[-18.07972,-75.40668],[-18.07722,-75.30945],[-17.700279,-75.22917],[-17.32167,-75.040009],[-17.222778,-74.852509],[-17.147224,-74.78473],[-15.880001,-74.505844],[-15.7475,-74.45612],[-15.680557,-74.375],[-15.37611,-74.32918],[-14.886946,-74.17529],[-14.254168,-74.10335],[-13.704723,-73.941956],[-14.116112,-73.898346],[-14.40861,-73.917236],[-14.45806,-73.89056],[-14.485279,-73.82556],[-14.59639,-73.8125],[-14.87306,-73.9189],[-15.417223,-74.025284],[-15.90028,-74.06807],[-16.326115,-74.0639],[-16.91917,-73.97612],[-16.59972,-73.94501],[-16.069168,-73.74751],[-16.566391,-73.78029],[-16.813614,-73.8325],[-16.89972,-73.80278],[-16.89889,-73.773056],[-16.655556,-73.6689],[-16.33083,-73.583069],[-16.293335,-73.55751],[-16.262779,-73.41585],[-16.023613,-73.32028],[-15.5625,-73.268616],[-15.28333,-73.18695],[-14.44111,-73.232788],[-13.765,-73.06168],[-13.73111,-73.020844],[-13.98139,-72.993057],[-14.10833,-72.9214],[-14.440001,-72.845001],[-14.48306,-72.81807],[-14.469168,-72.79668],[-13.74889,-72.79028],[-13.406113,-72.82306],[-13.14889,-72.735291],[-12.28778,-72.569168],[-12.15472,-72.509445],[-12.080557,-72.43806],[-11.657778,-72.32695],[-11.36917,-72.158615],[-11.32056,-72.082779],[-11.32583,-71.96501],[-11.39583,-71.881119],[-11.487501,-71.83974],[-12.14083,-71.65112],[-12.293335,-71.43695],[-12.27694,-71.377502],[-11.911945,-71.29861],[-11.55651,-71.27882],[-11.63167,-71.39973],[-11.592779,-71.56195],[-11.309168,-71.65918],[-11.01944,-71.657227],[-10.88361,-71.60722],[-10.544445,-71.3589],[-10.04861,-71.11139],[-10.087778,-71.070007],[-10.39889,-71.03473],[-10.44139,-71.007507],[-10.43,-70.98695],[-9.87871,-70.90097],[-9.45945,-70.92279],[-9.44444,-70.9425],[-9.4825,-70.965286],[-9.64444,-71.00223],[-9.669168,-71.035278],[-9.23722,-71.1064],[-8.93083,-71.23361],[-8.812223,-71.3589],[-8.72806,-71.60556],[-8.64167,-71.74251],[-8.54389,-71.793625],[-8.36694,-71.82584],[-7.89944,-71.712509],[-7.337778,-71.691956],[-7.30944,-71.65973],[-7.3325,-71.627228],[-7.677501,-71.48834],[-7.723333,-71.42917],[-7.02889,-70.99445],[-6.654445,-70.890289],[-6.391945,-70.76028],[-6.02111,-70.69972],[-5.71667,-70.718613],[-5.48889,-70.815],[-5.44111,-70.882507],[-6.10389,-71.14445],[-6.13361,-71.34611],[-6.009167,-71.4189],[-5.25694,-71.38196],[-4.721111,-71.28584],[-4.2025,-71.33389],[-3.914444,-71.287506],[-3.61944,-71.33168],[-3.10222,-71.29861],[-2.86,-71.24278],[-2.535833,-71.234726],[-2.26167,-71.170837],[-2.25,-71.19112],[-2.335556,-71.293335],[-2.093889,-71.48611],[-1.9325,-71.406113],[-1.525,-71.43195],[-1.31361,-71.318893],[-1.053334,-71.276672],[-0.945833,-71.29556],[-0.77722,-71.389175],[-0.92306,-71.589172],[-0.2975,-71.65889],[0.080933,-71.448349],[0.119507,-71.39003],[0.45178,-71.270294],[2.80316,-70.84695],[3.441221,-70.8203],[4.420102,-70.67584],[6.69952,-70.58639],[7.032589,-70.508911],[7.334224,-70.24583],[7.557308,-70.16835],[7.966182000000116,-70.178894],[8.225092,-70.38974],[8.480646,-70.47725],[8.75201,-70.45253],[9.090387,-70.31834],[8.614252,-70.09807],[8.682856,-70.074463],[9.074274,-70.066406],[9.231195,-70.095001],[10.035639000000117,-70.376129],[10.24761,-70.417236],[10.43841,-70.560562],[10.663996,-70.647232],[11.270622,-70.710281],[12.046745,-70.71751],[12.458977000000118,-70.42252],[12.74035,-70.28113],[13.47094,-70.26974],[14.16564,-70.1589],[14.86871,-70.28142],[15.705925,-70.27862],[18.036488,-69.969177],[18.5281260000001,-70.08417],[19.508961000000113,-70.166687],[20.695602,-70.362503],[21.099777,-70.39918],[21.84843400000011,-70.396408],[22.77672,-70.54474],[23.246754000000124,-70.54642],[25.47978,-70.31222],[25.96257,-70.30141],[26.2981410000001,-70.21722],[27.0278780000001,-70.13751],[27.532883,-70.15973],[28.067001,-70.058075],[28.629807,-70.00168],[29.487839,-69.83502],[31.08342,-69.77389],[31.647015,-69.59584],[32.147011,-69.496124],[32.902321,-69.276947],[32.98979200000013,-69.2214],[33.026711,-69.056396],[33.44504,-68.957245],[33.32199900000012,-68.85196],[33.298935,-68.77418],[33.322556,-68.72084],[33.424232,-68.651413],[33.745338,-68.5339],[34.140358,-68.482788],[34.6381,-68.53445],[34.775612,-68.64612],[34.86704300000014,-68.86975],[35.619484,-69.15808],[36.174782,-69.246124],[36.414528,-69.314453],[36.48838,-69.38225],[36.482033,-69.44972],[36.356178,-69.4622339999999],[36.090614,-69.38057],[36.079262,-69.41891],[36.18339,-69.47974],[36.126442,-69.53361],[36.331154,-69.548065],[36.377541,-69.57112],[36.39591,-69.62361],[36.72257200000013,-69.728073],[36.797829,-69.63113],[36.916176,-69.59695],[37.136208,-69.40195],[37.5001,-69.341125],[37.79203,-69.253357],[37.916176,-69.25142],[37.94559500000013,-69.29642],[37.85092900000012,-69.533905],[37.437538000000124,-69.54028],[37.145058,-69.66475],[37.270607,-69.70224],[37.405922,-69.660858],[37.56449,-69.66557],[37.72898,-69.72389],[38.00174700000013,-69.74417],[38.132851,-69.867798],[38.11869,-69.92224],[38.23923500000012,-69.992798],[38.25785100000013,-69.8914],[38.23618,-69.800583],[38.342567,-69.736389],[38.477028,-69.51002],[38.564491,-69.50058],[38.694496,-69.55862],[38.547035,-69.721695],[38.538429,-69.875305],[38.591469,-69.97058],[38.65037,-69.988632],[38.872292,-69.89085],[38.777016,-69.846695],[39.025368,-69.73891],[39.40787,-69.67584],[39.432289,-69.64418],[39.70176,-69.64864],[39.704506,-69.52753],[39.54063,-69.446686],[39.59781600000014,-69.41057],[39.74839,-69.45113],[39.89005,-69.39529],[39.765907,-69.35419],[39.634804,-69.22696],[39.654762,-69.185287],[39.810341,-69.16417],[39.754799,-69.08891],[39.760353,-68.95447],[39.996986,-68.84169],[40.40452,-68.78445],[40.64341000000013,-68.685562],[40.923927,-68.66391],[41.10313,-68.52389],[41.40115,-68.501678],[41.960915,-68.385284],[42.29063,-68.36391],[42.845367,-68.088348],[43.295074,-68.03445],[43.78171,-68.05556],[44.05869300000011,-67.96974],[44.465912,-67.98114],[44.795319,-67.80307],[45.008942,-67.73251],[45.482277,-67.696121],[45.672585,-67.76723],[45.841469,-67.66557],[46.308929,-67.641693],[46.403412,-67.583618],[46.269501,-67.5253],[46.246429,-67.35751],[46.55143,-67.27725],[46.930878,-67.263916],[46.986725,-67.276413],[46.99868800000013,-67.343063],[47.295876,-67.35503],[47.44895,-67.417801],[47.009499,-67.55031],[47.22781400000014,-67.593338],[47.31589,-67.6917],[47.395607,-67.722519],[47.581451,-67.72641],[48.021149,-67.63362],[48.21701,-67.634445],[48.454803,-67.57973],[48.66062,-67.47696],[48.939484,-67.46335],[49.167267,-67.38336],[49.1689760000001,-67.35445],[49.10257,-67.344177],[48.67643,-67.366974],[48.61729,-67.27196],[48.440887,-67.244171],[48.26285600000011,-67.16753],[48.332558,-67.09695],[48.743378000000114,-66.951675],[49.06143,-66.931396],[49.163971,-66.86281],[49.28702,-66.906128],[49.304535,-66.95224],[49.27451,-66.99528],[49.07534800000013,-67.044464],[49.151703,-67.08862],[49.829498,-67.02167],[49.90396,-67.04501],[50.009491,-67.155304],[50.49142,-67.20142],[50.689484,-67.181396],[50.860077,-67.135849],[50.463409,-67.0667],[50.3898,-66.99417],[50.4559,-66.929184],[50.44119300000011,-66.888077],[50.24893200000014,-66.856674],[50.16977,-66.743057],[50.19424400000013,-66.598633],[50.413116000000116,-66.44197],[50.608978,-66.37724],[51.01559,-66.32947],[51.14505,-66.27112],[51.33255,-66.248062],[51.50839200000013,-66.11806],[51.988922,-65.97559],[52.511749,-65.928619],[52.838104,-65.93892],[53.77896,-65.840027],[54.152008,-65.89307],[54.98337,-65.892807],[55.280365,-65.92058],[55.619232,-66.006958],[56.272545,-66.38669],[56.75448,-66.41086],[57.311974,-66.56334],[57.338097,-66.69806],[56.883942000000104,-66.697784],[56.680634,-66.81392],[56.729523,-66.90112],[57.076996,-66.972519],[57.215607,-66.963348],[57.307274,-67.01863],[57.66031,-67.0003],[57.95613900000012,-67.09695],[58.206444,-67.06056],[58.206444,-67.120575],[58.433678,-67.188919],[58.682831,-67.161133],[58.92392,-67.181396],[59.075584000000106,-67.296951],[58.874474,-67.303619],[58.893097,-67.356674],[59.110619,-67.412231],[59.443390000000136,-67.358917],[59.607262,-67.395294],[59.76395,-67.369171],[60.527306000000124,-67.369171],[61.1409,-67.478363],[61.410065,-67.471405],[61.444489,-67.497787],[61.420624,-67.536133],[61.452293,-67.550003],[62.00253,-67.537231],[62.728119,-67.64696],[63.152306,-67.53668],[63.77755000000013,-67.5164],[64.87447,-67.6664],[65.31784,-67.6589],[66.76785300000012,-67.78056],[67.229523,-67.760284],[67.590042,-67.8253],[68.03004,-67.829468],[68.29756,-67.866119],[68.933914,-67.87028],[69.173904,-67.836136],[69.251724,-67.76918],[69.521133,-67.73834],[69.644791,-67.75391],[69.679214,-67.777786],[69.710037,-67.885559],[69.655594,-68.05389],[69.66951,-68.13556],[70.10200500000013,-68.52389],[70.0180820000001,-68.597519],[69.749222,-68.61391],[69.68367,-68.651672],[69.72590600000012,-68.70724],[69.69392,-68.75362],[69.391129,-68.83586],[69.43367,-68.8878],[69.727554,-68.892807],[69.794205,-68.93251],[69.292007,-69.10278],[69.757523,-69.22613],[69.74312,-69.36308],[69.63478,-69.38808],[69.396988,-69.333908],[69.009476,-69.34447],[68.87117,-69.37947],[68.787796,-69.50973],[68.79975900000011,-69.53639],[69.136734,-69.57724],[69.340042,-69.63863],[69.075577,-69.741119],[69.099503,-69.788086],[69.21284500000013,-69.84222],[69.20534,-69.86391],[68.954788,-69.99335],[68.722794,-70.0253],[68.638931,-70.0128019999999],[68.333084,-69.859451],[68.094742,-69.87947],[67.936722,-69.96669],[68.032547,-70.05833],[67.883377,-70.089172],[67.69002,-70.21669],[67.64613300000013,-70.3864],[67.681717,-70.42447],[67.948074,-70.51503],[68.07893,-70.501129],[68.17006,-70.43503],[68.261978,-70.4378],[68.31563,-70.50084],[68.311722,-70.623062],[68.209183,-70.74669],[68.59394800000013,-70.77058],[68.683121,-70.73975],[68.690872,-70.617523],[68.850296,-70.532242],[68.675064,-70.40834],[68.661697,-70.367798],[69.144791,-70.33139],[69.246964,-70.372787],[69.30031,-70.44307],[69.243912,-70.67058],[69.062271,-70.9453],[68.75642,-71.12224],[68.641739,-71.17001],[68.2628330000001,-71.23474],[67.990311,-71.37335],[67.916458,-71.446686],[67.6053,-71.58308],[67.59865,-71.65445],[67.8542020000001,-71.60834],[67.90114,-71.64447],[67.727249,-71.7628],[67.67366,-71.8828],[67.337555,-72.06334],[67.48366,-72.15779],[67.90114,-72.27585],[68.56337000000013,-72.40335],[68.936417,-72.425003],[69.44368,-72.352524],[69.74391200000014,-72.23613],[69.92006,-72.10751],[70.375015,-72.04973],[70.864944,-71.93014],[70.868118,-71.868896],[71.03309600000011,-71.808075],[70.99812300000013,-71.74806],[71.109756,-71.639175],[71.449783,-71.54611],[71.248123,-71.38945],[71.357559,-71.30974],[71.302017,-71.22418],[71.5214390000001,-71.03891],[71.504471,-70.9539],[71.86452,-70.839447],[71.872574,-70.80031],[71.77308700000015,-70.7452849999999],[71.82783,-70.71251],[72.01424,-70.66334],[72.285294,-70.68307],[72.521439,-70.63502],[72.605057,-70.55974],[72.485306,-70.477524],[72.50007600000015,-70.448059],[72.86311300000011,-70.432785],[72.824234,-70.32947],[72.645584,-70.249725],[72.61562,-70.20361],[72.901138,-70.02196],[73.161148,-69.96529],[73.370621,-69.87891],[73.835037,-69.84558],[74.073685,-69.751953],[74.59975,-69.761139],[74.652298,-69.74139],[74.63697800000011,-69.70058],[74.741409,-69.671692],[74.801407,-69.689178],[74.821976,-69.743896],[74.9906160000001,-69.75113],[75.04280100000011,-69.71139],[74.98085000000015,-69.618896],[75.078934,-69.5625],[75.306412,-69.54558],[75.477005,-69.586136],[75.633377,-69.55447],[75.82338,-69.59529],[76.00087000000013,-69.48891],[75.970596,-69.42889],[76.058121,-69.392227],[76.167252,-69.39111],[76.190872,-69.420837],[76.52199,-69.39806],[76.725052,-69.26697],[77.099747,-69.211136],[77.264786,-69.219742],[77.439224,-69.1875],[77.5039220000001,-69.13139],[77.747269,-69.116974],[77.91396,-69.05725],[77.90284700000012,-68.912506],[77.9519810000001,-68.848633],[78.13282800000013,-68.778625],[77.88838,-68.712799],[77.846146,-68.673065],[77.903946,-68.57501],[78.11641,-68.45973],[78.32002,-68.4089],[78.406448,-68.431137],[78.8606110000001,-68.170288],[79.125626,-68.096405],[80.33559,-67.89696],[80.935074,-67.866119],[81.357559,-67.79549],[81.41591,-67.758072],[81.398941,-67.655304],[81.46199000000013,-67.625],[81.743118,-67.67947],[82.057266,-67.67224],[81.890579,-67.60196],[81.46974200000011,-67.50529],[81.726456,-67.425],[82.01448,-67.25168],[82.33332800000011,-67.222061],[82.56672700000011,-67.37306],[82.665039,-67.39389],[82.934464,-67.245834],[83.403397,-67.15668],[84.11945,-67.164749],[84.708618,-67.133362],[85.3872680000001,-67.18503],[85.79168700000012,-67.17778],[85.960892,-67.128906],[86.001953,-67.077789],[86.06976,-67.061676],[86.931946,-67.02364],[87.224747,-66.93668],[87.502518,-66.89474],[87.764481,-66.81697],[87.841675,-66.67252],[88.109497,-66.652527],[88.22723400000012,-66.03639],[88.48201,-66.07808],[88.680603,-66.413086],[88.764221,-66.44501],[88.83394,-66.516113],[88.767517,-66.60614],[88.739746,-66.71669],[88.967224,-66.7614],[90.41951,-66.65472],[91.2814330000001,-66.540024],[92.00531,-66.533905],[92.288651,-66.613083],[92.525589,-66.637512],[92.955887,-66.58586],[93.37587000000013,-66.60834],[93.80389400000013,-66.582794],[93.881714,-66.59836],[93.959183,-66.6597289999999],[94.10223400000012,-66.67584],[94.360306,-66.637512],[94.638672,-66.54501],[95.24062,-66.59918],[95.322281,-66.66446],[95.63618500000013,-66.680557],[96.6253,-66.637512],[97.090332,-66.54611],[97.33697500000011,-66.61002],[97.548889,-66.61113],[97.530334,-66.716125],[97.56445300000013,-66.74057],[97.62670900000012,-66.728073],[97.811951,-66.58586],[98.26196,-66.516113],[98.855591,-66.56197],[98.966125,-66.702789],[99.283081,-66.880844],[99.3900150000001,-66.847519],[99.59448,-66.66391],[99.83728000000013,-66.53334],[100.4375,-66.40556],[100.58612,-66.26308],[100.95392,-66.080841],[101.506409,-66.05891],[101.868103,-65.948639],[102.3006,-65.9503],[102.62616,-65.90112],[103.08197000000011,-65.92778],[103.547791,-66.01781],[103.90228300000012,-65.98556],[104.148933,-66.008911],[104.427002,-66.05031],[104.63394,-66.133621],[104.945038,-66.1292],[105.083923,-66.173889],[105.29837,-66.17001],[105.738647,-66.264175],[105.836151,-66.31334],[106.110603,-66.30084],[106.76614400000011,-66.41002],[107.088928,-66.38863],[107.26559,-66.448059],[107.418091,-66.45917],[107.804779,-66.39836],[108.10308800000013,-66.47084],[108.302277,-66.603073],[108.34225,-66.66528],[108.663116,-66.691971],[108.687531,-66.71196],[108.667824,-66.79364],[108.824219,-66.83113],[108.948669,-66.779449],[109.17059300000011,-66.77725],[109.430878,-66.68585],[109.979492,-66.682251],[110.62976100000013,-66.486679],[110.78531,-66.40834],[110.707001,-66.23613],[110.73309300000011,-66.161972],[110.89172400000012,-66.063629],[111.377533,-65.954727],[112.503937,-65.87141],[113.159187,-65.719742],[113.31533800000011,-65.71335],[113.48252900000011,-65.729446],[113.655609,-65.85362],[113.99614,-66.01723],[114.43143,-66.179474],[114.480583,-66.22696],[114.442787,-66.280563],[114.57503,-66.30974],[114.50643900000011,-66.431396],[114.518356,-66.47278],[114.730026,-66.45668],[114.79171800000016,-66.473633],[114.8197480000001,-66.525558],[114.949478,-66.47473],[115.133667,-66.48723],[115.196716,-66.44223],[115.552277,-66.36612],[116.18004,-66.366684],[116.59476,-66.546692],[116.724487,-66.559189],[116.91449,-66.805023],[117.766998,-66.98975],[117.945297,-66.948349],[118.33477800000013,-66.98723],[118.46283,-66.90419],[118.63393,-66.88945],[119.479767,-66.9375],[119.787247,-66.872787],[120.62502,-66.8025],[120.79613,-66.840027],[121.02393300000016,-66.82667],[121.326714,-66.687805],[121.55919,-66.67473],[122.183357,-66.547806],[122.97976700000015,-66.64641],[123.02504,-66.68697],[122.9272770000001,-66.75058],[122.989487,-66.776672],[124.28922,-66.511688],[124.614487,-66.55336],[124.6939390000001,-66.61363],[124.65033000000017,-66.71585],[124.734756,-66.743896],[124.92199700000015,-66.74475],[125.033096,-66.68834],[125.19001800000011,-66.734192],[125.262268,-66.72613],[125.40532,-66.62112],[125.47699,-66.475006],[125.54395,-66.421112],[125.85863,-66.378067],[126.095886,-66.300583],[126.356163,-66.27972],[126.43392900000013,-66.28891],[126.66895,-66.41251],[126.98836,-66.45358],[126.91449,-66.568893],[126.92865,-66.83446],[127.256989,-66.90834],[127.5128,-66.902786],[127.539749,-66.962234],[127.7800370000001,-67.03946],[127.993362,-67.02112],[128.46890300000018,-67.054184],[128.83477800000014,-67.142517],[129.2980960000001,-67.01889],[129.33389,-66.901947],[129.2995,-66.814178],[129.3255620000001,-66.73781],[129.67559800000015,-66.476135],[129.907257,-66.35892],[130.35199,-66.22584],[130.82974,-66.196121],[131.15198,-66.24918],[131.420013,-66.201416],[131.7008670000001,-66.2375],[132.28030400000011,-66.13945],[132.90530400000011,-66.155563],[133.218109,-66.07973],[133.52811,-66.05725],[133.89056400000015,-66.089447],[133.977783,-66.119751],[134.022278,-66.179184],[134.2453,-66.20113],[134.41253700000016,-66.09836],[134.436401,-66.001419],[134.33279400000015,-65.73167],[134.100281,-65.64946],[134.098389,-65.61031],[134.155609,-65.56612],[134.135834,-65.48891],[134.05917,-65.42195],[134.17032,-65.32223],[134.1875000000001,-65.23781],[134.100616,-65.12306],[134.293365,-64.96306],[134.43784,-64.926132],[134.74975600000016,-65.0614],[134.994476,-65.04169],[135.04583700000012,-65.10779],[135.108337,-65.31085],[135.2722470000001,-65.4364],[135.26834,-65.60445],[135.1627810000001,-65.76529],[134.858368,-66.0517],[134.94778400000018,-66.09306],[135.420288,-66.05225],[135.81695600000012,-66.20917],[136.369751,-66.281677],[136.515289,-66.361389],[136.97641,-66.30667],[137.5589,-66.35307],[138.46722,-66.52641],[138.6758420000001,-66.503357],[138.771973,-66.54947],[139.333069,-66.540863],[140.097229,-66.655304],[140.236115,-66.728363],[141.15695,-66.74501],[141.3511350000001,-66.83668],[141.60473600000012,-66.77389],[141.99444600000012,-66.776672],[142.23834,-66.83336],[142.361969,-66.9417],[142.566406,-66.99417],[142.894745,-66.994461],[143.283356,-66.856674],[143.400024,-66.851135],[143.7153,-66.901413],[143.801971,-66.96503],[143.782501,-67.00667],[143.806671,-67.05807],[143.873627,-67.09003],[144.089752,-67.07419],[144.31973300000016,-67.005569],[144.453613,-67.02029],[144.61002,-67.160019],[144.56891,-67.21114],[144.58557,-67.24528],[144.720306,-67.22389],[144.86666900000012,-67.137222],[145.159729,-67.04057],[145.404449,-67.017227],[145.437805,-67.03473],[145.434723,-67.10667],[145.78002900000013,-67.137222],[145.87530500000014,-67.195862],[145.6203,-67.34529],[145.532806,-67.441971],[145.30139,-67.594742],[145.315002,-67.61334],[145.73584,-67.63528],[146.15502900000013,-67.60641],[146.3175,-67.64529],[146.398071,-67.70639],[146.64279,-67.70946],[146.70028700000012,-67.805023],[146.943909,-67.850006],[147.150848,-67.99086],[146.96475,-68.071945],[146.91779,-68.12695],[146.95333900000014,-68.14169],[147.039459,-68.131393],[147.206116,-68.044464],[148.029449,-67.844467],[148.64807,-67.989197],[148.628906,-68.02141],[148.331116,-68.06723],[148.21722,-68.12724],[148.434174,-68.191406],[148.510284,-68.27196],[148.813354,-68.33528],[149.36975100000018,-68.37642],[149.46167000000014,-68.318344],[149.71667500000012,-68.287231],[149.795288,-68.30833],[149.767517,-68.357239],[149.78723100000013,-68.38251],[150.0800170000001,-68.44835],[150.557526,-68.466949],[150.99252300000012,-68.390854],[151.11584500000015,-68.49446],[151.133057,-68.560287],[150.960297,-68.871689],[151.18503,-68.980026],[151.27835100000016,-68.97778],[151.51474,-68.8792],[152.033081,-68.87973],[152.460571,-68.765854],[152.8052980000001,-68.85834],[153.220856,-68.90141],[153.417786,-68.971115],[153.487244,-68.96362],[153.453064,-68.878906],[153.49002,-68.85141],[153.67807,-68.92641],[153.768616,-68.92224],[153.9028,-68.876953],[153.882507,-68.76445],[153.68167,-68.62253],[153.751678,-68.60141],[153.88696300000012,-68.620834],[153.91086,-68.59195],[153.695007,-68.48502],[153.625,-68.40419],[153.67141700000013,-68.34695],[153.77835100000016,-68.343628],[154.242798,-68.512512],[154.44473300000013,-68.517517],[154.68585,-68.615005],[154.715027,-68.666946],[154.666962,-68.699188],[154.38974,-68.672806],[154.424194,-68.72278],[154.56308,-68.79752],[154.516968,-68.82835],[154.3264160000001,-68.8203],[154.28668200000016,-68.863083],[154.53695700000014,-68.926132],[154.856689,-69.102524],[155.064178,-69.11391],[155.287231,-69.08139],[155.72223,-69.218338],[156.13501,-69.16528],[156.33612,-69.24057],[156.470001,-69.18114],[156.70697,-69.20946],[156.85086100000012,-69.15419],[157.15780600000016,-69.15419],[157.172516,-69.13196],[157.09140000000014,-69.06612],[157.10418700000014,-68.99557],[157.14224,-68.945572],[157.23638900000014,-68.94252],[157.4028,-69.13614],[157.559448,-69.24139],[157.816681,-69.281677],[157.87558000000013,-69.23863],[158.13363600000014,-69.265854],[158.41723600000012,-69.32724],[158.52808,-69.38974],[158.722504,-69.39447],[158.830017,-69.4303],[158.836395,-69.512222],[158.87222,-69.528625],[159.67001300000015,-69.660278],[160.056946,-69.79195],[160.13473,-69.920837],[160.453918,-69.978897],[160.37362700000014,-70.0525],[160.69500700000015,-70.13751],[160.968903,-70.25557],[161.67639,-70.20502],[161.882507,-70.35196],[161.92529300000012,-70.33696],[161.998077,-70.210281],[162.04473900000013,-70.1989],[162.073334,-70.24475],[162.02808,-70.28361],[162.010284,-70.37112],[162.059448,-70.426956],[162.097504,-70.36334],[162.209167,-70.307251],[162.52307,-70.26611],[162.75390600000014,-70.2803],[162.95306400000015,-70.43167],[162.9963990000001,-70.50919],[163.167786,-70.55],[163.198334,-70.621689],[163.52084,-70.675003],[163.785278,-70.62807],[163.603363,-70.569748],[163.509186,-70.48308],[163.55389400000013,-70.46529],[163.7594600000001,-70.51781],[164.37167,-70.47641],[164.936951,-70.573059],[165.39108,-70.55891],[165.63778700000012,-70.65362],[165.80304,-70.67889],[165.800568,-70.71751],[166.334442,-70.60084],[166.77167,-70.61168],[166.824432,-70.623352],[166.895813,-70.707794],[166.608917,-70.671692],[166.46304,-70.70195],[166.66086,-70.77446],[167.208069,-70.73668],[167.767517,-70.780838],[167.93164100000013,-70.893341],[167.881653,-70.93668],[167.790833,-70.9417],[167.83017000000015,-70.98869],[168.14636200000018,-71.082794],[168.22973600000012,-71.14918],[168.911957,-71.23502],[169.239746,-71.34611],[169.217194,-71.411133],[169.24585,-71.433075],[169.4639,-71.41835],[169.5544430000001,-71.43503],[169.564178,-71.481964],[169.61276,-71.49861],[169.86694,-71.49417],[169.93558,-71.5614],[170.272247,-71.660019],[170.310822,-71.643341],[170.26721,-71.594742],[170.43194600000015,-71.47778],[170.21527100000014,-71.28279],[170.453033,-71.351669],[170.56112700000017,-71.47058],[170.786407,-71.635849],[170.831116,-71.75113],[170.994446,-71.864197],[170.77832000000012,-71.96223],[170.129974,-72.05141],[169.986084,-72.185852],[170.02914,-72.337509],[169.871643,-72.3792],[170.05416900000012,-72.39029],[170.304169,-72.30084],[170.354736,-72.47613],[170.32223,-72.580307],[170.235016,-72.613632],[170.05225,-72.60362],[170.20636,-72.68085],[170.00415,-72.712509],[169.897797,-72.858917],[169.69391,-72.95447],[169.72751,-73.0289],[169.68164100000013,-73.05307],[169.516418,-73.09112],[169.266418,-73.08391],[169.247772,-73.14307],[169.320831,-73.200012],[169.248627,-73.24947],[169.11138900000014,-73.25362],[169.05474900000013,-73.366119],[169.19391,-73.43808],[169.0791630000001,-73.52753],[168.850586,-73.52585],[168.646362,-73.4164],[168.52832,-73.593063],[168.38388,-73.626129],[168.0552980000001,-73.57001],[168.035553,-73.54417],[168.061371,-73.46722],[168.01114,-73.42889],[167.56167600000012,-73.403351],[167.646118,-73.47084],[166.79248,-73.62169],[166.912506,-73.67836],[166.36835,-73.78224],[166.1747130000001,-73.760849],[166.05249000000015,-73.82335],[165.855804,-73.86002],[165.990295,-73.93251],[165.64141800000016,-73.898636],[165.54858,-73.93251],[166.23584,-74.05614],[166.12915,-74.127243],[165.22943,-74.05],[165.00030500000014,-74.09889],[164.98278800000014,-74.122787],[165.02194,-74.168915],[164.987793,-74.188919],[164.78085,-74.13696],[164.78113,-74.2164],[164.93808,-74.282242],[165.064728,-74.439178],[165.348602,-74.53308],[165.333313,-74.67281],[165.21832,-74.66475],[165.07666000000017,-74.603073],[164.501404,-74.630569],[164.48001,-74.6589],[164.60696,-74.751129],[164.54055800000015,-74.77418],[164.38501,-74.73613],[164.1425170000001,-74.616119],[163.656677,-74.77446],[163.654175,-74.8167],[163.871674,-74.953354],[163.428345,-75.029449],[162.661957,-75.063919],[162.539734,-75.108917],[162.505585,-75.21002],[162.546417,-75.27919],[162.678345,-75.3289],[162.603912,-75.39889],[162.616119,-75.440002],[163.046844,-75.52394],[163.0903,-75.561676],[162.960846,-75.68585],[163.03918,-75.77112],[162.897797,-75.896118],[163.13696300000015,-75.936676],[162.835022,-75.94363],[162.79028,-76.06056],[162.3377990000001,-76.167236],[162.47558600000013,-76.217804],[162.87558,-76.247787],[162.87472500000013,-76.28751],[162.77362,-76.31946],[162.89447,-76.39363],[162.932251,-76.58308],[162.623627,-76.619461],[163.06973300000016,-76.73085],[162.90472,-76.8414],[162.638916,-76.83862],[162.58057,-76.910019],[162.332794,-76.951416],[162.435303,-77.003906],[162.671417,-76.985855],[163.2383420000001,-77.0414],[163.27862500000015,-77.10336],[163.55361900000014,-77.249176],[163.63446,-77.36281],[163.83639500000015,-77.41917],[163.896973,-77.46669],[163.87253,-77.50613],[163.60751300000015,-77.55696],[163.75863600000014,-77.617798],[163.585022,-77.667526],[163.61084,-77.69612],[164.311401,-77.64252],[164.565,-77.73639],[164.49808,-77.80084],[164.59558100000012,-77.90056],[164.556061,-78.00348],[164.457794,-78.07695],[164.206696,-78.14389],[164.48697,-78.126419],[164.960571,-78.039169],[165.00555,-78.0914],[164.911682,-78.14696],[164.92361500000015,-78.24168],[165.02359000000013,-78.2503],[165.214722,-78.20195],[165.14975,-78.130569],[165.54001,-78.00336],[165.69693,-78.06863],[165.70166000000015,-78.09611],[165.44864,-78.19086],[165.785858,-78.29669],[165.68359,-78.39169],[166.03808600000013,-78.449463],[167.085846,-78.500305],[167.20694,-78.53891],[167.273041,-78.608917],[167.26944,-78.655838],[166.905823,-78.67696],[167.006653,-78.642807],[166.99414100000013,-78.609192],[166.217773,-78.52],[165.48831200000018,-78.58696],[164.494446,-78.56975],[164.112518,-78.621689],[163.98862,-78.68808],[163.545563,-78.70639],[163.13614,-78.796112],[162.901123,-78.806396],[162.85641,-78.837509],[162.835022,-78.9375],[162.78167700000014,-78.948349],[162.55029300000012,-78.93808],[162.527527,-78.883621],[162.436676,-78.85667],[161.82529,-78.86586],[161.74917600000015,-78.88834],[161.799194,-78.95224],[161.726959,-78.975296],[161.290863,-78.98114],[160.95889,-79.04529],[160.49417,-79.02086],[160.04055800000015,-79.155838],[160.49475100000015,-79.21391],[160.552521,-79.2789],[160.54306,-79.30751],[160.34363,-79.34889],[160.595001,-79.37306],[160.738068,-79.45308],[160.493073,-79.50113],[160.4603,-79.558624],[160.157501,-79.63225],[159.8005680000001,-79.828613],[159.09280400000011,-79.971115],[159.35614,-79.993896],[160.37417600000015,-79.91309],[160.528351,-79.94446],[160.570007,-80.003906],[160.524445,-80.041397],[160.177521,-80.117523],[158.057251,-80.28056],[158.35669,-80.3864],[158.40472,-80.45836],[158.81003,-80.48334],[159.74417,-80.39752],[160.891968,-80.3775],[161.01083400000016,-80.46114],[160.994446,-80.490005],[160.298615,-80.564453],[160.123352,-80.55945],[160.0578,-80.528351],[159.756958,-80.569748],[160.15640300000018,-80.648056],[160.865295,-80.58723],[160.969727,-80.62973],[161.17447,-80.635559],[161.200012,-80.66917],[161.181671,-80.682785],[160.824188,-80.712234],[160.70697000000018,-80.77667],[160.22168,-80.75639],[160.01556400000015,-80.780304],[160.0625,-80.81168],[160.516113,-80.890854],[160.843903,-80.89307],[160.503082,-80.952789],[160.650848,-81.04112],[160.839447,-81.07808],[160.60833700000012,-81.109192],[160.74225,-81.163086],[160.626129,-81.205017],[161.2886350000001,-81.24197],[162.06613200000015,-81.20084],[162.208069,-81.226669],[162.193909,-81.297806],[161.45779400000015,-81.376953],[161.425568,-81.392807],[161.431946,-81.440857],[161.3078,-81.47641],[160.588348,-81.485855],[160.39111300000013,-81.52141],[160.81473,-81.600296],[161.453064,-81.55696],[162.2758480000001,-81.662231],[162.34613,-81.72058],[162.347229,-81.75807],[162.294189,-81.77167],[162.320007,-81.7839],[162.85168,-81.8239],[162.90502900000013,-81.86334],[162.80139,-81.89447],[163.75586,-82.0753],[163.8594670000001,-82.17418],[163.446136,-82.26503],[164.172516,-82.355301],[164.78723100000013,-82.36946],[165.319458,-82.421951],[165.46084600000017,-82.49112],[165.24054,-82.5577849999999],[165.647797,-82.6178],[166.364746,-82.661972],[166.143616,-82.71918],[166.523346,-82.78891],[167.0791630000001,-82.75584],[167.366669,-82.80278],[166.778625,-82.82724],[166.85971,-82.87141],[167.16391,-82.910278],[166.71753,-82.964447],[166.75281,-82.97752],[167.28247,-83.00613],[168.01944,-82.97307],[168.36026000000015,-82.994171],[168.45111,-83.01085],[168.5264,-83.07753],[168.69247400000017,-83.14641],[168.44864,-83.24335],[167.790009,-83.292236],[167.876678,-83.329193],[167.53027,-83.36391],[167.45752,-83.396118],[167.44110100000012,-83.42584],[167.469727,-83.43918],[168.156372,-83.46918],[168.812225,-83.34058],[169.25082,-83.33002],[169.453033,-83.369461],[169.91724,-83.385284],[170.2103,-83.44],[170.67388900000014,-83.44752],[170.707214,-83.48308],[170.81332,-83.50473],[171.469421,-83.51222],[171.278076,-83.576416],[171.923065,-83.549728],[172.3186,-83.597229],[172.2077640000001,-83.65808],[171.877808,-83.721405],[171.90502900000013,-83.801697],[172.25058,-83.708908],[172.361084,-83.7164],[172.730286,-83.85614],[173.10553,-83.86612],[173.345856,-83.909195],[173.890839,-83.84611],[174.74166900000012,-83.828354],[174.991119,-83.856415],[175.0533140000001,-83.88945],[175.02887,-83.92836],[175.208069,-83.954468],[176.39667,-84.002243],[177.216644,-84.10445],[178.045837,-84.090027],[178.10916,-84.10892],[178.02081,-84.156677],[178.189423,-84.18419],[178.598602,-84.19223],[179.108917,-84.143341],[179.51169,-84.15501],[179.620544,-84.17807],[179.31082200000014,-84.24112],[180,-84.30225],[180,-90],[-180,-90],[-180,-84.305344],[-178.491974,-84.395569],[-177.72195,-84.49834],[-176.66058,-84.44362],[-174.517242,-84.44307],[-169.22336,-84.66389],[-168.51056,-84.747513],[-168.45142,-84.774445],[-168.60529,-84.81778],[-168.44528,-84.84222],[-168.089752,-84.84195],[-167.92252,-84.787231],[-167.21194,-84.788895],[-167.05807,-84.828339],[-167.24835,-84.870285],[-165.48306,-85.014175],[-163.51001,-85.08917],[-162.52667,-85.250565],[-161.18002,-85.32779],[-159.34531,-85.325287],[-157.483337,-85.448624],[-155.19,-85.341675],[-152.81058,-85.32806],[-152.01724,-85.358612],[-151.041412,-85.461945],[-150.239471,-85.46362],[-149.79974,-85.43417],[-149.74362,-85.40251],[-149.804474,-85.337509],[-149.786682,-85.31862],[-148.94336,-85.1339],[-148.13834,-85.09084],[-143.57223,-85.14418],[-140.80307,-85.24445],[-139.661407,-85.24501],[-139.123627,-85.210007],[-139.0628,-85.147507],[-139.10583,-85.11612],[-139.09363,-85.090561],[-138.589447,-84.98473],[-140.29474,-84.891113],[-145.72195,-84.723343],[-149.294739,-84.561951],[-150.61029,-84.455841],[-151.691132,-84.32417],[-153.05307,-84.01279],[-153.210297,-83.92279],[-153.23279,-83.818619],[-152.9939,-83.706116],[-152.943634,-83.648346],[-152.92306,-83.57722],[-152.97223,-83.438614],[-152.925018,-83.3475],[-153.03723,-83.218903],[-153.05417,-83.151947],[-153.00751,-83.087509],[-152.668915,-82.92001],[-151.95889,-82.73029],[-151.803619,-82.63667],[-151.77835,-82.61111],[-151.79419,-82.577789],[-152.008057,-82.50473],[-154.42389,-82.06946],[-154.47613,-82.0475],[-154.40002,-82.00362],[-154.44641,-81.97446],[-154.89142,-81.905014],[-154.723633,-81.78612],[-154.063629,-81.66612],[-153.989197,-81.629181],[-154.20502,-81.552231],[-155.403625,-81.38],[-156.73334,-81.31111],[-156.933899,-81.280838],[-156.96002,-81.25168],[-156.755005,-81.14001],[-156.546417,-81.09695],[-154.92169,-81.00195],[-152.60501,-81.11835],[-151.68085,-81.13473],[-151.060028,-81.27528],[-150.45584,-81.33723],[-148.41336,-81.35751],[-148.40558,-81.298889],[-148.357788,-81.2525],[-148.060028,-81.101395],[-147.00058,-80.84639],[-145.885834,-80.63057],[-145.61697,-80.540009],[-145.522797,-80.49306],[-145.52417,-80.460556],[-145.621674,-80.3325],[-145.69751,-80.288071],[-146.180847,-80.12946],[-146.43973,-79.97139],[-146.811951,-79.88751],[-148.75113,-79.60751],[-149.397522,-79.59917],[-150.29001,-79.49474],[-151.89612,-79.26723],[-152.34418,-79.17723],[-153.85724,-79.1064],[-154.29806,-79.05724],[-155.9064,-78.71973],[-156.01807,-78.66028],[-155.508362,-78.58667],[-154.083618,-78.4814],[-153.85251,-78.418625],[-153.7503,-78.308334],[-153.79834,-78.25],[-153.92529,-78.190567],[-154.4328,-78.09862],[-155.51474,-78.190567],[-156.11475,-78.1514],[-156.395844,-78.280838],[-156.81195,-78.270279],[-157.91028,-78.00195],[-158.118896,-77.91945],[-158.175842,-77.859726],[-158.00528,-77.77862],[-158.07446,-77.663345],[-157.69696,-77.571396],[-157.74167,-77.40779],[-157.847504,-77.36084],[-157.84668,-77.308624],[-157.739746,-77.23167],[-157.856415,-77.145],[-157.75308,-77.108063],[-157.398621,-77.09695],[-157.039734,-77.25835],[-156.48334,-77.358612],[-156.082794,-77.27084],[-156.05945,-77.24501],[-156.23114,-77.17168],[-155.861389,-77.08446],[-155.19278,-77.11056],[-155.020294,-77.086945],[-154.87308,-77.141953],[-154.57919,-77.12668],[-154.20142,-77.18779],[-153.79028,-77.174728],[-153.08362,-77.28667],[-152.973083,-77.37834],[-153.18417,-77.395844],[-153.24417,-77.42834],[-153.10641,-77.497223],[-152.295288,-77.460281],[-152.191406,-77.40779],[-152.19031,-77.34279],[-152.06113,-77.32529],[-151.85446,-77.376678],[-151.16669,-77.399734],[-151.11975,-77.41307],[-151.09836,-77.472778],[-149.662231,-77.76112],[-149.419739,-77.76112],[-149.08725,-77.69612],[-149.493347,-77.601395],[-149.414185,-77.570847],[-148.73279,-77.62556],[-148.58557,-77.59445],[-148.57529,-77.555283],[-148.618896,-77.51695],[-148.581116,-77.504456],[-147.5914,-77.422226],[-147.49307,-77.29695],[-147.07169,-77.372787],[-147.12253,-77.24972],[-147.03223,-77.22084],[-146.775574,-77.24445],[-146.26862,-77.4664],[-145.99445,-77.405563],[-146.01779,-77.34668],[-145.87891,-77.306396],[-146.143616,-77.23473],[-146.227509,-77.16501],[-146.008636,-77.16112],[-145.842804,-77.114182],[-146.30139,-76.99918],[-146.166412,-76.972778],[-145.432526,-77.04085],[-145.298889,-77.029175],[-145.415558,-76.93333],[-145.82278,-76.89917],[-146.102234,-76.84001],[-145.599182,-76.81279],[-145.45639,-76.760284],[-146.08389,-76.66528],[-146.54529,-76.52612],[-146.932251,-76.45195],[-147.92001,-76.41585],[-148.29834,-76.505],[-149.38251,-76.42557],[-149.506134,-76.38751],[-149.46835,-76.3414],[-149.3403,-76.30417],[-148.69196,-76.26222],[-148.539734,-76.16334],[-148.28973,-76.10335],[-148.10129,-76.095657],[-147.196686,-76.22417],[-146.49167,-76.367508],[-145.78558,-76.44694],[-145.479462,-76.443344],[-145.393341,-76.401947],[-145.39307,-76.356674],[-145.45142,-76.31111],[-145.86917,-76.25389],[-146.28723,-76.10251],[-146.29529,-76.03973],[-146.11224,-75.93028],[-145.97668,-75.89889],[-145.263641,-75.91695],[-144.20639,-75.83778],[-144.261963,-75.69833],[-144.17056,-75.66446],[-143.3678,-75.589737],[-142.74557,-75.63612],[-142.653076,-75.60501],[-142.67334,-75.5464],[-142.56641,-75.48056],[-141.21002,-75.51889],[-140.24362,-75.46695],[-139.99503,-75.416946],[-139.506958,-75.165009],[-139.327789,-75.10667],[-137.683624,-75.07613],[-137.45334,-75.025284],[-137.02084,-75.01167],[-136.80197,-74.945282],[-136.7164,-74.843613],[-136.75864,-74.77278],[-136.73752,-74.751678],[-136.2428,-74.70889],[-135.858612,-74.72778],[-135.561951,-74.62334],[-134.5889,-74.573624],[-134.303894,-74.53279],[-134.13141,-74.662506],[-134.1558529999999,-74.711945],[-134.12973,-74.73112],[-133.83197,-74.764175],[-133.73279,-74.83195],[-133.262512,-74.84723],[-132.63251,-74.72917],[-132.27518,-74.777084],[-131.84222,-74.72389],[-131.38641,-74.79445],[-130.53418,-74.77417],[-130.0003,-74.848068],[-129.650299,-74.861389],[-128.63892,-74.787781],[-128.4328,-74.73083],[-127.80057,-74.672501],[-127.1400069999999,-74.6689],[-126.8114,-74.63473],[-125.29112,-74.673889],[-124.839447,-74.650009],[-124.294167,-74.714447],[-123.47084,-74.74335],[-122.743622,-74.67279],[-122.35918,-74.710007],[-121.966667,-74.69556],[-121.47835,-74.74251],[-119.195557,-74.60362],[-118.53168,-74.61362],[-118.336121,-74.55029],[-118.52751,-74.46584],[-118.54224,-74.44446],[-118.51723,-74.43056],[-117.743057,-74.308624],[-117.61168,-74.32417],[-117.654167,-74.34917],[-117.61528,-74.48279],[-117.39696,-74.530838],[-115.98807,-74.525284],[-115.7314,-74.40945],[-115.433327,-74.49335],[-115.02112,-74.45639],[-114.69778,-74.469177],[-114.64001,-74.446396],[-114.63583,-74.3289],[-114.73112,-74.2825],[-114.806671,-74.16833],[-114.810013,-74.10474],[-114.54472,-73.96251],[-114.279449,-73.951401],[-114.0036159999999,-73.889175],[-113.78223,-73.939178],[-113.76251,-73.968903],[-113.80917,-74.00334],[-113.776947,-74.02139],[-113.320282,-74.07251],[-113.1864,-74.1689],[-113.179169,-74.191391],[-113.364182,-74.22334],[-113.516113,-74.30751],[-113.433617,-74.47223],[-113.03362,-74.422791],[-112.930283,-74.455],[-112.99667,-74.496399],[-113.555557,-74.634445],[-113.413071,-74.71251],[-112.59889,-74.694168],[-112.597778,-74.724731],[-112.739731,-74.79306],[-112.716949,-74.83917],[-112.65417,-74.85861],[-112.129181,-74.85945],[-111.903343,-74.80695],[-111.34306,-74.759445],[-111.32472,-74.7369539999999],[-111.346947,-74.708618],[-111.56862,-74.68001],[-111.724457,-74.58723],[-111.64473,-74.510559],[-111.38583,-74.462234],[-111.519447,-74.39889],[-111.65167,-74.28418],[-111.62418,-74.235],[-111.50389,-74.191681],[-110.95723,-74.18251],[-110.816681,-74.2014],[-110.66972,-74.27],[-110.35223,-74.24335],[-110.15472,-74.28418],[-109.96112,-74.553894],[-110.050568,-74.632782],[-110.14944,-74.66417],[-109.928886,-74.7614],[-110.3325,-74.8475],[-110.544167,-74.94334],[-110.7939,-74.96779],[-110.582779,-75.00168],[-110.66972,-75.06473],[-110.96167,-75.15779],[-110.383057,-75.306122],[-109.95279,-75.24695],[-109.553886,-75.127228],[-109.068619,-75.128891],[-108.852509,-75.14778],[-108.629181,-75.21945],[-108.059723,-75.23529],[-107.81584,-75.33029],[-107.355011,-75.29861],[-106.97945,-75.34778],[-106.88057,-75.33446],[-106.82806,-75.29306],[-106.28334,-75.27139],[-106.20029,-75.246399],[-106.16084,-75.19223],[-105.83446,-75.127228],[-104.31612,-75.035278],[-103.898621,-75.054169],[-103.338058,-75.02834],[-102.146004,-75.062881],[-102.06361,-75.10001],[-102.03723,-75.195007],[-101.919167,-75.228897],[-100.83139,-75.307785],[-100.72139,-75.28946],[-100.6364,-75.20418],[-99.90056,-75.25473],[-99.510284,-75.09251],[-99.49474,-75.062225],[-99.538071,-75.01251],[-99.751678,-74.914734],[-100.261124,-74.914734],[-100.71112,-74.861389],[-100.851669,-74.814728],[-100.15112,-74.76083],[-100.21417,-74.707779],[-100.515556,-74.67111],[-100.14001,-74.617783],[-100.3239,-74.5475],[-100.223068,-74.510559],[-100.248062,-74.49084],[-100.3739,-74.469177],[-100.43445,-74.427231],[-100.62001,-74.41917],[-101.08223,-74.49335],[-101.33195,-74.4805599999999],[-101.403343,-74.45167],[-101.49362,-74.28778],[-101.66223,-74.17584],[-101.69778,-74.06279],[-101.65834,-73.9989],[-101.99861,-73.99474],[-102.10278,-73.9275],[-102.36639,-73.95668],[-102.44389,-73.94029],[-102.480011,-73.89944],[-102.9014,-73.87584],[-102.95334,-73.83334],[-102.81111,-73.72029],[-103.00084,-73.66139],[-103.013344,-73.629181],[-102.897232,-73.587509],[-102.29834,-73.588058],[-101.433899,-73.656113],[-101.096123,-73.73723],[-100.56778,-73.724457],[-100.310562,-73.75],[-99.95306,-73.731125],[-99.662231,-73.654449],[-99.311676,-73.671951],[-99.17557,-73.619171],[-99.408615,-73.60474],[-99.86,-73.491669],[-99.8739,-73.42807],[-99.91612,-73.41167],[-100.46085,-73.366394],[-101.78195,-73.35196],[-102.06084,-73.320847],[-102.689178,-73.35196],[-103.03612,-73.3264],[-103.41833,-73.140839],[-103.40251,-73.119171],[-103.438904,-73.05334],[-103.60335,-72.89195],[-103.453056,-72.79195],[-103.176117,-72.733337],[-102.58084,-72.75],[-102.32278,-72.802505],[-102.357788,-72.91139],[-102.44112,-72.961945],[-102.641113,-72.98695],[-102.66389,-73.014175],[-102.130569,-73.006668],[-102.09778,-73.02556],[-102.166946,-73.06778],[-102.09917,-73.084732],[-101.259453,-72.996399],[-100.781952,-73.02389],[-100.618057,-73.088058],[-100.50029,-73.09778],[-100.284729,-73.04806],[-99.79445,-73.05724],[-99.59862,-73.01918],[-98.83556,-72.97334],[-98.1364,-73.00696],[-97.96139,-73.05945],[-98.2164,-73.15085],[-98.177231,-73.158615],[-97.62862,-73.155838],[-97.060287,-73.230835],[-96.9039,-73.280014],[-96.51889,-73.30612],[-96.087509,-73.31889],[-95.76918,-73.24751],[-94.77417,-73.22612],[-94.5939,-73.242233],[-94.395844,-73.310837],[-94.16,-73.315002],[-93.929459,-73.28917],[-93.89389,-73.22557],[-93.58751,-73.220001],[-93.586945,-73.189728],[-93.53528,-73.176117],[-92.912231,-73.216675],[-92.88863,-73.213348],[-92.92195,-73.17946],[-92.45195,-73.153625],[-91.6925,-73.24501],[-91.29306,-73.256119],[-90.86111,-73.326675],[-90.343338,-73.16362],[-89.746399,-73.16528],[-89.32112,-73.05417],[-89.23556,-72.912231],[-89.283066,-72.77196],[-89.3439,-72.69],[-89.53723,-72.633621],[-89.261124,-72.63945],[-88.52972,-72.70445],[-88.335846,-72.81612],[-88.374451,-72.854446],[-88.64418,-72.9425],[-88.59084,-72.99057],[-88.61612,-73.039169],[-88.82529,-73.10278],[-88.79251,-73.15695],[-88.70917,-73.17946],[-88.37862,-73.208344],[-88.13223,-73.13583],[-87.96306,-73.1689],[-87.641113,-73.157501],[-87.4664,-73.24501],[-87.211121,-73.315292],[-86.84084,-73.33639],[-86.51056,-73.24861],[-86.222229,-73.22084],[-86.11639,-73.154449],[-86.07745,-73.04512],[-85.96667,-73.0414],[-85.92195,-73.17279],[-85.847504,-73.230835],[-85.76363,-73.27112],[-85.556061,-73.29678],[-85.47084,-73.34973],[-85.724457,-73.48946],[-85.702225,-73.5264],[-85.599731,-73.55833],[-84.73251,-73.68085],[-83.6989,-73.65472],[-83.54779,-73.71918],[-83.11974,-73.8214],[-82.39362,-73.82751],[-82.2964,-73.91528],[-82.13417,-73.94334],[-81.614456,-73.85112],[-81.231125,-73.8414],[-81.213348,-73.759445],[-81.0414,-73.71556],[-81.05334,-73.67168],[-81.295563,-73.520279],[-81.30778,-73.42807],[-81.27528,-73.36945],[-80.98946,-73.360291],[-80.8114,-73.43056],[-80.51918,-73.446396],[-80.482788,-73.36751],[-80.52335,-73.237793],[-80.728058,-73.15918],[-80.75973,-73.120834],[-80.755569,-73.06557],[-80.695557,-73.050568],[-79.84946,-73.116669],[-79.460007,-73.2675],[-78.95889,-73.3925],[-78.81111,-73.5014],[-78.80751,-73.55751],[-78.862503,-73.655563],[-78.78973,-73.69307],[-77.400009,-73.523621],[-77.09889,-73.55724],[-76.780563,-73.53223],[-76.61835,-73.57667],[-76.63806,-73.636124],[-77.10028,-73.828613],[-76.962784,-73.873062],[-76.44112,-73.788895],[-76.29001,-73.825836],[-76.11696,-73.82362],[-75.2039,-73.66251],[-74.811676,-73.674728],[-74.55862,-73.745285],[-74.1425,-73.656403],[-73.93251,-73.71028],[-73.458344,-73.533615],[-73.22862,-73.57278],[-73.180283,-73.554733],[-73.180557,-73.515839],[-73.07085,-73.488892],[-72.59195,-73.47696],[-72.34251,-73.416672],[-71.41833,-73.36806],[-71.15028,-73.28862],[-70.33501,-73.29306],[-69.42834,-73.19723],[-68.624725,-73.055283],[-67.9769589999999,-72.88167],[-67.63028,-72.84584],[-67.454453,-72.75223],[-67.281403,-72.5789],[-66.79723,-72.40779],[-66.91862,-72.30585],[-66.952789,-72.189178],[-66.97696,-71.96918],[-66.85918,-71.895569],[-67.112228,-71.710846],[-67.31612,-71.672501],[-67.425,-71.59668],[-67.537231,-71.45473],[-67.509445,-71.28389],[-67.40056,-71.183334],[-67.400284,-71.040009],[-67.5764,-70.787506],[-67.74028,-70.65861],[-67.7039,-70.59306],[-67.831955,-70.496124],[-67.96335,-70.25751],[-68.398056,-70.11195],[-68.50528,-69.93668],[-68.35667,-69.86279],[-68.339447,-69.678894],[-68.5414,-69.541946],[-68.83806,-69.41724],[-68.72084,-69.37834],[-68.2589,-69.37946],[-68.23029,-69.360565],[-68.29167,-69.287231],[-68.168335,-69.26417],[-68.0625,-69.339737],[-67.94362,-69.363892],[-67.66751,-69.37862],[-67.39696,-69.350571],[-67.01556,-69.23834],[-66.65779,-69.01779],[-66.65695,-68.985],[-66.73779,-68.95973],[-67.01584,-68.964447],[-67.364456,-68.905014],[-67.49445,-68.815567],[-67.391953,-68.785278],[-67.114456,-68.801392],[-66.93224,-68.77389],[-67.178619,-68.50528],[-66.948624,-68.43834],[-66.935287,-68.38],[-66.97723,-68.34778],[-67.12167,-68.33862],[-67.165558,-68.29333],[-66.79723,-68.30585],[-66.58974,-68.23807],[-66.67473,-68.181122],[-66.916397,-68.22],[-67.14612,-68.097778],[-67.157227,-68.010559],[-67.12973,-67.95306],[-66.80556,-67.91972],[-66.78528,-67.88583],[-66.84668,-67.83639],[-66.70668,-67.80833],[-67.025848,-67.792236],[-66.97057,-67.757507],[-66.679169,-67.736389],[-66.90472,-67.717514],[-66.89418,-67.671402],[-66.700287,-67.59695],[-66.513062,-67.59279],[-66.427231,-67.53334],[-66.732788,-67.54028],[-66.83195,-67.508057],[-67.15779,-67.48889],[-67.355011,-67.537231],[-67.6239,-67.55362],[-67.672501,-67.48584],[-67.54472,-67.36612],[-67.54085,-67.30862],[-67.602455,-67.171043],[-67.48584,-67.07722],[-67.295288,-67.081116],[-67.223343,-67.02972],[-67.16945,-66.93611],[-66.99084,-66.902237],[-66.85362,-66.92696],[-66.873337,-67.077789],[-66.40472,-66.88556],[-66.36945,-66.840561],[-66.530014,-66.764175],[-66.49722,-66.62251],[-66.28111,-66.56111],[-66.08806,-66.564728],[-65.954727,-66.36195],[-65.70668,-66.24695],[-65.663895,-66.16724],[-65.68973,-66.125],[-65.49028,-66.108337],[-65.21529,-66.16806],[-65.16585,-66.124451],[-65.30334,-66.05029],[-65.27667,-65.98361],[-65.01973,-65.97389],[-64.931396,-65.93251],[-64.80084,-65.94057],[-64.775009,-65.98807],[-64.658066,-66.0439],[-64.453339,-65.981674],[-64.42723,-65.93445],[-64.656403,-65.838058],[-64.659729,-65.74028],[-64.602509,-65.725571],[-64.32333,-65.7825],[-64.26918,-65.71474],[-64.39889,-65.624451],[-64.04028,-65.67584],[-64.02724,-65.650848],[-64.16084,-65.593063],[-64.176392,-65.545563],[-64.109451,-65.5175],[-63.71278,-65.502502],[-64.05307,-65.42195],[-64.07529,-65.17862],[-63.9464,-65.04584],[-63.879448,-65.018341],[-63.8075,-65.003067],[-63.40389,-65.08862],[-63.25584,-65.068069],[-63.217781,-65.110291],[-63.090561,-65.1339],[-62.995834,-65.08139],[-63.02862,-65.037506],[-63.13111,-65.006668],[-63.1775,-64.938904],[-63.01417,-64.89944],[-62.830559,-64.905563],[-62.76501,-64.847504],[-62.938057,-64.7975],[-62.702782,-64.80778],[-62.53084,-64.907227],[-62.31945,-64.858902],[-62.501114,-64.83223],[-62.617783,-64.755],[-62.490837,-64.74057],[-62.51139,-64.64389],[-62.45361,-64.58917],[-62.37945,-64.592514],[-62.28111,-64.74445],[-62.23222,-64.76083],[-62.101669,-64.688614],[-61.93528,-64.690567],[-61.902504,-64.637512],[-61.92556,-64.599731],[-61.877228,-64.572784],[-61.636116,-64.56557],[-61.44972,-64.5175],[-61.427505,-64.49612],[-61.5089,-64.490005],[-61.542778,-64.440002],[-61.400284,-64.367233],[-61.299171,-64.354736],[-61.23389,-64.39056],[-60.941948,-64.27751],[-60.96389,-64.145279],[-60.85473,-64.13972],[-61.01472,-64.06917],[-60.991669,-64.035843],[-60.494728,-63.98],[-60.28056,-63.91972],[-60.017227,-63.941391],[-59.94528,-63.90667],[-59.956116,-63.881393],[-59.84584,-63.770836],[-59.813339,-63.78389],[-59.831673,-63.84473],[-59.80334,-63.86195],[-59.44584,-63.89306],[-59.398338,-63.87195],[-59.39417,-63.80833],[-59.32695,-63.699722],[-59.17556,-63.67306],[-59.07722,-63.70639],[-58.89806,-63.65056],[-58.91083,-63.53306],[-58.37611,-63.445557],[-58.148056,-63.45917],[-57.97445,-63.39167],[-57.863892,-63.300003],[-57.205,-63.205559],[-57.00834,-63.24945],[-56.946396,-63.45056]]],[[[-55.470001,-63.14333],[-55.04834,-63.20945],[-55.002785,-63.28389],[-55.0639,-63.339729],[-55.249168,-63.365837],[-55.868896,-63.30139],[-56.305557,-63.43695],[-56.413338,-63.43028],[-56.543335,-63.36445],[-56.34222,-63.21556],[-56.01028,-63.13278],[-55.735001,-63.144447],[-55.58917,-63.116394],[-55.470001,-63.14333]]],[[[-56.26501,-63.16945],[-56.47389,-63.108894],[-56.584724,-63.035],[-56.39417,-62.979446],[-56.108612,-62.987785],[-55.97084,-63.05445],[-56.26501,-63.16945]]],[[[-60.47184,-62.9009],[-60.46624,-62.952919],[-60.500484,-62.97465],[-60.59611,-62.90917],[-60.64667,-62.92334],[-60.64167,-62.962784],[-60.56008,-62.99605],[-60.58,-63.00806],[-60.742481,-62.973991],[-60.74643,-62.928555],[-60.67828,-62.889702],[-60.47184,-62.9009]]],[[[-62.69139,-63.095001],[-62.72889,-63.085838],[-62.48945,-62.921112],[-62.260559,-62.88167],[-62.364723,-62.99306],[-62.69139,-63.095001]]],[[[-61.358612,-62.813614],[-61.44139,-62.806396],[-61.479172,-62.753891],[-61.27611,-62.696114],[-61.150558,-62.708618],[-61.206673,-62.76112],[-61.358612,-62.813614]]],[[[-60.51667,-62.553894],[-60.29667,-62.5325],[-60.13222,-62.460838],[-60.014725,-62.513618],[-60.06722,-62.566391],[-59.98917,-62.61084],[-59.81695,-62.61417],[-60.267784,-62.76167],[-60.40223,-62.690285],[-60.34389,-62.613617],[-60.64001,-62.61306],[-60.800835,-62.669174],[-61.150284,-62.651672],[-61.1725,-62.575],[-60.946945,-62.60195],[-60.81473,-62.545563],[-60.78667,-62.44778],[-60.51667,-62.553894]]],[[[-59.66556,-62.55695],[-59.886391,-62.525284],[-59.97917,-62.45084],[-59.73278,-62.436951],[-59.542229,-62.49861],[-59.66556,-62.55695]]],[[[-59.439171,-62.447227],[-59.49167,-62.45723],[-59.67834,-62.363892],[-59.54611,-62.315285],[-59.32751,-62.371391],[-59.34389,-62.43834],[-59.439171,-62.447227]]],[[[-58.9925,-62.347778],[-59.07973,-62.34167],[-59.20889,-62.285561],[-58.998894,-62.23667],[-58.816391,-62.29806],[-58.9925,-62.347778]]],[[[-57.62195,-61.909729],[-57.591667,-62.011948],[-57.73584,-61.99834],[-57.92639,-62.07001],[-58.11056,-62.066673],[-58.14473,-62.14389],[-58.20306,-62.169724],[-58.3525,-62.14556],[-58.35389,-62.09945],[-58.26723,-62.08667],[-58.386116,-62.05417],[-58.56945,-62.15139],[-58.425,-62.152779],[-58.407784,-62.19056],[-58.45834,-62.221947],[-58.583618,-62.25028],[-58.98639,-62.214447],[-58.65028,-62.00445],[-58.400284,-61.938614],[-58.226112,-61.952225],[-57.98195,-61.905838],[-57.804726,-61.937225],[-57.6725,-61.88084],[-57.62195,-61.909729]]],[[[-54.04695,-61.269447],[-54.200562,-61.23611],[-54.032227,-61.08806],[-54.00751,-61.096672],[-54.00639,-61.190002],[-54.04695,-61.269447]]],[[[-55.09222,-61.098061],[-54.97889,-61.10445],[-54.64639,-61.09278],[-54.75194,-61.13917],[-55.02889,-61.16167],[-55.240837,-61.279724],[-55.340004,-61.25028],[-55.49445,-61.12667],[-55.38917,-61.058617],[-55.09222,-61.098061]]],[[[-44.42806,-60.723335],[-44.72528,-60.77639],[-44.78473,-60.73445],[-44.53139,-60.67556],[-44.42806,-60.723335]]],[[[-45.00528,-60.72528],[-45.07333,-60.68],[-45.071114,-60.63111],[-45.02584,-60.64194],[-45.00528,-60.72528]]],[[[-45.550835,-60.54723],[-45.432785,-60.54778],[-45.39223,-60.5875],[-45.230835,-60.627785],[-45.17028,-60.67834],[-45.145279,-60.766113],[-45.378334,-60.671394],[-45.663895,-60.645836],[-45.78167,-60.60167],[-46.023613,-60.61084],[-45.97695,-60.52278],[-45.93084,-60.5125],[-45.741112,-60.50194],[-45.550835,-60.54723]]]]}},{"type":"Feature","properties":{"FIPS":"BV","ISO2":"BV","ISO3":"BVT","UN":74,"NAME":"Bouvet Island","AREA":0,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":3.412,"LAT":-54.422},"geometry":{"type":"Polygon","coordinates":[[[3.361389,-54.462784],[3.341666,-54.43306],[3.366944,-54.399727],[3.483611,-54.402229],[3.459444,-54.448891],[3.361389,-54.462784]]]}},{"type":"Feature","properties":{"FIPS":"FS","ISO2":"TF","ISO3":"ATF","UN":260,"NAME":"French Southern and Antarctic Lands","AREA":0,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":69.117,"LAT":-49.302},"geometry":{"type":"MultiPolygon","coordinates":[[[[69.812775,-49.678062],[69.793884,-49.678062],[69.761932,-49.65889],[69.795,-49.647224],[69.812775,-49.678062]]],[[[70.011932,-49.571945],[69.850266,-49.519173],[69.835541,-49.50806],[69.921097,-49.513062],[70.011932,-49.571945]]],[[[69.90443,-49.47723],[69.843048,-49.45945],[69.825272,-49.425835],[69.858047,-49.43056],[69.90443,-49.47723]]],[[[68.789154,-49.361671],[68.69971,-49.362785],[68.64444,-49.343613],[68.67443800000012,-49.315285],[68.801666,-49.328339],[68.789154,-49.361671]]],[[[69.606659,-49.207779],[69.533051,-49.19667],[69.678329,-49.15306],[69.645554,-49.19889099999989],[69.606659,-49.207779]]],[[[69.264709,-49.091118],[69.2061,-49.09195],[69.21638500000012,-48.96722],[69.28305100000011,-48.907784],[69.368881,-48.886391],[69.406937,-48.94222],[69.264709,-49.091118]]],[[[69.152222,-48.98806],[69.14804100000015,-48.924171],[69.22221400000012,-48.85612],[69.242493,-48.8925],[69.152222,-48.98806]]],[[[69.491104,-48.88278],[69.44527,-48.88],[69.40193,-48.83445],[69.51721,-48.86028],[69.491104,-48.88278]]],[[[69.001099,-48.797501],[68.951111,-48.847229],[69.186096,-48.76667],[69.166931,-48.845284],[69.00305200000014,-49.030838],[69.000824,-49.09056],[69.06305,-49.11973],[69.05082700000014,-49.036667],[69.103882,-48.995834],[69.158051,-49.01973],[69.217209,-49.12556],[69.343277,-49.08795],[69.54777500000012,-48.95583],[69.621933,-48.97806],[69.6611,-49.07001],[69.640823,-49.124168],[69.359718,-49.13206],[69.28248600000012,-49.186394],[69.466385,-49.16611],[69.46333300000015,-49.24028],[69.49472,-49.27806],[69.582764,-49.30445],[69.71944,-49.307503],[69.856384,-49.248894],[69.848053,-49.214447],[69.90470900000014,-49.181671],[70.055832,-49.123894],[70.144165,-49.137779],[70.24472,-49.108612],[70.32388300000014,-49.05083],[70.526382,-49.09473],[70.56667,-49.245003],[70.45111,-49.371391],[70.35943600000013,-49.33834],[70.30693100000013,-49.382225],[70.459152,-49.44417],[70.303055,-49.435],[70.258331,-49.365837],[70.17722,-49.343338],[70.040268,-49.36695],[69.827774,-49.34084],[69.92248500000011,-49.39445],[69.94249000000013,-49.436951],[69.9086,-49.4464],[69.819153,-49.38862],[69.774719,-49.394173],[69.84082,-49.55195],[70.02137800000014,-49.58639],[70.03944400000012,-49.529449],[70.15361000000013,-49.50751],[70.328888,-49.54417],[70.253601,-49.69112],[69.87944,-49.70222],[69.738602,-49.51478],[69.643326,-49.5014],[69.7211,-49.58112],[69.697495,-49.66611],[69.44583100000011,-49.62556],[69.254715,-49.512779],[69.07582100000013,-49.541115],[69.110825,-49.643616],[69.077209,-49.69056],[68.990829,-49.72362],[68.79777500000012,-49.721947],[68.757492,-49.679726],[68.769989,-49.59889],[68.880829,-49.403618],[68.758881,-49.220001],[68.739166,-49.07167],[68.826111,-48.884445],[68.954163,-48.74972],[68.915833,-48.733612],[68.951385,-48.67001],[69.07222,-48.66],[69.07471,-48.75751],[69.001099,-48.797501]]],[[[68.67555,-48.64389],[68.641937,-48.65472],[68.60611000000011,-48.63972],[68.66861,-48.62806],[68.67555,-48.64389]]],[[[68.79777500000012,-48.615],[68.77415500000012,-48.605835],[68.787216,-48.577225],[68.824707,-48.570557],[68.79777500000012,-48.615]]],[[[52.25444,-46.4575],[52.191383,-46.46361],[52.08833,-46.411117999999874],[52.17832900000013,-46.371391],[52.25722,-46.37806],[52.310829,-46.40806],[52.25444,-46.4575]]],[[[51.819443,-46.45361],[51.71833,-46.45167],[51.651939,-46.374168],[51.734161,-46.326393],[51.78,-46.34112],[51.862221,-46.403618],[51.819443,-46.45361]]],[[[50.272217000000126,-46.131393],[50.185272,-46.108063],[50.176941,-46.0625],[50.273888,-46.050835],[50.29805,-46.089447],[50.272217000000126,-46.131393]]],[[[77.52943,-38.73778],[77.4997100000001,-38.73112],[77.506104,-38.7039],[77.53665,-38.72472],[77.52943,-38.73778]]],[[[77.554153,-37.902779],[77.509155,-37.88833599999987],[77.483887,-37.835281],[77.5544430000001,-37.8225],[77.58888,-37.87278],[77.554153,-37.902779]]],[[[42.75777,-17.075],[42.737495,-17.07278],[42.72110700000013,-17.055557],[42.75694,-17.059723],[42.75777,-17.075]]]]}},{"type":"Feature","properties":{"FIPS":"HM","ISO2":"HM","ISO3":"HMD","UN":334,"NAME":"Heard Island and McDonald Islands","AREA":0,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":73.507,"LAT":-53.111},"geometry":{"type":"Polygon","coordinates":[[[73.77388,-53.125031],[73.474442,-53.194168],[73.234436,-52.987785],[73.299438,-52.964172],[73.372498,-53.019173],[73.578888,-53.024445],[73.77388,-53.125031]]]}},{"type":"Feature","properties":{"FIPS":"IO","ISO2":"IO","ISO3":"IOT","UN":86,"NAME":"British Indian Ocean Territory","AREA":0,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":72.416,"LAT":-7.335},"geometry":{"type":"MultiPolygon","coordinates":[[[[72.487198,-7.38194],[72.43254,-7.43474],[72.359146,-7.265278],[72.4327550000001,-7.32444],[72.434982,-7.42889],[72.480545,-7.378333],[72.44886800000012,-7.234445],[72.494141,-7.29528],[72.487198,-7.38194]]],[[[71.34833,-6.65889],[71.343323,-6.656667],[71.36526500000012,-6.65167],[71.361923,-6.656667],[71.34833,-6.65889]]],[[[71.266388,-6.391945],[71.258606,-6.382222],[71.266098,-6.366666],[71.27026400000011,-6.37083],[71.266388,-6.391945]]],[[[71.3477630000001,-6.206944],[71.338593,-6.19583],[71.360809,-6.17417],[71.362488,-6.18055],[71.3477630000001,-6.206944]]],[[[71.78248600000012,-5.44028],[71.76304600000014,-5.436388],[71.75999500000012,-5.431389],[71.76638800000012,-5.429722],[71.78248600000012,-5.44028]]],[[[72.216385,-5.36222],[72.20776400000011,-5.35444],[72.208603,-5.34806],[72.21192900000011,-5.348333],[72.216385,-5.36222]]],[[[72.232483,-5.319722],[72.2211,-5.335556],[72.228043,-5.31583],[72.232483,-5.319722]]],[[[71.742203,-5.291111],[71.74054,-5.27111],[71.748596,-5.26556],[71.751099,-5.26778],[71.742203,-5.291111]]],[[[71.86943100000013,-5.25778],[71.8702550000001,-5.249722],[71.882202,-5.25611],[71.87970000000013,-5.25694],[71.86943100000013,-5.25778]]]]}},{"type":"Feature","properties":{"FIPS":"KT","ISO2":"CX","ISO3":"CXR","UN":162,"NAME":"Christmas Island","AREA":0,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":105.704,"LAT":-10.444},"geometry":{"type":"Polygon","coordinates":[[[105.701401,-10.51097],[105.629,-10.43731],[105.736603,-10.38408],[105.7519,-10.48375],[105.701401,-10.51097]]]}},{"type":"Feature","properties":{"FIPS":null,"ISO2":"UM","ISO3":"UMI","UN":581,"NAME":"United States Minor Outlying Islands","AREA":0,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":-160.027,"LAT":-0.385},"geometry":{"type":"MultiPolygon","coordinates":[[[[-160.021149,-0.398056],[-160.03973,-0.395278],[-160.04861,-0.38361],[-160.01779,-0.374722],[-160.021149,-0.398056]]],[[[-176.45615,0.21583],[-176.46698,0.216667],[-176.468323,0.22222],[-176.45392,0.226111],[-176.45615,0.21583]]],[[[-176.632202,0.793055],[-176.64447,0.79555],[-176.6431,0.812778],[-176.63275,0.80861],[-176.632202,0.793055]]],[[[-169.522522,16.728882],[-169.53894,16.7241590000001],[-169.54388,16.726379],[-169.53171,16.732491],[-169.522522,16.728882]]],[[[166.646362,19.27944200000013],[166.60745,19.304996],[166.62759,19.32458],[166.66024800000014,19.309441],[166.646362,19.27944200000013]]],[[[-177.33444,28.194157],[-177.34222,28.19388600000013],[-177.32169,28.213608],[-177.3175,28.200829000000113],[-177.33444,28.194157]]],[[[-177.38806,28.186378000000104],[-177.38977,28.212769],[-177.35803,28.21916],[-177.36276,28.20583],[-177.38806,28.186378000000104]]]]}},{"type":"Feature","properties":{"FIPS":"NH","ISO2":"VU","ISO3":"VUT","UN":548,"NAME":"Vanuatu","AREA":1219,"POP2005":215366,"REGION":9,"SUBREGION":54,"LON":166.899,"LAT":-15.376},"geometry":{"type":"MultiPolygon","coordinates":[[[[169.846069,-20.252224],[169.761932,-20.234444],[169.74551,-20.149445],[169.829132,-20.141666],[169.886658,-20.17055],[169.88610800000012,-20.22361],[169.846069,-20.252224]]],[[[170.217468,-19.55944],[170.205231,-19.525],[170.232452,-19.52417],[170.234131,-19.547779],[170.217468,-19.55944]]],[[[169.4982910000001,-19.545002],[169.431366,-19.658054],[169.349701,-19.63694],[169.2027590000001,-19.46167],[169.232452,-19.350277],[169.35358,-19.33139],[169.418854,-19.4825],[169.4982910000001,-19.545002]]],[[[169.59497,-19.273613],[169.57858,-19.2625],[169.59497,-19.23139],[169.60052,-19.237221],[169.59497,-19.273613]]],[[[169.30523700000015,-18.97889],[169.271088,-19],[168.989136,-18.88083],[168.98218,-18.68944],[169.018585,-18.64],[169.096619,-18.61972],[169.14804100000015,-18.64028],[169.195801,-18.79695],[169.32858,-18.89833],[169.30523700000015,-18.97889]]],[[[168.574677,-17.69278],[168.538574,-17.80194],[168.38415,-17.83],[168.2769170000001,-17.707222],[168.22412,-17.69805],[168.17081,-17.751392],[168.148041,-17.719719],[168.23886100000016,-17.581669],[168.31109600000013,-17.53139],[168.43942300000015,-17.54],[168.574677,-17.69278]]],[[[168.399139,-16.78278],[168.453308,-16.77167],[168.4744,-16.84695],[168.34634,-16.78889],[168.2258,-16.831944],[168.168579,-16.80528],[168.11773700000015,-16.70666],[168.14831500000014,-16.580555],[168.18414300000018,-16.57611],[168.399139,-16.78278]]],[[[168.231079,-16.516113],[168.20135500000015,-16.50056],[168.242462,-16.429165],[168.255829,-16.43555],[168.231079,-16.516113]]],[[[168.2152400000001,-16.174168],[168.258026,-16.25],[168.320801,-16.28805],[168.30414,-16.339443],[168.14413500000012,-16.36222],[167.91775500000014,-16.260281],[167.921082,-16.21666],[168.082458,-16.17889],[168.14331100000015,-16.089722],[168.1866460000001,-16.093334],[168.2152400000001,-16.174168]]],[[[167.416656,-16.110001],[167.753876,-16.339443],[167.83828700000015,-16.463055],[167.77249100000017,-16.535],[167.60025,-16.49778],[167.49496,-16.593334],[167.41748,-16.53222],[167.37219200000015,-16.3475],[167.376068,-16.190556],[167.319702,-16.12056],[167.24078,-16.16833],[167.181091,-16.14833],[167.146637,-16.08583],[167.177765,-15.89917],[167.222198,-15.873055],[167.33163500000012,-15.91472],[167.416656,-16.110001]]],[[[167.20914,-15.755556],[167.09164,-15.70722],[167.0774540000001,-15.640278],[167.227173,-15.637779],[167.2363590000001,-15.73361],[167.20914,-15.755556]]],[[[167.25861,-15.588055],[167.239136,-15.57444],[167.27691700000014,-15.546112],[167.288879,-15.573889],[167.25861,-15.588055]]],[[[167.202454,-15.60861],[167.128021,-15.60555],[167.11022900000012,-15.59],[167.190521,-15.52917],[167.202454,-15.60861]]],[[[168.2107850000001,-15.998055],[168.18304,-15.97833],[168.11218,-15.681944],[168.15332,-15.492222],[168.205231,-15.533333],[168.191925,-15.62361],[168.2666630000001,-15.87083],[168.26303100000018,-15.97305],[168.2107850000001,-15.998055]]],[[[167.85580400000015,-15.48583],[167.71942100000012,-15.48611],[167.66830400000015,-15.446945],[167.80304,-15.31944],[168.00219700000014,-15.29],[167.85580400000015,-15.48583]]],[[[167.175262,-15.26667],[167.163025,-15.265278],[167.1636,-15.25417],[167.17941,-15.25667],[167.175262,-15.26667]]],[[[167.14444000000015,-14.97139],[167.1188350000001,-14.964445],[167.096344,-14.932501],[167.15109300000017,-14.957777],[167.14444000000015,-14.97139]]],[[[168.169128,-15.39583],[168.13580300000012,-15.39667],[168.10580400000015,-14.92],[168.190247,-15.21472],[168.192749,-15.371387],[168.169128,-15.39583]]],[[[166.802765,-15.157501],[166.92499,-15.160278],[166.96719,-15.087778],[166.96579,-14.94861],[167.00470000000018,-14.92444],[167.058868,-14.945],[167.0652470000001,-15.085],[167.08969100000013,-15.142778],[167.139984,-15.13389],[167.14604,-15.248443],[167.187469,-15.302223],[167.17136,-15.340277],[167.23772,-15.52426],[167.151154,-15.520343],[167.071625,-15.59805],[166.90277100000012,-15.582777],[166.81469700000014,-15.66305],[166.761932,-15.642778],[166.617737,-15.390556],[166.65054,-15.229166],[166.52359,-14.845833],[166.545807,-14.66972],[166.59274300000016,-14.62444],[166.74969,-14.86972],[166.802765,-15.157501]]],[[[167.527466,-14.32667],[167.394989,-14.308056],[167.413605,-14.17889],[167.527191,-14.15333],[167.58828700000015,-14.172777],[167.588013,-14.26111],[167.527466,-14.32667]]],[[[167.479126,-13.94833],[167.385529,-13.827223],[167.40774,-13.742222],[167.47662400000013,-13.70667],[167.577759,-13.84722],[167.479126,-13.94833]]],[[[167.70553600000017,-13.675001],[167.63525400000012,-13.6975],[167.623566,-13.69194],[167.68774,-13.62167],[167.713867,-13.62944],[167.70553600000017,-13.675001]]],[[[167.34719800000016,-13.56139],[167.29330400000015,-13.52639],[167.322205,-13.486944],[167.369415,-13.525002],[167.34719800000016,-13.56139]]],[[[166.6774600000001,-13.4525],[166.66442900000015,-13.45167],[166.650818,-13.40972],[166.6941220000001,-13.41583],[166.6774600000001,-13.4525]]],[[[166.63162,-13.38139],[166.59747300000015,-13.34611],[166.59606900000017,-13.33417],[166.641357,-13.35694],[166.63162,-13.38139]]],[[[166.62024,-13.27139],[166.57940700000017,-13.26139],[166.587463,-13.22305],[166.638306,-13.22167],[166.62024,-13.27139]]],[[[166.55969200000015,-13.18639],[166.52609300000015,-13.17472],[166.521362,-13.070555],[166.56497,-13.091944],[166.55969200000015,-13.18639]]]]}},{"type":"Feature","properties":{"FIPS":"NI","ISO2":"NG","ISO3":"NGA","UN":566,"NAME":"Nigeria","AREA":91077,"POP2005":141356083,"REGION":2,"SUBREGION":11,"LON":8.105,"LAT":9.594},"geometry":{"type":"MultiPolygon","coordinates":[[[[7.466389000000105,4.445277],[7.43361,4.431110000000103],[7.335833,4.443055],[7.352777000000116,4.481667],[7.41194,4.48805],[7.478611,4.469166],[7.466389000000105,4.445277]]],[[[7.20361,4.380555000000129],[7.133888,4.39444],[7.22611,4.52],[7.316667,4.4725],[7.308055000000138,4.408889],[7.20361,4.380555000000129]]],[[[5.874722,13.74944],[6.133333000000107,13.660831],[6.285,13.683887],[6.423055,13.605276000000115],[6.679166,13.343887],[6.806389,13.10805],[6.933332000000121,12.997221],[7.090555,12.995277],[7.218888,13.12555],[7.379722,13.099722],[7.815,13.352777],[8.122221,13.303610000000106],[8.408609,13.088333],[8.541943000000117,13.074999000000105],[8.66361,12.943333],[8.984999,12.846666],[9.634932000000106,12.80243],[9.929998,13.133055],[10.134722,13.2525],[10.72416,13.386389],[11.066666,13.35972],[11.46333,13.373333000000116],[11.819721,13.273054],[12.007776,13.17139],[12.45917,13.06611],[12.542776,13.150276000000133],[12.53416600000014,13.194721],[12.589167,13.263611],[12.74833,13.346943],[12.87611,13.473331],[13.066387,13.548611],[13.08111,13.524721],[13.204721,13.528332],[13.347776,13.719999],[13.62512,13.718338],[14.07472,13.0816650000001],[14.199165,12.501389],[14.174444000000108,12.39667],[14.235832,12.353888],[14.490833,12.335833],[14.554722,12.243332],[14.645277,12.188332000000116],[14.63083300000011,11.891388],[14.588610000000129,11.754999],[14.588610000000129,11.692221000000131],[14.641109,11.646944],[14.617777,11.505554000000132],[14.16444,11.234165],[14.00361,11.283333],[13.80722,11.055832],[13.768055,10.931665000000123],[13.560833000000116,10.64361],[13.462221000000111,10.17194400000011],[13.398054,10.111111],[13.254999,10.07694],[13.228054,9.902777],[13.259722,9.751665],[13.239166,9.578888],[13.186666000000116,9.526667],[13.02389,9.496111],[12.897778,9.34805],[12.79416700000013,8.7658330000001],[12.674721,8.652777000000128],[12.395832,8.594999],[12.415833000000134,8.491943],[12.341110000000128,8.421665000000132],[12.253887,8.408054],[12.25555,8.197777],[12.202499000000103,8.111944000000108],[12.209444,8.003332000000114],[12.033054,7.715],[12.04361,7.577777000000141],[11.74972,7.270555000000115],[11.8825,7.132222],[11.864166,7.084722],[11.5875,6.892221000000119],[11.554722,6.82111],[11.589167,6.78],[11.580832,6.718611],[11.5183320000001,6.6075],[11.437222,6.590833],[11.376944,6.45167],[11.124443,6.438055],[11.073332,6.59111],[11.082222,6.69778],[11.04361,6.753333000000111],[10.88278,6.827777],[10.845554,6.959444],[10.615,7.06861],[10.559999000000117,7.02167],[10.51333,6.878055],[10.237778,6.878055],[10.195,6.917777],[10.164999000000135,7.021111],[9.874722,6.77583],[9.795555,6.801666],[9.708845,6.52125100000012],[9.637777000000142,6.523333],[9.468529,6.4043],[9.434999,6.327777],[9.363333,6.325833000000102],[9.223331,6.150555],[8.865276,5.841944],[8.850832,5.7225],[8.921665,5.595277],[8.86,5.497499],[8.815554,5.159721],[8.62194,4.894722],[8.63611,4.82694400000014],[8.549999,4.802777],[8.533333,4.703333],[8.478611,4.703888],[8.274721,4.856667],[8.25944,4.82389],[8.360277,4.636389000000122],[8.28833,4.544167],[8.022499,4.55139],[7.670833,4.497499000000118],[7.535555,4.541111000000114],[7.550405,4.706555],[7.5175,4.67972200000014],[7.530555,4.60222],[7.504167,4.566667],[7.23861,4.56361],[7.071666,4.753888],[7.08417,4.67694],[7.16972,4.604444],[7.178888,4.503888],[7.155,4.464999],[7.041111000000114,4.439722],[7.003055000000131,4.581388],[7.040277,4.643611000000134],[6.962222,4.725277000000119],[6.89972200000011,4.67694],[7.025,4.389444],[6.961389,4.372222],[6.865555,4.4],[6.76805,4.774722],[6.848611000000119,4.348332],[6.738333000000125,4.33667],[6.7125,4.35889],[6.72722,4.605],[6.656944000000124,4.5075],[6.694166,4.33],[6.252777,4.29472],[6.27055,4.368055],[6.33,4.431389],[6.26028,4.456388000000118],[6.214999,4.305833],[6.104166,4.272778],[5.93111,4.340555],[5.736944,4.48944],[5.566111,4.679999000000123],[5.451944,4.92305],[5.383888,5.120832],[5.433055,5.134444],[5.47056,5.091109],[5.494444000000101,5.146388000000115],[5.454444,5.188889],[5.440833,5.158055],[5.368889000000138,5.157777],[5.345277,5.33],[5.53972,5.4147210000001],[5.639722,5.536111],[5.509999,5.488333],[5.48222,5.402778000000126],[5.372499,5.39028],[5.257222000000126,5.435555000000136],[5.192222,5.507222],[5.211666,5.577499000000103],[5.497222,5.576388],[5.501111,5.620555],[5.445,5.654444],[5.175278,5.575555],[4.872499000000118,6.014166],[4.525833,6.304999],[4.379444,6.368055],[3.99111,6.421389],[3.415833000000134,6.40889],[3.388611,6.443333000000109],[3.53555,6.44861],[3.85722,6.600833],[3.807222000000138,6.612778],[3.717951,6.60616],[3.523611,6.52083],[3.475833,6.536111],[3.4675,6.594722000000104],[3.401111,6.546389],[3.370277,6.45028],[3.387777000000142,6.41333],[3.319167,6.385555],[2.719606,6.365505],[2.762777000000142,6.764999],[2.756389,6.910555000000101],[2.72528,6.954444],[2.778611,7.13444],[2.742222,7.808611],[2.6925,7.906388],[2.753611,8.206944],[2.70917,8.338888],[2.762777000000142,8.51916],[2.742958000000101,8.77076],[2.789444,9.04389],[3.095,9.090555],[3.16639,9.302776000000108],[3.141666,9.441111],[3.363328000000138,9.68194],[3.331111,9.755833000000107],[3.346666000000141,9.809166],[3.476944,9.856943],[3.52528,9.84417],[3.609444,9.948055],[3.683888,10.17055],[3.581944,10.275276],[3.63722,10.411665],[3.683888,10.448055],[3.79361,10.405554],[3.855,10.584999],[3.846666,10.703054000000122],[3.748611,10.80305],[3.775278,10.898611000000129],[3.731667,11.02944],[3.735774,11.120634],[3.694722000000127,11.134722],[3.475,11.429722],[3.568333,11.646944],[3.688333000000113,11.74972],[3.668611,11.812498],[3.631667,11.825277],[3.616944000000103,11.91972],[3.671666,11.975554000000102],[3.636947000000134,12.107771],[3.666115,12.249439000000109],[3.657777,12.52889],[3.952777,12.748888],[4.105000000000132,12.996387],[4.13972,13.177221],[4.1425,13.476944],[4.247777,13.481388],[4.469999,13.68694],[4.885555,13.781387],[4.923611,13.736387],[5.289166000000137,13.75278],[5.365,13.8475],[5.548367,13.891499000000124],[5.874722,13.74944]]]]}},{"type":"Feature","properties":{"FIPS":"NL","ISO2":"NL","ISO3":"NLD","UN":528,"NAME":"Netherlands","AREA":3388,"POP2005":1632769,"REGION":150,"SUBREGION":155,"LON":5.389,"LAT":52.077},"geometry":{"type":"MultiPolygon","coordinates":[[[[3.76417,51.345276],[4.198055,51.374443],[4.23889800000012,51.350426],[4.127777,51.278885],[3.8975,51.205276],[3.608055,51.304161000000136],[3.524722,51.28833],[3.520833,51.248055],[3.439167,51.244438],[3.380833,51.273605],[3.37087,51.373856],[3.538333000000137,51.411942000000124],[3.76417,51.345276]]],[[[5.763888,52.415276],[5.573055,52.36805],[5.534166,52.283333],[5.428611,52.26416000000011],[5.27861,52.325829],[5.160832,52.335274],[5.135555000000124,52.38027],[5.45117,52.509445],[5.47805,52.548882],[5.643611,52.601105],[5.85556,52.544167],[5.85556,52.492493],[5.763888,52.415276]]],[[[5.423333,52.636383],[5.485555,52.572777],[5.447398,52.51305],[5.134019,52.383137],[5.051795,52.394115],[5.08313,52.415245],[5.105833000000131,52.444443],[5.111666,52.474159],[5.03949,52.633652],[5.149386,52.616890000000126],[5.22575,52.642967],[5.296389,52.69111],[5.423333,52.636383]]],[[[4.76472200000012,52.99027300000011],[4.71583,53.00388],[4.713888,53.056107],[4.883333,53.184166],[4.90889,53.090553000000114],[4.76472200000012,52.99027300000011]]],[[[4.957222000000115,53.237778],[4.879999,53.214439],[5.002222,53.289162],[5.106388,53.30333],[4.957222000000115,53.237778]]],[[[5.213055,53.34999800000014],[5.16889,53.373886],[5.58194,53.44778],[5.56111,53.4302750000001],[5.213055,53.34999800000014]]],[[[6.871666,53.416107],[6.945277,53.321388],[7.088611000000128,53.25694],[7.208364,53.242805],[7.210278,53.001938],[7.069722,52.814995],[7.048055,52.63888500000013],[6.76805,52.65222],[6.718923000000132,52.626785],[6.75944,52.56472],[6.688889,52.54916400000013],[6.705555,52.485832],[6.764444000000139,52.45916],[6.94611,52.434441],[6.99083,52.459717],[7.065555,52.385826],[7.028055,52.280273000000136],[7.053094,52.23776],[6.901111,52.171387],[6.860555,52.12028],[6.759428,52.114563],[6.728611,52.035271],[6.8308320000001,51.971382],[6.746388,51.906105],[6.35111,51.848053],[6.12361,51.888054],[5.9625,51.807777],[5.986666,51.766937],[5.95205,51.747528],[6.028889,51.70666],[6.222221000000104,51.46583],[6.222221000000104,51.361664000000125],[6.076388,51.240273],[6.0975,51.1311],[5.86472,51.046104],[5.891666,50.972771],[6.025555,50.978333],[6.080277000000137,50.915833],[6.06778,50.849716],[6.013888000000122,50.84166],[6.011798,50.757271],[5.69861,50.75777],[5.701944,50.80583200000012],[5.640833,50.839722],[5.758055,50.959999],[5.849171000000125,51.15638],[5.568334000000107,51.22071],[5.510833,51.294441],[5.23897,51.262283],[5.2375,51.308327],[5.14,51.320831],[5.077222,51.395271],[5.104444000000115,51.434998],[5.041389,51.486664],[4.929999,51.398605],[4.85305,51.414444],[4.845555000000104,51.48111],[4.788333,51.503052],[4.650555,51.423332],[4.541944000000114,51.42667],[4.549444,51.48277300000012],[4.486666000000127,51.480827],[4.393888,51.450272],[4.437778,51.3752750000001],[4.388055,51.357498],[3.928889,51.434998],[3.899722,51.395],[3.823055,51.39],[3.543333000000132,51.454437],[3.440555,51.531662],[3.568889,51.597221],[3.837222,51.606667],[3.902778,51.565277],[3.820555,51.549164000000125],[4.006666,51.525276],[4.125555,51.438332000000116],[4.28611,51.448608],[4.262777,51.510551],[4.082777,51.53083],[3.99,51.584717],[4.0791660000001,51.612495],[4.208611,51.59],[4.186167,51.617043],[4.13472,51.61610400000012],[4.10614,51.650978],[3.9675,51.614441],[3.704444,51.676941000000106],[3.687500000000113,51.709717],[3.777778,51.746109],[3.885278,51.743889],[4.104166,51.661942],[4.167754000000116,51.68557],[4.019722,51.793610000000115],[3.874189,51.78637],[3.865555,51.814995],[4.06111,51.860275],[4.012221,51.981667],[4.138055,51.99582700000013],[4.362222,52.17166],[4.584431,52.4615],[5.424444,52.2486],[5.53361,52.26722],[5.624722,52.354164],[5.774166,52.405273],[5.878055,52.50944],[5.855000000000131,52.606911],[5.664721,52.60833],[5.599444,52.65860700000013],[5.599166000000138,52.757774],[5.71835,52.83802],[5.645833,52.85555],[5.563333,52.830826],[5.36861,52.877777],[5.42055,52.964439],[5.411388,53.028885],[5.364166000000125,53.07027],[5.100277000000119,52.948051],[5.09167,52.885826],[5.126111,52.82249500000012],[5.193055,52.7544400000001],[5.286111000000119,52.746109],[5.304166,52.706940000000145],[5.167777,52.62888],[5.033333,52.634163],[5.092777,52.50027],[5.090278,52.433327],[5.028333,52.375832],[4.58,52.471664],[4.74139,52.960548],[4.796111,52.964439],[4.813333,52.91833],[4.8875,52.896111],[5.085833,52.955276],[5.38611,53.096664],[5.442499,53.21194],[5.573333,53.288055],[5.890833,53.38222],[6.29694400000011,53.401939],[6.741944000000103,53.46583],[6.871666,53.416107]]],[[[5.699166,53.462776],[5.937222000000133,53.470551000000114],[5.95611,53.462776],[5.633055000000127,53.441666],[5.657499,53.472221],[5.699166,53.462776]]],[[[6.134999000000107,53.45361],[6.117222,53.474998],[6.148889,53.497498],[6.34111,53.502777],[6.134999000000107,53.45361]]]]}},{"type":"Feature","properties":{"FIPS":"NO","ISO2":"NO","ISO3":"NOR","UN":578,"NAME":"Norway","AREA":30625,"POP2005":4638836,"REGION":150,"SUBREGION":154,"LON":8.74,"LAT":61.152},"geometry":{"type":"MultiPolygon","coordinates":[[[[8.74361,58.409721],[8.733889,58.429718],[8.761389000000122,58.43666100000013],[8.761389000000122,58.421387],[8.74361,58.409721]]],[[[5.778333,58.947495],[5.760833,58.945831],[5.754999000000112,58.956383],[5.769722,58.9566650000001],[5.778333,58.947495]]],[[[5.961944,58.972221],[5.94444,58.970551000000114],[5.945000000000107,58.97749],[5.958888,58.983887],[5.961944,58.972221]]],[[[5.72639,59.078049000000135],[5.69444,59.07999400000011],[5.548333,59.130554000000124],[5.688889,59.129166],[5.72639,59.078049000000135]]],[[[5.952777,59.228333],[5.900833,59.234444],[5.909721,59.274162],[6.006944,59.29166],[6.059166000000118,59.26083],[5.952777,59.228333]]],[[[5.287777000000119,59.218887],[5.259999,59.14777400000014],[5.155277,59.146942],[5.13194,59.22083],[5.183611,59.411942000000124],[5.285555,59.32138800000013],[5.287777000000119,59.218887]]],[[[5.26333,59.798607],[5.345277,59.704163],[5.273889,59.678604],[5.30944,59.700554],[5.288610000000119,59.750549],[5.192222,59.741386],[5.17222,59.68805],[5.20139,59.613884],[5.148889000000111,59.58111],[5.07,59.773605],[5.107499000000132,59.86444],[5.143611,59.87221],[5.26333,59.798607]]],[[[5.413055,59.751663],[5.305277,59.793053],[5.251666000000114,59.90888],[5.276388,59.966942],[5.411944,59.940277],[5.468333,59.886383],[5.492777,59.794167],[5.413055,59.751663]]],[[[5.525,59.893326],[5.360833,59.992218],[5.452777,60.04416700000013],[5.658055,60.075272],[5.659721,59.99389],[5.525,59.893326]]],[[[5.268055,60.004997],[5.168056,60.031387],[5.172777,60.12167],[5.259722,60.060829000000126],[5.268055,60.004997]]],[[[5.954721,60.089439],[5.927777,60.07972],[5.924166,60.14527],[6.016944,60.14666000000011],[6.017777,60.112778],[5.954721,60.089439]]],[[[5.216944000000126,60.241943],[5.199721,60.251106],[5.233333,60.254715],[5.231388,60.248604],[5.216944000000126,60.241943]]],[[[5.111944,60.185829],[4.946944,60.249161],[4.9425,60.427498],[4.97278,60.440826],[5.08944,60.32611],[5.111944,60.185829]]],[[[5.195277,60.408882],[5.138611,60.396111000000126],[5.000833,60.531105],[5.179444000000103,60.48277300000013],[5.195277,60.408882]]],[[[5.185277,60.5061],[4.987222,60.561104],[4.926944000000105,60.60527],[5.121666,60.578049],[5.189166,60.54277],[5.185277,60.5061]]],[[[5.549999,60.43138900000014],[5.36,60.523888000000106],[5.581388,60.628326],[5.592777000000126,60.683884],[5.675833,60.683052],[5.681666,60.47277],[5.549999,60.43138900000014]]],[[[5.158333,60.581665],[5.007777,60.619995],[4.854444,60.732498],[4.98,60.71472200000011],[5.158333,60.581665]]],[[[4.696388,60.98722],[4.630833,61.00666],[4.62805,61.06443800000011],[4.676389,61.062492],[4.719722,60.996666],[4.696388,60.98722]]],[[[4.98639,61.10443900000012],[4.91,61.065552],[4.856111,61.094719],[4.804722,61.044441],[4.78805,61.146385],[4.938889,61.18833],[4.98639,61.10443900000012]]],[[[4.934166,61.77416],[4.804166,61.84055],[4.92611,61.898888000000106],[5.22194400000012,61.84555],[4.934166,61.77416]]],[[[5.068055,61.92305],[5.059166000000118,61.92055],[5.009722,62.01361],[5.099722,62.01916],[5.127222,61.992493],[5.068055,61.92305]]],[[[5.647778,62.187492],[5.54,62.187492],[5.50611,62.224442],[5.565000000000111,62.28833],[5.808055,62.273048],[5.78889,62.209442],[5.647778,62.187492]]],[[[5.840555000000109,62.239998],[5.851666000000136,62.27861],[5.804999,62.366943],[5.89222,62.423882],[5.977500000000134,62.41111000000012],[6.023889,62.327217],[5.840555000000109,62.239998]]],[[[6.253888,62.39166300000011],[6.096389000000102,62.39388300000014],[6.023055000000113,62.43555],[6.333611,62.41333],[6.253888,62.39166300000011]]],[[[6.736666,62.66722],[6.677777000000105,62.65361],[6.649722,62.681389],[6.69361,62.73194100000012],[6.88917,62.74249300000014],[6.91944,62.709160000000104],[6.736666,62.66722]]],[[[6.886389,62.776939],[6.782777,62.8052750000001],[6.77583,62.845551000000114],[6.940555,62.844444],[6.886389,62.776939]]],[[[7.548333,62.948326],[7.510278,62.9386060000001],[7.365555,62.99638],[7.39917,63.057495],[7.60444,63.093048000000124],[7.65,63.081108],[7.711944,63.002495],[7.548333,62.948326]]],[[[7.809722000000136,63.023331],[7.778333,63.01749400000011],[7.67944,63.056107],[7.72611,63.089722],[7.91528,63.07916],[7.809722000000136,63.023331]]],[[[8.268610000000137,63.158882],[8.208887,63.159164],[8.179443,63.21694200000013],[8.239166,63.224442],[8.309166,63.16305],[8.268610000000137,63.158882]]],[[[8.060276,63.14166],[7.979166,63.141106],[7.92639,63.171944],[8.09833,63.235832],[8.186388000000136,63.153053],[8.060276,63.14166]]],[[[8.391109,63.159164],[8.26638800000012,63.231667],[8.269722000000115,63.266106],[8.437498,63.28388200000011],[8.576111,63.18944],[8.391109,63.159164]]],[[[8.511944,63.31916000000013],[8.43111,63.33194],[8.541943000000117,63.386383],[8.675833000000125,63.346664],[8.511944,63.31916000000013]]],[[[8.162222,63.361382],[7.985277,63.308884],[7.991388,63.344444],[7.803333000000122,63.362778],[7.778333,63.40583],[7.98805,63.466942],[8.09166,63.46666],[8.179443,63.397217],[8.162222,63.361382]]],[[[8.494165,63.428329],[8.29528,63.438606],[8.279999,63.464722],[8.29722,63.49944],[8.431944000000101,63.55666400000013],[8.614443,63.568329],[8.61472,63.609161],[8.944721,63.653885],[9.17639,63.56472],[8.931110000000103,63.4911],[8.494165,63.428329]]],[[[8.808332,63.810272],[8.827776,63.722496],[8.79444,63.697495],[8.474165,63.662216000000114],[8.269999,63.678886],[8.528889,63.71944400000012],[8.808332,63.810272]]],[[[11.06278,63.75972000000013],[11.0141660000001,63.75416600000011],[11.054722,63.797775],[11.22944,63.803055],[11.06278,63.75972000000013]]],[[[11.453609,64.51416],[11.41805,64.47194],[11.17555,64.506943],[11.03944,64.598328],[11.03861,64.628876],[11.086943,64.6499940000001],[11.453609,64.51416]]],[[[11.35139,64.6499940000001],[11.310833,64.596664],[11.253887,64.639435],[11.17610900000011,64.64444],[11.27916,64.68443300000013],[11.35139,64.6499940000001]]],[[[11.261665,64.88472],[11.128887,64.82944],[10.951387,64.86972],[10.824999,64.844986],[11.10611,64.950272],[11.261665,64.88472]]],[[[11.110832,64.96582],[10.815554000000134,64.863602],[10.731388,64.86027500000012],[10.777777000000128,64.918884],[11.029999,64.9861],[11.110832,64.96582]]],[[[11.636665000000106,65.065277],[11.582222000000115,65.039154],[11.531387,65.06082200000014],[11.6425,65.113602],[11.772778,65.113602],[11.636665000000106,65.065277]]],[[[12.156387,65.051376],[12.129721,65.0502780000001],[11.98167,65.07638],[12.09861,65.18277000000012],[12.18361,65.208328],[12.31528,65.109985],[12.156387,65.051376]]],[[[12.075277,65.21138000000013],[12.258055000000127,65.57611],[12.396111,65.505554],[12.502777,65.39194],[12.075277,65.21138000000013]]],[[[11.974165,65.626938],[11.900555,65.58305400000012],[11.75861,65.61694],[11.814722,65.68332],[11.894444,65.704437],[12.000832000000115,65.69472],[11.974165,65.626938]]],[[[12.5425,65.896942],[12.43861,65.864166],[12.481388,65.893051],[12.414999,65.8936],[12.464722000000108,65.97388],[12.573889,66.01054],[12.90361,66.008606],[12.5425,65.896942]]],[[[12.352499,66.02249100000012],[12.29250000000013,66.01277],[12.34333,66.07777],[12.481388,66.13165300000014],[12.433611,66.165833],[12.56333,66.217773],[12.657221,66.104721],[12.352499,66.02249100000012]]],[[[12.986666,66.228333],[12.930832,66.226379],[13.022499,66.271378],[13.158333,66.277496],[12.986666,66.228333]]],[[[12.796665,66.214432],[12.715832,66.247498],[12.79611,66.2855530000001],[12.870832,66.277496],[12.86055,66.236938],[12.796665,66.214432]]],[[[14.257776,67.133041],[14.19194,66.999435],[14.089722,67.0663760000001],[13.99111,67.078598],[14.058611,67.117218],[14.257776,67.133041]]],[[[14.253054,67.358597],[14.21666,67.358322],[14.374998,67.422211],[14.346666,67.373322],[14.253054,67.358597]]],[[[15.202221000000122,67.900269],[14.97666500000014,67.905823],[14.931665,67.923874],[15.038332,67.95805400000012],[15.30361,67.92027300000012],[15.202221000000122,67.900269]]],[[[15.90333,67.978882],[15.61389,67.975555],[15.498888,67.987778],[15.85111000000012,68.013611],[15.922777,67.99082900000013],[15.90333,67.978882]]],[[[12.841944000000126,67.808609],[12.785000000000139,67.80832],[12.943888000000129,68.00610400000011],[13.05472200000014,68.10194400000012],[13.155832,68.0811],[13.13444,67.9525],[12.841944000000126,67.808609]]],[[[13.438055,68.112778],[13.382500000000105,68.02861000000013],[13.239166,67.98527500000012],[13.210833,68.036102],[13.16305,68.011383],[13.16361,68.047485],[13.299166000000127,68.14971900000012],[13.438055,68.112778]]],[[[14.870554,68.21165500000012],[14.821665000000108,68.219162],[14.826111,68.25444],[14.940554000000136,68.268051],[14.870554,68.21165500000012]]],[[[13.968332,68.238327],[14.063889,68.26221],[14.135832000000107,68.23944],[14.039165,68.177216],[13.860277,68.158875],[13.844721,68.108322],[13.697777,68.06416300000012],[13.624722,68.08387800000014],[13.521111000000133,68.039444],[13.449720000000127,68.06749],[13.529444,68.12609900000011],[13.514444,68.23471100000012],[13.572777,68.26443],[13.67639,68.285828],[13.968332,68.238327]]],[[[13.97333,68.253326],[13.889444,68.287216],[13.883333,68.3022160000001],[13.990555,68.309998],[13.99805,68.26555],[13.97333,68.253326]]],[[[14.203609,68.23916600000013],[14.054998,68.286942],[14.049444,68.303329],[14.214167,68.30110200000013],[14.245277,68.26778],[14.203609,68.23916600000013]]],[[[15.026388,68.35499600000014],[14.77139,68.25749200000013],[14.19972,68.152222],[14.20194400000014,68.200272],[14.317221,68.315277],[14.495277000000101,68.297775],[14.43111,68.35582000000011],[14.542221,68.400833],[14.804722000000138,68.41777],[14.80805400000014,68.386879],[14.753332,68.345825],[14.861332,68.380432],[14.89583,68.42887900000011],[15.168888,68.45054600000014],[15.026388,68.35499600000014]]],[[[16.405552,68.411102],[16.121109000000104,68.376389],[16.094444,68.39665200000012],[16.1475,68.483597],[16.32694,68.5336],[16.466663,68.467499],[16.405552,68.411102]]],[[[17.116386,68.75249],[16.82527,68.719711],[16.813053,68.728333],[17.000553,68.854431],[17.1475,68.774429],[17.116386,68.75249]]],[[[17.241665,68.788605],[17.190552,68.79693600000013],[17.083611,68.91026],[17.331387,68.91638],[17.437775,68.865265],[17.241665,68.788605]]],[[[14.95444,68.872772],[14.875277,68.873322],[14.83917,68.88194],[14.855276,68.93193100000013],[14.885277,68.933319],[14.969444,68.919998],[14.95444,68.872772]]],[[[15.988054,68.751938],[15.940277,68.683884],[15.76694300000014,68.621109],[15.739443000000106,68.52610800000014],[15.808611,68.5544430000001],[15.81916600000011,68.611664],[16.09083,68.732208],[16.11639,68.78],[16.087219,68.813889],[16.178886,68.851654],[16.44611,68.843887],[16.544441,68.76416],[16.565,68.65193],[16.487778,68.598877],[16.501144,68.55246],[16.22194,68.547211],[16.082775,68.497498],[15.933054,68.369431],[15.869444,68.364441],[15.855555,68.431931],[15.588888,68.304993],[15.520832,68.333603],[15.327776,68.33027600000013],[15.589167,68.47833300000013],[15.542221,68.507492],[15.554165000000125,68.46611],[14.986666,68.24749800000012],[15,68.303055],[15.24361,68.473053],[15.335833,68.485275],[15.181665,68.522217],[15.45833,68.656937],[15.451666,68.73],[15.71361,68.69861],[15.64555,68.739166],[15.451666,68.7622070000001],[15.455,68.80387900000011],[15.63611,68.94665],[15.908756,68.9567],[15.928888,68.886383],[15.870554,68.786377],[15.980276,68.77888],[15.988054,68.751938]]],[[[16.53722,68.879715],[16.37611,68.90666],[16.261108,68.96666],[16.329998,68.990829],[16.601665,68.94554],[16.59139,68.892212],[16.53722,68.879715]]],[[[15.38278,68.84528],[15.395832,68.67666600000013],[15.059166000000118,68.572495],[14.85028,68.58638],[14.80361,68.618042],[15.157776000000126,68.69499200000013],[15.15,68.74916100000013],[14.99667,68.761932],[15.067221,68.738052],[14.906666,68.677216],[14.663610000000117,68.66666],[14.50111,68.601944],[14.429165,68.611099],[14.371111,68.683609],[14.442499,68.765549],[14.632776,68.826111],[14.886665,68.754166],[14.950554,68.80610700000011],[14.905277,68.841934],[14.9516660000001,68.86055],[15.14861,68.81221],[15.005278,68.95166],[15.087776000000133,69.0080410000001],[15.165833000000132,68.99026500000014],[15.2066650000001,68.89942900000011],[15.38278,68.84528]]],[[[17.416943,68.99582],[17.358608,68.987213],[17.352776,69.024155],[17.418888,69.07582100000013],[17.561386,69.09498600000012],[17.416943,68.99582]]],[[[15.522499,68.9060970000001],[15.43611,68.88276700000011],[15.42111,68.97305],[15.56028,69.094711],[15.773611000000129,69.146378],[15.863609000000109,69.238602],[15.99444,69.28776600000015],[16.11194,69.31277],[16.148052,69.286377],[16.081665,69.152771],[15.863888,69.026108],[15.638054,68.981659],[15.522499,68.9060970000001]]],[[[17.63661,69.516045],[17.696388,69.51277],[17.651943,69.594162],[17.84417,69.58916],[18.074165000000107,69.430832],[18.09722,69.352768],[17.90860700000013,69.321381],[17.875832000000116,69.23972],[18.003609,69.190277],[17.583885,69.156937],[17.522221,69.190277],[17.21194,69.090271],[17.161663,69.04805],[17.209999,69.02804600000013],[17.09278,69.00360100000012],[17.037498,69.02221700000011],[17.135555,69.07527],[16.775276,69.06443800000011],[16.80139,69.116379],[17.004444,69.12999],[17.17388,69.19583],[17.032497,69.18110700000011],[16.875832000000113,69.22137],[17.10833,69.223602],[17.14277600000014,69.24943],[16.89666,69.29971300000011],[17.09987600000011,69.316078],[17.081944,69.3445],[16.87611,69.35611000000011],[16.930832,69.39248700000013],[17.490276000000108,69.421936],[17.261108,69.44444],[17.186943,69.490829],[17.29583,69.46138],[17.365387,69.478493],[17.301666000000125,69.526108],[17.32361,69.531937],[17.59,69.45527600000014],[17.610165,69.477158],[17.47361,69.540543],[17.46917,69.5977630000001],[17.63661,69.516045]]],[[[30.155552,69.781662],[30.11555,69.782776],[30.110554,69.787216],[30.12611,69.797485],[30.155552,69.781662]]],[[[18.889999,69.69194],[18.794167,69.671936],[18.7675,69.63472],[18.846386,69.598328],[18.738331,69.55777],[18.190552,69.53],[17.99694,69.588333],[18.031944,69.62220800000011],[18.146385000000123,69.63861],[18.268608,69.619156],[18.19722,69.708878],[18.63222100000013,69.689713],[18.351665,69.72333],[18.324444,69.7741550000001],[18.387218,69.794434],[18.481941,69.760818],[18.63444,69.763321],[18.656109,69.71138000000013],[18.751389,69.68277000000012],[18.766388,69.765549],[18.661942,69.8611],[18.69305,69.88443],[18.833611,69.877487],[19.05778,69.787216],[19.04416700000013,69.74971],[18.889999,69.69194]]],[[[20.680275,69.80861],[20.57333,69.798325],[20.55639,69.85110500000013],[20.611111000000108,69.902771],[20.739166,69.90527],[20.734997,69.82249500000012],[20.680275,69.80861]]],[[[29.826664,69.756943],[29.716389000000106,69.766937],[29.808542,69.8219150000001],[29.841942000000127,69.91026],[30.002777,69.88472],[30.04805,69.8274990000001],[29.826664,69.756943]]],[[[21.730274,69.93110700000011],[21.681389,69.927765],[21.66861,69.9419400000001],[21.71722,69.949707],[21.730274,69.93110700000011]]],[[[19.567219,69.85165400000011],[19.459442,69.842499],[19.798054,70.00055],[19.897778,69.97221],[19.783333,69.868042],[19.567219,69.85165400000011]]],[[[19.959164,70.005554],[19.915833,70.0080410000001],[19.899166,70.016098],[19.996109,70.012772],[19.959164,70.005554]]],[[[20.892567,70.030815],[20.947498,70.00183900000013],[21.1025,70.004715],[20.887218000000132,69.936096],[20.80278,69.944443],[20.757774,69.98999],[20.807777,70.04277],[20.892567,70.030815]]],[[[21.000832000000113,70.01971400000014],[20.951942,70.02583300000015],[21.011944,70.06248],[21.049164,70.049713],[21.000832000000113,70.01971400000014]]],[[[19.300552,70.02611],[19.42361,69.986938],[19.414719,70.01332],[19.527775,70.05249],[19.69194,69.99472000000014],[19.395,69.827774],[19.179722,69.791931],[19.099720000000104,69.79138200000011],[18.955276,69.87027000000012],[18.721107000000128,69.93415800000014],[18.85555,70.013611],[19.054443,70.020264],[19.21917,70.096375],[19.301666,70.059998],[19.300552,70.02611]]],[[[18.785,70.11137400000013],[18.93666500000012,70.12027],[19.00278,70.084152],[18.684444,69.996658],[18.658886,70.04388],[18.71444300000013,70.13082900000012],[18.785,70.11137400000013]]],[[[20.91972,70.07944],[20.865555,70.0769350000001],[20.81472,70.116104],[20.86138,70.14915500000012],[20.94278,70.10916],[20.91972,70.07944]]],[[[19.6075,70.101944],[19.53194,70.098328],[19.34972,70.131378],[19.431389000000138,70.17776500000014],[19.60416,70.126938],[19.6075,70.101944]]],[[[20.83194400000013,70.19388],[20.783886,70.05638],[20.609444,70.042221],[20.562775,70.076385],[20.467499,70.059158],[20.385277,70.09887700000013],[20.42999600000013,70.184158],[20.57777,70.23111],[20.752499,70.234161],[20.83194400000013,70.19388]]],[[[19.1852760000001,70.122498],[19.141388,70.119431],[19.033607,70.161102],[19.135277,70.2461090000001],[19.23361,70.25444],[19.26083000000011,70.17805],[19.1852760000001,70.122498]]],[[[20.11278,70.10472],[19.98833,70.058044],[19.77,70.065277],[19.706944,70.175827],[19.53611,70.248322],[19.673611000000108,70.28776600000015],[19.84639,70.17305],[20.11278,70.10472]]],[[[21.772778,70.266663],[21.69722,70.28860500000013],[21.697777,70.381943],[21.84139,70.350266],[21.772778,70.266663]]],[[[22.834721,70.332214],[22.948055,70.319153],[23.022778,70.25943],[22.57333000000011,70.269165],[22.368610000000103,70.33444],[22.472221,70.374985],[22.664444,70.3913880000001],[22.834721,70.332214]]],[[[23.595833,70.57805],[23.653053,70.50138900000013],[23.643887,70.43832],[23.230553,70.27832],[23.091942,70.28499],[22.851109,70.405823],[22.896111000000133,70.44832],[23.189999,70.54777500000012],[23.406666,70.555267],[23.388885,70.62027],[23.53861,70.61194],[23.595833,70.57805]]],[[[23.871109,70.5122070000001],[23.708054,70.54777500000012],[23.63416300000011,70.696381],[23.707222000000115,70.747208],[23.826385,70.744156],[24.03083,70.68609600000013],[24.125832000000116,70.615265],[23.952774,70.52249100000012],[23.871109,70.5122070000001]]],[[[23.451664,70.7836],[23.08889,70.5811],[22.784164,70.519714],[22.746387,70.556656],[22.640831000000105,70.56555200000014],[22.621109,70.515274],[22.25000000000011,70.5061],[22.149441,70.4644320000001],[22.155277,70.51249700000011],[22.252220000000136,70.5544430000001],[22.267776,70.59721400000012],[22.01472,70.604431],[21.949718,70.646103],[22.27244,70.652878],[22.378052,70.675278],[22.399166,70.71165500000012],[22.533886,70.711929],[22.664165,70.676376],[22.60611,70.63582],[22.81944,70.64194],[22.799442000000113,70.69083],[22.71611000000013,70.741653],[22.78360700000013,70.755264],[22.98055,70.6586],[23.16000000000014,70.788605],[23.340275,70.7836],[23.329998000000103,70.863052],[23.451664,70.7836]]],[[[24.06194,70.908875],[23.909443,70.950821],[23.880833,70.993607],[24.078609000000142,71.022217],[24.2225,70.99472000000014],[24.243889,70.951935],[24.06194,70.908875]]],[[[24.799442,71.02388],[24.667774,71.0438840000001],[24.639442,71.060822],[24.738609,71.103043],[24.853611000000114,71.089981],[24.799442,71.02388]]],[[[5.336944,61.592773],[5.282,61.586163],[5.346499000000108,61.589996],[5.320333,61.598328],[5.282666,61.605663],[5.118055,61.60999],[5.23222,61.627495],[4.974444,61.62944],[4.938055000000134,61.67638],[4.983055,61.741661],[5.41,61.911385],[5.672222,61.882217],[5.744721,61.842216],[6.246666000000118,61.8366620000001],[6.469166,61.800827],[6.583611,61.866661],[6.763611000000139,61.86805],[6.567499,61.87971],[6.490833,61.824997],[5.95128,61.869606],[5.788333,61.855827],[5.726944,61.887215],[5.893444000000101,61.906387],[5.433611,61.934998],[5.148055,61.892220000000115],[5.101388,61.915833],[5.141944000000137,61.970833],[5.220277,61.961388],[5.40361,62.016106],[5.09305,62.112221],[5.0783330000001,62.17805],[5.150277,62.211937],[5.446666,62.057495],[5.46444,62.005554],[5.548333,62.07833100000011],[5.38944,62.116943],[5.431666,62.18166],[5.683332,62.17222],[5.85861,62.19832600000012],[5.921111,62.17222],[5.919999,62.11360900000011],[6.357222,62.055275000000115],[6.089999,62.104439],[5.918056,62.21583],[6.024166,62.298882],[6.306666,62.371666],[6.563055,62.15166],[6.53805,62.10472],[6.58611100000013,62.14694200000013],[6.40861,62.314163],[6.388333,62.369720000000136],[6.709999,62.44444],[6.883055,62.41138],[6.871666,62.35721600000011],[7.000555,62.254166],[7.009166,62.186104],[6.940277,62.112221],[7.04306,62.08638800000011],[7.090278,62.09805],[6.967777000000126,62.11972],[7.03194,62.167496],[7.027778,62.269722],[7.306389000000138,62.2772220000001],[7.41555,62.23249800000014],[7.316944,62.288605],[6.975277,62.309998],[6.915277,62.36222],[6.973611,62.374161],[6.781388,62.478333],[6.393888000000118,62.419441],[6.257222,62.44888],[6.436666,62.49333200000012],[6.649833000000115,62.498383],[6.542777,62.53083],[6.2675,62.529442],[6.246944,62.57471],[6.339167,62.60889],[6.55694,62.61110700000011],[6.601666,62.583885],[6.757222,62.652771],[7.089999,62.64777400000013],[7.50694,62.543053],[7.539166,62.499161000000136],[7.575,62.5469440000001],[7.779722,62.571938],[7.49778,62.562492],[7.409444,62.622772],[7.825,62.729721],[8.00111,62.736107],[8.145277000000135,62.689995000000124],[7.999722,62.76388500000013],[7.482499,62.679161],[7.389999,62.68333],[7.367777000000102,62.726105],[7.68111,62.791382000000105],[7.625833000000114,62.79527],[6.958888,62.722496],[6.991991,62.85655],[6.938333,62.9061],[7.03639,62.967499],[7.271944000000132,63.01082600000012],[7.460555,62.91111],[7.648889,62.969162],[7.786666,62.96666],[7.676944,62.90833],[7.991388,62.971939],[8.085833,62.938889],[8.161665,62.80971],[8.48944,62.717216],[8.548332,62.653885],[8.57,62.672493],[8.5525,62.71666],[8.18388700000014,62.84083],[8.141388,62.952217],[7.879167,63.010551],[7.981667,63.084442],[8.089443,63.10694100000012],[8.135555,63.073326],[8.13278,63.040276],[8.357777,62.88055400000013],[8.530832,62.841385],[8.415277,62.953049000000135],[8.66416,62.981941],[8.374443,62.971107],[8.22639,63.027771],[8.159166,63.12027700000011],[8.300833000000125,63.150833],[8.570833,63.13916],[8.574999000000105,63.167221],[8.63139,63.18249500000013],[8.938332,63.20666],[8.625277,63.19778],[8.477777,63.29361000000012],[8.763611,63.345276],[8.641943,63.386108],[8.652777000000128,63.409164],[9.004999,63.4675],[9.146111,63.374161],[9.23139,63.353882000000105],[9.427776,63.37694],[9.478611,63.40305],[9.202221,63.369720000000136],[9.162222,63.391388],[9.149721000000113,63.48416],[9.24278,63.534721],[9.416666,63.533882],[9.530277000000126,63.60305],[9.6475,63.623886],[9.717499,63.630272000000105],[9.9566650000001,63.440826],[9.94333300000011,63.393051],[9.97611000000012,63.35611],[10.254721,63.29027600000011],[10.256666,63.26111],[10.264166000000102,63.333328],[10.083332,63.35833],[10.04722,63.406105],[10.27861,63.463608],[10.550833,63.430832],[10.910276,63.45111],[10.75999800000011,63.50972],[10.919998,63.55305],[10.92166,63.598328],[10.65889,63.549995],[10.742498,63.616386],[10.959166,63.698883],[11.155554,63.705826000000116],[11.25361,63.767776],[11.45583,63.787216],[11.41528,63.846107],[11.267221,63.868332000000116],[11.115000000000121,63.843605],[11.090555000000109,63.87832600000013],[11.26472,63.960831],[11.435833000000116,63.97833300000014],[11.492777,64.01944000000015],[11.318888,64.032211],[11.358332000000132,64.1105500000001],[11.30583,64.11637900000011],[11.180277,64.008041],[10.574165,63.804993],[10.904165,63.894165],[11.026667,63.875549],[11.07722,63.83749],[10.941944,63.73805],[10.047777,63.496109],[9.91972,63.506386],[9.789165,63.66249800000014],[9.808332,63.690552],[10.09833,63.76194],[10.00528,63.7725],[9.56028,63.65916],[9.539444,63.662773],[9.543888,63.763611],[9.86194,63.886108],[10.189722,63.93055],[10.119999,63.985275],[9.98222,63.990555],[10.020277,64.066376],[10.166111000000114,64.18971],[10.505278,64.367493],[10.652222,64.35304300000013],[10.460734,64.40281700000014],[10.495291,64.423813],[10.651388,64.425278],[10.845833,64.368607],[10.791388,64.438049],[10.658054,64.44999700000011],[10.802776,64.50610400000011],[10.90111000000013,64.48999000000015],[10.972221,64.601379],[11.061666,64.56944],[11.06722,64.516937],[11.273333,64.45166],[11.28555,64.37443],[11.221666,64.31610100000012],[11.34472,64.38916000000012],[11.504166,64.541931],[11.728054,64.579712],[11.51555400000012,64.567764],[11.3925,64.67332],[11.438332000000115,64.711105],[11.592222000000106,64.771103],[11.84055,64.79277000000013],[11.64305,64.81805400000013],[11.733332000000132,64.875549],[12.080555000000118,64.958603],[12.224443000000122,64.93721],[12.035276,64.97027600000013],[11.747221,64.892776],[11.375832,64.745819],[11.235554,64.734161],[11.37472,64.80554],[11.234165,64.816101],[11.2675,64.839432],[11.700554,64.900269],[11.246387,64.85582000000011],[11.297222,64.88361],[11.779999,64.9736],[11.810276,65.01138300000014],[11.974998,65.06582600000013],[12.01944,65.026108],[12.047499,65.05583200000012],[12.148888,65.039154],[12.624722,65.13361],[12.939722,65.30832],[12.922222,65.328323],[12.4772210000001,65.13333100000011],[12.36611,65.1611],[12.422222,65.23054500000012],[12.679889000000117,65.25059],[12.367777,65.26944],[12.24889,65.228607],[12.53801,65.377884],[12.48111,65.44332900000012],[12.638054,65.4188840000001],[12.56194,65.50444],[12.395555,65.541931],[12.35555,65.590271],[12.360832,65.6477660000001],[12.508333,65.72916],[12.575277,65.71333300000015],[12.615276000000108,65.64665200000013],[12.78861,65.63638300000014],[12.55110900000011,65.748886],[12.6675,65.916931],[12.82833,65.968323],[13.174999,65.84915200000012],[13.12194,65.940277],[12.931944,65.97499],[12.959444,66.042221],[12.728333,66.038605],[12.67389,66.0669400000001],[12.83389,66.12666300000012],[13.068609,66.146652],[13.31194,66.220825],[13.549999,66.23582],[13.58083,66.226654],[13.527222,66.1933290000001],[13.54972,66.10055],[13.662222,66.226654],[13.99889,66.248886],[14.14667,66.321655],[14.118889000000138,66.337769],[13.63944400000014,66.238876],[13.482222,66.251938],[13.027222000000108,66.18609600000013],[13.21611,66.274994],[13.536388000000102,66.303604],[13.326944,66.318054],[13.192221,66.29332],[13.023333,66.32222],[13.007221,66.35582],[13.17139,66.406097],[13.0875,66.493607],[12.97,66.518326],[13.108332000000132,66.536942],[13.21361000000013,66.50722],[13.456944,66.558884],[13.566387000000134,66.598602],[13.72555,66.601944],[13.5275,66.606659],[13.414444000000115,66.55415],[13.234165,66.545547],[13.204721,66.554993],[13.173054,66.645554],[13.195833000000107,66.66305],[13.535831,66.63472],[13.228054,66.712494],[13.703609000000142,66.69055200000014],[13.892776,66.728607],[13.559166,66.707764],[13.55528,66.752487],[13.695722,66.760162],[13.503611,66.78526],[13.616665,66.806381],[13.990833,66.7836],[13.692221,66.82998700000013],[13.52638800000011,66.89444],[13.546944,66.926666],[13.956944,66.92027300000012],[14.122499,66.98027],[14.218054000000109,66.974442],[14.304165,67.05360400000012],[14.539165,67.04277],[14.55305,67.011108],[14.595554,67.029709],[14.563332000000116,67.05638],[14.26528,67.078598],[14.35055,67.15110800000014],[14.598610000000122,67.16221600000011],[14.755554,67.121658],[14.7125,67.163055],[14.513887000000125,67.1772160000001],[14.574165,67.194717],[14.92778,67.206375],[14.891388000000118,67.146103],[14.988054,67.08943],[15.00778,67.10749800000012],[14.93111,67.146103],[15.0158330000001,67.201385],[15.251665,67.18582],[15.378887,67.158875],[15.389166,67.114716],[15.495554,67.06528],[15.472221,67.139709],[15.382221,67.201385],[15.739721,67.17248],[15.69611,67.206665],[15.063889,67.248047],[15.14361,67.270264],[15.15194,67.308884],[14.85916500000013,67.273605],[14.668610000000115,67.207489],[14.54639,67.24693300000013],[14.361666,67.23389],[14.627499000000114,67.418045],[14.79222,67.41610700000011],[14.819721,67.405548],[14.804443,67.388611],[14.926888,67.422989],[14.727499,67.493332],[15.035831,67.570541],[15.157221,67.534988],[14.936277,67.470444],[15.10889,67.493042],[15.441944,67.472488],[15.64,67.26638800000012],[15.7016660000001,67.304993],[15.51667,67.425552],[15.541111,67.47694],[15.71,67.53776600000015],[15.899166,67.558884],[15.722776,67.558319],[15.531944,67.50499],[15.25194,67.523041],[15.17722,67.614716],[15.299166,67.71693],[15.651943,67.675278],[15.40167,67.733322],[15.581388000000116,67.735321],[15.821388,67.67139],[15.834999,67.689987],[15.781111,67.727768],[15.379166,67.797211],[15.00111,67.66305],[14.761665000000109,67.643051],[14.73055,67.6586],[14.787777,67.723053],[15.03611,67.740265],[15.033609,67.776108],[14.8425,67.766663],[14.758055,67.805267],[15.10417,67.849991],[14.849443,67.844437],[14.99222,67.893051],[15.26194,67.860825],[15.708611,67.94693],[15.87111,67.923325],[15.96111100000013,68.013046],[15.51949900000011,68.04649400000011],[15.40167,67.987213],[15.283054000000106,68.0355530000001],[15.486666,68.131378],[15.53648,68.09767],[15.726665000000137,68.140823],[15.74111,68.09416],[15.634777,68.085716],[15.617777,68.05638],[15.64361,68.04554700000011],[15.851944,68.091385],[15.972221000000104,68.24554400000011],[16.047497,68.231384],[16.103611,68.16611],[16.092499,68.068054],[16.204720000000123,67.969711],[16.21722,67.88804600000014],[16.495831,67.794159],[16.453331,67.847488],[16.256664,67.891937],[16.2075,68.001663],[16.348888,68.006653],[16.518887,67.95332],[16.53916500000014,67.959152],[16.499165,68.010818],[16.364719,68.034988],[16.461109,68.09527600000013],[16.66166,68.04554700000011],[16.715275,68.06666600000011],[16.513481,68.114861],[16.342499,68.071655],[16.307777,68.119995],[16.486942,68.18666100000011],[16.421108,68.209991],[16.174164,68.194153],[16.171944,68.220276],[16.3189890000001,68.234055],[16.103333000000134,68.27693],[16.189999000000114,68.316376],[16.511108,68.25499],[16.632774,68.17416400000013],[16.805832000000123,68.131378],[16.465553,68.29416],[16.21944,68.344986],[16.317219,68.3669430000001],[16.724442,68.39915500000012],[16.88028,68.356659],[16.834442000000134,68.31805400000013],[17.139999,68.3669430000001],[17.32472,68.255264],[17.314999,68.164444],[17.35472,68.17387400000013],[17.41333,68.244995],[17.221107,68.331375],[17.200832000000105,68.3669430000001],[17.246109,68.400269],[17.324444,68.400269],[17.574718000000132,68.357208],[17.367496,68.411377],[17.578609,68.424438],[17.552776,68.52388000000013],[17.05666,68.434158],[17.004444,68.44611],[17.095833,68.47665400000011],[16.991665,68.504166],[16.86861,68.452209],[16.510555,68.43443300000013],[16.459442000000138,68.508041],[16.633331,68.53637700000012],[16.559998,68.581375],[16.61972,68.63693],[16.964996,68.701385],[17.257500000000107,68.72055100000011],[17.463608,68.6636],[17.68027,68.654434],[17.236111,68.75471500000013],[17.457497000000103,68.81027200000011],[17.792500000000132,68.756943],[17.768330000000105,68.7855530000001],[17.47,68.830276],[17.715275,68.889999],[17.84111,68.87944],[17.718609,68.928604],[17.425831,68.904999],[17.637218,69.10554500000012],[18.152222,69.152222],[17.989441,69.23166],[17.996387,69.28027],[18.13194,69.339157],[18.173611,69.43222000000014],[18.256943,69.486374],[18.497219,69.37332200000014],[18.539444,69.299164],[18.679443,69.25999500000012],[18.707222,69.27943],[18.667221,69.31055],[18.771111000000133,69.3247070000001],[19.007221000000126,69.28305100000011],[18.94944,69.32499700000011],[18.637218,69.37332200000014],[18.453888,69.449158],[18.471664,69.514435],[18.85611,69.5502780000001],[18.91333,69.45887800000014],[19.01194,69.394989],[19.38139,69.313324],[19.171665000000132,69.248596],[19.44055200000014,69.22583],[19.45417,69.31166],[19.4175,69.34887700000012],[19.124443,69.381378],[18.995552,69.46138],[19.005833,69.508606],[19.09111,69.53416400000013],[19.26111,69.521103],[19.22666,69.564438],[19.014442,69.531937],[18.955555,69.55915800000014],[18.944164000000114,69.61305],[19.246666,69.77194],[19.758888,69.810272],[19.772778,69.780548],[19.676666,69.674164],[19.72361,69.655548],[19.714165,69.60333],[19.529163,69.39888],[19.679165,69.429443],[19.828053,69.714432],[19.93972,69.78694200000012],[20.046108000000117,69.79971],[20.157497,69.937485],[20.281944,69.973877],[20.424999,69.86943100000013],[20.317219000000136,69.673874],[20.280552000000114,69.47583],[20.19055200000014,69.40222],[19.989719,69.340546],[19.918331000000137,69.260269],[20.306664,69.41638200000011],[20.469719,69.576111],[20.8530540000001,69.489166],[20.481388,69.638885],[20.56583,69.761383],[20.794441,69.799438],[20.826111000000136,69.835541],[20.791386,69.873047],[21.089722,69.945267],[20.893608,69.849442],[21.044998,69.786102],[21.247498,69.998596],[21.30722,70.01971400000014],[21.555,69.98332],[21.601944000000117,69.95359800000011],[21.585,69.919708],[21.89111,69.82805],[21.981941,69.738327],[22.101665,69.74082900000013],[21.797222,70.0336],[22.021942,70.060272],[22.09666,70.113327],[21.734997,70.05554],[21.481388,70.09555100000011],[21.433331,70.141663],[21.20444,70.202209],[21.51639,70.303879],[21.58416,70.304153],[21.613609,70.265549],[21.73,70.23749],[21.806664000000126,70.236099],[22.00361,70.320831],[22.298611,70.283875],[22.27861,70.18138],[22.34417,70.14444],[22.550278,70.118881],[22.328331,70.17109700000015],[22.39889,70.254715],[22.964443,70.202774],[22.821388000000127,70.11137400000013],[22.444721,70.082214],[22.28777700000012,70.038879],[22.879444,70.103607],[22.991665,70.088333],[23.04555,70.022766],[23.16666400000014,69.957764],[23.31194,69.94082600000013],[23.536663,70.016937],[23.338886,70.030548],[23.17555,70.088882],[23.34367,70.11453200000011],[23.33111,70.21971100000013],[23.53083,70.241379],[23.41833,70.248322],[23.409164,70.27388],[23.66,70.41999800000013],[23.819164000000114,70.48637400000013],[23.978611,70.50943],[24.355831,70.453888],[24.155277000000126,70.568054],[24.363052,70.68859900000012],[24.646664,70.61416600000013],[24.729164000000136,70.621933],[24.718052,70.660828],[24.562222,70.738876],[24.24555,70.777222],[24.25611,70.831375],[24.38472,70.865829],[24.63472,70.77583],[24.57471800000013,70.934708],[24.659721,70.972488],[24.78388600000011,70.96638500000012],[24.879444,70.907471],[24.985275,70.911102],[24.970276,70.96637],[25.019444,70.9686],[25.216663,70.88194],[25.277775,70.802765],[25.34555,70.81416300000012],[25.391109,70.871384],[25.339165,70.948608],[25.35805,70.969437],[25.54139,70.90470900000014],[25.89889,70.89082],[25.927498,70.863052],[25.687222,70.77388],[25.63028,70.713043],[25.080555,70.506378],[25.259163,70.48860200000011],[25.274719,70.404709],[25.083332,70.35527],[25.136665,70.31832900000012],[25.13389,70.27943],[24.98,70.223328],[24.943333,70.14139],[24.942497,70.087769],[25.003052,70.059998],[25.045277,70.06359900000012],[25.03089,70.11499],[25.092499,70.147217],[25.111942000000113,70.07666],[25.264999,70.102219],[25.52944200000013,70.282486],[25.535,70.303604],[25.42388,70.322495],[25.45027,70.348877],[25.99916500000012,70.60304300000013],[26.2425,70.78944],[26.570274,70.938889],[26.693886,70.9525],[26.72639,70.921387],[26.690277,70.73582],[26.342777,70.640274],[26.653053,70.639435],[26.514164,70.431931],[26.504997,70.36305],[26.561108,70.34915200000012],[26.75805300000013,70.421661],[26.798332,70.4772190000001],[27.029442,70.474152],[26.97472,70.567764],[27.058331,70.61055],[27.26777600000014,70.57859800000011],[27.146385000000123,70.623322],[27.084442,70.6997070000001],[27.1325,70.738052],[27.254997000000113,70.749161],[27.31916400000011,70.82443],[27.565552,70.804718],[27.46,70.875824],[27.16333,70.89915500000012],[27.123055000000136,70.919708],[27.13611,70.95833],[27.258331000000112,71.02916],[27.475555,71.0038760000001],[27.531109,71.08194],[27.651665,71.113052],[27.869999,71.032211],[28.207775,71.079987],[28.34360900000013,71.003326],[28.550831,70.968323],[28.443607,70.860275],[28.25222,70.787491],[27.772221000000116,70.78887900000012],[28.13166400000011,70.73082000000011],[27.6475,70.60527],[27.836941,70.615265],[28.294998,70.712769],[28.28889,70.654709],[28.241943,70.61888],[27.851665000000136,70.478882],[27.901386,70.44194],[28.182220000000143,70.497772],[28.041111,70.447769],[28.11972,70.434708],[28.231941,70.50582900000012],[28.335552,70.50555400000013],[28.153889000000106,70.369431],[28.18583,70.15943900000013],[28.038887,70.06193500000012],[28.13361,70.082489],[28.23222,70.165543],[28.19083,70.28526],[28.224442,70.38916],[28.480274000000122,70.629715],[28.5275,70.726654],[28.742222,70.85527000000013],[28.853886,70.88055400000013],[29.253887,70.84193],[29.318886,70.79332],[29.346943000000124,70.664154],[29.677219,70.743042],[29.78167,70.731659],[29.776665,70.67416],[29.689442,70.613602],[29.846943,70.63916000000012],[29.95472,70.703888],[30.101944,70.709152],[30.34861,70.59637],[30.234997,70.5544430000001],[30.002499,70.5352630000001],[30.158333,70.512772],[30.405552,70.554153],[30.58416,70.54110700000012],[30.637775,70.490265],[30.825832000000105,70.43249500000012],[30.94388600000013,70.44971],[31.078053,70.289154],[30.523052000000117,70.240555],[30.361385,70.179718],[30.38472,70.14749100000012],[30.343609,70.12165800000014],[30.09444400000012,70.068604],[29.780552,70.06694],[28.748333,70.17667],[28.59471900000011,70.16388],[28.753887,70.16165200000012],[28.60972,70.112488],[28.62833,70.10472],[29.671665000000132,69.9675],[29.36555,69.85527000000013],[29.434719,69.85527000000013],[29.536388000000102,69.909439],[29.737499,69.90527],[29.771385,69.83194],[29.486664000000133,69.655548],[29.6647190000001,69.731659],[29.94833,69.753876],[30.18861,69.68721],[30.129038,69.761818],[30.190186,69.764458],[30.16013900000013,69.802933],[30.16694,69.87359600000013],[30.294167,69.880829],[30.400555,69.8274990000001],[30.4175,69.767776],[30.412498,69.689713],[30.337219,69.66832],[30.449444,69.683044],[30.469444,69.744431],[30.445,69.80832],[30.46833,69.814438],[30.854839,69.792313],[30.943333,69.690552],[30.936665,69.56582600000013],[30.796944,69.530273],[30.511387,69.54916400000012],[30.203609,69.663879],[30.083885,69.65639],[30.072777,69.631104],[30.142776,69.628326],[30.184998000000117,69.582764],[30.097775,69.503326],[29.665,69.373886],[29.309998,69.315277],[29.321663000000115,69.24554400000011],[29.25444,69.119995],[29.063332,69.0291600000001],[28.827499,69.0935970000001],[28.78167,69.149719],[28.82694,69.23805],[29.299721,69.48027000000013],[29.106667,69.703888],[28.379719,69.8274990000001],[28.32333,69.8875],[28.1525,69.915543],[27.998055,69.993607],[27.926556,70.087158],[27.59944200000012,70.072495],[27.299999,69.99055],[27.291943000000117,69.949997],[27.068886,69.9086],[26.80658,69.95206],[26.470554,69.93527200000011],[26.378052,69.854431],[26.15583,69.74249],[25.978333,69.701935],[25.94194,69.667221],[25.97416,69.635269],[25.957497,69.59027100000013],[25.82972,69.37805],[25.754997,69.34220900000014],[25.71333,69.255264],[25.76111,68.989166],[25.623333,68.884155],[25.43111,68.890549],[25.214443,68.81749],[25.15472,68.767776],[25.103333000000134,68.63472000000013],[24.93492,68.580811],[24.859203,68.587341],[24.75444,68.660263],[24.351387,68.710541],[23.97639,68.83249],[23.83,68.829987],[23.69278,68.71221900000012],[23.204166,68.62860100000012],[23.063889,68.695541],[22.802776000000105,68.691376],[22.549999,68.73778],[22.398331,68.7111],[22.346664,68.84471100000013],[21.68194,69.284714],[21.320831,69.326111],[21.0325,69.21304],[21.053608,69.140549],[21.113052,69.108047],[21.059444,69.034439],[20.738331,69.096375],[20.535275,69.05638],[20.096943,69.042221],[20.314720000000136,68.92833],[20.350277000000116,68.78665200000012],[20.202499000000103,68.662216],[19.956387,68.543884],[20.211109,68.48220800000013],[19.9377750000001,68.337494],[18.952221,68.487778],[18.611942,68.475266],[18.35805,68.539154],[18.09083,68.50776700000011],[18.04583,68.40943900000013],[18.155277,68.16611],[17.884163,67.945541],[17.273609,68.090546],[17.188332,68.030273],[16.726944000000117,67.899155],[16.57694,67.66554300000013],[16.508331000000112,67.60916],[16.3825,67.515549],[16.192219000000136,67.5],[16.085831,67.41165200000012],[16.36138,67.237778],[16.40583,67.16333],[16.353886,67.017776],[16.00999800000011,66.890823],[15.625832,66.60582],[15.362778,66.479996],[15.468054,66.28387],[15.025276,66.149994],[14.505,66.13249200000013],[14.634722,65.826935],[14.535,65.702774],[14.50055,65.585831],[14.493055,65.313599],[14.368889,65.24665800000014],[14.296438000000137,65.102127],[13.6625,64.58276400000011],[14.116388,64.470551],[14.154722,64.185822],[13.988333000000125,64.01805100000013],[13.23,64.093048],[12.93805,64.05332900000013],[12.68194,63.96721600000012],[12.139444,63.58416],[12.195000000000107,63.485275000000115],[11.936388,63.272217],[12.16861,63.01583],[12.028889,62.892494],[12.089443,62.74944],[12.047499,62.589996],[12.295832000000132,62.261665],[12.12444,61.72861],[12.40667,61.573326],[12.53,61.566109],[12.85611,61.36249500000013],[12.772221000000116,61.20083],[12.637825000000133,61.057541],[12.40778,61.05389],[12.209999,61.002495],[12.594444,60.51694],[12.60278,60.44277],[12.527777000000128,60.33416000000011],[12.498333,60.124718],[12.461943,60.063606],[12.14,59.88832900000011],[11.956944,59.896942],[11.815960000000132,59.8461],[11.891109,59.79472],[11.902777,59.707771],[11.666248,59.595482],[11.79833,59.245277],[11.754444,59.188049],[11.75111,59.090271],[11.621387,58.904716],[11.431944,58.88861],[11.434444,58.997215],[11.356110000000115,59.107216],[11.064165,59.11666100000013],[10.940832000000112,59.164993],[10.900276,59.142494],[10.764721,59.220276],[10.659166,59.36388],[10.652777,59.435],[10.69146,59.479263],[10.557777000000101,59.728607],[10.640276,59.85666700000013],[10.696943,59.79361000000011],[10.738646,59.80377],[10.748333,59.88694],[10.683054,59.90333],[10.471666,59.84333],[10.5191650000001,59.681107],[10.585278,59.653053],[10.611387,59.601387],[10.513054,59.52499],[10.4225,59.5236],[10.41472,59.66305],[10.380554,59.698883],[10.222221,59.727493],[10.374998000000119,59.662498],[10.39833,59.591385],[10.370554,59.523048],[10.23694,59.54805],[10.47472,59.424164],[10.516388,59.31082900000012],[10.45583,59.241943],[10.36389,59.26527],[10.23111,59.038605],[10.148888,59.019722000000115],[10.168888,59.04277],[10.13278,59.04417],[10.026667,59.00673700000011],[10.00611,58.96093],[9.877499,58.954994],[9.833887,58.96416],[9.847221,58.996109],[9.786943,59.03611],[9.614166,59.11777500000011],[9.540833,59.114716],[9.684166,59.03194400000012],[9.693054,58.98305],[9.409443000000124,58.84138500000011],[9.339998,58.750832],[9.191111,58.658333],[8.995832,58.59833],[8.831110000000137,58.480827],[8.712645,58.44193600000011],[8.691944,58.37722000000013],[8.51028,58.270271],[8.248055,58.201942],[8.211111,58.11555],[8.155188,58.140007],[8.127499,58.096939],[7.528333,58.00804900000014],[7.151388,58.04777500000011],[7.014444,57.98778],[6.78167,58.111382],[6.73139,58.116386],[6.728333000000134,58.064163],[6.597777000000121,58.070274],[6.558888,58.0975],[6.587222,58.15361],[6.767221,58.238327],[6.347587,58.270782],[6.011944,58.37971],[5.95694,58.471664],[5.757222,58.486664],[5.62583,58.55555],[5.457777,58.744438],[5.543333,58.87471800000014],[5.552777,59.032776],[5.709722,58.975273],[5.705829,58.9419630000001],[5.744419000000107,58.928204],[5.817237,58.928539],[5.856944,58.961662],[6.064444,58.85555],[6.168611000000112,58.832222000000115],[6.230277,58.838333],[6.056944000000101,58.890831],[6.11639,58.9566650000001],[6.623333,59.05167],[6.154722,58.99360700000011],[6.035277,58.898888],[5.963881,59.01294],[5.866388,59.07222000000013],[6.167777,59.254715],[6.326944,59.31055],[6.465278,59.317772000000105],[6.331944,59.32194],[6.12361,59.258049],[5.995555,59.32972000000012],[6.235555,59.504997],[6.46889,59.555275],[6.258055,59.582222],[6.153333,59.45472],[5.933888000000138,59.35],[5.876944,59.408882],[5.88972,59.44388600000013],[6.151388,59.476662],[5.80778,59.46916],[5.713055000000111,59.436661],[5.66,59.401382],[5.789444000000117,59.42889],[5.858333,59.381943],[5.856667,59.345551000000114],[5.687499,59.308609],[5.625278,59.32027],[5.598833,59.37672],[5.574833000000126,59.37954700000011],[5.572499000000107,59.32],[5.51111,59.274994],[5.38444,59.29194],[5.287222,59.346664],[5.203888,59.430832],[5.17805,59.508331],[5.48222,59.729164],[5.512777000000142,59.700829],[5.459735,59.519218],[5.525833,59.55333],[5.527778,59.629715],[5.562499000000116,59.675278],[5.677777000000106,59.66805],[5.890277,59.740555],[6.066667000000109,59.743889],[6.306389000000138,59.84333],[5.986944000000107,59.752777],[5.840555000000109,59.76694],[5.698333,59.832771],[5.735,59.909164],[5.973055,59.958885000000116],[5.95361,60.002777],[6.108333,60.106384000000105],[6.075,60.190552],[6.204721,60.29555],[6.504167,60.425827],[6.640555,60.410271],[6.53167,60.258888],[6.504444,60.113609],[6.521111,60.07666000000012],[6.533889,60.165833],[6.65472,60.3752750000001],[6.801389,60.469719],[7.108055,60.494164],[6.979444,60.505829],[7.002222000000131,60.58777600000013],[6.655277,60.42916],[6.568055,60.459717],[6.290555,60.385826],[6.22083,60.412498],[6.129722000000129,60.23972],[5.982222,60.236107],[5.899722000000111,60.151382],[5.878611,60.04166],[5.747222,59.98666400000014],[5.683888,60.036942],[5.646111,60.147217],[5.54417,60.150551],[5.633333,60.311943],[5.734444,60.38694],[5.624722,60.35833000000014],[5.411111,60.12971],[5.222514,60.203999],[5.314061,60.25949],[5.168056,60.27722],[5.14222100000012,60.34638200000012],[5.2525,60.42805],[5.229444,60.479996],[5.292777000000115,60.524994],[5.494444000000101,60.419441],[5.63361,60.415276],[5.7025,60.454437],[5.70083,60.69416],[5.627777,60.713051],[5.562499000000116,60.690277],[5.534444,60.63916000000012],[5.261389000000122,60.553055],[5.09389,60.646111],[5.127222,60.661385],[5.22805,60.618332],[5.130833,60.714996],[4.92889,60.798882],[4.997222,60.804718],[5.276388,60.72166],[5.340555,60.64054900000014],[5.433611,60.62722],[5.40583,60.701942000000145],[5.236388,60.773888],[5.365277,60.854996],[5.53361,60.872498],[5.460555,60.898048],[5.352777,60.875832],[5.258888000000127,60.81083],[5.063889000000131,60.831108],[4.983611,60.94666300000011],[5.007777,61.037216],[5.104166,61.073051],[5.419444000000112,61.02555100000012],[5.625278,61.089165],[5.92083,61.123055000000136],[6.372222,61.061943],[6.513055,61.096939],[6.590555000000109,61.151382],[6.823889000000122,61.140831000000105],[6.95361,61.08305400000012],[7.009166,61.015831],[7.128333000000111,60.92749800000013],[7.11389,60.860275],[7.162777,60.899437],[7.1675,60.944160000000124],[7.071944,60.974716],[7.00083,61.09610700000013],[7.313055000000134,61.123604],[7.428611,61.18138900000013],[7.357778,61.207222000000115],[7.30389,61.294441],[7.364166,61.364998],[7.574444,61.47943900000013],[7.309166,61.36249500000013],[7.273055,61.278885],[7.353889,61.189995],[7.278055,61.158607],[6.95555,61.109993],[6.906388000000106,61.16166],[6.564166,61.21833],[6.693333,61.340271],[6.70361,61.401382000000126],[6.591389,61.268608],[6.52041,61.246201],[6.538573,61.204319],[6.49833,61.130272],[6.34611,61.110275],[5.749166000000116,61.15277],[5.553333,61.13055400000013],[5.39722,61.068604],[5.05,61.158607],[5.084722,61.188889],[5.213055,61.161385],[5.245832,61.18027],[5.135833,61.2241590000001],[4.995,61.215828],[4.953333,61.2586060000001],[5.17083300000013,61.33361],[5.415,61.37082700000014],[5.634166,61.36055],[5.40667,61.376389],[5.04055,61.317772],[4.948889,61.412773],[5.183611,61.453331],[5.527499,61.428604],[5.804999,61.452774],[5.705,61.494995],[5.45167,61.45082900000011],[5.130833,61.526665],[5.142777000000137,61.551941],[5.273888,61.55777],[5.148611,61.593048],[5.336944,61.592773]]],[[[25.82805,71.098602],[26.028332,71.114441],[26.03221900000011,71.078888],[25.924164,71.051376],[25.939720000000136,71.00082],[26.21971900000011,71.0336],[26.071663,70.971664],[25.585278,70.922211],[25.416664,70.98220800000013],[25.559719,71.01221],[25.28611,71.02082800000011],[25.320831,71.07388300000014],[25.58343,71.092491],[25.784721,71.154709],[25.82805,71.098602]]]]}},{"type":"Feature","properties":{"FIPS":"NP","ISO2":"NP","ISO3":"NPL","UN":524,"NAME":"Nepal","AREA":14300,"POP2005":27093656,"REGION":142,"SUBREGION":34,"LON":83.939,"LAT":28.253},"geometry":{"type":"Polygon","coordinates":[[[82.066399,27.914154],[81.977768,27.917217],[81.88026,27.85722],[81.37442,28.166107],[81.29803,28.163883],[81.193588,28.366663],[80.938583,28.441105],[80.541367,28.685272],[80.472214,28.589996],[80.387497,28.624996],[80.246094,28.750832],[80.055817,28.836109],[80.069717,28.94944],[80.287766,29.205551],[80.306931,29.310555],[80.275818,29.322498],[80.23637,29.425274],[80.40694,29.596386],[80.376923,29.748604],[80.539703,29.846107],[80.598877,29.955273],[80.678864,29.970272],[80.943039,30.181107],[81.02536,30.204353],[81.119431,30.019444],[81.240814,30.013611],[81.247482,30.056385],[81.383881,30.178329],[81.421097,30.385273],[81.541931,30.330551],[81.557755,30.381939],[81.637207,30.424438],[81.80304,30.363609],[82.112762,30.335552],[82.177765,30.06361],[82.231094,30.075275],[82.420822,30.010277],[82.855255,29.668884],[82.923874,29.693886],[83.059982,29.623329],[83.195251,29.630829],[83.37915,29.466106],[83.38054,29.416386],[83.552765,29.185829],[83.671921,29.160275],[83.720535,29.228882],[83.969711,29.297218],[84.119141,29.259998],[84.185532,29.205551],[84.158325,29.13472],[84.239975,29.053886],[84.236923,28.918884],[84.395538,28.859161],[84.48109,28.73666],[84.636383,28.702774],[84.70665,28.660553],[84.7061,28.601387],[84.846649,28.544441],[84.95471,28.544163],[85.059982,28.641106],[85.18997,28.603329],[85.106644,28.309441],[85.376648,28.263611],[85.439423,28.301662],[85.721375,28.279163],[85.780823,28.206104],[85.88611,28.151661],[85.973038,27.915829],[86.014435,27.882774],[86.08942,27.890829],[86.137207,27.931938],[86.093597,28.086109],[86.183594,28.163883],[86.226379,28.006664],[86.444977,27.908051],[86.534988,27.954994],[86.57193,28.105831],[86.686371,28.112217],[86.758041,28.080276],[86.76416,28.026665],[86.947075,27.947636],[87.03943,27.960827],[87.192749,27.823051],[87.536652,27.840275],[87.720535,27.804996],[87.797211,27.837219],[87.868866,27.918884],[88.09166,27.89222],[88.189148,27.850552],[88.123871,27.617496],[88.048325,27.501942],[87.99304,27.114441],[88.118591,26.98444],[88.173035,26.87944],[88.19081,26.720551],[88.101929,26.530279],[88.095825,26.438885],[88.014709,26.364719],[87.890549,26.473328],[87.643044,26.392492],[87.476929,26.435551],[87.269714,26.375275],[87.169983,26.399998],[87.00444,26.534443],[86.73166,26.419994],[86.33415,26.607773],[86.20665,26.585552],[86.036377,26.66333],[85.855545,26.570274],[85.74054,26.653885],[85.726089,26.801662],[85.630264,26.867496],[85.32805,26.736107],[85.211655,26.766941],[84.85498,26.995548],[84.651382,27.041664],[84.686096,27.196941],[84.63443,27.314999],[84.29776,27.388329],[84.147217,27.511387],[84.040268,27.444717],[83.871368,27.440273],[83.858307,27.352224],[83.607758,27.469162],[83.41832,27.472771],[83.35887,27.356106],[83.291367,27.337776],[83.176376,27.448883],[82.7686,27.501663],[82.701096,27.711105],[82.434708,27.675552],[82.066399,27.914154]]]}},{"type":"Feature","properties":{"FIPS":"NR","ISO2":"NR","ISO3":"NRU","UN":520,"NAME":"Nauru","AREA":2,"POP2005":10111,"REGION":9,"SUBREGION":57,"LON":166.93,"LAT":-0.522},"geometry":{"type":"Polygon","coordinates":[[[166.929138,-0.552222],[166.904419,-0.528889],[166.93054,-0.493333],[166.958588,-0.506389],[166.929138,-0.552222]]]}},{"type":"Feature","properties":{"FIPS":"NS","ISO2":"SR","ISO3":"SUR","UN":740,"NAME":"Suriname","AREA":15600,"POP2005":452468,"REGION":19,"SUBREGION":5,"LON":-55.912,"LAT":4.127},"geometry":{"type":"Polygon","coordinates":[[[-55.127968,5.822173],[-54.864449,5.853055],[-54.897507,5.885833],[-55.006393,5.863333],[-55.162224,5.958055],[-55.044174,6.003055],[-54.204727,5.879722],[-54.021118,5.816111],[-53.99028,5.751389],[-54.047226,5.652499],[-54.062225,5.499722],[-54.448059,5.024166],[-54.476112,4.867777],[-54.477501,4.747777],[-54.420006,4.593333],[-54.452225,4.509166],[-54.440239,4.410649],[-54.365005,4.16361],[-54.358063,4.030277],[-53.984169,3.593889],[-54.001114,3.448333],[-54.206116,3.145278],[-54.160835,2.956388],[-54.196671,2.790833],[-54.420563,2.434722],[-54.499168,2.365],[-54.634445,2.319722],[-54.695282,2.331388],[-54.689171,2.453888],[-54.759727,2.471111],[-54.806396,2.435555],[-54.8675,2.440278],[-54.972229,2.554722],[-55.710281,2.399167],[-55.965836,2.532777],[-56.08445,2.3575],[-56.115837,2.249166],[-56.036392,2.208889],[-55.90139,2.045278],[-55.904167,1.893055],[-55.946671,1.853333],[-56.037224,1.836944],[-56.470634,1.944499],[-56.562782,2.023889],[-56.691872,2.02874],[-56.810562,2.193333],[-57.098061,2.749166],[-57.201393,2.821389],[-57.205002,3.0125],[-57.285278,3.143888],[-57.301392,3.3775],[-57.429451,3.347222],[-57.642227,3.356389],[-57.654449,3.518611],[-57.734726,3.610278],[-57.835838,3.665],[-57.876671,3.809166],[-58.047226,4.008333],[-58.071396,4.159166],[-57.953896,4.287777],[-57.838615,4.654722],[-57.92334,4.821944],[-57.841118,4.927777],[-57.688057,5.010278],[-57.413895,4.989721],[-57.327225,5.026111],[-57.287781,5.172222],[-57.228889,5.140833],[-57.188614,5.168611],[-57.235207,5.259945],[-57.279167,5.223332],[-57.324448,5.303611],[-57.248505,5.486111],[-57.168335,5.537222],[-57.131393,5.773333],[-57.068336,5.942222],[-56.972504,5.996944],[-56.476952,5.945],[-56.017784,5.818333],[-55.904724,5.774722],[-55.899559,5.671908],[-55.877502,5.724166],[-55.926674,5.882222],[-55.836395,5.956666],[-55.377228,5.959999],[-55.120003,5.883611],[-55.127968,5.822173]]]}},{"type":"Feature","properties":{"FIPS":"NU","ISO2":"NI","ISO3":"NIC","UN":558,"NAME":"Nicaragua","AREA":12140,"POP2005":5462539,"REGION":19,"SUBREGION":13,"LON":-85.034,"LAT":12.84},"geometry":{"type":"MultiPolygon","coordinates":[[[[-83.71251,11.868332],[-83.73195,11.903332],[-83.714447,11.98805],[-83.723068,11.913332],[-83.71251,11.868332]]],[[[-83.048889,12.14555],[-83.05751,12.18361],[-83.02139,12.184166],[-83.02223,12.17472],[-83.048889,12.14555]]],[[[-82.96474,12.286943],[-82.984726,12.299721],[-82.983337,12.313055],[-82.97139,12.312498000000119],[-82.96474,12.286943]]],[[[-82.75084,14.353888],[-82.78973,14.374998],[-82.733612,14.418888],[-82.72139,14.377222],[-82.75084,14.353888]]],[[[-83.239731,14.982498],[-83.13185,14.992979000000105],[-83.33778,14.910276],[-83.421402,14.80611],[-83.353897,14.732222],[-83.32417,14.746111],[-83.18695,14.323889],[-83.44446,13.921665],[-83.56418,13.346943],[-83.50084,12.89611],[-83.538895,12.592222],[-83.48001,12.414999],[-83.5,12.386389],[-83.571121,12.389999000000103],[-83.63362,12.480555],[-83.629234,12.556221000000106],[-83.56279,12.58083],[-83.537231,12.765833],[-83.604446,12.81944],[-83.645569,12.797499000000128],[-83.64696,12.75],[-83.612228,12.732222],[-83.59167,12.623333],[-83.6975099999999,12.552221],[-83.73584,12.48111],[-83.66972,12.278332],[-83.676956,12.050554],[-83.7225,12.068054000000132],[-83.76083,11.935833],[-83.83168,11.874722],[-83.77417,11.800833000000125],[-83.73807,11.801388],[-83.73112,11.861944000000108],[-83.6989,11.84639],[-83.648346,11.620277],[-83.762222,11.551109000000109],[-83.87167,11.337221],[-83.808899,11.073332],[-83.71722,10.943054],[-83.64612,10.926109],[-83.66724,10.7925],[-83.91556,10.708611],[-83.99972,10.769444],[-84.19064,10.782768],[-84.343063,10.953888],[-84.67445,11.07805],[-84.90279,10.940832000000112],[-85.526947,11.166111000000114],[-85.564178,11.209721000000116],[-85.61446,11.21361],[-85.692383,11.076061],[-85.77528,11.105276],[-85.92639,11.304998],[-86.50464,11.764307],[-86.776672,12.20417],[-87.08278,12.398611],[-87.441391,12.732777],[-87.6925,12.912222],[-87.58139,13.05333],[-87.507507,13.01916],[-87.45695,12.935833],[-87.37195,12.906111000000124],[-87.291672,12.918888],[-87.32695,12.926943],[-87.30139,12.986599],[-87.063614,13.00028],[-87.046112,12.979721],[-86.954727,13.037498],[-86.9064,13.24555400000014],[-86.827789,13.296665000000132],[-86.745285,13.260832],[-86.695007,13.29694400000011],[-86.75084,13.567778],[-86.754181,13.756388000000129],[-86.566391,13.77916],[-86.33029,13.760277],[-86.12195,14.029444],[-86.015839,14.065832000000114],[-86.0175,13.997221],[-85.79834,13.837776],[-85.73231,13.82923],[-85.73056,13.9625],[-85.436951,14.122499],[-85.32973,14.271387],[-85.158615,14.333332],[-85.18056,14.426666],[-85.14639,14.489166],[-85.03241,14.573465],[-85.030014,14.669998],[-84.906677,14.808611],[-84.810562,14.824999000000103],[-84.688614,14.678333],[-84.482788,14.617777],[-84.19667,14.716389000000104],[-83.84361,14.785],[-83.569458,14.915277],[-83.48584,15.006109],[-83.38417,15.022221],[-83.239731,14.982498]]]]}},{"type":"Feature","properties":{"FIPS":"NZ","ISO2":"NZ","ISO3":"NZL","UN":554,"NAME":"New Zealand","AREA":26799,"POP2005":4097112,"REGION":9,"SUBREGION":53,"LON":172.235,"LAT":-42.634},"geometry":{"type":"MultiPolygon","coordinates":[[[[169.185516,-52.57695],[169.02832,-52.55917],[169.00082,-52.507225],[169.205231,-52.44138],[169.23913600000014,-52.550278],[169.185516,-52.57695]]],[[[166.09661900000015,-50.92306],[165.973572,-50.905273],[165.923584,-50.856392],[166.107727,-50.85556],[166.22052,-50.8875],[166.09661900000015,-50.92306]]],[[[165.99554,-50.60364],[165.97912600000018,-50.60834],[165.969421,-50.605],[166.003601,-50.595001],[165.99554,-50.60364]]],[[[166.250824,-50.82695],[166.225525,-50.85778],[165.8955380000001,-50.85055],[165.886932,-50.80444],[165.90802,-50.76278],[166.08773800000017,-50.669167],[166.10831,-50.53667],[166.199402,-50.527222],[166.291931,-50.56834],[166.14136,-50.69805],[166.229401,-50.754173],[166.250824,-50.82695]]],[[[166.321899,-50.50695],[166.309143,-50.507225],[166.284973,-50.50528],[166.3319090000001,-50.49472],[166.321899,-50.50695]]],[[[178.8163760000001,-49.72388],[178.72689800000012,-49.715836],[178.71524,-49.68527],[178.81497200000013,-49.61362],[178.841064,-49.633614],[178.8163760000001,-49.72388]]],[[[166.63217,-48.04084],[166.61969,-48.056664],[166.563873,-48.039444],[166.622192,-47.99555],[166.63217,-48.04084]]],[[[179.076904,-47.68059],[179.06109600000013,-47.685829],[179.049133,-47.67556],[179.06970200000012,-47.661667],[179.076904,-47.68059]]],[[[167.434967,-47.24861],[167.426636,-47.2225],[167.48691,-47.214165],[167.468842,-47.23527],[167.434967,-47.24861]]],[[[167.685791,-46.79667],[167.6586,-46.783615],[167.6636,-46.76],[167.7188420000001,-46.771385],[167.685791,-46.79667]]],[[[168.191925,-46.905273],[168.048309,-46.93583],[168.25943,-47.00333],[168.156372,-47.115005],[168.004974,-47.122223],[167.891083,-47.19111],[167.78497300000015,-47.17028],[167.76608,-47.13861],[167.61441000000013,-47.223053],[167.72219800000016,-47.20917],[167.70108,-47.24944],[167.519135,-47.27417],[167.53164700000013,-47.19778],[167.8107910000001,-46.91639],[167.75665300000014,-46.8125],[167.775818,-46.700279],[167.921906,-46.68222],[167.99551,-46.715279],[168.054688,-46.791946],[168.18054,-46.86362],[168.191925,-46.905273]]],[[[166.71637,-45.74167],[166.65246600000012,-45.74583],[166.50497400000015,-45.71916],[166.5685730000001,-45.641388],[166.71078,-45.61528],[166.753326,-45.70194],[166.71637,-45.74167]]],[[[167.00997900000016,-45.31028],[166.89136,-45.25028],[166.96219,-45.15333],[167.02969,-45.29639],[167.00997900000016,-45.31028]]],[[[-176.16223,-44.32472],[-176.22168,-44.34111],[-176.23584,-44.234734],[-176.161682,-44.22278],[-176.11581,-44.26334],[-176.16223,-44.32472]]],[[[-176.45224,-43.736122],[-176.2692,-43.763893],[-176.31366,-43.796394],[-176.42447,-43.75611],[-176.53555,-43.76751],[-176.45502,-43.9525],[-176.35474,-44.012512],[-176.377228,-44.056114],[-176.512268,-44.12055],[-176.60556,-44.119171],[-176.65506,-44.01198],[-176.52338,-43.93611],[-176.53421,-43.87028],[-176.63141,-43.80167],[-176.829163,-43.84306],[-176.84805,-43.812225],[-176.5578,-43.717506],[-176.45224,-43.736122]]],[[[174.399414,-41.115837],[174.37439,-41.20306],[174.193298,-41.232498],[174.34442100000012,-41.18306],[174.37188700000013,-41.148613],[174.322754,-41.1325],[174.399414,-41.115837]]],[[[173.80581700000016,-40.92778],[173.777466,-40.923332],[173.82330300000012,-40.7625],[173.963867,-40.71056],[173.92581200000015,-40.86306],[173.80581700000016,-40.92778]]],[[[172.8613590000001,-40.50778],[172.99133300000017,-40.529167],[172.73162800000011,-40.51972],[172.65692,-40.65333],[172.70135500000015,-40.74834],[172.855804,-40.85306],[172.935242,-40.796669],[173.01331,-40.796669],[173.05108600000014,-40.86945],[173.05969200000013,-40.971939],[173.03164700000013,-41.0275],[173.075806,-41.291115],[173.10553,-41.313332],[173.207184,-41.30861],[173.59802200000013,-41.053612],[173.72775300000012,-41.056389],[173.738281,-41.01861],[173.67608600000017,-41.03639],[173.69662500000015,-41.000282],[173.98468000000014,-40.89695],[174.02942,-40.94361],[173.77859,-41.015556],[173.77859,-41.11445],[173.8366390000001,-41.055],[173.953033,-41.060555],[173.848846,-41.144165],[173.82053,-41.24583],[173.76331,-41.2675],[173.77582,-41.28973],[174.12884500000018,-41.187218],[173.893585,-41.19277],[173.89777,-41.133614],[174.03274,-40.99972],[174.24633800000012,-41.04472],[174.32385,-41.003334],[174.20996100000013,-41.197495],[174.026642,-41.23611],[174.20636000000013,-41.26945],[174.326904,-41.22277],[174.249115,-41.3225],[174.15524300000016,-41.305],[174.11163,-41.33666],[174.04443400000014,-41.4425],[174.08414,-41.526108],[174.10831,-41.50917],[174.176086,-41.57861],[174.157196,-41.623329],[174.19302400000015,-41.685555],[174.289154,-41.748337],[174.212189,-41.86528],[173.97967,-42.06111],[173.928314,-42.2025],[173.558594,-42.487778],[173.285522,-42.95805],[173.099396,-43.06139],[172.83801,-43.14806],[172.7608,-43.239166],[172.726593,-43.423355],[172.77582,-43.61222],[173.05969200000013,-43.65305],[173.11441000000013,-43.741386],[173.091644,-43.85639],[173.00224300000013,-43.868999],[172.93997200000013,-43.75611],[172.917572,-43.86922],[172.938248,-43.89622],[172.870789,-43.904442],[172.642761,-43.772224],[172.495239,-43.72388],[172.42499,-43.733612],[172.384979,-43.77861],[172.386932,-43.86333],[172.189697,-43.90916],[171.65469,-44.122498],[171.293579,-44.343613],[171.26998900000012,-44.451942],[171.196075,-44.56028],[171.195801,-44.927498],[170.96191,-45.16917],[170.87357,-45.35805],[170.859955,-45.487503],[170.616913,-45.839439],[170.554413,-45.888054],[170.60858,-45.888054],[170.773315,-45.78278],[170.783051,-45.878334],[170.342468,-45.97361],[170.26361,-46.05194],[170.22662400000013,-46.165001],[169.863586,-46.37138],[169.85080000000016,-46.46472],[169.701904,-46.55805],[169.266388,-46.656387],[169.107727,-46.669167],[169.0672,-46.635],[169.06192,-46.675003],[169.00803,-46.680832],[168.8833310000001,-46.667778],[168.83578,-46.560555],[168.49273700000015,-46.61333],[168.43663000000015,-46.599667],[168.4422,-46.575],[168.56692,-46.58666],[168.391357,-46.54],[168.35358,-46.54778],[168.3514100000001,-46.60316],[168.268311,-46.52917],[168.339417,-46.53917],[168.392487,-46.492226],[168.368835,-46.416107],[168.25027,-46.40083],[168.174988,-46.34028],[167.83218,-46.398613],[167.753876,-46.333885],[167.781372,-46.29084],[167.701904,-46.209442],[167.54636,-46.15417],[167.45190400000013,-46.154716],[167.356628,-46.25445],[167.28027,-46.273056],[166.705231,-46.20111],[166.67026,-46.15361],[166.738861,-46.119164],[166.829956,-46.00389],[166.94693,-45.94527],[166.82803300000012,-45.984444],[166.740982,-46.06606],[166.67053,-46.08722],[166.61358600000017,-46.08639],[166.66165200000012,-45.991943],[166.62579300000016,-45.967216],[166.48440600000015,-46.01445],[166.47689800000012,-45.80972],[166.881348,-45.78],[166.98718,-45.70972],[166.80942,-45.72138],[166.775818,-45.662773],[166.81671100000017,-45.60561],[167.0000000000001,-45.57695],[167.041351,-45.5014],[166.704407,-45.57445],[166.82162500000015,-45.32056],[166.88079800000014,-45.27917],[167.211914,-45.475273],[167.05108600000017,-45.333328],[167.163574,-45.302834],[167.260254,-45.33583],[167.307739,-45.31861],[167.19464,-45.27145],[167.089645,-45.26878],[167.00219700000014,-45.20111],[166.996918,-45.14584],[167.320801,-44.87138],[167.40431200000012,-44.8635],[167.459686,-44.99472],[167.507202,-45.0014],[167.45303300000012,-44.788895],[167.743011,-44.611671],[167.94998,-44.40361],[168.141663,-44.30805],[168.1241000000001,-44.251404],[168.28830000000013,-44.172775],[168.37497,-44.037781],[168.85858,-43.97666],[169.2244,-43.743332],[169.721619,-43.57333],[169.871063,-43.40666],[170.0285950000001,-43.34778],[170.2883,-43.10778],[170.79412800000011,-42.90139],[171.149719,-42.56361],[171.30441,-42.296669],[171.343842,-42.110832],[171.51080300000012,-41.76445],[171.65082,-41.761391],[171.79053,-41.69639],[171.88665800000012,-41.63],[172.064972,-41.40361],[172.122192,-41.27778],[172.10886,-40.885559],[172.4783,-40.61389],[172.523483,-40.59795],[172.53415,-40.63167],[172.596344,-40.601395],[172.631622,-40.56],[172.581848,-40.55167],[172.62717,-40.51195],[172.8613590000001,-40.50778]]],[[[177.00137,-37.87055],[176.97467,-37.87611],[176.964691,-37.86362],[176.97995,-37.848053],[177.00137,-37.87055]]],[[[176.43856800000015,-37.650276],[176.429138,-37.645],[176.44693,-37.60472],[176.459412,-37.622772],[176.43856800000015,-37.650276]]],[[[175.16608,-36.83388],[175.08886700000016,-36.833611],[175.002472,-36.79278],[175.01553300000012,-36.76584],[175.193848,-36.72749],[175.212189,-36.761116],[175.16608,-36.83388]]],[[[175.82717900000011,-36.630829],[175.79636,-36.627495],[175.7702640000001,-36.58083],[175.80246,-36.57611],[175.82717900000011,-36.630829]]],[[[174.86386100000016,-36.45972],[174.84412,-36.4575],[174.86996,-36.388893],[174.9071960000001,-36.45167],[174.86386100000016,-36.45972]]],[[[175.14941,-36.21333],[175.114685,-36.231667],[175.07968100000016,-36.20084],[175.121887,-36.17055],[175.14941,-36.21333]]],[[[175.54470800000013,-36.347778],[175.467194,-36.32278],[175.35886,-36.229439],[175.37188700000013,-36.070557],[175.410522,-36.06611],[175.52942,-36.178612],[175.54470800000013,-36.347778]]],[[[173.038879,-34.43694],[173.039978,-34.52222],[173.0074770000001,-34.526947],[172.96191,-34.465279],[172.908325,-34.544167],[173.053314,-34.66555],[173.133026,-34.828056],[173.24273700000012,-34.884727],[173.26913500000012,-35.019722],[173.358856,-34.98111],[173.40082,-34.863335],[173.450806,-34.80778],[173.49911,-34.871109],[173.39971900000012,-34.906387],[173.467468,-34.988892],[173.54166,-34.988609],[173.58941700000014,-34.928612],[174.10107400000015,-35.12111],[174.098297,-35.161667],[174.021912,-35.16416],[174.00803,-35.215004],[174.10052,-35.228882],[174.14358500000014,-35.32861],[174.21801800000014,-35.32223],[174.319977,-35.23277],[174.57581,-35.60194],[174.563293,-35.65166],[174.4735720000001,-35.64639],[174.523041,-35.729439],[174.58386200000018,-35.764725],[174.60245,-35.844444],[174.560791,-35.847778],[174.491058,-35.769447],[174.36191,-35.72333],[174.346924,-35.833061],[174.38134800000012,-35.851112],[174.398865,-35.821388],[174.4863590000001,-35.824722],[174.52554,-35.849167],[174.487183,-35.915001],[174.498016,-35.99416],[174.612732,-36.04223],[174.61636,-36.10086],[174.7811,-36.266945],[174.812744,-36.33916],[174.76831100000015,-36.34639],[174.707733,-36.54167],[174.80832,-36.80527],[174.8544,-36.847778],[174.89664,-36.878334],[175.055542,-36.88028],[175.161652,-36.955559],[175.221069,-36.93777],[175.27832000000012,-36.96528],[175.32886,-37.026947],[175.3191220000001,-37.1525],[175.3732910000001,-37.21666],[175.57913,-37.24445],[175.589142,-37.16945],[175.54248,-36.99445],[175.43524200000013,-36.86694],[175.50943,-36.776108],[175.486359,-36.679726],[175.463593,-36.62138],[175.361633,-36.55639],[175.35358,-36.481941],[175.53802,-36.51472],[175.631073,-36.710556],[175.763611,-36.713615],[175.84079,-36.754173],[175.733582,-36.805832],[175.707458,-36.869995],[175.743835,-36.89389],[175.756378,-36.83],[175.84552,-36.83972],[175.91830400000015,-37.0675],[175.88721,-37.24416],[175.93081700000016,-37.2625],[175.976074,-37.453056],[176.16943400000014,-37.62028],[176.066925,-37.59639],[176.095245,-37.57611],[176.018768,-37.52606],[175.94635000000014,-37.523056],[175.994415,-37.638893],[176.242188,-37.709442],[176.267487,-37.676392],[176.521637,-37.76945],[176.67108,-37.862503],[177.082733,-37.967216],[177.15942400000017,-38.01334],[177.473572,-37.9625],[177.59912,-37.878052],[177.732178,-37.682503],[177.875793,-37.65139],[178.006653,-37.588333],[178.01800500000013,-37.550831],[178.306915,-37.56806],[178.349701,-37.62694],[178.49719200000015,-37.64667],[178.5655210000001,-37.71333],[178.34747300000015,-38.011116],[178.377747,-38.09861],[178.31802400000012,-38.25556],[178.300537,-38.53639],[178.06829800000014,-38.717773],[177.92886,-38.722221],[177.89386000000013,-39.064777],[177.99939000000015,-39.12749],[177.90997300000015,-39.25695],[177.86191,-39.28583],[177.821198,-39.10128],[177.62884500000015,-39.071114],[177.426086,-39.064163],[177.05496200000016,-39.204445],[176.897766,-39.43805],[176.94662500000015,-39.664444],[177.11911,-39.676109],[177.02359,-39.768059],[176.83414,-40.181671],[176.3494,-40.69361],[176.23913600000014,-40.90889],[176.14221,-40.975273],[176.080811,-41.12917],[175.98468000000014,-41.23138],[175.323029,-41.61445],[175.21692,-41.612778],[175.18609600000013,-41.425],[175.05304,-41.37861],[174.91857900000014,-41.44805],[174.866058,-41.425],[174.88748,-41.224442],[174.827179,-41.21889],[174.778046,-41.25584],[174.771088,-41.278053],[174.83331,-41.301109],[174.80719,-41.336388],[174.67190600000015,-41.33833],[174.59192,-41.27861],[174.613007,-41.23222],[174.69470200000012,-41.213615],[174.844421,-41.04167],[174.9321900000001,-40.987503],[175.1277470000001,-40.713615],[175.238007,-40.32973],[175.15554800000018,-40.09583],[174.938873,-39.902222],[174.54941,-39.82223],[174.308868,-39.61028],[173.96301,-39.541672],[173.7952580000001,-39.42194],[173.75192300000015,-39.288612],[173.785248,-39.184998],[173.829956,-39.145836],[174.20914,-38.97722],[174.392761,-38.974442],[174.594421,-38.81583],[174.7244,-38.185829],[174.9402470000001,-38.101112],[174.8771670000001,-38.064163],[174.89358500000014,-37.96999],[174.868286,-37.94361],[174.82275400000015,-37.99972],[174.78637700000013,-37.988335],[174.79108,-37.85278],[174.87274200000013,-37.806107],[174.975525,-37.806389],[174.974976,-37.75],[174.848297,-37.769722],[174.717468,-37.425],[174.719116,-37.393616],[174.840515,-37.29139],[174.717194,-37.36528],[174.549713,-37.07362],[174.66137700000013,-37.065552],[174.64609,-37.100838],[174.70386,-37.19778],[174.733856,-37.19611],[174.71664,-37.15417],[174.87912,-37.08889],[174.88748,-37.05917],[174.795532,-37.023056],[174.83273,-36.94861],[174.7702640000001,-36.936661],[174.659698,-36.94749],[174.600525,-37.02222],[174.50247200000013,-37.03751],[174.406097,-36.76501],[174.187744,-36.49695],[174.189972,-36.43139],[174.251923,-36.44361],[174.37073,-36.6325],[174.42248,-36.66722],[174.45303300000012,-36.651108],[174.465515,-36.53222],[174.422211,-36.366112],[174.37717,-36.401665],[174.303864,-36.395279],[174.268585,-36.34222],[174.29999,-36.314163],[174.421249,-36.310612],[174.518311,-36.258057],[174.505249,-36.23138],[174.336365,-36.298889],[174.305237,-36.287506],[174.4422,-36.16972],[174.396088,-36.144447],[174.33746,-36.23277],[174.282745,-36.12111],[174.19525,-36.13111],[174.1857910000001,-36.171944],[174.31247,-36.236664],[174.25943,-36.273056],[174.065796,-36.16833],[173.99106,-36.10944],[173.913879,-35.86972],[173.921356,-36.003059],[173.98773,-36.13417],[174.18054,-36.2825],[174.194702,-36.37527],[174.080811,-36.40944],[174.02054,-36.273888],[173.82608,-36.032501],[173.398865,-35.573891],[173.44662500000015,-35.440277],[173.54025300000012,-35.430832],[173.655548,-35.313332],[173.564148,-35.27805],[173.56692,-35.36972],[173.410248,-35.388893],[173.38052400000015,-35.528053],[173.08746,-35.211388],[173.187469,-35.14333],[173.18942300000015,-35.012779],[172.722473,-34.49528],[172.73913600000014,-34.435555],[172.911926,-34.414719],[173.038879,-34.43694]]],[[[172.157196,-34.173889],[172.133331,-34.15333],[172.18692,-34.1525],[172.181915,-34.15778],[172.157196,-34.173889]]],[[[-178.60529,-30.581116],[-178.60779,-30.587784],[-178.613068,-30.587223],[-178.61252,-30.574448],[-178.60529,-30.581116]]],[[[-177.84613,-29.27861],[-177.92361,-29.284725],[-177.95248,-29.226112],[-177.86914,-29.2425],[-177.84613,-29.27861]]]]}},{"type":"Feature","properties":{"FIPS":"PA","ISO2":"PY","ISO3":"PRY","UN":600,"NAME":"Paraguay","AREA":39730,"POP2005":5904342,"REGION":19,"SUBREGION":5,"LON":-58.391,"LAT":-23.236},"geometry":{"type":"Polygon","coordinates":[[[-54.330559,-24.679449],[-54.452507,-25.011112],[-54.45639,-25.087223],[-54.423058,-25.143059],[-54.616951,-25.438057],[-54.604446,-25.943611],[-54.665001,-25.982502],[-54.661667,-26.158337],[-54.633339,-26.200279],[-54.667503,-26.23888],[-54.69278,-26.428337],[-54.83667,-26.659447],[-54.930557,-26.688335],[-54.969452,-26.788059],[-55.046112,-26.797779],[-55.133614,-26.885834],[-55.421394,-26.990002],[-55.547501,-27.112225],[-55.59639,-27.338058],[-55.736115,-27.439445],[-55.842506,-27.40778],[-55.898338,-27.32917],[-56.137779,-27.308891],[-56.268059,-27.387501],[-56.270836,-27.461391],[-56.378059,-27.588337],[-56.550003,-27.452503],[-56.673058,-27.461391],[-56.736946,-27.506947],[-56.908615,-27.417778],[-57.071671,-27.491947],[-57.129448,-27.489723],[-57.626396,-27.369167],[-57.791389,-27.292225],[-58.156395,-27.26889],[-58.604622,-27.316921],[-58.598892,-27.245003],[-58.655731,-27.191612],[-58.652779,-27.158337],[-58.564171,-27.1175],[-58.469543,-26.981468],[-58.316673,-26.87278],[-58.181671,-26.656113],[-58.168335,-26.597225],[-58.21917,-26.535004],[-58.211395,-26.426392],[-58.131393,-26.257225],[-58.14473,-26.206947],[-57.855835,-26.001945],[-57.903618,-25.958336],[-57.803612,-25.834724],[-57.810982,-25.77314],[-57.576668,-25.549446],[-57.55584,-25.438057],[-57.643333,-25.374725],[-57.756111,-25.176945],[-57.871117,-25.08778],[-58.183891,-24.973892],[-58.348335,-24.974724],[-58.450562,-24.856945],[-58.803337,-24.784168],[-58.989723,-24.654724],[-59.33889,-24.488892],[-59.472778,-24.353058],[-60.038063,-24.009724],[-60.286392,-24.037502],[-60.573334,-23.951115],[-60.613892,-23.894447],[-61.007782,-23.813335],[-61.115562,-23.603615],[-61.450836,-23.418056],[-61.598618,-23.29417],[-61.683891,-23.282223],[-61.739723,-23.243614],[-61.759445,-23.169724],[-61.986389,-23.010281],[-62.029449,-22.891945],[-62.154724,-22.756111],[-62.246948,-22.528893],[-62.521393,-22.370834],[-62.643768,-22.238903],[-62.258896,-21.056946],[-62.269447,-20.562225],[-61.913071,-20.080009],[-61.7425,-19.645],[-60.613335,-19.459167],[-59.972778,-19.296947],[-59.09584,-19.348892],[-58.15139,-19.828056],[-58.130562,-19.992226],[-58.155838,-20.228615],[-58.008896,-20.495834],[-57.978615,-20.711113],[-57.92028,-20.668335],[-57.857224,-20.73917],[-57.814445,-20.971947],[-57.850281,-21.336945],[-57.953896,-21.510834],[-57.921394,-21.662224],[-57.985107,-22.091827],[-57.827507,-22.145],[-57.767784,-22.113056],[-57.640007,-22.121113],[-57.595001,-22.182224],[-57.371117,-22.218056],[-57.153336,-22.203613],[-56.877502,-22.27417],[-56.70723,-22.215],[-56.634171,-22.251945],[-56.508339,-22.09639],[-56.403061,-22.065556],[-56.357506,-22.163059],[-56.205833,-22.273613],[-55.849724,-22.288891],[-55.743057,-22.399723],[-55.712784,-22.570004],[-55.609451,-22.633892],[-55.646118,-22.852501],[-55.549171,-23.137501],[-55.550285,-23.319168],[-55.502426,-23.379723],[-55.536118,-23.464169],[-55.521667,-23.602779],[-55.441673,-23.700836],[-55.411667,-23.95639],[-55.188614,-24.020279],[-55.031395,-23.994446],[-54.627785,-23.80389],[-54.407227,-23.916668],[-54.243896,-24.053608],[-54.337784,-24.14389],[-54.248894,-24.353615],[-54.33139,-24.492779],[-54.330559,-24.679449]]]}},{"type":"Feature","properties":{"FIPS":"PE","ISO2":"PE","ISO3":"PER","UN":604,"NAME":"Peru","AREA":128000,"POP2005":27274266,"REGION":19,"SUBREGION":5,"LON":-75.552,"LAT":-9.326},"geometry":{"type":"Polygon","coordinates":[[[-78.70903,-4.584787],[-78.665558,-4.554445],[-78.650284,-4.473612],[-78.67207,-4.307094],[-78.563614,-4.095556],[-78.531677,-3.912778],[-78.396393,-3.738611],[-78.337509,-3.422778],[-78.266403,-3.417778],[-78.255844,-3.516945],[-78.231949,-3.518611],[-78.1689,-3.45],[-78.217789,-3.369167],[-78.205841,-3.339167],[-77.857224,-2.984445],[-76.660629,-2.572135],[-76.07417,-2.131111],[-75.559174,-1.534167],[-75.402237,-0.922778],[-75.325012,-0.981111],[-75.21608,-0.965336],[-75.292786,-0.730556],[-75.246124,-0.554167],[-75.40945,-0.425833],[-75.485565,-0.226667],[-75.625565,-0.175278],[-75.619736,-0.106667],[-75.4189,-0.165],[-75.24501,-0.119167],[-75.191956,-0.031389],[-74.866394,-0.232222],[-74.767792,-0.211667],[-74.70668,-0.367222],[-74.638336,-0.409722],[-74.607513,-0.383611],[-74.376114,-0.568056],[-74.316116,-0.781667],[-74.247787,-0.853611],[-74.282791,-0.930278],[-74.227234,-1.027778],[-74.077789,-1.072778],[-73.868057,-1.208611],[-73.837784,-1.270278],[-73.65834,-1.281667],[-73.556396,-1.370833],[-73.542786,-1.468056],[-73.443344,-1.605834],[-73.486954,-1.654444],[-73.49057,-1.766945],[-73.300003,-1.875834],[-73.199173,-1.803056],[-73.132782,-1.849167],[-73.087784,-1.929167],[-73.05751,-2.14],[-73.088348,-2.223611],[-73.133621,-2.243333],[-73.11223,-2.338056],[-73.003067,-2.410556],[-72.935562,-2.395556],[-72.881958,-2.506389],[-72.595566,-2.407222],[-72.22751,-2.498889],[-71.986954,-2.3675],[-71.888336,-2.381667],[-71.813065,-2.235278],[-71.698059,-2.146945],[-71.669174,-2.229167],[-71.515015,-2.235278],[-71.406113,-2.284722],[-71.357788,-2.3525],[-71.188065,-2.360556],[-70.861115,-2.223056],[-70.659729,-2.3525],[-70.577515,-2.487223],[-70.386124,-2.515833],[-70.297348,-2.499568],[-70.218613,-2.568056],[-70.188904,-2.651389],[-70.116119,-2.704167],[-70.091675,-2.691112],[-70.067505,-2.755556],[-70.724167,-3.779723],[-70.516113,-3.861111],[-70.371948,-3.788333],[-70.323059,-3.799167],[-70.180847,-3.938334],[-70.126404,-4.06889],[-69.95668,-4.209445],[-69.974731,-4.306945],[-70.018616,-4.339168],[-70.201569,-4.332128],[-70.306671,-4.244722],[-70.323898,-4.136667],[-70.433334,-4.131667],[-70.584167,-4.195556],[-70.628891,-4.156667],[-70.76584,-4.146389],[-70.834732,-4.187778],[-70.950287,-4.38139],[-71.16945,-4.357779],[-71.64473,-4.509167],[-71.747192,-4.490353],[-71.902481,-4.518188],[-72.235001,-4.753334],[-72.37529,-4.784445],[-72.399734,-4.871112],[-72.476959,-4.941112],[-72.851959,-5.124722],[-72.898621,-5.172778],[-72.962784,-5.458056],[-72.942505,-5.543334],[-72.963348,-5.654167],[-73.13028,-5.87639],[-73.229736,-6.093612],[-73.12001,-6.373889],[-73.123901,-6.447223],[-73.191681,-6.552778],[-73.353058,-6.576945],[-73.744171,-6.876945],[-73.799728,-7.080833],[-73.70279,-7.306945],[-73.931122,-7.359167],[-73.954727,-7.52389],[-74.01056,-7.541389],[-73.828903,-7.728333],[-73.703613,-7.778611],[-73.713898,-7.8725],[-73.785278,-7.875278],[-73.771957,-7.948056],[-73.645004,-8.02389],[-73.533066,-8.355556],[-73.404724,-8.450556],[-73.343338,-8.606945],[-73.273346,-8.675835],[-73.169724,-8.710279],[-73.06279,-8.899168],[-72.964172,-8.983334],[-72.9664,-9.143057],[-73.20529,-9.407223],[-72.730011,-9.413057],[-72.305557,-9.530001],[-72.251953,-9.659723],[-72.271118,-9.746668],[-72.180008,-9.80139],[-72.150848,-9.882778],[-72.185837,-10.003889],[-71.298889,-9.996389],[-71.184448,-9.936945],[-71.136124,-9.860834],[-71.002228,-9.814724],[-70.881958,-9.67],[-70.592789,-9.443611],[-70.514664,-9.428001],[-70.60759,-9.575665],[-70.581116,-9.644445],[-70.62807,-9.835556],[-70.631393,-11.009167],[-70.532791,-10.932222],[-70.431396,-11.032223],[-70.328903,-11.069168],[-70.154175,-11.030001],[-69.92917,-10.914446],[-69.78056,-10.923334],[-69.730835,-10.965279],[-69.568436,-10.951092],[-68.92807,-11.993057],[-68.673904,-12.50115],[-68.815567,-12.733057],[-68.881668,-12.75889],[-68.974457,-12.869722],[-68.960556,-13.500557],[-69.06279,-13.707779],[-68.97751,-13.961668],[-68.891113,-14.043612],[-68.853058,-14.199167],[-68.999176,-14.243334],[-68.9814,-14.379168],[-69.228897,-14.576389],[-69.248901,-14.6875],[-69.366394,-14.802502],[-69.381393,-14.970001],[-69.136948,-15.245834],[-69.268341,-15.326946],[-69.421951,-15.618057],[-69.211945,-16.160557],[-69.13417,-16.223614],[-68.965012,-16.209446],[-68.840836,-16.295559],[-68.82251,-16.339725],[-68.990845,-16.419724],[-69.03418,-16.473057],[-69.011124,-16.656948],[-69.191956,-16.778057],[-69.406403,-17.072224],[-69.525284,-17.125557],[-69.618896,-17.214725],[-69.656189,-17.287247],[-69.590836,-17.29528],[-69.501114,-17.378891],[-69.499725,-17.50528],[-69.683899,-17.663612],[-69.814728,-17.652225],[-69.83223,-17.676945],[-69.849731,-17.754169],[-69.770004,-17.968891],[-69.8414,-18.128613],[-69.965836,-18.256111],[-70.141113,-18.323334],[-70.355835,-18.319725],[-70.405487,-18.348545],[-70.566116,-18.221111],[-70.651672,-18.192223],[-70.953064,-17.918335],[-71.095001,-17.858891],[-71.301682,-17.71167],[-71.356674,-17.621948],[-71.396118,-17.403336],[-71.497513,-17.296947],[-71.828903,-17.189445],[-72.455841,-16.7075],[-72.790283,-16.632504],[-72.912506,-16.538891],[-73.235001,-16.411667],[-73.329727,-16.330002],[-73.835556,-16.158611],[-74.05751,-15.953056],[-74.3564,-15.849724],[-74.436951,-15.806112],[-74.483612,-15.720835],[-75.047501,-15.469168],[-75.260284,-15.18889],[-75.395569,-15.088335],[-75.515839,-14.914446],[-75.933334,-14.658056],[-75.98779,-14.467501],[-76.08639,-14.376667],[-76.140564,-14.230278],[-76.234726,-14.155279],[-76.29306,-13.906389],[-76.39389,-13.898056],[-76.363342,-13.805],[-76.306946,-13.796112],[-76.269455,-13.855278],[-76.20195,-13.638056],[-76.196945,-13.418335],[-76.492233,-13.046112],[-76.520004,-12.903612],[-76.640015,-12.745279],[-76.800842,-12.387779],[-77.12305,-12.077507],[-77.203064,-11.658335],[-77.370285,-11.45389],[-77.65251,-11.292223],[-77.66473,-11.240557],[-77.610001,-11.186111],[-77.679459,-10.934168],[-78.069458,-10.321945],[-78.238892,-9.930557],[-78.246124,-9.792501],[-78.377792,-9.619167],[-78.405289,-9.427778],[-78.485291,-9.330002],[-78.520569,-9.172501],[-78.647781,-9.063334],[-78.683624,-8.990835],[-78.66362,-8.917501],[-78.72612,-8.828056],[-78.771957,-8.58639],[-78.929169,-8.422224],[-78.917511,-8.374168],[-78.989731,-8.226946],[-79.344727,-7.894167],[-79.58556,-7.467223],[-79.605011,-7.335556],[-79.70886,-7.181525],[-79.71501,-7.116667],[-79.938904,-6.883334],[-79.982788,-6.764445],[-80.123901,-6.639167],[-80.52417,-6.433333],[-80.669724,-6.320556],[-81.174728,-6.086667],[-81.197784,-5.976111],[-81.155289,-5.859167],[-81.07251,-5.825834],[-80.989731,-5.869445],[-80.926392,-5.852222],[-80.882507,-5.768333],[-80.871399,-5.652223],[-80.961945,-5.431945],[-81.209732,-5.192779],[-81.178345,-5.070834],[-81.098892,-5.063334],[-81.084457,-5.023056],[-81.353897,-4.693056],[-81.30307,-4.552222],[-81.289734,-4.31],[-81.060532,-4.084756],[-80.982224,-3.9525],[-80.871399,-3.8825],[-80.820847,-3.75],[-80.605835,-3.623611],[-80.529724,-3.505556],[-80.381668,-3.479167],[-80.340424,-3.380517],[-80.253891,-3.420834],[-80.211395,-3.739167],[-80.153336,-3.884228],[-80.31639,-4.013056],[-80.386124,-3.979167],[-80.467224,-3.986945],[-80.501678,-4.050279],[-80.468613,-4.201112],[-80.44168,-4.222778],[-80.335556,-4.199445],[-80.478058,-4.383334],[-80.467789,-4.43889],[-80.363342,-4.467778],[-80.134598,-4.284491],[-79.81361,-4.48],[-79.649734,-4.432778],[-79.539169,-4.520834],[-79.445282,-4.800279],[-79.290848,-4.963334],[-79.10695,-4.97139],[-79.054825,-5.009132],[-78.928619,-4.868334],[-78.918335,-4.739167],[-78.876114,-4.677222],[-78.70903,-4.584787]]]}},{"type":"Feature","properties":{"FIPS":"PK","ISO2":"PK","ISO3":"PAK","UN":586,"NAME":"Pakistan","AREA":77088,"POP2005":158080591,"REGION":142,"SUBREGION":34,"LON":69.386,"LAT":29.967},"geometry":{"type":"MultiPolygon","coordinates":[[[[67.449417,24.002777],[67.411926,24.00583300000011],[67.37942,24.051662],[67.478592,24.04694400000011],[67.449417,24.002777]]],[[[74.81749000000013,37.021767],[74.974152,36.98484000000013],[75.13832100000013,37.001534000000106],[75.382202,36.92294],[75.44914,36.732941],[75.523041,36.729065],[75.546371,36.76963],[75.63916,36.763542],[75.864426,36.659676],[76.00499000000013,36.458603],[76.041656,36.23751],[75.993866,36.159721],[75.923035,36.123596000000134],[75.926086,36.077209],[75.97276,36.011658],[76.123871,35.97777],[76.166382,35.81972],[76.384995,35.841377000000136],[76.55304,35.906654],[76.594147,35.757217],[76.89526400000011,35.612495],[77.411926,35.473877],[77.70109600000012,35.461105],[77.82392900000013,35.501328],[77.04248,35.099159],[77.060806,35.014717],[76.95444,34.86277],[76.91693,34.68138],[76.86998000000011,34.658882],[76.801376,34.672218],[76.727203,34.743881],[76.470261,34.769989],[76.29359,34.70027],[76.229156,34.60943600000013],[76.16748,34.58638000000013],[75.988037,34.62694],[75.805542,34.507217],[75.661377,34.500832],[75.392487,34.55471],[75.243004,34.62610200000012],[74.69275,34.693604],[74.372482,34.78333],[73.935806,34.63694],[73.796371,34.385551],[73.84804,34.3186],[73.97331200000013,34.302773],[74.01776100000012,34.218048],[74.01416,34.175552],[73.912201,34.115273],[73.913315,34.068604],[73.978867,34.011383],[74.244431,34.01915700000012],[74.295822,33.97749],[74.235809,33.884163],[74.050262,33.831665],[73.99054,33.7438810000001],[74.00000000000011,33.65416],[74.15443,33.561378],[74.18248000000011,33.510551],[74.117477,33.32888],[74.020828,33.27166],[74.016388,33.188599000000124],[74.188583,33.03833],[74.334152,33.000549],[74.363876,32.869438000000116],[74.329666,32.81543],[74.359711,32.775826],[74.53166,32.75027],[74.646378,32.780548000000124],[74.654709,32.576385],[74.717484,32.475822],[75.0663760000001,32.47193],[75.31915300000014,32.34777],[75.328583,32.292759],[75.391296,32.241581],[75.38129,32.214241],[75.256531,32.092869],[74.996353,32.036289000000124],[74.903473,32.053291],[74.851173,31.99859],[74.60532400000011,31.877119],[74.488731,31.72159],[74.632797,31.462111],[74.62688,31.419411],[74.54837,31.35444],[74.522667,31.175079],[74.55728,31.07605],[74.623741,31.12393],[74.704536,31.10009],[74.69458800000012,31.053961],[74.30748,30.84888500000011],[73.872498,30.390099],[73.858597,30.360275],[73.93441800000011,30.314163],[73.964432,30.2347180000001],[73.93340300000011,30.136],[73.397491,29.94277],[73.26527,29.55305],[73.08638,29.245827],[72.988876,29.141941],[72.948318,29.035831000000144],[72.389709,28.784996],[72.29221,28.679996],[72.20665,28.402496],[71.919983,28.120831000000123],[71.89694,27.961941000000138],[71.6147,27.876106],[71.22581500000013,27.845829],[70.82944,27.706383],[70.737762,27.731384],[70.6622,27.86333100000013],[70.66360500000013,27.92832900000013],[70.583054,28.006664],[70.4869230000001,28.045551],[70.368317,28.020832],[70.12803600000012,27.828884000000127],[70.03749,27.599998],[69.86747700000012,27.408607],[69.59027100000013,27.186939],[69.51111,26.997494],[69.484985,26.811665],[69.51277,26.74666200000013],[69.72276,26.665272],[69.800812,26.594162],[70.092484,26.59333],[70.18359,26.53611],[70.173874,26.244438],[70.096649,26.092495],[70.088043,25.982773],[70.281662,25.706661],[70.386108,25.67472],[70.60637,25.714161],[70.666382,25.698330000000112],[70.677475,25.40166],[70.753326,25.273888],[70.8797,25.156105],[70.94220000000013,24.935551],[71.07742300000011,24.68046],[70.984146,24.620831000000123],[70.995819,24.480827],[71.10220300000015,24.436939],[71.098602,24.408886],[71.02916,24.363609],[70.92804,24.361664],[70.864426,24.31694],[70.876083,24.27],[70.658035,24.239994000000138],[70.579712,24.28722],[70.600815,24.415],[70.555542,24.435272000000108],[70.120087,24.30903],[70.070709,24.197918],[70.014709,24.169716],[69.723602,24.171108000000117],[69.598602,24.281387],[69.08027600000014,24.29722],[68.988037,24.256943],[68.926926,24.325554],[68.783051,24.332775],[68.745224,24.315655000000106],[68.747208,23.969994],[68.290543,23.944439],[68.21443,23.868328000000133],[68.171097,23.745827],[68.187485,23.831665],[68.15803,23.898884],[68.150818,23.68805],[68.05026,23.723049000000117],[68.058319,23.902218],[68.02221700000013,23.937496],[68.049988,23.82333],[68.018051,23.765274],[67.85720800000013,23.91],[67.83804,23.810555000000136],[67.715271,23.789440000000127],[67.63415500000013,23.79888],[67.614426,23.846107],[67.49359,23.890831],[67.53804,23.938129],[67.500671,23.974043],[67.486649,24.045277],[67.461197,24.065355],[67.338043,24.089718],[67.28887900000012,24.224995],[67.27388,24.425827],[67.151657,24.61055],[67.151657,24.658051],[67.25416600000011,24.746105000000114],[67.2336,24.77471900000012],[66.85942100000011,24.854443],[66.64554,24.829163],[66.704987,24.891663000000108],[66.674149,24.93388],[66.73276,25.197495],[66.58638000000013,25.32722],[66.538589,25.51444],[66.438034,25.59333],[66.359421,25.61360900000011],[66.168045,25.56944],[66.1416,25.50394100000011],[66.33332800000011,25.554718],[66.486923,25.48444],[66.50638,25.4025],[66.23927300000014,25.44355],[65.92804000000012,25.412216],[65.667755,25.342773000000136],[65.46641,25.38267500000012],[65.254166,25.37749],[65.139709,25.287777],[64.768875,25.321384],[64.681366,25.28221900000011],[64.660812,25.2183270000001],[64.709991,25.180275],[64.64554,25.162216000000114],[64.61998,25.169994],[64.618591,25.242218],[64.541656,25.270832],[64.388046,25.266666],[64.096375,25.325829],[64.080551,25.41749600000014],[64.1541600000001,25.441940000000102],[64.11388,25.453327],[63.977768,25.41722],[64.009995,25.389164],[64.05359,25.40944],[64.068054,25.338051],[63.65638,25.378883],[63.52222,25.331387],[63.471375,25.283607],[63.482208,25.24638],[63.429161,25.215],[63.155823,25.256386000000134],[63.008049,25.214718],[62.550827,25.258888],[62.317497,25.171661],[62.25193800000011,25.2186],[62.10583,25.204441],[62.01416000000012,25.116665000000122],[61.86193800000012,25.092773],[61.843605,25.034996],[61.724434,25.052498],[61.78221,25.190273],[61.611031,25.197647],[61.686378,25.794998],[61.775826,25.81861],[61.858047,26.23472],[62.103882,26.314442],[62.14138,26.382774],[62.27803,26.35402],[62.271378,26.42472],[62.31027,26.502777],[62.429718,26.564163],[62.74305,26.611664],[62.772766,26.649719],[63.176384,26.63111],[63.2161,26.853886],[63.25916300000012,26.934441],[63.253052,27.083607],[63.2786,27.121941],[63.341934,27.122498],[63.28833,27.21860500000014],[63.205826,27.267498],[62.933327000000126,27.213329],[62.782494,27.260555],[62.83971,27.474438],[62.82194,27.760277],[62.757774,28.000275],[62.78138000000013,28.26694],[62.5924910000001,28.2336],[62.404991000000116,28.417217],[61.90554800000012,28.554996],[61.651382,28.785275],[61.51194,29.07111],[61.360275000000115,29.2658310000001],[61.314438,29.395828000000108],[60.866302,29.863655],[62.484436,29.406105],[63.58721200000013,29.503887],[64.059143,29.414440000000127],[64.3797,29.553608],[64.66054,29.587776],[65.034149,29.54110700000012],[66.256653,29.851940000000127],[66.36219800000015,29.9561],[66.238312,30.071384000000133],[66.325272,30.237774],[66.35165400000011,30.44527],[66.281937,30.575275],[66.39554,30.94083],[66.572769,30.98138],[66.684143,31.086109],[66.723038,31.21221500000013],[66.97415,31.32194],[67.04693600000012,31.312775],[67.055817,31.24305],[67.281937,31.21249],[67.38472,31.215271],[67.778046,31.332218000000122],[67.791367,31.395275000000137],[67.61526,31.427773],[67.575546,31.53194],[67.73193400000014,31.52916],[67.881927,31.63805],[67.98054500000012,31.63583],[68.16609,31.833054],[68.272217,31.77166],[68.53776600000015,31.726662],[68.57165500000013,31.765274],[68.437195,31.786663],[68.570831,31.825554],[68.71804800000012,31.727772],[68.833054,31.60389],[69.0291600000001,31.65583],[69.12915,31.734161],[69.224396,31.871292],[69.328247,31.940365],[69.271927,32.145271],[69.291367,32.31749700000012],[69.248032,32.443878],[69.28749,32.526382000000126],[69.37776,32.568329],[69.45832800000011,32.67054700000011],[69.394989,32.77388],[69.515274,32.873878],[69.50526400000012,33.03416],[69.575546,33.087212000000136],[69.881088,33.089989],[70.02887,33.13582600000012],[70.326935,33.331940000000145],[70.28610200000013,33.422768],[70.168045,33.52082800000011],[70.19664000000012,33.640831],[70.13749700000011,33.732491],[69.985535,33.753052],[69.86914100000013,33.929993],[69.906372,34.035271],[70.00278,34.052773],[70.491364,33.943047],[70.891098,33.966385],[71.08194,34.055824],[71.13554,34.16610000000014],[71.15887,34.348328],[71.00055,34.46305100000012],[70.987488,34.55110200000013],[71.08859300000012,34.559433],[71.095825,34.676659],[71.496094,34.95943],[71.612762,35.23082],[71.547485,35.32361],[71.64942900000011,35.424995],[71.528046,35.662766],[71.545258,35.7111],[71.44775,35.86110700000012],[71.187607,36.04747],[71.243576,36.12971],[71.581131,36.346443000000136],[71.633072,36.465553000000114],[71.74501,36.416122],[72.14581,36.647736],[72.18166,36.714363],[72.47415200000012,36.762398],[72.578598,36.82543],[73.668304,36.909637],[73.85220300000015,36.89272],[74.038315,36.814682],[74.419983,37.001434],[74.48887600000012,37.010338],[74.545532,36.95922100000013],[74.5654300000001,37.027817],[74.68359,37.062317000000114],[74.81749000000013,37.021767]]]]}},{"type":"Feature","properties":{"FIPS":"PL","ISO2":"PL","ISO3":"POL","UN":616,"NAME":"Poland","AREA":30629,"POP2005":38195558,"REGION":150,"SUBREGION":151,"LON":19.401,"LAT":52.125},"geometry":{"type":"Polygon","coordinates":[[[18.851246,49.517357],[18.811665,49.672218],[18.634163,49.737778],[18.57935,49.814995],[18.577221,49.914444],[18.270275,49.957771],[18.053162,50.055931],[18.009441,50.011108],[17.882774,49.976944],[17.657776,50.108055],[17.59861,50.161659],[17.762497,50.205551],[17.753052,50.297775],[17.722775,50.319717],[17.63361,50.265549],[17.433052,50.270271],[17.118053,50.39666],[16.890274,50.439438],[16.869442,50.405273],[16.972775,50.309998],[17.00222,50.216942],[16.849998,50.203331],[16.725277,50.099716],[16.641941,50.10833],[16.441387,50.316666],[16.20583,50.423882],[16.310833,50.504166],[16.368332,50.498604],[16.448055,50.572777],[16.341942,50.66111],[16.024441,50.629997],[15.787498,50.744164],[15.37972,50.779442],[15.364166,50.841385],[15.283333,50.890831],[15.295277,50.954163],[15.176943,51.014717],[15.010555,50.984161],[15.005278,50.867218],[14.828333,50.865829],[14.966389,51.053604],[15.038887,51.27166],[14.971666,51.355553],[14.954166,51.469719],[14.736111,51.528053],[14.714998,51.554722],[14.759998,51.604439],[14.755278,51.669998],[14.666943,51.724159],[14.599443,51.818604],[14.692499,51.898888],[14.760765,52.069862],[14.710554,52.243889],[14.581665,52.28611],[14.534443,52.394722],[14.636389,52.490555],[14.641388,52.57],[14.149166,52.862778],[14.149443,52.962776],[14.342222,53.044998],[14.391689,53.144165],[14.413261,53.338959],[14.275627,53.699066],[14.525,53.660553],[14.619444,53.764442],[14.614166,53.816383],[14.558332,53.857216],[14.412222,53.866661],[14.337221,53.804993],[14.218887,53.869019],[14.225555,53.928604],[14.383055,53.913055],[14.745277,54.02861],[15.310833,54.149437],[16.129162,54.283104],[16.071663,54.2575],[16.174721,54.259163],[16.21557,54.296814],[16.141106,54.287052],[16.328053,54.344994],[16.323608,54.375549],[16.294998,54.368332],[16.54361,54.544716],[16.915276,54.597771],[17.254997,54.731384],[18.053055,54.834442],[18.349998,54.833611],[18.372776,54.816109],[18.703888,54.700272],[18.774719,54.666382],[18.831944,54.627777],[18.826942,54.594162],[18.704441,54.694443],[18.484276,54.759827],[18.405277,54.74305],[18.553608,54.57972],[18.576664,54.441666],[18.757774,54.370827],[19.138885,54.346664],[19.4175,54.380554],[19.651108,54.455826],[19.408051,54.358887],[19.234444,54.336937],[19.256107,54.277496],[19.371109,54.2686],[19.797007,54.43755],[21.411942,54.325829],[22.629997,54.348877],[22.775829,54.361107],[22.856106,54.4086],[22.992771,54.387772],[23.115829,54.304436],[23.333054,54.247215],[23.456383,54.175552],[23.51722,54.047218],[23.512218,53.89138],[23.620552,53.604996],[23.933052,53.01416],[23.94083,52.732208],[23.753887,52.615829],[23.597218,52.596382],[23.397217,52.514442],[23.1654,52.282276],[23.206383,52.225266],[23.35833,52.204712],[23.638607,52.079437],[23.660828,52.006104],[23.558052,51.752495],[23.539165,51.592766],[23.563885,51.539436],[23.658607,51.4786],[23.69305,51.404709],[23.683884,51.288605],[23.731937,51.214714],[23.904442,51.069443],[23.966385,50.948875],[24.14444,50.849434],[23.95694,50.814995],[24.108414,50.6259],[24.111385,50.56694],[23.999439,50.411659],[23.703884,50.378326],[23.676941,50.32444],[23.146107,49.983047],[22.676105,49.566383],[22.656105,49.519714],[22.738327,49.390274],[22.760277,49.295273],[22.700272,49.165543],[22.876106,49.089989],[22.886074,49.002914],[22.037777,49.210831],[21.956944,49.341385],[21.618889,49.436386],[21.459442,49.41111],[21.278889,49.456665],[21.076111,49.423607],[20.984165,49.310555],[20.916386,49.296104],[20.740833,49.388885],[20.360554,49.393051],[20.143608,49.314995],[20.074444,49.175278],[19.97472,49.227219],[19.846664,49.19194],[19.771111,49.206383],[19.826942,49.278053],[19.790276,49.406662],[19.658607,49.406662],[19.574997,49.461105],[19.520981,49.574165],[19.475555,49.599998],[19.270275,49.527771],[19.163609,49.400551],[18.978054,49.39666],[18.968609,49.481667],[18.851246,49.517357]]]}},{"type":"Feature","properties":{"FIPS":"PM","ISO2":"PA","ISO3":"PAN","UN":591,"NAME":"Panama","AREA":7443,"POP2005":3231502,"REGION":19,"SUBREGION":13,"LON":-80.92,"LAT":8.384},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.77862,7.27638800000011],[-81.79445,7.225555],[-81.797501,7.225833000000136],[-81.818619,7.29],[-81.77862,7.27638800000011]]],[[[-81.205841,7.486666],[-81.24972,7.48833],[-81.09611,7.578610000000139],[-81.033615,7.570833],[-81.205841,7.486666]]],[[[-81.649445,7.384166],[-81.608337,7.3775],[-81.59084,7.326666000000102],[-81.74445,7.345833],[-81.87418,7.49111],[-81.758621,7.634166],[-81.72362,7.616944],[-81.71362,7.436666],[-81.649445,7.384166]]],[[[-81.103897,7.71778],[-81.12167,7.72111],[-81.14917,7.741666],[-81.124176,7.75889],[-81.103897,7.71778]]],[[[-81.16528,7.82278],[-81.173615,7.818055],[-81.16139,7.84167],[-81.16223,7.83028],[-81.16528,7.82278]]],[[[-82.340561,8.0875],[-82.366394,8.08888800000011],[-82.31973,8.136665],[-82.320007,8.099165],[-82.340561,8.0875]]],[[[-82.21335,8.19749800000011],[-82.29529,8.193609],[-82.31334,8.218887],[-82.260559,8.224722],[-82.21335,8.19749800000011]]],[[[-77.98695,8.242222],[-78.002792,8.246666],[-78.003067,8.25111],[-77.99223,8.25055],[-77.98695,8.242222]]],[[[-82.3325,8.23361],[-82.388062,8.207222],[-82.403625,8.25305],[-82.336121,8.2925],[-82.3141779999999,8.271666],[-82.3325,8.23361]]],[[[-79.10695,8.201111],[-79.124725,8.231388],[-79.097504,8.309166],[-79.05585,8.251389],[-79.10695,8.201111]]],[[[-79.0764,8.36972],[-79.117233,8.391388],[-79.114456,8.415277],[-79.07584,8.408609],[-79.0764,8.36972]]],[[[-78.851395,8.28861],[-78.92223,8.270555000000115],[-78.95917,8.292221],[-78.96028,8.447222000000124],[-78.883621,8.46388800000011],[-78.85001,8.43361],[-78.829727,8.388332000000105],[-78.851395,8.28861]]],[[[-82.01501,9.12639],[-82.04918,9.144165],[-82.04584,9.17639],[-82.004456,9.139999],[-82.01501,9.12639]]],[[[-82.224457,9.335],[-82.229446,9.3375],[-82.22473,9.3525],[-82.22195,9.346388000000104],[-82.224457,9.335]]],[[[-82.079178,9.284443],[-82.124451,9.271944],[-82.20639,9.348331],[-82.091675,9.309444],[-82.079178,9.284443]]],[[[-82.23918,9.33027600000014],[-82.32223,9.403610000000128],[-82.314453,9.42472],[-82.258347,9.429165],[-82.23918,9.33027600000014]]],[[[-79.46306,9.568054000000132],[-78.95946,9.54333],[-79.0614,9.5],[-79.05724,9.429998],[-78.554733,9.429165],[-78.36667,9.33527800000013],[-78.035568,9.23],[-77.80334,9.045832],[-77.70306,8.87694],[-77.54279,8.763611],[-77.52444,8.696665],[-77.4375,8.658609],[-77.36667,8.674999],[-77.472229,8.532221],[-77.47835,8.479721],[-77.4014,8.444443],[-77.36195,8.282221000000106],[-77.27167,8.19528],[-77.19833,7.99944],[-77.21556,7.937222],[-77.29834,7.90361],[-77.37195,7.786111],[-77.333344,7.698889],[-77.577225,7.525],[-77.662231,7.677777],[-77.74667,7.722221],[-77.758896,7.628611],[-77.72473,7.518888],[-77.750565,7.482778],[-77.810837,7.48],[-77.889725,7.228889],[-77.91528,7.235833000000127],[-78.16251,7.508055],[-78.16667,7.57111],[-78.2814,7.707222],[-78.34418,7.866944],[-78.38972,7.90805],[-78.431122,8.067221],[-78.4064,8.101387],[-78.40056,8.066111],[-78.31473,8.05972],[-78.25723,8.10194],[-78.238068,8.17639],[-78.30278,8.249166],[-78.183334,8.32611100000014],[-78.13917,8.403889],[-78.04501,8.31111],[-78.025864,8.251736],[-77.99519,8.232459],[-77.8925,8.233889],[-77.78528,8.130278],[-77.779175,8.154999],[-77.889175,8.24611],[-78.01611,8.275276],[-78.10751,8.455832],[-78.218613,8.379721000000131],[-78.25473,8.407776],[-78.359451,8.394444],[-78.38,8.33833],[-78.414169,8.34417],[-78.49223,8.449999],[-78.50723,8.616943000000106],[-78.6575,8.700277],[-78.907501,8.913887],[-79.05307,8.966665],[-79.067673,9.052888],[-78.97862,9.14277600000014],[-79.1089,9.085],[-79.13174,9.01327700000013],[-79.47557,8.99861],[-79.52389,8.957499],[-79.52501,8.903889],[-79.697784,8.86666],[-79.75917,8.792500000000132],[-79.73695,8.71583],[-79.781113,8.605833000000132],[-79.952789,8.450832],[-80.22696,8.294722],[-80.389725,8.29028],[-80.47362,8.21278],[-80.48167,8.081665],[-80.449722,8.031387],[-80.350281,7.991944],[-80.31723,7.915833000000134],[-80.060287,7.643888],[-79.989731,7.51611],[-80.024734,7.45167],[-80.16223,7.412222],[-80.30833,7.416389],[-80.433334,7.2444440000001],[-80.798065,7.206111],[-80.925293,7.25],[-80.88612,7.347500000000139],[-80.94862,7.55778],[-81.03723,7.67667],[-81.05806,7.87333],[-81.12834,7.839722],[-81.17886,7.85499],[-81.19112,7.63917],[-81.21779,7.60722],[-81.49695,7.69861],[-81.57223,7.75722],[-81.61473,7.968888],[-81.68224,8.01861],[-81.70668,8.065277],[-81.675,8.0675],[-81.73862,8.162498],[-82.09529,8.214722],[-82.142227,8.18111],[-82.191956,8.19444],[-82.21806,8.272499],[-82.287231,8.313332000000116],[-82.502792,8.270832],[-82.72168,8.317221],[-82.84029,8.277222],[-82.86974,8.230000000000132],[-82.849731,8.062777],[-82.872223,8.020555],[-82.89885,8.025669],[-82.886124,8.103333000000134],[-82.93085,8.254721],[-83.03029,8.310555],[-82.82993,8.47465],[-82.83195,8.626665],[-82.91446,8.762777],[-82.860565,8.841389000000106],[-82.711121,8.922222],[-82.74695,8.98444],[-82.88223,9.067221],[-82.93047,9.06312],[-82.93472,9.471666],[-82.833069,9.61222],[-82.7489,9.584166],[-82.63473,9.487778],[-82.55945,9.564444],[-82.363617,9.40722],[-82.381668,9.28583],[-82.23695,8.997776000000101],[-82.060287,8.930832],[-81.81639,8.94528],[-81.78807,9.003332000000112],[-81.91389,9.112499],[-81.91028,9.16722],[-81.883896,9.174444],[-81.51028,8.79361],[-81.19612,8.780277],[-80.83974,8.87694],[-80.74695,8.976944],[-80.60196,9.05861],[-80.09668,9.217222000000106],[-79.970001,9.351944],[-79.74028,9.438055000000132],[-79.62584,9.594166],[-79.53334,9.620277],[-79.46306,9.568054000000132]]]]}},{"type":"Feature","properties":{"FIPS":"PO","ISO2":"PT","ISO3":"PRT","UN":620,"NAME":"Portugal","AREA":9150,"POP2005":10528226,"REGION":150,"SUBREGION":39,"LON":-8.058,"LAT":40.309},"geometry":{"type":"MultiPolygon","coordinates":[[[[-17.102501,32.823326],[-16.905003,32.838882],[-16.715557,32.75888800000013],[-16.82167,32.64444],[-16.94361,32.63749700000011],[-17.19361,32.727493],[-17.25584,32.80944],[-17.18445,32.871941],[-17.102501,32.823326]]],[[[-16.285835,33.09416],[-16.28694,33.062775],[-16.40056,33.038605],[-16.325558,33.108055],[-16.285835,33.09416]]],[[[-25.016392,36.96971900000011],[-25.01889,36.929161],[-25.17111,36.943886],[-25.20056,36.98583],[-25.08639,37.023605],[-25.016392,36.96971900000011]]],[[[-25.585003,37.82666000000012],[-25.19361,37.864441],[-25.13028,37.811661],[-25.166668,37.744438000000116],[-25.45611,37.705551],[-25.69361,37.738327],[-25.864723,37.850555],[-25.842503,37.902222],[-25.78056,37.909996],[-25.680836,37.84166],[-25.585003,37.82666000000012]]],[[[-28.141113,38.44988300000011],[-28.072781,38.44554900000014],[-28.037781,38.406944],[-28.192501,38.404999],[-28.24667,38.371941],[-28.283337,38.404716],[-28.463612,38.405548],[-28.526112,38.445831],[-28.54945,38.527222],[-28.421669,38.55722000000014],[-28.141113,38.44988300000011]]],[[[-27.086945,38.631386],[-27.30695,38.658051000000114],[-27.38,38.710548],[-27.385,38.76332900000011],[-27.28611,38.803055],[-27.06583,38.76416000000012],[-27.01917,38.695274],[-27.086945,38.631386]]],[[[-31.21556,39.35333300000013],[-31.261112,39.35555],[-31.29,39.41360500000013],[-31.25833,39.500832],[-31.21389,39.52194200000014],[-31.123058,39.44888300000014],[-31.154167,39.365273],[-31.21556,39.35333300000013]]],[[[-8.20472,41.87471800000014],[-8.16111,41.857498],[-8.163807,41.817184],[-8.08778,41.809441],[-7.921112,41.880829],[-7.873334,41.85249],[-7.6925,41.904999],[-7.59806,41.865273],[-7.607779,41.83111],[-7.426667,41.82222],[-7.200556,41.88361],[-7.17361,41.922775],[-7.187222,41.975273],[-7.14,41.994164],[-7.063056,41.951385],[-6.982848,41.973862],[-6.90611,41.944717],[-6.594167,41.95361],[-6.548612,41.92194],[-6.52806,41.839439],[-6.539445,41.679443],[-6.303612,41.66333],[-6.18722,41.57972000000012],[-6.29583,41.436104],[-6.438056,41.318886],[-6.558333,41.242218],[-6.64389,41.24472],[-6.75333,41.136665],[-6.780278,41.06360600000011],[-6.931667,41.01805100000013],[-6.803889,40.874161],[-6.79611,40.52444],[-6.862303,40.271523000000116],[-7.005834,40.23083],[-7.02722,40.18777],[-7.004723,40.126106],[-6.93472,40.1075],[-6.87056,40.02166000000011],[-7.01722,39.67499500000014],[-7.266945,39.67194400000011],[-7.3375,39.643883],[-7.5325,39.669418],[-7.505834,39.605827],[-7.371389,39.491386],[-7.24278,39.213051],[-7.1425,39.111107],[-7.005,39.10721600000011],[-6.95479,39.026382],[-7.08417,38.835548],[-7.267222,38.703331],[-7.321112,38.44944],[-7.08778,38.174438],[-6.93375,38.209068],[-7.006667,38.028053000000114],[-7.25444,37.987495],[-7.27833,37.87083],[-7.42306,37.74388900000014],[-7.524445,37.552498],[-7.447223,37.41861],[-7.414445,37.186104],[-7.56611,37.150833],[-7.75833,37.035],[-7.89778,37.008888],[-8.00806,37.018608],[-8.17528,37.092216],[-8.65889,37.108887],[-8.984446,37.020271],[-8.795862,37.44251],[-8.794445,37.897217],[-8.84222,38.009438],[-8.77917,38.18055],[-8.8025,38.374443],[-8.673334,38.413887],[-8.76889,38.51722],[-8.91139,38.516106],[-9.062778,38.437218],[-9.18389,38.419716],[-9.20389,38.59277],[-9.278612,38.66861],[-9.150557,38.676941],[-9.07445,38.631104],[-9.015556,38.729439],[-8.91975,38.765892],[-8.9825,38.851944],[-8.984446,38.947777],[-9.06528,38.855],[-9.12,38.71416],[-9.322224,38.676666],[-9.429724,38.6919400000001],[-9.484446,38.709999],[-9.49472,38.78527],[-9.411112,38.95472],[-9.41917,39.078606],[-9.33694,39.234444],[-9.3575,39.364998],[-9.22722,39.435272],[-9.08556,39.615],[-8.86278,40.130829],[-8.88139,40.242775],[-8.77694,40.562492],[-8.74539,40.628387],[-8.66083,40.68721800000014],[-8.678335,40.775833],[-8.73528,40.68027],[-8.64554,41.018578],[-8.78972,41.421387],[-8.781113,41.484444],[-8.876667,41.731941],[-8.87945,41.843887],[-8.64,42.045273],[-8.31056,42.103607],[-8.20122,42.15274],[-8.079723,42.054161],[-8.085,42.020271],[-8.212778,41.92388],[-8.20472,41.87471800000014]]]]}},{"type":"Feature","properties":{"FIPS":"PP","ISO2":"PG","ISO3":"PNG","UN":598,"NAME":"Papua New Guinea","AREA":45286,"POP2005":6069715,"REGION":9,"SUBREGION":54,"LON":143.459,"LAT":-5.949},"geometry":{"type":"MultiPolygon","coordinates":[[[[153.77081,-11.616388],[153.598846,-11.617498],[153.56607,-11.6425],[153.47912600000018,-11.57333],[153.37606800000015,-11.567223],[153.38776,-11.500834],[153.271912,-11.460556],[153.1905210000001,-11.373055],[153.19802900000013,-11.32417],[153.686646,-11.526945],[153.751099,-11.56444],[153.77081,-11.616388]]],[[[154.29776000000015,-11.39194],[154.266388,-11.421667],[154.137482,-11.398611],[154.106628,-11.43972],[154.003326,-11.38389],[154.089691,-11.315277],[154.15387,-11.314167],[154.26831100000015,-11.33889],[154.29776000000015,-11.39194]]],[[[153.24106,-11.26889],[153.21051,-11.28583],[153.091064,-11.197222],[153.21386700000016,-11.22472],[153.25137,-11.24694],[153.24106,-11.26889]]],[[[152.87329,-10.66222],[152.744415,-10.71666],[152.5408,-10.630554],[152.69302400000015,-10.662779],[152.790253,-10.61972],[152.87329,-10.66222]]],[[[151.06970200000012,-10.61111],[151.042206,-10.67694],[150.988861,-10.63528],[150.93609600000013,-10.63472],[150.927185,-10.683889],[150.909973,-10.65472],[150.93469200000015,-10.60083],[151.06970200000012,-10.61111]]],[[[150.892212,-10.65083],[150.78524800000014,-10.63472],[150.7908,-10.54222],[150.900269,-10.55305],[150.892212,-10.65083]]],[[[151.11606,-10.046667],[151.18414300000018,-9.944723],[151.28137200000015,-9.92333],[151.29913,-9.9625],[151.229126,-10.201111],[151.143585,-10.145279],[150.958588,-10.110277],[150.82690400000013,-9.838888],[150.758606,-9.8025],[150.75997900000016,-9.707777],[151.11606,-10.046667]]],[[[150.66666,-9.438334],[150.754974,-9.404446],[150.80441,-9.432777],[150.885803,-9.52083],[150.921631,-9.670834],[150.84692400000017,-9.718056],[150.801636,-9.65861],[150.661102,-9.663334],[150.51443,-9.62333],[150.42190600000015,-9.389444],[150.48773,-9.3375],[150.66666,-9.438334]]],[[[150.339142,-9.524723],[150.19302400000012,-9.453888],[150.108307,-9.36861],[150.123291,-9.26306],[150.189148,-9.211111],[150.23218,-9.207777],[150.330811,-9.27195],[150.37744,-9.389444],[150.339142,-9.524723]]],[[[152.81497200000013,-8.97278],[153.017761,-9.117777],[152.997192,-9.17306],[152.83551,-9.23556],[152.649139,-9.06694],[152.563599,-9.016111],[152.497742,-9.02167],[152.61969,-8.96139],[152.81497200000013,-8.97278]]],[[[151.124969,-8.42556],[151.102448,-8.74194],[151.14444000000015,-8.830555],[151.09497,-8.771112],[151.101074,-8.638889],[151.05859,-8.55167],[150.99692,-8.528612],[151.054413,-8.435],[151.124969,-8.42556]]],[[[143.63803100000018,-8.73305],[143.240509,-8.487221],[143.18359,-8.42],[143.467194,-8.527779],[143.647491,-8.66806],[143.63803100000018,-8.73305]]],[[[143.57275400000015,-8.49389],[143.35495,-8.41806],[143.31442300000015,-8.376665],[143.5783080000001,-8.373888],[143.616058,-8.468889],[143.57275400000015,-8.49389]]],[[[143.68719,-8.439722],[143.58441200000016,-8.35778],[143.60718,-8.332777],[143.67221,-8.35444],[143.68719,-8.439722]]],[[[143.69747900000013,-8.245277],[143.650269,-8.237778],[143.65164200000015,-8.19972],[143.733307,-8.17472],[143.75525,-8.213888],[143.69747900000013,-8.245277]]],[[[143.67776500000014,-8.17472],[143.62161300000014,-8.15167],[143.60495,-8.108889],[143.700256,-8.10611],[143.719421,-8.155001],[143.67776500000014,-8.17472]]],[[[143.731079,-8.071667],[143.727753,-8.10222],[143.58856200000014,-8.071667],[143.565247,-8.02],[143.65109300000017,-8.00833],[143.731079,-8.071667]]],[[[145.193573,-7.867222],[145.180542,-7.86111],[145.18246,-7.827778],[145.197479,-7.855],[145.193573,-7.867222]]],[[[143.999695,-7.824445],[143.92358400000012,-7.78861],[143.8771670000001,-7.70972],[143.96692,-7.74833],[143.999695,-7.824445]]],[[[149.053589,-6.09417],[149.043304,-6.09333],[149.043854,-6.088612],[149.054138,-6.083889],[149.053589,-6.09417]]],[[[148.061493,-5.77712],[147.990479,-5.856037],[147.97238200000015,-5.790745],[147.86511200000015,-5.74775],[147.76605200000017,-5.612775],[147.78027,-5.494166],[147.852173,-5.49361],[148.044128,-5.601944],[148.080444,-5.665955],[148.061493,-5.77712]]],[[[154.88245,-5.543333],[155.0735780000001,-5.561666],[155.216064,-5.86872],[155.40054,-5.99583],[155.43274,-6.120833],[155.8136,-6.37139],[155.917755,-6.52444],[155.967194,-6.711111],[155.918579,-6.807777],[155.82385,-6.777778],[155.70746,-6.88333],[155.558868,-6.8525],[155.33886700000016,-6.74111],[155.23996,-6.622499],[155.19275,-6.56055],[155.233307,-6.438055],[155.214142,-6.32028],[154.98162800000011,-6.208611],[154.74438,-5.93978],[154.6985780000001,-5.76852],[154.75360100000012,-5.518056],[154.790527,-5.479167],[154.88245,-5.543333]]],[[[148.12079,-5.46833],[148.07162500000015,-5.42444],[148.099701,-5.3775],[148.14498900000012,-5.41833],[148.12079,-5.46833]]],[[[147.602173,-5.361944],[147.560516,-5.31889],[147.609131,-5.28805],[147.642761,-5.333889],[147.602173,-5.361944]]],[[[147.15332000000012,-5.449721],[147.008026,-5.35028],[147.01361,-5.23833],[147.12106,-5.19111],[147.2116390000001,-5.26917],[147.22885,-5.36389],[147.22467,-5.42944],[147.15332000000012,-5.449721]]],[[[154.675537,-5.440833],[154.63721,-5.45861],[154.61801100000014,-5.431389],[154.530273,-5.133889],[154.63916,-5.016389],[154.728302,-5.202778],[154.675537,-5.440833]]],[[[149.15692100000012,-4.92306],[149.11801100000014,-4.88944],[149.1619260000001,-4.86639],[149.18164100000013,-4.89222],[149.15692100000012,-4.92306]]],[[[146.246613,-4.8575],[146.1994,-4.833611],[146.2199710000001,-4.788333],[146.26248,-4.819722],[146.246613,-4.8575]]],[[[149.5571900000001,-4.718889],[149.47024,-4.71],[149.455811,-4.679167],[149.54025300000012,-4.653889],[149.5571900000001,-4.718889]]],[[[159.51694,-4.57806],[159.511383,-4.57667],[159.51886000000013,-4.53639],[159.523041,-4.563889],[159.51694,-4.57806]]],[[[145.95135500000015,-4.76444],[145.891663,-4.735277],[145.87246700000014,-4.6725],[145.90469,-4.58778],[145.98162800000011,-4.5275],[146.05359,-4.59639],[146.05414,-4.66139],[146.03775,-4.71333],[145.95135500000015,-4.76444]]],[[[154.155243,-4.438055],[154.12661700000012,-4.37944],[154.13272100000017,-4.371666],[154.15277100000014,-4.37944],[154.155243,-4.438055]]],[[[152.235229,-4.20722],[152.22689800000012,-4.25083],[152.17691000000013,-4.2175],[152.17221,-4.293333],[152.355804,-4.343056],[152.405823,-4.68889],[152.386108,-4.793333],[152.241333,-4.984445],[152.157196,-5.00694],[151.990509,-4.97222],[151.97079500000018,-4.993333],[151.974121,-5.157778],[152.14413500000012,-5.341389],[152.09606900000017,-5.45722],[151.82553100000018,-5.601111],[151.70553600000017,-5.53111],[151.459412,-5.53583],[151.38470500000017,-5.8072],[151.16564900000014,-5.958071],[151.003052,-6.0225],[150.85580400000015,-6.040833],[150.77164,-6.14167],[150.66387900000018,-6.169167],[150.63525400000015,-6.14861],[150.468567,-6.276112],[150.22274800000014,-6.28833],[150.18081700000016,-6.255],[150.01831100000015,-6.323611],[149.97858,-6.273334],[149.63470500000014,-6.308055],[149.482452,-6.119444],[149.31192,-6.05722],[149.056915,-6.164166],[149.079681,-6.136389],[149.055542,-6.04444],[148.883,-5.981665],[148.87606800000015,-5.943662],[148.76443,-5.86499],[148.391968,-5.77941],[148.32309,-5.675377],[148.35995,-5.48805],[148.42859,-5.45111],[148.51971400000014,-5.5025],[148.985779,-5.47306],[149.189148,-5.558333],[149.22076400000014,-5.606112],[149.6113590000001,-5.518611],[149.66830400000015,-5.519444],[149.685516,-5.56305],[149.88079800000014,-5.535],[149.981354,-5.433332],[149.91830400000015,-5.34611],[150.002777,-5.169444],[150.019714,-5.04778],[150.08886700000016,-5.00778],[150.204956,-5.07056],[150.072479,-5.15167],[150.04248,-5.30861],[150.123291,-5.517222],[150.164429,-5.55139],[150.296631,-5.569167],[150.412476,-5.45861],[150.48855600000013,-5.44694],[150.578308,-5.479167],[150.624115,-5.55611],[150.92441,-5.48722],[151.01138300000014,-5.40889],[151.0285950000001,-5.27167],[151.084686,-5.15639],[151.26221,-4.98639],[151.441071,-4.93667],[151.61496,-4.97],[151.676086,-4.908055],[151.658325,-4.61639],[151.501373,-4.23917],[151.51166,-4.204445],[151.5369260000001,-4.181944],[151.7830510000001,-4.20583],[151.8521730000001,-4.22833],[151.8952640000001,-4.315],[151.969421,-4.336945],[152.13858,-4.204445],[152.16608,-4.145555],[152.235229,-4.20722]]],[[[145.057739,-4.13528],[145.022217,-4.07667],[145.068848,-4.045],[145.10995500000013,-4.098333],[145.057739,-4.13528]]],[[[153.6455380000001,-4.140278],[153.58441200000016,-4.095834],[153.6586,-4.01917],[153.671631,-4.10472],[153.6455380000001,-4.140278]]],[[[153.2583310000001,-3.498889],[153.21109,-3.48861],[153.193848,-3.468611],[153.23358,-3.44667],[153.2583310000001,-3.498889]]],[[[154.8330380000001,-3.51028],[154.81857300000013,-3.530278],[154.79941,-3.425],[154.830261,-3.48028],[154.8330380000001,-3.51028]]],[[[153.34524,-3.41194],[153.343292,-3.416667],[153.26248,-3.40444],[153.333588,-3.371389],[153.34524,-3.41194]]],[[[152.646362,-3.228611],[152.53887900000015,-3.10611],[152.5997,-3.04806],[152.64859,-3.048611],[152.668854,-3.155278],[152.646362,-3.228611]]],[[[150.94134500000015,-2.921945],[151.02164,-2.971944],[150.76608,-2.97944],[150.87912,-2.90889],[150.94134500000015,-2.921945]]],[[[152.0699770000001,-3.001389],[151.9605100000001,-2.887222],[151.9735720000001,-2.84805],[152.07886,-2.928333],[152.0699770000001,-3.001389]]],[[[152.00219700000014,-2.82889],[151.93164100000013,-2.8325],[151.932465,-2.70833],[152.00915,-2.74944],[152.00219700000014,-2.82889]]],[[[152.02221700000018,-2.6675],[151.95773,-2.66472],[151.98386,-2.59611],[152.035248,-2.63111],[152.02221700000018,-2.6675]]],[[[141.88998400000014,-2.97],[142.003601,-2.956111],[142.124969,-3.05944],[143.032745,-3.36278],[143.194702,-3.36],[143.51608,-3.43444],[143.60913100000016,-3.545278],[143.79498,-3.61222],[144.016937,-3.81055],[144.24911,-3.87361],[144.278595,-3.805833],[144.511658,-3.82083],[144.57135000000014,-3.991944],[144.858307,-4.098333],[144.98162800000011,-4.22639],[145.033051,-4.335556],[145.089966,-4.371666],[145.338013,-4.39222],[145.7355040000001,-4.802777],[145.8136,-5.065556],[145.724396,-5.41222],[145.76638800000012,-5.485277],[145.963593,-5.47306],[146.289154,-5.588889],[146.46524,-5.60472],[146.653046,-5.75194],[146.775787,-5.793612],[146.79631000000015,-5.834418],[146.923004,-5.841946],[147.046326,-5.94417],[147.22882100000012,-5.972235],[147.2849430000001,-5.935294],[147.423279,-5.96058],[147.573303,-6.05528],[147.826355,-6.337222],[147.866638,-6.47],[147.869415,-6.660833],[147.81051600000012,-6.71778],[147.568024,-6.75194],[147.19998,-6.745833],[147.149994,-6.713889],[146.96136,-6.74722],[146.94635,-6.959445],[147.037476,-7.044444],[147.14025900000013,-7.22111],[147.1785890000001,-7.463889],[147.33691,-7.50528],[147.45773,-7.59778],[147.67081,-7.79389],[147.718567,-7.9325],[147.866638,-7.93722],[147.9744,-7.99611],[148.00442,-8.066666],[148.135254,-8.06611],[148.20581100000015,-8.295279],[148.23053,-8.559723],[148.44302400000015,-8.675001],[148.530823,-8.993055],[148.60412600000015,-9.0825],[148.7536,-9.104166],[149.13776,-9.00667],[149.314697,-9.01889],[149.33801,-9.129721],[149.17968800000017,-9.35361],[149.2199710000001,-9.47472],[149.348846,-9.521946],[149.454407,-9.60305],[150.008881,-9.631388],[150.05191000000013,-9.72417],[149.71747,-9.82667],[149.914154,-10.04889],[149.988281,-10.0825],[150.18414300000018,-10.09333],[150.308319,-10.1925],[150.579681,-10.24111],[150.63525400000015,-10.280834],[150.8777470000001,-10.228333],[150.636383,-10.350832],[150.4158,-10.30028],[150.358307,-10.331388],[150.352173,-10.395279],[150.657745,-10.481112],[150.680267,-10.5775],[150.48162800000011,-10.62194],[150.42413,-10.690556],[150.20968600000015,-10.700556],[150.11300700000015,-10.6675],[150.013031,-10.57055],[149.850525,-10.546946],[149.883331,-10.50445],[149.989685,-10.518057],[150.07886,-10.462778],[149.747742,-10.34278],[149.536652,-10.361666],[149.093292,-10.234165],[148.934967,-10.26722],[148.79443400000014,-10.239166],[148.680267,-10.14944],[148.637482,-10.18833],[148.40332,-10.200556],[148.15756,-10.073709],[148.08886700000016,-10.13583],[147.9524540000001,-10.14583],[147.86328100000011,-10.04278],[147.766083,-10.05611],[147.619965,-9.99083],[147.50415,-9.871387],[147.48828100000014,-9.76667],[147.2966,-9.534125],[147.08000200000015,-9.43415],[147.08886700000016,-9.491667],[146.926636,-9.282778],[146.893585,-9.27722],[146.88888,-9.183332],[146.90704300000016,-9.131277],[146.9696960000001,-9.09139],[146.972473,-9.02917],[146.91748,-9.10611],[146.586639,-8.999166],[146.545532,-8.9025],[146.56747400000017,-8.8075],[146.44134500000015,-8.62472],[146.318573,-8.50889],[146.238556,-8.285833],[146.11108400000012,-8.16389],[146.089691,-8.09111],[145.616913,-7.937778],[145.432739,-7.948055],[145.18272400000012,-7.81384],[145.155685,-7.845995],[144.87966900000015,-7.7825],[144.83856200000014,-7.74972],[144.87357,-7.703055],[144.862457,-7.61056],[144.81942700000013,-7.69],[144.58828700000015,-7.6575],[144.52054,-7.50194],[144.508331,-7.62139],[144.40692100000012,-7.51944],[144.46774300000016,-7.743055],[144.35886,-7.745],[144.360229,-7.6825],[144.3107910000001,-7.616666],[144.24356,-7.66694],[144.271912,-7.77361],[144.213013,-7.79528],[143.9119260000001,-7.69694],[143.76831100000015,-7.506667],[143.664825,-7.467649],[143.83941700000014,-7.715278],[143.854401,-7.81305],[143.958008,-7.97862],[143.884705,-8.04167],[143.75525,-8.041111],[143.661377,-7.99139],[143.485779,-7.99139],[143.4441220000001,-7.913334],[143.35831,-7.9025],[143.547958,-8.059],[143.630524,-8.19833],[143.61191,-8.243889],[143.338562,-8.253889],[142.97329700000012,-8.34417],[142.84579500000018,-8.286667],[142.69635,-8.2675],[142.50582900000018,-8.33667],[142.43747,-8.331388],[142.38665800000012,-8.19361],[142.327759,-8.16389],[142.22161900000015,-8.173334],[142.13721,-8.22555],[142.314148,-8.18],[142.361359,-8.20639],[142.38245,-8.31917],[142.439423,-8.371387],[142.512756,-8.37194],[142.63552900000013,-8.31028],[142.73468000000014,-8.3225],[142.9061,-8.423611],[143.11022900000012,-8.47028],[143.24939000000018,-8.58139],[143.392761,-8.770279],[143.406921,-8.96194],[143.363007,-9.013613],[143.04248,-9.091944],[142.63888,-9.334723],[142.57162500000015,-9.328056],[142.425812,-9.22806],[142.20996100000013,-9.165001],[141.60886,-9.23611],[141.375244,-9.14333],[141.160797,-9.2375],[141.09079,-9.20917],[141.007019,-9.128468],[141.00613,-6.89328],[140.9494,-6.90361],[140.90277100000014,-6.855833],[140.85940600000015,-6.72861],[140.863007,-6.63139],[140.947205,-6.5],[140.92804000000012,-6.45083],[140.96359300000017,-6.33861],[141.00613,-6.33292],[141.002472,-2.60708],[141.04636,-2.59],[141.214142,-2.622222],[141.88998400000014,-2.97]]],[[[150.90652,-2.635944],[151.19025,-2.82611],[151.419128,-2.898056],[151.815247,-3.19778],[151.86191,-3.18694],[152.055817,-3.24778],[152.21051,-3.460556],[152.35522500000013,-3.54],[152.411926,-3.63361],[152.496918,-3.651389],[152.573853,-3.82167],[152.769714,-3.90028],[152.98968500000012,-4.07583],[153.131622,-4.26028],[153.132172,-4.37861],[153.04053,-4.485277],[153.0774540000001,-4.60055],[152.97467,-4.76667],[152.89166,-4.8225],[152.7355040000001,-4.66083],[152.66275,-4.457223],[152.697754,-4.365],[152.69165,-4.180555],[152.5387270000001,-3.900095],[152.37497,-3.727777],[152.35522500000013,-3.650556],[152.28942900000013,-3.57944],[152.151642,-3.48639],[151.9349670000001,-3.44555],[151.758331,-3.32444],[151.617188,-3.17389],[151.46219,-3.11306],[151.43829300000016,-3.06361],[151.21497,-2.94194],[151.10662800000011,-2.84333],[150.999695,-2.78722],[150.819427,-2.78778],[150.72967,-2.740556],[150.89498900000012,-2.705],[150.87364200000013,-2.65094],[150.792755,-2.616666],[150.81137100000012,-2.56],[150.90652,-2.635944]]],[[[150.45831,-2.653611],[150.36773700000015,-2.68667],[150.341064,-2.6625],[150.18414300000018,-2.68528],[149.948578,-2.471666],[150.21637,-2.37778],[150.443298,-2.47583],[150.45831,-2.653611]]],[[[147.812469,-2.34972],[147.75692700000013,-2.3525],[147.815247,-2.24361],[147.87912,-2.29361],[147.812469,-2.34972]]],[[[147.300812,-2.02528],[147.41775500000017,-2.05056],[147.39194,-1.96083],[147.448029,-2.01417],[147.437744,-2.06556],[147.275269,-2.12111],[147.201904,-2.19167],[146.98053,-2.19917],[146.72634900000014,-2.160833],[146.568024,-2.236667],[146.5249940000001,-2.19083],[146.580536,-1.997222],[146.63858,-1.978611],[146.86969,-1.94917],[147.118286,-1.96889],[147.300812,-2.02528]]],[[[142.866364,-1.697778],[142.86441,-1.713611],[142.813599,-1.73278],[142.82107,-1.69583],[142.866364,-1.697778]]],[[[144.521912,-1.395555],[144.5061,-1.389444],[144.50555,-1.38056],[144.516388,-1.38194],[144.521912,-1.395555]]],[[[149.7196960000001,-1.433333],[149.7908,-1.58139],[149.7319030000001,-1.60333],[149.69913,-1.560833],[149.65942400000014,-1.58],[149.52777100000014,-1.45444],[149.57995600000015,-1.35528],[149.7196960000001,-1.433333]]],[[[144.52054,-1.12083],[144.514435,-1.11611],[144.51721,-1.098333],[144.52249100000017,-1.105278],[144.52054,-1.12083]]]]}},{"type":"Feature","properties":{"FIPS":"PU","ISO2":"GW","ISO3":"GNB","UN":624,"NAME":"Guinea-Bissau","AREA":2812,"POP2005":1596929,"REGION":2,"SUBREGION":11,"LON":-14.651,"LAT":12.125},"geometry":{"type":"MultiPolygon","coordinates":[[[[-15.88583,11.052221],[-15.98111,11.049444000000108],[-15.94639,11.195],[-15.89917,11.144722],[-15.88583,11.052221]]],[[[-16.00584,11.068333],[-16.06139,11.163055],[-15.98056,11.202499000000103],[-15.96917,11.128054],[-16.00584,11.068333]]],[[[-16.08806,11.025555],[-16.18417,11.035000000000139],[-16.24417,11.100555],[-16.0825,11.206944],[-16.05278,11.185555],[-16.06782,11.16698],[-16.04861,11.077499],[-16.08806,11.025555]]],[[[-15.86222,11.199999],[-15.90639,11.224998],[-15.86333,11.298611],[-15.830278,11.300833],[-15.86222,11.199999]]],[[[-15.74,11.166943],[-15.77167,11.168888],[-15.77639,11.225832000000137],[-15.721668,11.293055],[-15.6675,11.306389],[-15.656946,11.229721],[-15.74,11.166943]]],[[[-16.17778,11.215277],[-16.28139,11.22361],[-16.264446,11.28167],[-16.222225,11.308332],[-16.16083,11.290277],[-16.14333,11.26139],[-16.17778,11.215277]]],[[[-15.679724,11.439444],[-15.717501,11.435276],[-15.74306,11.458332],[-15.66583,11.502222000000131],[-15.651112,11.46],[-15.679724,11.439444]]],[[[-16.21278,11.439722],[-16.300556,11.449444],[-16.24111,11.501665],[-16.16445,11.515],[-16.21278,11.439722]]],[[[-16.250557,11.53666],[-16.31222,11.4772210000001],[-16.36861,11.50778],[-16.419445,11.482777],[-16.42195,11.532776],[-16.39389,11.545832000000132],[-16.244724,11.5775],[-16.250557,11.53666]]],[[[-15.9525,11.423054],[-16.034725,11.417221],[-16.065,11.44972],[-15.95833,11.59417],[-15.90556,11.5775],[-15.90306,11.54222],[-15.915001,11.44861],[-15.9525,11.423054]]],[[[-15.55306,11.517221],[-15.63361,11.53528],[-15.47222,11.631109],[-15.500834,11.560276000000101],[-15.55306,11.517221]]],[[[-16.031948,11.755833],[-16.090836,11.754721],[-16.15389,11.804165000000124],[-16.16222,11.86861],[-15.97833,11.90583],[-16.031948,11.755833]]],[[[-16.23639,11.836943],[-16.31611,11.890276],[-16.30167,11.971666],[-16.23067,11.898361],[-16.184723,11.876665],[-16.23639,11.836943]]],[[[-14.51694,12.67972200000014],[-13.713139,12.67722],[-13.71667,12.57444],[-13.64417,12.471388000000104],[-13.666945,12.323055],[-13.73167,12.258055000000127],[-13.811388,12.25472],[-13.80417,12.29222],[-13.859444,12.27861],[-13.963114,12.202526],[-13.971035,12.154758],[-13.708612,12.012775],[-13.707224,11.719999],[-13.995,11.64083],[-14.27639,11.678888],[-14.30917,11.628887],[-14.51528,11.512220000000127],[-14.68694,11.509722],[-14.808334,11.347776000000124],[-14.961945,11.01638800000012],[-15.085,10.922777],[-15.115835,10.974443],[-15.09944,11.065554],[-15.02611,11.145],[-15.02278,11.195276],[-15.23389,10.993889000000138],[-15.27417,11.029999],[-15.21272,11.092278],[-15.20417,11.231943],[-15.235834,11.219721],[-15.22639,11.127777],[-15.349167,11.13917],[-15.40722,11.184999],[-15.42722,11.28889],[-15.386391,11.373333],[-15.3375,11.360832],[-15.26528,11.425913],[-15.32556,11.38],[-15.38076,11.405325],[-15.492224,11.3275],[-15.50861,11.35027700000012],[-15.47528,11.457777000000135],[-15.27972,11.620554],[-15.18778,11.64083],[-15.110001,11.615555],[-15.09611,11.571388],[-15.02722,11.59417],[-15.172779,11.65639],[-15.3225,11.631666],[-15.34167,11.68194],[-15.384167,11.624998],[-15.37195,11.590555],[-15.44417,11.550833],[-15.467501,11.60222],[-15.42353,11.683666],[-15.53389,11.675278],[-15.55667,11.723331],[-15.458612,11.865276000000106],[-15.384724,11.885],[-15.21556,11.865],[-15.130835,11.8933320000001],[-15.05889,11.792776],[-14.968334,11.748055],[-14.931946,11.750832],[-15.06444,11.841389],[-15.003889,11.974165],[-15.08583,11.983332],[-15.208057,11.902498],[-15.36056,11.96305500000011],[-15.430834,11.958887],[-15.652224,11.804722],[-15.96333,11.734165000000132],[-15.92972,11.876944],[-15.857779,11.9725],[-15.78806,12.001665000000115],[-15.726667,11.965],[-15.70444,12.004444],[-15.852779,12.01667],[-15.919168,11.988888],[-15.975,11.915554],[-16.12167,11.881388],[-16.25333,11.930832000000123],[-16.27911,11.979097000000138],[-16.335659,11.999998],[-16.334446,12.15111],[-16.11056,12.330832],[-16.35472,12.19166600000011],[-16.458057,12.171665],[-16.56361,12.272499],[-16.676392,12.33555],[-16.71777,12.322426],[-16.68445,12.359999],[-16.515,12.347776000000122],[-16.381668,12.374722000000133],[-16.20917,12.460833],[-15.68528,12.429998000000126],[-15.4194,12.551407],[-15.21806,12.684721],[-14.51694,12.67972200000014]]]]}},{"type":"Feature","properties":{"FIPS":"QA","ISO2":"QA","ISO3":"QAT","UN":634,"NAME":"Qatar","AREA":1100,"POP2005":796186,"REGION":142,"SUBREGION":145,"LON":51.191,"LAT":25.316},"geometry":{"type":"Polygon","coordinates":[[[51.51759,25.383415],[51.513054,25.29472],[51.606384,25.269165],[51.611664,25.010277],[51.497215,24.845833],[51.437218,24.663055],[51.336937,24.57],[51.346664,24.636108],[51.271111,24.656944],[51.111366,24.556042],[50.969444,24.577774],[50.830956,24.749966],[50.865555,24.800831],[50.767662,25.129454],[50.751938,25.491108],[50.784721,25.523888],[50.841385,25.460278],[50.827499,25.593052],[50.948051,25.595554],[50.975555,25.640831],[50.912773,25.626942],[50.888054,25.712219],[50.923332,25.806942],[50.952499,25.774166],[50.975273,25.802498],[50.948326,25.856388],[51.042496,26.049442],[51.25444,26.152775],[51.34111,26.106941],[51.343887,26.040833],[51.397217,25.959721],[51.498329,25.950554],[51.568054,25.908333],[51.587494,25.693886],[51.53833,25.617496],[51.492218,25.605831],[51.472221,25.518887],[51.51759,25.383415]]]}},{"type":"Feature","properties":{"FIPS":"RE","ISO2":"RE","ISO3":"REU","UN":638,"NAME":"Reunion","AREA":250,"POP2005":785159,"REGION":2,"SUBREGION":14,"LON":55.538,"LAT":-21.122},"geometry":{"type":"Polygon","coordinates":[[[55.709999,-20.998058],[55.783607,-21.103336],[55.849159,-21.131668],[55.85305,-21.168613],[55.821106,-21.328892],[55.674164,-21.37389],[55.533333,-21.354725],[55.34333,-21.268612],[55.219719,-21.027779],[55.294441,-20.921669],[55.448883,-20.856392],[55.662498,-20.903614],[55.709999,-20.998058]]]}},{"type":"Feature","properties":{"FIPS":"RO","ISO2":"RO","ISO3":"ROU","UN":642,"NAME":"Romania","AREA":22987,"POP2005":21627557,"REGION":150,"SUBREGION":151,"LON":24.969,"LAT":45.844},"geometry":{"type":"Polygon","coordinates":[[[20.726955,46.17556],[20.75333,46.238884],[20.820274,46.274719],[21.059444,46.239166],[21.176666,46.295555],[21.19722,46.391388],[21.288887,46.460548],[21.326664,46.619995],[21.526943,46.718605],[21.488052,46.752777],[21.519722,46.815277],[21.613331,46.884163],[21.695831,47.000832],[21.651108,47.029716],[21.790833,47.120277],[21.922497,47.354439],[22.0075,47.377777],[22.015274,47.514442],[22.186386,47.59861],[22.270554,47.723885],[22.454441,47.796387],[22.65361,47.776382],[22.774441,47.836388],[22.894804,47.95454],[23.084442,48.011108],[23.147774,48.104164],[23.256386,48.091934],[23.299442,48.043884],[23.480553,47.977493],[23.566097,47.999992],[24.026665,47.95694],[24.125553,47.911942],[24.244164,47.90361],[24.427776,47.95916],[24.556389,47.953049],[24.668053,47.902222],[24.693886,47.849159],[24.816387,47.813049],[24.919441,47.711662],[25.109997,47.75499],[25.23027,47.881371],[25.326103,47.915268],[26.149998,47.982201],[26.272221,48.076103],[26.314907,48.186165],[26.52972,48.2075],[26.704163,48.263885],[26.825829,48.244156],[27.000553,48.155548],[27.158604,47.985817],[27.299438,47.6586],[27.433331,47.565262],[27.628326,47.311928],[27.725269,47.282494],[27.798054,47.152489],[28.08194,46.980537],[28.116108,46.833878],[28.233883,46.666656],[28.252499,46.435822],[28.091385,46.075829],[28.166939,45.670273],[28.158604,45.624985],[28.06916,45.583321],[28.176941,45.469437],[28.27916,45.430817],[28.343327,45.315536],[28.694714,45.219986],[28.785275,45.229996],[28.84861,45.301659],[29.226109,45.426941],[29.411385,45.435822],[29.51833,45.4086],[29.654999,45.327766],[29.664331,45.211803],[29.623882,45.213051],[29.660275,45.112762],[29.613049,44.851662],[29.549438,44.820267],[29.214161,44.793053],[29.067493,44.822762],[29.039436,44.92054],[29.111938,44.96888],[29.047215,45.002769],[28.975552,45.004715],[28.868324,44.943047],[28.863605,44.878319],[28.949715,44.821381],[28.907219,44.755547],[28.798328,44.719437],[28.779142,44.657059],[28.851662,44.648598],[28.909992,44.689713],[28.899715,44.710815],[28.995274,44.680817],[28.951656,44.628876],[28.981663,44.677216],[28.960274,44.689713],[28.819672,44.616951],[28.755833,44.61805],[28.7575,44.519722],[28.927773,44.617493],[28.831387,44.482216],[28.634995,44.311935],[28.660275,43.975548],[28.583244,43.747765],[28.257771,43.764435],[28.047218,43.831657],[27.997215,43.859154],[27.918884,44.005547],[27.736382,43.959717],[27.656109,44.042496],[27.399998,44.021935],[27.29055,44.088051],[27.272713,44.132149],[27.036427,44.147339],[26.144161,43.986382],[25.772495,43.705544],[25.416111,43.624718],[25.224716,43.687485],[24.705555,43.715271],[24.506386,43.762215],[24.352497,43.695549],[24.179996,43.684715],[23.418224,43.856171],[23.063602,43.802177],[22.875275,43.842499],[22.840687,43.888283],[22.88472,43.988052],[23.003407,44.017799],[23.03722,44.084442],[22.686386,44.218887],[22.687496,44.277771],[22.567219,44.308327],[22.461712,44.453201],[22.459999,44.482216],[22.590275,44.549164],[22.699585,44.522522],[22.754444,44.539719],[22.713886,44.604721],[22.604721,44.622215],[22.436386,44.714439],[22.31361,44.664162],[22.176941,44.481941],[22.128609,44.481384],[22.039444,44.551666],[21.993889,44.635551],[21.649441,44.657776],[21.588333,44.763329],[21.394196,44.785934],[21.366108,44.864441],[21.558609,44.896111],[21.540833,44.938606],[21.366943,45.008331],[21.443054,45.053604],[21.513611,45.151108],[21.416664,45.214722],[21.276386,45.229721],[21.048885,45.316383],[20.808331,45.478882],[20.766666,45.609993],[20.798885,45.656662],[20.801388,45.76416],[20.713333,45.743889],[20.591663,45.894165],[20.378052,45.97805],[20.261024,46.11485],[20.276665,46.144722],[20.48695,46.181107],[20.624722,46.130272],[20.726955,46.17556]]]}},{"type":"Feature","properties":{"FIPS":"MD","ISO2":"MD","ISO3":"MDA","UN":498,"NAME":"Republic of Moldova","AREA":3288,"POP2005":3876661,"REGION":150,"SUBREGION":151,"LON":28.599,"LAT":47.193},"geometry":{"type":"Polygon","coordinates":[[[28.119717,46.854404],[28.07972,46.983597],[27.798054,47.152489],[27.725269,47.282494],[27.628326,47.311928],[27.433331,47.565262],[27.299438,47.6586],[27.158604,47.985817],[27.000553,48.155548],[26.808609,48.249435],[26.634995,48.257164],[26.648884,48.29805],[26.703049,48.344711],[27.244995,48.368881],[27.51952,48.4655],[27.755554,48.451385],[27.948605,48.32972],[28.085552,48.307495],[28.089165,48.23082],[28.222496,48.205269],[28.35194,48.24305],[28.364441,48.185822],[28.436661,48.145828],[28.501942,48.134163],[28.567219,48.163048],[28.802776,48.127213],[28.882217,48.005554],[28.98999,47.934418],[29.141937,47.986092],[29.258327,47.768593],[29.198048,47.612206],[29.131386,47.548325],[29.184441,47.443047],[29.252499,47.455269],[29.380276,47.357773],[29.416386,47.288322],[29.478882,47.294159],[29.500832,47.345543],[29.57888,47.328606],[29.600552,47.271935],[29.573605,46.946091],[29.949997,46.814156],[29.968884,46.575272],[29.898602,46.529984],[30.132214,46.409714],[30.103886,46.381927],[29.920273,46.381927],[29.866383,46.346375],[29.735825,46.44249],[29.626659,46.369156],[29.499718,46.432213],[29.5075,46.481102],[29.478329,46.491936],[29.350826,46.469986],[29.303326,46.434151],[29.306664,46.402206],[29.224159,46.365273],[29.200829,46.381371],[29.228329,46.484711],[29.203297,46.544968],[28.994434,46.478325],[28.932217,46.428322],[28.949997,46.289429],[29.041103,46.193871],[28.971935,46.006653],[28.755833,45.959984],[28.762497,45.847481],[28.524441,45.711098],[28.489433,45.664986],[28.530273,45.64193],[28.522774,45.517769],[28.283886,45.525269],[28.21484,45.448647],[28.06916,45.583321],[28.158604,45.624985],[28.166939,45.670273],[28.091385,46.075829],[28.252499,46.435822],[28.233883,46.666656],[28.119717,46.854404]]]}},{"type":"Feature","properties":{"FIPS":"RP","ISO2":"PH","ISO3":"PHL","UN":608,"NAME":"Philippines","AREA":29817,"POP2005":84566163,"REGION":142,"SUBREGION":35,"LON":122.466,"LAT":11.118},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.47221400000012,4.648055000000113],[119.46360800000014,4.641388],[119.455833,4.908888],[119.510536,4.763888],[119.47221400000012,4.648055000000113]]],[[[120.01915,5.030277000000126],[120.01888,5.02861],[120.014709,5.030832],[120.017487,5.031111],[120.01915,5.030277000000126]]],[[[119.947197,5.076944],[119.94054,5.072499],[119.93414300000016,5.075832000000105],[119.941093,5.08361],[119.947197,5.076944]]],[[[120.244141,5.300832000000128],[120.22665,5.306388],[120.23108700000012,5.325],[120.244713,5.304721],[120.244141,5.300832000000128]]],[[[120.253601,5.233333],[120.224152,5.124721],[120.04942300000015,5.18361],[119.967758,5.08028],[119.945091,5.09298600000011],[119.8311,5.059165],[119.827477,5.149444],[120.027481,5.234999],[120.177757,5.343611],[120.218048,5.34111],[120.21779600000013,5.305163],[120.253883,5.282222],[120.253601,5.233333]]],[[[125.41470300000016,5.36111],[125.3574830000001,5.36222],[125.329987,5.387221],[125.40582,5.430277],[125.41470300000016,5.36111]]],[[[125.478317,5.388332],[125.450272,5.421944],[125.479431,5.491943000000106],[125.495247,5.423055],[125.478317,5.388332]]],[[[120.869713,5.49139],[120.81192,5.530277],[120.84332,5.585],[120.90998800000011,5.53611],[120.869713,5.49139]]],[[[121.183868,5.787499000000139],[121.13916000000019,5.785276],[121.146378,5.84889],[121.20694,5.81055],[121.183868,5.787499000000139]]],[[[121.185257,6.04],[121.38804600000014,6.010278],[121.42581,5.952499000000103],[121.28804,5.854166],[121.198029,5.949165000000107],[121.083603,5.888055],[120.93221300000016,5.887777000000142],[120.87552600000015,5.92111],[120.89221,6],[121.015549,6.07805],[121.12831100000015,6.086666],[121.185257,6.04]]],[[[121.863037,6.016388],[121.953323,6.05111],[121.858871,5.990555],[121.762772,6.09083],[121.863037,6.016388]]],[[[120.568329,6.24472100000014],[120.477768,6.26417],[120.59971600000017,6.396111],[120.579437,6.253611],[120.568329,6.24472100000014]]],[[[122.23027000000013,6.660832000000141],[122.23831,6.592221000000109],[122.163307,6.458055],[122.03387,6.41111],[121.919983,6.44972],[121.79470800000011,6.593611],[121.81999,6.672776],[121.933868,6.669166000000132],[122.02361,6.751111],[122.07415800000011,6.753333000000111],[122.14415,6.68111],[122.23027000000013,6.660832000000141]]],[[[118.5336,7.034999000000141],[118.540268,6.965277],[118.41721300000016,7.022222],[118.511383,7.050554],[118.5336,7.034999000000141]]],[[[125.79498,6.93278],[125.76749,6.8875],[125.669983,7.075],[125.69914200000015,7.191666],[125.796097,7.121943],[125.79498,6.93278]]],[[[117.02222,7.80888700000014],[116.96082300000012,7.91028],[116.94999700000017,8.03222],[117.065536,8.078609000000142],[117.09387200000013,7.90889],[117.02222,7.80888700000014]]],[[[117.298866,8.18222],[117.265823,8.211109],[117.268051,8.30611],[117.31805,8.33111],[117.354713,8.28611],[117.346649,8.212498],[117.298866,8.18222]]],[[[126.236649,9.008333],[126.231659,8.998053],[126.229431,9.01305],[126.236649,9.008333]]],[[[126.26361,8.997219],[126.25026700000012,9.005833],[126.246643,9.013611],[126.26053600000012,9.006666],[126.26361,8.997219]]],[[[124.778587,9.075554000000125],[124.6436,9.155277],[124.63275,9.20722],[124.67276,9.253054000000134],[124.73359700000015,9.250277],[124.77887,9.20722],[124.81026,9.106941],[124.778587,9.075554000000125]]],[[[123.674988,9.226387000000102],[123.70694,9.135555],[123.609421,9.09222],[123.55693,9.096664],[123.45720700000015,9.190554],[123.473312,9.221943000000124],[123.559418,9.229443],[123.600273,9.298609000000111],[123.674988,9.226387000000102]]],[[[123.77361,9.544165],[123.74359100000014,9.551943],[123.744713,9.595276],[123.84499400000016,9.63611],[123.86609,9.596109],[123.77361,9.544165]]],[[[125.95247700000014,9.557499],[125.90054,9.61694100000011],[125.9122,9.75028],[125.9383090000001,9.756388],[125.99109,9.66194],[125.95247700000014,9.557499]]],[[[126.048599,9.23194100000012],[126.12831100000015,9.260832000000107],[126.18609600000015,9.242775],[126.1680530000001,9.096943],[126.23339,9.031437],[126.22207600000013,9.0136],[126.225845,8.99628],[126.291092,8.97416],[126.32527200000015,8.917221],[126.33499100000017,8.84],[126.30415300000016,8.78528],[126.08360300000014,8.607498],[126.14415,8.527498],[126.356644,8.54472],[126.39221,8.507500000000107],[126.3261,8.23638],[126.39470700000015,8.203053],[126.44247,8.24110800000011],[126.46582,8.225275000000124],[126.36219800000013,7.901943],[126.38970900000014,7.8275],[126.454712,7.807776],[126.55193,7.692221],[126.598038,7.48055],[126.55581700000016,7.396388],[126.55442800000014,7.303887],[126.585823,7.284999],[126.455261,7.051665000000128],[126.331673,7.001389000000131],[126.280823,6.92305],[126.34583,6.853054],[126.346367,6.79722],[126.28804000000014,6.817499],[126.262497,6.92555],[126.19664,6.944721],[126.16527,6.881665],[126.258614,6.750833],[126.220833,6.634722],[126.19165,6.272222],[126.08472,6.528888],[126.07666000000016,6.84361],[125.97832,6.91972],[125.982208,7.020555],[125.88804600000013,7.11555],[125.841087,7.251389],[125.85555,7.349721],[125.80859,7.361388],[125.652206,7.236666000000127],[125.65749400000016,7.113333000000124],[125.604431,7.043611],[125.52582,7.03083],[125.377197,6.719721000000106],[125.38943,6.599166],[125.450272,6.590555000000109],[125.59332,6.476665],[125.71193,6.169443],[125.703323,6.027222000000108],[125.661926,5.916666],[125.539703,5.7825],[125.40555,5.563333],[125.28942900000014,5.57833],[125.285538,5.688332],[125.19165,5.767221],[125.17693,5.835833],[125.285538,5.975554],[125.26361,6.09167],[125.154709,6.10139],[125.087196,5.872776000000101],[124.95694000000015,5.851388],[124.52638200000013,6.019166],[124.18581,6.210555000000113],[124.04221300000016,6.431665000000123],[124.03554,6.740832000000125],[123.970543,6.76889],[123.94859,6.823333000000105],[124.03970300000013,7.10861],[124.154984,7.171944],[124.2686,7.374443],[124.236923,7.419166000000132],[124.16442900000014,7.408054],[124.01193200000013,7.648610000000133],[123.77443,7.699165000000107],[123.676651,7.812499],[123.56330900000013,7.849721000000102],[123.458878,7.810555000000136],[123.449417,7.755278],[123.484421,7.724166000000138],[123.468872,7.641666],[123.33472,7.557776000000103],[123.44693,7.441387],[123.45471,7.367498],[123.40305300000011,7.356388],[123.3358230000001,7.41055],[123.286926,7.464166],[123.30247,7.524444],[123.22415,7.532777],[123.17637600000012,7.462777],[123.124977,7.503888],[123.10277,7.552499],[123.19553,7.586666],[123.11638,7.729444],[123.04165600000012,7.649444],[122.99443,7.455555],[122.878593,7.466110000000128],[122.844994,7.434721],[122.929977,7.422776],[122.97692900000015,7.361943],[122.832764,7.275277],[122.78526,7.349166000000138],[122.80748,7.425277],[122.841927,7.433887],[122.78027,7.471388],[122.78194,7.67861],[122.81694000000016,7.732222],[122.786102,7.766388],[122.623871,7.773055000000112],[122.54776,7.730277],[122.35915,7.470554000000106],[122.34471,7.401388],[122.39415,7.38583],[122.33194,7.308887],[122.32193,7.340277],[122.294144,7.323889],[122.251663,7.107222],[122.14998600000013,6.905277],[122.043587,6.912221000000102],[121.921097,6.99416],[121.900269,7.143055],[122.034714,7.326666000000102],[122.07693,7.504722000000129],[122.125809,7.563333],[122.111099,7.775832],[122.22331,7.962221000000112],[122.44165,8.065554000000134],[122.92302700000015,8.15083],[122.992752,8.204443],[122.983047,8.419443000000115],[123.027771,8.49139],[123.179428,8.533888000000104],[123.30470300000013,8.523054],[123.37915,8.7272210000001],[123.43275,8.71833],[123.548889,8.620384],[123.62164300000018,8.658333],[123.69304,8.633053],[123.818047,8.476942],[123.868317,8.164165],[123.7705380000001,8.06527],[123.65193,8.0166660000001],[123.671097,7.953888],[123.96193,8.17111],[124.22276,8.210276],[124.260818,8.273609],[124.245407,8.32307500000013],[124.280823,8.462498],[124.3261,8.54722],[124.43221300000016,8.615274],[124.673309,8.47833],[124.727478,8.486385],[124.769707,8.592497],[124.737762,8.676388],[124.772217,8.96722],[124.80386,9.001665],[124.881653,9.01639],[125.090553,8.82527],[125.16165,8.851109],[125.27998400000013,8.990274],[125.42886,8.977221],[125.514709,9.006666],[125.532211,9.193331000000112],[125.3911,9.649721],[125.44026,9.809164],[125.55497700000011,9.762499000000105],[125.636383,9.611942],[125.922157,9.487261],[125.938583,9.446386],[125.9019320000001,9.407499],[126.048599,9.23194100000012]]],[[[124.574158,9.854719],[124.566093,9.849442],[124.56554,9.86194],[124.574158,9.86333100000013],[124.574158,9.854719]]],[[[123.38443,9.878885],[123.37552600000015,9.875553],[123.37220800000011,9.880552],[123.3797,9.888054],[123.38443,9.878885]]],[[[126.11304,9.744442],[126.031937,9.742496],[125.94553,9.830832],[126.060257,10.054165000000125],[126.175262,9.804165],[126.11304,9.744442]]],[[[125.286926,9.909164],[125.135269,10.064165000000116],[125.126648,10.15583],[125.21748400000011,10.122219],[125.28305,9.995552],[125.286926,9.909164]]],[[[124.48387100000012,10.05083100000013],[124.56442300000015,10.022221000000116],[124.573586,9.88629],[124.52101100000017,9.857187],[124.6007,9.805603000000133],[124.60277,9.767776],[124.57360800000015,9.731665],[124.5011,9.75028],[124.36554000000012,9.62694],[124.25888,9.59555],[123.95694000000013,9.598608],[123.862488,9.63361],[123.79332,9.729443],[123.78692600000011,9.843887],[124.045258,9.998331],[124.14888,10.146944],[124.37804,10.146387000000118],[124.48387100000012,10.05083100000013]]],[[[125.65942,9.82472],[125.58220700000015,9.823608],[125.62137,9.896111],[125.612488,9.946943],[125.47527300000012,10.131109],[125.51526600000011,10.32028],[125.645264,10.46889],[125.683319,10.388332],[125.65526,10.164444],[125.69914200000015,10.069719],[125.71193,9.89416],[125.65942,9.82472]]],[[[119.827209,10.43972],[119.783333,10.449442],[119.758331,10.556942000000104],[119.83638,10.606665],[120.002487,10.591387000000111],[119.993317,10.527498],[119.827209,10.43972]]],[[[124.367203,10.607775],[124.275818,10.587776000000133],[124.320541,10.70694200000014],[124.378593,10.684998],[124.367203,10.607775]]],[[[124.43747700000017,10.624998],[124.39082,10.645832],[124.45139,10.714998],[124.517487,10.659443],[124.43747700000017,10.624998]]],[[[122.635269,10.44361],[122.52554,10.404165],[122.47971300000017,10.487776],[122.524429,10.59333],[122.659416,10.748331],[122.71720900000012,10.712498],[122.73108700000012,10.617775],[122.635269,10.44361]]],[[[125.80247,10.68889],[125.75000000000011,10.68972],[125.662491,10.750832],[125.6922,10.823608],[125.821663,10.722775],[125.80247,10.68889]]],[[[121.040543,10.791943],[121.00388,10.836109],[121.0811,10.905277],[121.09166,10.846943],[121.040543,10.791943]]],[[[123.56387,10.794165],[123.465553,10.518055000000118],[123.3574830000001,10.426109],[123.2836,10.127775],[123.136383,9.836109],[123.1636,9.69861],[123.10637,9.629442],[123.31275900000013,9.333054000000118],[123.29637100000014,9.229719000000102],[123.133041,9.04639],[123.014709,9.03389],[122.936096,9.076109],[122.86360200000013,9.327221000000122],[122.603867,9.423332],[122.413879,9.658333],[122.39637800000014,9.728609],[122.45276600000011,9.973331],[122.666382,9.973331],[122.858322,10.0975],[122.833878,10.544165],[122.916656,10.609163],[122.952209,10.68722],[122.952477,10.894444000000135],[123.22442600000011,10.996664],[123.50332600000011,10.93861],[123.56387,10.794165]]],[[[125.672493,11.089998],[125.66470300000013,11.102776],[125.68193,11.103609],[125.682213,11.098053],[125.672493,11.089998]]],[[[124.019875,11.118942],[124.05470300000013,10.878054],[124.00499,10.410276000000124],[124.0269320000001,10.381941],[123.769707,10.223886000000107],[123.6386,10.07611],[123.610527,9.878885],[123.53915,9.802498],[123.472763,9.571943],[123.3641510000001,9.42555],[123.310257,9.411943],[123.296944,9.490274000000113],[123.348038,9.775831],[123.3716280000001,9.87125],[123.406166,9.88491],[123.374977,9.994442000000106],[123.506653,10.142776],[123.59915,10.35083],[123.709991,10.493887],[123.71165,10.555832000000123],[123.863876,10.812777],[123.96138,11.089998],[123.94664,11.183332],[124.001663,11.269444000000135],[124.05026,11.277498],[124.07222000000012,11.251944],[124.019875,11.118942]]],[[[123.75082,11.147499],[123.724991,11.133888],[123.692749,11.221386],[123.733047,11.300554],[123.78692600000011,11.184164],[123.75082,11.147499]]],[[[119.533867,11.362497000000133],[119.526093,11.360554],[119.522217,11.366665],[119.54027,11.373053],[119.533867,11.362497000000133]]],[[[119.50857,11.335606],[119.552757,11.336386],[119.56581100000017,11.288332],[119.483322,10.881386],[119.51389,10.826942],[119.598602,10.823887],[119.606934,10.72583],[119.712486,10.497498],[119.579987,10.406387],[119.3286,10.30944],[119.25,10.20638700000012],[119.199707,10.04611],[118.9422,9.972219],[118.877762,9.980831000000137],[118.754173,9.92639],[118.69136000000016,9.754999],[118.753365,9.654508000000135],[118.721916,9.65111],[118.35443,9.19361],[118.142487,9.146111],[118.00332600000013,8.87694],[117.88916,8.826109],[117.747757,8.688053000000139],[117.633881,8.657499],[117.45166000000017,8.502499],[117.37415,8.489998],[117.18581,8.325554],[117.259163,8.609442000000115],[117.6622,9.076942],[117.902481,9.263054000000125],[118.027206,9.259165],[118.606644,9.874441000000104],[118.754173,10.127775],[118.76582,10.071386],[118.738876,10.067497000000117],[118.77693,10.01417],[118.80108600000015,10.034721],[118.82471,10.104164],[118.798599,10.18861],[118.93471,10.209164],[119.015266,10.348331],[119.010269,10.374441],[118.95972,10.36083],[119.00555,10.438332000000116],[119.13610800000015,10.381941],[119.31247700000019,10.5825],[119.341927,10.7275],[119.26249700000017,10.779444],[119.21692700000017,10.959997],[119.26416,10.94972],[119.43109100000014,10.72083],[119.4561,10.723608],[119.41527,10.871109000000102],[119.34137,10.894999],[119.302467,11.002777],[119.32582100000012,11.101109],[119.37886,11.03722],[119.422493,11.033333],[119.42082200000014,11.304443],[119.47221400000012,11.424999],[119.5011,11.41361],[119.50857,11.335606]]],[[[119.83248900000012,11.37694],[119.76527,11.40111],[119.714706,11.476109000000122],[119.812187,11.52194],[119.87137,11.50666600000011],[119.83248900000012,11.37694]]],[[[124.63889,11.293331],[124.76304600000013,11.33666],[124.85637,11.422499000000128],[124.94747900000014,11.424999],[124.978043,11.25361],[125.02998400000011,11.195831],[125.04082,10.979164],[125.010269,10.750555],[125.09387200000015,10.703886],[125.27165200000013,10.297499],[125.25388,10.256388],[125.120529,10.176943],[125.020264,10.37055],[124.98027000000013,10.379164],[125.01470900000015,10.027777],[124.764709,10.196386],[124.789429,10.327221000000122],[124.723602,10.42],[124.80554,10.66361],[124.78194,10.778610000000128],[124.676933,10.945831],[124.595261,11.01111],[124.5522,10.987776000000109],[124.517487,10.86833],[124.42137100000012,10.913332],[124.403587,11.23805],[124.34444,11.320553000000132],[124.28970300000015,11.54139],[124.31638,11.566942],[124.535538,11.40138800000011],[124.579987,11.30888700000014],[124.63889,11.293331]]],[[[124.584717,11.4725],[124.45720700000014,11.474442],[124.33888200000013,11.68083],[124.4272,11.709442],[124.53137200000015,11.67972],[124.61665300000016,11.534721],[124.584717,11.4725]]],[[[124.831673,11.528887],[124.76915,11.566666],[124.71805,11.727221],[124.842758,11.591665],[124.831673,11.528887]]],[[[120.046371,11.823332000000107],[120.04387,11.824442],[120.04609700000015,11.826387],[120.047211,11.82611],[120.046371,11.823332000000107]]],[[[122.22943,11.797777],[122.40526,11.69528],[122.586647,11.52111],[122.747482,11.601664],[122.830833,11.608608],[122.892212,11.53805],[122.8808140000001,11.429165000000125],[123.153053,11.600275],[123.144707,11.364998],[123.095261,11.236664],[123.12859300000014,11.174442],[122.945824,11.04278],[122.73108700000012,10.948332],[122.785538,10.906387000000109],[122.72916,10.800831],[122.62137,10.805277],[122.5891570000001,10.722498],[122.486099,10.678055],[122.2080380000001,10.634722000000124],[122.10109,10.573332],[122.01332100000012,10.443054],[121.9433140000001,10.416388],[121.909416,10.445553],[121.91609200000016,10.497219],[121.957489,10.54611],[121.97638,10.671110000000112],[121.93332,10.781666],[122.051376,11.0325],[122.038879,11.326664],[122.09887700000012,11.699999000000105],[122.068047,11.73638],[121.84804,11.759998],[121.8869320000001,11.898609],[121.95443700000011,11.927498000000128],[122.067207,11.846109000000126],[122.22943,11.797777]]],[[[119.96527100000014,11.656942],[119.872482,11.892776],[119.88498700000015,11.976109],[120.012772,11.93111],[120.070541,11.864998],[120.04208,11.83203],[120.040901,11.812344],[120.06832900000016,11.78861],[120.044434,11.722775],[119.96527100000014,11.656942]]],[[[120.26805100000013,11.82694],[120.2619320000001,11.807775],[120.202766,11.94611],[120.25444000000014,11.98222],[120.279709,11.932775000000106],[120.26805100000013,11.82694]]],[[[120.084717,11.958609000000138],[120.06554,11.96416],[120.061653,11.992496],[120.079437,11.979443],[120.084717,11.958609000000138]]],[[[119.95358,12.02166],[119.95026,12.030552],[119.95941200000016,12.036942],[119.96164,12.033331],[119.95358,12.02166]]],[[[121.137497,12.157499],[121.042763,12.229443000000117],[121.045822,12.290554],[121.088043,12.28333],[121.137497,12.157499]]],[[[120.16829700000017,12.118330000000128],[120.244713,12.17972],[120.33274800000015,12.083609],[120.33998,11.992775],[120.22638,11.984442],[120.16499,12.02916],[120.12636,12.024721],[120.098328,11.962776000000133],[120.06472,12.012629000000118],[120.0163880000001,11.986109],[119.941093,12.06611],[119.86219800000013,12.241108],[119.873871,12.31444],[119.931374,12.321386],[120.16829700000017,12.118330000000128]]],[[[122.681091,12.30805400000014],[122.64026600000011,12.26444400000014],[122.54999,12.356665],[122.443863,12.402498],[122.43248,12.461109000000135],[122.533333,12.502499000000114],[122.66943400000012,12.483608],[122.708878,12.40528],[122.681091,12.30805400000014]]],[[[124.463882,12.52083],[124.65277100000014,12.504166],[124.86775,12.53083],[124.889709,12.556665],[125.07639,12.53722],[125.143051,12.576942],[125.296944,12.457499],[125.31915300000014,12.414999],[125.29999,12.286943],[125.44247,12.268888000000116],[125.515823,12.17111],[125.44468700000016,12.122774000000105],[125.52388,12.058054],[125.436096,11.953609000000142],[125.445534,11.610554],[125.52832,11.45],[125.64444,11.34333],[125.547211,11.251944],[125.534149,11.19472100000013],[125.6077580000001,11.18694],[125.59804,11.22916400000014],[125.662201,11.196386],[125.760269,11.011665000000107],[125.71582,11.030832],[125.68914800000016,11.107775],[125.663597,11.13499800000011],[125.536377,11.146666],[125.46248600000011,11.098608000000127],[125.26944,11.128054],[125.195251,11.180277],[125.15305300000011,11.274721000000111],[125.073883,11.281387000000109],[124.99971,11.352776000000118],[124.969994,11.447498],[124.843597,11.466387],[124.84055,11.523888],[124.989967,11.61111],[125.04248,11.747219],[124.86248800000011,11.80749900000012],[124.69386,12.010555],[124.46999400000014,12.104164],[124.3869320000001,12.19027],[124.25804100000016,12.555553],[124.28166,12.578886000000125],[124.463882,12.52083]]],[[[123.669434,12.346943000000122],[123.910812,12.189165000000116],[124.044708,11.9788860000001],[124.07639,11.71833],[123.976089,11.823608],[123.79665,11.919998],[123.53027,12.208609],[123.4383090000001,12.198887],[123.24887100000012,11.9675],[123.15776100000018,11.908609],[123.14415,11.936386],[123.301651,12.24472],[123.24165300000016,12.606941],[123.46720900000014,12.513887],[123.669434,12.346943000000122]]],[[[122.306931,12.48638],[122.24803,12.56111],[122.2830510000001,12.633333],[122.33276,12.52889],[122.306931,12.48638]]],[[[123.792213,12.344997],[123.69026,12.454998],[123.585541,12.66055],[123.634163,12.67389],[123.72777,12.601664],[123.792213,12.344997]]],[[[122.0486,12.176664],[122.018051,12.094164],[121.96555,12.150276000000131],[121.91748,12.304165],[122.003326,12.44611],[121.99748,12.59861],[122.122757,12.676943],[122.138321,12.570831],[122.0486,12.176664]]],[[[123.38247700000011,12.69194],[123.034988,12.994997000000126],[122.95166000000019,13.02916],[122.931931,13.109997],[122.99331700000016,13.149166],[123.0486,13.134722000000124],[123.38247700000011,12.69194]]],[[[124.21805,13.17249900000013],[124.109993,13.187498],[124.07832,13.211109000000135],[124.163307,13.23222],[124.21805,13.17249900000013]]],[[[124.046097,13.220552],[123.9561,13.232498],[123.914993,13.286386],[124.098877,13.260555],[124.046097,13.220552]]],[[[123.91304000000014,13.24305],[123.87915,13.229443000000117],[123.85386700000015,13.267221],[123.851089,13.351942],[123.930817,13.32444],[123.89048000000014,13.278778],[123.91304000000014,13.24305]]],[[[122.15138200000013,13.395554],[122.131653,13.40083],[122.126083,13.421944],[122.15248,13.40416],[122.15138200000013,13.395554]]],[[[120.72165,13.47778],[120.98804,13.521666],[121.035812,13.420832],[121.218323,13.4075],[121.502213,13.148888],[121.47998,12.773609],[121.53777300000012,12.698053],[121.55832,12.60111],[121.4122,12.44111],[121.439697,12.351664],[121.38443,12.354164],[121.220543,12.23055],[121.11554,12.249441000000104],[121.12192,12.331942],[121.078873,12.33222],[120.98332200000016,12.42249900000013],[120.921921,12.526943],[120.941933,12.57111],[120.90833,12.650555],[120.851379,12.71972],[120.80026,12.723608],[120.761932,13.008888],[120.652481,13.186665],[120.54109200000015,13.2305530000001],[120.30330700000012,13.443609],[120.415268,13.525],[120.72165,13.47778]]],[[[122.12344,13.4041],[122.15109300000017,13.371943],[122.030899,13.200821000000133],[122.003326,13.202221],[121.86914100000011,13.282499],[121.8133090000001,13.44861],[121.8744200000001,13.541388],[122.00916300000017,13.545277],[122.125526,13.458609],[122.12344,13.4041]]],[[[122.73526,13.774166],[122.72747800000012,13.777222],[122.74498000000017,13.78167],[122.744431,13.778055],[122.73526,13.774166]]],[[[120.28194,13.754166000000112],[120.27469600000016,13.668331000000135],[120.10887100000012,13.77916],[120.079987,13.84916],[120.149429,13.853331],[120.28194,13.754166000000112]]],[[[124.301086,13.952221],[124.294144,13.958054],[124.30304000000011,13.96361],[124.305542,13.95638700000012],[124.301086,13.952221]]],[[[124.342209,13.942221],[124.31275900000014,13.954998000000101],[124.325272,13.981941],[124.351646,13.950275],[124.342209,13.942221]]],[[[124.28736100000015,13.946176],[124.393883,13.896387],[124.4180530000001,13.78861],[124.33360300000015,13.548887],[124.30998,13.58972],[124.25972,13.59389],[124.21054100000013,13.559721000000138],[124.20804,13.515276],[124.05470300000013,13.610830000000133],[124.03055,13.66389],[124.09665,13.704443],[124.133881,13.792221],[124.131088,14.061665000000119],[124.20999100000017,14.098608],[124.28736100000015,13.946176]]],[[[122.17109700000015,13.998608000000104],[121.995529,14.104719000000102],[121.91748,14.18528],[121.9472,14.217497],[122.12442,14.08889],[122.187477,14.01972],[122.17109700000015,13.998608000000104]]],[[[122.254173,14.7225],[122.11720300000012,14.796665],[122.098602,14.837776],[122.213043,14.839165],[122.25972,14.786386],[122.254173,14.7225]]],[[[122.05081,14.996664],[122.05693,14.952221],[122.01221,14.986385],[121.968323,14.90111],[122.021652,14.81111],[122.032494,14.713331],[121.98220800000011,14.644722],[121.930817,14.629164],[121.90498400000014,14.68694],[121.907761,14.718887],[121.938309,14.710554000000114],[121.92970300000012,14.750555],[121.868591,14.87777],[121.80497700000011,14.926109],[121.81915300000014,14.991665],[121.84583,15.03528],[121.935806,15.056942000000108],[122.05081,14.996664]]],[[[120.00026700000012,16.225552],[119.924423,16.29944],[119.99054,16.349163],[120.018333,16.316109],[120.00026700000012,16.225552]]],[[[121.25665300000013,18.566109],[121.58638,18.383053],[121.93665,18.26944],[122.00777,18.28611000000012],[122.11998000000015,18.37694],[122.164703,18.518055000000114],[122.24165300000016,18.512775],[122.34248400000013,18.309162],[122.17276,18.07972],[122.19609100000014,18.003887],[122.14582800000015,17.783054],[122.17026,17.60722],[122.25499,17.365273],[122.345543,17.34166],[122.427467,17.26861],[122.4272,17.13722],[122.48332200000014,17.117218],[122.519989,17.138329],[122.533333,17.099442],[122.425262,16.785275],[122.207207,16.432774],[122.232758,16.39833],[122.206383,16.23416],[122.00444,16.0275],[122.13721,16.25722],[122.09832800000014,16.261108],[121.962196,16.135830000000112],[121.743317,16.068054],[121.563309,15.903053],[121.561371,15.780832],[121.63749700000017,15.74972],[121.64305100000011,15.713053000000114],[121.37886,15.33222],[121.42997700000011,15.208609],[121.488037,15.171944],[121.60526300000014,14.81916],[121.699997,14.697498],[121.60720800000011,14.655277],[121.67693,14.382219],[121.761383,14.239164],[121.73387100000012,14.170832],[121.9472,13.987776],[122.233322,13.89722],[122.30247,13.958609],[122.30942,14.015276],[122.19914200000017,14.084997],[122.16554,14.158054],[122.27415,14.24444],[122.267761,14.12722],[122.3286,14.10722],[122.354713,14.137777],[122.33554100000015,14.19972],[122.473312,14.340553],[122.6055530000001,14.31333],[122.713318,14.33833],[122.864151,14.26611],[123.038879,14.069443],[123.0961,13.965275],[123.049423,13.77944],[123.12747200000013,13.716108000000132],[123.099991,13.667498000000137],[123.32054100000016,13.791943000000117],[123.295532,13.926664],[123.229713,14.00222],[123.343048,14.086943000000131],[123.4561,13.961943],[123.92499,13.78916500000014],[123.9711,13.750555000000134],[123.971649,13.70722],[123.809708,13.68722],[123.579987,13.71833],[123.53194,13.575554],[123.67526,13.47778],[123.75193800000011,13.327497],[123.87137,13.231941],[123.775543,13.220552],[123.762772,13.06166],[123.80775,13.050554],[123.898331,13.140833],[123.995819,13.095276],[124.08220700000014,13.008055],[124.123596,13.070553000000132],[124.195824,13.057775],[124.126083,12.90722],[124.1586,12.809998000000121],[124.082764,12.540554],[123.976089,12.552498],[123.87886,12.651388],[123.84887700000012,12.73194100000012],[123.860809,12.869442],[123.93027,12.845],[124.016388,12.87166],[124.04721,12.922775000000115],[124.028587,12.963053000000116],[123.89470700000014,12.972775],[123.857208,12.89583],[123.72916,12.853609],[123.58832,12.906387],[123.421371,13.04222],[123.32222000000013,13.00861],[123.29082,13.11055],[123.310806,13.17861],[123.20193,13.41861],[122.89444,13.57305300000013],[122.832764,13.63833],[122.86499000000015,13.68611],[122.840271,13.733053],[122.56099700000016,13.936567000000139],[122.525269,13.92111],[122.48442,13.696665],[122.66165200000012,13.42722],[122.702477,13.231941],[122.6074830000001,13.163887000000102],[122.52415,13.23222],[122.518333,13.347219],[122.40358700000013,13.519165],[122.31192,13.593609],[122.208328,13.601942000000122],[122.108597,13.763887000000125],[121.9088670000001,13.851942],[121.75471,13.964443],[121.474152,13.834721],[121.387772,13.66361],[121.279427,13.59389],[121.05554,13.66222],[121.042213,13.761665000000107],[120.92886,13.775],[120.91609200000015,13.871109],[120.87943,13.902498],[120.71666000000015,13.925276],[120.6586,13.86027],[120.66110200000013,13.76833],[120.62442,13.810831],[120.60999300000015,14.11833],[120.57887300000014,14.137499],[120.592209,14.23111],[120.983047,14.486942],[120.95665,14.636944],[120.83777,14.76111],[120.681091,14.76972],[120.551651,14.82694],[120.548599,14.721664],[120.6111,14.492775],[120.579712,14.434998],[120.49331700000015,14.42972],[120.3936,14.45861],[120.37747200000013,14.528055],[120.250267,14.691942],[120.29332,14.808332],[120.24525,14.84778],[120.1586,14.739719],[120.086113,14.785276],[120.012497,15.26389],[119.89943,15.425554],[119.904984,15.49055],[119.95555100000013,15.522499],[119.90833,15.62277],[119.912773,15.84333],[119.859421,15.963053],[119.775269,15.916666000000133],[119.752213,15.962776],[119.786926,16.323051],[119.88610800000015,16.3966640000001],[119.92886,16.384995],[119.919144,16.290276],[119.93526,16.242771],[120.156647,16.03611],[120.281097,16.046108],[120.421921,16.15583],[120.36720300000013,16.28472],[120.317207,16.63111],[120.37109,16.851387],[120.453873,16.981663],[120.42693,17.188049],[120.46111,17.40722],[120.42693,17.50972],[120.338593,17.57166300000011],[120.3724820000001,17.68027],[120.439972,17.73249],[120.47998,18.078609],[120.600807,18.33083],[120.57054100000016,18.490829],[120.62915,18.54805],[120.732681,18.52597],[120.87497700000017,18.610828],[120.938026,18.55888700000014],[121.02916,18.608608],[121.153587,18.625275],[121.25665300000013,18.566109]]],[[[121.40054,18.847218],[121.292763,18.84222],[121.279427,18.866108],[121.413307,18.906384],[121.484421,18.88277],[121.40054,18.847218]]],[[[121.88275,18.833332],[121.84275800000012,18.824165000000107],[121.83305400000016,18.88055],[121.87276,18.97888],[121.94609100000014,19.004444],[121.996368,18.95916000000011],[121.88275,18.833332]]],[[[121.25138900000013,19.01194],[121.20193,19.065273000000104],[121.22026100000015,19.172771000000125],[121.25166300000012,19.109997],[121.25138900000013,19.01194]]],[[[121.53970300000015,19.26667],[121.513321,19.249161],[121.421371,19.286942],[121.372757,19.364441],[121.396942,19.39166],[121.530548,19.389717],[121.53970300000015,19.26667]]],[[[121.9747,19.479996],[121.90749400000016,19.5175],[121.903053,19.550274000000115],[121.99359100000014,19.565273],[121.9747,19.479996]]],[[[121.8869320000001,20.28333],[121.863312,20.26139],[121.841927,20.282497],[121.84637,20.35277600000012],[121.8869320000001,20.28333]]],[[[121.95443700000011,20.348606],[121.919983,20.35083],[121.92387,20.407219],[122.0266570000001,20.48333],[122.038879,20.463051],[121.95443700000011,20.348606]]],[[[121.812187,20.68666],[121.786377,20.71944],[121.87082,20.834721],[121.88333,20.76527],[121.812187,20.68666]]],[[[121.95694,21.103607],[121.949417,21.10611],[121.94971,21.11805],[121.955551,21.114441],[121.95694,21.103607]]]]}},{"type":"Feature","properties":{"FIPS":"RQ","ISO2":"PR","ISO3":"PRI","UN":630,"NAME":"Puerto Rico","AREA":887,"POP2005":3946779,"REGION":19,"SUBREGION":29,"LON":-66.466,"LAT":18.221},"geometry":{"type":"MultiPolygon","coordinates":[[[[-67.880569,18.04833],[-67.93695,18.081387],[-67.93085,18.109722],[-67.84668,18.107498],[-67.880569,18.04833]]],[[[-65.44139,18.090275],[-65.545563,18.085],[-65.58029,18.11472],[-65.42834,18.165],[-65.30112,18.147778],[-65.44139,18.090275]]],[[[-65.242783,18.302219],[-65.27528,18.276943],[-65.3389,18.34666],[-65.26251,18.32333],[-65.242783,18.302219]]],[[[-66.99667,18.504997],[-66.1364,18.465553],[-66.10278,18.416386000000102],[-66.116959,18.474163],[-66.031113,18.445274],[-65.89056,18.452221],[-65.626953,18.364998000000128],[-65.63222,18.26543],[-65.603058,18.2325],[-65.69278,18.19361],[-65.93722,17.966663],[-66.204453,17.922222],[-66.454178,17.982498],[-66.58723,17.961109],[-66.714737,17.981388],[-66.927231,17.928886],[-67.0675,17.959721],[-67.18722,17.932499],[-67.20557,17.96083],[-67.157501,18.214722],[-67.26611,18.36805],[-67.14639,18.509163],[-66.99667,18.504997]]]]}},{"type":"Feature","properties":{"FIPS":"RS","ISO2":"RU","ISO3":"RUS","UN":643,"NAME":"Russia","AREA":1638094,"POP2005":143953092,"REGION":150,"SUBREGION":151,"LON":96.689,"LAT":61.988},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.8732910000001,42.95694],[131.7538760000001,42.984718],[131.779968,43.049438],[131.84079,43.06221],[131.917206,43.0211],[131.905548,42.96471400000013],[131.8732910000001,42.95694]]],[[[146.137482,43.458885],[146.07608,43.513329],[146.15219100000013,43.54583000000014],[146.226074,43.525551],[146.20553600000017,43.481102],[146.137482,43.458885]]],[[[146.66998300000012,43.70444],[146.598572,43.732208],[146.60467,43.80387900000011],[146.84274300000016,43.874992],[146.904968,43.839989],[146.66998300000012,43.70444]]],[[[47.73972,43.932213],[47.62915,43.940819],[47.62804,43.97443],[47.723312,43.991096],[47.785553,43.958878],[47.73972,43.932213]]],[[[146.14804100000015,44.509995],[146.34497,44.421936],[146.568024,44.43832400000014],[146.508331,44.358047],[146.11996,44.251389],[145.940247,44.1280440000001],[145.779419,43.928604],[145.595795,43.85889],[145.554688,43.65082600000011],[145.437469,43.71693],[145.409698,43.835266],[145.74469,44.051659],[145.78997800000013,44.14833],[145.973846,44.287773],[146.08163500000012,44.469711],[146.14804100000015,44.509995]]],[[[148.825256,45.334991000000116],[148.756104,45.309715],[148.582184,45.3169400000001],[148.466644,45.254166],[148.28524800000014,45.220825000000104],[148.038025,45.090546],[147.946075,45.00166300000012],[147.76248,44.938324],[147.703857,44.972488],[147.620514,44.966103],[147.58578,44.91833],[147.622742,44.897217],[147.548035,44.812492],[147.29108,44.66693900000013],[147.209137,44.55027],[147.021088,44.5075],[146.948853,44.4086],[146.84051,44.41554300000013],[146.846924,44.47693600000014],[147.15304600000013,44.67360700000012],[147.1622,44.711662],[147.111908,44.793884],[147.47995,44.974709],[147.504974,45.04388],[147.656372,45.07527],[147.76388,45.18971],[147.89413,45.223602],[147.856079,45.356102000000135],[147.932739,45.421379],[147.959961,45.41916],[148.00027,45.273048],[148.03442400000014,45.256104],[148.31219,45.267212],[148.558868,45.45916],[148.773041,45.521103],[148.85886,45.467491],[148.825256,45.334991000000116]]],[[[47.962494,45.50499],[47.932213000000104,45.618599],[47.960274,45.653046],[47.993874,45.53665200000011],[47.962494,45.50499]]],[[[48.46888,45.673882000000106],[48.336098,45.768326],[48.337769,45.79721100000012],[48.40442700000011,45.794991],[48.46888,45.673882000000106]]],[[[48.723312,45.698318],[48.59192700000011,45.74749],[48.495827,45.88221],[48.676384,45.764153000000135],[48.723312,45.698318]]],[[[150.066376,45.847488],[149.868561,45.77304800000013],[149.6738590000001,45.628601],[149.43747,45.5836],[149.667755,45.85083],[149.856903,45.92305],[149.92914,46.00750000000011],[150.34274300000016,46.2116620000001],[150.49857,46.19249],[150.425537,46.118881],[150.240509,46.019714],[150.194122,45.927773000000116],[150.066376,45.847488]]],[[[150.87411,46.440826],[150.8119200000001,46.44193300000012],[150.798523,46.449982],[150.841919,46.4711],[150.87411,46.440826]]],[[[150.764984,46.70388],[150.745514,46.701935],[150.730804,46.7227630000001],[150.7622070000001,46.72748600000011],[150.764984,46.70388]]],[[[152.22552,47.174713],[152.206604,47.125015],[152.259705,47.16082],[152.29303,47.147774],[152.01303100000018,46.888885],[151.82162500000015,46.778603],[151.71219,46.8011],[151.70581100000015,46.847488],[151.8688350000001,46.866386],[152.22552,47.174713]]],[[[152.51913500000012,47.30721],[152.42252,47.30336],[152.38803100000018,47.344154],[152.42691,47.379715],[152.50388,47.37721],[152.5416560000001,47.334991],[152.51913500000012,47.30721]]],[[[153.016083,47.693047],[152.98111,47.723297],[153.02582,47.795547],[153.074127,47.808327],[153.097748,47.772491],[153.080261,47.714157],[153.016083,47.693047]]],[[[153.290527,48.0536],[153.205811,48.053322],[153.137756,48.101105],[153.223297,48.133049],[153.283325,48.09916],[153.290527,48.0536]]],[[[154.01944,48.72332],[153.974976,48.73555],[153.976624,48.761665],[154.112183,48.8949970000001],[154.22885,48.902489],[154.18887,48.834991000000116],[154.01944,48.72332]]],[[[153.9819,48.926659],[153.92114300000014,48.926460000000134],[153.901917,48.96998600000012],[154.0047,48.963608000000136],[153.9819,48.926659]]],[[[154.454681,49.16916],[154.5830380000001,49.14582800000011],[154.598846,49.111938],[154.500549,49.07444],[154.454681,49.16916]]],[[[154.71579,49.26388],[154.593903,49.291031],[154.602448,49.373604000000114],[154.70303300000012,49.48082],[154.74911,49.59193],[154.81442300000015,49.636383],[154.90442,49.62416100000013],[154.882172,49.54749300000014],[154.81802400000015,49.505829],[154.79025300000012,49.44332],[154.834961,49.345825000000104],[154.803314,49.29722],[154.71579,49.26388]]],[[[154.42499,49.73360400000013],[154.35495,49.766663],[154.37497,49.82499700000011],[154.459961,49.81388],[154.42499,49.73360400000013]]],[[[155.78552200000013,50.18499],[155.596344,50.17833],[155.357452,50.053047],[155.226166,50.052597],[155.208588,50.080826],[155.24774,50.301384],[155.438293,50.36693600000012],[155.66137700000013,50.385269],[155.761383,50.458046],[155.88888,50.69305],[156.022217,50.767494],[156.104126,50.76111],[156.15304600000013,50.52499],[155.78552200000013,50.18499]]],[[[156.40382,50.653397],[156.4008480000001,50.62564],[156.19830300000012,50.670273],[156.16442900000015,50.728600000000135],[156.341064,50.851105],[156.46386700000016,50.869438],[156.49579,50.835548],[156.490234,50.756104],[156.40382,50.653397]]],[[[155.620789,50.8061],[155.4982910000001,50.817497],[155.44775400000015,50.89777],[155.49441,50.929993],[155.63916,50.92083],[155.669708,50.856659],[155.620789,50.8061]]],[[[143.661926,49.31221],[143.409973,49.395828],[143.28247,49.39666000000011],[143.248016,49.369438],[143.32025,49.313606],[143.666077,49.308327],[143.26944,49.272491],[143.017761,49.139717],[142.966064,49.038048],[142.9902340000001,48.909988],[142.768585,48.52971600000012],[142.53469800000016,48.002777],[142.536652,47.789162],[142.61969,47.59388],[142.77969,47.425827],[142.90054,47.37249],[143.019989,47.24527],[143.11191,46.890549],[143.088287,46.801659],[143.172211,46.705551],[143.34356700000012,46.68055],[143.3908080000001,46.70277],[143.376892,46.78638],[143.44971,46.841377],[143.49164,46.80860100000012],[143.524414,46.582214000000135],[143.60189800000012,46.38361],[143.476074,46.187767],[143.473846,46.092766],[143.42526,46.01944],[143.4274600000001,46.202774],[143.339691,46.397491],[143.37857,46.54833],[143.13610800000015,46.59388000000013],[142.780548,46.5961],[142.709686,46.744156],[142.49692,46.66833],[142.42136,46.5824970000001],[142.295258,46.340828],[142.199982,46.0261],[142.0774540000001,45.89138],[141.926361,46.040276],[141.938019,46.091377],[141.829132,46.425552],[141.812744,46.586105],[142.05859,47.087212],[142.02969,47.232208],[141.97024,47.288048],[141.964691,47.60860400000013],[142.188873,47.975266],[142.135529,48.31554],[141.9083250000001,48.620544],[141.85245,48.75027],[141.962463,48.858047],[141.99633800000015,48.949158],[142.068573,49.340546],[142.140533,49.55249],[142.16052200000013,49.78638500000011],[142.12634300000013,49.891106],[142.173859,50.094154],[142.15082,50.33166],[142.042206,50.534164],[142.09497,50.813049],[142.12524,50.886383],[142.21912,50.97416],[142.267212,51.12027000000011],[142.085236,51.39833],[142.08969100000013,51.457214000000135],[141.797211,51.67749],[141.817474,51.789719],[141.64804100000015,51.886658],[141.6399840000001,52.07972],[141.694977,52.158882],[141.63803100000018,52.315826],[141.660797,52.383331],[141.76831100000015,52.455269],[141.83773800000017,52.578049],[141.85858,52.851387],[141.925262,53.01999],[141.831909,53.15277],[141.810516,53.295273],[141.76694,53.371376],[142.213593,53.5186],[142.2538760000001,53.478874],[142.25332600000013,53.38055],[142.35162,53.356102000000135],[142.46414200000015,53.383049],[142.557739,53.46888],[142.68191500000012,53.523605],[142.6030270000001,53.570549],[142.518311,53.538048],[142.49496,53.66110200000014],[142.63665800000012,53.67943600000012],[142.71579,53.629715],[142.798309,53.697487],[142.75943,53.842766],[142.67718500000012,53.719711],[142.60553,53.691101],[142.7196960000001,53.93082400000014],[142.39386,54.237495],[142.401917,54.26611],[142.48025500000017,54.27388000000013],[142.54636,54.22916],[142.639435,54.26277],[142.6268920000001,54.32555],[142.696625,54.424713],[142.74106,54.417496],[142.81329300000016,54.298882],[143.01138300000014,54.13082],[142.9982910000001,54.059158],[142.878571,53.896103],[142.881348,53.80804400000011],[143.10385,53.55499300000014],[143.131897,53.4761],[143.08719,53.38333],[143.181091,53.39888],[143.2908,53.130272],[143.337463,52.82916300000011],[143.321625,52.557213],[143.285248,52.431107],[143.194977,52.34638200000011],[143.195801,52.42083],[143.29412800000011,52.584435],[143.2511,52.59360500000014],[143.152771,52.381660000000124],[143.181366,52.311378],[143.124969,51.960548],[143.174988,51.857498000000135],[143.23800700000015,51.883331],[143.314972,51.72943],[143.2583310000001,51.67222],[143.22079500000018,51.521378],[143.31051600000012,51.512497],[143.32608,51.61305],[143.370789,51.64138000000014],[143.45608500000014,51.48472],[143.468842,51.36055],[143.3783,51.344711],[143.46997,51.267769],[143.503052,51.30332],[143.526917,51.25861],[143.79776000000015,50.286942],[144.00247200000013,50.018051],[144.27582,49.261383],[144.4035950000001,49.033882],[144.6908,48.864441],[144.6908,48.71332600000011],[144.751648,48.641937],[144.678314,48.64666000000011],[144.634979,48.789993],[144.537476,48.91304800000012],[144.286377,49.067772],[144.141663,49.204163],[143.9819,49.26888],[143.661926,49.31221]]],[[[137.779968,54.366386],[137.70831,54.36859900000013],[137.809692,54.43832400000013],[137.83691,54.49749],[137.91387900000018,54.507774],[137.92636100000016,54.457214],[137.779968,54.366386]]],[[[137.632172,54.413048],[137.64279,54.38745100000011],[137.57220500000014,54.433876],[137.5488590000001,54.504997],[137.6185610000001,54.565269],[137.6455380000001,54.5075],[137.632172,54.413048]]],[[[19.69778,54.479439],[19.62726,54.463272],[19.870161,54.638554],[19.898203,54.62596],[19.69778,54.479439]]],[[[167.85580400000015,54.6813810000001],[168.11691,54.507774],[168.06414800000016,54.504997],[167.897217,54.612495],[167.54636,54.759163],[167.44165,54.818604],[167.432983,54.863075],[167.52887,54.85110500000013],[167.85580400000015,54.6813810000001]]],[[[137.188293,55.102219],[137.04608,54.91749600000014],[136.943573,54.92083000000014],[136.8836060000001,54.95832800000011],[136.775269,54.926102],[136.74078,54.881935],[136.667267,54.90506],[136.808319,55.01805],[137.039703,55.104439],[137.188293,55.102219]]],[[[137.99133300000017,54.885551],[137.919983,54.768051],[137.70718,54.618324],[137.6491390000001,54.64194],[137.486633,54.87249],[137.221313,54.77372000000014],[137.24969,54.861107],[137.36911,54.98166],[137.450531,55.015274],[137.53857400000015,55.171379],[137.5783080000001,55.19054],[138.20413,55.043884],[138.183319,55.012215],[138.104401,54.998878],[137.99133300000017,54.885551]]],[[[21.431385,55.251938],[22.061943,55.027489],[22.27972,55.06721],[22.602219000000105,55.046661],[22.643887,54.963608],[22.732216000000108,54.962494],[22.84249,54.896942],[22.867775,54.810547],[22.721107,54.694992],[22.69389,54.522766000000104],[22.702217,54.455826],[22.78588,54.36384],[21.411942,54.325829],[19.79700700000012,54.43755],[19.93519,54.493874],[19.997164,54.57333],[20.067877,54.55179],[20.404999,54.679161],[20.19361,54.6969380000001],[20.09145,54.650543],[20.004166000000108,54.71999],[19.96122,54.695328000000124],[19.961109,54.63444],[19.87271,54.640549],[19.95944,54.76416],[19.919716,54.875549],[19.969440000000134,54.957497],[20.41777,54.945824],[20.69194,55.07416],[20.942833,55.287201],[20.984814,55.27655],[20.838051,55.145271],[20.528332,54.966660000000104],[20.56638700000013,54.93776700000012],[20.785275,54.941658],[20.870274,54.90083],[21.090275,54.895],[21.246662,54.950272],[21.19083,55.149162],[21.224163,55.199997],[21.266109,55.205551],[21.263935000000117,55.248985],[21.374165,55.288605],[21.431385,55.251938]]],[[[166.11911,55.328606],[166.26470900000015,55.30832700000013],[166.22247300000012,55.24694],[166.250824,55.143051],[166.38831,55.002495],[166.64581,54.843048000000124],[166.66302,54.67416400000013],[166.48135,54.793327],[166.35745,54.829163],[166.07053,55.06249],[166.081635,55.108887],[165.988861,55.215271],[165.838013,55.264442],[165.831909,55.303322],[165.93136600000014,55.361382],[166.11911,55.328606]]],[[[150.59051,59.019714],[150.454559,59.017799],[150.46328700000015,59.048607],[150.6586,59.153877],[150.74383,59.111938000000116],[150.59051,59.019714]]],[[[149.104675,59.187767],[148.9696960000001,59.124161],[148.94101,59.14167],[149.00525,59.211105],[149.11911,59.205269],[149.104675,59.187767]]],[[[164.656921,59.084435],[164.704132,59.024712],[164.651367,58.882767],[164.105225,58.796387],[163.57886,58.57972000000012],[163.457184,58.46527100000014],[163.385529,58.559402],[163.494415,58.58777],[163.69192,58.744995],[163.74969,58.892769],[163.841843,58.994995],[163.757751,59.01777],[163.664154,58.99305],[163.699402,59.014442],[164.03082,59.050545000000106],[164.55304000000012,59.237213],[164.656921,59.084435]]],[[[155.555817,59.32194],[155.503601,59.309158],[155.4783,59.317215],[155.555817,59.35916],[155.578308,59.338043],[155.555817,59.32194]]],[[[28.69305,60.2677690000001],[28.587776,60.295547],[28.551109000000107,60.349434],[28.715,60.311378],[28.69305,60.2677690000001]]],[[[35.99110400000012,64.325821],[35.85083,64.388596],[35.85444,64.405823],[35.929718,64.415817],[36.047493000000145,64.355545],[35.99110400000012,64.325821]]],[[[-172.54446,64.61331200000012],[-172.70032,64.629959],[-172.75809,64.660797],[-172.532257,64.66137700000012],[-172.488312,64.633606],[-172.54446,64.61331200000012]]],[[[40.4124910000001,64.653595],[40.471375,64.566086],[40.199158,64.592209],[39.974709,64.682755],[40.076942,64.693588],[40.190269000000114,64.641098],[40.274994,64.64194],[40.29277,64.669983],[40.260826,64.70694],[40.140549000000135,64.75],[40.32999400000011,64.764709],[40.4124910000001,64.653595]]],[[[-172.590576,64.7033080000001],[-172.67599,64.731247],[-172.53116,64.8430330000001],[-172.31665,64.85107],[-172.171112,64.7952580000001],[-172.16727,64.772476],[-172.590576,64.7033080000001]]],[[[40.27444,64.87414600000011],[40.228874,64.914993],[40.209717,64.99247700000012],[40.278877,64.945816],[40.27444,64.87414600000011]]],[[[35.790833,64.97331200000013],[35.739433,64.968323],[35.567856,65.08412],[35.524696,65.15887],[35.696655,65.19275],[35.834435,65.16832],[35.86777,65.015549],[35.790833,64.97331200000013]]],[[[36.061661,65.190262],[36.078049,65.18748],[36.300827,65.20109600000012],[36.067772000000105,65.16331500000013],[35.94332,65.18193100000013],[35.96666,65.211655],[36.061661,65.190262]]],[[[-169.053345,65.749146],[-169.09726,65.760544],[-169.07501,65.81552],[-168.989746,65.808853],[-169.053345,65.749146]]],[[[69.33499100000012,66.654434],[69.25888,66.656937],[69.243317,66.693314],[69.333328,66.71887200000013],[69.35498,66.66859],[69.33499100000012,66.654434]]],[[[70.03387,66.723877],[69.836929,66.75109900000012],[69.789154,66.78027],[69.95359800000011,66.76111],[70.03387,66.723877]]],[[[42.706657,66.686371],[42.59415400000012,66.693314],[42.432495,66.758606],[42.49527,66.788589],[42.622765,66.782211],[42.714996,66.722488],[42.706657,66.686371]]],[[[69.25221,66.789978],[69.45776,66.7986],[69.5336,66.71998600000012],[69.64498900000012,66.687195],[69.54304500000012,66.759155],[69.73526,66.759995],[70.055252,66.703323],[70.090546,66.679703],[70.10443,66.531097],[70.034424,66.495819],[69.841095,66.478317],[69.573318,66.60582],[69.52054,66.692474],[69.419434,66.769714],[69.307205,66.764709],[69.267761,66.734985],[69.126648,66.788589],[69.25221,66.789978]]],[[[54.211937,68.24971],[54.217209,68.295532],[54.283051000000114,68.336655],[54.33694,68.303864],[54.211937,68.24971]]],[[[53.949715,68.292755],[53.859161,68.309708],[53.8688810000001,68.3461],[54.013329000000105,68.362198],[54.001389,68.312759],[53.949715,68.292755]]],[[[50.81415600000014,68.372208],[50.794716,68.37859],[50.88721,68.429703],[51.163879,68.49525],[51.456657,68.47693],[50.81415600000014,68.372208]]],[[[57.92083,68.80331400000011],[57.864716,68.761932],[57.487770000000125,68.763611],[57.1999970000001,68.718872],[57.37999,68.7686],[57.92083,68.80331400000011]]],[[[67.383041,68.77748],[67.292206,68.781097],[67.14888,68.82193000000011],[67.33859300000012,68.819153],[67.383041,68.77748]]],[[[55.472313,68.909042],[55.238174,68.90763900000013],[55.22456,68.909866],[55.353142,68.94183],[55.50842,68.91211],[55.472313,68.909042]]],[[[-179.62613,68.90635700000013],[-179.51611,68.9122],[-179.547241,68.950821],[-179.52866,68.96136500000011],[-179.45889,68.93054200000012],[-179.38446,68.82082],[-178.87253,68.7502750000001],[-178.486115,68.5858],[-178.715576,68.655823],[-178.758362,68.574417],[-178.738312,68.539429],[-178.040833,68.42607],[-177.950562,68.289963],[-177.703064,68.337769],[-178.37668,68.550522],[-177.632202,68.32469200000014],[-177.62997,68.296631],[-177.76083,68.25636],[-177.680328,68.223877],[-177.36859,68.251389],[-177.238068,68.210541],[-177.265015,68.206085],[-177.24585,68.15387],[-177.16977,68.1283],[-177.09726,68.1586],[-176.970306,68.133606],[-175.46362,67.707474],[-175.1911,67.5108],[-175.21777,67.448578],[-175.38031,67.344986],[-175.106689,67.3672],[-175.04306,67.443573],[-174.83029,67.38274],[-174.777802,67.30304000000012],[-174.89255,67.28996300000011],[-174.955597,67.100266],[-174.91888,66.995255],[-174.8139,66.946091],[-174.742798,66.77304],[-174.75946,66.72581500000013],[-174.85059,66.74747],[-175.00034,66.67109700000015],[-174.905609,66.6158],[-174.48831,66.540543],[-174.43671,66.461914],[-174.4917,66.474991],[-174.517,66.450821],[-174.46194,66.301071],[-174.3475,66.32222],[-174.377472,66.361374],[-174.196136,66.463867],[-174.03171,66.481354],[-173.99057,66.454422],[-174.08804,66.254425],[-174.02338,66.21054100000015],[-173.939453,66.333603],[-173.78421,66.36943100000013],[-173.75867,66.44802900000013],[-173.91113,66.51443],[-174.30307,66.577759],[-173.99585,66.691345],[-174.02444,66.843323],[-174.12527,66.989136],[-174.28531,67.05830400000013],[-174.52835,67.03082300000011],[-174.65253,67.063599],[-174.43198,67.102768],[-173.82806,67.08691],[-173.66696,67.13165300000014],[-173.1767,67.063309],[-173.2742,67.049408],[-173.352783,66.972214],[-173.35251,66.838867],[-173.15417,66.8524630000001],[-173.21417,66.888596],[-173.22415,66.974991],[-173.136414,66.99663],[-173.06723,66.940262],[-172.819489,66.90887],[-172.430573,66.934418],[-173.016998,67.02887],[-173.011963,67.056076],[-172.328064,66.96249],[-171.726105,66.95525],[-171.68808,66.933304],[-171.70865,66.856644],[-171.59253,66.800812],[-171.410553,66.77026400000011],[-171.393341,66.748322],[-171.4231,66.703873],[-171.34332,66.650818],[-170.87997,66.51443],[-170.46332,66.317047],[-170.64447,66.237198],[-170.340759,66.291412],[-170.24585,66.27221700000013],[-170.17551,66.21019700000011],[-170.32861,66.176926],[-170.21609,66.141922],[-169.9075,66.151367],[-170.040283,66.189682],[-169.95087,66.17804],[-169.7092,66.130539],[-169.6911,66.072495],[-169.77612,65.992737],[-169.98697,66.035797],[-170.11612,66.0249940000001],[-170.587799,65.863602],[-170.51532,65.825272],[-170.528656,65.673294],[-170.63559,65.610535],[-170.886719,65.62358100000012],[-171.42032,65.81721500000015],[-171.544189,65.833603],[-171.28336,65.66386],[-171.02444,65.59274],[-171.05002,65.49551400000013],[-171.11557,65.47636],[-171.3931,65.537766],[-171.94696,65.485245],[-172.08252,65.48442100000011],[-171.81308,65.517487],[-172.036438,65.532761],[-172.09531,65.563858],[-172.25339,65.53914],[-172.35309,65.66803],[-172.6456,65.70305],[-172.80029,65.681656],[-172.691101,65.632477],[-172.434723,65.59137],[-172.42505,65.479141],[-172.47031,65.468582],[-172.416412,65.424988],[-172.211426,65.46666],[-172.190552,65.44662],[-172.26172,65.33136],[-172.24472,65.245514],[-172.67361,65.269974],[-172.69336,65.232758],[-172.306671,65.21691900000013],[-172.12613,65.086365],[-172.436707,64.92804000000011],[-172.782257,64.850525],[-172.99887,64.871918],[-173.200867,64.786087],[-172.958893,64.84581],[-172.77557,64.789688],[-172.86948,64.729965],[-173.08948,64.663315],[-172.955261,64.67247],[-172.74832,64.596375],[-172.462494,64.55524],[-172.355835,64.458313],[-172.35916,64.42358400000012],[-172.630859,64.388596],[-172.760284,64.421356],[-172.76117,64.468857],[-172.82138,64.524994],[-173.02005,64.498871],[-173.06781,64.474411],[-172.87915,64.445236],[-172.89529,64.338318],[-172.99304,64.281662],[-173.19141,64.25442],[-173.436157,64.324692],[-173.29916,64.4608],[-173.28195,64.51666],[-173.41333,64.61998],[-173.350586,64.497208],[-173.36526,64.4616550000001],[-173.47336,64.392212],[-173.681671,64.34721400000012],[-174.05139,64.424149],[-174.13165,64.5597080000001],[-174.84637,64.777771],[-175.00558,64.81330900000012],[-175.05307,64.77887],[-175.44888,64.784424],[-175.47192,64.856354],[-175.92279,65.014145],[-175.8125,65.059418],[-175.78061,65.160797],[-175.86221,65.23497],[-175.93112,65.401642],[-176.07806,65.470261],[-177.06805,65.609711],[-177.217773,65.59166],[-177.50034,65.485794],[-178.36948,65.475525],[-178.56308,65.5163880000001],[-178.57196,65.548035],[-178.45392,65.69635000000011],[-178.460541,65.736374],[-178.65472,65.761368],[-178.80972,65.866913],[-178.90945,65.993866],[-178.7247,66.008881],[-178.67111,66.116638],[-178.592773,66.123291],[-178.542511,66.16331500000013],[-178.508911,66.28471400000012],[-178.517,66.402771],[-178.60529,66.365265],[-178.777527,66.208023],[-178.89999,66.171921],[-179.0625,66.194687],[-179.11252,66.246582],[-179.08029,66.301071],[-179.10251,66.35997],[-179.175842,66.415268],[-179.18143,66.284973],[-179.42392,66.343033],[-179.24225,66.19746],[-179.28809,66.164139],[-179.63446,66.11746],[-179.68695,66.138596],[-179.577484,66.146637],[-179.69559,66.183029],[-179.76196,66.116913],[-179.81531,65.98749],[-179.79837,65.87051400000011],[-179.735535,65.789429],[-179.32666,65.625809],[-179.315,65.536087],[-179.53336,65.43496700000013],[-179.57028,65.261917],[-179.696686,65.166641],[-180,65.06890900000013],[-180,68.980103],[-179.62613,68.90635700000013]]],[[[54.65416,68.95582600000012],[54.587769,68.94775400000015],[54.567772,68.95582600000012],[54.619438,69.000824],[54.694153,68.99136],[54.65416,68.95582600000012]]],[[[66.171921,69.087769],[66.401382,69.01666300000011],[66.53777,68.943588],[66.15664700000013,69.0711060000001],[65.951935,69.093872],[66.171921,69.087769]]],[[[59.239433,69.175812],[59.248955,69.137299],[59.045273,69.247757],[58.760551,69.333603],[59.193878,69.233871],[59.239433,69.175812]]],[[[34.40470900000014,69.339432],[34.072769,69.3461],[33.973045,69.36609],[34.213371,69.402725],[34.40470900000014,69.339432]]],[[[67.131088,69.36137400000013],[66.99109,69.3961],[66.93803400000013,69.44359],[67.21054100000015,69.425812],[67.131088,69.36137400000013]]],[[[50.305267,69.161926],[50.32888,69.11747700000012],[50.14305,68.993042],[50.11332700000014,68.99498],[50.119438,69.04054300000013],[50.223877,69.149719],[49.95943,69.076096],[49.678329,68.873032],[49.45166,68.811371],[48.912766,68.7361],[48.589989,68.728592],[48.2161,68.89498900000012],[48.212212,69.05636600000014],[48.265549,69.123032],[48.26915700000012,69.214996],[48.31276700000012,69.27916],[48.607773,69.435257],[48.943321,69.50694],[49.347488,69.48831200000012],[50.10416,69.2810970000001],[50.305267,69.161926]]],[[[161.44329800000014,68.889984],[161.40802,68.891373],[161.469116,68.948318],[161.458008,68.99552900000015],[161.13443,69.089706],[161.11911,69.176651],[161.16748,69.32304],[161.0658,69.40832],[161.096344,69.470535],[161.27136200000018,69.53054800000012],[161.377747,69.532211],[161.38888,69.459152],[161.28933700000016,69.41586],[161.3613590000001,69.358597],[161.3199770000001,69.241089],[161.386108,69.102478],[161.515259,68.987198],[161.50915,68.915543],[161.44329800000014,68.889984]]],[[[67.25249,69.44470200000012],[67.03859,69.468048],[67.0211,69.4861],[67.14888,69.57111],[67.33831800000013,69.58888200000013],[67.359146,69.513611],[67.25249,69.44470200000012]]],[[[161.43774,69.408035],[161.37246700000014,69.405853],[161.429413,69.462769],[161.394989,69.59082],[161.49606,69.637497],[161.622192,69.588593],[161.616638,69.446365],[161.43774,69.408035]]],[[[170.151093,69.73415],[170.11993,69.71550000000013],[169.98495500000013,69.74803],[170.2033080000001,69.788315],[170.151093,69.73415]]],[[[169.447479,69.808868],[169.41272000000015,69.76377900000011],[169.274994,69.757767],[169.30441,69.654984],[169.205536,69.573883],[168.86828600000013,69.567764],[168.151642,69.696365],[168.044983,69.764435],[167.751923,69.827484],[167.94998,69.94136],[168.270264,70.0205380000001],[169.359955,69.88054],[169.431641,69.858871],[169.447479,69.808868]]],[[[83.096939,70.124985],[82.972488,70.131088],[82.7686000000001,70.20887800000014],[82.86388,70.251663],[83.08276,70.2186],[83.113602,70.193314],[83.096939,70.124985]]],[[[59.461105,70.276657],[59.815269,70.124695],[60.424995,69.949707],[60.546104,69.799149],[60.205551,69.67943],[60.001663,69.71804800000011],[59.911934,69.666382],[59.60166,69.7124940000001],[59.53388200000012,69.75360100000012],[59.556656,69.782486],[59.620827,69.782761],[59.610825,69.81442300000013],[59.4230500000001,69.88582],[58.94249,69.937485],[59.128326,69.866379],[59.01777,69.853867],[58.621376,70.03749],[58.57054900000014,70.077774],[58.608887,70.13749700000011],[58.582214,70.180267],[58.517212,70.179703],[58.4086,70.25027],[58.490273,70.269989],[58.821381,70.213608],[58.63166000000013,70.325821],[59.033051,70.478867],[59.044159,70.44748],[59.334435,70.361099],[59.461105,70.276657]]],[[[83.550262,70.46360800000014],[83.612762,70.437759],[83.5336,70.377197],[83.3797,70.36499000000015],[83.4124910000001,70.440262],[83.558319,70.52277],[83.62442,70.52415500000012],[83.614151,70.48637400000013],[83.550262,70.46360800000014]]],[[[57.20471,70.508881],[57.10555,70.49054],[56.96583,70.51748700000013],[56.84166,70.599152],[57.2249910000001,70.526932],[57.20471,70.508881]]],[[[162.3819,70.67915],[162.48495500000013,70.65109300000012],[162.339417,70.635269],[162.23663,70.659149],[162.3819,70.67915]]],[[[161.69384800000012,70.7502750000001],[161.64859,70.74832200000014],[161.463287,70.803589],[161.526367,70.837494],[161.657745,70.80859],[161.69384800000012,70.7502750000001]]],[[[83.372208,70.68609600000013],[83.288315,70.67330900000013],[83.22971,70.524429],[83.3097080000001,70.462494],[83.06972,70.397766],[83.126083,70.664993],[83.214157,70.80720500000012],[83.286377,70.853592],[83.377197,70.8141480000001],[83.463608,70.73248],[83.372208,70.68609600000013]]],[[[160.61911,70.814697],[160.45468100000016,70.829163],[160.40802,70.919144],[160.51831100000015,70.931931],[160.64471400000014,70.896378],[160.719788,70.818512],[160.61911,70.814697]]],[[[53.595268,71.11026],[53.4711,71.116653],[53.43249500000013,71.136932],[53.54249600000014,71.183868],[53.611382,71.15277100000014],[53.595268,71.11026]]],[[[53.3605500000001,71.29221],[53.20416300000011,71.311096],[53.129158,71.35859700000015],[53.255272000000105,71.339157],[53.3605500000001,71.29221]]],[[[52.85860400000012,71.378311],[53.012722,71.276268],[52.742767,71.37082],[52.79833,71.306931],[53.06443800000011,71.235535],[53.15582300000011,71.24247700000012],[53.079994,71.252487],[53.124435,71.266663],[53.2074970000001,71.25109900000012],[53.218048,71.15971400000012],[53.149162,71.091095],[53.04833200000013,71.066666],[53.04416,71.018875],[53.141937,70.978317],[52.999161,70.964157],[53.017212,70.99971],[52.957214,71.051926],[52.80555,71.10582],[52.76944,71.161652],[52.6449970000001,71.21914700000013],[52.34748800000011,71.24386600000014],[52.208885,71.30554200000012],[52.271378000000134,71.349426],[52.430824,71.373596],[52.71027400000014,71.401093],[52.85860400000012,71.378311]]],[[[-175.62085,71.37776200000013],[-175.803894,71.39386],[-175.923615,71.42581200000012],[-175.764191,71.42441],[-175.62085,71.37776200000013]]],[[[180,71.53585800000013],[180,70.99720800000011],[179.80523700000015,70.957489],[179.678314,70.89554],[179.27277,70.88859600000012],[178.791016,70.7964],[178.74884,70.89221],[178.617737,71.035538],[178.67386,71.1041560000001],[178.87219200000015,71.217484],[179.21078,71.307755],[179.530273,71.43830900000012],[179.72052,71.4561000000001],[180,71.53585800000013]]],[[[137.96109,71.503052],[137.67691,71.411652],[137.512207,71.476379],[137.265259,71.487488],[137.40637200000015,71.453873],[137.33246,71.427765],[136.991333,71.515549],[137.270813,71.57916300000011],[137.7502750000001,71.594437],[137.890259,71.570267],[137.96109,71.503052]]],[[[-178.5686,71.56415],[-178.01755,71.44969200000014],[-177.83331,71.3461],[-177.621399,71.28082300000011],[-177.502838,71.277466],[-177.43945,71.226929],[-177.49225,71.17109700000015],[-177.62003,71.116638],[-177.938904,71.03749],[-178.8186,70.979965],[-179.27444,70.907761],[-179.504181,70.91469],[-180,70.99720800000011],[-180,71.53584300000011],[-179.628601,71.577194],[-179.3053,71.55136],[-179.03421,71.597748],[-178.5686,71.56415]]],[[[138.51608,71.856094],[138.40164200000015,71.8311000000001],[138.27386500000011,71.85998],[138.36245700000018,71.88554],[138.51608,71.856094]]],[[[77.762497,72.295258],[77.096375,72.275269],[76.890549,72.293594],[76.854706,72.329987],[77.23442100000011,72.460266],[77.33082600000012,72.548599],[77.62025,72.63053900000011],[78.184982,72.576096],[78.393051,72.489151],[77.762497,72.295258]]],[[[128.143036,72.578873],[128.708008,72.464157],[129.26193200000012,72.463318],[129.26080300000012,72.4122],[129.44830300000012,72.369141],[129.500824,72.324432],[129.32690400000013,72.297211],[129.354675,72.252487],[129.561096,72.22526600000015],[129.24441500000012,72.138596],[129.48608400000012,72.12692],[129.38748,72.09833],[128.763611,72.07415800000012],[128.47912600000018,72.131653],[128.538025,72.178314],[128.198853,72.234985],[127.54971300000011,72.433319],[126.650269,72.43609600000013],[126.64998600000013,72.47998],[126.682747,72.49942],[126.90442700000017,72.51026900000011],[127.27832,72.608322],[127.77887,72.642487],[128.143036,72.578873]]],[[[128.838867,72.5766600000001],[128.6316220000001,72.524994],[128.362183,72.55304000000012],[128.100525,72.63195800000011],[128.688293,72.672211],[128.893585,72.64137],[128.972198,72.59082],[128.838867,72.5766600000001]]],[[[72.993042,72.602478],[72.865265,72.6436],[72.840546,72.674988],[72.984985,72.676086],[72.993042,72.602478]]],[[[129.35580400000015,72.70277],[129.18692,72.653595],[128.63443,72.700546],[128.1666560000001,72.657486],[127.314148,72.65332],[127.429153,72.696091],[127.69414,72.700821],[127.91998300000012,72.76304600000014],[128.30191,72.78777],[129.35580400000015,72.70277]]],[[[129.23025500000017,72.83194000000015],[129.29803500000014,72.800262],[128.32690400000013,72.808868],[128.290527,72.86609],[128.416077,72.89915500000012],[128.758331,72.891663],[129.23025500000017,72.83194000000015]]],[[[122.955833,72.863312],[123.187477,72.86804200000012],[123.60582,72.777771],[123.37220800000011,72.761932],[123.100807,72.814697],[122.75277700000017,72.821106],[122.30247,72.937485],[122.955833,72.863312]]],[[[79.57083100000011,72.73027],[79.3961,72.699707],[78.930267,72.73997500000013],[78.604706,72.80304],[78.57859800000011,72.84553],[79.09553,73.079163],[79.19470200000012,73.09582],[79.372757,73.026382],[79.5410920000001,72.905258],[79.513321,72.88916],[79.57083100000011,72.73027]]],[[[74.86276,73.08971],[74.96249,73.05304],[74.7625,73.087204],[74.686096,73.06164600000011],[74.63526900000011,72.94386],[74.7086,72.89665200000013],[74.654434,72.85582000000011],[74.20804,72.956375],[74.089706,73.020538],[74.184143,73.101654],[74.2836,73.119431],[74.491364,73.129974],[74.86276,73.08971]]],[[[120.21388200000013,73.04248],[119.808868,73.034149],[119.6297,73.1147],[119.832207,73.16443],[120.08693,73.152481],[120.27832,73.098877],[120.21388200000013,73.04248]]],[[[76.452774,73.190536],[76.64471400000014,73.1922],[76.73749,73.153595],[76.40498400000013,73.131653],[76.122757,73.207214],[76.452774,73.190536]]],[[[71.34109500000011,73.324997],[71.2208250000001,73.281937],[71.13998400000014,73.28970300000015],[71.15138200000011,73.35304300000013],[71.26277,73.414154],[71.35914600000012,73.393326],[71.34109500000011,73.324997]]],[[[55.331665,73.329987],[55.763054,73.323608],[55.808044,73.28943],[56.43721000000011,73.22554],[56.5886,73.1375],[55.808044,73.05914],[56.246101,73.070541],[56.464714,73.045822],[56.33138300000013,72.992203],[55.615273,72.96138],[56.262215,72.96081],[56.2161,72.8316650000001],[56.15054,72.785538],[55.83971400000013,72.80081200000012],[55.739716,72.77331],[55.49222,72.81080600000013],[55.42943600000012,72.784149],[55.82972000000012,72.745819],[55.945541000000105,72.6666560000001],[55.72304,72.646103],[55.676941,72.564987],[55.60833,72.536102],[55.452492,72.576096],[55.265549,72.584717],[55.45694,72.56219],[55.55555,72.515823],[55.530273,72.466934],[55.11805,72.448029],[55.461937,72.431366],[55.4786,72.270264],[55.57582900000011,72.195816],[55.344437,72.0647],[55.403046,72.028046],[55.322472,71.948593],[55.252472,71.953323],[55.221016,71.925613],[55.510803,71.88916],[55.537483,71.760269],[55.674988,71.60498000000011],[56.03388200000012,71.343872],[56.076942,71.2749940000001],[56.228043,71.194138],[57.0561,70.86219800000015],[57.466103,70.805817],[57.63999200000012,70.726379],[57.55082700000013,70.72387700000013],[57.45166,70.60498],[57.396103,70.60108900000012],[56.736938,70.69886800000012],[56.856659,70.640549],[57.10054800000012,70.628586],[57.342216,70.567764],[57.314156,70.560532],[56.604996,70.638885],[56.5,70.672485],[56.51221,70.7249910000001],[56.582771,70.73332],[56.54583,70.748871],[56.21804800000012,70.66331500000013],[56.371933,70.6436000000001],[56.327217,70.676651],[56.44777,70.67276],[56.660545,70.582489],[56.492767,70.53970300000015],[56.364159,70.562485],[56.558327,70.574158],[56.06582600000013,70.664993],[56.04055000000011,70.644714],[56.181107,70.60498],[56.13138,70.592209],[55.85004,70.67553],[56.047218,70.581665],[55.883049,70.57859800000011],[55.708542,70.61911],[55.710495,70.64218100000011],[55.78591,70.644241],[55.75136,70.69774],[55.597679,70.726334],[55.665474,70.681625],[55.413422,70.74963],[55.23746,70.66875],[55.292763,70.60376],[55.18632,70.55206],[54.753326,70.677475],[54.69443,70.723312],[54.710274,70.750824],[54.573441,70.781479],[54.49332,70.782486],[54.479156,70.73387100000014],[54.764442,70.646378],[54.540833,70.681091],[54.289719,70.7711],[54.2625,70.763611],[54.287216000000114,70.73332],[54.214439,70.726379],[54.050545,70.74054],[53.831108,70.809143],[53.73916,70.791367],[53.529716,70.834152],[53.463608000000136,70.81387300000011],[53.378326,70.8680420000001],[53.572495,70.88638300000014],[53.68093,70.8629300000001],[53.74332400000014,70.943039],[53.50582900000011,71.058868],[53.508331,71.0861],[53.93888,71.13998400000014],[54.065269000000114,71.115265],[53.932495,71.12831100000011],[53.915543,71.099426],[54.109718,71.09275800000012],[54.244995,71.12665],[54.12832600000013,71.12082],[53.960548,71.176926],[53.803322,71.15359500000011],[53.559433000000126,71.201385],[53.453323,71.26111],[53.609161,71.324707],[53.72721100000012,71.4086],[53.900826,71.420532],[53.9511030000001,71.45665],[53.929436,71.46693],[53.563324,71.3830410000001],[53.548607,71.316666],[53.48054500000012,71.2916560000001],[53.36805,71.323608],[53.253883,71.44914200000011],[53.44054,71.538315],[53.35583,71.567215],[53.18277,71.4933170000001],[53.028877000000136,71.500824],[52.919441,71.405548],[52.62221,71.49636800000013],[52.55249,71.594437],[52.432213000000104,71.548325],[52.37610200000012,71.485909],[52.216103,71.56303],[52.140549,71.54054],[52.221657,71.49109],[51.797218,71.4749910000001],[51.63916,71.529709],[51.4161,71.73776],[51.405823000000105,71.8772],[51.57444,72.070831],[51.858604,72.1622],[52.051933,72.100815],[52.397217000000126,72.076096],[52.42722,72.198868],[52.40277100000014,72.222214],[52.584991,72.261108],[52.746101,72.336929],[52.68859900000012,72.373032],[52.674713,72.44192],[52.791939,72.50915500000013],[52.87360400000011,72.51416],[52.910545,72.56972],[53.097488,72.594711],[52.742218,72.553314],[52.748878,72.633041],[52.964439,72.669708],[53.219437,72.647217],[52.976654,72.683044],[52.544159,72.67414900000011],[52.37638,72.724701],[52.603325,72.856369],[52.967209,72.91859],[53.38193500000011,72.881088],[53.391937,72.931366],[53.1386030000001,72.959991],[53.151657,73.010544],[53.38166,73.008331],[53.12971,73.088593],[53.15332000000012,73.155823],[53.44193,73.24109],[53.570274,73.231369],[53.768326,73.300812],[54.16805,73.26748700000013],[54.560547,73.3797],[54.914436,73.422211],[55.331665,73.329987]]],[[[71.046936,73.5],[71.264999,73.43637100000012],[70.999146,73.28888],[71.210541,73.268051],[71.454987,73.346649],[71.62025,73.260818],[71.676376,73.213882],[71.676651,73.176926],[71.357483,73.172211],[71.089981,73.119431],[70.89444,73.128311],[70.411652,73.03554],[70.217758,73.0416560000001],[70.106369,73.09833],[70.00055,73.051651],[70.10054,73.015274],[69.866379,73.03276100000011],[69.91638,73.12665],[70.06303400000013,73.232483],[69.957764,73.37580900000012],[69.974426,73.407211],[70.485535,73.493042],[71.046936,73.5]]],[[[127.296371,73.517212],[127.464996,73.48027],[127.976646,73.470261],[128.07385,73.4060970000001],[128.082733,73.358032],[128.365234,73.352203],[128.25665300000014,73.26249700000011],[128.65524300000016,73.257767],[128.972198,73.17804],[128.7872,73.063599],[129.04275500000017,73.129425],[129.09747300000015,73.130814],[129.118286,73.094711],[129.07886,73.03692600000011],[128.95026,72.98749],[128.299133,72.907486],[128.21051,72.86554],[128.24884,72.830276],[128.23107900000014,72.81805400000012],[127.64637800000015,72.716934],[127.391937,72.72137],[126.92414900000016,72.57193],[126.58943,72.535812],[126.494141,72.473602],[126.58665,72.42276],[126.564423,72.40637200000015],[126.483871,72.405823],[126.30664100000013,72.495255],[126.342484,72.69136],[126.449997,72.785538],[126.333878,72.89722],[126.652206,72.9897],[126.771927,73.076385],[126.76277200000014,73.1736],[126.60054,73.257492],[126.65942,73.41693],[126.726929,73.444427],[126.827477,73.37886000000015],[126.92249300000015,73.489151],[126.8286,73.517212],[126.85304,73.526093],[127.296371,73.517212]]],[[[128.05554,73.48305],[127.67554,73.497757],[127.388046,73.52026],[127.707764,73.535538],[128.05554,73.48305]]],[[[76.39027,73.52082800000011],[76.702774,73.469437],[76.766098,73.43386800000012],[76.316666,73.51388500000012],[76.074158,73.52137800000013],[76.166382,73.55664],[76.39027,73.52082800000011]]],[[[76.077774,73.558029],[75.880264,73.457489],[75.496933,73.44775400000015],[75.54387,73.495255],[75.38053900000011,73.4433140000001],[75.35125,73.405045],[75.30632,73.41833500000013],[75.371918,73.47248800000011],[75.621094,73.54999],[76.077774,73.558029]]],[[[80.360535,73.500275],[80.13526900000011,73.524994],[80.05664100000013,73.555817],[80.403595,73.546097],[80.360535,73.500275]]],[[[86.90221,73.697479],[86.73664900000011,73.595261],[86.394989,73.58831800000013],[86.53526,73.645264],[86.90221,73.697479]]],[[[124.60443,73.728592],[124.836929,73.699997],[124.993591,73.621643],[125.061096,73.65332000000012],[125.059143,73.68304],[125.136002,73.684357],[125.18637100000012,73.62387100000012],[125.168869,73.55664],[125.251389,73.535812],[125.42526,73.555252],[125.62164300000018,73.52887],[125.62849400000015,73.49476],[125.516098,73.45498700000013],[125.56026,73.403046],[125.87052900000013,73.498596],[126.308868,73.5458220000001],[126.40221,73.507767],[126.317375,73.44787600000012],[126.198868,73.454163],[126.15664700000013,73.37442],[126.41499,73.4086],[126.53027,73.356934],[126.58943,73.304153],[126.556091,73.23498],[126.677467,73.156937],[126.714996,73.08443],[126.582489,72.99193],[126.32999,72.926926],[126.27805,72.879974],[126.385818,72.79275],[126.29305,72.66581700000012],[126.244431,72.518875],[126.334152,72.436646],[126.348328,72.37997],[126.12552600000016,72.300537],[125.3230360000001,72.47082],[125.242477,72.53471400000012],[124.863602,72.608322],[124.765,72.67082],[124.38275,72.673309],[124.12109,72.761932],[122.58499100000017,72.937195],[122.42804,72.98193],[122.465271,73.012772],[122.630257,73.021652],[122.847214,72.996368],[122.87052900000015,72.960266],[123.08804,72.913605],[123.190811,72.91859],[123.315811,72.97331],[123.33387800000013,72.997482],[123.30942,73.020828],[123.380539,73.166382],[123.53276100000015,73.191086],[123.515823,73.162766],[123.658867,73.168045],[123.66554,73.206375],[123.533333,73.213043],[123.21914700000013,73.40471],[123.24080700000013,73.55137600000012],[123.371918,73.61832],[123.37692300000015,73.6624910000001],[123.546944,73.69693000000012],[123.601929,73.609421],[123.9561,73.61804200000012],[123.998322,73.636108],[123.908867,73.66748],[123.87747200000013,73.765274],[123.97442600000012,73.7619320000001],[124.05470300000013,73.718048],[123.99247700000012,73.68942],[124.05721300000016,73.681366],[124.358597,73.80359],[124.60443,73.728592]]],[[[142.154968,73.88998400000014],[142.513031,73.838882],[143.43191500000012,73.522491],[143.5316470000001,73.44220000000013],[143.436371,73.403046],[143.51193200000012,73.27415500000012],[143.50582900000018,73.23027],[143.18496700000014,73.203323],[142.62246700000014,73.25943],[142.38580300000012,73.24109],[141.589417,73.310257],[140.745514,73.451385],[140.424988,73.433044],[139.8819,73.345535],[139.71136500000011,73.354706],[139.653595,73.402206],[139.728577,73.440262],[140.41608,73.48305],[140.649414,73.56888],[140.892761,73.792206],[141.08578,73.87082],[141.378021,73.861374],[142.00415,73.91998],[142.154968,73.88998400000014]]],[[[124.545258,73.85331700000012],[124.391663,73.84137],[124.28777300000013,73.88443000000012],[124.37276,73.911102],[124.32554600000014,73.924149],[124.55304000000012,73.947754],[124.575546,73.948029],[124.45832800000017,73.921646],[124.65998800000011,73.898041],[124.545258,73.85331700000012]]],[[[86.48719800000015,73.90887],[86.348602,73.923874],[86.223312,73.966385],[86.301376,73.977203],[86.48719800000015,73.90887]]],[[[84.419144,74.031937],[84.416656,73.964996],[84.389435,73.955551],[83.879425,74.006653],[84.419144,74.031937]]],[[[83.61581400000011,74.093048],[83.5686,74.06526],[83.3872070000001,74.072495],[83.449707,74.037766],[82.815811,74.09109500000011],[83.202774,74.14972],[83.61581400000011,74.093048]]],[[[82.609711,74.048599],[82.358871,74.073883],[82.314697,74.11443],[82.564697,74.1593170000001],[82.736374,74.098877],[82.609711,74.048599]]],[[[85.534424,74.127472],[85.484421,74.141098],[85.57832300000013,74.158325],[85.408875,74.189697],[85.732788,74.168625],[85.534424,74.127472]]],[[[135.64999,74.203598],[136.0636,74.07666],[136.26581,73.984421],[136.27249100000017,73.935806],[136.1633,73.875534],[136.070801,73.896942],[136.040527,73.93304400000011],[135.731079,74.035812],[135.66998300000012,74.10137900000012],[135.570801,74.141937],[135.443573,74.152771],[135.35358,74.252777],[135.64999,74.203598]]],[[[141.02054,73.99275200000011],[140.448608,73.901611],[140.1188350000001,74.02527],[140.07275400000015,74.0977630000001],[140.09661900000015,74.188583],[140.27304100000015,74.255554],[140.87439,74.2711],[141.056366,74.228592],[141.117188,74.168045],[141.083862,74.06526],[141.02054,73.99275200000011]]],[[[116.068878,74.286926],[115.883881,74.300812],[115.8858180000001,74.320267],[115.93914800000016,74.361649],[116.06749000000013,74.36914100000013],[116.127197,74.310806],[116.068878,74.286926]]],[[[59.033882,74.342758],[58.979988,74.33693],[58.93499,74.358322],[59.081108,74.409149],[59.07666000000011,74.358032],[59.033882,74.342758]]],[[[84.94525,74.47777],[84.541367,74.45694],[84.766388,74.406647],[84.74443100000013,74.39526400000011],[84.37303,74.448593],[84.73054500000012,74.506104],[84.94525,74.47777]]],[[[112.713318,74.498871],[113.21304,74.486923],[113.39415,74.448318],[113.433319,74.393875],[113.17442300000016,74.21775800000012],[112.9711,74.19331],[112.78777300000013,74.091934],[112.15942,74.13472],[111.96248600000013,74.21054100000015],[111.592209,74.25360100000012],[111.455551,74.31666600000011],[111.510536,74.354706],[111.676376,74.373032],[111.877762,74.34526],[111.98055,74.38749700000011],[111.97747800000013,74.498871],[112.078873,74.5486],[112.713318,74.498871]]],[[[86.212494,74.518326],[86.13472,74.486099],[85.969437,74.510269],[85.85637,74.43969700000014],[85.659424,74.47053],[85.823608,74.57026700000011],[85.986923,74.56915300000014],[86.212494,74.518326]]],[[[85.43942300000015,74.45359800000011],[85.219437,74.474701],[85.144989,74.540268],[85.31080600000013,74.581375],[85.551376,74.568604],[85.65332,74.529434],[85.43942300000015,74.45359800000011]]],[[[79.386108,74.61720300000013],[79.61219800000015,74.594986],[79.498596,74.518051],[79.1491550000001,74.603043],[79.30304,74.57609600000012],[79.18248,74.627762],[79.253601,74.6561],[79.386108,74.61720300000013]]],[[[85.655548,74.7916560000001],[85.70027,74.721649],[85.095535,74.747757],[85.470917,74.81224],[85.655548,74.7916560000001]]],[[[87.049713,74.97916],[87.137497,74.9361],[86.95277,74.873596],[86.805542,74.911652],[86.683594,74.8936],[86.835266,74.826385],[86.335815,74.84553],[86.211105,74.898605],[86.599426,74.90304600000013],[86.503052,74.928864],[86.499146,74.97998],[86.6744230000001,74.952209],[87.049713,74.97916]]],[[[82.1519320000001,75.11554000000011],[82.12915,75.09499],[82.02721,75.128311],[82.107483,75.158325],[82.1519320000001,75.11554000000011]]],[[[82.10582,75.412201],[82.214432,75.406647],[82.291931,75.33055],[82.039154,75.340271],[82.01193200000012,75.172211],[81.891098,75.213043],[81.8716430000001,75.309418],[81.815811,75.320541],[81.811646,75.29248],[81.69136,75.27638200000013],[81.493042,75.358322],[81.77943,75.462204],[81.72608900000012,75.412201],[81.7391510000001,75.381927],[81.87831100000011,75.39082300000013],[81.93166,75.425262],[81.907761,75.493317],[82.16693,75.516098],[82.12442,75.454712],[82.00972,75.43887],[82.10582,75.412201]]],[[[147.01831100000015,75.334717],[147.34634,75.34971600000011],[147.165527,75.36137],[147.4061,75.43776],[148.387756,75.41609],[148.57498,75.375809],[148.44357,75.2833250000001],[148.578033,75.213318],[148.887482,75.218597],[149.32608,75.2844240000001],[150.14831500000014,75.218872],[150.473297,75.09054600000013],[150.62661700000012,75.11276],[150.68442,75.15664700000012],[150.953033,75.1394350000001],[150.819977,75.104431],[150.644989,75.001938],[150.68801900000017,74.9361],[150.60358,74.88443000000012],[150.04221,74.837769],[149.77832,74.796646],[149.7196960000001,74.76221],[148.704407,74.759995],[148.23413100000016,74.79221],[147.701904,74.9422],[147.14025900000013,74.993866],[146.73941000000013,75.103317],[146.17996200000016,75.18498],[146.07025,75.226654],[146.161926,75.27887],[146.2446900000001,75.42248500000011],[146.414978,75.586105],[146.64749100000014,75.55525200000011],[146.772217,75.501099],[146.67859,75.479156],[146.63943,75.41998],[147.01831100000015,75.334717]]],[[[140.745941,75.651855],[140.596619,75.652206],[140.51944,75.705826],[140.76998900000012,75.6772],[140.745941,75.651855]]],[[[135.65387,75.36499],[135.44751,75.37437],[135.4441220000001,75.44081100000011],[135.589966,75.56330900000012],[135.536652,75.66387900000012],[135.708008,75.849991],[135.889984,75.686096],[136.17776500000014,75.619141],[135.962189,75.508041],[135.95581100000015,75.47804300000013],[136.03027,75.431366],[135.65387,75.36499]]],[[[59.192490000000134,75.88804600000014],[59.123047,75.88248],[58.99360700000011,75.891098],[59.20471,75.925262],[59.278328,75.9083250000001],[59.192490000000134,75.88804600000014]]],[[[81.60026600000015,75.93526],[82.251938,75.87692300000015],[82.256943,75.869431],[81.55081,75.9236],[81.60026600000015,75.93526]]],[[[58.75471,75.896942],[58.6947100000001,75.89943],[59.1977690000001,75.982483],[59.266937,75.96944],[58.75471,75.896942]]],[[[82.973038,75.969147],[83.302475,75.94136000000015],[83.209427,75.913879],[82.892212,75.909424],[82.772491,75.944427],[82.257217,75.958603],[82.562759,75.995255],[82.973038,75.969147]]],[[[96.766937,75.97526600000015],[96.705551,75.983597],[96.69582,76.011383],[97.33728,76.102081],[97.065811,76.006943],[96.766937,75.97526600000015]]],[[[140.910797,76.06694],[140.847198,76.095535],[140.98636,76.14415],[141.079407,76.109421],[141.078857,76.08581],[140.910797,76.06694]]],[[[60.472488,76.15999],[60.156937,76.107208],[59.866104,76.10416],[60.041107,76.15694],[60.498329,76.1805420000001],[60.472488,76.15999]]],[[[152.741333,76.10776],[152.616913,76.109421],[152.455231,76.15694],[152.51361,76.19664],[152.756653,76.211929],[152.80304,76.158325],[152.741333,76.10776]]],[[[139.1908,76.07222000000012],[139.836639,75.964157],[139.90692100000012,75.925262],[139.833588,75.926086],[139.7869260000001,75.885544],[139.935242,75.836105],[140.49692,75.79332],[140.545532,75.757492],[140.43081700000016,75.656372],[140.479126,75.636108],[140.911102,75.608597],[141.0607910000001,75.645264],[140.86468500000012,75.73719800000015],[140.909698,75.832489],[140.87661700000012,75.897766],[140.90219100000013,75.981094],[140.97189300000014,76.039154],[141.189148,76.05775],[141.61969,76.012497],[141.306641,76.17248500000011],[141.356628,76.1805420000001],[141.763031,76.099716],[142.560242,75.857758],[143.088562,75.806091],[143.58441200000016,75.866928],[143.900543,75.837204],[144.47552,75.709717],[144.71301,75.691925],[144.82553100000018,75.637772],[145.20026,75.597214],[145.3947140000001,75.517487],[144.75388,75.43553],[144.688568,75.400543],[144.66775500000014,75.329163],[144.94165,75.2686],[144.7258,75.232208],[144.695526,75.16081200000013],[144.39721700000018,75.055817],[143.9497070000001,75.026932],[143.75803,75.074997],[143.36551,75.067215],[142.903595,75.133881],[142.83441200000016,75.21832300000011],[142.71801800000014,75.22777],[142.656647,75.308319],[142.49692,75.36080900000013],[142.506042,75.45372],[142.731903,75.546936],[143.01052900000013,75.59220900000014],[143.0405270000001,75.66970800000013],[142.926086,75.71693],[142.447479,75.7111],[142.42358400000012,75.665817],[142.22995,75.655258],[142.140259,75.59082000000012],[142.113586,75.501389],[142.15524300000016,75.375534],[142.41803,75.256653],[142.58081100000015,75.15387],[142.61245700000018,75.099716],[143.392761,75.002213],[143.579956,75.0122070000001],[143.7069090000001,74.938583],[143.430817,74.887497],[142.698578,74.89444],[142.61996,74.84915200000012],[142.696625,74.83554100000015],[142.487457,74.81165],[141.968292,74.93275],[142.067749,74.96331800000013],[142.3605040000001,74.92804000000012],[142.170532,75.004166],[140.06638,74.821106],[139.97412,74.898331],[139.64694,74.97916],[139.464691,74.93166],[139.4783,74.86554],[139.5663760000001,74.856369],[139.49411,74.7586060000001],[139.343842,74.685806],[139.096069,74.64722],[138.742737,74.723038],[138.13916000000017,74.777771],[137.89053300000012,74.845261],[137.78192100000012,74.981094],[137.1408080000001,75.13220200000012],[136.91079700000012,75.27192700000012],[136.861359,75.349152],[137.023865,75.388321],[137.172485,75.33166],[137.404968,75.352203],[137.42804000000012,75.382477],[137.39444,75.410812],[137.13303,75.41137700000013],[137.13888,75.453323],[137.18801900000017,75.470535],[137.20764,75.528992],[137.290253,75.59553],[137.16470300000015,75.6477660000001],[136.971985,75.601974],[137.081085,75.563034],[136.958557,75.604218],[137.1535950000001,75.655823],[137.156097,75.69165],[137.068298,75.71914700000013],[137.181641,75.780273],[137.74469,75.748322],[137.71469100000013,75.7836],[137.43027,75.877197],[137.40554800000018,75.93026700000013],[137.44998,75.95471],[137.71023600000012,76.00861],[138.003326,76.01944],[138.11245700000018,76.079987],[137.968842,76.05137600000012],[138.3396910000001,76.14804],[138.384705,76.07249500000012],[138.4408,76.05748],[138.500824,76.16832000000011],[138.73331,76.21609500000011],[138.94553,76.207214],[139.023041,76.12469],[139.1908,76.07222000000012]]],[[[95.19942,76.15776100000011],[95.101379,76.15332],[95.00278,76.17248500000011],[95.084503,76.22079],[95.19942,76.15776100000011]]],[[[94.997482,76.26915],[94.840271,76.17942800000014],[94.408035,76.20498700000013],[94.493866,76.23248],[94.78943,76.20915200000013],[94.751007,76.25416600000011],[94.915543,76.287766],[94.997482,76.26915]]],[[[96.36637900000011,76.301086],[96.649429,76.248871],[96.569153,76.15027],[96.52193,76.186096],[96.53997800000013,76.23442100000011],[96.449417,76.26998900000012],[96.362198,76.26221],[96.309708,76.19303900000011],[96.405823,76.16582],[96.35054,76.097488],[96.176926,76.15221],[95.83804,76.15443],[95.26361,76.213043],[95.319717,76.28387],[95.56849,76.25409700000012],[95.785263,76.298325],[96.043594,76.277481],[96.36637900000011,76.301086]]],[[[96.756943,76.322769],[96.6647,76.29248000000011],[96.3830410000001,76.33194000000015],[96.697205,76.340271],[96.756943,76.322769]]],[[[96.997482,76.277206],[96.858322,76.27221700000013],[96.823372,76.22749],[96.92276,76.25722],[97.03831500000013,76.23304700000011],[96.758881,76.1736],[96.711105,76.213608],[96.834427,76.346939],[97.038589,76.34082],[97.07304,76.30304],[96.997482,76.277206]]],[[[113.439972,76.360535],[113.306931,76.359146],[113.118759,76.369995],[113.258881,76.436371],[113.306374,76.42164600000012],[113.271103,76.388885],[113.439972,76.360535]]],[[[94.357208,76.574432],[94.142761,76.57304],[93.86998000000011,76.58499100000012],[93.951813,76.60981800000013],[94.357208,76.574432]]],[[[112.521927,76.622482],[112.565811,76.549988],[112.713882,76.510544],[112.593323,76.44359],[112.448593,76.451096],[112.30442800000014,76.53305100000011],[112.079987,76.55304],[111.95665,76.598602],[111.989151,76.628586],[112.292213,76.617752],[112.34804,76.656647],[112.521927,76.622482]]],[[[96.46408,76.706009],[96.35859700000015,76.630814],[96.242203,76.60971],[95.88916,76.621368],[95.90027,76.655548],[95.973312,76.67221100000012],[96.46408,76.706009]]],[[[95.133041,76.702774],[95.326935,76.661102],[94.81303,76.64888],[95.051376,76.67581],[95.133041,76.702774]]],[[[95.598877,76.66998300000012],[95.70221,76.69414],[95.83194000000015,76.685532],[95.71165500000012,76.64582800000011],[95.49721,76.64721700000013],[95.412766,76.69971],[95.513046,76.713882],[95.598877,76.66998300000012]]],[[[97.546371,76.582214],[97.31860400000011,76.599716],[97.31638,76.606644],[97.370819,76.714996],[97.44054,76.714996],[97.59414700000013,76.597214],[97.546371,76.582214]]],[[[149.31442300000015,76.753601],[149.16885400000012,76.65054],[148.97858,76.66998300000012],[148.39221,76.6436],[148.746613,76.745819],[149.31442300000015,76.753601]]],[[[97.86998,76.770264],[97.851654,76.766098],[97.729431,76.818329],[97.919434,76.838318],[97.86998,76.770264]]],[[[68.266098,76.958603],[68.50082,76.956375],[68.931366,76.782761],[68.88777,76.66998300000012],[68.784714,76.587769],[68.867203,76.574432],[68.861099,76.54193],[68.39833,76.364151],[68.213043,76.327209],[68.31330900000012,76.2833250000001],[67.997482,76.265823],[67.03471,76.084152],[65.408875,75.8797],[65.136658,75.80802900000015],[64.11499000000015,75.717484],[63.811104000000114,75.654434],[63.655548000000124,75.711655],[63.55971,75.708038],[63.620827,75.692474],[63.528603,75.632477],[63.304436,75.586105],[63.029991,75.58777],[62.241104,75.432755],[62.02665700000011,75.443863],[61.85416,75.381927],[61.698601,75.3672],[61.65027,75.2791600000001],[61.504997,75.221375],[61.38526900000011,75.24498],[61.3811040000001,75.33055],[61.287773,75.326096],[61.30249,75.285538],[61.16499,75.213043],[60.746384,75.104431],[60.810822,75.07805],[60.736656,75.0249940000001],[60.57972,75.038879],[60.60610200000013,75.103592],[60.492218,75.1136],[60.44249,75.06275900000014],[60.465271,75.026932],[60.446098,75.01416],[59.925552,74.99915],[60.104713,74.96693],[60.60943600000013,74.965546],[60.68027500000011,74.933319],[60.55555,74.862198],[60.198601,74.856934],[60.37082700000013,74.7897],[60.3186,74.760544],[59.937492,74.718048],[59.509995,74.794983],[59.627769,74.72916],[59.86999,74.68248],[59.878876,74.62637],[59.773323,74.591095],[59.57444,74.6022],[59.169441,74.71971100000013],[59.290276,74.638046],[59.121933,74.541367],[59.08888200000012,74.48276],[59.147217,74.438583],[58.783607,74.461105],[58.716934,74.49971],[58.18335000000013,74.573532],[58.61388,74.427765],[58.624992000000134,74.363037],[58.74276700000012,74.266937],[58.5861,74.176376],[58.506386,74.165268],[58.27138,74.215271],[58.25943800000011,74.17581200000012],[58.38472,74.13109],[58.29972,74.08638],[58.251663,74.1330410000001],[58.139435,74.14055],[58.139435,74.07638500000013],[58.22276,74.008881],[58.13582600000012,73.98526],[57.71777,74.0522],[57.533882,74.18193100000013],[57.41332200000011,74.176926],[57.52332300000012,74.116928],[57.526382000000126,74.0852660000001],[57.2575,74.076096],[57.548607000000125,74.060257],[57.911659,73.91554300000013],[57.94415300000014,73.803314],[57.715271,73.71304],[57.402771,73.838318],[56.555824,73.882202],[56.698326,73.851379],[57.32083100000011,73.826385],[57.58027600000014,73.7038730000001],[57.61361,73.662201],[57.602219,73.615814],[57.32804900000013,73.54999],[56.72304500000013,73.673599],[56.74749,73.601089],[57.25332600000013,73.48776],[57.22748600000011,73.450272],[56.90638000000012,73.308868],[56.764442000000145,73.3641510000001],[56.74137900000011,73.335815],[56.758888,73.246933],[56.12860100000012,73.28804],[56.041107,73.32443],[56.009163,73.418594],[55.907768,73.440262],[55.867767,73.435806],[55.97916,73.38916],[55.977486,73.31749],[55.749161,73.34637],[55.39222,73.33915700000011],[54.971657,73.44220000000013],[54.525551,73.39971900000012],[54.220543,73.323044],[54.030273000000136,73.3797],[54.298882,73.41721],[54.336105,73.46609],[54.24527000000012,73.478043],[54.246658,73.50972000000013],[54.35804700000011,73.561646],[54.751938,73.658875],[55.176102,73.7061],[54.85527000000013,73.72777],[54.542221,73.702209],[54.265549,73.60554500000012],[54.060822,73.60582],[53.63055,73.75526],[53.657494,73.80693100000012],[53.889435,73.777206],[54.249718,73.910812],[54.799995,73.967484],[54.585266,74.01166],[55.030823,74.17415],[55.16638200000011,74.18609600000013],[55.267769,74.151382],[55.866386,74.10247800000013],[55.80332,74.141098],[55.628601,74.158035],[55.5894320000001,74.1927490000001],[55.073326,74.264435],[55.225548,74.306931],[55.306938000000116,74.27666],[55.693878,74.2663880000001],[55.748329000000126,74.28858900000012],[55.66499,74.326096],[55.23027000000013,74.36886600000014],[55.373322,74.43692],[56.29055,74.491364],[56.03277,74.486374],[56.081665,74.516937],[55.49777200000011,74.565811],[55.520828,74.64415],[55.571663,74.65971],[55.77332300000011,74.68887300000011],[55.914711,74.657761],[56.409988,74.720535],[56.584991,74.6785890000001],[56.98458,74.687149],[56.600548,74.69359],[56.475548,74.794144],[55.988045,74.77442900000011],[55.82972000000012,74.796097],[55.809433,74.806931],[55.842491,74.828049],[56.67860400000012,74.952209],[56.296104,74.958038],[56.47443,75.00972],[56.418884000000105,75.03498800000011],[55.86360900000011,74.992477],[55.942215,75.068054],[55.73082,75.073318],[55.797775,75.146378],[56.05582,75.21582000000012],[56.161377,75.1486],[56.35471300000012,75.189148],[56.47332,75.097763],[56.44777,75.063309],[56.480545,75.061371],[56.907768,75.2336],[56.87526700000012,75.28137],[56.72637900000012,75.294434],[56.869438000000116,75.359711],[57.052216,75.390274],[57.737213,75.323044],[57.658882,75.423874],[57.54499800000014,75.45166],[57.503326,75.492477],[58.19471,75.588318],[58.153046,75.622757],[57.92222,75.62831100000011],[58.001389000000124,75.674149],[58.51583,75.723877],[58.55110200000013,75.76193200000012],[58.769440000000145,75.83471700000013],[59.14527,75.859985],[59.416939,75.933594],[59.744156,75.926376],[60.04166,75.98637400000013],[60.31805400000013,75.99054],[60.351105,76.00915500000013],[60.04083300000013,76.04693600000013],[60.29610400000013,76.109421],[60.83943,76.11665],[60.464439,76.008881],[60.750000000000114,76.00610400000011],[60.81916,76.058029],[61.063881,76.06999200000013],[61.15470900000013,76.122208],[60.903046,76.146378],[60.989433,76.243866],[61.066383,76.27388],[61.67943600000012,76.310532],[62.02833,76.252487],[62.30694,76.25749],[62.39804800000013,76.187195],[62.502495000000124,76.176651],[62.734993,76.2580410000001],[62.834991,76.260544],[62.90470900000014,76.207489],[62.979431,76.20972],[63.71777,76.345535],[64.10971,76.311371],[64.661926,76.414154],[64.798035,76.474152],[65.062759,76.49470500000012],[65.08415200000013,76.467758],[65.161377,76.468323],[65.548599,76.582214],[66.01165800000012,76.535538],[66.032211,76.541367],[65.907761,76.62608300000011],[65.748032,76.678314],[65.92608600000011,76.74414100000011],[66.15165700000011,76.758331],[66.68248,76.9019320000001],[67.570267,77.01305],[67.943588,77.005264],[68.266098,76.958603]]],[[[90.18026700000013,77.11581],[89.967209,77.113037],[89.82971,77.14082],[90.023315,77.13971],[90.18026700000013,77.11581]]],[[[156.61773700000015,77.103867],[156.4688420000001,77.116379],[156.43414300000018,77.135269],[156.73218,77.12580900000012],[156.61773700000015,77.103867]]],[[[88.6647,77.096375],[88.825546,77.083328],[88.78305,77.00499000000012],[88.63165300000014,77.061096],[88.636658,77.10498000000011],[88.694702,77.13443],[88.779709,77.14833],[88.95721400000014,77.12580900000012],[88.64305100000013,77.09999],[88.6647,77.096375]]],[[[96.57554600000014,77.13026400000012],[96.45555100000013,77.067215],[96.1660920000001,76.989151],[95.68248,76.94525],[95.9474790000001,77.00861],[95.22916,76.9933170000001],[95.593048,77.078049],[96.165817,77.126083],[96.459717,77.206375],[96.537766,77.193588],[96.57554600000014,77.13026400000012]]],[[[105.88472,77.261383],[105.780548,77.274155],[106.00776700000011,77.28248600000012],[105.996368,77.277206],[105.88472,77.261383]]],[[[89.681656,77.284424],[89.541656,77.28194],[89.671921,77.248032],[89.48526,77.179977],[89.156937,77.19802900000013],[89.167831,77.164429],[89.135818,77.20498700000013],[89.154709,77.252777],[89.282761,77.300262],[89.474701,77.314423],[89.681656,77.284424]]],[[[106.402481,77.303589],[106.34721400000012,77.306366],[106.33167300000012,77.31805400000012],[106.458328,77.315262],[106.402481,77.303589]]],[[[107.56192,77.25499],[107.354431,77.228867],[107.20027,77.233871],[107.353317,77.347214],[107.666656,77.33082600000012],[107.689697,77.2641600000001],[107.56192,77.25499]]],[[[106.646652,77.376083],[106.504173,77.38998400000014],[106.57332,77.43887300000011],[106.900818,77.459152],[106.87052900000013,77.4160920000001],[106.646652,77.376083]]],[[[82.560257,77.46193],[82.20555100000013,77.483322],[82.12025,77.506378],[82.443863,77.510269],[82.575546,77.481094],[82.560257,77.46193]]],[[[91.966385,77.599991],[91.83665500000012,77.611649],[91.7397,77.647217],[91.81749000000013,77.667206],[92.037766,77.630814],[91.966385,77.599991]]],[[[104.267487,77.67581200000012],[104.74582,77.69859300000013],[104.785812,77.683319],[104.808594,77.624695],[104.910812,77.59027100000014],[105.35277,77.54248],[105.871918,77.563599],[105.911377,77.459427],[105.998032,77.413315],[106.291931,77.362762],[105.737488,77.36137400000011],[105.445824,77.237198],[104.11720300000012,77.09082],[104.712769,77.108322],[105.399147,77.083328],[105.909988,77.14137],[105.938026,77.12469],[105.768333,77.03221100000013],[105.43380700000012,77.00328100000013],[105.45387,76.974426],[105.91805,76.99109],[106.19413800000012,77.061646],[106.727203,76.99609],[106.77581800000013,77.000549],[106.64471,77.02887],[106.813873,77.049988],[107.265,77.018051],[107.33582300000012,76.953598],[107.503601,76.922211],[107.27165200000013,76.8894350000001],[107.353867,76.86859],[107.211647,76.80304],[107.064423,76.7961],[107.05802900000013,76.75555400000013],[106.64082300000013,76.57721],[106.391373,76.59332300000011],[106.36554000000012,76.579437],[106.40109300000012,76.50972],[106.82361,76.46443],[107.31609300000014,76.5310970000001],[107.57527,76.503601],[107.875809,76.53526],[108.00000000000011,76.635269],[107.90358700000013,76.666382],[107.91443,76.72442600000011],[107.94414,76.731659],[108.58638000000012,76.713043],[109.562759,76.738586],[110.03442,76.68803400000012],[110.490257,76.757767],[110.737488,76.72388],[111.103867,76.755264],[111.200272,76.705826],[111.552467,76.67998],[111.445534,76.623306],[111.466377,76.612488],[111.76748700000013,76.60331700000012],[112.192749,76.47693],[111.906372,76.364426],[112.26582,76.452209],[112.74275,76.328323],[112.736099,76.264709],[112.687187,76.225266],[112.50138900000013,76.23858600000011],[112.604713,76.192474],[112.78276100000016,76.192474],[112.855263,76.14194],[112.79332,76.07916300000011],[112.566673,76.04054],[113.018883,76.07222000000012],[113.041092,76.11360200000013],[112.9891510000001,76.140274],[113.019707,76.153595],[113.26249700000017,76.134155],[113.22998,76.169983],[112.98276,76.213608],[112.92942800000014,76.25305200000012],[113.24275200000011,76.26221],[113.468597,76.13693200000012],[113.437187,76.051926],[113.510818,76.02721],[113.554153,75.969986],[113.547493,75.866653],[113.621094,75.891937],[113.619713,75.921097],[113.77693,75.93609600000012],[113.852478,75.91277],[113.892487,75.849991],[113.838043,75.765274],[113.75749,75.7122],[113.705261,75.59776],[113.50943,75.53248600000012],[113.421654,75.538879],[113.61304,75.649719],[113.138046,75.70082100000013],[112.60776,75.83998],[112.337196,75.84664900000013],[112.51970700000015,75.768875],[112.68553,75.76416],[112.86914100000013,75.705551],[112.877472,75.62637],[112.79027,75.582489],[112.828049,75.547485],[113.011932,75.546097],[113.034149,75.563873],[112.98332200000016,75.597214],[113.00221,75.610809],[113.275543,75.64665200000013],[113.305817,75.614151],[113.26944000000015,75.5577550000001],[113.50277700000015,75.50665300000014],[113.6586,75.51221],[113.71748400000013,75.4086],[113.53777300000012,75.399429],[113.670532,75.36137],[113.60608700000012,75.28387],[113.01249700000017,75.07027],[112.8886,74.988037],[112.1411,74.877197],[112.084427,74.853867],[112.091927,74.82193],[112.05054,74.783325],[111.778053,74.66165200000012],[111.405548,74.688309],[111.02026,74.600815],[111.051933,74.57026700000011],[110.94664,74.54443],[110.544708,74.474701],[110.289429,74.481659],[110.39082300000013,74.437195],[110.20166,74.365814],[109.60832,74.317764],[109.57748,74.30720500000012],[109.97748,74.289703],[109.94413800000012,74.232208],[109.84526,74.175537],[109.52442900000011,74.09082],[109.0811,74.03665200000012],[108.774147,73.9391480000001],[108.491364,73.77026400000011],[108.189697,73.670258],[107.96555300000011,73.66304],[107.75193800000011,73.60693400000014],[107.142487,73.6147],[107.102203,73.570541],[107.159714,73.539154],[106.86720300000013,73.422211],[106.798027,73.33888200000013],[106.650543,73.301651],[106.265549,73.317764],[106.06026,73.27165200000013],[106.018883,73.148331],[105.84915,73.09804],[105.839157,73.00082],[105.591087,72.88888],[105.17553700000013,72.78693],[105.211929,72.764709],[105.493042,72.765823],[105.959991,72.90193],[106.02026400000011,72.95166000000012],[106.28804,72.960266],[106.209717,72.97998000000013],[106.17249300000013,73.098602],[106.19331,73.136658],[106.33387800000013,73.18719],[106.79193,73.139984],[107.05359,73.179428],[107.792213,73.17276],[108.069443,73.244431],[108.353043,73.219711],[108.38942700000013,73.258881],[108.194427,73.273315],[109.241928,73.39415],[109.196373,73.44802900000012],[109.21248600000013,73.46638],[109.43137,73.41775500000011],[109.320831,73.483871],[109.18386800000013,73.50305200000014],[109.19220000000013,73.5458220000001],[109.496094,73.454163],[109.752213,73.4536],[110.102203,73.50833100000011],[110.155823,73.54470800000013],[110.133881,73.555252],[110.53526,73.646378],[110.914322,73.696686],[110.877472,73.728592],[110.893372,73.765411],[110.648331,73.78749],[110.262772,73.69664000000012],[109.848328,73.698868],[109.757767,73.658875],[109.65166,73.6849820000001],[109.52916,73.77026400000011],[109.53692600000011,73.82222],[109.83194,73.875534],[109.917763,73.976379],[110.200409,74.02444],[110.564148,73.99192800000014],[111.001389,73.904434],[111.09999,73.94720500000011],[111.065262,73.989426],[111.140266,74.02916],[111.54332000000011,74.044983],[111.578873,74.022766],[111.382477,73.980545],[111.23137,73.993866],[111.20139300000011,73.967484],[111.29416,73.859344],[111.419144,73.816666],[111.77498600000013,73.747482],[112.248322,73.70694],[112.874687,73.75972],[112.960274,73.80664100000013],[112.868591,73.927475],[112.88777200000014,73.964996],[113.14055,73.862762],[113.42442300000015,73.64082300000013],[113.418053,73.58083],[113.28415,73.5641480000001],[113.132477,73.44525],[113.269989,73.36914],[113.4994200000001,73.334152],[113.520264,73.093048],[113.45193,73.005829],[113.48637,72.95832800000011],[113.29721,72.88415500000013],[113.104431,72.85359],[113.08971,72.83194000000015],[113.1785890000001,72.723602],[113.5338670000001,72.634995],[114.044708,72.597214],[114.091927,72.59498600000012],[113.35582000000011,72.68553],[113.227768,72.736099],[113.151657,72.82609600000012],[113.16748,72.85332],[113.369431,72.88554],[113.530823,72.960266],[113.561096,73.07666],[113.52832000000012,73.18748],[113.546944,73.24220300000013],[113.69525,73.312195],[114.03387,73.341934],[113.76998900000011,73.353592],[113.52693,73.439148],[113.475273,73.50416600000011],[114.098602,73.58692900000011],[114.85887100000015,73.60525500000011],[115.24331700000018,73.693314],[115.45694,73.70305],[116.57499700000017,73.66304],[117.24220300000012,73.589981],[118.63443,73.571655],[118.993874,73.489151],[118.91110200000014,73.45498700000013],[118.687477,73.44220000000013],[118.478867,73.48305],[118.348038,73.41304],[118.34887700000013,73.28943],[118.39221,73.235809],[119.004173,73.104431],[119.526093,73.061096],[119.58611,72.996368],[119.81775700000014,72.935806],[120.5686,72.885818],[119.876648,72.946365],[119.757492,73.005829],[120.58167300000012,72.981094],[121.01443,72.929977],[121.388321,72.966934],[121.86580700000013,72.968048],[121.962769,72.95694],[121.918587,72.92554],[122.05330700000013,72.891937],[122.41970800000013,72.867477],[123.34387200000015,72.72747800000013],[123.787773,72.756378],[124.108871,72.71138],[124.34305,72.64082],[124.729713,72.626373],[125.13749700000015,72.531937],[125.255829,72.451935],[125.455551,72.4236],[125.647491,72.341934],[125.8822020000001,72.33221400000012],[126.117752,72.26694],[126.372482,72.353317],[126.6255,72.178146],[126.75138900000012,72.14027],[126.80721300000015,72.01361],[127.12941,71.851089],[127.08941700000014,71.760818],[127.20609300000012,71.59166],[127.220543,71.392487],[127.303864,71.408035],[127.31330900000012,71.48442],[127.188019,71.74720800000011],[127.233856,71.832214],[127.32608,71.89804100000015],[126.981087,72.046936],[126.915268,72.174423],[126.89777400000014,72.286926],[126.71914700000013,72.388885],[127.02916000000015,72.402481],[127.6586,72.347488],[127.937759,72.205826],[128.26443,72.1086],[128.38361,72.039429],[128.49493,71.91415],[128.61297600000012,71.890549],[128.650787,71.786102],[128.7116390000001,71.7705380000001],[128.95993,71.73997500000013],[129.179932,71.800262],[129.169983,71.84971600000011],[129.083282,71.913879],[129.05465700000013,71.97499],[129.07247900000016,72.00193800000011],[129.2919,71.869705],[129.30743,71.801651],[129.53995,71.72221],[129.28162,71.75166],[128.929108,71.708328],[128.8146670000001,71.662201],[128.847443,71.601379],[129.18436,71.59082],[129.31411700000012,71.462204],[129.380737,71.34664900000013],[129.66079700000012,71.25555400000013],[129.75861,71.14694],[129.7438350000001,71.121094],[130.069122,71.085266],[130.22467,70.986923],[130.170258,70.962769],[130.57717900000011,70.86943100000013],[130.68747,70.87942],[130.723022,70.956375],[130.79303,70.97221400000012],[130.88998400000014,70.84498600000012],[130.892761,70.75722],[131.130249,70.731094],[131.28442400000017,70.763046],[131.535797,70.877762],[131.849396,71.204712],[132.18469200000015,71.214706],[131.941925,71.25138900000013],[131.946625,71.289154],[132.2622070000001,71.676926],[132.52914,71.88554],[132.728027,71.941925],[132.7574770000001,71.926926],[132.75943,71.833878],[132.70718,71.802475],[132.72052,71.76555],[132.920807,71.726654],[133.164429,71.56972],[133.679138,71.433319],[134.006378,71.382751],[134.4524540000001,71.367477],[134.69635,71.415268],[134.80887,71.476654],[135.029694,71.530548],[135.23663,71.548035],[135.4163820000001,71.525818],[135.34079,71.563599],[135.8649600000001,71.639709],[136.49106,71.5705410000001],[136.5672,71.4974820000001],[136.678314,71.530548],[136.778046,71.5186],[136.885529,71.4611],[137.451904,71.34109500000011],[137.476349,71.331375],[137.42691,71.271378],[137.528046,71.2391510000001],[137.64136,71.25555400000013],[137.77191200000016,71.125259],[137.85412600000018,71.11137400000013],[137.9155270000001,71.143326],[137.984955,71.106934],[138.07330300000012,71.13888],[138.00247200000013,71.186371],[137.740234,71.222763],[137.828583,71.256378],[138.05246,71.21914700000013],[138.221344,71.2622070000001],[137.978577,71.2916560000001],[138.23996,71.32498900000013],[138.00082,71.332764],[137.82413,71.38388],[138.008026,71.468872],[138.02887,71.555817],[138.06607,71.573608],[138.49469,71.609711],[138.39276,71.572769],[138.46692,71.533875],[138.5830380000001,71.54609700000013],[138.595245,71.58332800000011],[138.554413,71.600266],[138.742737,71.641373],[139.04221,71.569443],[139.11441000000013,71.427765],[139.212738,71.4111],[139.348297,71.418045],[139.437195,71.495255],[139.74246200000013,71.464432],[139.93246,71.48498500000011],[139.92636100000016,71.549149],[139.79941,71.604431],[139.708862,71.70915200000013],[139.68969700000014,71.786652],[139.74658,71.842484],[139.616302,71.92082],[139.336639,71.94553],[139.63852,71.951935],[139.71997,72.00749200000013],[139.694702,72.03194],[139.713013,72.075272],[139.86551,72.168045],[140.06329300000016,72.134155],[140.206909,72.172485],[140.198303,72.203323],[140.0122070000001,72.23749],[139.568848,72.234711],[139.32553100000015,72.12776200000013],[139.17663600000014,72.16554300000013],[139.08523600000012,72.233322],[139.169434,72.32666],[139.54135,72.494431],[140.092743,72.47276],[140.602173,72.494141],[141.0241390000001,72.58581500000014],[141.001373,72.701096],[140.67190600000015,72.7994230000001],[140.576355,72.87276],[140.663605,72.8936],[141.35052,72.851379],[141.562744,72.771103],[141.993561,72.719986],[143.548859,72.689423],[145.470795,72.546936],[146.84802200000013,72.347488],[145.410248,72.352478],[144.968292,72.434982],[144.73468000000014,72.386658],[144.5355220000001,72.231094],[144.28424,72.29539],[144.13858,72.270828],[144.391937,72.17192100000011],[144.61413600000014,72.17553700000013],[144.757202,72.229706],[145.086365,72.25915],[146.930267,72.30942],[146.428314,72.03831500000013],[145.964661,71.846939],[145.928009,71.86026],[145.98855600000013,72.025543],[146.10635,72.03276100000011],[146.33996600000012,72.128036],[146.214691,72.173309],[146.0636,72.164703],[146.063019,72.11526500000014],[145.9855,72.06137100000012],[145.929962,72.09748800000011],[145.959686,72.128311],[145.89831500000014,72.2061000000001],[145.629395,72.246643],[145.60831,72.243591],[145.749115,72.207214],[145.61746200000016,72.074432],[145.681915,72.0236],[145.798035,72.02442900000011],[145.802399,71.925537],[145.34774800000014,71.866379],[144.995239,71.9711],[144.956909,71.95832800000011],[144.964142,71.91499],[145.216339,71.827209],[145.047211,71.773605],[144.88943,71.77693],[144.9133,71.69582],[145.238281,71.685806],[145.31884800000012,71.658035],[145.55276500000014,71.735809],[146.088287,71.79387],[146.32717900000011,71.889435],[147.13970900000015,72.317215],[148.266937,72.319443],[149.185242,72.222488],[149.720245,72.1160890000001],[150.017761,71.954712],[150.07526,71.883881],[149.980804,71.83194000000015],[149.67776500000014,71.760544],[149.360229,71.905548],[149.14609,71.767212],[148.8327640000001,71.811432],[148.882172,71.773315],[149.03857400000015,71.756378],[148.99164,71.69582],[148.85800200000017,71.698593],[148.823578,71.669983],[148.99884,71.663315],[149.1021730000001,71.69553],[149.6905210000001,71.64221],[149.961914,71.657211],[150.10580400000015,71.5961],[150.02191200000016,71.566086],[150.01193200000012,71.597488],[149.94998,71.59166],[149.865784,71.4611],[150.23996,71.5186],[150.667755,71.489426],[150.656097,71.446091],[150.51525900000013,71.34137],[150.02359000000013,71.20748900000011],[150.38970900000015,71.27249],[150.72467,71.3936],[150.642761,71.342209],[150.60495,71.275269],[150.99051,71.392212],[151.4533080000001,71.343323],[151.732178,71.24275],[152.14108,70.997482],[151.99579,70.970261],[151.6636,70.98082],[152.5383,70.83777],[153.698029,70.86554],[154.220795,70.955826],[155.93719,71.094437],[157.90332,71.045822],[159.05386,70.86914100000013],[159.673309,70.67276],[160.03802,70.405548],[160.0997,70.250549],[159.956909,70.13472],[159.794983,70.137207],[159.79748,70.103317],[159.87884500000018,70.077209],[159.820801,69.979156],[159.68359,69.89888000000013],[159.72967,69.834717],[160.09164,69.72720300000015],[160.913025,69.6413730000001],[160.995239,69.588318],[160.922211,69.45887800000014],[161.01276,69.30664100000013],[161.044708,69.173599],[160.96386700000014,69.103592],[161.25582900000018,69.046646],[161.41165200000012,68.97971],[161.217194,68.78997800000013],[161.21023600000012,68.698593],[161.066071,68.563309],[160.755554,68.56165],[160.846069,68.522766],[161.127747,68.55525200000011],[161.275269,68.67693],[161.319427,68.79248],[161.579681,68.914993],[161.56665,69.01527],[161.49191,69.06944],[161.42554,69.20277],[161.446075,69.385544],[161.60025,69.42109700000015],[161.810791,69.52832],[161.97607400000012,69.52832],[162.32330300000012,69.6622],[162.60995,69.677475],[162.83246,69.652206],[163.1783140000001,69.71666],[163.599976,69.68054],[164.01443,69.76748700000013],[164.53247,69.599426],[165.63693200000012,69.59055],[166.128571,69.51166],[166.64804100000015,69.5236],[166.860504,69.49054],[167.213013,69.582489],[167.644989,69.758331],[167.7869260000001,69.776093],[167.99496,69.714157],[167.993835,69.627472],[168.245239,69.54776],[168.193848,69.37831100000011],[168.23331,69.277481],[168.2833250000001,69.241653],[168.420532,69.211655],[168.72525,69.20971700000011],[169.372192,69.078049],[169.42554,68.99582],[169.457458,68.833054],[169.580536,68.77777],[170.35107400000015,68.82111],[170.611938,68.75633],[170.55832,68.821655],[170.43692,68.84999],[170.65997300000015,68.91138],[170.704956,68.804428],[170.7283,68.834991],[170.70886200000018,68.907486],[170.76221,68.955261],[171.03192100000012,69.042206],[170.9074710000001,69.306091],[170.609131,69.580276],[170.50665300000014,69.607483],[170.272766,69.588043],[170.12384,69.609985],[170.156097,69.659988],[170.28415,69.72971],[170.4616390000001,69.7397],[170.5672,69.77805],[170.55859,69.8894350000001],[170.51944000000015,69.93526],[170.55801,70.080826],[170.40219100000013,70.111923],[170.4718930000001,70.13415500000013],[171.93829300000016,69.99664300000012],[172.64581,69.96666],[172.87661700000012,69.892487],[173.159424,69.849716],[173.20495600000015,69.824997],[173.172485,69.79137],[173.19192,69.779709],[173.36996,69.7852630000001],[173.478851,69.82916300000011],[173.279968,69.90999],[173.16693,69.878586],[173.17499,69.91192600000011],[173.45859,69.95248400000014],[173.92526,69.84471100000013],[174.08886700000016,69.883331],[175.296356,69.8461],[175.7230220000001,69.90416],[176.094116,69.892487],[176.237183,69.82666000000012],[176.23468,69.794144],[176.53027,69.74109],[176.74106,69.66693],[177.441925,69.60304300000013],[178.18692,69.44942],[178.330536,69.477768],[178.665527,69.43109],[179.06775,69.32609600000012],[178.940247,69.319992],[178.743286,69.372208],[178.6583250000001,69.334717],[178.6491390000001,69.30748],[178.69357300000013,69.284714],[179.288879,69.266663],[179.95636,68.993591],[179.83609,69.00305200000014],[179.54748,69.109421],[179.7430110000001,68.9933170000001],[180,68.980103],[180,65.06890900000013],[179.784973,65.01694],[179.46692,64.814148],[179.162476,64.78804],[178.623291,64.605545],[178.52221700000018,64.58804],[178.482727,64.607208],[178.68081700000016,64.634155],[178.755554,64.682205],[178.272217,64.66499],[177.60940600000015,64.718048],[177.504974,64.804703],[177.43191500000012,64.924988],[177.253326,64.93470800000011],[177.1666560000001,65.0249940000001],[176.89971900000012,65.0836],[176.58081100000015,65.0236],[176.43829300000016,65.073608],[176.302765,65.049988],[176.56665,64.994705],[176.937469,65.04275500000011],[177.16608,64.939697],[177.303314,64.827774],[177.035797,64.770538],[176.93136600000014,64.795822],[176.876892,64.8461],[176.63388,64.869141],[176.4285890000001,64.80497700000012],[176.406921,64.854431],[176.059967,64.948029],[175.73053,64.7836],[175.05108600000017,64.762772],[174.69470200000012,64.67804],[174.436646,64.688309],[174.641937,64.665543],[175.05246,64.73915],[175.70275900000013,64.75665],[176.06497200000013,64.90138200000013],[176.202454,64.874985],[176.423584,64.70942700000012],[176.309143,64.65582300000011],[176.151367,64.631927],[176.113586,64.589432],[176.108307,64.534988],[176.210236,64.61943100000013],[176.3366390000001,64.6244200000001],[176.460236,64.69026],[176.60831,64.658875],[176.73386,64.56387300000011],[177.00219700000014,64.70942700000012],[177.3349610000001,64.777771],[177.486084,64.761383],[177.45217900000011,64.646652],[177.35886,64.55053700000013],[177.43774,64.4272],[177.674133,64.299423],[178.087738,64.19971],[178.184692,64.20665],[178.07663000000014,64.258606],[178.28610200000014,64.353867],[178.477753,64.123871],[178.483582,64.06553600000012],[178.393036,64.02916],[178.3768920000001,63.972214000000115],[178.66775500000017,63.94054],[178.75748,63.639992],[178.59329200000013,63.673607],[178.353851,63.626381],[178.261658,63.562492],[178.36996,63.51638800000012],[178.496918,63.578606],[178.71109000000013,63.57222000000013],[178.723846,63.476936],[178.589417,63.409714],[178.688019,63.383049],[178.780273,63.401657000000114],[178.81185900000014,63.44004800000011],[178.74411,63.55416],[178.781647,63.58943],[178.821198,63.488331],[179.00415,63.316666],[178.851074,63.4019320000001],[178.8033140000001,63.386383],[178.8172,63.341934],[179.242188,63.229988],[179.4086,63.142769],[179.40747,63.053879],[179.29385400000012,63.053604],[179.236633,62.99416],[179.3102420000001,62.90083],[179.536102,62.845543],[179.60412600000015,62.692764],[179.561096,62.621376],[179.41275,62.564995],[179.356079,62.505272],[179.18579,62.500549],[179.106079,62.46277],[179.148315,62.413048],[179.149719,62.332214],[179.061371,62.284721],[178.9607850000001,62.35721600000011],[178.02777100000014,62.54444100000012],[177.338287,62.576103],[177.291077,62.608047],[177.313873,62.73749500000013],[177.42804000000012,62.778877000000136],[177.45081,62.81749700000011],[177.32858,62.80054500000011],[177.25360100000012,62.738602],[177.264984,62.708885],[177.1985780000001,62.70249200000012],[177.137756,62.718597],[177.14749100000017,62.788887],[176.975525,62.865547000000106],[176.933044,62.66082],[177.04999,62.578049000000135],[177.265533,62.57471],[176.81387,62.519714],[176.676361,62.537216],[176.28027,62.313049],[175.31775,62.101105],[175.17804,62.01749400000011],[174.76443,61.9161],[174.786652,61.934715],[174.59606900000017,61.983604],[174.72885,61.88999],[174.59356700000012,61.82999400000011],[174.461639,61.805824],[174.06998,61.8394320000001],[174.006927,61.812492],[174.04858400000012,61.77471],[174.006927,61.722488000000105],[173.8119200000001,61.669716],[173.559418,61.750832],[173.49633800000015,61.657494],[173.489136,61.5561],[173.342194,61.549438],[173.29108,61.51832600000011],[173.280548,61.454994000000106],[173.136658,61.395271],[173.063019,61.39138],[172.87497,61.472214],[172.7107850000001,61.429993],[172.89886500000011,61.366936],[172.95608500000014,61.302773],[172.85025,61.275826],[172.66748,61.332214],[172.77441,61.266388],[172.6283,61.186378000000104],[172.3494,61.22832],[172.37274,61.100273],[172.481079,61.08055],[172.4780270000001,61.056938],[172.371338,61.00999],[172.281647,61.009438],[172.009979,61.097488],[172.16666,61.024994],[172.19275,60.9469380000001],[172.110779,60.936104],[172.01858500000014,60.84249100000011],[171.988861,60.878326],[172.00665300000014,60.917213],[171.953033,60.949715],[171.94720500000017,60.844994],[171.60968,60.801933],[171.632446,60.74361],[171.40747,60.713882],[171.35773,60.624992],[171.1622,60.551102],[170.856903,60.505829],[170.78247,60.441376000000105],[170.64194,60.417496],[170.617737,60.39444],[170.65774,60.320549000000135],[170.524689,60.282211],[170.46856700000012,60.223602],[170.397766,59.961105],[170.24884,59.909431],[170.10522500000013,59.974159],[170.11551,60.012497],[170.076355,60.032494],[169.9352420000001,60.06554],[169.74411,60.280548],[169.6994,60.41082],[169.32745,60.53194],[169.318298,60.555824000000136],[169.37051,60.5661],[169.341644,60.591934],[169.21023600000012,60.622765],[169.206085,60.58833],[169.14664,60.55999],[168.71774300000016,60.561104],[168.472198,60.595268],[168.18887,60.581665],[167.05026,60.32388300000014],[166.34329200000013,59.867493],[166.13776,59.815269],[166.097473,59.83138300000013],[166.10162400000013,59.913879],[166.17330900000013,60.12305],[166.25915,60.25666],[166.24774200000013,60.383881],[166.34192,60.405548],[166.3810730000001,60.470543],[166.348572,60.48638],[166.0011,60.433876],[165.765808,60.28638],[165.49774200000013,60.21138],[165.243286,60.098328],[164.99719200000015,60.12943300000012],[165.031097,60.06527],[165.133026,60.07999400000012],[165.182465,59.9811],[165.003876,59.841103],[164.832184,59.7811],[164.774414,59.823326],[164.78164700000013,59.856384],[164.70163,59.975548],[164.46857,60.111382000000106],[164.32135,60.090546],[164.353027,60.02166],[164.138306,59.93076700000012],[164.15554800000018,59.852776],[164.04498300000012,59.883049],[164.046707,59.932880000000125],[164.11087,59.966217000000135],[164.050262,60.02916],[163.635529,60.045547000000106],[163.6196900000001,60.020271],[163.676636,59.970825],[163.753876,59.979431],[163.699402,59.895546],[163.5047,59.8986],[163.360229,59.823883],[163.385529,59.623047],[163.32776,59.584717],[163.173035,59.55916],[163.164154,59.50027],[163.29663100000013,59.433327],[163.329681,59.3811],[163.287476,59.251389],[163.22885,59.235268],[163.25775,59.296104],[163.17499,59.29639],[163.06109600000013,59.240547],[163.060242,59.198326],[163.18856800000015,59.136658],[163.19357300000013,59.05360400000012],[163.146362,59.032211],[163.173584,59.0824970000001],[163.0205380000001,59.15916],[162.876343,59.12804],[163.04477,59.010315],[162.97995,58.957214],[162.760254,58.890549000000135],[162.7258,58.852776],[162.784424,58.869987],[162.761108,58.833054],[162.39859,58.673882],[162.140259,58.450272],[161.93887,58.07444],[162.00861,57.939987],[162.10635400000012,57.85388],[162.31665,57.797775],[162.346069,57.68471],[162.48245,57.762497],[162.46551,57.874992],[162.571075,57.9511],[162.704956,57.963608000000136],[162.99579,57.84999800000015],[163.21359300000017,57.836105],[163.283875,57.742493],[163.078857,57.507500000000114],[162.736908,57.357773000000115],[162.7658390000001,57.3507],[162.75164800000013,57.2161],[162.82775900000013,57.044998],[162.78192100000012,56.8886030000001],[162.79135,56.791107],[162.90774,56.705551],[163.06665,56.74554400000011],[163.213867,56.740547],[163.252197,56.69638],[163.214691,56.62027],[163.34079,56.33166],[163.354675,56.1986010000001],[163.10745,56.08665500000012],[163.027466,56.017769],[162.868835,56.039993],[162.6452640000001,56.19193300000012],[162.62744,56.24361],[162.718292,56.327217],[163.0699770000001,56.473045],[163.089142,56.534164],[162.971069,56.544716],[162.892761,56.42999],[162.692474,56.491661],[162.39358500000014,56.399994],[162.57220500000017,56.26721],[162.21829200000013,56.158882],[162.036926,56.06166100000013],[162.020264,55.962212000000136],[161.749115,55.627487],[161.712463,55.496941000000106],[161.71912,55.359161],[161.81301900000014,55.144714000000135],[162.15469,54.856941],[162.112183,54.76194],[161.811096,54.58582300000012],[161.73273,54.50582900000011],[161.30636600000014,54.491379],[161.235504,54.513329],[161.199982,54.575272],[161.113861,54.59054600000013],[160.73245,54.530548],[160.005829,54.13916],[159.896637,53.97443],[159.817474,53.6586],[159.90414,53.60083],[159.873291,53.665543],[159.923035,53.644997],[159.964966,53.570274],[159.95081,53.477768],[159.822479,53.5311],[159.7916560000001,53.51471700000013],[159.97189300000014,53.266388],[160.016663,53.269440000000145],[160.055237,53.093605],[159.61468500000012,53.25944],[159.458862,53.22221400000012],[159.38443,53.153603],[159.255829,53.153046],[159.025818,53.08638],[158.721344,52.8886],[158.6033,53.05416100000013],[158.53164700000013,53.06944],[158.430542,53.021935],[158.4133,52.997772],[158.44607,52.902489],[158.52554,52.902771],[158.48053,52.938042],[158.511383,52.942764],[158.62717,52.931107],[158.644714,52.894714],[158.63272100000017,52.846657],[158.56109600000013,52.789436],[158.562469,52.735268],[158.602753,52.695267000000115],[158.552765,52.625267],[158.419128,52.652214],[158.436096,52.598602],[158.522217,52.561935],[158.55468800000017,52.30777000000012],[158.522217,52.272491],[158.424683,52.265274],[158.315247,52.125267],[158.27582,51.936653],[157.9122,51.643326],[157.77386,51.562767],[157.536926,51.48693800000012],[157.256653,51.22971300000012],[156.656921,50.879433],[156.745514,50.98777],[156.746063,51.07444],[156.67358400000012,51.229431],[156.55136100000016,51.27388],[156.518036,51.32277],[156.47274800000014,51.51361],[156.491913,51.931664],[156.42859,52.201935],[156.277466,52.5236],[156.36551,52.49527000000012],[156.38943,52.447769],[156.44107,52.520828],[156.3649600000001,52.516663],[156.260803,52.56721],[156.103302,52.8491590000001],[156.07663,53.132492],[155.930817,53.837494],[155.699402,54.51249700000011],[155.54412800000011,55.303604000000114],[155.646088,55.91193],[155.948853,56.6661],[156.117188,56.823059],[156.171356,56.84166],[156.074677,56.75999500000011],[156.06329300000016,56.714714],[156.20163000000014,56.849998000000134],[156.45440700000017,56.957214],[156.54721,57.1075],[156.651093,57.074165],[156.97775300000012,57.414436],[156.98053,57.527771],[156.93109100000012,57.647774],[156.84552,57.725548],[156.74884,57.728325],[156.984955,57.853607000000125],[157.0488590000001,57.80027],[157.162476,57.7736],[157.43414300000018,57.7905500000001],[157.529419,57.845268],[157.643585,58.00444],[157.92276,57.979431],[158.23331,58.01944],[158.66497800000013,58.27083],[159.05691500000012,58.427216],[159.153595,58.514717],[159.702179,58.8513870000001],[159.75665300000014,58.938042],[159.73053,59.012772],[159.789978,59.08387800000014],[159.91775500000017,59.17332],[160.343292,59.362495],[160.4441220000001,59.455826],[160.484131,59.544441],[160.860779,59.62249],[161.24441500000012,59.847488],[161.47302200000013,60.05222],[161.83746,60.18749200000013],[161.92526,60.248604],[161.91387900000015,60.33055100000013],[161.875244,60.317497],[161.914429,60.422768],[162.45968600000015,60.591934],[162.761108,60.64888],[162.87857,60.76639],[163.110229,60.778046],[163.19913,60.82222000000013],[163.36273,60.80999],[163.5616460000001,60.874161],[163.65832,60.871933],[163.729126,60.936653],[163.50888,61.004715],[163.509979,61.046944],[163.63638300000014,61.146385],[163.85412600000018,61.21305100000012],[164.01944000000015,61.33638000000014],[163.961639,61.430824],[163.84552,61.44860100000011],[163.782745,61.420547000000106],[163.74911,61.457497],[163.851074,61.63916000000012],[164.04135,61.71666],[164.07247900000013,61.786942],[164.064148,62.101105],[164.127747,62.28277],[164.60635400000012,62.474159],[165.0977480000001,62.419716],[165.22717,62.37721],[165.29108,62.315544],[165.32995600000012,62.31582600000012],[165.23996,62.396942],[165.08773800000017,62.459991],[165.343018,62.47860000000014],[165.642487,62.452774],[165.03415,62.512772],[164.70135500000015,62.58387800000014],[164.581909,62.691101],[164.359406,62.712212],[163.263611,62.544998],[163.16442900000015,62.44471],[163.3521730000001,62.35833],[163.11996,62.278046],[163.07745,62.205826],[163.138306,62.045273000000115],[162.95026,61.80638],[163.29776000000015,61.723045],[163.288025,61.66443600000014],[163.094421,61.617493],[163.064423,61.594994],[163.088562,61.55166],[163.00555,61.51832600000011],[162.943298,61.577217],[162.929688,61.673325],[162.8446960000001,61.718597],[162.634155,61.679161],[162.74774200000013,61.63166],[162.75082,61.598602],[162.40332,61.67249300000014],[162.023041,61.41777],[161.78415,61.34249],[161.572479,61.20193],[161.47302200000013,61.204437],[161.32913,61.08777],[160.88831,60.884163],[160.79776,60.735268],[160.670532,60.776382],[160.39886500000011,60.74027],[160.25247200000013,60.619987],[160.137756,60.5836],[160.133881,60.656937],[160.22467,60.73721300000011],[160.22467,60.784439000000134],[160.1619260000001,60.837769],[160.286926,60.913322],[160.391357,61.0258260000001],[160.332184,61.053047],[160.164154,61.05082700000015],[159.870514,60.928604],[159.780548,60.94082600000012],[159.80246,60.983604],[159.90304600000013,61.037216],[159.946625,61.136108],[159.91803,61.248878],[159.82717900000011,61.261383],[159.854401,61.312767],[160.008331,61.390831],[160.15802,61.519714],[160.36636,61.765831],[160.35495,61.947487],[159.960236,61.823326000000115],[159.83746,61.712212],[159.74939,61.71915400000012],[159.5311,61.66277],[159.49051,61.68555],[159.38888,61.871658],[159.247467,61.922218],[158.90554800000018,61.895828],[158.733032,61.8361],[158.29776,61.821663],[158.02832000000012,61.729988],[157.899994,61.78555300000011],[157.48663,61.803322],[157.032196,61.652489],[156.86636,61.53833],[156.69802900000013,61.53611],[156.63245,61.418327],[156.66275,61.2116620000001],[156.41666,61.181938000000116],[156.08496100000013,61.012497],[155.92554,60.903877],[155.899139,60.755272],[154.966064,60.37471],[154.62357,60.13611],[154.529144,60.04639],[154.46801800000014,59.919991],[154.232727,59.881935],[154.22885,59.71693],[154.29748,59.637497],[154.065247,59.516388],[154.114136,59.45971700000013],[154.2916560000001,59.444153],[154.34634,59.491379],[154.413879,59.423882],[154.50442,59.429161],[154.429688,59.484436],[154.43164100000013,59.54916],[154.6908,59.517212],[154.848846,59.462494],[154.961365,59.495544],[155.07468,59.39614],[155.190521,59.357803],[155.1402590000001,59.20410900000013],[154.82858,59.18943],[154.742462,59.16137700000012],[154.741638,59.1269380000001],[154.44470200000012,59.219986],[154.32663,59.202774],[154.344421,59.121658],[154.26138300000014,59.07972],[154.15219100000013,59.097214],[154.02832,59.04554700000012],[153.900818,59.08332800000011],[153.795258,59.174438],[153.368561,59.24305],[153.328308,59.22443],[153.26913500000012,59.09054600000014],[152.98968500000012,59.073608],[152.87717,58.917496],[152.567474,58.95471],[152.35718,59.023323],[152.12994400000014,58.99305],[152.122742,58.922493000000145],[152.060791,58.896103],[151.61386100000016,58.851936],[151.455536,58.875267],[151.309418,58.83694],[151.279419,58.915543],[151.21637,58.94415300000014],[151.07358,59.11055],[151.1702580000001,59.091103],[151.600525,59.1675],[152.04526,59.152771],[152.28775,59.226936],[152.141663,59.292221],[151.9780270000001,59.26388500000014],[151.74857,59.296104],[151.61108400000012,59.46888000000013],[151.386108,59.571106],[151.101898,59.59166],[150.90387,59.566666],[150.86523,59.545273],[150.928314,59.503883],[150.9321900000001,59.4686],[150.681366,59.4447100000001],[150.73245,59.49749],[150.439423,59.484718],[150.7355040000001,59.553604],[150.72552,59.57277],[150.53082,59.552773],[150.43496700000014,59.580826000000116],[150.41052,59.623047],[149.5985720000001,59.771378],[149.37219200000015,59.759995],[149.0330510000001,59.63916],[149.079956,59.55388],[149.1985780000001,59.521378],[149.2099610000001,59.46194],[149.08856200000014,59.49305],[148.89609,59.46305100000012],[148.84301800000014,59.48972],[148.885803,59.540833],[148.855225,59.55304700000011],[148.7430110000001,59.49166100000013],[148.694702,59.448875],[148.706635,59.376099],[148.77832,59.36416],[148.8613590000001,59.402214],[148.963867,59.379158],[148.95081,59.256943],[148.89804100000015,59.23916],[148.80554,59.28138000000013],[148.544128,59.245827],[148.4071960000001,59.262772],[148.402191,59.357216],[148.3685610000001,59.391937],[148.212738,59.418884],[147.8366390000001,59.3811],[147.7811,59.3461],[147.82135000000017,59.278877000000136],[147.703308,59.26416000000012],[147.603027,59.299438000000116],[147.544983,59.277489],[147.553864,59.24443800000011],[147.489136,59.23972],[147.3033140000001,59.324715],[147.16165,59.3186],[147.00525,59.37305],[146.73913600000014,59.37471000000011],[146.670532,59.422218],[146.51165800000012,59.461105],[146.323303,59.390831],[146.33828700000015,59.19471],[145.990509,59.14888000000013],[145.79581,59.26194],[145.913605,59.352493],[145.914429,59.411102],[145.665588,59.42465],[145.3208,59.391106],[145.256104,59.423325],[144.93054,59.375549],[144.609955,59.38916],[144.67691,59.37027],[143.90082,59.412491],[143.473297,59.337769],[143.21109,59.37666],[142.581085,59.23666],[142.296936,59.135269],[141.95968600000015,58.954994],[141.839142,58.813324],[141.616058,58.6461],[141.276093,58.496101],[141.08914200000012,58.46054800000013],[140.785248,58.305267],[140.681091,58.227211],[140.515533,57.941658000000125],[140.496338,57.823326],[140.318573,57.75027],[140.05191000000013,57.716103],[139.941071,57.64666000000011],[139.839691,57.509438],[139.596619,57.444153],[139.564697,57.378876],[139.477173,57.319443],[139.173035,57.26194],[138.906921,57.024162],[138.64108,56.979988],[138.58719,56.874992000000134],[138.483582,56.849998000000134],[138.399994,56.731102],[138.305817,56.716660000000104],[138.262756,56.646660000000104],[138.118011,56.57361],[138.14444,56.45804600000013],[137.9166560000001,56.345268],[137.842194,56.250549],[137.7258,56.174995],[136.733582,55.658325],[136.416931,55.568604],[136.12661700000012,55.29999500000013],[135.72189300000014,55.13833],[135.55246,55.122215],[135.217468,54.930275],[135.15442,54.859436],[135.261383,54.720543],[135.67413,54.639992],[135.736633,54.570549],[136.20941200000016,54.61721],[136.541351,54.589714],[136.816071,54.651382],[136.883331,54.58166],[136.7482910000001,54.42805],[136.76608,54.217209],[136.810516,54.14805],[136.65387,53.92638],[136.67968800000014,53.809158],[136.760803,53.7686],[136.93219,53.85110500000013],[137.113007,53.804161000000136],[137.172485,53.834717],[137.289124,54.03360700000013],[137.173279,54.035553],[137.06189000000015,54.140831],[137.18716400000017,54.214714],[137.38748,54.30499300000014],[137.6455380000001,54.29222],[137.73886100000016,54.31721],[137.512177,54.1511],[137.30798300000015,54.114441],[137.30661,54.049164],[137.44104000000016,54.033333],[137.58719,53.953606],[137.859131,53.96138],[137.781647,53.896942],[137.60052,53.82999400000011],[137.565247,53.725266],[137.486084,53.66443600000014],[137.34219,53.66277],[137.20718,53.58833],[137.3107910000001,53.532768],[137.901642,53.57305100000013],[138.288574,53.739433],[138.348297,53.897217],[138.553864,53.989433],[138.59079,53.867493],[138.57135,53.814995],[138.23941,53.562492000000134],[138.257202,53.51721],[138.444122,53.510551],[138.54608,53.57471],[138.648865,53.719986],[138.77609300000015,54.024437],[138.7399600000001,54.253883],[138.64194,54.295273],[138.7258,54.316383],[138.995239,54.22887400000013],[139.342468,54.183327],[139.746338,54.308884],[139.80914300000018,54.296104],[139.79025300000012,54.23082],[139.815247,54.21138],[140.24465900000018,54.04805],[140.256378,53.86110700000012],[140.36523,53.776657],[140.537476,53.71277],[140.52441,53.680275],[140.55523700000015,53.64777400000014],[140.96191,53.501938],[140.930817,53.427773],[141.236359,53.30833],[141.41913,53.290276],[141.43359,53.14749100000011],[141.184418,53.04527300000012],[141.256927,53.030273],[141.19998,52.986382],[141.11911,52.987770000000125],[140.84579500000018,53.1188810000001],[140.705536,53.113052],[140.9402470000001,52.994438000000116],[140.9682920000001,52.93055],[141.20553600000017,52.842216],[141.31274,52.658043],[141.22274800000014,52.50944],[141.129395,52.465271],[141.132446,52.404709],[141.388885,52.22887400000013],[141.51416,52.21333],[141.4863590000001,52.161102],[141.3432920000001,52.10305000000011],[141.30218500000012,52.015831],[141.425812,51.947212],[141.42190600000015,51.920547],[141.210236,51.83332800000011],[141.081635,51.678329],[140.914703,51.623047],[140.90246600000012,51.492493],[140.79135,51.45166000000012],[140.814148,51.41166],[140.892487,51.424713],[140.872192,51.36416],[140.6905210000001,51.32055],[140.67608600000017,51.173607],[140.71078,51.048882],[140.68219,50.952774],[140.5285950000001,50.865547],[140.46051,50.706657],[140.48855600000013,50.611938],[140.437195,50.53138],[140.5069270000001,50.4488750000001],[140.52719100000013,50.366386],[140.519135,50.159431],[140.58941700000014,50.070549],[140.695801,50.087494],[140.485229,49.978325],[140.407471,49.871658],[140.52832,49.7286],[140.55691500000012,49.55999],[140.434418,49.353882],[140.33996600000012,49.271935],[140.389984,48.96888],[140.347748,48.903603],[140.243011,48.836937],[140.18469200000015,48.6730500000001],[140.17581200000018,48.448601],[139.28637700000013,47.816666],[139.045807,47.4749910000001],[139.04193,47.400269],[138.566925,47.035553],[138.38388,46.73472],[138.33996600000012,46.54138200000011],[138.201904,46.449432000000115],[138.058014,46.176384],[137.774994,45.933876],[137.656921,45.78221100000013],[137.371887,45.606102],[137.2511,45.471657],[136.857727,45.21332600000011],[136.43747,44.786385],[136.355225,44.78666],[136.24911,44.671936],[136.18442,44.513054],[135.83801,44.357216],[135.80054,44.26332900000011],[135.721619,44.23499],[135.648315,44.159431],[135.62634300000013,44.027489],[135.45718,43.94332],[135.476898,43.8761],[135.51776,43.884995],[135.46664,43.801933],[135.35913100000013,43.71471400000013],[135.26525900000013,43.688881],[135.129669,43.498878],[135.0000000000001,43.46233400000011],[134.34802200000013,43.11805],[134.18829300000016,43.07972],[133.914154,42.87555],[133.569702,42.81916],[133.21637,42.728043],[133.151367,42.682213],[133.02359,42.687767],[132.99857,42.71693],[133.039429,42.770828],[132.99939,42.81860400000011],[132.893036,42.808601],[132.8833310000001,42.759163000000115],[132.844696,42.73999],[132.79663100000016,42.765],[132.771912,42.869987],[132.589142,42.841934],[132.46579,42.93360100000012],[132.353577,42.9086],[132.35495000000014,42.85388200000011],[132.310516,42.844437],[132.284698,42.96138000000013],[132.368835,43.213326],[132.3521730000001,43.29277000000013],[132.3024600000001,43.31721],[132.22717,43.22804],[132.10245,43.17972],[131.943024,43.063881],[131.841644,43.0886],[131.910248,43.1969380000001],[131.9946900000001,43.236382],[132.056366,43.31332400000014],[131.81051600000012,43.325554],[131.76361,43.287216],[131.753601,43.221375],[131.524994,43.00527],[131.47079500000018,42.869438],[131.275818,42.763885],[131.21301,42.63110400000011],[131.221344,42.555824],[131.16775500000017,42.571381],[131.11328100000014,42.664436],[130.96774300000016,42.627213],[130.80523700000015,42.68804200000011],[130.699982,42.679161000000136],[130.674133,42.64222],[130.87106,42.52332300000012],[130.69742,42.292206],[130.654968,42.313881],[130.65915,42.37666],[130.580261,42.481102],[130.60522500000013,42.61971],[130.53887900000015,42.681938],[130.45886200000018,42.679993],[130.40524300000016,42.71805],[130.638031,42.831665],[130.81857300000013,42.876099],[131.015259,42.854996],[131.123291,42.91082000000011],[131.104675,43.03611],[131.26110800000015,43.264442],[131.31137100000012,43.39222],[131.304413,43.455826],[131.18719,43.55277],[131.231079,43.973877],[131.24719200000013,44.027489],[131.29803500000014,44.051933],[131.09552,44.691376],[130.94998,44.841103],[131.11801100000014,44.925827],[131.212463,44.910545],[131.349976,44.974709],[131.46912,44.973877],[131.64444000000015,45.105553],[131.7033080000001,45.216103],[131.86468500000012,45.345543],[131.988556,45.24193600000012],[132.923309,45.021935],[133.122192,45.1286],[133.092468,45.24416],[133.1491390000001,45.450829],[133.190521,45.504166],[133.468292,45.62221],[133.477448,45.82666000000012],[133.522217,45.88666],[133.58304,45.871376000000105],[133.656647,45.929718],[133.74469,46.155823],[133.900177,46.25031300000012],[133.92859,46.39249400000011],[133.849976,46.439987],[133.84579500000018,46.475548],[133.90164200000015,46.57222000000012],[134.01944,46.666664],[134.03937,46.860489],[134.113586,47.055824],[134.222198,47.11082],[134.147766,47.249435],[134.182465,47.323326],[134.314697,47.42110400000013],[134.47912600000018,47.427773],[134.55209400000012,47.46691900000013],[134.76721,47.7075],[134.7702640000001,47.739433],[134.68436,47.800903],[134.5571900000001,47.994713],[134.58386200000018,48.06277],[134.66775500000017,48.10721600000011],[134.68136600000014,48.220543000000134],[134.740753,48.267128],[134.41534,48.391121],[133.751373,48.249718],[133.593567,48.172493000000145],[133.506653,48.071381],[133.08856200000014,48.10166],[132.664429,47.878044],[132.582184,47.7355500000001],[132.52109,47.710274],[132.341064,47.742493],[131.919434,47.66999],[131.618011,47.663879],[131.5311,47.721657],[131.41666,47.738602],[131.26110800000015,47.729156],[131.09524,47.672432],[130.988556,47.688599],[130.93719,47.724991],[130.946075,47.800545],[130.88970900000015,47.900269],[130.681366,48.045547],[130.65942400000017,48.098602],[130.83081100000015,48.290833],[130.826355,48.32222000000013],[130.52164,48.607773],[130.67163100000013,48.864998],[130.504425,48.851936],[130.41803,48.8961],[130.221619,48.864716],[129.90662,49.0368580000001],[129.91272,49.082413],[129.73269700000014,49.19293],[129.721863,49.26627],[129.54495,49.293182],[129.523468,49.391235],[129.482697,49.41843],[129.390503,49.427864],[129.103271,49.346680000000106],[129.050781,49.36473100000011],[128.99881,49.43888],[128.875244,49.47777],[128.77359,49.575554],[128.50525,49.586937],[128.18246,49.534164],[127.83804,49.586655],[127.69136000000015,49.66721300000012],[127.671654,49.748878],[127.529427,49.78916],[127.48831,50.042221],[127.56972,50.128326],[127.58607,50.208565],[127.331383,50.31916],[127.28942900000015,50.460274],[127.36775200000011,50.570831],[127.279984,50.680824],[127.29193,50.741379],[127.127197,50.915543],[126.93054,51.05999],[126.89861,51.18665],[126.97276,51.31805400000013],[126.887154,51.30305],[126.893333,51.239159],[126.81609300000014,51.266388],[126.821381,51.33027600000014],[126.915268,51.379158],[126.79054,51.424438],[126.71887200000015,51.713051],[126.6091540000001,51.787216],[126.4422,51.988045],[126.461647,52.026939],[126.51221,52.038887],[126.55721300000016,52.130547],[126.31887800000014,52.192215],[126.34860200000014,52.29166],[126.333878,52.395828],[126.267487,52.458603],[126.19775,52.464439],[126.213608,52.513054],[126.18609600000015,52.540833],[126.08472,52.589989],[126.030823,52.563324],[125.98858600000015,52.582214],[125.97304,52.64166300000011],[126.095543,52.764442],[126.05081,52.78583],[125.97720300000013,52.760277],[125.85637,52.87276500000012],[125.64694,52.878876],[125.64861,52.91277],[125.71914700000012,52.94221],[125.728867,52.979431],[125.61609,53.052773],[125.48552700000015,53.06916],[125.13416300000017,53.197487],[124.96360800000012,53.18277],[124.818329,53.126938],[124.634987,53.18971],[124.48858600000017,53.189156],[124.342484,53.25139],[124.255257,53.356659],[124.104431,53.3408280000001],[123.910812,53.46471],[123.61943,53.54277],[123.442749,53.522491000000116],[123.246094,53.553047],[123.15332,53.500549],[122.82443200000012,53.449997],[122.246094,53.45694000000014],[122.062187,53.41220900000013],[121.829987,53.41304800000012],[121.47379300000011,53.323814],[121.324997,53.31832900000012],[121.208328,53.270546],[120.863876,53.279716],[120.27721,52.861938000000116],[120.02916,52.768051],[120.03055,52.61721000000011],[120.0730360000001,52.589989],[120.18914800000017,52.580276],[120.440262,52.63721],[120.71805,52.540833],[120.622757,52.340271],[120.78276100000016,52.155266],[120.71276900000011,51.98249],[120.652344,51.913803000000144],[120.488586,51.87721],[120.176376,51.671936],[120.096939,51.661377],[119.98304700000016,51.49305],[119.95665,51.38999200000012],[119.762497,51.192764],[119.780548,51.16610000000014],[119.74664300000016,51.073608],[119.52249100000017,50.90499100000011],[119.502213,50.742218],[119.28692600000012,50.59388],[119.242203,50.445267],[119.1386,50.394714],[119.198318,50.34527],[119.359421,50.34193],[119.328873,50.27388],[119.34748800000013,50.146942],[119.313873,50.0886],[119.174149,50.001389],[118.58332800000015,49.92694100000011],[118.47554000000014,49.830826000000116],[117.87471,49.520576],[117.78970300000015,49.5186],[117.49443,49.62305],[117.25943,49.63110400000011],[116.98304700000016,49.709435],[116.71527100000014,49.827217],[116.61554,49.93138],[116.24609,50.02748900000012],[116.06972,50.002777],[115.754707,49.884438],[115.414703,49.898331],[115.221367,49.988327],[115.039978,50.14194],[114.8541560000001,50.228325],[114.675812,50.26416],[114.443863,50.24527],[114.313026,50.284164],[114.17637600000012,50.248329],[113.874687,50.08694],[113.782494,50.08694],[113.58611,50.016388],[113.21666,49.819160000000124],[113.10138,49.6788790000001],[113.09082000000012,49.59860200000014],[112.766937,49.500832000000116],[112.491699,49.541382],[111.96388,49.40694],[111.682213,49.40665],[111.51471,49.35110500000013],[111.32692700000013,49.34249100000011],[110.78859,49.149437],[110.66249,49.14582800000011],[110.35220300000015,49.213608],[110.20804,49.16916],[109.54414400000013,49.23249],[109.351929,49.336937],[109.20694,49.360275],[109.074997,49.334435],[108.950546,49.35777300000012],[108.57222,49.333603],[107.94914200000011,49.678047],[107.977127,49.943626],[107.182213,50.024162],[107.07832300000011,50.084991],[107.005547,50.2011],[106.7949830000001,50.308044],[106.66304,50.3386],[106.25332600000013,50.29833200000013],[106.0783080000001,50.34163],[106.069427,50.375267],[105.9891510000001,50.410545],[105.335541,50.483604],[105.132202,50.39833],[104.9666600000001,50.404839],[104.62553,50.318306],[104.42553700000013,50.311371],[104.250267,50.18488300000013],[104.101929,50.149918],[103.820541,50.20118],[103.697746,50.13604],[103.309418,50.201385],[103.223602,50.3086],[102.918587,50.31526900000011],[102.779709,50.387215],[102.61304,50.413605],[102.53665,50.513054],[102.327766,50.569717],[102.29387,50.64277],[102.356369,50.722488],[102.232758,50.825554000000125],[102.264999,50.893326],[102.2580410000001,50.98054500000011],[102.168259,51.12043],[102.15416,51.244995],[102.224991,51.30638],[102.218872,51.333603],[102.077209,51.390831],[101.60109,51.484161],[101.377472,51.452774],[101.27388,51.521103],[100.55359,51.735825],[99.94693,51.75138900000013],[99.73526,51.888046],[99.323044,51.94804],[99.026932,52.0611],[98.930267,52.143608],[98.881088,52.114159],[98.869431,52.038605],[98.7080380000001,51.828049000000135],[98.6244200000001,51.779991],[98.31526200000013,51.704163],[98.24803,51.58111],[98.259995,51.51583],[98.23234600000012,51.459892],[98.05307,51.460953],[97.908875,51.119438],[97.827774,51.00110600000011],[97.87747,50.929718],[98.013046,50.855827],[97.963882,50.7783280000001],[98.063309,50.630547],[98.31526200000013,50.53194],[98.28970300000015,50.293884],[98.10721,50.048882],[97.89082300000011,49.95555100000013],[97.719147,49.95166],[97.559982,49.826942],[97.34082,49.734436],[97.169029,49.761993],[96.996933,49.894157],[96.72248800000011,49.9211],[96.592484,49.864998],[96.547485,49.92582700000014],[96.37915,49.893608],[96.294434,49.946655],[96.07443200000012,50.006943],[95.9602660000001,49.94415300000014],[95.907211,50.01416],[95.817215,50.021935],[95.74220300000012,49.957214],[95.529434,49.893326],[95.422485,49.956100000000106],[95.066086,49.961937],[94.97608900000012,50.05609900000013],[94.635269,50.02444],[94.51082,50.164993],[94.38998400000014,50.214439],[94.35220300000015,50.41499],[94.274994,50.56944],[93.726929,50.57972000000012],[93.448868,50.62249],[93.112762,50.5961],[93.01971,50.613052],[92.97102,50.666489],[92.999146,50.75138900000013],[92.9749910000001,50.79111],[92.80276,50.79361000000011],[92.760269,50.712494],[92.660812,50.681664000000126],[92.447754,50.810822000000144],[92.322769,50.814995000000124],[92.284988,50.740829],[92.221375,50.705551],[91.7874910000001,50.69471],[91.45804,50.50777],[91.002487,50.422493],[90.698593,50.219437],[90.50972000000013,50.22443],[90.244431,50.12027000000012],[90.051376,50.0824970000001],[90.01138300000014,49.98333],[89.6427,49.904831],[89.651093,49.795273],[89.732758,49.754166],[89.718048,49.71749100000011],[89.459717,49.649994],[89.37220800000011,49.57972000000012],[89.226654,49.638329],[89.197754,49.60499600000014],[89.2397,49.550545],[89.181931,49.506943],[89.003052,49.462494],[88.913605,49.54888],[88.87942,49.529716],[88.899994,49.44332],[88.40776,49.483879],[88.220825,49.461662],[88.13193,49.368324],[88.170532,49.27971600000012],[87.98858600000011,49.1772160000001],[87.71416,49.164711],[87.4122,49.078331],[87.34027100000014,49.101105],[87.29971300000011,49.210548],[87.040268,49.271935],[86.926651,49.35305],[86.839706,49.452217],[86.846939,49.52166],[86.616653,49.587212],[86.682205,49.66999],[86.80026,49.702217],[86.774994,49.78889],[86.61637900000011,49.797218],[86.50582900000012,49.676384],[86.28749,49.585823],[86.245819,49.501389],[86.191086,49.472488],[85.657761,49.60833000000013],[85.5,49.590271],[85.40387,49.623322000000144],[85.258606,49.591377],[85.211105,49.64722],[85.210541,49.71554600000013],[85.083603,49.88138],[84.977768,49.912766],[84.9791560000001,49.99777],[85.058319,50.013611],[85.014435,50.07582900000011],[84.52106,50.21678200000014],[84.363037,50.212212],[84.26388500000013,50.274994],[84.19693,50.453049000000135],[84.224701,50.50972],[84.170532,50.595825],[83.969986,50.715546],[83.97249,50.80166],[83.835815,50.880821],[83.456375,51.002495000000124],[83.138596,51.001938],[83.087204,50.92360700000012],[83.009995,50.88943],[82.76111,50.910820000000115],[82.727478,50.89888],[82.720261,50.810822000000144],[82.498871,50.7211],[82.442749,50.75804900000014],[82.35637,50.75972],[82.150269,50.710548],[81.91554300000013,50.78694],[81.67859,50.741104],[81.468048,50.742218],[81.43526,50.76916],[81.468048,50.81610100000012],[81.424698,50.966385],[81.07304,50.952255],[81.183594,51.196098],[81.040833,51.181435],[80.687836,51.31472],[80.633438,51.21476],[80.4387210000001,51.197968],[80.43067900000011,51.119087],[80.48678600000011,51.058777],[80.46791100000013,50.968231],[80.091858,50.84948],[80.06712,50.799477],[80.109604,50.75947600000012],[80.077957,50.758087],[79.99386600000014,50.813049],[79.536377,51.449997],[78.92303500000014,52.17638],[77.908035,53.271103],[77.52388000000013,53.506386],[76.521652,53.993881],[76.39332600000012,54.163605],[76.721375,54.15332000000012],[76.85971100000012,54.299438],[76.81164600000011,54.447769],[76.70665,54.447212],[76.656937,54.367767],[76.487762,54.32555],[76.23887600000012,54.35889],[76.18553,54.295547],[76.207214,54.25916],[75.69136,54.110275000000115],[75.501099,54.11527300000011],[75.38415,54.06721],[75.45721400000014,53.994156],[75.033875,53.80666],[74.947205,53.8386],[74.789429,53.83638],[74.67526,53.76388500000013],[74.64694,53.688324],[74.46638500000012,53.693321],[74.438873,53.60999],[74.48359700000015,53.584435],[74.429153,53.478600000000135],[74.376373,53.471657],[74.28387,53.52748900000011],[74.24664300000012,53.602219],[73.91748,53.65416],[73.676926,53.619438],[73.60081500000013,53.57305100000013],[73.581665,53.519714],[73.437195,53.436104000000114],[73.37025,53.46693],[73.414429,53.527771],[73.253876,53.57999],[73.238586,53.64444000000014],[73.26026900000011,53.683327],[73.3288730000001,53.694153],[73.35637,53.789719],[73.44303900000011,53.875824],[73.711655,53.874992],[73.763885,54.065544],[73.611649,54.077492],[73.54166,54.015274],[73.5458220000001,53.959435],[73.29081700000012,53.95388],[73.069443,53.988884],[73.000549,54.053604],[72.975266,54.12832600000013],[72.6133120000001,54.145271],[72.55053700000013,54.107773],[72.527435,54.050766],[72.669434,54.063606],[72.73109,53.96166],[72.55053700000013,53.960274],[72.468597,53.90888200000012],[72.392487,53.93110700000011],[72.508881,54.14277],[72.32165500000013,54.186104],[72.36026,54.24416],[72.19693,54.373878],[72.051651,54.387772],[72.08966,54.25272],[72.209152,54.195267],[72.196091,54.137497],[72.12221,54.133049],[71.95832800000011,54.247772],[71.767761,54.255272000000105],[71.730545,54.213051],[71.749146,54.154434],[71.653595,54.109993],[71.501099,54.113327],[71.483322,54.193604],[71.33638,54.214996],[71.25776700000011,54.126099],[71.185532,54.103325],[71.06694,54.193604],[71.07499700000011,54.270828],[70.997757,54.278046],[70.996933,54.339157],[71.21360800000014,54.325829],[71.221649,54.41027],[71.1602630000001,54.595543],[71.288315,54.634163],[71.27887,54.690269],[71.227478,54.733879],[71.105255,54.736107],[71.01304600000014,54.797493000000145],[70.968323,54.893051],[70.997757,55.09582],[70.803314,55.250832],[70.843323,55.301933],[70.67915,55.31360600000011],[70.578323,55.276382],[70.469986,55.29666],[70.238876,55.13888500000013],[70.048325,55.206940000000145],[69.949142,55.204163],[69.8461,55.294998],[69.67276,55.354439],[69.351379,55.39444],[69.232758,55.3325],[69.18553,55.34388000000013],[69.16832000000011,55.40054],[68.952484,55.44471],[68.92330900000013,55.424164],[68.939423,55.37027],[69.001099,55.353607],[69.00249,55.28749800000014],[68.933319,55.28611],[68.87997400000012,55.34277],[68.731369,55.3705440000001],[68.625809,55.201935],[68.30443,55.205269],[68.199707,55.178329],[68.244431,55.104713],[68.33083,55.08055100000013],[68.205261,54.966103],[68.03442400000012,54.950272],[67.929703,54.98333],[67.83221,54.96332600000011],[67.766388,54.891937],[67.581375,54.85443900000013],[67.322769,54.86749],[67.24552900000015,54.80666],[66.80886800000013,54.76666300000011],[66.722763,54.726936],[66.49525,54.723045],[65.99109,54.617493],[65.96693,54.713608],[65.844437,54.684715],[65.75749200000013,54.601387],[65.48332,54.638046],[65.218597,54.52777100000014],[65.20109600000012,54.46138000000013],[65.24054,54.34804],[65.216385,54.318886],[65.10609,54.315544],[64.997208,54.396385],[64.924423,54.409714],[64.73776,54.341103],[64.53887900000012,54.363884],[63.99277,54.311104],[63.979988000000105,54.28054800000012],[64.019989,54.23777],[63.899101,54.19813],[63.72638,54.25972],[63.4049910000001,54.172768],[63.172218,54.186378000000104],[63.13526900000011,54.174164],[63.14888,54.11416],[63.109993,54.09554300000013],[62.68721000000011,54.085266],[62.591377000000136,54.053047000000106],[62.565544,54.03305],[62.57416500000011,53.896942],[62.547493,53.87943300000012],[62.42222,53.938042],[62.35804700000011,54.022766],[62.02471200000014,54.024994],[62.0258260000001,53.939713],[61.85527000000013,53.95166],[61.789719,54.00416600000011],[61.486656,54.015549000000135],[61.420273,54.066666],[61.3261,54.06916],[61.113052,53.963608],[61.01416,53.947487],[61.00055,53.88971700000013],[61.118599,53.883331],[61.226936,53.811935],[61.05971,53.643326],[60.908325,53.66027100000014],[60.90554800000012,53.62027],[61.094154,53.616936],[61.182495,53.569443],[61.324436,53.555832],[61.395271,53.59277],[61.53889,53.593323],[61.577492,53.513329],[61.424995,53.442215],[61.24194,53.506943],[61.151657,53.37471],[61.184715,53.306656],[61.390274,53.27388],[61.50972,53.21971100000013],[61.60638,53.2286],[62.104713,53.12499200000013],[62.144157000000114,53.080826],[62.11832400000014,53.00416600000011],[61.967209,52.93749200000013],[61.862495,52.98666],[61.695541,52.98304700000011],[61.46277,53.02971600000012],[61.354996000000135,52.991936],[61.203323,53.021935],[61.099159,52.981659],[61.01999,52.88638],[60.731659,52.749718],[60.694153000000135,52.680824],[60.73582,52.637497],[60.83471700000012,52.63582600000012],[60.83471700000012,52.529991],[60.970825,52.494995],[60.9786,52.41304800000012],[61.061935000000126,52.342491],[60.78249,52.220268],[60.715271,52.156937],[60.486656,52.15470900000014],[60.22304500000013,51.999161],[60.02555100000012,52.000832],[60.00222,51.958328],[60.06444,51.873604000000114],[60.22416,51.871933],[60.496658,51.801933],[60.461662,51.73777],[60.373604,51.695541],[60.386658000000125,51.672493000000145],[60.527771,51.62721],[60.94294700000011,51.61888900000014],[60.93387600000011,51.561104],[60.978043,51.497772],[61.490829,51.424995],[61.581665,51.30305],[61.685822,51.265831],[61.549164000000125,51.215546],[61.461662,50.873047],[61.426659,50.803047],[61.381378,50.783607],[60.698044,50.6616590000001],[60.3122100000001,50.69249],[60.170273,50.77527],[60.165268,50.84582],[60.04361,50.863327],[59.98444,50.838326],[59.939713,50.711937],[59.81972,50.5472180000001],[59.6508260000001,50.53388],[59.542496,50.478325],[59.46638500000011,50.532494],[59.575829,50.5563810000001],[59.58638000000013,50.58443],[59.492493,50.629433],[58.94026900000012,50.683052],[58.66554300000013,50.80499300000014],[58.566666,50.908882],[58.624435,50.988602],[58.609993,51.03833],[58.337769,51.156097],[58.215271,51.115829],[58.1722180000001,51.054436],[57.79443400000013,51.118942],[57.749718,51.07249500000012],[57.741936000000116,50.913605000000125],[57.56916,50.925552],[57.481934,50.86472],[57.36110700000012,50.899994],[57.266106,51.018051],[57.13333100000011,51.08804],[56.873322000000144,51.058327],[56.774437,51.09083],[56.700272,51.05638],[56.729156,50.977768],[56.626099000000124,50.98582],[56.510826,51.08332800000011],[56.43916,51.034996],[56.449158000000125,50.973045],[56.337212000000136,50.891106],[56.17249300000014,50.913048],[56.116104000000114,50.739159],[55.692490000000134,50.532494],[55.539436,50.60916],[55.49777200000011,50.6616590000001],[55.369987,50.65193],[54.82888,50.98333000000014],[54.647217,51.036942000000124],[54.548607,51.006386],[54.548607,50.9222180000001],[54.673882000000106,50.873878000000104],[54.658325,50.721931],[54.701935,50.60694100000012],[54.610275,50.54361],[54.523933,50.52884],[54.453323,50.55555],[54.397774,50.625549],[54.438042,50.765274],[54.506386,50.856941],[54.30138,50.907494],[54.16721300000011,50.998329],[54.133049,51.106102],[53.95721,51.193047],[53.678329,51.227486],[53.61055,51.303604],[53.638603,51.393051],[53.428604,51.491661000000136],[53.14749100000011,51.501106],[52.884995,51.464996],[52.769714,51.504166],[52.603325,51.45694],[52.501389000000124,51.51028],[52.338326,51.782211],[52.17749,51.728874],[52.105827,51.66415400000011],[51.874161,51.67360700000011],[51.780548,51.594437],[51.803322,51.5],[51.690826,51.45527],[51.64582800000011,51.48555],[51.30305,51.479713],[51.258888,51.550545],[51.39138,51.568886],[51.38999200000012,51.63832900000011],[51.275269,51.683876],[50.93888,51.688881],[50.863327,51.75138900000013],[50.77330000000012,51.76918],[50.758606,51.719711],[50.81360600000011,51.64804800000013],[50.81055,51.59166],[50.68277,51.573051],[50.7174910000001,51.62249],[50.60277600000012,51.639992],[50.557495,51.580276],[50.548882000000106,51.4686],[50.38472,51.425270000000125],[50.35443900000013,51.378044],[50.363327,51.31694],[49.968048000000124,51.226097],[49.804161,51.110275],[49.46194,51.124161],[49.36444100000011,50.979713],[49.44082600000013,50.905823],[49.431107000000104,50.854996],[49.158325,50.79277],[49.03082300000011,50.68804200000011],[48.85833000000014,50.60527],[48.697487,50.59193],[48.68915600000014,50.51332900000011],[48.746658,50.272766],[48.916939,50.03416],[48.796944,49.94193300000012],[48.450829,49.8169400000001],[48.251663,49.869713000000104],[48.16554300000013,49.9661],[48.11055,50.098602],[47.946938,50.24554],[47.63444,50.454712],[47.49082900000013,50.421379],[47.41610000000014,50.331940000000145],[47.31667,50.294441],[47.280548,50.182213],[47.35666,50.090271],[47.30249,50.031937],[47.18832400000014,49.94415300000014],[46.929436,49.863609],[46.79583,49.339714],[47.0261,49.236107],[47.062767,49.1427690000001],[46.954437,49.013054],[46.778877000000136,48.936653],[46.49916100000013,48.4175],[47.122765,48.27166000000011],[47.136658,47.822495],[47.383324,47.68888],[47.435822,47.843597],[47.691376,47.765831],[48.064713,47.779709],[48.204430000000116,47.70498700000013],[48.443871,47.436928],[48.568886,47.372765],[48.7211,47.09833],[49.02721,46.776093],[48.941376,46.704163],[48.76526600000011,46.690819],[48.69109300000014,46.76777],[48.538605,46.751656],[48.494431,46.667206000000135],[48.560547,46.564995],[48.732758,46.560547],[48.847137,46.47924000000012],[48.918129,46.48922],[49.222527,46.34630600000014],[49.30555,46.263054],[49.15443,46.28665],[48.91109,46.130547],[48.78194,46.092766],[48.70638300000013,46.132484],[48.667206000000135,46.116936],[48.627762,46.082764],[48.727486,46.01998],[48.761658,45.854706],[48.71332600000011,45.830269],[48.56582,45.965828],[48.446648,45.93110700000011],[48.22387700000013,45.744156],[47.85166,45.71720900000013],[47.830544,45.655823],[47.55222,45.76944],[47.551102,45.74054],[47.625259,45.708878],[47.6572,45.615822],[47.637215,45.55304],[47.491096,45.724434],[47.380272000000105,45.74471],[47.41582,45.672211],[47.54609700000014,45.633041],[47.56915,45.557487],[47.54305,45.52583],[47.50305,45.556931],[47.519981,45.494987],[47.49054,45.422493000000145],[47.421654,45.36304],[47.37109,45.23333],[47.135262,44.940262],[47.075554,44.782761],[47.033051000000114,44.829987],[46.772484,44.69193300000012],[46.67971,44.52304],[46.6999970000001,44.44275700000014],[46.760277,44.39193],[47.040543,44.3461],[47.088326,44.24416],[47.1586,44.20054],[47.19748700000014,44.210274],[47.350266,44.026649],[47.501938,43.768593],[47.395546,43.60804],[47.363884,43.61554],[47.407204,43.501099000000124],[47.46165500000012,43.528328],[47.539162,43.85971100000012],[47.62832,43.902489],[47.698318,43.86887400000012],[47.584984000000134,43.722214],[47.487206,43.45638300000013],[47.491936,43.332207],[47.528603,43.310547],[47.57249500000011,43.330544],[47.58832600000011,43.296944],[47.48333000000014,43.207764],[47.462212,43.01915],[47.696938,42.86637900000011],[47.738319,42.63388],[47.859428,42.59388],[47.944984,42.462494],[48.11776,42.326378],[48.303596,42.09748],[48.386658,41.926384],[48.544716,41.88027],[48.583954,41.83577],[48.399712,41.589149],[48.248871000000115,41.509163],[48.066093,41.460274],[47.90831800000012,41.29083300000013],[47.910812,41.2197],[47.7586060000001,41.196381],[47.643326000000116,41.23555],[47.571663,41.211098],[47.275551,41.318604],[47.258881,41.424706],[47.160538,41.56110400000011],[47.08416000000011,41.565536],[46.77887,41.78916],[46.760818,41.863884],[46.639709,41.816093],[46.563324,41.885544],[46.451752,41.897057],[46.239983,42.001389],[45.98693100000014,42.028603],[45.647484000000134,42.20471],[45.760544,42.473312],[45.700539,42.51611],[45.55277300000011,42.550262],[45.35166,42.52942700000011],[45.171371,42.700829000000105],[45.05304,42.69415300000014],[44.92748300000011,42.761932],[44.85915,42.747208],[44.808327,42.66527],[44.671928,42.74416],[44.549721,42.75944],[44.184433000000126,42.623871],[43.911934,42.583321000000126],[43.784714,42.60082200000011],[43.735268000000126,42.645264],[43.8324970000001,42.748322],[43.67083,42.7911],[43.56055,42.860825],[43.200829,42.93637],[42.85721600000011,43.1774830000001],[42.701096,43.182487],[42.625824,43.143044],[42.41527,43.239159],[42.18111,43.2355500000001],[42.031097,43.187485],[41.58971,43.22275500000012],[41.193047,43.38472],[41.037766,43.377213],[40.68471,43.54583000000014],[40.54305,43.5086060000001],[40.253387,43.5825200000001],[40.126656,43.57222],[40.07749200000012,43.54694],[40.002968,43.379265],[39.91971600000011,43.4086],[39.87027,43.494713],[39.458603,43.76721],[39.286942000000124,43.926941],[38.963875,44.14804],[38.869156,44.173607],[38.760277,44.27026400000011],[38.59415,44.330826000000116],[38.180817,44.397217000000126],[38.116096,44.489159],[37.78804800000012,44.7249910000001],[37.82527,44.652489],[37.79639,44.63165],[37.48832,44.66943400000014],[37.370537,44.746651],[37.299164000000125,44.859428],[37.309433,44.90416],[37.200272,44.981659],[36.88221,45.08581500000014],[36.621651,45.129433],[36.58416,45.20193],[36.7286,45.203316],[36.96054,45.27499],[36.96666,45.310265],[36.779709,45.38472000000013],[36.663315000000125,45.330826000000116],[36.74527,45.411652],[36.830826,45.436646],[37.094147,45.340546],[37.077209,45.236382],[37.31860400000011,45.27166],[37.205269,45.29916400000013],[37.20416300000011,45.324158000000125],[37.397774,45.316376],[37.518593,45.36304],[37.604996,45.313324],[37.733871000000136,45.29694],[37.699158000000125,45.561371],[37.641487,45.59082],[37.62165,45.571938],[37.645821,45.449425],[37.61916,45.41443],[37.58387800000014,45.425545],[37.59137,45.62748],[37.623604000000114,45.66666],[37.666313,45.61526],[37.70387,45.61887400000012],[37.663048,45.66916],[37.840271,45.767487],[37.94026200000013,46.02582600000011],[38.094147,46.053596],[38.070541,45.953606],[38.09554300000013,45.944984],[38.163872,46.107216],[38.225548,46.136101],[38.445534,46.027489],[38.56304200000011,46.034431],[38.56526200000013,46.10470600000013],[38.296097,46.216660000000104],[38.265831,46.275269],[38.09137,46.388039000000106],[37.98026,46.395821],[38.016388,46.365540000000124],[37.996941,46.34388],[37.90416,46.402206],[37.820824,46.483871000000136],[37.732758,46.665268],[37.851379,46.622208],[38.01611,46.618874],[38.268044,46.72609],[38.30248300000011,46.677216],[38.387772,46.652771],[38.577209,46.649712],[38.584435,46.6933140000001],[38.49249300000014,46.737488],[38.40331,46.74054],[38.37721,46.709435],[38.36472,46.749161],[38.41081200000013,46.828049],[38.470543000000134,46.86026800000013],[38.777489,46.881927],[39.07887,47.02887],[39.276932,47.012215],[39.299988,47.076935],[39.276649,47.236382000000106],[39.24665,47.26499200000012],[39.067490000000134,47.277771],[38.952492,47.254433],[38.929710000000114,47.213326],[38.810547,47.162209000000125],[38.55777,47.1105500000001],[38.479424,47.12999],[38.55777,47.214989],[38.768593000000116,47.253319],[38.604706,47.240273],[38.52998400000013,47.212212],[38.4499970000001,47.134438],[38.235825,47.109428],[38.2144320000001,47.190262],[38.301102,47.301102],[38.223312000000135,47.339989],[38.33943,47.601379],[38.754715,47.68555],[38.85360000000014,47.86082],[39.723877,47.81833],[39.796387,47.857216],[39.819984,47.969704],[39.77609,48.026382],[39.998878,48.29722],[39.921516,48.368393],[39.85083,48.55749500000013],[39.66966200000013,48.587639],[39.656937,48.616661],[39.727211,48.762215],[39.803879,48.817772],[40.017494,48.806656],[40.07666,48.874992000000134],[39.777771,48.899994],[39.69443500000011,48.973045],[39.696655000000135,49.010826],[39.7075,49.03666],[39.938881,49.05499300000013],[39.966385,49.123878000000104],[40.16693900000013,49.248604],[40.17388,49.350273],[40.053047,49.478325],[40.07444,49.526939],[40.141106,49.559158],[40.139763,49.601051],[40.004997,49.614441],[39.921661,49.5655440000001],[39.796944,49.55305],[39.63971700000013,49.615547],[39.580826,49.73082],[39.273605,49.75193800000011],[39.19276,49.877769],[39.069160000000124,49.817772],[38.945267,49.807495],[38.88916,49.86805],[38.65221400000013,49.95888500000012],[38.498878,49.951935000000105],[38.376099,49.987495],[38.30777,50.073883],[38.184158,50.065544],[38.103607000000125,49.93859900000012],[38.02422300000012,49.903084],[37.925270000000125,50.024712],[37.73305,50.087769],[37.458603,50.439713],[37.31582600000013,50.428047],[37.130547,50.348328],[36.88444,50.33582300000012],[36.7011,50.266937],[36.640274,50.212494000000106],[36.55555,50.227211],[36.558884,50.278603],[36.419991,50.313881],[36.297493,50.284439],[36.13916,50.425270000000125],[35.865829,50.43082400000014],[35.693092,50.347412],[35.606651,50.369438],[35.458282,50.488068],[35.39271,50.63392],[35.486076,50.678627],[35.361336,50.92614700000013],[35.30577100000011,50.96033],[35.371887,51.041435],[35.170753,51.05480200000011],[35.11852,51.2048190000001],[35.07381,51.221481],[34.734993,51.172493],[34.38221,51.263611],[34.23916,51.427773000000116],[34.232208,51.54999],[34.09804500000013,51.65387700000013],[34.114716,51.680824],[34.418884,51.72388],[34.44249,51.75249500000012],[34.424713,51.799438],[34.12915800000013,51.986107],[34.073051000000135,52.060272],[34.10083,52.14554600000014],[34.06916,52.19082600000013],[33.830551,52.364716],[33.512772,52.326942],[33.20471,52.379715],[32.92360700000011,52.24721],[32.394157,52.335266],[32.35833,52.30999],[32.33554800000013,52.157211],[32.2249910000001,52.07944],[32.112213,52.043327],[31.783886000000106,52.108047],[31.7825,52.165825],[31.586662,52.318886],[31.629719000000133,52.370544],[31.590553000000114,52.589714],[31.5,52.689987],[31.595,52.738045],[31.58083,52.803047],[31.536942,52.856102],[31.39083,52.91027100000014],[31.266941,53.024712000000136],[31.386383,53.099159],[31.395275000000137,53.181381],[31.43888500000014,53.211662],[31.76916,53.196098],[31.801109,53.125824],[31.918327,53.098328],[32.22332,53.1055530000001],[32.724434,53.360275000000115],[32.741104,53.463051],[32.443878,53.5719380000001],[32.414711000000125,53.64638],[32.510551000000135,53.683601000000124],[32.45166,53.726379],[32.119713000000104,53.81999200000013],[31.902218,53.77777100000014],[31.76422,53.80262],[31.85722,53.96971],[31.844162,54.06443800000011],[31.54416300000014,54.143326],[31.33166,54.237495],[31.311665,54.35083],[31.231937,54.456657],[31.08444200000014,54.498604],[31.144718000000125,54.582214000000135],[31.10305,54.64555],[30.78139,54.79361],[30.838886,54.922493],[31.02972,55.043327],[30.94833000000011,55.18943],[30.81361,55.29333],[30.939438,55.399437],[30.918884,55.60833],[30.756664,55.596657],[30.489716,55.799995],[30.245827,55.854439],[29.928329,55.85166],[29.493885,55.68888],[29.359161,55.78944],[29.40694,55.895828],[29.46444,55.911102],[29.412216,55.957771],[29.05944,56.03277],[28.869442,55.980545],[28.83277500000014,55.942215],[28.73127,55.96241],[28.646107,56.09360500000013],[28.387497,56.0961],[28.312496000000124,56.04999500000014],[28.18527200000011,56.135269],[28.168011,56.1501540000001],[28.233051,56.289436],[28.147774,56.471375],[27.943607,56.722763],[27.9175,56.786110000000114],[27.93888500000014,56.82444],[27.837776,56.875549],[27.731106,56.869156],[27.70166,56.914711],[27.848331000000144,57.174164],[27.861107000000118,57.302216],[27.527222,57.438599],[27.547218,57.53638],[27.372059,57.535637],[27.346943,57.586937],[27.545830000000137,57.817772],[27.822773,57.869713],[27.686661,57.965271],[27.67332800000014,58.07888000000014],[27.554165,58.13276700000011],[27.474163,58.213882],[27.464718,58.297775],[27.539165,58.361664],[27.542496000000142,58.413879],[27.421661,58.78833],[27.493607,58.881935],[27.788052000000107,59.058601],[27.912537,59.27182],[28.170359,59.30978],[28.19388600000013,59.375824],[28.015831,59.4786],[28.069996,59.56138],[27.993607,59.685547],[28.00861,59.75888800000013],[28.09638600000011,59.795273],[28.19416,59.75249500000012],[28.222771,59.685822],[28.374165,59.661102],[28.416386,59.695267000000115],[28.432217,59.818329],[28.500553,59.857498000000135],[28.718052,59.781662],[28.83860800000014,59.784721],[28.981106,59.82972],[29.034721000000104,59.87721],[29.02833,59.93055],[29.06277,59.96915400000011],[29.18721800000014,60.006943],[30.155552,59.863884],[30.213608000000136,59.889717],[30.24666,59.96693],[29.94833,60.025269],[29.892773,60.087494],[29.897774,60.131378],[29.824165,60.16833],[29.579998000000103,60.198601],[29.409718,60.15888200000012],[29.03167,60.183876],[28.792774,60.335548],[28.60194,60.3844380000001],[28.44138,60.558601],[28.49916,60.558601],[28.58194,60.490273],[28.701939,60.454994000000106],[28.66333,60.582214],[28.595276,60.570549],[28.553051,60.604439],[28.57444,60.640831],[28.682774,60.613884],[28.732773,60.680824],[28.728329,60.71944],[28.68666,60.73582],[28.403885000000116,60.663879],[28.34111,60.59415400000011],[28.146664,60.52943],[27.807831,60.546402],[28.38888500000013,60.886665],[28.529163,60.954994],[28.638885,60.96611000000012],[28.812775,61.103333],[29.21361,61.253326],[29.809166,61.60833],[30.704166,62.210548000000124],[31.25972,62.507774],[31.4675,62.806389],[31.588928000000124,62.91441300000014],[31.219719,63.223053],[30.714722,63.42443800000013],[30.481667,63.47861],[30.399441,63.546104],[30.228333,63.600555],[29.995831,63.738884],[30.255833000000106,63.817772000000105],[30.59527600000013,64.046936],[30.614441000000113,64.08665500000012],[30.578053,64.221375],[30.389721,64.30943300000013],[30.156109,64.354156],[30.053608,64.404999],[30.087219,64.483047],[30.00967,64.51286],[29.974998,64.5811000000001],[30.199165,64.65027],[30.140831,64.774155],[29.804722,64.7938840000001],[29.636665,64.92805],[29.60666700000013,65.001663],[29.628887,65.063049],[29.873886,65.12082],[29.853611,65.21611],[29.596386,65.24889],[29.7475,65.341934],[29.738331,65.48111000000011],[29.83416,65.588333],[29.818886,65.65332000000012],[30.024441,65.69110100000012],[30.123886,65.66499],[30.134163,65.71916],[30.09666,65.833328],[29.910275,66.12693800000011],[29.638611000000136,66.32249500000012],[29.554443,66.470276],[29.359444,66.673325],[29.123055,66.824707],[29.074997000000106,66.89582800000011],[29.087776,66.969986],[29.15694400000012,67.03082300000011],[29.525276000000133,67.293884],[29.932777,67.513885],[30.02861,67.69472],[29.691666,67.815277],[29.356941000000116,68.08248900000012],[28.696663000000115,68.19332900000012],[28.457497,68.53194],[28.73860900000011,68.73416],[28.820553,68.844437],[28.737778000000105,68.87582],[28.4625,68.87527],[28.43222,68.886383],[28.446663,68.9147190000001],[28.91333,69.04332],[29.129719,69.04805],[29.25444,69.119995],[29.321663000000115,69.24554400000011],[29.309998,69.315277],[29.665,69.373886],[30.097775,69.503326],[30.184998000000117,69.582764],[30.142776,69.628326],[30.072777,69.631104],[30.103333,69.663055],[30.203609,69.663879],[30.529163,69.546097],[30.86389,69.53665200000012],[30.936665,69.56582600000013],[30.951385000000126,69.61387600000012],[30.943333,69.690552],[30.854839,69.792313],[31.79472,69.682205],[31.691513,69.732155],[31.713329,69.82582],[31.837219,69.848877],[32.05360400000012,69.76609800000011],[32.096657,69.804977],[31.911385,69.931091],[31.941105,69.96748400000013],[32.05582400000014,69.95943],[32.468651,69.847458],[32.506104,69.797485],[32.91694,69.776657],[33.130432,69.72607],[33.094437,69.636383],[32.8949970000001,69.582764],[32.110275,69.67581200000012],[32.02639,69.636536],[32.099998,69.594147],[32.42332,69.572495],[32.498604,69.51138300000014],[32.199715,69.424149],[32.487770000000125,69.4897],[33.02941,69.47186],[32.834717,69.34887700000012],[32.80999,69.296097],[32.895271,69.30304],[32.972214,69.388596],[33.326942000000145,69.448868],[33.52166,69.42192100000011],[33.471329,69.350441],[33.236938,69.273041],[33.47443,69.274994],[33.53194,69.18969700000012],[33.273048000000124,69.103867],[33.03777300000013,69.068054],[33.02277,68.95332300000013],[33.075272,69.059418],[33.446381,69.10554500000012],[33.567772,69.18385300000011],[33.562492,69.290268],[33.64138,69.325546],[34.35193600000014,69.31832900000012],[34.64747200000011,69.25093],[35.129562000000135,69.21780400000011],[35.15845,69.179749],[35.265991,69.218628],[35.15541100000013,69.273926],[35.836655,69.198868],[36.60083,69.013321],[37.494995,68.73526],[37.77332,68.676086],[38.054436000000116,68.5310970000001],[38.322495,68.44136],[38.43277000000012,68.339157],[38.60860400000013,68.327484],[38.502777,68.36165],[38.621933,68.38443],[38.93055,68.303589],[39.10943600000013,68.21138],[39.520271,68.0711060000001],[39.86416,68.043869],[39.7075,68.162201],[39.785553,68.16165],[39.929436,68.10637],[39.97832,68.03442400000012],[40.138603,67.953049],[40.36805,67.897766],[40.41027100000014,67.855255],[40.31972,67.84027100000014],[40.47555,67.750549],[40.696655,67.770264],[40.80999,67.72276],[40.99222,67.716095],[41.055267,67.6413730000001],[41.03583,67.467758],[41.15332,67.413879],[41.112495,67.24582],[41.224434,67.213318],[41.32694,67.22665],[41.390549,67.122757],[41.219711,66.837769],[40.73166,66.584427],[40.716103,66.5333250000001],[40.56554,66.453873],[40.178604,66.34082],[40.073326,66.27777100000014],[39.276382,66.119141],[38.607773000000115,66.0522],[37.90998800000011,66.087494],[37.016106,66.2686],[35.5177460000001,66.38635],[34.845825000000104,66.60498],[34.470268,66.5336],[34.354713,66.610809],[34.438599,66.64665200000013],[33.85555,66.692474],[33.77277,66.76416],[33.59887700000013,66.82304],[33.51666300000011,66.808594],[33.628044,66.746094],[33.526657000000114,66.7186],[33.188042,66.81499],[32.834717,66.98054500000012],[32.793884000000105,67.085815],[32.66777,67.11943],[32.346939,67.164154],[32.06610100000012,67.133331],[31.85499600000014,67.15387],[31.93138,67.120819],[32.254166,67.125259],[32.55471,66.99636800000013],[32.518326,66.88220200000012],[32.908882,66.771927],[32.93499,66.7391510000001],[32.793884000000105,66.733047],[32.808044,66.716095],[33.21471400000013,66.680267],[33.325554,66.642212],[33.31554,66.62082],[33.13166,66.649994],[33.062492,66.59332300000011],[32.87221,66.579163],[33.083885,66.58072],[33.248329,66.61720300000012],[33.421379,66.591095],[33.534439,66.529434],[33.194492,66.564339],[32.94609800000012,66.51998900000011],[33.117210000000114,66.505264],[33.222214,66.534424],[33.444992,66.466934],[33.60139,66.4910890000001],[33.732491,66.42387400000013],[33.312767,66.316086],[33.553322,66.32222],[34.103607,66.251099],[34.566666,66.07805],[34.847488,65.901093],[34.963608,65.717758],[34.91277,65.69664000000012],[34.690826,65.803864],[34.687767,65.720261],[34.782211,65.59526100000011],[34.681664000000126,65.451096],[34.488045,65.448318],[34.377769,65.37831],[34.47916,65.275543],[34.63805,65.238312],[34.69054,65.180817],[34.682213,65.10832],[34.795273,65.015823],[34.774712,64.9685970000001],[34.936104,64.838318],[34.957214,64.652771],[34.78777300000013,64.54776],[34.947769,64.51443],[34.95804600000014,64.44886800000012],[35.324829,64.326523],[35.538605,64.35553],[35.57012,64.407455],[35.798607,64.34499],[35.894714,64.2961],[35.897217,64.251938],[35.9786,64.19832],[36.109718,64.231369],[36.282494,64.143326],[36.275826,64.01138],[36.8486,63.90638],[37.172768,63.88916],[37.289719000000105,63.814713],[37.414993,63.803879],[37.57416500000011,63.838326],[37.583054,63.883606],[37.654709,63.923607],[37.87833,63.9161],[38.07749200000012,64.017212],[38.04361,64.154434],[37.903046,64.227478],[37.978874000000125,64.31667],[37.813881,64.384155],[37.801102,64.427475],[37.341934,64.35108900000012],[37.144714,64.408875],[36.7291560000001,64.71609500000011],[36.55471,64.74470500000012],[36.43971,64.942749],[36.646103,64.92109700000015],[36.830551,64.988037],[36.867493,65.07638],[36.83332800000011,65.16081],[37.03221100000013,65.208328],[37.690269,65.055817],[37.74554,65.025269],[37.75444,64.960266],[38.00416600000011,64.87052900000013],[38.4086,64.85887100000014],[38.365273,64.80693100000013],[38.04361,64.76555],[38.046944,64.641098],[38.162491,64.67137100000014],[38.18804200000011,64.718048],[38.49082900000013,64.761383],[38.53666,64.798325],[38.932213000000104,64.74359],[39.55387900000011,64.561646],[39.746101,64.553589],[39.921661,64.602478],[39.78638500000011,64.594711],[39.82861,64.67137100000014],[40.05777,64.621094],[40.17805,64.556931],[40.505829,64.535263],[40.533051,64.56888],[40.41277,64.724991],[40.450546,64.789154],[40.36721,64.93441800000011],[40.275269,65.01471],[40.138603,65.05331400000011],[39.718048,65.37831],[39.70305,65.458878],[39.751389,65.55081200000012],[39.915825,65.633041],[40.41277,65.776382],[40.703323,65.96805],[41.42499500000014,66.089706],[41.80471,66.26555],[42.168327,66.522766],[42.585548,66.46388200000011],[42.67083,66.43248],[42.66971600000011,66.396378],[43.299721,66.422211],[43.64666,66.282761],[43.69748700000013,66.235809],[43.2930530000001,66.097763],[43.354713,66.038589],[43.514442000000145,65.971924],[43.51471700000013,66.041656],[43.383049,66.07666],[43.69249,66.177475],[43.858047,66.176926],[44.05249,66.075546],[44.028877000000136,66.00333],[44.174438,65.874695],[44.149719,66.04832],[44.076385,66.200546],[44.16436,66.372818],[44.2575,66.460815],[44.35499600000014,66.49498],[44.400269,66.62164],[44.483047,66.674149],[44.35833000000014,66.78526],[44.48193400000014,66.82777],[44.496384,66.90748600000012],[44.415825,67.007767],[44.148605,67.164703],[43.894440000000145,67.159988],[43.783051,67.193588],[43.751938,67.31888],[44.02471200000013,67.659149],[44.099159,67.678589],[44.1280440000001,67.800537],[44.084717,67.87886],[44.266663,67.9244230000001],[44.125549,67.93026700000011],[44.245827,68.270264],[44.001389,68.392761],[43.35499600000014,68.59833],[43.266937,68.65332],[43.311661,68.684982],[43.477211,68.679703],[44.118599,68.53526],[45.26416,68.574432],[45.90332000000012,68.48220800000013],[45.96666,68.45054600000014],[45.94110100000012,68.42804],[46.029716,68.32388300000014],[46.275269,68.20942700000012],[46.3513870000001,68.210541],[46.520828,68.14415],[46.56694,67.99693],[46.721657,67.920532],[46.70694,67.813034],[46.408882,67.82748400000014],[45.382492,67.735535],[45.29666,67.702774],[45.353607000000125,67.6772],[45.328606,67.600815],[45.153046,67.577774],[45.023605,67.52388],[44.944153,67.474426],[44.911934,67.37276],[45.125267,67.280273],[45.599998,67.172211],[45.643883,67.0788730000001],[45.8111,66.90387],[46.02916,66.825546],[46.510826,66.87608300000011],[46.60083,66.85331700000012],[46.385551000000135,66.7397],[46.588882000000126,66.818878],[46.923882,66.84166],[47.363884,66.922485],[47.49749,66.91554300000013],[47.699715,66.98637400000011],[47.74749,67.03888],[47.75388,67.111649],[47.67999300000014,67.189423],[47.95193,67.448593],[47.812492,67.577774],[47.994995,67.650269],[48.139717,67.62303],[48.271378,67.678314],[48.535271,67.661926],[48.676941,67.710266],[48.853607000000125,67.698868],[49.003052,67.63526900000011],[49.101105,67.628036],[48.879158,67.72499],[48.79361,67.833054],[48.5911,67.934982],[48.92249,67.848602],[49.2261,67.873871],[50.01416,68.090546],[49.84833,68.015],[49.9661,68.03997800000013],[50.113884,68.128311],[50.588326,68.274429],[50.775826,68.3724820000001],[50.861664,68.339981],[51.076103,68.35054],[51.567772,68.42886],[51.584717,68.442749],[51.53388200000011,68.453598],[51.58194,68.484985],[52.07471,68.54443400000014],[52.2011030000001,68.554977],[52.17860400000012,68.504715],[52.35361,68.480545],[52.277214,68.40914900000013],[52.13749700000011,68.38526900000011],[52.268600000000106,68.30582],[52.664711,68.41304],[52.733047,68.466385],[52.488045,68.58554100000015],[52.50027,68.613602],[52.650269,68.652206],[52.506496,68.6317140000001],[52.416939,68.5852660000001],[52.281105,68.595261],[52.28833,68.614151],[53.28638500000011,68.88247700000011],[53.783607,68.968048],[54.418327,69.00888],[54.560822,68.992477],[53.598877,68.908035],[53.685822,68.8583220000001],[53.7261,68.85637],[53.687492,68.885269],[53.716385,68.8894350000001],[54.019157,68.855255],[53.840546,68.74054],[53.812767,68.68220500000011],[53.719711,68.65193],[53.90582300000011,68.502777],[53.94582400000013,68.399994],[53.79583,68.34193],[53.59277,68.407761],[53.575272,68.39694],[53.691376,68.33971],[53.416939,68.363312],[53.31361,68.34304800000012],[53.209991,68.261383],[53.345825,68.236099],[53.717491,68.25166300000012],[53.96166,68.213608],[54.17083,68.25055],[54.238884,68.20498700000013],[54.49665800000014,68.30582],[54.554436,68.296646],[54.65471,68.182205],[54.79194,68.16304],[54.863327,68.181656],[54.926384,68.246368],[54.923882,68.279984],[54.854996,68.31749],[54.939713,68.399994],[55.32473,68.55000300000012],[55.689499000000126,68.571304],[55.96749100000011,68.659424],[56.291939,68.605255],[56.6280440000001,68.63693],[57.013054,68.54443400000014],[57.2761,68.5558170000001],[57.398048,68.58082600000012],[57.44332,68.6461],[57.586655,68.733597],[57.923325,68.74636800000012],[57.98193400000013,68.77777],[57.94249,68.819443],[57.971375,68.846939],[58.17610200000013,68.883881],[58.24332400000014,68.882751],[58.19999700000011,68.827209],[58.3361,68.73027000000013],[58.42166,68.736649],[58.429161,68.7622070000001],[58.279434,68.79693600000013],[58.275269,68.896103],[58.898331,68.99971],[59.233047000000106,68.992477],[58.888603,68.933594],[59.108047,68.906372],[59.427216,68.7452550000001],[59.394997,68.69942],[59.17777,68.697754],[59.065826,68.623596],[59.07332600000012,68.421371],[59.615273000000116,68.33554],[59.836105,68.366653],[59.96915400000011,68.467758],[59.85833,68.593597],[59.762215,68.634155],[59.811661,68.68193],[59.923325,68.720825],[60.086655,68.686646],[60.494438,68.718872],[60.670547,68.790543],[60.80027000000012,68.88859600000012],[60.91443600000014,68.904709],[60.94443,68.99693300000013],[60.931938,69.087494],[60.888046,69.12915],[60.73582,69.174698],[60.73416,69.106369],[60.602219,69.125809],[60.59166,69.255829],[60.545547,69.309708],[60.29361,69.459717],[60.221657,69.550262],[60.140549,69.57415800000012],[60.16499,69.63582],[60.286942,69.670532],[60.66554300000013,69.672485],[60.649994,69.72971],[60.69609800000012,69.811371],[60.87443500000012,69.86360200000013],[62.011108,69.743591],[63.086105,69.703323],[64.15054,69.541931],[65.002777,69.298035],[64.828049,69.284149],[64.760269,69.18414300000012],[64.78777,69.142761],[64.942749,69.204712],[64.914993,69.254715],[65.067215,69.272217],[65.31999,69.196365],[65.898605,69.11026],[65.663712,69.117867],[65.687485,69.084427],[66.095535,69.035538],[66.581375,68.905823],[67.116089,68.842758],[67.039154,68.78970300000015],[67.19303900000011,68.704712],[67.63888500000013,68.57748400000013],[67.8058170000001,68.50082],[67.7061000000001,68.510544],[67.783051,68.477478],[68.159424,68.411377],[68.260544,68.334717],[68.200821,68.294708],[68.18526,68.236099],[68.2649990000001,68.187485],[68.436371,68.224991],[68.564148,68.310532],[68.570267,68.376083],[68.897766,68.607483],[69.11137,68.866379],[68.943863,68.898041],[69.220261,68.957214],[69.021652,68.964157],[68.78498800000011,68.91081200000013],[68.45971700000013,68.978043],[68.357758,69.079712],[68.047485,69.28137200000015],[68.021378,69.343597],[68.09943,69.401093],[68.10165400000011,69.54665],[68.007217,69.5186],[68.03804,69.488876],[67.948029,69.48665],[67.613037,69.59166],[67.000549,69.6997070000001],[66.934143,69.63136],[66.95027,69.52887],[66.79915,69.57415800000012],[66.76721,69.757217],[66.873306,70.001099],[66.983047,70.054703],[67.00471500000015,70.024155],[66.963043,69.994431],[66.99192800000014,69.958328],[67.175537,69.98776],[67.248596,70.01555],[67.327774,70.09749],[67.255829,70.188034],[67.2649990000001,70.14665200000013],[67.238312,70.1411],[67.08804,70.217209],[67.25943000000012,70.46138],[67.208878,70.526657],[67.339706,70.7502750000001],[67.25861,70.814697],[67.10720800000013,70.835266],[66.6888730000001,70.760544],[66.61581400000011,70.88749700000011],[66.76416,70.947205],[66.89166300000011,71.077484],[66.821381,71.101929],[66.739426,71.046936],[66.77388000000013,71.017487],[66.71887200000013,70.99971],[66.620255,71.019714],[66.62303,71.051651],[66.81137100000012,71.16387900000012],[66.91554300000013,71.292755],[67.36692800000014,71.35859700000015],[67.968872,71.54054],[68.46554600000013,71.81889300000012],[68.65304600000012,72.07249],[68.976654,72.69582],[69.224991,72.79443400000014],[69.310532,72.879425],[69.302475,72.922485],[69.333878,72.948868],[69.53054800000012,72.9747],[69.79553,72.95832800000011],[69.7836,72.934143],[69.548599,72.901657],[69.648331,72.87442],[71.560532,72.90971400000012],[72.00638,72.832214],[71.815811,72.809982],[71.880264,72.796646],[72.07222,72.82499700000011],[72.833328,72.7086],[72.81109600000013,72.64971900000012],[72.723602,72.59972],[72.79193,72.469986],[72.798874,72.389984],[72.881927,72.281372],[72.736649,72.195816],[72.568054,72.00972],[72.51889,71.911194],[72.334442,71.852829],[72.313889,71.81474300000013],[72.361923,71.710297],[72.19247,71.600266],[71.85054,71.531372],[71.802475,71.47249],[72.056366,71.3022],[72.65109300000012,71.120255],[72.67747,71.089981],[72.61554,71.018875],[72.840546,70.865265],[72.6808170000001,70.6147],[72.773041,70.536926],[72.778046,70.418045],[72.54054300000013,70.35054],[72.42469800000015,70.270264],[72.614426,70.17776500000014],[72.568054,70.090271],[72.48553500000013,70.042755],[72.68637100000012,69.849716],[72.65803,69.754166],[72.55637,69.686371],[72.529709,69.628311],[72.622208,69.5186],[72.63554,69.43858300000011],[72.58027600000014,69.25665300000014],[72.505264,69.21554600000013],[72.47276,69.150269],[72.553864,68.976654],[72.720261,68.84387200000015],[73.513321,68.586929],[73.62970000000013,68.520538],[73.64804100000015,68.457764],[73.608597,68.4272],[73.606369,68.48276],[73.527206,68.475266],[73.449417,68.435257],[73.4086,68.363876],[73.09804,68.216934],[73.07276900000011,68.088882],[73.19275,67.986099],[73.207214,67.85942100000011],[73.083328,67.82805],[73.04082,67.724152],[72.89137,67.685806],[72.85998500000011,67.635818],[72.55609,67.601654],[72.542755,67.51805],[72.39498900000012,67.47026],[72.45221,67.396378],[72.399429,67.32361],[72.040543,67.296936],[72.038879,67.262207],[72.2019350000001,67.22971],[72.231094,67.160538],[72.1888730000001,67.148331],[72.114426,67.194427],[72.01416,67.11026],[72.004715,67.05970800000011],[71.77443,66.945526],[71.561096,66.928864],[71.410263,66.96693],[71.404709,66.926926],[71.51582300000013,66.75972],[71.598038,66.71944],[71.55859,66.645264],[71.066666,66.626923],[71.04166,66.606094],[71.07499700000011,66.59082],[70.982483,66.534149],[70.694977,66.508041],[70.327484,66.5811],[70.291367,66.62387100000012],[70.3169400000001,66.649994],[70.60054000000014,66.6888730000001],[70.74109,66.73831200000012],[70.73082000000011,66.757217],[70.56972,66.752777],[70.511108,66.69386],[70.322495,66.6772],[70.149994,66.710541],[69.89194,66.83194],[69.61887,66.788589],[69.389709,66.82748400000014],[68.967758,66.804153],[69.112198,66.758606],[69.11747700000012,66.6041560000001],[69.386108,66.50749200000013],[69.742752,66.474426],[70.375809,66.33166],[70.973877,66.36692800000014],[71.46192900000011,66.347214],[71.71582000000012,66.30720500000012],[71.83055100000013,66.231094],[71.936371,66.24832200000014],[72,66.219437],[72.350266,66.30165],[72.395538,66.41304],[72.354706,66.53276],[72.47415200000012,66.6041560000001],[72.943039,66.6561],[73.003601,66.735535],[73.51555,66.82859800000011],[73.61554,66.90887],[73.847214,66.981094],[73.918594,67.069443],[73.95166000000012,67.21748400000013],[73.90887,67.298035],[74.083878,67.424698],[74.739975,67.69165],[74.793869,67.788589],[74.820831,67.93637],[74.73166,68.14305100000013],[74.607208,68.246643],[74.33276,68.380264],[74.4602660000001,68.50555400000013],[74.46582000000012,68.54443400000014],[74.41229,68.61212],[74.443588,68.68275],[74.640549,68.76915],[76.09943,68.97248800000011],[76.59166,68.96832300000011],[76.70027,68.86998000000011],[76.62082,68.804977],[76.6413730000001,68.767761],[77.32443200000012,68.51694],[77.303589,68.37886],[77.162201,68.2949830000001],[77.18915,68.26332],[77.361099,68.231659],[77.18997200000013,67.987762],[77.303589,67.902771],[77.217484,67.824997],[77.146652,67.850266],[77.08581500000014,67.82998700000013],[77.09193,67.778595],[77.78554,67.5619200000001],[78.05193,67.540543],[78.246643,67.5816650000001],[78.488876,67.551086],[78.73082000000011,67.591095],[79.04484600000012,67.567154],[78.848877,67.648331],[78.71582000000012,67.648041],[78.587204,67.60054],[78.464432,67.630539],[78.59109500000011,67.628586],[78.619431,67.646652],[78.597763,67.66527],[78.459152,67.684982],[78.103592,67.65721100000013],[77.931931,67.726654],[77.60137900000012,67.72581500000013],[77.462494,67.7622070000001],[77.471649,67.989151],[77.503052,68.09137],[77.558594,68.143875],[77.72554,68.218872],[78.174698,68.2649990000001],[78.088882,68.358322],[77.961929,68.388885],[77.93637100000012,68.51361],[77.773605,68.51944000000015],[77.712769,68.61443],[77.74887100000012,68.683044],[77.6922,68.871094],[77.63499500000012,68.907761],[76.91110200000014,69.010544],[76.717484,69.132202],[76.373596,69.14749100000012],[76.037201,69.2372],[75.4833220000001,69.253601],[75.14387,69.156647],[75.142487,69.118866],[74.74942,69.078873],[74.336655,69.14194],[73.92553700000013,69.07361],[73.74942,69.168045],[73.87915,69.35582000000011],[73.89444,69.425812],[73.77026400000011,69.55359],[73.544434,69.69999700000011],[73.51638800000012,69.755554],[73.6499940000001,69.876373],[73.763046,70.06749],[73.75888,70.10498],[73.69136,70.14415],[74.00694,70.299423],[74.063873,70.370255],[74.309982,70.511108],[74.340271,70.574432],[74.314987,70.6736],[73.934143,70.842209],[73.8977660000001,70.964157],[73.72608900000012,71.045532],[73.52665700000011,71.263046],[73.015274,71.421646],[73.50331100000011,71.66276600000013],[73.52525300000013,71.713318],[73.466919,71.767212],[73.53219600000011,71.81915300000014],[74.492935,71.994308],[74.958038,72.10942],[75.091095,72.23637],[75.108597,72.397766],[75.0410920000001,72.62580900000012],[74.81469700000014,72.7747],[74.82998700000012,72.834152],[75.04803500000014,72.87859],[75.36026,72.80525],[75.5310970000001,72.741928],[75.377472,72.682755],[75.71582,72.556641],[75.5747070000001,72.53943],[75.551086,72.489426],[75.66859,72.319992],[75.76277,72.299988],[75.746368,72.2686],[75.5874940000001,72.209427],[75.418869,72.03166],[75.43969700000014,71.98277],[75.284149,71.95167500000014],[75.223602,71.84445],[75.21471,71.78833],[75.263321,71.74026500000014],[75.50166300000012,71.650269],[75.498596,71.52388],[75.2397,71.451385],[75.241928,71.37608300000011],[75.449707,71.30832],[75.7916560000001,71.256104],[76.8436,71.18858300000011],[76.915817,71.069717],[76.961929,71.11026],[76.92997700000012,71.15914900000013],[76.99498,71.181656],[77.689697,71.155823],[77.86192,71.107758],[77.890274,71.014999],[77.94582,70.97221400000012],[78.274155,70.937195],[78.436096,70.885818],[78.550262,70.916931],[78.956375,70.92137100000014],[79.049713,70.93969700000014],[79.112762,71.002487],[78.883606,71.005264],[78.89082,70.969147],[78.742477,70.932755],[78.549713,70.955551],[78.484711,70.991928],[78.529434,71.034714],[78.515549,71.104706],[78.34833,71.093872],[78.50000000000011,71.041092],[78.44331,71.035538],[78.23137,71.109711],[78.29332,71.166382],[78.302475,71.247208],[77.931091,71.25555400000013],[77.90694,71.317215],[78.003326,71.34721400000012],[77.992203,71.371918],[77.7291560000001,71.315811],[77.753052,71.28526],[77.715271,71.27970900000014],[77.433319,71.325821],[77.511658,71.29748500000011],[77.19802900000013,71.36526500000012],[77.109985,71.42442],[76.731369,71.45999],[76.553864,71.52693],[76.2705380000001,71.571655],[76.061096,71.878311],[76.097488,71.928589],[76.395264,72.00555],[76.897766,72.051086],[77.56026,71.832214],[77.75915500000013,71.825546],[78.10474,71.876144],[78.182236,71.90477],[78.22946200000013,71.96727],[78.015823,72.0999910000001],[77.812485,72.11554],[77.48831200000012,72.062485],[77.36998,72.098877],[77.4644320000001,72.215546],[77.66249,72.186646],[77.925262,72.315811],[78.32887,72.386383],[78.500153,72.37733500000013],[78.49776,72.4019320000001],[78.53804,72.403595],[79.47971,72.36775],[80.10887100000014,72.18692],[80.8260960000001,72.086929],[80.8541560000001,72.06832900000012],[80.83859300000012,72.031372],[80.760262,72.044373],[80.790268,72.076935],[80.626648,72.049713],[81.24495,71.85434],[81.29922,71.7736210000001],[81.653046,71.70804],[82.138214,71.700378],[82.813171,71.77917500000012],[82.986572,71.728928],[83.261642,71.721085],[83.314972,71.664978],[83.169128,71.573486],[83.030502,71.55478],[82.986618,71.449951],[82.85772700000012,71.3930820000001],[82.257492,71.25972],[82.355255,71.079437],[82.194702,71.001099],[82.414429,70.7711],[82.20999,70.67915],[82.0811,70.567764],[82.231934,70.28054800000012],[82.3461,70.198593],[82.160263,70.57748400000014],[82.442749,70.60942100000011],[82.53137200000015,70.771652],[82.486923,70.786926],[82.4888760000001,70.818054],[82.66388,70.947205],[82.75638,70.962494],[83.11886600000014,70.88749700000011],[83.1486,70.837494],[83.131927,70.77554],[82.993866,70.56526200000013],[83.0558170000001,70.49748],[83.016098,70.423035],[82.65914900000013,70.25526400000011],[82.63916,70.174423],[83.106934,70.068604],[83.179794,70.085632],[83.193588,70.123306],[83.130539,70.2080380000001],[82.95166,70.320541],[83.334991,70.310806],[83.53166,70.339157],[83.745529,70.459991],[83.722763,70.585815],[83.59665,70.70332300000013],[83.477203,70.91137700000013],[83.148331,71.2361],[83.368591,71.356644],[83.377762,71.4624940000001],[83.57721,71.513321],[83.6308140000001,71.56526200000013],[83.62859,71.623871],[83.37886,71.827484],[83.146622,71.876389],[82.73308,71.88698],[82.47082,72.015274],[82.182205,72.09137],[82.299149,72.12526],[82.309982,72.18719],[82.19247400000012,72.283051],[81.213882,72.354706],[80.721375,72.526093],[80.70915200000013,72.5535890000001],[80.8316650000001,72.615814],[80.67886,72.64749100000012],[80.628311,72.727203],[80.80693100000013,72.843597],[80.837204,72.916931],[80.81721,72.966095],[80.68915,73.058594],[80.43609600000013,73.094986],[80.590271,73.111099],[80.566086,73.136658],[80.231094,73.1736],[80.57249500000012,73.220535],[80.54248,73.270264],[80.24859600000013,73.31415],[80.35304300000011,73.3766480000001],[80.5872,73.431656],[80.6772,73.498032],[80.523315,73.481369],[80.509995,73.571655],[81.76915,73.650543],[83.45277,73.656097],[84.753601,73.75888],[85.224426,73.697205],[85.48166,73.719437],[85.57083,73.81137100000012],[85.860535,73.821381],[86.0247,73.862198],[86.786926,73.900818],[87.08692900000011,73.859421],[87.10054,73.83971],[87.012497,73.777771],[86.35331700000012,73.61080900000013],[86.10887,73.585541],[85.77832000000012,73.459717],[85.79498,73.3583220000001],[85.8336,73.32638500000013],[86.2247,73.25915500000013],[86.308594,73.183044],[86.66304,73.12109],[86.7836,72.99408],[86.773041,73.07304],[86.6297,73.160263],[86.326385,73.25444],[85.87886000000015,73.3416600000001],[85.843323,73.37442],[85.848038,73.475266],[86.27832,73.559418],[87.176926,73.61692800000014],[87.34332300000011,73.699997],[87.25027,73.6849820000001],[87.29832,73.741364],[87.633041,73.828049],[87.664993,73.89471400000014],[87.536926,73.911377],[87.530548,73.851379],[87.472214,73.82415800000012],[87.312759,73.832214],[87.204987,73.87082],[86.97464800000012,74.025818],[87.20166000000012,74.04221],[87.41970800000013,74.01054],[87.360809,74.045258],[86.85165400000011,74.074158],[86.782761,74.118317],[86.80247500000013,74.178864],[86.76054,74.20804],[86.57111,74.24914600000011],[85.951096,74.280823],[85.91165,74.35693400000014],[86.11259500000011,74.3577580000001],[86.306091,74.31666600000011],[86.270828,74.37997400000012],[86.06248,74.41804500000012],[86.455261,74.45359800000011],[86.683899,74.38751200000013],[86.9036,74.373711],[86.701385,74.316086],[86.71277,74.29721100000012],[87.13275,74.36914100000013],[87.02665700000011,74.432205],[86.787491,74.422211],[86.53804,74.510544],[86.683594,74.539703],[86.620819,74.558594],[85.789154,74.6308140000001],[85.868042,74.710541],[86.03249,74.709427],[86.11775200000011,74.746643],[86.121918,74.769714],[86.0291600000001,74.813034],[86.207489,74.81026],[86.286652,74.76138],[86.221649,74.753326],[86.34220900000014,74.699142],[86.407761,74.722763],[86.580826,74.699997],[86.6010890000001,74.659988],[86.70109600000012,74.613602],[86.91304,74.612488],[86.950546,74.680542],[86.761932,74.702774],[86.9561,74.752777],[87.078049,74.85498],[87.386658,74.943039],[87.181656,74.989975],[87.405823,75.002213],[87.592484,74.9422],[87.785812,75.022217],[86.900269,75.08332800000011],[86.923599,75.127197],[86.99498,75.151382],[87.290268,75.160538],[87.9872,75.09999],[88.304428,75.16748000000013],[88.331665,75.23414600000012],[88.56666600000011,75.32471],[89.147766,75.451935],[89.252777,75.503052],[89.38777,75.44136],[89.53387,75.44664000000012],[89.63971,75.495819],[89.90914900000013,75.518875],[89.939697,75.546371],[89.91527,75.55693100000013],[89.959717,75.571381],[90.626923,75.613312],[90.867203,75.663605],[90.978317,75.61499000000015],[91.0788730000001,75.64166],[91.619705,75.637207],[91.649719,75.66387900000012],[91.626083,75.703873],[91.709427,75.73526],[92.04776,75.722488],[93.346649,75.82998700000013],[94.161926,75.9427490000001],[93.66249,75.897217],[93.601929,75.9083250000001],[93.59721,75.9422],[93.525269,75.945251],[93.45694,75.91832],[93.483871,75.879425],[93.414703,75.87220800000011],[93.31581,75.936371],[93.308319,75.973038],[93.008881,75.934418],[93.10637,75.9041600000001],[93.04721100000012,75.88804600000014],[92.911652,75.89498900000011],[92.86526500000014,75.94832],[92.933319,76.056366],[93.049423,76.06526200000013],[93.109146,76.018875],[93.22804,76.049423],[93.11998000000011,76.08943],[93.15554800000011,76.097763],[93.43248,76.103867],[93.33194000000013,76.06192],[93.409988,76.01165800000011],[93.994141,76.053314],[93.669434,76.092209],[93.63472000000013,76.121918],[93.659988,76.123871],[94.35331700000012,76.122208],[94.471375,76.04664600000012],[94.738586,76.11080900000013],[94.538879,76.145828],[94.600815,76.15582],[95.044144,76.102768],[95.411926,76.158035],[96.197754,76.085266],[95.76971400000012,75.927765],[95.569992,75.88582],[95.743866,75.85054],[95.931366,75.94664],[96.3058170000001,75.951385],[96.342209,75.959427],[96.34693900000013,75.994141],[96.511932,76.009995],[96.636658,75.98054500000012],[96.6299740000001,75.954437],[96.435257,75.86998],[96.850815,75.92276],[97.289429,76.03943],[97.395538,76.044434],[97.197754,75.988876],[97.18359,75.92804],[97.320267,75.9327550000001],[97.33804,75.94304],[97.30748,75.959427],[97.33333,75.971375],[97.517761,75.9933170000001],[97.821381,75.979706],[97.83665,76.005554],[97.70971700000013,76.049149],[97.54609700000015,76.047485],[97.725815,76.09526],[97.90305,76.05720500000012],[98.14721700000011,76.084991],[98.217484,76.098038],[97.91527,76.121368],[98.463882,76.19109],[98.745529,76.261932],[98.81749,76.261932],[98.713318,76.199417],[99.27693,76.214157],[99.296371,76.203049],[99.226379,76.15776100000011],[99.08943,76.160538],[99.18193100000013,76.125534],[99.5747070000001,76.15554800000012],[99.601654,76.124146],[99.467209,76.0958250000001],[99.558594,76.060532],[99.64082300000013,76.08194],[99.768326,76.0311],[99.67665,75.873032],[99.61137400000013,75.832489],[99.228043,75.7622070000001],[99.094437,75.55497700000011],[99.635818,75.46582],[99.71443,75.435806],[99.758881,75.36026],[100.01249700000011,75.29526],[100.186256,75.168533],[100.19582400000013,75.20498700000013],[100.076927,75.290817],[99.79248,75.3680420000001],[99.78610200000014,75.431366],[99.823883,75.469147],[99.595825,75.484146],[99.171921,75.569992],[99.276657,75.757217],[99.60443,75.777771],[99.699997,75.850266],[99.875534,75.9041600000001],[99.9122,75.94247400000012],[99.877197,76.0916600000001],[99.80748,76.151657],[99.633881,76.19525],[99.603043,76.2686],[99.40387,76.27554],[99.242752,76.34971600000011],[99.02887,76.34860200000014],[99.01805100000013,76.39665200000013],[98.813873,76.492752],[98.91970800000013,76.51944000000015],[99.43526,76.469147],[100.38638300000012,76.47221400000012],[100.843048,76.5336],[101.099152,76.45694],[101.318047,76.481934],[101.704712,76.450821],[101.88916000000012,76.39415],[102.23359700000015,76.37719700000014],[102.19136,76.407211],[101.44693000000012,76.50499],[100.878311,76.551376],[101.060532,76.583878],[101.10164600000013,76.61053500000014],[101.135536,76.7019350000001],[101.23471100000012,76.753052],[100.964157,76.78498800000011],[100.865807,76.8336],[100.849716,76.878586],[100.92997700000012,76.94859300000013],[100.927467,76.97998],[101.21999,76.98553500000014],[101.240807,77.04332],[101.167213,77.060532],[101.187759,77.08831800000013],[101.853317,77.284424],[102.046944,77.380539],[102.285538,77.37803600000012],[102.539146,77.4952550000001],[102.85193,77.54109],[103.1055530000001,77.63192700000012],[103.258331,77.65637200000015],[103.331673,77.61859],[103.46138,77.623871],[104.071381,77.732208],[104.329437,77.720825],[104.267487,77.67581200000012]]],[[[107.63526900000011,78.166092],[107.69971,78.122208],[107.583328,78.06749],[107.43887,78.04942],[107.424698,78.08581500000014],[106.493042,78.121643],[106.49498,78.158875],[106.89694,78.17609],[107.25499000000013,78.161377],[107.429977,78.19026200000013],[107.63526900000011,78.166092]]],[[[93.750549,78.155823],[93.6160890000001,78.15914900000013],[93.519714,78.18775900000014],[93.640274,78.222763],[93.750549,78.155823]]],[[[106.761383,78.30359],[106.714996,78.25694],[106.522491,78.2769320000001],[106.465042,78.260048],[106.52777100000014,78.252777],[106.508881,78.240265],[106.24080700000013,78.19553],[105.99275,78.21415700000011],[106.02277400000014,78.259995],[106.294708,78.25943],[106.458603,78.334717],[106.761383,78.30359]]],[[[92.702209,79.071381],[92.562759,79.07499700000011],[92.182617,79.12718],[92.72554,79.07499700000011],[92.702209,79.071381]]],[[[102.972763,79.331375],[103.160812,79.31499],[102.82554600000014,79.223038],[102.691093,79.085815],[102.69304,79.034149],[102.39333,78.828598],[102.660538,78.882477],[102.9147,79.052475],[103.170532,79.06026],[103.639709,79.156937],[103.94693000000012,79.133331],[104.017761,79.114426],[104.02026,79.0452580000001],[104.071114,78.997482],[104.438583,78.96638500000012],[104.52388,78.877197],[104.656372,78.827209],[104.60165,78.771378],[104.724426,78.787491],[104.756943,78.815811],[104.724991,78.83859],[104.767761,78.847214],[104.917213,78.85416],[105.16805,78.809143],[105.414429,78.56469700000012],[105.373596,78.507767],[104.758614,78.328049],[104.64749,78.353867],[103.829712,78.261383],[102.994431,78.25],[102.71804800000011,78.15998800000011],[102.6611,78.163605],[102.670532,78.211929],[102.54248,78.22192400000012],[101.27638200000013,78.19359],[100.9111,78.10664400000013],[99.939972,77.950272],[99.491653,77.942474],[99.34137,78.01999],[99.353592,78.053589],[99.52693,78.13554],[99.522491,78.16832000000011],[99.99443100000013,78.33527],[100.152481,78.474152],[100.133041,78.499146],[100.25360100000012,78.658325],[100.378311,78.745255],[100.594437,78.794144],[101.030273,78.738876],[101.168053,78.758331],[100.873268,78.80559],[100.781937,78.857208],[100.786102,78.8986],[100.893883,78.976654],[101.08138300000012,79.0291600000001],[101.549149,78.977203],[101.62442,78.98220800000013],[100.988876,79.06109600000013],[101.02832000000011,79.12387100000012],[101.242203,79.2247],[101.55330700000013,79.25082],[101.527206,79.30803],[101.550812,79.34833],[101.808868,79.368317],[101.961113,79.29248],[101.957764,79.258606],[102.207764,79.2391510000001],[102.262772,79.25082],[102.172493,79.28054800000011],[102.13777,79.356369],[102.27916,79.42276],[102.841927,79.3830410000001],[102.972763,79.331375]]],[[[92.805542,79.382477],[92.6766510000001,79.37915],[92.582214,79.406937],[92.771927,79.439423],[92.987762,79.416931],[92.805542,79.382477]]],[[[92.467484,79.42997700000011],[92.24359,79.379974],[91.804153,79.41249],[92.05775,79.410538],[92.28442400000012,79.449417],[92.467484,79.42997700000011]]],[[[99.945816,79.40138200000013],[99.928589,79.397766],[99.85054,79.41554300000013],[99.919144,79.456375],[100.017761,79.433044],[99.945816,79.40138200000013]]],[[[91.4686,79.45471],[91.166382,79.51721],[90.78194,79.54914900000011],[91.166092,79.526932],[91.4686,79.45471]]],[[[76.23248,79.60137900000012],[76.52887,79.63721],[77.61970500000012,79.512207],[76.78082300000011,79.481094],[76.617844,79.543564],[76.170532,79.56442300000015],[76.041931,79.63472],[76.277771,79.6436000000001],[76.141373,79.633881],[76.23248,79.60137900000012]]],[[[100.010818,79.622208],[99.94275,79.5788730000001],[99.903595,79.59999],[99.9422,79.684418],[99.99721,79.696091],[100.306641,79.664703],[100.010818,79.622208]]],[[[91.651093,79.65109300000012],[91.434418,79.665817],[91.12442,79.72248800000011],[91.78776600000015,79.70999100000012],[91.858871,79.664703],[91.651093,79.65109300000012]]],[[[58.686378000000104,79.944702],[58.988045,79.89554],[58.79472,79.87248],[58.525551,79.922211],[58.27916,79.92665],[58.66221,79.978592],[58.649719,79.960266],[58.686378000000104,79.944702]]],[[[94.3077550000001,80.01694],[94.1499940000001,79.97693],[93.927475,79.968323],[93.98825,80.00978],[94.3077550000001,80.01694]]],[[[49.379158,79.9891510000001],[49.194435,79.99609],[49.1936,80.032211],[49.435265,80.002487],[49.379158,79.9891510000001]]],[[[91.176376,80.05304],[92.90776100000011,80.021927],[93.539429,79.95138500000013],[93.80859,79.888321],[93.70665,79.83831800000013],[93.006378,79.7036],[92.5547,79.65999],[91.921646,79.67330900000013],[91.915268,79.70471],[91.95166,79.714432],[92.34999,79.72777],[92.095261,79.80748000000011],[91.499146,79.810532],[91.073044,79.84860200000013],[91.06667,79.8744200000001],[91.23997,79.93414300000012],[91.178864,80.009155],[91.086655,80.0486],[90.864426,80.057205],[91.176376,80.05304]]],[[[49.5961,80.072769],[49.683052,80.03638],[49.431664,80.015274],[49.33028,80.0619200000001],[49.431381,80.092758],[49.5961,80.072769]]],[[[51.204994,80.03804],[51.50193800000011,79.931656],[51.339989,79.91527],[50.043884,79.973038],[50.571663000000115,79.983871],[50.665825,80.044708],[50.97027,80.099716],[51.204994,80.03804]]],[[[59.422218,79.920258],[59.184715,79.92804],[59.1977690000001,79.94664000000012],[58.75916,80.022766],[59.353607,80.112198],[59.84471100000013,80.06832900000012],[59.86055,79.98776],[59.422218,79.920258]]],[[[97.61499,80.16554300000013],[98.034424,80.06749],[97.6486,79.833878],[97.62387,79.77638200000013],[97.193039,79.70221],[97.719986,79.76304600000014],[97.723602,79.803314],[97.866379,79.8361],[97.881363,79.88749700000011],[97.941925,79.901657],[98.384995,79.866379],[98.580826,79.971649],[98.434708,80.00888],[98.528595,80.052475],[99.21693,80.040268],[99.50416600000011,79.941086],[99.68414300000012,79.92804],[100.015266,79.824158],[100.076103,79.7747],[99.898331,79.74054],[99.72554000000014,79.574997],[99.68470800000011,79.46693],[99.6922,79.389709],[99.746094,79.362198],[99.65914900000011,79.295822],[99.455826,79.246933],[99.187759,79.305252],[99.03526,79.290268],[99.608322,79.156647],[99.501938,79.126923],[99.8477630000001,79.088043],[99.938873,78.95332300000011],[99.475266,78.82805],[98.591095,78.808029],[98.55720500000012,78.799423],[98.602203,78.78442400000012],[98.55998,78.776093],[97.30470300000013,78.84526100000011],[96.692749,78.991653],[96.306091,78.99026500000014],[96.282211,78.992477],[96.36998,79.016098],[96.272217,79.022217],[95.66666,78.998871],[95.642212,79.0452580000001],[95.66748000000011,79.06721],[95.533051,79.10525500000011],[95.12303,79.039703],[94.77721,79.084427],[94.69999700000011,79.10915],[94.633041,79.192749],[94.324432,79.248871],[94.319992,79.39637800000014],[94.35887100000014,79.433319],[94.332489,79.465546],[94.06749,79.472214],[94.07332,79.434982],[93.988876,79.4272],[93.698868,79.4561000000001],[93.99026500000012,79.489426],[93.687195,79.5410920000001],[93.878036,79.60137900000012],[93.726089,79.594147],[93.461655,79.514435],[93.43997200000013,79.501099],[93.46388200000013,79.475815],[93.224426,79.437759],[93.116089,79.462769],[93.318604,79.49803],[92.850815,79.55386],[93.256943,79.541931],[93.6461,79.615265],[93.79914900000011,79.69165],[94.079163,79.765274],[94.6160890000001,79.81192],[94.63165,79.82666],[94.22221400000012,79.89777],[94.43220500000012,79.96609500000011],[94.93692,80.058594],[94.910538,80.0961],[95.006943,80.100266],[95.26944000000015,80.016388],[95.34332300000011,80.027206],[95.3936,80.088593],[95.580276,80.111374],[96.17637600000012,80.088043],[96.914154,80.12719700000014],[97.142487,80.16887],[97.61499,80.16554300000013]]],[[[60.26166500000011,80.163315],[59.9436,80.175812],[59.89777400000014,80.19165],[60.098877,80.203873],[60.28943600000014,80.166931],[60.26166500000011,80.163315]]],[[[50.252777,80.146378],[50.12027000000012,80.141937],[50.048332,80.081375],[50.084435,80.06581],[49.972488,80.05415],[49.532211000000125,80.152206],[49.95222,80.233597],[50.1813810000001,80.227203],[50.32944,80.189697],[50.252777,80.146378]]],[[[54.221931,80.204163],[54.16805,80.208878],[54.219711000000125,80.25000000000011],[54.15138,80.299423],[54.285271,80.330276],[54.439713,80.298599],[54.42110400000013,80.22499],[54.221931,80.204163]]],[[[55.1511,80.22026100000011],[54.857498,80.252487],[55.328606,80.344437],[55.54388,80.293869],[55.1511,80.22026100000011]]],[[[52.452492,80.32111],[52.307495,80.323883],[52.166664,80.350266],[52.299164,80.363312],[52.521378,80.330826],[52.452492,80.32111]]],[[[57.096939000000134,80.343048],[57.13249200000013,80.309708],[57.09055,80.17276],[57.139717,80.105545],[57.050545,80.074997],[56.007217,80.070267],[55.713608,80.101089],[56.043884000000105,80.191086],[55.954712,80.257217],[55.96971100000013,80.323883],[56.007217,80.335815],[56.539436,80.325821],[56.756386,80.366653],[57.096939000000134,80.343048]]],[[[53.621101,80.294983],[53.871658,80.256653],[53.72416,80.217484],[53.59054600000013,80.23719800000015],[53.49276700000013,80.1722110000001],[52.711662,80.168045],[52.332214,80.20054600000014],[52.181381,80.271927],[52.667213,80.313599],[52.697769,80.3583220000001],[52.931664,80.408875],[53.302773,80.405823],[53.3408280000001,80.39637800000014],[53.31832900000012,80.370529],[53.35083,80.354706],[53.621101,80.294983]]],[[[56.30804400000011,80.38136],[56.22332,80.371368],[55.78611000000012,80.407211],[55.87305,80.43526],[56.327774,80.388596],[56.30804400000011,80.38136]]],[[[55.366936,80.428864],[55.303879,80.387772],[55.167496,80.369431],[54.977486,80.41693],[55.286385,80.451385],[55.366936,80.428864]]],[[[54.637215,80.3936000000001],[54.45471,80.394714],[54.37027,80.405823],[54.67305,80.49054],[54.863052,80.45027],[54.830826,80.41832],[54.637215,80.3936000000001]]],[[[57.968323,80.489426],[58.800827,80.428864],[59.152489,80.380539],[59.27638200000012,80.33415200000013],[58.371658,80.31387],[58.07583,80.248322],[58.479156,80.22415],[58.43582200000015,80.16859],[58.01944,80.20027],[57.902489,80.16859],[58.017494,80.104156],[57.7186,80.09833],[57.271935,80.1660920000001],[57.23888,80.336105],[57.2686,80.392487],[56.94638,80.474426],[57.968323,80.489426]]],[[[55.015831,80.556931],[55.16304800000012,80.494705],[54.87137600000011,80.4711],[54.64111,80.52805],[55.015831,80.556931]]],[[[54.30166,80.41914400000013],[54.229431,80.41914400000013],[53.77999,80.469437],[53.96777,80.523041],[53.85332,80.55165],[53.839432,80.580551],[53.968323,80.608597],[54.274712,80.585541],[54.31277,80.576096],[54.133049,80.551086],[54.411377,80.535812],[54.45888500000012,80.49803],[54.45888500000012,80.46804800000012],[54.30166,80.41914400000013]]],[[[58.010551,80.641098],[58.03138,80.607208],[57.870827,80.553314],[57.489433,80.548874],[57.213051,80.603592],[57.41610000000014,80.641937],[58.010551,80.641098]]],[[[58.85527,80.640274],[58.806381,80.58276],[58.537773,80.60582],[58.60027,80.627762],[58.85527,80.640274]]],[[[53.442215,80.48498500000011],[53.214447,80.515747],[53.214439,80.55748],[53.30110200000013,80.598328],[53.10527000000013,80.61998000000011],[53.187492,80.65694],[53.398605,80.626648],[53.545547,80.52832],[53.442215,80.48498500000011]]],[[[56.778877,80.735809],[56.948601,80.692749],[56.910271,80.657486],[56.439987,80.623871],[55.64305100000013,80.6499940000001],[55.59972,80.659149],[55.708046,80.694427],[55.432495,80.708328],[55.783882,80.757767],[56.476936,80.778595],[56.778877,80.735809]]],[[[47.897774,80.80331],[48.284721,80.825821],[48.530273,80.789978],[48.653877,80.750275],[48.453606,80.72053],[48.766388,80.646378],[48.72304500000013,80.610535],[48.06388,80.659424],[47.75166300000012,80.766388],[47.58027600000014,80.74720800000011],[47.303322,80.657486],[47.443047,80.60664400000013],[47.42360700000012,80.588882],[47.16666,80.6258090000001],[47.005829,80.55165],[46.6486,80.55637],[46.682213,80.51748700000013],[46.507217,80.51471],[46.517494,80.46582],[46.08416000000011,80.4369200000001],[46.01998900000012,80.481934],[46.083603,80.551086],[46.03638500000011,80.57222],[45.494438,80.51944],[45.319717,80.579987],[44.857498000000135,80.616379],[46.51777,80.719437],[46.398331,80.731934],[46.43693500000012,80.73915],[46.99943500000012,80.753326],[47.19471,80.796097],[47.09166,80.825],[47.19860100000011,80.840271],[47.501938,80.85554500000012],[47.897774,80.80331]]],[[[62.218323,80.81109600000012],[62.276939,80.756104],[62.038048,80.6624910000001],[62.141663,80.626648],[61.704163,80.593048],[61.345268,80.463608],[61.066101,80.403595],[60.249161,80.494431],[59.94554,80.438034],[59.625824,80.42499],[59.243881,80.52777100000014],[59.372215,80.558319],[59.258331000000105,80.587494],[59.22082,80.64276100000012],[59.280273,80.696091],[59.54805,80.798325],[59.875267,80.842484],[60.2011030000001,80.843597],[60.258331000000105,80.828873],[59.965,80.80415],[60.35249,80.798874],[61.851936000000144,80.886108],[62.089157,80.874695],[62.218323,80.81109600000012]]],[[[55.44999700000011,80.851379],[55.982765,80.7958220000001],[54.8411,80.71971],[54.666382,80.73359700000015],[54.693047,80.771103],[54.641663,80.779709],[54.180824,80.7705380000001],[53.97554800000011,80.81749],[54.08999,80.85054],[54.46471400000012,80.844711],[55.05555,80.8936],[55.44999700000011,80.851379]]],[[[58.98666,80.79166],[58.433052,80.74582],[57.816383,80.805817],[58.18499,80.870255],[58.75666,80.8961],[58.976379,80.860809],[59.025269,80.822495],[58.98666,80.79166]]],[[[50.133049,80.846649],[50.8461,80.916931],[51.04361,80.8461],[50.46971100000013,80.803864],[50.54416,80.7861],[50.247215,80.746643],[50.37416,80.711105],[50.641937,80.76304600000014],[51.267212,80.785263],[51.74694,80.712204],[51.728874,80.68054200000012],[51.500549,80.640823],[51.18110700000011,80.621094],[50.921661,80.531937],[50.19804,80.522491],[49.69499,80.481659],[49.673325,80.476379],[49.803047,80.4497070000001],[49.831665,80.4086],[49.603325,80.36415],[48.809715,80.37637300000011],[48.62276500000013,80.300262],[48.91888,80.27998],[49.11305,80.18275],[48.92083,80.145264],[48.495827,80.198029],[48.54305,80.139435],[48.374161,80.087204],[48.162766,80.13443000000012],[47.616104,80.070541],[47.59193,80.08082600000012],[47.63444,80.114426],[47.77499,80.174149],[48.0825,80.19971],[47.843605,80.20776400000011],[47.96583,80.233597],[47.924164,80.24247700000011],[47.486107,80.23637],[47.11416,80.16415],[46.91166,80.183868],[46.886658000000125,80.194138],[46.90277,80.227203],[46.616386,80.29081700000012],[47.04055000000011,80.36998],[47.31138,80.308594],[47.977211,80.301086],[48.183876,80.331375],[47.66944100000012,80.367477],[47.6188810000001,80.40081800000011],[48.234718,80.42330900000012],[48.12221,80.46748],[47.380272000000105,80.450546],[47.835548,80.523315],[48.183327,80.52638200000011],[48.394440000000145,80.5663760000001],[48.787773,80.491653],[48.912491,80.525543],[49.19221,80.521378],[49.2291560000001,80.531937],[49.175552,80.5522],[49.40998800000011,80.605545],[49.287216,80.63916],[49.6586,80.640549],[49.68138,80.71748400000013],[49.204163,80.68692],[49.3361,80.731934],[48.954163,80.731369],[49.116936,80.788879],[49.619987,80.838882],[49.81415600000014,80.89109800000011],[50.25083,80.92637600000012],[50.44138,80.90387],[49.99749,80.858597],[50.133049,80.846649]]],[[[79.977203,80.952484],[80.437759,80.92637600000012],[80.409714,80.87915],[80.3169400000001,80.85525500000011],[79.889984,80.82026700000011],[79.173035,80.80664100000011],[78.9727630000001,80.8374940000001],[79.21777,80.954681],[79.708603,80.979431],[79.977203,80.952484]]],[[[58.533333,80.95305],[58.27777100000014,80.951096],[57.83416000000012,81.0452580000001],[58.051102,81.106934],[58.36916,81.088882],[58.69887500000011,81.025543],[58.533333,80.95305]]],[[[58.75804900000014,81.073318],[58.564713,81.074432],[58.515274,81.104431],[58.808044,81.097488],[58.75804900000014,81.073318]]],[[[56.24249,81.10109],[56.67193600000013,81.105545],[57.48666,81.04637100000014],[57.770271,80.966095],[58.278603,80.91971],[57.736656,80.8461],[57.20166,80.90416],[57.22387700000013,80.940536],[56.93832400000014,80.96443],[56.786659,81.024155],[56.096382,81.089157],[56.15527,81.118317],[56.24249,81.10109]]],[[[54.749435,81.10971],[55.522491,81.007217],[56.12860100000012,81.034424],[56.625267,80.973877],[56.64444,80.939697],[56.85583,80.892761],[57.50833100000011,80.839157],[57.720825000000104,80.79248000000011],[57.541382,80.73997500000013],[57.017769,80.694427],[56.63166000000012,80.80748],[55.808884,80.8522],[55.761108,80.884995],[55.403877,80.921371],[55.372765,80.937195],[55.40054,80.95665],[55.362213,80.966095],[54.984436,80.94971],[54.812767,81.003326],[54.418327,81.006104],[54.609161,81.110535],[54.749435,81.10971]]],[[[60.985268,80.9160920000001],[60.399162,80.935806],[60.024994,80.99165],[60.756386,81.100815],[61.65416,81.110809],[61.60804700000011,81.03554],[60.985268,80.9160920000001]]],[[[58.445267,81.114151],[58.2061,81.12025],[58.149437,81.12886],[58.40665400000012,81.152771],[58.648605,81.13499500000012],[58.445267,81.114151]]],[[[50.597214,81.046097],[50.410271,81.00943],[50.373878,81.018875],[50.476379000000115,81.063034],[50.347488,81.09027100000014],[50.3647160000001,81.118042],[50.54860700000011,81.16415400000011],[50.817497,81.161377],[50.98333000000014,81.10054],[50.597214,81.046097]]],[[[65.45248400000014,81.027771],[65.470261,80.92804],[65.444702,80.91581700000012],[65.00776700000011,80.8077550000001],[64.30304,80.72998],[63.141106,80.681931],[62.504166,80.818329],[63.11610400000012,80.96388200000013],[64.094711,80.9897],[64.196365,81.026657],[64.216095,81.0558170000001],[64.118042,81.09248400000013],[64.233597,81.153595],[64.483597,81.191086],[64.820831,81.190536],[65.21693,81.13804600000014],[65.45248400000014,81.027771]]],[[[59.766388,81.170258],[59.496941,81.17331],[59.010826,81.207214],[59.64361,81.211655],[59.84471100000013,81.17997700000012],[59.766388,81.170258]]],[[[91.2502750000001,81.063034],[90.069443,81.092758],[89.959427,81.107208],[89.8936,81.16859],[90.132751,81.21693],[90.90387,81.227203],[91.371918,81.20444],[91.57721,81.143051],[91.2502750000001,81.063034]]],[[[57.564995,81.12525900000014],[57.377487,81.12442],[56.994713,81.16554300000011],[57.733047,81.232208],[58.080551,81.209717],[57.564995,81.12525900000014]]],[[[95.9586,81.21721],[96.276657,81.154709],[96.74359,80.94971],[97.707764,80.82026700000011],[97.96944,80.71555],[97.753601,80.676376],[97.12915,80.66276600000015],[97.01944000000013,80.521378],[97.149155,80.481934],[97.21192900000011,80.415543],[97.185257,80.379425],[97.20583,80.347488],[97.426376,80.310806],[97.15887,80.233597],[95.964157,80.21360800000014],[95.073044,80.136383],[94.80970800000011,80.13998400000014],[93.753052,79.995819],[93.292206,80.031372],[92.99054,80.10331700000012],[92.62109,80.14583],[92.061646,80.170258],[92.25305200000014,80.19497700000011],[92.88693,80.16887],[92.255829,80.233047],[92.10637,80.284714],[92.819153,80.3022],[93.318878,80.27249100000012],[93.246643,80.305542],[92.849716,80.320831],[91.568604,80.282761],[91.42137100000014,80.307755],[91.70416300000011,80.388596],[92.623871,80.38499500000012],[91.889435,80.457764],[92.30053700000012,80.506653],[92.765549,80.513321],[92.81694,80.5788730000001],[92.778595,80.602478],[92.82805,80.64915],[93.325546,80.805817],[92.91110200000013,80.761108],[92.48749,80.767487],[92.686646,80.840546],[92.694138,80.88275],[93.16832000000011,80.936096],[93.068604,80.99443],[94.744705,81.1160890000001],[95.138596,81.209152],[95.54748500000011,81.2177580000001],[95.034988,81.24275200000011],[95.12221,81.270828],[95.699417,81.29027],[95.948318,81.24332],[95.9586,81.21721]]],[[[60.63888500000012,81.272217],[60.37749,81.244141],[59.722214,81.283325],[60.110275,81.305252],[60.63888500000012,81.272217]]],[[[54.29361,81.33332800000011],[54.421936,81.270264],[54.29694400000011,81.27304100000015],[54.114716,81.34721400000012],[54.29361,81.33332800000011]]],[[[57.458046,81.313599],[57.649994,81.327209],[57.902771,81.29027],[57.109993,81.253601],[56.48305,81.162766],[56.2686,81.22331200000013],[55.585266,81.19664],[55.556335000000104,81.219162],[55.610275,81.27165200000013],[55.431664,81.27165200000013],[55.4661,81.31972],[55.85916,81.32083100000011],[56.60193600000014,81.257217],[56.4436,81.29582],[56.332771,81.376083],[56.43943000000012,81.386658],[57.024162,81.376373],[57.458046,81.313599]]],[[[59.053322,81.28498800000011],[58.641106,81.30276500000014],[58.46194,81.338593],[58.954994,81.404709],[59.29277,81.365814],[59.38166000000012,81.324158],[59.053322,81.28498800000011]]],[[[57.79666,81.529984],[57.87221,81.487488],[58.376938,81.471375],[58.572495,81.41192600000011],[58.080551,81.366379],[57.44138,81.431656],[56.74137900000011,81.44859300000013],[56.969711,81.524155],[57.823608,81.548599],[57.79666,81.529984]]],[[[62.08083,81.544144],[61.892220000000115,81.54999],[61.65443,81.603043],[62.203606,81.564987],[62.08083,81.544144]]],[[[58.490829,81.558868],[58.420273,81.558868],[58.22665,81.58137],[58.3394320000001,81.6111],[58.719711,81.59971600000011],[58.490829,81.558868]]],[[[62.793327,81.7086],[62.764717,81.703049],[63.463051,81.71388200000013],[63.802773,81.65332000000012],[63.470825,81.58248900000011],[62.726379,81.61026],[62.104164,81.67248500000011],[62.38888500000013,81.707489],[62.793327,81.7086]]],[[[59.287498,81.74275],[58.62165800000013,81.73803700000013],[58.061378000000104,81.68776],[57.88888500000013,81.70694],[57.93832400000014,81.796646],[58.043610000000115,81.81330900000012],[59.164993,81.851929],[59.437767000000115,81.816666],[59.37249,81.75833100000011],[59.287498,81.74275]]]]}},{"type":"Feature","properties":{"FIPS":"RW","ISO2":"RW","ISO3":"RWA","UN":646,"NAME":"Rwanda","AREA":2467,"POP2005":9233793,"REGION":2,"SUBREGION":14,"LON":29.917,"LAT":-1.998},"geometry":{"type":"Polygon","coordinates":[[[29.952221,-2.309445],[29.907497,-2.693056],[29.85083,-2.759722],[29.736385,-2.803611],[29.630831,-2.781113],[29.533607,-2.826111],[29.443892,-2.795836],[29.367222,-2.825],[29.328888,-2.653611],[29.140553,-2.589167],[29.058887,-2.604722],[29.024441,-2.744722],[28.902222,-2.66],[28.855553,-2.531945],[28.881107,-2.373056],[29.114998,-2.248056],[29.170555,-2.100278],[29.129997,-1.849445],[29.361111,-1.510278],[29.45639,-1.504167],[29.577774,-1.391111],[29.829166,-1.319167],[29.883331,-1.367778],[29.907497,-1.464167],[29.974998,-1.464445],[30.27972,-1.214445],[30.359997,-1.06],[30.477219,-1.058889],[30.453331,-1.095556],[30.469444,-1.158334],[30.561665,-1.326945],[30.739166,-1.436944],[30.748886,-1.520556],[30.830936,-1.6549],[30.808331,-1.929445],[30.894444,-2.083056],[30.8475,-2.1925],[30.843887,-2.330556],[30.782219,-2.380556],[30.699718,-2.3475],[30.567219,-2.400834],[30.386665,-2.298056],[30.15361,-2.430556],[29.952221,-2.309445]]]}},{"type":"Feature","properties":{"FIPS":"SA","ISO2":"SA","ISO3":"SAU","UN":682,"NAME":"Saudi Arabia","AREA":214969,"POP2005":2361236,"REGION":142,"SUBREGION":145,"LON":44.585,"LAT":24.023},"geometry":{"type":"MultiPolygon","coordinates":[[[[41.957771,16.708885],[42.07471,16.709721],[42.01416,16.74305],[42.041939,16.80555],[42.0774990000001,16.80916600000012],[42.142494,16.71583],[42.17999,16.56694],[42.082771,16.609165000000132],[42.110275,16.639164],[42.085831,16.663887000000102],[41.961937,16.642776],[41.838608,16.71889],[41.77055400000012,16.77722200000011],[41.75361,16.87611],[41.957771,16.708885]]],[[[41.986664000000125,16.75333],[41.88361,16.79777],[41.837219,16.86861],[41.931389,16.94833],[41.845551,17.00916300000011],[41.941383,16.97416],[41.986664000000125,16.75333]]],[[[37.08055100000012,24.959164],[37.035828,24.963055],[37.04166,24.996944],[37.05082700000014,24.999443],[37.08055100000012,24.959164]]],[[[35.75471,27.094719],[35.757774,27.07694],[35.72639,27.12861],[35.747215,27.108608000000114],[35.75471,27.094719]]],[[[49.53720900000013,27.36360500000012],[49.638611,27.316383],[49.520554,27.342216],[49.45221,27.285828],[49.466385000000116,27.331387],[49.53720900000013,27.36360500000012]]],[[[34.5936,27.90916],[34.5,27.941944],[34.492218,27.996109],[34.546661,27.998608],[34.615829,27.92639],[34.5936,27.90916]]],[[[44.721661,29.19833000000011],[46.42667,29.061661],[46.546944,29.104198],[47.459991000000116,28.99944],[47.57332,28.777222],[47.602768,28.634995000000117],[47.68888,28.538883],[48.420273,28.545277],[48.50054200000011,28.497498],[48.519722000000115,28.328888],[48.648888,28.040276],[48.875832,27.838882000000126],[48.85082200000011,27.726105],[48.853325,27.810272],[48.79776800000013,27.804722],[48.78860500000013,27.744442000000106],[48.838875000000144,27.619717],[48.904442,27.593884000000116],[48.961937,27.624718000000144],[49.07665300000013,27.539719],[49.246101,27.54055],[49.30777,27.442219],[49.17276800000013,27.459438],[49.123322,27.435272],[49.24749,27.340549000000124],[49.408875,27.12722],[49.520554,27.186665],[49.66832,26.97555],[49.87027,26.85749],[49.952988,26.851185],[50.159164,26.65667],[49.994987,26.74555],[50.00000000000011,26.567776],[50.042221,26.47472],[50.17749800000013,26.420277],[50.219444000000124,26.300278],[50.21083,26.18639],[50.15583,26.101109000000122],[50.116943,26.090553],[50.060829,26.181389],[50.01861,26.193054],[49.978325,26.131386],[49.993889,26.02],[50.107498000000135,25.921108000000117],[50.13444,25.82],[50.252495,25.67361],[50.25833,25.629997],[50.231667,25.681664000000126],[50.138054,25.72610900000012],[50.149994,25.696663],[50.36722,25.45611],[50.45277,25.44833],[50.482773,25.41389],[50.55916600000012,25.048885],[50.606667,25.042774],[50.727776,24.874996],[50.770828,24.721386],[50.830956,24.749966],[50.97666,24.57611100000014],[51.111366,24.55604],[51.215164,24.620888],[51.309715,24.600555],[51.304993,24.509998],[51.40749,24.62166600000012],[51.481941,24.590832],[51.4927750000001,24.571941],[51.314163,24.41944],[51.277496,24.30611],[51.344994,24.289444],[51.44166600000011,24.31555200000014],[51.543327,24.25194],[51.583611000000126,24.25972],[51.583328,24.11666],[52.58333,22.93889000000013],[55.141659,22.633329],[55.199165,22.699718],[55.66611,21.999722],[55,20],[51.99929,18.99934400000012],[48.766388,18.266388],[46.333054,15.61694],[46.333328,16.666664],[44.467499,17.41194200000012],[44.18527200000011,17.40916],[44.0897220000001,17.346664],[43.938889000000124,17.305553],[43.755272,17.353611],[43.625832000000116,17.478886],[43.510826,17.52277800000013],[43.437492,17.525555],[43.309441,17.45722200000011],[43.1919400000001,17.34222],[43.122772,16.926388],[43.20611,16.67222],[43.098053,16.676941],[43.063606,16.54555],[42.91861,16.42305],[42.78968,16.377502],[42.79277,16.458885],[42.72138,16.56166],[42.738609,16.66917],[42.64583,16.8102760000001],[42.539162,16.874996],[42.54805,17.00333000000012],[42.40833,17.121387],[42.365273,17.110554],[42.37055,17.04],[42.306107,17.449718],[42.093887,17.649719],[41.88027,17.811108],[41.791107,17.831944],[41.67889,17.949444],[41.459999,18.32111],[41.43694,18.467499],[41.205276,18.694721],[41.250549,18.83111],[41.172493,18.86749600000013],[41.13528,18.94083000000012],[41.17443800000012,19.07222],[41.059166,19.143330000000105],[40.956108,19.452221],[40.766663,19.602219],[40.802773,19.659164],[40.759995,19.760277],[40.72805,19.791943],[40.64444,19.789165],[40.511383,19.97416],[40.27333,20.112499000000128],[40.099442000000124,20.270832],[39.879997,20.287777],[39.66249800000014,20.436108000000104],[39.486382,20.71639],[39.429161,20.760277],[39.41693900000012,20.806110000000103],[39.45555100000013,20.79389],[39.449165,20.82222],[39.348328,20.869164],[39.17694100000011,21.09916],[39.10583,21.28],[39.17027,21.40416],[39.16333,21.500832],[38.99305,21.836941],[39.03083,22.21472200000011],[39.10527,22.37722],[39.0627750000001,22.583332],[38.84666,22.925278],[38.888329,22.91305],[38.91305,22.84972],[38.961388,22.868332000000123],[38.706383,23.244999],[38.674553,23.42266],[38.54833,23.531109],[38.452774,23.7825],[38.13666,24.040554],[37.68083200000012,24.29722],[37.622772,24.284164],[37.626106,24.251663],[37.531662,24.274441000000138],[37.441666,24.371387],[37.449997,24.454166],[37.15361000000013,24.82861],[37.25888800000013,24.874996],[37.27861,24.97583],[37.23555,25.182499],[37.09833,25.331944000000135],[37.08055100000012,25.431664],[36.932495,25.645],[36.81305,25.75555400000013],[36.79083,25.755276],[36.800278,25.71694200000013],[36.718887,25.7525],[36.65333,25.861664],[36.70805400000012,25.963886],[36.69778,26.021111000000133],[36.499443,26.123608000000104],[36.214996,26.64167],[36.099998,26.74472],[36.02861,26.901386],[35.821663,27.095554],[35.79972,27.209999],[35.56582600000013,27.443054],[35.49555,27.633053],[35.160553,28.056664000000122],[35.056107,28.11278],[34.845276,28.071388000000127],[34.70555,28.139164],[34.648888,28.093609],[34.6311040000001,28.023888],[34.571663000000115,28.097221000000104],[34.637772,28.175278],[34.8077770000001,28.53639],[34.791382,28.6575],[34.88333100000011,29.13583],[34.961388,29.36083],[36.07,29.188889],[36.500549,29.50278],[36.74360700000011,29.86472],[37.502777,30.00222],[37.667496,30.336388],[38.001389,30.504166],[37.00527,31.505554],[39.004997,32.00555400000013],[39.196743,32.15494200000012],[40.41333,31.94833000000011],[41.439999,31.373329000000123],[42.085,31.11166],[44.721661,29.19833000000011]]]]}},{"type":"Feature","properties":{"FIPS":"SC","ISO2":"KN","ISO3":"KNA","UN":659,"NAME":"Saint Kitts and Nevis","AREA":36,"POP2005":49138,"REGION":19,"SUBREGION":29,"LON":-62.769,"LAT":17.34},"geometry":{"type":"MultiPolygon","coordinates":[[[[-62.55278,17.09417],[-62.62195,17.111385],[-62.59972,17.19722],[-62.5425,17.18222],[-62.55278,17.09417]]],[[[-62.701668,17.336941],[-62.62528,17.22083],[-62.65389,17.208885],[-62.6925,17.27833],[-62.793335,17.299999],[-62.863892,17.370831000000123],[-62.8175,17.410831],[-62.701668,17.336941]]]]}},{"type":"Feature","properties":{"FIPS":"SE","ISO2":"SC","ISO3":"SYC","UN":690,"NAME":"Seychelles","AREA":46,"POP2005":85532,"REGION":2,"SUBREGION":14,"LON":55.474,"LAT":-4.647},"geometry":{"type":"MultiPolygon","coordinates":[[[[46.491386,-9.75445],[46.476105,-9.744167],[46.508331,-9.717779],[46.508331,-9.737501],[46.491386,-9.75445]]],[[[46.510551,-9.396946],[46.2691650000001,-9.46306],[46.219994,-9.445557],[46.20416300000011,-9.389446],[46.302216,-9.428057],[46.425552,-9.386112],[46.45166,-9.345],[46.515831,-9.36778],[46.510551,-9.396946]]],[[[46.413887,-9.35889],[46.34111000000013,-9.35694],[46.276665,-9.34611],[46.42694100000011,-9.342779],[46.413887,-9.35889]]],[[[56.28222,-7.134167],[56.247215,-7.19444],[56.27861000000012,-7.110834],[56.28222,-7.134167]]],[[[55.535271,-4.763056],[55.526382000000126,-4.788334],[55.376106,-4.627223],[55.45916000000011,-4.55139],[55.539162,-4.66611],[55.535271,-4.763056]]],[[[55.246109,-4.50694],[55.217216,-4.47139],[55.231667,-4.448056],[55.26722000000012,-4.481668],[55.246109,-4.50694]]],[[[55.77583,-4.34833],[55.731941,-4.340279],[55.687218,-4.2875],[55.77166,-4.31556],[55.77583,-4.34833]]]]}},{"type":"Feature","properties":{"FIPS":"SF","ISO2":"ZA","ISO3":"ZAF","UN":710,"NAME":"South Africa","AREA":121447,"POP2005":47938663,"REGION":2,"SUBREGION":18,"LON":23.121,"LAT":-30.558},"geometry":{"type":"MultiPolygon","coordinates":[[[[37.85083,-46.95695],[37.624992,-46.9575],[37.57638500000013,-46.909447],[37.65416,-46.83112],[37.781944,-46.83223],[37.89222,-46.895836],[37.85083,-46.95695]]],[[[37.95944200000014,-46.658615],[37.876106,-46.65139],[37.856941,-46.62694],[37.942772,-46.60334],[37.97888200000011,-46.62056],[37.95944200000014,-46.658615]]],[[[29.893887,-22.194447],[30.306942000000106,-22.34556],[30.900833,-22.28917],[31.089443,-22.3375],[31.15583,-22.321667],[31.27,-22.37334],[31.561665,-23.18667],[31.550831000000134,-23.47667],[31.683609,-23.61361],[31.769722,-23.85639],[31.877399000000135,-23.950645],[31.88583,-24.17112],[32.01611,-24.459446],[32.006104,-25.61584],[31.919441,-25.81417],[31.96851,-25.95784],[31.87805,-25.99556],[31.42166,-25.72834],[31.320553,-25.75528],[31.12833,-25.91389],[31.051109,-26.11278],[30.82944,-26.39083],[30.798332,-26.54278],[30.818886,-26.810558],[30.89944300000013,-26.77195],[30.96833,-26.96083],[31.161663,-27.203056],[31.517498000000103,-27.313057],[31.987499,-27.31611],[31.958611,-27.11278],[32.009491,-26.808064],[32.348328,-26.860279],[32.89043,-26.84714],[32.84166,-27.110001],[32.652222,-27.59639],[32.558609,-28.148891],[32.43222,-28.378056],[32.3986,-28.525],[32.00138900000013,-28.875278],[31.774166,-28.945557],[31.325832,-29.39083],[30.999165,-29.896946],[31.061543000000142,-29.882294],[31.053055,-29.90639],[30.869999,-30.076946],[30.39305,-30.852501],[30.023888000000113,-31.281113],[29.8555530000001,-31.41944],[29.765831,-31.444447],[29.62944,-31.58139],[29.411942,-31.70417],[29.091663,-32.06444],[28.53777700000012,-32.57417],[28.22805,-32.7675],[27.899998,-33.04056],[27.730274,-33.1175],[27.09610700000013,-33.52862],[26.530552000000114,-33.753334],[26.284443,-33.7664],[25.971107,-33.710556],[25.724998,-33.76723],[25.628609,-33.851395],[25.611664000000133,-33.926674],[25.70194,-34.03195],[25.584442,-34.048889],[25.164165,-33.95889],[25.022636,-33.96806],[24.920277000000112,-34.002785],[24.91861,-34.07306],[24.824718,-34.20167],[24.51583,-34.17028],[24.385555,-34.10722],[23.653332,-33.98389],[23.396664,-34.02334],[23.368332,-34.0975],[22.959442,-34.09139],[22.81277,-34.04806],[22.783333,-34.011116],[22.545,-34.005],[22.43888900000013,-34.06417],[22.295277,-34.053894],[22.153889,-34.09251],[22.11360900000011,-34.143059],[21.949718,-34.225006],[21.901665,-34.33611],[21.802498,-34.38306],[21.655552000000114,-34.390556],[21.528332,-34.352501],[21.29472,-34.433891],[21.06277,-34.36389],[20.942497,-34.36028],[20.852497,-34.39333],[20.79861,-34.458618],[20.662468,-34.44082],[20.504444,-34.46473],[20.08972200000011,-34.726395],[20,-34.822002],[19.857777000000112,-34.752502],[19.651665,-34.77584],[19.42361,-34.62195],[19.318607,-34.597229],[19.364166,-34.514725],[19.281944,-34.40973],[19.132221,-34.41417],[19.083332,-34.34639],[18.81778,-34.377785],[18.808609,-34.308617],[18.85527,-34.15611],[18.793331,-34.08667],[18.601944,-34.073616],[18.48805,-34.097778],[18.435833000000116,-34.168892],[18.478886,-34.23445],[18.490112,-34.34823],[18.420277,-34.323059],[18.31028,-34.0325],[18.379997,-33.911949],[18.445553,-33.911667],[18.46666,-33.817223],[18.441109,-33.70667],[18.29472,-33.466118],[18.160553,-33.34112],[18.107777000000112,-33.250557],[18.127777,-33.177223],[18.034443,-33.032501],[17.983330000000137,-33.000282],[17.913887,-33.04806],[17.89305,-33.031113],[17.8475,-32.83083],[17.984165000000132,-32.73112],[18.064999,-32.78111],[18.13175,-32.77878],[18.292221,-32.624451],[18.35028,-32.288063],[18.27861,-31.89278],[18.181389,-31.674725],[17.801388,-31.21445],[17.278889,-30.346668],[17.086109,-29.84028],[17.00333000000012,-29.524445],[16.81528,-29.085003],[16.67083,-28.905834],[16.60611,-28.87195],[16.48333,-28.608334],[16.6675,-28.465],[16.727776,-28.496113],[16.776665,-28.441669],[16.88361,-28.09639],[17.06361,-28.028614],[17.186386,-28.108059],[17.18416,-28.20253],[17.221642,-28.24468],[17.34889,-28.236668],[17.399719,-28.35389],[17.36138,-28.535],[17.40472,-28.713612],[17.57737,-28.681221],[17.635277,-28.772224],[17.749722,-28.746391],[17.912498,-28.77917],[18.04639,-28.870003],[18.175831,-28.908611],[18.723053,-28.83667],[18.957775,-28.868057],[19.00944,-28.93222],[19.123055000000136,-28.962223],[19.253887,-28.89944],[19.239166000000125,-28.79889],[19.26916,-28.73445],[19.466389,-28.69972],[19.569462,-28.526829],[19.732498,-28.484169],[19.803608,-28.495003],[19.99612,-28.421448],[20.000942,-24.76541],[20.12722,-24.88195],[20.244999,-24.919445],[20.389999000000103,-25.036945],[20.63194,-25.43695],[20.68777,-25.57889],[20.68111,-25.685001],[20.811386,-25.88333],[20.859722,-26.14667],[20.690277,-26.39],[20.609722,-26.45444],[20.642498,-26.828056],[20.703888,-26.87556],[20.897221,-26.79472],[21.12889,-26.86639],[21.38111,-26.82111],[21.673332,-26.86306],[21.771385,-26.792225],[21.770275,-26.68028],[22.0430530000001,-26.63444],[22.135555000000124,-26.53778],[22.249443,-26.34111],[22.62480900000014,-26.11156],[22.658054,-26.01889],[22.721386,-25.979446],[22.754444,-25.74139],[22.818886,-25.66806],[22.813053,-25.563892],[22.91,-25.396946],[23.014832,-25.29972],[23.19444,-25.26417],[23.453053,-25.27639],[23.74277500000011,-25.468334],[23.905277,-25.62861],[24.00027,-25.65889],[24.18861,-25.62167],[24.348888,-25.75445],[24.44611,-25.735558],[24.658054000000106,-25.824722],[24.89805200000012,-25.81084],[25.029163,-25.72861],[25.152222000000105,-25.762222],[25.421387,-25.72945],[25.58545,-25.62193],[25.67139,-25.47028],[25.870831,-24.910835],[25.871387,-24.74445],[26.265274,-24.6375],[26.411041,-24.62827],[26.554996,-24.43695],[26.72138600000011,-24.311668],[26.845276,-24.264446],[27.00194,-23.644447],[27.069721,-23.636112],[27.148052,-23.52472],[27.334442,-23.401947],[27.534721,-23.37583],[27.601387,-23.22028],[27.783886,-23.17028],[27.943886,-23.03139],[27.972221,-22.952778],[28.159443000000124,-22.76889],[28.179634,-22.686436],[28.361942,-22.574448],[28.634441,-22.563335],[28.92499900000013,-22.451115],[28.965832,-22.386391],[28.96055200000012,-22.313335],[29.0248,-22.227108],[29.669998,-22.136391],[29.893887,-22.194447]],[[28.56555,-28.610001],[28.401943,-28.62639],[28.355,-28.69528],[28.295277,-28.710003],[28.179165,-28.696667],[28.01667,-28.862225],[27.797497,-28.91806],[27.637497,-29.03833],[27.643053,-29.09111],[27.451385,-29.300003],[27.3005500000001,-29.52584],[27.011108,-29.62528],[27.100277,-29.735558],[27.226387000000102,-29.99639],[27.296944,-30.046669],[27.378922,-30.31733],[27.46472,-30.321392],[27.738052,-30.597778],[28.07994,-30.65053],[28.37778,-30.16028],[28.79055,-30.10139],[29.16583,-29.91833],[29.12194,-29.820557],[29.16917,-29.667503],[29.293888,-29.62195],[29.307777,-29.47695],[29.42999600000013,-29.41639],[29.454998,-29.3425],[29.326385,-29.08445],[28.953609000000142,-28.879723],[28.898052,-28.789169],[28.80694,-28.7575],[28.7925,-28.706947],[28.65583,-28.571945],[28.56555,-28.610001]]]]}},{"type":"Feature","properties":{"FIPS":"LT","ISO2":"LS","ISO3":"LSO","UN":426,"NAME":"Lesotho","AREA":3035,"POP2005":1980831,"REGION":2,"SUBREGION":18,"LON":28.243,"LAT":-29.581},"geometry":{"type":"Polygon","coordinates":[[[27.564617,-30.404911],[27.464722,-30.321392],[27.378922,-30.317329],[27.296944,-30.046669],[27.226387,-29.996391],[27.100277,-29.735558],[27.011108,-29.625278],[27.30055,-29.525839],[27.451385,-29.300003],[27.643053,-29.09111],[27.637497,-29.038334],[27.797497,-28.918056],[28.016666,-28.862225],[28.179165,-28.696667],[28.34972,-28.697502],[28.401943,-28.626392],[28.578888,-28.607502],[28.651108,-28.569447],[28.7925,-28.706947],[28.80694,-28.757502],[28.898052,-28.789169],[28.953609,-28.879723],[29.333054,-29.092503],[29.455555,-29.353336],[29.418053,-29.433334],[29.296665,-29.494446],[29.293888,-29.621948],[29.169167,-29.667503],[29.121944,-29.820557],[29.165833,-29.918335],[28.790554,-30.101391],[28.377777,-30.16028],[28.079937,-30.650528],[27.738052,-30.597778],[27.564617,-30.404911]]]}},{"type":"Feature","properties":{"FIPS":"BC","ISO2":"BW","ISO3":"BWA","UN":72,"NAME":"Botswana","AREA":56673,"POP2005":1835938,"REGION":2,"SUBREGION":18,"LON":23.815,"LAT":-22.182},"geometry":{"type":"Polygon","coordinates":[[[26.95919,-23.752075],[26.845276,-24.264446],[26.721386,-24.311668],[26.554996,-24.436947],[26.411041,-24.628273],[26.265274,-24.637501],[25.871387,-24.744446],[25.870831,-24.910835],[25.671387,-25.47028],[25.585449,-25.621929],[25.406944,-25.737225],[25.152222,-25.762222],[25.029163,-25.728615],[24.898052,-25.810837],[24.658054,-25.824722],[24.44611,-25.735558],[24.348888,-25.754448],[24.18861,-25.62167],[24.000275,-25.65889],[23.905277,-25.628613],[23.742775,-25.468334],[23.453053,-25.27639],[23.194443,-25.264168],[23.014832,-25.299725],[22.91,-25.396946],[22.813053,-25.563892],[22.818886,-25.668056],[22.754444,-25.74139],[22.712776,-25.999168],[22.658054,-26.01889],[22.624809,-26.111565],[22.249443,-26.341114],[22.135555,-26.537781],[22.043053,-26.634445],[21.770275,-26.680279],[21.771385,-26.792225],[21.667221,-26.864445],[21.381107,-26.821114],[21.128887,-26.86639],[20.897221,-26.794724],[20.703888,-26.875557],[20.642498,-26.828056],[20.609722,-26.454445],[20.690277,-26.390003],[20.859722,-26.146667],[20.811386,-25.883335],[20.68111,-25.685001],[20.687775,-25.578892],[20.631943,-25.436947],[20.389999,-25.036945],[20.244999,-24.919445],[20.12722,-24.881947],[20.000942,-24.765408],[19.996666,-22.005001],[20.991943,-21.996948],[20.993286,-18.318417],[21.462498,-18.304447],[23.077774,-18.004448],[23.297108,-17.995949],[23.398052,-18.176113],[23.519722,-18.266945],[23.570831,-18.467224],[23.615578,-18.485069],[23.719166,-18.425282],[23.96722,-18.185001],[24.362499,-17.948612],[24.419441,-17.954723],[24.496109,-18.059448],[24.560276,-18.056946],[24.828331,-17.838612],[24.936108,-17.813892],[25.09222,-17.830002],[25.178055,-17.781391],[25.264431,-17.80225],[25.239166,-17.913059],[25.309166,-18.065834],[25.39333,-18.122501],[25.521942,-18.391392],[25.718887,-18.591393],[25.865833,-18.841393],[25.973331,-18.945557],[25.963333,-19.105556],[26.166111,-19.527779],[26.356667,-19.616947],[26.732498,-19.931946],[27.219997,-20.091667],[27.290554,-20.241669],[27.287453,-20.494965],[27.35722,-20.465],[27.609444,-20.470558],[27.713165,-20.506432],[27.730831,-20.748337],[27.693607,-20.862782],[27.685555,-21.070557],[27.84861,-21.23167],[28.015831,-21.566113],[28.288609,-21.587223],[28.498055,-21.662224],[28.574165,-21.632225],[28.868053,-21.754448],[29.060555,-21.798058],[29.081181,-21.82539],[29.032776,-21.956947],[29.073887,-22.037781],[29.174721,-22.08028],[29.256107,-22.066391],[29.373623,-22.19241],[29.024796,-22.227108],[28.91069,-22.458794],[28.634441,-22.563335],[28.361942,-22.574448],[28.298332,-22.609447],[28.179634,-22.686436],[28.156387,-22.773056],[27.972221,-22.952778],[27.943886,-23.031391],[27.783886,-23.17028],[27.601387,-23.22028],[27.526386,-23.382225],[27.344997,-23.397503],[27.148052,-23.524723],[27.069721,-23.636112],[27.001942,-23.644447],[26.95919,-23.752075]]]}},{"type":"Feature","properties":{"FIPS":"SG","ISO2":"SN","ISO3":"SEN","UN":686,"NAME":"Senegal","AREA":19253,"POP2005":1177034,"REGION":2,"SUBREGION":11,"LON":-14.881,"LAT":15.013},"geometry":{"type":"Polygon","coordinates":[[[-17.148308,14.61392],[-17.225834,14.68861],[-17.384167,14.742222],[-17.428337,14.728333],[-17.448059,14.655554],[-17.537224,14.756109],[-17.166946,14.903055],[-16.878334,15.224998],[-16.537224,15.775833],[-16.527679,16.060249],[-16.383057,16.227776],[-16.289722,16.514442],[-16.124168,16.552776],[-16.052502,16.480831],[-15.894445,16.513054],[-15.670279,16.48111],[-15.441389,16.579441],[-15.232779,16.559719],[-15.025557,16.635555],[-14.981112,16.693054],[-14.906946,16.635277],[-14.345278,16.638611],[-14.029724,16.357777],[-13.9825,16.306664],[-13.973333,16.237221],[-13.823057,16.131664],[-13.704723,16.184719],[-13.712778,16.131943],[-13.676945,16.098888],[-13.520557,16.132221],[-13.398056,16.059166],[-13.245834,15.680555],[-13.065834,15.480276],[-12.956945,15.499443],[-12.932501,15.368055],[-12.841112,15.298611],[-12.889446,15.251389],[-12.708057,15.097776],[-12.626667,15.098888],[-12.486389,15.015554],[-12.445557,14.90111],[-12.244833,14.764385],[-12.178612,14.607498],[-12.226112,14.502222],[-12.2064,14.395288],[-12.030834,14.278889],[-11.979445,14.16111],[-12.015001,14.012499],[-11.942501,13.858889],[-11.964445,13.785276],[-12.064445,13.695555],[-12.057222,13.664721],[-11.816389,13.308054],[-11.739168,13.410831],[-11.632502,13.390276],[-11.536667,13.256109],[-11.557501,13.209444],[-11.516668,13.114166],[-11.378056,12.988054],[-11.424168,12.656111],[-11.373058,12.407774],[-11.486113,12.436665],[-11.638056,12.426386],[-11.736391,12.380552],[-12.03389,12.400555],[-12.345404,12.301748],[-12.399446,12.371386],[-12.496948,12.396664],[-12.582781,12.363607],[-12.633059,12.437496],[-12.786947,12.464998],[-12.901112,12.546944],[-12.943056,12.531944],[-12.963612,12.470554],[-13.037779,12.473055],[-13.069445,12.529999],[-13.041668,12.589998],[-13.061111,12.639721],[-13.627779,12.6775],[-15.218056,12.684721],[-15.419403,12.551407],[-15.685278,12.429998],[-16.209167,12.460833],[-16.381668,12.374722],[-16.515003,12.347776],[-16.684448,12.359999],[-16.71777,12.322426],[-16.796669,12.429998],[-16.799446,12.489166],[-16.586945,12.632776],[-16.380558,12.544998],[-16.292225,12.588888],[-16.196392,12.580276],[-16.028614,12.631109],[-15.831667,12.550554],[-15.7325,12.587221],[-15.626945,12.531111],[-15.507778,12.634722],[-15.542778,12.718887],[-15.531946,12.780554],[-15.399723,12.794443],[-15.390001,12.831944],[-15.540279,12.794722],[-15.564724,12.737221],[-15.540834,12.647221],[-15.650002,12.555555],[-15.695557,12.613888],[-15.914446,12.595276],[-16.021378,12.724939],[-16.073612,12.633055],[-16.29417,12.601387],[-16.376114,12.564444],[-16.571114,12.671389],[-16.598057,12.791666],[-16.650002,12.718887],[-16.645,12.634165],[-16.756111,12.564999],[-16.800003,12.813889],[-16.755836,12.906387],[-16.750874,13.059977],[-16.700558,13.16111],[-15.809723,13.159721],[-15.803612,13.347776],[-15.285002,13.374443],[-15.212778,13.429165],[-15.200556,13.531111],[-15.111668,13.595833],[-14.954723,13.471943],[-14.765001,13.423054],[-14.714724,13.360554],[-14.547777,13.335939],[-14.351112,13.237778],[-14.194168,13.231667],[-14.095556,13.285],[-13.867224,13.322498],[-13.805557,13.379721],[-13.80139,13.43861],[-13.900557,13.558611],[-13.973333,13.583055],[-14.337778,13.453888],[-14.472778,13.534443],[-14.497501,13.621666],[-14.540001,13.653332],[-14.631945,13.666943],[-14.718613,13.611944],[-14.791945,13.653332],[-14.856335,13.778612],[-15.070278,13.826387],[-15.25139,13.74472],[-15.30389,13.792221],[-15.364445,13.781387],[-15.458612,13.704443],[-15.48889,13.589443],[-16.56567,13.589998],[-16.645279,13.701944],[-16.638615,13.752777],[-16.573059,13.833055],[-16.521114,13.831944],[-16.490837,13.958055],[-16.56028,13.862499],[-16.702503,13.768332],[-16.735558,13.816387],[-16.747223,13.951944],[-16.690281,13.993889],[-16.638889,13.961666],[-16.505836,14.105],[-16.363056,14.166111],[-16.453056,14.174444],[-16.513336,14.143332],[-16.631111,14.004721],[-16.775837,14.012499],[-16.813335,14.122776],[-16.878056,14.178888],[-16.947781,14.375555],[-17.065002,14.455],[-17.148308,14.61392]]]}},{"type":"Feature","properties":{"FIPS":"SI","ISO2":"SI","ISO3":"SVN","UN":705,"NAME":"Slovenia","AREA":2014,"POP2005":1999425,"REGION":150,"SUBREGION":39,"LON":14.827,"LAT":46.124},"geometry":{"type":"Polygon","coordinates":[[[13.718655,46.526611],[14.079721,46.489716],[14.159443,46.440826],[14.544998,46.407494],[14.811666,46.509995],[14.870554,46.615829],[15.105276,46.657219],[15.406111,46.652496],[15.868332,46.723053],[15.988054,46.751106],[15.988609,46.833611],[16.231941,46.876663],[16.348888,46.844444],[16.324165,46.757217],[16.529442,46.510277],[16.607872,46.476234],[16.384163,46.535828],[16.292507,46.530815],[16.249443,46.490273],[16.266109,46.419441],[16.075924,46.384331],[16.083332,46.33416],[16.01722,46.29805],[15.654722,46.219444],[15.599722,46.142494],[15.629444,46.086937],[15.718332,46.047218],[15.697777,45.844162],[15.499443,45.835831],[15.309166,45.751938],[15.289721,45.689163],[15.368055,45.702774],[15.352591,45.651756],[15.307089,45.629868],[15.277222,45.462776],[15.174458,45.425819],[14.979067,45.500473],[14.818054,45.46611],[14.62611,45.606941],[14.601387,45.675278],[14.564999,45.664993],[14.485832,45.529716],[14.407221,45.489166],[13.703609,45.44416],[13.607498,45.468605],[13.589443,45.516937],[13.749443,45.546944],[13.716944,45.596107],[13.850832,45.585274],[13.919167,45.637497],[13.788887,45.75444],[13.598055,45.810829],[13.577776,45.854164],[13.632221,45.991104],[13.5425,45.967499],[13.48,46.011108],[13.669167,46.177498],[13.485832,46.232498],[13.416111,46.213333],[13.383055,46.297218],[13.511389,46.38472],[13.689444,46.447495],[13.718655,46.526611]]]}},{"type":"Feature","properties":{"FIPS":"SL","ISO2":"SL","ISO3":"SLE","UN":694,"NAME":"Sierra Leone","AREA":7162,"POP2005":5586403,"REGION":2,"SUBREGION":11,"LON":-11.792,"LAT":8.56},"geometry":{"type":"MultiPolygon","coordinates":[[[[-12.525278,7.431389],[-12.55945,7.420833],[-12.61945,7.478055],[-12.95278,7.56833],[-12.885,7.614166],[-12.59111,7.634444],[-12.49695,7.57361],[-12.525278,7.431389]]],[[[-11.21444,9.997499],[-10.997223,9.751665],[-10.838612,9.479721],[-10.656668,9.305832],[-10.73722,9.083332],[-10.571526,9.05953],[-10.59167,8.858055],[-10.50278,8.710833],[-10.532501,8.620832],[-10.618891,8.546110000000112],[-10.69583,8.29861],[-10.53528,8.317499000000112],[-10.437223,8.401943],[-10.386112,8.49499900000012],[-10.32028,8.509443],[-10.266651,8.488377],[-10.26417,8.45167],[-10.302223,8.189999000000114],[-10.355278,8.14639],[-10.49778,8.13639],[-10.60222,8.035276000000124],[-10.60778,7.7725],[-10.68889,7.741666],[-10.86306,7.530555],[-11.10278,7.38444],[-11.18944,7.2575],[-11.30528,7.216944],[-11.42139,6.94194],[-11.468613,6.92361],[-11.56667,6.954444],[-11.84167,7.14777800000013],[-12.50361,7.386944],[-12.494167,7.45222],[-12.43278,7.528055],[-12.300556,7.52583],[-12.181667,7.595277],[-12.25333,7.608889],[-12.38556,7.544722],[-12.46333,7.556110000000103],[-12.58778,7.68111],[-12.76611,7.74],[-12.95861,7.9],[-12.88194,7.937499],[-12.90806,8.099998],[-12.982779,8.188889000000131],[-12.974335,8.247768000000121],[-13.13278,8.195],[-13.27806,8.423611],[-13.28806,8.496111],[-13.197779,8.49361],[-13.05139,8.36861],[-13.12028,8.461666],[-13.014446,8.556389],[-12.897501,8.567778],[-12.946667,8.591665],[-13.101946,8.579721],[-13.16528,8.51861],[-13.240557,8.665277],[-13.2425,8.802500000000123],[-13.2025,8.85889],[-13.132223,8.861944],[-13.26556,8.953609],[-13.29561,9.032143],[-13.18722,9.086943],[-13.08556,9.050278],[-13.00139,9.112778],[-12.945,9.2825],[-12.81556,9.287777],[-12.680557,9.417221],[-12.616667,9.606110000000115],[-12.456112,9.888332],[-12.235279,9.938889000000131],[-12.13167,9.874998],[-11.89778,9.927776],[-11.894724,9.99611],[-11.21444,9.997499]]]]}},{"type":"Feature","properties":{"FIPS":"SN","ISO2":"SG","ISO3":"SGP","UN":702,"NAME":"Singapore","AREA":67,"POP2005":4327468,"REGION":142,"SUBREGION":35,"LON":103.808,"LAT":1.351},"geometry":{"type":"Polygon","coordinates":[[[103.99054,1.383291],[103.95998,1.320833],[103.844971,1.259166],[103.640808,1.315555],[103.71359,1.429444],[103.829422,1.443611],[103.99054,1.383291]]]}},{"type":"Feature","properties":{"FIPS":"SO","ISO2":"SO","ISO3":"SOM","UN":706,"NAME":"Somalia","AREA":62734,"POP2005":8196395,"REGION":2,"SUBREGION":14,"LON":48.316,"LAT":9.774},"geometry":{"type":"Polygon","coordinates":[[[42.944092,11.002438],[43.249222,11.469534],[43.459442,11.350277],[43.504715,11.20611],[43.813889,10.813889],[44.278328,10.447777],[44.398048,10.41111],[44.571938,10.411943],[44.740273,10.459721],[44.935555,10.423611],[45.159439,10.534166],[45.323883,10.664721],[45.460831,10.666943],[45.759995,10.875277],[46.07972,10.771387],[46.250275,10.78611],[46.336937,10.700832],[46.448051,10.688889],[46.655548,10.748333],[47.054718,10.969166],[47.174438,11.077221],[47.398888,11.179998],[47.508331,11.186388],[47.691666,11.099165],[47.792496,11.130554],[48.13166,11.135832],[48.338051,11.272221],[48.521385,11.315554],[48.654442,11.329166],[48.885826,11.245832],[48.987221,11.245832],[49.429161,11.341944],[49.571938,11.453333],[49.784721,11.453054],[50.085548,11.511944],[50.430832,11.678333],[50.500549,11.752499],[50.559441,11.90111],[50.76944,11.979166],[51.277222,11.836666],[51.242493,11.671944],[51.122772,11.503054],[51.076385,11.328054],[51.076942,11.188889],[51.169998,11.146944],[51.114166,10.974165],[51.145554,10.63361],[51.09861,10.487499],[51.01416,10.442778],[51.192497,10.476665],[51.189438,10.538055],[51.37944,10.486666],[51.412636,10.451515],[51.371384,10.373055],[51.278885,10.381943],[51.261383,10.418333],[51.212219,10.425554],[51.081108,10.403277],[50.896942,10.319721],[50.899162,10.022778],[50.802498,9.57472],[50.83625,9.432688],[50.766106,9.313055],[50.656944,9.223888],[50.638054,9.07361],[50.426109,8.862499],[50.323608,8.624166],[50.320274,8.530277],[50.151108,8.309721],[50.113327,8.191944],[49.82666,7.941944],[49.79583,7.714444],[49.732498,7.574444],[49.219444,6.758333],[49.073883,6.410555],[49.082497,6.285],[49.040833,6.149722],[48.668327,5.52861],[48.20166,4.903055],[47.954437,4.463888],[47.453049,3.883611],[47.219444,3.672222],[46.763885,3.16],[46.014717,2.427778],[45.367775,2.038611],[45.004166,1.860833],[44.548882,1.554722],[43.488609,0.649999],[42.809441,-0.091667],[42.563332,-0.313611],[42.176941,-0.798056],[42.066666,-0.896111],[41.558159,-1.674868],[41.555275,-1.592222],[40.998329,-0.866111],[40.986595,2.829956],[41.336937,3.1675],[41.937218,4.016944],[41.937775,4.062222],[42.073883,4.176147],[42.195831,4.208888],[42.379166,4.203055],[42.851105,4.3025],[42.925827,4.371944],[42.98027,4.520555],[43.163887,4.670833],[43.686386,4.891944],[43.981941,4.963055],[44.950829,4.902499],[46.561386,6.619444],[47.988243,8.004107],[47.01194,8.00111],[44.010551,9.007221],[43.62722,9.354443],[43.583054,9.336111],[43.430832,9.426109],[43.386665,9.556944],[43.275276,9.645555],[43.21611,9.881388],[43.076942,9.931389],[43.009163,10.0875],[42.848053,10.22361],[42.78611,10.455555],[42.663055,10.6325],[42.944092,11.002438]]]}},{"type":"Feature","properties":{"FIPS":"SP","ISO2":"ES","ISO3":"ESP","UN":724,"NAME":"Spain","AREA":49904,"POP2005":43397491,"REGION":150,"SUBREGION":39,"LON":-3.649,"LAT":40.227},"geometry":{"type":"MultiPolygon","coordinates":[[[[-17.91278,27.771664],[-17.98278,27.637497],[-18.15389,27.703888],[-18.17056,27.737221],[-18.13528,27.77333],[-18.038334,27.762497],[-18.001114,27.81778],[-17.928337,27.84972],[-17.88139,27.811386],[-17.91278,27.771664]]],[[[-15.554167,27.755833],[-15.579168,27.73111],[-15.677223,27.75333000000012],[-15.785,27.8375],[-15.82222,27.91333],[-15.815001,28.004719],[-15.71056,28.07027],[-15.7025,28.156109000000125],[-15.43528,28.133331],[-15.36556,28.010277],[-15.39417,27.845],[-15.44083,27.789997],[-15.554167,27.755833]]],[[[-17.175003,28.016941],[-17.245281,28.010830000000112],[-17.29861,28.046665],[-17.330559,28.09111],[-17.316948,28.17222],[-17.251392,28.20638700000012],[-17.101948,28.13472],[-17.09389,28.081108],[-17.175003,28.016941]]],[[[-16.341114,28.370277],[-16.41806,28.145275],[-16.52722,28.023331],[-16.67139,27.984165],[-16.912781,28.34139],[-16.83083,28.374996],[-16.56361,28.391666],[-16.490837,28.417221],[-16.37611,28.536942000000124],[-16.15695,28.57222000000013],[-16.15639,28.501942],[-16.341114,28.370277]]],[[[-14.327223,28.04639],[-14.444168,28.069164],[-14.209446,28.22805],[-14.19333,28.321941],[-14.050835,28.56472],[-14.00528,28.711109],[-13.86972,28.751389],[-13.83194,28.703609],[-13.82028,28.577221],[-13.92306,28.249165],[-14.200556,28.169167],[-14.327223,28.04639]]],[[[-17.83195,28.453888],[-18.00361,28.752499],[-17.904446,28.849442],[-17.78139,28.838886],[-17.71639,28.746109],[-17.73917,28.60778],[-17.83195,28.453888]]],[[[-13.60972,28.926388],[-13.72472,28.90694],[-13.77306,28.837776],[-13.85222,28.906387],[-13.78972,29.054165],[-13.5875,29.139164],[-13.476112,29.241943],[-13.442501,29.231667],[-13.42028,29.203053],[-13.46889,29.01361],[-13.60972,28.926388]]],[[[-2.925278,35.26666300000011],[-2.962778,35.274994],[-2.958611,35.32499700000011],[-2.91472,35.2736],[-2.925278,35.26666300000011]]],[[[-5.31944,35.87693800000011],[-5.345834,35.841660000000104],[-5.395557,35.916336000000115],[-5.345,35.9125],[-5.31944,35.87693800000011]]],[[[-3.036111,35.912773],[-3.04639,35.907776],[-3.051111,35.915833],[-3.02722,35.924438],[-3.036111,35.912773]]],[[[-6.925,37.17083],[-6.95417,37.180275],[-6.97306,37.210274],[-6.948611,37.203331],[-6.925,37.17083]]],[[[1.57778,38.6877750000001],[1.576111,38.655548000000124],[1.456666,38.68694],[1.390278000000137,38.64333],[1.383055,38.720551],[1.445278,38.74110400000012],[1.57778,38.6877750000001]]],[[[1.531667,38.951942],[1.371944,38.830826],[1.34639,38.871109],[1.24611,38.86027],[1.211944,38.89833],[1.303611000000103,39.03860500000013],[1.519722,39.118332],[1.605278,39.09166],[1.615,39.02833],[1.531667,38.951942]]],[[[3.247777,39.73472],[3.382778,39.773331],[3.479722,39.711105],[3.3775,39.552773],[3.30555500000014,39.50222],[3.241944000000103,39.36444100000011],[3.063611,39.263611],[2.98555,39.3186040000001],[2.78639,39.36472],[2.727777,39.47305],[2.753611,39.5075],[2.694444,39.55194],[2.656111,39.56443800000011],[2.542500000000132,39.520271],[2.38917,39.524994],[2.364166,39.555832],[2.386111000000142,39.612778],[2.683888,39.793884000000105],[2.987778,39.91111],[3.096944,39.911385],[3.13833,39.787498],[3.247777,39.73472]]],[[[4.27333,39.96139],[4.316944,39.846107],[4.276388,39.806389],[4.02861,39.92],[3.826666,39.922493],[3.796944,40.01722000000012],[3.83611100000013,40.056389],[4.174444,40.050278000000105],[4.27333,39.96139]]],[[[-7.85556,43.759995],[-7.85056,43.71472200000011],[-7.724445,43.747498],[-7.463612,43.72639],[-7.240834,43.55916600000011],[-7.038611,43.557495],[-7.044819,43.490402],[-6.99944,43.560829],[-6.94333,43.57777],[-6.095,43.561943],[-5.94472,43.593887],[-5.854167,43.64804800000013],[-5.67778,43.543884],[-5.398056,43.55249800000013],[-5.288611,43.53388200000012],[-5.2075,43.477776],[-4.51455,43.396347000000105],[-4.22389,43.39611100000013],[-3.81028,43.492493],[-3.766389,43.469994],[-3.585556,43.51028],[-3.15059,43.353561],[-3.02222,43.357498],[-2.94139,43.435555],[-2.73556,43.426384],[-2.29556,43.29610400000013],[-2.12194,43.296661],[-1.787778,43.39222],[-1.73038,43.29898100000014],[-1.39139,43.262772],[-1.41139,43.136665],[-1.4725,43.09111],[-1.43444,43.045555],[-1.360278,43.031662],[-1.300278,43.071663],[-0.93417,42.9525],[-0.746667,42.965553],[-0.72389,42.891388],[-0.54944,42.77861],[-0.39194,42.796387],[-0.308739,42.848381],[-0.05056,42.69194],[0.178611,42.735275],[0.43278,42.686661],[0.675506,42.688484],[0.651944,42.784996],[0.66778,42.839165],[0.72,42.859161],[1.091666,42.78444],[1.17389,42.709717],[1.359167000000127,42.715271],[1.445833000000107,42.601944],[1.424166,42.493332],[1.454722,42.44167],[1.54167,42.43722],[1.723611,42.50944],[1.906389000000104,42.446938],[2.017222,42.35305000000011],[2.093611,42.364166],[2.137777,42.417221],[2.269166,42.43722],[2.54194,42.332497],[2.666389,42.34194200000013],[2.65722,42.38444],[2.724722,42.41944100000012],[2.95,42.48055],[3.045278,42.474716],[3.092222,42.42999300000013],[3.177655000000129,42.436806],[3.159166000000141,42.378883],[3.193889,42.342216],[3.319167,42.32139],[3.262777,42.240829],[3.158611,42.262497],[3.11638900000014,42.221382],[3.119722,42.13694],[3.21333,42.061104],[3.201666000000102,41.892776],[2.939444,41.719994],[2.273056,41.463333],[2.11083,41.285828],[1.498333,41.178604],[0.993055,41.04805],[0.704167,40.813049],[0.73805,40.766388],[0.902778000000126,40.719719],[0.689722,40.571663],[0.60722,40.575829],[0.709167,40.59583],[0.73805,40.639717],[0.603611000000114,40.623604],[0.541944,40.56916],[0.354444,40.298607],[0.048889,40.036102],[-0.32056,39.509995],[-0.338056,39.435555000000136],[-0.1825,39.02916],[-0.06,38.901108],[0.195556,38.805824],[0.215278,38.758041000000105],[0.14417,38.684708],[-0.37194,38.441666],[-0.51167,38.324997],[-0.76102,37.845955],[-0.86,37.71666],[-0.786945,37.64777400000014],[-0.710278,37.643883],[-0.715556,37.606941],[-0.92167,37.551384],[-1.048333,37.57916300000011],[-1.3275,37.558052],[-1.50944,37.421944],[-1.64361,37.372772],[-1.79806,37.22277],[-1.902222,36.972221],[-2.129167,36.731384],[-2.1875,36.716385],[-2.281389,36.82000000000011],[-2.350278,36.84083],[-2.55528,36.81472],[-2.63944,36.701111],[-2.768889,36.678329],[-2.859445,36.69527],[-2.928889,36.749718],[-3.3275,36.739716],[-3.452778,36.691666],[-3.59528,36.746941000000106],[-4.398334,36.722221],[-4.633056,36.510551],[-4.91389,36.498886],[-5.171945,36.412773],[-5.334508,36.16256],[-5.431667,36.169167],[-5.42528,36.070831],[-5.61361,36.006104],[-5.79722,36.073883],[-5.91139,36.179161],[-6.050834,36.19194],[-6.26139,36.469994],[-6.22611,36.46360800000013],[-6.172778,36.512215],[-6.2975,36.613884],[-6.3925,36.626389],[-6.435,36.69722],[-6.441668,36.739441],[-6.35556,36.860832],[-6.578889,37.01944],[-6.904723,37.16555],[-6.95992,37.221836],[-6.978722,37.212608],[-6.97223,37.17775],[-7.12722,37.220551],[-7.39861,37.180832],[-7.447223,37.41861],[-7.524445,37.552498],[-7.42306,37.74388900000014],[-7.27833,37.87083],[-7.25444,37.987495],[-7.006667,38.028053000000114],[-6.93375,38.209068],[-7.08778,38.174438],[-7.321112,38.44944],[-7.257223,38.728333],[-7.06,38.86055],[-6.956944,39.019997],[-6.961112,39.056664],[-7.040278,39.12277200000011],[-7.1425,39.111107],[-7.24278,39.213051],[-7.371389,39.491386],[-7.505834,39.605827],[-7.5325,39.669418],[-7.3375,39.643883],[-7.266945,39.67194400000011],[-7.01722,39.67499500000014],[-6.87056,40.02166000000011],[-6.93472,40.1075],[-7.004723,40.126106],[-7.02722,40.18777],[-7.005834,40.23083],[-6.862303,40.271523000000116],[-6.79611,40.52444],[-6.803889,40.874161],[-6.931667,41.01805100000013],[-6.780278,41.06360600000011],[-6.75333,41.136665],[-6.64389,41.24472],[-6.558333,41.242218],[-6.438056,41.318886],[-6.29583,41.436104],[-6.18722,41.57972000000012],[-6.303612,41.66333],[-6.539445,41.679443],[-6.52806,41.839439],[-6.548612,41.92194],[-6.594167,41.95361],[-6.90611,41.944717],[-6.982848,41.973862],[-7.063056,41.951385],[-7.13361,41.994995],[-7.187222,41.975273],[-7.17361,41.922775],[-7.200556,41.88361],[-7.410556,41.823326],[-7.607779,41.83111],[-7.59806,41.865273],[-7.6925,41.904999],[-7.873334,41.85249],[-7.921112,41.880829],[-8.140556,41.80916600000012],[-8.218613,41.9136],[-8.085,42.020271],[-8.079723,42.054161],[-8.20122,42.15274],[-8.31056,42.103607],[-8.62083,42.053604000000114],[-8.871946,41.875832000000116],[-8.89639,42.11305],[-8.64417,42.28833],[-8.57972,42.351662],[-8.61972,42.349998],[-8.683613,42.279716000000114],[-8.869167,42.251389],[-8.821945,42.32833],[-8.65611,42.427773000000116],[-8.84083,42.391388],[-8.908335,42.467499],[-8.871668,42.500832000000116],[-8.869446,42.453606],[-8.836113,42.46194],[-8.80972,42.519440000000145],[-8.827778,42.574715],[-8.77889,42.596107],[-8.72155,42.7011490000001],[-8.91833,42.628326],[-8.99556,42.532494],[-9.03583,42.525276],[-9.06139,42.579437],[-9.020279,42.70472],[-8.911667,42.79333],[-9.08667,42.740273],[-9.140278,42.794998],[-9.12444,42.839996],[-9.185001,42.9525],[-9.293335,42.922493000000145],[-9.259167,43.04722],[-9.16972,43.185829],[-8.952223,43.23055],[-8.980278,43.28139],[-8.87639,43.319717],[-8.70139,43.287216],[-8.329723,43.403885000000116],[-8.265556,43.55277],[-7.898056,43.76416],[-7.85556,43.759995]]]]}},{"type":"Feature","properties":{"FIPS":"ST","ISO2":"LC","ISO3":"LCA","UN":662,"NAME":"Saint Lucia","AREA":61,"POP2005":16124,"REGION":19,"SUBREGION":29,"LON":-60.969,"LAT":13.898},"geometry":{"type":"Polygon","coordinates":[[[-60.954727,13.709444],[-61.067505,13.78861],[-61.079445,13.879999],[-60.930283,14.109444],[-60.878059,13.956665],[-60.900284,13.778332],[-60.954727,13.709444]]]}},{"type":"Feature","properties":{"FIPS":"SU","ISO2":"SD","ISO3":"SDN","UN":736,"NAME":"Sudan","AREA":237600,"POP2005":36899747,"REGION":2,"SUBREGION":15,"LON":30.05,"LAT":13.832},"geometry":{"type":"MultiPolygon","coordinates":[[[[37.268608,20.75111],[37.242218,20.785831],[37.263855,20.849724],[37.284439,20.83027600000014],[37.268608,20.75111]]],[[[31.453888,21.998333],[36.888466,22.000111000000118],[36.85416,21.971664],[36.911385,21.608608000000117],[37.06916,21.33083],[37.309441000000106,21.06028],[37.3077770000001,21.013332],[37.247498,21.00166300000012],[37.19055200000014,21.087498],[37.272499,21.051739],[37.23027,21.129166],[37.10527,21.212219],[37.17222,20.694721],[37.23027,20.54694400000011],[37.232216,20.47],[37.18471,20.401943],[37.17722,20.225277],[37.18471,20.018608],[37.265274,19.76277],[37.238052,19.57222],[37.290276,19.474998],[37.336388,19.151943],[37.433327,18.858055],[37.516388,18.724442],[37.768051,18.69527],[37.76194,18.664719],[37.828888,18.60083],[37.9986,18.496944],[38.104164,18.34889],[38.09,18.303608],[38.118332,18.282219],[38.550827,18.105831],[38.607498000000135,18.01083],[38.458611,17.87111],[38.370277,17.666111],[38.25777,17.5325],[38.13555,17.498886],[38.05583,17.551941],[37.895554,17.441387000000134],[37.51249700000011,17.32333],[37.52057600000012,17.195801],[37.423286,17.034214],[37.151939,17.015553],[36.995827,17.073887],[37.009163,16.782497],[36.912216000000114,16.641109000000142],[36.896385000000116,16.51778],[36.95694,16.425278000000105],[36.97305300000011,16.269444],[36.915833,16.215],[36.763611,15.80805400000014],[36.69778,15.753054],[36.54277,15.234722],[36.44328300000012,15.149952],[36.54281600000013,14.262053],[36.446388,13.956944],[36.48693800000012,13.839443],[36.397499,13.567778],[36.248604000000114,13.368055],[36.159439000000134,13.041666],[36.16972,12.984165],[36.132774,12.923332],[36.16527600000012,12.87528],[36.14269300000012,12.706923000000131],[36.006386000000134,12.72416],[35.70108,12.66611],[35.69527,12.61222],[35.645554,12.588888],[35.265434,11.93361],[35.096939,11.82694],[35.058052,11.720554],[35.093605,11.557777],[34.963882,11.25694],[35.0075,11.19833],[34.933327,10.956665],[34.978607000000125,10.915277],[34.97527,10.864443000000108],[34.86444,10.734999],[34.800552,10.723331],[34.594444000000124,10.887777],[34.43972,10.784443000000124],[34.28611000000012,10.554165],[34.34777100000014,10.231943],[34.323051,10.11722200000014],[34.231384,10.030277],[34.085831,9.553055],[34.134995,8.95527600000014],[34.120552,8.577221000000122],[33.978882,8.44139],[33.85249,8.425833],[33.771324,8.36775],[33.693329,8.386389000000122],[33.631943,8.469721000000106],[33.38777,8.437777],[33.252777,8.458611000000133],[33.166107,8.392776],[33.186424,8.136978],[33.114716,8.096943],[32.991104,7.924999],[33.05389,7.788888],[33.470276,7.743333],[33.71139,7.660277],[34.025551,7.383055000000128],[34.027222,7.245000000000118],[34.16333,7.171666],[34.236938,7.017777],[34.294701,6.96643],[34.469994,6.916111],[34.529999,6.743889],[34.637497,6.72722],[34.70472,6.677777000000105],[34.76277,6.60583],[34.870552,6.237499000000128],[34.981384,6.06111],[34.986382,5.878055],[35.105827,5.69278],[35.103882,5.6325],[35.289993,5.50778],[35.269722,5.44111],[35.30194100000011,5.378055],[35.356384,5.350277],[35.44749500000012,5.429444],[35.50471,5.431389],[35.821663,5.32861],[35.795273,5.2375],[35.8324970000001,5.166111],[35.773888,5.075277],[35.77444,4.798611000000108],[35.940552,4.622499],[34.38819100000012,4.609682],[33.516937,3.752222],[33.183884,3.766111000000137],[33.016663,3.888611],[32.89804800000013,3.811944],[32.719444,3.755833],[32.404442,3.743611000000101],[32.194435,3.611045],[32.19333,3.511389],[32.09360500000014,3.532500000000141],[32.068489,3.582222000000115],[31.95111100000014,3.593889],[31.92222,3.703888],[31.794441,3.817222],[31.701942,3.713055],[31.540833000000134,3.653611000000125],[31.288055,3.794722],[31.176666000000125,3.795278],[30.97472,3.69194],[30.858818,3.493394000000137],[30.786388,3.66],[30.558887,3.61389],[30.582222,3.69028],[30.551941,3.864722],[30.208611,3.95917],[30.143887000000124,4.10556],[30.058331000000123,4.13472],[29.959442,4.291389],[29.79472,4.379444],[29.81472,4.56028],[29.614719,4.656111],[29.480000000000132,4.67694],[29.43278,4.525555],[29.321663000000115,4.386666],[29.2436100000001,4.346110000000124],[29.200832,4.346110000000124],[29.01333,4.498333],[28.82111,4.484722],[28.776665,4.561944],[28.712498,4.537499],[28.65083,4.423611000000108],[28.363052,4.29],[28.1925,4.352777],[28.028053,4.502222],[27.787498,4.60139],[27.768887,4.787777],[27.65860700000013,4.897778],[27.524441,4.94361],[27.45528,5.016388],[27.458054,5.08361],[27.299999,5.22611],[27.23583200000013,5.419167],[27.28167,5.57861],[27.198055000000124,5.713611000000128],[26.981667,5.85944],[26.829441,5.905],[26.808609,5.98],[26.437496,6.077777],[26.523609000000132,6.173611000000108],[26.523609000000132,6.22111],[26.30055,6.401388],[26.298054,6.465555],[26.405,6.646388],[26.266109,6.708333],[26.10083,6.84111],[26.047775,6.963888],[25.98444400000011,7.0183320000001],[25.374165000000115,7.339444],[25.331108,7.425278000000104],[25.206944,7.497499],[25.18388700000014,7.583333],[25.29611,7.65],[25.25333,7.850555],[25.186108,7.901944],[25.080276,7.8975],[24.970276,8.003332000000114],[24.934444,8.093332],[24.80444,8.192778],[24.192497,8.30361],[24.140274,8.375832],[24.161388,8.468332],[24.269165,8.583055],[24.201111,8.68694],[23.823887000000127,8.727777000000117],[23.517776,8.714167],[23.49833,8.778332],[23.581665,8.906111],[23.583054000000118,8.988609],[23.565277,9.00528],[23.503609,8.959721],[23.448608,9.025],[23.492775,9.174166000000127],[23.556389,9.181665000000123],[23.652222,9.279999],[23.664444,9.440832],[23.631386,9.44944],[23.623333,9.535276],[23.694721000000126,9.671665],[23.669167,9.866943],[23.30389,10.45917],[23.009441,10.69861],[22.86650500000013,10.922447],[22.97472,11.20917],[22.970833,11.283054],[22.930832,11.415833000000134],[22.790276,11.429443],[22.64194,11.516109],[22.561665,11.621666],[22.61138,11.99278],[22.50333,12.165833],[22.40638700000011,12.48305],[22.466942,12.621666],[22.223331,12.74722],[22.140553000000125,12.655277000000126],[21.952774,12.643888000000118],[21.827774,12.797499000000128],[21.943333,13.05361],[22.020554000000114,13.137777000000142],[22.159721,13.190277],[22.294167,13.35861],[22.08444,13.77916],[22.230274000000122,13.962776],[22.55499600000013,14.125555000000132],[22.55527,14.231943],[22.51166,14.240276],[22.449444,14.33],[22.445553000000128,14.47972],[22.381386,14.523054000000116],[22.384163,14.554165000000124],[22.469997,14.62944],[22.7025,14.69139],[22.67055,14.859444000000108],[22.84916,15.078333],[22.935833000000116,15.11611],[22.998333,15.35639],[22.923054,15.48722],[22.937222000000133,15.561943],[23.118156,15.71029],[23.356941,15.681665],[23.608887,15.758333],[23.9996,15.698709],[24.000832,20.00194],[25.000832,19.99912],[25.001423,21.99969],[31.271111000000133,21.998333],[31.39222000000012,22.21027800000013],[31.455555,22.23222],[31.51610900000014,22.16555],[31.453888,21.998333]]]]}},{"type":"Feature","properties":{"FIPS":"SW","ISO2":"SE","ISO3":"SWE","UN":752,"NAME":"Sweden","AREA":41033,"POP2005":9038049,"REGION":150,"SUBREGION":154,"LON":15.27,"LAT":62.011},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.83667,56.826942],[16.77027500000014,56.79583],[16.49611,56.240829000000126],[16.420830000000137,56.2111],[16.3916660000001,56.465],[16.420277,56.58638800000011],[16.611942,56.868332],[16.749443,56.93972],[16.848053000000107,57.064163],[16.963055,57.229439],[16.973331,57.30527],[17.05666,57.359161],[17.10555,57.348328],[17.124165,57.32083100000011],[16.926666,57.038055],[16.83667,56.826942]]],[[[18.20611,56.911942],[18.140274,56.914993],[18.256664,57.032219],[18.254444,57.07916],[18.173332,57.141937],[18.119164,57.531105],[18.29472,57.645828],[18.46722,57.811943],[18.681942,57.913605],[19.004719,57.908607],[19.033333,57.826942],[18.92944,57.739716],[18.809166,57.703606],[18.75972,57.508049],[18.78833,57.448326],[18.711941,57.241661],[18.39722,57.134163],[18.341389,57.073883],[18.34666,56.998604000000114],[18.302498,56.937492],[18.20611,56.911942]]],[[[19.334442,57.955826],[19.16277700000012,57.92694100000011],[19.12611,57.839722],[19.034443,57.901108],[19.10472,57.975273],[19.334442,57.955826]]],[[[11.594444,57.93249500000013],[11.522499,57.951942000000145],[11.501944,58.03666],[11.735884,58.041714],[11.729166,57.993889],[11.594444,57.93249500000013]]],[[[16.816666,58.116104],[16.78333,58.096664],[16.77861,58.10055],[16.801109,58.12332900000012],[16.816666,58.116104]]],[[[11.806389000000138,58.120552],[11.553333,58.115273],[11.467222,58.101387],[11.464998,58.066109],[11.40111,58.130272000000105],[11.6775,58.286659],[11.736666000000126,58.281662],[11.809999,58.224442000000124],[11.806389000000138,58.120552]]],[[[19.23694,58.33722],[19.186665,58.391388],[19.331108,58.366104],[19.294167,58.343605],[19.23694,58.33722]]],[[[17.691387,58.91693900000012],[17.63916,58.971107],[17.67583100000013,59.054718],[17.721664,59.007774],[17.691387,58.91693900000012]]],[[[18.40583,59.023888],[18.35722,59.034996],[18.47916400000014,59.11999500000013],[18.490555,59.098053],[18.40583,59.023888]]],[[[18.537220000000104,59.223885],[18.435555,59.253609],[18.389442,59.284721],[18.49472,59.29083300000014],[18.610275000000115,59.25416600000011],[18.537220000000104,59.223885]]],[[[17.78694,59.31055],[17.671944,59.334717],[17.605553,59.416664],[17.773888,59.37277],[17.78694,59.31055]]],[[[17.734722,59.296104],[17.817497,59.277771],[17.6227760000001,59.30527500000011],[17.52027500000014,59.41833],[17.57055300000013,59.42860400000012],[17.63777,59.320549],[17.734722,59.296104]]],[[[17.26638800000012,59.374443],[17.147221,59.38666],[17.070000000000107,59.459442],[17.266941,59.44416],[17.31805,59.403053],[17.26638800000012,59.374443]]],[[[18.575554,59.44833],[18.519997,59.483604],[18.570274,59.526382],[18.63361,59.555832000000116],[18.746944,59.544998],[18.591389000000103,59.501106],[18.605274,59.461105],[18.575554,59.44833]]],[[[18.57,60.30778],[18.401108,60.36527300000011],[18.37416500000012,60.499718],[18.422497,60.486664],[18.507221,60.348053],[18.57,60.30778]]],[[[17.509163,62.363327],[17.416664,62.37666],[17.36722200000014,62.471664],[17.472221,62.458328],[17.5425,62.366104000000114],[17.509163,62.363327]]],[[[18.060833000000116,62.67083],[18.019165,62.700272],[18.03916,62.7355500000001],[18.15305300000011,62.72888],[18.060833000000116,62.67083]]],[[[20.885555,63.751663000000114],[20.84083,63.76305400000012],[20.838055,63.773331],[20.88499800000011,63.79610400000013],[20.92860800000011,63.773331],[20.885555,63.751663000000114]]],[[[21.809166,68.570541],[21.89722,68.569992],[22.063889000000128,68.4761],[22.371944,68.46361],[22.82361,68.388046],[22.899719,68.3316650000001],[23.066944,68.286377],[23.394444000000135,68.042496],[23.666111000000114,67.941666],[23.48333,67.86305],[23.507774,67.66554300000013],[23.43111,67.46554600000013],[23.76777600000014,67.41610700000011],[23.773331,67.31443800000011],[23.6055530000001,67.25943000000012],[23.571663,67.156662],[24.00777,66.800552],[23.89,66.743042],[23.878609,66.55722],[23.6466640000001,66.448318],[23.661942000000124,66.31221],[23.727776,66.195831],[23.930832,66.135544],[24.167007,65.814026],[24.04027600000012,65.806656],[23.928333,65.75694],[23.65389,65.8063810000001],[23.51833,65.800827],[23.434719,65.760544],[23.249722,65.800827],[23.23444,65.76361],[23.08111,65.698883],[22.644722,65.905548],[22.70472,65.807495],[22.66,65.75193800000011],[22.479164,65.851105],[22.375553,65.86082],[22.329166,65.82971],[22.249054,65.632492],[22.31667,65.61804200000012],[22.289719,65.66832000000011],[22.385555,65.628876],[22.42639,65.548599],[22.40583,65.535263],[21.86389,65.666656],[21.766941,65.722488],[21.84333,65.657776],[22.199165,65.54527300000012],[22.00027,65.513611],[21.8525,65.529999],[22.030277000000126,65.462219],[22.010555,65.42387400000013],[21.929443,65.398041],[21.662220000000104,65.391388],[21.586941,65.416382],[21.46833,65.380829],[21.534277,65.327271],[21.70472,65.287491],[21.65472,65.244156],[21.553608,65.234711],[21.33805500000011,65.36972],[21.260555,65.337494],[21.417221,65.306107],[21.621387,65.142212],[21.577221,65.05777],[21.472775,65.05722],[21.466663,65.007217],[21.243889,64.947769],[21.183052,64.829987],[21.109165000000132,64.82026700000011],[21.073055,64.856384],[21.03611000000012,64.82443200000012],[21.10694,64.777771],[21.30222,64.76555],[21.304996,64.66194200000011],[21.161942,64.7227630000001],[21.105000000000132,64.7227630000001],[21.111942,64.69110100000012],[21.55416,64.532486],[21.585,64.439713],[21.390553,64.335266],[21.24277500000011,64.31027200000011],[20.9575,64.139435],[20.895554,64.002487],[20.777775,63.869164],[20.638332,63.813332],[20.535,63.799164],[20.499722,63.82278],[20.41361,63.691109],[20.298611,63.646385000000116],[20.1,63.65583],[19.899441,63.609161],[19.74916500000012,63.51666],[19.779163,63.462494000000106],[19.704998,63.431938],[19.641109,63.442497],[19.61639,63.49472],[19.501663,63.549438],[19.42805,63.549438],[19.473610000000118,63.453049],[19.351665,63.435272],[19.289444000000117,63.459442],[19.23055,63.3275],[19.14,63.31027200000011],[19.04055,63.238609],[19.108608,63.21360800000013],[19.066666,63.178604],[18.88972,63.2736],[18.80105,63.244942],[18.88389,63.227104],[18.915276,63.20666],[18.8975,63.19166600000011],[18.784721,63.161942],[18.74866500000013,63.192436],[18.791832,63.198772],[18.722332,63.206604],[18.739166,63.16777],[18.28916500000014,62.99721],[18.539719000000105,62.984444],[18.580276,62.955551],[18.466942,62.85833],[18.208611000000133,62.77861],[18.08277,62.781105],[18.144997,62.816666],[18.073330000000112,62.836662],[17.97472,62.811386],[17.828331,62.993332],[17.696663,62.991943],[17.834721000000116,62.933327000000126],[17.99472,62.730553],[17.991386,62.65305300000011],[17.877777,62.659721],[18.045555,62.623604000000114],[18.048054,62.601387],[17.83555200000012,62.483887],[17.685555,62.490273],[17.654163,62.467216],[17.67139,62.43777],[17.54583,62.44638800000013],[17.422497,62.537216],[17.328888,62.486938],[17.375832,62.32444],[17.465275,62.265549],[17.65472000000011,62.23111],[17.556664,62.195549],[17.535831,62.205551],[17.55786,62.235104],[17.509464,62.22893],[17.463608,62.006386000000134],[17.3497200000001,61.945274],[17.336388000000113,61.818054],[17.38566600000013,61.756496],[17.523609000000135,61.70166],[17.498886,61.635826000000115],[17.432777,61.631104],[17.33944300000013,61.712494000000106],[17.140274,61.719719],[17.27166,61.68305],[17.18111,61.63333100000011],[17.128052,61.640549],[17.09861,61.602776],[17.222775,61.44194],[17.102776,61.39694200000013],[17.213608,61.325554],[17.150555,60.945],[17.276108,60.843048],[17.275276,60.676109],[17.3771,60.618988],[17.609165000000132,60.63222],[17.656944,60.601944],[17.602219,60.580551],[17.629444,60.522499],[17.73111,60.49166100000013],[17.72889,60.541382],[17.773052,60.57111],[17.94971800000013,60.59722],[18.227776,60.330276],[18.431942,60.343887],[18.46583,60.299438000000116],[18.607777,60.237221],[18.448887,60.23972],[18.31361,60.30722],[18.421665,60.187218],[18.816387000000134,60.09638],[18.909721000000104,59.935829],[19.070553,59.889717],[19.059166,59.823051000000135],[18.936108,59.86999500000013],[18.864719,59.79805],[19.07389,59.774162],[19.075275,59.740555],[18.74555,59.68916300000013],[18.69444,59.645271],[18.74472,59.64249],[18.645554,59.580551],[18.37833000000012,59.467499],[18.270554,59.474998],[18.276665,59.41777],[18.331387,59.392494],[18.165,59.408051],[18.203777,59.427719],[18.195831,59.455276],[18.115555,59.453049000000135],[18.05722000000014,59.391388],[18.091389,59.334442],[17.9175,59.33860800000013],[17.76444,59.400551],[17.78722,59.49832900000012],[17.845276,59.533051000000114],[17.71722,59.66333],[17.710552,59.61888900000014],[17.59222,59.656105],[17.648331,59.66583300000013],[17.654163,59.71805],[17.594166,59.80693800000011],[17.5425,59.749443],[17.448055000000124,59.73555],[17.44472100000013,59.676109],[17.543152000000134,59.573006],[17.513054,59.706383],[17.618332,59.731384],[17.61610800000011,59.695549],[17.561171000000115,59.668449],[17.757221,59.583885],[17.78666,59.535828],[17.73111,59.44277],[17.543888,59.49166100000013],[17.51833,59.512215],[17.546082,59.536987],[17.37278,59.608887],[17.38361,59.654999],[17.344166,59.62277200000011],[17.406666,59.548607],[17.41,59.46916],[17.18528,59.53860500000013],[16.94972,59.54361],[16.8649640000001,59.58473],[16.66166,59.54805],[16.551941000000113,59.6105500000001],[16.495552,59.591942],[16.546108000000117,59.550827],[16.4725,59.49749800000012],[16.178055,59.464996],[16.020275,59.49499500000013],[16.08138700000012,59.45138500000012],[16.181389,59.439438],[16.67,59.473053],[16.8127750000001,59.38694],[16.889999000000103,59.383331],[16.69278,59.471382],[16.840275000000133,59.489441000000106],[17.111664,59.374443],[17.310555,59.3488850000001],[17.253887000000134,59.258888],[17.375832,59.2475],[17.398052,59.247772],[17.35083,59.32444],[17.847221,59.264442],[17.98444400000011,59.333885000000116],[18.13361,59.31805],[18.289444000000117,59.36861],[18.40361000000013,59.366661],[18.46666,59.33027600000013],[18.43444,59.433609],[18.523052,59.421104],[18.650276,59.31916],[18.522221,59.29583],[18.318886,59.32833],[18.27722,59.31082900000012],[18.311386,59.1325],[18.021385,59.041939],[17.895832,58.90972],[17.894722,58.85889],[17.789444,58.943054000000124],[17.756664000000114,59.018326000000116],[17.764721000000122,59.123886],[17.663887,59.16833],[17.610275000000115,59.03443900000014],[17.62889,59.011665],[17.578327000000115,58.95050800000012],[17.62611,58.901939],[17.578888,58.845551],[17.349998,58.752220000000136],[17.22361,58.7305530000001],[17.032776,58.750549],[17.143055000000114,58.69472],[16.915276,58.616943000000106],[16.242222,58.66472],[16.193607,58.627495000000124],[16.649441000000138,58.620552],[16.93861,58.484161],[16.737778,58.42860400000012],[16.41333,58.474716],[16.769997,58.36722],[16.824718,58.19944],[16.742811,58.08612],[16.75027,58.012772],[16.61389,57.986938],[16.733055,57.97110700000013],[16.77805300000011,57.919441],[16.770554000000114,57.884438],[16.61360900000011,57.89222],[16.60278,57.940277],[16.495552,57.98555],[16.522331000000122,57.87783],[16.700706,57.74015],[16.418610000000115,57.893326],[16.710278,57.705276],[16.625553,57.61972],[16.6325,57.55222],[16.693333,57.469162],[16.67139,57.41083],[16.62416500000012,57.374443],[16.546108000000117,57.38166],[16.46722000000011,57.27666],[16.460278,57.167496],[16.546108000000117,57.116943],[16.584721,57.043884],[16.49277,57.03916],[16.375,56.720833],[16.21611,56.607216],[16.043331000000137,56.268883],[15.86555,56.09222],[15.59805,56.194717],[15.37528,56.138054000000125],[14.696665,56.16111000000012],[14.681944000000101,56.11555],[14.76667,56.03027300000013],[14.72,56.00027],[14.63528,56.0075],[14.603611,56.051941],[14.551388,56.055275],[14.330276,55.93694],[14.217222,55.83027600000014],[14.19611,55.715828],[14.37278,55.53777300000013],[14.193546,55.386147],[14.0375,55.38944],[13.911943,55.433884],[13.73055,55.425552],[13.344721000000105,55.339165],[12.982222,55.400551],[12.914721,55.56555200000014],[13.0405540000001,55.627495],[13.059721,55.693054],[12.609722,56.111664],[12.451666,56.297775000000115],[12.718681,56.222778],[12.813332000000115,56.232773],[12.833055,56.269165],[12.622221,56.411942],[12.67972200000014,56.466385],[12.832777000000135,56.439720000000136],[12.90111,56.457222],[12.93694,56.532494],[12.887499000000105,56.638329],[12.72527700000012,56.63971700000013],[12.613609,56.746941],[12.579443,56.830276],[12.35027700000012,56.914444],[12.349998,56.969994],[12.237778,57.059715],[12.109999,57.25],[12.15138800000011,57.287216],[12.094999,57.426941],[12.036943000000122,57.45694],[11.986111,57.341385],[11.917776,57.402222000000116],[11.913332,57.61361],[11.862499,57.607773],[11.83,57.661385],[11.887777,57.693886000000134],[11.704443,57.693329],[11.72305,57.80722],[11.668055,57.84583],[11.694166000000108,57.885277],[11.75722,57.897217000000126],[11.801388,58.026382],[11.776667,58.059441000000106],[11.88611,58.211937],[11.798054,58.318329],[11.723331,58.328888],[11.526388,58.230553],[11.405554,58.261108],[11.384165,58.311943],[11.238333000000125,58.346939],[11.201387000000123,58.399437],[11.26111,58.632217],[11.176943,58.730827],[11.233889,58.79694400000011],[11.23139,58.845276],[11.194166,58.917496],[11.106943,58.95],[11.166388,59.064438],[11.314999000000114,59.101387],[11.429192,58.98764],[11.431944,58.88861],[11.621387,58.904716],[11.75111,59.090271],[11.754444,59.188049],[11.79833,59.245277],[11.666248,59.595482],[11.902777,59.707771],[11.891109,59.79472],[11.815960000000132,59.8461],[11.956944,59.896942],[12.14,59.88832900000011],[12.476944,60.076385],[12.527777000000128,60.33416000000011],[12.589722,60.399162],[12.605833,60.479996],[12.209999,61.002495],[12.40778,61.05389],[12.637825000000133,61.057541],[12.772221000000116,61.20083],[12.85611,61.36249500000013],[12.53,61.566109],[12.40667,61.573326],[12.12444,61.72861],[12.295832000000132,62.261665],[12.047499,62.589996],[12.089443,62.74944],[12.028889,62.892494],[12.16861,63.01583],[11.936388,63.272217],[12.195000000000107,63.485275000000115],[12.139444,63.58416],[12.63389,63.94277],[12.93805,64.05332900000013],[13.23,64.093048],[13.988333000000125,64.01805100000013],[14.154722,64.185822],[14.116388,64.470551],[13.6625,64.58276400000011],[14.296438000000137,65.102127],[14.368889,65.24665800000014],[14.493055,65.313599],[14.50055,65.585831],[14.535,65.702774],[14.634722,65.826935],[14.505,66.13249200000013],[15.025276,66.149994],[15.468054,66.28387],[15.362778,66.479996],[15.625832,66.60582],[16.00999800000011,66.890823],[16.353886,67.017776],[16.40583,67.16333],[16.36138,67.237778],[16.085831,67.41165200000012],[16.192219000000136,67.5],[16.3825,67.515549],[16.508331000000112,67.60916],[16.57694,67.66554300000013],[16.726944000000117,67.899155],[17.188332,68.030273],[17.273609,68.090546],[17.884163,67.945541],[18.155277,68.16611],[18.04583,68.40943900000013],[18.09083,68.50776700000011],[18.35805,68.539154],[18.611942,68.475266],[18.952221,68.487778],[19.94805,68.34082],[20.211109,68.48220800000013],[19.956387,68.543884],[20.202499000000103,68.662216],[20.350277000000116,68.78665200000012],[20.314720000000136,68.92833],[20.096943,69.042221],[20.580929,69.0603],[20.84638600000011,69.011932],[20.938889,68.958328],[20.888885,68.925827],[20.895275,68.8936],[21.081387,68.86665],[21.420555,68.724152],[21.46555300000011,68.678055],[21.809166,68.570541]]]]}},{"type":"Feature","properties":{"FIPS":"SY","ISO2":"SY","ISO3":"SYR","UN":760,"NAME":"Syrian Arab Republic","AREA":18378,"POP2005":18893881,"REGION":142,"SUBREGION":145,"LON":38.506,"LAT":35.013},"geometry":{"type":"Polygon","coordinates":[[[42.355614,37.106926],[42.377228,37.064674],[41.835274,36.598885],[41.403046,36.525551],[41.290276,36.355553],[41.25499,36.054993],[41.378052,35.838608],[41.383881,35.625275],[41.277771,35.495544],[41.215271,35.224709],[41.229156,34.788322],[41.003876,34.419434],[38.794701,33.377594],[36.837776,32.313606],[36.400276,32.381943],[36.197495,32.533333],[36.079994,32.543327],[35.928886,32.721664],[35.763321,32.748886],[35.648888,32.685272],[35.664993,32.796661],[35.614464,32.894905],[35.683052,33.238884],[35.623634,33.245728],[35.62056,33.271454],[35.810555,33.360832],[35.826942,33.404999],[36.059166,33.579437],[35.933884,33.654716],[36.07,33.827217],[36.240829,33.856384],[36.386665,33.838608],[36.283333,33.91777],[36.623741,34.204994],[36.525833,34.431938],[36.429993,34.501938],[36.351227,34.500748],[36.459999,34.635277],[35.972771,34.647499],[35.874718,34.908333],[35.886665,35.105553],[35.959442,35.198326],[35.919998,35.421104],[35.733887,35.581665],[35.841942,35.734993],[35.92244,35.926994],[36.168053,35.817497],[36.219162,35.960274],[36.377747,36],[36.39222,36.213326],[36.690269,36.236107],[36.688599,36.289444],[36.582764,36.397491],[36.549164,36.48333],[36.659943,36.83371],[36.976379,36.763611],[37.127495,36.659157],[37.381386,36.653885],[37.784157,36.748604],[38.244164,36.914444],[38.513611,36.858047],[38.731377,36.701111],[39.038048,36.708611],[39.229996,36.665276],[39.826111,36.755829],[40.214432,36.895821],[40.439713,37.013054],[40.770821,37.11805],[40.929993,37.129715],[41.221657,37.071106],[41.539162,37.08416],[41.99527,37.172768],[42.180832,37.290543],[42.351105,37.233887],[42.355614,37.106926]]]}},{"type":"Feature","properties":{"FIPS":"SZ","ISO2":"CH","ISO3":"CHE","UN":756,"NAME":"Switzerland","AREA":4000,"POP2005":7424389,"REGION":150,"SUBREGION":155,"LON":7.908,"LAT":46.861},"geometry":{"type":"Polygon","coordinates":[[[7.697223,47.543327],[8.086666,47.560555],[8.198889,47.621666],[8.435833,47.573608],[8.519999,47.634163],[8.57642,47.59137],[8.620832,47.66111],[8.475555,47.646942],[8.406666,47.703888],[8.566111,47.806938],[8.734999,47.761383],[8.720222,47.696625],[8.800133,47.681725],[8.772221,47.717499],[8.808887,47.735832],[8.892776,47.651382],[9.0425,47.688889],[9.261095,47.662842],[9.566724,47.540451],[9.567499,47.491104],[9.65361,47.455551],[9.669998,47.387772],[9.605276,47.359993],[9.491388,47.215271],[9.512499,47.100273],[9.474637,47.057457],[9.875555,47.022491],[9.879444,46.939156],[10.109444,46.850273],[10.231388,46.878883],[10.353611,46.994995],[10.400833,47.001106],[10.488913,46.934212],[10.447498,46.763054],[10.475555,46.562492],[10.44972,46.539162],[10.305555,46.553886],[10.247499,46.583885],[10.233332,46.639999],[10.119165,46.611382],[10.050278,46.539993],[10.044998,46.449165],[10.153889,46.390274],[10.177221,46.272499],[10.078609,46.220551],[9.994999,46.291664],[9.991943,46.357773],[9.949999,46.379166],[9.813055,46.35833],[9.708332,46.298332],[9.581944,46.296944],[9.458611,46.38472],[9.455,46.472496],[9.372776,46.5075],[9.288887,46.500275],[9.249722,46.448051],[9.282221,46.419998],[9.291943,46.323051],[9.238609,46.230553],[9.035831,46.05722],[8.996666,45.973328],[9.085554,45.899162],[8.998333,45.829437],[8.951111,45.845276],[8.895555,45.955826],[8.813055,45.988609],[8.853333,46.061104],[8.826111,46.096664],[8.617777,46.120277],[8.445555,46.245827],[8.46611,46.37722],[8.436388,46.463333],[8.302776,46.422493],[8.139999,46.226105],[8.148888,46.149437],[8.00861,46.008331],[7.881944,45.977776],[7.855742,45.919052],[7.647499,45.98111],[7.536666,45.981667],[7.393332,45.916107],[7.099444,45.883606],[7.005833,45.999443],[6.783889,46.148048],[6.803055,46.427773],[6.633611,46.464165],[6.295555,46.394165],[6.225555,46.322495],[6.271944,46.26194],[6.245555,46.21833],[6.152222,46.15361],[5.996388,46.146942],[5.968055,46.212494],[6.117222,46.260551],[6.106109,46.297489],[6.15861,46.369995],[6.071111,46.426384],[6.135278,46.539719],[6.129999,46.59333],[6.434999,46.758049],[6.460278,46.895828],[6.528333,46.971664],[6.639722,47.004166],[6.971666,47.291939],[7.000833,47.364998],[6.879999,47.360275],[6.990555,47.497215],[7.14642,47.499054],[7.178333,47.445831],[7.246944,47.42083],[7.415555,47.445274],[7.496944,47.494995],[7.49861,47.54805],[7.557221,47.581383],[7.674444,47.606384],[7.621111,47.561104],[7.697223,47.543327]],[[8.710255,47.696808],[8.705,47.713051],[8.670555,47.711105],[8.678595,47.693344],[8.710255,47.696808]]]}},{"type":"Feature","properties":{"FIPS":"TD","ISO2":"TT","ISO3":"TTO","UN":780,"NAME":"Trinidad and Tobago","AREA":513,"POP2005":1323722,"REGION":19,"SUBREGION":29,"LON":-61.253,"LAT":10.468},"geometry":{"type":"MultiPolygon","coordinates":[[[[-60.92306,10.79722],[-61.035278,10.675833],[-61.04584,10.491943],[-60.992226,10.3425],[-61.008057,10.140554000000122],[-61.199722,10.06944],[-61.803337,10.08166],[-61.91806,10.042776],[-61.91528,10.074165000000107],[-61.81778,10.127777],[-61.5014,10.238333000000123],[-61.45834,10.27833],[-61.47362,10.597776000000124],[-61.54389,10.668333],[-61.65445,10.678055],[-61.66222,10.709166],[-61.605835,10.741665],[-61.1964,10.789444],[-61.01694,10.84194],[-60.910835,10.83417],[-60.92306,10.79722]]],[[[-60.63945,11.203054],[-60.7975,11.1416660000001],[-60.847504,11.15833300000014],[-60.657784,11.30139],[-60.526672,11.346109],[-60.527229,11.262499],[-60.63945,11.203054]]]]}},{"type":"Feature","properties":{"FIPS":"TH","ISO2":"TH","ISO3":"THA","UN":764,"NAME":"Thailand","AREA":51089,"POP2005":63002911,"REGION":142,"SUBREGION":35,"LON":100.844,"LAT":15.7},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.219162,6.5325],[99.169495,6.537777],[99.159988,6.548888],[99.25611900000013,6.57194],[99.219162,6.5325]]],[[[99.668045,6.496387],[99.594986,6.593888],[99.662811,6.702995],[99.703873,6.549443],[99.668045,6.496387]]],[[[100.53609,7.156110000000126],[100.520813,7.154999],[100.53497,7.174166],[100.54192400000011,7.169721],[100.53609,7.156110000000126]]],[[[99.38916,7.194721],[99.36886600000014,7.25528],[99.3936,7.270555000000115],[99.419144,7.234165000000131],[99.38916,7.194721]]],[[[99.110809,7.468055000000106],[99.04248,7.525832],[99.02415500000012,7.636666],[99.074707,7.601943],[99.110809,7.468055000000106]]],[[[99.11970500000012,7.591944],[99.045258,7.643055],[99.04582,7.669443000000114],[99.12191800000011,7.665277],[99.11970500000012,7.591944]]],[[[98.434708,7.93055],[98.42415,7.92861],[98.41804500000012,7.93611],[98.4369200000001,7.94361],[98.434708,7.93055]]],[[[98.603592,7.901111],[98.573044,7.916944],[98.526093,8.12139],[98.6119230000001,8.048609],[98.603592,7.901111]]],[[[98.399841,7.941753],[98.44109,7.90611],[98.43637100000011,7.871665],[98.305252,7.75722],[98.27193,7.922221],[98.282486,8.186386000000141],[98.4019320000001,8.08138700000012],[98.399841,7.941753]]],[[[98.61665,8.084442],[98.568329,8.11722],[98.628311,8.189165],[98.63554,8.15667],[98.61665,8.084442]]],[[[98.266663,9.030554],[98.24109,9.03861000000012],[98.2433170000001,9.123608000000102],[98.24887100000012,9.157221],[98.28082300000011,9.158054],[98.324432,9.08416],[98.266663,9.030554]]],[[[97.87915,9.381941],[97.835266,9.402777000000128],[97.847214,9.43222],[97.866379,9.41972],[97.87915,9.381941]]],[[[97.89888,9.437498],[97.866653,9.426664],[97.84748800000011,9.458609],[97.883881,9.475554],[97.89888,9.437498]]],[[[99.681366,9.506109],[99.66499,9.524443],[99.7086,9.53861],[99.701935,9.513332],[99.681366,9.506109]]],[[[98.46748400000013,9.574999000000105],[98.457764,9.573887],[98.464432,9.585554],[98.469147,9.584721],[98.46748400000013,9.574999000000105]]],[[[99.976089,9.41361000000012],[99.940536,9.420553],[99.93220500000012,9.546944],[100.080833,9.58861],[100.068329,9.468054],[99.976089,9.41361000000012]]],[[[99.685532,9.606665],[99.67665,9.607498],[99.673599,9.62916],[99.68803,9.61555],[99.685532,9.606665]]],[[[98.407211,9.714165],[98.38081,9.732775],[98.408325,9.77083],[98.420822,9.729164],[98.407211,9.714165]]],[[[100.08167300000014,9.686665],[99.99054,9.711388000000113],[99.987488,9.796387],[100.077477,9.75861],[100.08167300000014,9.686665]]],[[[102.59552,11.56361],[102.531357,11.601387000000102],[102.560226,11.7544],[102.60553,11.695831],[102.59552,11.56361]]],[[[102.435791,11.95416],[102.29135100000012,11.974442000000122],[102.25055,12.15],[102.356369,12.11083],[102.435791,11.95416]]],[[[102.2410890000001,12.283888000000102],[102.23553,12.285276],[102.2397,12.299442],[102.2447130000001,12.29222],[102.2410890000001,12.283888000000102]]],[[[100.68887300000011,12.923609],[100.671654,12.938332],[100.67637600000012,12.952776],[100.684982,12.95166],[100.68887300000011,12.923609]]],[[[100.816673,13.129442],[100.805252,13.14583],[100.807213,13.18028],[100.821381,13.15055500000011],[100.816673,13.129442]]],[[[100.081322,20.34884],[100.16304,20.28833],[100.256378,20.385273],[100.33276400000011,20.388607],[100.454353,20.19089],[100.520538,20.145],[100.58046,20.157768],[100.50916,19.88194],[100.40416,19.754444],[100.503601,19.526665],[100.582764,19.49305],[100.65193,19.551662],[100.77527,19.48444],[100.9122,19.619717],[101.219353,19.596405],[101.2811,19.562218],[101.26888300000013,19.4772190000001],[101.21054100000015,19.459438],[101.2024770000001,19.35389],[101.289978,19.106106],[101.35443,19.03861],[101.251938,18.88972],[101.236923,18.74138],[101.267487,18.68055],[101.058029,18.446384],[101.0916600000001,18.37694],[101.16026,18.342495],[101.170822,18.087219],[101.1111,17.95361],[101.0211,17.890274],[100.987488,17.71944],[100.91666,17.570831],[101.02832000000011,17.544441],[101.162773,17.459995],[101.309708,17.62472],[101.582489,17.785831],[101.559708,17.813835],[101.575821,17.85944],[101.6891480000001,17.90583],[101.77998400000013,18.063332000000116],[101.907211,18.034164],[102.089394,18.21498300000013],[102.17886,18.193886],[102.2952580000001,18.050274],[102.419434,17.983883],[102.593872,17.95694],[102.609154,17.88221700000014],[102.683594,17.819996],[102.858597,17.974716],[102.95166,18.00722],[103.04498300000012,17.99416],[103.06942,18.123026],[103.25665300000014,18.275],[103.236366,18.35389],[103.30525200000011,18.421108],[103.507767,18.42166],[103.842484,18.311108000000104],[103.972488,18.32944],[104.07193,18.199718],[104.10332,18.104717],[104.216927,17.988049],[104.277771,17.849998],[104.33554100000013,17.82638],[104.46775800000012,17.64333],[104.699142,17.523331],[104.805542,17.38194],[104.809143,17.190273],[104.740807,17.006943],[104.76915,16.72111],[104.75278,16.517498000000103],[105.012497,16.251663],[105.07692700000011,16.0975],[105.419708,16.013885],[105.345543,15.929998000000126],[105.40109,15.80722],[105.449142,15.75694],[105.50471,15.767498],[105.59637,15.72805],[105.63942700000013,15.645277],[105.59999,15.433054000000139],[105.531662,15.394444000000135],[105.468872,15.124998],[105.59055,15.000555],[105.56638,14.883053],[105.512497,14.80583],[105.536102,14.563332000000116],[105.370529,14.40472],[105.179703,14.345],[105.139709,14.241108],[105.05330700000013,14.2272210000001],[104.995529,14.325554000000125],[105.001938,14.383333],[104.805542,14.448332],[104.645538,14.430277],[104.57554600000014,14.36527],[104.473038,14.356941],[104.278587,14.408888000000104],[103.922211,14.339165],[103.72276,14.390276],[103.659149,14.447777],[103.46692700000011,14.371664],[103.143883,14.317221],[102.95999100000012,14.204998],[102.902481,14.03666],[102.791656,13.93694],[102.72442600000011,13.76583],[102.56165,13.678886],[102.60027300000013,13.60555],[102.53830700000015,13.569164],[102.37719700000014,13.573887],[102.34554300000013,13.277498],[102.49247700000012,12.976664],[102.53498800000011,12.805277000000103],[102.503883,12.680832000000121],[102.636108,12.60111],[102.779427,12.45194],[102.716377,12.16555],[102.847473,11.835831],[102.913857,11.752222],[102.916092,11.635851],[102.906631,11.73472],[102.803627,11.874977],[102.762207,12.029444000000126],[102.64498900000012,12.1725],[102.55554200000012,12.203331],[102.521927,12.116665],[102.33777,12.195276],[102.319153,12.29222],[102.362198,12.351664],[102.336113,12.363052],[102.309418,12.309164000000122],[102.236923,12.309998],[102.06694,12.4813860000001],[102.060257,12.5675],[101.94664,12.525],[101.856644,12.651388],[101.746643,12.70722],[101.678589,12.692497],[101.644707,12.645554000000118],[101.38889300000011,12.606108],[101.085541,12.676109],[100.97522,12.640924],[100.96692700000011,12.5975],[100.853867,12.68277],[100.840553,12.731386],[100.875526,12.76861],[100.91998300000012,12.984442],[100.90165700000011,13.07222],[100.943588,13.19972],[100.91304000000014,13.30222],[100.985527,13.36861],[100.976349,13.462809],[100.579163,13.519165],[100.222214,13.46833],[100.057747,13.416666],[99.956787,13.29108],[100.071114,13.153887000000111],[100.10471300000012,13.043055],[100.045532,12.955553],[99.961655,12.674442],[100.021378,12.194164],[99.971649,12.089720000000113],[99.860809,11.976942],[99.782211,11.736109],[99.638046,11.509722],[99.491928,11.115553],[99.502487,10.92166],[99.24220300000013,10.525276],[99.194977,10.372219],[99.149155,10.365553],[99.19303900000011,10.20055],[99.150269,10.110275],[99.169708,9.851942],[99.14749,9.763332000000105],[99.17804,9.636387],[99.299423,9.413054000000102],[99.30304000000012,9.385277],[99.2249910000001,9.33027600000014],[99.26609800000011,9.21972],[99.453049,9.192497],[99.70748900000012,9.318331],[99.8477630000001,9.30083100000013],[99.958603,8.625275000000101],[100.110237,8.40944],[100.157204,8.380831000000114],[100.18608100000012,8.398609],[100.141663,8.52472],[100.224136,8.440832],[100.4597,7.409721],[100.58081,7.221944],[100.546082,7.19583],[100.43886,7.28611],[100.295517,7.776111],[100.209702,7.77861],[100.146088,7.710555],[100.180801,7.520555],[100.266083,7.37833],[100.36803,7.32778],[100.421082,7.159444000000121],[100.535248,7.12861],[100.61441000000013,7.177776000000107],[100.777191,6.969443000000126],[101.029968,6.844722],[101.359711,6.873332],[101.289688,6.937777],[101.541367,6.851388],[101.77998400000013,6.484165],[102.09523,6.23614],[102.09053,6.15416],[101.946091,5.964722],[101.943848,5.861943],[101.833862,5.743332],[101.762482,5.78889],[101.69164300000011,5.76361],[101.658859,5.860555],[101.569977,5.916666],[101.3119,5.807221],[101.22606700000011,5.673332],[101.145813,5.63111],[100.99025,5.788054],[101.035797,5.896111000000133],[101.101357,5.926944],[101.119423,5.984444],[101.11551700000012,6.248888000000136],[101.009697,6.269444],[100.85747,6.23444],[100.83359,6.419443],[100.75415,6.501944],[100.661087,6.44749800000011],[100.387482,6.53611],[100.334412,6.58694400000013],[100.293854,6.70388800000012],[100.195801,6.7025],[100.171356,6.476665],[100.127113,6.42495],[100.09497,6.536387],[100.049133,6.51028],[99.847198,6.777222000000108],[99.684418,6.879999],[99.6822,7.031943],[99.74971,7.12444],[99.685257,7.11055],[99.58581500000014,7.14028],[99.535538,7.235276],[99.386658,7.304443],[99.339981,7.37194],[99.348038,7.45389],[99.259811,7.6558],[99.13832100000013,7.737777000000108],[99.104706,7.69194],[99.03804,7.703054],[99.016663,7.813888],[99.03637700000013,7.895],[98.88526900000011,8.016109],[98.838043,7.995554000000141],[98.77026400000011,8.020277],[98.701096,8.302498],[98.619705,8.28611],[98.656372,8.38361],[98.44136,8.299166],[98.467758,8.217775],[98.438583,8.149166],[98.39305100000013,8.134165],[98.27415500000012,8.274443],[98.22943,8.421665000000132],[98.19331,8.56361],[98.260818,8.853886000000102],[98.3391570000001,9.01055],[98.32805,9.2075],[98.45332300000013,9.55333],[98.45804,9.555277],[98.562195,9.729998],[98.546646,9.878054],[98.698029,10.17055],[98.75943,10.409721],[98.82388300000014,10.516666],[98.77388,10.616941],[98.78276100000011,10.672775],[99.04887400000013,10.958054],[99.174149,11.04749900000013],[99.46555,11.568331],[99.56915300000014,11.63722],[99.66165200000012,11.82694],[99.584717,11.881386],[99.55664100000011,12.01583],[99.57332,12.136665],[99.49971,12.188332000000116],[99.455551,12.298609],[99.43623400000013,12.574434],[99.245255,12.723608],[99.112198,13.05583],[99.120819,13.17583100000013],[99.21277,13.216108],[99.173965,13.727781],[98.971649,14.08361],[98.61692800000014,14.319164],[98.44775400000013,14.605831],[98.32027,14.719997],[98.259995,14.816666],[98.20109600000012,15.074999],[98.205475,15.226778],[98.397766,15.27111100000013],[98.42248,15.359997000000135],[98.497482,15.387777],[98.558868,15.329998000000103],[98.579987,15.35305],[98.596375,15.45833],[98.565262,15.72277],[98.631653,16.046108],[98.68248,16.12444],[98.808029,16.10305],[98.856094,16.137775],[98.91859,16.26861],[98.92637600000012,16.39111],[98.86499000000015,16.438606000000107],[98.71582,16.276386000000116],[98.68969700000014,16.284996],[98.6624910000001,16.460274],[98.47777,16.73499],[98.54999,16.854717000000107],[98.511108,16.941105],[98.4236,17.053329],[98.374695,17.05055],[98.118866,17.313885],[97.96887200000015,17.52833],[97.77832,17.703327],[97.686646,17.86444],[97.75194,17.972218],[97.61804,18.23138],[97.64305100000013,18.290276],[97.563599,18.327774],[97.535812,18.268608],[97.501389,18.27583],[97.345261,18.550831],[97.359985,18.583054],[97.458603,18.49277100000012],[97.54470800000011,18.5],[97.652771,18.562218],[97.7747,18.569996],[97.747757,18.86555],[97.6772,18.93416],[97.83638000000013,19.10110900000012],[97.834152,19.289997],[97.79248000000013,19.401939],[97.86908,19.570175],[98.03499,19.643887],[98.049988,19.80749900000012],[98.13943,19.783054000000106],[98.24220300000013,19.689995],[98.476028,19.69367],[98.836929,19.816387000000134],[98.8961,19.770554],[98.995529,19.780552],[99.036102,19.84277],[99.02249100000012,19.92777],[99.068878,20.090832],[99.1702580000001,20.128052],[99.32554600000014,20.06611],[99.45972,20.100273],[99.538879,20.149441000000138],[99.55525,20.19361],[99.50221,20.308887000000137],[99.522766,20.35277600000012],[99.673599,20.310829],[99.79748,20.331387],[99.86998,20.427219],[99.959152,20.455273],[100.081322,20.34884]]]]}},{"type":"Feature","properties":{"FIPS":"TI","ISO2":"TJ","ISO3":"TJK","UN":762,"NAME":"Tajikistan","AREA":13996,"POP2005":6550213,"REGION":142,"SUBREGION":143,"LON":69.42,"LAT":38.665},"geometry":{"type":"Polygon","coordinates":[[[74.915741,37.237328],[74.832764,37.325447],[74.684265,37.399742],[74.542206,37.381798],[74.247208,37.409546],[74.146103,37.336182],[73.738586,37.221649],[73.61998,37.262482],[73.649429,37.304153],[73.768875,37.341125],[73.775986,37.434296],[73.456375,37.476105],[73.307205,37.462753],[72.793594,37.226234],[72.658508,37.021202],[72.306351,36.978104],[71.842758,36.692101],[71.6772,36.67601],[71.554688,36.760681],[71.45694,36.944733],[71.429428,37.075829],[71.44693,37.20723],[71.490265,37.28363],[71.50296,37.604546],[71.588593,37.815651],[71.591934,37.902618],[71.515366,37.948456],[71.334717,37.887871],[71.252777,37.922035],[71.35887,38.162094],[71.363037,38.248497],[70.953049,38.47184],[70.71138,38.409866],[70.346939,38.022278],[70.236649,37.937263],[70.16138,37.933372],[70.16554,37.871719],[70.246933,37.812546],[70.286377,37.702339],[70.253601,37.615746],[70.155823,37.536232],[70.013885,37.545547],[69.899155,37.614998],[69.793045,37.582771],[69.515823,37.580826],[69.380264,37.451103],[69.426086,37.207214],[69.315262,37.115273],[69.246643,37.094154],[69.125259,37.163048],[68.99971,37.30777],[68.887772,37.3386],[68.664154,37.274994],[68.623871,37.200546],[68.334427,37.108887],[68.28415,37.030548],[68.187195,37.020546],[68.058014,36.932526],[68.001389,36.936104],[67.775543,37.10833],[67.779877,37.185822],[67.84137,37.281662],[67.825272,37.479156],[67.917206,37.61721],[68.073044,37.765274],[68.150543,37.928047],[68.277481,37.958885],[68.384155,38.195541],[68.331375,38.273323],[68.215546,38.332214],[68.127197,38.424438],[68.07193,38.541382],[68.113312,38.797218],[68.196365,38.854439],[68.113312,38.99749],[67.984421,39.008049],[67.863312,38.976654],[67.709427,38.99666],[67.694702,39.13472],[67.381927,39.209717],[67.365997,39.28878],[67.410538,39.299164],[67.441956,39.483582],[67.709717,39.625824],[68.353317,39.536659],[68.540268,39.55471],[68.629974,39.656097],[68.64267,39.858238],[68.722214,39.871376],[68.760818,39.827492],[68.909149,39.89138],[68.785263,40.070549],[69.00999,40.089714],[68.984421,40.148331],[68.71388,40.116386],[68.600815,40.178329],[69.032211,40.238602],[69.218597,40.191376],[69.31749,40.207497],[69.338318,40.339157],[69.257217,40.507217],[69.356094,40.772491],[69.459152,40.811104],[69.539978,40.779434],[69.685806,40.643608],[69.732483,40.638603],[69.823044,40.715546],[70.050262,40.769981],[70.316666,40.894112],[70.374695,40.958282],[70.381653,41.027725],[70.447479,41.048286],[70.658035,40.870224],[70.708038,40.771057],[70.796799,40.725594],[70.346649,40.458275],[70.37553,40.376404],[70.465271,40.349663],[70.625809,40.210213],[70.98204,40.244843],[70.989426,40.189934],[70.661102,40.103539],[70.6436,39.989349],[70.498032,39.90683],[70.467209,39.936272],[70.5522,40.009346],[70.542206,40.046021],[70.348602,40.082962],[70.279709,40.135193],[70.024155,40.216377],[69.60582,40.111938],[69.540817,40.131378],[69.483871,40.03611],[69.526093,39.931938],[69.424988,39.901932],[69.338318,39.996384],[69.284988,39.887215],[69.249146,39.75444],[69.308594,39.691933],[69.311096,39.530273],[69.506653,39.536942],[69.589706,39.57888],[69.708038,39.587769],[69.85054,39.536942],[70.181366,39.584366],[70.301926,39.551506],[70.507492,39.607056],[70.638321,39.577065],[70.7211,39.425377],[70.997757,39.40094],[71.097214,39.510429],[71.473038,39.6213],[71.55304,39.567139],[71.515,39.498787],[71.54248,39.461014],[71.756653,39.462135],[71.77443,39.391022],[71.731369,39.337395],[71.773041,39.277946],[72.07666,39.374641],[72.139709,39.274635],[72.248596,39.191856],[72.342209,39.336319],[72.415817,39.358543],[72.593048,39.363823],[72.664154,39.401871],[72.866379,39.361603],[73.15387,39.353264],[73.343872,39.394653],[73.369705,39.441872],[73.491364,39.469925],[73.65416,39.460762],[73.669983,39.344093],[73.617203,39.232147],[73.721649,39.082436],[73.853317,38.969093],[73.832764,38.93882],[73.743042,38.926598],[73.70444,38.875488],[73.817764,38.607712],[73.9422,38.538826],[74.068878,38.536598],[74.060532,38.604652],[74.134155,38.673264],[74.354706,38.674377],[74.788589,38.527428],[74.856644,38.470482],[74.8647,38.388824],[74.794434,38.306038],[74.814697,38.078827],[74.913605,38.017715],[74.902771,37.84716],[74.991089,37.783829],[74.902771,37.647156],[74.949417,37.562981],[75.187485,37.406586],[75.096649,37.321854],[74.915741,37.237328]]]}},{"type":"Feature","properties":{"FIPS":"TL","ISO2":"TK","ISO3":"TKL","UN":772,"NAME":"Tokelau","AREA":1,"POP2005":1401,"REGION":9,"SUBREGION":61,"LON":-171.853,"LAT":-9.193},"geometry":{"type":"MultiPolygon","coordinates":[[[[-171.214722,-9.377499],[-171.22391,-9.37889],[-171.224701,-9.34556],[-171.211426,-9.363056],[-171.214722,-9.377499]]],[[[-171.84308,-9.207502],[-171.860535,-9.20667],[-171.853882,-9.16806],[-171.847504,-9.174168],[-171.84308,-9.207502]]],[[[-172.483917,-8.58722],[-172.49304,-8.5825],[-172.496979,-8.553888],[-172.48361,-8.566666],[-172.483917,-8.58722]]]]}},{"type":"Feature","properties":{"FIPS":"TN","ISO2":"TO","ISO3":"TON","UN":776,"NAME":"Tonga","AREA":72,"POP2005":99361,"REGION":9,"SUBREGION":61,"LON":-175.185,"LAT":-21.202},"geometry":{"type":"MultiPolygon","coordinates":[[[[-174.91086,-21.42667],[-174.91727,-21.45417],[-174.96582,-21.417778],[-174.9747,-21.365833],[-174.91144,-21.30611],[-174.91086,-21.42667]]],[[[-175.145844,-21.17806],[-175.11948,-21.132504],[-175.047241,-21.13944],[-175.14529,-21.26806],[-175.32364,-21.17444],[-175.359467,-21.099171],[-175.3053,-21.065002],[-175.27667,-21.125],[-175.145844,-21.17806]]],[[[-174.76083,-20.27639],[-174.785309,-20.27167],[-174.79196,-20.23472],[-174.76004,-20.23722],[-174.76083,-20.27639]]],[[[-174.41394,-19.926666],[-174.42255,-19.910004],[-174.390869,-19.881668],[-174.38895,-19.90056],[-174.41394,-19.926666]]],[[[-174.318604,-19.82194],[-174.35498,-19.811951],[-174.315857,-19.76417],[-174.306427,-19.77195],[-174.318604,-19.82194]]],[[[-175.056671,-19.800838],[-175.0986,-19.749725],[-175.0817,-19.70639],[-175.05029,-19.728336],[-175.056671,-19.800838]]],[[[-174.27252,-19.752785],[-174.30722,-19.740833],[-174.25613,-19.688053],[-174.24918,-19.70723],[-174.27252,-19.752785]]],[[[-175.018341,-19.691387],[-175.03586,-19.67667],[-175.00558,-19.6525],[-175.00394,-19.66445],[-175.018341,-19.691387]]],[[[-174.24448,-19.656113],[-174.281952,-19.634445],[-174.291962,-19.59444],[-174.28003,-19.59278],[-174.24448,-19.656113]]],[[[-174.646973,-18.83028],[-174.675049,-18.80445],[-174.64978,-18.78306],[-174.62308,-18.80944],[-174.646973,-18.83028]]],[[[-174.0614,-18.704723],[-174.090271,-18.703056],[-174.097809,-18.696388],[-174.07364,-18.68111],[-174.0614,-18.704723]]],[[[-174.019745,-18.71722],[-174.03476,-18.713886],[-174.04333,-18.68084],[-174.0192,-18.694447],[-174.019745,-18.71722]]],[[[-174.08972,-18.67417],[-174.123871,-18.70445],[-174.128052,-18.70333],[-174.11581,-18.67139],[-174.08972,-18.67417]]],[[[-173.91055,-18.63806],[-173.98697,-18.68417],[-174.05444,-18.66972],[-174.07059,-18.6325],[-173.995544,-18.57334],[-173.93921,-18.568893],[-173.91055,-18.63806]]],[[[-175.64474,-15.629168],[-175.683929,-15.589724],[-175.6214,-15.560835],[-175.60947,-15.60055],[-175.64474,-15.629168]]]]}},{"type":"Feature","properties":{"FIPS":"TO","ISO2":"TG","ISO3":"TGO","UN":768,"NAME":"Togo","AREA":5439,"POP2005":6238572,"REGION":2,"SUBREGION":11,"LON":1.081,"LAT":8.799},"geometry":{"type":"Polygon","coordinates":[[[1.398542,9.429901],[1.416667,9.32111],[1.567222,9.169998],[1.620555,9.026943],[1.655421,7.52977],[1.6425,6.995555],[1.548523,6.995179],[1.609167,6.880833],[1.575278,6.679722],[1.749166,6.456666],[1.799327,6.281057],[1.198891,6.100546],[1.201111,6.16],[1.099975,6.160341],[1.000278,6.327777],[0.904722,6.329444],[0.758889,6.447778],[0.723333,6.518332],[0.744722,6.573333],[0.658056,6.612222],[0.648333,6.72611],[0.566944,6.816111],[0.525,6.947778],[0.608055,7.014444],[0.652951,7.369641],[0.641944,7.402222],[0.570278,7.385278],[0.539722,7.410555],[0.510556,7.460555],[0.514167,7.557777],[0.596389,7.705555],[0.622926,7.89673],[0.611667,8.21611],[0.726944,8.285],[0.727222,8.321388],[0.630556,8.495277],[0.465556,8.599722],[0.382735,8.760756],[0.4875,8.79361],[0.512778,8.844444],[0.514444,8.918888],[0.448333,9.032221],[0.5275,9.206388],[0.550833,9.411388],[0.440556,9.494165],[0.358889,9.488609],[0.276389,9.41861],[0.2175,9.457222],[0.253056,9.65361],[0.324444,9.76222],[0.353611,10.031111],[0.400229,10.030489],[0.349722,10.115276],[0.368333,10.259443],[0.286389,10.413887],[0.228889,10.409443],[0.045833,10.586111],[-0.077222,10.645555],[0.034444,11.074999],[-0.021111,11.103611],[-0.096667,11.092222],[-0.149762,11.13854],[0.504167,11.006666],[0.504167,10.936943],[0.666111,10.996111],[0.91797,10.996399],[0.879444,10.799721],[0.802186,10.712442],[0.776667,10.376665],[1.355,9.995277],[1.37,9.636389],[1.3375,9.5425],[1.364254,9.481348],[1.388611,9.492222],[1.398542,9.429901]]]}},{"type":"Feature","properties":{"FIPS":"TP","ISO2":"ST","ISO3":"STP","UN":678,"NAME":"Sao Tome and Principe","AREA":96,"POP2005":152622,"REGION":2,"SUBREGION":17,"LON":6.629,"LAT":0.201},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.523889000000111,0.01833],[6.46722,0.259722000000124],[6.617777,0.403611],[6.687778,0.402222],[6.76667,0.29056],[6.752777,0.228889],[6.657777000000124,0.100556],[6.523889000000111,0.01833]]],[[[7.423055,1.556111],[7.39917,1.530555],[7.327222,1.607222],[7.406666,1.70194400000014],[7.46417,1.678611000000103],[7.423055,1.556111]]]]}},{"type":"Feature","properties":{"FIPS":"TS","ISO2":"TN","ISO3":"TUN","UN":788,"NAME":"Tunisia","AREA":15536,"POP2005":10104685,"REGION":2,"SUBREGION":15,"LON":9.596,"LAT":35.383},"geometry":{"type":"MultiPolygon","coordinates":[[[[10.99361,33.75],[10.865,33.638611],[10.822498,33.729721],[10.728333,33.713051],[10.72611,33.880829],[10.79639,33.896111],[10.96833,33.8575],[11.05722,33.79805],[10.99361,33.75]]],[[[11.06472,34.640549000000135],[11.035000000000139,34.61749300000014],[10.961111,34.655273],[11.04833200000013,34.666107],[11.06472,34.640549000000135]]],[[[11.13722,34.675278],[11.114166,34.67582700000014],[11.12361,34.702774],[11.230833,34.82111],[11.30222,34.80332900000013],[11.278889,34.739441],[11.13722,34.675278]]],[[[10.80861,37.11944],[10.794998,37.118332000000116],[10.791943,37.126389],[10.814722,37.1252750000001],[10.80861,37.11944]]],[[[9.845247,37.13935],[9.93165,37.198578],[9.858604,37.228867],[10.040277,37.26194],[10.252499,37.186386],[10.125555,37.141663],[10.21176700000012,37.12807500000014],[10.168055,37.058884],[10.19722,36.990829],[10.345554,36.874161],[10.289444000000117,36.813332000000116],[10.278889,36.847221000000104],[10.2075,36.833885],[10.193333,36.79083],[10.381943,36.72333],[10.519444,36.77111100000013],[10.59916,36.878326],[10.705,36.883331],[10.813055000000132,36.945549],[10.898054,37.04610400000013],[11.02916,37.088333],[11.067778,37.051384],[11.1022210000001,36.904442],[10.897221,36.648048],[10.800278,36.465553000000114],[10.522448,36.362854],[10.467222,36.249718],[10.45528,36.123329],[10.519997,35.972221],[10.685833,35.788605],[10.862778,35.685272],[11.028055,35.639717],[11.0225,35.34583],[11.128887,35.23583200000013],[11.0225,35.13194],[11.011665000000107,35.04722],[10.728333,34.66583300000013],[10.63111,34.631386000000134],[10.57,34.53889],[10.437498,34.50055],[10.336111,34.40749],[10.11139,34.31472],[10.005833,34.166939],[10.079721,33.935272],[10.331944,33.700272],[10.48,33.637497],[10.71417,33.707771],[10.717222,33.605553],[10.66889,33.536942],[10.693609,33.489998],[10.746944,33.472221],[10.912222,33.537773],[10.93222,33.56944],[10.904444,33.620552],[11.048611000000108,33.616943000000106],[11.109722,33.544998],[11.119999,33.283333],[11.17111,33.21083],[11.365,33.181664],[11.440832,33.201942],[11.52608,33.171135],[11.466389,32.644165],[11.582777,32.47666],[11.555555,32.431664],[11.41472,32.35305],[10.8825,32.13916000000012],[10.820276,32.03],[10.69861,31.9625],[10.504999,31.74139],[10.342222,31.72944],[10.287222,31.694164],[10.139444,31.509998],[10.123333,31.422497],[10.263887,31.079166],[10.290833,30.914165],[10.21361,30.730831],[9.882496000000115,30.347775],[9.537113,30.234390000000133],[9.055277,32.099998],[8.348610000000122,32.533333],[8.306110000000103,32.83416000000011],[8.090277,33.11444100000011],[8.022778,33.112778],[7.743055,33.229164],[7.72503,33.4194],[7.556110000000103,33.678604],[7.491666,33.91333],[7.530555,34.10666700000013],[7.64139,34.204994],[7.777499,34.242493],[7.850555,34.423332],[8.123333000000116,34.539162],[8.251665,34.64444],[8.224998000000141,34.690277],[8.29028,34.758331],[8.28611,34.965553],[8.32611100000014,35.10472],[8.40111,35.192215],[8.308332000000119,35.339165],[8.34417,35.65361],[8.277498,35.74916100000013],[8.260555000000124,35.856384],[8.37611,36.426666000000125],[8.306944,36.479996],[8.195833,36.48888],[8.193888,36.543610000000115],[8.447498,36.657219],[8.476387000000102,36.74360700000011],[8.63805,36.831108],[8.62203,36.941368],[8.8325,36.981941],[9.066111,37.16083],[9.734444,37.340553],[9.864723,37.324722],[9.854441,37.256096],[9.77166000000011,37.21415],[9.845247,37.13935]]],[[[8.917776000000115,37.510826],[8.896111,37.525833],[8.944721,37.538055],[8.94417,37.51666],[8.917776000000115,37.510826]]]]}},{"type":"Feature","properties":{"FIPS":"TU","ISO2":"TR","ISO3":"TUR","UN":792,"NAME":"Turkey","AREA":76963,"POP2005":72969723,"REGION":142,"SUBREGION":145,"LON":35.179,"LAT":39.061},"geometry":{"type":"MultiPolygon","coordinates":[[[[26.078053,39.7836],[26.0186,39.799431],[25.974995,39.829987],[26.07582900000011,39.839722],[26.078053,39.7836]]],[[[25.82444,40.100266],[25.731667,40.09304],[25.663883000000112,40.126389],[25.776665,40.212212],[25.934441,40.241096],[26.013611,40.157494],[25.989998000000128,40.128876000000105],[25.82444,40.100266]]],[[[27.60722,40.57222],[27.528606,40.60027],[27.531109,40.64833],[27.735271,40.6344380000001],[27.60722,40.57222]]],[[[35.096931,41.961655],[35.136932000000115,41.858047000000106],[35.265266,41.72582],[35.506386,41.63805],[35.621666,41.631653],[35.955544,41.734993000000145],[36.0511,41.691933],[36.13082900000012,41.59915],[36.13082900000012,41.46443],[36.240273,41.35611],[36.429153,41.242775],[36.531662,41.26777],[36.648041,41.359444],[36.809998000000114,41.3555530000001],[37.023331,41.26748700000013],[37.04999,41.171097],[37.2966540000001,41.13693],[37.526375000000144,41.030266],[37.60777,41.047768],[37.687485,41.13721],[37.786385,41.10054800000012],[37.79361,41.045547],[37.892487,40.98277300000012],[37.99638,40.98749],[38.361382,40.90943],[38.709991000000116,40.949997],[38.81611,41.009995],[39.16304800000012,41.0824970000001],[39.278603,41.049721],[39.421097,41.109444],[39.69055,41.003052],[40.12859300000014,40.91638200000011],[40.458046,41.04249600000014],[40.580544,41.05470300000013],[40.833054,41.194984],[40.931107,41.18748],[41.38749700000011,41.37305],[41.53156,41.523876],[41.72470900000013,41.492493],[41.833321000000126,41.428322],[41.96804,41.519157],[42.182487,41.50750000000011],[42.47221400000012,41.433327000000126],[42.564995000000124,41.508324],[42.597771,41.58305400000012],[42.84024,41.578873],[43.233597000000145,41.190269],[43.36971,41.202766],[43.451935,41.171097],[43.47916,41.025269],[43.59943,40.992493],[43.671654,40.92805],[43.751938,40.739998],[43.719208,40.622681],[43.59277,40.501099],[43.583054,40.451111],[43.72166,40.163322],[43.65778,40.139709],[43.657494,40.108597000000145],[43.933884,40.01361],[44.279999,40.046097],[44.347214,40.02388800000011],[44.48778,39.962769],[44.590828,39.83305400000012],[44.80305,39.681656],[44.81304200000011,39.63081],[44.60582,39.78054],[44.471085,39.698868],[44.4161,39.425262],[44.31554,39.387497],[44.20054,39.41693900000012],[44.034157,39.38499500000012],[44.215828,39.140831],[44.159424,39.00221],[44.208046,38.895821000000126],[44.30332,38.83443],[44.26082,38.721657],[44.31388,38.63777],[44.307316,38.38784],[44.43470800000011,38.395546],[44.484154,38.345543],[44.223969,37.89915],[44.61805,37.72777],[44.584435,37.613884],[44.588593,37.440262],[44.81526200000013,37.30526],[44.78734,37.149712],[44.638054,37.187485],[44.349709,37.038322],[44.31721,36.970543],[44.255272000000105,36.986664],[44.193329,37.10027],[44.2677690000001,37.167496],[44.261658,37.241936000000116],[44.116379,37.31638],[44.014153,37.320541],[43.9036,37.221657],[43.623047,37.229996],[43.15694,37.373878000000104],[42.955544,37.32222],[42.790825,37.38472000000013],[42.724709,37.351944],[42.578331000000105,37.150826],[42.355614,37.10693],[42.351105000000125,37.233887],[42.18083200000012,37.290543],[41.99527,37.172768],[41.539162,37.08416],[41.22165700000011,37.071106],[40.929993,37.12971],[40.770821,37.11805],[40.439713,37.013054],[40.214432,36.895821],[39.826111,36.755829],[39.229996,36.665276],[39.038048,36.708611],[38.73138,36.701111],[38.513611,36.858047],[38.244164,36.914444],[37.784157,36.748604],[37.381386000000134,36.653885],[37.127495000000124,36.659157],[36.97637900000012,36.763611],[36.659943,36.83371],[36.54916400000013,36.48333],[36.582764,36.397491],[36.68859900000012,36.289444],[36.69221,36.239159],[36.39222,36.21332600000011],[36.377747,36],[36.21916,35.960274],[36.168053,35.81749700000012],[35.92244,35.92699],[35.97666,36.00972000000013],[35.78333,36.296387],[35.928596,36.454163],[36.188889,36.594437],[36.215828,36.64637800000014],[36.193329,36.791939],[36.021935,36.92638],[35.820824,36.77555100000012],[35.64666,36.753609],[35.573914,36.707352],[35.636101,36.682213],[35.61637900000011,36.59693],[35.556664,36.57916],[35.498878,36.61193100000014],[35.33999,36.53916],[34.983047,36.71999],[34.90424,36.717064],[34.827209,36.795273],[34.65943,36.80527],[34.26693,36.574158],[34.083054,36.41111],[34.074997,36.361931],[33.988602,36.277771],[33.873055,36.314156],[33.7052690000001,36.179436],[33.610268,36.182213000000104],[33.540833,36.13971],[32.93444,36.096657],[32.808884,36.02555100000012],[32.66971600000011,36.039162],[32.369431000000134,36.173882],[32.015266,36.545547],[31.823051,36.589722],[31.343609,36.804436],[30.99305,36.85416],[30.76332900000011,36.84416],[30.682774,36.88528],[30.57027,36.78221900000011],[30.528332,36.494431000000134],[30.47444,36.39304],[30.5111,36.339722],[30.40694,36.203606],[30.365829,36.261375],[30.200829000000113,36.303596],[30.1436,36.288048],[30.12694,36.244713],[29.77527,36.151665],[29.717216,36.16083],[29.6772160000001,36.11833200000012],[29.57027,36.199432],[29.349716,36.23111],[29.141663,36.35277600000012],[29.0975,36.476379],[29.12388,36.540543],[29.016663000000108,36.54332000000011],[29.035275000000127,36.61637900000011],[29.08721500000013,36.626656],[29.052498,36.681107],[28.924721,36.746666],[28.850552,36.6560970000001],[28.65694,36.710274],[28.608604,36.803322],[28.454163,36.881386],[28.376389,36.847214],[28.421944,36.828049000000135],[28.398605,36.781662],[28.256386,36.842766],[28.234444,36.796097000000145],[28.27583,36.729439],[27.98389,36.552773000000116],[27.959995,36.59970900000013],[28.050831000000127,36.597771],[28.086662,36.63832900000011],[28.04472,36.68777],[27.965549,36.685822],[28.12194,36.719437],[28.118332000000123,36.800278],[27.91972,36.737221],[27.72749,36.75610400000011],[27.676105,36.691666],[27.475277,36.649994],[27.379440000000102,36.68083],[27.358604,36.70694],[27.470833,36.7502750000001],[28.02583,36.82278],[28.066383,36.934998],[28.328606,37.03972],[27.51499600000011,36.992775],[27.42139,37.02804600000013],[27.257500000000107,36.962494],[27.225277,37.056107],[27.32278,37.15193],[27.439716,37.104713],[27.549995000000138,37.131653],[27.595276,37.232491],[27.563889,37.273598000000106],[27.48582800000014,37.267487],[27.40416,37.308884],[27.38472,37.35138],[27.414444,37.410553],[27.313606,37.342209],[27.19389,37.350822],[27.2241590000001,37.473328],[27.19389,37.60444],[27.261944,37.794716],[27.267773,37.95554],[26.985271000000125,38.065269],[26.92305,38.062218],[26.762497000000106,38.21472200000011],[26.681107,38.201653],[26.59111,38.10166],[26.438889,38.212769],[26.330555000000118,38.225822],[26.27583,38.264435],[26.29055,38.368607],[26.31805,38.373322],[26.318604,38.332222000000115],[26.374722,38.30555],[26.463608,38.35526],[26.510551,38.423325],[26.42916,38.470276],[26.38416300000011,38.449715],[26.347218,38.62999],[26.369999,38.661942],[26.47916,38.668053],[26.562222,38.599709000000125],[26.62944,38.45805400000012],[26.595551,38.453049],[26.682217,38.307487],[26.834995,38.36555],[27.088882,38.398041],[27.16277700000012,38.44722],[26.94722,38.441666],[26.730827,38.645821],[26.73222,38.73026],[27.064442,38.874435],[27.04083300000013,38.933327],[26.861111000000108,38.909157],[26.802773000000116,38.95443],[26.798611,39.027771],[26.88472,39.073318],[26.820553,39.151108],[26.644722000000115,39.263054],[26.93972,39.484711],[26.939159,39.574997],[26.66972,39.554993],[26.13388,39.453049],[26.068886000000134,39.475266],[26.101383,39.581657],[26.156384,39.636101],[26.1486,39.916656],[26.174721,39.97943900000013],[26.332497,40.022774],[26.433331,40.191666],[26.521111,40.219994],[26.707222,40.384995],[26.9675,40.38221],[27.026665,40.39111],[27.088882,40.448318],[27.264164000000108,40.45861100000013],[27.307499,40.383606],[27.429165000000125,40.324158],[27.772495,40.31304200000011],[27.881104,40.37693800000011],[27.791111,40.3902660000001],[27.68888900000013,40.48221600000011],[27.757217,40.529999],[28.025555,40.486107],[28.009163,40.447495],[27.898331,40.395821],[27.947777,40.357491],[28.24943900000011,40.4036],[28.674438000000123,40.36360200000013],[28.785275,40.394997],[29.054165,40.365822],[29.144161,40.43915600000014],[29.075554,40.47888200000011],[28.912495,40.469437],[28.778049,40.532219],[28.986382,40.64193],[29.391388,40.70304900000013],[29.424,40.6858],[29.50555,40.732216],[29.555832,40.684998],[29.940273,40.73137700000012],[29.934441000000106,40.760544],[29.41249,40.769722],[29.129440000000102,40.91444],[29.043327,40.973053],[29.025555,41.034431],[29.088221,41.118622],[29.076382000000137,41.16277],[29.166111,41.22666],[29.987495,41.139435],[30.161385,41.140831],[30.284718,41.208054],[30.761944,41.085274],[31.23111,41.088875],[31.335831,41.13582],[31.41111,41.20916000000011],[31.421104000000124,41.280823],[31.547771,41.361931],[32.158333,41.607216],[32.28221900000011,41.72277],[32.60082,41.83222200000011],[32.950829,41.88499500000012],[33.333878,42.020264],[34.31526900000011,41.94082],[34.715546,41.94249],[34.850822,41.979439],[34.957764,42.09277],[35.027489,42.078049000000135],[35.11693600000012,42.004166],[35.096931,41.961655]]],[[[27.395,42.008041],[27.57222,41.907219],[27.638054,41.958321],[27.830273,42.001389],[28.013054000000125,41.982216],[28.032494,41.909157],[27.977776000000116,41.8863750000001],[27.968327,41.824997],[28.076664,41.647774],[28.19278,41.54166],[28.834995,41.28221900000011],[29.093327,41.244431],[29.106937,41.209991000000116],[29.039215,41.154533],[29.068394,41.123108000000116],[29.05555,41.0824970000001],[28.830273,40.955544],[28.604717000000107,40.96472200000011],[28.571384,41.064438],[28.52916,41.08027],[28.56778,41.02304],[28.538883,40.986107],[28.41583300000013,41.04583000000013],[28.213055,41.08027],[28.010830000000112,41.03555],[27.94305,40.96804],[27.74138,41.013329],[27.50972,40.983597],[27.443886000000134,40.84861],[27.29805,40.70443],[27.176662,40.631653],[26.682217,40.45389],[26.614998,40.35611],[26.440273,40.237488],[26.32194,40.108597000000145],[26.160275,40.048882],[26.268055,40.220551000000114],[26.214165,40.325554000000125],[26.827221,40.586937],[26.768330000000105,40.66055300000011],[26.308331,40.59304],[26.07027,40.619431000000134],[26.04472,40.735825],[26.118332,40.745544],[26.213608,40.877213],[26.361382000000102,40.955826],[26.3752750000001,41.025551],[26.323887000000127,41.09304],[26.325,41.234711],[26.635277,41.358887],[26.570271,41.611382],[26.35583,41.71443],[26.345551000000114,41.78665],[26.381660000000124,41.82304],[26.542217,41.828049],[26.560593,41.92892],[26.62138,41.973053],[26.962221,42.003323],[27.04305,42.085831],[27.282494,42.10222],[27.361664000000133,42.064995],[27.395,42.008041]]]]}},{"type":"Feature","properties":{"FIPS":"TV","ISO2":"TV","ISO3":"TUV","UN":798,"NAME":"Tuvalu","AREA":3,"POP2005":10441,"REGION":9,"SUBREGION":61,"LON":179.219,"LAT":-8.514},"geometry":{"type":"MultiPolygon","coordinates":[[[[179.222366,-8.554146],[179.21323,-8.561292],[179.2037,-8.46244],[179.231094,-8.50492],[179.222366,-8.554146]]],[[[178.366913,-8.06278],[178.355804,-8.06139],[178.36969,-8.0275],[178.37439,-8.03639],[178.366913,-8.06278]]],[[[178.39777,-8.015278],[178.39151,-8],[178.4030460000001,-7.99139],[178.406647,-8.00361],[178.39777,-8.015278]]],[[[178.700531,-7.48222],[178.687469,-7.47889],[178.6908,-7.464445],[178.702759,-7.47194],[178.700531,-7.48222]]],[[[177.158875,-7.18778],[177.14636200000018,-7.18861],[177.14221,-7.17361],[177.150543,-7.175],[177.158875,-7.18778]]],[[[176.310242,-6.28556],[176.295258,-6.278056],[176.308868,-6.2575],[176.31442300000015,-6.276112],[176.310242,-6.28556]]],[[[177.295807,-6.11389],[177.27804600000013,-6.10639],[177.28137200000012,-6.089444],[177.30887,-6.09889],[177.295807,-6.11389]]],[[[176.139709,-5.69056],[176.13025,-5.69333],[176.12939500000016,-5.675],[176.135529,-5.67555],[176.139709,-5.69056]]],[[[176.08136,-5.665277],[176.0774540000001,-5.66806],[176.0663760000001,-5.665277],[176.079407,-5.65778],[176.08136,-5.665277]]]]}},{"type":"Feature","properties":{"FIPS":"TX","ISO2":"TM","ISO3":"TKM","UN":795,"NAME":"Turkmenistan","AREA":46993,"POP2005":4833266,"REGION":142,"SUBREGION":143,"LON":59.384,"LAT":39.122},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.069717,38.899719],[53.1,38.751106],[53.022491,39.007217],[53.04166,39.077217],[53.07861,39.09388],[53.053322,39.03860500000013],[53.069717,38.899719]]],[[[58.780548000000124,42.658043],[58.97360200000014,42.533333],[59.15582,42.541107],[59.25861,42.45166],[59.284721,42.34777100000014],[59.45721400000013,42.29277],[59.857498000000135,42.316101],[60.014442,42.217491],[60.028046000000124,42.03249],[60.152763,41.883873],[60.275826000000116,41.79277],[60.256943,41.77249],[60.12249,41.80499300000014],[60.06972,41.75777],[60.18555,41.599434],[60.099434,41.537498],[60.077774,41.453606],[60.140274,41.381104],[60.48832700000014,41.219437],[60.704994,41.258049],[60.947487,41.250549],[61.004204,41.20987700000012],[61.141937,41.231934],[61.27332300000011,41.161377],[61.36859900000013,41.198601],[61.40332,41.292221],[61.43832400000014,41.303604],[61.626099,41.26221],[61.874161,41.12555],[61.974991,40.999718],[62.042496,40.723602],[62.141106,40.56443800000011],[62.20138500000013,40.486107],[62.35527,40.420273],[62.44193300000012,40.03082300000011],[62.584435,39.90971400000012],[63.52638,39.393608],[63.712769,39.206100000000106],[64.173874,38.95499400000011],[64.34027100000014,38.991104],[64.631653,38.761383],[64.98719800000015,38.626656],[65.292206,38.410820000000115],[65.597214,38.253883],[65.748596,38.226379],[65.895264,38.28082300000011],[66.26026900000011,38.15193],[66.31944,38.084717],[66.42387400000013,38.04361],[66.643875,38.003052],[66.66638200000011,37.93665],[66.53831500000013,37.772766],[66.5155489999999,37.39944],[66.53773500000011,37.36637900000011],[66.447479,37.31860400000011],[66.408325,37.3461],[66.28997800000013,37.324715],[66.105255,37.421379],[65.70887800000014,37.538605],[65.64694,37.45888500000012],[65.646103,37.346382],[65.554428,37.256386],[65.07276900000011,37.244438],[64.82304,37.1386030000001],[64.77916,37.095825],[64.7952580000001,36.92305],[64.61692800000014,36.636383],[64.615265,36.42361],[64.47387700000013,36.255554],[64.169434,36.16749600000014],[63.98610700000011,36.03804800000011],[63.60110500000013,35.964439],[63.517212,35.900826],[63.317215,35.852219],[63.11943800000011,35.86193800000012],[63.1061,35.82222000000013],[63.18471,35.67360700000011],[63.095268,35.626099],[63.12665600000014,35.533607],[63.09193,35.432495],[62.98333,35.414711],[62.636658,35.226654],[62.554436,35.233604],[62.464996,35.28860500000013],[62.30915800000013,35.141663],[62.270271,35.259438],[62.029716,35.448601],[61.95916,35.45832800000011],[61.80249,35.411102],[61.59582,35.444153],[61.429344,35.554771],[61.37888,35.635269],[61.276558,35.607246],[61.253609,35.632767],[61.2286,35.689987],[61.262215,35.81972],[61.2116620000001,35.937492000000134],[61.222763,36.171104],[61.160271,36.414154],[61.18999,36.567772],[61.157211,36.649994],[60.33305400000012,36.6560970000001],[60.029434,37.036942],[59.479988000000105,37.232765],[59.393051,37.323051],[59.38082,37.48555],[59.338882,37.53916],[59.25,37.513329],[59.052773,37.63138],[58.92610200000013,37.669991],[58.467209,37.639992],[58.24554,37.673607],[58.17443800000012,37.79639],[57.708046,37.92666],[57.450272,37.93915600000014],[57.35305,37.989433],[57.371101000000124,38.093048000000124],[57.212212,38.281937],[57.058601,38.193604],[56.845825,38.23166],[56.75574,38.286263],[56.442764,38.259995],[56.322495,38.185265],[56.352776,38.13888500000013],[56.333054,38.085548],[56.219704,38.071205],[56.164436,38.09499],[55.982765,38.072495],[55.76388500000013,38.12416100000013],[55.442764000000125,38.086105],[55.140831,37.9561],[54.954712,37.804993],[54.83305400000012,37.74638],[54.78221100000013,37.648048],[54.80971,37.579437],[54.786942,37.51915700000012],[54.681107,37.443604],[54.57666000000012,37.452492],[54.20166000000011,37.330276],[53.90564,37.35085300000014],[53.804436,37.883606],[53.86999,38.35555],[53.82444,38.521378],[53.85443900000013,38.666382],[53.983879,38.915825],[53.859993000000145,39.034721000000104],[53.764717,39.02721400000013],[53.639992,39.124435],[53.57916,39.318886000000134],[53.541382,39.33582],[53.397217000000126,39.318886000000134],[53.234993000000145,39.359718],[53.164711,39.347771],[53.162491,39.17555],[53.12249,39.43499],[53.26416,39.655266],[53.311935,39.657768],[53.235825,39.59193],[53.21194,39.5186],[53.41527,39.536659],[53.47527,39.483879],[53.56415600000014,39.461937],[53.734436,39.52388],[53.63582600000012,39.61388],[53.51471700000013,39.65470900000014],[53.443604,39.651932],[53.44832600000012,39.629158],[53.408325000000104,39.665825],[53.413605,39.7736],[53.57583,39.9661],[53.42361,40.004997],[53.280548000000124,39.938599],[52.934715,39.990547000000106],[52.92416400000013,39.899719],[53.043884,39.742493],[53.004715,39.76221],[52.73777,40.050827],[52.736382,40.200829],[52.690269000000114,40.271935],[52.721931,40.446098],[52.86888,40.675827],[52.826103,40.716103],[52.898048,40.895271],[52.918602,41.081665],[52.965828,41.050270000000125],[53.11166400000013,40.7677690000001],[53.387497,40.768600000000106],[53.47360200000014,40.728874000000125],[53.55777,40.770546],[53.554161,40.842766],[53.596657,40.89444],[53.657211,40.85722],[53.652214,40.777489],[53.704994,40.63916],[53.746384,40.615273],[54.031105,40.653877],[54.090546,40.68055],[54.09499,40.71554600000013],[54.23166,40.7286],[54.209435,40.684158],[54.27943,40.66833],[54.41777,40.703606],[54.30832700000013,40.75222],[54.244713,40.880272],[54.33943,40.92361],[54.469154,40.86527300000011],[54.479713,40.79916],[54.701935,40.87165800000014],[54.761108,40.968323],[54.733879,41.102219],[54.07277,41.47554800000012],[54.019714000000135,41.597214],[54.025269,41.718048],[53.936378,41.87471],[53.911102,42.049995],[53.80387900000011,42.123878],[53.6519320000001,42.14305100000013],[53.278046,42.070549],[53.144157000000114,42.094437],[52.946655000000135,41.973045],[52.815826,41.695824],[52.917213,41.67193600000013],[52.81916,41.394714],[52.911102000000135,41.10889],[52.881935,41.047218],[52.847214,41.07444],[52.837215,41.18483],[52.762772,41.372215],[52.556656,41.515549000000135],[52.59055,41.645271],[52.4400710000001,41.74094],[53.0149990000001,42.138885],[53.462769,42.27137800000014],[53.99554400000011,42.34860200000014],[54.1730500000001,42.337212],[54.761108,42.05888],[54.956657,41.91249],[54.971657,41.802216],[55.243324,41.48472],[55.394714,41.387215],[55.463326,41.283882],[55.65249,41.267212],[55.933601,41.333603],[56.82749200000011,41.299438],[57.04472,41.260277],[57.13388,41.345825],[57.04277,41.466934],[56.977486,41.681938],[56.98693800000012,41.893051],[57.119713000000104,41.94165800000013],[57.24582700000013,42.095268],[57.38694,42.16249],[57.664436,42.1536],[57.8386,42.187767],[57.959717,42.35443900000013],[57.943604,42.445541000000105],[58.026604,42.50464],[58.324997,42.446938],[58.40638,42.39833],[58.411934,42.296661],[58.515549,42.30444],[58.310822,42.55193300000013],[58.15332,42.607773],[58.16443600000013,42.65193],[58.29388,42.69748700000014],[58.562767,42.662491],[58.609718,42.797775000000115],[58.780548000000124,42.658043]]]]}},{"type":"Feature","properties":{"FIPS":"TZ","ISO2":"TZ","ISO3":"TZA","UN":834,"NAME":"United Republic of Tanzania","AREA":88359,"POP2005":38477873,"REGION":2,"SUBREGION":14,"LON":34.823,"LAT":-6.27},"geometry":{"type":"MultiPolygon","coordinates":[[[[39.682495,-7.993334],[39.591385,-7.94583],[39.801109,-7.783611],[39.901108,-7.63889],[39.847771,-7.87528],[39.682495,-7.993334]]],[[[39.44666300000011,-6.210556],[39.503609,-6.19833],[39.505829,-6.13278],[39.574997,-6.386945],[39.559166,-6.444167],[39.516106,-6.468612],[39.45221700000013,-6.44194],[39.399437,-6.311389],[39.302216,-6.245833],[39.276939,-6.320001],[39.201385,-6.22694],[39.18916300000012,-5.92028],[39.243889,-5.87111],[39.304161,-5.72389],[39.359718,-5.80167],[39.354996,-5.9175],[39.42416,-6.05444],[39.44666300000011,-6.210556]]],[[[39.736107,-5.46278],[39.64,-5.413611],[39.651108,-5.33917],[39.74499500000013,-5.19056],[39.691383,-5.133889],[39.676941,-4.941389],[39.689438,-4.901112],[39.857216,-4.908611],[39.873055,-4.988334],[39.82444,-5.10306],[39.855633,-5.159406],[39.851105,-5.25194],[39.794998,-5.4075],[39.736107,-5.46278]]],[[[31.677219,-0.99972],[34.020554,-1.00139],[37.602776,-2.995833],[37.67528,-3.05139],[37.71999,-3.31194],[37.60749800000013,-3.40556],[37.613609,-3.504167],[37.74110400000012,-3.53139],[37.783051,-3.651111],[39.203026000000136,-4.66962],[39.220551000000114,-4.84861],[39.174164,-4.938334],[39.169998000000135,-4.859167],[39.147774,-4.87972],[39.078049,-5.24389],[38.776382000000126,-6.045556],[38.838333,-6.14667],[38.85166,-6.351111],[38.91499,-6.44111],[39.055832000000116,-6.48306],[39.30499300000014,-6.816389],[39.468887,-6.8625],[39.547882,-6.994313],[39.540276,-7.082778],[39.374992,-7.29111],[39.274437,-7.57917],[39.299721,-7.75778],[39.324997,-7.731112],[39.44666300000011,-7.814167],[39.44554900000014,-8],[39.34861,-8.275],[39.32972,-8.296946],[39.295288,-8.26786],[39.355827,-8.716946],[39.533882,-8.911112],[39.448051,-8.85889],[39.38777,-8.9025],[39.457771,-8.940834],[39.64305100000013,-9.18806],[39.647217,-9.369167],[39.731941,-9.65611],[39.73055,-9.755001],[39.802498,-9.83806],[39.791107,-9.92389],[39.826385,-9.99306],[39.929993,-10.055834],[39.986664,-10.22389],[39.996384,-10.125],[40.113609,-10.167778],[40.13250000000011,-10.24778],[40.223053,-10.297224],[40.26722,-10.26917],[40.19888300000014,-10.244722],[40.248055,-10.208612],[40.3986,-10.371113],[40.424721,-10.503056],[40.019722,-10.77917],[39.766937,-10.92056],[39.50833,-10.99528],[39.268051,-11.16806],[39.134438,-11.141945],[38.897774,-11.172224],[38.655273,-11.28111],[38.49170700000013,-11.41531],[38.096695,-11.25633],[37.94138,-11.285],[37.86166,-11.33889],[37.791939,-11.56111],[37.462044,-11.727329],[37.18805,-11.68944],[36.997772,-11.59139],[36.82972,-11.56861],[36.677773,-11.71472],[36.56194,-11.74028],[36.375549,-11.683889],[36.18972,-11.70667],[36.163055,-11.577778],[35.943054,-11.43472],[35.83833,-11.41472],[35.73333000000014,-11.48333],[35.652496,-11.584723],[35.576385,-11.606668],[34.96673,-11.572111],[34.959717,-11.486668],[34.890549,-11.383057],[34.799438,-11.33139],[34.61360900000011,-11.105001],[34.593048,-11.016668],[34.649994,-10.890278],[34.658882,-10.67361],[34.575829,-10.51667],[34.526665,-10.020279],[34.32527,-9.73278],[34.07444,-9.50778],[34.013329,-9.48472],[33.957222,-9.526669],[33.953049,-9.673334],[33.919609,-9.70766],[33.75583,-9.582779],[33.4377750000001,-9.61583],[33.393883,-9.53806],[33.3144380000001,-9.48556],[33.12944,-9.49278],[32.997772,-9.373335],[32.940399,-9.405077],[32.702774,-9.28222],[32.54527300000012,-9.26667],[32.425552,-9.129723],[32.24944,-9.13194],[32.16,-9.063334],[32.05610700000011,-9.04083],[31.97972,-9.07111],[31.934166,-9.01889],[31.956108,-8.93083],[31.785538,-8.885067],[31.738605,-8.91805],[31.683609,-8.90889],[31.582497,-8.830278],[31.563889,-8.75139],[31.485554,-8.66639],[31.4147190000001,-8.63361],[31.295555,-8.62],[31.220554,-8.57667],[31.101387000000102,-8.61278],[30.964165,-8.53583],[30.831944,-8.346111],[30.654442,-7.88694],[30.468887,-7.60889],[30.406944,-7.35639],[30.311386,-7.136945],[30.17555,-6.9475],[30.045277,-6.82833],[29.891388,-6.75528],[29.732498,-6.627501],[29.550278,-6.29528],[29.4977760000001,-5.97972],[29.631664,-5.72194],[29.458611,-5.18444],[29.36305,-4.99528],[29.341389000000103,-4.797778],[29.428333,-4.552222],[29.423885,-4.448056],[29.766388000000116,-4.438056],[30.026108000000132,-4.26944],[30.17222,-4.08667],[30.2280540000001,-3.92806],[30.32111,-3.786667],[30.40083,-3.78611],[30.391388,-3.71111],[30.449165,-3.54722],[30.66222,-3.41889],[30.663609,-3.38667],[30.6222,-3.37011],[30.651665,-3.3325],[30.834999,-3.25694],[30.843662000000105,-2.978794],[30.66611100000011,-2.97639],[30.563332000000116,-2.893056],[30.484997,-2.94722],[30.414719000000108,-2.850833],[30.52333,-2.457778],[30.584721,-2.388056],[30.699718,-2.3475],[30.782219,-2.380556],[30.8291660000001,-2.357778],[30.8475,-2.1925],[30.894444,-2.083056],[30.808331,-1.929445],[30.830936,-1.6549],[30.748886,-1.520556],[30.739998,-1.438334],[30.567776,-1.334445],[30.455276,-1.09056],[30.751389,-0.99778],[31.677219,-0.99972]]]]}},{"type":"Feature","properties":{"FIPS":"UG","ISO2":"UG","ISO3":"UGA","UN":800,"NAME":"Uganda","AREA":19710,"POP2005":28947181,"REGION":2,"SUBREGION":14,"LON":32.386,"LAT":1.28},"geometry":{"type":"Polygon","coordinates":[[[33.996666,4.222777],[34.063049,4.173611],[34.128609,3.943611],[34.222221,3.779166],[34.38166,3.731667],[34.463333,3.671389],[34.455551,3.524167],[34.400276,3.477222],[34.40416,3.382222],[34.506104,3.145833],[34.570831,3.088333],[34.590828,2.939444],[34.662216,2.861111],[34.712219,2.878055],[34.753609,2.853333],[34.789993,2.684722],[34.909439,2.521111],[34.878883,2.389722],[34.994438,2.085],[35.00972,1.895278],[34.999443,1.668611],[34.953888,1.578889],[34.887497,1.535278],[34.852219,1.423889],[34.792221,1.393611],[34.822495,1.235555],[34.685272,1.205833],[34.597771,1.153055],[34.575546,1.092677],[34.525551,1.113895],[34.442215,0.871944],[34.272217,0.650833],[34.161659,0.608611],[34.106384,0.387778],[33.907219,0.103056],[33.976105,-0.134167],[33.91861,-0.452778],[33.920273,-1.001111],[30.751389,-0.997778],[30.59333,-1.065556],[30.359997,-1.06],[30.27972,-1.214445],[29.974998,-1.464445],[29.907497,-1.464167],[29.841389,-1.320278],[29.596943,-1.385834],[29.574444,-0.921944],[29.62833,-0.888889],[29.618332,-0.733333],[29.666664,-0.580556],[29.648609,-0.439722],[29.734964,0],[29.716663,0.072222],[29.773331,0.172222],[29.813889,0.158611],[29.85833,0.366667],[29.962498,0.487222],[29.938332,0.634444],[29.960552,0.825555],[30.145832,0.898333],[30.218609,0.996389],[30.236111,1.134166],[30.456108,1.212778],[30.688053,1.493889],[31.036663,1.765555],[31.302776,2.121388],[31.299202,2.16285],[30.987221,2.408333],[30.942497,2.406111],[30.891109,2.335],[30.729721,2.448055],[30.754997,2.598611],[30.878609,2.849722],[30.855553,2.9575],[30.763611,3.067222],[30.934998,3.411666],[30.917221,3.521944],[30.858818,3.493394],[30.95472,3.671111],[31.176666,3.795278],[31.285275,3.795278],[31.540833,3.653611],[31.701942,3.713055],[31.794441,3.817222],[31.922222,3.703888],[31.951111,3.593889],[32.068489,3.582222],[32.093605,3.5325],[32.193329,3.511389],[32.194435,3.611045],[32.404442,3.743611],[32.719444,3.755833],[32.898048,3.811944],[33.016663,3.888611],[33.183884,3.766111],[33.516937,3.752222],[33.996666,4.222777]]]}},{"type":"Feature","properties":{"FIPS":"UK","ISO2":"GB","ISO3":"GBR","UN":826,"NAME":"United Kingdom","AREA":24193,"POP2005":60244834,"REGION":150,"SUBREGION":154,"LON":-1.6,"LAT":53},"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.29083,49.912216],[-6.317223,49.911942],[-6.3175,49.915276],[-6.295,49.933884],[-6.29083,49.912216]]],[[[-1.059722,50.687492],[-1.168334,50.601944],[-1.2825,50.578888],[-1.49361,50.667221],[-1.57,50.66055300000011],[-1.296945,50.771942],[-1.118056,50.737495],[-1.059722,50.687492]]],[[[-0.938333,50.7775],[-0.960556,50.774437],[-1.0225,50.78583],[-0.970833,50.830826],[-0.938333,50.7775]]],[[[-4.65167,51.159439],[-4.673334,51.16138500000011],[-4.66556,51.195],[-4.656389,51.19221],[-4.65167,51.159439]]],[[[0.904722,51.35805],[0.766111,51.375832],[0.74055600000014,51.429718],[0.908889,51.416939],[0.947778,51.374718],[0.904722,51.35805]]],[[[-4.571389,53.238609],[-4.67694,53.280273000000136],[-4.69389,53.30138],[-4.62167,53.321388],[-4.571389,53.238609]]],[[[-4.15333,53.22555],[-4.218056,53.200272],[-4.35139,53.124443],[-4.40222,53.125832],[-4.5675,53.273331],[-4.569167,53.388054000000125],[-4.429167,53.42444],[-4.31389,53.411942],[-4.22222,53.321663000000115],[-4.04667,53.30333],[-4.15333,53.22555]]],[[[-6.353333,55.237778],[-6.06667,55.19444],[-6.03361,55.154999],[-6.03611,55.057777],[-5.79139,54.85139],[-5.73194,54.848328],[-5.688056,54.806107],[-5.711112,54.739166],[-5.88833,54.674721],[-5.92389,54.63388800000013],[-5.90833,54.604721],[-5.73811,54.673832],[-5.576945,54.678055],[-5.53528,54.65194],[-5.430556,54.487221],[-5.46111,54.38555100000013],[-5.508056,54.363609],[-5.545223,54.40144],[-5.56806,54.52444],[-5.69278,54.575272],[-5.704722,54.533607],[-5.57334,54.377033],[-5.56222,54.283051000000114],[-5.65333,54.225555],[-5.74611,54.248055000000136],[-5.86389,54.22388],[-5.896389,54.09944],[-6.04389,54.03139],[-6.33889,54.115555],[-6.4475,54.058327],[-6.620001,54.03722],[-6.87611,54.345276],[-7.02528,54.41693900000013],[-7.16083,54.33666],[-7.175556,54.28916],[-7.14583,54.225273],[-7.330278,54.113052],[-7.55944,54.126938],[-7.69694,54.2024990000001],[-7.82056,54.19916500000011],[-7.8675,54.2241590000001],[-7.878056,54.28916],[-8.05583,54.366386],[-8.17167,54.463879000000134],[-7.752223,54.594444],[-7.927501,54.69888300000014],[-7.82972,54.73555],[-7.73917,54.710548],[-7.55333,54.762772],[-7.32639,55.04527300000012],[-7.25251,55.070595],[-7.25111,55.04610400000013],[-7.073611,55.037773],[-6.966945,55.15610500000014],[-6.353333,55.237778]]],[[[-6.172778,55.293053],[-6.18833,55.25972],[-6.2825,55.292221],[-6.23889,55.308609],[-6.172778,55.293053]]],[[[-5.103612,55.43861],[-5.23167,55.430275],[-5.34028,55.47499800000014],[-5.400278,55.600555],[-5.38111,55.66861000000011],[-5.295279,55.71666],[-5.16028,55.679161],[-5.08389,55.55305],[-5.07444,55.45916000000011],[-5.103612,55.43861]]],[[[-5.016389,55.721939000000134],[-5.11889,55.77722],[-5.206389,55.89944],[-5.16056,55.91527600000012],[-5.03639,55.837776],[-5.016389,55.721939000000134]]],[[[-6.121667,55.878883],[-6.0975,55.796661],[-6.03028,55.720551],[-6.024723,55.68083200000012],[-6.07667,55.649994],[-6.274445,55.57278],[-6.325556,55.5866620000001],[-6.265278,55.777771],[-6.33778,55.78027],[-6.44944,55.680275],[-6.509167,55.68222],[-6.441668,55.853607],[-6.309723,55.86360900000011],[-6.13667,55.934441],[-6.121667,55.878883]]],[[[-6.19389,56.02916],[-6.26306,56.03611],[-6.210556,56.09583],[-6.130834,56.120827],[-6.19389,56.02916]]],[[[-5.946945,55.829994],[-5.971945,55.78833],[-6.063056,55.803886],[-6.07889,55.905548],[-5.96806,56.0236],[-5.69444,56.147217000000126],[-5.69083,56.106667],[-5.946945,55.829994]]],[[[-5.735001,56.158051],[-5.73556,56.177773],[-5.67528,56.19194],[-5.675834,56.169441],[-5.735001,56.158051]]],[[[-5.63,56.19694],[-5.665278,56.21583],[-5.64194,56.260277],[-5.60639,56.2544400000001],[-5.63,56.19694]]],[[[-5.616667,56.268883],[-5.64556,56.3011090000001],[-5.58389,56.31972],[-5.60306,56.27916],[-5.616667,56.268883]]],[[[-6.404723,56.30360400000012],[-6.436389,56.310555],[-6.38194,56.34083],[-6.39333,56.315826],[-6.404723,56.30360400000012]]],[[[-5.54361,56.38277],[-5.584445,56.382217],[-5.587778,56.38916],[-5.51,56.41111],[-5.54361,56.38277]]],[[[-6.165833,56.464722],[-6.19889,56.45861100000013],[-6.26,56.48194100000012],[-6.215556,56.49777200000011],[-6.165833,56.464722]]],[[[-6.739167,56.515831],[-6.806111,56.511383],[-6.892778,56.43861],[-6.97222,56.449165],[-6.99083,56.494438000000116],[-6.75806,56.549164],[-6.739167,56.515831]]],[[[-5.783611,56.508888],[-5.64833,56.435829],[-5.701945,56.359161],[-5.80861,56.3175],[-5.87194,56.31416],[-5.852501,56.347771],[-5.8825,56.35194400000012],[-6.26472,56.258888],[-6.32111,56.26416],[-6.36611,56.30888],[-6.33944,56.339165],[-6.23194,56.318329],[-6.01778,56.374718],[-6.19361,56.361382],[-6.200278,56.386665],[-6.14306,56.428055],[-6.00278,56.494164],[-6.12639,56.473885],[-6.32528,56.53944],[-6.320001,56.60305000000011],[-6.133889,56.6533280000001],[-6.05694,56.635826],[-5.971111,56.544441],[-5.783611,56.508888]]],[[[-6.58917,56.579994],[-6.678334,56.55555],[-6.69889,56.579994],[-6.454445,56.686104],[-6.49333,56.629997],[-6.58917,56.579994]]],[[[-6.14472,56.869995],[-6.21139,56.88721],[-6.213056,56.906944],[-6.14972,56.94500000000011],[-6.11361,56.932495000000124],[-6.14472,56.869995]]],[[[-6.3175,56.934166],[-6.361945,56.946388],[-6.45167,57.006104],[-6.38417,57.04805],[-6.26167,57.03777],[-6.25694,56.960548],[-6.3175,56.934166]]],[[[-7.466945,56.940826],[-7.56,56.96027400000014],[-7.43972,57.054443000000106],[-7.37611,56.978607],[-7.466945,56.940826]]],[[[-6.49917,57.052216],[-6.581112,57.043884],[-6.602501,57.046387],[-6.549445,57.068054],[-6.49917,57.052216]]],[[[-5.939167,57.278053],[-5.996389,57.28833],[-6.01778,57.311661],[-5.933889,57.311661],[-5.939167,57.278053]]],[[[-7.22306,57.337494],[-7.28806,57.32249500000012],[-7.25917,57.152496],[-7.21528,57.110275],[-7.38139,57.108604],[-7.41889,57.186661],[-7.425,57.382217],[-7.335556,57.395828],[-7.22306,57.337494]]],[[[-7.268889,57.39888800000011],[-7.388056,57.423882],[-7.40639,57.46416],[-7.351111,57.489441],[-7.204722,57.46083],[-7.20444,57.41499],[-7.268889,57.39888800000011]]],[[[-6.02694,57.328606],[-6.06833,57.32916300000011],[-6.07833,57.3941650000001],[-6.06361,57.45472],[-6.003056,57.50861],[-5.976945,57.492493],[-5.990001,57.349998],[-6.02694,57.328606]]],[[[-5.967778,57.522774],[-5.990834,57.540833000000134],[-5.961667,57.575],[-5.95333,57.567215],[-5.967778,57.522774]]],[[[-6.14389,57.56805400000013],[-6.127223,57.306107],[-5.88667,57.239166],[-5.750556,57.276108],[-5.64917,57.259995],[-5.66389,57.204994],[-5.928056,57.038605],[-6.011945,57.022217],[-6.034722,57.05472],[-5.974167,57.13027],[-6.03056,57.177498],[-6.07722,57.124161],[-6.17667,57.17055],[-6.31444,57.157494],[-6.48139,57.30305],[-6.41306,57.335],[-6.309723,57.30416],[-6.533334,57.40833],[-6.573611,57.38416],[-6.575556,57.3333280000001],[-6.7,57.363884],[-6.78583,57.44611],[-6.6375,57.605553],[-6.46333,57.508888],[-6.375556,57.5241620000001],[-6.42139,57.6374970000001],[-6.345556,57.68471],[-6.276945,57.672218],[-6.14389,57.56805400000013]]],[[[-7.18861,57.68721800000014],[-7.06583,57.633331],[-7.15389,57.509438],[-7.32139,57.505272],[-7.32528,57.54416700000012],[-7.54333,57.590828],[-7.47278,57.655],[-7.275,57.656387],[-7.18861,57.68721800000014]]],[[[-7.196667,57.702217],[-7.219167,57.707771],[-7.14472,57.72361000000012],[-7.15,57.71666],[-7.196667,57.702217]]],[[[-8.55528,57.810829],[-8.5825,57.798882],[-8.62139,57.822777],[-8.583612,57.82388300000014],[-8.55528,57.810829]]],[[[-7.00639,57.881386000000134],[-7.073611,57.87778],[-7.077778,57.88],[-6.993611,57.91861],[-7.00639,57.881386000000134]]],[[[-6.802222,58.203049],[-6.86917,58.203888],[-6.889723,58.252495],[-6.809723,58.22860700000012],[-6.802222,58.203049]]],[[[-6.20417,58.35611],[-6.32844,58.23544],[-6.148056,58.25610400000011],[-6.17222,58.20694],[-6.62028,58.08194],[-6.396111,58.104721],[-6.35389,58.033051],[-6.47389,57.940277],[-6.57056,57.91138],[-6.66222,57.924164],[-6.70611,58.0075],[-6.659167,58.04666],[-6.590279,58.04999500000013],[-6.68444,58.057495],[-6.76139,57.998329],[-6.66056,57.88472000000012],[-6.735278,57.825829],[-6.9725,57.724716],[-7.12306,57.817497],[-7.125278,57.837776000000126],[-7.06583,57.820831],[-6.83028,57.900833],[-7.11278,57.983887],[-7.05556,58.020271],[-7.12806,58.13472],[-7.04056,58.233330000000144],[-6.90806,58.21278],[-6.93611,58.188049],[-6.861945,58.103882000000105],[-6.873279,58.17859],[-6.74473,58.197197],[-6.808056,58.25972000000013],[-6.79778,58.302216],[-6.55028,58.363327],[-6.266945,58.512497],[-6.166112,58.42527800000011],[-6.20417,58.35611]]],[[[-4.15333,53.22555],[-3.85444,53.284439],[-3.58944,53.282219],[-3.336389,53.347221],[-3.10222,53.247772],[-3.0825,53.27138500000012],[-3.192223,53.38555100000013],[-3.06172,53.410831000000144],[-2.8825,53.28527100000014],[-2.776389,53.292496],[-2.7025,53.346382],[-2.853611,53.32054900000014],[-2.95389,53.360275000000115],[-3.1075,53.551666],[-2.97861,53.693604],[-2.898889,53.72305],[-3.05139,53.764717],[-3.053056,53.90583],[-2.9325,53.950554000000125],[-2.83361,54.084999],[-2.81361,54.22277],[-3.152223,54.081940000000145],[-3.226111,54.09861],[-3.409167,54.27666],[-3.43389,54.3480530000001],[-3.63417,54.51194],[-3.38111,54.88444],[-3.28667,54.938889],[-3.103333,54.93388],[-3.02639,54.945549],[-3.023056,54.970551],[-3.57111,54.990829],[-3.615834,54.87527],[-3.81222,54.8488850000001],[-3.965,54.76527],[-4.13583,54.774719],[-4.34833,54.857773],[-4.39306,54.908051],[-4.428889,54.863609],[-4.345278,54.70722],[-4.38722,54.675552],[-4.50611,54.70277],[-4.598612,54.780273],[-4.85222,54.868607],[-4.96194,54.797775],[-4.855834,54.631386],[-4.94111,54.64888800000011],[-4.95694,54.722771],[-5.17639,54.900551],[-5.174167,55.00055],[-5.054167,55.046661],[-5.01139,55.135277],[-4.865556,55.222221000000104],[-4.835556,55.322495],[-4.746667,55.411942],[-4.637778,55.443886],[-4.61333,55.494995],[-4.698611,55.606941],[-4.91583,55.6969380000001],[-4.87972,55.936104],[-4.481668,55.921104],[-4.85461,55.98648500000013],[-4.85965,56.07037700000012],[-4.82861,56.11316],[-4.8672,56.10561000000013],[-4.898236,55.981449],[-4.97889,55.866104],[-5.173334,55.929161],[-5.22458,55.901752],[-5.208056,55.826385],[-5.303334,55.850555],[-5.340556,55.905],[-5.308556,56.0075],[-5.202778,56.117218],[-4.91806,56.271111000000126],[-5.03222,56.232498],[-5.39083,56],[-5.431667,56.00777],[-5.38,55.750275],[-5.48639,55.64305100000013],[-5.5552,55.414398],[-5.514723,55.361664],[-5.59583,55.305832],[-5.7775,55.29666],[-5.793612,55.390274],[-5.718889,55.440277],[-5.70167,55.588608000000136],[-5.60778,55.75861],[-5.674167,55.806938],[-5.67589,55.911774],[-5.57056,56.03721600000011],[-5.67022,55.97272],[-5.67972,55.991386],[-5.51167,56.181664000000126],[-5.597778,56.159721],[-5.57361,56.32471],[-5.521111,56.389442000000145],[-5.42056,56.432999],[-5.22083,56.435829],[-5.107779,56.507774],[-5.066389,56.560555],[-5.203056,56.45416],[-5.39867,56.478664],[-5.37718,56.52112],[-5.246389,56.555832],[-5.35139,56.54549800000012],[-5.38306,56.58305400000011],[-5.12,56.816666],[-5.67694,56.49388900000014],[-5.930556,56.569717],[-6.008334,56.63749700000011],[-5.54694,56.69194],[-5.76222,56.71194],[-5.91917,56.673882],[-6.191389,56.679718],[-6.235001,56.719162],[-6.19028,56.75],[-5.95361,56.78166],[-5.853333,56.741943],[-5.798612,56.789162],[-5.854445,56.827774],[-5.660833,56.868889],[-5.92194,56.88805400000012],[-5.821945,57.006104],[-5.73794,57.01221800000013],[-5.64333,56.971664],[-5.520278,56.996384],[-5.63139,56.98499300000014],[-5.78722,57.051941],[-5.72472,57.11305],[-5.53333,57.08777600000013],[-5.399723,57.105827],[-5.55028,57.116386],[-5.64961,57.1616100000001],[-5.64611,57.234993],[-5.55017,57.256775],[-5.406112,57.229439],[-5.571167,57.284107],[-5.59884,57.33048600000012],[-5.46278,57.38694],[-5.45028,57.420273],[-5.769444,57.339996],[-5.819167,57.363884],[-5.87139,57.479164],[-5.83972,57.57278],[-5.65056,57.508049],[-5.508612,57.53472],[-5.669168,57.54583],[-5.81028,57.637772],[-5.816668,57.821663000000115],[-5.79917,57.854996000000135],[-5.71694,57.869438000000116],[-5.661667,57.78611],[-5.6025,57.76722000000012],[-5.58056,57.829994],[-5.644667,57.877716],[-5.61111,57.92360700000011],[-5.4575,57.85889],[-5.430556,57.900833],[-5.33861,57.92083],[-5.102778,57.85083],[-5.18944,57.948326000000115],[-5.45528,58.07638500000013],[-5.42667,58.09861],[-5.31944,58.06444],[-5.27972,58.07972],[-5.274445,58.1486],[-5.39222,58.25943800000011],[-5.071667,58.264717],[-5.17472,58.349998],[-5.109445,58.50833100000011],[-5.00472,58.623329],[-4.772223,58.60361],[-4.70167,58.558609],[-4.676667,58.524437],[-4.756667,58.442497],[-4.60389,58.523331],[-4.565001,58.576111],[-4.27722,58.533607000000124],[-3.78528,58.566666],[-3.660278,58.61972],[-3.365,58.595276],[-3.35389,58.6605530000001],[-3.02556,58.647499],[-3.05556,58.454437],[-3.20861,58.304443],[-3.36417,58.273888],[-3.51528,58.162498],[-3.99694,57.950554],[-4.015,57.867775],[-4.12,57.85083],[-4.39222,57.905273],[-4.34556,57.85833],[-4.043223,57.814384],[-3.92639,57.807495],[-3.773056,57.851105],[-3.97778,57.69833],[-4.021,57.699383],[-4.031112,57.73138],[-4.296667,57.674438],[-4.43583,57.575],[-4.19139,57.67139],[-4.04667,57.642776],[-4.240556,57.5],[-4.196667,57.48583],[-4.03833,57.55722],[-3.59278,57.637215],[-3.48806,57.709442],[-3.28944,57.72583],[-3.041945,57.662216],[-2.898056,57.70694],[-2.40028,57.666382000000105],[-2.07556,57.69944],[-1.91833,57.670555],[-1.82194,57.57861],[-1.773334,57.458054],[-1.977778,57.313889],[-2.061667,57.204163],[-2.093334,57.070274],[-2.19028,56.97472],[-2.219722,56.867775],[-2.47806,56.71527100000014],[-2.44889,56.68722],[-2.52722,56.57861],[-2.720834,56.488884],[-3.07028,56.451942],[-3.278056,56.35749800000013],[-2.884445,56.451385],[-2.808889,56.43888900000013],[-2.80056,56.344444],[-2.643611,56.31666600000011],[-2.582778,56.268051],[-2.78806,56.187492],[-2.956944,56.20222],[-3.15417,56.085548],[-3.3925,56.01111],[-3.5825,56.05499300000014],[-3.73722,56.05555],[-3.725278,56.027496],[-3.053056,55.943604],[-2.91028,55.97805],[-2.82028,56.05694],[-2.63111,56.054718],[-2.079722,55.86722],[-1.819722,55.63416],[-1.633889,55.580826],[-1.58139,55.48555],[-1.599445,55.38582600000012],[-1.515,55.149719],[-1.38139,54.976387],[-1.2975,54.763611],[-1.165278,54.64971900000012],[-0.564722,54.48],[-0.38194,54.25555400000013],[-0.2625,54.174438],[-0.075,54.111938],[-0.17389,54.0816650000001],[-0.215,54.0149990000001],[-0.1275,53.86388],[0.141111,53.62722],[0.151944,53.591942],[0.118056,53.564438],[0.138333,53.599716],[0.109167,53.619164000000126],[-0.085556,53.624443],[-0.2725,53.73555],[-0.54917,53.706108],[-0.632222,53.729164],[-0.718889,53.699715],[-0.519722,53.685272],[-0.297778,53.71278],[-0.20722,53.630829],[0.146944,53.474716000000114],[0.235556,53.39944],[0.340278000000126,53.233055],[0.34167,53.09583],[0.000037000000134,52.87955],[0.086389,52.88971700000013],[0.238611000000105,52.796104],[0.363333,52.780273],[0.545833,52.96611000000013],[1.28222,52.92749800000013],[1.675278,52.748055],[1.746389000000136,52.620277],[1.74944,52.455826],[1.579722,52.076385],[1.328611,51.92833],[1.27417,51.988327],[1.16028,52.023331],[1.293611000000112,51.877495],[1.223611000000119,51.80888],[1.05,51.770554],[0.986667,51.826111],[0.699722,51.719444],[0.75861,51.691383],[0.93167,51.738609],[0.950555000000122,51.606384],[0.789444,51.524162],[0.648889000000111,51.536659],[0.465,51.503052],[0.382778,51.450554000000125],[0.536111,51.48805],[0.6975,51.470833],[0.722778,51.440826],[0.556389,51.408051],[0.905,51.3408280000001],[1.385556,51.387772],[1.4275,51.331108],[1.390278000000137,51.15416],[1.045555,51.049438],[0.978889,50.99666600000011],[0.975000000000136,50.931938],[0.781389,50.935555000000136],[0.66222,50.869438],[0.349444,50.808609],[0.242222,50.738052],[-0.255,50.82638],[-0.675278,50.781105],[-0.79639,50.725273],[-0.910278,50.772217],[-0.86361,50.800827],[-0.92694,50.839439],[-1.15472,50.844162],[-1.116389,50.808884],[-1.13694,50.779442],[-1.331389,50.791382],[-1.592778,50.724159],[-2.041945,50.733887],[-2.079722,50.69416],[-1.95289,50.66711],[-1.95833,50.59861],[-2.0575,50.585548],[-2.393889,50.641663],[-2.464445,50.59833],[-2.434451,50.54179],[-2.661945,50.67333200000012],[-2.92472,50.731941],[-3.24417,50.674438],[-3.43722,50.604996000000135],[-3.500278,50.535828],[-3.651945,50.231110000000115],[-3.71667,50.206665],[-3.813334,50.217216],[-3.946945,50.31443800000011],[-4.05278,50.29583],[-4.175,50.377777],[-4.38,50.36388],[-4.482779,50.325829],[-4.7625,50.311386],[-4.8575,50.231667],[-5.04806,50.17110400000013],[-5.05944,50.04249600000014],[-5.159167,50.0044400000001],[-5.19306,49.95527600000014],[-5.28972,50.069443],[-5.47056,50.124992],[-5.5375,50.11332700000014],[-5.56722,50.05110900000011],[-5.7125,50.05360400000012],[-5.69583,50.153053000000114],[-5.49583,50.216942],[-5.42778,50.193886],[-5.05194,50.422218],[-5.013889,50.544998],[-4.78139,50.594444000000124],[-4.743611,50.667496],[-4.553612,50.785271],[-4.523612,51.01527],[-4.30361,51.004166],[-4.20889,51.07416500000011],[-4.22639,51.189163],[-3.7925,51.23917],[-3.51056,51.223885],[-3.39,51.18110700000011],[-3.02833,51.20611],[-2.96,51.374992000000134],[-2.65333,51.563889],[-2.47167,51.724442],[-2.38,51.75555400000013],[-2.39667,51.776382],[-2.460556,51.74666600000012],[-2.71472,51.580826000000116],[-3.115556,51.489998],[-3.185556,51.395554],[-3.346111,51.378609],[-3.56028,51.405548],[-3.74944,51.525276],[-3.840278,51.620827],[-4.20556,51.532219],[-4.27778,51.556664],[-4.291112,51.610275000000115],[-4.116389,51.634163],[-4.074722,51.67722],[-4.262222,51.676941000000106],[-4.43611,51.737221],[-4.57444,51.734161],[-4.675834,51.7188870000001],[-4.708611,51.650276],[-4.86194,51.640831],[-4.941389,51.594162],[-5.05139,51.620277],[-5.021278,51.66861],[-4.86111,51.713333],[-4.88444,51.74666600000012],[-4.90417,51.713882],[-5.01072,51.702995],[-5.24694,51.73027000000013],[-5.101945,51.778885],[-5.127223,51.854439],[-5.258889,51.870552],[-5.239167,51.916382],[-5.096945,51.961388],[-5.07667,51.996109],[-4.832223,52.015274],[-4.66944,52.130272],[-4.49528,52.13777],[-4.23167,52.248886],[-4.13083,52.334717],[-4.059723,52.485832],[-4.1275,52.60527],[-4.053334,52.71666],[-4.14833,52.79833],[-4.133612,52.914444],[-4.414167,52.88472],[-4.53944,52.79305],[-4.76086,52.78897100000012],[-4.61889,52.90916],[-4.36444,53.026382000000126],[-4.330278,53.112221],[-4.15333,53.22555]]],[[[-2.918334,58.731941],[-2.97056,58.741943],[-3.036945,58.818054],[-2.886389,58.83194],[-2.918334,58.731941]]],[[[-3.23139,58.775551],[-3.300834,58.77805300000011],[-3.43111,58.87138],[-3.41806,58.90416],[-3.335556,58.927498],[-3.228333,58.88499500000012],[-3.13472,58.800827],[-3.23139,58.775551]]],[[[-2.79306,58.951385],[-2.75583,58.91777000000014],[-2.82444,58.87888],[-2.97,58.9394380000001],[-3.195,58.91111000000012],[-3.34556,58.9658280000001],[-3.368056,59.009995],[-3.35139,59.10638],[-3.21889,59.1486],[-3.076945,59.121666],[-2.94722,58.998329],[-2.79306,58.951385]]],[[[-2.681389,59.195831],[-2.68444,59.22083],[-2.55556,59.303055],[-2.407222,59.31389],[-2.390278,59.283051],[-2.620556,59.236107],[-2.681389,59.195831]]],[[[-2.89,59.29527300000012],[-2.84972,59.268051],[-2.8775,59.22860700000012],[-2.873056,59.256104],[-2.936667,59.28361],[-2.999167,59.261108],[-3.076389,59.331383],[-2.89,59.29527300000012]]],[[[-1.296111,60.491104],[-1.03722,60.44416],[-1.101111,60.27583],[-1.19889,60.26778],[-1.125556,60.147774],[-1.212222,60.102776],[-1.26861,59.851105],[-1.37806,59.90222200000011],[-1.26306,60.106941],[-1.29139,60.24139],[-1.410278,60.25499700000012],[-1.358333,60.192497],[-1.44861,60.151108],[-1.519722,60.201111],[-1.66472,60.230827],[-1.693056,60.279716],[-1.32028,60.356384],[-1.445833,60.46054800000013],[-1.60972,60.4741590000001],[-1.54694,60.53583],[-1.301944,60.6366650000001],[-1.296111,60.491104]]],[[[-1.029444,60.495827],[-1.1275,60.48638],[-1.170278,60.52722200000011],[-1.17944,60.63250000000011],[-1.098611,60.73],[-0.99111,60.719994],[-1.029444,60.495827]]],[[[-0.819722,60.688889000000124],[-0.96556,60.688049],[-0.938889,60.79444100000011],[-0.878333,60.844444],[-0.758056,60.81777],[-0.819722,60.688889000000124]]]]}},{"type":"Feature","properties":{"FIPS":"UP","ISO2":"UA","ISO3":"UKR","UN":804,"NAME":"Ukraine","AREA":57935,"POP2005":46917544,"REGION":150,"SUBREGION":151,"LON":31.388,"LAT":49.016},"geometry":{"type":"MultiPolygon","coordinates":[[[[33.04027600000011,46.011375],[32.97832,46.01193],[32.75944,46.03611000000012],[32.965271,46.049431],[33.057487,46.030266],[33.04027600000011,46.011375]]],[[[34.22748600000011,46.061928],[34.158043000000134,46.100548],[34.229149,46.18775900000014],[34.264709,46.128593],[34.22748600000011,46.061928]]],[[[32.167763,46.145821000000126],[31.727772,46.216385],[31.584164,46.25332],[31.524715,46.303596],[31.501106000000103,46.366653],[31.613331,46.25443300000012],[32.167763,46.145821000000126]]],[[[33.41770200000013,52.3554],[33.512772,52.326942],[33.83888,52.36055],[34.06916,52.19082600000013],[34.10083,52.14554600000014],[34.073051000000135,52.060272],[34.12915800000013,51.986107],[34.41971600000011,51.80888],[34.442764,51.760551],[34.418884,51.72388],[34.114716,51.680824],[34.09804500000013,51.65387700000013],[34.232208,51.54999],[34.23916,51.427773000000116],[34.38221,51.263611],[34.734993,51.172493],[35.07381,51.221481],[35.11852,51.2048190000001],[35.170753,51.05480200000011],[35.371887,51.041435],[35.30577100000011,50.96033],[35.361336,50.92614700000013],[35.486076,50.678627],[35.39271,50.63392],[35.458282,50.488068],[35.606651,50.369438],[35.693092,50.347412],[35.865829,50.43082400000014],[36.13916,50.425270000000125],[36.297493,50.284439],[36.419991,50.313881],[36.558884,50.278603],[36.55555,50.227211],[36.640274,50.212494000000106],[36.7011,50.266937],[36.88444,50.33582300000012],[37.130547,50.348328],[37.31582600000013,50.428047],[37.458603,50.439713],[37.73305,50.087769],[37.925270000000125,50.024712],[38.02422300000012,49.903084],[38.103607000000125,49.93859900000012],[38.184158,50.065544],[38.30777,50.073883],[38.376099,49.987495],[38.498878,49.951935000000105],[38.65221400000013,49.95888500000012],[38.88916,49.86805],[38.945267,49.807495],[39.069160000000124,49.817772],[39.19276,49.877769],[39.273605,49.75193800000011],[39.580826,49.73082],[39.63971700000013,49.615547],[39.796944,49.55305],[39.921661,49.5655440000001],[40.004997,49.614441],[40.14804800000013,49.586655],[40.053047,49.478325],[40.17388,49.350273],[40.16693900000013,49.248604],[39.966385,49.123878000000104],[39.938881,49.05499300000013],[39.699158,49.022766],[39.69443500000011,48.973045],[39.767212,48.90387700000013],[40.07666,48.874992000000134],[40.017494,48.806656],[39.803879,48.817772],[39.727211,48.762215],[39.656937,48.616661],[39.66966200000013,48.587639],[39.85083,48.55749500000013],[39.921516,48.368393],[39.998878,48.29722],[39.77609,48.026382],[39.81971,47.96583],[39.805817,47.87249],[39.760544,47.82721],[38.85360000000014,47.86082],[38.754715,47.68555],[38.33943,47.601379],[38.223312000000135,47.339989],[38.301102,47.301102],[38.2144320000001,47.190262],[38.235825,47.109428],[38.136101,47.059433],[38.06832900000012,47.095261],[37.74138,47.0686],[37.563599,47.088326],[37.323875,46.89554600000013],[37.205269,46.928596],[36.763878,46.751099],[36.613602,46.775269],[36.52193,46.754715],[36.241379,46.631371],[36.187202,46.6675],[35.907204,46.65109300000012],[35.753052,46.588875],[35.628036,46.48916],[35.487206,46.444427],[35.174431,46.136101],[35.010544,46.074715],[34.98082000000011,46.089149],[35.04749,46.139153000000135],[35.201378,46.181664000000126],[35.346931,46.354996],[35.19804,46.44331],[35.210815,46.393326],[35.119713,46.299431],[34.812485,46.18137400000012],[34.702492,46.175819],[34.546387,45.983597000000145],[34.401649,46.013878],[34.441376000000105,46.09388],[34.55555,46.09166],[34.5749970000001,46.151649],[34.542496,46.187485],[34.46315,46.15438],[34.329430000000116,46.170273],[34.15638,46.2822],[34.12582400000014,46.116096],[34.034157,46.13221],[33.957207,46.213608000000136],[33.773598,46.248322],[33.669159,46.21804],[33.7786,46.119156],[33.802216,46.17305],[33.847481,46.159157],[33.87915,46.058884],[33.957497,46.0177690000001],[33.98888,46.024712],[33.994431,46.06998],[33.94082,46.094147],[34.02222,46.090271],[34.1142650000001,46.017605],[34.1427690000001,45.937759],[34.200829,45.948318],[34.196648,45.998047],[34.22365200000013,46.006325],[34.17799,46.036983],[34.356377,46.01915000000014],[34.41638,45.946381],[34.359428,45.881371],[34.503052,45.876099000000124],[34.576096,45.92416400000013],[34.546097,45.966927],[34.633324,45.94165],[34.60833000000014,45.881104],[34.460541,45.767212],[34.649155,45.78555300000011],[34.986649000000114,45.631927],[35.073044,45.54832],[35.096931,45.471375],[35.011932,45.41916],[35.126656,45.326096],[35.181931,45.33665500000012],[35.33859300000012,45.28611],[35.34304,45.3325],[35.05026,45.613884],[34.763054,46.015549],[34.666939,46.093597],[34.736107,46.10833000000014],[34.827209,46.06944],[34.90221,45.883484],[35.05387900000011,45.65387],[35.311661,45.383041000000105],[35.475266,45.29110000000014],[35.706093,45.330826000000116],[35.863045,45.404427],[36.00861,45.3586],[36.13971,45.460541],[36.59859,45.42360700000012],[36.631927,45.338593],[36.497208,45.34137],[36.43277,45.275269],[36.404709,45.151932],[36.456093,45.084717],[36.43971,45.065536],[36.23333,45.006104],[36.128593,45.0211],[35.856934,44.986382],[35.71888,45.08416],[35.523872,45.118317000000104],[35.147217,44.890831],[35.08832600000011,44.79276],[34.964149,44.83943],[34.717484,44.807487],[34.45638300000013,44.717766],[34.335258,44.546097],[34.12276500000013,44.43166400000012],[33.955544,44.38110400000011],[33.707207,44.394707],[33.57972000000012,44.49305],[33.46554600000013,44.50972],[33.365273,44.58221],[33.55443600000012,44.623604],[33.51998,44.783051],[33.552773,44.84137],[33.6036,44.85693],[33.622208,44.92083000000013],[33.550545,45.105],[33.3936,45.185822],[33.25804,45.15749],[32.932213,45.343597],[32.727486,45.35582000000011],[32.654427,45.31055],[32.577492,45.317772],[32.50972000000013,45.33971],[32.480537,45.395821],[32.536385,45.463875],[32.92526,45.655266],[33.773315,45.927216],[33.646378,45.970818],[33.62299300000012,46.124016],[33.587212,46.1586],[33.435265,46.044716],[33.377762,46.095543000000134],[33.19249,46.16193],[33.122765,46.130547],[32.774437,46.129990000000134],[32.509438,46.07499700000011],[32.267212,46.125259],[32.243317000000104,46.17305],[32.02721,46.256386],[31.78833,46.285271],[31.762497,46.317772],[31.96666,46.347481],[32.059151,46.395821],[32.003876,46.45109600000011],[31.77833,46.493317000000104],[31.65832,46.471375],[31.50777,46.57972],[31.57861,46.54305],[31.76083000000011,46.55387900000011],[32.35666,46.458878],[32.422493,46.49027],[32.4216540000001,46.536942000000124],[32.647217,46.64111],[32.331657,46.555817],[32.236649000000114,46.60304300000013],[32.139153,46.559151],[32.01971,46.62943300000012],[31.935268,46.765831],[32.011932000000115,46.922493],[31.98082,47.0075],[31.74943,47.253319],[31.725552000000107,47.219147000000135],[31.807774,47.18748],[31.870274,47.08804],[31.844437,47.000542],[31.908051,46.92221],[31.97499,46.92332],[31.94249,46.85471],[31.863331,46.797211],[31.908886,46.7286],[31.907494,46.648872],[31.809158,46.61554],[31.641106,46.6536],[31.57888,46.607216],[31.476936,46.630547],[31.59333,46.804993],[31.415829,46.623604000000114],[31.053051,46.611931],[30.832771,46.54832],[30.779999,46.481377],[30.763054,46.3755420000001],[30.509163,46.096375],[30.251659,45.876656],[30.06611,45.799988],[29.969994,45.84166],[29.798607000000118,45.731659],[29.863605,45.66916],[29.746941,45.619431],[29.67999,45.694427],[29.697212,45.781662],[29.6336060000001,45.8211060000001],[29.59333,45.55526],[29.619164000000126,45.487762],[29.75416600000011,45.449715],[29.730549,45.224709000000125],[29.664993,45.210541],[29.667217,45.30166],[29.589439,45.385544],[29.324162000000115,45.439156],[28.848610000000118,45.30166],[28.785275,45.229996],[28.57471,45.24276],[28.3433270000001,45.31553600000012],[28.27916,45.43082],[28.214718,45.461372],[28.283886000000106,45.525269],[28.522774,45.517769],[28.530273,45.64193000000011],[28.489433000000133,45.664986],[28.52444,45.711098],[28.762497,45.84748100000013],[28.755833,45.959984],[28.971935,46.00665],[29.041103,46.193871000000115],[28.949997,46.289429],[28.93222,46.42832],[28.969437,46.46387],[29.203297,46.54497],[29.228329,46.484711],[29.200829000000113,46.381371000000115],[29.224159,46.365273],[29.306664,46.402206],[29.303326,46.43415],[29.350826,46.469986],[29.478329,46.491936],[29.5075,46.481102],[29.499718,46.432213],[29.626659000000128,46.369156],[29.73582,46.44249],[29.86638,46.346375],[29.920273,46.38192700000013],[30.10389,46.38192700000013],[30.132214,46.409714],[29.898602,46.52998400000012],[29.968884000000116,46.575272],[29.949997,46.814156],[29.5736,46.94609100000014],[29.600552,47.27193],[29.578880000000137,47.328606],[29.500832,47.345543],[29.478882,47.294159],[29.416386,47.28832200000011],[29.38028,47.357773],[29.2525,47.455269],[29.184441,47.443047],[29.131386,47.548325],[29.198048,47.612206],[29.258327,47.768593],[29.141937,47.986092],[28.98999,47.93441800000011],[28.882217,48.005554000000124],[28.80278,48.12721],[28.567219,48.163048],[28.501942,48.134163],[28.436661,48.14582800000011],[28.364441,48.185822],[28.35194,48.24305],[28.2225,48.2052690000001],[28.089165,48.23082],[28.085552,48.307495],[27.948605,48.32972],[27.77083,48.44777],[27.547218,48.46832300000011],[27.24499500000013,48.36888],[26.703049,48.34471100000013],[26.63499,48.257164],[26.5347210000001,48.208603],[26.314907,48.186165],[26.272221,48.0761030000001],[26.149998,47.982201],[25.3261,47.91527],[25.23027,47.881371],[25.109997000000135,47.75499],[24.919441,47.71166],[24.816387,47.813049],[24.693886000000134,47.84916],[24.66805,47.902222],[24.556389,47.953049000000135],[24.427776,47.95916],[24.244164,47.90361000000013],[24.12555300000014,47.911942000000124],[24.026665,47.95694],[23.566097,47.999992],[23.480553,47.977493],[23.16805,48.108604],[23.123886,48.088326],[23.084442000000138,48.01111],[22.896111000000133,47.953888],[22.859165000000132,47.993889],[22.882496,48.0469440000001],[22.797497,48.11472],[22.621151,48.10164],[22.504444,48.24749],[22.37861,48.245544],[22.270275,48.359993000000145],[22.268887,48.407211],[22.15144,48.411919],[22.158886,48.58027600000014],[22.32888400000013,48.686935],[22.461384000000123,48.94943],[22.53722,48.995544],[22.562775,49.084991],[22.88607400000012,49.00291],[22.876106000000103,49.089989],[22.700272,49.165543],[22.76028,49.295273],[22.738327,49.390274],[22.656105,49.519714000000135],[22.680828000000133,49.572495],[23.303608,50.10083],[23.676941,50.32444],[23.707771,50.380547],[23.999439,50.41166],[24.111385,50.56694],[24.07222,50.695824],[23.953327,50.802773000000116],[24.144718,50.85804700000011],[23.966385,50.948875],[23.904442,51.069443],[23.68388,51.2886],[23.69305,51.404709],[23.60463,51.52769],[23.64611,51.520828],[23.60805,51.603325],[23.650551,51.63694],[23.896664,51.63583],[23.943886,51.588326],[23.98888,51.589714],[24.279442,51.73777],[24.313332000000113,51.82249],[24.3966640000001,51.886658],[24.89138400000013,51.899994],[25.17944,51.959717],[25.439995,51.9222180000001],[25.7758290000001,51.939156],[26.18082800000013,51.861382],[26.436939,51.856941],[26.44471700000014,51.814995],[26.649719,51.820274],[26.919716,51.75111],[27.19694,51.758888],[27.199997,51.67027],[27.27944200000013,51.597771],[27.51197100000013,51.628868],[27.711662,51.59665700000011],[27.728329,51.571938],[27.679996,51.494438],[27.746941000000106,51.46554600000013],[27.817497000000113,51.53054800000012],[27.811665,51.5886],[27.851387,51.62027],[27.97527300000013,51.567772],[28.088051,51.564995000000124],[28.25861,51.661102],[28.319443,51.589157],[28.62722,51.566383],[28.660553,51.451935],[28.752499,51.411102],[28.76610900000014,51.48472],[28.828609,51.546387],[29.11805,51.63694],[29.18138,51.61805],[29.33916,51.37305],[29.669716,51.498878],[29.717773,51.494438],[29.766388000000116,51.44054],[30.176384,51.49193600000012],[30.551414,51.251846],[30.570831000000112,51.30193],[30.64416100000011,51.332771],[30.55389,51.541939],[30.564999,51.643326],[30.62833,51.71138],[30.665272,51.826942],[30.825,51.947487],[30.958885,52.000832],[30.930492,52.030083],[30.958328000000108,52.07972],[31.291386000000102,52.08277],[31.422497,52.11999],[31.831665,52.111382000000106],[31.908886,52.06944],[32.124435,52.043884],[32.303047,52.11221300000011],[32.35833,52.30999],[32.394157,52.335266],[32.92360700000011,52.24721],[33.20471,52.379715],[33.41770200000013,52.3554]]]]}},{"type":"Feature","properties":{"FIPS":"US","ISO2":"US","ISO3":"USA","UN":840,"NAME":"United States","AREA":915896,"POP2005":299846449,"REGION":19,"SUBREGION":21,"LON":-98.606,"LAT":39.622},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.17029,19.931389],[-75.223724,19.901554],[-75.19057,19.963333],[-75.15918,19.96305500000011],[-75.17029,19.931389]]],[[[-75.1214,19.8875],[-75.16473,19.895832],[-75.13974,19.962872],[-75.08723,19.965553],[-75.085281,19.89304],[-75.1214,19.8875]]],[[[-155.005585,19.32888],[-155.167267,19.27694],[-155.29251,19.27389],[-155.53421,19.111107],[-155.588348,18.989716],[-155.660309,18.9247170000001],[-155.79138,19.0291600000001],[-155.85947,19.032776],[-155.907806,19.148884],[-155.878601,19.36721],[-156.050018,19.73582],[-156.033356,19.792496],[-155.918884,19.864998],[-155.813904,19.999161],[-155.89505,20.171658],[-155.864441,20.269161],[-155.75226,20.245827],[-155.57782,20.129162],[-155.42944,20.099442],[-155.15863,19.962494],[-155.000854,19.746101],[-154.966644,19.650269],[-154.79282,19.538609],[-154.828613,19.458607],[-155.005585,19.32888]]],[[[-156.54724,20.52527],[-156.661987,20.506943],[-156.69864,20.53472],[-156.5853,20.60722],[-156.54724,20.590549],[-156.54724,20.52527]]],[[[-156.892,20.74416],[-156.96832,20.744991],[-157.05612,20.884995],[-157.04837,20.918053],[-156.919769,20.926941],[-156.81226,20.843609],[-156.83948,20.771111],[-156.892,20.74416]]],[[[-156.47336,20.898048],[-156.33029,20.946663],[-156.23697,20.939159],[-156.00226,20.79499],[-155.988617,20.748051],[-156.04532,20.673882000000106],[-156.13251,20.631104],[-156.42001,20.588608],[-156.47336,20.790833000000134],[-156.62692,20.82138],[-156.70224,20.92443],[-156.66144,21.01361],[-156.600006,21.0522160000001],[-156.51947,20.986656],[-156.47336,20.898048]]],[[[-156.89447,21.161102],[-156.70392,21.158051],[-156.75977,21.082214],[-156.867493,21.04583],[-157.06781,21.108887],[-157.304749,21.100552],[-157.24414,21.198605],[-157.188629,21.209717],[-156.89447,21.161102]]],[[[-160.530609,21.643887],[-160.53778,21.632214],[-160.54114,21.64138],[-160.530609,21.643887]]],[[[-157.73032,21.4116590000001],[-157.66559,21.324162],[-157.708649,21.268604],[-157.81308,21.258884000000137],[-157.90253,21.336941000000138],[-158.10364,21.295277],[-158.13641,21.381386000000134],[-158.23502,21.476936],[-158.27338,21.580547],[-158.10693,21.609715],[-157.971924,21.699436],[-157.92255,21.662495],[-157.844177,21.471104],[-157.73032,21.4116590000001]]],[[[-160.11499,21.88749700000011],[-160.14978,21.884163000000115],[-160.199768,21.783604],[-160.24777,21.813606],[-160.2272,21.89138],[-160.0614,22.013882],[-160.071136,21.909161],[-160.11499,21.88749700000011]]],[[[-159.43362,21.881386],[-159.75195,21.977772],[-159.78531,22.06138],[-159.71698,22.152775],[-159.58029,22.227489],[-159.351654,22.22138],[-159.28894,22.12694],[-159.3331,21.96554600000013],[-159.43362,21.881386]]],[[[-161.94168,23.039436],[-161.94778,23.038052],[-161.94833,23.047215],[-161.938324,23.046387],[-161.94168,23.039436]]],[[[-164.69614,23.564716],[-164.70615,23.564159000000128],[-164.70752,23.576664],[-164.69669,23.578053],[-164.69614,23.564716]]],[[[-81.77389,24.54472],[-81.8135,24.543871000000138],[-81.729172,24.56055],[-81.73045,24.558489000000122],[-81.77389,24.54472]]],[[[-82.11444,24.54583],[-82.1238859999999,24.546665],[-82.13722,24.59388700000011],[-82.09999,24.583054000000118],[-82.11444,24.54583]]],[[[-81.71512,24.55312],[-81.71074,24.595718],[-81.64622,24.577549],[-81.680679,24.557503],[-81.71512,24.55312]]],[[[-81.58833,24.589996],[-81.633621,24.583607],[-81.55305,24.687218000000144],[-81.508347,24.629997],[-81.58833,24.589996]]],[[[-81.47722,24.636383],[-81.51472,24.661106],[-81.51778,24.68499],[-81.478607,24.677773],[-81.47722,24.636383]]],[[[-81.10861,24.7061],[-81.13777,24.701681],[-81.052673,24.71653],[-81.06555,24.712772],[-81.10861,24.7061]]],[[[-81.349442,24.629719],[-81.35464,24.649704],[-81.42805,24.748604000000114],[-81.36082,24.700829000000113],[-81.349442,24.629719]]],[[[-80.96889,24.74277100000012],[-81.02669,24.718588000000125],[-80.92346,24.769209],[-80.96889,24.74277100000012]]],[[[-80.846115,24.797497],[-80.82417,24.82111],[-80.78617,24.822929],[-80.79999,24.80361],[-80.846115,24.797497]]],[[[-80.69861,24.86666],[-80.74249,24.84110600000014],[-80.745834,24.84249],[-80.7025,24.880829],[-80.69861,24.86666]]],[[[-80.64667,24.902218],[-80.664444,24.894997000000103],[-80.62389,24.93277400000011],[-80.626389,24.915272],[-80.64667,24.902218]]],[[[-167.99057,25.002499000000114],[-168.00116,25.003883],[-168.00589,25.017494],[-168.00061,25.018330000000105],[-167.99057,25.002499000000114]]],[[[-80.57722,24.945549],[-80.600861,24.950809],[-80.257507,25.34638600000011],[-80.37193,25.143887],[-80.57722,24.945549]]],[[[-80.225006,25.401108],[-80.23416,25.402218],[-80.1886,25.494160000000132],[-80.184998,25.479717000000107],[-80.225006,25.401108]]],[[[-80.162216,25.669441],[-80.18555,25.68944],[-80.15639,25.73333],[-80.151672,25.73055],[-80.162216,25.669441]]],[[[-171.7236,25.76249700000011],[-171.731384,25.76083],[-171.724701,25.79166],[-171.71722,25.777222],[-171.7236,25.76249700000011]]],[[[-81.684158,25.84471900000011],[-81.71472,25.87777],[-81.71472,25.888607],[-81.66417,25.888607],[-81.684158,25.84471900000011]]],[[[-173.94614,26.063332000000116],[-173.96085,26.064716],[-173.96085,26.079437],[-173.94473,26.08083],[-173.94614,26.063332000000116]]],[[[-82.12639,26.449997],[-82.02888,26.445],[-82.0825,26.416386000000102],[-82.176941,26.458885],[-82.20639,26.54583],[-82.12639,26.449997]]],[[[-82.221664,26.612495],[-82.244995,26.63499],[-82.255,26.6986050000001],[-82.24527,26.68805],[-82.221664,26.612495]]],[[[-82.07945,26.487774],[-82.09416,26.490273],[-82.179718,26.699162],[-82.133331,26.691105],[-82.07945,26.487774]]],[[[-82.26363,26.716385],[-82.272232,26.71583],[-82.281387,26.808887],[-82.25528,26.759441],[-82.26363,26.716385]]],[[[-97.17778,26.084721],[-97.22472,26.34333],[-97.38576,26.838224],[-97.401108,27.052498],[-97.383621,27.207218000000125],[-97.356339,26.825939],[-97.20639,26.32833],[-97.17778,26.084721]]],[[[-82.587509,27.32111],[-82.60361,27.33],[-82.680557,27.425827],[-82.65417,27.418606],[-82.587509,27.32111]]],[[[-97.38222,27.218884000000116],[-97.37027,27.362495000000134],[-97.31723,27.495827],[-97.045547,27.843887],[-97.266953,27.50972],[-97.38222,27.218884000000116]]],[[[-80.16528,27.189163],[-80.28889,27.41333],[-80.448883,27.851387],[-80.371658,27.71471800000012],[-80.16528,27.189163]]],[[[-96.88779,28.030552],[-97.02528,27.869442],[-97.03583,27.87527],[-96.921936,28.08971800000012],[-96.86777,28.134995],[-96.83583,28.11055],[-96.88779,28.030552]]],[[[-96.55194,28.26667],[-96.736938,28.15388],[-96.813614,28.092495],[-96.79445,28.189438],[-96.70639,28.2061],[-96.40472,28.39222],[-96.40834,28.33444],[-96.55194,28.26667]]],[[[-96.36082,28.402496],[-96.31305,28.455273],[-96.23,28.48555],[-96.29805,28.43693900000011],[-96.36082,28.402496]]],[[[-80.66389,28.258331],[-80.65639,28.242218],[-80.72362,28.379162],[-80.74028,28.478329],[-80.73,28.542774],[-80.641953,28.597775],[-80.61055,28.548332],[-80.668884,28.376106000000103],[-80.66389,28.258331]]],[[[-90.87265,29.046133],[-90.906952,29.047497],[-90.950394,29.06],[-90.92361,29.06055500000014],[-90.87265,29.046133]]],[[[-90.739166,29.044998],[-90.758347,29.048607000000114],[-90.6425,29.07333],[-90.6575,29.065],[-90.739166,29.044998]]],[[[-90.335556,29.05722],[-90.31708,29.075275],[-90.28528,29.08305400000012],[-90.29834,29.06694],[-90.335556,29.05722]]],[[[-89.97528,29.24277100000012],[-90.02722,29.211105],[-90.031113,29.211941],[-89.955,29.268055000000118],[-89.97528,29.24277100000012]]],[[[-89.928329,29.27861],[-89.93527,29.28749800000014],[-89.9075,29.302219],[-89.90834,29.294163],[-89.928329,29.27861]]],[[[-89.86,29.3102760000001],[-89.88667,29.304443000000102],[-89.89389,29.323051],[-89.86972,29.335274],[-89.86,29.3102760000001]]],[[[-95.11111,29.098053],[-94.8214,29.338608],[-94.7847289999999,29.30805],[-94.869995,29.246105000000114],[-95.11111,29.098053]]],[[[-89.17055,29.473049],[-89.210556,29.463051],[-89.21916,29.46471800000012],[-89.156952,29.492493000000135],[-89.17055,29.473049]]],[[[-89.601105,29.513885],[-89.618332,29.53833],[-89.565826,29.554718],[-89.56221,29.521111000000133],[-89.601105,29.513885]]],[[[-89.08029,29.521385],[-89.07889,29.545551000000106],[-89.037216,29.573608],[-89.06889,29.531940000000134],[-89.08029,29.521385]]],[[[-91.78667,29.486107],[-91.84445,29.48305],[-92.034439,29.59166],[-91.926392,29.643608],[-91.856384,29.634995],[-91.72417,29.558609],[-91.78667,29.486107]]],[[[-85.11111,29.632217],[-85.14416,29.638885],[-85.19804,29.68527],[-85.08168,29.679161],[-85.11111,29.632217]]],[[[-89.428604,29.692772],[-89.45111,29.691662],[-89.468613,29.72860700000012],[-89.422501,29.722771],[-89.428604,29.692772]]],[[[-84.972778,29.60889],[-85.054169,29.593887],[-85.095,29.623886],[-84.97501,29.616940000000117],[-84.69221,29.758331000000112],[-84.972778,29.60889]]],[[[-89.42416,29.740829],[-89.488892,29.738049000000103],[-89.491104,29.79305],[-89.43805,29.78083],[-89.42416,29.740829]]],[[[-89.285278,29.771385],[-89.339447,29.796108000000117],[-89.341675,29.80389],[-89.275558,29.809162],[-89.285278,29.771385]]],[[[-84.6389,29.77833],[-84.66722,29.776943],[-84.57342,29.819996],[-84.58057,29.799999],[-84.6389,29.77833]]],[[[-88.84584,29.776386000000116],[-88.858612,29.758331000000112],[-88.82001,29.93055],[-88.868744,30.060604],[-88.80583,29.906384],[-88.84584,29.776386000000116]]],[[[-89.31778,30.040833],[-89.34639,30.05944],[-89.184998,30.16666400000014],[-89.26334,30.067776],[-89.31778,30.040833]]],[[[-88.43777,30.206104],[-88.498886,30.212494],[-88.500565,30.218884],[-88.42805,30.212772],[-88.43777,30.206104]]],[[[-89.081116,30.199718],[-89.09167,30.21666],[-89.060516,30.246674],[-89.0613859999999,30.233604000000124],[-89.081116,30.199718]]],[[[-88.55222,30.21472],[-88.599442,30.21555],[-88.754181,30.24472],[-88.5264,30.223049],[-88.55222,30.21472]]],[[[-88.09473,30.241104],[-88.29138,30.228607],[-88.3125,30.23277300000012],[-88.107773,30.273609],[-88.07028,30.25027],[-88.09473,30.241104]]],[[[-86.52917,30.40083],[-86.750565,30.398052],[-87.25307,30.317219],[-87.29222,30.332775],[-86.763062,30.404995],[-86.52917,30.40083]]],[[[-81.45111,30.719162],[-81.492218,30.887497],[-81.428879,30.94249],[-81.415833,30.939438],[-81.45111,30.719162]]],[[[-118.40695,32.816666],[-118.49388,32.866661],[-118.5925,33.04694400000011],[-118.550827,33.04249600000014],[-118.520279,32.97499],[-118.369164,32.854713],[-118.40695,32.816666]]],[[[-79.365005,33.003052],[-79.36111,33.04999500000014],[-79.33612,33.067215],[-79.34195,33.039436],[-79.365005,33.003052]]],[[[-119.444153,33.21666],[-119.51945,33.226379],[-119.566673,33.282768],[-119.48056,33.27444],[-119.41861,33.2291560000001],[-119.444153,33.21666]]],[[[-118.301941,33.309433],[-118.448883,33.327492],[-118.59222,33.486656],[-118.53168,33.487495],[-118.34973,33.39833],[-118.29723,33.3461],[-118.301941,33.309433]]],[[[-77.96083,33.849998],[-78.0164,33.874161],[-77.94972,33.913048],[-77.944992,33.905266],[-77.96083,33.849998]]],[[[-120.035278,34.02388],[-119.97139,33.99444],[-119.96695,33.95943],[-120.107498,33.905548],[-120.2261,34.00610400000011],[-120.035278,34.02388]]],[[[-120.29778,34.028603],[-120.36166,34.022491000000116],[-120.43805,34.036942000000124],[-120.363892,34.06554],[-120.29778,34.028603]]],[[[-119.868057,34.08416],[-119.69833,34.045273],[-119.560272,34.06666600000011],[-119.513634,34.04277],[-119.59,33.997215],[-119.78833,33.96720900000014],[-119.872498,33.99360700000011],[-119.91861,34.077492],[-119.868057,34.08416]]],[[[-77.85167,34.11110700000012],[-77.85583,34.149162],[-77.82085,34.17527],[-77.81723,34.170547],[-77.85167,34.11110700000012]]],[[[-76.53528,34.635551000000135],[-76.544998,34.63333],[-76.65472,34.686104000000114],[-76.559158,34.664993],[-76.53528,34.635551000000135]]],[[[-76.682495,34.702217],[-76.84222,34.69721],[-77.098053,34.65054],[-76.931107,34.691376],[-76.80222,34.706657],[-76.682495,34.702217]]],[[[-76.531952,34.585823],[-76.543884,34.607773],[-76.420837,34.775826],[-76.199722,34.941658],[-76.422226,34.75222000000013],[-76.531952,34.585823]]],[[[-76.06778,35.039436],[-76.1311,35.001938],[-76.07695,35.068886],[-76.03944,35.0611],[-76.06778,35.039436]]],[[[-76.01083,35.07416500000011],[-75.98111,35.114998],[-75.766953,35.193878],[-75.929169,35.12249],[-76.01083,35.07416500000011]]],[[[-75.527222,35.2355500000001],[-75.65361,35.22554800000011],[-75.531387,35.2708280000001],[-75.51251,35.30777000000012],[-75.46472,35.591103],[-75.51251,35.777214],[-75.44749,35.5825],[-75.527222,35.2355500000001]]],[[[-75.61945,35.82138],[-75.66194,35.83943],[-75.72333,35.941658],[-75.665833,35.926941],[-75.61417,35.861382],[-75.61945,35.82138]]],[[[-75.906113,37.11249500000014],[-75.89889,37.13694],[-75.872498,37.149162],[-75.877777,37.138885],[-75.906113,37.11249500000014]]],[[[-75.78833,37.238045],[-75.837509,37.227768],[-75.785278,37.298607],[-75.78139,37.291382],[-75.78833,37.238045]]],[[[-75.696655,37.402771],[-75.71083,37.390274],[-75.668335,37.46027400000014],[-75.67194,37.43971],[-75.696655,37.402771]]],[[[-121.80139,38.05526700000013],[-121.814438,38.053604],[-121.82001,38.06805400000013],[-121.796387,38.066666],[-121.80139,38.05526700000013]]],[[[-121.986107,38.085823],[-121.99834,38.086105],[-122.01807,38.098045],[-122.001953,38.10305],[-121.986107,38.085823]]],[[[-75.354172,37.866661],[-75.38417,37.872215],[-75.19388,38.107216],[-75.121109,38.263054],[-75.189163,38.089432],[-75.354172,37.866661]]],[[[-74.329453,39.421661],[-74.40805,39.381104],[-74.446655,39.41471],[-74.37625,39.420742],[-74.348053,39.474434],[-74.30139,39.462494000000106],[-74.329453,39.421661]]],[[[-74.24695,39.52555100000012],[-74.24306,39.554436],[-74.09999,39.750832000000116],[-74.13834,39.659431],[-74.24695,39.52555100000012]]],[[[-74.220001,40.5116650000001],[-74.23389,40.535553],[-74.17694,40.641937],[-74.06277,40.639435],[-74.057495,40.599716000000114],[-74.220001,40.5116650000001]]],[[[-73.22333,40.63527],[-73.29472,40.633881],[-72.766663,40.76611],[-73.02278,40.679436],[-73.22333,40.63527]]],[[[-72.26222,41.125267],[-72.38834,41.084991],[-72.62111,40.91304800000012],[-72.484436,40.90499100000011],[-72.34584,40.999718],[-72.13501,41.035271],[-72.101944,41.002495000000124],[-71.923889,41.08194],[-71.85611,41.06916],[-72.665833,40.794441],[-73.65279,40.619987],[-73.582779,40.5961],[-73.914085,40.563152000000116],[-73.77145,40.616272],[-73.7675,40.641663],[-73.86888,40.654434],[-73.89973,40.635826],[-73.88028,40.6],[-74.00111,40.58055100000013],[-74.032501,40.625824],[-73.922501,40.789719],[-73.835556,40.80499],[-73.589447,40.92054700000011],[-73.226669,40.91054500000013],[-73.146118,40.95916],[-72.64723,40.979713],[-72.35083,41.140831],[-72.23972,41.160545],[-72.26222,41.125267]]],[[[-69.994995,41.328049],[-69.957779,41.272491],[-69.99388,41.2502750000001],[-70.23416,41.283607],[-70.10556,41.29554700000011],[-70.01945,41.383881],[-69.994995,41.328049]]],[[[-70.50639,41.357216],[-70.69665,41.348877],[-70.7614,41.30804400000011],[-70.838058,41.359993000000145],[-70.61722,41.473877],[-70.54916,41.4575],[-70.50639,41.357216]]],[[[-71.297501,41.4586],[-71.358337,41.45916],[-71.26916,41.62499200000013],[-71.2225,41.65416],[-71.232773,41.494713000000104],[-71.297501,41.4586]]],[[[-68.80333,44.04805],[-68.854446,44.059433],[-68.898056,44.123878],[-68.76445,44.094994],[-68.80333,44.04805]]],[[[-68.650833,44.168884],[-68.7139,44.179436],[-68.72139,44.22887400000013],[-68.66806,44.28527100000014],[-68.603607,44.248878],[-68.61278,44.190826],[-68.650833,44.168884]]],[[[-68.320847,44.237213],[-68.404175,44.269440000000145],[-68.42833,44.319992],[-68.353333,44.439156],[-68.25528,44.451385],[-68.168335,44.345543000000134],[-68.320847,44.237213]]],[[[-123.9386,45.53666],[-123.93443,45.558327],[-123.91695,45.564438],[-123.925827,45.5480500000001],[-123.9386,45.53666]]],[[[-123.93805,46.431107],[-123.983063,46.46915],[-123.9725,46.515274],[-123.935272,46.479713],[-123.93805,46.431107]]],[[[-122.84306,47.206940000000145],[-122.859444,47.190826],[-122.91139,47.25777],[-122.902222,47.297493],[-122.84555,47.312492000000134],[-122.84306,47.206940000000145]]],[[[-122.48222,47.349716],[-122.51973,47.369713],[-122.450562,47.518326],[-122.3811,47.394714],[-122.48222,47.349716]]],[[[-122.495827,47.595543],[-122.55055,47.615273],[-122.58168,47.67166],[-122.54416,47.729156],[-122.50334,47.71527100000014],[-122.495827,47.595543]]],[[[-122.66666,48.025551],[-122.72278,48.071381],[-122.710007,48.117493],[-122.681107,48.10471300000012],[-122.66666,48.025551]]],[[[-122.50473,48.30971],[-122.54639,48.283607],[-122.613892,48.301933],[-122.66389,48.244713],[-122.48639,48.101105],[-122.36528,48.03749800000014],[-122.3344419999999,47.970543],[-122.37222,47.919441],[-122.531677,47.981102],[-122.757782,48.233879000000115],[-122.66112,48.377487],[-122.59889,48.408325],[-122.50473,48.30971]]],[[[-122.816673,48.416939],[-122.93611,48.457771],[-122.917503,48.534439],[-122.87666,48.564156],[-122.8125,48.465],[-122.816673,48.416939]]],[[[-123,48.446098],[-123.148621,48.50166],[-123.17833,48.592216],[-123.1055599999999,48.613052],[-122.995,48.52971600000012],[-122.96222,48.455269],[-123,48.446098]]],[[[-122.922501,48.7116620000001],[-122.858612,48.7061],[-122.749161,48.651382],[-122.874161,48.5886],[-123.01028,48.603607],[-123.01889,48.637772],[-122.922501,48.7116620000001]]],[[[-123.053329,48.973877],[-123.08806,48.972488],[-123.09375,48.99943500000012],[-123.03432,48.99943500000012],[-123.053329,48.973877]]],[[[-95.07806,49.359161],[-94.93593,49.3603],[-94.818344,49.30999],[-94.798889,49.15916],[-94.7075,48.94193],[-94.70666,48.79055000000011],[-94.605835,48.72443],[-94.476395,48.693878],[-94.291107,48.7061],[-94.235275,48.653046],[-93.851944,48.626938],[-93.77861,48.51638800000012],[-93.48944,48.539719],[-93.45418,48.55971],[-93.45666,48.594994],[-93.244995,48.640549],[-92.95306,48.623322],[-92.71529,48.541382],[-92.697769,48.485268],[-92.45528,48.394157],[-92.35666,48.22860000000014],[-92.28555,48.250549],[-92.30055,48.304993],[-92.25723,48.346939],[-92.05194,48.353882],[-91.956589,48.236633],[-91.73972,48.193321],[-91.645142,48.09834300000011],[-91.418335,48.041107],[-91.248886,48.079437],[-91.1261,48.15499100000011],[-90.868607,48.23749500000014],[-90.83029,48.225548],[-90.838608,48.184158],[-90.740829,48.090828],[-90.15639,48.12249],[-90.065,48.10833],[-89.993057,48.022766],[-89.903885,47.989159],[-89.760559,48.029991],[-89.35666,47.979713],[-88.69167,48.255554],[-88.36806,48.31221],[-84.85695,46.902214],[-84.77501,46.653046],[-84.565002,46.466385],[-84.48639,46.45888500000012],[-84.42833,46.503052],[-84.192764,46.546661],[-84.126389,46.531937],[-84.15834,46.39666],[-84.10583,46.247772],[-83.95889,46.07166300000011],[-83.84611,46.124992000000134],[-83.5775,46.10527],[-83.447769,46.01194],[-83.597778,45.827217],[-82.54306,45.35583],[-82.13028,43.585266000000104],[-82.41878,43.018639],[-82.52139,42.618881],[-82.58639,42.558601000000124],[-82.66528,42.54416],[-82.808884,42.41332200000011],[-83.08696,42.300545],[-83.16861,42.046104],[-83.07194,41.85972],[-82.69665,41.683876],[-82.425278,41.67555],[-81.249161,42.224991],[-80.09695,42.396385],[-78.98694,42.819992],[-78.935272,42.862495],[-78.918335,42.934715],[-79.02167,42.987213],[-79.08112,43.085548],[-79.04584,43.14888000000013],[-79.054169,43.262497],[-79.184723,43.46554600000013],[-78.72472,43.629433],[-76.80194,43.63361],[-76.434723,44.104713],[-76.05777,44.34499],[-75.864166,44.40277100000014],[-75.820557,44.47499],[-75.537216,44.691376],[-75.301666,44.846657],[-74.990829,44.98666],[-74.82889,45.019157],[-74.249161,44.992218],[-71.49416,45.020546],[-71.49306,45.07527],[-71.39584,45.20527],[-71.424438,45.25],[-71.31471,45.299438],[-71.14,45.253052],[-71.021118,45.32666],[-70.8786,45.2386],[-70.68944,45.458046],[-70.725281,45.499718],[-70.693054,45.571938],[-70.46666,45.711937],[-70.255,45.913048],[-70.23972,45.956657],[-70.3125,45.985825],[-70.28778,46.20304900000013],[-70.20029,46.33638],[-70.05055,46.438599000000124],[-70.00917,46.69804],[-69.232498,47.471375],[-69.04861,47.43555],[-69.044998,47.264442],[-68.895279,47.189987],[-68.30666,47.36444],[-68.185822,47.332771],[-67.794998,47.069992],[-67.772507,45.9575],[-67.799164,45.7011],[-67.65666,45.63055],[-67.41251,45.58694],[-67.410828,45.529991],[-67.485275,45.494438],[-67.45528,45.263054],[-67.34195,45.149994],[-67.26778,45.200546000000145],[-67.15944,45.166664],[-67.034439,44.984993],[-67.11705,44.926376],[-67.19833,44.919159],[-67.09689,44.868771],[-67.055389,44.900433],[-66.968887,44.831108],[-67.19305,44.6586],[-67.41583,44.628326],[-67.551102,44.6661],[-67.565277,44.55027],[-67.7075,44.51249700000011],[-67.775284,44.54694400000011],[-68.05305,44.3461],[-68.10861,44.46027400000014],[-68.32115,44.465881],[-68.454453,44.39804800000013],[-68.559158,44.418884],[-68.547501,44.317772],[-68.81111,44.328331000000105],[-68.793884,44.458046],[-68.72861,44.56610100000012],[-68.795273,44.57972],[-68.84973,44.473045],[-68.985,44.43971],[-69.089447,44.103325],[-69.04889,44.104996],[-69.0675,44.06332400000014],[-69.24834,43.938042],[-69.369995,44.046944],[-69.503067,43.848877],[-69.553558,43.897827],[-69.56221,43.963608],[-69.527786,44.034439],[-69.58833,43.960102],[-69.58867,43.878101],[-69.651199,43.900833],[-69.61945,44.042496],[-69.72205,43.9176],[-69.69205,43.880939],[-69.72194,43.78583],[-69.782219,43.956768],[-69.77333,44.079163],[-69.87582,43.983879],[-69.81855,43.902771],[-69.80056,43.78727],[-69.8239,43.714439],[-69.85695,43.800827],[-69.92639,43.865547],[-69.99055,43.87693800000011],[-70.1725,43.780548],[-70.25279,43.652214],[-70.20029,43.652489],[-70.189163,43.575829],[-70.29973,43.55582],[-70.393616,43.403046],[-70.45195,43.35583],[-70.522781,43.35083],[-70.662506,43.087769],[-70.72917,43.12276500000013],[-70.73759,43.07803],[-70.70222,43.055824],[-70.810822,42.893608],[-70.806107,42.714439],[-70.75029,42.6561],[-70.66916,42.63082],[-70.621658,42.692215],[-70.587784,42.6386030000001],[-70.63167,42.5936],[-70.868607,42.54193900000013],[-71.04306,42.369987],[-71.045273,42.31332400000013],[-70.96139,42.2413790000001],[-70.84889,42.27444],[-70.721664,42.217766],[-70.64307,42.05804400000011],[-70.68222,41.997215],[-70.531387,41.93277000000012],[-70.52667,41.80277],[-70.32472,41.71138],[-70.011124,41.797218],[-69.988892,41.915268],[-70.122772,42.054993],[-70.170273,42.058327],[-70.191376,42.023323],[-70.247498,42.06999],[-70.21973,42.09249100000011],[-70.078888,42.06221],[-69.993057,41.98082],[-69.93472,41.856659],[-69.936386,41.669441],[-70.41083,41.6386030000001],[-70.48389,41.560272],[-70.64084,41.534164],[-70.65889,41.60249],[-70.63417,41.70138500000013],[-70.726105,41.727768],[-70.926392,41.553879],[-71.12805,41.51082600000012],[-71.18582,41.46666],[-71.205276,41.64888],[-71.11111,41.794998],[-71.27139,41.65305],[-71.30888,41.658882],[-71.39139,41.811935],[-71.422226,41.481102000000135],[-71.50528,41.36693600000012],[-71.845795,41.318825],[-71.95944,41.347488],[-72.18332,41.326103],[-72.39195,41.27083],[-72.87805,41.249718],[-72.906387,41.28611],[-73.15056,41.15777],[-73.17778,41.17083],[-73.56221,41.01471700000013],[-73.64551,41.00752],[-73.822784,40.8261],[-73.934158,40.79805],[-73.99749,40.713459000000114],[-73.891678,40.943604],[-73.86528,41.073051000000135],[-73.876938,41.17638],[-73.952225,41.309158],[-73.988327,41.262497],[-73.91528,41.165543],[-73.904175,40.95943],[-74.022232,40.71554600000013],[-74.11665,40.66082],[-74.11777,40.71305100000012],[-74.19472,40.64694200000013],[-74.26916,40.474709],[-74.19415,40.43582],[-73.991379,40.464439],[-73.952225,40.299995],[-74.076401,39.776939],[-74.05388,40.057495],[-74.17999,39.751389],[-74.15028,39.704994],[-74.40556,39.516106],[-74.37657,39.474663000000135],[-74.39326,39.441284],[-74.42247,39.458939],[-74.462593,39.421066],[-74.41556,39.35527],[-74.52722,39.307495],[-74.51556,39.336655],[-74.648056,39.302216],[-74.59889,39.25371600000011],[-74.71112,39.08998900000012],[-74.84277,38.953049000000135],[-74.955,38.924164],[-74.89278,39.16777],[-75.16444,39.23276],[-75.41305,39.3761],[-75.53111,39.470825],[-75.557495,39.61805],[-75.41806,39.787773],[-75.12999,39.876099],[-75.028519,40.01230600000014],[-75.221664,39.872765],[-75.40723,39.82361],[-75.58861,39.64888000000013],[-75.5764,39.45943],[-75.39667,39.25111],[-75.38834,39.075554],[-75.302216,38.918884],[-75.18832,38.816666],[-75.14,38.694992],[-75.20084,38.59777],[-75.063889,38.586937],[-75.043884,38.421661],[-75.07584,38.332771],[-75.058334,38.438042],[-75.080841,38.459717],[-75.09473,38.32805],[-75.15083,38.24527000000012],[-75.355,38.084991000000116],[-75.41222,37.91944100000011],[-75.61472,37.582771],[-75.59167,37.563881],[-75.6525,37.494156],[-75.69943,37.553047],[-75.727219,37.54249600000014],[-75.841675,37.37249],[-75.86806,37.216934],[-75.96083,37.152214],[-76.01807,37.26721],[-75.930557,37.576103],[-75.662506,37.840546],[-75.644043,37.961174],[-75.749435,37.97971300000012],[-75.84666,37.927773000000116],[-75.880829,37.949432],[-75.853058,38.089157],[-75.91222,38.145271],[-75.838058,38.39888],[-76.037506,38.22665400000011],[-76.20889,38.386383],[-76.2222289999999,38.343323],[-76.24249,38.366936],[-76.32584,38.486382],[-76.184998,38.534439000000134],[-76.16528,38.567215],[-76.26889,38.551659],[-76.265289,38.619713],[-76.02333,38.5741650000001],[-75.96584,38.60194],[-75.95666,38.6486],[-76.00307,38.60527000000013],[-76.05499,38.607773000000115],[-76.191101,38.68387600000011],[-76.204727,38.73972],[-76.343338,38.684715],[-76.330841,38.76388500000013],[-76.273056,38.838882],[-76.16055,38.761383],[-76.10472,38.794441],[-76.141953,38.886108],[-76.220551,38.966103],[-76.360001,38.857216],[-76.305557,39.027489],[-76.24889,38.98555],[-76.18332,38.986656],[-76.06305,39.139992],[-76.22084,39.06082],[-76.26112,39.155548],[-76.1664,39.31972],[-75.97778,39.389992],[-75.83168,39.577492],[-75.938889,39.60443900000013],[-76.074448,39.559433],[-76.119995,39.489716],[-76.06055,39.4561],[-76.195267,39.36805],[-76.221939,39.368324],[-76.25696,39.44471],[-76.35973,39.399994],[-76.35194,39.375267],[-76.48083,39.301933],[-76.386948,39.226379],[-76.416397,39.209717],[-76.57667,39.26721],[-76.618607,39.254166],[-76.443054,39.14888],[-76.39307,39.020546],[-76.523621,38.854713],[-76.537506,38.731659],[-76.505,38.53110500000014],[-76.3761,38.363609],[-76.44861,38.33943],[-76.631668,38.483604],[-76.678329,38.675552],[-76.666107,38.48054500000012],[-76.48195,38.315544],[-76.371109,38.28833],[-76.391953,38.23860200000013],[-76.3175,38.15304600000013],[-76.309998,38.046387],[-76.597778,38.229713],[-76.74583,38.23166],[-76.86528,38.271378],[-77.04028,38.441376],[-77.184433,38.36666],[-77.24445,38.398331],[-77.26445,38.483879000000115],[-77.23389,38.551659],[-77.095276,38.681381],[-77.02167,38.700546],[-77.015015,38.86388],[-77.06111,38.90527],[-77.03805,38.729431],[-77.13444,38.698601],[-77.2488859999999,38.5986],[-77.30444,38.495544],[-77.320007,38.345268],[-77.22417,38.3336],[-77.06193,38.381935],[-76.932495,38.203049],[-76.5925,38.129158],[-76.501114,38.0236],[-76.24167,37.904991],[-76.28555,37.69694],[-76.35361,37.618599],[-76.7025,37.83305400000011],[-76.929169,38.088326],[-77.1339,38.172768],[-76.93999,38.07222],[-76.84416,37.922768],[-76.724716,37.79805],[-76.615005,37.752777],[-76.53583,37.62721],[-76.28667,37.5675],[-76.24527,37.49527],[-76.24083,37.36888],[-76.289444,37.335548],[-76.36528,37.38388],[-76.40472,37.34748800000011],[-76.381104,37.27388000000013],[-76.492218,37.2736],[-76.68277,37.429718],[-76.601944,37.302216],[-76.37721,37.214157000000114],[-76.26807,37.07888],[-76.28917,37.006386000000134],[-76.389725,36.97332],[-76.61444,37.13221],[-76.641388,37.223877],[-76.88705,37.24688],[-76.99554,37.3161],[-77.2386,37.336105],[-77.23222,37.296387],[-77.02722,37.283607],[-76.71666,37.147491000000116],[-76.648056,37.049164],[-76.479996,36.961105],[-76.47749,36.905266],[-76.29361,36.843323],[-76.31166,36.947212],[-75.98999,36.913879],[-75.85168,36.54907200000014],[-75.785278,36.28360700000013],[-75.529175,35.80387900000011],[-75.728607,36.061104000000114],[-75.938889,36.71666],[-75.9761,36.565269],[-75.9514,36.537216],[-75.91362,36.57444],[-75.89917,36.48860200000013],[-75.97389,36.492493],[-76.04527,36.586655],[-76.0347289999999,36.496658],[-75.883331,36.295547],[-75.78555,36.06999200000013],[-75.851669,36.10833],[-75.97084,36.311935],[-75.99805,36.30999],[-75.92433,36.170769],[-76.01167,36.183327],[-76.19554,36.319992],[-76.2222289999999,36.28889],[-76.14445,36.256386],[-76.06305,36.15332000000012],[-76.21695,36.093323],[-76.370834,36.149994000000106],[-76.371384,36.076942000000145],[-76.497772,36.008331000000105],[-76.65666,36.031105],[-76.72749,36.16527],[-76.70612,36.26416000000011],[-76.75835,36.198601],[-76.7305599999999,35.93943],[-76.56027,35.938324],[-76.40472,35.97971],[-76.38167,35.944992],[-76.2675,35.918884000000105],[-76.305267,35.9561],[-76.07085,35.991936],[-76.01973,35.92666],[-76.06027,35.846939],[-76.03778,35.687767],[-76.13945,35.691101],[-76.03528,35.649994],[-75.99277,35.713608000000136],[-75.988892,35.8836060000001],[-75.853607,35.974991],[-75.720276,35.814438],[-75.74333,35.613884],[-75.79306,35.569443],[-75.860001,35.58472],[-75.97555,35.52166],[-76.14917,35.336937],[-76.49916,35.386108],[-76.57472,35.50805],[-76.51556,35.53194],[-76.579727,35.550545],[-76.63194,35.52249],[-76.601395,35.43138],[-76.6525,35.41499],[-76.92027,35.463051],[-77.050827,35.530273],[-77.01916,35.48193],[-76.8325,35.39222],[-76.503891,35.310547],[-76.46889,35.27166],[-76.48805,35.22221400000012],[-76.563614,35.233604],[-76.66916,35.17416400000013],[-76.58168,35.147217],[-76.57362,35.17166],[-76.554443,35.131935],[-76.7614,34.987770000000125],[-76.86722,35],[-77.07779,35.150826],[-76.94444,34.97748600000011],[-76.75307,34.905266],[-76.647507,34.978043],[-76.489441,35.009163],[-76.460556,35.070549],[-76.4305,34.994553],[-76.45834,34.93387600000011],[-76.32251,34.970543000000134],[-76.353058,35.023323],[-76.31221,35.015],[-76.272781,34.961105],[-76.498886,34.736382],[-76.6525,34.714996],[-76.69055,34.79999500000014],[-77.08612,34.676102],[-77.12332,34.693321],[-77.314163,34.557495],[-77.353111,34.59916],[-77.33,34.64249],[-77.37222,34.726654],[-77.428879,34.74193600000012],[-77.372498,34.520546],[-77.34999,34.520271],[-77.63277,34.361382000000106],[-77.55527,34.432495],[-77.382767,34.514999],[-77.447769,34.508049],[-77.68222,34.365547000000106],[-77.858612,34.157494],[-77.930832,33.927773],[-77.92444,34.107216],[-77.96167,34.1586],[-77.94861,34.008888],[-78.01363,33.891937],[-78.24028,33.919991],[-78.576401,33.881104],[-78.8275,33.73027000000013],[-79.13333,33.421936],[-79.196442,33.278938],[-79.26973,33.31638],[-79.1886,33.43638],[-79.27139,33.373322],[-79.29388,33.280273],[-79.22378,33.231384],[-79.205841,33.165543],[-79.37172,33.058945],[-79.38194,33.00972],[-79.55695,33.024162],[-79.628601,32.94305],[-79.61111,32.91666],[-79.815826,32.767212],[-79.901108,32.809715],[-79.88055,32.844437],[-79.9436,32.85305],[-79.96806,32.78388200000012],[-79.88327,32.73477],[-79.88417,32.68721],[-80.32112,32.481934],[-80.40916,32.471657],[-80.43277,32.500275],[-80.67166,32.52166],[-80.68222,32.49971800000014],[-80.479446,32.473602],[-80.42805,32.403046],[-80.46722,32.315826],[-80.63138,32.256386],[-80.674438,32.450272],[-80.675163,32.32654600000012],[-80.711121,32.31972],[-80.83694,32.51666300000011],[-80.783325,32.310547],[-80.669998,32.214157],[-80.81973,32.101936],[-80.801102,32.152489],[-80.82556,32.156654],[-80.897232,32.04277],[-80.835556,31.996384],[-81.121933,31.728607],[-81.160004,31.568329],[-81.335556,31.550831000000134],[-81.29083,31.490829],[-81.204727,31.474716],[-81.293884,31.323051000000135],[-81.282227,31.221939],[-81.378944,31.15866],[-81.440552,31.2111],[-81.49638,31.12777],[-81.4014,31.079441],[-81.533615,30.848331],[-81.486938,30.764164000000104],[-81.507339,30.713463000000104],[-81.43527,30.639439],[-81.45306,30.508331],[-81.41139,30.46471800000012],[-81.38612,30.26111],[-81.185272,29.619717],[-80.96611,29.153049],[-80.58722,28.590553],[-80.53332,28.47138200000012],[-80.59695,28.402218],[-80.59555,28.226105],[-80.56139,28.07944],[-80.44665,27.86444100000011],[-80.565002,28.051109],[-80.61945,28.211384],[-80.618057,28.399719],[-80.583328,28.508888000000127],[-80.602219,28.607498000000135],[-80.76083,28.606106],[-80.78583,28.64444],[-80.745544,28.725552],[-80.84416,28.79055],[-80.755569,28.41583],[-80.397232,27.69555],[-80.215012,27.19361],[-80.10527,27.051662000000135],[-80.03332,26.78666],[-80.02888,26.623608],[-80.13612,25.905552],[-80.18971,25.744995],[-80.309998,25.610828],[-80.3761,25.319717],[-80.425827,25.24110400000012],[-80.39862,25.184719],[-80.450287,25.241661],[-80.503151,25.198746000000142],[-80.50446,25.240829],[-80.53999,25.245548],[-80.68222,25.163609],[-81.088058,25.11555],[-81.17639,25.228607000000125],[-81.156113,25.309441],[-81.12849,25.32372],[-80.98332,25.201107],[-80.91528,25.251389],[-80.98083,25.320553],[-81.12539,25.376942],[-81.343613,25.81249600000012],[-81.558609,25.919716],[-81.674713,25.914440000000127],[-81.73659,25.959442],[-81.80194,26.101940000000123],[-81.875,26.453327],[-81.970055,26.48283],[-81.91872,26.512329],[-81.77779,26.710552],[-81.893341,26.658886],[-81.95084,26.53944],[-82.06416,26.544998],[-82.079727,26.707771],[-82.01723,26.964718],[-82.19194,26.938049],[-82.15834,26.78],[-82.30278,26.837219],[-82.39528,26.959995000000106],[-82.57584,27.399998],[-82.65527,27.461662000000103],[-82.58861,27.498329],[-82.57584,27.54472],[-82.616104,27.55360800000011],[-82.401672,27.785275],[-82.422501,27.9175],[-82.691376,28.032219],[-82.71916,27.928051],[-82.60361,27.873051],[-82.594727,27.813332000000116],[-82.63138,27.700272],[-82.722504,27.65694],[-82.85333,27.85527400000012],[-82.66305,28.439995],[-82.6286,28.696384000000137],[-82.680832,28.802219],[-82.634445,28.834442],[-82.631104,28.884995],[-82.75084,29.007500000000103],[-82.80278,29.15499],[-82.98555,29.178608],[-83.07167,29.224438],[-83.2225,29.422771],[-83.39473,29.52083],[-83.42805,29.668327],[-83.5764,29.758053],[-83.63612,29.879997],[-84.01695,30.09999800000014],[-84.2589,30.097775],[-84.45222,30.009441],[-84.441666,29.959717000000126],[-84.33389,29.940273],[-84.35222,29.890553],[-84.51584,29.914719],[-84.86555,29.737495],[-84.865829,29.803608],[-84.97778,29.733604],[-85.35417,29.676662],[-85.41139,29.78527],[-85.407227,29.86249],[-85.35083,29.68666100000013],[-85.30333,29.702496000000107],[-85.309433,29.82361],[-85.36665,29.90166],[-85.633942,30.104439],[-85.45195,30.015274],[-85.392227,30.049442],[-85.64888,30.14683],[-85.68967,30.187084],[-85.66362,30.246105],[-85.74695,30.297218],[-85.8389,30.289719],[-85.84805,30.250000000000114],[-85.833618,30.226662],[-85.759445,30.239162],[-85.72555,30.125828],[-85.92999,30.24472],[-86.33417,30.376385],[-86.10194,30.37916200000012],[-86.12527,30.43055],[-86.263336,30.496662000000125],[-86.43805,30.496105],[-86.59111,30.41583],[-86.78029,30.416664],[-87.190277,30.35416],[-86.93639,30.44999700000011],[-87.01251,30.52],[-87.162506,30.519718000000122],[-87.179718,30.431664],[-87.30666,30.321384],[-87.525558,30.277222],[-87.45222,30.308331],[-87.341385,30.429161],[-87.42039,30.480946],[-87.40889,30.452774],[-87.46139,30.36194],[-87.56862,30.279442],[-87.73361,30.23499],[-88.020554,30.218605],[-87.756393,30.285275],[-87.91251,30.414162],[-87.92833,30.63638300000014],[-88.020279,30.701107],[-88.08417,30.57111],[-88.138062,30.31361],[-88.193604,30.32666],[-88.194153,30.366665000000125],[-88.33833,30.403606],[-88.402191,30.387665],[-88.46306,30.31527],[-88.61444,30.363609],[-88.7225,30.346386],[-88.8325,30.413052],[-88.98083,30.418327],[-88.985,30.386383],[-89.31027,30.312775],[-89.44665,30.18388],[-89.52206,30.186855],[-89.58389,30.150829],[-89.976944,30.262775],[-90.05777,30.356941],[-90.23056,30.380829],[-90.425827,30.186382],[-90.41722,30.10277600000012],[-90.349731,30.06166500000012],[-90.16583,30.023052],[-90.043335,30.034721000000108],[-89.66722,30.167774],[-89.643341,30.13028],[-89.71916,30.05805],[-89.80861,30.04361],[-89.843613,30.005276],[-89.819168,29.945],[-89.63667,29.872498],[-89.59639,29.883884000000133],[-89.483063,30.074165],[-89.399445,30.050831],[-89.333618,29.876385000000138],[-89.404175,29.762497],[-89.479996,29.83194],[-89.66251,29.66639],[-89.75334,29.630829],[-89.676392,29.523888],[-89.51916,29.46249],[-89.46417,29.403049],[-89.255844,29.334721000000112],[-89.18721,29.339718],[-89.008347,29.176941],[-89.04777,29.104717],[-89.15388,29.039997],[-89.24943,29.096107],[-89.405,28.926662],[-89.272781,29.15583],[-89.32223,29.180828],[-89.32695,29.106384],[-89.395554,29.093887],[-89.478607,29.233604000000128],[-89.609726,29.25111],[-89.772232,29.33805],[-89.74943,29.362774],[-89.77528,29.416386],[-90.17833,29.572498],[-90.20473,29.53694200000012],[-90.170273,29.486107],[-90.025833,29.425274],[-90.065826,29.183331],[-90.20666,29.091942],[-90.247772,29.082497],[-90.272781,29.25972],[-90.345001,29.30916200000013],[-90.44444,29.326107],[-90.524445,29.289719],[-90.70473,29.11472],[-90.876099,29.127773],[-91.00307,29.220829],[-91.055557,29.19055200000014],[-91.24695,29.240829],[-91.33778,29.335274],[-91.22333,29.360554],[-91.163895,29.334995],[-91.15028,29.248882],[-91.116104,29.2633320000001],[-91.123886,29.344719000000108],[-91.267227,29.46693800000014],[-91.41501,29.54027600000012],[-91.54333,29.542774],[-91.558334,29.635551],[-91.62999,29.739162],[-91.822784,29.790276],[-91.841675,29.830276000000136],[-92.148621,29.76888700000012],[-92.175827,29.690273],[-92.09973,29.61555],[-92.30833,29.539719],[-92.68777,29.600273],[-93.037506,29.739162],[-93.240829,29.785],[-93.71278,29.760277],[-93.840286,29.704163],[-93.9014,29.806664000000126],[-93.80666,29.83721900000012],[-93.763062,29.967495],[-93.78778,29.994438],[-93.84528,29.988049],[-93.95944,29.81277],[-93.857498,29.676105],[-94.1261,29.656662],[-94.64667,29.450829],[-94.77251,29.363884],[-94.785004,29.393608],[-94.69444,29.466106],[-94.503067,29.516666],[-94.47583,29.561386],[-94.76584,29.568054],[-94.70612,29.71610600000014],[-94.75362,29.787777],[-94.953613,29.694717],[-95.055557,29.72083],[-95.015839,29.56555200000014],[-94.88806,29.375553000000135],[-94.902786,29.31444],[-95.093887,29.177773],[-95.14084,29.057499],[-95.33195,28.91277],[-95.62305,28.75333],[-95.93083,28.693886],[-95.949722,28.624165],[-95.762398,28.693718],[-96.212784,28.48555],[-95.99416,28.605274],[-95.98582,28.649162],[-96.21666,28.578053000000125],[-96.218613,28.601109],[-96.137222,28.62833],[-96.18777,28.694996],[-96.27,28.68416],[-96.44194,28.763611],[-96.414444,28.637218],[-96.369995,28.623329000000126],[-96.435822,28.599442],[-96.555267,28.64666],[-96.58417,28.717216],[-96.641678,28.719715],[-96.65083,28.681385],[-96.58389,28.566940000000102],[-96.39835,28.436108000000104],[-96.664719,28.314999000000114],[-96.700562,28.336109],[-96.70584,28.396942],[-96.803604,28.473049],[-96.84584,28.4075],[-96.78139,28.346107],[-96.780838,28.241383],[-96.88277,28.14027],[-96.98639,28.12194],[-97.02806,28.186382],[-97.172501,28.159996],[-97.21278,28.063885],[-97.14416,28.028053],[-97.04611,28.091663],[-97.0219419999999,28.033054],[-97.18472,27.827496],[-97.520554,27.866386],[-97.392776,27.783333],[-97.27972,27.656105],[-97.41112,27.32749600000011],[-97.497498,27.30805],[-97.52528,27.37722],[-97.62128,27.33689],[-97.77389,27.458885],[-97.639175,27.254719],[-97.541672,27.23388],[-97.423889,27.267498],[-97.47501,27.03083],[-97.56471,26.996941000000106],[-97.55943,26.836109],[-97.49554,26.800831],[-97.401947,26.36944],[-97.36722,26.363609],[-97.31862,26.246105],[-97.25279,25.984718],[-97.18777,26.009163],[-97.168884,26.076107],[-97.140739,25.966429000000115],[-97.31529,25.919998],[-97.34807,25.898052],[-97.349457,25.848888000000102],[-97.412231,25.84222000000011],[-97.51112,25.89333],[-97.648056,26.029442],[-97.8439,26.06361],[-98.06639,26.03833],[-98.200012,26.062496],[-98.44473,26.226109],[-99.10474,26.434998],[-99.26807,26.857498000000135],[-99.32695,26.87222],[-99.45862,27.046944],[-99.44334,27.258053],[-99.505,27.570274],[-99.59084,27.638885000000126],[-99.6964,27.656944],[-99.835556,27.775276000000133],[-99.881668,27.90638700000011],[-100.0714,28.151108],[-100.1864,28.197498],[-100.282501,28.28138700000011],[-100.35918,28.518330000000105],[-100.63362,28.95611],[-100.668335,29.113331],[-101.04501,29.465836],[-101.141678,29.491943000000102],[-101.31084,29.615276000000108],[-101.405014,29.772778],[-102.07667,29.798611000000108],[-102.30585,29.889442],[-102.49278,29.78167],[-102.670288,29.742775],[-102.895844,29.254166],[-103.15417,28.98139],[-103.375,29.023609000000135],[-103.531403,29.12611],[-104.04529,29.33083],[-104.205,29.479443],[-104.41917,29.569443],[-104.540009,29.671108],[-104.68028,29.945553],[-104.703613,30.054996],[-104.68224,30.187496],[-104.82223,30.38611],[-104.90056,30.57278],[-105.2075,30.801666],[-105.2614,30.797222],[-105.39307,30.86583300000012],[-105.597778,31.079998],[-105.770279,31.176109],[-105.841949,31.269165],[-106.00862,31.394444000000135],[-106.214447,31.475277000000116],[-106.400848,31.750275],[-106.54889,31.782776000000123],[-108.208618,31.783333],[-108.20834,31.333054],[-111.04584,31.333054],[-114.78973,32.498055],[-114.80983,32.506989],[-114.71909,32.718456],[-117.12237,32.535332],[-117.21143,32.69720500000011],[-117.11472,32.614716],[-117.14195,32.681938000000116],[-117.20557,32.729988000000105],[-117.24249,32.662479000000125],[-117.26869,32.687458000000106],[-117.28027,32.82940300000013],[-117.248337,32.87054400000011],[-117.27194,32.98526800000013],[-117.32945,33.12443],[-117.48083,33.327492],[-118.1161,33.760826],[-118.22556,33.783607],[-118.270279,33.765831000000105],[-118.29028,33.714996],[-118.40028,33.74943500000012],[-118.42111,33.7786],[-118.386948,33.849716],[-118.5347289999999,34.050827],[-118.8364,34.030548],[-119.12917,34.113884],[-119.21889,34.163605],[-119.3124689999999,34.283516],[-119.54167,34.414154],[-120.123322,34.47887400000013],[-120.44695,34.453606],[-120.494453,34.529991],[-120.62027,34.570831],[-120.59111,34.6986010000001],[-120.59584,34.85555],[-120.62471,34.894997],[-120.614166,35.135826],[-120.8511,35.22137],[-120.86945,35.27388],[-120.84111,35.35527],[-120.919998,35.4488750000001],[-120.993332,35.473877],[-121.16666,35.6491620000001],[-121.265839,35.69249],[-121.298607,35.769714],[-121.435,35.89111],[-121.47417,36],[-121.65834,36.178047],[-121.801102,36.24388],[-121.86749,36.31249],[-121.945267,36.59277],[-121.904449,36.6427690000001],[-121.855003,36.61305],[-121.8049929999999,36.655266],[-121.763901,36.812492],[-121.796387,36.87943300000012],[-121.88722,36.97637900000012],[-122.03416,36.953049],[-122.15279,36.998604],[-122.376663,37.195541000000105],[-122.37888,37.37721],[-122.42972,37.491104],[-122.48805,37.518326000000116],[-122.48555,37.790833000000134],[-122.386948,37.816666],[-122.356659,37.779434],[-122.356659,37.61332700000014],[-122.07668,37.462212],[-122.00584,37.471375],[-122.0825,37.51194],[-122.15723,37.69471],[-122.39334,37.957771],[-122.240547,38.059158],[-122.12773,38.03526],[-121.989441,38.065544],[-121.68999,38.01694],[-121.58667,38.10527],[-121.42,38.01277],[-121.57668,38.11582900000013],[-121.65361,38.103607000000125],[-121.73611,38.044716],[-121.81868,38.081154],[-121.90527,38.066101],[-122.01862,38.148113],[-122.109734,38.06138],[-122.36528,38.155548],[-122.48138,38.1186],[-122.47917,37.933601],[-122.41945,37.88472],[-122.49138,37.827774],[-122.9189,38.07321500000012],[-122.947533,37.999691],[-122.99707,38.005108],[-122.92694,38.162491],[-122.964561,38.23961300000013],[-122.8036,38.088043],[-122.95862,38.285271],[-123.0466,38.316231],[-123.04273,38.3626670000001],[-123.10472,38.4611],[-123.30916,38.56999200000012],[-123.451401,38.737770000000125],[-123.70361,38.932495],[-123.71472,38.9686],[-123.66666,39.019157],[-123.68277,39.114441],[-123.79695,39.359161],[-123.73639,39.553047],[-123.77583,39.717209],[-124.06416,40.09360500000014],[-124.33223,40.266106],[-124.321671,40.330826],[-124.37582,40.451935],[-124.27362,40.69721],[-124.14307,40.811935],[-124.094727,41.02388000000013],[-124.12222,41.157494],[-124.039993,41.43110700000011],[-124.118607,41.683052],[-124.215561,41.819992],[-124.185852,41.99947],[-124.33112,42.10999300000014],[-124.3811,42.24305],[-124.42084,42.481102],[-124.38474,42.55110200000013],[-124.38861,42.658882],[-124.481377,42.74805],[-124.52444,42.866104],[-124.424438,43.04583],[-124.37778,43.323326],[-124.25933,43.4006040000001],[-124.13834,43.371101],[-124.196953,43.4561],[-124.30249,43.400543],[-124.19141,43.671089],[-124.115829,43.72527],[-124.15388,43.793884],[-124.04639,44.627769],[-124.05583,44.833878000000134],[-123.94444,45.164436],[-123.944099,45.520588],[-123.871613,45.52898],[-123.931107,45.591934],[-123.900284,45.67471300000011],[-123.95,45.806099],[-123.909157,46.03388],[-123.95195,46.181107],[-123.92694,46.214439],[-123.60278,46.200546000000145],[-123.498337,46.251106],[-123.398621,46.174995],[-123.2675,46.145271],[-123.16357,46.19519],[-123.291107,46.174995],[-123.43443,46.288048],[-123.59445,46.272766],[-123.6936,46.300545],[-123.861938,46.25944],[-124,46.323608],[-124.03833,46.409714],[-124.04277,46.65804300000013],[-124.015839,46.65443],[-123.98999,46.397774],[-123.94167,46.391106],[-123.879173,46.53249],[-123.940826,46.636658],[-123.84222,46.715828],[-123.78333,46.67527],[-123.752563,46.693069],[-123.872223,46.755829],[-123.95445,46.72332],[-124.07333,46.742767],[-124.097504,46.861382],[-123.971939,46.93277],[-123.79666,46.976097],[-123.97389,46.990547],[-124.084442,47.066666],[-124.132767,47.044716],[-124.108887,46.97637900000012],[-124.161942,46.94110100000012],[-124.148621,47.060822],[-124.18332,47.221375],[-124.22749,47.31415600000014],[-124.30083,47.371101],[-124.362213,47.675552],[-124.46472,47.826385],[-124.59056,47.888329],[-124.654716,47.99416],[-124.71278,48.39888],[-124.566101,48.379715],[-123.93472,48.17582700000014],[-123.25362,48.12804],[-123.1055599999999,48.19249],[-122.970001,48.113327],[-122.87193,48.10083],[-122.838333,48.141106],[-122.751106,48.161102],[-122.7410959999999,48.128326],[-122.778061,48.09027100000014],[-122.63028,47.915825],[-122.74777,47.763054],[-122.78806,47.765549000000135],[-122.794998,47.860275000000115],[-122.84944,47.83638000000013],[-122.873894,47.7061],[-123.10445,47.469437],[-123.147507,47.368599],[-123.01028,47.367493],[-122.8364,47.439156],[-123.02,47.37999],[-123.10249,47.39972],[-122.93944,47.61055],[-122.736389,47.715],[-122.56555,47.93804200000011],[-122.510559,47.921104],[-122.454727,47.774437],[-122.60472,47.700546],[-122.59906,47.60394],[-122.680283,47.650543],[-122.66695,47.543327],[-122.52917,47.59777100000014],[-122.50862,47.500549],[-122.54999,47.282768],[-122.67416,47.310547],[-122.61916,47.420547],[-122.745827,47.29999500000014],[-122.7114,47.249718],[-122.758621,47.18971],[-122.81082,47.267769],[-122.765839,47.32444],[-122.7975,47.39527],[-122.846497,47.31316],[-122.90292,47.299999],[-122.917007,47.284496000000104],[-122.943329,47.20166000000012],[-123.068619,47.15166],[-123.068893,47.113327],[-122.9514,47.13499],[-122.878601,47.06416],[-122.882492,47.159988],[-122.799728,47.186378],[-122.71306,47.11610400000012],[-122.61,47.172768],[-122.5239,47.280273],[-122.31807,47.366104],[-122.309723,47.4011],[-122.41833,47.672218],[-122.372498,47.83499],[-122.289436,47.96054800000013],[-122.320557,48.074165],[-122.37555,48.216385],[-122.44749,48.224709],[-122.47194,48.167213],[-122.42999,48.119713000000104],[-122.4514,48.114998],[-122.5,48.126656],[-122.53111,48.198326],[-122.5014,48.25000000000011],[-122.39084,48.238045],[-122.37917,48.291664],[-122.58801,48.428818],[-122.66472,48.40694],[-122.70445,48.486107],[-122.61555,48.51083],[-122.482498,48.452217],[-122.4375,48.598045],[-122.5025,48.749161],[-122.64944,48.764442000000145],[-122.809998,48.93277],[-122.729172,48.960548],[-122.7603,48.99943500000012],[-95.15417,48.99943500000012],[-95.15279,49.376656],[-95.07806,49.359161]]],[[[-179.105286,51.213051],[-179.142,51.26859300000012],[-179.08725,51.290833000000134],[-179.05698,51.248322],[-179.105286,51.213051]]],[[[-178.96249,51.311661],[-178.9892,51.30332],[-178.98526,51.37387100000012],[-178.94998,51.396935],[-178.90033,51.355],[-178.96249,51.311661]]],[[[178.99301100000014,51.57499700000011],[179.246613,51.407211],[179.471344,51.36749300000014],[179.252197,51.34749],[178.9599610000001,51.539719000000105],[178.71912,51.5825],[178.636383,51.637772],[178.6821900000001,51.656654],[178.99301100000014,51.57499700000011]]],[[[178.392212,51.763054],[178.234406,51.811935],[178.223022,51.830826],[178.329956,51.814995],[178.392212,51.763054]]],[[[-178.776978,51.74553700000013],[-178.85333,51.771103],[-178.84253,51.819153],[-178.7428,51.80777],[-178.726654,51.782761],[-178.776978,51.74553700000013]]],[[[-176.33643,51.72166],[-176.392548,51.73860200000013],[-176.41449,51.854996],[-176.27698,51.860268],[-176.26117,51.780266],[-176.33643,51.72166]]],[[[-176.01282,51.830269],[-176.00613,51.80971],[-176.14032,51.821938],[-176.14334,51.774437],[-176.21945,51.83138300000012],[-176.1792,51.88165300000014],[-176.01282,51.830269]]],[[[-175.951111,51.86887400000012],[-175.9567,51.847481],[-176.093079,51.88526],[-176.00195,51.908875],[-175.951111,51.86887400000012]]],[[[-177.813904,51.719704],[-177.91113,51.659424000000115],[-177.90781,51.591927],[-177.94998,51.606377],[-178.10083,51.664711],[-178.09058,51.698868],[-177.95224,51.722755],[-177.955261,51.76471],[-178.21808,51.871933],[-178.14752,51.910538],[-177.93726,51.918053],[-177.79724,51.788879],[-177.813904,51.719704]]],[[[-177.122223,51.784431],[-177.1539,51.699425],[-177.26059,51.67193],[-177.425842,51.72499],[-177.62085,51.696091],[-177.65198,51.649994],[-177.70447,51.700829],[-177.63559,51.733597],[-177.52533,51.7161],[-177.243347,51.7933200000001],[-177.200317,51.82222000000013],[-177.19559,51.92054],[-177.15726,51.938324],[-177.04388,51.89526400000011],[-177.122223,51.784431]]],[[[-175.72504,51.93055],[-175.747223,51.944153],[-175.72919,51.966103],[-175.6575,51.95694],[-175.72504,51.93055]]],[[[-176.5506,51.905823],[-176.60556,51.902771],[-176.642242,51.857216],[-176.59027,51.82943],[-176.426392,51.836372],[-176.42975,51.730263],[-176.530609,51.726929],[-176.93863,51.584435],[-176.97504,51.59581800000012],[-176.97226,51.657761],[-176.89334,51.765831000000105],[-176.781403,51.830269],[-176.77698,51.94165],[-176.56366,51.98582],[-176.5506,51.905823]]],[[[178.5369260000001,51.893608],[178.46692,51.920547],[178.4682920000001,51.984718],[178.60607900000014,51.947769],[178.5369260000001,51.893608]]],[[[-175.86499,51.963608],[-175.91806,51.963875000000144],[-175.94669,51.978867],[-175.801941,51.982201000000146],[-175.86499,51.963608]]],[[[179.73745700000018,51.903046],[179.64971900000012,51.867210000000114],[179.56079,51.883606],[179.5000000000001,51.914154],[179.48608400000012,51.972214],[179.6586,52.024712000000136],[179.77691700000014,51.960548],[179.73745700000018,51.903046]]],[[[-176.037231,51.964432],[-176.16641,51.99249300000014],[-176.190857,52.05999],[-176.13806,52.10833],[-176.04611,52.102219],[-175.9953,52.029160000000104],[-176.037231,51.964432]]],[[[177.68469200000015,52.07999400000011],[177.60495,51.92027300000012],[177.40054,51.925827],[177.342468,51.88611],[177.31857300000013,51.82111],[177.24106,51.87693800000011],[177.366638,51.969986],[177.464691,51.987770000000125],[177.569427,52.113052],[177.617462,52.12638],[177.68469200000015,52.07999400000011]]],[[[-173.515869,52.10693400000014],[-173.17255,52.107491],[-172.9556,52.085541],[-173.238068,52.0711060000001],[-173.49503,52.014992],[-173.564758,52.05026],[-173.923096,52.051659],[-174.05698,52.12027000000012],[-173.79282,52.106102],[-173.59198,52.149437],[-173.515869,52.10693400000014]]],[[[175.96109000000013,52.335548],[175.912476,52.336937],[175.881897,52.37249],[175.987732,52.35361],[175.96109000000013,52.335548]]],[[[-172.38837,52.289719000000105],[-172.52139,52.24305],[-172.628052,52.258324],[-172.56723,52.334717],[-172.43832,52.39193],[-172.30115,52.34388],[-172.313904,52.311928],[-172.38837,52.289719000000105]]],[[[-173.9953,52.29110000000014],[-174.142,52.12387],[-174.374695,52.098038],[-174.44415,52.041939],[-174.71976,52.002213],[-174.8942,52.038605],[-175.07971,51.998322000000144],[-175.335846,52.014153000000135],[-175.011719,52.072762],[-174.97919,52.054703],[-174.90448,52.111664],[-174.79556,52.09388],[-174.50836,52.133606],[-174.55475,52.173607],[-174.446686,52.21194],[-174.279175,52.209984],[-174.232239,52.268593],[-174.44614,52.313042],[-174.18448,52.416939],[-174.077484,52.388329],[-173.99249,52.32609600000012],[-173.9953,52.29110000000014]]],[[[173.78775,52.501106],[173.735504,52.353325],[173.66024800000014,52.34887700000013],[173.628845,52.39166],[173.37524,52.39944],[173.630798,52.503883],[173.78775,52.501106]]],[[[-171.23526,52.45082900000011],[-171.30838,52.449158],[-171.30804,52.499428],[-171.21722,52.51054],[-171.20306,52.487206],[-171.23526,52.45082900000011]]],[[[-170.60556,52.590828],[-170.70807,52.58971],[-170.79501,52.53249],[-170.841675,52.554153],[-170.81805,52.623871],[-170.67615,52.69415300000014],[-170.563324,52.671371],[-170.60556,52.590828]]],[[[174.177765,52.70555100000013],[174.116638,52.70555100000013],[174.07413,52.711380000000126],[174.1021730000001,52.7411],[174.177765,52.70555100000013]]],[[[-170.11475,52.71832],[-170.18945,52.724434],[-170.17999,52.783875],[-170.054993,52.765266],[-170.11475,52.71832]]],[[[-169.675049,52.817772],[-169.73114,52.770546],[-169.879974,52.80888],[-169.96503,52.78583],[-170.01306,52.818329],[-169.97559,52.84999],[-169.781158,52.885262000000125],[-169.68167,52.86220600000013],[-169.675049,52.817772]]],[[[-170.04083,52.85304300000013],[-170.085297,52.859428],[-170.12747,52.88859600000012],[-170.077484,52.919159],[-169.9939,52.9019320000001],[-170.04083,52.85304300000013]]],[[[173.299988,52.88221],[173.4369200000001,52.85194],[173.43387,52.82916300000011],[173.010803,52.797493],[172.928589,52.743881],[172.77441,52.879715],[172.63831,52.86332700000014],[172.476349,52.924438],[172.642761,53.00055],[172.786652,53.01194],[173.14025900000013,52.99027300000011],[173.31442300000015,52.91777],[173.299988,52.88221]]],[[[-169.72446,52.943314],[-169.76083,52.965546],[-169.7525,53.026375],[-169.6767,53.03166],[-169.66669,53],[-169.72446,52.943314]]],[[[-168.24359,53.2511],[-168.32474,53.2111],[-168.47031,53.046944],[-169.0867,52.82804900000013],[-168.88031,52.938324],[-168.768341,53.067772000000105],[-168.793884,53.147484],[-168.621399,53.272217],[-168.53003,53.24527000000012],[-168.358917,53.25972],[-168.34531,53.294716],[-168.40448,53.34581800000012],[-168.410553,53.40971400000012],[-168.35196,53.475548],[-168.23999,53.528603],[-168.005585,53.563599],[-167.795319,53.49554],[-167.848907,53.380814],[-168.24359,53.2511]]],[[[-166.209991,53.705269],[-166.28973,53.746094],[-166.293335,53.79305],[-166.09003,53.839432],[-166.115265,53.777206],[-166.209991,53.705269]]],[[[-166.607483,53.82972],[-166.46887,53.890549],[-166.37363,54.00221],[-166.2645,53.974152],[-166.21503,53.928322],[-166.27338,53.863319],[-166.533081,53.78054],[-166.570831,53.710274],[-166.542816,53.68637],[-166.3317,53.77887],[-166.270844,53.714149],[-166.27722,53.678596],[-166.54501,53.624702],[-166.65863,53.4827580000001],[-166.752838,53.44638],[-167.141693,53.416656],[-167.4953,53.27916],[-167.66333,53.25555],[-167.84637,53.308594],[-167.69141,53.38472000000013],[-167.504181,53.39971200000013],[-167.476654,53.435547],[-167.16086,53.4661],[-167.08002,53.52721],[-167.14279,53.551102],[-167.16333,53.610268],[-167.09805,53.631371000000115],[-167.04642,53.59388000000013],[-167.06644,53.674431],[-167.03003,53.701935],[-166.90805,53.71054],[-166.80389,53.648872],[-166.76889,53.729706000000135],[-166.963928,53.771935],[-167.03894,53.75388],[-167.154175,53.826096],[-167.16086,53.85360000000014],[-167.0242,53.955544],[-166.75061,54.009163],[-166.63528,54.001099],[-166.59003,53.960541],[-166.63751,53.918877],[-166.607483,53.82972]]],[[[-165.25171,54.07609600000011],[-165.29779,54.03749],[-165.33893,54.067772],[-165.48193,54.074432000000115],[-165.25171,54.07609600000011]]],[[[-164.93921,54.126938],[-164.965576,54.07527],[-165.22192,54.08999],[-165.13751,54.126938],[-165.03894,54.1041560000001],[-164.93921,54.126938]]],[[[-165.69696,54.084717],[-165.848907,54.070267000000115],[-165.89752,54.02887],[-165.93503,54.060822],[-166.03894,54.036110000000114],[-166.12308,54.116379],[-166.08917,54.17083],[-165.93832,54.220543],[-165.65695,54.12470200000012],[-165.69696,54.084717]]],[[[-165.560577,54.110268],[-165.61948,54.123322000000144],[-165.681976,54.238045],[-165.62527,54.291100000000135],[-165.48642,54.288048],[-165.48584,54.173325],[-165.560577,54.110268]]],[[[-162.40057,54.369438],[-162.44638,54.371376],[-162.48972,54.409714],[-162.36832,54.38832900000011],[-162.40057,54.369438]]],[[[-162.543884,54.38138],[-162.63974,54.36859900000013],[-162.786407,54.414711],[-162.834442,54.4511],[-162.831116,54.494156],[-162.59222,54.45221700000013],[-162.543884,54.38138]]],[[[-132.61945,54.75444],[-132.665009,54.759438],[-132.78308,54.865273],[-132.78113,54.925270000000125],[-132.70889,54.940544],[-132.618866,54.896103],[-132.61945,54.75444]]],[[[-159.295013,54.866936],[-159.336121,54.927216],[-159.28891,54.94971],[-159.20694,54.924438],[-159.295013,54.866936]]],[[[-162.29306,54.83416],[-162.39557,54.86776700000013],[-162.434448,54.931107000000104],[-162.315552,54.98166],[-162.23276,54.965271000000136],[-162.22888,54.896942],[-162.29306,54.83416]]],[[[-131.32584,54.856941],[-131.37805,54.863609],[-131.482758,54.930824000000136],[-131.236389,54.99527],[-131.24136,54.931381],[-131.190277,54.90998800000011],[-131.32584,54.856941]]],[[[-163.413635,54.891106],[-163.36999,54.785],[-163.264191,54.755],[-163.14502,54.766106],[-163.048615,54.668327],[-163.159729,54.65888200000012],[-163.345551,54.717934],[-163.599976,54.610825],[-164.08499,54.621933],[-164.262238,54.56999],[-164.329987,54.526382],[-164.34973,54.463608000000136],[-164.43722,54.421379],[-164.66391,54.391937],[-164.853333,54.42527],[-164.952209,54.57582900000011],[-164.70416,54.668327],[-164.545013,54.8811],[-164.43277,54.93055],[-164.23526,54.891106],[-163.92584,55.03305100000011],[-163.54584,55.049995],[-163.413635,54.891106]]],[[[-159.43417,54.940544],[-159.47916,55.01416000000011],[-159.4386,55.054993],[-159.34943,55.04916],[-159.338593,54.97193],[-159.43417,54.940544]]],[[[-161.739716,55.056099],[-161.781677,55.0622100000001],[-161.90695,55.151382000000126],[-161.72943,55.1586],[-161.64139,55.113327],[-161.739716,55.056099]]],[[[-132.674713,55.03305100000011],[-132.73193,55.002777],[-132.86472,55.029991],[-132.85333,55.15943],[-132.82306,55.19305],[-132.732208,55.14027],[-132.674713,55.03305100000011]]],[[[-159.51947,55.064156],[-159.65558,55.054993],[-159.655,55.123322000000144],[-159.53528,55.24749],[-159.505005,55.17527],[-159.51947,55.064156]]],[[[-132.835815,54.88916],[-132.72305,54.784721],[-132.67999,54.66610000000014],[-132.840271,54.68943],[-132.93555,54.804993],[-133.122498,54.93943],[-133.21362,55.089432],[-133.19556,55.23027000000013],[-133.10916,55.252220000000136],[-132.99249,55.123047],[-132.998047,55.059433],[-132.898621,54.910545],[-132.835815,54.88916]]],[[[-161.561951,55.21805],[-161.63501,55.18693],[-161.706116,55.204712],[-161.683319,55.23693800000012],[-161.53363,55.252777],[-161.561951,55.21805]]],[[[-131.42584,55.2111],[-131.38275,55.210548],[-131.348877,55.12165800000014],[-131.37222,55.01361],[-131.578888,54.991379],[-131.61749,55.01111],[-131.57779,55.083603],[-131.57971,55.2575],[-131.47555,55.25361],[-131.42584,55.2111]]],[[[-159.843323,55.132492],[-160.122498,54.9711],[-160.20444,54.872215],[-160.24472,54.901382],[-160.1236,55.015274],[-160.19446,55.116936],[-160.10583,55.1561],[-160.005859,55.107216],[-159.8822,55.290833],[-159.82638,55.179436],[-159.843323,55.132492]]],[[[-133.249725,55.20916],[-133.42779,55.20361],[-133.43945,55.301933],[-133.29666,55.330551],[-133.2236,55.250549],[-133.249725,55.20916]]],[[[-160.33307,55.24805],[-160.483063,55.28999],[-160.528076,55.320549],[-160.50308,55.348328],[-160.34695,55.368599],[-160.33307,55.24805]]],[[[-160.695557,55.399994],[-160.54388,55.385551],[-160.533905,55.350273],[-160.582764,55.3169400000001],[-160.575012,55.233047],[-160.46167,55.18721],[-160.81641,55.11832400000014],[-160.85083,55.20388],[-160.84833,55.330276],[-160.79083,55.384163],[-160.695557,55.399994]]],[[[-133.598328,55.233879000000115],[-133.685547,55.30555],[-133.65362,55.369438],[-133.57251,55.42083],[-133.44696,55.41027100000014],[-133.44305,55.374435],[-133.55917,55.317215],[-133.598328,55.233879000000115]]],[[[-131.725006,55.13472000000012],[-131.815002,55.19193],[-131.85834,55.359436],[-131.8461,55.419991],[-131.61664,55.283607],[-131.725006,55.13472000000012]]],[[[-163.14639,55.393326],[-163.17749,55.401657000000114],[-163.19473,55.421936],[-163.13696,55.436104000000114],[-163.14639,55.393326]]],[[[-160.178894,55.396103],[-160.313904,55.39111],[-160.34195,55.41693900000012],[-160.24972,55.463051],[-160.155,55.437492],[-160.178894,55.396103]]],[[[-133.505,55.4272160000001],[-133.601654,55.447487],[-133.509186,55.5211],[-133.42139,55.483604],[-133.428894,55.43943000000013],[-133.505,55.4272160000001]]],[[[-133.57806,55.49777200000011],[-133.645569,55.441101],[-133.758057,55.487213],[-133.702484,55.551384],[-133.58581,55.539162],[-133.57806,55.49777200000011]]],[[[-133.28945899999988,55.4758220000001],[-133.345276,55.445824],[-133.43668,55.527489],[-133.30835,55.554710000000114],[-133.269745,55.527214],[-133.28945899999988,55.4758220000001]]],[[[-133.505585,55.69332],[-133.60443,55.7186],[-133.677795,55.784164],[-133.61276,55.828331000000105],[-133.299744,55.79361],[-133.505585,55.69332]]],[[[-158.864166,55.803879],[-158.91141,55.837494],[-158.832764,55.893883],[-158.70972,55.831383],[-158.864166,55.803879]]],[[[-133.242218,55.776657000000114],[-133.30972,55.821106],[-133.32916,55.87749],[-133.271942,55.9011],[-133.21555,55.861938],[-133.242218,55.776657000000114]]],[[[-155.58029,55.774437],[-155.71445,55.782494],[-155.73999,55.82861],[-155.617493,55.9161],[-155.563904,55.918602000000135],[-155.554169,55.812767],[-155.58029,55.774437]]],[[[-134.249725,55.81944],[-134.31583,55.85249],[-134.3388979999999,55.91805],[-134.096649,55.918327],[-134.249725,55.81944]]],[[[-133.84778,55.84749],[-133.9003,55.84749],[-133.92722,55.91193],[-133.84778,55.935265],[-133.84778,55.84749]]],[[[-131.050568,55.799721],[-130.93527,55.642220000000115],[-130.93805,55.56221],[-130.96973,55.38499500000012],[-131.056396,55.25804900000014],[-131.13501,55.22916],[-131.14279,55.196938],[-131.211121,55.187767],[-131.28113,55.226379],[-131.19083,55.361938],[-131.22583,55.4060970000001],[-131.27194,55.38221],[-131.253906,55.321663],[-131.29306,55.27388000000013],[-131.38892,55.254997],[-131.46167,55.28611],[-131.27002,55.437492],[-131.348877,55.644997],[-131.36859,55.61110700000012],[-131.31778,55.44471],[-131.45557,55.325554000000125],[-131.422806,55.385433],[-131.470276,55.448326],[-131.41888,55.51971],[-131.49722299999988,55.503883],[-131.520294,55.470543000000134],[-131.46664,55.355827],[-131.52194,55.293053],[-131.70694,55.364998],[-131.82223,55.45027],[-131.70084,55.5261],[-131.70029,55.665268],[-131.62942,55.73082],[-131.62277,55.78138],[-131.68777,55.793327],[-131.683899,55.833328],[-131.53918,55.851936],[-131.5303,55.901657],[-131.26501,55.96082300000012],[-131.050568,55.799721]]],[[[-131.51947,55.915543],[-131.576935,55.931938],[-131.42166,55.984718],[-131.39944,55.963882000000126],[-131.51947,55.915543]]],[[[-133.695282,55.896385],[-133.78555,55.916939],[-133.79306,55.94832600000012],[-133.67972,56.066383],[-133.57138,56.12721],[-133.278076,56.139717],[-133.36304,56.01028],[-133.60834,55.958885],[-133.695282,55.896385]]],[[[-133.93112,56.28833],[-133.94638,56.291107000000125],[-133.948059,56.301933],[-133.925568,56.2980500000001],[-133.93112,56.28833]]],[[[-133.488586,56.33694],[-133.16611,56.320549],[-133.02389,56.176659],[-133.07971,56.10555],[-133.13806,56.116936],[-133.078064,56.05249],[-132.82638,56.03027300000013],[-132.6297,55.925270000000125],[-132.49277,55.814156],[-132.4425,55.688042],[-132.144165,55.48054500000012],[-132.15918,55.444435],[-132.43445,55.545273],[-132.52835,55.621101000000124],[-132.5625,55.56777],[-132.504456,55.511383],[-132.26834,55.450829],[-132.086395,55.27277],[-132.13919,55.238327],[-132.232208,55.251663],[-132.23917,55.19305],[-132.095,55.198875],[-132.02444,55.26721],[-131.988586,55.26416],[-131.9675,55.215546],[-131.992218,55.10583],[-132.08389,55.067772],[-132.07779,55.0363850000001],[-132.2186,54.992493],[-132.132202,54.963882000000126],[-131.96304299999989,55.025826],[-131.94943,54.78833],[-132.00391,54.6905440000001],[-132.28418,54.71194],[-132.29416,54.763054000000125],[-132.21362,54.788605],[-132.224152,54.81305],[-132.48804,54.983604],[-132.53058,54.93277],[-132.59332,54.964439],[-132.57278,55.037216000000114],[-132.50836,55.0563810000001],[-132.511963,55.106384],[-132.64139,55.25027],[-132.65417,55.22027],[-132.60916,55.16805],[-132.66666,55.13805],[-132.773895,55.178329],[-132.807495,55.24805],[-133.03418,55.21277],[-132.900574,55.279716],[-133.2225,55.283051],[-133.260559,55.338882000000126],[-133.193878,55.38472],[-132.86749,55.35388200000011],[-133.00836,55.38277],[-133.128601,55.49471],[-133.00613,55.609436],[-132.90836,55.6280440000001],[-132.976379,55.638329],[-133.25363,55.573608],[-133.37222,55.620544],[-133.37442,55.72304],[-133.235809,55.746941],[-133.144165,55.81193500000012],[-133.13501,55.88110400000011],[-133.18722,55.86055],[-133.24136,55.904434],[-133.258362,56.152489],[-133.56915,56.179718],[-133.617218,56.207497],[-133.610535,56.348328],[-133.488586,56.33694]]],[[[-132.094452,56.093323000000105],[-132.137787,56.067497],[-132.121918,55.932213000000104],[-132.318878,55.912209],[-132.425568,55.9561],[-132.408905,55.998329],[-132.447784,56.053604],[-132.59415,56.081383],[-132.63501,56.049164000000125],[-132.716949,56.151382000000126],[-132.694458,56.222214],[-132.515839,56.3386],[-132.41779,56.35083],[-132.36972,56.271378],[-132.39502,56.221931],[-132.18222,56.170547],[-132.094452,56.093323000000105]]],[[[-132.50085,56.35332],[-132.544464,56.387497],[-132.49387,56.435822],[-132.38669,56.3986],[-132.50085,56.35332]]],[[[-132.81723,56.233879000000115],[-133.05777,56.347488],[-132.92502,56.45249200000012],[-132.635559,56.43416],[-132.614166,56.39638500000012],[-132.642242,56.280273],[-132.81723,56.233879000000115]]],[[[-132.13248,56.345268],[-132.00946,56.34054600000013],[-131.94723,56.232208],[-132.05612,56.111382],[-132.101929,56.16249],[-132.2514,56.203049],[-132.348328,56.273048],[-132.32611,56.399162],[-132.37387,56.48443600000012],[-132.23331,56.441376],[-132.21027,56.387497],[-132.13248,56.345268]]],[[[-153.95889,56.502777],[-154.06305,56.499161],[-154.13446,56.505554],[-154.035,56.548607],[-153.87387,56.553322],[-153.95889,56.502777]]],[[[-156.99664,56.55555],[-156.971375,56.534439],[-157.329712,56.535828],[-157.251678,56.58166],[-156.99664,56.55555]]],[[[-132.39807,56.583603],[-132.42166,56.567215],[-132.435,56.58971],[-132.37942,56.600548],[-132.39807,56.583603]]],[[[-154.48138,56.601696],[-154.414734,56.584717],[-154.4028,56.546661],[-154.428619,56.533607],[-154.459717,56.534439],[-154.41556,56.549164],[-154.500854,56.595825],[-154.526688,56.551273],[-154.49043,56.50833],[-154.63737,56.463814],[-154.71971,56.399994],[-154.787476,56.414967],[-154.714996,56.51778800000011],[-154.531418,56.599335],[-154.48138,56.601696]]],[[[-154.21194,56.498878000000104],[-154.32501,56.509163],[-154.352478,56.54166],[-154.272247,56.599434],[-154.084991,56.608047],[-154.10693,56.5366590000001],[-154.21194,56.498878000000104]]],[[[-169.67337,56.608597],[-169.52139,56.61360200000013],[-169.471375,56.592209],[-169.580017,56.535828],[-169.786133,56.61388],[-169.67337,56.608597]]],[[[-132.77307,56.494713000000104],[-132.94305,56.514442],[-132.95639,56.594154],[-132.883224,56.634659000000106],[-132.918335,56.748878],[-132.873596,56.79610400000013],[-132.80194,56.7863850000001],[-132.5289,56.59527],[-132.56195,56.559158],[-132.77307,56.494713000000104]]],[[[-133.98749,56.87082700000013],[-133.9028,56.753052],[-133.9675,56.654991],[-134.024719,56.647217],[-133.975006,56.635551],[-133.917236,56.667213],[-133.85611,56.736938],[-133.865265,56.790276],[-133.83057,56.79610400000013],[-133.72082,56.771378],[-133.727478,56.655266],[-133.691376,56.599716000000114],[-133.76306,56.554710000000114],[-133.81277,56.605827],[-133.920563,56.614159],[-133.87665,56.523605],[-133.8461,56.290833],[-133.973206,56.356102],[-133.984253,56.269043000000124],[-133.91501,56.276382],[-133.88779,56.217766],[-133.97333,56.081665],[-134.036133,56.10555],[-134.01251,56.190269000000114],[-134.032776,56.302216],[-134.065552,56.30582400000014],[-134.12305,55.995827],[-134.22082,56.066666],[-134.26611,56.250000000000114],[-134.20471,56.2980500000001],[-134.283905,56.34943],[-134.23166,56.419159],[-134.17944,56.436653],[-134.043884,56.363609],[-134.065277,56.55054500000011],[-134.30167,56.556099],[-134.39001,56.711105],[-134.408905,56.82944],[-134.29779,56.90054],[-134.10693,56.843048000000124],[-134.25946,56.94054],[-133.98749,56.87082700000013]]],[[[-133.31778,56.9938810000001],[-133.07638,56.9938810000001],[-132.976379,56.9288790000001],[-132.923615,56.84499],[-132.945557,56.742767],[-132.92502,56.643326000000116],[-133.02194,56.60193600000014],[-133.1875,56.716660000000104],[-133.23889,56.804436000000116],[-133.351929,56.8386],[-133.30557,56.73137700000012],[-133.1864,56.63749700000011],[-133.093048,56.61166],[-133.08194,56.52388],[-133.16391,56.453606],[-133.426941,56.47332],[-133.57556,56.433601],[-133.6564,56.4575],[-133.63501,56.599716000000114],[-133.70694,56.677773000000116],[-133.69696,56.83194],[-133.75641,56.803604],[-133.89056,56.89694200000014],[-133.736115,56.893051],[-134.01807,57.01471700000013],[-134.00113,57.060822000000144],[-133.84277,57.08111],[-133.31778,56.9938810000001]]],[[[-153.253357,56.998329],[-153.33749,56.99805],[-153.4075,57.07276900000011],[-153.2728,57.19860100000011],[-152.883057,57.150269],[-153.20944,57.041939],[-153.253357,56.998329]]],[[[-170.16614,57.163315000000125],[-170.280609,57.104996],[-170.267,57.142769],[-170.41394,57.174164],[-170.38696,57.201653],[-170.15057,57.228325],[-170.16614,57.163315000000125]]],[[[-135.795837,56.986382000000106],[-135.837769,56.988045],[-135.82416,57.083328],[-135.70889,57.161377],[-135.81805,57.172768000000126],[-135.84695,57.316666000000104],[-135.71054,57.323608],[-135.55585,57.229156],[-135.54611,57.129433],[-135.622498,57.00777],[-135.795837,56.986382000000106]]],[[[-134.792511,57.300270000000125],[-134.864441,57.329437],[-134.9747,57.415268],[-134.81363,57.416939],[-134.792511,57.300270000000125]]],[[[-134.9375,57.358887],[-134.834442,57.24805],[-134.616394,56.7211],[-134.62248,56.250000000000114],[-134.653625,56.163048],[-134.76169,56.221375],[-135.04666,56.528328],[-135.035553,56.57332600000012],[-134.94,56.600548],[-134.84778,56.685547],[-135.115265,56.59860200000014],[-135.203888,56.68665],[-135.119995,56.82749200000011],[-135.265289,56.783333],[-135.36722,56.828049],[-135.352203,57.067497],[-135.411133,57.159431],[-135.33307,57.24443800000011],[-135.551941,57.2575],[-135.67279,57.35194],[-135.47833,57.363884],[-135.54666,57.41249100000011],[-135.51724,57.50278],[-135.3978,57.554161000000136],[-135.157776,57.47554800000012],[-134.9375,57.358887]]],[[[-153.20889,57.812492000000134],[-153.45389,57.88388],[-153.53641,57.93471],[-153.470551,57.972214],[-153.353333,57.936378],[-153.26974,57.8991620000001],[-153.20889,57.812492000000134]]],[[[-152.35443,57.89027],[-152.45639,57.9086],[-152.50336,57.933052],[-152.41724,57.976379],[-152.39502,57.93526],[-152.333313,57.920547],[-152.35443,57.89027]]],[[[-153.116943,57.949997],[-152.816956,57.91694],[-152.911682,57.829437],[-152.92416,57.762215],[-152.87637,57.726936],[-152.841949,57.84388],[-152.61914,57.928604],[-152.48056,57.904709],[-152.32638,57.81416],[-152.55084,57.698601],[-152.43527,57.604713],[-152.33859,57.633049000000135],[-152.16946,57.628044],[-152.1514,57.604439],[-152.345276,57.42416400000013],[-152.52444,57.436104],[-152.74637,57.509438],[-152.926941,57.516937],[-153.022797,57.473602],[-153.036682,57.428047],[-152.963318,57.464157],[-152.80444,57.4686],[-152.59582,57.36999],[-152.70416,57.27388],[-152.857483,57.271935],[-152.91083,57.336105],[-153.169464,57.345543],[-153.173065,57.300270000000125],[-153.011414,57.29554700000011],[-152.956116,57.253883],[-153.09805,57.212212],[-153.26028,57.227768],[-153.370819,57.178879],[-153.5,57.06388],[-153.59637,57.08221],[-153.73166,57.059715],[-153.75891,57.04333],[-153.59805,57.04805],[-153.54999,56.983047],[-153.97971,56.738602],[-154.14944,56.746101],[-154.07138,56.84388],[-153.80557,56.97332000000011],[-153.84582,57.020828],[-153.888916,56.964714],[-153.97028,56.959991],[-153.90472,57.06388],[-153.73776,57.130821],[-153.804443,57.151382],[-154.09637,56.96332600000011],[-154.13333,57.001663],[-154.00944,57.113937],[-154.24609,57.146942],[-154.479431,57.12027],[-154.46362,57.065269],[-154.38446,57.045547],[-154.266663,57.116936],[-154.1011,57.116386],[-154.16113,56.95694],[-154.29779,56.84887700000013],[-154.327209,56.92722],[-154.53,56.990547000000106],[-154.527222,57.147774],[-154.60721,57.260551],[-154.80112,57.28611],[-154.72778,57.422218],[-154.63919,57.50499700000011],[-154.348328,57.645271],[-154.207214,57.666664],[-154.00586,57.643883],[-153.88614,57.404991],[-153.76697,57.31305],[-153.62805,57.26944],[-153.747498,57.32111],[-153.80804,57.400543],[-153.88028,57.643051],[-153.58112,57.61249500000014],[-153.70193,57.678047],[-153.90668,57.707771],[-153.92834,57.811104],[-153.726929,57.90193],[-153.565552,57.825272],[-153.56113,57.731102],[-153.49695,57.627213],[-153.315277,57.72582],[-153.46472,57.797493],[-153.47916,57.839432],[-153.21304,57.78833],[-153.15057,57.863884],[-153.048065,57.82749200000012],[-153.19611,57.941101],[-153.26724,57.957214],[-153.29224,58.001663],[-153.116943,57.949997]]],[[[-136.43722,57.846382],[-136.54666,57.960823],[-136.544159,58.06221],[-136.48444,58.093323],[-136.33057,58.010277],[-136.375977,57.984051000000136],[-136.38028,57.914711],[-136.43722,57.846382]]],[[[-153.18527,58.0924910000001],[-153.05585,58.03555],[-152.88779,57.991104],[-152.98639,57.981102],[-153.41806,58.05888],[-153.284729,58.143883],[-153.18527,58.0924910000001]]],[[[-151.847229,58.16972],[-151.896667,58.194153],[-151.83554,58.2686],[-151.791107,58.23999],[-151.847229,58.16972]]],[[[-135.74277,58.25610400000011],[-135.482483,58.15555],[-135.603882,58.043884],[-135.78058,58.046104],[-135.707764,57.978325],[-135.61832,57.961662],[-135.452789,58.12249],[-135.39917,58.139435],[-135.099426,58.094154],[-134.9303,58.028046],[-134.90585,57.929161000000136],[-134.970001,57.885269],[-135.20471,57.942215],[-134.964996,57.818054],[-135.010559,57.77694],[-135.23444,57.779991],[-135.887512,57.98860200000013],[-135.80112,57.931938],[-135.359985,57.7972180000001],[-135.296967,57.73166],[-134.92166,57.75694],[-134.843323,57.59527],[-134.843323,57.462769],[-135.06277,57.45972],[-135.804169,57.763329],[-135.6875,57.64166],[-135.56555,57.584717],[-135.54279,57.47221],[-135.68805,57.36277],[-135.83084,57.385826],[-136.01056,57.51194],[-135.91028,57.498604],[-135.78058,57.429718],[-135.789734,57.455269],[-136.069153,57.600273],[-135.95166,57.616386],[-136.07529,57.647217],[-136.359436,57.83638],[-136.41223,57.81582600000013],[-136.358612,57.973045],[-136.32638,57.991104],[-136.02972,57.84916],[-136.418335,58.089714],[-136.43112199999987,58.113884],[-136.352203,58.219437],[-136.26584,58.216385],[-136.167236,58.09804500000013],[-136.1803,58.177773],[-136.13193,58.221931],[-135.96167,58.199158000000125],[-135.813629,58.274712000000136],[-135.74277,58.25610400000011]]],[[[-134.4544369999999,58.31332400000014],[-134.25973,58.194992],[-134.579163,58.224434],[-134.683899,58.29833200000013],[-134.566956,58.34083],[-134.4544369999999,58.31332400000014]]],[[[-135.55417,58.32999400000011],[-135.66779,58.333328],[-135.7261,58.359436],[-135.62527,58.38304900000014],[-135.523895,58.341377],[-135.55417,58.32999400000011]]],[[[-134.674713,58.160545],[-134.55527,58.185822],[-134.339722,58.143326],[-134.16916,58.159714],[-134.13641,58.05166],[-133.91391,57.812767],[-133.87582,57.672768],[-133.96027,57.68443300000012],[-133.99637,57.768600000000106],[-134.10138,57.859718],[-134.15613,57.994438],[-134.2886,58.077217],[-134.32001,58.028603],[-134.271118,57.873604],[-134.00586,57.64833],[-133.86472,57.458328],[-134.04916,57.491104000000114],[-134.054169,57.459991000000116],[-133.89447,57.428604],[-133.86026,57.36055],[-133.9664,57.300270000000125],[-134.174713,57.38444],[-134.077484,57.259438],[-134.486664,57.025551],[-134.593872,57.037216],[-134.613312,57.2249910000001],[-134.50308,57.374992],[-134.310272,57.336105],[-134.334717,57.38916],[-134.4686,57.393608],[-134.57251,57.489716],[-134.34973,57.54277],[-134.57333,57.505829],[-134.654449,57.598328],[-134.71249,57.738045],[-134.70166,57.83111],[-134.77917,58.10555],[-134.912506,58.205269],[-134.97192,58.364159],[-134.95666,58.407768],[-134.796967,58.308601],[-134.674713,58.160545]]],[[[-152.40918,58.365547000000106],[-152.35525,58.41972],[-152.30194,58.42416400000013],[-151.98581,58.345543],[-151.972778,58.233047],[-152.116089,58.147491],[-152.220825,58.200272],[-152.24167,58.263611],[-152.27808,58.261383],[-152.367493,58.19694],[-152.274445,58.12776900000012],[-152.594147,58.13249200000013],[-152.626373,58.078606],[-152.78696,57.99249],[-153.01083,58.04055],[-153.23138,58.16916],[-153.18112,58.21666],[-152.90472,58.165268],[-153.105835,58.264442],[-153.03751,58.303604],[-152.79306,58.281937],[-152.78805,58.412209],[-152.65805,58.477211],[-152.54666,58.46054800000013],[-152.40918,58.365547000000106]]],[[[-152.493866,58.472214000000115],[-152.61914,58.5],[-152.660553,58.543327],[-152.345825,58.627213],[-152.34222,58.593323000000105],[-152.493866,58.472214000000115]]],[[[-160.95694,58.556938],[-161.08527,58.55471],[-161.113098,58.655273],[-161.042236,58.709991],[-160.687225,58.81832900000011],[-160.9025,58.578331],[-160.95694,58.556938]]],[[[-152.31332,58.908325000000104],[-152.36026,58.916382],[-152.3175,58.951103],[-152.161407,58.94221],[-152.31332,58.908325000000104]]],[[[-150.691681,59.30666],[-150.776672,59.32888],[-150.695007,59.40277],[-150.61664,59.389717],[-150.622498,59.353325],[-150.691681,59.30666]]],[[[-153.411407,59.33027600000013],[-153.515839,59.3261],[-153.55222,59.364716],[-153.403076,59.406937],[-153.34473,59.364716],[-153.411407,59.33027600000013]]],[[[-150.3114,59.42055],[-150.420288,59.397774],[-150.440277,59.4011],[-150.41,59.446938],[-150.292786,59.46305100000012],[-150.3114,59.42055]]],[[[-144.58499,59.81027200000011],[-144.50391,59.89444000000014],[-144.20889,60.005554],[-144.41113,59.916382],[-144.58499,59.81027200000011]]],[[[-148.16113,59.941101],[-148.24582,59.94249],[-147.992218,60.040276],[-148.095551,59.962769],[-148.16113,59.941101]]],[[[-148.027802,59.946655],[-148.0289,59.975548],[-147.88333,60.067215],[-147.81723,60.068886],[-147.88083,59.99582700000013],[-148.027802,59.946655]]],[[[-148.11554,59.996384],[-148.140289,60.019157],[-147.96722,60.153046],[-147.87665,60.103882],[-148.11554,59.996384]]],[[[-148.033905,60.18943],[-148.1514,60.041939],[-148.309723,60.029716000000114],[-148.22443,60.10833],[-148.033905,60.18943]]],[[[-147.849976,59.776939],[-147.91028,59.790833],[-147.89056,59.846382],[-147.67166,60.00639],[-147.386688,60.123322],[-147.202209,60.268883],[-147.193604,60.353325],[-147.09973,60.381378],[-146.92334,60.309158],[-146.98471,60.24166],[-147.238892,60.129158],[-147.480286,59.946381],[-147.53113,59.851936],[-147.849976,59.776939]]],[[[-148.07944,60.28277],[-148.14252,60.320549000000135],[-147.98331,60.383881],[-148.01697,60.290833],[-148.07944,60.28277]]],[[[-145.122772,60.307213],[-145.21664,60.310547],[-145.281952,60.329994],[-145.08694,60.416664],[-145.122772,60.307213]]],[[[-166.10971,60.399155000000114],[-166.06421,60.328331000000105],[-165.92615,60.31749],[-165.85861,60.345261],[-165.68143,60.294716],[-165.669464,60.059151],[-165.61142,59.970543000000134],[-165.54059,59.979424],[-165.55972,59.92360700000011],[-166.209198,59.857491],[-166.230072,59.83555200000011],[-166.131409,59.818047],[-166.083313,59.77583],[-166.19305,59.754433],[-166.41223,59.85193],[-166.60419,59.850548000000124],[-166.997772,59.998871],[-167.126678,59.997208],[-167.31644,60.095543],[-167.41806,60.189423],[-167.27588,60.231934],[-166.83917,60.204712],[-166.792267,60.23804500000011],[-166.80804,60.280266],[-166.49585,60.378876],[-166.200317,60.39222],[-166.15366,60.430817],[-166.10971,60.399155000000114]]],[[[-146.353882,60.40749],[-146.15472,60.435547],[-146.07889,60.40527],[-146.41583,60.323326],[-146.602203,60.23804500000011],[-146.67749,60.287773],[-146.48611,60.36749300000013],[-146.627167,60.344604],[-146.72415,60.37471],[-146.580841,60.482491],[-146.36472,60.446655],[-146.353882,60.40749]]],[[[-147.71194,60.376099],[-147.622498,60.38526900000011],[-147.75973,60.165543],[-147.909729,60.23472],[-147.81778,60.43166400000012],[-147.70389,60.51138300000014],[-147.62833,60.475548],[-147.613617,60.432213000000104],[-147.73444,60.391937],[-147.71194,60.376099]]],[[[-151.95557,60.422768],[-151.977203,60.484436],[-151.95111,60.512215],[-151.85638,60.4897160000001],[-151.95557,60.422768]]],[[[-172.52029,60.388329],[-172.38782,60.39388],[-172.20697,60.313042],[-172.280029,60.302773],[-172.38251,60.34166],[-172.59915,60.32499700000012],[-173.05365,60.497208],[-173.03363,60.549431],[-172.916687,60.60388200000011],[-172.92807,60.558594],[-172.844452,60.48499300000014],[-172.52029,60.388329]]],[[[-146.246948,60.454994000000106],[-146.324432,60.458603],[-146.320557,60.49416],[-145.94196,60.58888],[-145.76779,60.61639],[-145.749725,60.594711],[-146.246948,60.454994000000106]]],[[[-147.372772,60.6616590000001],[-147.313904,60.67749],[-147.33112,60.63832900000011],[-147.471649,60.628876000000105],[-147.475555,60.688881],[-147.426666,60.704163],[-147.372772,60.6616590000001]]],[[[-147.92557,60.662209000000125],[-147.994995,60.693878],[-148.00418,60.72693600000014],[-147.90472,60.74305],[-147.8461,60.7],[-147.92557,60.662209000000125]]],[[[-148.140839,60.64222],[-148.22305,60.6986010000001],[-148.21417,60.75444],[-148.10861,60.736382000000106],[-148.09582,60.668327],[-148.140839,60.64222]]],[[[-164.988312,60.82249500000011],[-165.02945,60.832497],[-165.01752,60.87443500000012],[-164.90362,60.853607],[-164.988312,60.82249500000011]]],[[[-146.75336,60.807213000000104],[-146.810272,60.813324],[-146.83194,60.83638],[-146.74414,60.88138],[-146.70444,60.84277],[-146.75336,60.807213000000104]]],[[[-147.15085,60.860275],[-147.29584,60.87693800000011],[-147.31778,60.884163],[-147.133057,60.916664],[-147.075287,60.899162],[-147.15085,60.860275]]],[[[-147.92889,60.806938000000116],[-148.133057,60.799721],[-148.106659,60.91249],[-148.02972,60.927773],[-147.96081,60.900826],[-147.910828,60.82444],[-147.92889,60.806938000000116]]],[[[-170.31891,63.25471],[-170.31586,63.253876],[-170.296112,63.238045],[-170.31891,63.25471]]],[[[-170.31891,63.25471],[-170.362213,63.28249],[-170.34189,63.27113],[-170.31891,63.25471]]],[[[-170.466766,63.33418],[-170.4039,63.304436],[-170.48584,63.341103],[-170.466766,63.33418]]],[[[-170.54364,63.35971100000012],[-170.490265,63.341927],[-170.551147,63.3605500000001],[-170.54364,63.35971100000012]]],[[[-170.595,63.371933],[-170.58197,63.36805],[-170.863251,63.41851],[-170.82806,63.414986],[-170.595,63.371933]]],[[[-162.37747,63.544441],[-162.5625,63.538605],[-162.70361,63.571663],[-162.652222,63.61916],[-162.420288,63.6375],[-162.33749,63.597214],[-162.37747,63.544441]]],[[[-171.465576,63.60666],[-171.30722,63.62165],[-171.37891,63.62748],[-171.32532,63.633881],[-170.91449,63.57138],[-170.48584,63.703316],[-170.300018,63.694153],[-170.09253,63.61693600000012],[-170.03281,63.5311],[-169.92337,63.4786],[-169.59726,63.421097],[-169.54477,63.359154],[-169.253632,63.337494],[-169.16333,63.297493],[-169.070282,63.31526],[-169.218323,63.344704],[-168.70087,63.290543],[-168.71808,63.227486],[-168.85001,63.15527],[-169.19696,63.203873],[-169.316986,63.1861],[-169.515869,63.092766],[-169.57254,63.04805],[-169.594757,62.979706],[-169.66614,62.9433140000001],[-169.752258,62.964706],[-169.73584,63.057213],[-169.8053,63.125259],[-169.97,63.159981],[-169.91333,63.12416100000013],[-170.08221,63.192757000000135],[-170.26141,63.19638],[-170.21582,63.211098],[-170.23721,63.28249],[-170.51889,63.378036],[-170.79114,63.423325],[-170.85669,63.461937],[-171.01395,63.43998],[-170.960846,63.427773],[-171.11667,63.4302750000001],[-171.461121,63.314713],[-171.738892,63.38055],[-171.8053,63.418602],[-171.85083,63.50861],[-171.80838,63.63582],[-171.74026,63.66749600000014],[-171.72696,63.792213],[-171.63031,63.774437],[-171.640015,63.69886800000012],[-171.544464,63.614716],[-171.465576,63.60666]]],[[[-166.65918,66.103317],[-166.443604,66.180817],[-166.169464,66.221375],[-166.587769,66.11637900000011],[-166.65918,66.103317]]],[[[-165.364441,66.426376],[-165.47082,66.414154],[-164.762238,66.53831500000013],[-164.87692,66.502777],[-165.364441,66.426376]]],[[[-156.44696,71.2636109999999],[-156.25,71.266388],[-155.98639,71.192474],[-155.77335,71.2030489999999],[-155.58694,71.162766],[-155.54779,71.088318],[-155.73581,71],[-156.09528,70.967209],[-156.18249,70.91832000000011],[-155.98276,70.898605],[-155.9411,70.849426],[-155.98526,70.82361],[-155.9736,70.755829],[-155.9014,70.767212],[-155.924713,70.810532],[-155.89447,70.827774],[-155.61694,70.84444],[-155.53528,70.935806],[-155.387238,71.003601],[-155.2989,71.021103],[-155.19278,70.989426],[-155.1803,71.0247],[-155.28723,71.08554100000015],[-155.08749,71.15138200000011],[-155.046,71.11903400000011],[-155.036407,71.0522],[-155.08307,71.012497],[-155.01666,71.01915],[-154.98276,71.117477],[-154.82111,71.094986],[-154.591949,71.0038760000001],[-154.6803,70.884155],[-154.626648,70.831375],[-154.351105,70.83027600000014],[-154.25528,70.80775],[-154.24387,70.779434],[-154.129974,70.78943],[-153.91501,70.88916],[-153.50223,70.8872070000001],[-153.24277,70.92804],[-152.945007,70.90221],[-152.73666,70.833878],[-152.74026,70.881927],[-152.64697,70.88611],[-152.2525,70.835266],[-152.21555,70.811096],[-152.50751,70.693863],[-152.4986,70.64942900000011],[-152.37915,70.606934],[-152.07611,70.574997],[-152.522247,70.587494],[-152.629425,70.55748],[-151.73248,70.557205],[-151.76642,70.499146],[-151.96054,70.47026100000011],[-151.96609,70.443588],[-151.521942,70.439423],[-151.22028,70.37109],[-151.172791,70.375534],[-151.210541,70.411652],[-151.17999,70.44247400000012],[-150.78,70.502213],[-150.36887,70.4861],[-150.401947,70.42553700000013],[-150.11609,70.437759],[-149.88806,70.515],[-149.17471,70.490814],[-148.82223,70.411102],[-148.59528,70.3955380000001],[-148.51169,70.362198],[-148.49472,70.3147],[-148.13165,70.354156],[-147.689728,70.209152],[-147.336121,70.19971],[-147.16611,70.16388],[-146.538605,70.19442700000013],[-145.80362,70.150269],[-145.42529,70.041092],[-144.952209,69.968323],[-144.61194,69.97777],[-144.39474,70.038879],[-144.169159,70.041931],[-144.04196,70.084717],[-143.411407,70.096939],[-143.30139,70.072769],[-143.28058,70.1183170000001],[-142.642517,70.016098],[-142.26916,69.8486],[-142.11139,69.850266],[-141.94778,69.794983],[-141.73111,69.775543],[-141.37582,69.63832100000013],[-141.26028,69.63443],[-141.2186,69.668045],[-141.30585,69.691086],[-141.002991,69.642365],[-140.995544,60.307213],[-140.52139,60.22221400000012],[-140.45084,60.309715],[-139.97943,60.18776700000012],[-139.67667,60.340546],[-139.06805,60.352219],[-139.1889,60.088882],[-139.04779,59.99749],[-138.690277,59.90694],[-138.615814,59.774162],[-137.59082,59.238602],[-137.47971,58.99805],[-137.507507,58.925552],[-137.478058,58.907211000000125],[-136.808899,59.165268],[-136.58389,59.16332],[-136.462769,59.289436],[-136.46362,59.46971100000013],[-136.37164,59.452492],[-136.23389,59.525826],[-136.239166,59.56138],[-136.343872,59.60277600000012],[-135.949158,59.66916],[-135.4736,59.801933],[-135.01446,59.567497],[-135.02112,59.4711],[-135.09167,59.426941],[-134.95193,59.2799910000001],[-134.6880489999999,59.243324],[-134.67166,59.200272],[-134.56641,59.130547],[-134.46139,59.126656],[-134.325562,58.9711],[-134.325562,58.92083],[-134.245544,58.856941],[-133.826935,58.726097],[-133.42999,58.45916],[-133.38791,58.4120640000001],[-133.4303,58.359993],[-133.36111,58.280548],[-133.136963,58.13582600000012],[-133.070831,58.012215],[-132.88165,57.86360900000011],[-132.226654,57.20471],[-132.336945,57.088326],[-132.027496,57.036385],[-132.103058,56.866661],[-131.86139,56.799721],[-131.824158,56.596939],[-131.55777,56.602219000000105],[-131.05499,56.398048],[-130.774445,56.366104],[-130.6272,56.258606],[-130.46194,56.23526800000013],[-130.36526,56.123878000000104],[-130.22916,56.090271000000136],[-130.08859,56.11805],[-130.01474,56.025826],[-130.015076,55.90918],[-130.174713,55.75444],[-130.14389,55.54138200000011],[-129.99054,55.281662],[-130.10193,55.205551],[-130.359711,54.90804300000013],[-130.49805,54.831383],[-130.712769,54.76777],[-130.74136,54.966385000000116],[-130.75238,54.816383],[-130.819153,54.76777],[-130.910553,54.79194],[-130.9364,54.96332600000011],[-131.00891,54.998329000000126],[-130.98221,55.05110200000012],[-130.70279,55.116936],[-130.460541,55.322495],[-130.50446,55.31582600000013],[-130.72778,55.126381],[-130.81641,55.14277],[-130.99249299999988,55.08416000000011],[-131.05612,55.122765],[-131.065826,55.191376],[-130.93722,55.283051],[-130.61389,55.296104],[-130.654175,55.34582],[-130.714447,55.307495],[-130.864166,55.308601],[-130.886963,55.710548],[-131.16946,55.94166],[-131.163574,55.98777],[-131.01028,56.106384],[-131.32251,55.964996],[-131.373322,55.962494],[-131.40527,55.996941],[-131.90057,55.85527],[-131.7525,55.80777000000011],[-131.81723,55.66332200000011],[-131.95499,55.50110600000011],[-132.17584,55.590271],[-132.24527,55.723877],[-132.17416,55.799995],[-132.04834,55.82222],[-132.07138,55.86277],[-132.056396,55.941933],[-131.94751,55.961937],[-131.960266,56.16554300000013],[-131.76974,56.19694],[-131.906952,56.228874],[-131.993042,56.35777],[-132.186127,56.42276800000013],[-132.33722,56.519157],[-132.34189,56.589577],[-132.30519,56.634521],[-132.438644,56.604252],[-132.54779,56.627769],[-132.524445,56.714714],[-132.36221,56.82027],[-132.50281,56.75055],[-132.76889,56.84388],[-132.85611,56.93138],[-132.8475,56.96749100000011],[-132.7641909999999,56.968048],[-132.791382,57.088043],[-132.90527,57.033051],[-133.127197,57.079994],[-133.14224,57.11666],[-133.11609,57.149719],[-133.157227,57.16443600000014],[-133.2963869999999,57.096657],[-133.508362,57.193604],[-133.47192,57.279434],[-133.24249,57.275269],[-133.08389,57.321938],[-133.06305,57.348877],[-133.224152,57.31332],[-133.43222,57.346939],[-133.509186,57.491936],[-133.44672,57.55071],[-133.31113,57.589714000000136],[-133.583618,57.568329],[-133.66083,57.622215],[-133.640564,57.69638],[-133.554169,57.708046],[-133.175842,57.577492],[-133.056671,57.505272],[-133.00058,57.51499900000011],[-133.536133,57.7575],[-133.556946,57.902489],[-133.12137,57.857498],[-133.18805,57.892769],[-133.56723,57.922768],[-133.63892,57.878326],[-133.63028,57.79916400000013],[-133.691376,57.7875],[-133.80417,57.897217000000126],[-133.814285,57.971939],[-133.670837,58.147491],[-133.756683,58.12999],[-133.8251189999999,58.00804900000014],[-133.9094539999999,57.97860000000014],[-134.05499,58.071938],[-134.087494,58.185822],[-133.99527,58.340271],[-134.01001,58.39749100000011],[-133.92084,58.497772],[-133.76916,58.518326],[-133.97916,58.49416],[-134.0975,58.241661],[-134.154175,58.19777],[-134.248047,58.21166],[-134.51001,58.353882],[-134.761414,58.38221],[-134.773621,58.46333],[-134.97501,58.645828],[-134.92139,58.687767],[-134.94723,58.814713],[-135.000305,58.80555],[-135.02945,58.73693800000013],[-135.147247,58.841103],[-135.130829,58.890831],[-135.23306,59.128326],[-135.36639,59.273605],[-135.33527,59.468323],[-135.45917,59.28138000000013],[-135.35525,59.205269],[-135.304718,59.0836],[-135.412231,59.197212],[-135.550568,59.228874],[-135.391815,59.07199],[-135.38919,58.95916],[-135.169739,58.645828],[-135.184998,58.564438],[-135.04944,58.340546],[-135.085541,58.233047],[-135.151947,58.20665700000012],[-135.329163,58.25278],[-135.48111,58.476654],[-135.609711,58.420273],[-135.915558,58.38304900000014],[-135.887512,58.4511030000001],[-135.843872,58.469154],[-135.836945,58.543884],[-136.068329,58.81777],[-135.758911,58.883049],[-135.76947,58.900269],[-136.04584,58.891106],[-136.10055,59.011383],[-136.162231,59.033607],[-136.095551,58.856384],[-136.13165,58.77527],[-136.234711,58.750832],[-136.4725,58.831383],[-136.64999,58.97332],[-136.683899,58.91220900000013],[-137.056671,59.068604],[-137.06277,59.04554700000012],[-136.977478,58.98888],[-136.992325,58.93338400000011],[-137.12555,58.821938],[-136.98032,58.88955],[-136.573608,58.8386],[-136.49661,58.79049],[-136.536957,58.76805100000013],[-136.61581,58.820831],[-136.64389,58.80777],[-136.337494,58.683876],[-136.52389,58.611382],[-136.46054,58.594711],[-136.258911,58.651657],[-136.122498,58.564438],[-136.027496,58.387215],[-136.08331,58.338326],[-136.25446,58.30777],[-136.30222,58.381378],[-136.47943,58.415825],[-136.537231,58.357216],[-136.48138,58.333878],[-136.48029,58.359436],[-136.412338,58.364769],[-136.35471,58.340271],[-136.361938,58.29861],[-136.649445,58.342766],[-136.557495,58.268326],[-136.587494,58.225548],[-136.65417,58.215271],[-136.86499,58.38166],[-137.14807,58.415825],[-137.585541,58.593605],[-137.44055,58.659714000000115],[-137.485535,58.679436],[-137.67444,58.65499],[-137.92667,58.79694400000011],[-137.919739,58.846382],[-137.965,58.904709],[-138.200287,59.02972],[-138.383331,59.10305],[-138.60889,59.121376],[-138.498322,59.119713],[-138.4436,59.191658],[-138.65112,59.16082],[-139.19638,59.31471],[-139.15668,59.33277],[-139.225281,59.377769],[-139.334991,59.358604],[-139.44463,59.392433],[-139.32333,59.394997],[-139.71054,59.495827],[-139.73056,59.5463870000001],[-139.63501,59.580826000000116],[-139.53085,59.676102],[-139.51862,59.736382000000106],[-139.578064,59.792221],[-139.617218,59.89138],[-139.493866,59.982208],[-139.43582,59.973602],[-139.31696,59.86999],[-139.31915,59.60805],[-139.340546,59.60499600000014],[-139.28555,59.571381],[-139.22443,59.61610400000012],[-139.280121,59.74282],[-139.27063,59.80249400000014],[-139.05527,59.845825],[-138.89279,59.806656],[-139.041382,59.857773],[-139.2728,59.894714],[-139.39447,59.99360700000011],[-139.5,60.033051],[-139.91916,59.799721],[-140.239441,59.708603],[-140.403351,59.698044],[-140.873322,59.744438],[-141.37665,59.866386],[-141.395844,59.90888],[-141.27472,59.93943000000012],[-141.256683,60.00222],[-141.27972,60.071663],[-141.390839,60.1386],[-141.4772,60.116661],[-141.38501,60.02416],[-141.71582,59.95249200000012],[-141.93057,60.020546],[-142.71722,60.10999300000014],[-143.92334,59.994156],[-144.253632,60.19082600000013],[-144.57416,60.185822000000144],[-144.6452,60.20879],[-144.69888,60.277489],[-144.9364,60.301659],[-144.753632,60.627487],[-144.61999,60.67277],[-144.611389,60.715546],[-144.75391,60.67805],[-145.102478,60.43277],[-145.29416,60.350273],[-145.65362,60.46749100000011],[-145.85944,60.49166100000013],[-145.73944,60.55694],[-145.62582,60.671936],[-145.85834,60.62054400000011],[-145.887787,60.675552],[-145.999146,60.63499500000011],[-146.26114,60.64804800000014],[-146.01666,60.74332],[-146.04083,60.798607],[-146.18312,60.7396],[-146.42639,60.696655],[-146.65335,60.699715],[-146.689178,60.746941000000106],[-146.124146,60.843323],[-146.23111,60.8927690000001],[-146.36331,60.820549],[-146.393616,60.815269],[-146.39307,60.843880000000134],[-146.52835,60.81749700000011],[-146.68722,60.875267],[-146.75668,60.955269],[-146.611938,61.080826],[-146.237488,61.089432],[-146.30084,61.13082],[-146.584991,61.131378],[-146.93527,60.947212],[-147.03085,60.953323000000125],[-146.975555,61.001106],[-147.097778,61.011383],[-147.20889,60.986938],[-147.25778,60.9272160000001],[-147.366943,60.88777],[-147.52917,60.903877],[-147.50891,61.146103],[-147.54666,61.154434],[-147.57666,61.13444],[-147.61664,60.959991000000116],[-147.60165,60.893608],[-147.78723,60.821663],[-147.86526,60.832497],[-147.91452,60.889893000000136],[-148.052216,60.949715],[-147.75778,61.18443300000012],[-147.719727,61.278046],[-148.06665,61.01666300000011],[-148.18805,61.094711],[-148.404175,61.05444],[-148.44723,60.989433],[-148.39639,60.986107],[-148.24249,61.06221],[-148.162338,61.05877],[-148.34027,60.813881],[-148.468323,60.839714],[-148.699738,60.789719],[-148.44751,60.804161],[-148.6311,60.75027500000011],[-148.699982,60.676659],[-148.66806,60.66888],[-148.498672,60.762718],[-148.23029,60.767494],[-148.25165,60.702827],[-148.19751,60.626099],[-148.332214,60.534439],[-148.43582,60.58472],[-148.48776,60.576385],[-148.64725,60.49749],[-148.68417,60.448326000000115],[-148.45166,60.541107],[-148.26114,60.483047],[-148.087219,60.601936],[-147.958893,60.51028],[-147.93695,60.462212000000136],[-147.995544,60.413879000000115],[-148.11276,60.400543],[-148.43112,60.192764],[-148.199982,60.25388],[-148.09778,60.2075],[-148.16333,60.14305100000013],[-148.248871,60.117493],[-148.31778,60.168884],[-148.36526,60.125824],[-148.43582,59.94887],[-149.070557,59.961662],[-149.11804,59.978874],[-149.03946,60.042496],[-149.077484,60.056381],[-149.199738,60.00110600000011],[-149.23056,59.905266],[-149.28613,59.868881],[-149.29556,60.00444],[-149.363312,60.111938000000116],[-149.41696,60.118324],[-149.51334,59.931107],[-149.62805,59.82471],[-149.52585,59.71666],[-149.663635,59.804161],[-149.64752,59.900269],[-149.73193,59.960548],[-149.76474,59.779991],[-149.74359,59.6586],[-149.915833,59.77277],[-150.03418,59.796387],[-150.035553,59.771378],[-149.915833,59.71471],[-150.013641,59.62749],[-150.349426,59.465546000000124],[-150.38473,59.472214000000115],[-150.359711,59.533051000000114],[-150.213623,59.71666],[-150.283905,59.68166400000013],[-150.473602,59.464439],[-150.53946,59.515602],[-150.490265,59.597214],[-150.541687,59.59166],[-150.628601,59.534721000000104],[-150.583939,59.483601],[-150.59973,59.433876],[-150.7225,59.421471],[-150.87332,59.327492],[-150.9075,59.243324],[-150.951385,59.238327],[-151.044464,59.29749300000015],[-151.14224,59.29055],[-151.180847,59.28138000000013],[-151.096375,59.242493],[-151.11139,59.213882],[-151.41473,59.25861],[-151.574158,59.17083000000014],[-151.72333,59.16082],[-151.90057,59.219711],[-151.98056,59.280548],[-151.89917,59.408043],[-151.663055,59.48082],[-151.453064,59.4674910000001],[-151.43307,59.538048],[-151.216095,59.594711],[-150.99277,59.77721400000012],[-151.06113,59.790833],[-151.476379,59.63027],[-151.72555,59.67361],[-151.87665,59.753883],[-151.71887,60.021935],[-151.43195,60.206657],[-151.303894,60.385551],[-151.275299,60.53916],[-151.334442,60.58638],[-151.4089,60.72749],[-151.25363,60.775269],[-151.05194,60.787773000000136],[-150.66946,60.963882],[-150.39917,61.037216],[-150.332764,61.028603],[-150.29529,60.971375],[-150.210266,60.931938],[-150.045288,60.911102000000135],[-149.815277,60.97443],[-149.028076,60.847771],[-149.161957,60.94471],[-149.615814,60.99027300000011],[-150.06418,61.154434],[-149.70694,61.38361],[-149.242218,61.49276700000013],[-149.41696,61.508606],[-149.69611,61.472214],[-149.87997,61.382492],[-149.98238,61.260216],[-150.45334,61.24749],[-150.54944,61.290276],[-150.62637,61.28638500000011],[-151.026398,61.177216],[-151.185,61.044441],[-151.58362,60.976936],[-151.80029,60.85833],[-151.70999,60.72332],[-151.83859,60.742767],[-151.92722,60.71832],[-152.23248,60.554161],[-152.333618,60.484161],[-152.337494,60.441376000000105],[-152.29333,60.408043],[-152.4303,60.288887],[-152.63028,60.229431],[-152.912231,60.308044],[-153.103058,60.28943600000014],[-153.10776,60.268326],[-152.93777,60.284439],[-152.92361,60.234993],[-152.76083,60.18638],[-152.57721,60.06471],[-152.72693,59.911659],[-152.86609,59.876656],[-153.21805,59.86805],[-153.28195,59.82555400000012],[-153.00806,59.82999],[-153.04446,59.70694000000014],[-153.348328,59.628601000000124],[-153.40558,59.6449970000001],[-153.32333,59.720825],[-153.42056,59.766106],[-153.46332,59.664711],[-153.588898,59.556099],[-153.765015,59.520546],[-153.71722,59.468048],[-153.739441,59.438599],[-154.142517,59.37749],[-153.997498,59.349159],[-154.111938,59.303879],[-154.26083,59.14222000000012],[-154.16751,59.02416],[-154.04056,59.079437],[-153.70279,59.06916],[-153.59082,58.99582700000013],[-153.420013,58.9791560000001],[-153.26028,58.86859900000014],[-153.267792,58.848602],[-153.608612,58.63472],[-153.90668,58.589157],[-153.95444,58.490829],[-154.103333,58.481934],[-154.00058,58.378044],[-154.210541,58.35139],[-154.35916,58.283333],[-154.28528,58.26749],[-154.17029,58.31999200000013],[-154.11526,58.286942],[-154.23361,58.131104],[-154.378052,58.10305],[-154.44305,58.144440000000145],[-154.575287,58.022217],[-154.78278,58.00222000000013],[-155.02667,58.02277],[-155.063904,57.89388300000012],[-155.25696,57.82916],[-155.31113,57.734436],[-155.388062,57.71554600000013],[-155.60333,57.790833],[-155.73666,57.549164],[-155.840271,57.56443800000011],[-156.038605,57.508888],[-156.02335,57.449432],[-156.045013,57.43387600000011],[-156.20193,57.477486],[-156.48999,57.331108],[-156.501129,57.287216],[-156.345,57.304993],[-156.34082,57.17360700000011],[-156.54861,56.977486],[-156.75946,56.991379],[-156.84943,56.91971600000011],[-156.93805,56.96749100000011],[-157.08749,56.82361],[-157.194153,56.771378],[-157.41974,56.859993],[-157.587494,56.712212000000136],[-157.47971,56.66944100000011],[-157.453613,56.640831000000105],[-157.47278,56.618324],[-157.684998,56.609161],[-157.787231,56.67832900000013],[-158.11026,56.568054],[-158.131378,56.534439],[-157.880829,56.566101],[-157.83389,56.51638800000012],[-157.876923,56.467491],[-158.13528,56.512772],[-158.162506,56.5],[-158.1225,56.488884],[-158.14084,56.459435],[-158.34195,56.476379],[-158.423065,56.443878],[-158.64999,56.264442],[-158.53778,56.247215],[-158.5625,56.272217],[-158.53822,56.299164],[-158.44778,56.340271],[-158.207214,56.28333],[-158.33389,56.227768],[-158.33749,56.17305],[-158.12054,56.233604],[-158.35721,56.145546],[-158.41055,56.17277],[-158.501404,56.094711],[-158.50528,55.988884],[-158.584259,56.040714],[-158.60248,56.09415400000012],[-158.47388,56.18471],[-158.6011,56.188042],[-158.655853,56.10972],[-158.642517,56.00027],[-158.67001,55.95499400000011],[-158.75418,55.952217],[-158.74026,56.00222],[-158.85471,56.010826],[-158.93973,55.929161],[-159.36777,55.87249],[-159.51056,55.791382],[-159.5564,55.64527],[-159.667236,55.577217],[-159.730835,55.56305],[-159.74136,55.60860400000012],[-159.621918,55.813881],[-159.84109,55.851105],[-160.03946,55.788048],[-160.05804,55.765549000000135],[-160.0253,55.72221400000012],[-160.140289,55.66166],[-160.42056,55.62999],[-160.46582,55.50278],[-160.507782,55.478043],[-160.547516,55.484993],[-160.594147,55.563881],[-160.7525,55.54722],[-160.76807,55.529716000000114],[-160.65945,55.5094380000001],[-160.66666,55.4658280000001],[-160.794464,55.447769],[-160.841949,55.46832300000011],[-160.83307,55.513329],[-160.92056,55.51555],[-161.025574,55.4272160000001],[-161.254181,55.346939000000134],[-161.508911,55.36277],[-161.485535,55.481102],[-161.366089,55.575554],[-161.286133,55.530548],[-161.15723,55.516663],[-161.14169,55.5388870000001],[-161.412781,55.631935],[-161.5625,55.62276500000012],[-161.711395,55.51416],[-161.69916,55.405548],[-161.82193,55.294998],[-161.91861,55.219154],[-162.04224,55.23276],[-161.955261,55.12082700000013],[-161.967773,55.101936],[-162.087769,55.07888],[-162.13892,55.113327],[-162.099976,55.1661],[-162.22305,55.111107],[-162.1936,55.053879],[-162.224152,55.024712],[-162.45416,55.03833],[-162.527222,55.097214],[-162.483307,55.118599000000124],[-162.50473,55.21249],[-162.56222,55.29333],[-162.626648,55.299438],[-162.72165,55.21944],[-162.59555,55.12388],[-162.5625,54.95527],[-162.65668,55.005554],[-162.74915,54.941658],[-162.877777,54.931938000000116],[-162.9747,54.994995000000124],[-163.01642,55.080826000000116],[-163.18445,55.139717],[-163.23917,55.097771],[-163.20889,55.015549],[-163.06723,54.971657],[-163.04446,54.937492],[-163.23721,54.836937],[-163.36026,54.81193500000012],[-163.385834,54.856659],[-163.32638,54.880272],[-163.258636,54.97332],[-163.323059,55.12165800000014],[-163.11945,55.184158],[-162.96609,55.164154],[-162.8786,55.235825],[-162.89029,55.26611],[-162.626923,55.354439],[-162.54501,55.34388000000013],[-162.48804,55.374435],[-162.501678,55.44471],[-162.54584,55.455269],[-162.26056,55.67305],[-161.79999,55.88665800000012],[-161.391693,55.959435],[-161.06833,55.93499],[-161.00668,55.918602000000135],[-161.016968,55.878876],[-160.80695,55.727211],[-160.680573,55.693878],[-160.66141,55.738602],[-160.75864,55.776657000000114],[-160.79806,55.87832600000013],[-160.501129,55.86721],[-160.464172,55.79361],[-160.24972,55.770546],[-160.23276,55.842491],[-160.528076,55.935547],[-160.57471,55.986656],[-160.34695,56.2855530000001],[-159.83722,56.540833000000134],[-159.42279,56.634995],[-159.04028,56.803604],[-158.64056,56.76111],[-158.69998,56.977211],[-158.64889,57.053322],[-158.28528,57.3241650000001],[-158.11526,57.358047],[-157.938049,57.491936],[-157.6864,57.567215],[-157.64139,57.483879],[-157.39667,57.49055],[-157.388916,57.559158],[-157.44473,57.54943800000012],[-157.43445,57.518051],[-157.46973,57.49721],[-157.57495,57.527218],[-157.62997,57.609718],[-157.706665,57.64332600000011],[-157.609985,58.089714],[-157.541107,58.16916],[-157.409332,58.199604],[-157.19611,58.194153],[-157.13861,58.16249],[-157.212494,58.211105],[-157.424835,58.220993],[-157.540833,58.26388500000013],[-157.56665,58.310547],[-157.553619,58.382492],[-157.47165,58.496658],[-157.06833,58.729431],[-156.98405,58.91099200000013],[-156.85556,58.998604],[-156.779175,59.151382],[-156.86499,59.103607],[-156.88333,59.009438],[-157.11194,58.874435],[-158.18832,58.606384],[-158.31833,58.645828],[-158.37833,58.755272],[-158.56473,58.81249200000014],[-158.49582,58.90082600000011],[-158.49249,58.999435],[-158.35016,59.025665],[-158.17972,59.009438],[-158.09387,58.963882],[-158.02362,58.870827],[-157.99277,58.9049910000001],[-158.12942,59.028328],[-158.43663,59.091305],[-158.536957,59.17527],[-158.53195,59.068718],[-158.49295,59.04238],[-158.61609,58.92110400000013],[-158.71695,58.87582],[-158.74234,58.88955],[-158.74805,58.99665800000014],[-158.82333,58.9711],[-158.77173,58.89649600000013],[-158.779449,58.771103],[-158.870544,58.72693600000013],[-158.886963,58.76361],[-158.80222,58.797218],[-158.87442,58.808601],[-158.91223,58.768883],[-158.90723,58.724434],[-158.762512,58.50833100000011],[-158.70416,58.492218],[-158.79584,58.415825],[-158.89752,58.39554600000014],[-159.06915,58.43221],[-159.345551,58.71944],[-159.60278,58.898605],[-159.627197,58.952492],[-159.7525,58.92582700000014],[-159.80862,58.804436],[-159.919159,58.771103],[-159.98999,58.84360500000013],[-160.32001,58.950546],[-160.25308,58.982208],[-160.32666,59.05971],[-160.48526,59.028328],[-160.8389,58.869156],[-160.96222,58.876381],[-161.250854,58.79055],[-161.38028,58.704437],[-161.36111,58.663322],[-161.632202,58.59916],[-162.076111,58.61943800000011],[-162.17139,58.649719],[-161.99472,58.68055],[-161.89139,58.65277100000014],[-161.69388,58.76721],[-161.65613,58.805267],[-161.75308,58.818054],[-161.79224,58.864998],[-161.79279,59.01721],[-161.56583,59.103607],[-161.618591,59.138885],[-161.852783,59.114159],[-161.89111,59.0924910000001],[-161.86526,59.061104],[-161.99222,59.144157],[-162.02612,59.231102000000135],[-161.962219,59.375549],[-161.70526,59.496658],[-162.23611,60.060547],[-162.1514,60.24554400000011],[-162.204712,60.23804500000011],[-162.315826,60.134995],[-162.372223,60.176102],[-162.38419,60.332497],[-162.227783,60.53333],[-162.22192,60.581665],[-162.08417,60.641106],[-161.96054,60.645271],[-161.87942,60.702217000000125],[-162.12137,60.691101],[-162.25528,60.619987],[-162.41888,60.39361],[-162.569458,60.316383],[-162.554718,60.231102000000135],[-162.44696,60.180824000000136],[-162.472504,60.05777],[-162.521667,59.992767],[-163.364166,59.81972],[-163.665558,59.79472],[-164.065277,59.82416],[-164.1575,59.859718],[-164.218597,59.94582],[-164.09277,59.981659],[-164.424713,60.091377],[-164.646118,60.244995000000124],[-164.64697,60.283882],[-164.99915,60.34304800000012],[-165.14279,60.43943],[-165.025574,60.466103],[-164.971375,60.51194],[-164.98361,60.544159],[-165.2486,60.497215],[-165.37082,60.510551],[-165.425293,60.555267],[-165.01834,60.693878],[-164.8486,60.868599],[-164.66501,60.911659],[-164.63138,60.901382],[-164.69751,60.847488],[-164.68085,60.827774],[-164.264465,60.778877],[-164.248001,60.700657],[-164.429169,60.553322],[-164.25694,60.64183],[-164.1297,60.663322],[-164.10748,60.713882],[-163.95776,60.780273],[-163.80444,60.74471],[-163.83527,60.63138],[-163.799438,60.581383],[-163.66946,60.587212],[-163.45138,60.678604],[-163.40973,60.756660000000124],[-163.52557,60.80277300000012],[-163.895615,60.85688],[-163.782776,60.886658],[-163.66861,60.865547],[-163.551392,60.903877],[-163.66888,60.989433],[-163.73553,60.99305],[-163.96294,60.86799600000012],[-164.046112,60.856941],[-164.55749,60.85083],[-164.60944,60.92276800000013],[-164.89999,60.953049],[-165.060272,60.906654],[-165.150299,60.928047],[-165.194458,60.972214],[-165.12137,61.006943],[-164.94723,61.019157],[-164.822235,61.111107],[-164.99332,61.11277],[-165.01474,61.09638200000012],[-164.99637,61.070549],[-165.02951,61.06132500000013],[-165.120544,61.083878],[-165.159882,61.126049],[-165.12237,61.138714],[-165.0936,61.227486],[-165.13861,61.25666],[-165.12442,61.227486],[-165.163727,61.170044],[-165.240814,61.154434],[-165.36999,61.20083],[-165.292511,61.251389],[-165.150574,61.416939],[-165.05968,61.41684],[-164.998428,61.469769],[-164.845276,61.494438],[-164.69223,61.600273],[-164.71609,61.62555],[-165.01724,61.500000000000114],[-165.075562,61.432213],[-165.161133,61.432495000000124],[-165.287506,61.333878],[-165.270844,61.311935],[-165.307495,61.258049],[-165.4075,61.2083280000001],[-165.34137,61.157211],[-165.35721,61.07694200000014],[-165.38669,61.068604],[-165.60498,61.11805],[-165.64752,61.23777],[-165.608887,61.280823],[-165.83389,61.30804],[-165.8786,61.338043],[-165.92166,61.413605],[-165.78668,61.443321],[-165.76169,61.475548],[-165.811676,61.533051],[-165.96222,61.55471],[-166.08917,61.531662],[-166.054993,61.50249],[-166.114441,61.489159],[-166.197784,61.594711000000125],[-166.15558,61.717491],[-166.13724,61.63472],[-165.82306,61.688042],[-166.007233,61.73054500000012],[-166.098602,61.816101],[-165.63333,61.846939],[-165.756409,61.992767],[-165.70334,62.11360900000011],[-165.24722,62.44609800000013],[-165.08084,62.529716],[-165.001129,62.53749800000014],[-164.89752,62.53138],[-164.655,62.433601000000124],[-164.6864,62.380272],[-164.636414,62.417496],[-164.67779,62.464996],[-164.77667,62.490273],[-164.852783,62.570274],[-164.641968,62.63472],[-164.47916,62.745827],[-164.782898,62.648994],[-164.878601,62.7355500000001],[-164.87778,62.835548],[-164.69168,63.02166],[-164.31833,63.00694],[-164.36081,63.066101],[-164.5253,63.0825],[-164.589722,63.12832600000012],[-164.410553,63.211937],[-164.159729,63.25888800000013],[-163.98859,63.25249],[-163.72528,63.214714],[-163.67612,63.16554300000012],[-163.328613,63.03360700000014],[-163.111664,63.05193300000013],[-162.621368,63.25944],[-162.36276,63.446655],[-162.31195,63.54110700000012],[-162.03473,63.48555],[-162.14224,63.42527],[-161.433899,63.458328],[-161.151672,63.512497],[-160.794464,63.73249],[-160.764465,63.787216],[-160.777496,63.868599],[-160.940826,64.067764],[-160.948334,64.19942],[-161.16806,64.346649],[-161.184448,64.41276600000015],[-161.450836,64.428314],[-161.53833,64.386383],[-161.52917,64.418869],[-161.46664,64.507492],[-161.38834,64.536926],[-161.19611,64.503326],[-161.01001,64.512772],[-160.8175,64.61554],[-160.7839,64.72192400000012],[-160.871643,64.79387],[-161.155579,64.923309],[-161.070557,64.910812],[-160.99026,64.938583],[-161.182495,64.937485],[-161.43085,64.76944],[-161.74445,64.795822],[-161.94501,64.723602],[-161.794739,64.75665],[-161.887787,64.71138],[-162.11417,64.71582],[-162.576385,64.52083],[-162.62027,64.481094],[-162.63165,64.387497],[-162.79028,64.336105],[-162.875,64.50833],[-163.170013,64.655258],[-163.23276,64.65332000000012],[-163.35666,64.58194000000015],[-163.154175,64.51388500000013],[-163.037231,64.51609800000011],[-163.12692,64.41666],[-163.175842,64.40748600000012],[-163.282501,64.48664900000011],[-163.49054,64.552765],[-163.82193,64.58915700000011],[-163.99527,64.561646],[-164.31277,64.584427],[-164.64334,64.517654],[-164.928345,64.53387],[-164.96222,64.49609],[-164.92029,64.457489],[-164.77252,64.47276],[-165.028625,64.443863],[-166.12137,64.57471],[-166.40945,64.66054],[-166.491943,64.7410890000001],[-166.38724,64.891373],[-166.697784,64.99304],[-166.715,65.051376],[-166.885284,65.10832],[-166.93777,65.146942],[-166.96194,65.188873],[-166.935822,65.243866],[-166.855835,65.283875],[-166.93527,65.208038],[-166.92361,65.14582800000011],[-166.611664,65.12109],[-166.47278,65.1766510000001],[-166.48444,65.234711],[-166.37387,65.26915],[-166.11945,65.23637400000013],[-166.04611,65.24054],[-166.0589,65.256104],[-166.626923,65.3641510000001],[-166.9375,65.37942],[-166.731384,65.344437],[-166.79861,65.34637],[-167.45721,65.418869],[-167.73526,65.5163880000001],[-168.06473,65.58027600000014],[-168.1311,65.665543],[-167.85361,65.76193200000012],[-168.031952,65.68915],[-168.063049,65.646378],[-167.51779,65.73027],[-167.4986,65.76915],[-167.57556,65.79193],[-167.512238,65.829437],[-167.29001,65.895828],[-167.16806,65.856644],[-167.04611,65.87608],[-166.87277,65.934418],[-166.965,65.97331200000013],[-166.26697,66.17915],[-166.136688,66.16748000000013],[-166.08527,66.145828],[-166.1589,66.146942],[-166.08084,66.12442],[-165.80667,66.10304300000013],[-165.50085,66.14498900000012],[-165.88669,66.2397],[-165.642242,66.36080900000012],[-165.161133,66.4433140000001],[-165.015564,66.42387400000013],[-164.711395,66.54443400000014],[-164.35361,66.594711],[-163.933624,66.608597],[-163.625,66.56721],[-163.93805,66.58083],[-163.782501,66.56109600000012],[-163.75473,66.518051],[-163.771118,66.475815],[-163.894165,66.392487],[-163.854431,66.27693],[-163.953064,66.227768],[-164.188324,66.196091],[-163.94806,66.19525],[-163.83084,66.1122],[-163.6564,66.07054],[-163.134735,66.06581100000011],[-162.79196,66.10054000000014],[-162.371918,66.032211],[-162.04889,66.068604],[-161.81641,65.97499],[-161.84277,66.00388],[-161.76834,66.08638],[-161.530579,66.267761],[-161.35803,66.26944],[-161.34027,66.236099],[-161.26251,66.221924],[-161.075836,66.234711],[-161.10776,66.13472],[-161.17584,66.117477],[-161.06445,66.132751],[-161.00336,66.204163],[-161.00223,66.251663],[-161.126648,66.339706],[-161.52002,66.40221],[-161.87222,66.371094],[-161.890289,66.311371],[-161.856384,66.281937],[-161.91,66.27443],[-161.96194,66.33276],[-161.872498,66.437485],[-161.87109,66.495819],[-161.906128,66.535263],[-162.22388,66.710541],[-162.50113,66.73803700000013],[-162.63614,66.868866],[-162.626648,66.90721100000012],[-162.336945,66.958328],[-162.117218,66.800095],[-162.07529,66.65803],[-161.88501,66.53804000000012],[-161.60055,66.447754],[-161.342499,66.482758],[-161.200287,66.53915400000011],[-160.79028,66.371368],[-160.23056,66.3997190000001],[-160.20972,66.52443],[-160.240265,66.64415],[-160.26419,66.647491],[-160.48999,66.625534],[-160.542236,66.58692900000011],[-160.69388,66.601929],[-160.83859,66.662766],[-161.14029,66.647491],[-161.19611,66.627762],[-161.24942,66.548874],[-161.50668,66.533875],[-161.897797,66.728317],[-161.88834,66.799988],[-161.725555,66.948868],[-161.506958,66.952484],[-161.50113,66.9791560000001],[-161.867767,67.051926],[-162.461121,66.992477],[-162.331665,67.144714],[-162.35055,67.16137700000013],[-162.43222,67.157486],[-162.371918,67.14305100000013],[-162.568054,67.008881],[-162.74499,67.054703],[-163.013062,67.030548],[-163.73248,67.1136],[-163.76306,67.13081],[-163.78308,67.274994],[-163.83112,67.3672],[-164.12415,67.60998500000011],[-165.39279,68.04776],[-165.888916,68.121643],[-166.298889,68.294708],[-166.827789,68.350815],[-166.44553,68.41882],[-166.756958,68.363312],[-166.55612,68.351929],[-166.372604,68.416763],[-166.3886,68.434097],[-166.22583,68.572495],[-166.188904,68.757217],[-166.23639,68.8647],[-166.21582,68.883041],[-165.445831,68.86026],[-164.32471,68.93054200000012],[-163.99332,68.991653],[-163.64529,69.10693400000014],[-163.27417,69.31137],[-163.184174,69.41887],[-163.1564,69.418045],[-163.27057,69.29387],[-163.12027,69.38472000000013],[-163.00891,69.676086],[-162.93277,69.702484],[-163.026123,69.728592],[-163.00391,69.752777],[-162.52084,69.96638500000012],[-162.35498,70.108322],[-161.94223,70.307205],[-161.85889,70.318054],[-161.764389,70.2557680000001],[-161.867218,70.17747500000013],[-162.02252,70.19026200000013],[-162.118866,70.151657],[-161.86499,70.161377],[-161.61331,70.25555],[-161.17389,70.27943],[-160.75058,70.37747200000013],[-160.16391,70.589706],[-159.9375,70.593323],[-159.933624,70.518875],[-160.198608,70.471649],[-160.01862,70.471924],[-159.98166,70.368317],[-159.836121,70.268326],[-159.886688,70.39166300000011],[-159.819458,70.484421],[-159.692505,70.466385],[-159.28555,70.530548],[-159.72998,70.49332],[-159.93832,70.632751],[-160.12442,70.615265],[-159.66806,70.798035],[-159.30334,70.864151],[-159.16196,70.88081],[-159.36914,70.84387200000015],[-159.18195,70.853592],[-159.1478,70.81999200000013],[-159.44501,70.779709],[-159.22388,70.70444],[-158.92084,70.796371],[-158.68112,70.785538],[-158.50223,70.832214],[-157.97943,70.837494],[-157.2753,71.048874],[-156.756409,71.32222],[-156.58945,71.365814],[-156.54666,71.305252],[-156.44696,71.2636109999999]]]]}},{"type":"Feature","properties":{"FIPS":"UV","ISO2":"BF","ISO3":"BFA","UN":854,"NAME":"Burkina Faso","AREA":27360,"POP2005":13933363,"REGION":2,"SUBREGION":11,"LON":-1.74,"LAT":12.278},"geometry":{"type":"Polygon","coordinates":[[[-2.834048,11.002007],[-2.836945,10.885832],[-2.927525,10.708147],[-2.891945,10.519444],[-2.771389,10.216944],[-2.796112,10.057777],[-2.761389,9.802221],[-2.794167,9.728888],[-2.744666,9.65304],[-2.769167,9.567778],[-2.685561,9.481817],[-2.75,9.394444],[-2.918889,9.571943],[-2.982778,9.721109],[-3.208611,9.901388],[-3.633611,9.954443],[-3.759167,9.933611],[-4.034167,9.806944],[-4.126945,9.828609],[-4.266945,9.739166],[-4.312456,9.599972],[-4.602222,9.721388],[-4.704445,9.698055],[-4.812222,9.771666],[-4.77889,9.785276],[-4.787223,9.830832],[-4.949722,9.94861],[-5.125,10.302776],[-5.268612,10.319166],[-5.4025,10.295555],[-5.520556,10.424721],[-5.410001,10.847221],[-5.488334,11.076387],[-5.299445,11.139444],[-5.208611,11.461666],[-5.201667,11.541666],[-5.2875,11.788055],[-5.273056,11.843887],[-5.1175,11.964443],[-4.633427,12.067223],[-4.569447,12.201109],[-4.4175,12.300831],[-4.437779,12.434443],[-4.365556,12.538887],[-4.473889,12.657776],[-4.468889,12.723888],[-4.219445,12.736944],[-4.194445,12.828609],[-4.209445,12.956665],[-4.337223,13.115],[-4.236945,13.240833],[-4.148056,13.283888],[-3.964253,13.50383],[-3.588611,13.202776],[-3.437675,13.166498],[-3.440536,13.274389],[-3.232223,13.288055],[-3.273334,13.550278],[-3.2575,13.696665],[-3.099445,13.68611],[-2.958319,13.629166],[-2.879167,13.655554],[-2.904445,13.816666],[-2.84,14.005554],[-2.599722,14.211666],[-2.474722,14.287498],[-2.1075,14.151388],[-2.006945,14.187777],[-1.980834,14.474722],[-1.678334,14.500555],[-1.318889,14.728611],[-1.074167,14.776943],[-0.725278,15.082777],[-0.443611,15.082777],[-0.386667,15.005278],[-0.246389,15.077499],[0.235048,14.915068],[0.193333,14.835833],[0.241389,14.752222],[0.166667,14.523054],[0.189444,14.464722],[0.321111,14.362778],[0.410833,14.245832],[0.3525,14.121387],[0.602222,13.703888],[0.786389,13.668888],[0.995278,13.568054],[1.031667,13.4625],[1.244444,13.393055],[1.285306,13.349957],[1.182222,13.312777],[0.991667,13.371666],[0.989167,13.047222],[1.117222,13.01111],[1.578333,12.629999],[1.871666,12.608889],[1.928056,12.700554],[1.988889,12.73111],[2.1425,12.694443],[2.220833,12.593611],[2.244999,12.417219],[2.161666,12.415552],[2.058332,12.35722],[2.397925,11.896152],[2.308888,11.688332],[2.014722,11.422499],[1.868611,11.445833],[1.609167,11.388332],[1.568611,11.452499],[1.435278,11.458887],[1.328333,11.351387],[1.351111,11.3025],[1.264722,11.246111],[1.192778,11.265276],[1.083055,11.122499],[0.985278,11.079443],[0.91797,10.996399],[0.666111,10.996111],[0.504167,10.936943],[0.504167,11.006666],[-0.285278,11.166666],[-0.618333,10.911665],[-0.679834,10.997797],[-0.986945,11.014444],[-2.834048,11.002007]]]}},{"type":"Feature","properties":{"FIPS":"UY","ISO2":"UY","ISO3":"URY","UN":858,"NAME":"Uruguay","AREA":17502,"POP2005":3325727,"REGION":19,"SUBREGION":5,"LON":-56.012,"LAT":-32.8},"geometry":{"type":"Polygon","coordinates":[[[-57.806396,-30.748219],[-57.889725,-30.604446],[-57.887222,-30.521946],[-57.668892,-30.354725],[-57.608002,-30.184925],[-57.528061,-30.273891],[-57.326118,-30.266392],[-57.220284,-30.293335],[-57.150002,-30.243336],[-57.141396,-30.180279],[-57.065834,-30.106113],[-56.811394,-30.105278],[-56.23584,-30.558334],[-56.001671,-30.795834],[-55.976395,-30.853889],[-56.008923,-31.079794],[-55.836945,-31.073891],[-55.671951,-30.949448],[-55.633057,-30.852222],[-55.581947,-30.845837],[-55.421669,-30.963058],[-55.235558,-31.245281],[-55.085556,-31.327778],[-54.976952,-31.31889],[-54.825562,-31.43],[-54.588058,-31.46278],[-54.472504,-31.576668],[-54.463402,-31.672611],[-54.285835,-31.804447],[-54.164452,-31.887222],[-54.066948,-31.875],[-53.879723,-31.967781],[-53.664726,-32.206947],[-53.63028,-32.361115],[-53.553337,-32.446114],[-53.409172,-32.565559],[-53.186394,-32.636948],[-53.093056,-32.729729],[-53.51973,-33.136948],[-53.501396,-33.428062],[-53.534447,-33.656952],[-53.374298,-33.740669],[-53.482506,-33.854446],[-53.537224,-34.066116],[-53.70195,-34.193062],[-53.775558,-34.352226],[-54.113892,-34.609451],[-54.145004,-34.671394],[-54.229446,-34.681114],[-54.2425,-34.58139],[-54.325562,-34.562782],[-54.282784,-34.697784],[-54.950279,-34.948891],[-55.083618,-34.885834],[-55.256668,-34.907227],[-55.373398,-34.808449],[-55.685562,-34.774445],[-56.15834,-34.927223],[-56.320282,-34.910561],[-56.42556,-34.843056],[-56.366905,-34.795433],[-56.578896,-34.763893],[-56.887779,-34.666115],[-57.117783,-34.462227],[-57.553337,-34.443336],[-57.840279,-34.494728],[-57.907227,-34.370003],[-58.075562,-34.19445],[-58.210838,-34.123062],[-58.315559,-33.986671],[-58.405838,-33.92556],[-58.438614,-33.554451],[-58.379448,-33.453896],[-58.419449,-33.406952],[-58.353615,-33.313057],[-58.359169,-33.128616],[-58.146393,-33.101952],[-58.078613,-33.041115],[-58.045563,-32.934723],[-58.057503,-32.873611],[-58.13195,-32.798615],[-58.151672,-32.598061],[-58.198616,-32.472778],[-58.097557,-32.294586],[-58.18306,-32.160599],[-58.145561,-31.995834],[-58.203613,-31.89167],[-58.032784,-31.775837],[-57.977226,-31.577225],[-58.07917,-31.461391],[-57.991394,-31.406391],[-57.915001,-31.258057],[-57.798058,-30.890003],[-57.806396,-30.748219]]]}},{"type":"Feature","properties":{"FIPS":"UZ","ISO2":"UZ","ISO3":"UZB","UN":860,"NAME":"Uzbekistan","AREA":42540,"POP2005":26593123,"REGION":142,"SUBREGION":143,"LON":63.17,"LAT":41.75},"geometry":{"type":"Polygon","coordinates":[[[64.38303,38.953125],[64.333054,38.991936],[64.19664,38.950546],[64.132477,38.975548],[63.712769,39.2061],[63.4786,39.423325],[62.551102,39.934158],[62.440483,40.033844],[62.35527,40.420273],[62.201385,40.486107],[62.141106,40.564438],[62.042496,40.723602],[61.974991,40.999718],[61.874161,41.125549],[61.626099,41.262215],[61.438324,41.303604],[61.40332,41.292221],[61.368599,41.198601],[61.273323,41.161377],[61.141937,41.231934],[61.004204,41.209877],[60.947487,41.250549],[60.704994,41.258049],[60.488327,41.219437],[60.140274,41.381104],[60.077774,41.453606],[60.099434,41.537498],[60.185547,41.599434],[60.069717,41.757774],[60.12249,41.804993],[60.256943,41.772491],[60.275826,41.79277],[60.152763,41.883873],[60.028046,42.032494],[60.014442,42.217491],[59.857498,42.316101],[59.457214,42.29277],[59.284721,42.347771],[59.258606,42.45166],[59.155823,42.541107],[58.95166,42.540833],[58.617493,42.797493],[58.562767,42.662491],[58.293884,42.697487],[58.143051,42.630821],[58.314995,42.548332],[58.510551,42.301102],[58.411934,42.296661],[58.40638,42.398331],[58.324997,42.446938],[58.026604,42.504639],[57.943604,42.445541],[57.959717,42.354439],[57.8386,42.187767],[57.664436,42.153603],[57.38694,42.162491],[57.245827,42.095268],[57.119713,41.941658],[56.978325,41.884995],[56.977486,41.681938],[57.04277,41.466934],[57.133881,41.345825],[57.054993,41.265831],[56.827492,41.299438],[56.000961,41.328453],[55.99749,45.001106],[58.569717,45.571106],[61.149162,44.211098],[62.025108,43.484787],[63.21138,43.636383],[64.458038,43.54805],[64.931366,43.73777],[65.268326,43.432495],[65.526932,43.317215],[65.82193,42.877213],[66.123871,42.996941],[66.070786,42.423866],[66.036652,42.423325],[66.02916,42.003052],[66.526382,42.003052],[66.55859,41.732765],[66.719986,41.174995],[67.071945,41.143295],[67.935532,41.183327],[68.15416,41.03611],[68.103317,40.879433],[68.04803,40.810272],[68.455261,40.597771],[68.649155,40.62166],[68.628586,40.718048],[68.589157,40.738884],[68.568054,40.861382],[68.593597,40.919991],[68.724426,40.978874],[68.783325,41.084435],[69.063034,41.216103],[69.080551,41.35083],[69.056366,41.379433],[69.25499,41.470825],[69.361374,41.484718],[69.642212,41.673325],[69.930817,41.711662],[70.144989,41.831375],[70.244141,41.955238],[70.396378,42.073021],[70.488312,42.099968],[70.539154,42.038017],[70.630539,42.021629],[70.752777,42.201073],[70.881363,42.20385],[71.051086,42.305237],[71.274429,42.18885],[70.986923,42.044411],[70.871094,42.039963],[70.844147,41.92524],[70.685257,41.904961],[70.526093,41.796631],[70.469986,41.71302],[70.19664,41.594688],[70.187195,41.52829],[70.376648,41.496902],[70.481094,41.411064],[70.70775,41.474258],[70.792755,41.35746],[70.813309,41.250504],[71.156937,41.161057],[71.251938,41.194946],[71.418045,41.118553],[71.439972,41.137169],[71.438034,41.348831],[71.550262,41.300781],[71.603592,41.319115],[71.659988,41.428833],[71.620529,41.507454],[71.6461,41.556335],[71.69136,41.556335],[71.887207,41.333282],[71.893326,41.194389],[72.183594,41.192436],[72.21666,41.059937],[72.19548,41.006592],[72.395264,41.040222],[72.506104,41.015221],[72.631653,40.885216],[73.049149,40.868271],[73.173035,40.822998],[72.804428,40.67466],[72.636383,40.51355],[72.385468,40.614929],[72.381088,40.521049],[72.453049,40.464378],[72.4236,40.388824],[72.287766,40.431877],[72.282486,40.462433],[72.173599,40.46022],[72.012772,40.334373],[72.043869,40.266327],[71.903595,40.250488],[71.710541,40.145767],[71.505554,40.223816],[71.464432,40.275215],[71.299149,40.309937],[70.64888,40.20549],[70.465271,40.349663],[70.37553,40.376404],[70.340546,40.449944],[70.796799,40.725594],[70.708038,40.771057],[70.658035,40.870224],[70.548599,40.97744],[70.411377,41.046341],[70.316666,40.894112],[70.050262,40.769981],[69.823044,40.715546],[69.732483,40.638603],[69.685806,40.643608],[69.539978,40.779434],[69.459152,40.811104],[69.356094,40.772491],[69.257217,40.507217],[69.338318,40.339157],[69.308029,40.201385],[69.218597,40.191376],[69.039429,40.238884],[68.600815,40.178329],[68.71388,40.116386],[68.984421,40.148331],[69.00999,40.089714],[68.785263,40.070549],[68.909149,39.89138],[68.760818,39.827492],[68.722214,39.871376],[68.64267,39.858238],[68.629974,39.656097],[68.540268,39.55471],[68.175262,39.553604],[67.759155,39.630547],[67.50444,39.528877],[67.441956,39.483582],[67.410538,39.299164],[67.365997,39.28878],[67.36914,39.220268],[67.690262,39.138046],[67.709427,38.99666],[67.863312,38.976654],[67.984421,39.008049],[68.113312,38.99749],[68.196365,38.854439],[68.113312,38.797218],[68.07193,38.541382],[68.127197,38.424438],[68.215546,38.332214],[68.331375,38.273323],[68.384155,38.195541],[68.277481,37.958885],[68.150543,37.928047],[68.073044,37.765274],[67.838318,37.505829],[67.81749,37.446098],[67.838043,37.26194],[67.779877,37.185822],[67.743866,37.224709],[67.526382,37.2686],[67.239975,37.186104],[67.096481,37.339966],[67.004166,37.38221],[66.537735,37.366379],[66.515549,37.399437],[66.538315,37.772766],[66.66638,37.936653],[66.643875,38.003052],[66.423874,38.04361],[66.319443,38.084717],[66.260269,38.151932],[65.895264,38.280823],[65.748596,38.226379],[65.597214,38.253883],[65.292206,38.41082],[64.987198,38.626656],[64.665268,38.741936],[64.38303,38.953125]]]}},{"type":"Feature","properties":{"FIPS":"VC","ISO2":"VC","ISO3":"VCT","UN":670,"NAME":"Saint Vincent and the Grenadines","AREA":39,"POP2005":119137,"REGION":19,"SUBREGION":29,"LON":-61.194,"LAT":13.248},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.41695,12.590277],[-61.443893,12.584444],[-61.45417,12.593887],[-61.425835,12.612499],[-61.41695,12.590277]]],[[[-61.32806,12.68778],[-61.347778,12.70167],[-61.31056,12.734999],[-61.30584,12.71417],[-61.32806,12.68778]]],[[[-61.216667,12.998055],[-61.252228,12.988609],[-61.199722,13.04472],[-61.19723,13.033609000000126],[-61.216667,12.998055]]],[[[-61.17306,13.1325],[-61.243614,13.156111],[-61.28139,13.207777000000135],[-61.177223,13.384165],[-61.14389,13.378332],[-61.120285,13.307499],[-61.17306,13.1325]]]]}},{"type":"Feature","properties":{"FIPS":"VE","ISO2":"VE","ISO3":"VEN","UN":862,"NAME":"Venezuela","AREA":88205,"POP2005":26725573,"REGION":19,"SUBREGION":5,"LON":-66.166,"LAT":7.125},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.278301,8.516734],[-61.263599,8.49993],[-61.182503,8.499443],[-61.24695,8.47472],[-61.40528,8.48583200000013],[-61.54528,8.551943],[-61.42639,8.58333],[-61.297501,8.573332],[-61.2615,8.55297],[-61.278301,8.516734]]],[[[-61.00362,8.54889],[-61.04667,8.511665000000107],[-61.2664,8.509165],[-61.227501,8.568609],[-61.149124,8.540889000000107],[-61.080833,8.610277000000108],[-60.998062,8.59694],[-61.00362,8.54889]]],[[[-61.04778,8.629444],[-61.09917,8.62361],[-61.150284,8.57],[-61.18445,8.59861],[-61.167229,8.651943],[-61.04778,8.629444]]],[[[-61.04195,8.64028],[-61.14695,8.654444],[-61.17778,8.679443],[-60.93445,8.718332],[-61.04195,8.64028]]],[[[-60.82722,8.649443000000133],[-60.92334,8.618332000000123],[-60.988617,8.63555],[-60.840836,8.7280540000001],[-60.804169,8.708332],[-60.82722,8.649443000000133]]],[[[-60.976112,8.725832000000139],[-61.163612,8.688332000000115],[-61.17278,8.69778],[-61.042503,8.82111],[-60.86056,8.85333],[-60.976112,8.725832000000139]]],[[[-61.01973,8.846943000000124],[-61.04639,8.843887],[-60.94167,9.011665],[-60.89778,9.029165],[-60.84389,9.00528],[-60.91028,8.89416],[-61.01973,8.846943000000124]]],[[[-61.070557,8.8925],[-61.09972,8.891109],[-61.06583,8.976944],[-60.84862,9.093611],[-60.85832,9.064959],[-60.94334,9.02222],[-61.070557,8.8925]]],[[[-60.870285,9.108332],[-60.894173,9.088055],[-60.958618,9.066944],[-60.935562,9.170277],[-60.86362,9.19333300000011],[-60.870285,9.108332]]],[[[-60.730003,9.186388],[-60.838615,9.113609],[-60.84139,9.116665],[-60.822784,9.20167],[-60.76417,9.231943000000113],[-60.730003,9.186388]]],[[[-61.206673,9.585833],[-61.32695,9.64667],[-61.411667,9.72972],[-61.24084,9.63333],[-61.206673,9.585833]]],[[[-62.28861,9.755554000000132],[-62.31417,9.807499],[-62.28639,9.93417],[-62.24917,9.856943],[-62.28861,9.755554000000132]]],[[[-62.647507,10.3025],[-62.682793,10.350965],[-62.78806,10.414999],[-62.78722,10.478611],[-62.64584,10.344999],[-62.647507,10.3025]]],[[[-63.90723,10.729443],[-63.998062,10.768055],[-63.99667,10.802221],[-63.90667,10.7775],[-63.90723,10.729443]]],[[[-65.268616,10.881109],[-65.393341,10.906944],[-65.41724,10.924721],[-65.36446,10.969166],[-65.21194,10.95611],[-65.20056,10.896111],[-65.268616,10.881109]]],[[[-63.804726,11.021387],[-63.89001,10.904444],[-64.05556,10.857222],[-64.17168,10.959999],[-64.22446,10.93111],[-64.40584,10.9675],[-64.37472,11.06028],[-64.218338,11.088055],[-64.17584,11.03167],[-64.04028,10.98860900000011],[-63.88111,11.176943],[-63.804726,11.021387]]],[[[-66.648346,11.75861],[-66.666672,11.75639],[-66.610565,11.82111],[-66.58639,11.771666],[-66.648346,11.75861]]],[[[-66.11584,11.773611],[-66.126678,11.770555000000115],[-66.193069,11.817221],[-66.108612,11.825554],[-66.11584,11.773611]]],[[[-64.57223,11.805555],[-64.64389,11.82472],[-64.615005,11.895555],[-64.553619,11.848888],[-64.57223,11.805555]]],[[[-69.770844,11.69611],[-69.70612,11.54889],[-69.614456,11.46027800000013],[-69.5264,11.506109],[-69.36945,11.490555],[-69.27501,11.534166000000141],[-68.843338,11.447498],[-68.418335,11.179998],[-68.24084,10.88055],[-68.32529,10.843611],[-68.32806,10.7675],[-68.25362,10.58888800000011],[-68.160004,10.496944],[-67.86798,10.464870000000131],[-67.00223,10.610277],[-66.47057,10.629166000000112],[-66.348343,10.603333],[-66.297501,10.642221],[-66.23529,10.642221],[-66.08168,10.57667],[-66.11945,10.496944],[-65.95862,10.356667],[-65.929733,10.286388],[-65.81723,10.22917],[-65.08139,10.060555],[-64.76445,10.097221000000104],[-64.63417,10.24278],[-64.479736,10.238609],[-64.3739,10.299999],[-64.395844,10.337221000000113],[-64.36806,10.384165],[-64.202515,10.449999],[-63.815559,10.441387000000132],[-63.6975,10.485554],[-63.963615,10.578333],[-64.157501,10.56861],[-64.238892,10.51333],[-64.29945,10.620832],[-64.258896,10.661665],[-64.140839,10.61666],[-63.84278,10.645832],[-63.53167,10.62694],[-63.17223,10.719721],[-62.90667,10.695833],[-62.6975,10.747776000000101],[-62.1925,10.69417],[-61.88278,10.733332000000132],[-61.88334,10.694721],[-61.953056,10.648888],[-62.244728,10.63111],[-62.33723,10.529444],[-62.659172,10.569721],[-62.91667,10.528055000000109],[-63.00806,10.45194],[-62.84972,10.523888000000113],[-62.830559,10.402222],[-62.93111,10.41861],[-63.000282,10.399443000000133],[-63.000282,10.271666],[-62.92583,10.294167],[-62.952225,10.399443000000133],[-62.879116,10.371113],[-62.782124,10.399694000000125],[-62.66639,10.28055],[-62.623894,10.118055000000139],[-62.67473,10.071943],[-62.82917,10.05361],[-62.953339,10.104166],[-63.01723,10.097776],[-62.98695,10.065554],[-62.91056,10.07694],[-62.805283,10.00861],[-62.6175,10.08972],[-62.625557,10.199999],[-62.58083,10.226944],[-62.49306,10.16278],[-62.31667,9.7683320000001],[-62.318062,9.705],[-62.27723,9.747499000000118],[-62.237785,9.848888],[-62.255005,9.96861],[-62.210838,9.922499],[-62.163895,9.7225],[-62.210838,9.63444],[-62.176392,9.645555000000115],[-62.13,9.75211],[-62.1335,9.82644],[-62.02417,9.865833],[-62.11223,9.929443],[-62.23083,9.957777],[-62.18861,10.015833],[-62.051392,9.97639],[-61.96223,9.91194300000012],[-61.81167,9.757888],[-61.73862,9.59555],[-61.73195,9.695],[-61.801506,9.81461],[-61.77195,9.830276],[-61.59278,9.781666],[-61.574722,9.808332],[-61.65,9.89083],[-61.6225,9.906111],[-61.48056,9.82361],[-61.40723,9.704721],[-61.26306,9.59222],[-61.2125,9.572222],[-61.043335,9.575554],[-60.850281,9.440832],[-60.78361,9.304998000000126],[-60.98778,9.18861],[-61.08223,9.10222],[-61.104729,9.03861000000012],[-60.94972,9.17944],[-61.09778,8.963333],[-61.20889,8.595554],[-61.52639,8.59028],[-61.597504,8.618332000000123],[-61.59889,8.554998],[-61.32917,8.430832],[-61.230278,8.451944],[-61.17028,8.496111],[-61.07751,8.493055],[-61.073891,8.400833],[-60.98278,8.568609],[-60.7125,8.604443],[-60.63195,8.551666],[-60.468613,8.525555],[-60.40223,8.629166],[-60.23611,8.627499],[-59.99028,8.535276],[-59.804726,8.291666000000134],[-59.83195,8.22889],[-59.97472,8.18083],[-60.023338,8.041388],[-60.11834,8.03222],[-60.319725,7.8775],[-60.53139,7.80555500000014],[-60.590279,7.636944],[-60.71528,7.545833000000131],[-60.69112,7.455832],[-60.64556,7.436666],[-60.59195,7.339167],[-60.63444,7.258055],[-60.6175,7.194444],[-60.535561,7.123888],[-60.456116,7.195833],[-60.36723,7.179999],[-60.279167,7.120832000000121],[-60.288612,7.057221],[-60.463615,6.90667],[-60.64167,6.833888],[-60.71306,6.758055],[-60.81612,6.788333],[-60.941116,6.7225],[-61.12917,6.714167],[-61.20473,6.58139],[-61.14001,6.40861],[-61.15584,6.184999],[-61.26445,6.106111],[-61.33384,5.97556],[-61.389725,5.940000000000111],[-60.748894,5.2225],[-60.651672,5.17805],[-60.576118,4.964444],[-60.71167,4.781111],[-60.885,4.711666],[-60.985,4.52055],[-61.31361,4.506666000000109],[-61.49861,4.4025],[-61.51222,4.298055],[-61.54889,4.25167],[-61.75695,4.24722],[-61.84889,4.160555000000102],[-61.99556,4.169722],[-62.14889,4.092777],[-62.43834,4.184166],[-62.535561,4.123888],[-62.595001,4.040555],[-62.74583,4.0325],[-62.781113,3.902222],[-62.73251,3.68194],[-62.775284,3.60694],[-62.875,3.56028],[-62.98723,3.600833],[-63.246391,3.90417],[-63.34306,3.961111],[-63.42334,3.966111],[-63.48195,3.85805],[-63.53722,3.870555],[-63.60834,3.94361],[-63.84112,3.960278],[-64.01779,3.886111],[-64.05556,3.910833],[-64.13,4.112778000000105],[-64.335556,4.15417],[-64.58223,4.121666000000118],[-64.65834,4.246666],[-64.79529,4.281388],[-64.80084,4.20194],[-64.718063,4.152778],[-64.6364,3.976111],[-64.45973,3.796111],[-64.30806,3.718333],[-64.19112,3.594444],[-64.19057,3.505278],[-64.23695,3.426944],[-64.20529,3.193333],[-63.9875,2.723889],[-64.03667,2.47055],[-63.812225,2.424722],[-63.371117,2.42305],[-63.34639,2.406111],[-63.357506,2.269722],[-63.40139,2.146389],[-63.605,2.10722],[-63.739174,2.003055],[-64.00195,1.951111],[-64.05223,1.89083],[-64.077225,1.636389],[-64.26445,1.476111000000117],[-64.39917,1.51],[-64.53612,1.429722],[-64.58751,1.335833],[-64.7189,1.250833],[-64.821121,1.281111],[-65.006958,1.165833],[-65.12083,1.13361],[-65.18834,0.929167],[-65.315002,0.91889],[-65.389725,0.83083],[-65.43611,0.69528],[-65.489182,0.660278],[-65.5475,0.653611],[-65.58389,0.718889000000104],[-65.506668,0.862222],[-65.52473,0.93111],[-65.58974,0.989167000000123],[-65.74084,0.981667],[-65.87083,0.908333],[-65.97111,0.803889],[-66.1239,0.733889],[-66.311951,0.750556000000131],[-66.871887,1.221642],[-66.991669,1.695833],[-67.21085,2.24055],[-67.17306,2.34167],[-67.1925,2.3925],[-67.320557,2.46833],[-67.53528,2.68],[-67.60695,2.795555],[-67.82834,2.825000000000102],[-67.83307,2.876667],[-67.33612,3.318611],[-67.29056,3.3975],[-67.30724,3.45555],[-67.387787,3.49305500000014],[-67.491959,3.726388],[-67.61862,3.76333],[-67.70851,4.046954000000142],[-67.78862,4.17139],[-67.80724,4.239166],[-67.78029,4.351666],[-67.85973,4.55861],[-67.801117,4.979425],[-67.84973,5.307777000000101],[-67.80279,5.38556],[-67.64944,5.478333],[-67.613068,5.539166],[-67.651947,5.676389],[-67.622223,5.787499000000139],[-67.4128,5.99246],[-67.491989,6.118653],[-67.454453,6.193055],[-67.568344,6.264722],[-67.82278,6.30944],[-67.99501,6.207777000000135],[-68.15224,6.223332],[-68.313614,6.166944],[-68.4539,6.19055],[-68.63722,6.133888],[-69.056396,6.21611],[-69.245285,6.081388],[-69.325012,6.15361],[-69.429459,6.11861],[-70.11917,6.975833],[-70.30084,6.939166],[-70.552505,7.058332],[-70.71973,7.098055000000102],[-70.89001,7.075],[-71.02501,6.984444],[-71.186676,6.96277700000013],[-71.325562,7.021944],[-71.60695,7.059722],[-71.832779,6.98722],[-72,7.018888000000118],[-72.0661,7.06241],[-72.13528,7.177777],[-72.15472,7.325277],[-72.25944,7.389722],[-72.404175,7.40833],[-72.47168,7.491944],[-72.45973,7.920555],[-72.402512,8.041943],[-72.33362,8.049444],[-72.32529,8.095554],[-72.38417,8.363054],[-72.6644589999999,8.641109000000142],[-72.77972,9.080276],[-72.96529,9.17055],[-73.00639,9.304443],[-73.2189,9.171389],[-73.37807,9.171389],[-73.00473,9.7683320000001],[-72.905014,10.442499000000112],[-72.493057,11.121111],[-72.31029,11.163055],[-72.209351,11.25],[-71.977234,11.664999],[-71.76973,11.700832000000105],[-71.324722,11.853054],[-71.37862,11.753332],[-71.445847,11.72389],[-71.768616,11.661665],[-71.96194,11.584444000000133],[-71.95473,11.429998000000126],[-71.906113,11.300833],[-71.74084,11.034166],[-71.76556,11.010555000000123],[-71.66695,10.782776],[-71.57695,10.714443],[-71.64889,10.442499000000112],[-71.79306,10.323889000000122],[-72.127502,9.81305],[-71.910843,9.493610000000103],[-71.73418,9.378054],[-71.76363,9.11972],[-71.713058,9.076111],[-71.54611,9.041111],[-71.248062,9.148333],[-71.172501,9.266943],[-71.05528,9.341389],[-71.09001,9.531944],[-71.05334,9.703609],[-71.0714,9.848055],[-71.38556,10.282776000000126],[-71.458618,10.46],[-71.54501,10.565554],[-71.5264,10.726944],[-71.44667,10.795555],[-71.44473,10.912777],[-71.49751,10.959999],[-71.281113,10.989166],[-70.825562,11.211388],[-70.51334,11.246111],[-70.035568,11.440277],[-70.04501,11.522221],[-69.98973,11.516109],[-69.88806,11.429998000000126],[-69.79861,11.42778],[-69.74028,11.494999],[-69.814453,11.69083],[-70.18278,11.60305],[-70.23834,11.631666],[-70.22084,11.661388],[-70.29251,11.905277],[-70.1875,12.107777],[-70.026947,12.195276],[-69.93472,12.169722],[-69.859451,12.071943],[-69.770844,11.69611]]]]}},{"type":"Feature","properties":{"FIPS":"VI","ISO2":"VG","ISO3":"VGB","UN":92,"NAME":"British Virgin Islands","AREA":15,"POP2005":22016,"REGION":19,"SUBREGION":29,"LON":-64.39,"LAT":18.483},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.66084,18.383888],[-64.70029,18.395554],[-64.65251,18.441109],[-64.558334,18.451942],[-64.5675,18.418331],[-64.66084,18.383888]]],[[[-64.422501,18.43861],[-64.412231,18.5061070000001],[-64.32223,18.5061070000001],[-64.33057,18.494164],[-64.422501,18.43861]]],[[[-64.3114,18.746109],[-64.27,18.69639],[-64.408066,18.735832],[-64.407227,18.74194],[-64.3114,18.746109]]]]}},{"type":"Feature","properties":{"FIPS":"VM","ISO2":"VN","ISO3":"VNM","UN":704,"NAME":"Viet Nam","AREA":32549,"POP2005":85028643,"REGION":142,"SUBREGION":35,"LON":105.314,"LAT":21.491},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.600273,8.647778],[106.555817,8.688887],[106.659378,8.76474],[106.66054,8.741941],[106.600273,8.647778]]],[[[103.49859600000013,9.31361],[103.490257,9.292221],[103.46944,9.27944],[103.467209,9.304443],[103.49859600000013,9.31361]]],[[[106.262756,9.528887],[106.193298,9.573053],[106.088058,9.754438],[106.19608,9.62777],[106.285522,9.58694],[106.262756,9.528887]]],[[[106.54357900000014,9.82583],[106.52803,9.8275],[106.418579,9.93444],[106.48578600000013,9.902222000000108],[106.54357900000014,9.82583]]],[[[106.596626,10.257221],[106.64859000000011,10.251665000000116],[106.66441,10.243053],[106.58691,10.256943],[106.596626,10.257221]]],[[[106.637192,10.269999],[106.737473,10.264166000000102],[106.752472,10.234442],[106.726067,10.221386],[106.643349,10.26032],[106.537193,10.279444000000126],[106.511642,10.29361],[106.637192,10.269999]]],[[[104.083862,10.361942],[104.086357,10.245552],[104.026382,10.08028],[103.930267,10.273333],[103.86443300000013,10.299999],[103.837196,10.369442000000106],[104.01239,10.439432],[104.083862,10.361942]]],[[[107.092468,10.32222],[107.06386,10.383333],[107.156517,10.423496],[107.16803,10.464165],[107.205544,10.42222],[107.092468,10.32222]]],[[[106.895248,10.372219],[106.8849790000001,10.508888000000127],[106.934692,10.517221],[106.940102,10.45008],[106.97914100000014,10.40889],[106.895248,10.372219]]],[[[108.958588,10.504166],[108.93025,10.51028],[108.93025,10.550276],[108.953308,10.549166000000127],[108.958588,10.504166]]],[[[106.904694,10.520832],[106.850517,10.56527],[106.871384,10.595519],[106.85219,10.625553000000139],[106.87941,10.63722],[106.929138,10.586943000000133],[106.904694,10.520832]]],[[[106.85219,10.403610000000128],[106.755539,10.48139],[106.749977,10.562498000000119],[106.786301,10.57807],[106.753212,10.660968],[106.856476,10.603882000000112],[106.83575,10.569703000000116],[106.87413,10.5025],[106.85219,10.403610000000128]]],[[[109.33276400000011,12.187777],[109.284988,12.184721000000138],[109.245247,12.227497],[109.33148200000011,12.221088],[109.33276400000011,12.187777]]],[[[109.3936,12.350275000000124],[109.3872070000001,12.34972],[109.38527,12.366941],[109.39554,12.356665],[109.3936,12.350275000000124]]],[[[107.919434,16.349442],[107.866928,16.35944],[107.66122,16.572613],[107.77942700000011,16.490273],[107.919434,16.349442]]],[[[107.73027,20.127773],[107.71304,20.129162],[107.711647,20.131939000000102],[107.73831200000012,20.14444],[107.73027,20.127773]]],[[[107.37831,20.799164],[107.343323,20.80999800000012],[107.334991,20.846664],[107.382477,20.824165],[107.37831,20.799164]]],[[[107.068047,20.72749],[107.04776,20.703884],[106.989151,20.73527100000012],[106.908043,20.832218],[107.0338670000001,20.856106],[107.103317,20.79722],[107.068047,20.72749]]],[[[106.752777,20.854164],[106.7472080000001,20.85305000000011],[106.719147,20.87083],[106.741089,20.871109],[106.752777,20.854164]]],[[[106.873306,20.78722],[106.82779700000015,20.840485],[106.770828,20.852497],[106.78137200000015,20.922497],[106.83638000000013,20.89833],[106.892761,20.79944],[106.873306,20.78722]]],[[[106.948029,20.93638],[106.9322130000001,20.936939],[106.92747,20.94472],[106.940689,20.944267],[106.948029,20.93638]]],[[[107.48858600000011,20.839165],[107.46471,20.821384],[107.55415,20.96610600000014],[107.545532,20.918053],[107.48858600000011,20.839165]]],[[[106.89388300000013,20.965549],[106.9102630000001,20.96055200000012],[106.916656,20.954441],[106.888046,20.965549],[106.89388300000013,20.965549]]],[[[107.460823,20.942219],[107.46219600000012,20.96749],[107.47608900000012,20.97221800000011],[107.473312,20.954441],[107.460823,20.942219]]],[[[106.753601,20.950829],[106.688873,20.956661],[106.679428,20.977493],[106.75166300000011,20.958607000000143],[106.753601,20.950829]]],[[[107.746933,20.937218],[107.736649,21.007774],[107.747757,21.01916],[107.790817,20.981937],[107.746933,20.937218]]],[[[107.462769,20.903049000000124],[107.394989,20.8966640000001],[107.476723,20.946983000000102],[107.502403,21.012671],[107.554428,21.038052],[107.518333,20.926662],[107.462769,20.903049000000124]]],[[[107.85942,21.037777],[107.835274,20.99305],[107.80693100000013,20.986938],[107.8311,21.035],[107.85942,21.037777]]],[[[107.578323,20.977219],[107.567207,21.02055],[107.6207430000001,21.117836],[107.60887100000014,21.07333],[107.578323,20.977219]]],[[[107.51332,21.12833],[107.509163,21.133331],[107.53221100000013,21.145828],[107.53027,21.14055],[107.51332,21.12833]]],[[[107.383881,21.046387],[107.37580900000012,21.083054000000118],[107.471947,21.27142],[107.52361300000011,21.224438],[107.60443,21.218884],[107.383881,21.046387]]],[[[107.742752,21.308887],[107.70832800000011,21.305275],[107.818047,21.356384],[107.8169400000001,21.347775],[107.742752,21.308887]]],[[[107.996643,21.394718],[107.933319,21.36416],[107.8286,21.37138],[107.959427,21.400551],[107.996643,21.394718]]],[[[105.577477,23.05916200000013],[105.647774,23.066109],[105.761932,23.023888000000113],[105.8724820000001,22.910275],[105.98719800000015,22.93583],[106.01526600000011,22.984718],[106.13472000000013,22.988605],[106.22943,22.950829000000113],[106.25000000000011,22.87416500000012],[106.28498800000011,22.858608],[106.49609,22.897495],[106.52026,22.935272],[106.707207,22.864998000000124],[106.78749,22.763885],[106.717484,22.63055],[106.605263,22.604443000000117],[106.551712,22.456821],[106.565536,22.345829],[106.65833,22.32444],[106.695824,22.2225],[106.66527,22.19944],[106.693314,22.03083],[107.02916,21.936661],[107.04914900000011,21.90722],[107.020264,21.822498],[107.22083,21.708328],[107.30137600000012,21.731106000000125],[107.36273200000011,21.60526],[107.536102,21.586384],[107.78305100000011,21.666939],[107.8586,21.65083],[107.948029,21.541943],[108.068329,21.49138],[107.930542,21.438606],[107.914146,21.522774],[107.856369,21.526108],[107.594711,21.29139],[107.482483,21.28944],[107.414703,21.326107],[107.36693,21.265274],[107.36998000000011,21.022221],[107.232208,20.99388],[107.15443,20.924995000000138],[107.06694,20.95805],[107.14498900000012,21.0405540000001],[107.037201,20.996662],[107.01465,20.950562000000104],[106.86969,20.985043],[106.94287,20.904821],[106.882355,20.902712000000122],[106.862198,20.87083],[106.835915,20.916784],[106.77539100000011,20.935785000000124],[106.828598,20.971939000000134],[106.794708,21.025276],[106.643883,21.021385],[106.68221,21.001942],[106.667023,20.982227000000137],[106.67969,20.95408],[106.75972,20.932495],[106.741615,20.886526],[106.695877,20.87667],[106.74304,20.840275],[106.725273,20.79972],[106.779984,20.740551],[106.776932,20.699162000000115],[106.675537,20.635551],[106.597214,20.63259],[106.623032,20.59083],[106.56944,20.2897190000001],[106.523201,20.31195],[106.495506,20.299667],[106.556931,20.26722000000012],[106.344994,20.16416],[106.16970800000013,19.983051],[106.10277,19.967773],[106.1119,20.028877000000136],[106.079163,19.960274],[106.025269,19.990829],[105.954163,19.920830000000137],[105.808594,19.601109],[105.78276,19.394161],[105.806427,19.27422],[105.742752,19.226383000000112],[105.613876,18.977219],[105.63638300000014,18.890553],[105.70221,18.852497],[105.75525700000014,18.77],[105.74971,18.66249],[105.79414400000012,18.671108000000117],[105.88361,18.499161],[106.113037,18.270275],[106.270264,18.19944],[106.50992,17.956112],[106.450272,17.867218],[106.42499,17.741661],[106.49498,17.691105],[106.698868,17.399719],[107.115807,17.084721],[107.19165,16.874718000000144],[107.54470800000011,16.636383],[107.447197,16.639164],[107.700821,16.513332],[107.826103,16.384441],[107.788589,16.373329],[107.8186,16.304718],[107.900269,16.27861],[107.934418,16.326385],[108.026657,16.324165000000107],[108.087196,16.24888],[108.188583,16.199162000000115],[108.136658,16.136383],[108.200546,15.99805300000014],[108.238419,16.033941],[108.24109,16.15416],[108.33248900000012,16.15],[108.34137,16.12249800000012],[108.261658,16.095276],[108.305817,15.948332],[108.62497700000011,15.48222],[108.758904,15.39595],[108.830276,15.420832000000132],[108.928589,15.000832],[109.080551,14.718887],[109.078598,14.54833200000013],[109.190262,14.285831],[109.214157,14.120275],[109.304428,13.864443],[109.301651,13.746664],[109.26555,13.756943],[109.247757,13.891666],[109.218048,13.81611],[109.256653,13.55528],[109.22887,13.408609000000125],[109.312759,13.10972],[109.46638,12.89],[109.459152,12.853052000000105],[109.415543,12.862219],[109.1974790000001,12.633333],[109.206383,12.545277],[109.347488,12.39416],[109.29749300000015,12.34555],[109.18526,12.456387],[109.145538,12.43555],[109.216087,12.323608],[109.204437,12.098608],[109.26999,11.892498],[109.225807,11.934998],[109.189972,12.11722],[109.173309,12.12055],[109.20915200000013,11.978609],[109.123367,11.848230000000115],[109.2211,11.75611],[109.135536,11.56778],[109.046944,11.60333],[109.0211,11.353331],[108.950821,11.30666],[108.8679960000001,11.334713],[108.80692,11.31611],[108.67191,11.188887],[108.583588,11.181665],[108.4847,11.083054000000118],[108.25108,10.948887],[108.108017,10.91305],[107.99774,10.699165],[107.899979,10.71833],[107.822197,10.694721],[107.5866390000001,10.572388],[107.511368,10.499165],[107.328857,10.445831000000112],[107.26619000000011,10.376129],[107.172173,10.475721],[107.05357400000013,10.495275],[106.999748,10.65716600000013],[107.02330000000012,10.539165],[106.991074,10.619719],[106.995506,10.527498],[106.96119,10.46607],[106.94329800000014,10.593609000000129],[106.904137,10.631386000000132],[106.76303100000013,10.680552],[106.741638,10.668331],[106.770813,10.591108000000133],[106.738304,10.560613000000103],[106.736359,10.513054],[106.591553,10.429691],[106.738571,10.469442],[106.79274,10.38694],[106.784698,10.277498],[106.42432,10.31138],[106.790527,10.15944],[106.776367,10.079998],[106.649979,9.969164],[106.5902630000001,9.9775],[106.47969100000012,10.040276],[106.354424,10.221664],[106.290527,10.250832000000116],[106.490799,10.007776],[106.68524200000012,9.898609000000135],[106.67081,9.83972],[106.589142,9.81667],[106.114807,10.234068],[106.57248,9.739164],[106.57914700000015,9.656109],[106.54303,9.58361],[106.393593,9.533609000000126],[106.23497,9.6391660000001],[105.91468800000013,9.964165],[105.820534,10.002499],[106.058006,9.759443],[106.185791,9.558332],[106.210533,9.51139],[106.194122,9.366941],[105.527206,9.12611],[105.408333,9.000832],[105.301376,8.771387000000118],[105.119141,8.623331],[104.853043,8.55888700000014],[104.742752,8.604998000000137],[104.89082300000013,8.693888],[104.92387,8.746109],[104.91638,8.80222],[104.824997,8.767221],[104.79721100000012,8.79555],[104.860527,9.692497000000117],[104.901367,9.81555],[105.044968,9.931387],[105.08498,9.93444],[105.114143,9.853886],[105.107468,9.94528],[104.99025000000012,10.101109000000122],[104.89552,10.092775000000131],[104.79969800000015,10.21083],[104.7258,10.234163],[104.610237,10.168888],[104.58358800000012,10.26833],[104.445328,10.42274],[104.54524200000014,10.458332],[104.595253,10.53333],[104.883873,10.534443],[104.961357,10.63833],[105.098022,10.715832],[105.037193,10.88389],[105.10191,10.955553],[105.233856,10.889721000000122],[105.358856,10.871664],[105.432739,10.966942],[105.524292,10.94577],[105.77914,11.022776],[105.858307,10.916666],[106.20331,10.770554],[106.14581,10.9155540000001],[106.152763,10.974442000000124],[106.214417,10.9755540000001],[106.1908,11.053053],[106.15912600000013,11.093887000000109],[106.104424,11.083887000000118],[105.86969,11.296944],[105.90164,11.438332000000115],[105.881912,11.545277],[105.819077,11.594013000000132],[105.85107,11.66],[105.961906,11.64305],[106.046356,11.777222],[106.260803,11.72639],[106.305527,11.677776],[106.458214,11.665863000000115],[106.437737,11.79361],[106.46136,11.885],[106.420242,11.973608],[106.71997,11.969719000000111],[106.7892,12.073462],[106.98137,12.086109],[107.16693,12.277777],[107.350273,12.333609000000138],[107.43414,12.251944],[107.54749300000015,12.35360900000012],[107.59304800000011,12.603886],[107.56944,12.795832],[107.510818,12.87944],[107.48332,13.02055],[107.636383,13.381664],[107.62886,13.542776],[107.464188,13.794365000000141],[107.473495,13.931707],[107.371918,14.01777600000014],[107.3416600000001,14.124441],[107.383614,14.233608],[107.378036,14.352776],[107.416092,14.429443],[107.48359700000015,14.438053],[107.558319,14.651388],[107.541367,14.91805],[107.48276,14.966108],[107.467758,15.025],[107.615257,15.06222],[107.695251,15.27083],[107.517487,15.46833],[107.420258,15.503332],[107.263046,15.647778],[107.17693300000013,15.777777],[107.203873,15.859997],[107.398331,15.913887],[107.47527300000013,16.02111],[107.46471,16.078609000000142],[107.334152,16.056942000000106],[107.1611,16.18777],[107.147217,16.263332],[107.093887,16.300819],[106.98719800000013,16.29972],[106.880539,16.53611000000012],[106.845261,16.535553],[106.76053600000012,16.421383],[106.68553,16.45805],[106.560257,16.677494],[106.561096,16.99694],[106.52026,16.965549000000124],[106.444427,16.98749],[106.34082,17.169163],[106.084717,17.36166],[105.860809,17.618607000000107],[105.75388,17.66999],[105.627243,17.987503],[105.5044400000001,18.16833],[105.35859700000013,18.167496000000142],[105.32193000000012,18.196678],[105.31860400000011,18.259998],[105.258614,18.254444],[105.183319,18.334442],[105.10331700000012,18.466938],[105.146378,18.594440000000134],[105.194138,18.609999],[105.19386,18.642494000000113],[105.105553,18.696663],[104.74136,18.797218],[104.573318,18.900551],[104.526382,18.97666],[104.2838670000001,19.11055],[104.22076,19.111324],[104.224152,19.151386],[104.17109700000015,19.19305],[104.059418,19.239994],[103.998596,19.229717000000107],[103.87943300000012,19.29361],[103.879967,19.319996],[104.052757,19.417496],[104.10387,19.478607],[104.101646,19.559719],[104.021652,19.66583],[104.037247,19.692944],[104.13526900000011,19.659439],[104.246094,19.70444],[104.4208220000001,19.67194],[104.5161,19.606106],[104.640266,19.611942],[104.713318,19.746384],[104.837769,19.794163],[104.8461,19.85333],[104.786926,19.861385],[104.785812,19.8875],[104.979156,20.004997000000117],[104.98471100000012,20.098331],[104.94359,20.18138],[104.831673,20.228607],[104.616089,20.41666400000014],[104.514427,20.4075],[104.38192700000013,20.444717],[104.5161,20.51722],[104.6436000000001,20.660275000000127],[104.49915,20.713608],[104.314148,20.88971700000013],[104.1091540000001,20.977219],[103.85664400000013,20.852497],[103.77887,20.784443],[103.738312,20.66999],[103.693588,20.657219],[103.603867,20.74110400000012],[103.170532,20.846664],[103.03749,21.053886],[102.91443600000014,21.16805],[102.918869,21.23249],[102.883041,21.254997],[102.904984,21.440273000000104],[102.874977,21.43277400000011],[102.98858600000011,21.575275],[102.97609,21.739437],[102.6766510000001,21.65583],[102.648331,21.85],[102.60776,21.92555],[102.505547,21.962215],[102.419434,22.120552],[102.238312,22.242493],[102.140747,22.39629],[102.38889300000011,22.609161],[102.479713,22.77389],[102.862762,22.601387],[102.92859,22.48194],[103.030548,22.43555],[103.17082,22.546944],[103.33638000000013,22.796387],[103.400269,22.76778],[103.45694000000015,22.642494],[103.531662,22.583607],[103.584152,22.64416100000011],[103.566673,22.70694],[103.612488,22.776665],[103.65526,22.7825],[103.96443,22.499111],[104.009743,22.52423],[104.03305,22.68527200000011],[104.1091540000001,22.798332],[104.267227,22.829193],[104.26193200000012,22.737774],[104.36998,22.685829],[104.573608,22.829998],[104.731369,22.816666],[104.85416,22.958328000000108],[104.82361,23.103329],[104.90749,23.18027500000011],[105.353867,23.334721],[105.554428,23.16027],[105.577477,23.05916200000013]]]]}},{"type":"Feature","properties":{"FIPS":"VQ","ISO2":"VI","ISO3":"VIR","UN":850,"NAME":"United States Virgin Islands","AREA":35,"POP2005":111408,"REGION":19,"SUBREGION":29,"LON":-64.785,"LAT":17.741},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.761948,17.774166],[-64.69667,17.74555],[-64.65779,17.7691650000001],[-64.560287,17.748333],[-64.89612,17.676666000000125],[-64.87973,17.769722],[-64.761948,17.774166]]],[[[-64.66528,18.332222],[-64.70445,18.307499],[-64.79028,18.33083],[-64.73195,18.37194],[-64.66528,18.332222]]],[[[-64.84167,18.312496],[-64.87807,18.31055],[-65.026947,18.362778000000105],[-64.9039,18.364719],[-64.84167,18.312496]]]]}},{"type":"Feature","properties":{"FIPS":"WA","ISO2":"NA","ISO3":"NAM","UN":516,"NAME":"Namibia","AREA":82329,"POP2005":2019677,"REGION":2,"SUBREGION":18,"LON":17.218,"LAT":-22.133},"geometry":{"type":"Polygon","coordinates":[[[23.284721,-17.662502],[24.374722,-17.472778],[24.562222,-17.533058],[24.663887,-17.493614],[24.969997,-17.559723],[25.264431,-17.80225],[25.178055,-17.781391],[25.09222,-17.830002],[24.936108,-17.813892],[24.828331,-17.838612],[24.560276,-18.056946],[24.496109,-18.059448],[24.419441,-17.954723],[24.362499,-17.948612],[23.96722,-18.185001],[23.719166,-18.425282],[23.615578,-18.485069],[23.570831,-18.467224],[23.519722,-18.266945],[23.398052,-18.176113],[23.297108,-17.995949],[23.077774,-18.004448],[21.462498,-18.304447],[20.993286,-18.318417],[20.991943,-21.996948],[19.996666,-22.005001],[19.99612,-28.421448],[19.803608,-28.495003],[19.732498,-28.484169],[19.569462,-28.526829],[19.466389,-28.699722],[19.269165,-28.734447],[19.239166,-28.798889],[19.253887,-28.899445],[19.123055,-28.962223],[19.009441,-28.932224],[18.957775,-28.868057],[18.723053,-28.83667],[18.175831,-28.908611],[18.046387,-28.870003],[17.912498,-28.779167],[17.749722,-28.746391],[17.635277,-28.772224],[17.57737,-28.681221],[17.40472,-28.713612],[17.361385,-28.535004],[17.399719,-28.353889],[17.348888,-28.236668],[17.221642,-28.244678],[17.184158,-28.202534],[17.186386,-28.108059],[17.06361,-28.028614],[16.88361,-28.09639],[16.776665,-28.441669],[16.727776,-28.496113],[16.678055,-28.460556],[16.449165,-28.617779],[16.39333,-28.591114],[16.027775,-28.244724],[15.759998,-28.037781],[15.676388,-27.933891],[15.669998,-27.871391],[15.52861,-27.727501],[15.519165,-27.626945],[15.294167,-27.322502],[15.234722,-26.966667],[15.157776,-26.902779],[15.084999,-26.70417],[15.079721,-26.650002],[15.134722,-26.628891],[15.141943,-26.67778],[15.172499,-26.606945],[15.131109,-26.478615],[15.087915,-26.400978],[14.964443,-26.329723],[14.93861,-26.139446],[14.978054,-26.126667],[14.98,-26.057503],[14.834444,-25.745003],[14.881388,-25.548889],[14.800554,-25.278893],[14.855,-25.050556],[14.792776,-24.943611],[14.776943,-24.799446],[14.599165,-24.565556],[14.612778,-24.45639],[14.463333,-24.109169],[14.45611,-23.967503],[14.510277,-23.826389],[14.496111,-23.588337],[14.434166,-23.411392],[14.469999,-23.346668],[14.491943,-23.375835],[14.497776,-23.318058],[14.408333,-23.014168],[14.434444,-22.881111],[14.462776,-23.000557],[14.533609,-22.889446],[14.511389,-22.55278],[14.285831,-22.123337],[13.949165,-21.781948],[13.970276,-21.73167],[13.879721,-21.599445],[13.853611,-21.49139],[13.4,-20.855835],[13.352777,-20.646667],[13.250832,-20.465836],[13.174999,-20.180836],[13.051109,-20.06778],[12.460833,-18.928059],[12.29611,-18.706112],[12.020832,-18.471111],[11.948889,-18.25639],[11.804722,-18.081947],[11.762499,-17.97028],[11.716665,-17.564167],[11.752783,-17.254833],[11.825832,-17.266392],[11.92861,-17.182781],[12.084721,-17.135281],[12.292221,-17.229725],[12.434166,-17.21278],[12.55722,-17.243336],[12.816111,-17.108891],[12.886665,-17.033611],[13.160555,-16.952778],[13.251665,-16.985279],[13.373333,-16.969448],[13.474443,-17.011948],[13.527777,-17.110836],[13.655832,-17.215557],[13.993219,-17.423946],[14.176943,-17.42028],[14.218054,-17.386948],[18.451538,-17.389835],[18.641941,-17.648056],[18.756386,-17.74778],[18.915833,-17.815556],[19.025833,-17.830002],[19.175278,-17.801113],[19.41333,-17.861115],[19.920555,-17.857224],[20.098888,-17.896389],[20.338055,-17.858059],[20.553055,-17.983612],[20.854164,-18.016392],[20.954166,-17.967503],[21.163887,-17.931393],[21.241943,-17.938892],[21.379356,-18.014889],[23.284721,-17.662502]]]}},{"type":"Feature","properties":{"FIPS":"WF","ISO2":"WF","ISO3":"WLF","UN":876,"NAME":"Wallis and Futuna Islands","AREA":14,"POP2005":15079,"REGION":9,"SUBREGION":61,"LON":-178.131,"LAT":-14.289},"geometry":{"type":"MultiPolygon","coordinates":[[[[-178.04251,-14.31945],[-178.14056,-14.316389],[-178.18945,-14.23611],[-178.12997,-14.24694],[-178.04251,-14.31945]]],[[[-176.161438,-13.35278],[-176.191101,-13.286945],[-176.156158,-13.213614],[-176.12109,-13.26333],[-176.161438,-13.35278]]]]}},{"type":"Feature","properties":{"FIPS":"WS","ISO2":"WS","ISO3":"WSM","UN":882,"NAME":"Samoa","AREA":283,"POP2005":183845,"REGION":9,"SUBREGION":61,"LON":-172.414,"LAT":-13.652},"geometry":{"type":"MultiPolygon","coordinates":[[[[-171.42975,-14.019724],[-171.441986,-14.057503],[-171.911133,-14.0125],[-172.064758,-13.87444],[-172.027802,-13.839443],[-171.822266,-13.807503],[-171.619141,-13.87861],[-171.44614,-13.9825],[-171.42975,-14.019724]]],[[[-172.28586,-13.48639],[-172.16888,-13.677502],[-172.21417,-13.80778],[-172.52722,-13.80389],[-172.78061,-13.53333],[-172.36084,-13.460556],[-172.28586,-13.48639]]]]}},{"type":"Feature","properties":{"FIPS":"WZ","ISO2":"SZ","ISO3":"SWZ","UN":748,"NAME":"Swaziland","AREA":1720,"POP2005":1124529,"REGION":2,"SUBREGION":18,"LON":31.497,"LAT":-26.562},"geometry":{"type":"Polygon","coordinates":[[[30.902048,-26.305254],[31.063889,-26.091393],[31.12833,-25.913891],[31.320553,-25.75528],[31.421665,-25.728336],[31.878052,-25.995556],[31.96851,-25.95784],[32.074715,-26.037224],[32.10305,-26.162224],[32.061104,-26.261391],[32.07222,-26.393333],[32.129166,-26.505836],[32.1334,-26.839626],[32.009491,-26.808064],[31.958611,-27.112782],[31.987499,-27.316113],[31.517498,-27.313057],[31.161663,-27.203056],[30.96833,-26.960835],[30.899443,-26.77195],[30.818886,-26.810558],[30.802219,-26.468391],[30.902048,-26.305254]]]}},{"type":"Feature","properties":{"FIPS":"YM","ISO2":"YE","ISO3":"YEM","UN":887,"NAME":"Yemen","AREA":52797,"POP2005":21095679,"REGION":142,"SUBREGION":145,"LON":48.355,"LAT":15.807},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.3408280000001,12.108889],[53.273331,12.113333],[53.25666,12.124998000000119],[53.291664,12.13444],[53.3408280000001,12.108889]]],[[[53.085831,12.13361],[53.073326,12.133888],[53.011383,12.158609],[53.09610700000013,12.17555],[53.11278,12.147499],[53.085831,12.13361]]],[[[52.234161,12.201111],[52.393326,12.198055000000124],[52.395828,12.155277],[52.268883,12.147778],[52.083054,12.222776],[52.142494,12.246111],[52.234161,12.201111]]],[[[43.438606,12.631109],[43.395,12.648888000000111],[43.39611100000013,12.66639],[43.443886000000134,12.659443],[43.438606,12.631109]]],[[[53.774719,12.616388],[53.834442,12.606943],[54.09111,12.704166],[54.476944,12.557777],[54.41305,12.478333],[54.139442,12.350832],[53.753609,12.30805400000014],[53.57111,12.346388],[53.325829,12.545832],[53.3899990000001,12.56111],[53.404999,12.658054],[53.501938,12.717777],[53.65361,12.703333],[53.774719,12.616388]]],[[[42.75582900000012,13.69861],[42.67722,13.66611],[42.71916,13.74166],[42.793884,13.781111],[42.75582900000012,13.69861]]],[[[42.78749800000014,13.91],[42.68916300000012,14.013611000000138],[42.766388,14.066944],[42.799721,14],[42.78749800000014,13.91]]],[[[42.594719,15.271944000000133],[42.55583200000012,15.301388],[42.568886,15.3925],[42.64249,15.45833],[42.652222,15.39361],[42.594719,15.271944000000133]]],[[[52.231941,15.674166],[52.189163,15.605276],[51.7188870000001,15.42305],[51.66444400000012,15.35639],[51.245277,15.189165],[50.543327,15.041666],[50.185555000000136,14.84],[50.04444100000011,14.81611],[50.027222,14.846666000000143],[49.95444,14.843887],[49.534164,14.709999],[49.098885,14.519165],[49.021385000000116,14.4275],[49.000832,14.314999],[48.69805100000013,14.04],[48.23444,13.988888],[47.99528,14.048611],[47.82,13.934166],[47.64555400000012,13.873333],[47.401665,13.649166],[46.93388,13.538887000000102],[46.68639,13.42639],[46.04555,13.408609000000125],[45.666664,13.341665],[45.494164,13.189722],[45.40583,13.064444],[45.180832,13.00778],[45.1252750000001,12.96666],[45.069717,12.860832],[45.05544,12.7513],[44.975883000000124,12.779166],[45.040241,12.799437],[45.01693,12.855178000000137],[44.90291,12.786768],[44.875549,12.80694],[44.872772,12.7675],[44.923882,12.7675],[44.899994000000106,12.730276],[44.76863,12.769285],[44.7296070000001,12.741921],[44.678329,12.804998000000126],[44.598885,12.818609],[44.435555,12.693888],[44.300278,12.63722],[43.957222,12.59278],[43.82249,12.685833],[43.60527,12.750555000000132],[43.510826,12.68055500000014],[43.46,12.684444],[43.48166700000013,12.82805],[43.22805,13.27778],[43.279999,13.7175],[43.232773,13.874722],[43.0866620000001,13.993332],[43.103333,14.170832],[43.019722000000115,14.440832000000114],[43.027222,14.555555],[42.944717,14.77861],[42.935829,14.95778],[42.861382,15.13722],[42.681107,15.208332],[42.724159,15.301109],[42.7803310000001,15.227942],[42.810829,15.263332],[42.787216,15.462221],[42.71888700000011,15.570833],[42.693886,15.700277],[42.746109,15.753054],[42.75777,15.829999],[42.836105,15.885277],[42.845833,16.09333],[42.78968,16.377502],[42.91861,16.42305],[43.063606,16.54555],[43.098053,16.676941],[43.20611,16.67222],[43.122772,16.926388],[43.1919400000001,17.34222],[43.40721900000011,17.513885],[43.510826,17.52277800000013],[43.615829,17.48361],[43.755272,17.353611],[43.938889000000124,17.305553],[44.0897220000001,17.346664],[44.18527200000011,17.40916],[44.467499,17.41194200000012],[46.333328,16.666664],[46.333054,15.61694],[48.766388,18.266388],[51.99929,18.99934400000012],[53.114441,16.642778],[52.596382,16.477219],[52.298882000000106,16.272221000000116],[52.157219,15.98361],[52.231941,15.674166]]]]}},{"type":"Feature","properties":{"FIPS":"ZA","ISO2":"ZM","ISO3":"ZMB","UN":894,"NAME":"Zambia","AREA":74339,"POP2005":11478317,"REGION":2,"SUBREGION":14,"LON":26.32,"LAT":-14.614},"geometry":{"type":"Polygon","coordinates":[[[24.969997,-17.559723],[24.663887,-17.493614],[24.562222,-17.533058],[24.374722,-17.472778],[23.454441,-17.615837],[23.201664,-17.479725],[22.487778,-16.77417],[22.138885,-16.4925],[22.121109,-16.341114],[22.000149,-16.171661],[21.998333,-13.004168],[24.020554,-13.00639],[23.997776,-12.937223],[23.893887,-12.832224],[23.886108,-12.771112],[23.971386,-12.512501],[24.052219,-12.385279],[24.035,-12.264168],[23.974998,-12.199167],[23.984165,-11.882223],[24.015553,-11.814167],[23.965832,-11.655001],[24.03083,-11.453056],[24.084442,-11.402779],[24.027002,-11.25],[23.986206,-10.870461],[24.128609,-10.91139],[24.178886,-11.030001],[24.318054,-11.050001],[24.397499,-11.109446],[24.413055,-11.269445],[24.361111,-11.355278],[24.44833,-11.463612],[24.585552,-11.440834],[24.74472,-11.315001],[25.184166,-11.254168],[25.332222,-11.193335],[25.344719,-11.281113],[25.288609,-11.37639],[25.359722,-11.641668],[25.498333,-11.710001],[25.842499,-11.802223],[26.004719,-11.9025],[26.443054,-11.911112],[26.678055,-11.989168],[26.86861,-11.973612],[26.978611,-11.891668],[27.032219,-11.596111],[27.199249,-11.567905],[27.232498,-11.781389],[27.478611,-11.966667],[27.535831,-12.173334],[27.66,-12.296667],[27.791386,-12.300001],[27.865833,-12.256111],[28.163609,-12.429445],[28.341942,-12.438057],[28.441944,-12.519724],[28.531666,-12.659168],[28.49361,-12.741945],[28.561386,-12.878889],[28.586941,-12.89889],[28.662777,-12.836945],[28.733887,-12.896946],[28.920277,-13.150557],[28.961666,-13.347778],[29.015831,-13.397779],[29.098053,-13.389168],[29.203053,-13.435556],[29.589443,-13.221945],[29.685833,-13.269724],[29.621387,-13.371946],[29.638332,-13.421667],[29.801388,-13.454168],[29.80505,-12.155247],[29.571663,-12.190001],[29.48111,-12.239445],[29.446941,-12.342224],[29.486385,-12.393612],[29.527775,-12.396389],[29.49361,-12.458057],[29.257221,-12.364168],[29.031387,-12.383057],[28.93972,-12.206667],[28.835552,-12.096945],[28.496387,-11.8675],[28.35722,-11.528057],[28.361088,-11.444065],[28.466942,-11.239723],[28.552498,-10.835279],[28.620831,-10.717501],[28.666943,-10.710001],[28.699718,-10.653334],[28.63361,-10.520834],[28.594997,-10.246113],[28.625832,-9.947779],[28.696388,-9.791389],[28.537777,-9.470835],[28.518055,-9.354723],[28.402222,-9.311668],[28.372219,-9.260834],[28.701664,-9.020557],[28.925831,-8.741945],[28.960552,-8.635557],[28.899746,-8.480413],[30.77124,-8.192247],[30.901386,-8.460001],[31.041111,-8.590279],[31.132774,-8.615557],[31.220554,-8.576668],[31.485554,-8.666389],[31.563889,-8.75139],[31.582497,-8.830278],[31.683609,-8.90889],[31.738605,-8.918055],[31.785538,-8.885067],[31.956108,-8.930834],[31.934166,-9.01889],[31.979721,-9.071112],[32.056107,-9.040834],[32.159996,-9.063334],[32.249443,-9.131945],[32.425552,-9.129723],[32.545273,-9.266668],[32.702774,-9.282223],[32.940399,-9.405077],[33.012878,-9.631273],[33.20694,-9.602501],[33.226662,-9.711113],[33.322495,-9.811111],[33.359444,-9.933056],[33.324165,-10.06778],[33.554718,-10.220278],[33.567497,-10.392502],[33.702278,-10.561857],[33.510826,-10.775557],[33.344162,-10.81389],[33.250549,-10.886667],[33.411659,-11.156389],[33.244164,-11.413057],[33.26194,-11.57139],[33.323608,-11.607779],[33.330826,-11.744722],[33.332222,-11.897223],[33.273331,-12.144445],[33.374443,-12.331667],[33.483604,-12.310835],[33.547493,-12.348612],[33.370827,-12.5375],[33.238052,-12.585835],[33.046387,-12.603889],[32.960274,-12.761667],[32.967773,-12.850557],[33.035271,-12.910278],[32.921387,-13.383612],[32.82222,-13.538057],[32.690552,-13.565001],[32.678886,-13.60639],[32.785828,-13.640556],[32.989998,-13.934723],[33.074165,-13.985834],[33.161659,-13.922224],[33.222229,-14.012566],[32.372772,-14.308334],[31.693054,-14.504446],[31.484722,-14.619722],[30.808052,-14.778057],[30.343609,-14.967779],[30.213017,-14.981716],[30.25333,-15.218613],[30.364441,-15.344168],[30.415756,-15.631872],[30.353054,-15.660002],[29.831387,-15.616112],[29.656109,-15.670834],[29.563332,-15.662224],[29.250275,-15.775002],[28.927219,-15.972223],[28.860554,-16.049446],[28.854164,-16.388336],[28.759441,-16.552223],[28.585552,-16.590279],[28.259998,-16.724167],[28.138611,-16.823612],[27.825275,-16.959167],[27.638885,-17.224724],[27.619164,-17.337223],[27.347775,-17.575279],[27.148609,-17.800003],[27.149719,-17.857224],[27.038055,-17.959446],[26.749443,-18.031113],[26.696411,-18.076126],[26.60611,-18.046112],[26.563889,-17.994446],[26.23,-17.902779],[25.964443,-18.005558],[25.863609,-17.976669],[25.858055,-17.911945],[25.689442,-17.808056],[25.513885,-17.863056],[25.326664,-17.840279],[24.969997,-17.559723]]]}},{"type":"Feature","properties":{"FIPS":"ZI","ISO2":"ZW","ISO3":"ZWE","UN":716,"NAME":"Zimbabwe","AREA":38685,"POP2005":13119679,"REGION":2,"SUBREGION":14,"LON":29.872,"LAT":-19},"geometry":{"type":"Polygon","coordinates":[[[32.987808,-17.265003],[33.04203,-17.356483],[32.954163,-17.500278],[33.04361,-17.620003],[32.946106,-17.975002],[33.001106,-18.183334],[32.969444,-18.246391],[33.073051,-18.348892],[33.01722,-18.463337],[32.888329,-18.530556],[32.949715,-18.690281],[32.924995,-18.773056],[32.817215,-18.779167],[32.707222,-18.82917],[32.699165,-18.944447],[32.71611,-19.021946],[32.839165,-19.023056],[32.884163,-19.09528],[32.854996,-19.27417],[32.784721,-19.36639],[32.783051,-19.467781],[32.846939,-19.483059],[32.850555,-19.617779],[32.984718,-19.687225],[33.059441,-19.780281],[33.018883,-19.943336],[32.90416,-20.124168],[32.871666,-20.278614],[32.665833,-20.557224],[32.550827,-20.555],[32.50222,-20.598614],[32.483604,-20.661667],[32.521385,-20.914169],[32.35833,-21.130558],[32.488876,-21.344448],[32.416107,-21.307217],[31.407497,-22.340279],[31.297504,-22.414764],[31.261944,-22.366947],[31.15583,-22.321667],[31.089443,-22.337502],[30.907776,-22.289448],[30.306942,-22.345558],[29.932499,-22.188057],[29.726109,-22.139168],[29.373623,-22.19241],[29.256107,-22.066391],[29.174721,-22.08028],[29.073887,-22.037781],[29.032776,-21.956947],[29.081181,-21.82539],[29.060555,-21.798058],[28.868053,-21.754448],[28.574165,-21.632225],[28.498055,-21.662224],[28.288609,-21.587223],[28.015831,-21.566113],[27.84861,-21.23167],[27.685555,-21.070557],[27.693607,-20.862782],[27.730831,-20.748337],[27.713165,-20.506432],[27.609444,-20.470558],[27.35722,-20.465],[27.287453,-20.494965],[27.290554,-20.241669],[27.219997,-20.091667],[26.732498,-19.931946],[26.356667,-19.616947],[26.166111,-19.527779],[25.963333,-19.105556],[25.986942,-18.988056],[25.956108,-18.913612],[25.865833,-18.841393],[25.718887,-18.591393],[25.521942,-18.391392],[25.401943,-18.134724],[25.309166,-18.065834],[25.236664,-17.894447],[25.264431,-17.80225],[25.332222,-17.842503],[25.513885,-17.863056],[25.689442,-17.808056],[25.858055,-17.911945],[25.863609,-17.976669],[25.951664,-18.002502],[26.23,-17.902779],[26.563889,-17.994446],[26.60611,-18.046112],[26.696411,-18.076126],[26.749443,-18.031113],[27.038055,-17.959446],[27.149719,-17.857224],[27.148609,-17.800003],[27.347775,-17.575279],[27.619164,-17.337223],[27.638885,-17.224724],[27.825275,-16.959167],[28.138611,-16.823612],[28.259998,-16.724167],[28.585552,-16.590279],[28.759441,-16.552223],[28.854164,-16.388336],[28.860554,-16.049446],[28.927219,-15.972223],[29.352776,-15.733612],[29.831387,-15.616112],[30.353054,-15.660002],[30.415756,-15.631872],[30.422775,-16.009167],[31.143608,-15.994167],[31.276665,-16.018612],[31.428608,-16.163612],[31.721943,-16.214725],[31.899441,-16.355556],[31.908054,-16.418335],[32.377777,-16.470001],[32.701111,-16.600834],[32.72805,-16.693611],[32.767464,-16.71804],[32.98114,-16.709053],[32.938606,-16.842224],[32.864998,-16.918613],[32.96833,-17.147503],[32.987808,-17.265003]]]}},{"type":"Feature","properties":{"FIPS":"ID","ISO2":"ID","ISO3":"IDN","UN":360,"NAME":"Indonesia","AREA":181157,"POP2005":226063044,"REGION":142,"SUBREGION":35,"LON":114.252,"LAT":-0.976},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.21471,-10.812222],[123.001099,-10.85805],[122.84414700000012,-10.93],[122.80775,-10.79472],[123.07222,-10.685],[123.39026600000011,-10.436945],[123.39444000000013,-10.68417],[123.26970700000015,-10.73139],[123.21471,-10.812222]]],[[[121.85999300000024,-10.610277],[121.74552900000013,-10.60694],[121.69081100000017,-10.56639],[121.894989,-10.421667],[121.996933,-10.44111],[121.98276,-10.53472],[121.85999300000024,-10.610277]]],[[[123.400543,-10.34278],[123.324997,-10.34417],[123.30859,-10.27667],[123.39498900000011,-10.166111],[123.45332,-10.139722999999888],[123.50804100000026,-10.18278],[123.400543,-10.34278]]],[[[120.02916,-9.383333],[120.091927,-9.463055],[120.188583,-9.46639],[120.23804,-9.50583],[120.2619320000001,-9.64833],[120.33472,-9.67806],[120.378311,-9.64139],[120.46692700000027,-9.634724],[120.59444,-9.745554],[120.669708,-9.894724],[120.81025700000022,-9.979166],[120.831383,-10.0825],[120.72442600000022,-10.199722],[120.49443,-10.264446],[120.16470300000015,-10.231387999999868],[120.04276300000015,-10.118055],[119.95972,-9.97639],[119.706383,-9.861111],[119.63220200000012,-9.77333],[119.12025,-9.72666],[119.05304000000011,-9.69833],[118.931091,-9.56111],[119.02442900000015,-9.43528],[119.282211,-9.358889],[119.37997,-9.379999],[119.64055,-9.342222],[119.809143,-9.3875],[119.943863,-9.28389],[120.02916,-9.383333]]],[[[125.16404989666455,-9.066142474253581],[124.97205197356264,-9.211796071089564],[125.12798877127146,-9.435955217796277],[125.00000000000011,-9.53667],[124.97580700000015,-9.65778],[124.56749,-10.00889],[124.447479,-10.15472],[124.11109900000018,-10.18083],[124.030273,-10.277224],[123.93692,-10.296945999999878],[123.81165,-10.375831999999889],[123.609421,-10.37111],[123.488312,-10.316389],[123.4897,-10.23944],[123.52942700000017,-10.191110999999864],[123.671921,-10.145],[123.76221,-10.07889],[123.6972,-10.02833],[123.603867,-10.05944],[123.57527200000015,-10.02833],[123.578598,-9.937222],[123.66582,-9.854166],[123.663597,-9.645555],[123.975273,-9.358334],[124.0461611661691,-9.339979205870009],[124.34309325995275,-9.463379556533425],[124.44572729730145,-9.184801455158606],[124.599716,-9.164167],[124.79776000000014,-9.014723],[124.9454487445107,-8.954039319302865],[125.16404989666455,-9.066142474253581]]],[[[115.594711,-8.804167],[115.46999400000014,-8.734444],[115.512497,-8.67],[115.60582,-8.70667],[115.594711,-8.804167]]],[[[119.69054,-8.80278],[119.607483,-8.773611],[119.64444,-8.670834],[119.633057,-8.600795999999889],[119.719994,-8.68694],[119.69941700000027,-8.723113],[119.726929,-8.7575],[119.69054,-8.80278]]],[[[113.388893,-8.49722],[113.295532,-8.50056],[113.285812,-8.44],[113.396652,-8.4525],[113.388893,-8.49722]]],[[[122.96944,-8.5725],[122.925591,-8.61192],[122.88443,-8.58333],[122.90918,-8.517021],[122.98804,-8.45667],[123.17775700000016,-8.442223],[123.16748,-8.474167],[123.068878,-8.49722],[122.96944,-8.5725]]],[[[119.461647,-8.440276999999867],[119.49664300000018,-8.486944],[119.56499,-8.492498],[119.58554100000015,-8.563055],[119.55832,-8.598333],[119.507492,-8.5725],[119.4561,-8.60305],[119.447197,-8.754168],[119.37387100000012,-8.72417],[119.40416000000016,-8.680834],[119.41442900000015,-8.447779],[119.461647,-8.440276999999867]]],[[[123.281097,-8.405834],[123.02277400000013,-8.413334],[123.01609800000017,-8.378056],[123.08332800000015,-8.28861],[123.22083,-8.23361],[123.344147,-8.27],[123.324432,-8.380554],[123.281097,-8.405834]]],[[[116.54914900000017,-8.775],[116.559418,-8.85639],[116.60332,-8.872499],[116.57747700000014,-8.90083],[116.46638,-8.91722],[116.47886700000015,-8.827778],[116.38275,-8.91667],[116.25943,-8.92333],[116.08138,-8.859721999999863],[116.0011,-8.896946],[115.854431,-8.8225],[115.844147,-8.75528],[115.883881,-8.72833],[115.954437,-8.77917],[116.073036,-8.731112],[116.068878,-8.522223],[116.10247800000013,-8.40639],[116.27858700000013,-8.24083],[116.3874970000003,-8.205],[116.65193,-8.28306],[116.73580900000013,-8.36305],[116.67747,-8.54861],[116.54914900000017,-8.775]]],[[[128.21997,-8.210556],[128.233032,-8.27083],[128.20831,-8.28722],[128.07995600000015,-8.259445],[128.1069,-8.211111],[128.21997,-8.210556]]],[[[123.76443,-8.327223],[123.536102,-8.56694],[123.406097,-8.596945],[123.217484,-8.53667],[123.47316000000012,-8.35211],[123.46748400000013,-8.31889],[123.35999300000013,-8.314166999999884],[123.4024810000002,-8.275],[123.549713,-8.24778],[123.52428,-8.349556],[123.582207,-8.378056],[123.79443400000014,-8.181389],[123.93914800000026,-8.2425],[123.91914,-8.27833],[123.76443,-8.327223]]],[[[124.29054,-8.329166],[124.16249100000016,-8.527779],[124.11525700000016,-8.555555],[124.050812,-8.55139],[124.01389,-8.43361],[123.93166,-8.468889],[123.9069370000002,-8.4525],[123.964996,-8.356942999999887],[124.037201,-8.31028],[124.075546,-8.31556],[124.10637,-8.37194],[124.26944,-8.180555],[124.30304000000011,-8.221945],[124.29054,-8.329166]]],[[[129.008026,-8.26944],[128.92221,-8.26195],[128.828308,-8.19889],[128.969696,-8.183889],[129.0333250000001,-8.21583],[129.008026,-8.26944]]],[[[138.873566,-8.41472],[138.58026,-8.376665],[138.544708,-8.333055],[138.70718,-8.183332],[138.814148,-8.154722],[138.9086,-8.365],[138.873566,-8.41472]]],[[[127.66832,-8.244443999999874],[127.60582000000021,-8.20694],[127.696373,-8.15417],[127.771103,-8.188889],[127.66832,-8.244443999999874]]],[[[117.54082,-8.39028],[117.483871,-8.35417],[117.48137,-8.191389],[117.558594,-8.146112],[117.67581,-8.156111],[117.69109300000012,-8.18611],[117.63554,-8.22611],[117.54082,-8.39028]]],[[[125.581673,-8.317498999999884],[125.49609,-8.26944],[125.64137300000016,-8.13583],[125.647491,-8.15004],[125.581673,-8.317498999999884]]],[[[119.07248700000014,-8.2675],[119.01416000000016,-8.20583],[119.02777100000014,-8.15833],[119.078598,-8.13389],[119.13693200000013,-8.195554999999898],[119.07248700000014,-8.2675]]],[[[124.57776600000011,-8.13583],[124.67026,-8.17305599999986],[125.09027100000013,-8.156111],[125.1355360000001,-8.227499],[125.139709,-8.329166],[125.051376,-8.370554],[124.41943400000014,-8.472221],[124.350807,-8.454445],[124.335274,-8.40972],[124.400818,-8.22139],[124.466087,-8.13583],[124.57776600000011,-8.13583]]],[[[127.84359700000016,-8.10111],[127.949997,-8.138613],[128.100525,-8.138613],[128.127441,-8.171667],[128.02527,-8.2675],[127.80748000000017,-8.191389],[127.759987,-8.110832],[127.84359700000016,-8.10111]]],[[[130.80414,-8.35222],[130.76498400000025,-8.341944],[131.013031,-8.089721999999881],[131.18027,-8.12972],[130.959412,-8.236944],[130.80414,-8.35222]]],[[[118.3119200000001,-8.374722],[118.47554000000014,-8.246943999999871],[118.648331,-8.294445],[118.690811,-8.374722],[118.666092,-8.552223],[118.72360200000014,-8.46],[118.71471,-8.380554],[118.77916000000015,-8.30889],[118.899147,-8.28861],[118.99693300000011,-8.31361],[119.051086,-8.47889],[119.02110300000015,-8.59139],[119.03804000000014,-8.631388],[119.17526,-8.649723],[119.17804,-8.720278],[119.148613,-8.75194],[118.984154,-8.76417],[118.90332,-8.68972],[118.755257,-8.712778],[118.70166,-8.75278],[118.88943,-8.782501],[118.94693,-8.839443],[118.827209,-8.85361],[118.730988,-8.80694],[118.457207,-8.87194],[118.382477,-8.790001],[118.44136,-8.663888999999868],[118.406372,-8.584723],[118.39526,-8.64167],[118.154984,-8.87194],[118.02887,-8.85417],[117.88416300000017,-8.934723],[117.71027400000014,-8.91722],[117.545532,-9.011946],[117.40582,-9.05],[117.231934,-9.01889],[117.148331,-9.09306],[117.0522,-9.11083],[116.75138900000013,-9.009445],[116.75417300000025,-8.883333],[116.794708,-8.827778],[116.779427,-8.673334],[116.802757,-8.590833999999859],[116.85832200000016,-8.534445],[117.01470900000014,-8.48305],[117.12276,-8.37861],[117.192749,-8.36361],[117.424988,-8.46666],[117.442749,-8.40972],[117.56554,-8.411945],[117.586929,-8.51222],[117.84721400000012,-8.710556],[117.89777400000014,-8.701111],[117.966377,-8.74861],[118.07332,-8.65778],[118.25833100000011,-8.66055699999987],[118.28442,-8.594165999999857],[118.084152,-8.46528],[117.98776,-8.47694],[117.83220700000015,-8.373333],[117.703323,-8.23556],[117.735527,-8.152224],[117.939148,-8.082222],[118.098602,-8.10861],[118.16249100000026,-8.15417],[118.168587,-8.214445],[118.251389,-8.342777],[118.3119200000001,-8.374722]]],[[[122.98108700000023,-8.149445],[123.031662,-8.312778],[122.8016510000001,-8.43417],[122.853043,-8.56694],[122.83248900000024,-8.601665],[122.570541,-8.666666],[122.515,-8.7175],[122.392487,-8.75194],[122.1785890000001,-8.73583],[121.76555,-8.89222],[121.56469700000024,-8.815],[121.389977,-8.79806],[121.374153,-8.884167],[121.323608,-8.922777],[121.19859,-8.892778],[121.01638800000022,-8.949722],[120.92053,-8.926111],[120.856087,-8.867222],[120.65332,-8.8475],[120.57720900000027,-8.79389],[120.38192700000013,-8.800833],[120.314697,-8.836111],[120.08915700000024,-8.796667],[119.893883,-8.85028],[119.813026,-8.77917],[119.79623400000014,-8.72034],[119.803589,-8.56778],[119.909714,-8.46417],[120.083878,-8.396112],[120.2586140000002,-8.272223],[120.522491,-8.257223],[121.20887800000013,-8.44361],[121.28637700000013,-8.475554999999872],[121.391937,-8.58194],[121.511108,-8.607777],[121.63721,-8.475],[121.892761,-8.49389],[122.039429,-8.44361],[122.107483,-8.53306],[122.28830700000024,-8.644445],[122.432213,-8.603611],[122.48637,-8.484999],[122.606087,-8.391668],[122.693863,-8.384723999999892],[122.889977,-8.28722],[122.94693,-8.20361],[122.88526900000011,-8.183332],[122.737198,-8.229445],[122.800262,-8.110832],[122.875526,-8.07],[122.98108700000023,-8.149445]]],[[[115.50221,-8.178612],[115.70638,-8.356109999999887],[115.70776,-8.409166],[115.615257,-8.49389],[115.327477,-8.62194],[115.202606,-8.74757],[115.218666,-8.78898],[115.218033,-8.76194],[115.23915,-8.77167],[115.231659,-8.82583],[115.126083,-8.85417],[115.08971,-8.823055],[115.175987,-8.7706],[115.161942,-8.678236],[114.891663,-8.449722],[114.602478,-8.39028],[114.48471,-8.24083],[114.44553,-8.10472],[114.51054,-8.09444],[114.83693,-8.188055],[115.000549,-8.18611],[115.187759,-8.056389],[115.50221,-8.178612]]],[[[127.21388200000013,-8.113333],[127.15305300000011,-8.099167],[127.18166,-8.021946],[127.22638,-8.03667],[127.21388200000013,-8.113333]]],[[[129.76443,-8.06111],[129.690521,-8.040277],[129.58414,-7.907778],[129.6069030000001,-7.80389],[129.701355,-7.79111],[129.84329200000025,-7.840556],[129.861908,-7.92694],[129.76443,-8.06111]]],[[[130.98913600000026,-7.723333],[130.984131,-7.66417],[131.128845,-7.626666],[131.093842,-7.692499],[130.98913600000026,-7.723333]]],[[[126.72137,-7.67306],[126.76582,-7.67222],[126.79054,-7.74972],[126.613602,-7.78083],[126.41832,-7.93222],[126.06192,-7.88611],[125.93054,-7.911944],[125.8022,-8.01583],[125.77221700000017,-8.00889],[125.80998200000012,-7.85639],[125.972214,-7.658611],[126.18887300000016,-7.721111],[126.338882,-7.694722],[126.485527,-7.598333],[126.62192,-7.565],[126.633614,-7.61056],[126.72137,-7.67306]]],[[[127.381088,-7.658611],[127.34554300000012,-7.63417],[127.36804,-7.51389],[127.48193400000014,-7.52889],[127.48108700000023,-7.58944],[127.381088,-7.658611]]],[[[130.86496,-7.494166],[130.976074,-7.50778],[130.98358,-7.520833999999866],[130.929962,-7.56278],[130.844421,-7.54722],[130.86496,-7.494166]]],[[[131.07275400000015,-7.51139],[130.99301100000025,-7.48555599999986],[131.003326,-7.425],[131.1774600000001,-7.408611],[131.07275400000015,-7.51139]]],[[[138.96829200000013,-7.55611],[139.008026,-7.5575],[139.03665,-7.61389],[138.9133,-7.878611],[138.8819,-8.036112],[138.78192100000012,-8.140556],[138.663879,-8.16639],[138.62357,-8.235],[138.44470200000023,-8.383333],[138.28970300000015,-8.426665999999898],[138.219116,-8.395],[137.868286,-8.37111],[137.635254,-8.43],[137.727753,-8.137779],[137.905243,-7.795834],[138.02609300000017,-7.615833],[138.154694,-7.51389],[138.354126,-7.4175],[138.704407,-7.3625],[138.811371,-7.385556],[138.89221,-7.509167],[138.96829200000013,-7.55611]]],[[[121.77858700000012,-7.424444],[121.74832200000014,-7.406667],[121.761932,-7.35917],[121.83055100000011,-7.342778],[121.83194000000015,-7.388889],[121.77858700000012,-7.424444]]],[[[121.108322,-7.39444],[121.069992,-7.37944],[121.09332,-7.304722],[121.1685870000001,-7.35222],[121.108322,-7.39444]]],[[[131.27277,-7.37278],[131.21664,-7.35917],[131.263031,-7.30055],[131.301636,-7.32361],[131.27277,-7.37278]]],[[[120.931374,-7.283610999999894],[121.0636,-7.304722],[120.99942,-7.335834],[120.789703,-7.2775],[120.931374,-7.283610999999894]]],[[[131.736084,-7.21417],[131.638031,-7.25444],[131.679138,-7.48139],[131.62912,-7.631665999999882],[131.39941,-7.83167],[131.342743,-7.92222],[131.33441200000027,-8.00889],[131.30026,-8.028612],[131.10968,-8.000834],[131.08441200000016,-7.85556],[131.189697,-7.684999],[131.176086,-7.6525],[131.243286,-7.48],[131.33914200000012,-7.427777],[131.53942900000013,-7.143612],[131.656372,-7.11639],[131.71051,-7.14417],[131.736084,-7.21417]]],[[[131.92718500000012,-7.10694],[131.988281,-7.215],[131.96884,-7.25444],[131.89025900000013,-7.169444],[131.728577,-7.158611],[131.74692,-7.11694],[131.92718500000012,-7.10694]]],[[[128.639984,-7.219167],[128.526093,-7.143612],[128.61523,-7.06472],[128.70303300000012,-7.11444],[128.639984,-7.219167]]],[[[114.402481,-7.181111],[114.32415800000022,-7.16333],[114.29332,-7.0825],[114.37024700000018,-7.066110999999863],[114.41943400000014,-7.16389],[114.402481,-7.181111]]],[[[120.741653,-7.075556],[120.783333,-7.0675],[120.76970700000025,-7.134167],[120.66914,-7.14555],[120.62525900000013,-7.087222],[120.630539,-7.016388999999889],[120.741653,-7.075556]]],[[[113.991364,-6.88028],[114.112488,-6.93694],[114.12747200000011,-6.97639],[113.892487,-7.03889],[113.82747700000016,-7.12389],[113.621918,-7.125833],[113.50388,-7.225278],[113.18193,-7.225278],[113.10582000000011,-7.19],[112.741928,-7.16472],[112.687759,-7.051111],[112.763321,-7.01028],[112.838043,-6.90611],[112.9216540000001,-6.89333],[113.991364,-6.88028]]],[[[115.29333,-6.838793],[115.461929,-6.85055],[115.57083100000021,-6.925833],[115.548027,-6.951112],[115.386383,-6.912221999999872],[115.340553,-6.940277],[115.393333,-6.980277999999885],[115.29109200000028,-7.008334],[115.211113,-6.909721999999874],[115.24859600000012,-6.839444],[115.29333,-6.838793]]],[[[138.6905210000001,-6.76139],[138.73855600000013,-6.768056],[138.786652,-6.84083],[138.702454,-6.8675],[138.611084,-6.736111],[138.6905210000001,-6.76139]]],[[[131.59219400000018,-6.67889],[131.626343,-6.7075],[131.59356700000012,-6.771389],[131.535797,-6.801388999999857],[131.52832000000024,-6.751666999999883],[131.59219400000018,-6.67889]]],[[[134.668854,-6.774167],[134.622192,-6.74972],[134.62634300000013,-6.715555999999879],[134.697754,-6.586389],[134.74164,-6.62861],[134.668854,-6.774167]]],[[[105.19304,-6.684443999999871],[105.113037,-6.611667],[105.2536,-6.52722],[105.2536,-6.63556],[105.19304,-6.684443999999871]]],[[[134.683868,-6.56111],[134.633331,-6.490276999999878],[134.683319,-6.451666999999873],[134.746918,-6.523055999999883],[134.683868,-6.56111]]],[[[134.831909,-6.471945],[134.79636,-6.45556],[134.788025,-6.393056],[134.858002,-6.289444],[134.888885,-6.3325],[134.831909,-6.471945]]],[[[134.58609000000013,-6.39167],[134.6044,-6.42778],[134.54221,-6.535833],[134.45566,-6.42756],[134.36108400000012,-6.394444],[134.3455200000002,-6.356944],[134.44693,-6.28333],[134.58609000000013,-6.39167]]],[[[134.34412,-6.804167],[134.364685,-6.815],[134.322754,-6.855278],[134.19802900000013,-6.921945],[134.0672,-6.82667],[134.05136100000013,-6.761945],[134.123291,-6.44139],[134.10275300000012,-6.17306],[134.29750100000012,-6.305230999999878],[134.285248,-6.33917],[134.33142,-6.38795],[134.45636,-6.44805],[134.514709,-6.585],[134.34412,-6.804167]]],[[[134.15637200000026,-6.0475],[134.22552500000018,-6.031388999999876],[134.228302,-6.1375],[134.403595,-6.286111],[134.33304,-6.326389],[134.133881,-6.15472],[134.112457,-6.093889],[134.154968,-6.008056],[134.15637200000026,-6.0475]]],[[[134.73135400000012,-6.036667],[134.7702640000002,-6.1],[134.744965,-6.239166],[134.708008,-6.311389],[134.6030270000001,-6.37055],[134.4935610000001,-6.29417],[134.33246,-6.22333],[134.268036,-6.117222],[134.305817,-6.04139],[134.36664,-6.036667],[134.607147,-5.95278],[134.646332,-5.95083],[134.73135400000012,-6.036667]]],[[[106.163307,-6.01417],[106.203323,-6.012778],[106.267761,-5.940556],[106.486099,-6.043612],[106.54387,-6.00667],[106.704987,-6.015],[106.755501,-6.1008],[106.983597,-6.083889],[107.01805100000013,-6.0375],[107.026932,-5.91417],[107.1680530000001,-5.98556],[107.33194,-5.961666999999863],[107.650543,-6.25],[107.872482,-6.22694],[108.125259,-6.34389],[108.19053600000012,-6.333888999999886],[108.183594,-6.29972],[108.232208,-6.256667],[108.311096,-6.260279],[108.423599,-6.408055],[108.54414400000013,-6.503334],[108.603592,-6.75722],[108.734421,-6.815],[108.82998700000013,-6.79389],[109.308029,-6.883055],[109.521927,-6.83139],[109.99136,-6.93],[110.14971900000012,-6.89],[110.39082300000013,-6.97972],[110.475807,-6.94778],[110.563599,-6.851111],[110.64582800000011,-6.681110999999873],[110.66304000000014,-6.55778],[110.725273,-6.46306],[110.919983,-6.41],[111.056931,-6.464445],[111.15277,-6.7],[111.38304,-6.71361],[111.43942300000015,-6.694722],[111.489967,-6.629167],[111.58998,-6.65639],[111.72161900000013,-6.776376],[111.984154,-6.79],[112.083328,-6.908888999999874],[112.345261,-6.87222],[112.560257,-6.912221999999872],[112.681091,-7.17472],[112.668587,-7.20333],[112.60555,-7.2075],[112.694702,-7.255],[112.77082800000017,-7.205556],[112.82776600000011,-7.285],[112.813309,-7.4025],[112.756378,-7.44889],[112.77832000000024,-7.54389],[112.845543,-7.59972],[113.29721,-7.7925],[113.505257,-7.7],[113.78221,-7.73139],[113.9349820000001,-7.685833],[114.037201,-7.611111],[114.14610300000015,-7.70694],[114.448318,-7.80055],[114.468872,-7.880833],[114.366653,-8.356942999999887],[114.371643,-8.521112],[114.46138,-8.629443999999864],[114.58611,-8.66445],[114.621094,-8.74667],[114.56832900000016,-8.782501],[114.420258,-8.745832],[114.37915,-8.71889],[114.37915,-8.656389],[114.28305100000021,-8.609165],[114.21944,-8.646389],[114.06165,-8.636112],[113.72136700000021,-8.531113],[113.63693200000012,-8.45861],[113.232758,-8.28111],[113.02858700000024,-8.30278],[112.918869,-8.397500999999863],[112.646652,-8.43417],[112.363876,-8.342777],[111.794983,-8.26],[111.713318,-8.296667],[111.703049,-8.35417],[111.65109,-8.3625],[111.385269,-8.2775],[111.11249,-8.241667],[111.017761,-8.256668],[110.714996,-8.19694],[110.379967,-8.07417],[110.037201,-7.88944],[109.289703,-7.69944],[108.991653,-7.71722],[108.896942,-7.69528],[108.87997,-7.641111],[108.779701,-7.681666],[108.53027,-7.697499],[108.47221400000012,-7.80528],[108.16304,-7.78305],[107.68887300000011,-7.63278],[107.466087,-7.503889],[106.578049,-7.419444],[106.42330900000013,-7.371388],[106.379967,-7.24],[106.544434,-7.07083],[106.50943000000011,-6.979167],[106.441093,-6.96667],[106.322487,-7.00139],[106.000549,-6.82861],[105.545532,-6.87361],[105.243317,-6.81028],[105.215958,-6.77522],[105.31860400000011,-6.7225],[105.40694,-6.74222],[105.48027,-6.819167],[105.628311,-6.625278],[105.637207,-6.467778],[105.66748,-6.45556],[105.711113,-6.52111],[105.801086,-6.467222],[105.87498,-6.086389],[106.005829,-5.908611],[106.09833,-5.893612],[106.113602,-5.98917],[106.163307,-6.01417]]],[[[124.05832,-6.027223],[123.96582,-5.948054999999897],[123.976646,-5.875832999999886],[124.06805,-5.97139],[124.05832,-6.027223]]],[[[120.48193400000012,-6.483611],[120.440262,-5.931666],[120.47998,-5.76667],[120.56137100000024,-6.02444],[120.48193400000012,-6.483611]]],[[[104.83611300000013,-5.828056],[104.796371,-5.80083],[104.76888300000012,-5.74778],[104.848328,-5.775],[104.83611300000013,-5.828056]]],[[[112.692749,-5.85278],[112.58776900000021,-5.84389],[112.58638,-5.786667],[112.63498700000012,-5.73944],[112.726929,-5.746388],[112.72971300000017,-5.836389],[112.692749,-5.85278]]],[[[132.74133300000017,-5.95028],[132.6666560000001,-5.91],[132.628845,-5.63444],[132.69329800000014,-5.59639],[132.80832,-5.806943999999874],[132.7811,-5.928333],[132.74133300000017,-5.95028]]],[[[132.795532,-5.68639],[132.765259,-5.687778],[132.73855600000024,-5.63917],[132.7811,-5.53278],[132.80969200000015,-5.558888],[132.795532,-5.68639]]],[[[132.34051,-5.57722],[132.31497200000013,-5.558888],[132.30191000000022,-5.517222],[132.376617,-5.53833],[132.34051,-5.57722]]],[[[123.81081,-5.59917],[123.705261,-5.502777999999864],[123.688309,-5.47222],[123.802757,-5.53361],[123.81081,-5.59917]]],[[[134.577179,-5.43],[134.633331,-5.449166],[134.69275,-5.53028],[134.67914,-5.592778],[134.76080300000012,-5.895],[134.73135400000012,-5.97472],[134.633301,-5.93444],[134.302185,-6.02583],[134.302155,-5.91],[134.38104,-5.800278],[134.2530210000001,-5.76667],[134.20633,-5.708055],[134.23715200000015,-5.6775],[134.359924,-5.706111],[134.4935610000001,-5.43528],[134.577179,-5.43]]],[[[132.849396,-6.00333],[132.93801900000028,-5.678056],[132.985886,-5.625556],[133.11413600000012,-5.30222],[133.16885400000012,-5.29555],[133.189423,-5.340556],[133.11191,-5.59167],[132.963837,-5.75111],[132.95437600000014,-5.868333],[132.849396,-6.00333]]],[[[102.384987,-5.485833],[102.25694,-5.45444],[102.10054,-5.3325],[102.175812,-5.27722],[102.3808140000001,-5.372499],[102.404709,-5.410278],[102.384987,-5.485833]]],[[[123.6258090000001,-5.376666],[123.562187,-5.365],[123.52110300000015,-5.25194],[123.627197,-5.2825],[123.6258090000001,-5.376666]]],[[[122.01694,-5.474167],[121.959991,-5.475],[121.808594,-5.272223],[121.85999300000024,-5.094167],[121.913307,-5.05861],[121.981354,-5.08111],[122.059982,-5.23194],[122.05330700000013,-5.42778],[122.01694,-5.474167]]],[[[115.782494,-4.831944],[115.78333,-4.795834],[115.85304,-4.747222],[115.85247800000012,-4.78556],[115.782494,-4.831944]]],[[[131.742188,-4.76861],[131.73053,-4.755556],[131.72161900000026,-4.69194],[131.75442,-4.72333],[131.742188,-4.76861]]],[[[122.73776,-4.65111],[122.77609300000016,-4.95278],[122.641937,-5.071667],[122.601379,-5.16111],[122.65833,-5.281944],[122.6055530000001,-5.420277999999882],[122.5485990000002,-5.4375],[122.284988,-5.384999999999877],[122.27388,-5.31667],[122.322487,-5.15361],[122.397217,-5.07361],[122.32666000000017,-4.838056],[122.37109,-4.759723],[122.523323,-4.72222],[122.6933140000001,-4.61139],[122.73776,-4.65111]]],[[[129.93442,-4.566388],[129.900269,-4.56778],[129.859131,-4.556666],[129.93856800000015,-4.5075],[129.93442,-4.566388]]],[[[129.874664,-4.53083],[129.86108400000012,-4.521389],[129.879669,-4.50556],[129.88580300000012,-4.521389],[129.874664,-4.53083]]],[[[131.670258,-4.536944],[131.653046,-4.529445],[131.6105040000001,-4.42833],[131.67221,-4.48722],[131.670258,-4.536944]]],[[[123.21277,-4.697499],[123.205833,-4.84639],[123.14415,-4.7125],[123.04553,-4.757501],[122.979713,-5.10722],[123.21555300000011,-5.2975],[123.141373,-5.3875],[123.044144,-5.427222],[122.98719800000015,-5.391111],[122.87831100000028,-5.460556],[122.858322,-5.50917],[122.91527,-5.528889],[122.819992,-5.68639],[122.651382,-5.68639],[122.568604,-5.50694],[122.74275,-5.24694],[122.853043,-4.82027799999986],[122.844711,-4.638889],[122.903587,-4.485],[123.01389300000015,-4.396945],[123.08194,-4.38528],[123.0599820000001,-4.42833],[123.19274900000015,-4.57667],[123.21277,-4.697499]]],[[[133.575256,-4.25194],[133.61551,-4.30055],[133.32775900000024,-4.172777],[133.31414800000027,-4.104445],[133.575256,-4.25194]]],[[[131.342743,-4.117499],[131.304413,-4.124165999999889],[131.27277,-4.07361],[131.28997800000013,-4.06889],[131.342743,-4.117499]]],[[[101.034416,-4.02583],[101.02748,-4.00528],[101.048599,-3.995],[101.055542,-4.00889],[101.034416,-4.02583]]],[[[131.24469,-4.04555],[131.21441700000022,-4.016945],[131.20968600000012,-3.983333],[131.24469,-4.00194],[131.24469,-4.04555]]],[[[123.088593,-4.00889],[123.205261,-3.995],[123.2538830000002,-4.06278],[123.25249,-4.11472],[123.15387000000011,-4.241667],[123.06749000000012,-4.237778],[122.957764,-4.100278],[122.954987,-4.04306],[123.00777,-3.98611],[123.088593,-4.00889]]],[[[131.4357910000001,-4.076389],[131.39386000000013,-4.0375],[131.37884500000018,-3.96083],[131.41943400000014,-3.960278],[131.4357910000001,-4.076389]]],[[[134.15969800000013,-3.935],[134.199402,-3.99111],[134.072754,-3.93417],[134.098846,-3.919167],[134.15969800000013,-3.935]]],[[[127.228317,-3.904166999999859],[127.156372,-3.87611],[127.14888,-3.830278],[127.233871,-3.8275],[127.228317,-3.904166999999859]]],[[[128.779144,-3.70389],[128.751099,-3.70444],[128.74829100000022,-3.643055],[128.790802,-3.638889],[128.805817,-3.6825],[128.779144,-3.70389]]],[[[123.125526,-3.626666999999884],[123.05775,-3.578056],[123.147774,-3.54306],[123.18248,-3.6025],[123.125526,-3.626666999999884]]],[[[128.40277100000014,-3.640833],[128.43109100000012,-3.522499999999866],[128.500824,-3.522499999999866],[128.56329300000016,-3.57667],[128.52277,-3.616944],[128.40277100000014,-3.640833]]],[[[122.35192900000014,-3.56083],[122.29109200000016,-3.582222],[122.27998400000011,-3.5725],[122.320534,-3.514919],[122.35192900000014,-3.56083]]],[[[128.33496100000013,-3.625833],[128.234955,-3.72972],[128.11773700000026,-3.77694],[128.093842,-3.772222],[128.21301,-3.646389],[127.98831200000016,-3.77361],[127.91832,-3.74083],[127.916382,-3.692222],[128.0047,-3.609445],[128.27331500000014,-3.51222],[128.346069,-3.53],[128.33496100000013,-3.625833]]],[[[128.664703,-3.538333],[128.690521,-3.49861],[128.712738,-3.509721999999897],[128.72079500000018,-3.619166],[128.6316220000001,-3.62722],[128.554962,-3.509721999999897],[128.583801,-3.494435999999894],[128.664703,-3.538333]]],[[[133.61969,-3.449444],[133.610229,-3.435832999999889],[133.6232910000001,-3.42947],[133.629944,-3.43917],[133.61969,-3.449444]]],[[[132.703583,-3.51917],[132.6321720000002,-3.44805],[132.6232910000001,-3.421389],[132.67413,-3.418611],[132.703583,-3.51917]]],[[[122.44525,-3.490556],[122.40555,-3.4425],[122.41304000000012,-3.38444],[122.471916,-3.456944],[122.44525,-3.490556]]],[[[116.38275,-3.645555],[116.31694,-3.5375],[116.41693,-3.3775],[116.42804,-3.451389],[116.38275,-3.645555]]],[[[127.632751,-3.365277999999876],[127.518333,-3.33167],[127.48108700000023,-3.293334],[127.56972,-3.263889],[127.649719,-3.35083],[127.632751,-3.365277999999876]]],[[[116.118317,-4.036111],[116.053307,-4.04167],[116.074432,-3.80972],[116.021652,-3.73472],[116.00861,-3.649167],[116.118317,-3.32639],[116.267761,-3.22305],[116.2561,-3.38111],[116.319153,-3.766111],[116.30802900000026,-3.90139],[116.118317,-4.036111]]],[[[127.77026,-3.254444999999861],[127.67581,-3.254444999999861],[127.636108,-3.225833],[127.75943,-3.153055],[127.78970300000013,-3.17778],[127.77026,-3.254444999999861]]],[[[100.524429,-3.186168],[100.490807,-3.162777],[100.50055,-3.12722],[100.53055,-3.175],[100.524429,-3.186168]]],[[[126.993874,-3.145],[127.103043,-3.21417],[127.11249,-3.27917],[127.0419310000002,-3.27833],[127.08719600000016,-3.367222],[127.14749100000029,-3.337778],[127.264709,-3.382222],[127.236649,-3.6175],[127.200821,-3.66417],[127.107758,-3.662777],[126.70082100000012,-3.834445],[126.381927,-3.71],[126.24220300000025,-3.61556],[126.048317,-3.43305],[126.017487,-3.354445],[126.009163,-3.17778],[126.10304,-3.10055599999987],[126.199707,-3.17722],[126.28137200000013,-3.108056],[126.410263,-3.0725],[126.73637,-3.05861],[126.993874,-3.145]]],[[[127.88472,-3.038333],[127.820541,-3.02167],[127.950546,-2.91862],[127.991653,-2.93],[127.94582400000013,-3.01694],[127.88472,-3.038333]]],[[[106.88916,-3.02444],[106.821381,-3.023889],[106.721916,-2.960278],[106.812477,-2.893055],[106.91443,-2.94528],[106.88916,-3.02444]]],[[[107.4272,-2.93889],[107.361366,-2.871110999999871],[107.481369,-2.82333],[107.492203,-2.887778],[107.4272,-2.93889]]],[[[107.079712,-2.911666],[107.037201,-2.865],[107.07276900000011,-2.82],[107.11053,-2.860278],[107.079712,-2.911666]]],[[[129.812469,-2.91972],[130.01998900000012,-2.997222],[130.352448,-2.98139],[130.584137,-3.133333],[130.6458130000002,-3.3775],[130.674408,-3.41028],[130.795807,-3.42],[130.8732910000001,-3.58333],[130.83136000000013,-3.68944],[130.82995600000027,-3.87278],[130.61636400000017,-3.79],[130.39831500000014,-3.63333],[129.99133300000017,-3.470555],[129.95914,-3.375556],[129.897491,-3.33583],[129.5088810000002,-3.29806],[129.500824,-3.33917],[129.56024200000024,-3.423334],[129.5158080000001,-3.470555],[129.23691,-3.41111],[129.101074,-3.34805],[128.968292,-3.353611],[128.969696,-3.238611],[128.8783,-3.20778],[128.613281,-3.43639],[128.462463,-3.45833],[128.217743,-3.211389],[128.1738590000001,-3.068889],[128.09164,-3.129167],[128.04248,-3.34],[127.979431,-3.387222],[127.91832,-3.559443999999871],[127.906097,-3.5375],[127.93332,-3.34889],[127.8560870000001,-3.186666],[127.98359700000015,-3.086945],[128.1738590000001,-2.85556],[128.9133,-2.858334],[129.064148,-2.900556],[129.136108,-2.96417],[129.363007,-2.85],[129.38470500000028,-2.79805599999986],[129.526642,-2.783611],[129.7658080000001,-2.87055],[129.812469,-2.91972]]],[[[100.462769,-3.133333],[100.37915,-3.149722],[100.474426,-3.30222],[100.45942700000012,-3.33389],[100.33527400000014,-3.20028],[100.334717,-3.1175],[100.19136,-2.97583],[100.176376,-2.8],[100.243591,-2.783611],[100.464706,-3.015],[100.462769,-3.133333]]],[[[131.57968100000028,-2.656389],[131.5652470000001,-2.65167],[131.65442,-2.621389],[131.617462,-2.646111],[131.57968100000028,-2.656389]]],[[[107.832764,-2.535],[108.089706,-2.60694],[108.265823,-2.75556],[108.29332,-2.853787],[108.206383,-3.003889],[108.19803,-3.118889],[108.104156,-3.161944],[108.073318,-3.235278],[107.982208,-3.24833],[107.96582,-3.158055],[107.866928,-3.051111],[107.81832900000012,-3.078056],[107.83221,-3.16417],[107.65387,-3.225833],[107.609421,-3.211389],[107.579987,-2.9875],[107.649719,-2.585833],[107.67526,-2.55639],[107.832764,-2.535]]],[[[100.031097,-2.841944],[99.9611,-2.551667],[99.987198,-2.48917],[100.156372,-2.625556],[100.214157,-2.71861],[100.214157,-2.75556],[100.146103,-2.786944999999889],[100.13998,-2.82194],[100.031097,-2.841944]]],[[[133.5949710000002,-2.52556],[133.52582,-2.48667],[133.49911,-2.42556],[133.61441000000013,-2.4775],[133.5949710000002,-2.52556]]],[[[99.741089,-2.376389],[99.70138500000013,-2.35305],[99.703598,-2.342778],[99.73719800000015,-2.350278],[99.741089,-2.376389]]],[[[134.567474,-2.45305],[134.533875,-2.44694],[134.51666300000022,-2.396945],[134.56884800000012,-2.292777999999885],[134.567474,-2.45305]]],[[[123.16693,-2.19417],[123.15165700000011,-2.19417],[123.16805,-2.17639],[123.171654,-2.18528],[123.16693,-2.19417]]],[[[123.44978300000014,-2.125568],[123.44026,-2.123055],[123.43802600000026,-2.11139],[123.4561,-2.115556],[123.44978300000014,-2.125568]]],[[[99.85971,-2.37083],[99.569992,-2.222221999999874],[99.52665700000011,-2.148889],[99.568604,-2.02917],[99.62803600000012,-2.016111],[99.688309,-2.07222],[99.85971,-2.37083]]],[[[123.885536,-2.07556],[123.844437,-2.05389],[123.86499000000013,-2.00861],[123.87747200000013,-2.016944],[123.885536,-2.07556]]],[[[134.368835,-2.15805],[134.325531,-2.088611],[134.38580300000012,-2.003889],[134.42358400000023,-2.048334],[134.368835,-2.15805]]],[[[123.767761,-2.0475],[123.758331,-2.02028],[123.777481,-1.99833],[123.78276100000029,-2.023056],[123.767761,-2.0475]]],[[[126.056641,-2.4825],[125.96805,-2.40778],[125.94747900000016,-2.29083],[125.894707,-2.21333],[125.859993,-2.07167],[125.918053,-1.97222],[126.000267,-2.016111],[125.96944,-2.16472],[126.08611,-2.41861],[126.056641,-2.4825]]],[[[124.36665300000014,-2.011389],[124.348877,-2.025],[124.30081,-1.976944],[124.35720800000013,-1.966111],[124.36665300000014,-2.011389]]],[[[123.47804,-1.94611],[123.466927,-1.94361],[123.48471,-1.93528],[123.486099,-1.940833],[123.47804,-1.94611]]],[[[123.5449830000001,-1.92778],[123.535538,-1.925],[123.54305,-1.91333],[123.549713,-1.91889],[123.5449830000001,-1.92778]]],[[[123.65941600000019,-1.96333],[123.651382,-1.95389],[123.65416000000015,-1.90167],[123.65804300000013,-1.918812],[123.65941600000019,-1.96333]]],[[[123.71692700000017,-1.95583],[123.700546,-1.936667],[123.73220800000011,-1.899722],[123.741089,-1.938889],[123.71692700000017,-1.95583]]],[[[123.69109300000014,-1.91417],[123.672493,-1.899722],[123.672493,-1.88472],[123.680817,-1.88583],[123.69109300000014,-1.91417]]],[[[123.82887300000016,-2.010556],[123.7836,-1.97917],[123.78276100000029,-1.87861],[123.85551,-1.954447],[123.82887300000016,-2.010556]]],[[[123.7649990000002,-1.87722],[123.75749,-1.87361],[123.76721,-1.862778],[123.769707,-1.86694],[123.7649990000002,-1.87722]]],[[[123.3869,-1.88386],[123.366928,-1.875832999999886],[123.368317,-1.85639],[123.38610800000014,-1.87305],[123.3869,-1.88386]]],[[[99.286102,-1.826389],[99.251938,-1.820833],[99.26915,-1.79],[99.28414900000013,-1.79417],[99.286102,-1.826389]]],[[[125.438309,-1.80667],[125.656372,-1.82444],[125.98858600000015,-1.78889],[126.349152,-1.823056],[126.252487,-1.87722],[125.46666000000015,-1.94],[125.33915700000011,-1.868333],[125.37804,-1.778611],[125.438309,-1.80667]]],[[[123.079163,-1.906389],[123.066093,-1.82361],[123.12082,-1.75444],[123.15416,-1.8325],[123.079163,-1.906389]]],[[[134.17608600000017,-1.945],[134.16052200000013,-1.84556],[134.23386,-1.740833],[134.24884,-1.7825],[134.17608600000017,-1.945]]],[[[108.69693,-1.72305],[108.681931,-1.699722],[108.77970900000014,-1.704444],[108.76138300000014,-1.72167],[108.69693,-1.72305]]],[[[130.188568,-2.064166999999884],[129.911926,-2.003889],[129.71579,-1.88583],[130.03802,-1.741389],[130.35055,-1.680205],[130.43331900000018,-1.82778],[130.435242,-1.977778],[130.188568,-2.064166999999884]]],[[[123.29776,-1.79139],[123.26749,-1.766945],[123.369713,-1.67305],[123.380539,-1.716943999999899],[123.29776,-1.79139]]],[[[125.006653,-1.718889],[125.12859300000024,-1.68611],[125.288307,-1.730555999999865],[125.32332,-1.887222],[125.05525,-1.890833],[125.005257,-1.94611],[124.835274,-1.896945],[124.68665,-1.971667],[124.40915,-2.0175],[124.327477,-1.87972],[124.36747700000012,-1.695],[124.40582,-1.65806],[124.648331,-1.63611],[125.006653,-1.718889]]],[[[136.29357900000025,-1.688611],[136.8035890000001,-1.7475],[136.902191,-1.79917],[136.540253,-1.904444],[136.218842,-1.87444],[135.98663,-1.818889],[135.7283,-1.71],[135.48080400000026,-1.682499999999891],[135.41803,-1.61],[135.4783,-1.592222],[136.29357900000025,-1.688611]]],[[[108.849152,-1.670833],[108.799713,-1.56806],[108.930542,-1.544167],[108.966087,-1.589444],[108.950546,-1.628333],[108.849152,-1.670833]]],[[[106.09082000000012,-1.77167],[106.166382,-1.930556],[106.1861,-2.14222],[106.238037,-2.30361],[106.318329,-2.435833],[106.370529,-2.47972],[106.78166,-2.591944],[106.676086,-2.6925],[106.601929,-2.91305],[106.617752,-2.956111],[106.745819,-3.00611],[106.717758,-3.09833],[106.52153,-3.106347],[106.444427,-2.98139],[105.978317,-2.82278],[105.901657,-2.652778],[105.935257,-2.47555],[105.820831,-2.390833],[105.799713,-2.170834],[105.7447130000001,-2.129167],[105.48027,-2.101110999999889],[105.342484,-2.12694],[105.132202,-2.067499999999882],[105.143051,-1.95028],[105.396103,-1.8025],[105.397491,-1.751667],[105.333054,-1.70667],[105.345261,-1.65444],[105.450821,-1.56944],[105.573608,-1.52917],[105.61249,-1.54889],[105.66054,-1.741389],[105.80582,-1.797778],[105.70915200000012,-1.5475],[105.91554,-1.4975],[106.040817,-1.588056],[106.0338670000001,-1.675833],[106.09082000000012,-1.77167]]],[[[135.13831,-1.485278],[135.32940700000017,-1.487499999999897],[135.33081100000015,-1.49278],[135.29999,-1.52361],[135.09442100000024,-1.512778],[135.11300700000027,-1.473611],[135.13831,-1.485278]]],[[[127.32832,-1.44],[127.27277400000014,-1.41333],[127.30442800000014,-1.36944],[127.366653,-1.36611],[127.32832,-1.44]]],[[[127.87943,-1.42694],[128.14111300000013,-1.58824],[128.145264,-1.68056],[128.05886800000016,-1.7175],[127.70748900000024,-1.688611],[127.544144,-1.742222],[127.37831100000028,-1.633889],[127.42499,-1.440833],[127.625809,-1.33111],[127.87943,-1.42694]]],[[[109.144989,-1.31667],[109.104713,-1.29],[109.17189000000013,-1.25778],[109.1808170000001,-1.276945],[109.144989,-1.31667]]],[[[127.6147,-1.25778],[127.495529,-1.26889],[127.455833,-1.23444],[127.550537,-1.171667],[127.65109300000017,-1.21333],[127.6147,-1.25778]]],[[[109.2285920000001,-1.23333],[109.219711,-1.19278],[109.2580410000001,-1.169444],[109.266937,-1.203055],[109.2285920000001,-1.23333]]],[[[123.19497700000011,-1.2975],[123.230553,-1.398889],[123.35720800000014,-1.23056],[123.455261,-1.236667],[123.553307,-1.289444],[123.53137200000015,-1.434722],[123.407211,-1.523056],[123.361366,-1.51417],[123.35054000000014,-1.45639],[123.292763,-1.42083],[123.246933,-1.58333],[123.166092,-1.62444],[123.10915400000022,-1.578333],[123.183319,-1.50167],[123.12915,-1.33111],[122.97499100000014,-1.53333],[122.90915,-1.59083],[122.861099,-1.581111],[122.80359,-1.379166999999882],[122.897491,-1.186666999999886],[123.186653,-1.1475],[123.24080700000013,-1.22417],[123.19497700000011,-1.2975]]],[[[129.92886,-1.211389],[129.83578,-1.242778],[129.740509,-1.208611],[129.7658080000001,-1.172222],[129.86664,-1.14278],[129.959686,-1.170278],[129.92886,-1.211389]]],[[[104.213882,-1.03944],[104.20082,-1.03722],[104.243317,-1.023611],[104.241364,-1.0325],[104.213882,-1.03944]]],[[[109.623787,-0.98483],[109.74247700000012,-1.005],[109.77887,-1.13861],[109.467209,-1.296945],[109.413597,-1.25444],[109.44942,-1.04056],[109.49248,-0.97972],[109.623787,-0.98483]]],[[[134.92248,-1.138056],[134.86413600000014,-1.135833],[134.79971300000022,-1.03861],[134.843018,-0.94194],[134.92804,-0.959721999999886],[134.993011,-1.023611],[134.98745700000018,-1.086667],[134.92248,-1.138056]]],[[[98.929153,-0.95028],[99.057205,-1.283333],[99.21693,-1.585278],[99.276657,-1.61472],[99.28221,-1.73944],[99.232758,-1.62444],[99.19859300000013,-1.633889],[99.248596,-1.73194],[99.238876,-1.78389],[99.092209,-1.801110999999878],[98.87303,-1.675],[98.603043,-1.22305],[98.661926,-0.96528],[98.78055,-0.95917],[98.88333,-0.90972],[98.929153,-0.95028]]],[[[130.931366,-0.936389],[131.034424,-0.91056],[131.074677,-0.972778],[131.0383,-1.23944],[130.96441700000014,-1.35722],[130.87466400000017,-1.34083],[130.756104,-1.242778],[130.692993,-1.122768],[130.69775400000015,-1.04889],[130.638885,-0.983889],[130.86022900000023,-0.89667],[130.89935300000013,-0.89144],[130.931366,-0.936389]]],[[[117.295532,-0.878333],[117.27222,-0.876944],[117.28858900000013,-0.83167],[117.308594,-0.858333],[117.295532,-0.878333]]],[[[130.9163820000001,-0.79472],[130.796356,-0.87639],[130.396942,-0.92639],[130.4866330000002,-0.835278],[130.731354,-0.828333],[130.84103400000026,-0.77054],[130.9163820000001,-0.79472]]],[[[135.48773,-0.67556],[135.663879,-0.68361],[135.767487,-0.752222],[135.856354,-0.70556],[136.06829800000014,-0.8775],[136.189423,-1.059722],[136.267487,-1.0475],[136.386108,-1.12083],[136.26971400000025,-1.19694],[136.15802,-1.22222],[136.02636700000028,-1.175],[135.89221,-1.19139],[135.829132,-1.13028],[135.757202,-0.825556],[135.6235660000002,-0.87278],[135.49191,-0.76444],[135.47885,-0.80917],[135.408325,-0.748889],[135.36718800000017,-0.65278],[135.395264,-0.63444],[135.48773,-0.67556]]],[[[127.28109700000026,-0.80833],[127.153587,-0.77],[127.204437,-0.61917],[127.25499,-0.62139],[127.291367,-0.693333],[127.32083,-0.793333],[127.28109700000026,-0.80833]]],[[[98.515274,-0.632222],[98.495255,-0.626110999999867],[98.48915,-0.599444],[98.50972000000013,-0.600833],[98.515274,-0.632222]]],[[[130.60607900000014,-0.541110999999887],[130.466064,-0.5275],[130.45581100000015,-0.46861],[130.614136,-0.410278],[130.6602480000001,-0.42667],[130.695801,-0.467221999999879],[130.60607900000014,-0.541110999999887]]],[[[121.913307,-0.47528],[121.87996700000019,-0.517222],[121.84082,-0.48222],[121.7291560000001,-0.482778],[121.698318,-0.541110999999887],[121.64333,-0.54806],[121.681091,-0.461111],[121.74136,-0.418611],[121.851089,-0.4075],[121.913307,-0.47528]]],[[[104.228317,-0.41722],[104.197479,-0.410833],[104.197479,-0.395832999999868],[104.23166,-0.39167],[104.228317,-0.41722]]],[[[133.11191,-0.53639],[133.173035,-0.5425],[133.402466,-0.72889],[133.74857,-0.75778],[133.76080300000012,-0.719444],[133.984406,-0.730277999999885],[134.111084,-0.835278],[134.029419,-0.97139],[134.2811,-1.357778],[134.23386,-1.41333],[134.222198,-1.556667],[134.0877380000003,-1.675833],[134.145264,-1.933889],[134.15969800000013,-2.31944],[134.219421,-2.425],[134.3199770000001,-2.505],[134.46664,-2.86444],[134.527771,-2.83361],[134.47498,-2.63111],[134.483032,-2.52972],[134.544128,-2.468611],[134.636108,-2.513889],[134.69693,-2.967778],[134.751923,-2.98833],[134.853302,-2.904722],[134.81274,-3.12861],[134.876617,-3.24889],[135.00415,-3.341389],[135.336365,-3.393889],[135.49191,-3.35833],[135.60913100000027,-3.198333],[135.76388,-3.12028],[135.73996,-3.08],[135.761932,-3.053889],[135.91052200000013,-2.98694],[135.954407,-2.786944999999889],[136.022217,-2.70417],[136.2547,-2.576111],[136.34219,-2.366665999999896],[136.356628,-2.25389],[136.482727,-2.211389],[136.60189800000012,-2.251667],[136.748566,-2.25306],[136.991333,-2.133889],[137.19052100000022,-2.10305],[137.23663,-2.06],[137.20071400000018,-1.95439],[137.10968000000014,-1.87444],[137.131073,-1.792778],[137.34497,-1.711944],[137.58523600000024,-1.56806],[137.856628,-1.471667],[137.92941,-1.48805],[138.064423,-1.608610999999883],[138.65582,-1.79083],[138.84356700000012,-1.95389],[139.04636,-1.999722],[139.78082300000017,-2.36139],[139.88443,-2.376389],[140.1586,-2.32361],[140.211365,-2.40778],[140.32220500000028,-2.45833],[140.4771730000001,-2.43444],[140.721893,-2.49],[140.74857,-2.52556],[140.6999820000002,-2.60778],[140.7244,-2.63639],[141.002472,-2.60708],[141.00613,-6.33292],[140.96359300000017,-6.33861],[140.92804000000012,-6.45083],[140.947205,-6.5],[140.85886,-6.67833],[140.90277100000014,-6.855833],[140.9494,-6.90361],[141.00613,-6.89328],[141.007019,-9.128468],[140.841644,-9.04639],[140.61496,-8.81028],[140.502472,-8.63],[139.985229,-8.19361],[139.98236,-8.135221],[140.05441,-8.08417],[140.14609,-7.884723],[140.051636,-7.928333],[140.039978,-8.054445],[139.915802,-8.11472],[139.620514,-8.124999999999885],[139.529419,-8.177223],[139.366364,-8.20639],[139.275818,-8.16972],[139.21829200000025,-8.08917],[139.08414,-8.14],[138.9086,-8.296667],[138.83719,-8.12555],[138.904419,-8.040277],[138.911926,-7.91056],[138.99496,-7.86389],[139.00442,-7.75778],[139.09552,-7.56417],[138.933868,-7.463612],[138.85245,-7.32639],[138.6611020000001,-7.20333],[138.934692,-7.20278],[139.050537,-7.25167],[139.17581200000018,-7.23889],[139.22247300000015,-7.1625],[139.15802,-7.20611],[139.04221,-7.21361],[138.84747300000015,-7.153889],[138.74884,-7.108889],[138.57135,-6.951112],[138.56192,-6.908888999999874],[138.5980220000001,-6.878333],[138.72886700000015,-6.899647],[138.91275,-6.843612],[139.10718,-6.970278],[139.18942300000015,-6.969444],[138.681915,-6.720554999999876],[138.6666560000001,-6.655],[138.704956,-6.646945],[138.481628,-6.421666],[138.4083250000001,-6.296944999999879],[138.36523,-6.10139],[138.29605100000015,-5.972777],[138.29745500000013,-5.85556],[138.167725,-5.79333],[138.358276,-5.68028],[138.224091,-5.68416599999989],[138.077423,-5.73889],[138.05273,-5.62694],[138.064423,-5.406111],[138.036377,-5.46],[137.94857800000023,-5.427222],[137.5749820000002,-5.188333],[137.593567,-5.155555999999876],[137.409149,-5.10583],[137.26886000000013,-4.986944],[137.213867,-5.013056],[136.819977,-4.929722],[136.35995500000013,-4.683055],[136.25525,-4.683888],[136.037476,-4.595],[135.92831,-4.49861],[135.724121,-4.50139],[135.42554,-4.43667],[135.204681,-4.459723],[134.8033140000001,-4.257501],[134.643585,-4.12139],[134.6949770000001,-3.939722],[134.92804,-3.98139],[134.96551,-3.939722],[134.67581200000018,-3.914444],[134.599701,-4.00889],[134.521637,-4.026389],[134.41387900000018,-3.906944],[134.36606,-3.897223],[134.339966,-3.991667],[134.30304000000012,-4.010833999999875],[134.21579,-3.963056],[134.162476,-3.89305499999989],[134.19384800000023,-3.83583],[134.16052200000013,-3.77361],[134.1283,-3.75111],[134.026093,-3.805],[133.92468,-3.750277999999867],[133.83414,-3.5875],[133.79663100000016,-3.61139],[133.804138,-3.67111],[133.743011,-3.66083],[133.637482,-3.491667],[133.69913,-3.41305],[133.68692,-3.273277999999891],[133.71301,-3.19278],[133.86300700000015,-3.081944],[133.828857,-2.961667],[133.65469,-3.14639],[133.64291400000013,-3.411127],[133.54382300000017,-3.460555],[133.5855100000001,-3.568334],[133.394989,-3.74222],[133.44971,-3.871389],[133.23745700000018,-4.076389],[133.05108600000017,-4.061389],[132.99078,-4.117499],[132.90164200000015,-4.09139],[132.80969200000015,-3.93278],[132.75082,-3.71833],[132.7830510000001,-3.63278],[132.92776500000025,-3.5575],[132.88388,-3.47139],[132.82275400000015,-3.452778],[132.81802400000026,-3.30305],[132.763031,-3.268889],[132.73025500000017,-3.28444],[132.722198,-3.34333],[132.665802,-3.326945],[132.546631,-3.106667],[132.315796,-2.95139],[132.190247,-2.93889],[132.07803300000012,-2.966389],[131.955811,-2.783611],[132.13831,-2.693333],[132.317749,-2.682222],[132.5699770000001,-2.71583],[132.722748,-2.817223],[132.84252900000013,-2.73047],[133.02221700000018,-2.493333],[133.23886100000016,-2.41611],[133.38748,-2.523611],[133.506104,-2.56583],[133.64859,-2.54389],[133.67804000000012,-2.583055],[133.684143,-2.716388999999879],[133.706635,-2.513889],[133.74246200000016,-2.525],[133.816376,-2.659166],[133.82135000000025,-2.54472],[133.78164700000013,-2.481111],[133.95553600000017,-2.32917],[133.95081,-2.20778],[133.924133,-2.27167],[133.83914200000015,-2.30028],[133.78775,-2.25778],[133.944427,-2.17306],[133.936371,-2.10305],[133.64386,-2.238611],[133.440796,-2.24],[133.29776,-2.201111],[132.963867,-2.28806],[132.814697,-2.248333],[132.68997200000013,-2.30861],[132.628845,-2.273611],[132.57608,-2.189443999999867],[132.30136100000016,-2.269444],[132.039429,-2.083889],[131.930542,-1.87305],[131.92718500000012,-1.810556],[131.97302200000013,-1.76056],[131.956635,-1.708055],[131.88245,-1.642222],[131.59079,-1.490832999999895],[131.27887,-1.379166999999882],[131.3330380000001,-1.460556],[131.2077330000002,-1.527222],[131.17554,-1.47639],[131.04663100000016,-1.45583],[130.96359300000017,-1.403055],[131.056091,-1.24694],[131.178864,-1.218889],[131.24884,-1.096945],[131.28637700000013,-0.915278],[131.25555,-0.822778],[131.516083,-0.733610999999883],[131.57775900000024,-0.7625],[131.873016,-0.69389],[132.10134900000014,-0.47],[132.269714,-0.384167],[132.43414300000018,-0.344444],[132.71051,-0.366389],[133.11191,-0.53639]]],[[[104.496094,-0.626943999999867],[104.344711,-0.58361],[104.25082,-0.4775],[104.28804,-0.39389],[104.466087,-0.338889],[104.531097,-0.373889],[104.59637,-0.473333],[104.496094,-0.626943999999867]]],[[[130.66971,-0.328889],[130.662201,-0.325278],[130.666382,-0.31583],[130.67105100000015,-0.317787],[130.66971,-0.328889]]],[[[122.011383,-0.414444],[121.89694,-0.41222],[121.85443,-0.365833],[121.931931,-0.313611],[122.04443400000014,-0.332778],[122.045822,-0.39389],[122.011383,-0.414444]]],[[[127.574997,-0.32333],[127.684143,-0.46778],[127.60386700000015,-0.60972],[127.65193,-0.70833],[127.79082,-0.69],[127.896378,-0.77611],[127.81775700000014,-0.870833],[127.75388,-0.888611],[127.67499,-0.855],[127.60526300000015,-0.76944],[127.460541,-0.81667],[127.404427,-0.62417],[127.30359,-0.51917],[127.318047,-0.344444],[127.36804,-0.328889],[127.411926,-0.367222],[127.531303,-0.31035],[127.574997,-0.32333]]],[[[104.44413800000012,-0.326111],[104.402481,-0.28556],[104.488037,-0.27806],[104.49498,-0.310832999999889],[104.44413800000012,-0.326111]]],[[[122.08332800000017,-0.410278],[122.059418,-0.341111],[122.086929,-0.265556],[122.14027,-0.382221999999899],[122.08332800000017,-0.410278]]],[[[127.18303700000013,-0.528889],[127.1147,-0.52333],[127.10498,-0.297222],[127.233871,-0.25611],[127.28109700000026,-0.384167],[127.25305200000012,-0.5],[127.18303700000013,-0.528889]]],[[[98.50166,-0.53972],[98.377472,-0.570556],[98.326096,-0.53972],[98.36665,-0.360833],[98.430267,-0.246389],[98.511932,-0.370556],[98.50166,-0.53972]]],[[[103.619141,-0.38972],[103.454712,-0.362221999999861],[103.53333,-0.23417],[103.633614,-0.236944],[103.75972000000013,-0.31222],[103.761658,-0.348610999999892],[103.619141,-0.38972]]],[[[122.22580700000013,-0.27806],[122.144989,-0.24778],[122.14027,-0.229444],[122.18887,-0.19722],[122.22580700000013,-0.27806]]],[[[122.363602,-0.284167],[122.267761,-0.25194],[122.223877,-0.20056],[122.32805,-0.23083],[122.363602,-0.284167]]],[[[103.553307,-0.19639],[103.505257,-0.19778],[103.50138900000012,-0.195],[103.5346530000001,-0.18423],[103.553307,-0.19639]]],[[[121.61387600000012,-0.20667],[121.562477,-0.156667],[121.631927,-0.12306],[121.64749100000017,-0.165],[121.61387600000012,-0.20667]]],[[[97.87665,-0.105278],[97.868347,-0.10897],[97.82388300000014,-0.06778],[97.866928,-0.064167],[97.87665,-0.105278]]],[[[104.876633,-0.065556],[104.831917,-0.060833],[104.842194,-0.024444],[104.851913,-0.02583],[104.876633,-0.065556]]],[[[130.877441,-0.01917],[131.139709,-0.07583],[131.29803500000014,-0.16417],[131.32220500000017,-0.273333],[131.25555,-0.38778],[131.167206,-0.33833],[130.96359300000017,-0.359721999999863],[130.876068,-0.250556],[130.791077,-0.217778],[130.68829300000016,-0.07944],[130.614136,-0.086111],[130.62717,-0.1375],[130.7280270000001,-0.24528],[130.9163820000001,-0.31917],[130.943848,-0.367222],[130.915802,-0.40889],[130.73745700000018,-0.447222],[130.688599,-0.305358],[130.589,-0.323659],[130.54277,-0.36604],[130.517761,-0.254722],[130.359955,-0.267222],[130.213287,-0.20667],[130.37912,-0.221944],[130.42996200000027,-0.19722],[130.39669800000013,-0.146722],[130.33609,-0.14583],[130.34552,-0.1925],[130.29776000000015,-0.17861],[130.288025,-0.101944],[130.69888300000025,-0.03662],[130.760803,-0.05333],[130.77859500000022,-0.039444],[130.75277700000015,-0.02583],[130.79166,-0.009999999999877],[130.877441,-0.01917]]],[[[98.547485,-0.370556],[98.544144,-0.38639],[98.291931,-0.01222],[98.3878,0.005833000000109],[98.444138,-0.061389],[98.554428,-0.28083],[98.547485,-0.370556]]],[[[104.74025,-0.136944],[104.8202670000001,-0.19361],[104.88889,-0.19361],[104.929428,-0.33417],[104.73526,-0.216944],[104.66137700000013,-0.215556],[104.530548,-0.273888999999883],[104.43248,-0.20194],[104.514137,-0.10806],[104.535248,0.017222],[104.6230160000001,-0.010832999999877],[104.74025,-0.136944]]],[[[129.554688,-0.213611],[129.53637700000024,-0.2225],[129.2883,0.04139],[129.5405270000001,-0.138889],[129.554688,-0.213611]]],[[[127.457207,-0.01222],[127.452477,-0.05111],[127.392761,0.00694],[127.410538,0.14417],[127.44775,0.13944400000014],[127.457207,-0.01222]]],[[[104.48193400000012,0.023611],[104.40721100000012,0.09],[104.409149,0.17167],[104.491348,0.076944],[104.48193400000012,0.023611]]],[[[98.834747,0.107778],[98.837234,0.084444],[98.640854,0.076944],[98.53529400000014,0.094722],[98.513351,0.133056],[98.553619,0.175],[98.762802,0.17167],[98.834747,0.107778]]],[[[104.701927,0.023611],[104.59135,0.09889],[104.491348,0.237222],[104.54497,0.221667],[104.701927,0.023611]]],[[[102.8597,0.274444],[102.833862,0.281111],[102.92691000000013,0.322222],[102.917473,0.298889],[102.8597,0.274444]]],[[[104.41191100000015,0.29222],[104.35027300000013,0.33611100000013],[104.342758,0.370833000000118],[104.426376,0.323611],[104.41191100000015,0.29222]]],[[[127.38526900000011,0.27083],[127.32776600000011,0.336667],[127.3886030000001,0.37861],[127.42082200000016,0.324444],[127.38526900000011,0.27083]]],[[[103.073593,0.571666],[103.064133,0.571666],[103.038017,0.654722000000106],[103.066071,0.646389],[103.073593,0.571666]]],[[[104.281647,0.623055],[104.26469,0.629166],[104.23719800000015,0.689444],[104.281647,0.665555],[104.281647,0.623055]]],[[[103.483597,0.616944],[103.46555300000011,0.63055],[103.5136,0.699166],[103.521088,0.67944],[103.483597,0.616944]]],[[[103.185242,0.508055],[103.13942,0.533333],[103.139969,0.601944],[103.171082,0.681389000000138],[103.223022,0.70333],[103.288857,0.63194],[103.296921,0.55388900000014],[103.185242,0.508055]]],[[[127.40387,0.61972],[127.3591540000001,0.647778],[127.383881,0.751944],[127.430542,0.747222000000136],[127.446373,0.712778],[127.40387,0.61972]]],[[[104.294144,0.70667],[104.202209,0.724444],[104.18997200000013,0.77528],[104.273613,0.791667000000132],[104.294144,0.70667]]],[[[104.598312,0.758055000000127],[104.5155330000001,0.749166],[104.508591,0.756111],[104.551643,0.795],[104.62358,0.78472],[104.598312,0.758055000000127]]],[[[103.094131,0.723889],[103.07719,0.750555],[103.10524,0.797778],[103.11691300000012,0.762778],[103.094131,0.723889]]],[[[103.715813,0.792500000000132],[103.72802700000011,0.765555],[103.704147,0.75944],[103.662193,0.832222000000115],[103.715813,0.792500000000132]]],[[[127.32222,0.75],[127.27832,0.821111],[127.324158,0.864166000000125],[127.37497700000027,0.81222],[127.36276,0.756111],[127.32222,0.75]]],[[[103.525803,0.8],[103.43469,0.843055000000106],[103.4191280000001,0.87111],[103.48969,0.845833],[103.525803,0.8]]],[[[103.93636300000013,0.766389000000117],[103.84053,0.845],[103.81998,0.886111],[103.88913700000012,0.859444],[103.93636300000013,0.766389000000117]]],[[[103.83219900000012,0.756111],[103.757477,0.808889],[103.73413,0.886944],[103.81998,0.82583],[103.83219900000012,0.756111]]],[[[103.43692,0.647222],[103.40248,0.66083],[103.339432,0.78972],[103.379959,0.891667],[103.507477,0.746389000000136],[103.43692,0.647222]]],[[[103.478577,0.868333000000121],[103.452469,0.868333000000121],[103.405243,0.908889],[103.461357,0.915833],[103.478577,0.868333000000121]]],[[[104.24273700000013,0.819722],[104.17554,0.790833],[104.1461,0.8575],[104.098038,0.882222],[104.094711,0.947222],[104.25916,0.867778],[104.24273700000013,0.819722]]],[[[103.934967,0.926111],[103.84053,0.975278],[103.836906,1.010278000000142],[103.93856800000013,0.999166],[103.96527100000014,0.943889000000127],[103.934967,0.926111]]],[[[104.84304800000012,0.9575],[104.82582100000013,0.956667],[104.7935870000001,1.02472200000011],[104.8394320000001,1.018611],[104.84304800000012,0.9575]]],[[[107.55664100000013,0.96583],[107.52858700000013,1.00611],[107.55053700000013,1.037778],[107.5963670000001,1.008055],[107.55664100000013,0.96583]]],[[[120.6772,1.035555000000102],[120.667763,1.034167],[120.61638,1.071944],[120.638893,1.07611],[120.6772,1.035555000000102]]],[[[120.38804600000014,1.02],[120.3660890000001,1.032222],[120.386108,1.080833],[120.40442700000017,1.065000000000111],[120.38804600000014,1.02]]],[[[103.439682,0.9875],[103.3510670000001,1.003333],[103.319702,1.040277],[103.341637,1.119722],[103.38887,1.124722],[103.439682,0.9875]]],[[[102.624229,0.994136],[102.76052900000013,1.010278000000142],[102.92497300000014,0.914444000000117],[103.041351,0.818333],[103.041351,0.71417],[103.006569,0.69273],[102.87413,0.792500000000132],[102.543854,0.774444],[102.406082,0.878055],[102.435516,0.92389],[102.49858,0.943055],[102.467194,1.05],[102.486359,1.132222000000127],[102.554962,1.122499],[102.624229,0.994136]]],[[[103.037193,1.037777],[103.16552700000011,0.891667],[103.146927,0.8375],[103.085251,0.836111],[102.761559,1.029625],[102.69273,1.02333],[102.657753,1.054166],[102.71608,1.15333],[102.783043,1.161666],[103.037193,1.037777]]],[[[104.0336,0.98222],[103.925522,1.031389],[103.901367,1.09389],[104.014427,1.17194],[104.11942,1.18361],[104.153053,1.13536],[104.13997,1.05],[104.08859300000012,0.988889],[104.0336,0.98222]]],[[[104.666893,1.02383],[104.58331,0.819167],[104.482468,0.856111],[104.488022,0.919167],[104.3716280000001,1.014444],[104.2494,1.00611],[104.230263,1.084167],[104.337189,1.176666],[104.4133,1.196666],[104.534698,1.176666],[104.640259,1.105555],[104.666893,1.02383]]],[[[102.395248,0.92389],[102.2383,1.078888],[102.20192,1.278888],[102.213028,1.405],[102.291077,1.405],[102.476067,1.226666],[102.44441200000011,1.103333000000134],[102.467194,0.964444],[102.395248,0.92389]]],[[[97.52637,1.41722],[97.67718,1.189722],[97.789688,1.14667],[97.90747,1.0425],[97.936356,0.97805],[97.89581,0.879444],[97.886917,0.63888900000012],[97.81079,0.54972],[97.687469,0.586944],[97.61218300000013,0.816944],[97.392197,1.013055],[97.250259,1.261667000000102],[97.11468500000012,1.39333],[97.246078,1.41305],[97.3347,1.496111],[97.396362,1.50139],[97.482468,1.47],[97.52637,1.41722]]],[[[125.21499600000016,1.38917],[125.16638,1.395278000000133],[125.23721,1.436193],[125.299454,1.52608],[125.267212,1.405],[125.21499600000016,1.38917]]],[[[102.496078,1.444722],[102.491913,1.259722000000124],[102.30885,1.420555],[102.10052,1.465833],[101.994423,1.611111],[102.05608400000011,1.62194],[102.434967,1.5275],[102.496078,1.444722]]],[[[125.14166300000021,1.42139],[124.902481,0.975278],[124.66609200000028,0.806667],[124.55304000000012,0.59083],[124.44136,0.455278],[124.24609,0.375000000000114],[123.64582800000015,0.281111],[123.26277200000025,0.313333],[123.068878,0.51139],[122.958328,0.479167],[122.04914900000016,0.48250000000013],[121.98526,0.44361],[121.795532,0.422222],[121.70720700000015,0.519722],[121.53386700000021,0.538055],[121.49803,0.477778],[121.337196,0.458055000000115],[121.252213,0.48250000000013],[121.155548,0.456667],[121.10137900000018,0.407222],[120.855553,0.448333],[120.69026200000019,0.527222000000108],[120.549149,0.536111],[120.37637,0.475833],[120.242203,0.345],[120.12415,0.175],[120.07693,-0.01556],[120.01998900000012,-0.07528],[119.99942,-0.24528],[120.066093,-0.61305],[120.26666300000021,-0.91389],[120.329163,-0.940556],[120.4086,-0.906389],[120.513611,-1.000278],[120.585541,-1.12028],[120.56972,-1.188056],[120.66638,-1.395555],[120.828049,-1.34278],[120.84166,-1.39222],[121.083054,-1.42361],[121.160263,-1.335278],[121.205551,-1.19472],[121.459152,-0.89417],[121.62220800000021,-0.804999999999893],[121.65999,-0.818056],[121.654984,-0.8775],[121.71054100000013,-0.93861],[121.927757,-0.96333],[122.11638,-0.925],[122.15942,-0.799444],[122.223877,-0.76111],[122.91527,-0.76583],[122.957764,-0.73167],[122.75555,-0.68722],[122.728317,-0.655556],[122.81581100000017,-0.617222],[123.035812,-0.6],[123.070831,-0.559722],[123.26193,-0.57667],[123.41137700000013,-0.65361],[123.45471,-0.7625],[123.44774600000017,-0.835278],[123.40109300000027,-0.89139],[123.377197,-1.013889],[123.331383,-1.057222],[123.248322,-1.03722],[123.153053,-0.89667],[123.068878,-0.876944],[122.819992,-0.91333],[122.62943,-1.223610999999892],[122.37525900000016,-1.491389],[122.1622,-1.61056],[121.836647,-1.69139],[121.74136,-1.861944],[121.67165400000012,-1.922221999999863],[121.539429,-1.933889],[121.446091,-1.822222],[121.32887300000016,-1.77222],[121.298027,-1.803056],[121.339157,-1.992777999999873],[121.428864,-1.971667],[121.573608,-2.162777],[121.716087,-2.18333],[121.83194000000015,-2.30167],[121.96887200000013,-2.534445],[122.01416,-2.682222],[122.30887,-2.904722],[122.26721,-3.029999999999859],[122.387772,-3.136111],[122.4266510000001,-3.12111],[122.477478,-3.158055],[122.41304000000012,-3.235833],[122.3561,-3.22027],[122.30053700000019,-3.281110999999896],[122.247208,-3.38111],[122.29305,-3.451389],[122.26915,-3.52889],[122.19497700000011,-3.57111],[122.25,-3.66139],[122.599426,-3.88361],[122.687187,-4.142778],[122.835823,-4.137778],[122.770828,-4.04833],[122.8577580000001,-4.076389],[122.90721,-4.226111],[122.89554,-4.39639],[122.746643,-4.488611],[122.68442,-4.486388],[122.66721300000017,-4.4325],[122.59108700000013,-4.39361],[122.10471300000017,-4.526112],[122.04082,-4.6675],[122.049713,-4.73222],[122.10942,-4.795834],[122.088882,-4.84083],[121.707764,-4.836945],[121.55304,-4.746667],[121.476379,-4.626389],[121.56609300000014,-4.259445],[121.62025,-4.156389],[121.6147,-4.064722],[121.357758,-3.97528],[121.253601,-3.81861],[121.12468700000011,-3.753056],[120.881363,-3.536945],[120.88693200000012,-3.394722],[120.97608900000012,-3.27083],[121.071381,-3.20167],[121.0761,-2.75889],[121.02609300000017,-2.67222],[120.7719270000001,-2.6125],[120.57111,-2.71167],[120.200272,-2.965],[120.26805100000013,-3.137499999999875],[120.4086,-3.258610999999859],[120.394989,-3.51083],[120.44693,-3.716111],[120.35247800000012,-3.913611],[120.34220900000012,-4.11139],[120.38665800000024,-4.16944],[120.356644,-4.38944],[120.42221,-4.678333],[120.390823,-4.783611],[120.30859400000018,-4.853888999999867],[120.266098,-5.15278],[120.38333100000011,-5.35139],[120.46277,-5.62417],[120.408043,-5.614722],[120.325821,-5.51167],[120.0961,-5.59583],[119.92330900000013,-5.56278],[119.7686,-5.708889],[119.66998300000012,-5.700556],[119.622757,-5.618055],[119.464996,-5.563611],[119.356644,-5.40667],[119.351929,-5.336389],[119.378593,-5.18139],[119.519989,-4.919444],[119.49165300000014,-4.73722],[119.595261,-4.566388],[119.626083,-4.191388],[119.598038,-3.97528],[119.448593,-3.71],[119.51582,-3.57333],[119.5061,-3.52722],[119.49109,-3.489167],[119.295822,-3.42694],[119.217758,-3.4925],[119.05193,-3.504722999999899],[118.922211,-3.569722],[118.837196,-3.342778],[118.82916300000011,-3.078056],[118.8886,-2.889722],[118.8641510000001,-2.852778],[118.766663,-2.8625],[118.759163,-2.774167],[118.816673,-2.624722],[118.907211,-2.65555],[119.141663,-2.45972],[119.125259,-2.28583],[119.21138,-2.011945],[119.29443400000014,-1.957778],[119.33554100000016,-1.974444],[119.35332,-1.938889],[119.36971300000016,-1.837221999999883],[119.32944,-1.8025],[119.29776,-1.689444],[119.32443200000013,-1.601111],[119.29166,-1.4025],[119.30887,-1.26528],[119.351929,-1.178333],[119.445251,-1.11],[119.51721,-0.87639],[119.676651,-0.743333],[119.718597,-0.65361],[119.832207,-0.871389],[119.86304,-0.843889],[119.84999100000016,-0.707778],[119.754173,-0.481667],[119.80137600000012,-0.12056],[119.683594,-0.10889],[119.622757,-0.00528],[119.687187,0.020833],[119.77805,-0.086944],[119.83305400000016,-0.08972],[119.883041,0.071389000000124],[119.77805,0.229722],[119.90915,0.4675],[120.036377,0.525],[120.032494,0.712778],[120.22026100000016,0.805278000000101],[120.25166300000011,0.963611],[120.287201,0.989722],[120.34275800000023,0.973889],[120.33943,0.859444],[120.41970800000013,0.805278000000101],[120.573036,0.77528],[120.64861,0.9533330000001],[120.7986,1.065000000000111],[120.82332,1.320555000000126],[120.950546,1.3425],[121.11026000000015,1.32],[121.24247700000011,1.232777],[121.38388,1.247222],[121.512497,1.086944],[121.57276900000022,1.058333],[121.9272,1.098611],[121.981934,1.015833],[122.062759,1.06361],[122.225273,1.006667],[122.4644320000002,0.999166],[122.66165200000012,0.94167],[122.84631300000024,0.814673],[122.960541,0.928055],[123.203049,0.956667],[123.558868,0.864166000000125],[123.603867,0.884722],[123.839157,0.829444000000137],[123.91304000000014,0.834722],[124.28858900000012,1.01167],[124.36747700000012,1.172500000000127],[124.588043,1.189722],[124.61692800000014,1.255555000000129],[124.53526,1.287778000000116],[124.55581700000016,1.370000000000118],[124.61831700000027,1.41722],[124.70860300000015,1.39667],[124.83415200000012,1.464444],[124.818329,1.573333000000105],[124.9711,1.69472],[125.032761,1.7],[125.170532,1.639166000000102],[125.16582,1.57944],[125.24942,1.505555],[125.22886700000014,1.4575],[125.14166300000021,1.42139]]],[[[98.599747,1.625555000000134],[98.48915,1.625555000000134],[98.42746,1.678889],[98.461914,1.706388000000118],[98.55505,1.68166600000012],[98.599747,1.625555000000134]]],[[[97.11718800000011,2.011111000000142],[97.063858,2.079444],[97.092743,2.1125],[97.148315,2.065833000000111],[97.11718800000011,2.011111000000142]]],[[[101.60164,1.70917],[101.491913,1.729444],[101.448853,1.768611],[101.39412700000014,1.9125],[101.398033,1.989166],[101.441353,2.0625],[101.645523,2.119999],[101.69969200000014,2.091944000000126],[101.775803,1.94611],[101.731079,1.885],[101.721626,1.782222],[101.60164,1.70917]]],[[[96.641083,2.065833000000111],[96.61218,2.080833],[96.610794,2.121944],[96.66913,2.108889],[96.641083,2.065833000000111]]],[[[96.640533,2.15278],[96.61441,2.16111],[96.59802,2.191111],[96.64859000000011,2.178888],[96.640533,2.15278]]],[[[127.89498900000011,1.796667],[127.94358800000019,1.793333],[128.0158080000001,1.7075],[128.03830000000016,1.526111],[127.9897,1.346667],[127.90804300000012,1.202777],[127.65387,1.02],[127.62637,0.965],[127.65526,0.88278],[127.79358700000012,0.795],[127.91693,0.855278],[127.92859,0.993055],[127.97527300000013,1.069722],[128.03775,1.117222],[128.16721,1.131389000000127],[128.194702,1.204166],[128.13916,1.237777],[128.13025,1.285555],[128.18829300000024,1.378055],[128.463287,1.54333],[128.646088,1.57944],[128.726349,1.556944],[128.69747900000016,1.101944000000117],[128.452179,0.9375],[128.302185,0.89444],[128.21023600000024,0.78472],[128.24051,0.725833],[128.34885,0.647222],[128.5788570000002,0.562222],[128.673584,0.558055],[128.68304,0.345555000000104],[128.82581,0.30305],[128.905243,0.200278],[128.8407900000002,0.2475],[128.541351,0.320833],[128.458313,0.395555],[128.27942,0.385278],[128.07385,0.466111],[127.957489,0.476389],[127.91914,0.453056],[127.876648,0.310555],[127.91220100000011,0.27083],[127.92387,0.142778000000135],[127.88472,0.079167],[127.88693200000012,-0.010832999999877],[128.036926,-0.40333],[128.207458,-0.69194],[128.395264,-0.89472],[128.252777,-0.872222],[128.228027,-0.84889],[128.248016,-0.828889],[128.03775,-0.711111],[127.8641510000001,-0.384167],[127.716927,-0.298611],[127.666092,-0.22583],[127.68802600000015,0.196111],[127.66081,0.336667],[127.568329,0.41555],[127.522217,0.598333],[127.54553,0.716944000000126],[127.619713,0.847778],[127.498871,0.890278],[127.483871,1.056111],[127.394989,1.054722],[127.40248,1.217777],[127.528587,1.448055000000124],[127.568878,1.741944],[127.6869200000001,1.919444],[127.94026,2.188333],[128.054688,2.19528],[127.944427,1.981666000000132],[127.85054000000014,1.911111],[127.849152,1.826111],[127.89498900000011,1.796667]]],[[[97.32775900000013,2.032222],[97.20719900000012,2.17194400000011],[97.10358,2.22],[97.288025,2.22417],[97.34413100000012,2.106111],[97.32775900000013,2.032222]]],[[[127.79498,2.205555],[127.74832200000014,2.22611],[127.756653,2.270555],[127.81359900000017,2.261666],[127.79498,2.205555]]],[[[118.57138100000019,2.316388000000131],[118.636658,2.26444],[118.568878,2.288333],[118.649719,2.176666],[118.56053,2.26444],[118.57138100000019,2.316388000000131]]],[[[125.430817,2.313055],[125.39249,2.321389],[125.367752,2.369166],[125.450821,2.379444],[125.430817,2.313055]]],[[[128.161102,2.282222000000103],[128.11911,2.338333],[128.163025,2.404166],[128.18914800000016,2.361111],[128.161102,2.282222000000103]]],[[[109.06749,2.485],[109.020264,2.482777000000112],[108.973183,2.540161],[109.012772,2.563055],[109.10748300000012,2.53],[109.06749,2.485]]],[[[128.49801600000012,2.050000000000125],[128.276642,2.017295],[128.23218,2.30611],[128.34661900000015,2.486388],[128.43359,2.571111],[128.56469700000014,2.632777],[128.694122,2.43361],[128.61996,2.215277],[128.49801600000012,2.050000000000125]]],[[[125.406372,2.626666],[125.376648,2.636944],[125.354713,2.72444],[125.414429,2.807222000000138],[125.450821,2.767499],[125.40221,2.7033330000001],[125.42608600000018,2.647778],[125.406372,2.626666]]],[[[106.24498,2.736666000000127],[106.234711,2.736111],[106.197746,2.812222000000133],[106.24304200000012,2.786666],[106.24498,2.736666000000127]]],[[[96.4321900000001,2.343055],[96.325806,2.354722],[96.295807,2.424722],[96.0594,2.578611000000137],[95.81886,2.654722],[95.70219,2.766944000000137],[95.696915,2.818889],[95.792191,2.938611],[95.883316,2.91889],[95.996353,2.777777000000128],[96.10107,2.7525],[96.213593,2.630555000000129],[96.43135100000012,2.503333],[96.484131,2.371110000000101],[96.4321900000001,2.343055]]],[[[108.832489,2.845],[108.773613,2.891388],[108.82639300000011,2.932499],[108.84499,2.99611],[108.88333100000011,3.001667000000111],[108.88804600000014,2.892777],[108.832489,2.845]]],[[[107.75943,2.974166],[107.74165,2.997499],[107.765549,3.02167],[107.81219,3.00111],[107.75943,2.974166]]],[[[105.724991,2.833889],[105.68386800000013,3.006389],[105.698318,3.06055],[105.84887700000013,2.979166],[105.81109600000013,2.896944],[105.724991,2.833889]]],[[[106.289429,3.159721],[106.274429,3.092777],[106.212769,3.121388],[106.203323,3.226666],[106.24859600000013,3.22],[106.289429,3.159721]]],[[[117.523041,3.28555],[117.427757,3.273889],[117.41137700000013,3.30278],[117.46192900000017,3.34389],[117.518883,3.32528],[117.523041,3.28555]]],[[[106.280548,3.230833],[106.234711,3.256111],[106.24859600000013,3.339722],[106.287491,3.37333],[106.280548,3.230833]]],[[[117.664146,3.284166],[117.63192700000012,3.258889],[117.55581700000016,3.319722],[117.539429,3.426666000000125],[117.672493,3.419722],[117.664146,3.284166]]],[[[117.607483,3.4772210000001],[117.468872,3.522222],[117.43332,3.559166],[117.58748600000013,3.524444],[117.625259,3.500556000000131],[117.607483,3.4772210000001]]],[[[117.8855360000001,3.456666],[117.775818,3.531944000000123],[117.78970300000015,3.577777],[117.82443,3.590555],[117.865807,3.548889],[117.8855360000001,3.456666]]],[[[117.39082,3.561944],[117.517487,3.474444],[117.48332200000027,3.44694],[117.2661,3.499166],[117.21666000000016,3.545555],[117.27082800000028,3.592777],[117.39082,3.561944]]],[[[125.88388,3.362222],[125.791656,3.412221],[125.643333,3.661944],[125.663597,3.718333],[125.729713,3.722499000000141],[125.789429,3.68278],[125.911377,3.49167],[125.91943400000012,3.4175],[125.88388,3.362222]]],[[[117.825272,3.740555],[117.794983,3.743333],[117.78830700000015,3.75],[117.81554,3.75555],[117.825272,3.740555]]],[[[126.844147,3.738055],[126.82885700000021,3.715306],[126.79221300000017,3.733333],[126.738876,3.842222],[126.80386,3.83],[126.844147,3.738055]]],[[[117.8477630000001,3.79722],[117.794983,3.804722],[117.73082,3.863611],[117.801933,3.855278000000112],[117.8477630000001,3.79722]]],[[[126.71138,3.79805],[126.61137,3.975],[126.608032,4.041110000000117],[126.72360200000014,3.911666],[126.71138,3.79805]]],[[[117.689697,3.97417],[117.60332,4.030277000000126],[117.597763,4.087777],[117.646378,4.140277],[117.75,4.06861],[117.689697,3.97417]]],[[[117.886932,4.026944],[117.83220700000015,4.04472],[117.68692,4.16834],[117.903557,4.17404],[117.93027,4.058887],[117.886932,4.026944]]],[[[108.181664,3.6475],[108.094437,3.694722000000127],[108.201393,3.79639],[108.054703,3.858889],[107.99165,4.024166],[108.181664,4.196387000000129],[108.251389,4.179999],[108.267212,4.10694],[108.38777,3.994722000000138],[108.406937,3.87583],[108.31805,3.678888],[108.181664,3.6475]]],[[[116.049423,4.279444],[116.15582,4.359165],[116.314697,4.357777],[116.46304,4.293332],[116.5336,4.330832],[117.189148,4.335555],[117.239433,4.35833],[117.39833,4.258055000000127],[117.4433140000001,4.192777],[117.592056,4.169818],[117.49275,4.124721],[117.40248,4.150555000000111],[117.392761,4.107499000000132],[117.62387100000012,3.946944],[117.521103,3.927777000000106],[117.70526,3.869721000000141],[117.78221100000019,3.78889],[117.770073,3.736717],[117.82805,3.702222],[117.760269,3.639166],[117.698593,3.626944],[117.076393,3.643333],[117.030273,3.59417],[117.1997070000001,3.618055],[117.204987,3.54],[117.24136,3.48667],[117.32083100000011,3.43611],[117.444138,3.430555],[117.43332,3.35944400000011],[117.31192,3.24528],[117.263321,3.259722],[117.273041,3.22278],[117.61971300000015,3.088611],[117.690262,2.966111],[117.67165,2.801111],[117.77721,2.762222],[117.81638,2.61555],[118.096649,2.30555500000014],[118.061096,2.22333],[117.904709,2.080833],[117.825821,2.103611],[117.868317,2.037777],[117.87192,1.876667],[118.13498700000012,1.646111],[118.41998,1.477500000000134],[118.453598,1.39333],[118.59554300000013,1.358333],[118.77832000000011,1.2],[118.83943,1.098055],[118.994431,1.048611],[119.00943,0.986944],[118.79776000000027,0.80055],[118.679703,0.844444],[118.343872,0.843055000000106],[118.07138,0.91972],[117.989151,1.070555],[117.89166300000011,1.115833],[118.03498800000021,0.810278],[118.00000000000011,0.78472],[117.90332,0.8375],[117.81554,0.810278],[117.742203,0.739722],[117.62164300000029,0.436667],[117.56749,0.396389],[117.52249100000017,0.2975],[117.46748400000024,0.103611],[117.52916,-0.03472],[117.43471,-0.243056],[117.4711,-0.3425],[117.44181800000014,-0.523909999999887],[117.62997,-0.421944],[117.5744320000001,-0.64861],[117.6224820000001,-0.77972],[117.45387300000027,-0.86194],[117.265854,-0.82165],[117.026382,-1.199444],[116.9236,-1.25444],[116.81526,-1.27222],[116.74109,-1.10583],[116.74331700000015,-1.02417],[116.710274,-1.121389],[116.787773,-1.248333],[116.755547,-1.3675],[116.53553800000019,-1.47722],[116.5649870000002,-1.573611],[116.539703,-1.62444],[116.22248800000011,-1.77917],[116.262772,-1.81278],[116.383331,-1.766111],[116.443863,-1.779722],[116.45665,-2.050278],[116.327209,-2.1475],[116.414429,-2.21417],[116.5186,-2.1675],[116.60277,-2.18583],[116.604156,-2.22972],[116.51304600000013,-2.55694],[116.4747,-2.56111],[116.424698,-2.494722],[116.299713,-2.525],[116.29776,-2.609167],[116.36219800000015,-2.665277],[116.373871,-2.845833],[116.274429,-3],[116.22387700000013,-3.006667],[116.20610000000022,-2.921945],[116.13192700000013,-2.82333],[116.12109,-2.975277],[116.210823,-3.085556],[116.216377,-3.142778],[116.099274,-3.26516],[116.01138300000014,-3.431667],[115.97580700000015,-3.60111],[115.83943,-3.63056],[115.73526,-3.71833],[114.64082,-4.186388],[114.608597,-4.12917],[114.60720800000026,-3.67778],[114.481087,-3.49861],[114.10220300000015,-3.35639],[113.824158,-3.46167],[113.671097,-3.47611],[113.608871,-3.435832999999889],[113.641663,-3.31806],[113.608871,-3.17306],[113.475273,-3.180556],[113.44165,-3.24278],[113.363602,-3.261389],[113.24498,-3.18333],[113.064697,-2.993889],[113.034714,-2.98972],[112.94971,-3.082778],[112.971649,-3.150556],[112.95166000000017,-3.207221999999887],[112.65165700000011,-3.415277],[112.531662,-3.44472],[112.417213,-3.353611],[112.245819,-3.31389],[112.16165200000012,-3.346111],[111.896378,-3.573889],[111.803864,-3.5375],[111.8435970000001,-3.40639],[111.81609300000014,-3.194167],[111.83276,-3.06694],[111.751938,-2.900556],[111.728592,-2.806111],[111.74971,-2.741944],[111.70248,-2.790556],[111.7011,-2.94389],[111.550262,-3.02444],[111.48166,-2.942499999999882],[111.335823,-2.921111],[110.96248600000013,-3.09639],[110.754707,-3.032778],[110.79776,-2.965],[110.966377,-2.900556],[110.933594,-2.886945],[110.78970300000015,-2.948611],[110.66304000000014,-3.081389],[110.6197130000001,-3.049166999999898],[110.64388300000013,-3.01972],[110.606644,-2.89583],[110.551086,-2.869166],[110.277206,-3.015],[110.20583,-2.901389],[110.248322,-2.79306],[110.13998,-2.29694],[110.094711,-2.239444],[110.12580900000012,-2.046945],[110.071663,-1.928333],[109.903587,-1.82833],[109.910538,-1.777778],[109.981659,-1.73944],[110.031937,-1.659444],[110.06944,-1.46555],[110.057747,-1.333889],[109.729713,-0.95361],[109.674149,-0.984444],[109.614433,-0.956389],[109.55971,-0.878333],[109.469994,-0.851667],[109.41581700000012,-0.854167],[109.395264,-0.91806],[109.279984,-0.868055],[109.25943000000012,-0.666667],[109.47192,-0.744722],[109.51443,-0.726944],[109.371094,-0.585833],[109.260818,-0.59472],[109.12442,-0.51167],[109.0422130000001,-0.24583],[109.06888,-0.21083],[109.194427,-0.19917],[109.165543,0.106389],[109.053307,0.283333],[108.91748000000011,0.3175],[108.947746,0.413333000000137],[108.93193100000013,0.60861100000011],[108.846367,0.8225],[108.978592,0.9425],[108.958603,1.176666],[109.095833,1.21167],[109.264999,1.39333],[109.2285920000001,1.3925],[109.13611,1.258889000000124],[108.981934,1.21167],[109.061371,1.369166],[109.062187,1.523333],[109.26304600000014,1.679444000000103],[109.331383,1.791111000000115],[109.33692900000011,1.891111],[109.439697,1.9541660000001],[109.57193,1.985833],[109.648567,2.073409],[109.54665,1.904166],[109.563873,1.833611],[109.6672130000001,1.706388000000118],[109.66998,1.613055],[109.931664,1.406944000000124],[110.071663,1.22],[110.187187,1.185],[110.332489,1.001944],[110.55525200000011,0.85389],[110.80609,0.906667],[110.90416,1.014444],[111.211929,1.069722],[111.40637,1.00889],[111.562759,0.999166],[111.66693,1.039166],[111.827209,0.998611],[111.949707,1.13],[112.131363,1.147222000000113],[112.213608,1.378889],[112.180817,1.408889000000102],[112.204712,1.453611],[112.47276,1.568055],[112.99971,1.57278],[113.05442800000014,1.54528],[113.12637,1.431666],[113.34082000000012,1.365278],[113.4561000000001,1.288333],[113.58693,1.283611000000121],[113.65833,1.22472],[113.794434,1.3075],[113.930817,1.44528],[114.084396,1.46999],[114.228867,1.4425],[114.40165700000011,1.509722],[114.56275900000014,1.43361],[114.710823,1.770555],[114.78333,1.86389],[114.859993,1.904166],[114.868317,2.043889],[114.800537,2.064722],[114.77638200000023,2.14667],[114.804703,2.248888],[114.93942300000013,2.285555],[115.237198,2.5225],[115.172211,2.604444],[115.083054,2.610833],[115.139709,2.90611],[115.24971,3.010833],[115.37525900000026,2.99139],[115.49552900000015,3.040000000000134],[115.53888,3.33361],[115.576393,3.426111],[115.62804,3.432222],[115.571381,3.666111],[115.685257,4.171944],[115.8808140000001,4.366666],[116.000267,4.332777],[116.049423,4.279444]]],[[[126.75972,3.985833],[126.69999700000017,3.995833],[126.6905360000002,4.07],[126.79027,4.21639],[126.709717,4.270555],[126.69274900000016,4.326111],[126.74054,4.541944000000114],[126.8611,4.485276],[126.916092,4.27361],[126.75972,3.985833]]],[[[125.491364,4.732777],[125.47886700000025,4.73444400000011],[125.491928,4.745554],[125.49609,4.742777],[125.491364,4.732777]]],[[[107.9644320000001,4.674721],[107.9383090000001,4.70194],[108.004707,4.772222],[107.99859600000013,4.70194],[107.9644320000001,4.674721]]],[[[95.73857,5.585277],[95.889969,5.5025],[95.909134,5.43861],[96.070816,5.29944300000011],[96.347748,5.222776],[96.58136,5.207222],[96.820526,5.278888],[96.98107900000014,5.270555],[97.12746,5.232499],[97.203583,5.151111],[97.51886,5.24667],[97.68413,5.054998],[97.913025,4.886388],[98.017197,4.55111],[98.15358,4.521111000000133],[98.280258,4.42333200000013],[98.27052300000014,4.142499],[98.551636,3.998888],[98.7133,3.791111],[98.811447,3.72472],[99.21083,3.548333],[99.548035,3.247222],[99.76442,3.14472],[99.977753,2.947499],[99.994125,2.796944],[99.95442,2.693055],[100.001648,2.601944],[100.012482,2.675833],[99.97358700000012,2.705277],[100.04551700000013,2.732777],[100.133034,2.523333],[100.12358,2.671111],[100.209137,2.7033330000001],[100.315506,2.549206],[100.41219300000012,2.293055],[100.60469100000012,2.128888000000131],[100.67441,2.1275],[100.8224790000001,2.028888],[100.942459,1.820555],[100.946617,1.881666],[100.888313,2.03583],[100.813583,2.11861],[100.797203,2.214444],[100.860786,2.287777],[101.055527,2.286388],[101.07274600000011,2.2075],[101.313293,2.028888],[101.329697,1.903611000000126],[101.410522,1.717222],[101.545517,1.65361],[101.75803400000012,1.655555],[102.01886,1.435555],[102.135529,1.373333],[102.198013,1.19805],[102.2108,1.015],[102.42191,0.80055],[102.54524200000014,0.731944000000112],[102.86525,0.73139],[102.93245700000011,0.695000000000107],[103.080544,0.515555],[103.081917,0.445555],[102.575531,0.17694],[102.4882970000001,0.245],[102.42746000000011,0.24694],[102.539963,0.16667],[102.587189,0.1525],[102.65912600000011,0.2175],[102.90441900000013,0.262778],[103.174973,0.417500000000132],[103.221077,0.488055],[103.351089,0.536111],[103.450546,0.499722],[103.739693,0.281111],[103.814194,-0.001029],[103.602737,-0.02722],[103.57864,-0.10476],[103.42249300000015,-0.212222],[103.269707,-0.258889],[103.49080700000013,-0.216944],[103.43887300000011,-0.333611],[103.342361,-0.364096],[103.497208,-0.37944],[103.599991,-0.44111],[103.414993,-0.57667],[103.360809,-0.70222],[103.74109,-0.99556],[103.842484,-1.02833],[103.95498700000012,-0.98305],[104.2186,-1.07],[104.3461,-1.026111],[104.37915,-1.04139],[104.412773,-1.131667],[104.394707,-1.215278],[104.45526100000012,-1.35389],[104.460541,-1.571666999999877],[104.53888,-1.76056],[104.483322,-1.868333],[104.489433,-1.925],[104.511932,-1.928333],[104.53471,-1.861944],[104.56415,-1.865556],[104.75525700000014,-2.00111],[104.82582100000013,-2.015556],[104.879433,-2.14694],[104.724426,-2.384445],[104.712769,-2.57417],[104.573608,-2.655],[104.53249,-2.772778],[104.594994,-2.67056],[104.73664900000011,-2.59333],[104.78276,-2.395555],[104.862198,-2.289444],[105.04109,-2.37222],[105.2383120000001,-2.344167],[105.348602,-2.37917],[105.61249,-2.39417],[105.63247700000011,-2.435833],[105.6105270000001,-2.582222],[105.681091,-2.669445],[105.783051,-2.697222],[105.808594,-2.89667],[105.883881,-2.958055],[105.988876,-2.960278],[106.05525200000011,-3.03139],[106.07639300000011,-3.244166999999891],[105.89888,-3.40889],[105.816093,-3.675],[105.825,-3.73056],[105.93858300000011,-3.801667],[105.95665,-3.85222],[105.857208,-4.043612],[105.809982,-4.2425],[105.82361,-4.331389],[105.90248,-4.45778],[105.904427,-4.54861],[105.8647,-4.783611],[105.887207,-4.88806],[105.81749,-5.53778],[105.834717,-5.618889],[105.78804000000014,-5.816667],[105.732483,-5.897779],[105.2686,-5.444166],[105.17109700000013,-5.590278],[105.21582,-5.769444],[105.139709,-5.796111],[104.783333,-5.60389],[104.690811,-5.5125],[104.54498,-5.50639],[104.526382,-5.54778],[104.688873,-5.81583],[104.715,-5.91527699999989],[104.560776,-5.92975],[104.537491,-5.839722999999879],[104.00972,-5.330278],[104.000816,-5.26417],[103.8911,-5.11139],[103.717758,-4.958889],[103.443039,-4.860833],[102.3261,-4.00611],[102.27943,-3.93555],[102.224701,-3.6525],[101.62692,-3.24611],[101.470261,-3.02583],[101.313873,-2.72],[101.09526,-2.58167],[100.905548,-2.31944],[100.83276,-2.165277],[100.88220200000012,-2.06528],[100.86637900000011,-1.92639],[100.649986,-1.621667],[100.564987,-1.33111],[100.43747700000011,-1.241389],[100.2935870000001,-0.80639],[100.16330700000015,-0.68306],[100.013321,-0.47139],[99.813873,-0.30694],[99.74886,-0.155277999999896],[99.759705,-0.05944],[99.635818,0.076944],[99.341095,0.23472],[99.236923,0.213889],[99.13612400000011,0.261389],[99.15805,0.317499],[99.110825,0.345555000000104],[99.136948,0.412778],[99.10333300000013,0.584722],[98.838623,1.31111],[98.702515,1.561111],[98.76474000000013,1.535833],[98.82225,1.62194],[98.823639,1.672777],[98.77086,1.74861],[98.45636,1.9775],[97.94858,2.26722],[97.864136,2.239166000000125],[97.75192300000013,2.269166],[97.65469,2.404722000000106],[97.649139,2.637500000000102],[97.596924,2.866944000000103],[97.381912,2.965277000000128],[97.310516,3.06611],[97.259979,3.220555],[97.16803,3.254167],[97.00554,3.536111000000119],[96.8802490000001,3.677499],[96.78775000000012,3.742499],[96.55830400000012,3.738332000000128],[96.488861,3.76361],[96.18747,4.123332000000118],[96.00914,4.223055],[95.531082,4.682776],[95.283585,5.118332],[95.30414,5.164999],[95.23219300000011,5.283054],[95.255539,5.405832],[95.223862,5.479444000000115],[95.230804,5.570833000000106],[95.28497,5.569444],[95.4321900000001,5.654721],[95.73857,5.585277]]],[[[95.15802,5.59472],[95.10886,5.612499],[95.142471,5.660832000000141],[95.189133,5.614444],[95.15802,5.59472]]],[[[95.11969,5.670277],[95.076645,5.66694],[95.008026,5.735276],[95.063583,5.74944],[95.130798,5.69361],[95.11969,5.670277]]],[[[95.342468,5.774166],[95.276642,5.797221],[95.217743,5.913054000000101],[95.333588,5.897499],[95.381638,5.84972],[95.342468,5.774166]]]]}},{"type":"Feature","properties":{"FIPS":"GP","ISO2":"GP","ISO3":"GLP","UN":312,"NAME":"Guadeloupe","AREA":169,"POP2005":438403,"REGION":19,"SUBREGION":29,"LON":-61.441,"LAT":16.286},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.24556,15.871666],[-61.31,15.882776],[-61.329445,15.92861],[-61.266945,16.015],[-61.18695,15.92111],[-61.24556,15.871666]]],[[[-61.03722,16.31111],[-61.08667,16.29583],[-60.988617,16.34610700000013],[-60.990837,16.34083],[-61.03722,16.31111]]],[[[-61.346115,16.33416],[-61.20556,16.26722],[-61.454727,16.200554],[-61.567062,16.226944],[-61.55945,16.033886],[-61.69501,15.949165],[-61.761391,16.056664],[-61.78361,16.33305],[-61.730835,16.362221],[-61.606674,16.275276000000133],[-61.54187,16.290249],[-61.49889399999989,16.34861000000012],[-61.53167,16.451942],[-61.460281,16.514164000000108],[-61.40472,16.472775],[-61.39889,16.387775],[-61.346115,16.33416]]],[[[-62.811394,17.888332],[-62.84112,17.87916600000011],[-62.869171,17.92972200000014],[-62.79083999999988,17.912498],[-62.811394,17.888332]]]]}},{"type":"Feature","properties":{"FIPS":"NT","ISO2":"AN","ISO3":"ANT","UN":530,"NAME":"Netherlands Antilles","AREA":80,"POP2005":186392,"REGION":19,"SUBREGION":29,"LON":-68.87,"LAT":12.123},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.195282,12.22111],[-68.25111,12.020555],[-68.29861,12.195276],[-68.39889,12.220833],[-68.41612,12.25694],[-68.36974,12.306944000000101],[-68.195282,12.22111]]],[[[-68.96556,12.198889],[-68.82417,12.160276000000124],[-68.74695,12.040277000000115],[-68.82751499999989,12.047222],[-69.0625,12.188332000000116],[-69.15834,12.311388],[-69.16362,12.366388000000143],[-69.14639,12.383888],[-69.08139,12.351944],[-69.0314,12.24444],[-68.96556,12.198889]]],[[[-62.96111,17.460831],[-62.995285,17.489719],[-62.99667,17.52055],[-62.938614,17.490276000000108],[-62.96111,17.460831]]]]}},{"type":"Feature","properties":{"FIPS":"AE","ISO2":"AE","ISO3":"ARE","UN":784,"NAME":"United Arab Emirates","AREA":8360,"POP2005":4104291,"REGION":142,"SUBREGION":145,"LON":54.163,"LAT":23.549},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.96527100000014,24.176666],[53.94360400000011,24.139164000000108],[53.784164,24.124996],[53.623886,24.162777],[53.85110500000013,24.269165],[53.96527100000014,24.176666]]],[[[53.324165,24.267776],[53.271942,24.258331],[53.243607,24.276665],[53.34111000000013,24.328888],[53.324165,24.267776]]],[[[53.1097180000001,24.311386],[53.07944,24.325554],[53.085831,24.352776],[53.10527000000013,24.34194200000013],[53.1097180000001,24.311386]]],[[[54.26471700000013,24.288887],[54.22722,24.270554],[54.174438,24.324997],[54.23138,24.35083],[54.26471700000013,24.288887]]],[[[52.616104,24.26861],[52.572777,24.33972],[52.639717,24.372219],[52.656105,24.315277],[52.616104,24.26861]]],[[[53.39804800000013,24.324718],[53.387497,24.368889],[53.428329,24.366943],[53.4302750000001,24.348331000000144],[53.39804800000013,24.324718]]],[[[54.472496,24.418888],[54.38222,24.43749600000012],[54.328331,24.459721000000116],[54.380272,24.502499],[54.472496,24.418888]]],[[[54.515549,24.504719],[54.48555,24.509163],[54.469719,24.536942],[54.47805000000011,24.545555],[54.515549,24.504719]]],[[[54.440826,24.50111],[54.400833,24.514721],[54.465553000000114,24.589996],[54.461388000000106,24.508331000000112],[54.440826,24.50111]]],[[[55.617493,25.57],[55.6097180000001,25.56944],[55.62055,25.58361],[55.619438,25.575275],[55.617493,25.57]]],[[[56.183331,25.654989],[56.333611,25.605553],[56.368332,25.52583],[56.373528,24.97938],[56.335274,24.966389],[56.335831,24.89666],[56.1887660000001,24.824997000000106],[56.141106,24.740276000000105],[56.06166100000013,24.74472],[55.98277300000012,24.862778],[55.993607,24.891109],[56.050827,24.866108],[56.00944,24.974720000000104],[55.914719,24.973331],[55.807777,24.87805200000014],[55.843605,24.649719],[55.77944200000013,24.563889000000128],[55.82,24.416664],[55.77722,24.235275000000115],[55.85944400000011,24.213608],[55.94916500000011,24.234722],[56.02471900000012,24.076111],[55.801384,24.02],[55.646385000000116,24.02972],[55.510277,23.972775000000123],[55.559441,23.883888],[55.56472,23.773609000000132],[55.241661,23.117496],[55.199165,22.699718],[55.141659,22.633329],[52.58333,22.93889000000013],[51.583328,24.11666],[51.583611000000126,24.25972],[51.72583,24.261108],[51.773605,24.17833],[51.807777,24.002499000000114],[52.080551,23.95555],[52.340271,24.004997],[52.438606,24.054996],[52.59138500000011,24.199718000000132],[52.681938,24.136387],[53.224442,24.13611],[53.325829,24.102776],[53.459717,24.10611],[53.580826,24.044167],[53.874161,24.059719],[54.118607000000104,24.13944],[54.424164,24.281666],[54.49444,24.436108],[54.580826,24.443886],[54.669167,24.66333],[54.650276,24.746944],[55.066383,25.018055],[55.36972000000014,25.361111],[55.46833,25.41333],[55.55055,25.575832000000105],[55.55032,25.519423],[55.62846,25.532919],[55.691109,25.623055],[55.86360900000011,25.723331000000144],[56.02722200000011,25.883888],[56.079941,26.065559],[56.147491,26.08416],[56.185551,26.014721],[56.140831,25.73499],[56.147221,25.666109],[56.183331,25.654989]]]]}},{"type":"Feature","properties":{"FIPS":"TT","ISO2":"TL","ISO3":"TLS","UN":626,"NAME":"Timor-Leste","AREA":1487,"POP2005":1067285,"REGION":142,"SUBREGION":35,"LON":125.878,"LAT":-8.822},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.44572729730145,-9.184801455158606],[124.34309325995275,-9.463379556533425],[124.0461611661691,-9.339979205870009],[124.184982,-9.26028],[124.44572729730145,-9.184801455158606]]],[[[127.25305200000012,-8.477499],[127.01527,-8.68278],[126.58554100000013,-8.808333999999888],[126.472488,-8.9525],[126.15332,-8.990276],[125.943588,-9.12694],[125.78305100000011,-9.147223],[125.404427,-9.26833],[125.20193,-9.427223],[125.12798877127146,-9.435955217796277],[124.97205197356264,-9.211796071089564],[125.16404989666455,-9.066142474253581],[124.9454487445107,-8.954039319302865],[125.09304800000017,-8.75944],[125.145264,-8.634724],[125.844147,-8.481667],[126.04414400000019,-8.525],[126.220261,-8.50139],[126.35887100000014,-8.4275],[126.56302600000026,-8.48639],[127.00499000000012,-8.32444],[127.20166000000017,-8.333055],[127.29886600000019,-8.39278],[127.30442800000014,-8.43361],[127.25305200000012,-8.477499]]]]}},{"type":"Feature","properties":{"FIPS":"PC","ISO2":"PN","ISO3":"PCN","UN":612,"NAME":"Pitcairn Islands","AREA":0,"POP2005":5,"REGION":9,"SUBREGION":61,"LON":-128.316,"LAT":-24.366},"geometry":{"type":"MultiPolygon","coordinates":[[[[-130.07693,-25.07972],[-130.10083,-25.07611],[-130.107483,-25.063335],[-130.065,-25.063335],[-130.07693,-25.07972]]],[[[-124.78085,-24.675835],[-124.7928,-24.67444],[-124.79585,-24.66611],[-124.772522,-24.66695],[-124.78085,-24.675835]]],[[[-128.28918,-24.40972],[-128.34198,-24.36972],[-128.336945,-24.329166],[-128.30389,-24.33028],[-128.28918,-24.40972]]]]}},{"type":"Feature","properties":{"FIPS":"PS","ISO2":"PW","ISO3":"PLW","UN":585,"NAME":"Palau","AREA":0,"POP2005":20127,"REGION":9,"SUBREGION":57,"LON":134.57,"LAT":7.501},"geometry":{"type":"MultiPolygon","coordinates":[[[[132.226624,5.292777000000115],[132.21219,5.29611],[132.208313,5.31111],[132.230255,5.307221],[132.226624,5.292777000000115]]],[[[134.16608,6.885277],[134.13858,6.897499],[134.13943,6.934721000000138],[134.174988,6.92389],[134.16608,6.885277]]],[[[134.274994,7.010278],[134.227753,6.987777],[134.27832,7.070833],[134.284424,7.058054],[134.274994,7.010278]]],[[[134.392761,7.14028],[134.35385,7.168055],[134.3819,7.1925],[134.400269,7.15167],[134.392761,7.14028]]],[[[134.377747,7.21583],[134.34412,7.269444],[134.43887,7.278888],[134.44635,7.249721],[134.377747,7.21583]]],[[[134.470795,7.36111],[134.517487,7.340833],[134.517487,7.308054],[134.471619,7.345554],[134.448303,7.33194],[134.470795,7.36111]]],[[[134.56137100000012,7.37194],[134.52582,7.355832000000134],[134.48523,7.438054],[134.55304,7.60861],[134.6416630000001,7.636388],[134.63415,7.729444],[134.654694,7.600277],[134.56137100000012,7.37194]]]]}},{"type":"Feature","properties":{"FIPS":"RM","ISO2":"MH","ISO3":"MHL","UN":584,"NAME":"Marshall Islands","AREA":0,"POP2005":5672,"REGION":9,"SUBREGION":57,"LON":168.963,"LAT":7.595},"geometry":{"type":"MultiPolygon","coordinates":[[[[168.113586,5.600277],[168.0949710000001,5.613333],[168.12439,5.6416660000001],[168.13134800000012,5.62361],[168.113586,5.600277]]],[[[168.09024,5.630554000000131],[168.07498,5.63194],[168.07715,5.650265],[168.09079,5.640833],[168.09024,5.630554000000131]]],[[[171.75192300000015,6.080555],[171.730804,6.07722],[171.7271730000001,6.086110000000133],[171.73358,6.096388],[171.75192300000015,6.080555]]],[[[172.090515,6.219721],[172.08636500000011,6.216944],[172.074127,6.222221000000104],[172.080261,6.22972],[172.090515,6.219721]]],[[[171.914154,7.092499],[171.89413500000012,7.10166],[171.929962,7.133888],[171.934692,7.119999000000121],[171.914154,7.092499]]],[[[168.768036,7.29833],[168.78637700000013,7.28889],[168.670258,7.328888],[168.67441,7.331388],[168.768036,7.29833]]],[[[168.574677,7.398055000000114],[168.554962,7.423055],[168.558594,7.471388],[168.565247,7.464444000000128],[168.574677,7.398055000000114]]],[[[168.96719,7.57417],[168.96164,7.573055],[168.944427,7.615276],[168.974976,7.60111],[168.96719,7.57417]]],[[[168.25137,7.749443],[168.23358,7.74861],[168.22024,7.766944],[168.25082,7.75722],[168.25137,7.749443]]],[[[167.738861,8.725275],[167.7244,8.729719],[167.74078,8.74778],[167.745514,8.739441000000113],[167.738861,8.725275]]],[[[170.8449710000001,8.886944],[170.834961,8.89333],[170.846924,8.916109],[170.85553,8.90416],[170.8449710000001,8.886944]]],[[[165.536926,9.19722],[165.522491,9.207775],[165.52691700000014,9.218609000000129],[165.536377,9.2075],[165.536926,9.19722]]],[[[166.829956,9.32222],[166.818298,9.324442],[166.8116460000001,9.336943],[166.830261,9.335831],[166.829956,9.32222]]],[[[170.24801600000012,9.54472],[170.24496,9.533609000000126],[170.233307,9.55888700000014],[170.2438350000001,9.560555000000136],[170.24801600000012,9.54472]]],[[[170.15387,9.639442],[170.1355290000001,9.63333],[170.16165200000012,9.645277],[170.15387,9.639442]]],[[[169.97161900000015,10.436386],[169.96386700000014,10.43333200000012],[169.944122,10.451109],[169.9607850000001,10.446386],[169.97161900000015,10.436386]]],[[[166.885254,11.144722],[166.867188,11.145277],[166.841339,11.153332],[166.90054,11.168610000000115],[166.885254,11.144722]]],[[[169.86691,11.23277],[169.85553,11.231941],[169.858856,11.241386],[169.86911,11.237497],[169.86691,11.23277]]],[[[162.33828700000015,11.351942],[162.326355,11.35139],[162.3235780000001,11.354164],[162.341644,11.362219],[162.33828700000015,11.351942]]],[[[167.520813,11.37777],[167.51248,11.380831],[167.51221,11.393888],[167.52609300000017,11.38666],[167.520813,11.37777]]],[[[165.55609100000015,11.615831],[165.553864,11.61111],[165.51303100000018,11.63861],[165.54721,11.634443],[165.55609100000015,11.615831]]],[[[165.2916560000001,11.700554],[165.27747,11.69666500000011],[165.27191200000013,11.706387],[165.284698,11.714165],[165.2916560000001,11.700554]]],[[[168.987732,14.58083],[168.974976,14.58111],[169.003876,14.598053],[169.00137,14.587776],[168.987732,14.58083]]]]}},{"type":"Feature","properties":{"FIPS":"SB","ISO2":"PM","ISO3":"SPM","UN":666,"NAME":"Saint Pierre and Miquelon","AREA":0,"POP2005":6346,"REGION":19,"SUBREGION":21,"LON":-56.325,"LAT":47.042},"geometry":{"type":"MultiPolygon","coordinates":[[[[-56.15083,46.758049],[-56.22028,46.74721],[-56.237221,46.76388500000012],[-56.17389,46.80999],[-56.144447,46.801384],[-56.15083,46.758049]]],[[[-56.271111,46.99416],[-56.34805,46.986382],[-56.30771,46.968151],[-56.31111,46.899719],[-56.23333,46.850273],[-56.368332,46.784721],[-56.39639,46.837212],[-56.3425,46.863052],[-56.32556,46.923882],[-56.385559,47.053047],[-56.390282,47.118881],[-56.34722,47.136658],[-56.32584,47.0886],[-56.24944,47.044716],[-56.271111,46.99416]]]]}},{"type":"Feature","properties":{"FIPS":"SH","ISO2":"SH","ISO3":"SHN","UN":654,"NAME":"Saint Helena","AREA":0,"POP2005":6399,"REGION":2,"SUBREGION":11,"LON":-5.71,"LAT":-15.953},"geometry":{"type":"MultiPolygon","coordinates":[[[[-9.892223,-40.390839],[-9.941668,-40.39667],[-10.040834,-40.341667],[-10.02861,-40.30945],[-9.95222,-40.306671],[-9.892223,-40.390839]]],[[[-12.20639,-37.112503],[-12.26583,-37.15556],[-12.33167,-37.107506],[-12.296667,-37.053612],[-12.259445,-37.05278],[-12.19361,-37.095001],[-12.20639,-37.112503]]],[[[-5.66222,-15.987501],[-5.76639,-16.02333],[-5.79306,-15.994167],[-5.70417,-15.90306],[-5.64528,-15.94],[-5.66222,-15.987501]]],[[[-14.36389,-7.97972],[-14.41222,-7.97417],[-14.38194,-7.883612],[-14.29306,-7.94528],[-14.36389,-7.97972]]]]}},{"type":"Feature","properties":{"FIPS":"SM","ISO2":"SM","ISO3":"SMR","UN":674,"NAME":"San Marino","AREA":0,"POP2005":30214,"REGION":150,"SUBREGION":39,"LON":12.46,"LAT":43.942},"geometry":{"type":"Polygon","coordinates":[[[12.415798,43.957954],[12.4625,43.984718],[12.509998,43.986938],[12.474443,43.897217],[12.412222,43.906105],[12.415798,43.957954]]]}},{"type":"Feature","properties":{"FIPS":"TK","ISO2":"TC","ISO3":"TCA","UN":796,"NAME":"Turks and Caicos Islands","AREA":0,"POP2005":24459,"REGION":19,"SUBREGION":29,"LON":-71.95,"LAT":21.902},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.14029,21.431942],[-71.150558,21.47083],[-71.135559,21.511108],[-71.12807,21.441387],[-71.14029,21.431942]]],[[[-72.460556,21.62972],[-72.45668,21.699718],[-72.433624,21.713333],[-72.42862,21.69278],[-72.460556,21.62972]]],[[[-71.4689,21.655],[-71.535,21.719444000000124],[-71.53334,21.734444],[-71.462784,21.72083],[-71.4689,21.655]]],[[[-71.65779,21.82333],[-71.63362,21.772221],[-71.65889,21.739719],[-71.718903,21.789719],[-71.827515,21.776386],[-71.85057,21.84583],[-71.65779,21.82333]]],[[[-72.26222,21.75111],[-72.30084,21.758888],[-72.327225,21.85583],[-72.247787,21.795555],[-72.26222,21.75111]]],[[[-71.88417,21.8472210000001],[-71.90167,21.827221000000122],[-72.029175,21.905],[-72.03334,21.94278],[-71.912231,21.943333],[-71.88417,21.8472210000001]]]]}},{"type":"Feature","properties":{"FIPS":"WI","ISO2":"EH","ISO3":"ESH","UN":732,"NAME":"Western Sahara","AREA":0,"POP2005":440428,"REGION":2,"SUBREGION":15,"LON":-13.706,"LAT":24.554},"geometry":{"type":"Polygon","coordinates":[[[-15.741997,21.338284],[-16.953056,21.338333],[-17.075558,20.905552],[-17.05233,20.764095],[-17.104168,20.84333],[-16.959446,21.82222],[-16.915279,21.947777],[-16.719448,22.26083],[-16.491112,22.334164],[-16.42889,22.516109],[-16.357224,22.573055],[-16.336391,22.75972],[-16.27528,22.898609],[-16.200836,22.93222],[-16.162502,22.991108],[-16.150002,23.06361],[-16.178337,23.084999],[-16.075558,23.324444],[-15.766668,23.781666],[-15.777225,23.908882],[-15.889446,23.805832],[-15.943335,23.68222],[-15.989723,23.643055],[-16.00639,23.6675],[-15.838058,23.896938],[-15.582224,24.060555],[-15.296391,24.333611],[-15.180279,24.488052],[-15.031389,24.541664],[-14.901112,24.688053],[-14.834723,24.915276],[-14.846668,25.207497],[-14.793056,25.426109],[-14.627779,25.776108],[-14.517223,25.934444],[-14.480278,26.171108],[-14.40889,26.259441],[-14.302223,26.292774],[-14.197779,26.397499],[-14.016111,26.450554],[-13.574167,26.731667],[-13.479168,26.90583],[-13.406668,27.177498],[-13.251112,27.438053],[-13.174961,27.666958],[-8.666668,27.666664],[-8.666945,26.000275],[-12.000557,26],[-12.000278,23.454441],[-12.365835,23.318607],[-12.57139,23.291386],[-12.998335,23.024719],[-13.105278,22.893055],[-13.150278,22.7575],[-13.080002,22.520275],[-12.999723,21.338055],[-15.741997,21.338284]]]}},{"type":"Feature","properties":{"FIPS":"RB","ISO2":"RS","ISO3":"SRB","UN":688,"NAME":"Serbia","AREA":0,"POP2005":9863026,"REGION":150,"SUBREGION":39,"LON":20.806,"LAT":44.032},"geometry":{"type":"Polygon","coordinates":[[[20.071423,42.560913],[20.10722,42.654442],[20.007774,42.684441],[19.980274,42.721939],[20.066666,42.773048],[20.231941,42.761108],[20.382774,42.835548],[20.348888,42.886383],[20.059719,43.005554],[19.969719,43.090553],[19.647778,43.181664],[19.511944,43.321938],[19.254719,43.459999],[19.228809,43.513214],[19.408607,43.584442],[19.480553,43.571388],[19.51083,43.679718],[19.487499,43.763329],[19.251221,43.962379],[19.237019,44.011009],[19.374165,43.965553],[19.524502,43.958939],[19.619442,44.018883],[19.620476,44.048454],[19.357952,44.209412],[19.161705,44.286011],[19.104443,44.355827],[19.123402,44.514542],[19.31361,44.70472],[19.371387,44.88916],[19.177219,44.923607],[19.039719,44.861382],[19.004444,44.904442],[19.115555,45.031944],[19.104164,45.096664],[19.163609,45.212219],[19.41111,45.174995],[19.423885,45.22583],[19.138611,45.287498],[18.980324,45.378624],[19,45.490829],[19.087837,45.489502],[19.099987,45.515869],[19.020523,45.562988],[18.955269,45.537186],[18.902496,45.570274],[18.909458,45.620758],[18.968357,45.663017],[18.958611,45.77861],[18.81702,45.912964],[18.995552,45.952499],[19.096386,46.024437],[19.155277,45.987221],[19.286388,45.989441],[19.460552,46.074165],[19.570553,46.173607],[20.200832,46.151382],[20.321388,46.063606],[20.378052,45.97805],[20.591663,45.894165],[20.713333,45.743889],[20.79583,45.769165],[20.798885,45.656662],[20.766666,45.609993],[20.808331,45.478882],[21.048885,45.316383],[21.276386,45.229721],[21.416664,45.214722],[21.513611,45.151108],[21.443054,45.053604],[21.366943,45.008331],[21.540833,44.938606],[21.558609,44.896111],[21.373055,44.868607],[21.362091,44.823143],[21.400398,44.780823],[21.588333,44.763329],[21.639721,44.660828],[21.993889,44.635551],[22.084442,44.503052],[22.146385,44.479164],[22.176941,44.481941],[22.31361,44.664162],[22.436386,44.714439],[22.604721,44.622215],[22.71722,44.602493],[22.754444,44.539719],[22.699585,44.522522],[22.590275,44.549164],[22.459999,44.482216],[22.549721,44.323051],[22.691666,44.26416],[22.619164,44.169998],[22.614719,44.117493],[22.416943,44.006943],[22.367222,43.826942],[22.543331,43.472496],[22.766666,43.385826],[22.904442,43.230827],[23.004997,43.192772],[22.966389,43.101662],[22.745552,42.893608],[22.524998,42.878609],[22.442219,42.821663],[22.44722,42.599442],[22.558887,42.487495],[22.522221,42.402222],[22.459442,42.363052],[22.365276,42.323883],[22.308609,42.360275],[22.083332,42.300552],[21.850277,42.330826],[21.721386,42.232773],[21.466663,42.265831],[21.304996,42.147774],[21.221107,42.145271],[21.116943,42.202499],[20.792774,42.082497],[20.759163,41.993332],[20.777222,41.925552],[20.713055,41.856667],[20.589642,41.882187],[20.581108,41.918884],[20.623333,41.966942],[20.524166,42.214439],[20.450832,42.278328],[20.24472,42.328606],[20.16861,42.506943],[20.071423,42.560913]]]}},{"type":"Feature","properties":{"FIPS":"VT","ISO2":"VA","ISO3":"VAT","UN":336,"NAME":"Holy See (Vatican City)","AREA":0,"POP2005":783,"REGION":150,"SUBREGION":39,"LON":12.451,"LAT":41.904},"geometry":{"type":"Polygon","coordinates":[[[12.445090330888604,41.90311752178485],[12.451653339580501,41.90798903339123],[12.456660170953795,41.90142602469916],[12.445090330888604,41.90311752178485]]]}},{"type":"Feature","properties":{"FIPS":"SV","ISO2":"SJ","ISO3":"SJM","UN":744,"NAME":"Svalbard","AREA":0,"POP2005":0,"REGION":150,"SUBREGION":154,"LON":18.374,"LAT":78.83},"geometry":{"type":"MultiPolygon","coordinates":[[[[-8.29089,70.974152],[-8.6203,70.95913700000011],[-9.00561,70.808014],[-9.071411,70.806641],[-9.12006,70.8577580000001],[-8.510866,71.01332100000013],[-8.34448,71.13665800000012],[-7.997253,71.180817],[-7.927,71.150818],[-7.99084,71.03831500000013],[-8.29089,70.974152]]],[[[19.181938000000116,74.359711],[19.069164,74.343048],[18.791943,74.481659],[19.12749,74.523605],[19.299721,74.474991],[19.181938000000116,74.359711]]],[[[25.01611,76.466385],[24.991104,76.435257],[24.936382,76.448868],[25.447495,76.698868],[25.582218,76.70665],[25.01611,76.466385]]],[[[23.285553000000107,77.264709],[23.135273,77.23526],[23.03638500000011,77.25999500000012],[23.293331,77.27554],[23.285553000000107,77.264709]]],[[[23.336109,78.197479],[23.459717,78.155823],[23.36082800000014,78.102768],[23.098885,78.08638],[23.05139,78.045532],[23.059719,78.016098],[23.636662000000115,77.865265],[23.89027,77.847488],[24.07638,77.88472],[24.33499,77.884155],[24.91027,77.74971],[24.20777,77.67553700000013],[24.002777,77.60304],[23.901108,77.503052],[23.74194,77.451096],[23.372219,77.37082],[23.083054,77.380264],[22.920273,77.338318],[22.899719,77.290543],[22.64111,77.25305200000012],[22.423607000000118,77.25722],[22.384995000000114,77.30442800000014],[22.50194,77.333328],[22.4075,77.420822],[22.692493,77.49304],[22.77833,77.54776],[22.412773,77.569153],[22.13361,77.495819],[21.595829,77.48526],[21.12055,77.434982],[20.858887,77.462494],[20.84388700000011,77.541931],[20.883331,77.567215],[21.22472,77.613602],[21.254719000000133,77.726929],[21.644997,77.9124910000001],[20.870274,78.0811000000001],[20.903049000000124,78.11499],[21.468605,78.18775900000014],[22.399162,78.192474],[22.834995000000106,78.25027],[23.336109,78.197479]]],[[[21.501663,78.565536],[21.68972,78.596649],[22.028885,78.580826],[22.239994,78.483322],[22.225273,78.33415200000013],[22.23555,78.274994],[22.27194,78.26361],[21.090275,78.19942],[20.84388700000011,78.224152],[20.671108,78.187485],[20.626942,78.198868],[20.779999,78.284424],[20.46916,78.313599],[20.68222,78.34664900000013],[20.663883,78.387207],[20.124718,78.472214],[21.05583,78.549423],[21.18277,78.61970500000012],[21.443607,78.60582],[21.501663,78.565536]]],[[[26.8475,78.707489],[27.017498000000103,78.693039],[26.939438,78.646652],[26.735828,78.623871],[26.681664000000122,78.66192600000011],[26.468884,78.699142],[26.396385,78.77083],[26.464161000000104,78.80941800000011],[26.59999800000014,78.808029],[26.8475,78.707489]]],[[[11.271944,78.606934],[11.267221,78.53804],[11.438332000000115,78.545258],[11.584164,78.476379],[11.880552000000137,78.41415400000011],[12.09916,78.28776600000015],[12.16361000000012,78.199707],[11.87527,78.23471100000012],[11.81472,78.271378],[11.851664,78.290817],[11.83528,78.307205],[11.34361,78.44470200000012],[11.073332,78.455826],[10.892221,78.621643],[10.53666,78.77388],[10.488609,78.896378],[10.82583,78.877472],[10.994164,78.83387800000014],[11.170277,78.738586],[11.11833,78.707214],[11.271944,78.606934]]],[[[29.03055,78.916092],[29.70805,78.896378],[29.28666,78.84498600000012],[28.821663,78.906097],[28.423885,78.88275],[28.095551000000114,78.811646],[28.019718000000125,78.86747700000012],[28.145275,78.91165200000012],[28.38055,78.920258],[28.428883,78.951935],[28.865551,78.95277],[29.03055,78.916092]]],[[[30.209438,78.97637900000011],[30.127495,78.968872],[30.06694,79.001099],[30.336109,78.98887600000012],[30.209438,78.97637900000011]]],[[[21.226105000000132,79.03749],[20.98249,79.01416000000012],[20.923607,79.029984],[21.173328,79.045822],[21.226105000000132,79.03749]]],[[[20.83305,79.05415],[20.707218,79.01416000000012],[20.34249,78.990814],[20.046108000000117,79.03749],[20.097218,79.117752],[20.199718,79.124695],[20.705830000000105,79.09082],[20.83305,79.05415]]],[[[20.007500000000107,79.242203],[19.954716,79.22665400000011],[20.027775,79.312759],[20.168884,79.319153],[20.007500000000107,79.242203]]],[[[20.10944,79.365814],[20.180275,79.33888],[19.701385,79.33554100000015],[19.651386,79.34664900000013],[19.62833,79.38832],[19.76388,79.40387],[20.10944,79.365814]]],[[[10.922775,79.65109300000012],[10.781666,79.650269],[10.712219000000118,79.713608],[10.945276,79.719147],[11.07611,79.66276600000015],[10.922775,79.65109300000012]]],[[[11.000555000000134,79.74026500000014],[11.013611,79.73553500000014],[10.639166000000102,79.75],[10.75611,79.7833250000001],[11.000555000000134,79.74026500000014]]],[[[16.819164000000114,79.872208],[16.897495,79.87303],[16.864719,79.92414900000011],[16.9772190000001,79.960266],[17.280552,79.936096],[17.56694,79.889984],[18.098331000000144,79.720261],[17.793888,79.612762],[17.7313840000001,79.54332],[17.765553,79.54359],[17.77528,79.421097],[17.63555,79.372482],[17.93222,79.41998300000012],[18.011387,79.462204],[18.09416,79.580826],[18.19361,79.620819],[18.35694,79.628311],[18.74249,79.53414900000013],[18.85972,79.450546],[18.876942,79.314148],[18.851387,79.248322],[18.92055,79.164154],[19.186661,79.145264],[19.348053,79.18470800000011],[19.723606,79.151093],[19.799164,79.127762],[19.906662,79.013885],[21.371941,78.86747700000012],[21.546108,78.83831800000013],[21.549164,78.767761],[21.37666300000012,78.68748],[21.386383,78.65332],[21.202496,78.66832],[21.081387,78.63721],[20.743885,78.689972],[20.558609,78.62442],[20.22916,78.643326],[19.710827,78.61499],[19.57777,78.57054],[19.66888,78.507492],[18.965549,78.4561],[19.062496,78.37719700000014],[18.999439,78.259995],[19.09222,78.095535],[18.83833,78.0291600000001],[18.552498000000128,78.055252],[18.41083,78.021652],[18.333885000000123,77.898331],[18.44721600000014,77.848328],[18.454163000000108,77.77638],[18.292774000000122,77.506378],[17.927494,77.508331],[17.738327,77.4711],[17.560829,77.346375],[17.34638600000011,77.051926],[17.09444,77.050812],[17.3186070000001,76.965546],[16.919163000000136,76.799713],[17.110275,76.75332600000013],[17.19833,76.69470200000012],[16.997215,76.595261],[16.61277,76.570541],[16.336662,76.65304600000013],[16.280552,76.708603],[15.978609,76.75027],[15.498053,76.87997],[16.011665,76.971924],[16.519718,76.998596],[16.101387,77.0186],[16.015831000000105,77.080551],[15.85972,77.0638730000001],[15.882219000000132,77.027206],[15.82778,77.01026900000011],[15.350275,77.00360100000012],[15.131664,77.056931],[15.035831,77.125259],[14.71833,77.17859],[14.46722,77.17164600000012],[14.143888,77.296371],[14.11610800000011,77.356094],[13.98111,77.402206],[13.914165,77.527771],[14.354719,77.583878],[14.53611,77.570541],[14.594721,77.528595],[14.526943,77.50193800000011],[14.558054,77.488037],[14.7325,77.491089],[14.939999,77.55304],[15.74055,77.533875],[16.223049,77.434982],[16.305553,77.471375],[15.913887,77.56499],[14.883888,77.61554000000012],[14.739164000000132,77.6586],[15.451387,77.731934],[16.800552,77.806931],[17.006107,77.931366],[16.739994,77.901657],[16.664719,77.85720800000013],[15.869719,77.827774],[15.618330000000128,77.87330600000013],[15.395277000000133,77.866379],[15.094442000000127,77.792206],[14.453331000000105,77.750549],[14.149166,77.775543],[13.941942,77.71666],[13.76111,77.727478],[13.724998,77.754166],[13.81805,77.801651],[13.676664,77.8641510000001],[13.588886,78.04942],[13.966942,78.09082],[14.23472,78.008881],[14.283333000000141,77.964432],[14.355831,77.962769],[14.347219,78.015823],[14.219719,78.0894320000001],[15.009443,78.10554500000012],[15.056665000000121,78.148605],[15.33222,78.223038],[15.735830000000133,78.22221400000012],[15.593887000000109,78.293869],[15.765833,78.33527],[16.102497,78.356369],[16.770554000000114,78.330276],[17.301662000000135,78.420258],[17.192493,78.43470800000011],[16.851387,78.38443000000011],[16.328884,78.452209],[16.542221,78.566086],[16.820553,78.642487],[16.83111,78.671921],[16.634163,78.66693],[16.522221,78.715271],[16.32083100000011,78.567764],[16.032219,78.4827580000001],[15.46416,78.45166000000012],[15.298054,78.500549],[15.19333,78.58804],[15.452776,78.63582],[15.500555000000132,78.710266],[15.48472,78.805252],[15.379997,78.844711],[15.219719,78.77192700000012],[15.1975,78.728867],[15.219997,78.675262],[15.02083,78.596939],[14.804998,78.641663],[14.845276,78.66832],[14.814720000000136,78.73082000000011],[14.53167,78.6827550000001],[14.540833000000134,78.578323],[14.385555,78.49776],[14.674721,78.43887300000011],[14.726387000000102,78.38388],[14.364998,78.386383],[14.295553,78.338593],[14.32527,78.306091],[14.111387,78.25555],[14.07111,78.28638],[13.743608,78.26082],[13.858887,78.21582],[13.82222,78.202774],[13.149443000000133,78.219437],[13.006666,78.197479],[12.911943,78.24054000000012],[12.956942,78.266098],[12.871109,78.354431],[12.699999000000105,78.363312],[12.360554,78.48027000000013],[12.929443000000106,78.4994200000001],[13.19861,78.54081700000012],[12.841108,78.52249100000012],[12.378885000000139,78.54693600000013],[11.925554,78.627197],[11.641109,78.74136],[11.740274,78.809143],[11.931665000000123,78.827774],[11.576109,78.882202],[11.33333,78.960541],[11.602497,78.97637900000011],[12.25111,78.89305100000013],[12.505554,78.90803],[12.429165000000125,78.99609],[12.041943000000117,78.969986],[11.75528,79.075821],[11.95055,79.19664],[12.05139,79.205551],[12.113052,79.295822],[11.985275,79.28610200000014],[11.835,79.2247],[11.721386,79.277481],[11.705276,79.31832900000012],[11.63861,79.319443],[11.555277,79.27832],[11.715832,79.197754],[11.714998,79.1660920000001],[11.236385,79.09304800000011],[11.188887,79.123306],[11.141388,79.237762],[10.843887,79.3647],[10.910831,79.4561000000001],[10.69778,79.51416],[10.676943000000108,79.544983],[11.180277,79.55941800000011],[10.851664,79.59471100000013],[10.986109,79.643326],[11.36610800000011,79.634995],[11.380831,79.652206],[11.205553,79.70915200000013],[11.1925,79.77221700000013],[11.533609,79.768051],[11.56972,79.81219],[11.696386000000132,79.834991],[11.839998,79.836655],[12.050831,79.685806],[12.311388,79.66192600000011],[12.341665,79.663315],[12.345276,79.713318],[12.20472,79.75055],[12.16361000000012,79.809143],[12.22472,79.8361],[12.384722000000124,79.832214],[12.596943,79.75638],[13.01472,79.82222],[13.824720000000127,79.875259],[13.957499,79.829987],[13.965553,79.766937],[13.884722,79.726379],[13.62833,79.69664],[13.01583,79.688583],[12.701387,79.597763],[12.44778,79.5663760000001],[12.60555,79.54721],[13.275,79.597488],[13.48444,79.580826],[13.419165,79.52721],[13.265276,79.514435],[13.257221,79.471375],[13.472775,79.435257],[13.436943,79.478592],[13.594442,79.484146],[13.873608,79.391937],[13.91472,79.35832],[13.88917,79.302765],[13.908054000000105,79.278595],[14.05888700000014,79.260269],[14.155832,79.338318],[13.886944,79.541367],[14.13694,79.609985],[14.515,79.799423],[14.585,79.80415],[14.860275000000115,79.76388500000013],[15.291666,79.60054000000014],[15.301109,79.52304100000015],[15.489719,79.3336],[15.790833,79.224152],[15.729719,79.18692],[15.714443,79.110809],[15.783054,79.15359500000011],[15.889442,79.157761],[16.132217,79.053864],[16.148052,78.986649],[16.334442,78.913879],[16.449997,78.90387],[16.492771,78.93526],[16.37416,78.984146],[16.291107,79.0885930000001],[16.176662,79.15332000000012],[16.144997,79.233871],[15.973886,79.324707],[15.874165,79.56415],[15.696665,79.68637100000011],[15.638054,79.827209],[15.73111,79.87359600000013],[16.130829,79.86360200000011],[15.95,79.937485],[16.048332,80.018326],[16.30777,80.062759],[16.55527500000011,80.03638],[16.72583,79.90332000000012],[16.819164000000114,79.872208]]],[[[36.849159,80.13998400000014],[36.696114,80.14169300000013],[36.59054600000013,80.154984],[36.760277,80.160812],[36.849159,80.13998400000014]]],[[[27.837776,80.11026],[27.674164,80.122757],[27.70111,80.15387],[27.82194,80.175812],[28.07444,80.14415],[27.837776,80.11026]]],[[[32.366386,80.094437],[31.44944,80.085815],[31.493607000000107,80.110809],[33.2866590000001,80.24247700000011],[33.637497,80.21331800000011],[32.366386,80.094437]]],[[[18.553329000000133,80.245529],[18.456661,80.238037],[18.119442,80.284714],[18.32027,80.362488],[18.75861,80.301926],[18.553329000000133,80.245529]]],[[[24.335831,80.384155],[24.197773,80.38333100000011],[24.128609,80.393051],[24.196941,80.454163],[24.383331,80.389709],[24.335831,80.384155]]],[[[19.933331000000123,80.477478],[20.030552,80.466095],[20.100552,80.405823],[20.41583,80.413879],[20.52777,80.320831],[20.622772,80.2916560000001],[20.834995,80.30886800000013],[20.743328000000133,80.264435],[20.826664,80.213882],[21.86055,80.26776100000012],[21.89222,80.204987],[21.59861,80.1183170000001],[21.798054,80.146942],[22.054165,80.108597],[22.226383,79.979156],[22.363884,80.001389],[22.32111,80.032211],[22.361664,80.03749],[22.44944,80.258041],[22.578609,80.298599],[22.336941000000138,80.35277],[22.36111,80.410263],[22.67944,80.42276],[22.619442,80.345261],[22.749161,80.324158],[22.88694,80.490265],[23.36082800000014,80.42942800000014],[23.12333,80.385269],[23.350273,80.336105],[23.295277,80.278046],[23.047497,80.24498],[22.999718,80.1561],[23.101387000000102,80.12082],[23.228882,80.118866],[23.086384,80.167206],[23.42944,80.20776400000011],[23.48527100000012,80.202209],[23.498329,80.185806],[23.462494000000106,80.169434],[23.53972,80.131088],[23.613052,80.14027],[23.751389,80.207214],[23.718052,80.256653],[23.76139,80.30470300000013],[24.02111,80.26805100000013],[23.89249,80.30386],[24.338051,80.283875],[24.398052,80.313309],[24.146385,80.349991],[24.189438,80.363312],[24.347775000000127,80.367752],[24.6025,80.311371],[24.481106000000125,80.29832],[24.460827,80.26776100000012],[24.5325,80.253601],[24.74055,80.293869],[24.768887,80.33471700000013],[24.836384,80.350815],[24.891663000000108,80.318329],[24.77972,80.246643],[25.351662,80.2749940000001],[25.22555,80.24776],[25.267776,80.22331200000013],[25.698883,80.21582],[25.73333,80.16859],[26.637218,80.183319],[27.221661,80.0999910000001],[27.10110900000012,79.967484],[27.24499500000013,79.90498400000013],[27.14222000000012,79.853592],[26.627773,79.77887],[26.46944,79.713608],[25.803886,79.61443],[25.97694,79.510818],[25.71472,79.405823],[25.149162,79.326385],[24.798607,79.371368],[24.281666,79.304977],[24.232494,79.22499],[24.059719,79.18692],[23.511665000000107,79.178864],[22.92666,79.21915],[22.64111,79.313034],[22.65583,79.359985],[22.837498,79.40748600000012],[22.146385,79.405823],[21.72805,79.363037],[21.374996,79.39498900000012],[20.794998000000135,79.373871],[20.743328000000133,79.459427],[20.223328,79.46027],[19.686108,79.548599],[19.635551000000135,79.603867],[20.188885,79.642212],[20.424995,79.58943],[21.12305,79.55941800000011],[21.155273,79.567764],[20.65416,79.61998000000011],[20.476662,79.679977],[21.09249,79.713608],[21.839165,79.70277],[21.868885,79.71666],[21.836662,79.730545],[21.881664000000114,79.743866],[22.34444,79.783051],[22.312496,79.796936],[21.795551,79.76388500000013],[21.734440000000117,79.78137200000015],[21.89027,79.81694],[21.66416,79.834152],[20.335552,79.791092],[19.54222,79.7102660000001],[19.402218,79.737198],[18.771385,79.71748400000013],[18.583054,79.78943],[18.47166,79.782761],[18.154163,79.90998800000011],[18.805832,79.96999],[18.809441,79.99470500000012],[18.736107,80.02388],[18.23972,80.042206],[18.153606,80.07415800000011],[18.366386,80.077484],[18.062775,80.12608],[17.783054,80.12776200000013],[18.03833,80.185257],[18.594162,80.18470800000011],[18.71027400000014,80.156937],[18.76611,80.18166],[18.755276,80.201096],[19.340553,80.08638000000013],[19.584164,80.15138200000013],[19.209995,80.197754],[18.979996000000142,80.336655],[19.330276,80.325272],[19.614719,80.220535],[19.837776,80.213882],[19.807220000000143,80.231094],[19.812775,80.275818],[19.916939,80.37525900000014],[19.4847180000001,80.389709],[19.46333,80.45471],[19.66888,80.501663],[19.933331000000123,80.477478]]],[[[24.265,80.4711],[24.159439,80.47053],[23.974438,80.49054],[24.174995,80.50915500000013],[24.292774,80.481369],[24.265,80.4711]]],[[[19.933331000000123,80.477478],[19.844719,80.503052],[19.98666,80.537201],[20.13028,80.512772],[19.933331000000123,80.477478]]],[[[20.753609,80.621368],[20.72666,80.61914100000011],[20.49916,80.657761],[20.793331,80.64749],[20.753609,80.621368]]],[[[21.330276,80.700272],[21.364998,80.67886],[21.113052,80.64942900000011],[21.026386,80.681656],[21.330276,80.700272]]],[[[20.819164,80.719147],[21.006664,80.70138],[20.833607,80.67414900000011],[20.518330000000105,80.75999500000012],[20.819164,80.719147]]]]}},{"type":"Feature","properties":{"FIPS":"RN","ISO2":"MF","ISO3":"MAF","UN":663,"NAME":"Saint Martin","AREA":0,"POP2005":0,"REGION":19,"SUBREGION":29,"LON":-63.041,"LAT":18.094},"geometry":{"type":"Polygon","coordinates":[[[-63.00667,18.080555],[-63.13984,18.058601],[-63.14667,18.071941],[-63.03917,18.121944],[-63.00667,18.080555]]]}},{"type":"Feature","properties":{"FIPS":"TB","ISO2":"BL","ISO3":"BLM","UN":652,"NAME":"Saint Barthelemy","AREA":0,"POP2005":0,"REGION":19,"SUBREGION":29,"LON":-63.043,"LAT":18.04},"geometry":{"type":"Polygon","coordinates":[[[-63.02834,18.01555],[-63.07917,18.02666],[-63.13984,18.058601],[-63.01146,18.06728],[-63.02834,18.01555]]]}},{"type":"Feature","properties":{"FIPS":"GK","ISO2":"GG","ISO3":"GGY","UN":831,"NAME":"Guernsey","AREA":0,"POP2005":0,"REGION":150,"SUBREGION":154,"LON":-2.576,"LAT":49.459},"geometry":{"type":"Polygon","coordinates":[[[-2.59083,49.422493],[-2.670278,49.43416600000012],[-2.501667,49.507774],[-2.52667,49.42749800000012],[-2.59083,49.422493]]]}},{"type":"Feature","properties":{"FIPS":"JE","ISO2":"JE","ISO3":"JEY","UN":832,"NAME":"Jersey","AREA":0,"POP2005":0,"REGION":150,"SUBREGION":154,"LON":-2.129,"LAT":49.219},"geometry":{"type":"Polygon","coordinates":[[[-2.015,49.214165],[-2.02111,49.1772160000001],[-2.06694,49.167770000000125],[-2.133056,49.19861],[-2.205278,49.18083],[-2.24722,49.253052],[-2.04139,49.243889],[-2.015,49.214165]]]}},{"type":"Feature","properties":{"FIPS":"SX","ISO2":"GS","ISO3":"SGS","UN":239,"NAME":"South Georgia South Sandwich Islands","AREA":0,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":-36.891,"LAT":-54.209},"geometry":{"type":"MultiPolygon","coordinates":[[[[-27.32584,-59.427223],[-27.298058,-59.47306],[-27.412502,-59.43445],[-27.379169,-59.42278],[-27.32584,-59.427223]]],[[[-26.582779,-59.07001],[-26.628891,-59.06473],[-26.665001,-59.02584],[-26.585556,-58.998062],[-26.501114,-59.03695],[-26.582779,-59.07001]]],[[[-26.246391,-58.407501],[-26.24889,-58.49861],[-26.45917,-58.42722],[-26.41667,-58.38361],[-26.246391,-58.407501]]],[[[-26.41278,-57.80806],[-26.49917,-57.79778],[-26.512222,-57.77112],[-26.44334,-57.743896],[-26.39,-57.78861],[-26.41278,-57.80806]]],[[[-26.660835,-57.08639],[-26.68611,-57.08861],[-26.72889,-57.06278],[-26.675835,-57.056396],[-26.660835,-57.08639]]],[[[-27.10861,-56.717506],[-27.20528,-56.71973],[-27.209724,-56.69361],[-27.12945,-56.682228],[-27.09167,-56.69528],[-27.10861,-56.717506]]],[[[-27.563892,-56.320557],[-27.60528,-56.30083],[-27.600002,-56.281113],[-27.54945,-56.27417],[-27.563892,-56.320557]]],[[[-37.038612,-54.51167],[-37.083618,-54.512779],[-37.105835,-54.471115],[-37.04333,-54.481392],[-37.01973,-54.50194],[-37.038612,-54.51167]]],[[[-37.495003,-54.01056],[-37.373894,-54.04806],[-37.16278,-54.03139],[-36.65639,-54.10778],[-36.58417,-54.20889],[-36.67278,-54.246117],[-36.671394,-54.27278],[-36.48528,-54.23584],[-36.456116,-54.32751],[-36.346115,-54.361671],[-36.397507,-54.24695],[-36.288063,-54.2664],[-36.229172,-54.33778],[-36.25528,-54.37694],[-36.16,-54.444725],[-36.095,-54.55195],[-35.979729,-54.5789],[-35.93472,-54.623062],[-35.93028,-54.705284],[-35.7825,-54.765556],[-35.918892,-54.813614],[-36.09972,-54.763618],[-35.92028,-54.85612],[-36.115837,-54.88722],[-36.51973,-54.49834],[-36.808891,-54.449722],[-36.80195,-54.403061],[-36.863617,-54.34584],[-36.99972,-54.34862],[-37.14612,-54.261391],[-37.41139,-54.26833],[-37.406952,-54.18639],[-37.23945,-54.14778],[-37.495003,-54.129723],[-37.56778,-54.1425],[-37.529449,-54.162506],[-37.655006,-54.181671],[-37.71751,-54.143059],[-37.72028,-54.097778],[-37.616394,-54.042778],[-38.03306,-54.048889],[-38.02251,-54.00639],[-37.910278,-53.989723],[-37.495003,-54.01056]]]]}},{"type":"Feature","properties":{"FIPS":"TW","ISO2":"TW","ISO3":"TWN","UN":158,"NAME":"Taiwan","AREA":0,"POP2005":0,"REGION":0,"SUBREGION":0,"LON":120.946,"LAT":23.754},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.576393,22.00139],[121.505257,22.034164],[121.490257,22.07861],[121.546944,22.078053],[121.576393,22.00139]]],[[[119.66943400000014,23.549999],[119.59027100000014,23.510555000000124],[119.52670300000011,23.53546100000011],[119.57415800000012,23.5325],[119.55165,23.584721],[119.59832800000014,23.606941],[119.66943400000014,23.549999]]],[[[118.223602,24.404163],[118.207489,24.412495],[118.241364,24.445827],[118.249153,24.42166],[118.223602,24.404163]]],[[[118.419144,24.395828],[118.295258,24.388329],[118.27554,24.399162],[118.401657,24.52166],[118.451103,24.465549],[118.419144,24.395828]]],[[[121.73471,25.138885],[121.881653,25.114719],[122.00221,25.006943],[121.91388,24.95999],[121.81694000000016,24.847775],[121.79971,24.756664],[121.849426,24.59222],[121.83971,24.476383000000112],[121.780548,24.42638],[121.772491,24.301661],[121.60498,24.080551],[121.59637,23.899998],[121.49637,23.48527100000012],[121.35555,23.087498],[121.16805,22.762497],[121.07944,22.70916],[120.96971,22.568329],[120.87331,22.323608],[120.88247700000011,22.039440000000127],[120.824158,21.927773000000116],[120.716377,21.92805],[120.677757,22.17194],[120.61026,22.3127750000001],[120.505547,22.422497],[120.37719700000012,22.483330000000137],[120.34554300000013,22.50389],[120.307083,22.540436],[120.33089,22.52117],[120.24025700000014,22.649441],[120.25166300000011,22.689995000000124],[120.13554,23.02277400000014],[120.05275700000014,23.044998],[120.09999100000014,23.093887],[120.05748,23.158886],[120.148331,23.327221],[120.11137,23.620274],[120.694702,24.59638600000011],[120.8716,24.73999],[121.00916300000017,25.008888],[121.1947020000001,25.109997000000135],[121.39055,25.15888600000011],[121.44111,25.1291],[121.39498900000011,25.186939],[121.51805100000013,25.282776],[121.598038,25.26722],[121.73471,25.138885]]],[[[119.92942800000014,26.134995],[119.909416,26.159439],[119.95247700000017,26.159996],[119.948318,26.14527500000014],[119.92942800000014,26.134995]]],[[[119.96720900000012,26.187496000000124],[119.956383,26.215549],[120.006104,26.219162],[120.005547,26.19694],[119.96720900000012,26.187496000000124]]]]}}]} \ No newline at end of file diff --git a/Google_Translate/requirements.txt b/Google_Translate/requirements.txt deleted file mode 100644 index 63f52867..00000000 --- a/Google_Translate/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -googletrans==4.0.0-rc1 \ No newline at end of file diff --git a/Google_Translate/translate.py b/Google_Translate/translate.py deleted file mode 100644 index 60217680..00000000 --- a/Google_Translate/translate.py +++ /dev/null @@ -1,32 +0,0 @@ -from googletrans import Translator, LANGUAGES -translator = Translator() - -language_options = LANGUAGES.items() -language_codes = [] -language_names = [] - -def errors(): - print('Unknown Language. Wisely choose from this') - print(f"Language Codes {language_codes}\n") - print(f'Or from Language Names \n {language_names}') - -for options in language_options: - language_codes.append(options[0]) - language_names.append(options[1].lower()) - - -translating_from = input("Enter the language you want to translate from\n").lower() -word = input('Enter the word\n').lower() -translating_to = input("Enter the language you want to translate to\n").lower() - -try: - - if translating_from and translating_to in language_codes or language_names: - translation = translator.translate(word,src=translating_from, dest=translating_to).text - - print(translation.capitalize()) - else: - errors() -except: - print("Something went wrong or \n") - errors() \ No newline at end of file diff --git a/HangMan/HangMan.py b/HangMan/HangMan.py deleted file mode 100644 index 3ab37f5a..00000000 --- a/HangMan/HangMan.py +++ /dev/null @@ -1,64 +0,0 @@ -import random - -# Function to check if a character is a valid lowercase letter -def is_valid_guess(guess): - return guess.isalpha() and guess.islower() and len(guess) == 1 - -# Function to display the current state of the word with placeholders for unguessed letters -def display_word(secret_word, guessed): - for letter in secret_word: - if letter in guessed: - print(letter, end=" ") - else: - print("_", end=" ") - print() - -# Function to generate a random word from a file -def get_random_word_from_file(filename): - with open(filename, "r") as file: - words = file.readlines() - return random.choice(words).strip().lower() - -def main(): - secret_word = get_random_word_from_file("words.txt") - guessed = set() - max_attempts = 6 - attempts = 0 - - print("Welcome to Hangman!") - print("Try to guess the word!") - - while attempts < max_attempts: - print("Word:", end=" ") - display_word(secret_word, guessed) - - guess = input("Guess a letter: ").lower() - - if not is_valid_guess(guess): - print("Invalid guess. Please enter a lowercase letter.") - continue - - if guess in guessed: - print("You've already guessed that letter.") - continue - - guessed.add(guess) - - if guess not in secret_word: - attempts += 1 - print("Incorrect guess. Attempts remaining:", max_attempts - attempts) - elif all(letter in guessed for letter in secret_word): - print("Congratulations! You've guessed the word:", secret_word) - break - - if attempts == max_attempts: - print("Sorry, you've run out of attempts. The word was:", secret_word) - - play_again = input("Do you want to play again? (Y/N): ").lower() - if play_again == 'y': - main() - else: - print("Thanks for playing!") - -if __name__ == "__main__": - main() diff --git a/HangMan/README.md b/HangMan/README.md deleted file mode 100644 index d2604d79..00000000 --- a/HangMan/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Hangman Game in Python - -This is a simple Hangman game implemented in Python. - -## Overview - -The Hangman game is a word guessing game where the player tries to guess a secret word by suggesting letters within a limited number of attempts. The player wins if they successfully guess all letters in the word before running out of attempts, otherwise, they lose. - -## Features - -- Random word selection from a file containing a list of words -- Input validation for letter guesses -- Display of the current state of the word with placeholders -- Tracking of guessed letters and remaining attempts -- Winning and losing conditions based on successful guesses and attempts -- Option to play again after each game - -## Usage - -1. **Clone the Repository**: Clone this repository to your local machine. - -2. **Prepare the Words File**: Create a text file named `words.txt` in the same directory as the Python script. Add a list of words, with each word on a separate line. - -3. **Run the Script**: Run the Python script `hangman.py`: - -4. **Follow On-screen Instructions**: Follow the on-screen instructions to play the game: - -- Guess a letter to reveal the word. -- Continue guessing until you win or run out of attempts. -- Choose to play again after each game. - -## Contributing - -Contributions are welcome! Feel free to fork the repository, make changes, and submit a pull request. - -## License - -This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. diff --git a/HangMan/words.txt b/HangMan/words.txt deleted file mode 100644 index 51cb10a7..00000000 --- a/HangMan/words.txt +++ /dev/null @@ -1,100 +0,0 @@ -ambiguous -plan -ancient -lacking -report -obey -jobless -habitual -spare -summer -colorful -satisfy -thoughtless -numberless -conscious -buzz -unlock -belong -oven -spiteful -threatening -cause -jog -slow -loss -soap -acceptable -agreeable -avoid -calm -fair -permissible -real -eggnog -cruel -religion -roomy -highfalutin -grip -two -knee -zebra -servant -flimsy -heady -part -green -didactic -border -loaf -false -super -digestion -flight -tacit -squeal -cultured -run -mundane -harbor -organic -comparison -sulky -statuesque -ruin -chalk -tenuous -high-pitched -ground -grieving -condemned -discover -heat -pigs -serious -happy -silky -unwritten -rustic -cautious -insurance -friends -cloistered -breezy -forgetful -flat -absorbed -cheerful -different -heap -arrest -system -caption -fantastic -wheel -quizzical -dime -poor -remarkable -kindly \ No newline at end of file diff --git a/Hangman_Game/README.md b/Hangman_Game/README.md deleted file mode 100644 index 55325b3a..00000000 --- a/Hangman_Game/README.md +++ /dev/null @@ -1,28 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Hangman Game -

- - -## 🛠️ Description - -A hangman game simulator using Python in which the player have 10 attempts to guess the phrase before the men is hung. - -## ⚙️ Languages or Frameworks Used -You only need Python to run this script. You can visit [here](https://www.python.org/downloads/) to download Python. - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python hangman.py -``` -## 📺 Demo -

- - -## 🤖 Author -[Leah Nguyen](https://github.com/ndleah) diff --git a/Hangman_Game/hangman.py b/Hangman_Game/hangman.py deleted file mode 100644 index 75aab020..00000000 --- a/Hangman_Game/hangman.py +++ /dev/null @@ -1,94 +0,0 @@ -import random - -def hangman(): - word = random.choice(["tiger", "superman", "thor", "doraemon", "avenger", "water", "stream"]) - validletter = 'abcdefghijklmnopqrstuvwxyz' - turns = 10 - guessmade = '' - while len(word) > 0: - main = "" - missed = 0 - for letter in word: - if letter in guessmade: - main = main + letter - else: - main = main + "_" + " " - if main == word: - print(main) - print("You win!") - break - print("Guess the word:", main) - guess = input().casefold() - - if guess in validletter: - guessmade = guessmade + guess - else: - print("Enter a valid character") - guess = input() - if guess not in word: - turns = turns - 1 - if turns == 9: - print("9 turns left") - print(" -------- ") - if turns == 8: - print("8 turns left") - print(" --------- ") - print(" O ") - if turns == 7: - print("7 turns left") - print(" --------- ") - print(" O ") - print(" | ") - if turns == 6: - print("6 turns left") - print(" --------- ") - print(" O ") - print(" | ") - print(" / ") - if turns == 5: - print("5 turns left") - print(" --------- ") - print(" O ") - print(" | ") - print(r" / \ ") - if turns == 4: - print("4 turns left") - print(" --------- ") - print(r" \ O ") - print(" | ") - print(r" / \ ") - if turns == 3: - print("3 turns left") - print(" --------- ") - print(r" \ O / ") - print(" | ") - print(r" / \ ") - if turns == 2: - print("2 turns left") - print(" --------- ") - print(r" \ O /| ") - print(" | ") - print(r" / \ ") - if turns == 1: - print("1 turns left") - print("Last breaths counting. Take care!") - print(" --------- ") - print(r" \ O_|/ ") - print(" | ") - print(r" / \ ") - - if turns == 0: - print("You lose") - print("You let a kind man die") - print(" --------- ") - print(" O_| ") - print(r" /|\ ") - print(r" / \ ") - break - -name = input("Enter your name: ") -print(f"Welcome {name}") -print("=====================") -print("Try to guess it less than 10 attempts") -hangman() -print() diff --git a/Hashed_and_Salted_Pass/hashing_and_salting.py b/Hashed_and_Salted_Pass/hashing_and_salting.py deleted file mode 100644 index 5b648ae2..00000000 --- a/Hashed_and_Salted_Pass/hashing_and_salting.py +++ /dev/null @@ -1,30 +0,0 @@ -import string -import random -import hashlib - - -def hashing(password): - byte_string = password.encode('utf-8') - hash_object = hashlib.sha256() - hash_object.update(byte_string) - - hashed_password = hash_object.hexdigest() - - return hashed_password - -def salting(length:int): - salt = '' - salt = salt.join(random.choice(string.ascii_letters + string.digits) for _ in range(length)) - - return salt - -if __name__ == '__main__': - salt = salting(4) - password = input("Enter your password\n") - - hashed_password = hashing(password) - hashed_salt = hashing(salt) - secure_password = f"{hashed_salt}${hashed_password}" - - print(secure_password) - \ No newline at end of file diff --git a/Hashed_and_Salted_Pass/requirements.txt b/Hashed_and_Salted_Pass/requirements.txt deleted file mode 100644 index 6f6c9c42..00000000 --- a/Hashed_and_Salted_Pass/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -string -random -hashlib \ No newline at end of file diff --git a/IMG/.DS_Store b/IMG/.DS_Store deleted file mode 100644 index 69e9d74c..00000000 Binary files a/IMG/.DS_Store and /dev/null differ diff --git a/IMG/Bootcamp-Fork.png b/IMG/Bootcamp-Fork.png deleted file mode 100644 index 0c858f6d..00000000 Binary files a/IMG/Bootcamp-Fork.png and /dev/null differ diff --git a/IMG/Donut.png b/IMG/Donut.png deleted file mode 100644 index be8874f4..00000000 Binary files a/IMG/Donut.png and /dev/null differ diff --git a/IMG/Matchmaker.gif b/IMG/Matchmaker.gif deleted file mode 100644 index 8863bf9d..00000000 Binary files a/IMG/Matchmaker.gif and /dev/null differ diff --git a/IMG/Rock_Paper_Scissors_Lizard_Spock_demo.png b/IMG/Rock_Paper_Scissors_Lizard_Spock_demo.png deleted file mode 100644 index 6b36bf90..00000000 Binary files a/IMG/Rock_Paper_Scissors_Lizard_Spock_demo.png and /dev/null differ diff --git a/IMG/Snake_game.png b/IMG/Snake_game.png deleted file mode 100644 index ace01c0d..00000000 Binary files a/IMG/Snake_game.png and /dev/null differ diff --git a/IMG/Sudoku_solver.jpg b/IMG/Sudoku_solver.jpg deleted file mode 100644 index 88610e35..00000000 Binary files a/IMG/Sudoku_solver.jpg and /dev/null differ diff --git a/IMG/Youtube_video_download.png b/IMG/Youtube_video_download.png deleted file mode 100644 index dfe934e9..00000000 Binary files a/IMG/Youtube_video_download.png and /dev/null differ diff --git a/IMG/aiming.svg b/IMG/aiming.svg deleted file mode 100644 index f5629a2a..00000000 --- a/IMG/aiming.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/IMG/bookmark.svg b/IMG/bookmark.svg deleted file mode 100644 index 0a0c4e08..00000000 --- a/IMG/bookmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/IMG/caesar-cipher.png b/IMG/caesar-cipher.png deleted file mode 100644 index 4fcb61da..00000000 Binary files a/IMG/caesar-cipher.png and /dev/null differ diff --git a/IMG/calculator.gif b/IMG/calculator.gif deleted file mode 100644 index 355f3f54..00000000 Binary files a/IMG/calculator.gif and /dev/null differ diff --git a/IMG/caterpillar.gif b/IMG/caterpillar.gif deleted file mode 100644 index 2b570c17..00000000 Binary files a/IMG/caterpillar.gif and /dev/null differ diff --git a/IMG/chess.jpg b/IMG/chess.jpg deleted file mode 100644 index 4b95c925..00000000 Binary files a/IMG/chess.jpg and /dev/null differ diff --git a/IMG/currency_converter_demo.png b/IMG/currency_converter_demo.png deleted file mode 100644 index 61ebdebc..00000000 Binary files a/IMG/currency_converter_demo.png and /dev/null differ diff --git a/IMG/dict.gif b/IMG/dict.gif deleted file mode 100644 index 65d1dfa4..00000000 Binary files a/IMG/dict.gif and /dev/null differ diff --git a/IMG/download-code.png b/IMG/download-code.png deleted file mode 100644 index 37bf9cc4..00000000 Binary files a/IMG/download-code.png and /dev/null differ diff --git a/IMG/ds.gif b/IMG/ds.gif deleted file mode 100644 index 3fef15ad..00000000 Binary files a/IMG/ds.gif and /dev/null differ diff --git a/IMG/eggcatcher.gif b/IMG/eggcatcher.gif deleted file mode 100644 index c5e92ebe..00000000 Binary files a/IMG/eggcatcher.gif and /dev/null differ diff --git a/IMG/expense_tracker.png b/IMG/expense_tracker.png deleted file mode 100644 index 1ea1a7a4..00000000 Binary files a/IMG/expense_tracker.png and /dev/null differ diff --git a/IMG/game-ps.svg b/IMG/game-ps.svg deleted file mode 100644 index a8c0f278..00000000 --- a/IMG/game-ps.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/IMG/geo_plot.gif b/IMG/geo_plot.gif deleted file mode 100644 index 0796ecc8..00000000 Binary files a/IMG/geo_plot.gif and /dev/null differ diff --git a/IMG/hangman.gif b/IMG/hangman.gif deleted file mode 100644 index e54cb419..00000000 Binary files a/IMG/hangman.gif and /dev/null differ diff --git a/IMG/like.svg b/IMG/like.svg deleted file mode 100644 index 65686f90..00000000 --- a/IMG/like.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/IMG/main.gif b/IMG/main.gif deleted file mode 100644 index 8ec7015a..00000000 Binary files a/IMG/main.gif and /dev/null differ diff --git a/IMG/mhttp_client.gif b/IMG/mhttp_client.gif deleted file mode 100644 index edf6dac7..00000000 Binary files a/IMG/mhttp_client.gif and /dev/null differ diff --git a/IMG/mhttp_server.gif b/IMG/mhttp_server.gif deleted file mode 100644 index 2b0d8f28..00000000 Binary files a/IMG/mhttp_server.gif and /dev/null differ diff --git a/IMG/muscle.svg b/IMG/muscle.svg deleted file mode 100644 index 7107c992..00000000 --- a/IMG/muscle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/IMG/nasa.gif b/IMG/nasa.gif deleted file mode 100644 index 86b528b7..00000000 Binary files a/IMG/nasa.gif and /dev/null differ diff --git a/IMG/pet.gif b/IMG/pet.gif deleted file mode 100644 index 1a07ca87..00000000 Binary files a/IMG/pet.gif and /dev/null differ diff --git a/IMG/plotly_2017.png b/IMG/plotly_2017.png deleted file mode 100644 index fa628a95..00000000 Binary files a/IMG/plotly_2017.png and /dev/null differ diff --git a/IMG/plotter_datacreated.gif b/IMG/plotter_datacreated.gif deleted file mode 100644 index 21f96ca7..00000000 Binary files a/IMG/plotter_datacreated.gif and /dev/null differ diff --git a/IMG/plotter_dataplot.gif b/IMG/plotter_dataplot.gif deleted file mode 100644 index f22c2935..00000000 Binary files a/IMG/plotter_dataplot.gif and /dev/null differ diff --git a/IMG/plotter_dfhead.gif b/IMG/plotter_dfhead.gif deleted file mode 100644 index 955df02e..00000000 Binary files a/IMG/plotter_dfhead.gif and /dev/null differ diff --git a/IMG/plotter_graph.gif b/IMG/plotter_graph.gif deleted file mode 100644 index 5ac543b6..00000000 Binary files a/IMG/plotter_graph.gif and /dev/null differ diff --git a/IMG/pong.png b/IMG/pong.png deleted file mode 100644 index c9d58f82..00000000 Binary files a/IMG/pong.png and /dev/null differ diff --git a/IMG/pull-request.png b/IMG/pull-request.png deleted file mode 100644 index fe93d884..00000000 Binary files a/IMG/pull-request.png and /dev/null differ diff --git a/IMG/sqlite-crud.png b/IMG/sqlite-crud.png deleted file mode 100644 index c69e850f..00000000 Binary files a/IMG/sqlite-crud.png and /dev/null differ diff --git a/IMG/star.svg b/IMG/star.svg deleted file mode 100644 index 0599f415..00000000 --- a/IMG/star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/IMG/tictactoe.gif b/IMG/tictactoe.gif deleted file mode 100644 index e1fe28d1..00000000 Binary files a/IMG/tictactoe.gif and /dev/null differ diff --git a/IMG/vivekScreen01.png b/IMG/vivekScreen01.png deleted file mode 100644 index 2ba4454f..00000000 Binary files a/IMG/vivekScreen01.png and /dev/null differ diff --git a/IMG/vivekScreen02.png b/IMG/vivekScreen02.png deleted file mode 100644 index 4bea50cb..00000000 Binary files a/IMG/vivekScreen02.png and /dev/null differ diff --git a/IMG/world_map.png b/IMG/world_map.png deleted file mode 100644 index b262beb0..00000000 Binary files a/IMG/world_map.png and /dev/null differ diff --git a/IMG/xls_to_xlsx.png b/IMG/xls_to_xlsx.png deleted file mode 100644 index 56bdf783..00000000 Binary files a/IMG/xls_to_xlsx.png and /dev/null differ diff --git a/IP_Locator/LocateIP.py b/IP_Locator/LocateIP.py deleted file mode 100644 index 29708235..00000000 --- a/IP_Locator/LocateIP.py +++ /dev/null @@ -1,91 +0,0 @@ -# Import necessary modules -import subprocess -import platform -import requests -import pyfiglet -import json -import os -import re - - -def locate_ip(): - """ - Locate an IP address using an API. - """ - # Clear the terminal - if platform.system().lower() == 'windows': - command = "cls" - else: - command = "clear" - subprocess.call(command, shell=True) - - # Banner of the tool. - banner = pyfiglet.figlet_format("IP LOCATER") - print(banner) - - # A pattern to validate an IP address - IP_PATTERN = r"^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$" - - # Get the IP address. - # if it matches the IP pattern, then it is valid. - # If not, raise an error message and try again. - while True: - IP_address = input("\nEnter a valid IP address: ") - if IP_address.lower() == 'q': - quit() - if not re.match(IP_PATTERN, IP_address): - print("Invalid IP address.") - else: - break - - # Change the current working directory to system's desktop - os.chdir(rf"C:\Users\{os.getlogin()}\Desktop") - - # Files to save IP data - filename_json = "ip_data.json" - filename_text = "ip_data.txt" - - # The files containing IP data will have these fields - fields = "status,message,continent,continentCode,country,countryCode,region,regionName,city,district,zip,lat,lon,timezone,currency,isp,org,as,mobile,proxy,hosting,query" - - # Send a request to the API - url = f"http://ip-api.com/json/{IP_address}?fields={fields}" - response = requests.get(url) - - # Write the extracted data to files - with open(filename_json, 'w') as ip_data_file_json: - json.dump(response.json(), ip_data_file_json, indent=4) - - with open(filename_text, 'w') as ip_data_file_text: - ip_data_file_text.write(response.text) - - # Let the user know that files created on the system's desktop. - print("You got the files containing data about the given IP address.") - print("Please check your system desktop.") - input("\nPress any key to continue...") - -def get_ip(): - """ - Get the IP of a certain domain name. - """ - # Clear the terminal - if platform.system().lower() == 'windows': - command = "cls" - else: - command = "clear" - subprocess.call(command, shell=True) - - # Banner of the tool. - banner = pyfiglet.figlet_format("IP FINDER") - print(banner) - - # Get the domain name - domain_name = input("Enter a domain name: ") - - if domain_name.lower() == 'q': - quit() - else: - command = f"nslookup {domain_name}" - - subprocess.call(command) == 0 - input("\nPress any key to continue...") diff --git a/IP_Locator/README.md b/IP_Locator/README.md deleted file mode 100644 index 99a2a635..00000000 --- a/IP_Locator/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# IP Tools - -## Description -Tools: -- IP Locater -- IP Finder - -IP Locater extracts data of an IP address. - -IP Finder gets the IP of a domain name. - -## Languages Used -This tool is written in Python 3. - -Modules Used: -- pyfiglet -- requests - -## How To Run -Clone the project using git: - -`git clone https://github.com/BazarganDev/python-mini-project.git` - -Go to project `IP_Locater` - -Install the required modules using pip: - -`pip install -r requirements.txt` - -run `main.py` - -## Demo -![screenshot](https://github.com/BazarganDev/python-mini-project/assets/124906353/cc148ef9-ecf8-4321-b2cd-70518c890a02) - -## Author -[Mohammad Bazargan](https://github.com/BazarganDev) diff --git a/IP_Locator/main.py b/IP_Locator/main.py deleted file mode 100644 index 6669013f..00000000 --- a/IP_Locator/main.py +++ /dev/null @@ -1,97 +0,0 @@ -# Import necessary modules -import subprocess -import LocateIP - - -def Display_Menu(): - header = """ - __________________________ - | IP Locater | - | IP Finder | - |___________ ___________| - \ \ - ^_ _^ - (o o)\_________ - (_ _)\ )/\/ - U ||----W|| - || || - ### Tools: - [1] Locate an IP address - [2] Get the IP address of a domain - [3] Exit - - * Type to clear previous commands - * Type or to abort operation of a tool - """ - print(header) - -def option_1(): - """ - Option 1 --> IP Locater - """ - LocateIP.locate_ip() - Display_Menu() - Home() - -def option_2(): - """ - Option 2 --> IP Finder - """ - LocateIP.get_ip() - Display_Menu() - Home() - -def option_3(): - """ - Option 3 --> Exit the program - """ - quit() - - -def Home(): - """ - Home of the program is selecting an option from available options. - """ - # Available options' numbers as shown in the menu - available_options = (1, 2, 3) - - # Get the option's number. - # If it is wrong, this while loop will run unless it gets - # a proper number that is related with one of the available options. - while True: - try: - selected_option = input("\nEnter your option\n>>> ") - # In order to clear the mess created by the previous commands, - # we define 'clear' command to clear up the screen from previous commands. - if selected_option == 'clear': - subprocess.call('cls', shell=True) - Display_Menu() - continue - else: - selected_option = int(selected_option) - except ValueError: - print("Please enter the number of the option") - continue - else: - # If the given option number is not available, try to get an available option number. - if selected_option not in available_options: - print("The option is not available.\nTry another one.") - continue - else: - break - - # Operate the option related to the given number - if selected_option == 1: - option_1() - elif selected_option == 2: - option_2() - elif selected_option == 3: - option_3() - - -# Run the program -def Start_Program(): - Display_Menu() - Home() - -Start_Program() \ No newline at end of file diff --git a/IP_Locator/requirements.txt b/IP_Locator/requirements.txt deleted file mode 100644 index c5cd276f..00000000 --- a/IP_Locator/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -pyfiglet -requests \ No newline at end of file diff --git a/Image_compressor/README.md b/Image_compressor/README.md deleted file mode 100644 index 03af3736..00000000 --- a/Image_compressor/README.md +++ /dev/null @@ -1,29 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Image Compressor - -## 🛠️ Description - -The image resizer takes in an image and reduces it's disk size according to the quality you choose, the compressed image is saved in the folder of the orignal image - - - -## ⚙️ Languages or Frameworks Used - -Modules required to be able to use the script successfully -`pillow`, `os`, `easygui` - -These modules are listed in `requirements.txt` and can be installed by running the following command `pip install requirements.txt` - -## 🌟 How to run - -:Simply run the script - - -## 🤖 Author - -If you have any doubts or tips feel free to ping me on discord -dumb_potato#1734 - diff --git a/Image_compressor/image_compressor.py b/Image_compressor/image_compressor.py deleted file mode 100644 index 30730be7..00000000 --- a/Image_compressor/image_compressor.py +++ /dev/null @@ -1,36 +0,0 @@ -from PIL import Image -import os -import easygui -from easygui import * - -def resizer(): - print("Please select the image you want to compress") - image_file = easygui.fileopenbox() - filepath = os.path.join(os.getcwd(), image_file) - - filename, filextension = os.path.splitext(image_file) - img = Image.open(filepath) - text = "Enter quality on a scale of 10 to 100 (default value is 50)" - - if filextension == ".jpeg" or filextension == ".jpg": - qual = integerbox(text,50,lowerbound=10,upperbound=100) - img.save( - filename + "_compressed" + ".jpeg", - "JPEG", - optimize= True, - quality = qual - ) - msgbox("Your compressed image has been saved in the orignal image folder") - - elif filextension == ".png": - img.convert("P", palette=Image.ADAPTIVE,colors=256) - img.save(filename+"_compressed"+".png",optimize=True,quality = 10) - msgbox("Please note that due to the file format being png it may not get compressed much") - msgbox("Your compressed image has been saved in the orignal image folder") - - else: - print("Invalid filetype") - - return - -resizer() \ No newline at end of file diff --git a/Image_compressor/requirements.txt b/Image_compressor/requirements.txt deleted file mode 100644 index cd4c0fc0..00000000 --- a/Image_compressor/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -os -pillow -easygui \ No newline at end of file diff --git a/Investment Calculator/Calc.py b/Investment Calculator/Calc.py deleted file mode 100644 index 59abeeda..00000000 --- a/Investment Calculator/Calc.py +++ /dev/null @@ -1,187 +0,0 @@ -import customtkinter as ctk -import tkinter as tk -import math -import matplotlib.pyplot as plt -import numpy as np -from tkinter import messagebox - -ctk.set_appearance_mode("bright") -ctk.set_default_color_theme("blue") - -class App(ctk.CTk): - - def __init__(self,*args,**kwargs): - super().__init__(*args,**kwargs) - - def dispPie(self,M,N): - names = ['Invested Amount\n('+str(format(N,',d'))+')','Maturity Value\n('+str(format(M,',d'))+')'] - pi = np.array([N,M]) - fig = plt.figure(figsize=(5,5)) - - plt.pie(pi,labels= names) - plt.show() - - def Display(self,M,N): - self.MatDisp.configure(text=str(format(M,',d'))) - self.AmtDisp.configure(text=str(format(N,',d'))) - self.Details = ctk.CTkButton(self,text='Details',fg_color = '#E74C3C',border_color='#E74C3C',command = lambda: dispPie(self,M,N)) - self.Details.grid(row = 6, column = 0, padx = 20, pady = 20, sticky= 'ew') - # dispPie(self,M,N) - - - - - def getSip(self,amt,te,pe) : - P = amt - i = float(pe/12) - n = te*12 - - M = int(P * ((pow((1+i),n)-1)/i) * (1+i)) - N = int(amt*n) - print(M,N) - Display(self,M,N) - - def getLump(self,lsamt,te,pe): - P=lsamt - M = math.ceil(P*(pow(1+pe,te))) - print(M,P) - Display(self,M,P) - - - def mixedletters(quant): - for i in range(len(quant)): - if quant[i].isalpha(): - return True - return False - - def pressedCalculate(): - - global tenure - if self.ten.get() == '': - messagebox.showerror('Error','Please enter the tenure of your investment') - return - elif '.' in self.ten.get(): - messagebox.showerror('Error','Entered a fractional value') - return - elif self.ten.get().isalpha() or mixedletters(self.ten.get()): - messagebox.showerror('Error','Only numerical values allowed') - return - else : - tenure = int(self.ten.get()) - if tenure == 0: - messagebox.showerror('Error','Tenure is zero') - - - global per - if self.roi.get() == '': - messagebox.showerror('Error','Please enter the Rate of Return on your investment') - return - elif self.roi.get().isalpha() or mixedletters(self.roi.get()): - messagebox.showerror('Error','Only numerical values allowed') - return - else: - per = float(self.roi.get()) - if per > 0.0: - per /= 100 - if per > 1.00: - messagebox.showerror('Error','ROI cannot be greater than 100') - return - else : - messagebox.showerror('Error','ROI cannot be zero') - return - - - global amount - if self.Amt.get() == '' and self.ls.get() =='': - messagebox.showerror('Error','Please enter Investment Value') - elif self.ls.get() =='' and self.Amt.get() != '': - if '.' in self.Amt.get(): - messagebox.showerror('Error','Entered a fractional value') - return - elif self.Amt.get().isalpha() or mixedletters(self.Amt.get()): - messagebox.showerror('Error','Only numerical values allowed') - return - else: - amount = int(self.Amt.get()) - getSip(self,amount,tenure,per) - elif self.Amt.get() =='' and self.ls.get() != '' : - if '.' in self.ls.get(): - messagebox.showerror('Error','Entered a fractional value') - return - elif self.ls.get().isalpha() or mixedletters(self.ls.get()): - messagebox.showerror('Error','Only numerical values allowed') - return - else: - amount = int(self.ls.get()) - getLump(self, amount, tenure, per) - else: - messagebox.showerror('Error','Please calculate either LumpSum or Sip not both at the same time') - - def pressedReset(): - self.Amt.delete(0,'end') - # self.ten.delete(0,'end') - self.ls.delete(0,'end') - self.roi.delete(0,'end') - self.MatDisp.configure(text="") - self.AmtDisp.configure(text="") - self.Details.destroy() - - - - self.title("SIP Calculator") - self.geometry('330x600') - - self.InputFrame = ctk.CTkFrame(master = self,fg_color='#F5B7B1') - self.InputFrame.grid(row =0,column=0,sticky='ew') - - self.SIPamt = ctk.CTkLabel(master=self.InputFrame,text = 'SIP Amount ') - self.SIPamt.grid(row = 0, column = 0, padx = 20, pady = 20, sticky = 'ew') - - self.Amt = ctk.CTkEntry(master=self.InputFrame,placeholder_text = '2000',border_color="#E74C3C") - self.Amt.grid(row = 0, column = 1, padx = 20, pady = 20, sticky = 'ew') - - - self.Tenure = ctk.CTkLabel(master=self.InputFrame, text = "Tenure (in years) ") - self.Tenure.grid(row = 1, column = 0, padx = 20, pady = 20,sticky = 'ew') - - self.ten = ctk.CTkComboBox(master=self.InputFrame,values = ['5','10','15','20','25','30','35'],border_color="#E74C3C",button_color="#E74C3C",dropdown_hover_color="#02b165") - self.ten.grid(row = 1, column = 1, padx = 20, pady = 20, sticky = 'ew') - - self.ror = ctk.CTkLabel(master=self.InputFrame, text = 'Rate of Return (%) ') - self.ror.grid(row = 2, column = 0, padx = 20, pady = 20,sticky = 'ew') - - self.roi = ctk.CTkEntry(master=self.InputFrame, placeholder_text= '12%',border_color="#E74C3C") - self.roi.grid(row = 2, column = 1, padx = 20, pady = 20, sticky = 'ew') - - - self.lumpSum = ctk.CTkLabel(master=self.InputFrame,text='Lump-sum Amount ') - self.lumpSum.grid(row = 3, column = 0, padx = 20, pady = 20, sticky = 'ew') - - self.ls = ctk.CTkEntry(master=self.InputFrame, placeholder_text = '1,00,000',border_color="#E74C3C") - self.ls.grid(row = 3, column = 1, padx = 20, pady = 20, sticky = 'ew') - - self.Output = ctk.CTkFrame(master=self,fg_color='#E74C3C') - self.Output.grid(row=1,column=0,sticky='ew') - - self.InvAmt = ctk.CTkLabel(master=self.Output,text ="Invested Amount") - self.InvAmt.grid(row = 5, column = 0, padx = 20, pady = 20, sticky = 'ew') - - self.AmtDisp = ctk.CTkLabel(master=self.Output,text='') - self.AmtDisp.grid(row = 5, column = 1, padx=20, pady = 20, sticky = 'ew') - - self.MatVal = ctk.CTkLabel(master=self.Output,text='Maturity Value ') - self.MatVal.grid(row = 6, column = 0,padx = 10,pady = 20, sticky = 'ew') - - self.MatDisp = ctk.CTkLabel(master=self.Output,text='') - self.MatDisp.grid(row = 6, column = 1, padx = 20,pady =20, sticky = 'ew') - - self.Calculate = ctk.CTkButton(self,text="Calculate",fg_color="#E74C3C",border_color="black", command = pressedCalculate) - self.Calculate.grid(row = 4, column = 0, padx = 20, pady = 20 ,sticky = 'ew') - - self.Reset = ctk.CTkButton(self,text="Reset",fg_color="#E74C3C",border_color="black",command = pressedReset) - self.Reset.grid(row = 5,column = 0, padx =20, pady = 20, sticky = 'ew') - - -if __name__=="__main__": - app = App() - app.mainloop() \ No newline at end of file diff --git a/Investment Calculator/README.md b/Investment Calculator/README.md deleted file mode 100644 index 01bcbf2b..00000000 --- a/Investment Calculator/README.md +++ /dev/null @@ -1,73 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Investment Calculator - - - - - -

- - -## 🛠️ Description - -This project presents an investment calculator built using Python and the customtkinter library, designed to facilitate financial planning through a user-friendly graphical interface. The calculator allows users to input their SIP (Systematic Investment Plan) amount or lump sum amount, specify the investment tenure in years, and provide the expected rate of return. Upon clicking the 'Calculate' button, the invested amount, maturity value is displayed. - -## ⚙️ Languages or Frameworks Used - -Language: Python - -Modules : - - tkinter - customtkinter - numpy - matplotlib - - -## 🌟 How to run - -Step-1: Install required modules -```sh -pip install customtkinter -``` -```sh -pip install numpy -``` -```sh -pip install matplotlib -``` -Step-2: Run the program - -Optional: In order to use this project as an application on your desktop: - -Step 1 : -```sh -pip install pyinstaller -``` -Step 2 : -Make a Folder on your Desktop -and move the Calc.py file in the folder - -Step 3 : Open any command line interface and enter that respective folder using the cd command - -Step 4 : Execute the following command : - -```sh -pyinstaller -F -w Calc.py -``` -This will create a .exe file in that folder which can be used as an application -## 📺 Demo -

- - -## 🤖 Author - -Aditya Mohite diff --git a/Investment Calculator/img/bandicam-2024-04-26-22-35-16-753.gif b/Investment Calculator/img/bandicam-2024-04-26-22-35-16-753.gif deleted file mode 100644 index e0772dd0..00000000 Binary files a/Investment Calculator/img/bandicam-2024-04-26-22-35-16-753.gif and /dev/null differ diff --git a/Investment Calculator/img/output.jpg b/Investment Calculator/img/output.jpg deleted file mode 100644 index 3131e412..00000000 Binary files a/Investment Calculator/img/output.jpg and /dev/null differ diff --git a/LICENSE b/LICENSE deleted file mode 100644 index f30aa618..00000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2021 Leah Nguyen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Lazy_Pong/.gitignore b/Lazy_Pong/.gitignore deleted file mode 100644 index 0cafc1cd..00000000 --- a/Lazy_Pong/.gitignore +++ /dev/null @@ -1 +0,0 @@ -.venv/ \ No newline at end of file diff --git a/Lazy_Pong/README.md b/Lazy_Pong/README.md deleted file mode 100644 index f329701c..00000000 --- a/Lazy_Pong/README.md +++ /dev/null @@ -1,106 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Pong Game in Python - -## 🌟 Introduction -This is a simple implementation of the classic Pong game in Python using the Pygame library. In this game, two players control paddles, trying to bounce a ball back and forth. The goal is to score points by getting the ball past the opponent's paddle. - -Based on the previous version of [Ben Sicat](https://github.com/Ben-Sicat) - -## 📝 Prerequisites -Before running the game, make sure you have [Python](https://www.python.org/downloads/) to run this script, and also [PyGame](https://www.pygame.org/download.shtml). You can install Pygame using pip: - -```bash -pip install pygame -``` -## 🎮 How to Play - -- Run the script with Python -- The game window will appear with two paddles and a ball in the middle. -- Use the arrow keys to control your paddle (Player 1) up and down. -- The CPU controls the other paddle (Player 2). -- The game starts when you press any arrow key. The ball will start moving in a random direction. -- The goal is to bounce the ball past your opponent's paddle and score points. -- The game continues until one player reaches the specified maximum score. -- If you win, your name will be displayed as the winner. - -## ⚙️ Configuration -You can configure the game by modifying the script's parameters, such as screen width, screen height, player name, color, frames per second (fps), and maximum score. - -```bash -python pong.py [-h] [-dw WIDTH] [-dh HEIGHT] [-n NAME] [-c COLOR] [--fps FPS] [--max_score MAX_SCORE] -options: - -h, --help Show help message and exit - -dw WIDTH, --width WIDTH Width of the display (dflt 320) - -dh HEIGHT, --height HEIGHT Height of the display (dflt 240) - -n NAME, --name NAME Player name - -c COLOR, --color COLOR Game color (dflt light grey) - --fps FPS Framerate (dflt 120) - --max_score MAX_SCORE Max score to win (dflt 10) - -``` - -## Color Options -You can change the color of the game by specifying a color from the below list of available colors: -``` python -rgb_colors = { - "red": (255, 0, 0), - "green": (0, 255, 0), - "blue": (0, 0, 255), - "yellow": (255, 255, 0), - "purple": (128, 0, 128), - "orange": (255, 165, 0), - "pink": (255, 192, 203), - "cyan": (0, 255, 255), - "lime": (0, 255, 0), - "teal": (0, 128, 128), - "navy": (0, 0, 128), - "maroon": (128, 0, 0), - "olive": (128, 128, 0), - "brown": (165, 42, 42), - "gray": (128, 128, 128), - "black": (0, 0, 0), - "white": (255, 255, 255), - "silver": (192, 192, 192), - "gold": (255, 215, 0), - "violet": (238, 130, 238), - "indigo": (75, 0, 130), - "turquoise": (64, 224, 208), - "lavender": (230, 230, 250), - "crimson": (220, 20, 60), - "coral": (255, 127, 80), - "skyblue": (135, 206, 235), - "magenta": (255, 0, 255), - "chartreuse": (127, 255, 0), - "sienna": (160, 82, 45), - "plum": (221, 160, 221), - "khaki": (240, 230, 140), - "darkgreen": (0, 100, 0), - "deepskyblue": (0, 191, 255), - "limegreen": (50, 205, 50), - "tomato": (255, 99, 71), - "salmon": (250, 128, 114), - "goldrod": (218, 165, 32), - "darkorchid": (153, 50, 204), - "peru": (205, 133, 63), - "orchid": (218, 112, 214), - "royalblue": (65, 105, 225), - "indianred": (205, 92, 92), - "yellowgreen": (154, 205, 50), - "lightgrey" : (200, 200, 200) -} -``` -The default is **lightgrey** You can choose from colors like red, green, blue, yellow, and more. - -## 📺 Demo - -![demo_pong](https://github.com/dar8900/python-mini-project/assets/37539290/77528c65-900f-4d8c-979e-7fedb780f988) - -## 😄 Enjoy the Game! -Have fun playing this simple Pong game. Feel free to customize it and make it your own. If you encounter any issues, please refer to the script's comments and logs for troubleshooting. - -## 🤖 Author -[dar8900](https://github.com/dar8900) - - diff --git a/Lazy_Pong/pong.py b/Lazy_Pong/pong.py deleted file mode 100644 index f6987bd1..00000000 --- a/Lazy_Pong/pong.py +++ /dev/null @@ -1,436 +0,0 @@ -from time import sleep -import os -import pygame -import sys -import random -import argparse -import logging - -rgb_colors = { - "red": (255, 0, 0), - "green": (0, 255, 0), - "blue": (0, 0, 255), - "yellow": (255, 255, 0), - "purple": (128, 0, 128), - "orange": (255, 165, 0), - "pink": (255, 192, 203), - "cyan": (0, 255, 255), - "lime": (0, 255, 0), - "teal": (0, 128, 128), - "navy": (0, 0, 128), - "maroon": (128, 0, 0), - "olive": (128, 128, 0), - "brown": (165, 42, 42), - "gray": (128, 128, 128), - "black": (0, 0, 0), - "white": (255, 255, 255), - "silver": (192, 192, 192), - "gold": (255, 215, 0), - "violet": (238, 130, 238), - "indigo": (75, 0, 130), - "turquoise": (64, 224, 208), - "lavender": (230, 230, 250), - "crimson": (220, 20, 60), - "coral": (255, 127, 80), - "skyblue": (135, 206, 235), - "magenta": (255, 0, 255), - "chartreuse": (127, 255, 0), - "sienna": (160, 82, 45), - "plum": (221, 160, 221), - "khaki": (240, 230, 140), - "darkgreen": (0, 100, 0), - "deepskyblue": (0, 191, 255), - "limegreen": (50, 205, 50), - "tomato": (255, 99, 71), - "salmon": (250, 128, 114), - "goldrod": (218, 165, 32), - "darkorchid": (153, 50, 204), - "peru": (205, 133, 63), - "orchid": (218, 112, 214), - "royalblue": (65, 105, 225), - "indianred": (205, 92, 92), - "yellowgreen": (154, 205, 50), - "lightgrey" : (200, 200, 200) -} - -log_file = "pong_log.log" - -if os.path.exists(os.path.abspath(log_file)): - os.remove(os.path.abspath(log_file)) - -# Configure main logger -pong_log = logging.getLogger("Pong logger") -pong_log.setLevel(logging.DEBUG) - -# Configure console handler -console_handler = logging.StreamHandler() -console_handler.setLevel(logging.DEBUG) # Imposta il livello a INFO o altro a tuo piacere - -# Configure file handler -file_handler = logging.FileHandler(log_file) -file_handler.setLevel(logging.DEBUG) - -# Set format -formatter = logging.Formatter('[%(asctime)s] - [%(levelname)s] - %(message)s') -console_handler.setFormatter(formatter) -file_handler.setFormatter(formatter) - -# Add handler to logger -pong_log.addHandler(console_handler) -pong_log.addHandler(file_handler) - -def get_random(limit: int): - num_rand = random.randint(-limit, limit) - while num_rand == 0: - num_rand = random.randint(-limit, limit) - return num_rand - - -class Ball(): - def __init__(self, - center_x: int, - center_y: int, - radius: int, - color: tuple, - display_width: int, - display_high: int, - speed_x: int = 0, - speed_y: int = 0,) -> None: - - self.center_x = center_x - self.center_y = center_y - self.radius = radius - self.speed_x = speed_x - self.speed_y = speed_y - self.color = color - self.display_width = display_width - self.display_high = display_high - - def update_pos(self) -> None: - if self.center_y - self.radius <= 0 or self.center_y + self.radius >= self.display_high: - self.invert_move(invert_y=True) - if self.speed_x != 0: - self.center_x += self.speed_x - if self.speed_y != 0: - self.center_y += self.speed_y - - def set_speed(self, speed_x: int | float, speed_y: int | float) -> None: - if speed_x != 0: - if self.speed_x < 0: - self.speed_x = -speed_x - else: - self.speed_x = speed_x - if speed_y != 0: - if self.speed_y < 0: - self.speed_y = -speed_y - else: - self.speed_y = speed_y - - def invert_move(self, invert_x=False, invert_y=False): - if invert_x: - self.speed_x *= -1 - if invert_y: - self.speed_y *= -1 - - def get_speed(self) -> tuple: - return (self.speed_x, self.speed_y) - - def draw(self, display: pygame.Surface) -> None: - self.surface = display - pygame.draw.circle(self.surface, self.color, - (self.center_x, self.center_y), self.radius) - - def reset(self) -> None: - self.speed_x = 0 - self.speed_y = 0 - self.center_x = self.display_width / 2 - self.center_y = self.display_high / 2 - self.draw(self.surface) - - def get_borders(self) -> dict: - return { - 'left': self.center_x - self.radius, - 'right': self.center_x + self.radius, - 'top': self.center_y - self.radius, - 'bott': self.center_y + self.radius, - 'center_x': self.center_x, - 'center_y': self.center_y - } - - -class Gamer: - def __init__(self, top_x: int, - top_y: int, - width: int, - high: int, - color: tuple, - player_name : str, - display_width: int, - display_high: int) -> None: - self.init_top_x = top_x - self.init_top_y = top_y - self.width = width - self.high = high - self.color = color - self.rect = pygame.Rect(top_x, top_y, width, high) - self.speed_y = 0 - self.disp_w = display_width - self.disp_h = display_high - self.name = player_name - - def draw(self, display: pygame.Surface) -> None: - pygame.draw.rect(display, self.color, self.rect) - - def update_pos(self) -> None: - if self.speed_y != 0: - self.rect.y += self.speed_y - if self.rect.top <= 0: - self.rect.top = 0 - if self.rect.bottom >= self.disp_h: - self.rect.bottom = self.disp_h - - def set_speed(self, speed_y: int | float) -> None: - if speed_y == 0: - self.speed_y = 0 - else: - self.speed_y += speed_y - - def get_speed(self): - return self.speed_y - - def reset(self) -> None: - self.rect.x = self.init_top_x - self.rect.y = self.init_top_y - - def get_borders(self) -> dict: - return { - 'top': self.rect.top, - 'right': self.rect.right, - 'bott': self.rect.bottom, - 'left': self.rect.left, - 'center_x': self.rect.centerx, - 'center_y': self.rect.centery - } - - -class GameField: - def __init__(self, display_w: int, display_h: int, bg_color: str, line_color: tuple, caption: str) -> None: - self.disp_w = display_w - self.disp_h = display_h - self.screen = pygame.display.set_mode((display_w, display_h)) - self.bg_color = pygame.Color(bg_color) - self.caption = caption - self.line_color = line_color - pygame.display.set_caption(caption) - - def get_screen(self) -> pygame.Surface: - return self.screen - - def fill_screen(self): - self.screen.fill(self.bg_color) - - def draw_borders(self): - pygame.draw.aaline(self.screen, self.line_color, - (self.disp_w / 2, 0), (self.disp_w / 2, self.disp_h)) - - -class PongGame: - def __init__(self, game_field: GameField, - ball: Ball, - player: Gamer, - computer: Gamer, - max_score: int = 100, - fps: int = 120) -> None: - self._period = 1 / fps - self._max_ball_time_4_travel = 3 - self._max_gamer_time_4_travel = 2 - self._pong_pygame = pygame - self._game_field = game_field - self._ball = ball - self._player = player - self._computer = computer - self._pong_pygame.init() - self._clock = self._pong_pygame.time.Clock() - self._stat = {"player_score": 0, "cpu_score": 0, - "last_diff": 0, "level": 1, "max_score": max_score} - self._fps = fps - self._BALL_SPEED_X_DFLT = (self._game_field.disp_w) / (self._max_ball_time_4_travel * self._fps) - self._BALL_SPEED_Y_DFLT = (self._game_field.disp_h) / (self._max_ball_time_4_travel * self._fps) - self._CPU_SPEED_DFLT = (self._game_field.disp_h) / (self._max_gamer_time_4_travel * self._fps) - self._cpu_speed_increment = 1 - self._ball_speed_increment = 0.5 - self._player_speed = (self._game_field.disp_h) / (self._max_gamer_time_4_travel * self._fps) - self._cpu_speed = self._CPU_SPEED_DFLT - - def _reset_game(self): - self._update_game_speed() - self._ball.reset() - self._player.reset() - self._computer.reset() - - def _check_collision(self): - ball_coord = self._ball.get_borders() - if ball_coord['left'] <= self._computer.get_borders()['left']: - pong_log.debug("Player score +1") - self._stat['player_score'] += 1 - self._reset_game() - - if ball_coord['right'] >= self._player.get_borders()['right']: - pong_log.debug("CPU score +1") - self._stat['cpu_score'] += 1 - self._reset_game() - - if ball_coord['right'] > self._game_field.disp_w / 2 and ball_coord['right'] >= self._player.get_borders()['left']: - if ball_coord['top'] <= self._player.get_borders()['bott'] and ball_coord['bott'] >= self._player.get_borders()['top']: - self._ball.invert_move(invert_x=True) - - if ball_coord['left'] < self._game_field.disp_w / 2 and ball_coord['left'] <= self._computer.get_borders()['right']: - if ball_coord['top'] <= self._computer.get_borders()['bott'] and ball_coord['bott'] >= self._computer.get_borders()['top']: - self._ball.invert_move(invert_x=True) - - # Update game speed after a reset due to cpu error - def _update_game_speed(self): - score_diff = self._stat['player_score'] - self._stat['cpu_score'] - if score_diff > 0 and score_diff > self._stat['last_diff']: - self._ball.set_speed(abs(self._ball.get_speed()[ - 0]) + self._cpu_speed_increment, abs(self._ball.get_speed()[1]) + self._cpu_speed_increment) - self._computer.set_speed( - self._cpu_speed + self._cpu_speed_increment) - self._stat['last_diff'] = score_diff - self._stat['level'] += 1 - pong_log.debug( - f"Update speed, score diff = {score_diff}, last diff {self._stat['last_diff']}, level: {self._stat['level']}") - - # Move computer to follow the ball after half of the game field - def _move_computer(self): - if self._ball.get_borders()['right'] < self._game_field.disp_w / 2: - if self._computer.get_borders()['center_y'] < self._ball.get_borders()['center_y']: - self._computer.set_speed(self._cpu_speed) - else: - self._computer.set_speed(-self._cpu_speed) - else: - self._computer.set_speed(0) - - # Based on incoming keyboard event, move the player - def _move_player(self, event: pygame.event): - if event.type == self._pong_pygame.KEYDOWN: - if event.key == self._pong_pygame.K_UP: - self._player.set_speed(-self._player_speed) - if event.key == self._pong_pygame.K_DOWN: - self._player.set_speed(self._player_speed) - if event.type == self._pong_pygame.KEYUP: - if event.key == self._pong_pygame.K_UP: - self._player.set_speed(self._player_speed) - if event.key == self._pong_pygame.K_DOWN: - self._player.set_speed(-self._player_speed) - - def _write_score(self): - font_size = 30 - font = self._pong_pygame.font.SysFont("freemono", font_size) - img = font.render( - f'{self._stat["cpu_score"]} {self._stat["player_score"]}', True, self._game_field.line_color) - scor_str_len = len( - str(f'{self._stat["cpu_score"]} {self._stat["player_score"]}')) * font_size - self._game_field.screen.blit( - img, (((self._game_field.disp_w - scor_str_len) / 2) + 35, 10)) - - def _write_win(self, winner_name: str): - font_size = 30 - font = self._pong_pygame.font.SysFont("freemono", font_size) - img = font.render( - f'{winner_name} wins!', True, self._game_field.line_color) - win_name_str = len( - str(f'{winner_name} wins!')) * font_size - self._game_field.screen.blit( - img, (((self._game_field.disp_w - win_name_str) / 2) + 35, 10)) - self._pong_pygame.display.flip() - - # Check if cpu or player wins - def _check_end_game(self): - if self._stat['cpu_score'] == self._stat['max_score']: - self._game_field.fill_screen() - pong_log.info("End game, CPU wins!") - self._write_win("CPU") - sleep(2) - self._pong_pygame.quit() - sys.exit() - if self._stat['player_score'] == self._stat['max_score']: - self._game_field.fill_screen() - pong_log.info(f"End game, {self._player.name} wins!") - self._write_win(self._player.name) - sleep(2) - self._pong_pygame.quit() - sys.exit() - - # Check for events like quit game, key press or game reset - def _update_events(self): - self._check_end_game() - for event in self._pong_pygame.event.get(): - if event.type == self._pong_pygame.QUIT: - self._pong_pygame.quit() - sys.exit() - # After a ball reset, waits for a player keypress to restart the ball - if event.type == self._pong_pygame.KEYDOWN or event.type == self._pong_pygame.KEYUP: - start_speed_x = get_random(1) * (self._BALL_SPEED_X_DFLT + (self._cpu_speed_increment * self._stat['level'])) - start_speed_y = self._BALL_SPEED_Y_DFLT + (self._cpu_speed_increment * self._stat['level']) - if self._ball.get_speed()[0] == 0 and self._ball.get_speed()[1] == 0: - self._ball.set_speed(start_speed_x, start_speed_y) - self._move_player(event) - - def run_game(self): - pong_log.info("Game start!") - while True: - self._check_collision() - self._move_computer() - self._update_events() - self._game_field.fill_screen() - self._ball.update_pos() - self._player.update_pos() - self._computer.update_pos() - self._ball.draw(self._game_field.get_screen()) - self._player.draw(self._game_field.get_screen()) - self._computer.draw(self._game_field.get_screen()) - self._game_field.draw_borders() - self._write_score() - self._pong_pygame.display.flip() - self._clock.tick(self._fps) - - -def main(): - os.remove(os.path.abspath(log_file)) - parser = argparse.ArgumentParser(description='Pong Game') - parser.add_argument('-dw','--width', type=int, default=320, help='Width of the display (dflt 320)') - parser.add_argument('-dh','--height', type=int, default=240, help='Height of the display (dflt 240)') - parser.add_argument('-n','--name', type=str, default="player 1", help='Player name') - parser.add_argument('-c', '--color', type=str, default="lightgrey", help='Game color (dflt light grey)') - parser.add_argument('--fps', type=int, default=120, help='Framerate (dflt 120)') - parser.add_argument('--max_score', type=int, default=10, help='Max score to win (dflt 10)') - args = parser.parse_args() - - screen_width = args.width - screen_height = args.height - fps = args.fps - max_score = args.max_score - color = args.color - player_name = args.name - - if color not in rgb_colors.keys(): - pong_log.error(f"Color {color} not found, setting light grey") - color = "lightgrey" - # Il resto del tuo codice rimane invariato - - game_field = GameField(screen_width, screen_height, - "black", rgb_colors[color], "Pong") - ball = Ball(screen_width / 2, screen_height / 2, 5, - rgb_colors[color], screen_width, screen_height) - player = Gamer(screen_width - 30, (screen_height / 2) - 40, - 10, 40, rgb_colors[color], player_name, screen_width, screen_height) - computer = Gamer(20, (screen_height / 2) - 40, 10, 40, - rgb_colors[color], "CPU",screen_width, screen_height) - - pong = PongGame(game_field, ball, player, computer, fps=fps, max_score=max_score) - - pong.run_game() - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/Lazy_Pong/tempCodeRunnerFile.py b/Lazy_Pong/tempCodeRunnerFile.py deleted file mode 100644 index e9ad32e3..00000000 --- a/Lazy_Pong/tempCodeRunnerFile.py +++ /dev/null @@ -1,16 +0,0 @@ -Pushed a my first ever PyGame program which is a Pong game - -# issue-no - -# - #### **Lazy Pong** - -# - #### **A pong game at its Simplest form. Was challenge to do this in 1 hour with having little to no knowledge in pygame. So this is its first version that I will try to update in the following days since I'm on a 100 days coding challenge** - -# # Checklist: -# Please tick all the boxes that are fulfilled by your Pull Request. - -# - [✔ ] I have named my files and folder, according to this project's guidelines. -# - [ ✔] My code follows the style guidelines of this project. -# - [✔ ] I have commented on my code, particularly in hard-to-understand areas. -# - [✔ ] I have created a helpful and easy to understand `README.md`, according to the given [`README_TEMPLATE.`](https://github.com/nduongthucanh/python-mini-project/blob/master/README_TEMPLATE.md) -# - [ ✔] My changes do not produce any warnings. diff --git a/Madlibs/README.md b/Madlibs/README.md deleted file mode 100644 index 074cf7d6..00000000 --- a/Madlibs/README.md +++ /dev/null @@ -1,35 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Mad Libs Game - - - - -## 🛠️ Description - -Mad Libs is a phrasal template word game. The player has to enter a set of words to substitute for blanks before knowing the story. - -## ⚙️ Languages or Frameworks Used - -The only module required is random. You can install it using -```pip install random``` - -## 🌟 How to run - -It is really simple to run the game. Simple head over to the directory where python file is saved and run the following command: -```python madlibs.py``` - -## 📺 Demo -![Screenshot_madlibs](https://user-images.githubusercontent.com/68545365/128495675-6f72cc4f-2a0f-4bdc-b1a1-18c60f37cd5d.png) - - -## 🤖 Author - -Shruti Solani diff --git a/Madlibs/madlibs.py b/Madlibs/madlibs.py deleted file mode 100644 index 07b68a24..00000000 --- a/Madlibs/madlibs.py +++ /dev/null @@ -1,23 +0,0 @@ -import random -print("Title : Eat, Drink, And Be Sick") -noun = [] -for i in range(4): - n = input("Enter noun : ") - noun.append(n) -plural = [] -for i in range(6): - pn = input("Enter plural noun : ") - plural.append(pn) -adjective = [] -for i in range(2): - a = input("Enter adjective : ") - adjective.append(a) -adverb = input("Enter adverb : ") -letter = input("Enter any letter : ") -body_part = input("Enter any body part : ") -print("An inspector from the Department of Health and ", random.choice(noun) , " Services paid a surprise visit to our " , random.choice(adjective) , " school cafeteria.") -print("The lunch special, prepared by our " , random.choice(adjective) , "dietician, was spaghetti and " , random.choice(noun) , " balls with a choice of either a " , random.choice(noun) , " salad or French " , random.choice(plural) , ".") -print("The inspector found the meat-" , random.choice(plural) , " to be overcooked and discovered a live " , random.choice(noun) , " in the fries,causing him to have a " + body_part + " ache.") -print("In response, he threw up all over his " , random.choice(plural) , ".") -print("In his report, the inspector " + adverb + " recommended that the school cafeteria serve only nutritious " , random.choice(plural) , " as well as low-calorie " , random.choice(plural) , " and that all of the saturated " , random.choice(plural) , " be eliminated.") -print("He rated the cafeteria a " + letter + "-minus.") diff --git a/Mail_Checker/README.md b/Mail_Checker/README.md deleted file mode 100644 index 3a7a1062..00000000 --- a/Mail_Checker/README.md +++ /dev/null @@ -1,54 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Script Title - -Mail Checker Application - - - -## 🛠️ Description - -Mail-Checker is a python script that lets you read your gmail subjects from particular gmail accounts directly from the terminal without having to login each time! - -## ⚙️ Languages or Frameworks Used - - -We only require 'imaplib' python library to run this, this package is built-in to python, just import and use it! - - import imaplib - -I have attached a requirements.txt file that will install the neccessary python library needed for this script, in case if it turns out to be missing in your system. Run the command given below in the shell to install the requirements! - - pip install -r requirements.txt - - -Once you do this your script should be ready to use, make sure to add your account credentials and make other personalizations. - -## 🌟 How to run - -Before you try to execute this script make sure you allow less secure app access in your google account - -To allow less secure apps click [here to go to your google account]( https://myaccount.google.com/lesssecureapps ). Allowing this does not compromise the security of your account! It only gives permission for applications such as this one to remotely check your emails. - -Run the code the same way you would run any python code ie, such as in text editors or IDEs like VSCode and view your outputs in your terminal window. - -It should look something like this! - -## 📺 Demo - - - -## 🤖 Author - -Name: Siddharth Pradeep - -Git User Name: thirt33n - -Git URL: https://github.com/thirt33n diff --git a/Mail_Checker/mail_checker.py b/Mail_Checker/mail_checker.py deleted file mode 100644 index fcc21f12..00000000 --- a/Mail_Checker/mail_checker.py +++ /dev/null @@ -1,49 +0,0 @@ -#This script gives you the subject of mails received from a given list of mail addresses -import imaplib - - - -user = 'Your Gamil address' -password = 'Your password' - -mail = imaplib.IMAP4_SSL('imap.gmail.com') -mail.login(user, password) -mail.list() - -mail.select("inbox") # connects to your inbox, change the argument to access different categories. - - -def readMails(address): - result, data = mail.search(None, '(FROM '+'"'+address+'")') #If you would like to view mails that are sent to another mail, change FROM into TO - - ids = data[0] # data is a list. - id_list = ids.split() - latest_email_id = id_list[-1] # gets the latest mail from the particular user - - - result, data = mail.fetch(latest_email_id, "(RFC822)") - - - basic_email = data[0][1] - # contains all information including payloads and html content - - index_start1 = basic_email.index(b'Subject') #Starting index for your subject - index_end1 = index_start1 + 40 # Change the value of 40 into any other value to suit your preferences - - - subject = basic_email[index_start1:index_end1] #seperating the subject alone from the rest of the basic email - - - - subject = subject.strip(b'b\'Subject:') #removing additional unneccessary data from the subject - subject_end = subject.index(b'\r') - - print('-------FROM '+address+'-------\n\n') #Printing the emails - print("Subject: ", subject[0:subject_end], '\n\n') - - - -listOfMails = ['mail1@gmail.com','mail2@gmail.com'] #Modify the list contents here to suit you. If you would like to view mails - # from say, 'abc@gmail.com' change 'mail1@gmail.com' to 'abc@gmail.com' -for addresses in listOfMails: - readMails(addresses) \ No newline at end of file diff --git a/Mail_Checker/requirements.txt b/Mail_Checker/requirements.txt deleted file mode 100644 index e834522c..00000000 --- a/Mail_Checker/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -imaplib \ No newline at end of file diff --git a/Matchmaker/Matchmaker.py b/Matchmaker/Matchmaker.py deleted file mode 100644 index be2fbdc7..00000000 --- a/Matchmaker/Matchmaker.py +++ /dev/null @@ -1,48 +0,0 @@ -import random -import time -from tkinter import Tk, Button, DISABLED - -def show_symbol(x,y): - global first - global previousx, previousy - buttons[x,y]['text'] = button_symbols[x,y] - buttons[x,y].update_idletasks() - - if first: - previousx = x - previousy = y - first = False - elif previousx != x or previousy !=y: - if buttons[previousx, previousy]['text'] != buttons[x,y]['text']: - time.sleep(0.5) - buttons[previousx,previousy]['text']= ' ' - buttons[x,y]['text'] = ' ' - else: - buttons[previousx, previousy]['command'] = DISABLED - buttons[x,y]['command'] = DISABLED - first = True - -win = Tk() -win.title('Matchmaker') -win.resizable(width=False,height=False) -first = True -previousx = 0 -previousy = 0 -buttons = { } -button_symbols = { } -symbols = [u'\u2702',u'\u2705',u'\u2708',u'\u2709',u'\u270A',u'\u270B', - u'\u270C',u'\u270F',u'\u2712',u'\u2714',u'\u2716',u'\u2728', - u'\u2702',u'\u2705',u'\u2708',u'\u2709',u'\u270A',u'\u270B', - u'\u270C',u'\u270F',u'\u2712',u'\u2714',u'\u2716',u'\u2728'] - -random.shuffle(symbols) - - -for x in range(6): - for y in range(4): - button = Button(command = lambda x=x, y=y: show_symbol(x,y),width=10,height=8) - button.grid(column=x,row=y) - buttons[x,y] = button - button_symbols[x,y] = symbols.pop() - -win.mainloop() \ No newline at end of file diff --git a/Matchmaker/README.md b/Matchmaker/README.md deleted file mode 100644 index efe77ea0..00000000 --- a/Matchmaker/README.md +++ /dev/null @@ -1,30 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Matchmaker -

- - -## 🛠️ Description - -A simple Matchmaker game built by using python. - -## ⚙️ Languages or Frameworks Used -```bash -pip install tk -``` - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python Matchmaker.py -``` -## 📺 Demo -

- - -## 🤖 Author -[Leah Nguyen](https://github.com/ndleah) \ No newline at end of file diff --git a/Math_Game/README.md b/Math_Game/README.md deleted file mode 100644 index f27c2847..00000000 --- a/Math_Game/README.md +++ /dev/null @@ -1,14 +0,0 @@ -# Math Game -It's just a simple math game. Improve your math skills - -## Library used -`import random` and `import operator` - -## How to run the script -`python math_game.py` - -## Screenshot -

- -## *Author Name* -[`Pargorn Ruasijan (xNewz)`](https://github.com/xNewz) \ No newline at end of file diff --git a/Math_Game/math_game.py b/Math_Game/math_game.py deleted file mode 100644 index 7e863ecf..00000000 --- a/Math_Game/math_game.py +++ /dev/null @@ -1,51 +0,0 @@ -import random -import operator - -def errorHandle(problem_answer): - switch = False - validated_guess = 0.0 - while switch == False: - try: - validated_guess = float(input('Please enter a valid answer: ')) - if type(validated_guess) is float: - switch = True - break - except ValueError: - pass - return validated_guess - -def random_problem(): - operators = { - '+': operator.add, - '-': operator.sub, - '*': operator.mul, - '/': operator.truediv, - } - - num_1 = random.randint(1, 10) - num_2 = random.randint(1, 10) - operation = random.choice(list(operators.keys())) - answer = float(round(operators.get(operation)(num_1, num_2),3)) - print(f'What is {num_1} {operation} {num_2}') - return answer - -def ask_question(): - answer = random_problem() - try: - guess = float(input('Enter you answer: ')) - except ValueError: - guess = errorHandle(answer) - return guess == answer - -def game(): - score = 0 - while True: - if ask_question() == True: - score += 1 - print('Correct !') - else: - print('Incorrect') - break - print(f'======== Game Over ========\nYou score is {score}\nKeep going!') - -game() diff --git a/Minesweeper_game/README.md b/Minesweeper_game/README.md deleted file mode 100644 index c3dd6c0a..00000000 --- a/Minesweeper_game/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# Minesweeper Game -The classic Minesweeper game in python. - -## Library used -`import random` and `import re` - -## How to run the script -`python minesweeper.py` - -## Screenshot -pic1 -pic1 - -## *Author Name* -[`Subhadeep Das(Raven1233)`](https://github.com/Raven1233) \ No newline at end of file diff --git a/Minesweeper_game/images/1_ss.png b/Minesweeper_game/images/1_ss.png deleted file mode 100644 index 59534606..00000000 Binary files a/Minesweeper_game/images/1_ss.png and /dev/null differ diff --git a/Minesweeper_game/images/2_ss.png b/Minesweeper_game/images/2_ss.png deleted file mode 100644 index faacda95..00000000 Binary files a/Minesweeper_game/images/2_ss.png and /dev/null differ diff --git a/Minesweeper_game/minesweeper.py b/Minesweeper_game/minesweeper.py deleted file mode 100644 index 1c409a5c..00000000 --- a/Minesweeper_game/minesweeper.py +++ /dev/null @@ -1,138 +0,0 @@ -import random -import re - -class Board: - def __init__(self, dim_size, num_bombs): - - self.dim_size = dim_size - self.num_bombs = num_bombs - - self.board = self.make_new_board() - self.assign_values_to_board() - - self.dug = set() - - def make_new_board(self): - board = [[None for _ in range(self.dim_size)] for _ in range(self.dim_size)] - bombs_planted = 0 - while bombs_planted < self.num_bombs: - loc = random.randint(0, self.dim_size**2 - 1) - row = loc // self.dim_size - col = loc % self.dim_size - - if board[row][col] == '*': - continue - - board[row][col] = '*' - bombs_planted += 1 - - return board - - def assign_values_to_board(self): - - for r in range(self.dim_size): - for c in range(self.dim_size): - if self.board[r][c] == '*': - continue - self.board[r][c] = self.get_num_neighboring_bombs(r, c) - - def get_num_neighboring_bombs(self, row, col): - num_neighboring_bombs = 0 - for r in range(max(0, row-1), min(self.dim_size-1, row+1)+1): - for c in range(max(0, col-1), min(self.dim_size-1, col+1)+1): - if r == row and c == col: - continue - if self.board[r][c] == '*': - num_neighboring_bombs += 1 - - return num_neighboring_bombs - - def dig(self, row, col): - self.dug.add((row, col)) - - if self.board[row][col] == '*': - return False - elif self.board[row][col] > 0: - return True - - - for r in range(max(0, row-1), min(self.dim_size-1, row+1)+1): - for c in range(max(0, col-1), min(self.dim_size-1, col+1)+1): - if (r, c) in self.dug: - continue - self.dig(r, c) - - return True - - def __str__(self): - visible_board = [[None for _ in range(self.dim_size)] for _ in range(self.dim_size)] - for row in range(self.dim_size): - for col in range(self.dim_size): - if (row,col) in self.dug: - visible_board[row][col] = str(self.board[row][col]) - else: - visible_board[row][col] = ' ' - - string_rep = '' - widths = [] - for idx in range(self.dim_size): - columns = map(lambda x: x[idx], visible_board) - widths.append( - len( - max(columns, key = len) - ) - ) - - # print the csv strings - indices = [i for i in range(self.dim_size)] - indices_row = ' ' - cells = [] - for idx, col in enumerate(indices): - format = '%-' + str(widths[idx]) + "s" - cells.append(format % (col)) - indices_row += ' '.join(cells) - indices_row += ' \n' - - for i in range(len(visible_board)): - row = visible_board[i] - string_rep += f'{i} |' - cells = [] - for idx, col in enumerate(row): - format = '%-' + str(widths[idx]) + "s" - cells.append(format % (col)) - string_rep += ' |'.join(cells) - string_rep += ' |\n' - - str_len = int(len(string_rep) / self.dim_size) - string_rep = indices_row + '-'*str_len + '\n' + string_rep + '-'*str_len - - return string_rep - - -def play(dim_size=10, num_bombs=10): - - board = Board(dim_size, num_bombs) - - safe = True - - while len(board.dug) < board.dim_size ** 2 - num_bombs: - print(board) - - user_input = re.split(',(\\s)*', input("Where would you like to dig? Input as row,col: ")) # '0, 3' - row, col = int(user_input[0]), int(user_input[-1]) - if row < 0 or row >= board.dim_size or col < 0 or col >= dim_size: - print("Invalid location. Try again.") - continue - - safe = board.dig(row, col) - if not safe: - break - if safe: - print("CONGRATULATIONS!!!! YOU ARE VICTORIOUS!") - else: - print("GAME OVER!!! BETTER LUCK NEXT TIME :(") - board.dug = [(r,c) for r in range(board.dim_size) for c in range(board.dim_size)] - print(board) - -if __name__ == '__main__': - play() diff --git a/Morse_code_beep/README.md b/Morse_code_beep/README.md deleted file mode 100644 index 7b73ce36..00000000 --- a/Morse_code_beep/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# Morse Code Beep Generator - -## Description - -This a python terminal program which allows users to convert english text to morse code and it also produces a beep sound of the code generated. - -## Framework used - -It doesnot require any extra dependencies or Frameworks to run. - - -## How to run - -To run this program use the following command - -```python main.py``` - -on the terminal - - -## Author -[Harsh Daniel](https://github.com/HarshDaniel) - diff --git a/Morse_code_beep/main.py b/Morse_code_beep/main.py deleted file mode 100644 index c3f74374..00000000 --- a/Morse_code_beep/main.py +++ /dev/null @@ -1,102 +0,0 @@ -import time -import platform - -# Morse code dictionary -morse_code_dict = { - 'A': '.-', - 'B': '-...', - 'C': '-.-.', - 'D': '-..', - 'E': '.', - 'F': '..-.', - 'G': '--.', - 'H': '....', - 'I': '..', - 'J': '.---', - 'K': '-.-', - 'L': '.-..', - 'M': '--', - 'N': '-.', - 'O': '---', - 'P': '.--.', - 'Q': '--.-', - 'R': '.-.', - 'S': '...', - 'T': '-', - 'U': '..-', - 'V': '...-', - 'W': '.--', - 'X': '-..-', - 'Y': '-.--', - 'Z': '--..', - '0': '-----', - '1': '.----', - '2': '..---', - '3': '...--', - '4': '....-', - '5': '.....', - '6': '-....', - '7': '--...', - '8': '---..', - '9': '----.', - '.': '.-.-.-', - ',': '--..--', - '?': '..--..', - "'": '.----.', - '!': '-.-.--', - '/': '-..-.', - '(': '-.--.', - ')': '-.--.-', - '&': '.-...', - ':': '---...', - ';': '-.-.-.', - '=': '-...-', - '+': '.-.-.', - '-': '-....-', - '_': '..--.-', - '"': '.-..-.', - '$': '...-..-', - '@': '.--.-.', - ' ': '/' -} - -def play_sound(duration): - # For Windows - if platform.system() == 'Windows': - import winsound - winsound.Beep(1000, duration) # Beep at 1000 Hz for 'duration' milliseconds - # For Linux/macOS - else: - import os - os.system('printf "\a"') # Produces system beep - -def text_to_morse(text): - morse_code = '' - for char in text.upper(): - if char in morse_code_dict: - morse_code += morse_code_dict[char] + ' ' - else: - morse_code += '/ ' # If character is not found, consider it as a space - return morse_code - -def morse_to_sound(morse_code): - for symbol in morse_code: - if symbol == '.': - play_sound(100) # Dot duration: 100 milliseconds - elif symbol == '-': - play_sound(300) # Dash duration: 300 milliseconds - elif symbol == ' ': - time.sleep(0.3) # Pause between characters: 300 milliseconds - elif symbol == '/': - time.sleep(0.7) # Pause between words: 700 milliseconds - -if __name__ == '__main__': - # Get input from user - text = input("Enter text to convert to Morse code: ") - - # Convert text to Morse code - morse = text_to_morse(text) - print("Morse Code:", morse) - - # Convert Morse code to sound - morse_to_sound(morse) diff --git a/Motion_Detection/README.md b/Motion_Detection/README.md deleted file mode 100644 index be0988e9..00000000 --- a/Motion_Detection/README.md +++ /dev/null @@ -1,18 +0,0 @@ -# Motion Detection Program using MediaPipe and OpenCV - -This Python script utilizes the MediaPipe library along with OpenCV to perform real-time motion detection using a pose estimation model. The script reads a video file (`workout.mp4` in this case) frame by frame, processes each frame to detect human poses, and visualizes the detected poses along with the frame's FPS (frames per second). - -## Requirements -- Python 3.x -- OpenCV (`cv2`) -- MediaPipe (`mediapipe`) - -## Installation -You can install the required libraries using pip: -```bash -pip install opencv-python mediapipe -``` - -## Features -- Real-time motion detection using pose estimation -- Visualization of detected poses and FPS on each frame diff --git a/Motion_Detection/main.py b/Motion_Detection/main.py deleted file mode 100644 index e1d40172..00000000 --- a/Motion_Detection/main.py +++ /dev/null @@ -1,39 +0,0 @@ -import cv2 -import mediapipe as mp -import time - -mpDraw = mp.solutions.drawing_utils -mpPose = mp.solutions.pose -pose = mpPose.Pose() - -cap = cv2.VideoCapture('workout.mp4') -pTime = 0 - -while True: - success, img = cap.read() - - height, width, _ = img.shape - max_width = 1000 - max_height = 800 - scale = min(max_width / width, max_height / height) - img = cv2.resize(img, None, fx=scale, fy=scale) - - imgRGB = cv2.cvtColor(img , cv2.COLOR_RGB2BGR) - result = pose.process(imgRGB) - if (result.pose_landmarks): - mpDraw.draw_landmarks(img , result.pose_landmarks, mpPose.POSE_CONNECTIONS, - landmark_drawing_spec=mpDraw.DrawingSpec(color=(0, 255, 0), thickness=2, circle_radius=2), - connection_drawing_spec=mpDraw.DrawingSpec(color=(0, 255, 0), thickness=2) - ) - - - - #FPS frames per second - cTime = time.time() - fps = 1/ (cTime - pTime) - pTime = cTime - cv2.putText(img, f"FPS : {int(fps)}", (20,70), cv2.FONT_HERSHEY_PLAIN, 3, (0,255,0), 2) - - cv2.imshow("Image",img) - if cv2.waitKey(10) & 0xFF == ord('q'): - break \ No newline at end of file diff --git a/Motion_Detection/workout.mp4 b/Motion_Detection/workout.mp4 deleted file mode 100644 index f9fdbe1f..00000000 Binary files a/Motion_Detection/workout.mp4 and /dev/null differ diff --git a/Music-Player/LICENSE b/Music-Player/LICENSE deleted file mode 100644 index e7e458f2..00000000 --- a/Music-Player/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2021 Shitij Agrawal - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Music-Player/README.md b/Music-Player/README.md deleted file mode 100644 index 55a64e91..00000000 --- a/Music-Player/README.md +++ /dev/null @@ -1,33 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Music Player - - -## 🛠️ Description -A simple music player in python which enables you to play, next, back, pause, resume the music - -## ⚙️ Languages or Frameworks Used -This project is created using python programming language. -Modules : tkinter, vlc and glob - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following commands: - -```sh -pip install -r requriment.txt -``` - -```sh -python music_player.py -``` - - -## 📺 Demo -

- - -## 🤖 Author -[mr-shitij](https://github.com/mr-shitij) - diff --git a/Music-Player/images/backward.png b/Music-Player/images/backward.png deleted file mode 100644 index e168039a..00000000 Binary files a/Music-Player/images/backward.png and /dev/null differ diff --git a/Music-Player/images/forward.png b/Music-Player/images/forward.png deleted file mode 100644 index 244d71ce..00000000 Binary files a/Music-Player/images/forward.png and /dev/null differ diff --git a/Music-Player/images/pause.png b/Music-Player/images/pause.png deleted file mode 100644 index 79f1e806..00000000 Binary files a/Music-Player/images/pause.png and /dev/null differ diff --git a/Music-Player/images/play.png b/Music-Player/images/play.png deleted file mode 100644 index 4f8758f3..00000000 Binary files a/Music-Player/images/play.png and /dev/null differ diff --git a/Music-Player/images/stop.png b/Music-Player/images/stop.png deleted file mode 100644 index a36ae834..00000000 Binary files a/Music-Player/images/stop.png and /dev/null differ diff --git a/Music-Player/music_player.py b/Music-Player/music_player.py deleted file mode 100644 index eee923cd..00000000 --- a/Music-Player/music_player.py +++ /dev/null @@ -1,75 +0,0 @@ -import glob -import tkinter as tk -from tkinter import * -import vlc - - -def last(list): - return list[-1] - - -def music_name(): - global my_music, music_number - return last(my_music[music_number].split('/')) - - -def play_music(): - global music_number, my_music, player, instance - to_play = my_music[music_number] - media = instance.media_new(to_play) - player.set_media(media) - player.play() - - -def pause_music(): - player.pause() - - -def next_music(): - global music_number, my_music, music_label - if music_number < len(my_music) - 1: - music_number += 1 - music_label.config(text=str(music_name())) - - -def previous_music(): - global music_number, my_music, music_label - if music_number > 0: - music_number -= 1 - music_label.config(text=str(music_name())) - - -music_number = 0 - -window = Tk() -window.geometry('330x120') -window.resizable(False, False) -window.title('Mp3 Player') - -instance = vlc.Instance() -player = instance.media_player_new() - -my_music = glob.glob('/home/shitij_agrawal/Music/*.mp3') # path to music folder - -play_image = PhotoImage(file='images/play.png') -pause_image = PhotoImage(file='images/pause.png') -forward_image = PhotoImage(file='images/forward.png') -backward_image = PhotoImage(file='images/backward.png') -stop_image = PhotoImage(file='images/stop.png') - -music_label = tk.Label(window, text=music_name()) - -play = tk.Button(window, image=play_image, command=play_music) -pause = tk.Button(window, image=pause_image, command=pause_music) -forward = tk.Button(window, image=forward_image, command=next_music) -backward = tk.Button(window, image=backward_image, command=previous_music) -stop = tk.Button(window, image=stop_image, command=lambda: sys.exit()) - -play.place(x=130, y=50) -pause.place(x=10, y=50) -forward.place(x=190, y=50) -backward.place(x=70, y=50) -stop.place(x=250, y=50) -music_label.place(x=10, y=0) - -window.mainloop() diff --git a/Music-Player/requirements.txt b/Music-Player/requirements.txt deleted file mode 100644 index 07597596..00000000 --- a/Music-Player/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -python-vlc==3.0.12118 diff --git a/NASA_Image_Extraction/.gitignore b/NASA_Image_Extraction/.gitignore deleted file mode 100644 index 695eff01..00000000 --- a/NASA_Image_Extraction/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -# Python specific ignores -__pycache__/ -*.pyc -*.pyo -.env -# Other files or directories you want to ignore... diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Aurora and Milky Way over Norway.mp3 b/NASA_Image_Extraction/Astro_Images/1233-01-01_Aurora and Milky Way over Norway.mp3 deleted file mode 100644 index 810e0aad..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Aurora and Milky Way over Norway.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Aurora_Over_Circle,_Alaska.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_Aurora_Over_Circle,_Alaska.jpg deleted file mode 100644 index 2eff324a..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Aurora_Over_Circle,_Alaska.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Aurora_and_Milky_Way_over_Norway.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_Aurora_and_Milky_Way_over_Norway.jpg deleted file mode 100644 index f2b78a5f..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Aurora_and_Milky_Way_over_Norway.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Baily's Beads near Solar Eclipse Totality.mp3 b/NASA_Image_Extraction/Astro_Images/1233-01-01_Baily's Beads near Solar Eclipse Totality.mp3 deleted file mode 100644 index f8bf082a..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Baily's Beads near Solar Eclipse Totality.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Baily's_Beads_near_Solar_Eclipse_Totality.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_Baily's_Beads_near_Solar_Eclipse_Totality.jpg deleted file mode 100644 index 15250ba7..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Baily's_Beads_near_Solar_Eclipse_Totality.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_ESO202-G23__Merging_Galaxies.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_ESO202-G23__Merging_Galaxies.jpg deleted file mode 100644 index 6b6ca86a..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_ESO202-G23__Merging_Galaxies.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Fireworks_Galaxy_NGC_6946.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_Fireworks_Galaxy_NGC_6946.jpg deleted file mode 100644 index fd74d317..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Fireworks_Galaxy_NGC_6946.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Milky Way Over Quiver Tree Forest.mp3 b/NASA_Image_Extraction/Astro_Images/1233-01-01_Milky Way Over Quiver Tree Forest.mp3 deleted file mode 100644 index f93ace3d..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Milky Way Over Quiver Tree Forest.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Milky_Way_Over_Quiver_Tree_Forest.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_Milky_Way_Over_Quiver_Tree_Forest.jpg deleted file mode 100644 index 3115f04d..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Milky_Way_Over_Quiver_Tree_Forest.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Moon and Venus Over Switzerland.mp3 b/NASA_Image_Extraction/Astro_Images/1233-01-01_Moon and Venus Over Switzerland.mp3 deleted file mode 100644 index 2da23dda..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Moon and Venus Over Switzerland.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Moon_and_Venus_Over_Switzerland.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_Moon_and_Venus_Over_Switzerland.jpg deleted file mode 100644 index 9f426d29..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Moon_and_Venus_Over_Switzerland.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_NGC_1232__A_Grand_Design_Spiral_Galaxy.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_NGC_1232__A_Grand_Design_Spiral_Galaxy.jpg deleted file mode 100644 index c2fdf2d9..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_NGC_1232__A_Grand_Design_Spiral_Galaxy.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Northern_Mercury.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_Northern_Mercury.jpg deleted file mode 100644 index 91efe8bb..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Northern_Mercury.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Shuttle_Engine_Blast.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_Shuttle_Engine_Blast.jpg deleted file mode 100644 index 1d72771c..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Shuttle_Engine_Blast.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Largest_Rock_Known.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Largest_Rock_Known.jpg deleted file mode 100644 index eccb6642..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Largest_Rock_Known.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Milky_Way_Through_the_Summer_Triangle.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Milky_Way_Through_the_Summer_Triangle.jpg deleted file mode 100644 index 31b92168..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Milky_Way_Through_the_Summer_Triangle.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Millennium_that_Defines_Universe.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Millennium_that_Defines_Universe.jpg deleted file mode 100644 index d267d32a..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Millennium_that_Defines_Universe.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Phases_of_Venus.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Phases_of_Venus.jpg deleted file mode 100644 index 5cb59ecb..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_The_Phases_of_Venus.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_To Fly Free in Space.mp3 b/NASA_Image_Extraction/Astro_Images/1233-01-01_To Fly Free in Space.mp3 deleted file mode 100644 index 22674d65..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_To Fly Free in Space.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_To_Fly_Free_in_Space.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_To_Fly_Free_in_Space.jpg deleted file mode 100644 index e9bbf4ac..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_To_Fly_Free_in_Space.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/1233-01-01_Vela_Supernova_Remnant.jpg b/NASA_Image_Extraction/Astro_Images/1233-01-01_Vela_Supernova_Remnant.jpg deleted file mode 100644 index d477bd0b..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/1233-01-01_Vela_Supernova_Remnant.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2012-01-01_To_Fly_Free_in_Space.jpg b/NASA_Image_Extraction/Astro_Images/2012-01-01_To_Fly_Free_in_Space.jpg deleted file mode 100644 index e9bbf4ac..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2012-01-01_To_Fly_Free_in_Space.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2020-01-01_Betelgeuse Imagined.mp3 b/NASA_Image_Extraction/Astro_Images/2020-01-01_Betelgeuse Imagined.mp3 deleted file mode 100644 index b4261735..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2020-01-01_Betelgeuse Imagined.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2020-01-01_Betelgeuse_Imagined.jpg b/NASA_Image_Extraction/Astro_Images/2020-01-01_Betelgeuse_Imagined.jpg deleted file mode 100644 index e456f7fc..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2020-01-01_Betelgeuse_Imagined.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2020-01-28_Star_Formation_in_the_Tadpole_Nebula.jpg b/NASA_Image_Extraction/Astro_Images/2020-01-28_Star_Formation_in_the_Tadpole_Nebula.jpg deleted file mode 100644 index 2d2e8f4d..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2020-01-28_Star_Formation_in_the_Tadpole_Nebula.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2022-01-23_Saturn,_Tethys,_Rings,_and_Shadows.jpg b/NASA_Image_Extraction/Astro_Images/2022-01-23_Saturn,_Tethys,_Rings,_and_Shadows.jpg deleted file mode 100644 index 065d9fd3..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2022-01-23_Saturn,_Tethys,_Rings,_and_Shadows.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2022-11-25_NGC 6744: Extragalactic Close-Up.mp3 b/NASA_Image_Extraction/Astro_Images/2022-11-25_NGC 6744: Extragalactic Close-Up.mp3 deleted file mode 100644 index f5611fcf..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2022-11-25_NGC 6744: Extragalactic Close-Up.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2022-11-25_NGC_6744__Extragalactic_Close-Up.jpg b/NASA_Image_Extraction/Astro_Images/2022-11-25_NGC_6744__Extragalactic_Close-Up.jpg deleted file mode 100644 index 5dda6988..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2022-11-25_NGC_6744__Extragalactic_Close-Up.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2023-01-01_The Largest Rock in our Solar System.mp3 b/NASA_Image_Extraction/Astro_Images/2023-01-01_The Largest Rock in our Solar System.mp3 deleted file mode 100644 index 16e044b9..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2023-01-01_The Largest Rock in our Solar System.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2023-01-01_The_Largest_Rock_in_our_Solar_System.jpg b/NASA_Image_Extraction/Astro_Images/2023-01-01_The_Largest_Rock_in_our_Solar_System.jpg deleted file mode 100644 index 49fde58d..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2023-01-01_The_Largest_Rock_in_our_Solar_System.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2024-01-01_NGC_1232__A_Grand_Design_Spiral_Galaxy.jpg b/NASA_Image_Extraction/Astro_Images/2024-01-01_NGC_1232__A_Grand_Design_Spiral_Galaxy.jpg deleted file mode 100644 index c2fdf2d9..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2024-01-01_NGC_1232__A_Grand_Design_Spiral_Galaxy.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2024-01-02_Rocket_Transits_Rippling_Moon.jpg b/NASA_Image_Extraction/Astro_Images/2024-01-02_Rocket_Transits_Rippling_Moon.jpg deleted file mode 100644 index a17e7b8c..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2024-01-02_Rocket_Transits_Rippling_Moon.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2024-01-07_The Cat's Eye Nebula in Optical and X-ray.mp3 b/NASA_Image_Extraction/Astro_Images/2024-01-07_The Cat's Eye Nebula in Optical and X-ray.mp3 deleted file mode 100644 index ac331be9..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2024-01-07_The Cat's Eye Nebula in Optical and X-ray.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2024-01-07_The_Cat's_Eye_Nebula_in_Optical_and_X-ray.jpg b/NASA_Image_Extraction/Astro_Images/2024-01-07_The_Cat's_Eye_Nebula_in_Optical_and_X-ray.jpg deleted file mode 100644 index aaf35f92..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2024-01-07_The_Cat's_Eye_Nebula_in_Optical_and_X-ray.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2024-01-08_The Phases of Venus.mp3 b/NASA_Image_Extraction/Astro_Images/2024-01-08_The Phases of Venus.mp3 deleted file mode 100644 index f1d06e0d..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2024-01-08_The Phases of Venus.mp3 and /dev/null differ diff --git a/NASA_Image_Extraction/Astro_Images/2024-01-08_The_Phases_of_Venus.jpg b/NASA_Image_Extraction/Astro_Images/2024-01-08_The_Phases_of_Venus.jpg deleted file mode 100644 index 5cb59ecb..00000000 Binary files a/NASA_Image_Extraction/Astro_Images/2024-01-08_The_Phases_of_Venus.jpg and /dev/null differ diff --git a/NASA_Image_Extraction/README.md b/NASA_Image_Extraction/README.md deleted file mode 100644 index 0d03e89c..00000000 --- a/NASA_Image_Extraction/README.md +++ /dev/null @@ -1,34 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/rojre1979) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/rojre1979?tab=repositories) - - -# NASA Image Extraction - -

- - -## 🛠️ Description - -It will interacts with NASA's API to fetch the Astronomy Picture of the Day (APOD) for a given date, then displays the image and provides an option to listen to the image explanation as audio - - -## ⚙️ Languages or Frameworks Used -You only need Jupyter Notebook to run this script. You can visit [here](https://jupyter-notebook.readthedocs.io/en/stable/) to download and for documentation. - -## 🌟 How to run - -Running the script is really simple! Just open a `terminal` and type `jupyter notebook` then hit `enter` key in the folder where your script is located and run the following command: - -```sh -Press `Shift` + `Enter` key for each cell in the jupyter notebook. -``` - -## 📺 Demo -

- - -## 🤖 Author -[Robert Regalado](https://github.com/rojre1979) - diff --git a/NASA_Image_Extraction/astronomy.ipynb b/NASA_Image_Extraction/astronomy.ipynb deleted file mode 100644 index c390b2c4..00000000 --- a/NASA_Image_Extraction/astronomy.ipynb +++ /dev/null @@ -1,291 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "ebfff8f0", - "metadata": {}, - "source": [ - "### NASA IMAGE EXTRACTION" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "ceaace95", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Requirement already satisfied: nasapy in /home/robert/anaconda3/lib/python3.9/site-packages (0.2.7)\r\n", - "Requirement already satisfied: requests>=2.18 in /home/robert/anaconda3/lib/python3.9/site-packages (from nasapy) (2.28.1)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /home/robert/anaconda3/lib/python3.9/site-packages (from requests>=2.18->nasapy) (1.26.11)\r\n", - "Requirement already satisfied: charset-normalizer<3,>=2 in /home/robert/anaconda3/lib/python3.9/site-packages (from requests>=2.18->nasapy) (2.0.4)\r\n", - "Requirement already satisfied: idna<4,>=2.5 in /home/robert/anaconda3/lib/python3.9/site-packages (from requests>=2.18->nasapy) (3.3)\r\n", - "Requirement already satisfied: certifi>=2017.4.17 in /home/robert/anaconda3/lib/python3.9/site-packages (from requests>=2.18->nasapy) (2022.9.14)\r\n" - ] - } - ], - "source": [ - "#Installation of nasapy api\n", - "!pip install nasapy" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "84d66eb9", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Requirement already satisfied: gtts in /home/robert/anaconda3/lib/python3.9/site-packages (2.5.0)\r\n", - "Requirement already satisfied: click<8.2,>=7.1 in /home/robert/anaconda3/lib/python3.9/site-packages (from gtts) (8.0.4)\r\n", - "Requirement already satisfied: requests<3,>=2.27 in /home/robert/anaconda3/lib/python3.9/site-packages (from gtts) (2.28.1)\r\n", - "Requirement already satisfied: charset-normalizer<3,>=2 in /home/robert/anaconda3/lib/python3.9/site-packages (from requests<3,>=2.27->gtts) (2.0.4)\r\n", - "Requirement already satisfied: idna<4,>=2.5 in /home/robert/anaconda3/lib/python3.9/site-packages (from requests<3,>=2.27->gtts) (3.3)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /home/robert/anaconda3/lib/python3.9/site-packages (from requests<3,>=2.27->gtts) (1.26.11)\r\n", - "Requirement already satisfied: certifi>=2017.4.17 in /home/robert/anaconda3/lib/python3.9/site-packages (from requests<3,>=2.27->gtts) (2022.9.14)\r\n" - ] - } - ], - "source": [ - "#Installation of gtts(Google To Text Speech)\n", - "!pip install gtts\n" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "00ef1628", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Enter date in YYYY-MM-DD format e.g.`1996-01-01` (between 1996 and today): 2024-01-07\n", - "Validated date: 2024-01-07\n", - "Directory already exists!\n", - "Wait for a moment to display the image\n", - "Date image released: 2024-01-07\n", - "\n", - "\n", - "Title of the image: The Cat's Eye Nebula in Optical and X-ray\n", - "\n", - "\n", - "Description for the image: To some it looks like a cat's eye. To others, perhaps like a giant cosmic conch shell. It is actually one of the brightest and most highly detailed planetary nebula known, composed of gas expelled in the brief yet glorious phase near the end of life of a Sun-like star. This nebula's dying central star may have produced the outer circular concentric shells by shrugging off outer layers in a series of regular convulsions. The formation of the beautiful, complex-yet-symmetric inner structures, however, is not well understood. The featured image is a composite of a digitally sharpened Hubble Space Telescope image with X-ray light captured by the orbiting Chandra Observatory. The exquisite floating space statue spans over half a light-year across. Of course, gazing into this Cat's Eye, humanity may well be seeing the fate of our sun, destined to enter its own planetary nebula phase of evolution ... in about 5 billion years. Free APOD Lecture: January 9, 2024 to the Amateur Astronomers of Association of New York\n", - "\n", - "\n", - "URL for this image: https://apod.nasa.gov/apod/image/2401/CatsEye_HubblePohl_1278.jpg\n", - "\n", - "\n" - ] - }, - { - "data": { - "image/jpeg": "/9j/4AAQSkZJRgABAgAAZABkAAD//gASQWRvYmUgSW1hZ2VSZWFkef/sABFEdWNreQABAAQAAAA8AAD/7gAOQWRvYmUAZMAAAAAB/9sAhAAGBAQEBQQGBQUGCQYFBgkLCAYGCAsMCgoLCgoMEAwMDAwMDBAMDg8QDw4MExMUFBMTHBsbGxwfHx8fHx8fHx8fAQcHBw0MDRgQEBgaFREVGh8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx//wAARCARxBP4DAREAAhEBAxEB/8QAkQAAAwEBAQEBAQAAAAAAAAAAAAECAwQFBgcIAQEBAQEBAQAAAAAAAAAAAAAAAQIDBAUQAAEDAwMCBQIFAwQCAgECBwEAEQIhMQNBEgRRYXGBIhMFkTKhscFCBtEjFPDh8VJiFXIzgiSSQxYHssJTNBEBAQEBAAMBAAMBAQEBAAAAAAERAiESAzFBURNhMnEE/9oADAMBAAIRAxEAPwD+VEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAqBQCAQCAQCBoEgaBoEL1VDUAgGQCAQCAQCAVAoBAIBAMgCgYQIqhoBAMiGiiiARAgYi4QDFA9GAQDIGQGsgLoDTsgYqUB+SAc6oAoAFABnsgL0v3QPsgKoCoQPVyqETfuoGeyoVR4KALOgAOqoZogVWqoCioY1CgTHVAaoG48VQBnZkCNj1UDOndAFhRAaqgYAdygRej/VQDOgANT4BAMgW1BVWdUOI9J/7PdBMh9VBLVQJrsgEA1ECRQboEyAbqgWiAQCAQBQKygaBFAIBAIBAIBAIBAkAgEAgSB2QAQGqBIBUCgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgbIAICyAdA0AgEAgECQNAIBAIBUCgFQKAZAIBlQwgEAgEBoiGAgYCB3ogG+qBgMK3QDEF0A1XZAIB9EBVA2CALN+SAQO/cIFXogZAsyBMUBRqDxQMN/RUMu6BMVA2re10CH5qht+CAYlQBBsPogGIqfNUAFH80A/m6BVN7oGWQFUDav4oBhdAMWdqoFrdkDH1QBGqALUOtkB4eSBFjpUaoA91AGqoV0DoCUD7IAXIQMa1ogmT1QTVQFW/BAbfogAWowKBMyAKCToihkCIQKyAQNAkBVAIBkoECKAUAgEAgEAgEAgECQNAtUB2QGiBIGgSAQCAVAoBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAKgQCgEAqBQCAQPRAIBA0AgEAgEAgEAgFQIBQCAQH6qgCgaqBAIpoBqIABE0yEDDHxQB6C+qB6d0DFUCo6Af8LFAad9UACHcoH2CA/NAwKVugL6eaA7EIAC7+SANq3QJxRAVIQMB71GiBgVVAbqANiEAzaVQOrIGY0dUIeDdFAAsX6qgd3QDABwgAG8CgEDEajrdAbQ9aFARHTwQNigcnj4IJFQaIAfkgG1QFNUB4IB2vZAH80EsDa/VQMD66qgYWQVTS6AZ6/ggRAaiCa/W6BOFAahUNAtVAGIQJkCPTqgRCBEIaLBFDEoEyAZAkAgEAUCUAgEAgEAgFQKAQCAQCAQJA0CugECQCAVAoBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBUCgEAgEAgEAgEAgaAQCAQNAIEgaAQCAQCAQCAZUCAQCAqgaBsgNUAgYH0QNEICiB2QMNogZOor3QFrqgIKgVXogbasgQqgbeQQCAYPVA6/8ICiArdABwXGqA1qgbG+iAYEPogKgoGaqg21CgGNupQNqKhgBvyQJiBXVAEFh0QG36aIHte3RA/2hAbSAgGjQIGYlvBAgCa9EABXogZZ7OgPUgC1GFUCardUAdpAFXQJiS2oQPaerIEXpqglmt5BA/wAD0QGtEAW1DoG3SiAA1QBcGvkEEuWZkAGZkAyAIdkC06IBg1kA1EEtqoAhAkC2lnZAyPqgR7IE1ECZFCBIBAGyBKAdAIBAIBAIBAIBAkDQCBIBkAyAVAoDRAdkAgSAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCCkCQNAIBAIBAIBAKgUAgEAqBA7IBAIhhFHdAHogGRDQVtGgKAI+qAaiBIHpRAxRu6ABL0CAevVAkDYnRADsKoGBVAwxQJiyobWbzUAQxYWVDanRQAF1Q2716IE10BXyQO4ogY/FA9lXKBsT2ZAtmr0QMC1GRDaVTqigRq5FEDY2NiiACtNEU9lETSETt7C6BiIpRUG24NCFAAXqho2k0QMD1VKBGMg/RDSGNh4qg2sCBXoigQJLFkQ9vVAbdB4qBWBbW6CTEsOyKCASECMaOgAHQDHVA6kf+J0QIgC9Sgl9LoBquAgB1QBdAVZkCIHVAdndBJBUAI9aNZAxFw/4q4DazdEwKQCCT0CgWrIEWRRYNQvqgQjVEBuX0RSQCAQCBKAQCAQCAQCAQCBIGgTIBAUQDIBAFAkAgFQKAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQNAIBAkDQFUDQCAQCAVAoBAIBUCAQCAUDVAgEDZEDMUDqyBXQUgO+qAcoAmqAqgLBAx+KAcIGHeniqGG6eCBtSiBMXPggNr9uigABpQi6BgA9lQagdFAw4JVDq4dAa21QUzuRRAGNA6BNUdFBRDDxVAxYA0QVGCIZiGHVA9lvyQFBYUVD2lgW1QV7fUXSwAhJ2AsoLGOhcLWCBFqkKCtsTJjqFAtpBLVCoNlbd0CY1EtbIK2VFafqgW0v1exVCMQ5FgLnqVAEE2B2oFsp+SAb0lgxQMBmJCgAHejdlZA4wNdR1VCnGlL6qA9sECqCdkXLoFtHioJ2EsL9CimYGj9WVTRKIFAgihJooqakuEAxp1QMMDX6oE96OgKszoEbNqgRQHiECL0cIGCQaIKfrb9VRBAN7qBGOqBMNVAr2QIgoExYMi0kQN9UUkAgWqBsgSgEAgEAgEAgEAgEAgSBoEgEBogCgGQJAIBA0CQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCoagLICiAQCBoEgaAQCAQCAQCAQNlQIBAIGB2QPVAEog08UDDCqBFulEDqT2QH5IDzQNuqBVdA7oCzU80BRBQBZUMWQDIAPVQF+yBgaoBq0VwDB0FEa6JQxF//AIoKjFq/QoHGP1QNiTXqyIYgK6sUDMAC9wdED2AkhkFwgzUqg09o3AFLqhSx1BAugkwDCRDpgvYaB2B0VkFCO2R690BGDSpe5RAXLkBuyKkxp6rKBgOOyuBFrPXVKQ9p3dmqUlC2iUjECwoUAQWaxCAAq7KCSNe6sDkCa6IAxhsdzu/66Mghi5+qgZqKWQADigr+iBkOGe11RMosxAuoADsgW0AuyAlUWZACEgwJcaIHGFDVBM4tEOKoIBDF66KCNvpfRAtuvRFDOLd0ElzVA6OQRpcIJYICgQFu5QK9HqgoCJLDzQEiBpZBBBKAkLMgmtSfooBkC0QJAmDdkAikgEAgSAQJlAKwGqgEAgEAgEAgECQNAIB0AgRQJAIGgECQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCoFAIBAIBAKhhQCA80BZA0AgEAgEAgEAgFQIBlMAqGEQ6opIhhABkVQcIg0QBGvVADpogAWKBIKbpVADp0QBZAAEIGxrSmqBn/AIQLbr1VFa90D2m4QBqUAB9AgoAdKIAQp+aCoxBDjS6BtLa7IhjGdaoqowdVFRxyfRtUUxiDUr0KYi/aYubfqgYxB+6CttGYBAbdpoKFMFxumBkEFhfVUBB/b9UAAAzhNDEWL3OgRBJ9tRUVQQazrdnRSkZSaqaHIB6PKWqBUBpR7ohCRJkooM7fkgbkXLg6IAkbm0OqoD6SX8komTMHUD2npTq6sBIWYulokAEuoHGpLADsgGlTp1VAxfboFAjtI7vVA2YkHxSBSgzF/AKgjHdr4ugKigNigbRL0O5BEwKVZKII2mn16qCZDVtbJQEG2iipIJ080CkGQSAECkNUBTUU0QKx7oCpPQsgcQWZqjVAENrUoJZqEoELfqgX7kA2qgTDzQDUqECY+WiBMgSA8EUaIEyAZAmQCAQJQCAQCAQCAQCAQCAQIoEgaAQCAQJUCgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgaACA1QNAtUDQCAQCAQCAQCAQCAZUDIGyB2QBQFXfRABA7IhoChQAugKgN9UDoUB0QBqUC7IKb8EDZhd3sqByTbxUAzd1Q9aWUDDB6KirgBAbWQVGJdA9njRE1UYWOqooQ9FtUFjE1ge7oA4wO6DSLEMAxQJnNQwsg0iWpEeCoJdf8AToGDIgA0UBTa5NQqByTejWUBEtFwWOqaDc5L66oASYEEuCgQlIEfggqJDky81UImLXugkzYkEv0UUg24BBQkQ/8Aoq6IcUI/FTQGxL3QUdOwVEuTXUqCr16IGS4LKhAHaKOFAM4PRAPEeGioli7EKBgdAX1QMAEWZlQH7jo4UEVq4rogZMt263VAmo72sgYqepIQOJJFAxF1RdAKBygiUQ7v6kEbX1o+vVQTKDm4dAhAm90BKAJ8EwTt1uhqdvVQTNtLoJ7lFIAE2bugQCCw9jZBGvmgRDyKBg1QKumqCdFAGyAADIEx8ECQP8kEkIEAighEJFBqgCgTIBAioBAIBAIBUCgEAgSAQAQBQCAQCAQJAIBA1QIEoBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBUCAUAgEAgaACAQGqAZA0AgSBoBAIBAIBAIBAwqDxQNAC6AugNEAEQ3qEDQDN4oG1KoGKnpRkAwACAbzVAVAAMEDLiiAFkDILOgYDlA9puqGB1CCxC5CC4xDORVEUIObWVFxxEzJLkHRXEaDDY6dEFCMWJAZFBBNSKuqAgNW+gUAHL7r6BIG0Wp4HxUomIILEpovc1vqqYgyjd9VAjJgT10SUIXdQFGPVDDiQBtOquh7gKN5qLCodaKoC5DXKByFA4Y6pRLV/JQBIugrSv+6qpIJ7ogD2Z2sgqpk6oQL0HVZVQA1sqJlqxtqiGL16UQTTUaoNNo22DXTBEYyqEgqIIoVQ5bgAHQSR0DqaDW7AXHdQKMTKRAD6qiSNNEDj6dWQOMQDQO6otjUnRERL1EDXRkqmTGg0/VUTKHrtTRQMRBpY6IAsb07qiDBiX8lApRZuuqDPa4ZTBEo7bBigW3rdQDAeSKRvX6IIpaxQMjoUE0tqgCGCBIBtEC1ZQMIAhx0PRUJqMgkA2CgGo/RAmqgGQIu6KVUCQCAQIqAZAOgEAgEAgEAgEAgEC1QNAmQCAQCAQJAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAIGgSBoBANVA0AgEAgSBoBAKgQNkCooGyoEDQJEV+aBMimgEQ7IAIKPQIENpJe2iCqhmFOqBdQ/kgYfRUGigAAqBuyCgKMyC2dqIDY3iguIcs1kBsNG8lUa48ZFUg2jiIAdg+iocYPLUeCDQACxYyVQpQO7b+7qmCjdtpoKv1QRM0pZQiJNd3LXTFLeNSoYN8WIseqKAbB6qAeprewQKgDG4sECJEosRVAM1AUA4N9EBEQvGqByPQuNU0IEFwKFBW6nQoChqLlEAugbaa6qgY7jVyyKIiL1qOqAoLWKIZv3CBliXQBiCbsVFo6ghyqhkBm1RUkPVEUwpV0EsHLeaBgM/U28EFMdDZAi241rdBN7l1AANangqABwPyQKQFSgqIp9zdElDcAMSxOq0IvSjaFTwJeu3ooLB2wbVWAET19SBSnRQMNS3mqEY1J1ugzlEAkh26IJ2ud2igBj3HwqrgPbNGuboM5Q9RFiFkTtIAZn1QSQSKhFSUCL+SYDufBAWUCZAU6qivTtfVUQeyyEQdECIQBQBQKiBaIEyKSAQF0C0UAgFQKAQCAQCAQCAQCAQCAQJAaIEgEDQCBKgUAgEAgEAgEAgEAgEAgEAgEAgEAgEAqBQCAQNAIBA0CQFUDQCAQCAQCAQCAF1YGgEDQBP0QCBhEKqBsgNEA1EDoANSgZGlxdA2rRAMWdA2JQDMgAEDYoHEEHvqqKMWHndAxFj4oNNpRFQgDUqixFrF0FQxF6WuyYNYiBYdCqLBq0hQWVQDJtNCA5qEC3eouRWqmiRkp6q1TVKWSWhZ00xBk/pFOqgncGcg9FAgXLt4Ip3CBMGfXVUVQ1FwgHDd1Atr1QNjYIERYvbogpo300UgbRBLm+ioQD01QWzn1fdqECYueyBxaL690ALXQAjI1FAgALnTRA2J0FUDLP4UZVMIj1H8kDALgsimTIlhogTEFxXqiF620EUBbxRTaj08FAHc9RTRENUIy9VkUvTXqEQhJyaaXQMMLVogC7dkMMiwBBOqQSSXDVfQ6IFV71CBBg5Fzqgfh0qgRkWHZUJwKaXUDG0/uVBIj6K0ToKs6yKiHfqKgKixGRluNiKjoqiNpJcIrKWOtb/goJIiBUKDMi50FlFTVn6oJIcdOyBB9ahAGIQFdbIGBSiBG/VAn6eaBNogCANFAqsgTjRAUZAggR/JAkXQyBIBECKWigEAqBQCAQCAQCAQCAQKyBoEgSAQCAQCoFAIBAIBAIBAIBAIBAIBAIBAIBAIBAIBAKhqACAQHggAEDQCAQCAQCAQCAQCodUAHQCBoBEFEDQCBn80AzoA2CAPbVBQjRMDDPVUDd0A3qcIKbRAzFqXQNie6CgLPdBYg9LalEMQ6B0FgBnIfsqLjB7BnqCqK26ipN0BQAEXBugugIfVVBOQBYVAsoEZDTUXUqocxvU6FNC3Al0A/0QSXellAqjVwge4+TIGSCBtNNUUg/iEFgAilEFCNHKBEU7oFtra9igYAFC/dQVQj8EUMHoASEQEGpDBAQiL/u6qioWkSH0AQAjRgG6oBg1PqqGAWAd+qiAMxIRSsXs+iIe0m42m6oZjVhVAbXuLIoAY01QJvS/dmRAx3dmoiqcM5uLKBBojqSiGQaD8VQjGvcIEQSWBUVJ3MSAqHb1G7WRBHbXR6opXpcXZQPa5cK4iTfvqgl/uAKaBjp0QIk0Ip1CAMr9UCBAPjr3QPfLp5poT+h2equhEkmjtqVBYMQGEnWhZmJVDvqoipGJYyLUoAqIIJiSBU3QQYHaXqY3UVkcNKV3adFMEnGxIuAgzOM7dxUCIoipaiBIKNygmluqBEMgZbRAiw7oEVBKBnwQLzqgRQJkUiBogGQDIEhgQJAKAQCAQCAQJA0AgEAyBOgaBFAIEgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEDQAQCBoBAIBAIBAIBAIGqBkAgED0QFOvkiG3RAtUD7oG5CAKBhtUAAAH00QAQNmQMv8ASyBg0IuVRQZg4ZrIHseuqC2uQiLjDU0QWIna4bsrgoY2Z76JgswaooB+auBBgUFCwfyUFOASdVUZk1oikZqaDd1ugTsL0UUVFdUCLmNCyAB6v2RMKINvqgbSZxoilEPqx1dBYHX6KAAuLqiwLaDqgYADB/TdApRiLm6ALMB9EDi7udEBE30HRQNmoHYoEwZ9LKmmA4OjIKBj9KBVAAimwDqAIZ6ONGQDOADQaBAC4L1CsqHR266pQi+1lFMO7vQ0QBiCdpDbdVUEY0diGsgbVqSSgT3DIGwfqGZItVCJIYWVRIapZ9CoDYT4DVRS2tFxc3CqE22+qKRiBFgUFCIs9NCiEQYu1lRnt0/FQBi1r6oCQFSA3VFRVuyIdHLUooqSTpTqgmbmj90QOaOUDBcWr0VFBwajxVDckUogISANQ6BykXo1LqoYBYdblBO0sW1uEVBgACoMzF2qoIMXelf0QTIDyUEsX6MEUGUgz1QSQH7oAB7hA7gjQWQSO6gCECZ/DqgV/BAiKd0AR+KBWQBdAIFRFI1QK6AZAioBAIBAIBAKgUAgEAgECQBQGiBIGgSAQCAQCAQCAQCAQCAQCAQCAQCAQCAVAgFA0CQNAIG6AQCAQCAQCAZUF0AygAqGgEDDdEDppVEDDVAX0ZkAbIBkDbUoAVKBsqGfwUADRBQDqhgG6goRpUXVFRjWgQaxxk2uriLEGrtp17qjX24mIcAIhwxgxr5JgZADPRkVMpBux1VCjIB3p0UEiTOD9t+7oEcgLi40WRJe1kBQk9dUAARI+CB1L3qinrTRAvutoaoCvggYB3IA/g6ICNNVFW5GlUAImzMdVRQBJr4AoGAz0Jbr1QMgCLM5ugm46FBZgGvVAtrUNzqgohg1kClBuwNEDAcbT9vXVUMsB+AQDF2ZlASDO/kyBi5N3FECJiP2udFQtoqG0dBTEkM1kQhG9WfRA4il2qiqIGpJfRA4AdWDogYEnbTqqESOmiijaCQRR7hNGkfSSwcWVZLaBag1ClWIlCrk+nQKKAA1b9OyuCSOiIZjRh01QOIAiC1bEJBMgHMVRJFG6KCS7t2dAiC1VFTt62srgJA/0QQYyezBREk0qgRDHoEBaJJFeiouBO37r6IFZqoHE7QeqBEvIHRUUJEE6PYoHKfi+pQBNLgjuggMbBmQTKLih8SgnawNHUETiGBGuiCDGtFFJkCctQsgYdigkjv5oCnmgRoG6oEbB1AqIEzoA0DIHtdAj1HggkhFItdAMgSAQJlAIBAIBAIBAIBAIEgEA6BoFZAIEgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEDQCAQCBoBUCgEAgEAqGgAgOnZAV1QCBhkAgA3miAIKKBMdEDb6hAzdAWQO4f6qhhyFAxt1VFDrogcRVuqC4wLt1QbQiBKvgtRGwxwbuNQg0jAGIJDHQBVF7AWDAdVQiIxJD0WRkSAWAfxQRLa7CoF0VFj1WQjWoqUDjEtVFDM6IW2t/NAyJAduupQAewKtUxZxexUD2lqXQDaivY6KiiQC1+6gCGZ9UAIkhhU9UDECWG5ygrbIFACJfsgsMzG3VA9rWDk66IAxDlx9EA1HI9OhQJn7hA7VbwQIh7XKCgA96DRVDpbZQVCCXJJNeyimzUI0c+KAiNbBVD0c20CKQjr1oyCiBGXdQJquSgfp6VQIEC3mUBFw/R7IGSTUXVQEUcqKcQdzMgoSJiWo2qobxcUfcLq1ImRDuaaBZURZ71KugMXiSAwe6IZxuzP4hFMwAFLiqaiJCj/uOi0JMS9VkQ1WQVLHKJDgVsyCZRBBeg/VRaQi4utIkgXeigyIqoExvdA9qoADe+iCQCzAMyBy8qoJkACEFbg7nRUMkFg7oChZ7dEAZAGh0QL07aeaoQENPMqBShA/bIIMxAh+nVSiSAQ5LqCJDVFI90CDnsAgbOCUCIlRMEkEhACygXigdyDogDWyCUCQT5VRRVkAgSAQJlMA1EAgEAgEAgEAgEAgQQCA1QCAQDqhKAQCAQCAQCAQCAQCAQCAQCBqhKAVDQCgGQFEBRA0AgEAgEAgbKgsEAgEAxQCCmQFroheCBi3dAaIHT9UDYOgdCaKgYanwQDBqVUDbRAxQsgoCjsqKiKE3BQaQjQNbVEaRxvF9BYKjSERI381RrGLk9rsiNBENTxBdaEmVf1U0KReJpqpoz36SUVnuGgRUmhpbqogFHRT9TaVuqGwd+nVQLuPN9ECDue10FAuX10QWAZXFrlAR2ioBQUIluxqQgBHQ2uEFGLjcR4BAxB5VLPcIHGMRQBqX6hUDR23NNFAj9AUFA9mAogYZmqCgVBqR1QLVhfTwVDBJJDCllAPJi10CkGPjcd0VQLu1BqdUQVD6jTwVA5IFS/RQAJLu7iiAeIoS76qgsGA81ARFbv8A1VDJGtxdAhcN4qCoufE2QTtIDE9/NUVFh5oExdlAqtbsyCjGTirvRggs0HhcIIcku1BZBNLtVBUbgi+roKcmh8VRZIeheiBiYsQwCRESNKFnseyBMCHSKQgCbUCqFKMjSpUCkAI0DqKRoKaqgIDtoiYzkP8AlFR7ddptdEJr0ZATt3CDPbWtroER3QI3ofJBQYEPdAOHLoJsd1wNUATEGtau4VF7ouf0QEtpAYV6oFFgT6aoJkImRjp1QSYgAjTRQSR6vUhqSC/YqCWFkUjUdGQIv1KBF60dAAOO6gGKoCoEeyCTVAkCKACKQFUAUAQgSAQJQCAQCAQCAQCAQJkDQCBIB0AgSAQCAQCAQCAQCAQCAQCAQCAQCAQNAMgEAyBoBUCgEAgFQ0AgEQdkUIGiAn6oC6BgEIAXQOgCAN0AdEFDogb6MgBayoGbVAxQ9UFga0QXAF30CIsRJLhlRe0dW6BBcSXY+aopqtQRdBoCH7WVAZgyZqDXqohSo7ihsipkairKKmQudboiXiS9j0UUvSZFrAVRAd1NxB6eCKKODSuqAb1HqgCPSD5sgYci3ggoQBLu/ZBpGJNtdEFR3DRtCmGqZpPYaBA2oSgDFgWNL1QTLaBa/XogVRG9DQIFuLgijU8UD0J1JQX5OgGD16IE0ujdUB6jS3fsge15NQAIGATpXVBJgfusNKoGA7xDhqkIKbQOD36KhGJDMamigZiQgGvQt0QJmoKOgBFiQ7hA4/c9+iuhNVmvdlAywEQB6hZkEy6n/RQU8QAwd0CYalAF3oX7oEztWyCza9UCc0YMSgmRDgCjXfqgYBlU6IKIesb/AKIGbNZkA4cj8VQOXfSyAi7mjNomphhq1odEXC76DVACJNAaG6gZYUduiAYEtQakoIEd1wPJVC9qpb/hUI4pSsHAupRnOBcjTqgz21YWF0EkXIFkEtRwK9EEy6itED10smiatdA3JoWYIFq70QNqlvtCord6Xe6Cd1WAsgYIP/yugRAEnuD+aBSgYt3sgzlH1XsoIk5vdRUvfogQc/RQMR/3VDYAVugkE6WUEm6BE/7IEgPKiAZnOiBG6KCgTBAEIEgFAkAgEAgSBoBAkDQCBKgUA6BIGqBQJAIBAIBAIBAIBAIBAIBAIBUNQDoBkAyB90AgEAgEAgGQNUCAZAFECBooqiH4ugerIAfVANSqABZA2dAM1EDBJQXECreaoNtkFbSNL6oKEaINowLWoqhgMAyBmb3sLKg3V6H80D3EHSyaD1EM6gvQCx1CAdvybVAh9T+SinUP16oJFatXQqB7QQQzFUSAzAXF0D2gklqaIHEUuxGiChGrXJuOiAETqWA0TBYjIRtR6HUhBQidz3e3ZDVbXoK6k90DApaqoCAWvWzIJo/qHZApGwP+ggUh2vooFq5FhRA4ks5ubdkFbWlq+pQXsADAgk3QKgJAJc/kgNtOpNB2CAAD3p/2QU+6gsPxQIilKdEDiSGI6ep0DdyBcXQMO+nh0VDapFwblAAAUt0UEiI1u9lQ5R9PggYg3Zw7IEQXpWl1AtpYWQSYjRmQMxo/7bIExdmsglnL2A66oRRBdyaNogfp1QKQBADaoGf+pDEWI1QBrICTAxFQgcS3j+iABfS2qAJDORQaC6BGXTy8EA4MqiqBwLm1k0NwTUkdAgQNCQHIVBIuxvqoMyTYF3qQguLaBiyo2gzeF/FVAIxLg0dRWeTFbQ9EGEsZZ5U6IjIgk7bDUoIkDFq1t5IJFCxUCYaqiQKdlAGzijXCoTmpayBkksQL3QAJNBZAzdA6OSKhqBWA9DV9I6d0CAIO4MyCJRD+KggijkKCTFgzIoA00QAHY+KBEoESeigm5ZAj0QIAvRAM47IDb/wgXZAmLoGipQJAIBAkAoBAIBAIBAIBAIBAigCgECQCAQCAQCAQCAQCAQCAQCAQCBhAaoGgEAgEAgEAgEAqHRAIBA6IBAwEQ9a1QDnogPFA3YWqgAXIKAArVA2I80DatUD1oGVFAPa2qCog/wC6DSMfTeiqKhj3OGtUpguoO0/dodGVD1cM9ggkiX7rqAFDX1CwQAIYigQHqDVZRVO7mxGqBhrm+hQDkh3qyA3HSuqC3aVRVtFAiJs0rGzdFdDEdWpYJgoQk7PpVACFzqEFGIixkL1QMgOdCBQICJdvx7IKjJ6NrdAEsKWerIG7toNEUiaHqEQbTcWIQSXcAkk6IAgk9NECa5NGoiqYvpa6Bi47fciLBcEtXTwQBJYgVPggUomv4IpVr06IGbubMgNrkP8Ah0QMD07bPqeiI0ALggN0bsgRF3FT9yB0YMfB0Ds2oN/FAqFyGoWIQB1e2iAaJnuLGVgeyoVRXWyimRFwBc3KCdrnzZEPYWpbVAjGQc7XNvJBIYAWOiKbSalgiAhqOD3QT2QDm9S1D/VFNhuGouERQroA10U20bwREmkhVigVpXfoDogQFX+pQK0WFe6BgO1bINBEGMpPtI+2KshrIliAS39UAJVLjW6Co9bi7oLMiz2QXHIWDipF0CE769yrEIiMxt0CkLHPPEQSb9lRkYB3A01UGc40fXogTV690EnwqgQPWrKBO4OiokPuYlBe28nUEv3oig9hREX6SL+qzLUAdkWNwEE0Pqv0HZQSYtQ+KBbWJIHpKgW1g5RUkg1t2QS6aJceKBO9FAV+iAYXQHgrQj9VAXQTKh7oFVkUHogWiAZAkQF1FJAIBAIBAIEgaAQCAQJABAG6BKgQCAUAgEAgEAgEAgEDQGqAVBooBA0AgEAgFQIBQHZUDIGiGigIgoimBVEDUQMU1QD9UAQ4fVABBVSB06IAOXZBQi4qqGA7g+SBxiXHgguMQzigdEWI0oFRoIljHW7dFQ4iTdKIDcaat1QLfV+v4KaHVmdyU0SHDjogAQWJoooBDl6/9UFAhgCaN+KApXogoD9xtooqwB0Y3CIuIiRV+6CtjilrEKhjGKNpoqK2guBTqFAADbS/VAbSCzVFSgTA0dyzl1REgPEAeCgqMh6Yno6Af0s1zdAE1JNhRA7tKoP4sgqQD1qQHCFIOR0OpQBi7sPEoJY169OyKbFnYghEaAN6RQXc3dAo0ILUsR3RVGIYs6BEDcaF+yIBE+SKIxcSIdzQoGzGhfQoHGIBYOB/2KCwHiHNi5KAMPoNUC2TArWOh0QMxp49EBOFXbRBO2RDj1BBW01A6P3REVDNc6IqiCDUORdELaaFjd0DMfSwdiXIVCNC4szKBAaU7oqiGfvRkEMKUodECMbCw08ECF79n7IhszNVAw9Op0RTlIRFC5QRKoD0Gg1RMDUD6XRcMk0LMNAEQi2tH6IEAwQDgAkXFkElrs5KAA3U6VZUWBSlG/JQUTI0FtVRIkT1YaDRAAsSTQSCIW6gIo2qKZINGodURJESLVCDMwswfuFREotbVQZnHVwGe6CTHyAQT30OiA/aHugVAaHsoFISFwgbFgT5hUKJv06oASIAYP1QIgtQoGLPdkFSgCAX8YqhEACuqgxkACipYu4UEjugL2UABYqgsWUCKAbsgCAqJN1Ah+aBN1uigsgWqAIQJAKBIBAIBAIBAIBAIBAkBRAFAkAgEAgEAgFQKAQCAQCAQNAIAIGgEAgEAgEB2QNlQIGgGQJA3QAdkDAqiGX6ugYDoBvwQMNWjKgYAOfogKuwUDcgUVFBiaILgHc6hBYgCQdFUaRjpbxQX9sQL9+6oBckjt3QMCn6dEESlcdFNEEl6WUU61QMadkQbnKKHoa6IBrPSlT1QXGrPToEFMxoPEJg1jEEgkPTRBcYyBJZxoB0QXGDuNbsgqgPRx+KCSImW77SPxQKQpt/d08UBI/cCK2Pigk19RDPo6CXceqnfqgKt1QMEu5sgoguYlnu/YoGN2ouKHsgYez9wimIuXArc+KB7abpX1CA2+mtHufyCBiDkFmIuNCgoxpX7TogoQLtpdBWyjE3sgnYBVyaVCA9uW0BmBqOvmgoQDuKH9o7IGcRvQFAGAAd6a9kGkYhiLi/iqAxLMKFULZEsfJlAbYh/oygPbD3VwIwjtZjSqgYiWPQj6II2UcChQNtAGFz1dBO1iCR+KCtjWLlUIDwJ16KCTAixY6k6oijFxQFruqM5QqT9VFTLHXq+iGHtD1BFEQthodBqgQ6j8UUizsC40RAOrfdcnsgKM9zqUC0c2RRVqU7oAMbfdqgD17IidoehqP1QOIL1DnUoLAqR/pkCmXAajUYIIYO9adED3ObP4qgPWzaIiQQDU0/VFA3PfzQUANt2e46oAipH+mRGM4ChJqLMmmM5xIJfyQRt1Pmgk1PQCzqBSa2vRFAYHqqhPXXsgUgLdUCZq6DRQDCwVDD1a6CtzgPpdUKTEuLJoiUXf8ABQZ7dFFIhu6AAq+qBHUIACygDHT6oEaP/qioRFeyBM6gkoEUAihAnQJAFAlAFAIBAIBAIBUCgECQCAZAkAqBQCAQCAQCAQCAQMIBkAgEDQCAQCAQCAQHdUPRAIaEDKA0dAMCgYCIYQAYFA3a6Bs57oCiAav5IAggoLjF3VFiLiqDXHEOxCqNBBrONSqNBGjmpP5KgNA1ANCoMyWufUNVNEmRlU0dAhV2FFFO9O1kCAFQPPxQMlgzVQH2jqmgrTpdBUYnyQXAGjN4oLjCvig1jQO/YINRE3AelEFGIix118VRMi7Fxu7qCDIsxNeiBCRDgVMqlBB9NQHJugZMSxIPZr+agUh1v/1KqjV2p0RFRiAK9KN3QUwAL3siqESWD2H4ILEbN6UFiIiCXbuOqB7Iu4/b+qA2sKggkfRAxG0b6ugewGpDl6DogvYQCGaQqT1QabRQ0YRr4q4pGA63qD3RClFiXIJ6oARAvbRMUzFgCbFMQEMxJ8IoKiA1G3ajogReJpfugggBnFboAMWJF+6AdqO5UAXdgHpQ9OyBkjq5Fwgly/WX6IK27n7XVAIFxTT8ED9sAMK90C2UZ6GroAY7CJpqSEFbGFCToxQQMYdvqgRw3ayIRxliGfxQIxAZwwsB+qCTju9x+aDOUXobauLlQIxND00QT2DMUCajXZFESdNUDo1NboEdpLaMiADTRBYibxHg6BmpG5n1QEgLba3fsispR/1qiJk4J/0yBBt23rYoDdLaza3VAHEib6MgoAkWYIKqA+lvJKkSxZgP9gmqnJAWugylEjStioMyKedAgnaXNAyBEAV6qoi7PRQICRuUCEQf1QONvFA/UCzIJk4H4kKgBDgmxsEFAgkghkCMYkOC4/VBAjR2+qKRB6V6qCSwqgQdnF1A3uqJJPkoEaeKANwgkjoXQDIJL2KKCUCQDVQBQIoEoBAIBAIBAIBAIEiBFBQCAKBIBAIBAIBAIBAIBAIGEAgaAQCAQCoFAIGFQMgEMCBsgGayIrV0ALFAIAIKj1VDY16oF6fNQU1LsqHtPj3QWIPVBtCAlR2a7qouMSIkXKDSILAXOqoN1AWtoqMpTJ76kdFKFSR8qKCQ1HCimWY0sgAa2coH6qbgBqwQIua6qBhwTTxQXGNa6h1RYdxSp/JMFxxjU+CDURMWaxogqIjYl2/NBqBKhe2iCbgHd6iqM5S9QFX69SoIckOBtl1QAJp069SooAdrjqVQAULXQUIm4q1PMoBiKt4oKANtDqUGkYlmAZrjqgqOOwbVyg0jj1qQ9OiDXYXJaruOioo4wYnUEu46oHKPrk5dgAgkgRcCo6hAhtDxAPiihy9RuJogtyzMHuPyVCkSW3MW/aFBIAck/ggYoXu1QdFQ3q5LE3CgRkNw/cND3VRYDmtSbsgcoh7EMoIYVAc6lwgUY2LAg6oG1IjUVVBspZmtXqoFs9LB2uT3QLaAfK6AA1Z0FAPIfiqLNGD1ehQRIvQMGue6gcKgBnANUGu2JPrLRCozuHdioJBEQaIKAer08ED2vuIZ5W7IMzD69T1TEZnEXJOgd+6CTjDVLi/mgjYVBJj0Be3gilsiCQ3qelUAQCS2l/FBO0swsKlAx59giNIhz4fmikQGL/67oJYkkhmFz2QTJjYeaIh/90EF6/8AUaoJJFGDDR0DDyPZBtQDoEEEk1FggcSHNfV3VD1/M91ApR1ueiDOUGrr0QZbA9BXXxV1GRbpUGyiokKki6AI11QKrdOqIbAmooKugC3d9VRMmIDVAuFAom/QIKEnFrqgIq0asgZDgV9XTRUZkFyoFsL1UUiK1NEEmz6IAsyCb0Z1AaPogQ7IETUoE2gQLTogVNEUHtqgCECQCBFQCAQCAVAoEgaAQCBIGgTIBkCQCAQCAQNAaIBAIBA0AgEAgEAgEAqGQgEAQQgb0QCIAPoin4+SIPzQCBoGGbxQA8EFPX9FQ4hxW6BgaiqDSMSSKXVRsIxcdR9EFsAa3Coe4UJsRp1VD3WoKChU0QZkhvqyCCel7OopBvpfxUBUxIQOlhoKnqgGI1qgBuampq6goRkTRBW2jyubKjWMBRz4oNQB6QdBQ9kFxABj06IGdrBh3AQNnv4sgRudCA6BF5BmY3MkE5JFgelG7oIq+r9UUCzDQ3UFiMnAJu7KioxJZ7C6CxEF6ONCgft6szoL2kTBmaFBqIBhRgaDwVFiIBJjcBq6vRA4UDai7oNAQzkuewVCkSAAKEfigkkkPGLHUvUqKlwNvqboB4oECXIdm1OqBmsizDoFRcQXahe/igRDas10EEP/APloLKBs96COl6oHr0JNmugYFKsOw1VRpEOBoAfN0ATGoEtx6oJkHvIHVioEAC/QVI7qhs2jav1QMigNS6gADtveioRFb+CBxDh6V6oGMdQ5etwgc4li1R1QZbQXpWIfxQVCJJFGfoUFyAoBYG6DOrEg6sSgUKnc17fkoNNp2hw56qh2qRWw7BAizGtP1UEkRNnbr1VBKMSQHtVghjMwFx5Dr3UEyxhmP+igzlA60JNCoJlE6hj1REtrbqVQBxEyYEDTt1RVttIan+6gW6LoAxiA/wB3QIMzAEmJnQ38UEEEB7dvBBDEs3miDrRjp4IHEAa1QEpMUCADOKoG0hUfigAfPUoNHB2lnIDkoFtY3BAsFRlODNq9X6IMJx9Pps9SoMzG7M2iBbKObIEAKlq2AUCJuPwVEkkf/FAreaADDWqoY3PS6IoEO2g1QDekl3I07IJI7UNkCLhBEqnoVFLSiAkfoUC0QJioE6BMxcoF46oJLIAoEUUIDVAEXQJAmUAgHQCAQCAQCAQCAQCBIEgEAgEAgFQKB0QCAKBoBAIBAIBABA1QIGgVUDZAIKYiqIGKBs7oELN9EDKAFLoGBTuqKALIKAr+aC4hrDyRGoibGg0VGkQPIBUUxpWnVBJLUIFBogzf0iRNVBJkQegKgdaFFDB60pQIGKDuLoBqB6OoGGsAGFiqKEZN1LoNBEiQr/yguAkzyqbNoFBrGAAETd3KotiTRgLMgbREQOguqAUuzM4PZQS4FAKHVAtw9WuhLoJaJAD3H4IqaksB5oGxc1pZv1UFCHq7PdXBcYGLSlUFx4INIwoBYRNAg0jj7XsFRqIVJkK6IBtNX9QKCwBSQZjp4IooCQTeyBBrPrr+aC9zg96Oqix1LUYBBnKJErh3+5FQaRINtCoEASQO10FOzG56oK2mNyz2HVUKTeoWBoYnqhiCAGiaaMoASeNfDb2QD7g462OgCCxfvqSqNoh7BtXKqKk9DpoWuis5BySaj9URMWDjvUqChEbi9tEDIA9IsfzVDZgB1sgkO/U6lBUYvG1bEILhFy4F0Eziwu5QZ/m1VBcYWexH3aoHIHSniqM5dxRQMbixNdoYDsotaRjEUsTeJWkTISBfz8lkSer+CoW2Qrrq6CWIo7koERIkE120UA4JAkqDbEu9dASgieMOQ7dXRE7CKM5OvZBOwbibPQhQSYsKi2rqKmsiT0QN5GrjsOyBFyC5DHQIJlAACNqaIjMxJNKBmB7IJi8bFFDBupJ+iIRfxJogfgW0PdABtoDP3QKJowHiUVo9DoGRAS8SSPAhBEpMRV3uio2Avq6Iznjo2v6IMzBiw8ygR2+DIM5AtUeCCdQBU6lA2DPcaBEJnY/VUO9bdEASToEDYlmogKjqGsqEQ5IAq1VKIIsEEyA3UtqopCr6oExqgKDwQTVQBZnQSUCQBQIBFLxRAyLoQJmQCAKBIBQCAQCAQCAQDoEUCQCAQCAQCAQCBoBA0AgEAgEAgGQNUCAQM2QAQH5oBEPt5oHogbRe6AAcIG3SwQJBURVUUAHZ3QaxALoNMcSTQOBdVFkjeNY6KihGu92TBLl6yL6eCCZSq73UEah79FA/TIkm9mRRBwC9RoSgZAfqgVKUL9FBYErEsUD2OGZ2q6o1jGmga6DUY6tpJqoKMQBS0boKgKXtogobQa3OiBFgZMKdD1QSaVQSDUAHuX6opA3GpQhgE2obIKMKs6IuMPUC10Ggx0cGpRWscRLa6INRgBPVrlUaCG0XoFRJfa+r0UEG5o8iznRAdSb/ANEVT7naxVEguzVOo0ooLiYkkM0Sax1CosGp2lho6IUrAs4coM5EmxG3RRUh3LfdYoAEtUWo6ocSd16DXv2QPd6WNTVyyYHJx91yHHVkMQKed0RRxyjJpRMZD7gehsirgKB6aBEbRAoHcC/dUVISdh9OiCJAiLPQdkEitXpqgoRuP9MgbPKjU/JAxGjWHdBAHquyCwAxN21dBpAPEE1OpVgjJ38uqgzAeVL6/wBEGkYguR41QQRWtwgiQq3UWUGkIAxNKWCuDXb6r0FASgg0BDOghhucaUA6DVAjF++4+lASiK0FKOpRLU7XQS34a9EDMRZ2LV/qoJDkEAO/1VFe2Axesh6h0ZEKWKNT1QYzxAOR9FMGe00OhskEyABrbr3UAzfWgZFJqgg+IQJjJnNR+SImQdyghnc2pZAbHAFnQBB1Yvp4IJEZC1PBAvxf7SgCwDGvXxQIkkuxDaBAMG16ouKiHptdEMwcPoFFZGMY3ckojGYoHFO3VXBltPWmqCZAaB3t4IG3T6KoC4pcsoFQ7RrZ1QUsLhAiwqLaIHR3fRAbyYs3iUCLEhtPyQKUZdfSgjb5UUUiGAq7oFVmIdAuqBM4HVAFQS2iAqgRAsgTBkBSyARSQFECShKAQCAQCAQCAQJAXQCoSgEAgEAgEAgaBoBAIBAIBAIBUNAMgHRDZAURTAoiBigYqEBRA6WCABNUBVA26lUWIkVHkOyC4xawRGsKC1FRYDR3aGhCCschEEiwt4K6DJIAs16hQQXP6oJD61GjKKAJMasmh2HUa+KaBqXd1AASLm4ND1ZBUQB9v1Qq4QFCVRrGJ228kGkMfqAIBGhBQXGIIJs5+3oyCjExoWk+g6oEKVIqLhFRuBLi5/JAgQKmoJsUElgzlQN6gNXU9lQMw838kGkYvSw0QaY4uCRXQug3xYie7WPdUdGPASzC9/FUaiEY+Go7oAyAFAw0igzma1oTVkEEsCTXdbsoIkZO4LEXI/RFRvA1qboNATR6UQKTsQ9qCioQNaOSB9yC4yO3p2CDQk0ADdkGBiN1OttFACL0JerOgYjS9DY9ggbO2rWH6qitsmL21KBiFKCgqSUQxF3LsOiKZBepJnZzWnRUaY4h7WFu6I0iNNLgKhyBZw6DMh5VqdFABz4i4QVGoLeaoiOlNUGtLmrWQRQMO7ugoSDdxYIKEgIm7kqjOVT1HTos0ICpb1EF0Gjv2HXugiTO58H6oM6k1oUG+MNGoYaINJUgWqxB8UGcmqwYoM2eQoSdQgowO0kdfomCC/W1EDEAe0ggDD9xqDQoJkOjAaKCBAgjQm51QXERBsTWqBhmJFWLoERuNg/TxVRkcYAtWrgKUYHGQWI/0VMECMgG3P0LIJYhnqR06qKJfbUVQBjV7vcIhbWDk6oDZJwPEn+iKjQyABNmKDPZESapNvqgZoGHgiFIgEgUPVBnI6hx1fqgqNSABU3QaYhUh/PwRVuS7gsBRBlMGfqegsEGGQE0al0RkQXcoEIhgWpo6qFLqTUKKRIZxUm6BgEkRApcoI7a9UCkB9EQDa4oyoHIlZgVQwxr+PVApBz+aCJOoJP3WYBRQfBkCIIsoDbcvQoE1KIFQIJZAENRAkCLaoE4RR+iBIBAlAIBAIBAIBAkAgOyAQJUCAQCgEAgEDqgaAVAoBAIBAC6oaAQCBguiGyKNUQ37ICl/wAEBcoACrfVBW0dQyAIIKBs5Z0DA0NVRoIG/VUbQgAHFDqiBgDYv1QVvAoXbogco0f6AdFRBMq9FAEycAdFAVFEUxFvDqgd/U3kgW2o6XQUIvag6KC4woSA3foqNscQb2AqeqC4QiK3J0QabYiLGgNfNAHQgdnQJ2iAbP8Aiis5G7OT3QSTQt1ZQFCXd2GiB1fyp4oKAMg5poyqLjGhrqzhFbCApqbIOjFjs9WKo6ceNrD03PR1RoHEfSAKXVVnkLB2q1UGUizsCHuD0UE7nYiosERMqW1pVBEmdmeTX0ZQJwNBSxQVEv49SgJVa4OoKKQaJI0ZBcBQC5FaqjYR1JqbqiZ4qyIDvZREiDbXv1TBWw+X6JgYxgmlnQabNWatlReyLv1QTtc97IJYgWo90FwD9boNABVvqqCoDgkIMpuQQ5Av4oBvuazBBQjr2smGgOKi3VEEnAa+pQIRJH6Ip2LWYUTEUxA8ahDUy1agP5oacYixp4Ip7S3cV7IIl3oTooFAV6vcoNYhgCLv+CoZJZmpVpdVBMokN+3xQSIkuRp+KByMgHdgbBBNS71bogoRZ9KIKMSQ5NDQR/VBO15Fw5siGMRayCZYzRvBFQY/S3mgDFgTR9VBEmBLoInGLAF2FkRlKNGb+igiWMgD8QikxOl7FQF3kAA9AfwVRIAAABcir91A6yLHxKKUoDaQAG/FBJxy6MgykzkIiCaWsioFXJNDogsRID1i3VBpEsPVSIqG6qAnMOLltFRlvuWpZkRAD9g9UEGJIdtWHgrqJMa2oNVFQXNqP+IQDdLlAmBJG69/FUSwtoFAhtESGd1UJqVNdEA/XzQD0pToEDu0jRqKiWBL2Kgnb18kEm1VFAZggGHk6BE1LUQSgJAaK0IgaqYEzBAioJZFCA7oBAlAkAgFQKAQCAQCBIDugSAQCAQNAIBA0AgEAgEA6AVDQCBhACiBgFABENAUQAD1QNkDAqzICr+CAd1RUAPAINYgmL3D2RGgi/YmyotxV7i5CAIjuAc01KCSQC50sge6ra9VAo0LaIoiSLVBQVEUY0qyIqmmpo6KQj9w1dBcRV/uDMUFCI0B7HsqNBAEUqTQKDSEXJc+oNS1kGo3MwF9dUCkRZ6i6DM1qPIdkCMhEEM8iaE2ZRUkxvpp1KBOSNAAgQAd7d0GojGVRJiqNYYya6x1QaRxFiA9S/n1VHTHEPSfxTBtHHIHaQB0A17qigX2g3dgFVOVBU1BoEGc5EEnW58FBjKe4ybUUQQZM1atUKIBJjQElmIVVJAFKgaAKArr9EQObkW0QXU6uNVQxGlOqK0xiX+uqDphiaLAk1abKoc8QOlrBXBPtjW3RTA/b9JIFdPBMDjCNI3F/NUUIACtBVAOOj1DIEIkmgoTWLaoJ2CrVPToqHCPWoFimI0hEMaNqgYgGLPX9xVGctosHJUogAeJ6oNARqWICCCR1fvogfVul0CevqoOqCnoHF0FUQRMOL1f6IGA2jOgsinkgzlEM5c+KB4o2B8UVrtuKVtFERIBulahRWZAuBXv0QMAhzfoOiCd3pdnUBEjc/kyDY0NbkWQZyfr4lAQANndVGsSQOp0RTkIyNbj80GBgSQ9Gq36qCZxP1KDM38EEyibXb9VBPV6uaoJMXiev6IJlAXFG16oiJY/SCTU6dFBmWFuqgf4de6K0hEE9gKKjOQj3YfmoMpgFndBkYsW1OiBba6FroGxtI3qAoFORBIFzogzMiQWsFQBnDPVEUC4pUA1QBi5H/Ymnggk4w5owb8VRnKDAAKCDdvoyBFgbU/VBApfVUFCzIEQGpUPVEKp2/igQcnt0VFEEGtUC1tXogUgHcjyUEsKhAmA8FFIsb0dAmPVAMCHsgXggl6tooJKBBkA2iAJN0AUVOqAQIhQCAQCAQCAQCAQJ0CQNUJQNUCgO6BoBAIBAKgUAgeiBgdVUDd0UMgboH3QABNUQM+iB+fkgTIHRroHbugYAJCorZRtHQWI00QbQAaRtoqigRQkWoCqD0gdjcqBGZI+jeCCSSXfSyikxIJZygYcM1EBGoITRTRdQUA8vCyovZ6S+uqC4Ailx0Qaxh9TQRP6oLqzkUs3dA3sA7/9mQG672F5dSgRJFGFKuggyoOh0RUuS/TooHt3P2qgNriJNDoUF44EkNXrJUbQxsGF9EHTiwvJ29TXVg3jh2gH6+KuCwRE9zdVSLhmDEViQUDM4sKsC9e6IUpOQxcgNZBjMvIsfV+DKDM7t1ahFSWMlAa2NDQBENizak2QDdDa6BgVpYqi4xdmDPog1EDUjw7KjWEKkkgNc9SrIOrECGDNqqLlGn5ugyMWbQ/ogli/gKIacIyN9dEw1UtlNAVRG4DxZgFEG6v5+KCTMtVFSMmgeiC4yDBur+SIZJL9b+SozJLk6aBQALhh4ugoAmIFPHuqFQmoLWfuoChAA0uUBtL91cD20e3fqmCgNBa6AMToG6pgqMaEVA0TAGMh3CYMyB3UNaYgQ5VGgAN5CI1OqgzY3amj9ECMB5mhTApQLtbQIM9tSRpQlZxQ0mDnwPZUMv8A7qBF608e6qNYgBibNQBA6dSHRSIamn7XQEaEPc0JKCJAmgPgFBnODRp5+KCDA6U1UCiCS1j16hApQ9Ts4fRAjEPZ300UESx0NQ4QZmJ3NRhqoJAN6dkDdhX7RdtVQpCYJBo9QOjqCNtOp6IJ2xu1QUEbehqbhFRIbXA6M6IyLv8A+WqggiwFGuVUONKCgOpQUDUs/QqixAGnQaIKEBtLH6qKylAO9n1RGEoAeka2QTtuTTQII6VD2dVCboQa3UBsoAKdSrphR+2jkihfVAVJNGNmVBsYgVL3PdKA7qHWykCMQx/ErQRBalyoJIP2jzUwG2vVtUwIgOyBGiipJJv5IJI6oEQoEbIBi6BEFAGqBIpIBAlAIBUCgEAgEAgEEoBAIGEDQCAQCAQCAQDIGqBkAgYQDIHcoH+aICzPqgLoH2+pQMfggQBqgYH4oLi7KjQRqOqCxCMgWoXVRQD0cltEFkxatK2VEyIJP4BQTcMD5KBF3PZVTaJOrnRQIOGYWNUFRAZn7qCwGAHVUVGABaprVBrEROpHZBpGIqTfRBtADWj6vdUAkG9IfqgiUjrToFBk7lyXl0QMEl+vVFIszUUA0gfVYILEN0Xaj0VGogXYgAjREb48IcNQaOiujHhNIkilVR0RiwZ2avmqFKQFX9J/NVUFnbb6pFmUETm27sAPNET7hfa9FBblxStgrombAkfuH0SjOQo1vBQTtLgAV6qgAPQhBcQQz66IpiFPzTEWIBxeyuDSEJAOBQ2TBuMTxOh6K4NI4wdrCwq/VJC1vjxhnIc91pGhEdta6KjGZjuAcA9UGBmBpf8ANZESncO6Bb/p07KapEinRAPetOiIROpDgqhNYWKg0gzkKwWz6q4JnHpfVMAIdB4pgsRBBBNtQrIGYFmFEwG3oPPqmCT/AKdBejD6IKiInRiKKiZAO2iguMqUFBQIGa0N0EGD0sEFxxUDeCYL2AEEB+qCJRqHo1h2UCEC9aACgVEyjo6gkx8GUC2hh4oJMfFggIxq/wBPBBo0mZuzoGBStaUUVBLgVqLICgvXuoJ8KOgmchQG3VBDPa/6IHLGNrm1gUEiABESWYaIAgN20QQ1SHDaMoJOM63NAggwAoayQQaHS1QNFBk5ehfoCoCMTr6a07oNDCJB2iqqspwEPGV+qH455XII8iojMggAO4e6A21MRcB0Qtpv116FBYezsBcde6ouNIvatEVRJ2igBBqTqERJNK1FxFBmY3LUKuDCWMgP1sO6mDPZIyoLD1MriHGAoKAVYDVMC2SZu9eyWCQHLikQGP8AVMC2hwCaXEuqgDEiMnqNFFFn8LdFcQhQGt7LQIgMX/0UgkguPxUEl3I6IJLaVKgkoFWiik1S6BMgBdAtEEqAtV6oAoEigoJUAgEAgEAgEAgEEoBA1QOoGgEAgEAgEBRA0ACqBABAxVEP8kUIh6oKAcoF4IG3VAAF6oKYoARBoVRoHelNGQaQorEbQBMTQMVQg25hUAV7pYFIkk0bseylEAl7eagHMS4LOanVNUU80AQD4WPigJeDNooKINGsKHq5QXCLUFSFRrEFh1Jog2ERe4FG7oNACI+pibBkCLdKdFcCMg5EbNUpoh4gnoP3KCHBI1IuR0KikQCKfbZkDi4ZqOPoyDaMHIeg1f8ANUaxwmjVrTwVHTjxOLP17oOqGIxDkOA3l2VGhAZgw6UVVBNHFW+joIlJ+jG40BUGczIBxYWQZTI3VsLv1UACNz6d0RUZkgk0Jt4IG4drjWuqoACfE17sgBCpJ8kwUMZ1CCxj06aqihjkSxpVBtHCfIXJVwaxxENd+6sGu2AF/F1qxClKMe/RQTLNV3cjRNUzlJDUDh1BlkmdpoKkEnVEc8iQTWhUDNx1RTH1QNjc3GioZhR2v9yIUotpTRA4wLgs3ZBpAU6LWDQQe3j4q4HOAIcDadUwTsIqRQUdEaRgajQCyANyWoUBt+iCC7tcDVFA+6rdkBuozueiIZN+qBggOCK9ECMhdmCKncN3VQbwJAGgWkWT/wDj0ZRU01u6BgAHugiUXckMbMoJMA1/JMENUtQLOBbXtTorguIJQUYjVBJgSKfVTBkQXIOlKKKUqDoBogkka2QRujUH7VBQhQF3JF+yqA7XpUCvmooABDgX6oEcZq1kEiAuw7qBiBI0/wBlRlkAJ3NQWGvisq55AkyAFzUoF7e64vbyRFxhtoQ4VXFsIBzQ6dlW54YSBJ3aWc9VmsVzzxysTR7oygwpWnQdkCMQ92GvdBJp4aBQOADu17IqnapudCgkyAu7EsD3QU5B6kXKqAAgkvUinRUZTgGNdNOquJWUo3NTRmH5rKnAAS2tVqJpi8UHBDW+4KxMOeAyLsB2FmWkRLBACLgl7MFFZ5MZHpZv+qYazEdjna8iGJ0TUSARKOpIfzUML0gF6AGqoco7b/uDx8Eozk7FZVBBYdEE6qKT07aIGItVAqiroJkdECZkAoJNmQF6IEUUndAIAoEoBAOgEAgSIECRQgEDdAIGgEAgEAgED7IE1VRTIBAIG6Id6oGgDajoHClet1QwBXV0DFn0sgYi6CgNTbRBcA7eCI2xiILRjuHdWCmpUsHVBIh31GnZQRM9S/dBMSdDSyiga9EC9TbdbqBgh3IqKKhgEVGuiC4xYB//AMig2EASWLgChVxGkANXDdVFagDbQs6oTgRYO0f3FBJMmtepQSSB17KaFuBLkeKBdTogA5KitRHHTY7M8t3XsqN4QJEQbn8kHXjwkyPSgZakHVjw7Llj+iDQgMABc36qjKZ7AmrB+iDKcvPwUVlIv1ZEQS9AGHV7qKkmlRSyAAB8NEQxbo9UGgY001IVFxrpagPZBoMQJcaaqjSOLo4OndXBsMNnvqrg3hxxfRXA5xhEMz9OiIzMxFg7jUnqgmeXzAsmjCeSoY+CgT+PVyorSJp26KoRL+SDOUXNhVACJ11ugoA+Q0QWIikfPzQaxjupLSoWgTAJc17IIYk/ogoRrQsg1jB/rVWRDyRYEeauCNe11FWC0QGYjXUoiZuS5sfzRSdouiIlIk1vcqB6KgDMmA1u9aIHJmf8EEl9OtQhpRUG8Xbv0WgExAYX1KgT/kgrcWZ66qidwv1oymKZ0/NMCEXL6Jgft2OlwUsRW0xA6aIpbQ3cmygCGD18kETBNTfspaMJDcSTp0UVnNh6TfopQgzvK1vNQWCdbIGA7DTRAVoS1aBAm66fiitYwdtvSo7pgnIAAYtXVKjlkCadNVFZnG5fVEaDG1huHVWRqRvhxY4AzyA0qFXbnmRycrMZyk/2yLgBZtcu+tc4YSDkgf8AXoowdw560HZBnOFmGiDKUdbRsVAtjguGrQmzdkCA9TGn/UaIHMEFiHl1/RVEgEMRc3CAMWk4eoqgoEt+SsAQSNrekWAQScbVrLSiBRxESIAbqmC44m7mVlMHTj2mYjQixcfktQZyIiZxLB6xJ/ILTLnMJSEZEPOQLyb0sP1Vxm1Bwy2ScgjvqUxdcuSE4tER9R06BYsWVEqSMT5sookTIDcftt4K6iCCbaqKggavXRSiTcNZRQ30RCe6KTvp5KhGpUCfyQIlQLVAqDzQDFAkCRQgToBQCAQCAQCCUAgaAQNAIBAIBAIA3VDQDoH4IAMiHqH+iBh9EAgBRA+iB1c6jRUUgZZBTktRkF7S1VRUQGAURt6b9LhUBMW9VGsEEalzVQK4/QopF9zdNEADJwzf0TQhX/5dVA2eO3XVUWAdlqOyDaEBuDk+KDYgMGAfq10DESSxuqGepFqKBGYADueyCDJgGduiBHcTdjo/RFKgJatKsgYFi1dVEaxi7MFRtDGaFqv+CDswccl5dLnoFYrux4xjDa9+60HIgXlWu5BjMguSLWj2QYyyMQBIekOFBnKY2vXy7qKzJJIezaIESGerA9UCDGfYoHBiPDVEUHOnYhUa48YMhRgEG0IMwZ31Wh1YsUjRm8FRtDHYVPU91YLiIiQJ06IJlliIlhX9E1GMsoZ2Z7qaOeUnL1A6IuCPe5oPBEKVWDMyAjH1O6itYB5ECqsRp7dNKaqiZQAcGhuGQJjcs/QIDbf6oKHWyDQWrZUOcCBSxqrRlXr4lQXAgd0GsHHVaiKyWDK0ZyjKOoOtFkOMdforgRFD1QQX89UCb86KBkRelAPuWriGA5Z2AqCsqg0qz90BVkEyBFtQhogA9PNBsaN1VEmWmigHDh7aKglPooESWANhVkFxkKdEXGgBMIzOpYKpVvVqEdOiAZ/B1FG2zBBBDyDDuoInYjqpRkRWmn4qDKYBk5uUC2n7eiAYagjooqouSXFrEIG24O1VA2LMFRQOypKDLLN7l+iisDBy5oTZBrjwkAEsBYq4sdGHFu9R+2Id1XTiOblZjOkaRUtTvpySiXIAbR1lyQYkAuLWPUoGQzuasoDYSwuO/VFQcAAIILPV0wQccmN//FymIBj9TC9HPdUSdoDvWZqiJlEhotYUI1VCjGgOv6oGBUDTVQXGLfmfBBQg9LPVuyKccVXNZWbsiKOJpCXTXp2VwTAzMpUYddGQZwaUw7GEKRJuU1MUcc5R3bvtNYNQBaZwGGM44tEHUhX2MZ5+L7kTKBbRauJjy8mL2yYQr/2JXGtRJEYxLOR0JV1Ukyq6yFtJLH6qiWFtAoJkOl1Aqf790CqEUGvigmniUCLPX6oBqKBGqBIQkUIFogSgEAgHQCAQColQCBoD8kDQCAQCAQCBhAKgQNkAOiB1BRB2QOiACB+KBxvdBUfwVFN1+qC4igFfFEaxiK7bhUWIDa51sqHUVkzWooILhx0qCgXqJ9TdVAOTXrZAhVzoa/RFDAlxqgZAqwYaBA4N0bsg2jEguK9kGgAdg/XzVFh2cm/5qCmDkdqlBG41YtEWQIzpuemrIESx6bvyRSd2P7QgYpan+6I0hAO9muEHRig5LUDOqOzFgY1qB9quDqjjjGIGsrjR1VUTWpYj8UGUsgoGqLnqoMp5NxLxPZ0GJk2gJCipMi/QH80EudrauiYDcGh790A1G1d0FRgSWtqg2hAN3Oi1g2hjsBU6pg6cWIEgaFakHVjgIgt4EqocmjC7dlRzZswsBUKaOeWQyoTQfmsxQJGw+qoWv6ohgDwfRBQgT4A0dMDZn1OqC4GisG3RtFRJB1QQIlBWzqgsQ0sgqEQ5ZWDWeN4hj/wtYmsJQ1bz6qGgA+SDbHGisgoxDfmrgy2Vs3ZQaQjBiNdSqEYeky8kxNQYX1KmKQjUFkD2dURQh6bOqIOMX10UwSYStr1UxWZgXQEBduqC5/R0Ea3UD7/gqJPQWUoTt+igqJsH7qjWEjtHRWCgbl0DEzYIKcMB9UCk2ngorKYqfwUESs6DMX/MrIYa9uiAMZeY1QAGgdpKKuIeumiKoCz0LUKDHIQTe10GDuXanRQb4MbtuFzTqrIOvFx5ZJCLMIliVvHTnnWfK24x7cPtNPopfC9X+HBOJJehkKHw7LDlWUoka/8ACiKMbAa1qqJ9o1AFSbnUKYuKjFiRQVG3yWlXIbhIFg+h1TBnLGHkRF5UAGg8lErKWJr1RETgYsLv+0CyIz2M8nkTYSFaKB7SbAsBWRTQgDQ1rYoLEOpvoqNfb1dtGI0RV7ZVP7gKEdOiiplACMRtaI9TE3VSsc2IyAnGNAbEtUqspjhO8lw2L81Irr4uUexLGw25KyynTsmq5xj3A1Zi24dE1MbYeNyJuMMJTxOxofqVqavpXm87imJlItSgAssVK87btiS1RJENvUS17KozalZOe6KUxUtTupRD0WRJ6IqXCBhnQKV0CoDdAiVAjXyQJAIFVFKyAQKygEAyAQCAQIIB0AgaAQCAQCACBqgQCBoAOgqxoiBAIAAugaA8EDCosD6IKDa2QWACOlbojWJPjo6ovQAFyNFQM0tx10CCAAC8S+pBUCFASKqKGe4PdMCb0itLB0D7EsbHwQXtZmv+iC4xqz2FmRGkBJh2/JFaAOBWnZASr/8AH9oCBElnlrZBLk0LDogm7g3NadlA3JINhYICILUqdUVpGMrXexVHVjxEyFa9FcR14cAiPUGorFdmMCMXGqoJS2k9DcIMMsmkeygxckjoA5foip3uPH8lBJNqiiCLmiBM1jTUhEVGILkUA0SCgOlIqjWMKE6ix7IOjFhcknS6o64Y2AAAZag0iAACaAGyofugAgFhchNHPlzE2RHPNzrVZVLMHCCx9vj+KqGx+iBt1ogvTwuECNWKCovf6KjeMSRWrrQsYza6uBbfyTEG0itjoSmChEGMdrk/ufqpiqjjq7fRakG5iNo69Oi0jnnECSglw5YMoLjIG/0SCpE6LSM5Gr2dSqcZBmCAMqdEEE927KAEvTVAwQbnyQWC8ey0ha1HgECII79SoILFgoKx4wT0ZUPLEVAYBWjHY5t4LOBmNh0/NLCMyCL+Hgpik2nRQKLv3dBqHanmqDcQWFH6dEFA06AWQUJ/VAEnSn9VBPZ66oIJcfgyipMdFAgOop0QDiJAd9VBYqQf3G47IrTaAwFOiCJSAZ2Js6K5JEkt+KyNMeJ2dIOvHIxl6GcekNauq3G46M0zggNSzSINXOrLV8N9XI8+Udx/7OfuK5uNoljI9Q11REjDG4DPc90QoceJ0sak3RW+LhYph66gFWRYnLxRE9WsOpVxWftASBBq710PRTBftQb1fc7yATDGWTF0H3Vl2UTGEoUeu0XURjsk7wJe5PbsgBx4gULbqkk1KCvaZ+j3QaDDKBOshbsChio4qkfaXt1fVFBxi4AkRRggNg3xiYn/AMpXZQR7QlIhnO54+WqJis/DMSDIgTnEvEBaMZ+1/b2baRi5A1Ki49r+L/DQ5/NhjztjwwAkYyo9aut8x6Pj8t/h9z8/k+J4HxWbicQQx5MwAYAeqPYq/wCj0+j8r+SwY90gD6XYDuudeH6c5XgZobSYmTsao4MiddNFFTpo3VBMgBZi4TBEma1BdBJiSevTwWVMAN3RNINQG6AkfNFSWZAnOiBMQPFQIhAm6oBFIoEgEAoEgEAgECQJA0DQJA0AgAgasAoBUCBoGEFMGRE1QN3CBhuqBgFAVdwgbEqiwKoKEYitzoiNYgNQONfFUWLAMKIB+oANigNxNBX9E0EhHx7hQIxDm7DVAjWhNqurQwA3V1FMRZy/pb8UGoAfdqQzdE0bQIBBd5WKobeqzuOiAoB1IuAoE53FjfqggkglyCdUCDAE1fp2UUnoD9GQOJrVEaxiWY1OrdFR04cXQUOpVHdiw+liP/yCqugRO0PYKiTIBzItHQBBnLI4oQ7/AIKDKRBDxGv4oMy5L3lZQSZM1GAuUXQ9B+J1QIk/SyqACrMz/moNhEEA2DqjSOKocOCqOjFhFSQW0CsHTDEKP+CuC92mhr9FRllyx3U+ilqMTkMiXoUC6IAwP+uqgNpH9FRUYdVRW1ggcYCxLhUVGAdiK/omCvbfTyTAQgx80g6YgswDdlqIsR/5VwM4iz9FcQSxtS4GquCWA8eyiqBqg1iQY9VRz5RVQYyUFYz+KsFz0/FEZGtkFR/JAE0IVEE/WyyqTfugYP1RGsSWGq0gcua+aAM2ZRU7ok/ig1xyizmqCZB5Vv8AoqCMY3QKQDaKDKQQLYadDZZxSEK28VcD8EQqmlj1UVVWs5QAlr0QBL99XQTKQJcCmg/VAg/9FBQavQFATHT6qKgxOgZQXEEXCiq3Fixqg58k2IIqDSvVQLHA0r3L9UwdUYxEXFzdWK6IRhixbyKEOxut/jp+ObNImciS+4fRYrnbqYiXQRi7IjYYwxBNNFQe3FomQO2Qo3UJi43x8aIh7kiHjYAUKs5axlKUolnDDUfuev4IYic/Tex1QYyMRqzlyAoYmrsQAD01UQyRJ2NBQDUeKoieOhkCaCoFvJREnDHcxNDF2H5eKmBHBEAbqdANExcUcYLuaNRtUQxx4klgbWCgsYRQ/SOpPXwQB4penpldworpxfGZpYJTjExEpAGUtT1VnLXpa14/Fx1wEAF3lM6+C1JGpzGUsI3yJIOES29wmMevl28P4nHlwyz8hoYgXxgCtOq1I9Pz+P8ALn5vPljynLgYBm9NHbVTry3e/WvI5HyPLzS/uzfxLlYc79bWXMywOMGgi3qOpKOP1uvB5Aj/AK6I4Y5iBttQ0qs6JI/3WgiOlAgiQJNQs4Ebka/ogVqqANUUj2vYoJ17IE1VAiKIBibWQKyBdUUUuglAMgRCgEAgEAqJUDCBoBAkDQCACoEDQDIGyAAD1QNvoiGyAF0DBugGDD80DYaIGALv5KitUFjx8kGg7BuiIuJkaeaoGA7vYIFKmjtRBQYCiiiL7T1JVQMXofF0DIe1EDZyGLFQXGHqNXb80VpGNdX1dBptb9tVRUibm4UGbuKU3VfqgUvtBaxbuhEyYEd1AraP1QK/RtAFRrCJLvdqhB0YYO+g7Kwd+HEAxqaKq6A20B9sRp1VEynq1tOygxM5Dx69kGZJBIo1/BQG4EEmvQqiTGjGhaqgRsQP3aeCBEaHpRUMRNB2qUGkcdqV1KDaGLvVUdmPBIU1enmtSDYQ2kDWxVBKVjr+iDDLNhQ1KiMCXNFFOIvV1UaRFfH8EFbBY2JVDarCyAETWrDoqLjCop4lUXtauiChHX6qo0GJ6t5q4JONq9FMG2GIc+DqwbgQdxbotBHqK/0RKzJJCCCpVMRMj4aKDSApWpK1iMpxLufMKYMpwDeKuBwFaUUkRoYAjqtYan2tHdXDT2MGAZMESgWsoMpRILaLOCDEuB0TDVgN+iosOAqFIjzKioJJJUAWCDSJaPjqqJJYkCTjREaAgRH5BBMp0PpqdUVO4Eh9KIL2jzsyIewfS6uCNpJLX08FmxUMdm1qP+KhpkAeOqKk0DoEX2/i6ggly/TRQVEj62QUG+iAMg3VRTjFzW3QWQWQDFuiYMZkuQNL+ClNTHHuP4hJBvCETUkyl1ZMDYCJawuo0g5pSJq40VtW1cHpQGJoXuEZTKMQLVsB0QOEpGQAP20L6orcASO+ALgNIf7LUakVPMWb7RYv+irTnyyrGwIHkyiVlIl2uD1WUQ5e3p7XdBJNA3qOrIKBBeLU1KguMwQHtE/aOi0Gw2sAWJMn18EMBhESJNjWJPVREx3R6UHqNySVBpjiG2yeO6u528lEdGPADsDHa7O9Uaj6T4D4L/KyZJsDCH3yOoW+eI7c/PS+R4ubjPEj+1vYgU9KvWwts8PGyQLmMIl5E+3CN/PyWIzOdbR+P5M4mM4CIYO4YuukjrOGebJPFGXFh6wRd6BStW/w+e5mfYJYos0aGep/2XOuPXbz/cDkgPE3IWXK9Jz5TMekgU/JVztrzcxebgmn4qVGBkS5u/VSKkuQdf8AyVRIdAjuZBNTV0C1fRZAaedkEOBbz8UUFigWnggToEQoJqgGQCKXVAVQJkCQCAooCiBIBA0AgEAgAgeiBIGFQwEDoboC97IKar9kQqeaAPRA6IDXsgqvmFQ4itUFxqgphdmexQawiGBNGuqhtqKEfkgYJNKA3QKRawcHXuoAkeY/ayKYLUDk3QNwZHdGp6Iiqs7MyKuI00uEGkYVGgHRUaRi5f8A0yYkoJBIaV6OioJaIfW6gkmt7WKBF9tKElFIk/c7aMoDb11se6C4QixAe3qkeqqOjFjNiLIO/BiD1baPtPfuqrf073ejW7qhSlS6DGUwTUlhYqDMyiXILg3KCTIEHpoihx5C3iguJfo56IDaRQ/cbdlUHttIjpc90wVHGxrUXdB048TuQGVg68OBnIFCPoVuDo2xjEdDfxVESPpY6IjmyTFRqs1WEi57KAAjQWdXBpGIJoGbVEaY42qtDeGNxZXAe26YGMbXFEFCDlrMiKEXA6LWBiLFggsyAHfUKjOUioCE/QIM5dzk7dEg2BkLHs6osUcKwSwBNLhg+iIkRZhdA9fwUVpCth2daiM8sWNPxTEZyioCAsPxVg3MSzNUKoBFXBJAdMEyiG7KYMzjqXUwSYBXA9nRBWwsGqTYIMzDrTt3UsVG2qmGjbW3grgt200bzSwQH/qUQSLdhqopF2rR7eCtgmL7h07LKtoEvdydVqRGhYC/iVUSYhuyikMb+HVMEGOtlmqkOJRkzsbHVQRkLEuOpp+SVUdDp0UwDNF+7MmBuRT8AoGHuzx6oNYA1oS2ptXorhqyGbqVMNL2nNa1Vwa+yXBI+iBiIAkB9T+iy1GWZiw3duymFc5idxjElhVwgqDzoPST1se6B7XL6mjDUDuirgIiR3EmLhu6sWNZnaxcbjQAGytaZGRrE3H490SszYC5KiEX3OFFjMu4OsS5CIQvViXdAxB4yvdy+nZGlwBeLU227urFdGOIBO7xbuqtmJyD0yNwfzUtYpkSltMWBADjqyyNceKBHuAH1FvbNu8h2TFsenwuPhlOJyOIQIEpk0J7KyLI+rwRjw+MMnGntGS8OoXaR6OObHi/JifIynNIkAB5Q/8AJY6W86z4OD38kTMiM5AygNaLPLrzxHbyZxjXISZgMQaBdbSx8nzc0pSyGBESCWA1K5V5+68TnjB7NQfdfyL3XPp5q80kOB20OqzGKzzEm5b/AMVUcmUVqbFWkZsXBNa0UEmLhrVo3RASJEv1QQYuB16qiGo58FnAjXSyBeNlAnqwtqihgNKIF4IFIVbsgllAigCGL9UCKKSISKECZQGiAQCBBAIGgSBoBAMgfZUCAQNwgEFBiiKBbwQBL1QIuPDRAR7/AFQDOgraVRQPRBpEaalBqGDAW1RF1cHRUKWpApogTl30QJ5WDjVkUPUEC4UQCxN/6oqw5Z3CC6WevVBcQdHbqg2halDo6ouguXkVREgJUen5KIlg4bqxJUVBL7jdiw7BAHSjtqgTPZBUQDqSBZB04cY0FP8Ar1Qd2DDY7W8VrCOiUPSxJB6hWqyM5C1rePdQZTymwLdQpozlMMWoO9n7IECWr4sgZs/kOyKbdbWHfuguNWZnP6IjSIJo3q6qi4xLDUOxKo6IYPUrIOzDgOrWWojcgR7U/BVWWTIAGNeiDmnkNeiyMJVLAd0A1T+aIdBanc6oKiK1FP1Vg6IRNhZUbxiaBWQae24qtYiZRGqmBAO+iAFGVBKzg0QOB00KsqUShS1R+KfwIDP3UVuDSt+i0GCxRDk7O9LLSMya97LIbtdFaYzSisDnEFh1VqMTYjpR1Awzhgza91Yjdwzm5WggXoECIc9kEkjy6qDM0/RQLcqHSvRUabYjaWZi6qM5xuWqTZSxUCDksymAGMPWqYFKLa+KmCPT5aIJnUsLqURJ6vXp2UU8fVJBqB18lpDMjI0aylVMJ1f8Eg0MvSAdKHxVEkBj1UwJmqbpgxLEkm2iyDZ0RUmL00UBGJL0bdQeSmK3hiYVp2VkGriIYOIitRV1q0QCSPTYrI0gHYxs99H7IOjHAMTIn/4tZRcYZxdjQVUxXNIFyKMPuPiohS2j0j0iRcg3ZBmQAXEKMSCC4bv3UqxUMsokAGlh4FI00M2AAqR0r5qiDKsiD6iipMpdXKIYp4kUQSY1Ab0ipIUQi7MS39FVOMWBL17jRMaawxHZXx7oq9tLenU91WpUgk+GrKM26sHcJEVBP2tQIjqw8fe5oGFQOqmI1x8acNkmuC4FQmNR6XA40TOBbdEFy9lvmOnE8vsOJn4fIEhLGBIARi1AAut8PZHJ8/8AG4RHFLHMQDeqOhWb5Sx4fBxQhz/dkXxYhQf07LGLw8jlfIzfPknIyeR9sGtFNcO+3z3L5Ba+4kkjRisWvN1Xn5jMuB6iQ5jp4usVi1wSNDEFgS5OqmMagmT7iGlZuy1ErCd61IUtGUmFz/sgksCGd0kCL2FyqJkIk3tooIJP10UAKE0rqgRZnQLvZ1FKreCBS8G6oEQR4lAnAUCvogVu7oEihAkCQBQJQCAQJA0AgEAgEA6B6oCxVAgbfVADogodkSmAgYBVBTxUCZqoHFBQDA1dUWLM1QguI1OqDaIgNXVRRAFqhAixoxB6KidX0s+igRBYvZQKpZ/JFVUO1tfFBUWNjVBpEARBl9UGkHoKtoFYNok3JoLN1RCMgDT7tUEuSLtqQipLks5GoUE1oGaPbqgkRL0Ld0Fxi7NTR+qDowwOgrqVR2YMe0sxlqg6oH91wKsVdBkkWrUix6Aqq5sn0I0/VZoxJqQxBN1BAIOtNEFh2d6/kgq1TZUUBdrkoKiHozdVVb44epgXCqOvFgcBq1WpB148V30uVqI3jECgFGuqMsuRrF3upRxTmSdFlUi9fFBRAZ7oidr+KBxgSVcGscbEOrg6MUagWHVUbQEQL2NFqIokN07qjOdbKDMuKoG7nwQMV7KwXEAM6IJAg+KEZSIBKiriVpKruUFAlvBWIg0PY690QiSFmtReOVh0srFaFzGrDstMsywoiEJMe6DQyoqHA+KomUwSWNEEGTlZGZkXPa6Bbou70GiovHcPdBuTHUt0C3qIIB7LIBGiuBgFmp1VEkOUwScdJOFMNZSgHLBtPJSxWUotIARd7lZsFxiwswVguZiB3SjGZs4cA0Cyp45SNfy6JBo5Itq7aqijPcdCOiCZknoERAgXt2AUxdM4iCADbTumGnHCQ2kblPU1thwzeIsIeqA7lPU1coneZH1TNZJiolCZL7tLGynqKhjYig2gVTBoN+2MTL0QPoiNHWapTyTi3b8SpisTvLyLHcKwQZyiBJndiCT2UoABKRiIuB+5Ae2AJEFqfYorA0DAV72L9FFAMnAJ2kX7qhln7DRAqC9OiKGY/wCtUDsHFNL3QxXt6geMunZGo0xY91Wd6Oei1Is8txiFOtgmLVHHHw6hGdR7UiRVmtGIp4lQb4+LJiT6XYg90wdnF40oEmQrKgI/VMMezh4MJkgxYyAt2Wpy3JrtwfEERAFIdF0kd+OWmXFHjEhyZ2EUx6JccHP+RznjTx5QQRRy6zbiW7HiYPkI8eU5THuEB5SmaN0AWJ1Hn67x4vzEshzmUgAC0mBrEGoC59V5+q8XJMyJiD6iaA9FhhjnFHk7WO39OyrFceRhkAfwGgUoz3E7g9zUnRBiS8jFtHdSjMyB70ohUkksCXajsiF/plQiHNECY1D16qCC4JLuNfFANR1AiHayBVA7opEU6IESajTqgk2BUBIaIJAZAasgGqikWQJAkB3UCdAIEgaAQCAQCAQAdA1QJA0D7hA2/wCEQ3PkgLHqED7AMyB1VAxpRBQZrOgoO7dUGsfyQbaEivZVEvQUugRk17nVAyxEQDrUoFKhPR2CGJ3A+X5qKoRNBYXKCgBpGhsg1jEkt+ao1qIuTQ2OqBghmFDcoE/Qu1QU1BR93aviippIVDSFj2UBq1zqgYFg1dR2Qa4oSetengg6ceNmAqNVR2xidtLaBVRKcRr6rIMpTALQJNKk9UGMpMG1lUlQSWP6oJldq0oAoGA8gNdSEFBXBoI1N2eyo3hjJ0r0CuDqw4huoCBqrIO3Fja1CRRawbMAO/daRM8jFqP+Cg5M2RzXyWaOcCtRQ6oq4Dp4+SIqpPbRIq4Y3WsRqMfVUMhtPFBpD8FYLejWZVAJDzFkCm9ygghAg7oLietCbKi6e05P9zc0Y/8Aj1QK7voriM5xD3Z9FLDTh0+qsGsjToBogUT5pCkQTe+q0yRZTpqFEgFSC99aKxEmX4KogliCR91igoTIsgsSuFoTKX1QQSXusjOTl/zQUJMaEFgrBUCXLEKouUmLGpVqkJMbOoL3dtKlWI0jIDR4uHj1WhMy5kRERiT6YjQIhTjKIMT0dgUVlJ/1ZZwIRe6YNPaGtCLrXqjDKCPCzG6x0sZByToLLCrEY0IpoyoMciKx1SQaR7WVw0ECUiLJguIALkAtdBvjxxJazVHVakKsYPWAbXfumC545AVB3E69FLCVMcb6+LqYoPHBG42NkwOECSQfIdVmtQGQjFjFi7FrhRWcsWOWSRuGcG791ciInjEINGW2tXqSpYaxniIk4vKoBWLFTOLNXV5E6dkqszOe5wbF6j81AzV3rMDW1eimKxnAxO3pqSoKBHYg3VDLAANU18kEMHJqirjFhQ+p9Roq1roxxkRUBun6qw1rGLRVNVE3LNRwAiWqHQkl7k91FjXHF4tobnVkHXjgD6jYmgNqJiuvDVzqbkqtPT4WSUpRjZ9ey1y1y+r4nExQxCco7oay6Fa10lrw/k+Xg4XJnkgPdlI+mJqnVd+f+vnvlvlf8sHeBFhQRoxXK9L9K+RzchiZeomB9YJuOoXO18/u+XJy5jbFnJJeRN5Pb6LNc9cEsspTnOIYkiNVESYga72++RP6IOTJtL1tU/oERjIEjp2QZE36rIzqGNh2QNy9nfomCbP1eqqJ/N/qqEQDozGqBMxpUFQBc0ZgEEEMaoEwFSaKKCaN+SUSRdArMgTXdAvzUCqgT1Z0UHugRQJAIEoBUCgEAqBQCAQMoEgaqBFNkDYIigyANb2QLQBBVQKoAdUFAkEKixGvWlkFQDm1URsB6R3NVRQ+5omjVQSCDQUbqgRNWdAWDFQVcCwYIBhUmg7Ip7SaAFuqI0hG3QG6K0xv6pPR7dlaRR3O4tYA9E0A7gXZwoEDt1dUDMC5vooAggFmZ6IGGqHq9SguAJJCDpxYyS7VCo68cAzkt1DKjQya9G0RWM5vPRlBiTV3oxYBBmGJBby1UFAuGugCzBv9FULboLXcdUFCJCDpwivcLUHdixFtO5Wh148bBtFYNR6Q2qozyZgPKgCIwnOndRWUqk9FACPgriKINmdMFwg3gqOiOOxa61BttZqKiJRcFEK2igmUnLf6ZKCEvV0Fkg1LNUv0K1gyntG0gmVPW/VQQZFTQxIu6o1juJZrByqgdnY0PVUKdwEoy3MS1v1WRo/XWyocSH9VTqVZQzIAU1WkTIkP0FipRAcsVlVASJAAcksBFaiHJ/C4LqozBdBQP4IKiaUK0AnrT+qDMlQL8dUwMK4KiCPNXEUf9MrgUXJvR6MpitGqtYhmgc0QEWt51VQxY281JFZn7rOWqoKhcBWDXIwi5boO/daqMpY6Ur1JWKMfaew+1TF1BDGtT1WLFAP/AFvqFQ9x2t1soGJG4ILUKDbGMRGWU8m0RAGLGA8pzJ69BdFXCcxe+tPqqjqhkDVPpFlrRXvEs9K36ptU4yhQMKVf9EGrQkdkSwcGtvJNEZMXtzkAQYwP3DupZ5VBhIxkY0J63ITBAntjtiWOSO3MGqB4qXBMQAPT+0OQVFRkxx3EAEkhw+hKzYrHJEmJBct93T6rNg58kZMXLBqUsPFZsVkCaF3ekR36qBVJYkEmkj0KBCVSTVww6BA4n1X0ZkVrGAIpfVWK3hjAfQ6KiwBFyQwZUMEydr/tHZF0gxcCmhPdQb45DcHoKV8EV0Ytr0+6WvUIsdeMFwD6m/BRWmSYgwoQzl/zRZHV8by4TytEbpyG3GAFvmunMe5L5Yx4pwkmBwfedTLoumvVJHzXP58s2SU6xkA0I/msdVzvTxeXnEYTeDAH1Em7rla5d9PBy5AcryJI3X1Mew0C5vLaw5E4yA2vq3YJWXIxIuDEGjnU/qoFORLmMA9pIMJh5fawHTooMCQYu51KIykHYChNVBMhYm4DRbqrqJruFdPUepVEk9AwUwIyJbbVXAXuXQBDeJQTUjxUEuNBRAmDU81FIhkCKALaWQQR9VAigWrIBFJggR7IEgSgEAgEAgEAgEAgKoB0DCoaBgIGPwCIYuUALMDU3QNhZAVQOx7hUUDq3kgsCxRGuNvIqwabQKKgBD2L2QSQSx1CgVw+p1UCkehdFGg6oh6No9EVoxJOiDUA+YqAqNJMACHrcd0QpxFKEjr3UVDSdr+CorS1OvdA9obaz6yKgItRqN1LuEFxDuw8VRvjh5dSkHXixE9waFrqjoeRaIYMGHcIrMsY2ZqF1BhIuxPh4oM5AlyS1WZQK4bszoAWe2gQUGDAaajVBcYu91RcYVDiyuDpw461srIPQwwAA/7dStwdFgW8XKoxyZQXYsQL9Uo5jlqX+iyYTve/RAeKqKg5P6INoYgbUWoN4YtQKK4NQAFQGQpRAiQ9/BEZSIqApTGRPqPRQMTa9ALK6NIS3SAqRcAK6JLmyCGYvcKCqM58VQxkizuwP4q7ot5SFAbUZJtRGQzEWkDHySymsJZRVr9GUNH+RAAvJg1k8mxcZzmR7eOc3D0BWpzal6jQY+W7ywTANnBWpx1/Se0BGUD7C3VlcpsSBORNCGvos5V1UJgOa7//AOGbAFTA51Fak1Oq2MlEMGzmmiCwafothk0HREQZfmopPWuqCxQVDE6LSKDU0VAXLgDzUU8V92goyQVvApqNFdQ5EFok+omqoc3jFmYm/TyVqM5uWAiSPxWVAxZj9sS2pT1qa3w8bOQSBXSRW+fnUtaf4fJJEpYyYChkOpWr86nsUOBmEtkgS9iCpPkvs7MfxETEbgSOnddP84ztaR+GwEgyiRH9zXZP84bWOT4KBcx3RrR1L8oe1cWf4nl4yGG4Xpdcuvjf4anbk/x+RGVccgTqy5X51qdRpixZBEzl6Nn2gBzI9HT1q60hDJIgjGXNhduqvrTVSOSJA2W0bVS6spwmxMpi1x3T8Fnk7iwiGtVS9LAORCJ2Sk22XpI1Kmq3OeEgNrEu8geq1KlaHGBJyfVKrKo58oLERG17nU+Kz1FSZh2tEsAGWa0gud4i50BKQLdBmm0QAxleLoMpwcASlrtMhUDUP4rNg5MuMgiQpIOAeyzYIgxBjSJmXl5KKe0yFGibt1AUVftSE3FD+0K4OnHjlu/6hnPcqyDVmHjpotKgyJAe4uOygQckinj2QUBEf/EG6i6oGQcD1RRY3xH0VIfQjopquj/JMA8aBmI6+CzqvS+O+I/zeOcuTI0T9o18F054114+evW/9dxuLwvdxn+9CgmLhbnh6585HnT9YuWb1PcvUlHHq15vMwmMNz7ibAdViuN6eF8lIR3OSTcsbFcunHrrXi58rkFjWkpdFhiubIRsLlog0kTdVlz7mIkAwNRHushgiUi9Tr0RU02liQLAnoiMMkS9B6dFBmxfyQRKJufp2QSzHxLKoRBJlVwPoqJdqsw1KahmTkMAzXTVTTbUU0UCD066hUSX6MFANFyNWUEtYNRFI/kgTk081BFC6B/gUEmndBJoaIBygSKECUCKAQCAQCAQDKgUAqGgEFRQFbohi/dAalA2JDlAdOiAogq/ZBdQ35qi4mjVdBtEBgCVUUSA1HbVAOLAmtwUBJmoHGvZRUEl2H2lA2JuKBAh2QVAHoH0HZBtEelirguxi5YhQMmwuXuqhE1JvpTqmqTWMSXN0CraperFQVEnp49EDDkgGh7WZBpEO/RUdmHH9ve5VHVERDePqRSNKihH5IIlLU1BsVBjIjxj+qCWp6qPQMgbUESw20QDMGNO6BiLizgINsYLDp1VHZiwbm0JWsHVDjnUDxWsG0gIiml3QY5c7UB0olo5vdJd7lZA0n/0zdlcAC2jojQRc1uqNoQL1Dqjqx49oi0hIkOY9FqDegiAPotIwyFZqo3gAafmVAbnDC4VGcj/ALKCZTYHugwkSDVSjTHlkJCULin1orKjcSAoC79FvmomcMthCVOyXmmtsPx3LyMdhiJdlrn5Wpeo9Tifx1yN7knRrLtz8ozeq9TD8HhiQCdp69F0kkZ8uk/A8UH1yjJ+oVyJ5oh8P8SCN+GJbVld5/o9K7eNx/49jbdwsMmsZOn+kT/L/refI+JxmR4+DHikb7BTyT/Vf8nncvlYJGkRXRlP9F/zcWTDilXaHZX2T1c5+OjJyBVTFZ5fihMmUogyPQABPWJ5c2b4PN7Zlg9RjeGql+X9HtjyZYZwO2cTGQuuN4sbnSQC7vV7KKpulFrAjanmVBn2UA7iwoqNIY5yYs63Oans2jx8/wD1caLX+dT2M8PlNWLp/nT2iocPkytjkT0agVnyp7x24fg8koiU8oEzYDRbnyibWkPg5iJ9yY2u4IFSVqfGRn2rX/1GAlhIk/kVfTlfKv8A0cQNwN+ivpGfYhw5YzUENR1Lzi63x48FgLVJ6pKuL24yQAL/AEU1cbjHjxhwH79Vq1MT78ujdmWdXGvuQMXJ8k0xHuiRtQImEZRB6ylfsE0xjkwxkN23uArpjOWOJuA5+1gs2mJAxCQ3w/tg+oC5/wBli1qI9nHIuzCpA6dAkEZONiJZg57LNkI5p8CPqm7S7CixfnGtrHLwgAAHJH2ed1m8Q0Q4hgCZOzvIapOcXXXxskaRLvdzoOgWuaPQxcTi5JicZRjKIcbtV0yVPMYcv4LM++J3ghxqX6BZvy09nBPg8mHrlBzpAdVj/Kr7MBiyCbzxAAy+6RAD9A6x6qzyy2YZYSSPcyDL2oG0WbGtYmO5htubfqs4MZ4QJNYOs2KsQk1t736hXBtDGAejUCDaE/bqBuH27j1K1LisidHIIWRIcPEOxDnuougbYh7UsqKBJG3U1Cg0a1LmpBpRRTlIAECtaaLNajXEDKQlofsA0OqjT7X+HwwwyY8eYe4d4JhoV3n/AJev5f8Al0fK48XG+S5NDASlujAGgHRak8a6e+SPnORJs8triBrGL1HVZ6ebu65cw/tSjIDYHIjr4rNca+a+S3E7SA8Q8y9ui5VyteHlaZaBMg2vbVZZrllIBiaiVR4qRCBvQFvwKmqmIG0kGp+7ugBI/uLH9oBsEwRMOSX1p/VRGZc1Jr+ConaWLX6lMEEByxfqe6CQ7n8kSJIJAc0dACIEWFAqFRiBUICOlLKCZPqaIJNaaIFIycfh4KKmXR/FAielO6gRCCDeiBEIA9EC1RSbVAEIEoBMAglA0AgEAFdBqoGqAIKAOqIAimLoht1QDIDQDRA6+SAv+aBhUWHZBqIluo6ojSL2QMsBU1FlQPprdAbi1fogbVJvHqgDE7QD4gvoopFj46JgsxfSqDQACwoLlBWoBYB6E6oEQTIvoKMmgegDtSnXzQP9oqe5QIByQLW8kFABzqLVQW1QNRr2QdGDGDTbuJFD0VHXjjAOCXGnigqb+KtVL0/MKCZHwY2AVTUihsNrW7qKBGwasevdUAZyGcoK22e70UFRx1FGOqo3w4QSGt0VkHp8fGwrdlvEdAMW/RUcufKGYKVXDkmSXWRINgUGsBpqrEabSeyo1xw1s+qo6ccGC1BrQW6KhbmLafqqiJx1v/VSwZS9NdeqioL0LqAMn1ZKMjKu2zXHVZ0Z7ZZJtCJkf+o0VnNv4lr0uD8B8hnIGwwidNV35+F/li9vq/jv4RmEIykQCK+q69E+XMYvVdv/AKXjYJN922nZXcXNbx4WORO0AABk09SyDDx2AcFZ66anLmnzIPSL1ZZ919XTLLDNgADCQutTrSxwZJyJIiaarOmI9uI9JLUt+KaObJmlGW0WCzqo37tPXqeysLFQMutB+a1ExtAzApfotxFTMwH16LUiFiyFzG2rhWGRyc3FjyS3GIJOqtY9XmZvjia4x3YLF4XbHLLBKNOixeF0R485WiSrOKXppi+H+QzT248JrqVqfC1L9HtcD+G55TH+TIbmrAaLrz8pGL1a9WH8X4+NxCIJ7reRJK3w/C8cS2Tgwp9VWvV3YP43wshYek9U0/zdw+H+NhEwPplChcXT2P8AJ5/I+A4Msv8AbkRM1Ai6iyWI5XwRxcWEsYJkwM5SNEHd8P8AAcST5s4EwGd7LN6xvnjXrR+H+E5ExFowi9TG3gs3utf5R53y3xvxfHyZY4BuhEXK1LcTrmPluRjBl6Ys/wBpCVnHLOGWM2ke5bRYq42gYAgguWsdFZUxtjnGgnHc9u6amMcksMchiwibnxTTE454d7d3J0U0x14eLhzSPrvcqwyp5HEyYXH3Q/JMSPPk8aCr0AWL4ajKEjIhxagGjarKtB/9bRuXZBMh6huOjAd1KHskZiJbaPzVBkhEEOLJVjkzRMoTk5rXyC51VczjDHOGYDZiywjtg+tqLEarGHIyYpCO1mpW9VZR6XE+Sy4xt3bowvLqD0W50lj0o7eRAbfTOQJJ/wBarrLrFmMRxOPxdnyHJ+Fw/LDIJ8fjcXkZZQhCbf8A3kR+4w6FY7lt8Lnh444s8XFlxckITkS0spvdzt7Ky5MHmZePPHk9ETsI2iXgvNeLG5Ve0BHds3gFqWB6lSqv2vaBlJiCKnp4JixnIAVFdtm7rIAJAXc6DSqomUXFNKk9SoakiLvUvUspZ5WGYjpS4KgW4RCaoExtaLiP3HWqzWhEmUnBHbqAsrHZxzEiO2Ni4D6D+qNY9XjT+QGSMsctkncGNwF0510566j2QJzwzycjL7s3rORv28V1jperXgc/NIEVDg7Z9ui59VxtR9+PeXJhHa70c2Ucuq+f52MvPcQP27xr2WKxXh8oCM4RLbR95jduhWKy45QmxIjuNNhPTQKWEQ1dxoX9Q6lQN6OQGNiNCipNuh1KJgYEF60oUE7SPTQhnBQRJwKinVQZlmIFR1ZUZkF3bxTweRtGleyIACS2g0V0JnjJNESqenfqgUhVQSXAoQX0UE0oNUUEDzCCT4KCe5p0QIhAiGCBf6dANRFIoEgSAQCCVA0AgEAgEDVDqgY7IhgB3QOjVu6BjuqBQJq0sgZAFPqgA+hoqKig0iNAERrFxFnQaChBNFQmapoCgJWDmvRRU0j6iUAOhFDZEMEOATUIq4u4eo/NEaRrb0tcKihQUdtVFH0fugP27rPQPdMDcCJeh1QIEOLkGjIGBclmHRBYDCIahQawi9WtQFUdWOJ2kDpRkGxPpFqDRVSJLxJIrZlBJLFvuOqCCRZvBA4h6DpbVBQGrvoqHEBmFC90FiFbEtcpg3xYnalD1VkR34eOzCgbRbkGxpekuiqss2XrTuFNTHHkkSorPaST2sVACJapr2RGkQzBqqjoxhz36KwdMMdAWclaGset9GWgEtuN+iUQ4DgE936qaATGjEjVXUY5TQkU6lZqshJ5MQTFqbbv3Uygx8Xm5BEjGSWs1FqfPqp7O/h/xv5Dl5AJDYPxXTj/APPf5Zvb6/4z+PY+BE7RHfOLZJSDnyXoyT8Zj0IwhhAMR6Y20KW1ZHUPk/Ttl4sFnW8efzeZF/Q5kalrP0UtHNg58yTFi9iyk6FZvdcEa3dWjARluYgnoB1UwT7uaJaha8RdQUPdjjIapq407KjhlmybqdaOueqojPIB/UTda8okziJNbt4K6YuJJD/RbhThMxlrX81sVLLIGob9VqVMScgJeAqts4Ns8kfTAyY1YarUiVUfjedc4DEG0lqcs2u7j/xsZ5CU2BOgqtesZ8u6P8fhgLTAjDoAnhMajiwwkRxj0kV7BTWpy140MuP7ww/7vVuqa3I3yxJxuJB3d+yauMOOJbt2QEC0VFexw5RhAksAOvVGpDzz90RYAGJcyaqhiuIIjOd0fVoeqaZHtS4/Gy4ownEVHqoFE9XmczicfE2PDJoAOI901bK4c3D5UWlCTPUxRNr0sXHwnABljGcyPU6ml515/wAh/GeLnwxnigcebc++J9LeCezPpj5/5H4nJgNSJt9xGqs8tVyw+PA/uTjL2zR+x0UTHXLDx/ZkTAY9o9BJupq3l4+b43lch5YI1H3JZrDCHFy42MjsOkO6xFsVj5WTFlrZ3P8ARW3B7WLk4uRieVJDTstSpeXPn4eDPvOOLTiGOjd0/Wcx5c8AwxMP3EUKxY0wAYASjbXus1WWTJMSvf8AFZo14+UAEmqsocvXEkXJYIJEzHHkgSDGRAPVSdZMXEyO+YN4gEQEtGUKx2ywSGQkRyEF5EbqGilmKyxnaYgftAAOrhZV7Xx/IpRgeg6alduazXpjlyy4OHxvbHt8TfuyO5lKZWpPOp1+NM/w8c0X9ogCxa7rdjDz8vwkNpp6WaMeyzZGtefy/hc2HDHNgAljJbYTXcOq5dfP+mp08ouMrZYmU4k+g/a518lysxv9QMUzDYSCN26RF3/op/GBnG2jeClgUoG56OyWKxLg/msqk1cE+CzRJqAB0t3UVFANx3dG0UU99aUAFAFmtNuLlYAEsS6R25elh5sztMZ7J6k0FNFv2W9Nv/YwlGRZzDxAfqEnTHs8/mGRqAZRI3SMlKxa9L40QjxwSQDL1AGzLpz+MV5XyOMSM9oGyJ3RySZnKzYw+X5uLbkJidhmPXKVdx7Ll1EjgyOZCOsB+KwMg4cXIogdI/aKk2QVtYlme7IpGRNBQKCCHbtVBO0iRLmvXoiA4/tc1NkGRhUC6oTAC7VZ0iYmRjtYioN+qis9pJJjTsqhFyW1QJnNfqgXpe3moJI7oqeqBVsgD0OiCdH+qgk6ugQsyAogRQDIpaOgSAQJQCAQCAQCAARKaqqHRBQCIYYoG2iBXp5qhhmZAONKhA2fVBUQXpRBrENr5ojURifU9TqirIJLD6sqCTEAK1GRraujqADVGigcgdOlyimCQB0P1SIuAIDDWxVwbQEqDd4lUUTtLHyZQRR6k90Uerc5+39qgGINEAXJ7C6CgSJP+3og0hAkh6k6dkHTjgQQCXHRUdOIDW2pVFSBrYRuioOrNRQQHN9LIBy1baoHGNHpenVUXtBAYV1CCoxLVFlRvCD6Ub8VcHZgxChNXorIjrYCi0rKZ1/0yI48hJNLaLNGVze1VFVEEgtQyuqjSMAzdEGscX9Srg2x42YrUg2BADNZUG63RtE0D06NVNENMn0hydEyjXD8fyc8xGA7mi3z8rWb09jjfx+O0SyOZSqX7LtOJGdrrh8Rx8ZeMPxqteP4MejwvhzlIptiTr+isSvoMPx/Fww9JEZxure1nCTHESTQ9ln2a9XByjAghg4sFm9LI87JlyRJFupCzKuKw4zmk8yNppSyQxRlgiJDGP8AQVvRjgyz5A9RJC521WkcxMdwpIUV0xIGaRJEmGpUV1RjGeL1logUOpZalTHHm4215AAEn7VOjEiQjFNXERxRlId6qymNJCFTToump6uc5fW9GsrpjqEY5og6s3kuvLPUdHE+HzcqQhieGN2lkIr5LrI5WvqON8Tx+Lxzh2vGN5kVJVazwqMcIwyjIiWOwDVQsacLgYjOJAYyDxPgqkjTlcXKIkPuJ6qGPK5HHyjKDLUNRRqRllE4xEjYUqisp8syIgPsF0VpzPkhGMcWKDRiHdS1Y343KM8cAT65adFNXHTPmxMvacRH7pHqmmOjN8jglkwjCW9qPrl1KkrWO/F8iJYt8bm6azXz/wAl8nlPykceKT7RVupQ17EssYcP+5Mb2ctos+y40+P52KHEkch3yy+mPgqY9jhZo8UYjPGWmHEJvUdVL5WYXJ+I4fOzDk4YRxjIf7gJoG1T2ZvLqzcHgz4p4UcePLCxkAAR3CxtbkfmHN43IwczkY+QTtwzMcYlqNF2k8OVvl7f8X4kpfJYPfb/ABZRlLLDqFju+GuJ5eJ878dE/K8qOD08eEycQdyQU5mxO915M8GQYJmcfTAs/ZW8uZYM4xmUXpJmfosStO/FlEvtOlB/VbiVw8rMI5T7geQFtFnqkY7ozgJWkVJEceSJ3kytYLNUpAkmUC0YsSyyLhIggMRE9VJauDJIktGhBeiCYAiZNKWatUwbTiJAAgOfuOq1RlLAP2sGuOymDbGdjAO12Gq0j0MHLz4mJAEvu2nQLUpj1+P89yM0CMgeIFwKJKZHXxjj5OMymNpA9BW9ZcWfi7ZECO4H7GNENedyfiMeSG4j1DUBqpeZSeHl/wCGITIlBwLaVXL1/tqVy5cMhFiKvVc7y1KxywAkRAERDOTclYxdZTgDoQRdSzTWMoUFdFjPDSJOAdOigy2kTcg0D1Kzjcg9wXf0vcJW5UCcYnfuckkAdlgldeDMR6S52j0gVv1VLXTEGRE8dZZPTDGK7epK1IzXYMMIxEZSqQzCr9XW8SsMmTHiybJRMgZ+nH+2IATU1hz+SZwMniCx9JowCazXzPyERkImHJA//HxC5dsvNmDJq+ga6uuas2I9RBo6gUBqBU1JN1QUZyaOwUFMADdgUDEbhrlh5oHsjFnrIUJQxMogOSPNBhO9LaIjKUQ7M/UpogmrNTRBBJe9bIFR7efdEKVak+CoW1gQ6gkmndAkUvOyBSAbo90El9LBQS6A1QFECogVUUMglAIEgFABAUQCAQPRUNA2QUBVEPUoFR3QUqF4qBxFlRdGPZBcWKo1gCAiNIgj7rXDKipl9rUZBEg0n3O9woJLGwZKEw8B0UU6kAXbVDFAExsrEagEAPQaBIVYrQV1RQTStCgAz1PipoQLBj/oIG1AHD6eCAje1SgqINQRa6DaAcildD2QdWMSBJFRqqNg4oLf9UUiHNqaoIPb0mNvBAEOAwZqoEA1RY9UDDCtG7ILAFKqjaEdzA3Ko7MGOlDU3C1B2xg0f0VEzl/wqjDJkJosqxNaiujoJMBpoiKiNUG2ONLUVg6seN9G18luDTaKgq6M5xIqL2UonHiyTO2AlUsZAOyTm1NjrhwRE7pycCgJo63OZB6nE+NEgD7bPYLtIy9rjcOOCBMQNwDk9Fb0SL2zkaBy1AbhZV18Xjxf1hyLlUx279uP0sALK2rI5svNhAMSZE3DrN6VyS5p3el/rYLPsuObk8k7m6j7lm9LIMfIx5JiIiIhnkXuVZTBlyRizMIyLOLDupaYk5MMQYwkMhdt0bFNXGWXLGQYWuQppjPdAAbiwGv6JpjTDMCO0Vf9U0x1YmkwNo6KjHk6m7qjCEYh3F9D0QRJ4RMgPDwSjlnmL1LqTpcKIyZckceMGeWf2wH5rrzNZ6uPtPhP4xyDhjGWJ8t8kzURXonhjNe3x+N/iZPbmCBGsS1T3XSU9XXhzQnGUABIyqSVSvMy8cY8mwEEO8Q1EYd3Gb/MIk0Rjx1a3kmt8xnMe5klFyxqD2RES4mHLF6iULlRqPL5nD5OR4sWFR4Ixa8XkcbNgzxrQqNSsOTKcYvK8i3ko09D47fGAmwD0BUbsY5zL3Duk/REwo5xhx+l5E3PRWo9Ph5v/wBNtBMpk0KhXmcieb/LkMcC4++dvJQla8vNl9nFjhWUvvLqYuvX+InPiYYHLHdIHdEM6Ue3k+W5PyWWMcjbvtgzBh0CzLiY6Yxnhh/iyBGR/t8eqsq1bz40iX9URQA2UNfOc3g5Pks88+YAAy9Ijc91udYx1B8Ty58LkywYsZII2SMxXyU6mtS4x+S4IlmkRH28mQu8hVXmph5BxcHD5HG5PGGSeeDYMw0KzdpJHyHK+PODJ7cgd2r3S8sYrFkMGEfujomrjXZDlARkAMgqVfDNjkycT25iLs34BSxHLzImJiw2x0PXus9LGMHN6A0XPVPITIyINwAfJBQj0uAFcFsIgzjbvRRQMgYa7hboVpGmPHEsLzND4KxGuOEYmoqDQDsqLyFvVIeon7dFKsTg5mTH6tD+1k5HqcX5OGSLRltf7n6Lepj1eHKBgSJAmRaIK1qK5GAiPqAPRB5fN4k5AziKClkweTy8EPYjMRP+QcggIf8AYf8AZcbrcx5mfDPHllDJHZkjLaYOuauaQILEANQLCpqQxZkuCTCO3x63WVYTwxctXqOqzi6xOMwkDSMhbEOizTUHDkBAmQ0nIn/1UxZWmFt0YAnbMHfIGrDqjWurDmyHFOQMQSBHAPtJ00utxHp+9ghkhGEAxgf8guX3dlpLXk8jIJcgCROPHAeuQLk9H7rFZcmXIDQENEFpEP5eKlqV5nI9yW2M41IoZHRYpjgmI3axZlhWEtxJNv6IgDNuNxr+iBA9Wc/cOigsNSrRIsgYOoDys/ZFBM5RZ2IOuqFZzdyDRtO6IyJYfooMps9ERmXtoLqiRGtNdVUKgIc01QJquLIEWHmghqKKR7oFY+KAdBJFG6qBMxvRBJJ1QGl0CogSKGQSUAgSgFQKAFEDdAMqBA9UDZEU7iiAtVA6FAh1QUAPIq4AAAoNIiqDSAoaojbFGRfoAtQU1K3GgUBuYkmoIoqJkznSlypVlKhAerdEqFtJ0dRVCMiBIANa6C4xrtNrpCtYttbR1pDIluL9FAvuFmIvVNITBx31UUM2jnUoGHazsgva9PN0FxFboNscX7+KuK3gKWpqgs1Zg4ND4ICjEVpqOuiBuW2sKVfqqJZwygbB6iv/AGQLUkBiLg6oLiP9lR14YEVNCStQehigIhm/qtQW4AJBY2VGGScSSA9L+KlGBL11UDETQ37IKAcGiqLjjFaPoFcHRgwEuSbdbP2WpBuYgM9/3EqihjnIsI00KYa6OPwB9+QnxJXScyMusCLjHx4vLUjVXbfwzHqcD+N5cpjn5RYH7YmgW5xJ+s3rXux4MMWMbA8jeWg8FbVkY5cBmGiHI107rNjUZDHPC0gRIEqK1x5CwpTr3V0w8nJj7chubRZ1cedkyRjuY3FHWbVceTLMG7FYtVGWW+I3FugSjTjGES5aq1BtmEJClQdGolHNJ4SAdiFAjmED1eteqmtOeWUzbcWropaNsEiHr/RWDrhydsSBdaGEs5nMVUlEGdSA9/qqFkyODEnu3RXTBwvi+VzTuxjbgH3TNvJa55Z6r6n+P/DcbjiUhXNKhykVboF6OY52PseMMkeB7UJEQhJnGpOpXRuI+WM4iAABcNv7rUZ6rl+OiBOcTpYlaZpcqMZZI01qVGXLmBjn3glzSR7I07Dy8EOLGMY7sjuSo1Yrj+qZmYtCR9QVSNPkownGOwekChZEr5yfx2fkckUD69gosbj4KGcbZQO7dTy1SkPncSWDMIRxgQiGBajrDo83N8TyIb8u14M5AvVSL+MZcaM5RgHESKuKhbYdvF4k8MZATcQDyyNRQ8vNO8ZpyidwkXbt1WVbwjjy5oRYRAZNXHr/ACMBw4QgWOTIxjIFwQs+ySPPx8mcMu6T739J6JrUe3g5PuZTkEzJojfJyz9lIzVS+SMsWSUfVsoa1Kq4n4rIcuIZo7nyEx2jQpSx05+NysRBMRviHwgCvmiyRyzl8hkzg8nHv3RZxViq1Y6/meNxcXw2PkwkJcnBIHajGY+J+UHIyyjyMg3DkFzMCx6KpeXk8nDkwS92RAH7R+q497q4viZOoO4661XTmsWKzScsbi5KqWOXJ64gSt+0lZvlHJLDkxClYyN1i8qqELGwFgoOiEBsqtYhGMDHadPor4RjuYykBajLCrjOQaINWYkXqqrqjk2wgcbPEa/mtXrSeCkRI7i56v1KRK58sSRtBoLEfolgjhzlDLqxLAKcj3sHOhxwJNukF00x6I5+PMHnJpXDd1UWDL2vWGB/JVGWHhcPLmnizn28OXGTHKRWM42AKz1avM8vK5HxcJYzMD1GhB7fu80siTXj8jhxgdpvePV1xsdHn58eSBILD/suViysjJmGmhWVM+qNK9SoMpFq0ZwTStEXED7pBrlzE6RIusqr25ZccTjAD3NjMApIy2HGOMxzYjamPGD6o9VfWmuzFHNtmIQ9MdZ3JNStyDy+VERyyM2JnUwFgy50efmyiO4gegyub+SxaOHIxluJJJ7uWWaOcwqQTt6FTBhOPrLhv/JREyi2hIv5qCS4cuOroDcXDep6+aBgtI6DXxRYl7h379EEyJlG1Br17oiCJOWPiVBEoh/1VREvtYW691RB1P4IiSGHignaNtSgljpYIGQC3VQTIEH80VLDRAF26IIKUSfxUCKAQH4IEiggIJMUAglQCAQCAQNAOqGERYH4IGPw6IAuRWyoKaKAArdAUPggpiqNIgsg0hUUDhEb44A0i7ipC0HrV4oAiJsbIJeh1bRQTdyKV1UAABW56oq4xdqOLu6RG0YDxVxdaCMWNfTdWxEl7v5dllUMAWka6IE9WNOqCoks/wCXRBQoej6dkFAVAHWhQbYxax790HTjiSSzkakCgVGwhTaDapdVUlnd/IKBSJAH5DqgkaAjxQVQWLmw8ECpUPbRUPQPQfiSg2xRJNiSqO3DCx0WojqgauVqKnJIVBJcfaylGBckgHxUCazGyCgOtruqNIRcg2fRB1YsQkzjabLUR3RwERoDUVK6Ya0x8Pcagt+as5R0RwRH2hz0VHbi+OmQ+T0xI0W/VNej8dw8OOcJiIAaxFVZUx7M8kREPc2S1rDGXfjBDt4aqauEckHoWYepTVxzwyQkDuIkQ7BNMc/I5EBD0da+Klpjzck/WWd9T0WGnNLJNywNbvr3WQ4ECsqtorBzZGMgdwiJSEd5qIgltxbos0SZbZSjGYyRjIxjmjSMgNQDUKNRvDLJi8iWai1Kpmcdzmrq6jKZ3ExUwZsYgxJD6R/VA5ZLB7JqqhmGSWzVILhJp1vYFnVgiZkMhdxIaGiDq4fx2bn5tmOPoH3SXSRm19xx/j8XH4GPi4w+2wH/AG6rpIlLhYORDfEuDEvEfmukc9e78T/iyzS4vIy7Mc47pHut243y9Dl8bh5MO3ESdpeB6gUdbjHceRngcMhOIZ6STWY5s2cmUbMbupa1jl+/eZRLOwqppiRGWJhKVZWB6Kase3wBE4bB7B1rUo5nrxhvTKJqg8/h7MfGyylNs0ptGOqar1fiMYlmich3EBaSD53iShAZMcDCOM7vckAQ99VzvluV4OTnTyA5809840lONAR5KfrVrGHEnln/AJBAi9ZP00RIz5wzGExGsbxA1Cqa8XJHNjw+7tbHI7HJYv0ZZqnDkDHiMLG3iFNVeGRy4zvMp5bQL0iOgSFehk43tY8cSGkR6jqqmqxTziI4+EEEmqmDXHhOGWTLjl7ogPWf/JJ+Frp4XP5UeNtwQEZSJeTdeiiuscrky4xgCcWb/wD2H7irca15R+bnws84TeZkNvq0KskrfrsdmLPjnwJGXrEn+pUrHqw5uDCPiwJY9kYhyW10ZZl8tSPlOTxpZN8+RMxIYYwzuDqr1C8jDxJ+ySAAer1SMXlx5InES5d/zUrGOIykZHxqAuV6THTxpDLEwJbaCa6q81cdB40RiGQBoijjRdcYZRiRQWHRRGWXH/10NfNSwZCpPXqsqqJiKAO96IoiREk6qxFbzIgudxt0VHVxuFmzcbNypB8OMiG4Wdbn5tZxjOLgHH9wFys4sQOTPczPI0qaNqVRtj5k4AEFiLPYq2j2OH8h7sNs70JAVlMdscmExO+o0HRXTHLypYpQkIVO30rNXHiZd0oEzobFYHm8rFuBAAeQd/Bc+ledMSMQCXDaUqFyrScW4MACQPuLqQbe1vkcgIMnaUdFcHPkgKnqWPTwWaN+NKfqEImchFhP9sQrB6HDjCXpxx3ZRFpy1PgunIXsZBIw9QBqA9vFSxJXn5REiTAZMtQZSLABZpXhco7snqNIW0BK41YwLbXs1ZH9FFkLaAwkKGsf90axjnjEFrEl30WWXLIEl49ddVEZmQ9wks/4AdFESZUL3ejdEDoS9a3QBEQDuJpdAODGlYytFBEiN1SwBoFBJckkNRUZzMfqbK6yzJJd9EEhv6IAiqgmlVYJLf0QI1DkqKkXLBAlBJAFECNSyCSCgEAXIQJjRAaoEWRSZBKgEB+aAQNAKhhAx2QV4IhoHQaKhUZQDFAwCyoqNPFBcQiNIxizW6qjaLXcgNRUUSdtakoJehoxP4LIXpLDUa6IpEPXogH/AO34JBrCMdupJsrEroxxqG+iosyBLyiCbUTRkRRon6qCamhrJRSozG4ugqMRcU7Iqq3kSToGRDjVnsg6IAAUG0dSg68L7TUiJZwLFag1PduyCCD5D80VEncAsCoEerXugAwdiw0QAcHsguLONfKyo68MCfVL6LUHbGLCIIZ1QzkI8AqMjMkXfVNE611URQB7JguEH/advQqjox4/r+io9HgcKc2Yem7Lrxylr1Y4McABqF0vggO2IfV7rOmO3hcaMR72Ybcd40W5MT9bbt+X0j0kFurFS1XfCJjGEZAAxDRA7oqyNuT1eot9PJNG4cYxEVgKgd+qK4OZEQeRNBcqdLHnY+cBPbCuknuxWJVXnjIvtpF6R1fqtYkQMYxY98mlI1IU/Fcs84mLbTos26rmnmHUlrrNojeSW0OiilIMAD5+CCoToej/AFVUGTypRBrhG8uaALXIMsXDgXsUsHHM1IDvqsUGAn3AfJXlXpcfDOUndtQV1kZ1oOBkz8iGPGDPJkNSfzKvqmvtfhvg8nHx+1ExEwKnqVuRXrYuHyOPmiZRMoyZ5RvQvRdMYlbc7lQxcqU8WIbpkA9luM+HJlliyZd4jtPQLUqTw7RzhCMWJFg6uqy3+8JnIXrQBZ1LHFLjy9U40BsFm0c+Y+1iINNSprUjAZPclGRptoPBNXHrcTliENCrOj1dUh7uIzBrI26LTFefPEceZm3TNCWsmkr1eFHZ6hSQ17LWmtPl82TNxo4RPdu0Uq2vHPAjhwzxSg/uEGnVQdOL4/GMe03As/ZF8vL+R4+XLyBCA244xcd2WbVx8/zhlySjKYIMCwhoPJY1phj4+TLmGou6uI9bgcaOPbI6FytI05WaUvd5Mjtw4qQfUqaM+H8lyGlOWMbMlIlkXHq/FQIlJ5ARn9zpYRRxDFmn7ZcEuzWCcxvmax5mbNHMMozCRP20YK5rUjyTx/f+QeYMyC8gytbx9CBxsWMR2/dSMNXXO1z/AGo+d40Pdw+/yCcIgP8A9PAeonus+W48j5Lm8TLihi4+Ddmj1FR4qyN+ryo4spy+obTK40p0XS2M48r5CMhGUIh3l5rl3XPrlwjFMxJMTDaK1Zc8TD4re7EuwfxSMV7GXkRnhOKNnchduWenFGGyR6GrqWpIqUYy2uQAasNVNXHPljukQzDoFKjIuPtvqeyIIwJk4FFpHREG5qbPorTAZy2e0JyGLduMQaP1ZFNzOBux08FplicOSMDyI7Y4ozGN39W49B0UMMQMPuG4h2furLitePM429TbdFIrafPEtS3QdU0TDPNntuuOgQaxgWhPaGmKVv3QcXJ4eSMzLWR/Dus+prjycfHtEdJC36rneVcWTAIOBGUmtIdOq52KeCbT21GT9oNvEqSqvkRxR+xpQlXJIDXsnWDPGBIuJAxH7bB9NwUV6eKLwL4/7sSDNrMukRryePI4p5IROyQu+q1eay8b2D7UgBuYN381xakeNzRCPIlDeJCB9O3qevguVaxxCURImjm9PxCiyM5SBJr2FKItRk/66i50UqVy5A9Wr0HTqssMy/8AuohHtogGO6LUYVQAs7uHqoFUXNTUU0VDk1Sb6KIiQMrgBlRmYRr+aDNh5IiKuaqhEdaIB3rqEGZd1AjFr+SKnqUCN6IEbd1AjS9SqEQdFBLOUDJFkEoH4oJKKSCVAIBAFAKhoG3dBQRDHUoGzqhEKADIGL1ugoBUUG11QWBoTREbRAJYWa61BpFxFyxUCJeTA9y6gmVJUp0KKCA1H7ulQD1CmiKI7jK7N+KDbGI3Jq1HQdEA0RR5D7ldQ5mwBcM9FFZkuOyBUfrS3RAAbu5BQX2djchAB3Na/oguET+4U0QdMYyLFlR14oyAFAAqAkjvIoqD+J/NQJx+h3dVQEC1/HqgQGjAGygT6XFqINsEKk3C1IO/jxrbwWoOhj913oyoiUe9BolGcqmoUBH/AEFRcO1H17IjpxQBuPBag9fg/E5MpBMSIite67c/Nm16s44sMNkB9q1asjGpYV3EaWqs5Vel8d8UZZBm5AAhH7RoStznGbXdymIEI2exslWRlhwjHPaxMpm/QKK7MW0y2xeQj90kXHPyMkRKW2Xqengpasc8OaQWnuuwZZ1XLy+b7khiY7on+7JqDoPFTfIwM8WFpg+o28E/Boc0jUn7tVdVjl5JPp0FH7KWjjyuHI1sCs0c5nuJGoWVXjNau5sqNp4t0QbNdlbFSCxrc9tFAwAxCoeOW0tokGmSZmHJtQLY5DAmbdfqsYKxYz7gAHqNAtSGvoeDwcscQnkG0G3iukZx9n/FuFgwHLmnjE8k4tEyFit8q9jDDCBGUo/3gfU1jVaxmV6kf8cxEpkhw+3utp+vH+Rliy5Zgw2BvSfBVzrydmyRL16poqOYGA3Cospa05BzTHPIRNXqs61j1MDZMdaBnRLHD8hF8cxFnFwVm0jy4l/Ch+imtuvjnIDUbQNT3VlR6uPkGEQDrfot6jSQEiZxL6JrON8ciIgaK6KxgSnulUuwB0TRpLjiUgI1JNymkZmMvf8AbEftHqUtbi58IZTumGIHoA0WI1jwPk/g44omU/UXendXUcnG4uMgkRrEUAsrGW2SJhimDFyQCT0Casc89ueE+NJo4TF5E3B0oqVjj4WX0a4o0j4DVaia9fGTHJE44kiABbRKvLfdk5pMDCMckj6mGim/01b/AE6pfCQ/xw8d2pjrSymrK48PxuPHlkTQEHb381NaldRwceMIDZ7mW5mP2rJGB4gxcbNmlJ5T9O+dSH6KLK8DNxNkZDEf7szV9e6ro8vJj5UTM13gtBuuqnXTUjgzfH8jFk3ZokG56uVjEsXj4wywkcpEYNYXW5HPqa5JcSMC2P1CVR2U9McbFQaG4mwp5qSmDLJ6v6ugslqKxZcwxzhCQiMgAnQO3YpBllxmJFCI2BW2GUsZMq20UQ5Ebu7Kh49xLE006JBscUdLrSABqMxQZiERJxDcBUA6FFZ5ZgClZXQc881Kmj1A1WaJxyk72129lB7+CHx2L4fHyDlM+dlkR7LUiBqVqVrIxxiHuCYfqfH+irCuQRORi/pa/Uorz5ReJAI6LCuOQlKJBHqdmfQLnYMZ457yx9UQ7DosWNCeJiImLUBPQAqUGPAd4kSCH9Um0SQepxBOENsJbASfcJ+oLrcGueOaMDKXpYbCNAT+qtpI8LnzlijloxFC2q5dVZXy8jMTBl/ber3p4Lk2xMvtarElzQsss6mUnYF3l+SGpLt2Nh4IiJ1iwYCR+79FmpXPMOQAQQT+SiJDVYMHY9kBSwNY6nogly13e4ZAyHatOhuyCiHqb6DsgzIrQUQTKMWNyiMZgOSCyCJMG1KBOLm51RMIxAPR/wAkEGNWP2uqA1foFBBD2RS1DIEQaugn81AnD1QImroFIuUA1Q5qgDeqCaGqKNUEKAQCBuqBlA2VDFdEDjdEVdA+oZgqJL3UBfRBQPmgYcD9FRUW1Qaw7iqqNcbuW8wg03gxYjxVESNWJ8FAjqxspV1LOXslBEs6gqID0BuqOnExYmr0fog2izXbuqiJM5csopek2FRdAOa2UAPHabv1QWBSzP8AiqpAElkG+IF3/aKIjpxQJPbQlUdgDRbyZVWc4+qptqgzkCCXsNQgkR00NQVMDJc0ZUIkaFyLKCohz06qjrw4wW6DRag7YYwweiocifPUKjORDNYIEC4fXr2UA16Org0hGTih3Gm0Jg9r4zhEyGTKGjYDRduJjNe7/kRxQGPGK6Nqulv9GL4fCz83KQIuBWRFh2Sc/wBpa+gx/E8PgQcwjmzCIIDuHPVb1nEGJyGRoP8AxFh4KNxhOEA9HOhUXBYEm7AP4o1F8z/9DCGMOJShuLrNI8SeXKTQ1d38VhVjKI447zukS4ZVWY5GWOLJhnP/APSyy+8eNQvlZgTK7Non5THDzcspmUiQN2nZY6E4s8jjEZFjYHskqpyT00QYmZKgQiKP93VMGrbfE3RW0JUPbqtaGcYkzfioFHETE9XVw0hjlvTDVyIalxdaojDj9ybCp0SRLj2PjPhp4z/kciHpIOyL6rpOXP2fR8PiSyGESGnBpSB/6pjcr7HhYuRn45AgIYy0YyZitw6cvJ4xwZZRhPfOBqe605qny5QlH3ImUSKtoqSubNPFOJArI6HorrLz8xNxpRZ1Yw9wCkvp0WbWscxxg5I5JREogvPG7GQ7sprUdmDmbI7IwMRU7IuaG3kE0PNL3o+kVkLKVHnTwe1kM2AxuBEC4PdNV1QnvYyG4PrT6BUdco7w0CNoTUdPH3HbE2H3FWVHUDuMdv2j8lRtjj6nN3oqNGmcsACxd0WJEJx5OX1FpauhrrwwlEGU67RfoquvO523KHPkNT3WamuCHCxxySYMTVh1SFE+CSXJobqprk5nHxQnv2uAwCELjwzChIAl9oAotSj0seGQgMUANxH4K9LI7uHxBHGJY4vmJYyVWzHZhycXHDIMuUSnH/7B+i59StSMsccE8e7DAiBLPMNQ9FFbSww27IiMZmkafip1R5k+PnjGeOUIzDvI6LFrbmwfDY8vIOckClRI08lL1VvS8/A4mKZlOMWu4UalfP8AzGDHPj5pwDkVxR1Za5dI+bxwy5N2PFUgepbjNjWHAyDBPJIerHeI0TqsXlxZcU5Y9wFqllisdRyy9UIyiPEdFGKvA4k5vcpEekdmXCQQxAoukZsefkgxIOiMspD0bWAkTuM+3RRFY4RNRfotDWBMS2iCpgEaOKoJDmJAvclWDjz4SSD9EqMDjJPq8wsh4wAT0LIPV4QxGW2cfAdl0R2T4sSP7ZY32q4a5+RHbGQIqLLFV5u4OXi4H0dc2iy8eO3Hsye7PICZ44xIMD0dZqugfx35eeOBGCchMe5OUatAdVjF8uaXGJxkxiZVO+U3/bZlKFxiMe8zjtxyYym24MNElxcbSz44ynPFCU4M72j2ITVw8mT3MePHeEvUZguZH/ZWleP8lulHKKhwQQ1wsdeWHypgAW+1tZVPkuLbOVTEFr0IqT4qIQl93/YGx/IIagu21q3PZQIuB103GzdlKjAxoGDGNHNvFRGcr7TZ3fr3QKR/cwfRuiABre+igW4kMdEBuMqGgFvBAiDprZAjUN0/NBjMCzObojP0gCj6+a0ABiWqTdELY4DVHUoJlUUZhcIJLhj1UCFAS17oM5WAiO6KDVBOnRkCvXTRQIu7BBJQJzWiBtqbFAEIJZFQoAIAoBA1QIGEFCt0RQLCiAq6AqgAS6ALuyCw7Ki4xCDWH5qo0iNWYIAGlqD8UCYmvmmhG5eyik2kbH8kDYeQ0QaQJDf9R+KDfG7ORewQamRAdgqInVzc9SgiRiziygYBNS1RqoGGIY/UoplovWjMCqKBt216oN8YLbh9EHbgg8g4obKwdko/2jLcAxZtVoc8mtcXQZtWgr1UCIp49ECIYWYn8UDEdLdQEF4Yv9tncg9FR6PGgen3H8FqDpMQKDRXBnPXwulGWjyJpooGxr4v5KjSEGI7n6BB38DAJyJIoPyXTiJa9yOHJDGGDC8QV1sRtxOLmzciOOIJlK5GicTyWvq8eCPEwQxwAAAYtcvqe66MxMxPJQloCjC5PUqNM5zAxRhGLEPuPVRqRy5Judz1tt6BZVtPFECMjIG1/wA0F/LzlydtBJoj1N2UHi5pRxT2GUSw01KmtSPKzciXqYsXYLn7KUskox2g1NT4q24MJZXvXR1NGmIPAi/grBjL0hybn0R/N1miXo7oraDGAqXWpRZYs7+PVBe0tayo0hmAl40SVW2+INKBa1MOJjOLa2B7KxLCyjNycsRixj0DYBANFup7pIlr3Ph/hISnAMHFchW5GLXuc72o5BGEfSA0eytZkafE5vY+Q3z9cJxYHoUdOa9vl/LZMQjhgTGMa06laL0888uf/wBpk5JqCb901h0x5UM2MGfgtamJ5EcUWIckhS0kcWWcACDIUP5rNaxzSG/cbgG6g5xGcZO+7/xloEUo8oCVWIAIBidVGpGvF5EvcAEvFVLFZpA5NsrkuDoshQiZTjAyadSAAro68c4QEQCGsR/5KjeGb+2cn2mJYhEVx+bKWTb3oFVdoyEZXJoFYkZ8znD3sZ/a9SEtWR3cHLhnlJYgXHdaiWOrlZHjKMWAOiqPPyx3AFnI0UFY8USAf3qmNhx4bd1ymI8P5XGQwADPWqza1y04MMY9WYn2Y36laXHYM2PPn34gcWKPpc6qzyOvDlAYCTQFu6sLXnYI+5y8siTKO5z3ZRZXscbLDORjI2iFYgm652tVfJG0mUnDWETVSzfwlZYjx7ZATE/dE/cFmt6Iw4uLcznGftBUHL8hxTlgPT6CKKVrix4vIwuNwxmcTEittwTXSVwfFR4ftZo5cezNKX3RFSAnWuncn8Ob5zJ7Ht8TjQlDDmO7PlNz2WuazOM/WOf4nHy8Ix8CYOSAeUSakIzeLj548XIJOZRjGBMZB/3CjLLleQISjOoYfgq59RpGZ3NGzrcrDHITOUpEsAfu6lTUxIG8gWVQwDGhZuyI1xmJJF9Oyo0lxh3qtRmwtkICjPS+qGObLKG2UjMRyCW2GIC8dSSmjnMKlrIgONmbXoqOnBLEMnojKOMWcuX1KartjyDEivYK6MOWJykSLG6zRzYcIJiSTV6LGNPp/jPguNy+PDPInHEenJtYPFLW+edenKHJ4czj4EieEQIyeplHUPqsV3yRz/MYcWfj74YRsxsLUbos9QvMv4+U5hnjk0MYhjemMChF6rnak5c04TyROQTkSxiMUB6AO6SpjEzGKHqIMgGjs0Kus9R5vKOSQntPpB9U5G5TXOvnebjhHIQ9N1ZM48lwsI5jtyMTUuWjENTq2iioZjF/AF7BRCJFdtRKh7oIYC1BYAlQZyiwYer8ggxkTuc0GiiIYszO7sUCYuSW6FtFAEFmFUAYk0BaiBxDsXLHXwQTtg7n6KomUA5JpqgzZgW10VRJkXZmYUQQSSXe1wghwXNuyCZO/gggkqKGr4oERd0Gb0pRAU8OygXlVBNkAbIB0CKCXoipUAgGQNAKh1QMIhjsgaAcsUAWogZdAx+aCo9qqjSDP2QaRkXHREWw3FlRL9KhQM2BRQ5Pbsgn7nJuFBQp17qo1i1gKXVHTicP4XQgJLvqKumqkkUepCBUvQOaBQPaz6PdAwA36IoD0A00UGmISLlmVHTij9eyDt48GYl63C1BrlBo9WVGE5NJxXRQRuL/AOqqABiQzPqR0VDAoAKoKiN12H6oN8ONyLt01WoPTwR9NmDswWoNDqqMMjVq6VGLFwJa2WVaRj1odVRtjxkzEA4f8lqRK+h4PGOPGAbakC69EjLuaW6OMR3TkGiE/ar6L4r4+HDw+7k/+6enRbzGP1XIzRhJyXc+plGnNm54PoxeclGowhyGG0ly7kqNIz5sHqiZsCKHupRkflDmwRDtOFC2oCjWL5nNmIY3I/uRo1VLMHicgz3Us9VnpWMoCRHX8lMGcxL+n9VKMifoD+Kg0xTbs6sqtc2MSG5nJF1bEcxBBNLLKtMUiJ1srB1wiDVn6LWCpPtL2GqozZiQRUWBuyitcQ3yAd5KxK68XGaR31qtxnXucSWGHFaMAGuQqxY9T4LDEynkiBSr9lqJW/yQjKfp9JZiQlNRxsG1tpsNVeYmujKTJnizUcrWJrjz5QDtJtZRYrHygMW4W0Bopqss3PyRDxkQCdpYuXWb03HFl5u7IHoWAJU1rGuDm7cm4EkM0ldSxpLJ6jIVcUZRlxZQN5MSCDWQGia1HTxZ+iM9lhQg1LHVCujLkhI0YiQcPoeiIvjyeLl90LVr/wAIiiTKLx9Jkag6qqePOwJdgabR2VG8HEt9gG9SDryZYvQuTUAKo58xmM8YkeqnhVFj1OFkIlto4Hq/2WoldW55kkhmoFRwS5J3EGxN+ymioc72jL0vKVAeyur4VLngYx0N/BPYx5PyXIBnjn+0lib10WbSRrjzRyRiBQi4a/dNLHZLkYseHazSerdSt6jTDEY4xlOQBIN+6ujlllhiMz7m3e+0us2rHRwuPI45ciWSTigZY66a2uuOU44CUyZGVpHotFGPPA5BN/VEvLus2asd+PZLESItF67u65+tNXCJy7jIjYzAfgpV1y5cB/xsmPFCMpftJCjcuvnuX8bn4JGXHA5ZyDAt9pN1qdb+unPWvD5I5c2OQHJJ6RI1V8O9seaRzePymxA4ZTrMktRNNxx8vj5pz9NiXDC56qXmuHe1jjE4kRyVL2KRzvLolLGcUtgAk7EBa/hm8uTGADtNQLBYjnishBp9p0K1qYyOQEEX/qnsYiJMZAlhHoeqnsmPWx+3PhSzEtOBpF7rXNK87LlkXYHqWWtYc5EiXFSenRXQoS/JiyuordF2BeOh7qh7q3qitce6cgHY9NEHUQJw7xuxoVUYwhLewLRlbqsNR7Pxf+RiI25TGJLHGS7grna68vb+PyS9w4ckgYaDsprtI25WI5DthIRwu8oi1EvTtLJHh5jw+Vzo8eQPuE6ClKMseK3zxK4uT8PAzyx48/Z2SJHgLpeTv5f0+Z+Qwb8gkTtiTpYkdtFzrw9Rw8kEn2w+0l208U1h5nPgdsyWp9jBvqp0y8mR9RjKUdxZ2qubVZbfQR+132lAGgvXp0CCJhmd2Fj4qIkhwwsKqKznAuQzEB628kRmIncGYy6KIVDFm1r1dACIBb6BQKO0CunQoAz+hNuioJlhYeKiIkCRUuCgynQmLeBVlKzpcXCqFJ2rQmwQS7FkEFu76qAk5YWZBJDk9kVNwQaIIuO6CSoFX6oF4oCjIFrVAEfiipr1QSoBAIGyAVDCIYugpAUQId0DQMObIHEB6qi4tVBpGPeyI3EGrSoVCADlq9UBag1QFbOoIJoOqKfqcd1BcQH/ADVG2KNKBx0QajzHVVDJLgg0FwoqXc/kEEgVbzdBTRuz0ogby2xB/BNVQra4+qDSAZun6oOrGN0gQNzGpVHqYcW2BkKP6u47LQxmC5kzHqUGEmdyT4BQZEPQ0GhUDBof/G56qqtzR7oNcYN0R28eJltYg91uD0IxaDGh1K0hTF28kwc8wX/0wQSIAkB6aPdRW0cZr1Vg9D4vjHJlMiC0eoXT58s17cMoxQjMxeBls3t6d3TxXS9mPb/jXx/+RmnyMopE+krpzPDHT38wi7+QVV4vMiIlqvI1OijUcY9gRlACO96k6qauM5nHCIMTWVDE6KVqODkbdpJq9o6+KwrHBmBkYCrWIsrMbkdUsc4gkl6f6ZLEc+XGTFo+ZWFYiEjEFrUUwTKFKhkxHLODdmNVmiYEuxpVRXVjLRYmgsVoIYrlkwBgdwAFVcHViB2kKwRkNauDolAcU5OTqzqzlNdHFxbS7MTQeCsS12whOeQRiG0c2RNevw+OZ/2nqCzdStSM173wvFx4o5B+6RImOivLVngZONHcblbxxPBHYa/atSGtp5sUwzfaFTHm8/DEh46igWLSOKMpiAgZeli4PVc7XSOLkSybYxMaPcUbxWW5XJLJLdKJIMnbs3iprTTEZAGp3A1irqNochid0zGP5dk0xGbJOJk0RoCdS9vNNMa4JkY47SxJeUCa0U1GsMpAck7R9tbFXRqc8osTIkxNJClDoiEeW7ycx7HUK6rXFnkJCMGtuMv0TR0RzEV3kbPW9wfJXUdQzGURMXkKmyuoXuxny8maRkNvpY2Cuq7MObHGVCwkKFWURyvkoiYauz801cYYOQMknlN5O7DR9EK0kZAykKyB16IjGfJkaRepfv4IuMvkSDhhPTciRWETE4gM4Y+DoOqcZyk8npXzVEcvkkQLyJlp2TVceP3eTOJlIbYftYuhr3+BzIwgcRaUXoSs5KusuRycmbKIAtjBp08lpm1MJe1yGPqNPVoyix7GPkwlKOLeBRx0U66xTGaWP0AiTlyy5a1jXHOUgSLPUIaqePHLG0gZBG5Xg/KcT24z9uPqJ9PWqOnNfJ8zDyTy5b4mUqAjota7aefjDDxomIO6RvLQK7rGPNzRwgEWJ+4/qpjN5cebkzzThDZGMcUdkBjjtJ/8pd1j8rl6sMolKQhEHd+0JazYUozj9weQ/aA9VD0SMc5/sMdtZ0squRvDjboy9v1kVbt1TWel4RPYXk+4Gi3K5Y55Tb0OQ9wntDGcgBUHuFrWcZT3PGdBuHqiFdQATcAAk3AHQVWpRpGZkdxIMj16K7o2wxcgHXorB1gCDAhg3pQODPYbXv3Wemo7cGSOMeiNTUm649Nx6HElNwZj0M+7U9lyvTpOmmLm55ZTCERKA/a/4JK7/Py4/kMmDD8kORGJjHGC5H2v0S+Hp55x5HJ+Ty5ckpxgYbyd8/2gHRT3q9dSPM5EvRE4wBMkx3mzHos6+d35cowQ/wAggAmIi8pdJdFvlyryvlMDRnGTjcD6QKnz6J3GXz5P7dsRtDMLnxXFqJIBIJD0YDRBIaNWcd1AiCegiLDxQ1G1wWFdUTUyjEy6sL6KIzkBU2aoPVQQSwl00Au/dBAuw+7UoGCwpbXxQDh2oX+igiQY9kCIkA4oCgzyh2BoFUQGu1uqCXN6F1USehFeqgUhJjtDAIIixDP5oIkRY0KKReyCfSglioEbIJQBKBMgGIogNWRdZqAVALoGgEDBqiKYoHbzQAqgEBfyQPxogY1/NBYFA9tFRrGzCvdEWGZ6uFRW1iGpqVAE9mCaJ6gDShRQ4oDcIAO7myhWkQBQUldBvjjF9woeujqjZg5ciocqiSdNOqgkgaGl3QBLkdroGzmmqKD/ANQCCohxGj+BVVvjrIUZEdXGH0B0Wor1YERxNd9FRzZDWR1KDEx/FQRtJqz6Hsijaws40KC4i+r1dUaYg5Llwg9DjaEBaiO1wbfRaGcyGbu5ZVGJOtomxU1Vwjog2xwMpCMdbrU1H0PFwjDjjEXNW1XeTIy0wcbNnlHi7icJn7ntftEv+3isznatr7X4zjjjcRgWepXeucTnyTMXFBoCo08znRnI0kD17I1Hj5h6h4sB+qxWomUMhMoguTQVUxUzxQhCYz4zKdBGQLN5KxqRhCBhkMg3tnQJnluPUjix58UTBwGuVnqJY5cmPbEgCxURntBankVFZTxjr4oMDhqXCzgzlhFxdQABiH8mQXuJiDdropg1B16dk0dWGIrI2/aF0jNPJEXvJEVsltcVapPRBWMgDd0qiPU+NETgE5SBDkRHQIz09r43jZxyYZcjRxuTW/Yq3V5exjxxOaUaxJNZjValVvnwCBhIOQdOw1XXly68OLPy8bnGQAzqsuLJnLU1P4KVXNLlg+k6UC5Wtxy5cg3NjD9Q/wCK563IwHIEpSAi7Ue4KhjKYwEmP/a4FKorKe4OAOgiQasOqKz/AMijSkz0kDdlNVmMo3bpep9fDqE0aQzFgzA6eCDpjnjs9I9eoJVTFyyCXpk8m/aKMqHij6oPVgSXqmo64yH2gBzZUdGA4skqbd0fTJqIjuAIkwp+SqJJxxqaQP3uiojyjSAp0mbFXR5nJ5E45xF90pGgjX6BNajfBk25SD98rizEK6PUnl3YYkfd9rjQprOOKIlHJETPq0yDVBfJhHYISLh3bv1VHTx2jAAOWuaKjo3RaUaEMhjzp4t++cnMvtAP5qGtcD4sbFzKVCgIZ4howLSJ9Qfoqr0oA7cciwcUV1MZcqGVpzhAy0LXcLNqx0cGRGOOfK2+NoKfqur/ADo48gMcUTvPXVY9TXe8miRFhKpKYKhngASCem5lPVWBImZSmQWqCjc6ePysURmA2ARn+/xUb5rxfluDkiMglk9MKwIXSOsr5nPgygPM0NSSs9VbNXxsREZTiYmRDR6us+Wby9aHC+Lj8HLNmaGeTAZCRufUAKyE5jy24uDLDZE5BIDbu17qOdpcvHlz9Iwyn1CPZSxzuteN8SZyAgdm6jk6J4Zx0cvhQ4vH9vGBlzMXIDjyUtXHhZxnnjEJR2salqlTUEeLIACpBqP9105rFjLJj2y3Ri+261rOJgJRn/bifcnAgyJoHuy0kRBgLBxR+q1KOnHJj6SBLQCi1o7o+2ceSeTJtlCP9uADmRPVLaYrGImI3EMW3EVr0K59VqR6fF/x9ohMAD7jEFmAXG211nJ8vmiBEYeiMqACtFx6rtOXXhw48PFOUAwlP1AG5bVanh6fnzkcXKnlngj70RPGZPiwx/7H/smt268D5HKcc5QLAxpGA+0k3B8Fjrpx+nThyTAkInbDbEP0c6BJXl6ScH9yWQTJFHagXWOLi+UhGUbnvL/WivSPmeXjAykRD4wxEguKxhOxJuTQt+ChWYDWFNegRAW2CRAG07AOr6qUZzLCUZAkgqBE0ZmBsQojOYAd7BvFBmSSaxp+0/1QQQTR2I1UCAFAL/ggYFKsIoJIIq1DYjUIETW/kgmYBj3VRhNncFzZkCkAOm5EBAs7k6KjMyNjogiQEgNO6gTf8opFgW01QTIC4sgk0qoFQi9kCPVBJFjoUCYOgPPyQFUVmoBAaIGmgVDFaoKDoh1QF9EAHa1UDr0QDILq46Kiognysg0gD+KDUxBAr5K4hGk3u+qCgRUGqCABUKKUT6bOpooO/dUawcUFS9UHTijGrUPRUW4fazteSgzYObEaIE1T+RQDGhDFAwGfqdUVQJLirDXqgIGqDbGLE17oPQ40XLRHitSDuIIh2itI5cpqsqy9ZB7XKADGTugYLgjXRBrGLxG5lR0Y4WYM92VHfhxhmZgLrUg1AufJUZ5ItGofoEGIFnoP+r1UMaxp/sqPQ+JxnJnG8Ns9R8F0+f6nT3IyxjIcgjuALM7H6rrUev8Ax/hGZnmN42HiunMY6fTjDs48BRzVui0SOLlbIyjuNeilajHJGLeqIL0iGWWtcOXhxvjiLeqRH4JVcXtbCBGIEuqyrm52SpcWoZOq1I44EmVx4dkdI9DjZJR2x0J+iWatjoz4hukQXjIUbqubDjljAFPA9SeqDGUZNVZGZhQ/ggxlHTVQIQAB3dGAUUY4CsS6qNI4xdqqjoxSlGO3qqlOQiS5lVVkhNyIRFSWbV+6mjWUIhhL1GxJTUep8bHbkqHagibeKupXu4JjeCZPIGoWoj6LEeO+MzMRAVk+pVb5afIcvEYiPpIH2kdF1jn0+Q+T5cceclgAbLVc3jj5MwnMSm8AD6v/ACOixa3IylzdxG6W0nTquVrpET5UoSjJmJDSkDp0XLWm2PLEkSPRgwYJpjGWcxyAMwkTul1TVZz5JqX2iMqPr0CmjHJMSIyCLGf3Bqv4orPcRXTRTVXiJLCwe6I7ceXHiJi24f8AaX6KhDIzgGn7WsVRqM52yNogMXFj0CqHjMpbJPtLOQNK3Qenw5xYyBcjSz91dSx2HllqG1SO6qOXLydw2kgmWuiDGGeBEYSrUhvAKqmO+OTdjkIZcUSY7rseiGnxJ+3leR3Eu5PU3Kqu/Fk9DknaL+PVEqPdEj91QfTLqqHyHlV7dRqmkVhzsGJ8wqOoZngKWeqI5JcqO6R+4RG2n/ZTQRnkmezMWs6DPGce92q7OivWw5WLTJ3CyC82bJEOJtAVkQpWpXHxeTkyzLH0yNArInVehiMhnG4gCIdyiR6GPk+oAz3g2qri0e9CUmg4gDUPqs3pY2zRjixgxi5l9wevms7KrHNjwZRty/cziPgjU15/P4OGOLea172RuV8x8/xd0RDDF3rarK8zXWXw+fHu4Y7IkghYsxPaiUJZx690mLuTRRm11yw7hFiSQwfsjNjox8bJOB9uQpofzRhzyyZsR2mTzGjrGq2jlzjF7kiIvo+iarlhIEVY7i4JU1hvtiQznfK3kunNYsYZeLZnJF+5W2cYz4/qJIqRVtFqVLGUuIRUUAs/Ra1MRHHICg89VR2RMmqzCndS1ZFSjKGF4jaTYaHuufTciMXJ2wBDxgf/ALCZbnPbsuNrrzW/FfPzMcZfbBpTJsAuO+XbjzXrfMc2fKyYoY5DHxoyiMkv3ED/AKrfXT1WzPDHl8Gc5TyiWzCSPaxux2jU+KzY49SvmPlt3vSMw8BSMendcuv1xvly48IyjHlBfb/9gkb+C6cufcGTLui2MvIEmY6LrK5Vz8mMckC8pEiNAdStxivnPkYmGXGJeiRAMjE0A791ypHHPaNv7hXbLr3WatRksd0nAZyLIhEjcZSIDtQ6R7KGIkXBqZE6kKUTuJcljRgOngoImCRRiG9UkGN6AltHRCI9LsoFo3eiBl+gaxCBSqWA7+DaKondqAL17lFTJqh3/REYEMXAHcoMyxfbVuqIJOWIoqAmgBQQYliQoEQWqiokBYIAs3igiQHlZBBuzU0UAQdUEtqgPNAu5QFH7IrNQCAF0DVDF0AgoFENwgPwQHdA6oBBQNj5KjSINWQXBkGtH6kWKqIJqzl9XQNiFAPqA3VFDVrTVkDjXXWqDfGQPTodeyDpiDcXsfBUIuHFGQT6VBLgk0bQIptIHpooGHD9AgZoGkbmioqp7RFz1QdGKNR/qio9PiQkS7FlqDfLuBtTUizqjkyGjakXWRluJoPNBUaA0FTQIGBrQ9uiDWFe5GiquvCSQ1o9lYj0uOBspX9FuDQgWI/5VgwyByQpRntcsQ4H5qKuEX79VR6/w0RHdLRqrt8/xmu/GJTMiJRAifUCWMnOgVl8pX2PweDbwTIhtR/RehzelIb8kIx9Umc9kbkPL8aJyGfLIRi1IC791Nb9XNn45DyhFx3KJjzuSJsYxBD/AEdZV5XM3gk//wAQU29FGuXBIZM0DvAiRYd0VlHDtLEvtF/FTW5XZib0u4Maq1pvHKJEsXidVzrNgnCLgXJss6iPafc4DhaSoPHj07ojny4qk6fi6jTCUKOKB/xWRG0u96pg2FuiqLhki+0fcdVdTETcSJemg7qI34uOOQidwzg2LoldmDBKWT1MTKgdE16fGxjDOpfcGc3Via6N4wyPfV1uRG3yXOB4sZQm0bXq62mvP4nyWbLIjNklJqAdlqFusfkuRGX2l21JWmMfO8nkTxkjGSYkvMft8Vz6dOfJR5GOX9wyaVm/oudbjeOXFOBPuQ7iZXOtRXH5UftBJx2iHWdaxvklinAwsxpIdUTGGaRaUJVAZyNW1UVMMgLGJkAT9wv5qhjG8yCwEb1cKAlPaWjQGwdVYP8AINC7aMmri4ZwSS5ofVE9BVNTDlnPRjKRJD07K6jXBktuG4CgY/mkHpY8/pBHgyqLnyBEAyaVCwBVRjPkRlii1Xp4FXQ8M2jvkR/1B7qwa5JyMxJtxkPUQeiEc0c0hlMmboHRp34comwEiSPujorrNbQgDMzkWLgxHRklHVnxiOMf+VyOqrOssMTGIjEFwXNE1dVmPIYwjEVH0Q1hHj8lw0BvP3Se6JrojxuSIvt2kl2VXWuLj5RINjc9WTE16sMMdgMhtOrhaHLz44spjijaV2dTFjXicbDiLRZwGorgjk4pCRi9JVopYsTx3wjbu3SejKYa7IynDdlk0ZWjHusdNRvxc050mCclhLRRqtMuOW4TleNJVurElRPPHLL2wHERqkdOXH8hxJTz7srRxRiWZrsrPCyvmM/wkXn6xJ3mOrK1qV5mbBPF6YgknTss9LY0hintEj6VJEaHJKENrCIN0rLnnESL36LnWcY5BLLMxBaLOTpRZq3ppxsFQxLnU9FMYduDimR2/uGq3KmO0fFTOIl2GpPVb9kxwHjgEhqChPXupOj1ZT45c08ToukrNcc8MY7jro6uogbiSwewZSqqedgYkkAGnTwWOq3HP6mI2iOMddSV5+66R28XdGY3UMgPoue+Xfh18XNi/wA+JoYj7YyrXqVZfLrzNeqeTjnL1Y/cyO3txquu66Xnw8L+QcOf+VGXse2SPViaw6lc++HnvytYfIfGT4nw+P5AmG3JLZGH7n6gLpOZIvfwknl85kymMvXWbglh/qqSvH3JEZTCUXMiMldpW9cq8HnljCTkRI9eu4rnUjgi8TGLFyd3X09FlUkysQ250XEV1+4BgGURMgdg6A1GroiGZxtY2UARR5WFFBBo43AaxDIjKW4VLEipUADESHb1FBMXEYvcPXxQEgwcAMfzQQYj7iWZAGILysD+KqMpAIIFBZVE7Q90DNC8q9AgzkxNCwKglrsKIJI+qKks0RZkCpXXoglpKCX6mqBFkCPVAgOqAbuis1AAIGgFUMIp+CChREB0QAHVA/BAVQMMgqII/oqKHRBrEUcOCfyRFUYhiFdBQsGYjVAMLFAneimKpvUHD0umCwA3Uj8kGsATZn69kHQCDH1V7hBBkAxL0QAJYugOpa1kIbVGrX80C0Zt1alRVCl69EFx9ND0oqOvAASH6eSo9Xi4yztXQaeK1A8zg9duj6oOLITtc9VBkfuBrRQVEF21uVRpEddbINYRNOguFR1YBYCmoC1B6WESECeq3BRFKVl07IMp1lXRQQLPq30CK3jjkNtBUOG6dVcR6/x+KAxXaUhYrtz+MvX+H+MPIyb5RcRoGpVdOIz0+5wcX2+JCGIfbcldCRvi48ceUSiDPJOLlrBS66cxuePKR9YkGqVz2tvM+QxxE9+ImIH3ROq0y4OTzMQ4h2YX5P7eg7qWLsc/K5XAyYoRy4v7wFZ2ctZQfP5ZkSsaG3TsixnuhM0pLomK0jCRLAV1CxrWtoRmJUFk1WwjJgXa7joFmoUaCgoPyKRKZADgWeq0jDNAC4ABt4IODMAGMQs1UbixP+mQJwQ3QOojKWQhiD4jsg6MWURByEbjaARHo4HjEExeRuOjqs16HFxmfIxCwJohHZy4TxZnIaIuVvGNc+XODFiwD08FuRnXk83lZIQIBeD2daHB/nzx5BGsps8McKk+JVgsT+Vzgg8eWN6h7DxWsqWxGT4ieQxHJzMesaB09T2rox/A8PjyjLceRFvTJ1i8RdrbDwOGdwHEeGtWPmud5a2pl8DxpknjiWHJpAl1i/ONTuxj/wCs+R48iGJfQrHpWveFlwfIGP8AbxDvVPWr7R0/H/xzlZ4e9ypnBgFoi5Wp82L9P6elD4T40QIGSQ3VJNFr0jPtUH+LcbIQYZq6ap/nD/Sss/8ACucA+DlEyJcbhQKX5xZ9a55/xb+S4/248sTrA1T/ADa/2/4vD/H/AJmRETxi4o7fqnof6R6XH/hnyeQkyG0m6esT3ruj/CeZDoewJTIntUz/AIvlgw9uQI0cq5D2rKf8caLuY6kd09Ye1c8/iuXCkSSBVk9V93IfdxuMwIlo4sFMWU8Ucc6SII0ZFdWOcidsQx/oqa9DFhMyDPRvqrIzruymBxxNiC1VRnFnqa9Ag6uLwZZnlL0x0PdWRrHdxvjZGVREQtuOpW5yzXSeDjxljIObtVaxF4seMZCAN3krhjs28ScGyQFCyYY5Z/BcLPN4z9uTuCmHksnxPI4sZRxxjPdXeLqYsrzsvC5RJcEA9qqXk9kDj+wYyMN5Fy7rNjUp/wCa8SBAbXpuFlixqV0cfkyi0Lg1FE9YOzNFw4pEj1BT8VxxhUMCS7V6I3KeecseQH2jNv2kU8UrWxz8/j4jxjnMBjnoFMa5fM58ed95hufoq6+BPi8nHg97Ni2YTSLJrm8/NGUZCTAQl+42WepQpYz+z1RNys4xY3x44HHtLdojVZxPUzjhGgi3QhSmNsRIFHChjuGehiC47oY87OQJkiysPVgcsmZniKldIzY4+RmgAG9Tg17LTOOSZG2LyaMZU7osjI8gFwA4EniOi5dVuR0YscMxOMHc/wBpag8Fx68tY2ykYsgBEpGIEZGQquF8OvMLbPkTjDFLa5rI0KTz+OvP74e78Zx+Zwj7gn7jEGRZ114lj0748uz5b5TCcWXk8nE+XLHbAgUAGh7rpUmTy+Mz8v8AzeZEY8RODHWOIkmyk614/t9t/GGX4oHBLOItOZ3Sg32jouk5eHrXi8ji5MeMyBacj9vQK2I8b5HHKEq1BHqINPBY6hHnMGNwNCVlrCINxRtQoFEXDuJa3qozrORLXDOwHgiaVWNKDrdQIykLN56KIzmZEE0DaIMpxa9uigliDSp/RBptLRsQgPbBob3JVEAQBa46oEQTQigt4IjDMKhhTqggxruuBZNRLsbPqqJYbndBEgAQ+tkCBk/UaBLRBLDubqKkjugVD2QTRnt2UEnugUnQLTsgSKEEKAZUCAQNkFC/ggaIogABBOiB0Z+qAB0QVt6lUUAHqgsCzoNIiJiSXVQ2MnrQaIHAE+CgDaprYIoDN0UA0uqo0gzdEGuMA00KDcgbaW7qjOxo5AUCYuet0FAMHMSTfd07KKYpItQ3IdUVEBj2NvFAdnQaQpa5QdfGBe4pcKwethAEQCx6LYjOdCwOqg45tob0ZQZsxuSUVUQRbU16oNo1p0VGmIVHXV1R2YgDIM/dwrDHoRHoiK2stoZt2Qc8qFruoHE7SLMD9psg6sMSZ95l2FgOy1IWvoOBwTkOMmL4xRl6JGH2fxnAhiJlD7AHAPVdJEr2eByZxhkiYgxdwD0VrpxWf+dlhMuKHVtFjq1p6WDkY+RhcExkKA9SqWPP5OGED7meTgljkb0jslhHNl4fB5E9w0+0wse5CsqXl4vyHDhAkguass2RI8TPxZGxBWWozhxRAudb9ipreuvFERAB8u6zaa6BjBiS1dVlcSIFyGYN+CCcsIhruBQBQReIJ6firqVzZd3Wv5JqOWcHuS/ghrL2SH/BRNZShIONTUoMSa38VBriyPLboPwQd0eS0ZRJLi5dlUx1/GcrdzIQkS8GIroVYlfQcrNHkx2CgialdpHKvN5HHiC8S7V2lbkZcI+Ny/ITnHF/bxwD5cp+0D+q3OU08Xw+YADhtjxmhzyHql3C3OTXRkjDBhGLFm35GbJkOjK4uPIy8qEcWSMxOYgH9wi57JeW5GXD5nH9yMfcmHYQuanQrGN3l6fPyRwxEIyJkQ8tgqs9RJGXHz8x4HFjyE6mVlyvNa8Pc4n+TyBtkYuaF6snqxY9jj/AYozE5yE2FQC1VExtyOPx8eOPt/t+4XSGMcPEhyATtEoavRaTHT/hcPABIwtUMVFnLo43L4BG0RJKno1juwZvjh+0RPUhZ9KuNo/J/HQcQkH/APEJ/nVc+X5XjGRgCX7Cq1PmOQfLciGT0R3AdVv/ACHbx/lzlntli3HuFP8AIbNxOR6cmLZPtZZvFiFL4eG3fjYjos3THlcv47DlMozxj6JrNjzp/wAc40z/AGwYdWTYeXNl+D5PFO7C0363VmGnCQhEDIfbkKyEv0WsNGXLhyYw71NGKYq+PQ0obAnVMWV7/EhyYwacBIGsQBRakalbZ+ZmjAQxwBIuNFdHLj5h2PKIMiakaJpjXHnjAFqiTOdQqYqcwJgOa69Ag6YZSTf/AOP9VYhnkxkRHfISFjohis2bJL7jRm8Uo5s3FaHuvcPtWaPG5UDCXianxXNXXxBihEict0jWPRWK9HLKEsIIPqkPUAa0WK1GWLH/AGwd1Xq3RRrXVMf29zuRr2VTXFlwHLJyd0LbStO/PXhx5OBjjlkANrekHSqwmvK5WLmZozwGY9oHaCDTxV/GtcHIwYIRjDcZwhQv1CntTGAOV3hH0t9qwgGPJGRkQx1DImrMN1g9KLNZXihIk6kUosjqGKVKafipVcnJ4shJ9pAAcpKsjlljlt9A9RHWpC3KTh52fi8gZAQQTItt6LU1f82M+PI5I4zMGQeh69lWp84BxBGTSdyfVLQLn0l8N8U5Yhsj9gLmlSdC689qSOjGcmWW+Z9yUjUk2HRYt11j1eD8bxwTO5K3zw7fOY68WQccnG59uNJBnZ113HTNT8jnw5R/j5JgY8geMiHY6BPaF48PNxw4eHDswB8rk5JR1ai1OZHk+vykeP8AI55AjZJ4ZAQ51HVb15Oq8+MMeTjgRsHZ7rcyxzr5L5bHsy7RQAkl9Vw7mVOa8xqk2B06LDTN5u0TWVG7IiNrsNvc6WUCNSPG2qAILNVibaqIDFiXvYBBMojcQKGI+qiMWI//AMvFBPqZyWZQE5ORSvRASkNwfXRBJNA9tEEyOnRVGc7mLEvZMGR/6k1CqILEhvBA5xBiSqIlEGNb6FQZsHbUaqBMAS9Qip9DIIL2PkgXVQL/AEFRJUCJsgTIBBBsopBUOqBhAwEDGqIoDqgHeyAugZCA08boKiadVRQvZkGhBRFgFAGJA79UAAW6uinX7WbqEQ5AC1kU4gk10TBpEMx01Qa4xbr+iDURJoHfV+iokgg0NAgQcPJwQoDSIBp+CimDV7StVAM1hVBYAF6N9vclUXjiQaNt0OvdB3ccNG1/qtQd+M+iocMyoyzTBt6X/RQYEuS10CA8uvVFVEUqa6DsqNY0uadUGmMFx9VR28atKh/qrB6TvAtUWIP5raM5U7BBifus2gUBAMXozsiunjyMZAmRMT9VqalfbfG7Rj42HbQsSvVIw+14XFjKADUNSAus/EzW8+B++BaAUbkZ+1inmIJewAXPMdJY9DHk42EgCUYsGl/smGvL+czSzYxx8YEOMPUaVJVkZtfPHly48/TL0WAWbRGXnRzuE0x52aDScCo1KlVJEjSQfus0AkYlj/8AisVppDNOxqLFk1rWgEy5FaVCaajKTEgakAFZ01Alq9LV6IVz5SHd6fmrqYwlKnfRDCBcR3mtnCM1GTjmO4GvQ6FE1yDGaEAmZO0xIo3V1DTlxBjJMZNMXGnkmGiMcki+07j9wVwten8XFuRul6SB0/Bb5Y6r0MvIyBjAtHp3XWRjUy5ZnmhCZ9c6EjQLpEsepjye/t4/D48p4ofcAPuI1K6SMuwfCc7lmP8AkZIcLiAVc+oDwWlkcvM43wvx+JuHA8qQLHNOodabnLmxczMb4MMwXBiYhVv0LL8TxeTh34uLCHJNKUcqXCTHTm+EjxuHizcgCfIIaQhos1PLzI8nhylKEtwILN3XOt+j0Pi4exMGL+rVZsSx6+HmSnv9o1gfUVnExOLmYpDOchJjZmski+td3D48TxxPFL0yt3HVXExlzMWPc0ZEhq0VxZy5cUC4MJWNYsmNer0QcUotkBiW9J6pjPq0jgjsIjF99BNrLUiYjL8ZnwS3SAyQkPSdX7qxZHNnzbS2T0DrEKtTjWnHAyR93j5hJqFxVU9XpcTPCUP7heQNWUsT1d0c84mMQ/tnVc7wg5fDOWHuAuCKsufqPMBnhmTCTg0bss+iNI5MOSJEmB73U9Rwc743i8oGE2kdCLhbjFjyOT8VyOJiALzxktCY0XSc6muz43GJRiZ4zIi0lr1be1DJLbtBbss1qRxTkXlIkwFq6rNjcjPDKHuARrqEa9XQZgZiJimgRMaTiMpEoy2gXj1VSxZkYEkR9AFJdOyJjKMsZyEyJEruhjvhkxTi1o6nutVLHNLPklmlgiPTG47LFHPzMOEYzucRFidFKOI5IGIMSZGFQW0WFd3FywzyhOQYg1Tpp24xGRMIWA0us4MuXMmIiBQfVXVi+JhBDyfs6Naz+R4sw89JaJWua8Tm8eXvQgaYy1Qo6c15vL4rcj2gdoA3TJ1AUq/wxjtLGOlz+SerK5kECALk1JS8pRDFoGHcrFjLRjGQY+k9dViq6cUJSNaHoeiz/KyNefx8eWIyiRGyLEaOtdR0ry/8XICRP0EaEVANVj2xn2XHi4BCRMQZMWaxPVdOOnXivLx4BsnlyxG+BIgB1RqfO/rzuRknOQiY1N2NyvN9O/Lz9Ty04hgSYvt0qdViV05j0IQiIF4hwbjU9VW5Go50cMQBIbnc+Ks6xvmyOzJmGXiTyBjPKwjtu66a66+dyfJ8zjRy8TkQGXHlmJRMhUSC5S2Xynv/AGzy/LRwxj7MTEmk5dtV6J24/Tpfy3ChLh4OXi5Ec0Zjb7YvEldMeH6c48PE+CEhGVP3vbyVjk8H5s7pCYIkTpqAsfRmPHlCVgPUbLk3Kho2eupQSfaeTSMdupRKRnH0SEg3cKIDIgs4rrehQEaBrtdQRkk8WFhXuyI5529IodVBJY99GKBDprEVKBAxcG/ZAiSfSGGrIiZFmJPZBMjMW1CDEkDRygmUiwanVVAD9ECN3izaugzuSglqKKksgktogkhQK4u5QSCECYk0QIoaO6LrPVQNkAqBAw+hsgblBcbqoNaqAJ6IGCHqgbVQUPwVFOHqgoDUG6DViCH/AAVQ2ZwSwugIkilOoUDc3fVUMECpUVRegN/0QOLvtuysRrAbj4XA0CitxWocBUSS8gTYX7qCTGW19CaeCB7S3QugW31MQ+oKinHaWDOPxdBYB8ndlRpAEyfTRB34RYgf7rUHW+3G5bwVHNkLyAcEmoooMgRXTsiigDfUhBpj0ofNUbB7aoLgLF20I7qjv4vU2BZaiO1w4FqW6rQWRzSIr0Qc0iTcs35rKqjOgPSge5Ko9P4Xgz53Ox4IB4ON5W/nPLPT9J4/xcMUogwrFgANAF65WJy+g45yDHH0sBQMtOkRyeTlhee0EttB/JZuxrV4YwzDcJDdp1SdGNfYgXiR6xWq1qPB+Z5JxgxMjuGnZYo+byzlKQkTQ6O6yJGMiO6Ibug1jkpWLnqmhsDbRZqonGPm1FmtRi+0OD2IWVaw5AIYFkGeXI9KhQZe/oLXUVnPITIh7qURuiajRJREssRK1RVWVMXHkgVlWOrq6xY6Dg93GMmEAuaKs6wy4pwJORpA0buoa55ZiHlAM1a9uqD0Pi4T5mL3JEYscS0p9V056S8vWxfFcvODjw+oaT029V6JI5O+HxHx/wAUYZeUDmmRd6Lcv9Hrf5WP5BPF73+JijiwtQxv9VuRucOQc7Byh7vJyzY/tdq9Fp19KjPlgYkccAYnrFrI3OHFvlGYYtV9woCpa6Th28eWWPKw5JS9JrRTU9XrcmE8nFzmRIEw4kFHPHy/H+Ny+5KbkwsAbk9QsWOtx7PChPBKEckZHcHJIsOnis1mx6kcQjxf7MoxmSTKlW7qMerm4+M45epj7tJJrp6PR4+/ABtkI4xSMU1fUucJRyemu5iR4qa1zyfH9szAlHShTS8O/hxyk7CIyxVvcK6x1y6eNixzEseKbM9SrrOIli5EYyhu3dCkq+rjz8OUwNwqL0W5WsLB8dji5EtvXT8FdZrbBwsDmcZF3qHTUepDFOURIGjMyzWcdGLIYMGDGhWbEseX8vxCCcvHLHWK1zGK8WePl5BGWOswfUteqa34+Dl+5GM5CJkay6K+kTHu+xDd/jTgJRMak1fupmL6vO5PxeXiZjlwvLE32DRXdWQsebCZCQvYg6Os2Os5csoxOOQJ3l7arNi458WaEZEeQ6qOmN45YTAcuyh6nDkREiBRzZE9WwMWJ3MCKx7oljkciZZyNT0RG0OUfaMIihL7vBEsVnnKEhlB+8eohSxiOUSOQsZEjQPQKQRHPGJljIYCjfqpUPFnBkIRsouvShm2RoWI1HRW4Sg5ZSLmtG3rORvWuHkRxMS+40rcq2DqczwtkrE1/wBlK1rz+VhbJ6BuGimNyPE+SwZ5mRlERJoCOikalecOPti1wAtaM8U4kkeTlSpXTg2hwajqudZbThI4xLGGIi5Jr9Fiw11caUBj3ZR6mdYa5mqBYSiaiVR4K38dJPDzOU5nJzujKQZzX/hcb5ScjITDEBEF9CFuV35mPOhGZ9JLGZN+qa6znwy5PxgGH3IksCxl3WOuTr5RhjwShMGLDb0quXrjn65+uiBaAuXLS/qqXljyONKUgR9prIdgsXny52eW3G+TmMkceKE5TBEceKENxK6c9t89Y658b43nicnlDkg+qOSJjKMheK7ZqdW1858j8VmwZJiHqx3lIVr0CTl5O+65TxsmHj75bpbftGgft1XaSuFuuDJkGyQc+qpj0SMvG+TeWKVuolqyx1UeTMkgiriLwdY1vWUgSNzN/wBf1ULUmxao79URJlHcDueNiGo6iEWsAOrqIfo+0UapUEmQI8BQ9UGEto8Rogykbya1ggRlYgvqWUBKR+t6dUCa7HRvJVEEDpUIERWtv1QZTpJEL8VRDtTRAAOaiiCXoSyCKlQJqtZFRQUuUCLPZAmogk/ioJ1QJAP2QZqKaAVAgYugYfqgpkQ6OgQq/ZAwgqJbwKComnfoqKiKhBX+iiLBcBhQIGHBJKCgxPpDnVUOhNXfoEqmWrRQPog0gALhy6DWG4EsAOpQaEm+6pogRrX7moAgfpMa3/6hAv3bT01P4IoG02oDZ7oKYMwodCgsdaPYoNsQAk9ehOiI78EREdPHotxXRMekANTXxQcuTVr69kGRgexaxUCEXr10RW0A1j9UGw/5VGuMAt1BsqOzjAg1AYl6LUHW4MtWGq0ichApalwg5y1KPoyyq8UpQyY5Q9MsUt0SQ9e6aPuP/wCneLFjwcvmZSDlnNoOwDm5C78Twn8vteNnBpCXuTP3Ltwrvx5sgxe3ONb0XXDdPKMPtROSNCWYXWLVGDBDFMRjUSN+gSVqXw1yZjLMYkMIjbu691c8MV4Py2Pe8ZAMOiVl81l48scgTGknZc2hAyIuf/ioKEf9gimBMCqyIkadO/VZrTkyHRgHNVlWXuiJJ/03VQWZEggagfTqqMZCQJAqLKIgxlJxEbj/ANfBU1lI5AKOwuFmw1lLI1z37qGpjycd3JGgYq6j0/j+ThHp3NGR3bauBr5LUrNbc7l8eMgcc9soF4KsR4XJ5FZSEqyv4m6NR9l/H/hMvO42LEBt4eEb5TNAZGrrt8+M/U66/p7XM58ZcT/B4rYcb7Z5NZAd13kjDxvkvj/keJm/xcvuS4+wTxlzIEHut8xqdaxhxs2bjxhAGJxndt/7eK3jpzgGMYwBnkDOR3bI2Cld5NOQzyMfaO0mhfVTW5G8OHnzgw2NkjfbZZ1rxHXj4GTFAHLCThS1N138nJmjxscQdsZANCQqVnWZzE8TDjJ3HE0wadj4LNqdR054/wBwQdpTH4rOpOWWXbjjLGK5JCqmt8zUf4pyQhIyMZgdVNbnh6fE4pMWJ3nqkrNdB48ZliGIomjL2GpCPuGsWdldai8c8mD+1sO6V5XbsmnrqsfKljyCAxiI1kNUlT0dkOTKRtQ6utazeW+TJiGMlwZD6srKz6vKy82EYbhE7zYFXVnLOPLzHD7wg0n9UYrSesehw+flnxhKYMHLRDIzeXpQAyQ9VCzuozhS4+OcTF37qys9R5GX4325T9uW2Wi6ys458eLnxiYSYxf1S1AVakj1fjtuDF9xynSRNWWelsepj5HGnir9xuCufrVvLy/kficRmMuGhN1rmpK83NA48ZhNowfcHFSfFXG5HHiyY5hzBiTQqWN+reeEGIONmvRYxqQo8bHk02yF5JiVjKMthEniRr30QbYcQnjDtv16FRit+Jwi8pS+zuLK450c3HWLCjUWbGHEONtO4xq9FMHFyRKGYyA3GQYDoViwPibTJ8hMdtwLuiu2XJhFoGBjGdIyIumrI2hMRxT9yR2RrEjqEWFUbJyBluG4SZTWncOTHJB4eBj3QjPFjk5M5PLojcri5+Gc+Rtxh4tdZHl8/CMMNrNIVrqOq1FjxyDGW4V3WCYtdAnP2WlEbo1JGixUa4OTOWLsxHj3XOxHqYog4Ngj6pxcErDXNc84SjDYHExSSx1cbvTmzjbtEh6gaELlpKyyZnjs2l3V9nbnqLOCJOAgPIFyQta6TpsON7kNriO0ksdU/XbnuPL5fF9vI8I0lYj/ALLHTl10mOKcTUNrOX9FmMTp6kOJj9nCRjEo5LnUBdZI3/8AQPisuOUuTgmcYiaZMdJDwWpwZPx1xPH4+I+/EZDlG4zYGVdT3XWRnt838hl4seKJ8aMo5YTIINRMHopJXzvp+vNz55ywCEoi+6dLdl2kcXznKiROcQXAl9AViweNz9oaUgTCUhvg7GQHRc+iPMySgbUi5aNyBo6xRkTEOQ/ZRWcwQ4kG7C9eqiJMiwBIeP2hqIE5IOpaygHJqQADQsohFmFj0PRBlOgBd61KDPaHqamwQIRIDA6uQiEYyv8AggmRjF21sgkktWpOqCTZtNVUSw3DogiVy1kCNB1QI1jSnVBMoh6WFX6oIcPUXUEEFzRx1RUmlNAgk2dAnUCLoFogSAQZKKd0AEAqH+aIoIqh9UQi31QOgogB9UFB3tdUUHNGbqgoPRA60QW5ZtERUQCegayBs1tUVVaV9SCnN3+qABcl691BrA7T+ZVFwANC/XxQagEi22iBN6Q+lkUjr1ugHHl+qBxsCSdz/ggsONaILiD26ug3xxLgC37lR6GKzli1vBWC8kiAz0PZUcplVtOupUEhyaXCKuIi4BFDZUbRoXo/ToguMYnu1XKo6McNTXoVR2YICjVYVZaHSIkDVj+SqMcgqQbk0PZSqxuH2mINvJQMPc+CD7b+B8U8nCYZMmzFjJMj1OjL0/PMZ/a/QfjvieNgwSyyyS3fsjYLvzWsa4p8jfGHt1lcdlq6uLz7d8dkSYn7nsGWM2Az8iUCMscbY4XI17phrCfM94GcSIsXLpfCObkTw5oiUS8xSQKaljx+ZijKpqBZlkcU8JiaWWasOOPR3WdXDyYTtEpMI6BS1Y5ssYs71Uo5Jwc0F1FcuWAiJUIqxCzRlLKwIDy6JqnLKIm/qbQpqMTyjH0x8yppjnnyCZbY+qXRNSu/B8cIR93kQOSVxHRaxnW2A8ucvshGAoAI0ZRHpwyY8eXGdsdrMwYuVqJi+TP44UnghKRrtAqF0jNg+O/h3E+UzR5uaJw8TGXhiF5FdcjO19VzsHOz8SPG4Zhx+PjH2R1bqt8weHyeLzuJH3c2GRgA3pDgDqF0kala4/luZlwjDkPusAceSVxHotY36x18HKJZPbnAVDOBclNb9Ucj+OymfcDQfQKa6c9scHDAmBKYofyWbXXXociMuI0ceMgzDmQ6LGkmufHyORvodxNKqOl5jvmIZyZ5iMcMYA9XXss2sZ/To+O43HyzcSeOknUY712cngz27sYExE0kssyvN/8AWS9yU889vQLNdp0ezjiO2Et1bhTWvLs+PBhkZ/UdVPZOo9rDxoGOTNRhc9Sr7Ob5fme/LkZQM0sURUAWUterj8/HJjz5MOR45TIH7omT1SdOnrL/AA9EGW15/cQ4qtSuWJjvjCQjMvLvqtQrSOXkyhDE4Em0181uOfWa5suTJtJ9p5Pc9kSYvhc7IMU8eWAidCNQrrPXD1Pj+TlyShj2gwFlWeo7+TMRAgZ7ZT/JWMyDHLHFgJ1sVSxhyMmQ5NwZui3D1inMmBHoN1dT1Lk8eeMb+Ozm40ZJVn/S45yYomeWu40CDb/IlIih8ExMcvKGHlY5RpHJHqhmPChgzvKEgxib9VbHaV3RxbogRoQzgLFHVjw4z6YRLC5OqylrXNxIZYgmFI3Ris+PxIASETR7FErfaRjICMVhmeUHcBlKzjlBJyhiSB1FFErz+TMGc90WAcgrnURgy4gXZpalTRfIfMBJ3ETSiC8cpDHs+g7Irpw5eVkAxlhiAoEjWtYw9og3PYpI1C92Z9UakOUUpAtCZlU1LUUXl5fycPf3Si4nGg8FK28ePpeR9UoGke6vN1S9+OShi0p/cpWavjExyMztd+i52Mx7/FybnlqYuD4Lnixl7sImUpgAnquXQ8rLknmyyk7Alx4Bc66QY4RliOwneD6QbqNzw0hCRAiC0o38dVcdMdUMkyPtj6hs3St5K1b4cX+PPN8rti+7YTtH201Cx+1nddf+LCeLcA0ouJR6rpOVwuP7fsiO2QyPXsOi6SN2Fm5ntYYnBm3ZCSJYGaMYjWUtVqXGJ9JHi/KfyDLI5N+2BOPbDj46mX/kT0S1w7+vh8xLn8nJiiZSIlCjDQK815uums+cZ4ZalvVLqP6rrrm8nkSEgf2xnQMK+alSvn/kZvllF7Bv+Fw6pHnv6RroCsrjMkmjlrt3QS1TIPuFySoJDO483/RQSBSj1u91AGxowAp3RCDlqenTxQQTXqBp3QZmTgte5RCLO5q+qETIMeoNkEGPSqBG1lRJAFOqIkkEEg9goYkRYXqLqgP5IIGpIPmgUmMQNNFaMizt0UE1altVFLcKf6ogmhsGQTpQMoCqCaM6BfkgTh0GaKYUAqHRAwiKF2CB0CoVdVAwOo7oHrZBQL9gqKoxQMeNEDFBdBbGjaIi4sQxsgBcOgepL+CKroDdqoHAA2oLILoCG9RBqoNoggmrm/kg1kQSSPU1wqpHaX3BieiBOxDj/cKBSqxDVNuyCgGYisT1QXEFy34qi4fUoOjCDQxcM7v1VHbiNNoo9T4rQrMGZ5U0Qcxe7UepGh6KKQDE0obeKC4MCCQXNPAqjWBZg9dSdfBVVxIMmsFUdWF2AkaaBB3YSB9FoddoM9e3RUcuV9xjFiLh7qDIQLE3j+Sg3x4ST6RuDVKsg+0/jsMuPiwjjBjG5IXo5xmPveFnnk47AuGHiF11uOzFlxYSDMPlkGCu0xrlicg0AA3FWVHncvlTMZY5g7WoB0TB42XHi2kwnLa9Qs2nkY54pRMYy3d7FTUxlkjGTkhgzN3GqDCWKAL6BZqsxACoLkrNXWWYbSHr0qs1XBPJLdq2pWVKBarV0dBz8iJNdT3oCg4cgMe6zRlMkMPNQYGOWWTZEGU5WHRMS17nF+Lx8TFvyBqOZyqd63IxrAcvkZ+QYY4yykaCzrUlq2yPRxfAfL58MpZsg42M3HZa/wA2Pd1cXj/BxkIHJKWeJEZZJUg/ZXnmJdr0YfF4JcqODBH3JT9UpdI61XacsV6vJnk4uP2cOPaQPT2HVbnI5uJlz+1KM5tkNam63I235PyXIxTiTEZMYiBkiKgeSsjU5OWLgcqIyYICMyLxoFda9cTg4ksREwDLaWdZrpHZmziMdsi8Jfu6HosWt8xnj4XGmCYl5M8pBZtdNrqh7X+O2QmcIBgT0U0yufj/ABHHyGOXjZdkyaCQomtXuu75n4DfCG/awAcxNz4LOscd2OHi5M3HlswYxKMQz9Ss2t2S/r1sPzEMeIY84EZG4HVc70x/n/TzfkZ5cuKX+NkiCWeJPq8gs2uvz5z9eRkGXASJExleUZFc709Ukrt4nJygmYO4kAxFfzU9k6+b6nhcuE/jpBqn6OtTt5eucr5z5IGWQx27QP3DVZvT0fOeHh8zNjxGXpJ7Cixfo9HPLDh83kb/AHiSMW7aBIrXH01euY+g4nMhnifaAkBqaMV6J08nXNjXkfOfH/HiERA8jNOhER9viVv3YnyvSB8rkmROe04zaAFgtTpm/N2www5I3wiPaNyFpzvh6fBnxuPL2wPSbSN3RmzXPzN3vykSWb0ErUbjLBmkZMbC6urY74SxGVrrWsY6vaEgdjAgUCaiYmTbZxc9GVLHPyYzzSaApFaiRlAziZQk+42QYe2Rkm+l3Wlrl5uH38EZwLZImkhZGpcRwf8AJE4mUS2qzY1bHqYPc90SkwxijFYZdRywxxkSX6BRPVjHkYZggNu6BC8tcQxN6qHUI52OfmwxYyJQA2i6M44Mk2nKcQBE2CzTHjfLTxnBOcbiQouXTLj4shOdBSj+Kg9k4f7IEZgvcKmOfBtx5DuLyNoqamPTwzBIoI6+K01I6I4sU5kwplOlw3ZTGtcmZ8IkAHEnoqsYcXJlMts5gCVodFLGk8vHDJCUBPaw9Rs6jUrxOPwMmfkGIyCEpUD0YBXmxNZ/I/GT4fKxRcylMOSLKWxIzw5Y4zPdK5tK6zYuPZxZTGUcm2jA06dFysIx+ZGWOTHgyEDl5Y+6MMbwjpubqs9cuk5eV6sEpTkN2SQaOoA6LjeWsPjcyOQsxjkjqQsyLE87JyYZBmhFgKzOizdhO7Dx8qcg+MHaamRNA6bVvZ5uVnwgcqJAECxk/wCakuMTt14vnMOZ8sYgScCQcN41XWd66e0Ll5MGSJkMm2IvtIurrHX08Pm83PlE5cWTIT+0nRjp9EjzWvE5XOBymQgRtj7cJk12rTNrOBjDaBIe2S8pGwJXXnli1jOZBmIycAtvb7nVRycnLKOM1YCh6kdUrNfPcmUZ5fSd3Ql3C4WtRhIggsQWo/dQRIFiQWJYMoIkXNmYXGqgUhqxiSzD9UDp7g3lt1Nw0UREjJ2JcWHdtUACXcF9B0QQRGU3u1/FEZEVLlh0QLYX7BAFtjC+iCJRoQRUa9UEufAWAVxESegOiCZAsXNqoJNQ4uVQSPp6HUKCXfy6qiDa6giQLPqBdQS5MaIqSxIbS6CKF3FNECZAqOVBLBkDQJi6DNRQEAgFRQQN9UQyWQO6BClCgpyroYJ6UUFOLKigzeCBxZ3ZEWBaleiBgCrUKChtFdOiChpSl0Vci4s6ABNmoEFxjckNqg1x33C/RBvQAswe5QKUQZEnpcaoIIpW2iKBHXXRBRLM9tAgcAOjHQ6KDWAqDYA3VHRhcuLvYrUHZijQA2AQOZkxo4NlRzkliHcSPqRSYuPT/Rgg0iKNYA1HV0VrpUADQLQrHow9LEueqg6sRLRItqStQx24ZsBIGhsSLqmOoSiwk16EomFj4xn6z1YAXZXE1tDjRDEjbj/6korpwcU5csYRBjicbWo6sJH2vxOGGLbONG9IgbALrObG7zj6H4yP9ycBIu7uF158EuR0cjHOWUZH3iNlqU9nocPJCeNp0maAFKnUcfyeOQgZQAMo0kFbWMeDyYznjMYDZLqbVXOtPMx4csMrCReP491FelCMMgAkWm1U1LGeTiydg7KWojJhEQ/S6yrzc4l6u1/BZVxTcnsdeyioyZCIjX/V1KrlnnLsfNTRzZcrx/JQVxYSzZIYsQ3TkbastRnqvqfivgMPFmJ5PVllUlrBdZy5WvR5HAhmygSD4xcNRbxmr3fHcDERgwxAP3EM5T2PV8//AO8+Tzc0RGI/4+SW0Y+3VYlut5HNzvj+Rl5wjEbccJAmJ63C6eqSv0L+PCEcQ5U4gyyAQDdAu0Ys1XyPB97OcmGW4tUFbhI8aeDkme0gxMXc9Fp0i+NxBJ2LzNy9D3KrcdXEEMBOG+Q3AsFityPSwZceHFszREokP4LFqya5uT8fHLEywl8f3AlZdObjhw4+TjhP1OJUMQo67HWJDFD28npADgat3USTXRxuTh3Yi+2ANHWaXl2fM58u3fjvL7YPTxUZ4jxjz8nHGxhHIQ8j3WOq6zjXFyM+aWHfuebuCuPVduefLhA3TMoEvOh6xl2XG9O8n9vSx8nLHGIcoe4YUGSQqQs36J6f07ODLHyAREjGbRcLE7065sezxI58Y/xiACC7HVanTj1P5cHyOSXrxz2xEDXQ+Sz126ccf0+P+TnDdKcCRCJbealefr6PVzy86c8xyO5MG9J0Pkk+1Lj0eNyMkcezJk2QP7Y3PivXx9fDh1GksE/uM9gP2jUjuvROmfZ2cXFuwhnG0sxK7c1y6ehh+QHx5YE7Jf8A2PYeC3HO8ez2DMZ4QlCVCN0ZdltyzE8flzySlg5ZicZ/+qYuqtk/hvDBiiDEZHIoDqqh4i0mJ7OqjtjkMYvE+rRVEy+RjWUY+uP3KyLY2hlE4e9AMSKhaYrzufycmPH7wb0n1dVqReXPj5Zlj9wBt5Zpd1cWxjOOaBkRTUBlV8J42fkDJ7ci0j2opY1ketiM5SEZt1C5sNOXx4mUXdtW6rJKiHFi/pjt7oVvlwypF2PVGKMvBnmwyhKhNijla8Ll4pYvRKTxjR1npXg887uPnjH/AOQPguVRwcPlZRtMRWn1WB7eTkn2RkyyDyIDBXR5fL5U45fQaAv3U1Y9vg58g40ZZvSZB4eC3FepxI48khIy9Vz1WkdHMxQEJUDAUr1WZFlcnCwCQ3e2QBclMKWfiicvSPSUxY8P5LDkHIjKETGWEuJR1Crr4eXz/lOT7pnkytTbCDdeii6+blzORPKd03ANli1yvT3uP89lw8cZYy/uY2YdGV8Hsy+O5OPLy8vI5GY5Mucvkm7kA6eC5468Xa9eXFxyztE+7GYeAJ0WeuWu+sef8dLhj5LJxeWTD1+g28lznGrz5/GvyeHl8fJkw1nAOYnRjYLHfFZ7leJhzcvjyGDkwljhI7xCWo6rnJXPa9j5P258GUsUoTpuk1WAHRb9NjNuPlsWYxIJlSZpVqLnOMPZtk+R2SHtR2wAaRJuV1kZtedyuQZSkZzNBYalbxHFKUpy2vSNWN6rUjFqgQA1xOpj0ZdIzUT1jGoP2oOD5DLsiGk0jc91jpHiZARKRkKk0XFWcrsQ3fr3UEkPTUhQRsLUpE0MdUCMR6hoKAG6Ab1CjhmUCMREasLA6BBMREAUqbIJnWlmu1lRnMNLxFAiEHsCRE38VBJZ6NGNj1dBNWZ/DwVESPqFn6oIlQ1PmiEwd9dUEkhmBUEsfL9VRMixoPFBNG80ElwCEGZ6BRUmlAECqKoJUATcoJelEC08UCQZqKEDdAMqKCBoh3QHZAIG/wBEFgUPRUAILIKH4oKGnVBQd7+aIqJ7VQU41VFAMGvJBTOGuQooBvXwQWJFmZuqDTHKxJfoOiDYEiIpdA3vXRqoqf8Axe35oB69zQoL0qPSgcXMqD090GsIiwFLt+qDpwAbQTcmgWoO3HtFSGVGeQkOXodEVlINT6Ed0CAY+OndBvA1f93RlYLEXfUirqqYD3/BB04SHEgSxoHVhrrwxMpbXN9RYqmvSxYyGlIgABg3VVFPGIaRf/yUFRyicvbp6iyD6H4vFiwifIy2whov18F14dOHbx/kIMTE+l3lJqB1q9J1XvfG86I5TU27b6rcqa9XBzQC0mEXq+q1IZro42aWbJMwYY4AkS0Wr4XqY8/5XNOWA7HEpGh1ZRjXDmz49ghCsyA76KWtJx4ZGDbQSf3Ms1CmceKW0j1d1F104J7yYhmAuouODlZYgm5FvNZ1HnZImQdnFlBxZ/S4iAwFSiuLLIlmHks4OPLM0Fovbus1XPlm1B6pyLRiLklSJX1n8a+AnxwORmryZhyG+wLrzy5W6+ny5OFw8EZcjLEAl4wZ5E9V1/EzXk875vCZAY/XvubMppjz58nEcm6R3bR6Q6GJ4pyxjkmT/cqYEftHZFx7Pxvx3ucSWcyGSZDkSuSV15Yr6PDjxx4cZD0+3BoxjSuq6QePy+dlhm245bQAHA1JW468xPKzCfFE5kjKaGIWo1IfFOQnZjOws7FK3hYMxDim5zuPdYreOvJnwY8kd06zg9ey5rJW3H+REcLwaWMUbxU1r1H+RhnLaY+2DUECijU5ZcvJhx4xM/3ZGj9k1rmV508xnISLj1jbE9Fl2ke9y8k58eM8cHyCLCJWa888V8pzeRljPaZb8kj6w1R2XDvp7OOZjTDDk5ozAcRYbXXC1q5GeTJl4rkQ3PQjUFeXvvHbjmdOrjcjJmi7EzAoHXK/Rv0x28fFmbdkHqcGMRceK5zuxrw+q4nuyhhzZwDMDbA2Xonbxdc+cjzPnPjuRPknIIHZMVN6rl9d13+Pcx8vy/j5SnL+3Ml3IALUXC6764J8fFCMhOWwmoiRZSdOfUrTiYvjwRvmTJqE2Xq+PUce9dGfiY5zc5ahqg6HovbKktLjcScJ+mZ2aVdd+KdV0eo7xOujGrrtHOx73DjD/AxGNBAEEALo8vV8ubLzYHNtjEARqOisbnPguPyshlMmrmhC0dR6fGMSB+4lVztdks/sxsN5ozqpHPghHeZRlXIWkVstd/G48Yg7Z7gKMjHTg+SjPYccRV1uLy88ETiMQB3AuVpp2+zliIlyaVKjLDPilt9whzEuPBGocOYQYmAtr4rNjePR4mbLECGWW/dUBZsSx2CTy9OmiwzY2dyCR4oxYfuwZj5JjlY8T+Q8fZh93GHoXbqVKxK+RkJgSOSlGY91yaqI4ogR2R2yZRFZo5doM3bTspYa4s8JzMSdVn8alehxOZmOPHDId0cQaBWr0tuvW+P5GQSOSVD17K81Nd+Tln23hFydVrUrHHkzRjLfIjoAq1K2hyhlnUbTEV6FGo4/l5+ge1Qn9VbHSY+K+XhzM2ciGMzjjvICgUxOuv6eFmhKGQCQaZqVzscK0yHJDBGUWMXrXVLE08HPjhrGIEv3E6rH4s6x9P8AH87kz+OHKxwgRhLv+iuO8uxyfy3PxuV8fi5kIiOctSJqD1oufcS/THlfF/yvmQwHBngM8iGxmRp2WPa39S/a39Ycv5Dnc7LHPy5dYQ2/aG0UvGud71fG5coboyIIl+0mlOvZa55S9MObn38ufJ2wjKVYwgGgB2CXlPZyym0q1ALt4rWJrkzyBidsWIkS/RXE1mztE3H3SB6qyJqxtxkylHcGaK1+IwEhJ9wPV1keNzcpyyclwCWY6Ll1SRySBDkfa9z17rmuMpFvtNf3IJeOrlvtUEyN3LPbxUVEiJEO9KOgCbiJLBml1UQSFKP5m6Cdxd76Mgkkmhvp0ZEZGh3uWsX6oAEvU0OiojRqXqoIk5l+A8EEylVtBQIiDP8Aa1NEEkSBLmyoRD9ggUmYNa1EEvFz0syomQZiB4l1BMiwYV1dBAZi91FQat1KBUdnQLxCgn80Ct5oFRAnDorNQNAKgQUEDF+qIdBr5IE34oK0QMP4OgcfqgYB0VFB37oG5PfsgsbQXIIQALURFj9EFxYsxLoG20tpclFUNKBABiSblBrChcmqDUEdXBFEDL6B+6KQ1JoB1ugYIIpQH6ugo7iQ5eIp5oGKmjjxQaQlUUdtUHXidgWoLFag64kbGoSS7lURkIJErvrp5IMy24gm9gooDsGq1CVR0RpFjJnsyoZFBoL/AEQVjNi4GvkqOrjx3EMamopZWK9Djx2t0H3DU91UdUptpQdeiDCcxItE1FR0VV2fHxMssQBuPVtVEr6PmSx4/jvY/fkqS2oXSNR5fE5Uox9iux3LastbG6+p+My4o445S5lIM4qQOivLm9uHGHJmI4hIbmYH+i6xqR34hHiRnDdoAMQv3JWt1bdefzOZCRMI2Gh0WdcXnkkS3GhNlMXXVhyYqGZO2Ndo1PdRqU+bzeNlzEQxkAXMtD/RS414ThABOWEoiJDEPUrOrjj53oqWBlUh6vZYqOPJQB4mtj3UHJlhJ9pDnsro87PPcDVmos0cOYt6jYWA1UHtfxn4cyz/AObyYgbA+KB0W+Yx1X12A4cbzySFtzD6rpGXzXzObFyMwySybjItCIBAiHSmvP5E5wLkiIAYHU91nVHFzZCTEjShOqatejDDyJ5oxxtGEw8nWpGXv8HY8BCTAUMY6my68svdzDNCQiQzxeIK6wjxM2GUORKc47pu4XWOkGScsuUYYxuHPijrI1HAnLJj9ZEYxJkB2Utalc3JyxxzEMcRtia+a5104jHPypZCA24AMeyw688scfIyRj6cohM2xvQjqsunq7pc4nFARAJ/ce6qTljkzyAM5UA/aFK1IUvlcEccNkPWCwezrN6X0en8d8hj5xOMQlhzYy84vTyXO1y74vLj5PExY/kJSAdv+y4d124uxEuVPJGYj/bbQFeX6du3PDhByxAnKXuQJaQOoXh77eqSO3gS48IyMi0T/wDUG16LjO8/WrzXp8XIZziZ/cPuAWZ9NpeMe7CceQYmUi2K0I0IXb/TXD09XrcLlQycWeIvLJViRZd+Ppseb6fOy68L5TFz8kZYPc9JrKcAAuPVrvz6zy+Z5Hw057QAJAffKS4+jpe3NHF8fgze0anqLLv87IznV8jJkOKJAjHJiiayF16uOz0VLDKUf7Pp3jdfVevisX/qeNjzRz4RueW4uJVG3VejisdZj6PBn4+bin2CdwkQaMAQu0eLrmy+XhfJAjk7oBiLkF3PULUduPzy6sPJGPjwlPKJAfcWs6059TyWP5ge8YRye3F6HQ+CqXl3z+SwDcJEksHK1HPF8PmzJGwOCblbK93FmAxgGpJuFMc6x+RhH2wf3LXJHhZ4ZpF4yJXSOkrbi8g8eEocjIZuPTWyXyuan/Jnk3wBLEPE9wpYsHElJgDbXxUrVj0YzjEhqnqsYkjqw8mh6jRZsLB/lTIJNFMZsa4su+J3UNwEceo35Qjn4ZhKjjTqpjjXwvy2GMcgESaX8lx6WVwxykSL20WR1YswYOdzWGimhHHx5SJIqbF/0V1FCOOIaNhZlFb4s+TazDaqOjBzDiclzSjqxW8MnInkYxbcHDBbkNdvHeO0Sg5FQQNFqxXL83jBxHIHeNoso1K+G5vJzRGQCe3cXIVkarws84TlIm4uSVztca1xxGXH6PtHXqtxmuHOJ48hb6lceoM487nYseXHh5BjjzUnEW8llqd2Jx83KMcccpHYAxgbrLOubFkEZir1cDosyD0gRLFCLvF9wiNOpXXE1mMryJBF/JhosyLqs04ygSHBejD8Fq8prlMgKGg1KzhrmnN533DUGxQ1pGZYBhZwBp2WojHPlJG0GhqX7LNHDn5BI2v91O6xeh52Qje5foG7Li1GM3IeT28kGU3JiQwiOmqgk6g3NfJE1NouG7dVDUyN36s3dQKxNH7IB76GJZz3QKRLmJA6uNUEvIioYdf0VREiHP8A16KBO1j9UEyIcFmLaIMpXDaWQQfqUEGRNwx6IEXOniqgnI0YUUgkylRqGNUCJM5GZvJBJAIAdn0VEMwIJclQSfyRUEOevRAj/wAoJOr20UCYAIEgXiGQJDWeqinqgFQBBToGH0RFOQK6oFdAaWQVQ30QUARUGiooFBWqAA1NjZBdbE2RB+aC4vuHRBcdzEtQlm7Kh0dqkBRQO9uqCn8AO3RBpjA3A2P7kGoJYN3L9kADQEP1QOhO0RcSqimXILUPTsiCrtoirqam+ldEGkLvZB14tpZ/tu3dag3G52LMRV+iCZSPpjqBQaMgzJr3u6KqBfRmLk6FUbiUhVwTeRa3QIAGTO1ZdVRrhBlIMHApuKQeljiY4wKBj6S11sbwk1dLk90GmSYEafuIRSjA+7fc3QXVHvfF8Qwni3yAJ9T6eC1zDmO35GAlKMrBiAtY1jh43HiMhlKRawYapIY+lw4zxeLsMjE0I8StcxmTXv8AxU8u7FGJMzAOclg56Lt+Ot/Hp8rjDkZZR+wkeudis65PkPmsX+DyRjjMzMqxL6Iz5Zw5GSbSkWsKm3ZB0Y5yMvUW6FQabXiSal7lSrolOMegIWMa1xZ5e6SX3SN3WbppT5YOOMIx2zAbeVK0w40T7mXJmkT7UXgOpWVjzc+2csk6AmoGgTWWnG4UJZccpevHEbpMHcrUZr6n4rgznx5TyFgak2oukYrl5fL426UYS9X2xegA800x5XJhl5OWWLfCcQAQ7BgEHFzMPuyhONRjaJFwe6zWo0xCRrIPsqUHr8aJ9qE2lI5KAagLpGa9zicfFhhFqEkOSukZbzycrk5zEky2/b4LrGtTLFyyd4A6SJ6LpG+WMsco+oF5Ow2381XWN8mQ4MZyzcykG291itx5mbHkyjeerkarFdZXPtI3wjFgT6lmt6wOPDjkZz9ZhSEdVnw6bXXxsmOeKRYQiPJyVWb4Y8zJPazVApHss9NcVywzQkGyY/TKlNJLla6Po/h4YsUJTMvVMAA3ssWuHdtac3hwyic4T3ZTSv8ARcPo38+scuPi4sYEcr7v3SC8nb0y6yzcfFCG2JAY/cdQV4fpj0c6qGLGcIhjiWjWRbVeXuus/fL1Pj+JlI3QF2qsc8066j2+HwckD7shTVtV6OObHHvuV6XH5WWUtow7XoC1fNd+Po4dcSfyyz8jjTjPGMZxZIlp7hQnqFr3hPnY+S/kOfkYcsscKQLeqOq8317sr0/L5yvIhgjLbPbuMPubR04rdmNsmHHjAnEPTbKJqK6r3fNg4Q5GTLjGI/2yzhqBez51x7yfr0ofC8aOYTlkMiDUk0r0C9nLx9fW38d/Hx4IZJYIbYAaPUkrrHDrXkcriyhPLtjuqzFbjU6ccomOPJAw9M4+uJHRaatecM0YZI+3xzkybZARHRVa7jglkw4eRuMSQ5hrW63HD2en8XERmDNzA1H9Fpm19EIb4x2Ui9kYlc/ymXJukwpAMAtcxY8AczLESlNogCi3jrIOPKOZwS/9Sq1fDp45MclBRQbQlt3liBuUqujbkBFKN+aysrXHLaJG5ZYoMcpkyerVZZrPTuxGDAu0iLdFHn6dRDYw+oIRxr4r+RbseTHIH0lxI91y7Xl85yOTKJcUc2XG1rGmDlEkCUq9ElTHUM5egpYlXTHRHNGQaB80g6+LtNJSYarcR27sYiCAHegW6R3YMmDLHdWGYUKsartw7TAsfW3p8NUqOP5KJ9oktLcG8FqR15fnvzcYR5BhsJcXCy1j5vkyxQmRCosQufTj1MbfHZ5xmYs0Torx0w25WOBmQAC/XQLp0w8nkx9o6bSWiy49RNc0iQCX1usWKjDB5mQJBjodU55016uTH7eHeCxboul58IzwEGAjscg7jI3ZSfitZ/bHbVrhawcOQyBIB2x+6T6rnRzGRcAVMqhuigr3dkTIUJqQqODk52yX8AuXVHGZG+ov5rmsZZC0iHLAVKlVk8Ylq7blQZzkQGAuaAdFEZUrSvZRRIh2IESaN0CCXepDh2B7KJgB6FgSwOqCTUkdK9iUEmRN7ix/RBJkS7hidCgiThga6ohEVNKlBO7wOjoI6vVBEnIfVBJBJ691ahPLyQSQbaIJI71QI2r9UEkEs9+qQSQakCyCSPxUVNQgklw1mQJvJAlBNeqBFnpZAqIM1FGiBhUCCkDDsiG5ogP9BA6oHogAaqi73QUDRgUDDuEFEuaXRDZ/VZkFAf7KjUEjuUAS1L90UwGlU0IUDjoOtyg0g/RmQaubjozBBcIDyFSgQJiXBvbwQBo3VAUeg8UF0YbaAIrTGPUBoLMg6sT7X1sFYN2LDt93daESdhUgk08FAqi/kgqDDwJv3VVrHQE7o6HV0F44mRP4qwd+DEIgUNftW0dWOFY7rh6HRFgkQCC9A4RTEchJm42xaj/og7eMJZMmMgbn10C0V7eaYIDEAQs3VXBHI5GfIYEHcw2rWtx1fHSic2DFODAy3GR1Woj6zi8YcjM0zGl4vUdFqRmSu3Jmjxc2yJqWAhFmPdbjTLP87lDQGEHMDQmqmRLZHkfIY+Xzpe7kx7jG2jeas5c+qrj8OUMRlmxgAkeg1Koc4REtwoHsbssgEiYlz6dFF1lMCVC227nVZprPOY7SIxAAswUVxSnKMtxqwoFmrrKWSZqSQDQgLFjUc8sRk/tB6sAdVFfR/D8EY8OLDOL5MnqkRp2W5Ga9PmHNh4eSGF9oi8vBdHN8Xy+QZZ4YTEwb1CWhPdYqxwf5uWEsgwiMpSJEpaEBRXXxJyLuHBFYhMK9XBxcUpDCYMZ3L6LWM6+k4eKGDHCMQDtGvRbiKlnh7lYk6xAC3KuPd48OLj+GGfARk5GQn3JHTsFvm6tmOETnJou56f1XWNRnx+IDnl7MTGXex6kK666efHgLDL6m/NZtbjx+fLfLdiDCJ2gBYrrxBijuiTIAub6uoVx/J8DNEe9ACWPWcTZStcdvPw5ZgZIE+qNYknQrLroyczKePAzpkFC+o0WLVk8lGEgIzc7dY9yudalfT8LJPBwYyMN0pWMqsFjquN81z5c/OlnhBhIGtF5Pp1Xp45mPTgMGfGMWeQxzjQtchcO7Ksln47/j/jOESQTvhKg3XXC8w676dc8M8WWWCHFHtmNyL93XLrxfxvi7N1pxshDY8WOOMC7dlynf9Ovr/b0cEJyNJ11pRbm1i/8AXr8aMBF8gG5qSFV6+Hm7eV8ljxmR3gykRqGBXn7nl3+f48fn8LFyI44yh7WSFATR065nTc6vLy8/ww4xJlE75GoBV5+WLPrqJcHjyFhI3J0B6L18cRi91y4f8PgTOac5ZIi2OJoCvT85Iz3vTh5Xyh5megO2Mvsj6QHXo5rH+c5aw+TzfHsRxxOcpbpSJvHo668ufpOnuZ83D5mzkYpPDNHzB1+i6R5cvPhhxsJ/yTEw9zHt2yB6dVuM9Xww5HwRHJ9zHAej1YmLMtxn/RhHh/I4Zyhk4xyY5j05ol2epVie0r0uB8RnLSxyJehEldS9PfjxRjjHdKsRUBNZ15XycpsRGLg3XSNx4hx5JuJgyiRQNZlt1XHixFY0lRgKKmurjYZHkCn7fUO6lprWWMzyFvTEfcFNWVRnJ3egoAo22E4e1uNzRliovFKAIb7pUWax03xwlDJtI3PcdFlx6r0Z0xA9BTwRxr4T+SSkceSUg8RJo9ly6Xl8lnzS3eS4VttxpAsfxSI6Z5GLW6oF/k7Ptp0SK7uPytwjkMvUabGW4jr/AMsEX9Vm6LcR6HE5JkYjRdIPd4mWEyQzFiydDHnx2YXDhrhajry+P+X40M2BokwkXLhLHX8fHZuLkxykTjGQsXHfqsWOfXM/XLjOUGMiGP8A1Gi5yOFdMsshJ5ea2xa4OQRMl/Los1lyTAHl+axYNeFEHK7P16BXmFepzyBxY0foy69fiRyYRsAdw4qViRV5CBGrgftAQedllEEBnd3J6rmOfeRIA+ksSoOXkcgREjqPyWOqrhM95MifUW9Isy5VRGs6uC1O6BTAAd66qUYSrIx/BQQQdpIqDQEqCADuLlyOiCSBtoaH6uoFtruIYSFAkCOpJqCKIA/cemniVBDDpY2QSSHqalEQSHc0ZUQR0pqgUj6TRMCIi3ZBnIg3NUQpNuZvBUQSCKD1OxQJyA5+igkkOOqCZERLGrqgkwo7d1BD0Y30QI1v0ooMz9e6Kk9rdUEk0ZAibKCWo3mgNzIFVBA/BRQFQIGEDQUKIgfTsgbWQAf6IKA8OqAAcXaqooACiBsSUFNQMgobS5RFBiwN1RYBAbQWCCwxHpB7qihQgKAf1SHTVFEXa7KDWAJJHTqg2iCLkO+miKCAHDuLugoxLlmAP/ZEGxgD3a9UCY99o1RVAEgaRBcHqg2xioZg+iDsgzO7dgtDYBgetwFRmQaigIq/iggCL18ihjSFjRq2/VDGsQ8htqeyo7uNgo5BrdluRHdjgwDNT7j27KtRrLJs9UDWIY0eh6qWLjkEiwD0DgC19VZFxvxYRlNiHVwx6HG9Eww2iwA1C1DHR7x3jduGMu7WfR1R3fC4Z45y5PIgTgAMQOsjbyV55/tZNehhycQ5/ekCW+0RNAeq16r6vcwGJzSOMHbkiHr6nWokjq4vFx5JTGORy5wdpjI1iOy1dOpYrL8HyOMCckxIkv3CcuSByc2MSiR/b/PuqMMnyGDcd0Wowd1LVxjIxlGUtwG4gi7llmmMJ8gAyEanQKDLJlvuNlKOeWVxS+gUVy5jPr5d1kcmSeQFgVK1K24G7JyscT6quVMXX2vCxSHKxhvSR6luRi1z/KfLiGbNw8X3zG1vFTr9WPA+d4eKOHBhAI5cRucW290ZfPy404mMgwk7Ade4Uxder8Zw5bZZcvpALMdVYlr2Tk9qA2erLI0HZa1mR08Lne0BGciXLMRUP3SVa7wDKe6JeIsSukR2cAEQnGEy0pOQSunLWunNvx5GgKSo66Ly6+Pxc8eOZzkwZgD3U1015ueBEjE6C6ldo8fkjPkGyPpY3CzXWZHNjlnxQBn/AHIg1KjVylHlZYCe0g4ZUG61VEvLLJxxmO6MQDalkNx0YfiZT2xIEgb6Ms1L27cHAxY83t4wTABydHC509nbyRKPDnIUw2ydlx7Xi+Xmf55jM48B+2PokRdeL6d493HCeLyOQc8ZSbfuO59V4eurr0+sx9L8ZlDSmYlwCewSVw75dEeZyskwRkDRo2q4dfSuk+cj0OMIyjSPtvfqVP0vh7HDxbmxYw8WLtclen58a8/dx3/+v5kIVDSiNxEenRdvSyOX+nLgz45zA96BkJXe7dAufU/t15ufjwfkYYfelhmJyjEvilkoB2XG/r0c7moPLwnDGQMJZYODq4HRenmyxw64uvH+Y5eHj8b3oEwjkLOA/qK7fkXibcr4vm8vJKZ9kSEXecjqVea9GT+VfHzyUjITMpPskIk92ovZ85sef6dPdw/D5+fwjjm8ZwInEyDFxpVemR5b9ZL4enjH+LhgMkATjDbI28luONuvHnl5kucOXxOTLBmgf/rm5iY9wtx08Zlevx/ns88kxysYxRakoGkpKuHXzn8OnD8oREbSZRlYKysXl6PC5gnJvb2SNiLLServxyMn3St9FUcnLxRnDJShsukpHjtmxE+4LW7rTqy345T3PtIrZVcdnCnEylkMmYN4qVMdGPHimJZTLwis61HOMU5bqbAPxSt6rAIkGJfspUtVjlETi4LRLea51iusTacTGsnYjssuNdufKDhZ2PRHKviP5DAnhZpuzyAH1XPolfI5cbOTelFwsdF4Cw8fwKkRrLIXDDxdUaRgJh4/ctQb4OPKDn92gXSRNajCfcrpcizqyJr0+Dl2H03a/Rbhr2fj+UIZBlnb/VVvPCx08/Ich2AUmH3dlI3K8Tk8fZjMoET2litXldfK/L8OU8uSeMmBnGgA1WctLK8U8TPjzEZzsIiPPwXPHHqMMxL7brTnXNMRaRJJyEtCAHp8Ss2I5ph70a7dVLB1cGHrHS7lXnk138j1ja7ax6Ld8sxyswNCdCs41qc+0Y9ouBdSo8bJMbgSXBqSuFac+TNtpKRIGvUlZtHBkkZF5FwPJcqpDcLN2HZRQCT/APJBMmf1P/VQZncOjCtFBE5OC1xY6MgzdnYgOPUVApEU0AGmqggsHP7SGvY9EBIkdKWQSSNboIBYnp1UQiTTwQRuiCNSyCejmr2VBLRw76poksR0AVqIMQ7Wq5KgzlKpItd0EFmAf1XdAzIkAl36oM5ULh3N0CEuuhTQnBrcJoRZ6hgUEv8AcH8FBBDa2RU287BAj+KCJVKgRogSBVdnRUhAIGgAiHUOimEQ2F0DcMgbVQMsKqhhkFRsS9NEDhautkFBn7oiquzIKAPUEdVRcYsXetnKBgh2BIOroLIFhU6qKYBq9NU0MRBBaj6INIRkSDIUCK2AYUAJ/RBTScBx1Y6IEW3EuWQFC50LUQEnANPDwQPc8hFna3RBvjbcN1RYeKsHVjs9eg8VRrQ2PlerKjObbqmjepAhuNAA0teyKuLli/Yjt1Qd/E42+W46fktyDvhGQkzmI18FRttia9ASSO1lVTIyyf24l3r4osjCIqTE1AoD1BVxXqcTFinl/tCUYAAETuZEVWpFelhwe3tyHGZRyHbHIbbhoriOofFe/liQP7QNxSuqs5JGnynMEHwwG3FGhA7areOmPI4WeUM8fcnL25FyB10Sat19PHNyI4RzY+nZQRHQalXcZ3Hufx/kZTmhnmPVlJNrrpPLc8x9RlEdm/kxBjr4rMeax4fyEcYBOKdQDtgBfVKy+R5mXOchyuTKxi32lSrKcJZINLJI2t3Kya0hKUiYixqO5VFZZRDyjQmkfHV1mkcU80Q8gXJoxWdVhPPSyyrnMnk4+qD0/wCM8Uz5k8kqxgL91eYWvqPis+T/ACuTLJSEYtDT/RW4xXk/JY80+XDLiiPfMr9lLCPP52bl5ORI5GEj6ZkdFjF1x4YROdhBog/cb+LLUHbOUo8WZxjdX0yPXqlRjw8rY55MmV8j/wBuL3ZSNV6WDlYcuSIyOJ+2S4sCNFZUx1Hlylx9wJ3ii3Eeh8dyYTyNGTSERuHddZR6vByTy55bqwhrottcvWzZZezFzucUZSOjy8+L3JxBoJ0kRdK68nPgYhiDgACx8FF2vH+TxwjtiJUP0KN814/MxwGSIxyYxrtFlmuvNRDJk27oj0mh8fBZMex8dnn7TzjSI+7qo5dTy9DhcvJGEpY8YMn+3qsVLy68gDzw5IxicsPcMQQQWuuXTXL5KXJy87mTPChHNiiw2Y6bBGhJdfP7219LjxPLslAQyx2Ypwxs4kWvrVeX6R146fQ8TByJ8TbixTJyfuJo3ZY9bjHvNXxYDdtlGO+JrAnULzO1r2uJCRmJjG8BQEGj9FvmOXVfUfDQl7uTHKUWxxi4H/Y3C9vw/ceH7Xxr2G9LfgvZjzPO+UhjOIAnaJOZTsAR1K4fST+Xb5Xy+K+Yy4M0Zy9wExoImrtRwvD9Oo+l85Z/D5eXJx4JgDJ7cCa0ctqwU+ddu+dc2T5HjcrjHFjjkkGMdkzXdpJl651seXqetePg+B+f5YnGPC24wK5p5NoLarrxzXPv78x6PxXHzfGe5yM+fDkAjtGKJ3bSNXXr48PL9OvdtH5PnZjiM8rQnJzGOrWdeqVn1k/Hp8jLyQRPGBLGzkajzXSMTGGDNjz8gj/HEMhj9xWoWZFR4cYzIyHeSaAKsXp04ONHG0Ih2qwWojtwyGOUdwMZm/QBaHoYs2QwAAFf3LUZrXLgJxiR8wrKmvG5sDORgxr9pXSNc15khKETCYYg0VblbS5GOEIYo/cRZqqLIrDzo4sQjI+t7LNdMdEObuO2j6OiY6J4Ze2BiLSP3LFrnrLHx5Rffkab+mLrNrPXTthCUYxF5n7io42nycoGKRerMFKw+R+a5EBxI44FyS8iVz7rUfNZiJZNrML0vRca0kY2iCL3DqCh7gZyHNVcHRikwew1HUrUHfiyegPFl0iVX9xwRY9dFpG8WgHid8z9FqI6+OM8i8rXA6LpIa9cGWSEMUi3UrWY3HNyMYxRmccXEnBkSnUa5fK5pVyjLGUZAsCs1K8vmj2SZ5CMkyHgHdlixy6eRjfechYnUaVSRztZZIgklmfomM655Yju69OynqOrFAQizuVRtAPETkQXtHUAKDPMdheVOkfGxUqvP5GYkG7sXF1ztV5eTLtAZvVcHquNquLPkEI7SavUahc7Rze4TEmlaBYUjICjFzdRTEyH2t6h6j4JoUsjkg2I9JUGRkDIlyGH1UGUj0DglNCMqsdVBJfSpJf6IEbOaOX2qBEys1tUGdXLG/5oFus5I0IQSSASAdHRKneNrt6igW4FgLMgTksxHYdkCnqQG6hUZk1/VKiJSDM1HQTIsSQKKKR7C+iIRBBqqILV6oEDo1kEkEmiCSfqipJcU8FBLFroEG1QKXXRQJx0QIfggTV7IIUUJpoVwOiBhEMEoGyCqAVsgAzlrICmgVDZyyC2YG6BsEFBvNBQF2RFVA7HRBTOQ/kqLEZFnaR6oKt4lQUQTQF5IoB8WP5hBeN3G406IOkASBL+SGkQ7gCl6XCKBbsgGLeBQV6iejoCIo3Q+aDaD7uh0QdeIgMTp+a1BsI+mzg1BH6qjHI7gxugkMxoW1dFdGHHumA1DQMrIPZ4mEwgPz8F0iNxGRcVtSXcopyxuImgjH7m1RWZiXJdgTSI6KxqM4RAmHHpBrFVXp8Mygd4LMai7dGWoj6Dg8aXJOIRnJoViDWIJuw6laLXsDHHHx8uUAUO2MNVqNTp81y8UpznKQNamRt4BL03OnnHfGW6I/8Aip7Yvs+p/jsObnxyhTJGTb9xo3RlfZm9vpByuLxmEzH3CPRjiaBqLU6qTt6/B5Yy8ffnyCgLxN30S3+k6mvF5+Xm4fkvdxxIg3ppQnsl5tctx4ox/LZM2bLLi7YSnuG5hVMZ9onJh5Bye5nDPpophpCTEBwWJIGii4jLLHKRYN3H5KDgyQY9CdHWKrMxJcAu4QM49sXloKspivpv4xxfa4fuSFMlSFvmM17E8UMGwgADIXkFpHz/AMwSJ+9iLMQAs0jmGEcuA2z2cuZBcmhiFYl8Lni4eHMIyiNw++QP7kqRh8lzp7xxskYRxQAkJRuXWLW5Hj5eQMebZU7TQnUFZtad3G5mL3Ygl5FgD0VlTHVyeVljHfBpAGpFluUw+J8tjHIjkkDDcwkRZdOaWPuviJEwlijtnFtw7vVdKSuzJkymRDRjijRgdVJ4dosYsWSVA4LVdXWvxPM4px42mDIk26BCdPH5mHGXjMbdlR1IRqV4HLImS4aVnA+gUdua4cXE5scvpfboCs+rV7juzZM4xx48CTI/cQpWY7uEcjxjurHoa0XOpce1DHjy4YZJ5RxZwBHuSqDE3C5dMy15c4fxvEDHDCWQv6smL0bif0Xm+lj1cTpvxuVhJEPaI48CP7ci9F5OunbK97J8jxeMIiJOxnxxiLdlz77kTj52uXDmjmzjLGIGOXqIC8Vu165Mj1eLmxe5j9vPshc4+63zm/rHUv8AMev8Z8tLFkyQxRBJlvII9R7rt8vrlyOH1+Us2vouL8rxuQTGMhCcR64zO0gr28fWV4u/lY+f+c+Y5GSWbigRjxpEWaW5tXXl+v1v49nw+Mkl/l8l8xz8W0jGRYNECjCi8/fT2/Pn+3ynN5c5ZHBAmHfwTmutkkc+D5SeDB/lmPuknYQBtIDrv87jx/XmXwrJ/IY8mZzYOdLjThHYeMQQCW6r1815evln6wwHNyMIzyDk0yHTxXp4jlbjv4vBMvXjicnGEXjMFwJL1csXp3cTl5snx3piRISMW1Pddox1PLWBGLkRarRJyHysqn6I/J4cgaMTCUSTXVVfR3/G5hOXqJiSLlVnqOrMJmAJl6hY9l0iO3gCWSIETtIGqrNdhcYz7lJDokZeNhz5M2TOJBo45emS6F8MuZjwnGMkyBLQqyrNeHyuWcOUmQBMotGSdeXfhE/eBx5pn0s6y3rr4g9zJuckaGOnZS1i17/HgZEAeoRCw42uaIGTmbDCgN3UY66erynxccyt1J6KOWvlPkPl/wDIyexgeOOH3EO8lz66WPD5eX3pyhaMPouVrUeZOYjIkkDqsWqYIyRG2hPXoguGMxAF/wCiuDpxRDu2q3EdbREaiq3EYzz5N20Fm0WjXTxMtXJoPxWoPUjm9LR6PVdYO7g782wVe7nstjXmRj0L1LJjo8Hn8aEq7TuqdqnUK+U5XH96WTJuaZLGPRtFj1cOq4JYzGnkyY5Mjjox62VxGeyQL3L0UsG+PFfoaqCzEAks1GIUHn8vM8msY69lztV5vIyhpy3MbAdVy6rUebnywdo1PXouPVVxzrIl/M6rnVJmqWEendQSRLcR1FPBRTi20MKRoygkg0ahLsgym2hoKEnqoJq9SIgj7UGdRpQWUAWet2sFBB7hu6BGooSGs+vdBJ0Njr4IJF3uBQBBJa5vr/RELoWoyCSxG0fdd+yBtE6O2qCZRIRGZ1fVURIVHQaoJOjpgkgv1KYJIa9UEsbk1KgbOxiPSLk6lUKTCrd0GZAZ+qikXdgglojRBLuWQBB81BN7+SBGnigT/ghiFFCACoaBhEN0DfsgYA8UDFNEDB8gqG5JpYIHc9gguBiTWoZAxHyRFAVoguhv5KiqhhoyC40DoAOzlr1UFBzVmAVFktGl+iiqiRT8UHQB6XAaNkCq2oINB2QBdnZgdEDdwGHkgC8QepuUU3uWrT1INoHV9EHVikBtJJMNQBqtDd2iaudI9QqM8khQAWFfPRBnYB6hFenwMYLEkg6+HRb5iPYxxhtd222WheaMSAHbUKq5pZABQemJet3UVWEGUfO/QFWNRti48pzfU/b5arSvS4uEiJlKIBdg/Vbhj2fiZjj5IbqyEmJOjqyJXuZIxJmW3QmW8XWWY8nn8c7jCUfSLMbH/hWVqR42Pi4zkAkdrkgdD4qerWO6OL2sEpYzMAEgxB1/ot/hJj1v49Hj8jCcfLO/KB6RqfNPbWeuXu/FcHkTzkSeWMBgDcdktTXdysGw0lKRAoD+1dOWa5pTyGhFOsrkp0xjyufOMAaPMD1ALFMecMGMjfFzcEdFKri5HoBAtZgXWascpEi5cA2HRlFXjESwJpqepQbnGZnFCAf3JB/Dooj6vjxOPHDHH0wiA58FtIy5XMM87QvCgibHuqrh52OHKgMRBiweQRmseBx8UZbRlGTC20MWMT3VkSuDl4MfD5G3NItM7sWv1WbFlc54+XNtlGJm5JE+3RYsalLl8TjSlEGLzZj4pcI4ZEw5W7FEjQ0eoWbGtetxeP7kREiuS4fUrpyza6OR8VGIMQHizHxXSJOn0Pwf+Ti4mL1kkemMuy6Rde5zePnx7DHMIicXlBnJPZZvLtx06vhOCY4TklkIjA7iLk6spjp106eTk92U88ARC1VqMPD5mLLInUmkT0BVXXHzfjcOPFCO31zLym/RCd1z8uWPFHfFhtix7qN8vIzcmExGUDty3I7LFduY6visj5TlkC8Q7dSudOhn+W5GXliWWInAUGN7eS491145mObP8tiycmWIYzjI+0RXj+ld+OPDv4vyOGMNsw2U/aTouHVjXq6I/IZhjPvSjKRkwYVZeX6W/wAvRzz/AE6+Hy4xlExx1H2gWI1Xn/HWx7PHzQ9sTMANxv0XSSOVWfkJwyCEyBX0ZRcDuse3lr/OY3yfJZhkbJkhM7aGYuTQVXX3sc5xP6eNn+aOfjzw42hlxEuYvUOxF1i97Mdp88uvD5HKwyGXDHI2WYfHjlcFJy6W/wA/w8XkY55coGcSFBGQi/maLXPOs9fX+mPLlsPsYJieEf8A8RzXv5L0SPLbrmEONhyROTjjkxcnLicxMiR6SD4r0cc44267/i/kfc4mbjyxnFPGKAAmLGwfqF7uHn75ysvi+VzuDnGfj5t2KZbNhBJcf/HRd+Kd5Y+x4J4svcy4a4JsT2lqPFdo8nS+V8ecgMvcjieofWK1DnpkfiNsBk40vdGMbpxOvgq3O7/LLBziD7gG0SpKBFitSN5/D048r3MbAE2W5HK+HfhOQbYQDRHqkFcY17PIx7uEMsaZJ/bArMR89xcg93NjlKoJ3dHXZKx5PEnyYzlCW4x+2DqwnWPneXjnLIBlx1AZhoUrrOnXixZZYBjlWJFDZc61e3TxxLFH2cYYAvKRKxaxenq/5uMYxCE6C6muVrfBnxSMTBt0ayJWbWXznzn8pmeYcPGybhGk5A0K5ddtTl53L5cRgOWI2ynqOqzazI8o5aGpFHJ6lZacMnnJ6s6yrpwkNQVerqo6d1QNutA91R1g7sm4xjCzQjYNotRGsQZTc1XSIc8AlC1tfFdIyUOKREbbguVuQ1tiygZAJaFahK9vg8siQIIbXwXTFlb/ACXIfaY0xyFGVjVcXCjizOJOBiJJnLULNhK+V+Ty8XHzM8ow9O47QVLzXK2PByZRPMZAN0UcqJ1gCBXqUQoYxIW81DW8YbQDS2iiOfncnHhg0i+pHVY6uLHz/J5pnMkREIk0D2C8/XbeOHMZH7pOSKHsuPTUcsmBoG6lYVjIB6VayzQVLBnAqO5UEbWazGsT26KKqgf8kCyQlGTSI3EOwsoMCWq7f1QQQ4rXuygzkC/qv07KBntR79lBm1xqKN17oFK4apsAggs1DUlpE6IEwelCUCIJDHRESWb1E0uyApRg72bogTDb0L1VEzNzfomDOTt3KImoDXCBSYEN9EEFxa6CSXoA3V+qADAWduqCHfsECsKGiCdWNVFQUCJD1QSb/mgRJUCZAiwQhPq6KjVQCoNUDsgfm6B1PiiHr+iBgIGNQgY0VDCBhBVWtVBQuAT3KCxVi1NQgbuWFB+iqLAqBcIKLgtUDogpnlUaUH6pCmP26OmC2PUJQ4h73UV0RPpJemhQFRZ6IuA0cO4FAPFEJp0jXxRTjUtSIZz5IHGQkQ1Abf7oNYE2diKIOrHUNZutlqDcD02eT3KozyMCaCI1HUosPHI7gYkNFB7XxsHxgaXFNe66xl2yO2W0N6byGqNHmnJ/Sa7bm48EVgaA/wDZvPxSLjWEYgeiW+BiDIkMN3QLWNPT4MAcuMWMy1fCy688t88WvawcKRyxjOJABYELV5W8PUPwccZOWM/cjkDknqFMxjrmw4SzQ243YE2JLeIREZY5PdnIRnkahlEOAVPEakji/wAPCZ3cSBIILAHUKW/01jGeLP7RxwjGEdSC79ys3pV/Gylx8sTHK8Yub2ITmrJH3XxPKjPJhjPLvzZI76NZb8Od5epyJHLkl7Qj7Zixs791rn8crHiZ+Pzs0ZYsWOQyAsMhF/Dsujna8D5bLyePLY26bNIAB6XJWKsrz45c0cEZZKCVQRoO6yrDLCciYxi5ZwOr6rNGcYR3Fy4iACw/BQXcnbQuAI6eKD0vjOKf8rfK0PtHQoa9Tk5Z5INGW1j9QqMYiR5OOZcQIrLoy1EV72Y5skRtMAAITa7qo8fNx+XHkzjX2yXO0dVMTXozw4Djw4sw9UI7hLUeKtRpxeRh4kvb3DMG+8WDrOrjwfks+T3ZZIDbAE7XFSudbg40MmLCOTOUInJ9sSKtrRNV04pbpRlhctVtPorKuPXwZDIkzixMX81uVjHufBSjkgYhhGNTTVdZTHTz+RLNIRjH+5CxCdO3zjPj/K5cUY8TcRmzSAxi1+q5e1eic6+lyY4Y8I40P72QtvMTQHVdOK5dx5c8EokjIHAqPJa1ivO+QkJx9zaYgFgoseL8txs0+ONp9Mi9OqY68VwfH8T3cvtGIJ1kdFMdOunsHBjxcbJhxDdIUlICr+KzWJfLxz8ZysUhkbcLiTufNcOuXpn0jjyPi5Uxt9T/AHdHXk+nLvzdGLJlieszKzfivL1y6zp2+7uETIEh/UGsVw741046x6fABia2j6gTdly/zdL29OHJyZ4ER9Jf7Vc1PEKEzLKRICAao7hYnG1r28OL5HNPJmBlP0xbZjJNws981vjqSPCz8nIJTluBlIEFqsQbrPPh13xgPN97jxz7PcyQIEpG9NSu8jz9eCx/ITEZEmpcCQvX9F34cO3lTzNkLhsYvPqV045YrYQhkh70OjOvVxy8/VTwZZck8sBKgFwNV6PnHPu49PhceHDjDJ7cp0JkDqSvRz4ceutdc/lsWPMYDAMWPMxcG0l0TNfQ4pY+TgEM0oyyQiNsQat1Wo5XY84ZM/FySnGZMpSpE1AC06S69TByeLyyITxw9xnnS57LUZsx6OTj4IYIxhjbVajnrTiyxsYmhArJVK2/zuROMIYgD7dBI9OqereuD5PFHCZcqECQS2Q9T1W5XLUcaAx8b/JANdT0VqWvH+fJxZcPJEtmLMKganss2t8VzHl5ZACMg0ahxoud6atSROcoylJzLp0WL0zenfhA0BERqs3pi15/zvz5x4ZcHhVnINlyfosdVqTHzuHBsJnM7YtVzV1hdXnz7oAN6T9oKlGBO59W00UUxAt1A/NXBcccg4uB0FyiOzFhjIBpbjqenZakGmSMgXD0DArWJpjJKEWHmepW5E118fN/bYuQAukZYnNNzGJotQpZ5y2gRDnRdGXs4uTwjDjwxwkBKI96R/7dAteW9jblS5Ey2Bowh9gVnK3pz8c8iJMc5PqFWVxjXg/IYRk5eaEo0NY+CWOXTwsnElCbEtAltyxYwicIylQ+mNpKC4gbHIZZHHyufHFAiNCsddK8Lk555sjk+AXn661qOUvckOFyrTKdQDtqDfssVXPkruIoWqViqxJrEECzeayAGRpQbRTugQYkH9x0QUwA3dEGcqBzRRWUnDWUGcw1/BlE1E7kk9AEAIgk3I2/ioqCLFncN4KBEGNHel0GRaQYUev0QB0dgUAXFfIoiDFgWcvfoAgCWNKP+7ogW6pBN/8ATqiZCI7dEGZrUpqJcg20UEsbUcqiJgUBJp0QSDfuoACJuT4qiCQBUnsgKeLqCC+lEVJ+39UCJH4IJJqOl0CkasNVAvLwQSWfogEVBUAgFcDsgYZ2QUGr1RDAJpqgB0QNA6XCobm5QOvRigroyCmDEG/VAyTur9UTVgRtoguNdHCuhguQ1KaoKcmQIvZIq3chzUWdQwyauRXUoLgTIhkG8IPHo1iihjRidxugJRL9AdEBoXKAMXoaS0IQMAkmrnw6INYBwOgLoOnHetXs1lYNmDer0k0claEn7g1SA4loUFccCUiXIjcjV0H0XApg27m3XkRZdYRpKMZZNxjuFqUBZGsUeMZwiRXIS9LRA0TFZzw5DIiFXuVcajpxcTII1oAbdStyK68UJyAOP/7IldeXXm4+p+J5EjCEJ4zuJrIrTpmvXxj2859urjaYmwdSufcLPw5TzY4wgwBMjI/a65uMjj5mPm8HD7uPLLEcshKOOBoWKzZL+t+p8nBGWfNL247DtMdhDMRV+6xzPBOXjczDCOSjRgbVurcawcP4/FmyQA3zP7hGgUwnNetg4/yXx+WM3Md0mxE6Do63z0xzfL6/4/PxoYYybbycp/uTei3Tvl6OLj5sERIT9yZrB9Qt/rja+c5nweafIzc3mmMTkl9o0C05vm/kJRy5PYxBogkP1Cxixyz45+7aRtoQD00Uw1l7U4MHaJd8Y6HqVKpxgd8CSzWUHu/H4tmAk3lUrWDmyQzZMplEttLDwUNdeWU4xG3QBVNYeyWnASYTqCNChrjB5UsoMch3wPridQNUStebys088TijujED3B1CULPx4OTh9E5gEYnUVMeJLkNKcDvjaOhUHLn4UzljHNEwlMFpAOA1lmxqVnDjfKwx0jSJ2iUTeJ1U9V9o9Lh5OVhg233Zi0SdFqVX1/xo45424fcWORgzFdZWZBzIZ4SJwEEH6rVdeMPjcfj8qMcvIeObF9oarrm9EuPa+KlDFGRk8ZzvLsrynflnzsmOMnMnBsSF0c8eN8hP3Y7cZEZdQiY48PF5YjtzETGrdEi2uvD8fgGKWTANsgDuJCqbf5eXiyCOZjL7qFjc+C52O0h8rjnEBaO7vVZrXNeXzsEJZzIzaRiPUKCi4d8u3FrkyTMWIkCI1kdV5O+XaVPH+ROPPExI2k62Xm/l1e9jzY/ZnyBMkWIu7rV41OevONOBzhgkYwjSfqeX5LlzMdrNjrGVuSJ74RlIUBV9PLO+HL8pnjGQjOMan72o6n05a4eHyeNn9Z2sJ+oMHH+iuc+NdP8ASMuBw8gGaWeEsWCYDTk4r0Xf5/Gz9cfr9ZfxxcmeXHkl7RiMJoJHsr6Yxo45wZIPPKMm68Boeq9PHEce7RHDyYS2Y47sIH3eK7c8uXXT1uL8bihxo5IviLvJ7nuu8jz9d+WpyCZhiBM61i34rcYp87/B37ckJbz+6NqLZLWnFyHFOGXFkiZ4xYnTotSlr0MPKx80mcoD3SK41uVmzG8Pisscsc3ubGD7dfBdJU/0elPnSnhMYgvD0nutRi0HNnGKJmYxhMV6qmt8XLAAhH8NQpU3GnyXIxz42LhgjfOQI/5U5rNc+Vtvsbt3ULN6HifMxx5ZYsWT1Rx/aOiaSscfBhKrkR0C52rrqxcYCIcs2qxajk+S+REMZxYLgF1i1ZHygnknMyY3ck9eijWtMMZSO/JWHRMNTycks2YyZoAbYjolisoxk4eymDoxQBDk+auDsxYwYyq0dO6uDXCdsaEeJH4LUDzGzlq2WkaYxj8ZALpyzW3GjinkEZ+nGblaEnAIymcR3Qi+110kZYRnk3PIALUiV2YfVHcSA2i6I7cOcyIiJM4Z1cHTCUsb48h3SIeMuqlV4/8AIwIZcGfHFmjtyDqSox087Lx4/wCKZt6rgKVix5JgI1NzcHRYZcXN5kMWPa9CLrHXSyPnuVyZZZS/6heXrrW3PVrEPZlirEliWuLW+qw0iT7Wd9Q+gUo48pIfpdc6rO8gSAaf6CyBoiwMTqSUCDjwQN2d27qCCQ1b6vbsorORof8AtqAmiZEO48HQSPt3HSnj3UCmQ/Z9EEFtB4N0UCMQ2gACIzIG3c1DognbEOWq1uygVG8OqoJBwSDTVBMoxa9DfwQIRIt5P0VRJiBIa61UVmAHZ9XSoiQclBJYXugmVQzWQIHwLII3EfdQdkAKxLIE9GZBEwN27RrIqTbuoIavZAiSVAq2QI0DIFRAni90EMooVAgaB9m80DCIHKCh+aB06VVA1OhUFA91QxSqB0KCg7d0FiwrQogaz+SDQbQe2qCokbfT1uqLLkCldEDBe9TYqKphUILNwB0qg1ifIBBZIoZFvBFD7qdkCAAJD0AdkBRi58kFglmDu1CgrGXYC6Dpx/ZQMB9zm5VG3/Y+QC0Jk59O4f8AkiuviQLAt3BA0CsR7nCmZAAFyP2gLcV1exk93fPp6YhXFj0OPxTQFt5DyHZbkXG2HgjNkEQdr9reJW5Go7D8X7U4RLSiRUiq1I68ctsfxEoT347CrtotvRI9OPJyxMcUoByzSAoprXh6E8YhCW1yYsZOs3py6uK4vIMpkSB9s2WLWMZ/Of8A6iEIhzttoGHVY6L+vMwY8nHwZJAPvoQXIHcLGrXlZzE5tszezVfwS1Nj0/jBn9l8I/ul3ABePR1rnpqdPo5YsuThxxzgZ5IReIPXUrdZ+km7HLx584gYzCOPHAv7kvxC1z3Cdx9JH5Ae1ihigcpkwhkchuvkruPP1PLHm+7y90se2WLGNuSJuZf+K6xzr5rPwpVljizXJFQ2iY5686cZlxFw5p+rrNi65MkQJnYXlqVMXWXHwTycmAckAvIdFldfU4Bjx4pOfUB6WVRz4o5JxnKUQBaNEVsJwhj/ALjGcB9UTHNLFLPiEoU2l2/RRRg2bTkEAZyLZK2ZVMLl/Hkn3MQJxyDSGq1YzD4vB9mIzTEpGIaMNW8Vixptthj/AP1EJH25Xfr0UHmcvl5p5gdgAjaL1KzrUisZybnjP0yvE6Hoiu/DGYyj9vSisHr8PkGMzEVBv5Lcq49aGOGXGZxpIBdIIG/GfcAIP7u6WO3PTsEvbxRzj9+nRJGt15/K54yUlF2Oiq+rilPHGZybRvsxsyJYfHzwJkDQnREvLTmZ8sONLBx4sTGp8UxJHj8PizlISyRLrNd7XR8jjnIRlAPKNCpYcPOz+3O4BLeqv4LnY6xyy4kRilalq6Fce/mvs5uHg4+8nKN/Qhef/ONXuvUxTkNsYwEIEsY9fJJwez0/ZwRmMkQDGBrjI1V/zjXP0rn5U8eXknLti7UA08Fjrjy7cdZHdxPi+PzZ4jyJxOGA3SMTWnVbnylcevtZ4jk5/wAxx4cnKeLihPHjG3EDq1HVvj8OeLZ5eD8h8n8vz8UsvIyxx44R/tx2gAELN2x0nPPP48D/AC/kGid8JUrABgY6rEjpcZYebw9spSfCx9QgBR6LrzHLqPa+N4+Yx/tZfcgWlGQqGXo5jyd12ZOZmjOMWJhaRW3LI6eFhy8ncccTGOOoJDOtyMWsPkffwsIj16g0bxWjmuWU5YscSATPIWkQVWtb8bknBmjKMiNlCfFbiV9L8d8/hzQnHkxIlAUkLFajl1MdssvH/wAfdgyRlOZ+i1Kwygck8rZiNkasrekrt4mIE+4zY+nULnekc3Kx5ZckZ4h4CkWsFZ14TXHzvk48Mbj6sh+gTE14k+Xz8vIGSZHrNA2izV11x5WeANPDRc7WnVxs2+W2ZNnbv4qDzPlMGWJEqCJlQLNI8vIDvG4xgB06o1jPNy4DH7eMk1eUmVXEY4SkSwfaN3l3QbQhuD6PT6KyIvHE7vUKmgGrI03xxlE+JbwSQUZYxozdLLUGR3zkAP8A8QrEd2PB7Iad2cldIlZgiReZYG0VuRlqcoAjGFZk7Ywj1XRGuPBIzkDFiCxFyDqtxmtofHEkgFn1W9jOV6HF4vswlEDeCQST2Wb1q8r50jOUTGG0wH4KSt2vM/kAhLh45RNRIGQSsdPM+T+R4v8Aj4cfHg0gP7pOpXPadY+f+S5WMQ3CjKWuT5Xk8qebIZyPaEdAvN11rcc9HND2/Vcw5OC71ClWE70Z2toxWKrOYeIpZ/V1WbFceQHv+ixRkxe1fwUVJ3gsPN1AO4c3UAWFOqilklkIJkBu7WIQYSoGJDvdBJNCTUCzKBGR2gP56eCgT0c0ew6oIMi9LC7oJJLUFD+SiJ0bob9kEguC7XdyqDcTJmr1QAsG0PkmhFmcyuWZVCJq7uR+SCckoO4DdUGZk57IIcO7II9Il1BQD2bzUEyABceCCT3t1QKlBcdVRJpJgSOxUCLG4ZBBAtooqWFWQTTSqBaqBFBIdAv9OggKKDZAIBUNBQRD1QMIHGzIBgaFUMd7hBT6t5IGxuKIKigY1HVBcWoCHZVFPF6hQUKGuuiC3cfkgoSFC1TRh1RVBhSr6oLiSC1wbINIA30sSgsOwt2PZFM9OtigQBjKpqgA96buyB1ETSrVQaQFQ1wEG8DF4glyOlVqDoABsHBo50RR6egcUdUehxGOICrnRqLUHdxcuSBBB2mx22butRX0HG9rOMM4HbH7ZP8AqukmtTmve4nxfGM2yE7rhiu05dufna9afBx4uJ7sYAMPNXG+fl58uaI4kz7w3QlGDSx6E9Vm16f8l5GwnCRN8eWDiPQ91PZvG3BMDRt2QWezdlm1i8uoZBK1epClrjeQGxyiLg1U055XMRm240yHaB0WeovXDgyYskJSgJfuYUoQueuTlw8AwnI7X3fbFqRPQK7rOO742E8GbbkeJkaMNV05ducx6PM5M8GaIdnjV7FLXn6uuLF8pvkYZCIzxmhYkNdgt3MYsehw+Rl5JxDLOUePEkbRQh0kbnPh6XsS4st4yXBMRfwXThwteRz5nHAmUg8iS13J1XRy14PKzTIZ28ApRicUY4d7/d+amGt/iuPKOQ5Zht32v0WcXXZmykOxcksPBFXhlLaMZJc66KK58sJzkA5BBuhrogJ4+N7kC+Tdtlj0I6qFTwsRGSUpB4yL7RoVSvZEID0kUkKLTLPlRkcOTbRgwKzVeZHjynh2Ekjss4uuSfxmYTllxycUd+ynqvsePi5twO4Au9VMXXq49k4naRKVi3VUa5o+wwiSJMrhHofDfKcbIBx5PDk7gxNpR7LfPTVj6AYMOGJycg0NIQW5R53yE5mEYYhtgS5C03zXHlwGhiREa90b9nJkwAgkAhrFF1OOMJ0d5Cpn0US1345CbEEGUQxIRkDjRlLdtIkbGKlWV5+aWTHkMM0SAFHaY4c3D4xldpSqCpZHSdVzj47LCUdpE8RffJYvKXtnLjtmHsMOhB6LleWfZ3fH8fN7sZ5tkxH7QCpiXp6OWGXMYmMIxhIEE9+it5J3jDifByyZjDKSCC4yD8k/zjpfuX8imOHxTwuJFt9cubU9k75/pfj1t2vm8RGNhleIi7O9VznD03powzxOERBE6Ai1V1nGuV6xyH+M4ONtHMnKG3/64juk+MjP+2/jLH8Xw5ZJkY4CJNREuSB1Wp84z13Xr8bHxcGA/wCPLaQPsI/Bakefq64J8T384ySyHGH+0dVcPZ7vDz4seAw3yJx1FmorHOxwl+dmyyNzpIj6rULMP5X42McWEYCwpulo60zz04v8KfGOSWfIJSnSMQX81ZFvWtsPPGMbMLGRG2YZbkZqOPycseQDjlV/VFaZvT3+JzxnybG9Mayl+iljGvoMWfHMAYwQG8lxNZ87lcXBg2ymIyP3AKyH6+Q5HyvxMshlllKbH0wAcrpqXhyZf5P8cY7MXGyCcKyMgxC59dNTmOf/ANz78BKVN59I7Llrfq7Y/KZtgx4mqGMtVNMcnMxZpwJOcyYOL0KGvMMTtBkXl1UabYwSNoIL0/3WoNoYpRDA0NCdVcTXbx+LMgE7YPQGRZUx1x4EBIn3I+5qBb6oYuPDMSYxG83d9VTEZOLIQBI/5VMZ4gAWIYix7rXMbh5pmEzIuSQy2nVc43TO4nyW4xTyY8mJiJNKNb1qukYrp+P5ewxjKr3e63Iy+j4U8c41aunZTodww45ilDdYakZcvjtjyTkzMwZWUx858tkMcWwwLEU7K2s2Pl+YTEEn69lmuNfPfN80GMcGMjrJui4fTpY8ckOCfU37V5207mDj0v8AtfVZAZEEgU69yoFulpIMKHxWWkZJHZ4KUcuQ122fosVWYcuw7RHdQTLUkPL/AEFA4iL1oP1QJn71eqgzyM1PoVBibt5qES3pDW6d0wIA2ND0UUtWZ9C+igk08kGZLkAuXCqIA+57AKCakValUDLNQkm5QEahvtFwgmLUfRXQNIilnQRMlmoTqiIDX8k0QCDRBLsWpRAiWqaoEaG/cMqEbN1UEzdgNOyBTfWvRBNgz1UEuAUVJN0EkhuiCXKCSXUCLICrorN1A0AqGEAgYdkRQ/BA0DYNdAGhQULWVDBfxQNyboG4aiCoafmgoUPZEWNS3mgpnFB3CouhoXs6aLjSPifosqdWb8UFMWfT9xQau5AoRceCouQ9RIAMW/0EU6sNBZggRs1u4QUCQQXAkA7tQIABx6vVLV0FQ+4RFWLt1RXRj3AFztc2WoNrxqXkbHSiBkktEjaX0sqr0+MJGESaA9ey1EdkYyBhYduy0rt48JQmJB26BdOK7fOvq/iJy5EhuykSGnVdfZ7vnH0eURyYBjJI/wCwV9ta65ebl4sseXdCZ6Mei52sTYjPKeYAkbZRoPBZtb1fCnOBI3MGZ1m1JHZjB3eksDVuqmpjU5w9aNRlZUwYJbniTb7VXXqbHTLGKUq11zsePqRccTy33MRQUooxKzyZhsiCKiTykLreremPOnDND3Zx3yiNoiNAmVzcUOfmiccY44jLloQ1dvdasHuY/keLgwRwxgMmWR+8C5ay6THT1l/Hp8fnYZ8KUs8HzwDQ2h6EsxW74cvp8scHI4fEyREuTExxk7t4P4LU6ee8vmuXPhZ+ZP2oSMI0gRYtqtMWMZyEI+sViDRTDXVPNM4MUhdmB7FZsXThHJJgwAe6itzIDJGPS5UGmM4pZNgFdSg1EPcnstF7oNICOLJ6BR2kUWPQx5McpAxHqNHKuo3HHEt271RAcoOYcb3Ik42iLqDHPHJx4HYARL7ipSOL2pkkyA7MFnGtb8TBHCD3v4lMNPmmRwaExF1sjzsGVzEjSx7qSNa7cH8kmcg43LmQYfZJ1r2xc17XD5+KcRInfC2/R1qdNWNJe1KG6RaBLOtazqPZHJkY4ZiMbB9VdX2SeBiwkmc/RC/UlD2qscYSBlhDRGhRrSjz8AltiQ4ustY3zS4/IxRDbiizw5IfGQnk3SFArjXu153x2CfF9j7H9QIN1MY9q+fhwMwk5/sRiWlKRqQFz65avTpHC4gDnliJFjHuudkT2rbB/jCO3JnlKMTQP+KsNrrHLxM+GRJ1C1EcvJlDky3bd041Mb2WmpcOeLi5cA9/DAAWADFXF9qxx8XDLEIcbGISgdwI1KuLeqeT4jLzcccnMB9P77eSuMe+fgh8B8fxXyDHtDVrdMT3tZcvBxcfDnLj4qmpk6Yk/XzROScjqdrRHTus47OqGPOOOMUAZZJD1Nqr6sVyx/yOHleUDGMnhtJcur6psr6eOLF/6iG6J9w3BWo439eRHjR9/IJDdkkPQ9QtxLWWPhRgST98S5A6rUZvToOHHOYMMZ3ms2Crna9b4/4zCc8TKft4yQZnssdVI6vmfnONw343xsfcmab9IrPPDVcXHhizRlLlHdOQ9IJo7LXTXL5SeKcPkJCQAEZ0MeixJhbp8mXHxHJPfGcxaKzUkefgaWQykaCoC5O0ejxyHc0JNA9ggfL5GkTf7kHMJbqtW3ZkVthMRL1VaxWkehhjD0ki36qjsOLh5Yj34bmrFFlqZZMcMnoiALBVdbHOJGgYtUhIa5uRlgGBLvcvqtyrKwOfHL91RqrqWs8nKMWD7qrUZojNhvAYmvktxGnHz4cmRpAymei3Gc125eJDHEAjbkNW1WpT1dnxuaE4NKRjONIxWtTHo4uQcbAzJIqQNFmxG3P5v+NwDmlB4APIk66UWY1bj42Xzp5EZiQAIqAenRPDle9fM/OfJ447Y47l9w7rn30xj5rNMykZzN+i83SxgSAPHXVli1QC7AVDaqKOjmqzQbSP6KKzyWILeWizVcsyasKS69llWTs1bVBWQnZy7A1fugcT0UANHLi5QZZJXfyCmiJdNNT3QJ61t1UCl2+4lqopFnHe/iFETKBrat/9kGM6FgP+FBHpHpd6oEdtXs9tUAzy1fVBI1PSyAJAtdUAdm1uVbE1nJtCz3PVQQWZ+iCTQGxe6CCXoY2F0CqWOmqBSNmr0QJnrqgREvIoJk+ttEEklQiD1dFSbvdAqMgk0PVQF0CbqLaoBj5oM1FGqAVD/RAeKBhuiBgaoh0QUBdUAdmuFBVdDZA6s4HiqK0c2CBxiCPFBfhVkDJFFUUHZjdQUDY6KioyoQXrqFFWB+VCgoBotfxTQ70NhoitRKvpAr00UGkS7gmoQHpZ/wB3VUAMQxrX80XA+hLn9EDMXuw1DaoHHc9fM6oNoBgHD9iVR1YwdtqjQ9D1VBUSBFzcaKq934/DCUHkNw06BbkR2ShgEdwNbE6LSxeDIxAEn3UJOisrpy+o/j3tzGTbEicR6StWvo/KXNe/jyZAIzzfczDRLcdN1nOcC4L9aHVTUxjlj6BEhoxrTV1nVxziZEiYwIGgOiiyx6XHmNrGLyIoQpa5/SNTCMak0evinNc+XZxsUZMQGD1W46xtkO13+0Gyz08nc8uTJKRiZYayFlI5458ObLBxOIYl5SH6K5BxfI8/le/A+yI7jSBLAwH7lfYdmKZwfHT5vKhjjxMrwgBXJus4VltS4fF+S4+OQhg459UQ0p1PitZeWZcfQ/H8bHkwyjOTyyESmBd1up3ax+X4k8pjjBPtn74jQiwXbh5urXnf+nyGBMIkQNPSK06rbGV5/J+NxQYZRIwlIGYBaTDos1ZFcrbkmT7Yw4iR7eKNREAUWaqeRy4YobhTRZrUc+PkznjkZMO/ZFdOPLP7gWDf6KiOvHOu52AaqLq82fePS0Q9+pQaYOTDa7vIFiyDuw8swJgXMJBNFEwkdkDtBQabYTh7c6yaiJji27SHFqrKpyyBiZCgdBnAwyR2EO/4KxK4M3BODJuEyYE/RaxPZl8l8f7cBySdwkGjtux6rPTXHR/E8vk4uNkwbxLFEbh1P/C5c3K73y9vJlMsWDfL0MJABd9c3XxM05cwziNmMBoRHVXTV58jTMswpceKsqxzZPmMcB7YkIg6rUq45cjSJyYfVkGgVxudJ4nPz4+QIzxmJuTomO2bHuxzQlkiYVjKNQExzxly4TIOSRIgBcpiPG+RyTOEiM9wlqeizYsj53k5cQEnehDN1C42NtOPzt4iIvKQWZEr2ONyXIxkbclzVajna7oykce8y9qdhKOviukTThAzMROTxNaDVaka16fG4uOLbKE3LKs6vmfL4ONEQyESp9ngizjXiZ/lJcx4ZMRhjFYMCHVb9c/BLmcXLh/x8YI9J3N2VjN5x5kfjcM5S2yIk3Tqri3p6HD+Mx4DKfukmDOdX6qMdda4uRlhjnkyGImSaGTO/VDGcOVycmKe6gP2qpWOLPlxzjKY3E08kc66+VyPjcA3ZJSjKdSAFdc8XweTjzwJ48NkdZTorqVvPnYoHZjmMpjWZAohI8jmZc+TK+MbInRqlIV28eWfDwp588SceMemZCrMr5qObJnnPKLydo9AubcZS4+ZzKUd0DcNqsVqUxx5xh7m302oudjcrbA5sa90bGYE5DoBdBeLAQR+XZB2Q48NtSB5aLSNIvEuDXw0RW3vUDDcOqqObJyogks5RqRWLkuR+qsKfI2ZMdKHqtRHmyjPf5qpqoDJUDzK1GWkJWga6MtLHr8Xhx4s2xtuMfVI3jqtTylb5I5Yx3TecpWLVZbiazhMiZyCG0M1luRi9GeVIgiD7zQk6BVj2c/8j5ueHxmOMj98mEHrTVc6l7r5LJkkMEg5Z3rd1isPA5mY5MtLC5Xn7rbilOLF6Hqei5WqxJJrQjTwWapu7rKqogYZh1P5KKjKAIbQFmjkmxDd3JCzRkf3aeCyqSSGbW6gAf8AQQNw1KAfigxmXlQsTqoIr5uz9UCJkNA+rIESfVZiPxUUiSS4BAb8lApkXI8kRlKTHb5ugzMu7dCoB7vQjXqgTtofUKuqEKtF2P6IH42CsQiCa2BsOyDORBcEeEeiCCS1VBFbBApUDgsqJk1a1N1AptSnggRQDEhhRBBiQTqdUElj5oJsoqCdWQSWQBibqBF7oE5ZkE0dBCim6BtRUJA0DHRBWlNUQ6MyBszNZAeFtUFAaqhvZ0DF2FkFQNfCyCwxsgcXq58kFWD/AFQOIkbCiIuJ0JsoqgXiW8/9kFgki1gqKBLaPoFFUAPr9w6INoAkj6B+iqqkGFabdNCiJ07aMiqZ4htdEDkQG70ACAhS4cgoNYC7DtU+ao6sYBEiAesh2C0Ckh6Adj1L2Q17vxMhkwbHEYRGq6cfiOrkACDl3Fonoq3E8ZzPfKsS1ArHo45fQfC8rLi5UNlYE1cUZc+69/wv8PrOcMfL4xjCe32jujIfu7K+1dbxlcp408fHOUzJbQaKQsxwS+Qyg7ZScadldxyvTp4cvdBnK1m6nqpqeztxSjFqkAXZGa6MMDkyamOgKQ55x6nHDyADBhRdE66xw8nkZZzkBGgJBOjrNYzUY4mECZFyQ7Os2OfXNViniEZyEd4MCBDUHqrjN4scEc3uQgeXi3DHI+1I9OhWoesv4y+T+Q9/EOPt9vHGsZEqzwnp/Tl4HLGLJ7mWcdsZBi91d0nD6LD83IxHsC5obFzZduXa/GY9rg8yefHL3WGSJ9TUJLJdjw/T546o4ckQc0p7YXEB1W5dcq+a+W5JzZ2x6H1dFqsV5fI5JaUi3p/FZWMOTCWbFCeGTkUMdXUBGEo4q3sQLP3Rdd/H2bS4qAAW69lB1boyxlgNgZz3QZSyExpbos1V4ZxA9TB+ig7MeSJAMTUXCsHYDi9oPSR0V0aYcWf3ARBwBQjV0xNY5A8pAhpDqpRzNLJL27DU91AsYxwJjaT6BakQ+Rjx6GsvuewVtTyzwZePKRxcirW8Fm1ccHyXGjEj/DpJ9NVy6muvPWL4fyAlhGLJKInjdzK79FOOv4b6kr3/AIfKJYPchEzJoJLpOtSRp8jjgB7WSsjUlbjNry/8KBgYBtgL7jf6rpGfZ6/B+Jwy40YyB92JcTBYkNRbnS65Rxc+Ak8uHqc9w2i0689a6sEYYxuhbp0dZb1fInyZDdibfAgh+iYsx5XO4nvH1BpfdKXcq4a8bm/HzxV/az1XPrln2eTPkiGWMojbIGtPSVysHYM+IZ4cnHLc4qBoVcZj2OL8vyeRkjGXFEoSvON6dlqQuPQhycsQThiIgUYjVdMTY0jyOfPDL3JCMgPSri7HjZs8YzY7smefSyuOkdmXIZYsUJPLJEgkBMZ10YRxYSlkEIxkKHW6M2nOcXnmiwgzbY0sqjyeR8hPNuhAiET9xepRuTHmxhl9yQlAmJBYvT/lRLW/DwSmC7tGimsdU+Vy+Nw4f3SN94weqzaxmvKHyOfnZIyjhYD7RJPZLI7oHJPF7WUkiTExiKAhXWHVAYhH2wNpN2Woj0vhTi4vK354DKCP7b28PFLrfOVv81m5XJ4ZwZYxhjPqx7AAG7qxjt8WYy4+YEhou17qVY7OPOEpbJikjSqzVxvz+JH/ABTKJoxYjssVY83HjMLh9XFXCljpKcJPOnqe6i66YExkWHYIa2jJjHpqSrgt4ycA1v4BIrHJNgwN0HLlEpPIOOo8FVc0c84E9NVUduLlAxJcB7ROgWhGbbeJ00WtZxwjkz3EOYuU0ehH3N8JYmLD1SOhWotr0Pjcje/PNPeWaD2W2db5ObkltMZAxFCAunMY66dscGccYzOIkCoHR1rw51y8fCTIOGALknupay8f+ScmB5IETuB9IGg7rFZfNfK8jHh4zRuVz76yLI+ckZEb30XlrTCUqRAHqIqSbrFVDsA4qTZZVcD18UUwSzqUUJABnDX7qaqMxYRGht1UtHJNn7rNVnItZ2CzRB0csoAdtLIKMZEDqzkIMZuaM36KCSGkWP20I8dQgTGLkaqBAkB6VUVIfd6j6TcBBErHQ6RHREYy6am4UEsXpUICRI8NEAana+jkoIEiPttYFUPcTQlNAXlI9AGV1MZkelwwDqUQSA46oJo7GlFRArJrgaKCZEAkn8ECNndQMd6uqEWGpIQQXEr0UCIZiNUIkkOx1RUGn9ECTAifogkqBIE6KgKBpoFQIGaoGBdAwiKDFAA/ggq/dA1QwBogPxUFgaq4KiC9EFVbwQF0FpocQHfTVBoNuo8kwaO4YUPRA4i1KqKuANAWHRBpEiz2NFRZkanc5P4IoYiQf1ACh8UTRaLHq7j8kUAl3H26oAF9ojYuYoNIBpBqEigeg6+ao6MRtF2MtRqqNCC1WYFmCqvY+LFASbLfLNd3IDgO7yLjqy03zW3EiBAjb6neB6Ka7c949HHPNHax7ybXwSvVx9P6enh+WyRAiAZF6AWAWK9HP2e1g5Az8SXtF5/uiVJXe2WPJngnPK0YlyWIWunj6s17MPjzDFAAGLVPiixnPfGgLqFrbhZ9s2LvJWE6exhyAR2ttyNSQXS/jHbyeTGWHNKEjQep/wDtIrMq8dsMnLjscn1WZ6Omp305ePzAM4/uODJi136I5Xs+bzJZszbTGMSzC5Pgr6uf4xzfHQzbs/JmceIx9B7+CmJa8mOCByHF7hIiC0iFMTa9j48RgIwkZE4gSJsWK68V6fl1cfRfGZs0IkSpLIAcYk/4Ltrn9Lr3s3KnDiNKT5mG0dU5rx2PF+TjkxwE+RCAlOsBCxH9Vty6fOc/D7mQu7UomM6048hjjGI+4Gx6eKY07o4BlgdtryOgKmMoGKO7d9zUUsa1Z3bCSCYg6WWcUsZO8kjdEVUVcpxBBNNa6BSh4ebH2xIEMHDouO3j8rHlxvJ4yh1ViNY/IZsEt0Zy3Gw7JqteTyTyYRk3tzarDVEc/FOQZjGVQKumIfK5OLCRK253krbg4ByhkrGxdnusWmFLEJRb9x1Q0sGKeKW3I8xd/BQcefimWU58khjhM7Yw1I6pkXa+i+E4pwYwRkMoRHoh4rHp/Lp7vQ5BOTPHew3CoN11lYqYwwjL6fTAH7St6j1/jxiMXJeV+zdFZVwvkeOMmFid240A0XbikuPNxcfJiltFgt2O06dGHHMykZkRLKY3rPmcdwJA6VI6pia8L5Iyy4p4T6ZAUl1KljFfNQ4+ac2yRDChP4UXO8p107B8XPY2HHIxFdynq5+71PiMPJGSEZlhq1CFrGr09rLgjkyEYj3aWvd1Ykoz/H5zjMgWlYjoFrYuuLJhlhnH25ASgKu31dVZXDm5+MSO+Xqcue6jcjzM/wAmMR2Q3TOUu70TWof+TyRL+47CoGizabHMJzzTMYxMep6qans9TAYYcO6Y9IuZLN6Zvl5HyX8rhEnj/GwG4lpZzUAasud7X0ePx8E8kvelllyMsyTvn/RZ1Oq9Tjn2WGoDSJ6rUrnXo4uYBDace7/yWp0zjv4fK48z/wDQ8o3DrfPSXl9D8Zi4nIi0sDnRuvit6vo5vmZY8WKMMsxDGX2mQdgNE1fXX598l7h5IEDvALgivmpTMa4c2SJG8MdFmj0pTM8ZebMOt30WbVcsZljD7WsB3UVEBt9IoLyPVB0RzEAAN28FVVlzAgmyDnjyouRQCwe6jSZ5Yna1TZ1REsg/7UFyqrGcYiTguLk9QrGanLIR9UY7ImwdVNMZJCNTVU1z+1OXq10VkZtb4smSNZEgkWNqLUZvT1uBN4lou9fJdJWLXXliPfiB6KBmW5WX0Xx3y+AboZzuGy5FHCzY7c9R8/8AKc6XHxEAgSyyOxqkBNcunx3ynyEsmbbGrWI/NY76ZeB8lmM5iBLtdef6dEcmYjYA9TQeCxfxpzSsCbALnVIggvcliD2Uqr2gkkVAq5TAVv5DwUCqPOgOilVjlNTd+6xRzyl1Czqs3LEk3tFQG7s6BwPX/wDaopyHpL+aIzkxND6Qgm4prYdkBIAUIpo+pSjNxShboeqi6TFiTf8AFEZyJBPejqDMgOWBANO6gigYEudAgGY1uVQeVQEEMWHdAANRVCkalhUmpRKiTAsKsioJqR9VBBFXNhZBLh2avVQIkgjp1VCBqabiUDeJ7MgRpRnN3CCf2mQaT6dEE1Z+uiKU2AooM/BAjXwUEyQJAnRSQQygaAQCBllSmyAqQgrVEUwZAB9ED1YWQVEiXYBAwRdUMOHOqCg92qVBTWFjqVdDDfTREq3r07JSRQiblNVYAH3H/wCPVBQLvroCoLD0AFlVUANRUKDWNWHn5qiwXcC+qGnJoxN4+KKGY+kAlnLoAAuBZAz0eoN0Dhs6FzqeisG2OYFbgWVV0ECQAJeT7iqPY/js/dzHEWEiDfQ6Lp86lelmwGJcuJPU9VbFjp42eEQxiDLQnVTY6eHrYPaljEjH0+CuO3MdXG4k8hMMcGiD6snXss46Svb+K4IwzJAvEi6rpz1XVxeDi3nLIVBLLNjLXkQyVnEHaAxLUUV5shukxptTFrXj4JQyGlQKdaqxj3x0R5Bx48kACckh950Gq6azfrrk5UsgAFMlA0isTL+s+zypj+5IO5vt/VZNbYJxhKM5Csa7eq1B1Z5cWcoZsXpjIeos8olb25ietdH8c/8A1HyJ488e4jFPIZ5ahwDtYWdTNb/x3nXkcj4/kYcI5+UDdPKRKTgAAk02rVuuUhD5DA5xRlGUSdP90kWSz8et8Zny8iePPmDQxjaI9Xstyt3qvoeLHIMcRP8AuZjIHq0TZasefppz+MMsQMjAQcimq6cuHXl81zMIjJ3B1otOeFwuKcxyZZUjjjQalFxtDJGMDRntEKUYTlkMgMTVusjWXJlCEcQDOXk6laaSGCMqHbuuyngZc2JiAIGhCiueOLaAwNakDqoa7+HMCpjQhkBlySi84VLsBogjNyTIR3Ex6t1QdPD+QxYyI5CCTbwT2XHF8lyBlyS3SaLUWbUxx8PJjM9m6hsVmFenilEk7astI1AyCJyZA3/VXBy/4cOTm9yR9Irt7qD2PjchjyMWXLIYsEPSIlTW5zr6HOPjDxcnIMaSAGPIDcrULMeNk5eOEhJqMtMPS+L53BykCM9szeJt5J5aeucOOWPdueQpTouvNRynjbZFw73K6yrKjJxTvO2gb8FW50585gGBNIrS68H5PHCWUHFWQHrPilY158ePlEiYxAGoWLHO12cXj5DOJlP0axCzUerLDgxNMB4rP62x5vyGLimBsDZrrUixzZfluTLG4HokCAtSLrilLmcsxEqdSLshrmyfCZgTKEjKJqAVLV9yh8PklARm253os2ns6eT8fihg/wD1OWPHxxrLJkIFFj2Jrwub/LvjeIJYPiMP+dyAGOedMYbUdVzvbpOP7eHyfkPk+fIy5mYiNAMcKRY3WL1a1sjKGCQiIgNU+nVTGbXr8LiGEABQX81uRztdseLORa/Uq4zrvw8X+0I0HQLUR1cb43KMgMHk7VGi1B9bweHx+DMEZjKOzdlJLDd0Wvafw3Oa8D+XQ/yZQwcY/aN2QvStWWsZtx8tHiRAMI/dLU3caIjL/EzRcSHqhUxOvdSjXFHfjJPpL0j1WK0x5Jxxm8Ys9x3UVzyzxd/IKa1G2LMXBrKMay7K6JnyDIFyxNWP4IOCUsjmQLsdLeCB+/NgXqNFcNSM5MjVh+quGtsU4yn6may1EtTycuKLwEtx6lVGGPOQWNhRNTXfxI7jdweq1Ga9HPxXxExrMfiFrWafEx5IAAhibBlqMvQOAmQL+srUrLphLHhxS3TDgVOjq6Pl/m+dHJl9JNAxJWbUr5vIxlOZJ26Ahc6R5MicmUzuBZee/rTHKWcO/wDVZquck09LU9TrnVKJk/R9Oyiqq10Df/8AaLOoolIltALDQLI58prfw/3UowmakahZVBFpX7BQAFyai7BQUASzXF3RRMhySXJu6VEOwIoB0QKrfcD4dEElmErxFioJkdQ41qhqTQO9y8gUGUmcuAxsoMz0NQRQqCQDbUCyBOGo9FQtSY0YoAlqvdVBeQ69EATS7+CtGRLD9QoM5bKt4qCQdwIFFQvxNioJYveyBVEmd6UQL0j9UA7UPkgn1RBaj3QTUMeqKUrMFBHl4oET0QSSoFVAkUkNSoBAKgQNkDDIGLURAEFgkVCAuUDQN6U81QwQ/jZBe6lboANqgurOgoUlTW5QPwqFUUGBa4GqkVrEx6O9uygbyFQLIKjJzd3qAitKhyUGkXHpo4FPNUahnvVrjqgPGrVJKKUpVoGB/JEI1JpTRFwAlnNSL9UFB9rjUW6INYFiZAbjINtNvFWDrxBwBHQtOegHZaG3xuaWPmYskXPq2sLEPqrx+lfb8qG+Ech2kEfaLCi9HcTmuDi4jPKI3YuSuUm134mvocHFlCIckgGg8V19XrnFke7w4wiYY4m4dj1Urpxx4etx+LJg9+qmF5xrkycfDDZH1ZPzWcc8YYZyyRyDI4ibRHVR1yOXJgGMvIgNUMmMdY5uZyYwxgxO3IR1Vx5+q8w87LGUHkWsZdVqRiH/AJW6PqYiNgTbuylis98ZziIUB+6RusWNyFypY32QLACpdGsP4/k4sOIZczS97cPaD7gRQOnPlNa/5nKgDPi7hmlAx9xqAdFva1/rceLkPJGAYJmeQyO6QJJ9R1WdcfZlx4yhyAJxr9tqB05a4tfQ8aXKM8cccwMTsI6v1XaO14v6+p+OzwjOUcmTdkoGFgulnhw+vP8ATb5KXuS9okiOxwRqU5eWvmYcQ4spjOZMTVibLbnXVl96IjLCdgsW1CuGuKeWJLSLHt0UGmKYjH+3cmklmjUmE8e2RHuRLus1cc8yZ67WuSs1U4v8n3HhLfj1fopo7pmMYklg9mCaYmXLjERiwIFWATVxM80sgBBERpE9FNMcGfJOUZB66eCWo5BPJ6IbiBuBMieizWtac2c58gSiTKDMrYmrw4skpCUSzdFMSvV4R9qUZZJOJWWh7EjjOLcSC/2grWpY4HB5AEIOAfURoudrfMjvzf4vsvnLRhQA6qTy1fC/j/meLmn/AIcz6I/ZDRbjPXlv8jDhY8RnkmAf2ALWudj5fl8/FxyZY8kvcNQY6JrXLu+J/nvyPF/tzw/5ELF33eK3z01kfUcX+d/ETMY8gSw5JaEOHXTYvo9fB8p8Nyo+nlYh2lIRL+ap61pyPjeHnxmUZRkGrKMh/VWdVix83zeII5TsluHRrAK3vUcJx4IH1ZQDropemcY5f5D/AB/gerPyYAj7m9R+gWbW5xXncn+dfxyYPtcjMGtKWOQFU1r0rgy/yf8AjuZjm5spS67JK+5/nWkP5l/G4REP8iUwLHZJS9tf5VM/578ZANg4ufKNJigKzfpGufk483865UqQ4cY+JNAud+jf+ccuX+X/AD+cHHhyQ4sSKADcfqsXurkjyOScvLyCfMzT5EwK+4Sw8Fi1PZpx8O0boBokUY0YdVYzenTHCbelzYCyrFrq4+Me4BUAWCqPZ48IUBDMujL0cAxmjKxMbjFHeNvqa6qPe+MwZZAZYNGMWBey1I3zT+UhDHukxlGcRXurjWvDlqB5k9VuVx6eNy8c8fJltiBG5l3SrKwGYZAagt+5YrUZZM4ApLyWGmYAmK/ceqK4M42ZtpLAX6KUgjmG71eXgjQysWIPiXVQY5B2yAEaMtRE5I48haNGN1UZSwiFSVU1E5SgwBqUNYyJer0qUQ8chfrdEb4eTITADgRV0etxefKTGTkD7QtRm16wzk43YOOlluM2MTySBEm5Na6LTLH5TmCGItJie+iGvkuXzTlbHjpEfdNxVYvWsxwc3k7MIi7nQHouffWRZHFu2wpbt3XKfjTnmfV3JWLVRKMYZWmBPbcA0qFiqgR1Ar1J0UVQZ6KBgeklFKQ6HyWaOadK2CzRzksQdND2WVTTSh0QWO4Y6KAHgx6oCddKWCDO1/NAEjS9h4KCC5O24Idh1RUkxcbjezdVETKTwHUIrIkgmr/+PZEZEmpe9lAxIx0c2KBUb+qqJ3C9wrAARd7oC1dVUIkgUUVkSAz/AEHVBGrDzJUEgkXvp4IEetQUEklxWqBEl6mqBMLgIFV1AvTcHxVCNL/6CikWuLaIMyS6AL9PNBKgRFUCRS17II0UAyBqgQNAeSIYQPVBVaDS6Bs9QgPHyQVGtEA4/ogqJ0Ouqoodq6ILF2ZBQlHxehQOsSATX9EFP6qVCC4s97oLFDUGlioKDu2pN0VQ2v16eSDWExtiAOrlUVAhwRbQdUNU/WrUB6dkUdK7jowQG2oDu9yge0nQdvBARNAagGjFUawybHkHDBvBIOmDCEQP/r/YCWJJuqYp5RywnSEQaQfXurFfoXFj73xeObMSBuZerqeGYji8cRz7hQd9U4j2fGPUwg5MhMjbR7LVdr0+h+MgTsnMU1J/NPV057d/L5PsHcD6CWEliw95/Llj8hw9o2SMpj7iRZYrn13/AE5+T8jGMGh9ju/VRifWvM5fyMsop6Iit1rE671yyzSkH3NR36hWRyrlnncg/a2iqSssnIlGJJMSTqbgdFLV0YuVuLyNKMVhuVpyMsZE7q0sFK0MGcbZRa9pf7pKN58+fH48Yxmdj+qL3WtxbjOHzA2mMIRFHc3Cs6iz1cMpc3kZYxiGeu7p4rO3XPq3+HfxRmlyN2DIcmQCIk1IFrstz9a56v8ANfR4ufDjcEyZzBvdyRL1P7V0nS99R6vF5WPl4YSMmZjj1DHRNeTvy4+bwZe/PeamrLq415+bkzxgYLxNAe6qOaOAnJ6xvlctZRGxk0aeYUpHLny7QDUuaAaBYrcqY807DEjdK4Ehp3WKuNsXMybAIYwKPKSg6eNnhnEjQiAqU0sefyfkbwxggg/d1AWbWsY/5GSbkk/+J/RBUpmcG/daTIjLFGcnD2t4Ko3GY4YsYkhVPFdcCcmP0NEnVMHZxsUJ4oQyyDx/d1KuI7sow48US+4WZ1aM4coYZCUI2q5WLGpXNypZs0zkyVArGOnikiXrWPx8ckuTGnqNQria9vmcKeT24O+sj+a3jN18v8xnwxyyxQg0MdH6nqsWtSPMxZskvWLg3UladnHyZDkc9itSrr1oiEomewONW1XT2PauXLAn04cmXGQXJjOVDfqyXpv3Znn/ACgJA5M5MGeRd1n2S2V5XMy8zITuyyJNKEhS9JrjhxIR9Ug8v3E1dT2NaZHLRjboRor7LrIYHekQOrBTV2oHHIkwAJ0oLKWr7N5PFg/qGgspausfbybN2QkyNQX/AAWTTxYpAu5IGhUw9nRHBIlm8hqCtYza3x4wJEbbUYaKxNbDYxj+79FUdWDEJVt08FqJXo44zHpMqHXVaxl38SEiROm00ZakHtcTjwl6D6SbFlvEdgx58Mx6mgA1LFFlVyc0M3HkDQxFFY1a+Zz5hAmZJYXKsYryfleWZyxYoSHrqSbsg83FknvMG12kKVqDJDZkI0NysLKvFLDJxOW0D7QafVRXFzfVJ4FwDRLFcpkYgOatVZNHuiMWmQ+iuhDOJekm2q1EOGXR7Kjrxl8bk/7LTNYf23MiKFEZ55xGTbFktChhBi5o7uqjbBjAj1GisR7XAwiUADbstRK75xjEMG2jotxh5+cgZgHaI6qpa+f+d5wlm9uJcC/RY66I8aWQ6eAI0HQLlquLk5fcztpGi5ddbVkTOQAp9FKuOeXiSXq6wqdx0dllTiWLXcIK/wBFBTxbq6mqJAMSA6UcmVtaLFHPM6LFVNH6BQEQdQ4/NBcenTRBJLdyUEhnu/UoEdADVndQZyeTftJooJepoxFAT+iCZEtYEm7oMyHBINAmjOXar2UCq4D01KBSZq1DsFdA1CGqmigOhYNVVBq4F1UTMGxvdRWMrO1DR0EtIFiKaHqoINzWgsggk1Y31QH6IEzjugmoLKAINzZUBA0ugkmngipkwF3UEG6BEnooJJdArjuhCKAo10VDqAQPsqBA3QCCgiC1kFIAVQVRAA1QVUCzoGAX/NUWAXPQoHEECmhQWzlBRtoUQOAwZkVUdHNEGgJ3Gx1DpRUbV/DVRVRb7df0TUigQ/QiyK0jT7QO6o0hEWrEs/kiw9rCh2v+IRCYbWjp9UUbYkgigNigqcgNzn7bHQKhhwRUvG/Qug6IS9bTpkNaGgitDXbAmg+31GRP4ouPuv4jzMc8UMeV5iQaFbHuvRx5jMe3yvj/AG4wmSBlMjQHTqtSu3P0senxPi24Yzen3J1BJqt1vq2+XocEZMUfbnIGRrWyxOmZ9Krmz4siPdIk1og0CzYba+Y+T+RxQyEYaCJqyZjfNcc/kuRLijkb4SiZ7IwJ9drgD9qrdjGPKlKRb7j90iaKximc4kGcsmMVGTK8XNPzSxGeQxMaVa4PdZsGW+UJsfFgs43G0TuLkt0j4qerca+7sxiL2Nu6NRzZnJ79O6zYWVg8hICxJrI2SRJHbw8/u5J45S3bAQDGj00XTdat8PZ+CnxcOMcfNCRzSluBsBDv3V5nhiZY9fk/+nlH/AhOeOEpCWURD7iFZyx/la9LJ8fxfj5YcnHBGDaNgPW6045lx2ciAy4TmlJhIUAuunNTvny+U+T4vJGYbjtwnUGq054jjZtsfZwOZD7pH+qIvJPaN8/tAZh1UERnx5gGRLPVhVlmrCn/AIsd5gXgaB7qUxic3Dhi2DJse4d6LFbxtx+XwMeA4sM5AG8iLrJjHLxjScPVC4IrVQI4skYgAEv21KuJoljYvM7T/wBVAcXGP8gRekrlWDt5WEgPMeAGq1WY86fyXtiUcW2WYUYadipq4y4/+VnnGXIykE1jEFgENdn+blxZMeKE9wMmYuUXXuxyGWImcQREVHdbYrkzc+OMdZH9o6LNWOz+NTw+1LnZRuBkYwbULHs6Th6Xy3zWGGDbxsIhyMjhhoCtS6z3JHyuH4Tm/I544OM0uRlkwjMsK6ozK5IfFcnFy83EmGnx5mE2YhxdZnK67ocGcSHtqtJrSctvpiTRTVYyMtjOzmo1RpMsAMbHs6g5s2CRl/qiDGfHhrQIpRwxMtwjRrIJy4DaIqUNZGEgW216qLrU4Y3p3KqaBhgXpuAa/dXC1ceJHd0KuJraOCICYLhhYOxJVBLDEjadbBrdlR08bFIRJjUUH0WpB2jIIxlKUWlaK0jp+O5PraIcDT80lLH1XAzYZbRIUNiukqY35OGRkGPoCI8nl5zHdCFtT1QeFytxgQCwOmiqa8DkgjkbpAEhh9EWM8+UuJv6pHpRlitQbwXBk+qisck4gFhVRWIztHroymq5zlPubiNzWibIjn9rI53Vu3mmGolGQtcJia0AJLvQarUHbx8p27TUGi1ErU4jIbjQarTLky8aZyOLKYa3xR9J3Ds6RNdHEwkyoGAsFqRNezgxGES1HW2aUt0j6BQlirEeb8vyI8TFul986RBur1WY+SyT9wxkQfcDnISXfouDTHPLZAyNJH7QFOrhjhgDUu5NT4rg0ic2YX6kdVLVZGXd63WdAZOatL8kVQ8GQUAzNfVQD1p59lmqU5jq6WjknK9fFZoxlKx0WdUOKhj1bsgqLlq3oPBBRGoAPQoJIYG1PzUEycekhjcoM5WNovRlBEqWLKURIkOHdg6Kgs4LX0URmTRyWm/4KhSYOTR7BQTt0Ld2VDJHcNYdkCeNe1CiGC7kaW8FQP6gevXRURIEByX6lBlMOKueiggyJ1soJJOqBEDwZQLTqqJqx7IEzsPxQMmQF/NQSTrdVSdwKXUEN9FQjdrKCSD5IJJYUUCQK6KT6oJUAgO6BoG+ioAgYFURTtaqAugsfigVUDYN4oKoTUqhiRdAwXQWCwF0FOCGQMAd9qIoEiTAO9n6Ipgs417qDQNR6C7IqgSzkeAQU8SADStVUX6Xp4KK1iPWAddFRqWYvXdceCBEgkNQxt3RSuQ0a6lAiAwqX0KAoATRqAk9UFhwLggXQaQYRL1BoerLQ7+PjMw9DjAaLmvgtQ/HtfHcmXFnj2jbGgpounNxH6D8bk43IwDPI+7NmHUeK6tR05xmxZY5C5g1OgTV1nl5wMYz/cHqTYKyNSOTD8tLk8yMRiE4wBHieq6SR6vnxL+vR5n/AKD46UeXysMcxyYZNx4l/WaAnzWa6f5yR+db3ySmAACTKIFDXTyXF5rfLWE5UBc6uSqKjnOhq7NoB1WtRrjyeuMpnc02ENPFVnWwymQd/wC4f/sER6W7KVlhlmzkC3VZWVfGzzhkDEbx9r90jty3ywI9cr3ke5SxqWQSlKcI6DwupWr1rlninI6kPQLnlY8tcePNxNuUBpOrLiTrHX/7Llg+5GB3m0tGWvZn21UOZz5ZcefJMboEUK3K6cdeX1J+ey5MePHOJODcCGNp/wBF09k76lr2omUuNjhim9AY7dHur+vP3XHn4mY4vYzBgCSJSFV0kcb5ceTDj4TZYkSlOJEvBGcxx48RzTJ//hkoyn5DZhg0I0H3EqUkeRHlAmQyW0IK510KM47Xi22J3VDkqWC8+UMIRDMxBt5LFjUXxZ53MoSIH7Rophr0Yc7mQEYzEZjUsAUPDnzcnDKZMh6wftHRS0xz8fmA53hjMthYCXRQd/Lll5R/6t9oFFtlyYPjseKWygJ9UzqrIeVxiI7zEuAGdWIyhgySJyMWix3JYvLt5fyo9qMB6Kes9ShXGJjI84l5GgCnRH1PwcoYRDjENEx3SfQlc5PLrvhvP42E5yyZcwxiJJkR0XW+HKTa2y8bBlEM/GfCcbPkdiTos/8Apv8A8/jj4/x+GEsmWUt+SRMpSNXPVaxyLPiAjS6mDzp44gEyuFFcMcv91hXqVlt6WPDugJGnRaZcWWJiZah1FjD2hKpUVrj44FOiuGqjxRISIDkq4mssvEAJoWjr3TDXLLH6TurEFyUxTx43iHDVskhrsjhaG40C0iDtcMWQbY8ctrRFbq4avHxzuiJP1PRXB6PH4sdtKPbqtSIWfBtNbC6qJ4PFnk5AETt3Gj9EXX0GHFKBqX2llcTXVlnmIGyRP/bwWljg5eAxAkTR6+CRLHl8sxl6R9OyrLwPkYPOUtvqj9pFAosedIyYOX2/ms1uLxBySOjlRUZoylSJ0clRXHk3Rj3KmDOP3EEXsqOj2/SHDPqtJU5uMQARTuNUxGcMJJoH7BJE104cUo3Dkqo6AK1fa1B3VDxGBMgWANyiVYw4iHekVpHocTDAgEUBqO60zXXlnHE0ZH7qLSM8+TDx475SApR9FdSvjfmuXLl8wmEnxwDDo/ULl3dHmRav4krMHJnye5kcfbGgXPq61Izb0gktosq55n1UFNQudWMiKlrH8llSBLgBQaAlnNOoFkGgBFDfRVVgE1/KygwzEgsLi5Uo45/cS7rFVlJyzX6KAc3Ot1BpGQJZv/imijOJa4awVAbF76AIEQWrfqoMpVJNBSo7oMiD2cKUSQAKXN1kZS3G1ggggit2rtQIGx0NUC3RcC1aoJMjVqy08FQEyNmAF/FXUVEkaV0VQySwapeqCJkadbIrIu7v5LImZID9boMybd7IJNSa1QAiJaoAEgv9UDDElgglyKHVAiC9qIJNT0RUSpQKCNFAiT1QIuUCPdFI3ZAqoJQCgbIBUCAQW4YdUQEoG4sgdkDBCCqtamioLDxTBVv90Fen9vm6CogOXCBsXpoguMjZqIhs71/2QMbb6CniorQSAABNCqHXSh6dkFxPpeJcWQUC4JZgorQE01PVBpElnMqjpbyVFkAi7xehN3RSEdzkUmL1oyokCW0AF4AklQF9ol6gKxCBiQqZMDqSiNcIlJw1Xr3HgrDXr8bHGIYCsQ1LLriR3TkSIuagXCtafS/xD5X2+QeNkAY2B6Lr87vgfeSxDk4QNv2Ak9AFbCPkflseXj5pkESE6R7BTa1Onm8X5TJw5HratH81rnt24+nhw8jnzzT3Sm9SREVp0UvWtdd65xkjIx/bjP3f0WWVzBPpMWJqPAIzDnkMpxLARJag0CtoYlU7bHV0R04GnIQBPd9CrhVy40juFDs/FRnXG84zDybUveiy6SvTPK4+TFAxu1RJaqxGDKHEZzEWqD1SOsrqx4cc8sREnfKppTyWb+s9dOjm8M5IwEQ8f3FLzqTnXpT+O+NxcfCc2UbhF4whclbzHSycvF4+X/8AWSGYCMMhO7cLNZZ583y8/V16eHkRaGOJicVTGQFbrckjOPrOBn444uMgDEdth1dbk8N9c+C5WfLKT+57mQU2yrT9VuOFcPygy+0c2XCBkkGjEFgVWOscnDExxo+7TLKwBVYR8ljOTDOAI9sf/YQpR8rycOTHImI3RFgD9Fzsb128XDkjGJkfv0NgUw104OOJSeVQKPo/VZw11xxRiKAEBTFGWO0AxdlmrK4D7kgASBchrmuqitcEIbiRUN6SPxSDtwQyynExBjDqbnurjOllxNKUq0uTqFRZ4x/wZGAeU5U6hbjNZjBnx4zE6XTF153JxyLRjUm50VsRt8RgnPk7CHBIYNZlJytr6zjcLdukaDrrRX1Z1jzoyhF3YWEXU6iyuTi5pZMntSlIRFWBsVzxvdexiPHhwhmOQEEkDUkrcqXllGPvsIvUE1CuMV53L40hEgUi7KWLK5MHGDgD7Qak6lZxXs4sHuY4kCgC1E153J4jTLhv0WbFlZx4xjDcYlh9ri/dTFEsNHcuTYK4a2w45AEm4oVU1lyBtxiJDnTv3RXL7LgR61PiqNYcW0gCe6YLnExjZzZu6uCI4A5Mr9eiYut+Pj9b2B6q4jpyYSJOBXRXB04SQ3VINjGOR9w8+60Ojj4YwkJRAJFiiPW4/Fz8iPoxEwH7mo61BycmGTHvxkkBMTXBLJP/AB8onLc32Oi3rXkS5GITnGUmzDQ2HgomOKOKUsoBiagvL9rdlFcHP4M8TkQJgT6ZUqixxAygLHzUaTLN1Y6gBQTlMTFzSR1Whh7RDSP7u6mDowksCaMqjsw8Y54CeJ+hC1GbTlw8mIA7GYMSNSiJxxEiztSsUFZ5EAAR2gfiqIjPFdmHdErPFJssuhKsR6/CzEAUcgt2W4yj5P5HHAboxBlG8ilo+Y53OzcnL6pmUD9x7eCxR5fJzmWQRgPQPtZYtRy5srDaDU3Cx1WsYinbxWROeYP2xECBWrueqz1Vc8wWFQSdAs2eFSOoGtVkBAoLEVPgpiqAYAfggsNqmKssI01ug5c0/I9FmjmnW/n3WaM6bm0GqypswfzomDSEST0YOSaXTAgTtMRZ3J1TAtD1evggJy0Aq34IMpyqT1oQoI3NQGoUESL+A/FBmw3AaM7IAE7fSxr1QRJy9n18VBMtOtiqEAH7dUQbS9LN9UVQoxArZVCJox+10RnKUbtbRBnJyW0uoqT1CDM3r5IBwPFBIapN+nRQNz9bqhWHUBAbXr9ECJOpZBMpFqlxoiokf91BFAgkjVQBQTZFL9UDoghQCAZA1QIGgaABLIhx7IG5e6CheqBhvqgoAUcqhgUHRA/BBUXfxQVHugsNrcaoh7iAC9ygD9zm2iK0D7WLEGigpyZW0ofBBTBgQiqBsHf9UFgsWdn/AGoKhJg4FAWPcqjYSAcUY17oqTESpLSroEwNQSBrogZYkSpWnghhmIjkZ9xjeWhQehwsD+p3ljruPTwXTmM16UZGMAAHepbutasaRJqLMKDXzRWmDkT4+eGePoyQbdq4VlwfpvwXykOTxhkwmW2YfJrpYr0zzE/HlfMZd8pwNielvBc+or5zkRDkE2+0duqy1HEYsaHbEXpcJrU6MbRA0F3Y3IRvV75ReQLxNg7sro027S1mDxB6G6ICPTcCHVUGLJISpTtZ+6kqa9XE8seYTxCZyNsI/Y2oVZteXycMjKQl92vgs1ea3jly5QTPbGEwI7QA/pseyNXryomQam7QMlPZ0Yjkx5hukIgsK1YKauvenzON/jwxYoEYpBjORck9VuQ1wQ4GTPLdikZThVidFnEaS4GXPjnGBjHKC8pSs3TxV/VnOu/i8L4/DLB7+eJyEiIxQstTmp6V9Ng+P4wHrlKMZVoWoFuRi6iHMxZoEYMW6OORBIHTqtM46Y8WXNMJNukRY2iy6RnqMI/GcfFzInLL+w0twAq6azOXh/J4scJzjGRENxp1CVl5EsJnlEhH+0BfVQXI4DFjP1GgcUKg6sezHhEXjuAWVchzbpXoK3qVmxqOzFmOyYk7yDRBDCtKLOK55wxYSYkMW0q6liq4hJLi25tuiQr1wYmERGLAXdVix5+aRPubvTAFonqivQ+A5GIZo8TLAE5A+PJo50WuaWa6vn+KMcJYsTQlH/7COq1WPx82OFOUZbSZHQqYuvc/j3x8Y5wJVyMXPRang9bXvcmMcBGL/sHBCpeccPKMZxIZ5C7LNR5mLHCPKG0tE3JXPqN81WKHuciOO+OBJDWdWROq+j4nDoC1wWC6Yy5ubwanpoe6liOTF8Jy8eTGJRYZBuA8VPVrX0OL4ocfBGUm70WsR4/N48N0iRQ/ks2LHniG6kidopAdAs4qo8cSIHT8VcFHB7QeVq+lXB52WEskzKVh9oUxYuGNpBwwVhXQ0AD0GqqObIdxdmAsEUtjsBqUHZhxABz+2yo1xY/cJJL1qg6seECX22TB1e0dlNeyuIjHkOPIdzUsSor6Di/Jwjib3DHaGEI2J6rbUYcyUMuSEpD1kPta4VZseH8vsiJZABENWI6BRh8fyebikZzAcaEXb+ixreOSHylgHPQPYKezWKyfKb3oWFA6aZHn8nkTyhwG0Zkp4ck80gHZmpRZ0VjyCYcn1GhWojojIRjUEtUnRaRePLhJBFHvHumj3Pis2OAYgRdVHby44pYJbJeo6Kys15/Hwy9uUWiQS9B6vr0VQ54IzBiRRmdWIzj8eTjZnJsegC1iaz/xYgA5KdB17oOmBhDG0S+7VaR4HzfMByjGS0Y37lY6qPIzckydmFGYLN6Vx5s3txoRKchUD9qxbn4scsQ5D1PVclOVI27ydFc05OX1f8FirGYMXchhWiwoBLDsgYNHe5QaRrW4Oqo1EXFAipyGMQBp+qzRwZJNc0OvdZGUzqQ/gsqQO7z0UAwsC6o0AEqM5kKIhmRJqwlalqJVOUWDWN2ZBhkoOzqDGfpNiHsygzcgMCx1eqgiUmBa2p7qAMnL3AQLcGLeCoNoIZmAFkEV6eaBEBm07IhxAZwGbqrgbFgKOKkqonRhYVUVmSK6FBnJmoVBEm1QTqwDBQKl9UCcu+qAp4q6CroGeyoCCa3PRBlKNBpqoqD9VBJOqgXggRsAgktVFCBOglQGiAQNAKhugAgY6IikDCBsgYbQKiiNeuiBghAxQ9HQMFrgkaIKidQbIKoRU+nogdAKBwgoGxu/4KCoi40GqCgbxDoqg7dhdBcSftDEf9uyCgwLivigqBFhIuqraPdgUDMZtcHp0QABpJ2DVOj9kQzs1sDoOqB4oiUhDV/SysK9ziYWiA48G1XbEjY+mdaN5BRYnfKrBnvR3RQdzAvuJrtap/4RY93+LfMZuLyjxp5CMWUMw0XX5dJ09fn5ozyERnWJ01HV1vpJXlTltkZWe7XKw2wnjMgGkBKRev5LNiMXIG41ILAmwVldJTxnGCSGofIk6oVp7vquBKX3SNR4BXVh7oHawBP2h7A9U0x08XhSycs4I5sUBCMp+/mltg0akDv0TP4R6PDiPbhNiHDyJPfTxVYZfIcJshlCI2zuex6LKSub2pRk0bUHgFWjAkHLbQKDv3UCnOG2W70uKlZqiHyMo+iZeEWA6voqr0+Dyc2HLKeE1kAMkTcA9VrlY7IHjHMI5XMZVDFmC6c8u3y+drPjDjZvkjHjPmyYzuiQbMuk5x1nE5e5xf5Di+R5g4HuDDspKZ1IvFLn8OH153zE8z5L/B5UOLx675eqUA/1Wfxx5n9vo+HzpvilI7RChiBd+q14W45vk8ebNAmEvROdGotxx68PF5vswhLf65iwOrI5vNnzMUcFMbZCftClMcAkZy9QpqGooqRNzJ/SNAKllGnZg/xBGEpAyletm6qYjol7uTLHaAIyHpIsApVjm5EY48pxzmJGPQrONNOLljCHbUJg9SJOQ4zF9pqSmMHl48QSLiWqprnlP2tpgduTHIGEhodHRZ4epz8s+RxY5M5fLMPOXUrTNcXxnHIlITJETZTTNelgzY+Nknl2kxAYDt1Weq7fPHfm+Rw8n4mZxxEckKxlIVDaJz019OJ/Dj4Ah/66U5F5ZTQrccLHP/gkyMRLSqljO1rw8EcMovJ42cqyGvf4XJwiZjMitIq61I9DkDiS4gjM7dhcTLVRfVwy52bk83HDFi/thh7nVQua9Dn4eRk4hhilGEoyaRJoB1V1eo8PPw8mOU8eSYmYN/cBpJ+iMWVxxwkzrHzTEbDDCHqNhYJiuPlGWWdqBBgMIIJ+iKn2y9nPVBJmCOot5oYjLi3CjBkDwYQCyK65R2wr5INOMAGehQephxiRp0WkdUuMfZJ1AsriPE527cZVpZTDXT8ZyNubdMgYyATE/mkbnl6mTbyM+OUcsduOpY2HZJWry8H+S/KcXifG8jHhh7nJznZCctIm7BS1MfnmbHPbLZIgMHB/osWJrkhKUe3dYV0wyb4htNeq3KJlIsQb6KoxyY3r+CWIwiTHK0adQs55HdjlIxIqQdOi6RNEcUhkt3dMNetgyNso/RaTXfyBKWMbZMRU91UrDjACTgsTcomu+OMHGJCTElh1PdajNabfbxk5elIj81R53KyCQ3gUtEKo4ebyzg45MA8yKdEqPks2Q7zKcjKepXGtRx5+W1IH1HVc+uzHNGUi5lUm5WJVbwFyaAWWoM8sg5YuP1WeljAv2bqsKlrB6KKTDzUDiCfBBrEnyVGokCWKarLOaFmqWAWakjhyBmpXr3WKrEmRc3b81lSDhiTUoKF3ZkGkfqO6sFQiDqyC8lIvKp1QckjS79uiyMpSDsKf0QZl4mgd1BnIgX6oAXaw1KgRcF7dDogW4EknyPUqiHJqaIg+0WuimC9Wdv2rSKo34oiHcMfGiCHiA/X8kVnIxFj5qDMO34qBEuHseigkO9rdVQ23SLXQSXFgoBgDSyABufIBUBJuD4oIlIm58UVm+g81ApKCSUCKBIpIBBKAZQDoGgKoBUNA0DfqiKFEFB91Li6oARXdTogYItpdQNw7tRUN/MaIKjK5JQUGo2t1BQuwsBVVACPLoimC4qG6hBQkCCDRrHqoNYORa9HQBYSEeiKoBySaDugqMZWjR6OUGsPtD0ftWmqo1gaA/usgssQxA3GtOiBSJMDGgi3oJsC6KU5ud5ADgAxFqaq1G3AjCeUMaLXH6lfRwxRhhe8nqAaN1XW1YynJ5tIA49eiw0yjI/bu9F4l76UVFPIRjU+mndBUMpjl3D7gXbQBVHp/+wmdsgdGlVa9htjzCc9r7ek/0V0dXtPA+2wlI3IctqrYuuHl4NuQyBFRrRZqyuOMjSjk2IU1ZWkd8yd1Oqurrpx4wPUATJq9o9VYmu/HDBNmgJYwA8ph2l+oVwerAxERrRgRQKs1TxyAx2u1GKylRP44iW6rM4owAQ1yczF7MjiIEpXDF7o1HlzBl6D3JL9FKuuWvuCpbcCwvRTFdXH5GTFlOeUpSnKW6Tla5sjcsj6TiHH8rknliBilEA+3H90Rdb9mb3ZV4x/hGWXhkQMnDi/mukrvz14YfHfx3kfJz5HI4eXYcPrmdSTchc7cvhw66svhPHnk4GPLkywlklCXtjLKRuey1P8ArP6+i+Ayjmck7MxMIRBmJGpN2WrUx6nM5eKOT2cYYRFYvZdY59V4nNgI4gYbp5NzjUBGHBPh5m9yX23EgPqiaxOMceJ90POdQOxUajiORoygLE/isqvjic5APTXsmDq5Of2sRjAsTTc6lixwiQkDISJOtVlp28T1REWJk4ZtESvUx5vbiBOTAnbtdEdU88o5Bi9wGjQRHDmjlzzGIOCT6pDsqPX5Mmx4sRD7Y36qowwwyY4+7KXp6FB18eUc2N5vsJYFtO6zjcZRz4MEs/Dyj3uPkrHINCsyN+2x2jLxxwMWKBEJYQ99NF0jlVQhEYfcBecxoqyNk5RjiEWkblBODHyRMvEiGO0yDVMX2a5+bmzCMcv2QsOqi2uji5+VkzQGOm5hEKkr1OZkzif+JOPt7h/cJuUxfZyZsM80wSduLGGHdkxm1zZJRAaFWNSqjH3fU1wgJ4AQS10GPtgXCK0lgAiNocFMHLLiitNEw1z+zKEhqCmLrr42ESN6BJBvlwDY5VwY48Mn3B6Jhr0+KZgx/FXDXfMyqNCFUeRzgBLbEvSoUqPD5/ynG4/t4ozl7j+ujMmNTwzxfOjj4pEPOVST30SxudPE5PyvI5OU5sxH/jDQLBrlybSd0abvuB7qRHHkwAykwYaJedQobgLVsApF1cYynINpcd1qRk8mKIBp6jYdFrBiePMZBStFPVNdcYBtoHie61ia7eLxxNht+7VVK6svAMMjRHpHTqqmusReOwRq1SLJIFDiSjJn3RNVUd2CEYQsKUi+iqOL5LKMYJyTtobIr53lfM8fHORMwYtQi5P9FPaQeFz/AJiWcPEkF2bsufXemPNnkJetTdc7RlLdI7id1WfoOizijaQCHoeiYqt20N2UownPqG0ZZtVBOigQPmdVFOIc2UFRAF7Ki+jUHXsoKcNQsO90VzZp+onTRZRzzIetfBZrTJwRdxoygbAFxUNdQOIp0H5oKEWYsa6joqNIh6ixozaIJyyOn/IUGBBL9f0UGRFWZ0GMgQN3Us/dQSAa0rqoJLsGLKgJdhbogmQDkAuFBP8A/boFUICgbzJQUKy8LqgNOwugmRdyOiCJEEh7hBBNR+KCZAAUUEys5ugW6lr6oEYj+iAIID69EAwdzrogTNa/RBM7DqoRBrUIqDZAtygVbIFRBKKbugSCVAwgEAgFQIGEFVdA6WN0Q6fRA37oGCwZUFbqBoGKClxdUUOgudUFRJAp4KBuKUpqqH0ZBQp3lqgcSPEDRBcYgx293LoNGJNABVqdEDJcl2pYINJM5qyBgyl+4uDc9EVpDIxBNWduyCt9KfcLgavqgUgHJdyR9qKTzkKWiNUR6fxmIiW9vSABM/8AkV14Zr2fdbHEhtxBiS1AFdbjEiPpiSxsdXCgxA2ktFzKx6IrSLsbPEVN3Kq1JmSQTdqhkRpDJtoC5lqiLOciQlAttL9iQqO7j/LTb/ztuWp0O738GfGKBzeUtSro5smPGd8iRGZAEQzdqLNxSnERDQcjX9UqrjlybZCM2E47ZgahXWm+DJlBAAAAG2MNAALq6j1OBkBBEJ+u1vxV1mu7FCBkSZVcAEC/VRHXys8cePaPVKQYt0Vo+Z5eUynIMbs/ZTVjnhGEhtZoj0sis54CJCRAD28AoaBiJlqw1CGvQ4HL5XDzDJiLEakdbq89YuvXwSnysoIETu9RiaAldM38Z16n8czZePzM/uQ9EwYmMLR0Vzwfrx/mOJyMPPnxYT3488t4xgXOik1qdeHq/EfFfI4+Thz5YDAJSEYYoXkR1C1rMuvT+Z4s+NnycgwkTkLAj/t0XWXXOx4X+d6pRymQciIhCh7upelxt8l8xxsnEyYeJj2bAIyxipprI9VdT1jzs2bDk42IbnlAeo6+CamPOD7yI1GiyrvwZYYcW1nmbqjj5GXJkyV8KrKojEg7SWCYOkcg4tsA+4/koY1yZMoiC7MHa6iu344nNDblmxBeIsrE6d+Pl4sOUwBEpm0j/VNTHbj+Q4Uv/wDok2y5CunqynzeFLLGOL+5jlZywCas5T8p8hKH9nDCMcTVMVNHnYIPATEj2qomt/djufJIkWQelxvk8MeMADIGP2OKK6Y6+P8AIY/8jFISfIdBoEta5kdHJ+aycjMcD/2sdTRWVOq83k8kzyEj7SGBS1l3/F8l+RijjY7WerKN8vd5s8mTlieQ1jHbHUrox1+sOSdmJpFyasNFUefPIPbkWosjhwZJSy/+Lor0Yk1C0I9sGXYfmg6BANRBIwgmzdlcRz5uPElMC40RGR0TFb5hEgAK4jTi4RKTHVMNelg+MlmyCPuDGGevZXCaJSDSgRulClO1ExZHn/IxxEA44tIj1LLVj435DixyGUpx/tQl6zEsWVxi14vJmKxxPsJcPUt3UpK54zBBBDdFlrWuSI9qDVc1kmGtP8cSxno1SkS1zmI3AbWAoFAzEwkCKFXBt7UCAX7nqStMt8fFM4emDyOiqaMXFnKTRq1wi67YZPa9uG0PuUHocSOTkZDSrt4Kxmt8vC9ggRLk/qqiPYhCk5E9kHF8t8/wvjcJyzkDK0Y91L1ix8B8l/I+VzsspEmMSaDqCuPX01ceYTuJKz+jImQLnSygW+IjGJBM3eUv0U1WglQ+Nk1FsRer/gqrLIxBaw63Kzasc5P3OXJssauJdTQVp1QMeLaoNoEE2voqNYR6O4s6KjN6QepupRx5CLt4LFGEibu3ZQSxAZm1IWVMDR76IKqWbwVFwckXFGogvRnIDVPdKOecia92CgxkbjTqoJJp0LUDqDI1Pc36IEzhgPEIFKLAEIE9zt9KDMhwHNzoiFdw9dPBUEqFtdUA53dtUDcUevRBEiSW/BBmRSnmoMi1vxQJtECc1D2soAE61KB1AB6IEXA3XBVARIUJYGyBAOSNRdApfbo+nglVlKyggqBFAnQIopIDVA+tfBBCgEAgaAVDdAOgcRVAfmgoVsiAPdBVbsgEDrRkDGvXVAwrgoGw/FBQpQlxoUD9RcPS6CwJFyA7XCA06ashGkZepjr0QXt8Y9kFCRABbsEFVJqWH6qKZJeuuiCgWZ9aEILiZDUAu4foFVUSDIakhwNERUcZL6S6CyD2PjoCOMghiTExI6artGXovuZiNo0kLqtMpZJRx+oOSfVPUdB4KNMMhBaQkKir6KAhIF2rWhKBTLhxJ5HWOjaKiYm3+qqCvS569kRcPSRcdT1VHbxs8oN0BcE2botSjtGYSi4oR6mOiugn7gadSDQ9B3TKaqAesQNki0n/ADCiujHjYek+nubq4PR4OKUZtKQjAiwuCrJR6A+wSEtoBbd0ZVCyyHIG4ttkW2RpQay8VP0ebLi4hmPuiYhVo4w53Cz9lnP7VjLAYNJiKPUIDbCcSC0T1VG+Di7JNUemji/dPVGPJwybVrgAaqWUd3wnM9zke2fvn6cTf9gunzqvW4fyOXgcmXGzYwY5JtKZuD0WrPK8vopfEZM8cnJh/cjACUABUeaL1zY1lx+VysEJSHsbJBh+91Ukz8dB+S43JAxZco9zEWnEi5H6rR1NfNngR5PyXJ9sEyjEyeIdg1l0kcr4eBlxnj4iMbiWQkZXvfVZNGXHkljjOUQabXiAKDwREYMVDRuhVV0mPHjAuBKf+rIY554sEAMspAg2jqCpplc8skZEgXupq4eHG+USNWQdMotcd2UGhzbYgAB2qUXC40jkBAuXZ1IV1Y448mOGMgSySdmsCqjLnZB/9RLZsdBsDfVlP1qbGnxxyZMcoZPUH+2V/wDhWM2uwDHDcCGb7YhGXJyM+IgsGa6iuvDKE8cZbmjoCgviciJyvCjFnH5Irs4ojPlmBkIicTU9VU8oyOJHHCw6Ko7OBgyY8uOZDSdyUxZXs5OZGOVjIknVaSs82aUySdbKjmyn+2Y6aojjxR25XApog7N8oxeVyVRpiLjobortwuyooRclaxEZoMAriOf2g5P0CYaxEjCYB80HqcUbiJRoLOivZ4nHjDKJZTQBwVL1jUjzOb8lg4+Oc8UBumWOpWNtdJJHk8jke5GBj6Wid4vdWM9V5Xy4jj4JJ2wGb0geKrlXyk8UIPGRdqRPVEceQxZttYqK14siXBrR6j8lF1vx8sy4OtKphqZ4PWYzlQVDKpqJR9YIB6MUw114+POYLOWuGoyqWurhzMaWD/TsiOwDEaMxkeiuisnChQGQdifNB08KEo4gHvUmyVNHN5OCNJSZu6Lj5T5n+XYcBOLjj3MlnBoCufX0xcfHc7l8rmZPczy3SOmgXK21XKzSYm1ys4LjMuWo32qyoGjISeW0xAMA13Naq0SIgElqlZVQBcBqoHK7HzQZzk4t2fss0YyA1uFFTtd9SNVkDH/VkxVR1HVNGkRVwPJBoJgA0fqSisMuStDopRzTJr3ssDElj6q9uiikxGtDbuoKHTVqnogIh7OSB/oqi4U/+WqAMtWteSgxmXta9UGZNOsR+agzN+guUGe7UDzKgQpZ6XKCyBIRJsdFREgbXNo+CVETf6af7oINT+RQHo1P0QDlwbRKoX238goJP4oMyaE6WUGRlUOgA5fqoJjqCEBtJsQ3VUBvTogTlAzWLlARIrW6oiVDQeais5FyoEXdAioJsgVUUkB4IBkEqATQHRA0AqBA3QGjoHRnRNMFigYKBjvdA3OqBg/8IGDVyKdFRVRqgYAap7oNA/YUsiFuOhHRBTljVkUxKjILiagEeSDSDkUJAtVRTiT46OUDBcmLsSauiGHo9SDRVVbiXgaElwUG2Nw43N3a6DWEZSYUD3kqOjFhi7OAxYtcrSPT44MJRaGjAFaWNpZJD1yDg0caFFYZJjc4Pq1JNSisTkcONTUdFFIEAh2a4AVNaD1QDBq1RDMfUWo2gsgoEMRWiIeoJqwVG+M0i/26dFR1YZAAh/ToxVHZjybgIyezCQ1K1KNhGNDKO6QowsoOrC4NTCMD9gAq6q66oznLedm6OGO7JMFmHdEbGeX2o5MgbDneWEayEe3RUXgkN26AOyemj91ZBtLDIuYlshoSNfBXE1zZcUiCSTM/bs6LN5Vw5SCZCZAIDAssjXh8kR44jvkJyfcDoOy3zRzcjl7gYQBaOsh+SzaMeFyp4eXHIabSGl0WeblH1vMjhz/GnludxLCWrrv15hrg+P8Amvm8GWGI8qccUaiGh8VmfS/ldv8Aa9TK9yP8n54jI5S+SbicyQw6Fbl1L08z5COef93BmEskqmOpJ1HZWxy819p/B+BPjfH5M+8Tz5wY5ZS9VeiTox8l/LJ8fDyJDcY5HIoKOtdXGI8/4rkODEncY13SqH7JKV08iMZb8oHplZqMVpHlcieSEjtLACstFi1qPOllJmASSeiwqxIxDh/FW+B1cXMBF5DwCaY6cnKEjvJagCaYxnnYsKPUyPRTVa8XkYgHOhdNLHVh58ITBDRvQ91dMYShmOQzgCRMu9yia9j4vi5cmSEQJMA5lIaLUZrp5sY4zLYHGpSpHi8nLhhimZhpA+n/AMllrFS5oMMAhEZIu0xYjummNMOaOIz3HbEkkDxsg58/yuT3DCA+0Nu1qs2tR6fx0t88bE1Aq/4rcZr3Pc2+ndQXK2jmzcyJyDaaOg68POjllt0CsRefkY4wP0CqMOPOUsoDUJUHocmEYtGQaWgWg8VWbRBv7hiaG6pqByjUOxevVUa+5uIerCi2hgAAavfxRGWTjSyZRtHiiOuE8/FyRxQiJmVSpXSNfk/lM2DGz1kGoLLFjfs+W5fyUoxq5PTv1WcS9OPB8lz4SkYREwdDZaxi1y5zyOaWnMbo1GMolrz/AGyTLHI+oVLqs6582CMYGYD+KGufDEmRG4g3JCi679mKMB7ZqNSdSpia6cOPHKBjLo5lq6sKUseIjcXG37QrqNuP7bAAnbKr9k1cduLFiygwj9OyI39qGKNQCRQRRI555RHLvNSP22ZVXNzvmMXGwyy588cMLRBufBS2RY+M+W/k8uQ+LiGUd33ZT07Ll19Fx4cIhnqZG56lc4LIgG2ly3rPTsqjCbXfy0WaqJFiHdyVBQkDo5B00CK1EXfVVDJDUFtdUGE5MLrFaxlKViajooE+h1qygThFONWewTRoA4oGL/gmCgG7d1BGSVHdlFc05F/1WRgSbd/qsqHqQLsqFECQ306AFZDY2Ytdygdgas2gVDidRQXbUoFOZuD5FQYSIduvXqgh7h3I/BQZz63bUKUS1RrJrG6gHIvdlcCeQ9TMw/BNEmTs9jUNcDoqhbiAQKDTqyCXfwFkABcdlQqsxD9uigkgVBq+vRBJJFRZQZlyH0ughpGoQSSwMSgVOj0qgL1sEC3UABUA7aVVA5syKUj9Uog1UEU100QJ6ULBQJwO6BG6BP8AVFJ6oBAV8kMSoBAIB0DQCoboBA/NAfmgpENAx0QUO/gqHFhIC3VAydxcBuqovSl1A3I6ogozi3RKKcMECJIRVA9aFQagsBWjfiiqMYuO9UFC7gNG3d0FQYuNz+IVFAkG7vQdUGuMMTF7IOrHE3kQZEPEP0VxHZixgaizlupW5B6OMR3BpfcKtYKrEckCFRIU/YNUrTky5DOR2xiQBUdOwWaMYE0LbRL8kGkYl3oY6EqjXHInuX1sqNow3EgVk/kquDZUxPWhUZUISDMQDq6osY5AxfxANiOyo6cEAJDv10Csg68UmI1LqwdEc0o7jExjRiNXV0awyyBEWZ/v/wCzNoqNI5zGJiMhgMlMw/7RFgUB70TPfEs1Ih3EQLIO7jciHuCM8gju/doy1Kj0MObGYAxnE7iRtF26lbiL2Yy4IqaR0ZXDXBzODAyPorckm5GqxeTXnnEYZiSDIkMZA0CxnlWebjVJNQLPfxUsHLkxbnAN+qzYuvX+G+W5XHxHiTEZYZF4xlXzXTjrB6vLyYuVI78cQaMYBdrNZc/I4+SOKILsQX7tbzUxdZD3Yncc7DY0YtbzWOpV5r3/AOOfziHwsv8A10tvKwzaQyA/a9wTqkrrbLE/JcTg/J5ZcjCd+PPM1lYeS7brz2eT4fx/x+PFPjYhvyg0n3GisR5nNmYbschsMXEoqVZXmT/ucWREDLJu62A7LP6OfD8dml/dMfTG6Ya2yYXFqCwRXOduM7X3SuW07Lna1EnPGYFRtGgus7qtMx7XAbqtVCxTYknUMpqoySIyRl+PdQdI5mTHF3LarWo7/jfm8pyjHCcoA0NSaKy6ljp5fOyCEmltdwIVd+q0jz+TieOQRye6YmMoTNS5uCpg7PjuNERAk8pSqSBUHp4KyJW3ymGPH4nuygSCWjECr9UpHz8ssskhEB5BYxuvpvicGfFGMstBEUJpfRdZHO16+fHklh3RFD0WsTXBOLSjECupTDWnGkI5toN1ZDW3Jw5BIGMnArQpia045BImcjEXa6LHfHkS5Mt0tKArUK7uPx57QBFz2VRnycwxRY3DqweZLLLHPeHJl+1XE16PAn7sb+RVg3lMRLf9UGn+ZiGPfEeoUUGUedLbOcyQTYhStSuTkcrFniBvcx07qGvMyY98mNQCpjOsfb9dAwJqiIyYXyicWDHToia87kRB3X3bjvBVEyjGURAV6oOafDyOYiJiRbqriexwwe2AMkmp+KYuiEpRJALjqphrqxY8mSLRFdHVxNd+H41oCWQsdS1HVTXXjjDjwOQTEiTcqVqa875L+bfDcV45Y+5kAb0kXXK9416x8pzP5icm44cbEuz/AKqX6mPnebyeRzMnu8mW9rRNvJc75NYAbXJLKYK3MaFuyaG58AVYhElgdEGcoaO9XWbGijEgWIf8VMGsJBWBzm4cnwClownV3roGWRlK+qilb9O6ypxETSRNA7BUOJk1b2CDSBrJ60YeKaLeIiaOdUqubJIO6zRhP6v+Cgym5Apb/VVlUyI6UanioKj9w7C+joKMiSOgNFQyCZDQA1OqIJ7gajw8FFZT2/qEGciC736qDIyalOzdUEWdqSOigHruNTbugkyLgOSVUKTeZugmrfkFBIJMqDRUNw1S/RAgzAa6oAs7m5oEgGiztbV1REqPr08FBlN7nVBBL0dlAi+57jqggu7OoAPUNUIBjpV0UNR1QgNSUBMhn1QZyFaqCZAXUEFwPFAkCqfFFDoDRAaIEgSgEAgEDCoAKKAVDQPUIHUWsgdLIhgIKjd1Q6uLIG7aoChDDzQU9GFggbzZqoA+HZ0FAtaoQqvSXrRkAGFRVQaQlJgWYdEXWka31sgYDh7EFgCiLBLsAHHXqqLA3Fmcg37qi4MATLX7uqDsw00BiR6evmtSDuwyaQltA0MXoe6urI6scNzOQPVuYdFWk5pkkyABk7SGraIOWcDLG0QSHdmUJEEHeBUPro6hioyDOS8XbzQaY36m/RUdeOLjYCYg0otxWuyI3MKftBq/Uoy0hj3FwAaUVFDAACCST16dkGsIkSiGoBQoN4k6Ft1uyosxi8CKjU/+SoobvUDSUZfeC7ugkRJ9LNF3r1TBcfSS9dAqgkwZhc1JLAeKYNBysnHmROUSImhhVwdQkuD0+N8yCIwyhwTWeo6Ouk7THX7ozRG0nIS5YdB1W0cWXCJxEifbiCWA1KxeVgMBKAlt9YFAUwc88TiMSB6XNOpWc8YOXO8JUHqavVYvhXo/GcyUgd82EB6YC8j1K6cdI9n3RlhF5MDp0XUcnO4c5AmBMoswI1jqpeU14kcMcHIcxj7cvTEM7Fcp4qx9l8ZH47icUY8uQETDzlGvqNl11bHHx+dmjyyINHHAn23FSNCiWJ5Y/wAgzOY+qRrILVZZ4Pj8EGMM24axZqoeXRkjCGPbs9PXVB5nLmIROwN3WK1HjZMstpIFTdlx6rTm48pQzA96grM8K9aUd4Mrk69F1QRxCXpd5HVMBkwvIRjfr0VxNLJinGG0ltW691MNLjCOF8hoOurq/g1PLlmJL+ohk/R2fGTEJyGVvamGkP1Wolj2ONhxzxTGHL6omhj0WmXV83wM2bh4BAGXpY7TqrmjzPjf41CGUSzHbIVc3TIba7vlp48fHkck3jGmMAsd2joMvivk8544iZe4BQxIqFYXFcjONx0kVrGXnnmx3Rx+qLFyQKv3UHrcTl4sm6JkSQKBawVDDAAy3BuiYa9LiZsWLEcgzQO0PGNySq1I65fybNHjyni44hkNj2Va2Pn8/wAtmyyl7svvluICuOdrbFyY5MhetKDoqy6+PyvZl9zPc9FVjXJnyDOJVlCdRLRRa1lzeFsMfcAnGsgQmmODmfIwyNHFMGIUqMcHJwRk0skRKzOso6C1NhBBuxQTOQib+QZEc+bk8ZmjICRNeqDmy8fjThKQmBMAlVK4hERYyNw5RGhnEB9zFqB6qjizZIndvlXQapgzjycIiSaMaJpgn81ixVlm2AdWWb1I1I5eV/MwBtxyOYi2gWL9Ir5/5H5r5TnFsmY48QtjiuXW1debtDPWXWRKzhtMfgqixKoOhogmQiRX6lBlY0DnWSyqt3UoE6CgxNS5QUSSAH9PRW9GJNB+o6LNVmcrRbzDKauI3PUFTRMnv+KmKVX8VAwDq3YIKi5QXEMe3VQTORJu4H4lFc85Fy3/AO7v0WaMZOAwt+LqCHGvgSopUBIeungoGGrU/RAVFZVKCw9QECkYtW2niiMZj91igyO5wOlT3dRWbgSPXRQIjQVJ1TQq16DogndU1ViES79Qgkk7XNrBAqAUt+qQF6OPJAMxAH1QIB/UTUWQM0YyubhUQZGp+g7KDKQ23LuoIJqHDAIER/1sgmhJShDc72CgTnQ0QMUIA116qhGhZRUkjVBMmet0EEglAiBqoJRSKA0QJAIHqglQCAQCACoagFQ3dA3KBjtZEN+qBhnoqB6qBuUDNSFQwT4KBg9EFAm72CB9K3QMAiyui46B/HxTQxRyCOyUU0v3eJPVINIsQTKvTwTDVVYPUfigsP6bPoOgQXDSJqX+qo0iCSWYAF618kwd2EPJtpmCNAtDojKECCQ4jSiLHoceMZAvEGUg+PuNfotRrFHDKWQxDGZpOUtAqrv+F/jGf5fkHEM8cUI2lKgk3RWcuvPGx0fyP+Hz+K4+LKcoyjLSQFgB3V64ZvD504aSLMIinUlc2MLEDdyJCplcN08VIO7DEgAu0dOpXSDsjiBEtsewJuqjQYA9X0BpqqhjHAyYVEbgapgUIttLOSTbQdExVxO0Bw5P2npVVcAkBERj1qTVyiL2vKRodwc1ZmVQvcheNjVzWoRAZyNCQZC50qmhCbATArYRNkEMYg7R6mrSjnoiandYCZJ1PdQ1vxuflwyjKMi4LRr+C1z1Yr0cPyuO2Y7cj0gzgkrU7THdxs/Ey+mTRyGzm/ZdJYjn5WPYZB6v/oKWDgy4YlzUEUPZc7AcYyxZRTdCVCQKJz4V6kcjBnIArIG7aBdEehwcokJb5Hb+XZblHN8hwcMMkzH/AOrLHbMM+16uFnrnU1y/Hcw8XJDHlG7D9pLOOjnusy41r6DicD4/Pycco5XhIGy3Eyuf5PFh9328cjSgHggxjh9uJM3Bayg5cuWRfYZMFFcmeWTKNtSAKspRw5cEwGZu/VYvK6zxcc+6HoHWcHpFoxf8FvFZe9KJBbwU08Acg1kzFNGuHOJlsgqK2WpUxPLgZ0gGilg58cdkg9TqApB6UTi9oEBib9GW2XRxMksRkasQ0WutDo4/P5WbNDDDNKDWD3KYtrtlzocb3ck5GfIbbCJVsJXkRzYsuHJ/lud7MBSquM2t/jTgwZN8Jb4uXcrcjFXycwyZDkYwr6QOiuDlnk3S3SF6OEw16PDlPHMRjEGE7k3dlrEXy8sscDioSS/dME4IGMxKI0TD2d24mJ3HwB0TF15mfGYzM3Aey1jGq4+Q7hJhvGoTF1XO5vtQpPbKVpKVZXRwP5ycOKXEnhjORiRHKz18Vz9nfebHhcv5jeJkj+7IvKQWtcXmH5LKARuqfuqsaaMfyxBHr2sGdT2Vt/76Q/eWHRT3En+RbaiRL3KnuY5s/wDISTujdX3SRP8A/M0wwkCfNT3GeT+QzNYxJJp4K+6OaXzuYEgRL6SBup7h/wDuuSS5iBLor70xzZvkeXlk08m2L2is9dWjmMpTLyJPQErGDQBuwurIFJjZz1dUZEV7qUTu0rep7rKgGt7lQUKnqFoTIDopRmSfJZUxLU369k0XGX0QaBUZ5DfqyyMJP1Wa1EdtFNDcP17poA/mguMSCe6ChEiigJTp2FEVzzloL9FKMidH1ssqzkRVkRD1AFrssqYLdyUFEsQGYdepVDjWlGdj4oKpEMbl1Bhkkxa4P7h1RESMqvoKNoisyQQ5oTR/1UES0FzqVAHduI7M/ZBBANA9NFURI1pX8lFImoAIcIiHG3qQajo6BvU3NHfTyVDbXbtdMCk226oZLMDQaKCJgsSfuOp6JRnucAgVsgUn3MK0UGdhSpQBkwbXVBNNqgKAB6lUAZ60e6AqZeo00QSzgdUVEgwDF2UEk6t5oINFAigRs6KVUAUCdAIBAlAIBAIBA1QwEDQBQAqiG9ED7IBz5IHeqB+CAuf0QUHoqKuoL0romBhgK20VDbWw0QMCNyrovQDqoKiZWtoUo1DAEVBNQwQUJbosAIxjR+pdUVHdJrUseqDqxQltcUY1OgWsxHUCw2wkdg/eaXU1qNsMt89orIB5RajDUqtPX+Px/wBskisgw1IPbstcrjswcXcREMd5aTaLTcj6X4TgZY5xCLRyH0wB/NdI682yO7+WHkZeHi4mWAGXACZzs4Clvg6uvzzNCMckhG867ugXCuVjOEHlUbQzbjchImO3j4G9Vjo50XSM49TBxhQt3fRbhiptE+ouC4IFz4KmFOUzixYpECOAH28cQAQJV9RF1CufNIHaNphtPqMdX6q2ssjKpBBIjYaqatpHJEAOWerFTUTHOJFiWDMP6IECDti5L0BagISC4/dtnTUvQAqobY2FHuTVmKCfeiSRU0pf80GZJduv3EIEMhZydrmh7BBfvyjEmPpgQ9fzRDxck7okPQX1fqko9nh8yGT+zkB3XjM9V2561G08dCK7T93fwWryIlA7aDa1WJ10oplHbxsUOVx5er+7D79GWpNRtxolzimDGt9Ew10SwZNrTuaBz11QcvK4GXDlMZZYZnAJnjba3TxCzmiMebJwJQy4ZbhE/Z/sm4sr2I87475GIkf7HI/dDR1qUxPJBxwIn6tAmjycp2yJtoyzRz7ZSJMBUXAUVoMccsQ4aQuqjnyDHiIJBPYLNV1QxxzAMNoCsKyzYIRIP3F6eCDM4QQTEub+HZTDSwY5GbPfRWQ13T4QnjEoelr91fVNcMOHOeQxsHqr6mt80cmIjHEOBqCria0kZbIsSCVrE10cOMo8oZox2EB/c0DaLUiWtuTyamccbyLvkIu/RWRNZ8vHD/EgWaZLypZWRNa8DBDHxvdIBD0gKutYJz5I5GiMRgRU9PJXEacbixyyG62iuJdehl40cWN4lpD7QEwc0OM8DKReViUFjJDHEYsh26gjUIMo8w5Mu0SHtaDwSLqeVlwx9U5Bv/JNZx5vJ+cwYd3tRctQmyzelx4Of5LNnmZ5JmR0Gg8Fj2aYnmSEvSSC6xaunlyTMdxLE1V1HNKZHms2iTKj69EoQy0fyKiomXDfioMZAmTi+imIIiTXVFMGFAG1181UDUANkDAIKKZiAHZ+qqM3FSzDQLKwzNx20UEk61CCST/upqolWxYqBE1rUjVQG46JoQlcfVA2BsKAVRUMXPQfisiwfoKsUFGRAGmqaJkX7jqoM5MzlQSYgd6VKljSKBRVxZ2LoLDjxN2RDJLdwisZyLFuqgykdH/5UGfdrKKglnB+izQg7ufMIKi/Rnt4IGBFnYk23XWkXHo7G7NTxUEzlS9HuVDWGQHb1jcOmGs5mtbJRk9S48llSodwfugN0SPt7VQRM9KDoEogu9KDVrJiJiHIoqAgkGraMOiQFh0BDEaoHer+XZUJqeKBGhbrZ0Gc+pLl7qCPNqqCZEVIFNECcmovqEEl2tTogDYaDXxQGt6oAOzC2qALhnFEEFnLl+iKkk9PFQRIuUEl9VAtUCFboBAjVFJAMgeqCVAIBAVQCBqgQN0AAgEDdggB0RFVQUgCHNEDArS6B1fqEFBmZUWLO1WQVTWyJoF3FkVQAapuiGG0qyKuIGtTcOpBqx2sQQXvoVoUBQPUku2lFBtiiCelVqFdxx0EA7Tq2i11UgETIHUikx4W8llvG8AdhoRUAnVu3ZFepxMxgRsLUYOarU6bj6P4/JhMY5GEYmnq1l1XSV0nL1uHyMR5ZmDKU4gAbbBad+I7f5d8h8Vl40GMzn9tpN/2WbU64kfn0sQBEZHcZhyRQeC4WPPW0OOPtYVA/DQLUZx24YQDuCKeoHRdYuOiOcAEF2IYeC0Yy3EORWYYRPQdkSpBmCTtIkfulqEZ1PtmI3CJI6k3RHPkLCOyhLk9VlHLKZE6lupKUUJE5G9O64ZBccgarnZUgi5KoomPtn0uQXfq/wDRNDM4CYq4NWF37pqInkHtC5zGXrYU2poJSgcYjWOYH1EfaB/VXxn/AFE3JyMBGJ2xJq76oKOJx9zxJcmVaj9EGmLH/cEogk/9pHTqysg2sWNS91pNd2L5D24bZnfjhSlwtzrBpPl8eUiY+k03Gf8Aq6e0R3fFZQBklKX3fefyW+B05eZih/cfcRaKto0j8vjnCEdwzzIfIdu0ROkVmdaWHDJx5UhBtZagHxWkZy40DlcEWt+qlg5M3HmDuB1qRqs3lZXSOXPLEQlSUR5EJquWcTKROj2UG0W9uIEWYuTqVRhnkHvtI0HRS0YZAHDSdxQlRddPEzGMR6nlYx18VYjV8ZA33CoxlKMZvGgN0G+HJw5T2CJJl+aqO/FyI44GMh6DYeGrre+ETxoYJQyPJpEuJdkgj/FgZjbkAkTQsriNsfGwn1Sm0hofotSI7MWDFHGXLC48FYyvNi44xCUskQDUFaMcnLlx8oYTDRtS6B44wxQix2v+3RVFieKRcREpSO0N1TRnhyQxTMyKRJBHQqjfJyYCBJk3R+6mrjlnzIgPLIInQAUTUcXK5J3hpCTipQccebHDIzoHWfZceVz/AJiWbIZbtxsPBc73qvMzcmUnMjdZ0ZxzMbpoqUy+qaLEyYIjKZNdSFKIEpEM6iqxkg11sgsmjdLoM7VuECgS6DQMz66rSBgOxQAJammvVTQpHt4+KDCdC6zVKMySxczPRZ1Q7d+4ShBQLyCCSpVQZV8FkVEElhU3boqG4Pjqge0EV8lQrX8llSJrRDCelB5qACKV9VAmo+o/JDSIZ9Oyyph2t6UCkQwFwgzkSD0CDIyappVYqsiWdi+pCAo4exuUBeVKgWJQO3dtCgpgAxN6nxRFyJEKl37VRWMidtCwURhIv3LoM5E6mqgmTmJI8j2RSLAP+3qoJMiWcMmjORcGTsBRETubt0PZWAEogdSbIA96U/FVAIm/1CAYAIAEH+iKzmdA7qBX0droMyQ5UEkuaF0EghgTcIAEiuhsgAKVNEAA1TUIGCK9NFQjI+DoMzTxCipJ6WKghlAiw790EvVAgiglAkAgEAgSgEAgEA6BoCjKwCBoBAIKCBhm8EQwgYQMDqWKB2NEFeYKoegcsTogsEO+lkFAuQ1WVQgWsbGvioqwNKOakoKiKsfSLdyg1jGwka/9eyDaMAZdQNFYOnDjLxizu5VHXKciDKoJG3oB2CVU4QLbWiLkUWWnQIDcNw3Slauia07eDEie+VTGgErAKyt88va4ksk5mGIbraUqVuV35j6eXM/9Pxo4vaieVyI/cOi37OlyPnck8mScspDGcmlEl1zt1x66SOOC8WDE0Uxn11uMMtpeIHTqQF0kPRlObAMaEF/Jbi4y3+oaxOqrFq4lvc0lEPv18kc7TJjFjEncz7TeqMIy5JepiYmNW0bsmjkyEASmAwmGLdVkYyjGQlAkUu9CT2QKMgSDGRiP3lmr0QUZgjaCQI1JNygU8sXEXMtQBdNEbogttImKs90QSyen23IJLiXQ9E0KBJoGBm+5/wAyiNQBSP7YeoEVc9VRQJAcyP8AcLmDO/dWjSMiJTMaUZrkKyjoxyiIASDkRtda1CEm27/tZ5xjellA5wnkEsheW+W95dAKJgfHz8jE43f25VAfVWWjrGeReRk7AbQFobtDHIQnN4EOdtGJ0VhThy+RGMoCX9syEpDqRZNR08bn5CS+vValHoDNjkK2Gi1ay5M0BeBBq7rOKiGWUaSDA690VqxNG8wg5s+OYDgMAs2GuRjGRp6brKtIZoDIHcdABoro6fdxSufBalQogbqsVZBrCMIzBdjoOyuDoyznPHAHbHcCQxq3dVCwxjCH3bWViNduEAATrKt1YeRAyjJydzWZaTXbDlnZENQ3iVYHnx8bL6hMCX/VVPLHHiiJ19cQHACsQuXlHtirEWDaJRh7sPZjuf0l4yBZBnD5DDEGEi0XcvVS9LI4uX83xYyMYyp1WP8ARcckvnvj4QJlIylpECin+kPV5nK+eyTLY4bI6OsXsx58uZnyn1zPgs6Hv9JqqjJ9xvVA29XdBrKwRBDIaglWUBsgkFpW0UU3qEGhd+5VQpROqCCDogqMkAS9WfsgiUiFnVAN31VtETZ1mjMkgljtGrLKmCKDToE1Rup5poVzRTRB1fwUCYPRQNzpRUEQyDSwZBE6tSgUqspKKfiGDWQD0/JQMEtZygbafVVFbW/VZqoIbw0UVEpMXtooMi3l+qgymQz0dAiC72pfqoqQGr1/0ygNpHarsFUWIuQG70QVY1lR6oJySDk2HfVBhKVH00CkGUyfLoLoMyW7Mbj8lAGQcE0cVCVQZPQsGFEGRL1u2h0URlrZyhgd6EWsik5PR1UPRvPzQVGcftP07qoYPpqKmyKgkaVOqDOU9RqWZQZyJBIdQSSQa0CCTUuzaoEDHVQBprRFAcm6IYF6qhM/ggcpERqyuiDKjlFZmxWRNSoEdHogny80CJRRqgCgWrKAQJAIBAIBUCgEDdAKhoBkDCBhA7FENA2KBgixVBW+iCmQVEm3ZBQ7XF0DjYElA3B8HqEFxiSaW0Ko1iAam9iFBtEAFz0oEHRx8e+UWBu5Csg6xjaMizE2klUnEYAEGXWPUqKuD3nRqxDP5KNyOrjgTLDdMmjijOjfPL1cHCyjEJbZEzPqlpTujtOMfTcfg5Y8KZx5YwnGIkI2Lf1XWOvr4cMoSyESMpTZjtkbFZxzst/WmHjmRMwPUS50AVkhPnW8sQEDItERpE9SVvXT1xy8jkRB2gtICnRtU1np52bk45S2xND9p0V1x6rD/LIDUDlifDons43poOUACHJ2kK6yuWbcTMVEtTdXRJIk3UB49H6KVCkWmSQ7BjE2cqjKYj+8l+oCiMzORiHoJGvgNVFZnK5JFh9sTc900TdtDqDfyUBuaMxKJjE0jIn1OVUU0BAEyG6hYXJGqDQCsi1Z1J7KotwR6BWz6BaFkCM6+uMaUsSe6I0h6S59BZ276VWggSJARDkSdxqGqs6q4DdY/a9fFaRcJyjvAJ2mgkeqaNCICMSJCgoO6tBDJPHIbq7akeKSo6oZ4uCBucEtoFrQRnAh5FjoBZUaDNAavIq6ihzdh27ne7lPZWmPlY5D7wD0TRUs1SLvaqIcOWYliaCwRXQM2PJFxIVv4q6iDh3yZ09QpcXaKjzdPWDnyMCz21Waa1gBQv3WxfuQEqhu6I0hlgQTGpWpRMskzp/umGo93aejoNo8kQP3s61qJzcyYdiw0KDEfI6GVVPZcXH5yOEkxlUhiU90xzZvm8ZDmYr3qn+hjg5HzRmNsZuOgWb2Y8/N8jkLiNDZ1jroce+cpOTukVnVUIkKozncAqUOHf6oNhboFpEa/wBEDBL9kG14duiqIgDuNVItXIadAqiDFjRFUB/yiNY1H66qhytSsdHugxkFNVAkxayzooyVESNAG8e6gnfdTVxJIY0dBBCyqX70UDqaIKoJBg4/VAbSCS6BM7XqgNpFqdkFAMHItooETUPqiprRQTtufogk6LKjWlegCBuHJsUFx6ugsEPUM10VnN7xDeeigxkQVKM5TAvdZVmaOWqKRfugmwo9NdO6BiP+muiHtY9rIKjFniXtfVBMpDb0AQZykwL9HqoMZ+kE9ahQYylb8fFFTW+pKB01HiUEFm8fyU0Z7zoKPVELWgdAjdxEdkA1evdUNw7m1kDAtSo17KhVNRUAoFKjWD6KDFxXqNFBJILn9zoIN3QSTT9EA7eailrSqAHqPRkDDEHrqeqoA2lHQHpYvcKjJywcM6yEWY9NEEEnyUCd0CJqik6AsgECQDsgKJoSgSBoBAIBA0AqGgAgYCGGCEQ6ugYc280DtbRAAg1QN6oG4ZkDf8FRcSKOH7qBu/iLDRlRQZrsdUGsQHexKo2G16XFzooNsQ9NAxJZr0QdnFiRVjAk2Gqso7ZR2xmQCYYw0gRYlG8cwJE3Pq2MR0CzqyNIwm5qHmHDEkh1Nbkez8dxch2GEXhQTlq6lr0/Lh9F8pk4McvG4/x8pRxwiDKEjebOU5r09Fi+Rni9Y9TkuaFitaSxtGcM3qDGrmQGt1r2T0jPLyJYjumQAT6YhWHVkefyvlJzJZqUPRVw7+rzM3IySizneDQdR1Ka8/X0ceTPIO9d1DEUATXK1mJnfHUwFn10V1F4ckgRI+qvrfqVdHbhyeoTYgg3NQy1EbGQeURImIqPNUG6UjViR+SCJSqauDoygxmJNQ30OnZBjOUmdt0r+SiWm4IB+6jk9K2RVRjEGQIMiWIqrIihGO4iVYn7PBUaRNSzGIoURcYTeJZg3qforBrGUhPa/qA9MdCtCfcMPSHv6gdCVLQ4faNIigI1KIqMmsCwue/RUayIowYXL2dWgiTGgFvzTRRkDUEP+qqDcd8Yn0uKnQpgmRET1FlKrMzkKbmfRNETkd5q4BFVBW8ixutagPKyxHplqnsKHyGVq3U9g4/JziXjdPZW0flZSA3E+S17I1HMlIfefqroXvk286qo0jzNtHfoXTURk+XhC0dxGqXtcc8vnc7+iAA69VPdcax+ekYgTjUKztMZ5PmXLgVCe4kfLZHeQqNOivsiM3yWWVZSfoE0c8ufMgiJZ7lT2GByzJqSpogMSaEqDSJJHh+CqM5uz6IJgEGp/A6d1RBj0UwMR+iIsKgD+CCmD9QqKEnQAFbuCmIsxP11VESGhUVQBQUGettVdMXuj1PY9k0Tl/C7rOq5iQCXoNFLRInStKpoNxP6KCCf6opgjTyTTEyrVSjMioPXRZVUXF/qg0iS1PJVFDobfqgTF6oEaV1UUiXJD1QxBNQLNdQMtc6oFKVm8woqDfdqoAh9L6opgHWzoNKC58uiBSNXUGUpUf6pozmaPp2WRjLsfTcBRSBD9XspoT26a+KqKDVIcdlRY62OiByMj2Kgym77iw7KDDJONg96oMJEhhU3IKCH71KgYLEA1OhUUpSkKUtVBnI0tRBJJNg73VRNmv4BIAuTSlaoHTS2hVA2hcoizEekuwsSgzJG5hUC5UVnIhhK/R0EGVW1UESreyCeyBOQKjsoBmZr6hFIitPoqG1PNABkTClK9E0SZAlFS/j5qCCQFAjVBKA7opOEAgECogECQCgEAgEAgEDVDQDIAFA0AEFaU0uiB/xQMSbRA9eqA/BA/JAxQhjRBVT2QWASG+quDSO0BmdBvii4JYWsg6Ri3QDDpTQoLEBuFGkTtmxoBog78WItCL7JS1N+zI1I6ZjIYbYkjFKQjIf9iNSjc8jFxORyDI44FzQN2WW5za9Dg/H+qAMZSLy3PFqN/VHf58PbljycfjxxACO47jJqt0XPXrkxySxDeGBM7lXWbyccoB3SoHqAH+qsHVj5Yx6guLizHstSHs5uTkJEwJCRMXc6Dt3XSOH0uvOyTowIqxc2/wCUjzVyTydHNwS7KsVhLcaMXauoRkhEGoDMRtPcKwbxEo7hEkOHmdCqjpwgRkHoG3GVz4KwdEQWdqSq3RaCk4Jeh6IIeQOraKCCDZhU6oMQzjQBx/sogoPSaA2KosHaGDRJDmV0BtJmIyJgLyJ6dURpEAkRuAX3DXoVYNR6pMRuBdiaCioRyRYEBh2+iWhO8aDWw6JBcXj4x/VVCJYHdUysyDTHlMZCRi9GECaBXnwNSaFqh/xKoi5LW1UFAE0NWsVr9RMspiJR69VNowmSxN21KgNwbvqoJOU10FgmqneNUCMqX8VpEvUqCt3fwCCTkkLFk0VHNkYjddlZRRylqmiuiXBJ7pEXGAZXBMoIhRh1CAMWYOyoUw5QT7ZF6HopgNthqiAY6q4LED5pgicSx7JQQiLHxSDSMfqqhGKBAV7KKYv4KoogHqG69UCIePY6oHEFBQixPgqNxF4rSInEA0qoJ3AOymqzMulFnVVGZuSgc5A1FH0UHNkopVZiR6qaKBTQi3W+iBUd9NED1QIx/FAma91GmkPyVRcSbs6gDat0EdSoIJa3mgCKVI8VFJwS3ZBDa/ioAmrk3oiqiK1chEWAzBRUymWINP6IM3JYCoCmiDIGtz0P6qDKR11kaeCgl7asilRgwZygoCTAUrQBEUAS3puWJ8EFBhJwK2BTRnKRBoXfXugxySalDX1SUGMjUvbRBgZCRkXKgWnZRQRUadUETNSK7uqCX7W6oEaml1UEYnRwEDYsdQaBuqobENBnOqAiJeIP6IiZlov1KKnIbtQXZQZObmyDM6nV1AiRZAi7OSgVSyAID+CBM1h5oGw1ugVHsyKmR9SCTK4UEm6CSQ/dQIoJQBKKCaoA0QBogVGQBQJQJA0AgEA6AVDUAqGgEDQCJTaiABQOqKfdECB2q6CnL1QUEFAHw6KjSP2irF/xVR1YwXiRfUrKx38KcNxE7O0W6qxrFzwTEpSDEPVhcoY6wawod8RUnQ9FFjthGM8e4OCD6I99SVXWR62PNi/+zHEwkPS8f29TEdVLXo4jojyRGY/uEbRWZDuOi52u/JHmzysIgHaWGpYrFjerkGiTKwtIdeisK4uTmkIbYWk9+q3y5d9OT/KMABUaXuV0jz3tnLlGVDUvqtRyvWscmXcQ942NlWLUF26RNCdCSqykxJJA1IfyRFxjEnoKhlRq7CgFfwCDWJiBt3NEip6rStjkAaoIagaytEmVGvW6gHfWlvFESW11H07IiZUgxDagIMz6TSsiPuSiYzkCwpT1S6oNISqQNaubskRYlEORp9FQxNztrKYoBogcTJzTe1wgqoDDx7BUTKpD2jZtfFAAsQNakdUFxl6ag73cTenh4qo0jmImJA+oF1dGm+JJJuak9yqDfQh3/qiM5S8ioMTTx6IpSJ+qgzMnH5oJkWUCNqFUMdDdAGRF0RN/BUULuUQSlQhARJFrINYSOviVrRZyCQFPArWocQHogRDysqFKFb+agW3Ul+qBmKIIwJog1GOjt2WsRlkixY07KVUxiH7ILDC4dEOUdWQLbRFPHA7gEiKljANrLWBGHWqgAAE0Dspqr9ygADMrajOUiKjyUEk+lizD8SVFZzkK+CaIjOraLOqvdRBnMqUYHVRTBUFxJPgtaht1QMCygvaejKiTH1dlKHEVP1RTcAFzdAE/XooqZf8AKIUh1F9EoioUUtwa7jRRSq/TsoDaLmvZANIdWFSgYnqBQaoFKRkA7WqVBmZAAOWOhCgzkdXDmhJQQWGv/CgTFnPlRFMRJbXtqiK2hiS96Ki2FABUioKgmVCHDUauqDCcmtQmjdlBzz2sw61QZTyD1NfVSiDcWrZkpCMnLk+PiooJo7sgzkSB41QTVzW6JhsQ5J+1Ah6dfUzv4qwUCav6QLKhlgHBqP1RA9GB9V0ES1dg+hRUGQ8KMFBlOobooILugRdqX6IJLdfEdFFD0bqgHoC1kDJPh0RAC5c3GisCLOwvdKqCS6gkugkljVQSQSgSKkoGgHQJAasgECKgEAgEAgEAgEAEDFVQ0AUBVAXQPsgfZAwaog0dBV0DCBizJooMfFBQahI9OqDbEHbU6P0Vg6i0YiLEkl5HRB18SBv/APt7KNR6n+PKeMZf322ileq1jr6rxQjFnA3RuHcnuovMdeP2xunEEyNA/wD2KlrrI7OKCMQlli4iCItbyXPqvRxEcmeaOIRtE1EQNFIt118CJzZIwjAAiPqKlb5XzeVDGNhJ9yNbMGW+Yx33jws+aJJMnIJsDQauumPH105pziTuudA5+qOdQMmlu3daiNBMgXf/AMlYi2hu6iNiDclaGgi9Ax1kenZEURtD6EUQMM9Do58UQCTAaEnVA5ZNrktIjQJocchYP5dlRcSfSYlyfoqDcDp4+KRESIDF9asiIvWL7f8ArqgYxxcyrWw79EB6y4NALx/RNFGTxIiWjqEA9Bq9KdEGsCxpQDR9FRUiSSKAKid3XXVQGl/oqEZNQ27IgE5NdNGgyWH4q6K9xNGcp0erA6qaJc+KaJJogT6qCC5ugnzVFPREG6vZNUROrM6Ir/TqhdS9UBC36KjQAgN9VUwnkSG0/JBYl9FdQRkmh763V0MzDHoNU0SMgdvoU0bQnofNWUav6aLaOecvUXrRYtBAf7po0AF/oqJMq3dNCEut1NDEu+qsDMzUCiaJ3UcjwU0LdLwQIkB1NBuCaJlkHmmrjIzq6midz6KCKuoLjItRNCkD5oqJAkuwUCiHLd0VcQXdqWVRuMdAQqhbeiBxYWcoKMWrdBlI69bqKdTeqgbkl6dkCk1+/wCKKmX4XUGUu9KupVSSXoW8VAxU9W1QUGavmgmRA/QIIq9RdQLc7t9FBEj+76IJZzQPR2OignaTRqnUqgNm/FQMbhYXoqNLGlhpogDJrCrfcpownlYer7hQf1UGOSXcWugxJ3PqURkSQSWpqo0nczPc28EAbAO/XsiJl9WsVFSREipoby79kRJcl7ACwVA4LukBWm6o0QOO6ur9UDA6s4VQGRbcSx0ZBlKTmpr1WVZl9boECLIIIZ31sgRYeKBAU/VFFBUogB/2RRtDOiEL0umKHIuNqDMknRgEEknRQR+igX6oB0VLoBAIBAKAQJkAgEAgEAgFQKAQNAKhoBABA0AgbNZEUgbD6oDRkDB+iChdx4ILiXFadgg3xQiaBXR6GHEZSG0+n9zo1OXXgxyiaQDg+ko6R2xyZJiEgS8T/clp5BNbXgEp4wQNstxr1CEjq2CMCZh9pjsrp4LNd5G2CMpTBjvO4uzUCxXXmO6WGcotLCTEXk7pI3mu343DDFEiEfUImUgToAl50x8/8n8kM3IJiBGJ9O17LrjyfXvXnTyzjuIkHFC1kcNY7iRQnqXCrOgTJdi9NbqprWDkW6CvdUaOTGRA8J2qOy0rV4tQESb19+5QuGJxBiXYtTVEpnITJj6TLX/dERu3CUYwB22PXu6BSkxIhBnIEa0J6ohGZ3FyDkB9QH2uEG0JEvq19A6aKGT1NudtFdBQyazVV0UBuLmkn+7smIkkGJcnbucRP0QKZkKkuf8AqFNIkggg2B6INIuGow6dFYLEriwFVRQkW6lrIHHQGjVc9eiJqDIs9jqEESlUgal1FAIfobq6gMzez3CaHDJUuHGg6KyiqtU0UASbh26IJ1rZAr0QAvW6BEGpQSgVG/EIDvfuge7R7qhgv+SqLga9NAgolgraJF6pqLMgyaJB6Jqgmmvd0RMshqBR7oYnHLppRBvA0WoNDkO29VdRhLJ6jXxWdFwkPP8ARNGhk/n+C1og5B+vl1U0T7g0TRXuFgbKmEMgPUjVQwjlcv8AQdAmmF7jlNClk/2UoncWbRTRO4vWyuhKAAD0r0QBAfqinF7dNFBe3s76oFKNgyBbSDp5IKESa9EVrBma60gLijueiIkEgsaHsoqnJDdNFRBiVAqDzU0Ert9VFJwd1aBAiRdqaKKzIPnqoJ2l+/RACt/MoEDR/oOygCRqgiRYXropSMyWte8kE7yQ9lCj7h0JuUAC5AAqgpjc/t0VD0fQ1QUCTcuDRkGOSQA1LmpGgUo55z1ABFnKgylKp1dBBJFB5lBI2yJMXYXJUEFmD+SBeH4qCJGxv1CBSp4n9vZAgLsdVQ7+SBiPehuqAgaG1vBETKQJP5qKkyGlkESkBIU7ughySRHVAXpZr+KglrsKi4QKpJdnJUAzEubKiSQC5sgWrqKC7MdVQnPgVBJINy7WVCNx1UGZNPNQBuglwgRRSdAIBECKO6gSAZAIBAmQNAIBAIBAIGgfmqBABAwAgbBAC3miHVA9GQNA+pPkgdSyDWMTpfVB1YY0oB/VKsd/DnIFzpYKunLvyTfFEQBFaz6dkdFYMccZEyJA7qRJcEHVRZHZ6YTOSIaTUFgq1I6+PHHkxGUSJSNZObFYrvzI9KHIEYQBMSR6XBsszl08Sr/9hGMDGNC7gaLpOGevrHkc35HIZSnAmIkNpZXHDv7X+HkSoGId9CjzWspSAIFTrQ1VQDcSdtSKnqFUW4A3isW2z81UG4R2ipiA5NyCg1jNzUOBbqPJWDQTi5J3V+5wqGdx9IZ29IKgkTxkAkkQlr4XdBPuy2kE+mYHpaobp2TUTCRMAdzBiAkDb0OLOxGr9VUb4YwnCUiCYY/2uxr06oqoAkEVjtNIGhrqSg3x4hKhLEnrRloLJIyYkgSLgbbABERKQ9LC1P8AdTQgSTI9KEaeKinCMYuLFVF7g9SCNFQ9wBPVkBVg5buriCWQMKEjRBmZOe2iim5JREmVKoJ3dPJAxLvdBpup5X7qhiVK3CAcNWrqhEWooHS30QIt0r+SBNQj8UCA6X1QIoEepQA0Co0BYB/oqGZERbRAoFIgJBfsgHCBEsOj6JpjMkPS+qgqGgCo2iVUTOZYpRhuJkS7gX8VnRrGdupWtFGfpqmjOU9wc3s/ZNC3kF3U0M5JK6YBMmhLAfmgDIeKIQJKKcn/AERDA0d1FAF2+qBgVKIe2qKNpNlQgBu7KK3Ebgq6hbf+VAGHkgbVroqEJba/VNDu7ClygTd3F6KAZi/XRUVJm0PUqDKVK69FlUAhnuihyKN5pob0KCJdB5qCZBvHqgkmoADA1KyJMq1togHe90EAklzR6MgiQ6UbXqoqCw9V0QhYVvVBcSHFXpUoNKgUp36hUBA06MAgzJEb36KDmlNyQaVqoMZS7OR+SgzJHVAuxduoQG52BoAgUgSWej37KiZs53AjQBQSxezADRMCBapugWj2idO6Bh2/BUPaBpREBAHVzogyepBsoqJHSxv5II3kHxWRL/RUD9tboAs1fqgQIFLIE3VQJhrR9ECG3yVUyA+oQSa2qgi/koJJq6gh0CoUAbuil4IBAkAgECUAgEAgSBoBAIBAIBAIAKhoGGQOgQCAeyBogHZBWtEDFi+qB+fkgY7WF0G2KIoTrZDHThiZUsXuUbkehx5BiSHkOirc8O6BjkLYXMfulE9hV0dIvDype62GG4v9xDjwUa5rrxYJGe7Lk/tyvEixUdZHZhlhxR9MTtiWmGqTorIWyOXPzZVjExM57njEWj0KtrhfomHLxnDOW8YsUQI8cOTKUv3KsW6wzVMpiLSA9Qc18kY1xyMSHlWj00REiUXrLaGcyFyUDEvtBkRIi0R+aqK3CRYC91QAy9Jbc1NwsyA3xBIJD3Ar9UFjIQBEy3GX4FAx7hEzFgIAVJ1Jb9UDdgRGNCS9aPqiJlMRaJB33hK4PZA5SG+LHc9g1uqoBPLKWyLUBk/VJ5Q4ZIy2bySIm40KkV0wIlH7hOQlWDH7eq2jp9zdIEBomjdFVZmcQG2vpFTRm5qDTupqGGZ3atBqrBT1kxqqASowGlUDFR6vEIHuLPcio8EEGRehfqkoAWJceKIroPN+yCT9x7j8EVAoHJsmodgNWQMSp42QMF+6FU7eCC9wbt0VCLNatwUCJc0oNUA58P6IHEDwCoJM10EkC70UCiKHqUFKgJuyAAa1zdVCP0qiqF0Ey1P0UGYZ/wA0FggeBTUawt20K0IyEt46qUZxEWFPErIoB9XKoZDEUboqIIr4aICr0CAPf6ICIIcugYNXTUMXQNqa90FAUQBZ+3RAIKqgsRp3QSIsSg2hFaF7fqoFKxHRRWMi1v8AlBJc/wCtVBpAOK30WpUNoihp37oM5SWdUtzJok9KlSiQ9aKKTFr1PRBURXxuUC6A1ugg09Sggm720KgjdVTQqtQ1QKjMWB1KCTUMUEakdqIAjpaP5oKDa07DqqKcs2v5K6hTkAHKwrnyZAaNTqg58syR27XQZEydj5DsgTghxogkmXSrXUCBFSKPRNDq1taIAuQX0sgmQHj1QSIkAmgA0VADQv1QU7GlkQiaEsSEEyba8bC/iorORcFhVqoILG5tooIJBNmBQS4ZuiA83UEkMO6B6BAnoRZAXHquqCrUQDBur6oqNzEuaMwUGZPXyQSZUooESgR7ICuiKThAIEgEA6AUCQCBIgdFNAIBAIBAIBAaoGqGgEAgoIgAoihEOmqB6IHbxRTDk0QdWEUclgPzQb44gP6r1qjUdMMm4iMT6hdlV16/x3EnnOysQbqPT8+NeyOAMG2OPHFo/dJ7lMdfXGOXJijGfuREAKbbA9wr6s9dx5nJ5onIw9z2zM0iL7QNUebvvXJ/kz3sPTtoG+49yo56IZiREbNoBJ3ki/YKmrGScnMjvIoJal1YVMxEzjEgxFCQERmYyPqqCCQADcIAERBDkRlQoLgaDQgHbIKi4uY1o/7Rd0EyoX3diALeaIATBiSNpoAKB0VQIAAnoCREGhOjohxIDRYyBrLGCwfqgtiXAZjQRu3gqg2ARrWQoXVCIkZNuAJj6RpStVFAMoRMoADKbgWKI3jOUa0fazuGfutaNPckImoALA/7Joqct0gAGA17IrMEEamtCbMmoozBcjxHSnRNC3uAX+6suqBg3Lu6A3V7DV1dDM6vqymhRJIoGHVFWNRrYlVBKgHeiaiSbuXGhRQ1gzIKavigROveiqGDevd0FAk0dAxTR0DEjqqAkEu+lggQ0HXogoddQgHDPdAjUsgYHUMtAL2UEtWnmoKqwVC1ZQK/c6lASPdUQGJUFRuqNQDtHZVEZQyUZRWVaAlVDJdnQSYv2ZAauECIr+KAF+6gCqGKFBVTTVUVEdbohmKoqMDqiKEa1sEVqIdmBVCMBvY/apQRYWtooq9w7FEKXTydFYygwrdKAMKqaYNzV+iaEcnTVNEl5ONVBFQ4u2qKd66hEBFa+KikDVgAgV6g+LIAmj2P6KCZVpp1QZS6KDOlgbIE4Yjr9VAOSxAtRAnFhdAjdzdUMhjW12QJ/qfwUAJESbpdQY58ocB2N2Qc0sloxq5Q1k53OKF6oJcbi6gntWlUDa6oqEXHpbuSpSJpWpKBMCzliUgDeldFUJogjqLuij03NyOiImpj3FkAfx/VFZyk976qCCQOtdFMGdHYfigCfJBOpIogRIJBeqgRuSfogVRQoqg9mrclVC1rVAAjy0VASRQJozJALkP2WVQS/YKCTWyCWqeqAIRSQJAIDVAroGJEW1umhfkoBAIEgHogAgaBIGgEAgEAgaB6IB1Q2ZAAXQFWQMIGEQPUopj6lEVEt3ZBpDJIeBuEVvjl1OtEWPR+MxZZ5IxbcAXR1+UfafD8b1yjEH/yNm7LOvdLIv5XMMEIkRJMXDDuusc/rcfNfIc33CDIbgPt8FLXj6uvNzcgUO0DG/mT4rLCDMD1TqB9jaeLIFDMQJyYgmxlbxCI2jmathQGQuSVRtjzES2tEf8AaRNW6KhbBKJmzh6EXZACMmO2JFbE6KxFDaCTQCN3/RFMwaQEniDU0L1CgcZk42c7Cax1LKgjAeABdj+SCoxiKbSCal+nZUWPUGiSY2LirdkBi2QyDa52gkE2/wCURQy7jCRI3EG+h7q6IMh6XG5h6z36paJ3RIaVY6A38UD9yhFqeVE0XHI+0AHfetgE0VvNzIxHQXKg0M3Ev+rgqgcA+rSw0QANnp1QDjxaxQIklmtYgdUCgXJQawY9WVGtX6duqCSSB3QSwBa/Togqv+uqoq8SCUARdh4oDaST4IAgUHRVDcADq+iAJrR2vVA4yYuPU1GVDB/FNAHa7NogdWd0CFX6FBbFqeDqhEjW6BbdWoiKah07IJAL16KKejqjOTVLIFEB3/BQaxj9OisGm2llpGeSL1WaMxGvgoqgCT3VRYjclUBFAmCGPkgZiSOj69lBIjVgH0UFGBfo2ioQiSUGsYdQ3VUUINJg5N/JBeynfVVDEQ1QguI7eCBgaa3QTIoIqR/17qKpn/1+Kopm6UsoImC4AqoMjet1FQZdvNAtw1uoGKlASBpZkAW+iAJo5oNAqiWL1YqKGYksoEXEbV0QRMghhp16qDOekTVQQzHt1QJh0fqgk6i3VADUfb3QH7QyqGDHQE0uUEsGJdh1UVhlyhiAaPRQcs5uXq6gzJAD9VQjI0q3RQKQeLt6jRAiKjTRAFw7V8VRVQKnSyImQF3FeigkuKCgVU4sBQmlyoguX+rqh3l3/RBMiGaz0ZBEgGqC4t4KKzMuzBBmXdh9VAt1OmiCaVCCT+HRA2/12QJyfJQAs5u6sFTkJSMuosLOlEgS21LFApSFhVkVJL1Kgkml0GZOhUBV0E+KLSLoEgNUAgEBRQLRAIBAIBAggEDQCAQCAQCAQNAIGFQ0AgHugb0QDC6AZBQKJpjVFUCAaoN+OYuHFHUH0nw0ccpkij0A6BOnq+X4+0+Iz4sPHywmxnOmOXRtVl0teP8AN8qIySx73/6v+JXafifWvkssxKTGQADuXqfBYeJzxkDEyNQ7QiUGpiRvkWABDgaIJIvJyLCPRuqoMez0wAaQciV9x0QWCCZEt6mDd9UG8TF/7h244ikrn6KwBznaJE0l6RomoPeBG0hyDbVlR0SmZiU5y3zMqiX3BhQKwSTtINTuDudD0Q0xOIbUHQ3dA/c3ip9TMZdFBYyOACW2uaKqXuAxlscRB3GIsaIhGQMR6e9OhQRkmSH/AG2A1QIEuwFbF9Agkl33Fy77QKMNVDFb/UASCbxAQaCTMLyGvjoqLE5CWkpC/QINBNwHrqZaoB6EvUm/ZAjNw/1CKHJetyA39EFxIEnFNArEaRNK0NyqDcaHVvooHuH3Pe6ofcVQUKOTrZAxSgsUAz9gLlUUOxYFAUfoyqBqvobDugUQQSPqUBYFhVA9LePigobj4aIEXYHWxQVEdXIeyoulSLdECY/W6CgAGrTRUNjrZVBtBuooMHtfr2QROGiJChEbn0BUVrCFHWoijHRBlIBz1UtEiGl9SiqES9KBVF7GqgRiTayBe3VlMDMDp0VwTHHW6kitDjDBr9Cqg2B61QaRjS1VUVtqSgewbWdUIgUAFRdQLVRTAFfoqJl301UolxrazKGCMmPU/omhmRpYKaqT21N0Gchdr9VBnIG99PBAbS92CgIiyouhJ69EEyHZAn6eYQIhm1JQDvWzKaFrdwbJREgAWBG7UrIW1i+rVRUsOjv+1EZzdqsK0ZBIEjVqP+KodaPdEIuz3igJGOlvxRWGfI7iNGCyOPJlJB1kNUGJlV+qgT1fRAGTVamiANfNVDZzcsEUECjX6IAE9adAiE4pRzdBJl6jR6IDv2sEFGUms9Ld0CEqHVroJG0k6aoqJMzOoMSWIaqgkuNXQQWd3UB360QKQaqAbpa7IAuEUgWPVUMl/BDC0FLIJJp3QTKSglwyCX10UCf6IFZFIoBAkAgECUAgEAgEB3QKyAQNAIBAIBAIBAOgbdboBUNA0AgASgaBhtCiGGHj1QMIAfVBcJkPVFepweeISjtJErP2Vb57x6Gb5TlHG2PIRAUKN37VxT5GQh5zMyK7Ca+KOd6tZGUWH/Y1vZRlMNu4QNAAZCSDaE3DQLGXpySOkTqUC9wGTAPAenGK1bVUOMSAIxAo/pv4oi8YIABMRB2BGh6KjoxZePDKZZCJSbaDcWW+cTrXPKcTq7vt6BjdYv60zMpMTE1+6J8FEMZJGTmhmSZdXWpTFxz7iPW2l0lRUcjn00FiVq0MSNGoJUWVAyVLC3pv+KgoZNLbLtq6B7w71I1OgQMmjmLkUAfXQrQUYkPfcbsWDrIcZiW6+jxbUIGKRfTRUOmwaVeUUFA6D7dOyosFv3EtZr+aQWJvrTv1QUOj3qeyKQrXSwRGgB6eKBkkBAEyOl6IKiXIIsqLjL1d2VGgIIQLaTaiCgS9a6OgY6X7qiQQQUFOKXHigYu5cPSqqBxQfigYv1QNqXogRAtWlfJBTAWLi7qgANSdUFAuGGlygsX/AEVFAU7oKEQ1LoGQ0a/XuqMZR8lkOENCNXfqrKmNoxt10WgzHtXV0GEhUKAAtoeygraFaKuGL06JRNRoyaHtsSHRFSD6MipAHnZBrtFFUTtrQM1lFXC7m6BkdbIG4EWdv1QRKQ3UqgncNLoGZmwuNU0RJ2/FQZkh/wAVFISPhomigCTVQVe3ggiY8m0QQY2QJhoFAMRr/wAoHE9Li6oROqCbWq6gmtGCAFrWsFBJcOBXqeiA/bS2p1QR6dLdUCBBHQVqiIMR0c9UNOIq2mqCSK0t1QRKQD/9bBS1WGTOaxdm1U0cuSb1coMTIdKfigiviFAqDxQOvRx0RFkaC2qqilKoh7XLa9UCNZPZBJJoQUCJBtR0EswY3RQ5CIRl6eiKZlSwdBnJje6ggxY1OiDKr9AVKJBqOiAEi9lBJIJqXBQNqXcIE1OyqhnZA2umCTaiCZHsoIJdBNrKBPqgQNEUfmgRQCBIBAFAlAIBAIEUAgHQNAkDQJA0AgEAgYQCAQAQPuqGgABdA6MiGPFAIGKBA30QPWhNEFCTVBIRXRDkliCTEMrqK90SqKnr2QP3nBAiAWqyBEvIESYDTRMGkcocxqD21CUVHI5uz2HQILiYxmZUNKq0ITYN1NIvZIHLJISmSAIRoG6oHv2yuC4sOl2QIFo7SSXLmR/JCpq7CO4CxKigReMtjdz07IinjBqnaWZuqB3p+69dEFvEyECG1J6kaqhiQfqK7ns+jJRQlrpbb3QW5dzcCg7ooAi4DFhVu+qsQ4zcBi1wQ2iCoyDOB2A7oLMAKG5Dk6OgcT3FLdygYlWWg1j3QLdcsd2roNYGNSAwIZxqUGkQB93paxVFAyDAl+6BOGFewKKIhpULtc90RVGpQR6X7pouJo4F7OqKMiGeiCouWdUWNG80Dl9BcKidT0RDcmvSzdEVVGAd+3RUDPQf8oigLA/VA5WY6IJDuC3mgrx0sqCoP5KBv5KiooLEiT1ayDSJA8dVdCMv6qUQWFwz2SjSDeasGgY28FUVKMfLVUZTi7sHOnYKUSIsRqeqitCzN9FdRJsgW1y9VAAVpfV1RRZgPqUEhgW069VFXvAFVWUSnVgpVEZ+FUFmZ2t5v2QTvJo6KiUh1tZELdW1wop6ULnogNO6DIjTuoAAu6guIPRyqLi+7yogJB73QZSs7U6KCZUHVqugnzZQxLs9KILoYuzq6EXp3U0QQXJuUC1HZAqAA3fRBJJcUbsgTNS3Z0QCzCyqBmelFFRKhHVBnOQZzQdO6iubPlc9xoFByTykuxUGcjUNfqiJcuX+qBA36opi1QH6oEH18lUMNTqguO4g9NSUDAAjfzQRMhxtLCzoI1ABtcoE+gtd1FIENWp1VCLH7aBQT4huoQG53q4QBNXbSyoitH1WRmak+NUElwWugQfqzXUCYXAQFUUj2VDYBiT4ohE0KKiuttFBMi/g6CCaMoEgTN/RAUKKToBAkAyAQIqAQCAQJA2QLVAMgGQCAQNAIBAIBAIBA0AqGLoH2QANHZA6IBA/FEMVqgY1QA6mqKdkRQkEDB71QUJEdh1QXuJobMqHuLUtZAxI2eyaB3vYIGJTk0ojaQfu6hBe6DgAemNSdCSpphvIMDRv1QWJdbKhu9H0ueiLpj7qeo229kQWkPSxNg9kDAg52uQbk/igqpAD0FIq2mE7AgjWgUFRM9wDORVkVcJOAS4rVBoCTEgA3p1PigbyMnNJNSOgVDDu4NP9OoiwAKRLvqVqBuCzEPc9ggVGABet+x1QMVJ7alRWgkPUCfDsqjSMiAz0uSqHvcCQ+12HVRQKdS5cHuqigdRQfr1QVtpb1KjQaB62JQGnXqgACNaDp06ILEiI0pX8FQ91X00QM0He6BxbvuKobsC5qmoqJJcjpqgqmpVEyIdrFBUXFGQOpc6augKP1QH56FUDjXr+KC4kmr1UFPVhXVUSZa66hBAmdAfA9FBtjLMysGoMRQq6hSnQA+QTRnvJtdRVbnNUFxkGc+AVA7hulwgkysoJ3hwqBzc0CgRnVnQD69LIIPUqCokP5oNCS7lqaDoqhVpVv6IqJ9g56qCQSaD6oNIMbig0QUQWoFRnKBBrToFAMPAfmgYYE0YaIKFPFBTU/VQYSFVBBd+vVFSQCQRU9ECludEESGYs5ug0EQfVrp2CDOQqfqgzMh/RBEdzncURQqKaVVDIIAtWx6ohEDwQROTBnUownmDmtlGnNky0LKDmnMGn0QZEsPxUEk90Dr0cJA7u2goqg2kEIaTEltQXogph0LNdAMwZ3ALsgJGnpN9OiDN+vkgHfxsiEfyRU9z9EVMgQzV1QD/8KCJuz90Cc+R1UEndKhuLFUBba1zqe6CS5UEEvK1FAyRqfBUS7KKGJ8kDD1VEEg0aoQRIn6KCTTXyUEkoESCgEUigECQCA1QBsgSgEAgECQBQJUNAKAqgaAQCAQCAQCAQACBoHVUF/BA0BRA2QA+qBuiHfxRTo3ZEAY2QV+aADO2pQWKMCgqL/wC6Cmp27aqgYuwagcoG7+DKCmo+1hYFUWZEREWcRP2hACZdgO6goEEsejxGiosSkxfX/TIKag9JERS1UDAAI9Xg6oY+8GhJo4s6gkiYIDgmroB3/V0UwSNxLoKiZR7t+qI0EyYlzWzIqwQKuAwqgegP02qosGRkQCxaoCB7vSQKDVUBc3+3oAgZIIBAqCgt9QGdUIzMnB/JQVvIAAHb/hFWZXqQQKIjSEZGINyqNSG0Z7hARNgNa1QWOtC9CVQiCK3GqBEl6lh+XZAA+l+6Cw7/AJqit1zpZA3qGCC4A3PiqmHKzdbIJq7mjaKK0B9LnVUGr+aBgdR4IhFizBldBqa+AQUNw1vdBUpFqUQYzOqgkdrIN4D6qijPRlQjI2ZygkE3UGgJ8VdFRLuTYJoBufufyQSbPpYFQAltL6oET6qFz4IFc10QMF76WQIvXvqgAg1j+HRVA34ad1FG2rm/RBAiBpdBrjGt9EF7TUDRBlICpF0CIcCxb81BJI1FQge4Gp10QPcAKW6IIn1diaKDKg/VTVLuAyBSs+iBGQBfqiGcguHJ6aMqIJJDv5IMzHvVWMgAu+vRQVuYA9VRJnq1dFFRKdZHToOqDmyZqBipo5Z5CVKrKRJNeigzJbvoggmtlUMRDFg4UUgzs9OqC4hg7UNGVRQgD9ECEXoKDVAFqkUbRBBk3iUEEh26ooen5IEH/qgNz0CAY3lpZBBkCfS73LoEWNVBBJFWugndRiFBLl0A8mBdAEAgF1RNiSFAqkMA51TFIivlZQAGnmtQEu3mpUZkuoqXL9EEyIUCQKqBFFCAQJKElQ1FGqBIBAIBAkCQCoFAIGgaAQDoBAIBAIBAIGgFQ0DsgSChdAVRDejdEUXqgYCIb6Ip9A7FEMavU6FBQs51QUDRUVGWgtdimhh2dwSVA7dNyocaEFyRqoHQkepgdFRQckB2Y1dQALhhd6k6/wCyCwxJG5gDZUawyPd3GqB+qmkRcdSdUAWDAFh07oER6Q1BrLqgTxD7aUYvdCHGgABQVqOoP4ILB9RlR9Agp6MQTVj2QaPQENSzIBx1Ym7KixIPdmDAIGPNxcIHUMSbFlQzcga6oJckgFiyiqBIHVEOBJcXRW8JnawLf7LSNBIlmL0vog0qHqJUuLFBWoa3fqgZHpZySqJOgavUIF+1i47oHeyosEMCdQRt6ICJNHNkG4GnnRVCkQSY0AUUg3R2SIsg62VAANfGiKs2J6IJYC+qIBF6dUFwjd0EzNbIIYH6XUVER16ojoiCz/VaCNB2QSTWrlARMTdTTFRPemgQbRj6a3uyoIxq5NEDkKMNKhBDB2PigQAEbaoDaH7hAxGlRcoHLG4rrZARx1dkG8cYbQhUUMdX8lApRABeiDIgvWiAg36BTRoRcA2/NUZSPWn9VBmCA9VAjLyQSZM4udCiwRMr9LoK9La9kEEOR+igCNTTsgynJv6IjOXYoAUtY3VSnEPXRXE0EMz20QZymAoMzNn0JsUVmcwBoVBlPNNxtIU1XPkyUqmoylatUESk7IqC9GQFauEDBkKeZUTQRYqi41DIKD7g8bKiWiLam6gkyiHQZEip+iioL6U6poHNrPZAgTrcWQWcgI6HoqkgdxW5RUFt19GQRIhgzsoJJF/ooJlW7ugTgEi6BGR8EBuN0AGLuGPRUMClNOiCdsgXkK6BMCkR9UozJqyyqCyBSIUEglAjogR/JAFFBugSBOoGqEoBAIBAkAgKIAoEgEAgeiAQNAIEgaAQCAQCBoBAyqBA+6AQHiiHVFDoimCBg0QA7+SCqIH21QMGopdUVGpLmkUDceH5qCqE0Dd1Q3YFiWSodKBr69EVW7dSRc2BbRKAGgBLmNAygsEGhAJ6DRUWJAvUAjqguJqHkSBVIUUIBF+vZA6ttZ6/QoARAO126jr3dAVLBuzoCl3baboGCXoXJ/cUFPEVe1AdUFxkSS9yKnRBYa0QCOqCnHjpS/mgsbjuqOoj1ZWCiXZ/F+/RUSZD7RXUqBRqCwtqUBuYWvZBcT9wcvoFRo4F7sg0jJqtpYoNBJgBG3fug0BJvporop3alW+ioQDijV6IBi17X8UDEbf9mugZiXqUGkQXq3UEKosSDV1QIh7UOpRTiY1L+n9URpbuT+CocInSp1KiqlY9AqjPVx+KgsRt+aoojrfQ9UGcy7i1bqKk3bTqgURXzQdEBd7WWkBHSyDKTfXRZBCJa1UGkQCGH26Ki4ihrZUALSQEjqdVBIFXQUQHfTXxVDLXUFRi5FPJBRAAr9zt5KgZhRBeNBYLnwQLIa1qf0Qc5IDn6BQQKSAvqR0UGr3aoKozk7VvogyIOullAEO1alBI1YPVRTiHl2VwWIkEv4JiJlEAUt+qDORPmiMjUnqboEYhqBArDaUDJIp0sqiJS8yoMJ5JC7OEVz5Mryd6d1kYykP/AMkEykXdFQSCUQniLt0QZhnO4WsAgZAeunRBFSXP07IKYBw7duyBsBayCnehugI2LliqIJ0dx+qgzkfSdA6CbgEWCKi1Bqs0TuoCdLIKOhdiqELkkuOqCtzFxVUQYxv3UEmzOQO6DMuTSygJXqboEWYAKgNRaigRBZuiAArdAUej+KoDIugmVWa6URMkmqlVBusiD4IFVAFFIohIoQCAZAOgVVAIBAIFqgECQCAQNAkDdABA0AgEAgEAgEAqB1A2QCodggOiAQVqgNCiAWZA+gQN/qgYBNQEDQDh3ZBUWvqLIL8P9FUAL6ILJO5xZQFj4qh7g+vRARJZxVBQoSaAtqgrcHt6rugsSoWYtQ+aCtxFAai9E0XVxIenwRTYV3Ve6IogAUDdlRNbi+hQNuofUqCTtY1c6BA9W20uguJp3enggqMiWNAyEWCXD2OmqDQEgE7W6DVWBkOG1I/FAF3BYAi6BE1JBoNEFRY1I8OyoqgLnzQVG7a6eCCwaCtevZBcSS1XP5ILMwwVD36v4po0EgTudgNE0OJpWj1HVUWD0qeqB/8AibINAKANQaqoDSv3dPBFHprW9ygqJG12cWdEUBEmlAyDSILd1QpkM1f90ERBDDUqaN8cAxrRWCpQDWsKFUc8gA/VZCLN3ZFEK0Z+qDqAoOgWkZztUU6KDOQr4aIKG5n16KBjve6ouJOqAO4lAz3CCQGIdBVtboBy36IKiQO7oNXi3fqqF6buoECASBcoLBt+JQKda+SDDIWPXuoM3q/S6DaJBFPMKiZU/RBmSxc/6KCfSQTcqADF9oZAMRev6IK3G3S6CTEkHcgid7WREGAOrIJNBdkGZm5/VRWUsgAu7FNRhkzE28UHPPMSaqDIyLoYlzfRUSCSCNVBBkf0QE5CgJQAkS3UIBnJ66FAzo/gUA0XIpSzoGZE/wBFQP2dQRJrFBB7XCBEmlHCKRaUToOiCBat7AqCTR3DgfmgRMroGb/+Jv4oGWHkqJJJJexsoEQdrMyCXLU0UEsxrcoFKQA6HRApA1JDoJluHmooezIAyc1sroDIv42V0TVyDcKDORUEqBOgTopaIBAkAgHqoBUIlQCAQCAQCBIBAkAqBQCAQNAWQDoGgEAgEAgEAgYQCAQMIGqBkAgaIYc+CADoH5+SBhA9LoKetLIKrfQIGCHVFC3U/wDVBQalPLoUgTkWOqgoMO76KhgxBrXogbF6U8EDBZ3F+iBiTm581FXCTGgd6AaINhEXN/yVQENU62QSfUBcBkDNvSeyoKhwBXVQAFrgaoGAzlq6V0QMOXA/cg2BL0aor1oqKozn/dQMEtSyAMaBi36qhgOLV0dBpEFnI7DoqE4EtrOfzQUA/j1/RQN2oL9FQ91v+3ZBW5h4oGMg3AgNL9EFwnfVUaQyVe/dBpCdq1NvBBtj9WlQbKjSjOyqJ0A1uSoqTIsQdbN0QVDvUCyot6uzKI3iQB5LQichQFAQAc/ioN4MNPBUOYJd6KjAj6BZVEiSaD09EFYoklj1oiOkRp+CoyyadkEEVu3RBYAAvXqgTOCNFBUbUFOqsEgerxUFmVS5sgnQqgLD8kCJYNUKBggX1Qab28k0L3AO5Kuifd9SaNI5DdBRLxrdBhkkfKwUGRLINMUh59UFT3M4qqMZW/PxUAOmvZAiWf8ARAoO9SyJqokh+9kFTliDbDLc3rfqqMia9X1UETnatSgyyza7MFNHLkzBqJquc5e9FBnKd9NUEk0bqiM30QSTVrgIJcuS6BXPYIGeiB7SKE31TDTjQsaIGD0uqChNb9FAzazEaIMjMMRV9UEEli9zZuiCA1zoopByXYjzQNwDZUKR9QaygJm+2yCHrZNCqb20QLfVmQFpH8ECoYlyVQizuAwayggkkW81KFZnDoJIZ2+iKHNzfogRCCdxdlAiSNVQnL1QST1ushEoJLIoKBIEgECbVA1AigEAgEAgSAQJAIBAIBAIBA0AgaAQCAQCAQCAQDoB0DQCBoGqBA0B4IGEQ+2qB6UQMM9QgboHEm/kgoFUP80FBj2OqaGKmoQME2B8UDoKlA4kAOCx1Cge4gAAN3QEa00dUaRu8f8AQQWJbT2ugv0gVLkpQhTxQO4/BAAuTVySgGfwBqgGJpq9uyCogv8A+RN+youMmdqV1QMzBFlAxIiTWDXQOJr06INYsCTdUWaAB31YIHcDqgBVmtqqKFLWQBJJqX6IIDiPmge6j/j2QUDToEFiWpPig0jMkhvJUb48hDOPIKxGgymj2Joigzqz9lBQJA08FRRI231ZEVBnJKDUn0sB5qjORD1FUVpF9KIjpDDxVgnIQBQ+aDCTgkCsf1UEjs76oNcQr4qwdGwCHYWKoxyRILGvdQZnQgqCqsaKhh26INAwHlRBnIB6guoFNhb8UEAoHu/4QJzbTRBNbs6CtzAi/RAOdrWKCXPmg1xkkuTUIOgB+w1VRhkiQS1/0UGMq6VRTxsD+iDUGlFUZyP1dAtzO9+oUEelqmuqCDMOCDQKKZzPVVCOQCvVBnPMAaM+qlHPk5H16pownllLXxUGMpPZFYk1qiAy0ZBJkBe5QRI/VAunfRFIMSRZQPV9DRVDjGJKC9dFQ2o/0RCNKKCTJqG/VFZmZe7BAiXoLalBMpRZnrogh2Bjc6opA0vTooGDR3qLDsgVTUaoExdwXKBN6SeuigjUNRkCo6BGRN6IAE7b16IJcyLfVUM2Z7fkgDSoDvqggnVlBLvWyKRNAQEEkh+6gksgkmqgTmvdAXCBEIEigBAkAoBAvzQCAQCAQCAQJAIEqBAIBQCAQCBhA0AgEAgEAgEAgEA6BoBAwUAqKQARAijVBXggNEQIKDoGB38kFE9kDizOUFD/AJKBtRhYWZUUHNyz3QMnUBhZkCcHsgpy7EoHEkUZwCgoSajXsUFRAI6EaILgXrqdUFDce+iBlgKaIG7CgAKA9LinigIlrBUOrVp0QDua1bVQUDS9eiBuAxF9UFRrSxKDUGln0dUN69tUFCo7aFBXfSwVFkh+qIklz27IqaBiLm6qFqWUUwxFKlBYMmNAgqMg4akuio0hIg1oG/FEV7lPFFMZNHr06IjWGVBoJggW6orWEgTuVFSkAWNSU1ERZ7oNoHTzVVrvkB20RClIMxQZ7gKhz2UEuXv5IOjCB1WoOmm2vkVUYTuX+qlGL1rVrKDWH56KqcQ0uoOiDSjNRxYqozLk3d7kqKU4MHaiDMxp3UEgXceCBCrtfp0QMtQWQMQJ1QPbpqEEbQDViEGkSBQU7IOiJYAEutIjKznWjoOTJLbQVWQoM/dIrXc1jVk1GcpAeOqDGUwCoEZAvViyozEhWtq1UVmcyDOeXR3TUZmfm1HUVnKegQZmT0KVGZICiluDMgknu6CX0ao1RCe411VDEQ7F0A1S1kACWpqgsEGh/BEaCQZqUvRaCIIL3P6KCDQOSCOiKyNT9zKQQQOroJG5mRUyNuygCSftuboEKeCB0NDRAE1d6WAVCqAaXQZykI6O6gmR1UEkxNWQIsag01QIF2AFkBuIQBNKoB2YaaIJMiO40RU06kIETYmygh0El2UCdAiyKZZAnQF0E6oBAIEoBAIBAkDQCBIEgEAgEAgEAgEDQDoB0BRA0AgEAgEAgEAEDq6AQHggfgqGG1RAopqgCIYQMl0D0CBlkA/1QMUQMEvZBe5u/dUDsT4UQUD6a16oGKsTVIAAuwKCgR5depQHe/XsgrdRx5FA3r16paKc9fToEFb38UGoIYObIB2le9ygdyehsrQAkG7ixUDe3qYaIEaGmqBmgFb0ZWhx1FwoKj40ZBT9CguEmIBKDSMokbrgUZUWDEXqWceCoBKJBADOiFcAGwVA4AoK9eyA2jWpUUzGTadmQFhF9URcQQdxr0VDcAub9FAbo0/BFOJJN2OqC4yZmVRW6TsPwRWsJgUF7qoZyl3ehuFA45tdEV0Y8gEXVF+4fLREU4l4gUQS7WuUU4xN6Uue6I2wuC31Ko6JykI+lUc05gn1HwUECQd2cBBpEi7ONE0VGUXbTVNFmUaMfJUIm35IHIhm1KDEmLGrqCDIAXdQAIe/0VFGWhbyQG4XqNEDAPggksiFuLtrdBrDIRFirorIQQHQc09bVoorJ2F2AQP3AzumpjPJmDitEGEsr28iorOeWRNNEGcsn0KgzlMlgKIEJO707KCTLoqiDIk0RUSfwOqgRIoTVAi7nXsgg7iHAQFCGdVDH4gXQMGjIEQdLJgBF/ULBAw+79EFSNGArqFRnOVaUdQQS+tQgX2nxQSZdAgncWFK9FFBqqEX6MgkizOXuoB67bBAGTkN9UExJ3X8ygT0ZqFBBESWUCNARogQiGugmulGQALh9UCfrZFIntRAjp0KgmVmdBBOiBaKBORfVAOgR0RQ6AQK6AQJAnQGjKA7IBUCgECQNAkCVAgFAIBAIBAIBAIGqBQNAIBAIBAIBAIBA3QCBugHVDCIfZFHZAXQMIg/TRA31QN0FAmzsgY1QN6WVFPWmoQFqJQwKVugsittECLFkFbu7Dp3QMkFnoyAo5I+iCo08EFAkUfugsSLijBBUZOW1H5ILDtdzogbigIp+qoBUkuwKgTBmj4ICm0/RBQLf7IGSSwCoTm8vBlBoOxsLILjJqdQqHGYAoXOpVFRk4ceCC/SbU7qB16qhu8WqA6IYBJP4KgL7nNGQMn6XdKAs3UdVAmIp11RTBFncoKeXgqgBk4amiir3EBiaqok5Cb2CinHI5arIjUTIp+Cov3tp7lAxl6FFaDPZ/JBUM3VB1YM0QznxVgrPyAzAsFUYSnbVQIZAaxvq6CxlYeOiaLE4i+qBGdWBqgPcr3TQzMjV/FWjP3A/ZQSZ1/RACZ1+iCt1XKCoyq+miooSI8SgiZY3H1QRubxQaDKNzugJ5/xUHLl5DMdQpRjPkVc+SCRlJuaFNESmCK6KoyMj4h1LRO+tR4oqdx6ugW4MASiIMgoJJJZigT10QImtaIpGdQHcBAgPzShEPY0QIQ1FhdA9Bp2VQ4jStUAwahqECNnQJ6vIsDqgRybQANPqVQpAEM9blQQaCiCSQ3dFANKueigGN37MqJ21INwoExIJ1eyoRNaUCgl5EedSgCQ7WQSb9UDJP7qx7KCNwr0QIEOB1QQQB4JQtXHRQJzQkV6IqQWPUIE6A3HxVASLam6DMnRZCtRAiXQBJN0UkBogSAQGqAdAIEoBAIBAkAgECQNAkAgaoSgEAgEAgEDQNAIE6BoBAkDQCAQCAQNAIAIG6obogRTRA6AdFN0Qx2QOqBugYOpN0DD9UFA07oG711VFsw8UA58O6BuKAVKADg9UFElhHaA1zqge70vYWQMO4JQMyJIeyC9/WvVBcSHdj28EFRPTVAOSAHsgJEE9D0CBxPnorooAAdigWprdQMGhF0FDxVDB7KA3kGluioqMydU0XGT30QX7j9wFUaRk4pYJAxtYyf6Kig9HQUI6fVAjGraBBBBAPdA6ADsoESfrZA4XRTJZyqiSXZRVCrl7CgViVQ3CPc6KKDKtVUMSNjoigSYvVQaQyEPR31RGsMpBvZUVPM9z5oMfer1RTGeQDAsiLGfvVBX+QiqPJDUNUQhyNNUDOenqVESyvV6KAOUdaq6JGY9eygr3yKNdADkEUJsgoZ5NdgUGZz6CsuqCTmkSwQUM9a21V0EshNjTRBjORfxUGMpAUcoF7lwCyBym8a3CDMyJDWCCXNauoEb18kEugg0NAoAE6VQArWyopgQqIERp5oFtINEDYhxqoEKhtVUMDU6BAtzUsgARtqgkmrdndBBkbBBJEiXOlyiqcHREGwWF7oEAelUNDNQGl0EmpchkVDvUmtkCrEEvRQSb2QBkDEaEXCCSTX8kCcAMDXUIIlLsx1UATW6BFBMiSQBbVRSp4IF2dAia2YIJLWCCXaigHKBVCCalAMEUaoFqgToBAVUA/RUBUCZAIBAIBAkAgFQkAoBAIBAKgUAgEAqBQCBtRAkDQN0AgEAgEAgEAgEDQCBhA6KgdraoDsiGihA6WRDBAQNw1kDcsEUIhugfibKiomuqCgUAJdNEDen5IGHca6lBUXMulUACx8EFUdwaIigzUYjqqHVn0UDEulEVpEjqgYlU18SgAdxdmP6IGCXoXHdAwdeiBgh36oGQO3WiIe/rporoRLUamiGilwopxugrd3dBUZUCqLEyaXaqosTQbO/5OqL0DGo1QD6SQBqKaoEIkh/wQQYl31soGATpZXE0jdgipBP0UFgtTqqDdrqKIAFxZ0AT2UUiauVA4zaooFUae4XcaKiZyNPqgjc91FU/eqCzM2/FEITdUVKdQyCTMu/RQPfLyVCet+6AMia6aoEJAHt0UDc3dyqE8t3ZBYnUqhSnSl0RByH/hRTjNBW8M5NVUYzl2drKKTud2iCCS5DIAl26dEEt1sokhE/RVQTRtFAtoZkCIcsNEBskLVdBe1wAqgZg1zoiJq/dFOUaAC6CSJN1QS/QIpSIBY2N0QnBYN4eAQLeKgi6CCP90EkAjpVFG5w1AO6AMgZWcAIh7j4IGNCT5qAO24FrqjMlz0QSBcN3JKiokfp0CAJNNQgmUbkoETQMbKCH3GtEBK9aoFIBhoeyCXYOgL1dnTFI0l26IJLEuoJKCXJqgRY+KglzZA3LIEWRQCgXdAIEgEBqoEgEAgEAgECKBIGSgSAQCAQCAQCAQCAQCAQCAQCBhA0AgEAgEAgEAgEDQCAQP8ARAWVDdAOgAlD0QMXRDcoAk6oGCgdEDdBUZaBA3cuS6Bg0VDJBoQgp2AGqAJAA7/mgfT8UFAtoC6Bgir2QUZHysEAC1H9OiCoybVAxS9UGgLENQIgo5L90FRLnugYD1a2pVxQPzTA6A9SiAihJIDaIqQ5ZrKCtECBvWyDQHzCoqMkRYk0qlaFRkQ+rKaixlp+aKrcLiqorc6CzLTogNol46oh7fST5OgkxsEVMcdy7IGgRd6IE5NQlCJvVZVNb6G6BgszHwCqLcN31VEyJugTuKhkDB6eaBvVQDgBygdWorQgQSpgcpOqESBchBJl+CBbpGX5oKMgKlAnL38lBRMj+qoN9eyCTMqCd1XKorcLEX1RBuGtxYIJNXAtdFSS9wygKqhEPa6Ba9lAwGt4oGRRmVCIdzEIAB6WAuoAmlLKpQ5N7BACoqETScAXAOiKzyT+uqURKQiadFFQZFq1KBEy8ALBAXrpqgJM9LEKhSejW6oETEsiHV6MAituLxs3JyxxYISy5ZnbGEAZEk9AFLTHT8l8TzvjcgwczBk4+UVlizR2yr2KS6mOGTO4HgqjMli9j1RUzlU6DU91FImzMUEED/8AJAqVGmvigk9rIJevUKBGVXdFSTRhZQMMNdKIJJq/+nQIkgOS7oES9kElBLhQIlAkCcooJQGiAKBIBAIEoBAIBAKgUCKAKBIBAIBAIBAIBAIBAIBAIBAIGgFQKAQAQNAIBAIBAIBAIAIGgAgaBqgQCBoCiIaARTdEMFAybIB9EDcoKcFAw2t0FbjrpZUN3KCiXNDRARqaOoG4A8NFQxIVQN3IUgqw7Kh7i1qILeLUq10FPUagqhgCJe/ZBW5+6AcAMK90A+oTTD3AVZxqogc+HZFIkvRVDuSUUwVEMnuiqBD0t1WqK3KIYlRnd0VQmPKyIcZMWVGu/qbKjSOWz2QabwaaFEpO5pYJRUQEUGIDi/dVEScd+hUEEfUoqSJDSqyqdXt2VRQBHibKhl2syCSQLqCZXpWiBgmm0WuqKd3LIB3I6ICVigmN+6ByBbr3QKpLIAxJP5oCYAqA5P5IAhwx0sgQFXGiBxMvNApH/dEB8UAK0Q0wO5vVMNVSxHgggsLO6KRPUMSpQREn/NAxEBgBREBiKv5MqJFj21RV/wBERluagPkopbw2r90C308dFUVu1N0CMqvogz3XIsgzcksVm0TIsrVS9aKaCrvqNEAK9ibqiqEAPVEXGMda0qqM5RADsQNAoqDJ6B1B7v8AD/5CP49/IOL8rLCc8cDvji247tQ6z1zsa56yvT//AKi/zsfy/wCcj8hHBLBhxYo4YCTb5gVMpMnz49Yd9bXyO6QJIpE0AXRlJd6oM5EfVQSSQGKCSQ4I8lAnLbWFSqFKh7KCX2l9EokqKR1ILoE7eaBAsgDU3QST9ECerKCT+KBaoBAIpaoEgEAgECUAgEAgEAgEAgSBIBAIBAIBAIBAIBAIBAIBAIBAIGgGQDoB0DQCAQCAQCAQDoGgFQ1AIBUNA0CRAopqhuERQOqAuEBRA3CCkFCQfsgbjQKhtS6BguX0CCgb1QFT3CBj6uge5qFAPHxOqGKBNxXsguJAq97oinALCyKZNkFGQ8CqDcXcChUFfkgC1lQwTRqkKAdzW6A/JUUbUREB7KKrxVQ9z0sigG7BkD3N3ZBZlS/ggYnb8fFNRrCd1ZRQmQKnuqhxyEuX8UVqJxNqBBYlIuwp1VRJLgBwUpCDEuD9VMU2L+KgDEWVB7fayqAwDVQZSg5pZQDVpV0FGD0DUQVsL9KIFtpSwRUGJ8Sqh7SX6qA2SA69uiKoY6ml0CZqKxKRgxpU6qWBEFAjEd0D21qUwIsNHJ1QIxaNRXQICMAaN3QaRD/kqHt9JA6KBN6W06orIjrdAPYaFQJ+jqoN0Q4a6Bbhp9FFDxfugiRiP6q1EHKB36KKRm9TZESZg2NVQtx+5ieqgBtJpQsgjWhsopPq6BMbIExBoqG241p36rNFAXBVgozi4Gi0mIJB1foUGcr001UVJmQHB8FAxMuA9dVQ930CBGYk+p8EGbhnayCCQBQkoASLbR4ugiUqudKKBO5Y1RQfqNFBPVkC3V7oETLWpQST0sgNKKCfNAkAeiBFvNAkUkAgNUA1VAFUJQCAQCAQCBIB0BqgHQJA0CQCAQCAQCAQCAQCAQCAQCAQNUGigHQCBoBAIBAIBAIAIBA0AgEDCoaAdAfqgLqB9FYAGqIboAXQUihEU9GQDoHusgYOpVFAlqIKiBrdAyasgH6IG/VQVEPXRUUDEAgioP4IKbXQ2CBjogcTIVZwgcZPS/dBV2Yv1QAJqEFAhi9SgUeyBuCbIi2VBIk07KKA7NqgAA13QBBuqA1La6oBqMFAAugHY1QXGbC91RW/0t+KtSGJ2fyKitI5NWsqixnkxqzqghPQ3UFHKALMyaYoZASgoTD9E0aRIMmdgVqIqQfUEiylGJHbxQAgAzeaC2AD9dUUbfSOmiIZiyohg7GndNMUIxci/QqKBEhquqg27a6HVQBZ6qiCInRQ0xDUFh0VMMNUmygmcYuEUSAe1QrGaQZzqyKndc6KBuLg0Qw3LOrpiTJiBobKDOUi9TQKKneDqgkTlUCiBGUXuqhGTWoSoqN+pqUEyl+KIkTLFmUUnJaqCXo2pQEZFqeBQxVrugZiRfpoggiLVp0QDF3NXQKtQNNEASRTzQG+vVxRAtwNDQhUMyG0aEm6ozmWkQahZGfuByyBEvU0QG4R9JN0AGZhRUBJDCwQSdWKgkkWCKmRdm8FBNQaIESXQA1QJ6IJNSgTsgTlQK4QL80AX/qihqoEUCQCAKBUQF1AIBAIBAIEgNECQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQMIBkAEDQCAQCAQCAQCAQDoGgED0QIFA6oGgaqBFCA1QN9UDRDQCBuyAdFULIinQMEIKdUISFimin/AAQVFm/NAGR6eaCxIkAKCtaWVD3EG90DqX08EDiS16IKj/431QMjQoF4W6IKj4eBQM2Z66+KqGHZga6opUr16ohvYaIAyoih6AuoHqUCcM+iBs1UBXVAdgO6BwJY1qgoSNhbVVBvN9EDEy9baJooZa+pBQyOdqoYn/RBrHIQHd1UM5mAQSMhYl1FUMtG6qoqOUil+pUD90VDqh+6WCKXuDU+CBxmHt3RFe60r1VKmWR2Br3UAchBIRU7qO10BGQrck2QL3D4EJoBOldVQGYDuiJcs4ZQBmH6dkEiYsUUe4Ika9UEGZ1NqqDOU3DjUqCZyD0ugkyOqAMi12CqEJPY1F0Ut1T2UCNYuUEyY2FVFF/yZVBR/TUoBut0FRk52ioQXtBF2AuEEMC500VxNIByA3cpgTEgnV6gJgJMS9RRFZkgBwCD1UE7/wB1X1CBGYIOroAmtTYKjOTO5+qgWrhQIm3U27IGdwN6G6okkhgDRAjRlAE0pcqqgtqoEWQIlAWKCSQ9ECp1dQIlAnKAMuiBOEUkAgSAsUAgFAkAgEAgEAgECKBIBAKgQCAQCgEAgEAgEAgEAgEAgEAgEAgEAgaAQNAIBAIBAIBAIBAIGgEAgHQAQN0DdAKhoB0AED1QO6INUDeqAKCgwQP8kDQMk9EDdzW6Cg2qBgjwVDvXRBUbIGJNE1QNwB2KBxPeyC3cWQPexYfVA3FiWQMNVn7IK3dalVCf66oHTwRTBD9SoGT6VQGwIvqiJqLsoqiS3ZkQxXw6Iock2oLBAF7oEbs5sgAGNCqGCdBRQIk9bIG5dkBuL1Pkge4iuioYl3pdBW8VNh0V1AZ0DfigN1WsFBUZuHJtZNVUMrVfxTUwHI/hcKhwyUVB7htqVAxk9NR2RB7gbwVXC9wsNe6gBkLd0B7hB6DogoZSA3Wx7KifcZwUAMhDMgcsh1KImUzp5oqDOXi91AvcJtYaqBibRc3dBJkXIBqbq0SSQOoUEl7vVFBJf9UAS5bqqhWLKBGVa0KgAP26CqobEBwKIEATUBIUbADQd0wG1tamqADA1ogskvehsqEA9n6HxVARIAF2QZy+4m2lFKJlNhTwUGYkDogTl3NkCevRApAjwOvVBJp6WvqgRO3xUEzJBfqhgcDq6LhuSSqYk1saoESoJ76IE4IQBbzQS90CdQSSEATqgToBkUigHqgSBoE6AdQIoBAIBAIBAkAgECQCBsgSAVAoBAIBAIBAIBAIBAIBAIBAIBAIBAIGgEDQJA0AgEAgEAgEAgAgaAQCAdA1Q0AoGqBQDqhjxQCGGiG/dAIKegRQ9UQ3qgb/AIIKjJBX5IA6KigaWbooHuCBxPZAxIOwVFFlRQZg+qgDTxQVjm4fpogb1QMkkAoG+iB7hQIAFweqoTm/k6ge4WaiBgPUoEK+AQUCASyoRr4a+KIfqvoigHoogHdUDahQAr5BFKhqgca0QDsT9EDEqUqFUORLNdBJ6PRFOMgPFRDEnvRVQC1Af+FEPeRED8VRO8g9UFGZd3p0TQSmf+rjVFG86WRAZGrlAibOWVB7lW0UAJsS1j1TQDIW7qLD92z/AG/qqhSbQmqAFBSqCQbKKYFaGvRVDIIHfUIECUVJZRALuD2VFB4liXB1QNiXADMbqiW11UDA061dAMSf0QP0ilXVCkAxJp0SwSagaBqFSiAwLKyi9/S6IqRLgg1F/FFZym4IJQZmRcgdL9VBBqGP1QSSxUE7iLWVCEqkkWs6gCadTdUI6Pa4UEliaWRSc+aBA9UA51KA3tahCoRLn/V1Aj1fyQJ6Ogk2cIET1UEk0QKiGEWCKCgHQJAIDugEA6gRKoFAIBAIBAIEgSAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQCAQNAd0A6AdAIGgEAgEAgEAgEAEDQCAdAwUAgEDQCoaIH+qKaASAF0RToBFNAbuqIoGiCtaIBx9UFgi3RCCjd+iAAJsgp3uqG7MoKEiyosEUQDv6tbIBwqKBIFNVBWOYLvogYJ21LVQAMav4KoGANKuoo3MW0QUKmtkCNK+aB3L9kBEsUQFkUAljVA2oNAiG9KqhPU2HZFApVAUf1UOgUFAVL6IFUoGIjwVQjRmRSNTRQA6+SB1d2QIua2cqii79eiIQDOgQf8AG6imSakIKBPk1lcRJDgHogJEmmiBMAaFlFNpSuWaqIVD36IocCjU18VYinAkN1lQNRuuqgRBjVRVAOrEMRO2hWkIBvOiyqW0OiUGjUugYYUsyQXUFndaRLNRZxQGPdlQzdx6UE6mTV1AQI7S+4+CBdnsmiJkj9FNEjIeiugOToGQIvV1BmTWiBExc1ulEyNEEm7dLKAdzVAPVkMS5sgRDFFI3/VAqMUASGQJwUAdCgUq6sgkvYaIFInzUEkoFRAtUUX8UAgSAQMVQIoEoABAMgEAgEAgECCAQJAIBUCgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEDQCABQAsgaAQCAQCAQCAQCACBoBAIGgEAgaACAQNVDKKHCgYKAVDQAQOqIoFA0D8EDDoYbl+1kDcoK3NqgHp4oKjIC6CgellQ63ogYJN/JENw/Xqqp7gfBQMGJdvogUSY21RNMG/ZFMlwX1QMvfogC1280DdUDvqoB6AaC6CgHD6DRAa9jZVBT6IHo+vRRU3qbhBQMT+qAJDuLIgbqqESBXrRAqfaPqoph3oVYh+nVASrR2AQNwKFAiBqooBFzogYYh3VQEA9kBcVp2QJwPBBJbqyiqtQ3AqqhBgwUUwCyqG7qgZ6PUICEQ9SoLjeutwge2Ic3FgqiQBY+aKJAGr0CggAEiiBgeovXoqKi4JcIFKk6F+6YEHvZioK3xuW8lREpEO9QggmrAKAMtPoVBDyNi7XKoiR9IYoASPkgkyBogkSJNbKCTQOOqBXd7IET6XA7IE4sgTi2nVFHbqgCQXpXVBNx2QKzHrZAnL0+qABv1QAk1AroknqoJNFAgXQFGQKiKWqAQGqBIBAIDsgSgEAgYjIgkAkCpI0CBbZbdzHa7btHQMxlEAyBAkHD6hAbJiG/adhLCTUfo6BbJEGQBMY/cRYP1QJAGMgzghw4fUFAGMoyMZAiQoQaFAzGQiJMdpoDo4QIxkIiRBETY6FkAYyABILGx0LKhKAQUcWQGIMCDKsQQav0QIggkEMRQgoEgED2y27mO123aP0QJAIBAIBAIBAIBAIBAIBAIBAIBAIGgNUDQDoBAIBAIBAIBAIAIGgEA6AQNAIGUAgBZA0AqAFlA3QAVFBENAwUXQgb6oigSgYKBgh6CuqBuKoB3KBg1RcVE6koHuNOl6Kop6bggNxGl0DiZAhkQzIeJ6qihZxVQIGtKIrQByxuAgTyZ3tZARJNNP1QBDGiA0DfVBQIEmJ8EDBkAa3KqGT6fT1VCcPQeKgdRJ3ooortPigbDzVABb8kQOCboEQLkoEWNAopgFgWZEOLE2p0QNwTSwoqEATpQWQEgRJkCoDRFUA90QBquHQI3pQdUwAGhtoil6elURVX3EaXTQqOzf7oKZyzsNFRQj+CCQBTqbkIDbo7kaqCon1eSQUKuTVrBaQR69KlBMgD4OouJa56KKDUB9UQE0Ad9FcEEwBJD9KpgW87lApH0sGVEyLmpYiwUEGRJs5QDkm9qoJJodBqgncLCgQJ2DA36oDcKfRBBkA7VCA3NIAhlAFienVBJkwpZFSS3ndAn0FUAG8UAbhAiXDaoF+TIJsoET9ECJKAfzCBFAiUUPVAtSgECQDoB1NA9ECdAOgEAgEH1v8AAOdg4MPm+VyMA5PGhwojPx5WnjnnxwnHx2yLIPR+R/i+TD/HxweBP/I4nyfy/Fn8XyNJ4s2DKI7u8LS8EHT/ADP4/Dzfg80eJk42SPwGWGLhxwZsOXIeEYQxSOSOMmQPux3+r/sUHQfkc/P5WT4zh8s8TmDj/wCNP+Lc/ATxSYYmlHHPHJgab4kgF0GH8S+Mw4P4/wAbgcnLxsUf5F7p5nvZsWPNHCInHxDDHOUZT/vPMMg/POZxc/D5ebi547c/HnLFlj0lAsfxCD7P5Thfx/N/6DJzvlMnE5I+O4gjghxTmBAJY7/chfwQZfzD4ni5OXzedtkeVm+c5HEkxocYhjkAB1eZQel8p8f/AB7g/H4/j+Vx+Rn42P5nl8XjQxZBAxiY44mRJhPdIMGjR0B8h8R8FweB8X8T8jj5HLjD5Lm8PjzwzGPbGWTHE5JembyHpaPigjF/FOJmlxfjOXmfifFS+VyZZCUcfuR42SEQDM7hDcW3HRB85/Kvh/ieFi4PJ+OzRI5Yye9xoZo8mOKWOQA25YxhuEhLUUQX/B4xjzfkOXHFHLy+D8fn5PBjIbgM8DECW0uJbYylIP0Qdvw/zn8m+Xlxo80Hn8PjfIcTJLm5nlPjznlERGE3FJ2IIPkg6PlPhfhPk+Vzc3E4/LhycXzEeJnEZwyyzRzzyEyhAjHGEgYFgZN1OqDr/wD5L+Bzy4UseP2R/wCyw8Hk4ocyHKMsWUSrOWOO2GR42BQcnE/i/wDG/mZ8f/18ORw8UfkTwc5nkGWWTEMM8wyR9Mdsz7RDVug7/h+B/HPmPhfj+Nh42ficDP8ALZI8jHPL7knx8OUhKMxGOjOGQeb8R8N/GefjPNHx+bDxMvIHHxf5PNxYYACIMjjkY+5lyOftEGHVB8z8/wDHQ+N+b5/AxyM8fFz5MWOUrmMZERdmq10HnoBAIBAIBAIBAIBAIBAIBAIGgHQCAQNAIBAIBAIBAIBAIAIGgEAgEDdAIBA9ED0QJ0D80BV0D/0ED81Qx4qAdXQ1AAqinsgNyIoGqGgtcFBWqBv0vqgfcXRQ7eaIbnwQWD0QANeiobjwQG4goKejW1QMl2I8EAJAaKo0EqV+iCS9vqooc06BAyxajB0F+kG7uqhyGoQSBqTTogonpTugl3oeroqgfUgZf/dEMhgA91RJO5/ooAO1Bb8UUxXxFwgYiSQ1FAiHo9lUMdddECIAvUporaHBARSm4NA41RFU3UNGsgGc0VAYjd4WCVIW0kkkDwUUGOmh1TAzGVDQAWQFHs7VKqKptHfRFRXsKqhvQSHWqmBuOvgqLuS9EQmAroUCkWDAlxZZVmXjeVTooqDPb5q6mEJARfrZNEyoK6aKiTNnAuVNBuO1iArokyooJJAugW4OeqgbjaXNVRmTJmAdQS/mimA4vUVZEKQYO90C3fXqijcxpV0EkEdyglqugYI0QTuFm80CJ80A+qBOgDSqCHUA/wDwgCUCN0UGqCUDQCBIAoFdQGiAQCAQCAQdHG5/L42Hk4cGTZj5eMYuRFondASE2qC3qiLIO3g/yr5/gcTDxOLyzDj8bLLPx4GEJ7Mk4SxmUTKMiPTOXmXug4+B8pzuBLPLiZfbPJwz4+d4xkJ4sn3RIkCKsg9M/wA3/kp4/tHlRM/b9n/J9rF/ke223Z7+33Lf+ToPL5vynP5ubFm5OUzyYMcMOEgCGzHiDQjEREQGCDs/kX8i5Xzufj8jlQiORixe3lyREQckt8pGZEYxH7m8kHHyfkubyZ8eefJvlxMUMPHO2I248f2RoA7Pqg9HD/Mv5FilyZx5MTPlZv8AKySlixSIz292DxOyTUeLILx/zj+TY/dblxkMuafJmJYcMv782fJF4HbKlGtogji/zP8AknGw+1j5bxGSeeJyY8WSQzZC8sglOMpb3/c7hBhxf5L85xs2DNh5Uhk48ssscpCMnOcvl37gd4m1dzoN/wD+a+fl5cc/MjDPDFx83H43GjDHiw4xmjKLxxwhtoZbqAE9UHmcD5DmfH8zFzOFlOHk4Tux5I3BtrQgi4KD0+b/ADH5/ljBGWaGLHx8o5GPFgxY8UPdiXE5RhECRH/kg5sP8i+Zw5MmTFyTCebkx5uSQjBzngZGM7U+80FOyDrn/Nv5HLYIZ8eGGPNHlQhh4+DHH34ORkaMA8q166oOHjfOfK8bGMfH5BxRHIjzBtEQRngDGM9zPaRpZB3ZP5t/JJyxH/JhjGDJLNijjwYIRGScDCUtsYAPKMi6Dn+N/k3zHx3FHG4uSAxRyHNi9zFiyyx5SADPHLJGRhJheKDh53N5XO5mbmcqfucnPI5Ms2jF5G5aIA+gQYIBAIBAIBAIBAIBAIBAIBAIBAIBA0DQCAQCAQCAQCAQCAQCB1QCAVAoG2oQPR1QlA3QDaoB0DVDdAIBQNAw6oHqgZKBhBQKIBZFNy9fqgbiyIb1HZAIqgeqJpg3bRA4mw6pQwRpZUAKCwQ3exQNwBQIByCH1QW99SbHsqIkS7qCgXL6oKBB8UQywo60HuY00UAD0F9VFMEeTID81QxfoEQEaHVUUYiw+qVIgnQXUU5MCP8AslDctS6sDqaWUoAC1EAYtQeZVCN6V0KgoD8kBF/PVAAf9mHRkDDswNlQ5NKqgiWjUa9VRQLHVtUsSDc5ZFAcmlAiKoqMyASH8lFORqAmhCZGjd0RfuDW4QIyLB6DQIM5zEpVp0UqspSkX/FBBkS3RNMMyDNVFLcRRES4ugRdu4RQG2lqgqImhYaIF1HQopPRzrogRJtWqA3H9EBQ30siEZDUONFVTbxUAJHUUQBJYkIJJQI27oJdxdQD6IET080CdAnQBu7+SBEopUQOiBVQCAQJAIEoBAIBAIBB998fDkYv458BPjcj4viRzQ5B5UvkMeAynt5OQA+uE8hAiG9JQc/P+D/i3OPN+S4mTNjxcv5LJwPiuNgjAYzP24SjORm23GZz0sGQc2f+HfGZsvP4XxfNy5fkfi8sMPJGfHGGLKZ5hgMsRjKZjtnK0roHD+JfAcz5uHwnx/yOYfIY+SeNyDnxAQnHGJnLlxbCWENn2zNUG/I/gvxI5HCmOfLicXk8g8bLDlSwHLFscskZxOLJKDT2bRuZiUCn/Bvjo/M4OHlnyuLHLx8maPH5HsxyZMmOQEcWHPu9ie8Hc70QTm/iuLix+U4sZZsWOP8AgPj5WCEc0ffy7CBMv9p/dAtJAcn+E/E58/J4XxPLzz5nB52HgcqXIhCOOUs85490NhMmhLGXe6Dj+T/jvwEfiPked8by+Rln8byMfGyY8+OERIzMh7kTEn0nbQGqD1//AOmvx3GPHz8jmRw4zys+PBwMuaGLLLNLG883Gxwy0HuwIjvpWiD5f5D4nPi/kf8AhcvB/wCu/wAnNCQ45kD7OPPISgCxLbYSFDVB9hzs+DgcYYuP8ScvG9rPl9uOHBPBjjxcs8WzkGeM5ZzIxPkn7oI3Db3D5H+ScD4ng87k8binKM0M8v7UhE44YpREox3vuM4k7ZONEH03wXE5M/4z8OODy/jeFyuTyOTCZ+QxY5yzESxiEYynhzfa51F0HD/KfivjeRyfm+Zxo/48/io8XHmxwxezjyZ8h9vNKOMgGEdwcBBnL+JfFcTiH5H5Hk5xwocbhZTDBGByyzc3GZ7Y7iIiMBE3ug7P5N/GOJyuTyD8TLfn4uP46MMEYRgMuLkYo4xlAH7jkMd3/wAkHkcT43g8X+e8P43FP/L4uH5Dj4JznENkIyxjkpUGJk7dkHv/ACE8H+J8xh+V5HxXIEhLF8Xx+LDBHkwznIBjO7DCDRjF924oPK+Q/iPxWI/KcLic7Ll+U+GwnPyxkxxjgyCEoxyDFLduBhv1FUHpfyn4D4PJ8r83yOFkyY+T8ZyMEs/GOOEOOYZskMe3HtL+kyq9+iD5r+Y4sWH+VfK4sUI48UOVljCEAIxAEjQAWQeMgEAgEAgEAgEAgEAgEAgEAgEAgaBoBAIBAIBAIBAIBAIBAIB0DQCAQCB1QCAcIBAwEDQAQDlA3dUCBugAUFeKABQNAx2RDcIpIU3qiKF0DBD0QN7vqgbkgPogKtS6BgjUuUVQeuqqASoaVQVEkyDhBQkHbQFAPXt0QETqLoLjKn2v3VA7DqVEOnlZAqNQ2RQ4JAQPdVuiCgepdEN3sqGSWYlUImj26IE5d3rZQUPtD2TBXp26uqKqz9FBLg11N1QAgUdlACrl/VYoGCAXJqKIAy0AVwIE1bzQM5OiCaBzclAb5OxL9UCctTrRBUcgLiWlkhRGd2NOqCZZHoPJAnI6FBG+7KCoyLO3mrA5FyJAv3RGUpA3qdFKqCSfDooqRLT8ECcE3QN7oiSgInXXogKM5oOqBGtdNEAYsD+aoVD2UUgS96CwQJ6PqgkyfxF0AOyBHqUEk1bTRAnJUB1QJ7IEGI8EC7oA9UCfyQIgjugHRQgWqBIBAOyAdAIhURQoBAIBAIEg7OX8ryOVweDwskYDF8fDJDDKIO4jLkOWW5yR90qMyCofM8uHxmL46G2OLByZczHlAPuDLKEYXdmGwaIPT5383+V5WLNGGDjcTNyp48vM5XHxmGXNPFITiZkykB6xu9IFUFH+efNDOORx8fH4nJlnjyuTnwYzGWfLDcxyuSCPXJwABXqgyyfzDme7glx+Fw+JiwZZ5jx8OI+3knkjsl7gnKZI20Z2GiBz/mfOkcEI8Lhw4XHx5cMeAMcjgMc5EshO6cpuTAVEqNRAcj+a/KZhkj7PHx4pQ42PHhhGQjjx8TIcuOMHmS26RfcSUEcb+V82HN5mabYo/I83DzuVkwgjJCeLLLJ/Z3Egf/YfufRB7P8AJv5R8VyPhOVweHPDlzc7kw5GSXH4x40QIAvLJulIyyTMg7ekIPD+I/lXL+N4Y4f+LxuZghm/yOOOVCUziysAZYzGULsHBcIOf5357m/NcyHN5kcY5Yxxx5M2KAgchi7Tm1NzUp0QehD+c/LjG2TFx83IeJPKyRmZylBts5x3jFOYYeqcCUHk8n5LLyeN7WbHjnnOaefJzSCeROU7icyaxetroHyPleRn+M4fx0owGHgzzTxSiDvJzmJluLtT2wzBB6sv5x8llyZJ8njcXk/5HHx8bljLCZGf2S+PLkaYPuR/7BkDn/OflMubLPkcbicjDnw4cGbiZMR9mX+OGxz2xlExkHP2kDsg7/iv5oYfK83+Q8zNHF8iOL/jcfh4cR2ZZCAhAkkmMBCUIzPhRB8twOfn4XyPH+QxtPPxs0ORD3HIM8chMbmIJBIrVBnn5GTNycnIk0cmWcsh2uADIvRB7fyH81+T53G5GKeDjYc/MjHHzubixmOfPGDFpyMjGpAfbEOgx5P8s+R5HI+U5E8eET+XOOXJAjJonFkjljseVPVAO7oPP+U+Rz/JfI8nn54xjm5WSWXJGAIiJSLlgSS3mg5UAgEAgEAgEAgEAgEAgEAgEAgEDZAIB0A6BoBAIBAIBAIBAIBAIB0DQCAQCBugWqBugEDF0AEDQAQDoG6oFA3qqGgagbqg8EDB0QN3QDlAxdAwzIAGqId7URTL3FkRQLBAAhhRwgblndAAjWhQMTs9QqKuUFxltLIhksSCQdUVGvqLPZBQoaC6BgkeKA3kEsA/VAOGr5sgtyH0CqAkmxogncSPBRTMuqIZm1qdlpDE6xq6KveQQYnxdBJm4fXogQLsTdQVuESdVRG4sXHgoAya4TRW8iLNUqoW5h3RUvIMgImLk6pA3iJdQUBKVUC3PZASmHpRESZEU1UUoybw6oHGQiG69UKRyAkABgFdEPU7bi6gmTDVi6ipMxVygYY3FNCqgIZQIHQ1dAPUdkUbqm/UFBPq11QIkIESCPNA6GxQSTRtECND5IE/pHVAGR80Ek1qoETqgNECeiBEoFZCCiBWRQ5sgSBIBAPogEAgRUAgEAqBQCAQCAQJAkDQDoBAkAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgEAgYsgaAQCAQCAQCAQCAQCACBoBAIBAIBAwgEAUDCBoBAaoGEAFRQUBqgeiAFlRSUIfcFBUbFUOFz4IhFFUbBAtEGnTwRCGqCoWKKR0QMXRDjbzQULjxRVyWogN0ok/ePBQVqfBQVC6CD95VD6+CAl+1WC52VZRO4WWj/cqhzsFQyiL/bFUZ6qKvJaPiopD9yMjXyRSNwgZsgmaUVL7fJVEi0VI1Sx2KIY+/yVQC5UVMrHxQLogB9nmijUqIFQR+5BnL7lBHVFaH7PJUTL7R4KCI6oo1UiND9pVGZQIWQKeqAggjUoA/cPBAlAwgRugRsUCH6IJ1QMoqSgeiISKQQNBJQCBoJN1AwtQLQqBiyBKAQCAQAQCBFAwgSoSgEAqBAKAQCAQCAQCAQCAQCAQCAQCAQCAQf/2Q==\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "Type `a` and wait for a second to hear the audio explanation : a\n" - ] - }, - { - "data": { - "text/html": [ - "\n", - " \n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "#Import required libraries:\n", - "import nasapy\n", - "import os\n", - "from datetime import datetime\n", - "import urllib.request\n", - "from IPython.display import Image,display,Audio\n", - "from gtts import gTTS\n", - "\n", - "from dotenv import load_dotenv\n", - "\n", - "# Load variables from .env file into environment\n", - "load_dotenv()\n", - "\n", - "# Get the API key from the environment variable\n", - "api_key = os.getenv(\"NASA_API_KEY\")\n", - "\n", - "# Check if the API key is available\n", - "if api_key is None:\n", - " raise ValueError(\"NASA_API_KEY environment variable is not set\")\n", - "\n", - "# Initialize Nasa class by creating an object with the API key\n", - "nasa = nasapy.Nasa(key=api_key)\n", - "\n", - "#from datetime import datetime\n", - "\n", - "from datetime import datetime\n", - "\n", - "def validate_date(date_str):\n", - " try:\n", - " # Validate date format\n", - " datetime.strptime(date_str, '%Y-%m-%d')\n", - " # Check if the date is between 1996 and today\n", - " date = datetime.strptime(date_str, '%Y-%m-%d').date()\n", - " today = datetime.now().date()\n", - " if date >= datetime.strptime('1996-01-01', '%Y-%m-%d').date() and date <= today:\n", - " return True\n", - " else:\n", - " return False\n", - " except ValueError:\n", - " return False\n", - "\n", - "# Get validated date from user\n", - "while True:\n", - " user_date = input(\"Enter date in YYYY-MM-DD format e.g.`1996-01-01` (between 1996 and today): \")\n", - " if validate_date(user_date):\n", - " break\n", - " else:\n", - " print(\"Invalid date or out of range. Please enter a date between 1996 and today.\")\n", - "\n", - "# Now user_date contains a validated date between 1996 and today\n", - "print(\"Validated date:\", user_date)\n", - "\n", - "#Get the image data:\n", - "apod = nasa.picture_of_the_day(date=user_date, hd=True)\n", - "\n", - "#Check the media type available:\n", - "if(apod[\"media_type\"] == \"image\"):\n", - " \n", - " #Displaying hd images only:\n", - " if(\"hdurl\" in apod.keys()):\n", - " \n", - " #Saving name for image:\n", - " title = user_date + \"_\" + apod[\"title\"].replace(\" \",\"_\").replace(\":\",\"_\") + \".jpg\"\n", - " \n", - " #Path of the directory:\n", - " image_dir = \"Astro_Images\"\n", - "\n", - " #Checking if the directory already exists?\n", - " dir_res = os.path.exists(image_dir)\n", - " \n", - " #If it doesn't exist then make a new directory:\n", - " if (dir_res==False):\n", - " os.makedirs(image_dir)\n", - "\n", - " #If it exist then print a statement:\n", - " else:\n", - " print(\"Directory already exists!\\nWait for a moment to display the image\")\n", - " \n", - " #Retrieving the image:\n", - " urllib.request.urlretrieve(url = apod[\"hdurl\"] , filename = os.path.join(image_dir,title))\n", - " \n", - " #Displaying information related to image:\n", - " \n", - " if(\"date\" in apod.keys()):\n", - " print(f'Date image released: {apod[\"date\"]}')\n", - " print(\"\\n\")\n", - " if(\"copyright\" in apod.keys()):\n", - " print(f'This image is owned by: {apod[\"copyright\"]}')\n", - " print(\"\\n\")\n", - " if(\"title\" in apod.keys()):\n", - " print(f'Title of the image: {apod[\"title\"]}')\n", - " print(\"\\n\")\n", - " if(\"explanation\" in apod.keys()):\n", - " print(f'Description for the image: {apod[\"explanation\"]}')\n", - " print(\"\\n\")\n", - " if(\"hdurl\" in apod.keys()):\n", - " print(f'URL for this image: {apod[\"hdurl\"]}')\n", - " print(\"\\n\")\n", - " \n", - " \n", - " #Displaying main image:\n", - " display(Image(os.path.join(image_dir,title)))\n", - "\n", - " #Text to Speech Conversion:\n", - " #Take input from user:\n", - " print(\"\\n\")\n", - " choice = input(\"Type `a` and wait for a second to hear the audio explanation : \")\n", - " \n", - " if(choice==\"a\"):\n", - " #Text to be converted:\n", - " mytext = apod[\"explanation\"]\n", - " \n", - " #Creating an object:\n", - " myobj = gTTS(text=mytext, lang=\"en\", slow=False) \n", - " \n", - " #Generating audio file name:\n", - " audio_title = user_date + \"_\" + apod[\"title\"] + \".mp3\"\n", - " \n", - " #Save the converted file:\n", - " myobj.save(os.path.join(image_dir, audio_title)) \n", - "\n", - " #Name of sound file:\n", - " sound_file = os.path.join(image_dir, audio_title)\n", - "\n", - " # Playing the converted file \n", - " display(Audio(sound_file, autoplay=True))\n", - " \n", - " \n", - "\n", - "\n", - "#If media type is not image:\n", - "else:\n", - " print(\"Sorry, Image not available!\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "eea95d95", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.13" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/Number Guessing Upper Boundary/.gitignore b/Number Guessing Upper Boundary/.gitignore deleted file mode 100644 index 723ef36f..00000000 --- a/Number Guessing Upper Boundary/.gitignore +++ /dev/null @@ -1 +0,0 @@ -.idea \ No newline at end of file diff --git a/Number Guessing Upper Boundary/NumberGuessing.py b/Number Guessing Upper Boundary/NumberGuessing.py deleted file mode 100644 index 92d20d1f..00000000 --- a/Number Guessing Upper Boundary/NumberGuessing.py +++ /dev/null @@ -1,37 +0,0 @@ -import random -import time - -guess = None -upper_boundary = None -lower_boundary = 1 - -try: - print('Hello! Welcome to the Number Guessing game') - time.sleep(1) - upper_boundary = int(input('Enter an upper boundary: ')) - answer = random.randint(1, upper_boundary) - time.sleep(1) - guess = int(input('Guess the answer by enter a number between {0} and {1}: '.format(lower_boundary,upper_boundary))) - - while guess != answer: - if guess < 1 or guess > upper_boundary: - time.sleep(1) - guess = int(input('Invalid input! Please enter a number between {0} and {1}: '.format(lower_boundary,upper_boundary))) - elif guess < answer: - print('Your guess is lower than the answer. Try again!') - lower_boundary = guess - time.sleep(1) - guess = int(input('Enter a number between {0} and {1}: '.format(lower_boundary,upper_boundary))) - elif guess > answer: - print('Your guess is higher than the answer. Try again!') - upper_boundary = guess - time.sleep(1) - guess = int(input('Enter a number between {0} and {1}: '.format(lower_boundary,upper_boundary))) - - print('Congrats, Your guess is correct!') - -except Exception as e: - if upper_boundary is None: - upper_boundary = int(input('Please enter a number for upper boundary: ')) - else: - guess = int(input('Invalid input! Please enter a number between {0} and {1}: '.format(lower_boundary,upper_boundary))) diff --git a/Number Guessing Upper Boundary/README.md b/Number Guessing Upper Boundary/README.md deleted file mode 100644 index ac977a9b..00000000 --- a/Number Guessing Upper Boundary/README.md +++ /dev/null @@ -1,35 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Number Guessing with Upper Boundary - -![number_guessing](https://user-images.githubusercontent.com/65219841/183583208-d9ebbbc9-0319-44bf-a889-8f6f10df55bb.png) - - -## 🛠️ Description - -This is a number guessing game where you can decide the upper boundary. You have unlimited chances until you guess the correct answer. - -## ⚙️ Languages or Frameworks Used - -The only python module that is required is random. -You can install it using ```pip install random``` - -## 🌟 How to run - -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: -```python NumberGuessing.py``` - -## 📺 Demo -![Screenshot 2022-08-09 144140](https://user-images.githubusercontent.com/65219841/183583519-f33a63a8-1789-4bbc-9153-08220da47d00.jpg) - - -## 🤖 Author - -Kacoccc diff --git a/Number Guessing/README.md b/Number Guessing/README.md deleted file mode 100644 index 927477a1..00000000 --- a/Number Guessing/README.md +++ /dev/null @@ -1,35 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Number Guessing - -![number_guessing](https://user-images.githubusercontent.com/68545365/128492288-5fe26cef-5961-4c93-9908-ee8d69b4dd11.gif) - - -## 🛠️ Description - -This is a simple game where you have to guess a computer generated number within 1 to 10. However, you can't guess it all. You have only 4 chances to guess the correct number. - -## ⚙️ Languages or Frameworks Used - -The only python module that is required is random. -You can install it using ```pip install random``` - -## 🌟 How to run - -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: -```python number_guessing.py``` - -## 📺 Demo -![Screenshot 2021-08-06 153013](https://user-images.githubusercontent.com/68545365/128493914-936c4140-35ff-4fc6-9b5b-3f5c3f4cdc2a.png) - - -## 🤖 Author - -Shruti Solani diff --git a/Number Guessing/number_guessing.py b/Number Guessing/number_guessing.py deleted file mode 100644 index a96d2cef..00000000 --- a/Number Guessing/number_guessing.py +++ /dev/null @@ -1,23 +0,0 @@ -import random -import time -print('Hello World! Welcome to the game') -time.sleep(2) -n = random.randint(1, 10) -print('Number has been generated!!\nYou have 4 chances to guess the number') - -count = 4 - -while count!=0: - a = int(input('Guess the number: ')) - - if a == n: - print("Yay! That's right. You won!") - break - elif a > n: - print('The number is less than ', a) - else: - print('The number is greater than ', a) - count=-1 - - -print (count) \ No newline at end of file diff --git a/Object_Detection/README.md b/Object_Detection/README.md deleted file mode 100644 index 2cd3da85..00000000 --- a/Object_Detection/README.md +++ /dev/null @@ -1,31 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Object Detection - - -## 🛠️ Description - -This folder contains a Python script for a real-time object detection application using the YOLOv9 model from Ultralytics. The application uses the default camera (webcam) for video input and displays detected objects with bounding boxes, including labels of the detected object and their probability. - -## ⚙️ Languages or Frameworks Used - -Open Command Prompt and use the following command to install the required modules: -``` bash -pip install -r requirements.txt -``` - -## 🌟 How to run - -You can run the program using the following command -``` bash -python object-detection.py -``` - -## 📺 Demo -

- - -## 🤖 Author - -[Kevin Cherian George](https://github.com/kevin-291) diff --git a/Object_Detection/image.png b/Object_Detection/image.png deleted file mode 100644 index 4f8b1a62..00000000 Binary files a/Object_Detection/image.png and /dev/null differ diff --git a/Object_Detection/object-detection.py b/Object_Detection/object-detection.py deleted file mode 100644 index 7e668611..00000000 --- a/Object_Detection/object-detection.py +++ /dev/null @@ -1,65 +0,0 @@ -import cv2 -import torch -from ultralytics import YOLO - -device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') - -def main(): - - # Load YOLOv9 model - model = YOLO('yolov9c.pt') - model.to(device) - - # Initialize video capture (0 for default camera) - cap = cv2.VideoCapture(0) - - # Check if the video capture device is opened - if not cap.isOpened(): - print("Error: Could not open video capture device") - return - - while True: - # Capture frame-by-frame - ret, frame = cap.read() - - if not ret: - print("Error: Could not read frame") - break - - # Use YOLOv9 model to make predictions - results = model(frame) - - # Process the results - for result in results: - # Loop through each detected object - for box in result.boxes: - # Get coordinates and class label - x1, y1, x2, y2 = box.xyxy[0] - label_id = int(box.cls[0].item()) - confidence = box.conf[0].item() - - # Get the class label from YOLO model - class_label = model.names[label_id] - - # Create the label text - label_text = f"{class_label}: {confidence:.2f}" - - # Draw bounding box on the frame - cv2.rectangle(frame, (int(x1), int(y1)), (int(x2), int(y2)), (0, 255, 0), 2) - - # Draw the label text on the frame above the bounding box - cv2.putText(frame, label_text, (int(x1), int(y1) - 5), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0), 1) - - # Display the frame with bounding boxes and labels - cv2.imshow('Real-Time Object Detection', frame) - - # Exit the loop if the user presses 'q' - if cv2.waitKey(1) & 0xFF == ord('q'): - break - - # Release the video capture device and close the window - cap.release() - cv2.destroyAllWindows() - -if __name__ == "__main__": - main() diff --git a/Object_Detection/requirements.txt b/Object_Detection/requirements.txt deleted file mode 100644 index e99ab242..00000000 --- a/Object_Detection/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -ultralytics>=8.0.100 -opencv-python>=4.5.5.62 \ No newline at end of file diff --git a/Othello-Reversi-Game/.gitignore b/Othello-Reversi-Game/.gitignore deleted file mode 100644 index 1d7901e1..00000000 --- a/Othello-Reversi-Game/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/__pycache__ \ No newline at end of file diff --git a/Othello-Reversi-Game/Board.py b/Othello-Reversi-Game/Board.py deleted file mode 100644 index 47eca0af..00000000 --- a/Othello-Reversi-Game/Board.py +++ /dev/null @@ -1,213 +0,0 @@ -import numpy as np - -class Board: - WHITE = -1 - BLACK = 1 - EMPTY = 0 - - def __init__(self) -> None: - '''Initiliaze the Othello game board with a 8x8 numpy matrix''' - self.board = np.array([0]*8, dtype = np.int8) # initiliasing 1D array with the first row of 8 zeroes - self.board = self.board[np.newaxis, : ] # expanding 1D array to 2D array - for _ in range(3): # increasing rows till 8 - self.board = np.concatenate((self.board, self.board), axis = 0) - - # initiliasing the centre squares - self.board[3, 3] = self.board[4,4] = Board.WHITE - self.board[3, 4] = self.board[4,3] = Board.BLACK - - self.black_disc_count = 2 - self.white_disc_count = 2 - - def all_legal_moves(self, PLAYER: int) -> set: - '''Return all legal moves for the player''' - OPPONENT = Board.WHITE if PLAYER == Board.BLACK else Board.BLACK - - all_legal_moves = set() - for row in range(8): - for col in range(8): - if self.board[row, col] == PLAYER: - all_legal_moves.update(self.legal_moves(row, col)) - - return all_legal_moves - - def legal_moves(self, row: int, col: int) -> list: - '''Return all legal moves for the cell at the given position''' - PLAYER = self.board[row, col] - OPPONENT = Board.WHITE if PLAYER == Board.BLACK else Board.BLACK - legal_moves = list() - - # check for legal moves along the row of the cell - if col >= 2: - i = col - 1 - while i >= 0 and self.board[row, i] == OPPONENT: - i -= 1 - if (i != col - 1 and i >= 0) and self.board[row, i] == Board.EMPTY: - legal_moves.append((row, i)) - - if col <= 5: - i = col + 1 - while i < 8 and self.board[row, i] == OPPONENT: - i += 1 - if (i != col + 1 and i < 8) and self.board[row, i] == Board.EMPTY: - legal_moves.append((row, i)) - - # check for legal moves along the column of the cell - if row >= 2: - i = row - 1 - while i >= 0 and self.board[i, col] == OPPONENT: - i -= 1 - if (i != row - 1 and i >= 0) and self.board[i, col] == Board.EMPTY: - legal_moves.append((i, col)) - - if row <= 5: - i = row + 1 - while i < 8 and self.board[i, col] == OPPONENT: - i += 1 - if (i != row + 1 and i < 8) and self.board[i,col] == Board.EMPTY: - legal_moves.append((i, col)) - - # check for legal moves along diagonals on which the cell lies - if row >= 2 and col >= 2: # diagonal from the cell towards top left - r = row - 1 - c = col - 1 - while (r >= 0 and c >= 0) and self.board[r, c] == OPPONENT: - r -= 1 - c -=1 - if (r != row - 1 and c != col - 1) and (r >= 0 and c >= 0) and self.board[r, c] == Board.EMPTY: - legal_moves.append((r, c)) - - if row >= 2 and col <= 5: # diagonal from the cell towards top right - r = row - 1 - c = col + 1 - while (r >= 0 and c < 8) and self.board[r, c] == OPPONENT: - r -= 1 - c +=1 - if (r != row - 1 and c != col + 1) and (r >= 0 and c < 8) and self.board[r, c] == Board.EMPTY: - legal_moves.append((r, c)) - - if row <= 5 and col <= 5: # diagonal from the cell towards bottom right - r = row + 1 - c = col + 1 - while (r < 8 and c < 8) and self.board[r, c] == OPPONENT: - r += 1 - c +=1 - if (r != row + 1 and c != col +1) and (r < 8 and c < 8) and self.board[r, c] == Board.EMPTY: - legal_moves.append((r, c)) - - if row <= 5 and col >= 2: # diagonal from the cell towards bottom left - r = row + 1 - c = col - 1 - while (r < 8 and c >= 0) and self.board[r, c] == OPPONENT: - r += 1 - c -= 1 - if (r != row + 1 and c != col - 1) and (r < 8 and c >= 0) and self.board[r, c] == Board.EMPTY: - legal_moves.append((r, c)) - - - return legal_moves - - def set_discs(self, row: int, col: int, PLAYER: int) -> None: - '''Set the discs on the board as per the move made on the given cell''' - self.board[row, col] = PLAYER - OPPONENT = Board.WHITE if PLAYER == Board.BLACK else Board.BLACK - - # outflanking pieces on the right - c = col + 1 - while c < 8 and self.board[row, c] == OPPONENT: - c += 1 - if (c != col + 1 and c < 8) and self.board[row, c] == PLAYER: # outflanking is legal - self.board[row, col:c] = PLAYER - - # outflanking pieces on the left - c = col - 1 - while c >= 0 and self.board[row, c] == OPPONENT: - c -= 1 - if (c != col - 1 and c >= 0) and self.board[row, c] == PLAYER: # outflanking is ilegal - self.board[row, c:col] = PLAYER - - # outflanking pieces below - r = row + 1 - while r < 8 and self.board[r, col] == OPPONENT: - r += 1 - if (r != row + 1 and r < 8) and self.board[r, col] == PLAYER: # outflanking is legal - self.board[row:r , col] = PLAYER - - # outflanking pieces above - r = row - 1 - while r >= 0 and self.board[r, col] == OPPONENT: - r -= 1 - if (r != row - 1 and r >= 0) and self.board[r, col] == PLAYER: # outflanking is legal - self.board[r:row, col] = PLAYER - - # outflanking pieces in the diagonal from the cell towards top left - r = row - 1 - c = col - 1 - while (r >= 0 and c >= 0) and self.board[r, c] == OPPONENT: - r -= 1 - c -= 1 - if (r != row - 1 and c != col - 1) and (r >= 0 and c >= 0) and self.board[r, c] == PLAYER: # outflanking is legal - r = row - 1 - c = col - 1 - while self.board[r, c] == OPPONENT: - self.board[r, c] = PLAYER - r -= 1 - c -= 1 - - # outflanking pieces in the diagonal from the cell towards top right - r = row - 1 - c = col + 1 - while (r >= 0 and c < 8) and self.board[r, c] == OPPONENT: - r -= 1 - c += 1 - if (r != row - 1 and c != col + 1) and (r >= 0 and c < 8) and self.board[r, c] == PLAYER: # outflanking is legal - r = row - 1 - c = col + 1 - while self.board[r, c] == OPPONENT: - self.board[r, c] = PLAYER - r -= 1 - c += 1 - - # outflanking pieces in the diagonal from the cell towards bottom right - r = row + 1 - c = col + 1 - while (r < 8 and c < 8) and self.board[r, c] == OPPONENT: - r += 1 - c += 1 - if ( r != row + 1 and c != col + 1 ) and (r < 8 and c < 8) and self.board[r, c] == PLAYER: # outflanking is legal - r = row + 1 - c = col + 1 - while self.board[r, c] == OPPONENT: - self.board[r, c] = PLAYER - r += 1 - c += 1 - - # outflanking pieces in the diagonal from the cell towards bottom left - r = row + 1 - c = col - 1 - while (r < 8 and c >= 0) and self.board[r, c] == OPPONENT: - r += 1 - c -= 1 - if (r != row + 1 and c != col - 1) and (r < 8 and c >= 0) and self.board[r, c] == PLAYER: # outflanking is legal - r = row + 1 - c = col - 1 - while self.board[r, c] == OPPONENT: - self.board[r, c] = PLAYER - r += 1 - c -= 1 - - # update disc counters - self.black_disc_count = self.board[self.board > 0].sum() - self.white_disc_count = -self.board[self.board < 0].sum() - - def print_board(self) -> None: - print(self.board) - - def reset_board(self) -> None: - self.board.fill(Board.EMPTY) - - # initiliasing the centre squares - self.board[3, 3] = self.board[4,4] = Board.WHITE - self.board[3, 4] = self.board[4,3] = Board.BLACK - - self.black_disc_count = self.white_disc_count = 2 \ No newline at end of file diff --git a/Othello-Reversi-Game/Gotham-Font/GothamLight.ttf b/Othello-Reversi-Game/Gotham-Font/GothamLight.ttf deleted file mode 100644 index 6f6bfc54..00000000 Binary files a/Othello-Reversi-Game/Gotham-Font/GothamLight.ttf and /dev/null differ diff --git a/Othello-Reversi-Game/README.md b/Othello-Reversi-Game/README.md deleted file mode 100644 index 33a9d163..00000000 --- a/Othello-Reversi-Game/README.md +++ /dev/null @@ -1,44 +0,0 @@ -

⚫ Othello/Reversi ⚪

- -A two-player, GUI-equipped, [Othello/Reversi](https://www.worldothello.org/about/about-othello/othello-rules/official-rules/english) game made in **Python3** using the `pygame` library. - -## 📜 Description -Othello is a board-game played on a 8x8 board, with 64 discs that are black on one side and white on the other. Each player gets 32 such discs, out of which 2 from each player are kept on the board in the following manner: - -![image](https://github.com/TERNION-1121/Othello-Reversi-Game/assets/97667653/ea03fdd8-9abc-4b14-bdc9-7d983fb38041) - -
- -A move consists of "outflanking" your opponent's disc(s), then flipping the "outflanked" disc(s) to your color. -To outflank means, if your disc is kept on square X, and you have another disc on square Y, such that: -- X and Y lie on the same row, or -- X and Y lie on the same column, or -- X and Y lie on the same diagonal, - -If any one (or more) of the above is the case while playing, then the Opponent's discs between X and Y get flipped to your color. - -
- -Example: - -> Here White disc A was already present on the board, after placing White disc B, the row of Black discs between White disc A and B got outflanked, - -![06a8330dc692b7631a2e50660e4a7346](https://github.com/TERNION-1121/Othello-Reversi-Game/assets/97667653/84feed70-ee16-4f4f-baad-39a3ecc148ed) - -> And thus the outflanked Black discs flipped to White. - -![cd51ed676fb49538035a8bf006ffbe96](https://github.com/TERNION-1121/Othello-Reversi-Game/assets/97667653/bafe9059-7a32-4d93-aaa2-bfc97a311fce) - -For a more comprehensive explanation of the game rules, check out this [link](https://www.worldothello.org/about/about-othello/othello-rules/official-rules/english). - - -### How to Play the Game 🎮 -1. Download the source code -2. Make sure to install Python3 on your Computer along with `pip` -3. Install the `numpy` and `pygame` libraries. To do this, open the terminal and type `pip install numpy` and `pip install pygame`. -4. Run the `main.py` file and play the game! - -## Author -This Project was Contributed by [Vikrant Singh Bhadouriya](https://www.github.com/TERNION-1121). - -Thanks for your kind attention! \ No newline at end of file diff --git a/Othello-Reversi-Game/images/Black_Disc.png b/Othello-Reversi-Game/images/Black_Disc.png deleted file mode 100644 index 44c55ce1..00000000 Binary files a/Othello-Reversi-Game/images/Black_Disc.png and /dev/null differ diff --git a/Othello-Reversi-Game/images/End_Prompt.png b/Othello-Reversi-Game/images/End_Prompt.png deleted file mode 100644 index ca2e5fc8..00000000 Binary files a/Othello-Reversi-Game/images/End_Prompt.png and /dev/null differ diff --git a/Othello-Reversi-Game/images/End_Screen_Black.png b/Othello-Reversi-Game/images/End_Screen_Black.png deleted file mode 100644 index 2d3804af..00000000 Binary files a/Othello-Reversi-Game/images/End_Screen_Black.png and /dev/null differ diff --git a/Othello-Reversi-Game/images/End_Screen_Draw.png b/Othello-Reversi-Game/images/End_Screen_Draw.png deleted file mode 100644 index a018a405..00000000 Binary files a/Othello-Reversi-Game/images/End_Screen_Draw.png and /dev/null differ diff --git a/Othello-Reversi-Game/images/End_Screen_White.png b/Othello-Reversi-Game/images/End_Screen_White.png deleted file mode 100644 index f327d3ec..00000000 Binary files a/Othello-Reversi-Game/images/End_Screen_White.png and /dev/null differ diff --git a/Othello-Reversi-Game/images/Large_Black_Disc.png b/Othello-Reversi-Game/images/Large_Black_Disc.png deleted file mode 100644 index 9af6d154..00000000 Binary files a/Othello-Reversi-Game/images/Large_Black_Disc.png and /dev/null differ diff --git a/Othello-Reversi-Game/images/Large_White_Disc.png b/Othello-Reversi-Game/images/Large_White_Disc.png deleted file mode 100644 index 060579ed..00000000 Binary files a/Othello-Reversi-Game/images/Large_White_Disc.png and /dev/null differ diff --git a/Othello-Reversi-Game/images/Othello_Black_Side_Board.png b/Othello-Reversi-Game/images/Othello_Black_Side_Board.png deleted file mode 100644 index bab63682..00000000 Binary files a/Othello-Reversi-Game/images/Othello_Black_Side_Board.png and /dev/null differ diff --git a/Othello-Reversi-Game/images/Othello_White_Side_Board.png b/Othello-Reversi-Game/images/Othello_White_Side_Board.png deleted file mode 100644 index c64b6f80..00000000 Binary files a/Othello-Reversi-Game/images/Othello_White_Side_Board.png and /dev/null differ diff --git a/Othello-Reversi-Game/images/White_Disc.png b/Othello-Reversi-Game/images/White_Disc.png deleted file mode 100644 index 5056c2b4..00000000 Binary files a/Othello-Reversi-Game/images/White_Disc.png and /dev/null differ diff --git a/Othello-Reversi-Game/main.py b/Othello-Reversi-Game/main.py deleted file mode 100644 index 02ed5223..00000000 --- a/Othello-Reversi-Game/main.py +++ /dev/null @@ -1,162 +0,0 @@ -import pygame -from Board import * - -# fade multiple surfaces on the screen -def fade(*surfacencoords: tuple): - for alpha in range(0, 257, 6): - for snc in surfacencoords: - surface, coordinates = snc - surface.set_alpha(alpha) - screen.blit(surface, coordinates) - pygame.time.delay(30) - pygame.display.flip() - -# board initialisations -game_board = Board() - -# pygame initialisations -pygame.init() - -SCREEN_WIDTH = 1200 -SCREEN_HEIGHT = 800 -screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT)) -pygame.display.set_caption("Othello/Reversi") - -bBoard = pygame.image.load("Othello-Reversi-Game/images/Othello_Black_Side_Board.png") -black_disc = pygame.image.load("Othello-Reversi-Game/images/Black_Disc.png") -white_disc = pygame.image.load("Othello-Reversi-Game/images/White_Disc.png") - -blackDiscCounter = pygame.image.load("Othello-Reversi-Game/images/Large_Black_Disc.png") -whiteDiscCounter = pygame.image.load("Othello-Reversi-Game/images/Large_White_Disc.png") - -possibleBlackMove = pygame.image.load("Othello-Reversi-Game/images/Black_Disc.png") -possibleWhiteMove = pygame.image.load("Othello-Reversi-Game/images/White_Disc.png") -pygame.Surface.set_alpha(possibleBlackMove, 50) -pygame.Surface.set_alpha(possibleWhiteMove, 50) - -endScreenBlack = pygame.image.load("Othello-Reversi-Game/images/End_Screen_Black.png") -endScreenWhite = pygame.image.load("Othello-Reversi-Game/images/End_Screen_White.png") -endScreenDraw = pygame.image.load("Othello-Reversi-Game/images/End_Screen_Draw.png") -endPrompt = pygame.image.load("Othello-Reversi-Game/images/End_Prompt.png") - -discCountFont = pygame.font.Font("Othello-Reversi-Game/Gotham-Font/GothamLight.ttf", 40) - -screen.blit(bBoard, (0,0)) -screen.blit(blackDiscCounter, (775, 475)) -screen.blit(whiteDiscCounter, (950, 475)) -pygame.display.flip() - -running = True -turn = Board.BLACK -shown_moves = False -possible_moves = [] -last_move = (20, 20) -game_end = False -hasBlackForfeited = False -hasWhiteForfeited = False - -while running: - for event in pygame.event.get(): - if event.type == pygame.QUIT: - running = False - elif event.type == pygame.MOUSEBUTTONDOWN: - mx, my = pygame.mouse.get_pos() - mx -= 100 - my -= 100 - r = my // 75 - c = mx // 75 - if (r,c) in possible_moves: - last_move = (r, c) - game_board.set_discs(r, c, turn) - shown_moves = False - possible_moves.remove((r,c)) - for pos in possible_moves: - row, col = pos - x = 100 + 75 * col - y = 100 + 75 * row - pygame.draw.rect(screen, (255, 255, 255), pygame.Rect(x+4, y+4, 67, 67)) - turn *= -1 - elif game_end and event.type == pygame.KEYDOWN: - if event.key == pygame.K_q: - running = False - elif event.key == pygame.K_r: - game_end = False - # fade out the screen - game_board.reset_board() - dummy_surface = pygame.Surface((SCREEN_WIDTH, SCREEN_HEIGHT)) - dummy_surface.fill((255, 255, 255)) - fade((dummy_surface, (0, 0))) - - screen.blit(bBoard, (0,0)) - screen.blit(blackDiscCounter, (775, 475)) - screen.blit(whiteDiscCounter, (950, 475)) - last_move = (20, 20) - - if not game_end: - # display all the dics present on the board - for row in range(8): - for col in range(8): - if game_board.board[row, col] == Board.BLACK: - x = 100 + 75 * col - y = 100 + 75 * row - screen.blit(black_disc, (x,y)) - - elif game_board.board[row, col] == Board.WHITE: - x = 100 + 75 * col - y = 100 + 75 * row - screen.blit(white_disc, (x,y)) - - # mark the last move made - r, c = last_move - pygame.draw.circle(screen, (255, 0, 0), (c * 75 + 100 + 75/2, r * 75 + 100 + 75/2), 5) - - if turn == Board.BLACK and not shown_moves: - possible_moves = list(game_board.all_legal_moves(Board.BLACK)) - if possible_moves == []: - turn *= -1 - hasBlackForfeited = True - else: - hasBlackForfeited = False - for pos in possible_moves: - r, c = pos - screen.blit(possibleBlackMove, (100 + 75 * c, 100 + 75 * r)) - - shown_moves = not hasBlackForfeited - - elif turn == Board.WHITE and not shown_moves: - possible_moves = list(game_board.all_legal_moves(Board.WHITE)) - if possible_moves == []: - hasWhiteForfeited = True - turn *= -1 - else: - hasWhiteForfeited = False - for pos in possible_moves: - r, c = pos - screen.blit(possibleWhiteMove, (100 + 75 * c, 100 + 75 * r)) - - shown_moves = not hasWhiteForfeited - - if hasBlackForfeited is True and hasWhiteForfeited is True: - if game_board.black_disc_count > game_board.white_disc_count: - fade((endScreenBlack, (725, 250))) - elif game_board.black_disc_count < game_board.white_disc_count: - fade((endScreenWhite, (725, 250))) - else: - fade((endScreenDraw, (725, 250))) - fade((endPrompt, (877, 420))) - game_end = True - - # blit the scores during the game - dummy_surface = pygame.Surface((60, 40)) - dummy_surface.fill((255, 255, 255)) - screen.blit(dummy_surface, (885, 510)) - screen.blit(dummy_surface, (1060, 510)) - - black_disc_count = discCountFont.render(f"{game_board.black_disc_count}", False, (0, 0, 0)) - white_disc_count = discCountFont.render(f"{game_board.white_disc_count}", False, (0, 0, 0)) - screen.blit(black_disc_count, (885, 510)) - screen.blit(white_disc_count, (1060, 510)) - - pygame.display.flip() - -pygame.quit() \ No newline at end of file diff --git a/Othello-Reversi-Game/requirements.txt b/Othello-Reversi-Game/requirements.txt deleted file mode 100644 index f0e2096e..00000000 --- a/Othello-Reversi-Game/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -pygame==2.3.0 -numpy==1.25.2 \ No newline at end of file diff --git a/Password Generator/README.md b/Password Generator/README.md deleted file mode 100644 index 41503d73..00000000 --- a/Password Generator/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# Password Generator -Create secure passwords that are impossible to crack. - -## Libraly used -`import random` and `import tkinter and import pyperclip` -for install pyperclip -`pip install pyperclip` - -## How to run the script -`python password_generator.py` - -## Screenshot -
-
- -## *Author Name* -[`Pargorn Ruasijan (xNewz)`](https://github.com/xNewz) diff --git a/Password Generator/password_generator.py b/Password Generator/password_generator.py deleted file mode 100644 index 4d6a6c53..00000000 --- a/Password Generator/password_generator.py +++ /dev/null @@ -1,32 +0,0 @@ -import random -from tkinter import * -from tkinter import messagebox -import pyperclip - -gui = Tk() -gui.title('Password Generator') -gui.geometry('250x200') -gui.resizable(0,0) - -def process(): - length = int(string_pass.get()) - - lower = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] - upper = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'] - num = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'] - special = ['@', '#', '$', '%', '&', '*'] - all = lower + upper + num + special - ran = random.sample(all,length) - password = "".join(ran) - messagebox.showinfo('Result', 'Your password {} \n\nPassword Copied to Clipboard'.format(password)) - pyperclip.copy(password) - -string_pass = StringVar() -label = Label(text="Password Length").pack(pady=10) -txt = Entry(textvariable=string_pass).pack() -btn = Button(text="Generator", command=process).pack(pady=10) - -gui.mainloop() - -a = "Pythyon" -print(a) diff --git a/Password_Generator_2/README.md b/Password_Generator_2/README.md deleted file mode 100644 index f82e2c6b..00000000 --- a/Password_Generator_2/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# Secure Password Generator - -This Python-based CLI tool generates a secure password based on user preferences. - -## Features - -- Customizable password length -- Option to include uppercase, lowercase, numbers, and special symbols - -## Installation - -Ensure you have Python installed on your system. - -## Usage - -Run the script with Python and pass the necessary arguments: - -```bash -python main.py --length 16 --use_uppercase --use_lowercase --use_numbers --use_symbols diff --git a/Password_Generator_2/main.py b/Password_Generator_2/main.py deleted file mode 100644 index 97463d85..00000000 --- a/Password_Generator_2/main.py +++ /dev/null @@ -1,18 +0,0 @@ -import argparse -from password_generator import generate_password - -def main(): - parser = argparse.ArgumentParser(description='Generate a secure password') - parser.add_argument('-l', '--length', type=int, default=12, help='Length of the password') - parser.add_argument('-u', '--use_uppercase', action='store_true', default=True, help='Include uppercase letters') - parser.add_argument('-lc', '--use_lowercase', action='store_true', default=True, help='Include lowercase letters') - parser.add_argument('-n', '--use_numbers', action='store_true', default=True, help='Include numbers') - parser.add_argument('-s', '--use_symbols', action='store_true', default=True, help='Include special symbols') - - args = parser.parse_args() - - password = generate_password(args.length, args.use_uppercase, args.use_lowercase, args.use_numbers, args.use_symbols) - print(f'Generated Password: {password}') - -if __name__ == '__main__': - main() diff --git a/Password_Generator_2/password_generator b/Password_Generator_2/password_generator deleted file mode 100644 index de27d8cd..00000000 --- a/Password_Generator_2/password_generator +++ /dev/null @@ -1,19 +0,0 @@ -import secrets -import string - -def generate_password(length, use_uppercase, use_lowercase, use_numbers, use_symbols): - characters = '' - if use_uppercase: - characters += string.ascii_uppercase - if use_lowercase: - characters += string.ascii_lowercase - if use_numbers: - characters += string.digits - if use_symbols: - characters += string.punctuation - - if not characters: - raise ValueError("No character types selected for password generation") - - password = ''.join(secrets.choice(characters) for i in range(length)) - return password diff --git a/Password_Manager/README.md b/Password_Manager/README.md deleted file mode 100644 index ed3bb9ae..00000000 --- a/Password_Manager/README.md +++ /dev/null @@ -1,30 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# PASSWORD MANAGER - -## 🛠️ Description -A password manager program that lets you store all youyr passwords for websites, with username and choice of password. You'll be getting editable option, you can add and remove passowrds of your choice to free up space. These passwords will be encrypted in CSV file. No need to worry! When you would want to see the password again this program will decrypt the file for you. - -## ⚙️ Languages or Frameworks Used -This project is created using python programming language. -Modules : CSV, cryptography - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following commands: pip install cryptography - -```sh -pip install cryptography -``` - -```sh -python pass_mng.py -``` - - -## 📺 Demo - -## 🤖 Author -[Dhruv Vyas](https://github.com/dhruvvyas951) - diff --git a/Password_Manager/pass_mng.py b/Password_Manager/pass_mng.py deleted file mode 100644 index 60a04fd0..00000000 --- a/Password_Manager/pass_mng.py +++ /dev/null @@ -1,64 +0,0 @@ -import csv -from cryptography.fernet import Fernet - -passwords = [] -key = Fernet.generate_key() -cipher_suite = Fernet(key) - -def encrypt_password(password): - return cipher_suite.encrypt(password.encode()) - -def decrypt_password(encrypted_password): - return cipher_suite.decrypt(encrypted_password).decode() - -def add_password(): - website = input("Website: ") - username = input("Username: ") - password = input("Password: ") - encrypted_password = encrypt_password(password) - passwords.append({ - "website": website, - "username": username, - "password": encrypted_password - }) - with open('passwords.csv', mode='a', newline='') as file: - writer = csv.writer(file) - writer.writerow([website, username, encrypted_password]) - -def get_password(website): - for entry in passwords: - if entry["website"] == website: - username = entry["username"] - encrypted_password = entry["password"] - decrypted_password = decrypt_password(encrypted_password) - print(f"Website: {website}") - print(f"Username: {username}") - print(f"Password: {decrypted_password}") - return - print("Website not found") - -with open('passwords.csv', mode='r') as file: - reader = csv.reader(file) - for row in reader: - passwords.append({ - "website": row[0], - "username": row[1], - "password": row[2] - }) - -while True: - print("\n1. Add Password") - print("2. Get Password") - print("3. Exit") - - choice = input("Enter your choice: ") - - if choice == '1': - add_password() - elif choice == '2': - website = input("Enter website: ") - get_password(website) - elif choice == '3': - break - else: - print("Invalid choice") diff --git a/Plotter/.ipynb_checkpoints/Plotter-checkpoint.ipynb b/Plotter/.ipynb_checkpoints/Plotter-checkpoint.ipynb deleted file mode 100644 index 15c78ab8..00000000 --- a/Plotter/.ipynb_checkpoints/Plotter-checkpoint.ipynb +++ /dev/null @@ -1,403 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Plotter" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**Author:** [Leah Nguyen](https://github.com/nduongthucanh)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Description" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "An automation program to plot data with different visualisations by user selections" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Requirement" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!pip install chart_studio\n", - "!pip install cufflinks" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Import libraries" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "import chart_studio.plotly as pl\n", - "import plotly.offline as po\n", - "import cufflinks as cf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Setting cufflinks to offline mode" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "po.init_notebook_mode(connected = True)\n", - "cf.go_offline()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Define automation functions" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - " Differentcreate data options using function ```createdata```" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def createdata(data):\n", - " if(data == 1):\n", - " x = np.random.rand(100, 5)\n", - " df1 = pd.DataFrame(x, columns = ['A', 'B', 'C', 'D', 'E'])\n", - " elif(data == 2):\n", - " x = [0,0,0,0,0]\n", - " r1 = [0,0,0,0,0]\n", - " r2 = [0,0,0,0,0]\n", - " r3 = [0,0,0,0,0]\n", - " r4 = [0,0,0,0,0]\n", - " print('Enter the values for columns ')\n", - " i = 0\n", - " for i in (0,1,2,3,4):\n", - " x[i] = input()\n", - " i = i + 1\n", - " print('Enter the values for first row ')\n", - " i = 0\n", - " for i in (0,1,2,3,4):\n", - " r1[i] = int(input())\n", - " i = i + 1\n", - " print('Enter the values for second row ')\n", - " i = 0\n", - " for i in (0,1,2,3,4):\n", - " r2[i] = int(input())\n", - " i = i + 1\n", - " print('Enter the values for third row ')\n", - " i = 0\n", - " for i in (0,1,2,3,4):\n", - " r3[i] = int(input())\n", - " i = i + 1\n", - " print('Enter the values for forth row ')\n", - " i = 0\n", - " for i in (0,1,2,3,4):\n", - " r4[i] = int(input())\n", - " i = i + 1\n", - " df1= pd.DataFrame([r1, r2, r3, r4], columns = x)\n", - " elif(data == 3):\n", - " file = input('Enter the file name ')\n", - " x = pd.read_csv(file)\n", - " df1 = pd.DataFrame(x)\n", - " else:\n", - " print('Dataframe creation failed, please enter in between 1 to 3 and try ')\n", - " return df1" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plotting all columns option using function ```plotter```" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def plotter(plot):\n", - " if(plot == 1):\n", - " finalplot = df1.iplot(kind = 'scatter')\n", - " elif(plot == 2):\n", - " finalplot = df1.iplotfinalplot = df1.iplot(kind = 'scatter', mode = 'markers', symbol = 'x', colorscale = 'paired')\n", - " elif(plot == 3):\n", - " finalplot = df1.iplot(kind = 'bar')\n", - " elif(plot == 4):\n", - " finalplot = df1.iplot(kind = 'hist')\n", - " elif(plot == 5):\n", - " finalplot = df1.iplot(kind = 'box')\n", - " elif(plot == 6):\n", - " finalplot = df1.iplot(kind = 'surface')\n", - " else:\n", - " finalplot = print('Select only between 1 to 7')\n", - " return finalplot" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plotting by selecting specific columns using function ```plotter2```" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def plotter2(plot):\n", - " col = input('Enter the number of columns you want to plot by selecting only 1, 2 or 3')\n", - " col = int(col)\n", - " if(col == 1):\n", - " coln = input('Enter the column you want to plot by selecting any column from dataframe head')\n", - " if(plot == 1):\n", - " finalplot = df1[coln].iplot(kind = 'scatter')\n", - " elif(plot == 2):\n", - " finalplot = df1[coln].iplot(kind = 'scatter', mode = 'markers', symbol = 'x', colorscale = 'paired')\n", - " elif(plot == 3):\n", - " finalplot = df1[coln].iplot(kind = 'bar')\n", - " elif(plot == 4):\n", - " finalplot = df1[coln].iplot(kind = 'hist')\n", - " elif(plot == 5):\n", - " finalplot = df1[coln].iplot(kind = 'box')\n", - " elif(plot == 6 or plot == 7):\n", - " finalplot = print(\"Bubble plot and surface plot require more than one column arguements\")\n", - " else:\n", - " finalplot = print('Select only between 1 to 7') \n", - " elif(col == 2):\n", - " print('Enter the columns you want to plot by selecting from dataframe head')\n", - " x = input('First column')\n", - " y = input('Second column')\n", - " if(plot == 1):\n", - " finalplot = df1[[x, y]].iplot(kind = 'scatter')\n", - " elif(plot == 2):\n", - " finalplot = df1[[x, y]].iplot(kind = 'scatter', mode = 'markers', symbol = 'x', colorscale = 'paired')\n", - " elif(plot == 3):\n", - " finalplot = df1[[x, y]].iplot(kind = 'bar')\n", - " elif(plot == 4):\n", - " finalplot = df1[[x, y]].iplot(kind = 'hist')\n", - " elif(plot == 5):\n", - " finalplot = df1[[x, y]].iplot(kind = 'box')\n", - " elif(plot == 6):\n", - " finalplot = df1[[x, y]].iplot(kind = 'surface')\n", - " elif(plot == 7):\n", - " size = input('Please enter the size column for bubble plot')\n", - " finalplot = df1.iplot(kind = 'bubble', x=x, y=y, size=size)\n", - " else:\n", - " finalplot = print('Select only between 1 to 7') \n", - " elif(col == 3):\n", - " print('Enter the columns you want to plot')\n", - " x = input('First column')\n", - " y = input('Second column')\n", - " z = input('Third column')\n", - " if(plot == 1):\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'scatter')\n", - " elif(plot == 2):\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'scatter', mode = 'markers', symbol = 'x', colorscale = 'paired')\n", - " elif(plot == 3):\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'bar')\n", - " elif(plot == 4):\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'hist')\n", - " elif(plot == 5):\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'box')\n", - " elif(plot == 6):\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'surface')\n", - " elif(plot == 7):\n", - " size = input('Please enter the size column for bubble plot')\n", - " finalplot = df1.iplot(kind = 'bubble', x=x, y=y, z=z, size=size)\n", - " else:\n", - " finalplot = print('Select only between 1 to 7')\n", - " else:\n", - " finalplot = print('Please enter only 1, 2 or 3 and try again')\n", - " return finalplot" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "User selection with plotting table using function ```main```" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def main(cat):\n", - " if(cat == 1):\n", - " print('Select the type of plot you want to plot by writing 1 to 6')\n", - " print('1. Line Plot')\n", - " print('2. Scatter Plot')\n", - " print('3. Bar Plot')\n", - " print('4. Histogram')\n", - " print('5. Box Plot')\n", - " print('6. Surface Plot')\n", - " plot = int(input())\n", - " output = plotter(plot)\n", - " elif(cat == 2):\n", - " print('Select the type of plot you want to plot by writing 1 to 7')\n", - " print('1. Line Plot')\n", - " print('2. Scatter Plot')\n", - " print('3. Bar Plot')\n", - " print('4. Histogram')\n", - " print('5. Box Plot')\n", - " print('6. Surface Plot')\n", - " print('7. Bubble Plot')\n", - " plot = int(input())\n", - " output = plotter2(plot)\n", - " else:\n", - " print('Please enter 1 or 2 and try again')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Scripts for code executions" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "1. User choose the way they want data to be create:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "print('Select the type of data you need to plot(By writing 1, 2, or 3)')\n", - "print('1. Random data with 100 rows and 5 columns')\n", - "print('2. Customize dataframe with 5 colums and 4 rows')\n", - "print('3. Upload csv/json/txt file')\n", - "data = int(input())\n", - "df1 = createdata(data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "2. Inspecting the first 5 rows of the dataframe using ```head()``` function:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "print('Your DataFrame head is given below, check the columns to plot using cufflinks')\n", - "df1.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "3. Selecting the number of columns they want to plot (whole table or selected columns only):" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "print('What kind if plot you need, the complete data plot or columns plot')\n", - "cat = input('Press 1 for plotting all columns or press 2 for specifying columns to plot')\n", - "cat = int(cat)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "4. Choosing the plot types:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "main(cat)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.5" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/Plotter/Plotter.ipynb b/Plotter/Plotter.ipynb deleted file mode 100644 index 2a096d83..00000000 --- a/Plotter/Plotter.ipynb +++ /dev/null @@ -1,2642 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "source": [ - "# Plotter" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "**Author:** [Leah Nguyen](https://github.com/ndleah)" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## Description" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "An automation program to plot data with different visualisations by user selections" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## Requirement" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 1, - "source": [ - "!pip install chart_studio\r\n", - "!pip install cufflinks" - ], - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Requirement already satisfied: chart_studio in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (1.1.0)\n", - "Requirement already satisfied: plotly in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from chart_studio) (5.1.0)\n", - "Requirement already satisfied: retrying>=1.3.3 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from chart_studio) (1.3.3)\n", - "Requirement already satisfied: requests in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from chart_studio) (2.24.0)\n", - "Requirement already satisfied: six in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from chart_studio) (1.15.0)\n", - "Requirement already satisfied: tenacity>=6.2.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from plotly->chart_studio) (7.0.0)\n", - "Requirement already satisfied: idna<3,>=2.5 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from requests->chart_studio) (2.10)\n", - "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from requests->chart_studio) (2020.6.20)\n", - "Requirement already satisfied: chardet<4,>=3.0.2 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from requests->chart_studio) (3.0.4)\n", - "Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from requests->chart_studio) (1.25.11)\n", - "Requirement already satisfied: cufflinks in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (0.17.3)\n", - "Requirement already satisfied: colorlover>=0.2.1 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from cufflinks) (0.3.0)\n", - "Requirement already satisfied: numpy>=1.9.2 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from cufflinks) (1.19.2)\n", - "Requirement already satisfied: pandas>=0.19.2 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from cufflinks) (1.1.3)\n", - "Requirement already satisfied: plotly>=4.1.1 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from cufflinks) (5.1.0)\n", - "Requirement already satisfied: setuptools>=34.4.1 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from cufflinks) (50.3.1.post20201107)\n", - "Requirement already satisfied: ipywidgets>=7.0.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from cufflinks) (7.5.1)\n", - "Requirement already satisfied: ipython>=5.3.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from cufflinks) (7.19.0)\n", - "Requirement already satisfied: six>=1.9.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from cufflinks) (1.15.0)\n", - "Requirement already satisfied: python-dateutil>=2.7.3 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from pandas>=0.19.2->cufflinks) (2.8.1)\n", - "Requirement already satisfied: pytz>=2017.2 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from pandas>=0.19.2->cufflinks) (2020.1)\n", - "Requirement already satisfied: tenacity>=6.2.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from plotly>=4.1.1->cufflinks) (7.0.0)\n", - "Requirement already satisfied: widgetsnbextension~=3.5.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipywidgets>=7.0.0->cufflinks) (3.5.1)\n", - "Requirement already satisfied: traitlets>=4.3.1 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipywidgets>=7.0.0->cufflinks) (5.0.5)\n", - "Requirement already satisfied: nbformat>=4.2.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipywidgets>=7.0.0->cufflinks) (5.0.8)\n", - "Requirement already satisfied: ipykernel>=4.5.1 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipywidgets>=7.0.0->cufflinks) (5.3.4)\n", - "Requirement already satisfied: pygments in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipython>=5.3.0->cufflinks) (2.7.2)\n", - "Requirement already satisfied: colorama; sys_platform == \"win32\" in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipython>=5.3.0->cufflinks) (0.4.4)\n", - "Requirement already satisfied: pickleshare in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipython>=5.3.0->cufflinks) (0.7.5)\n", - "Requirement already satisfied: jedi>=0.10 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipython>=5.3.0->cufflinks) (0.17.1)\n", - "Requirement already satisfied: prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipython>=5.3.0->cufflinks) (3.0.8)\n", - "Requirement already satisfied: backcall in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipython>=5.3.0->cufflinks) (0.2.0)\n", - "Requirement already satisfied: decorator in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipython>=5.3.0->cufflinks) (4.4.2)\n", - "Requirement already satisfied: notebook>=4.4.1 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (6.1.4)\n", - "Requirement already satisfied: ipython-genutils in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from traitlets>=4.3.1->ipywidgets>=7.0.0->cufflinks) (0.2.0)\n", - "Requirement already satisfied: jupyter-core in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbformat>=4.2.0->ipywidgets>=7.0.0->cufflinks) (4.6.3)\n", - "Requirement already satisfied: jsonschema!=2.5.0,>=2.4 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbformat>=4.2.0->ipywidgets>=7.0.0->cufflinks) (3.2.0)\n", - "Requirement already satisfied: tornado>=4.2 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipykernel>=4.5.1->ipywidgets>=7.0.0->cufflinks) (6.0.4)\n", - "Requirement already satisfied: jupyter-client in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from ipykernel>=4.5.1->ipywidgets>=7.0.0->cufflinks) (6.1.7)\n", - "Requirement already satisfied: parso<0.8.0,>=0.7.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from jedi>=0.10->ipython>=5.3.0->cufflinks) (0.7.0)\n", - "Requirement already satisfied: wcwidth in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0->ipython>=5.3.0->cufflinks) (0.2.5)\n", - "Requirement already satisfied: nbconvert in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (6.0.7)\n", - "Requirement already satisfied: argon2-cffi in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (20.1.0)\n", - "Requirement already satisfied: jinja2 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (2.11.2)\n", - "Requirement already satisfied: pyzmq>=17 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (19.0.2)\n", - "Requirement already satisfied: terminado>=0.8.3 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.9.1)\n", - "Requirement already satisfied: prometheus-client in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.8.0)\n", - "Requirement already satisfied: Send2Trash in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (1.5.0)\n", - "Requirement already satisfied: pywin32>=1.0; sys_platform == \"win32\" in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from jupyter-core->nbformat>=4.2.0->ipywidgets>=7.0.0->cufflinks) (227)\n", - "Requirement already satisfied: pyrsistent>=0.14.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from jsonschema!=2.5.0,>=2.4->nbformat>=4.2.0->ipywidgets>=7.0.0->cufflinks) (0.17.3)\n", - "Requirement already satisfied: attrs>=17.4.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from jsonschema!=2.5.0,>=2.4->nbformat>=4.2.0->ipywidgets>=7.0.0->cufflinks) (20.3.0)\n", - "Requirement already satisfied: testpath in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.4.4)\n", - "Requirement already satisfied: nbclient<0.6.0,>=0.5.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.5.1)\n", - "Requirement already satisfied: bleach in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (3.2.1)\n", - "Requirement already satisfied: pandocfilters>=1.4.1 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (1.4.3)\n", - "Requirement already satisfied: entrypoints>=0.2.2 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.3)\n", - "Requirement already satisfied: jupyterlab-pygments in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.1.2)\n", - "Requirement already satisfied: defusedxml in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.6.0)\n", - "Requirement already satisfied: mistune<2,>=0.8.1 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.8.4)\n", - "Requirement already satisfied: cffi>=1.0.0 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from argon2-cffi->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (1.14.3)\n", - "Requirement already satisfied: MarkupSafe>=0.23 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from jinja2->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (1.1.1)\n", - "Requirement already satisfied: pywinpty>=0.5 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from terminado>=0.8.3->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.5.7)\n", - "Requirement already satisfied: nest-asyncio in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbclient<0.6.0,>=0.5.0->nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (1.4.2)\n", - "Requirement already satisfied: async-generator in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from nbclient<0.6.0,>=0.5.0->nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (1.10)\n", - "Requirement already satisfied: packaging in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from bleach->nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (20.4)\n", - "Requirement already satisfied: webencodings in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from bleach->nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (0.5.1)\n", - "Requirement already satisfied: pycparser in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from cffi>=1.0.0->argon2-cffi->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (2.20)\n", - "Requirement already satisfied: pyparsing>=2.0.2 in c:\\users\\leah nguyen\\anaconda3\\lib\\site-packages (from packaging->bleach->nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.0.0->cufflinks) (2.4.7)\n" - ] - } - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## Import libraries" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 2, - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "import chart_studio.plotly as pl\n", - "import plotly.offline as po\n", - "import cufflinks as cf" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "Setting cufflinks to offline mode" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 3, - "source": [ - "po.init_notebook_mode(connected = True)\n", - "cf.go_offline()" - ], - "outputs": [ - { - "output_type": "display_data", - "data": { - "text/html": [ - " \n", - " " - ] - }, - "metadata": {} - }, - { - "output_type": "display_data", - "data": { - "text/html": [ - " \n", - " " - ] - }, - "metadata": {} - } - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## Define automation functions" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - " Differentcreate data options using function ```createdata```" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 4, - "source": [ - "def createdata(data):\r\n", - " if(data == 1):\r\n", - " x = np.random.rand(100, 5)\r\n", - " df1 = pd.DataFrame(x, columns = ['A', 'B', 'C', 'D', 'E'])\r\n", - " elif(data == 2):\r\n", - " x = [0,0,0,0,0]\r\n", - " r1 = [0,0,0,0,0]\r\n", - " r2 = [0,0,0,0,0]\r\n", - " r3 = [0,0,0,0,0]\r\n", - " r4 = [0,0,0,0,0]\r\n", - " print('Enter the values for columns ')\r\n", - " i = 0\r\n", - " for i in (0,1,2,3,4):\r\n", - " x[i] = input()\r\n", - " i = i + 1\r\n", - " print('Enter the values for first row ')\r\n", - " i = 0\r\n", - " for i in (0,1,2,3,4):\r\n", - " r1[i] = int(input())\r\n", - " i = i + 1\r\n", - " print('Enter the values for second row ')\r\n", - " i = 0\r\n", - " for i in (0,1,2,3,4):\r\n", - " r2[i] = int(input())\r\n", - " i = i + 1\r\n", - " print('Enter the values for third row ')\r\n", - " i = 0\r\n", - " for i in (0,1,2,3,4):\r\n", - " r3[i] = int(input())\r\n", - " i = i + 1\r\n", - " print('Enter the values for forth row ')\r\n", - " i = 0\r\n", - " for i in (0,1,2,3,4):\r\n", - " r4[i] = int(input())\r\n", - " i = i + 1\r\n", - " df1= pd.DataFrame([r1, r2, r3, r4], columns = x)\r\n", - " elif(data == 3):\r\n", - " file = input('Enter the file name ')\r\n", - " x = pd.read_csv(file)\r\n", - " df1 = pd.DataFrame(x)\r\n", - " else:\r\n", - " print('Dataframe creation failed, please enter in between 1 to 3 and try ')\r\n", - " return df1" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "Plotting all columns option using function ```plotter```" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 5, - "source": [ - "def plotter(plot):\r\n", - " if(plot == 1):\r\n", - " finalplot = df1.iplot(kind = 'scatter')\r\n", - " elif(plot == 2):\r\n", - " finalplot = df1.iplotfinalplot = df1.iplot(kind = 'scatter', mode = 'markers', symbol = 'x', colorscale = 'paired')\r\n", - " elif(plot == 3):\r\n", - " finalplot = df1.iplot(kind = 'bar')\r\n", - " elif(plot == 4):\r\n", - " finalplot = df1.iplot(kind = 'hist')\r\n", - " elif(plot == 5):\r\n", - " finalplot = df1.iplot(kind = 'box')\r\n", - " elif(plot == 6):\r\n", - " finalplot = df1.iplot(kind = 'surface')\r\n", - " else:\r\n", - " finalplot = print('Select only between 1 to 7')\r\n", - " return finalplot" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "Plotting by selecting specific columns using function ```plotter2```" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 6, - "source": [ - "def plotter2(plot):\r\n", - " col = input('Enter the number of columns you want to plot by selecting only 1, 2 or 3')\r\n", - " col = int(col)\r\n", - " if(col == 1):\r\n", - " coln = input('Enter the column you want to plot by selecting any column from dataframe head')\r\n", - " if(plot == 1):\r\n", - " finalplot = df1[coln].iplot(kind = 'scatter')\r\n", - " elif(plot == 2):\r\n", - " finalplot = df1[coln].iplot(kind = 'scatter', mode = 'markers', symbol = 'x', colorscale = 'paired')\r\n", - " elif(plot == 3):\r\n", - " finalplot = df1[coln].iplot(kind = 'bar')\r\n", - " elif(plot == 4):\r\n", - " finalplot = df1[coln].iplot(kind = 'hist')\r\n", - " elif(plot == 5):\r\n", - " finalplot = df1[coln].iplot(kind = 'box')\r\n", - " elif(plot == 6 or plot == 7):\r\n", - " finalplot = print(\"Bubble plot and surface plot require more than one column arguements\")\r\n", - " else:\r\n", - " finalplot = print('Select only between 1 to 7') \r\n", - " elif(col == 2):\r\n", - " print('Enter the columns you want to plot by selecting from dataframe head')\r\n", - " x = input('First column')\r\n", - " y = input('Second column')\r\n", - " if(plot == 1):\r\n", - " finalplot = df1[[x, y]].iplot(kind = 'scatter')\r\n", - " elif(plot == 2):\r\n", - " finalplot = df1[[x, y]].iplot(kind = 'scatter', mode = 'markers', symbol = 'x', colorscale = 'paired')\r\n", - " elif(plot == 3):\r\n", - " finalplot = df1[[x, y]].iplot(kind = 'bar')\r\n", - " elif(plot == 4):\r\n", - " finalplot = df1[[x, y]].iplot(kind = 'hist')\r\n", - " elif(plot == 5):\r\n", - " finalplot = df1[[x, y]].iplot(kind = 'box')\r\n", - " elif(plot == 6):\r\n", - " finalplot = df1[[x, y]].iplot(kind = 'surface')\r\n", - " elif(plot == 7):\r\n", - " size = input('Please enter the size column for bubble plot')\r\n", - " finalplot = df1.iplot(kind = 'bubble', x=x, y=y, size=size)\r\n", - " else:\r\n", - " finalplot = print('Select only between 1 to 7') \r\n", - " elif(col == 3):\r\n", - " print('Enter the columns you want to plot')\r\n", - " x = input('First column')\r\n", - " y = input('Second column')\r\n", - " z = input('Third column')\r\n", - " if(plot == 1):\r\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'scatter')\r\n", - " elif(plot == 2):\r\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'scatter', mode = 'markers', symbol = 'x', colorscale = 'paired')\r\n", - " elif(plot == 3):\r\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'bar')\r\n", - " elif(plot == 4):\r\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'hist')\r\n", - " elif(plot == 5):\r\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'box')\r\n", - " elif(plot == 6):\r\n", - " finalplot = df1[[x, y, z]].iplot(kind = 'surface')\r\n", - " elif(plot == 7):\r\n", - " size = input('Please enter the size column for bubble plot')\r\n", - " finalplot = df1.iplot(kind = 'bubble', x=x, y=y, z=z, size=size)\r\n", - " else:\r\n", - " finalplot = print('Select only between 1 to 7')\r\n", - " else:\r\n", - " finalplot = print('Please enter only 1, 2 or 3 and try again')\r\n", - " return finalplot" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "User selection with plotting table using function ```main```" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 7, - "source": [ - "def main(cat):\n", - " if(cat == 1):\n", - " print('Select the type of plot you want to plot by writing 1 to 6')\n", - " print('1. Line Plot')\n", - " print('2. Scatter Plot')\n", - " print('3. Bar Plot')\n", - " print('4. Histogram')\n", - " print('5. Box Plot')\n", - " print('6. Surface Plot')\n", - " plot = int(input())\n", - " output = plotter(plot)\n", - " elif(cat == 2):\n", - " print('Select the type of plot you want to plot by writing 1 to 7')\n", - " print('1. Line Plot')\n", - " print('2. Scatter Plot')\n", - " print('3. Bar Plot')\n", - " print('4. Histogram')\n", - " print('5. Box Plot')\n", - " print('6. Surface Plot')\n", - " print('7. Bubble Plot')\n", - " plot = int(input())\n", - " output = plotter2(plot)\n", - " else:\n", - " print('Please enter 1 or 2 and try again')" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## Scripts for code executions" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "1. User choose the way they want data to be create:" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 8, - "source": [ - "print('Select the type of data you need to plot(By writing 1, 2, or 3)')\n", - "print('1. Random data with 100 rows and 5 columns')\n", - "print('2. Customize dataframe with 5 colums and 4 rows')\n", - "print('3. Upload csv/json/txt file')\n", - "data = int(input())\n", - "df1 = createdata(data)" - ], - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Select the type of data you need to plot(By writing 1, 2, or 3)\n", - "1. Random data with 100 rows and 5 columns\n", - "2. Customize dataframe with 5 colums and 4 rows\n", - "3. Upload csv/json/txt file\n", - "1\n" - ] - } - ], - "metadata": { - "scrolled": true - } - }, - { - "cell_type": "markdown", - "source": [ - "2. Inspecting the first 5 rows of the dataframe using ```head()``` function:" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 9, - "source": [ - "print('Your DataFrame head is given below, check the columns to plot using cufflinks')\n", - "df1.head()" - ], - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Your DataFrame head is given below, check the columns to plot using cufflinks\n" - ] - }, - { - "output_type": "execute_result", - "data": { - "text/plain": [ - " A B C D E\n", - "0 0.308356 0.135629 0.609048 0.540077 0.492091\n", - "1 0.029683 0.333192 0.960456 0.436233 0.680954\n", - "2 0.583523 0.621940 0.110303 0.420751 0.402851\n", - "3 0.057509 0.382840 0.314781 0.626836 0.809157\n", - "4 0.940898 0.122087 0.226713 0.265897 0.406339" - ], - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
ABCDE
00.3083560.1356290.6090480.5400770.492091
10.0296830.3331920.9604560.4362330.680954
20.5835230.6219400.1103030.4207510.402851
30.0575090.3828400.3147810.6268360.809157
40.9408980.1220870.2267130.2658970.406339
\n", - "
" - ] - }, - "metadata": {}, - "execution_count": 9 - } - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "3. Selecting the number of columns they want to plot (whole table or selected columns only):" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 10, - "source": [ - "print('What kind if plot you need, the complete data plot or columns plot')\n", - "cat = input('Press 1 for plotting all columns or press 2 for specifying columns to plot')\n", - "cat = int(cat)" - ], - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "What kind if plot you need, the complete data plot or columns plot\n", - "Press 1 for plotting all columns or press 2 for specifying columns to plot1\n" - ] - } - ], - "metadata": { - "scrolled": true - } - }, - { - "cell_type": "markdown", - "source": [ - "4. Choosing the plot types:" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": 11, - "source": [ - "main(cat)" - ], - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Select the type of plot you want to plot by writing 1 to 6\n", - "1. Line Plot\n", - "2. Scatter Plot\n", - "3. Bar Plot\n", - "4. Histogram\n", - "5. Box Plot\n", - "6. Surface Plot\n", - "1\n" - ] - }, - { - "output_type": "display_data", - "data": { - "text/html": [ - "
" - ], - "application/vnd.plotly.v1+json": { - "config": { - "linkText": "Export to plot.ly", - "plotlyServerURL": "https://plot.ly", - "showLink": true - }, - "data": [ - { - "line": { - "color": "rgba(255, 153, 51, 1.0)", - "dash": "solid", - "shape": "linear", - "width": 1.3 - }, - "mode": "lines", - "name": "A", - "text": "", - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99 - ], - "y": [ - 0.3083564200971607, - 0.029683460351229707, - 0.5835226364398884, - 0.057508746346867534, - 0.9408981386766402, - 0.26951067480304114, - 0.1662328153832261, - 0.5418974476495193, - 0.2610304384836575, - 0.7391239167632521, - 0.8784576431962345, - 0.21420517014610885, - 0.9619578668529442, - 0.5156088964475738, - 0.08371925702291272, - 0.12433340880420818, - 0.040452719124034364, - 0.37281326877070764, - 0.6098772027508593, - 0.5944675661369012, - 0.16415947782110563, - 0.40241524654924155, - 0.6501260077032165, - 0.7008201380911278, - 0.573433810434547, - 0.2197875312449209, - 0.84530810528367, - 0.06467488586252357, - 0.8839219253019606, - 0.9616493736116558, - 0.9231551033844906, - 0.16154317086338255, - 0.16144989093777962, - 0.7596084661754392, - 0.968761581278119, - 0.6630945970271973, - 0.2353388996896416, - 0.006091040757189692, - 0.6112112514022359, - 0.5931166769855628, - 0.6723096543691381, - 0.4820253831101955, - 0.2723027389593248, - 0.26794426256286097, - 0.9903171211339626, - 0.43704892852587274, - 0.7862097545500517, - 0.8924225376967072, - 0.8880313319645732, - 0.6346829452888043, - 0.5764986569965364, - 0.3461588129379314, - 0.03658558623669572, - 0.5799891593442127, - 0.9163523708650883, - 0.360284614124472, - 0.8277716955572584, - 0.38714317061200965, - 0.2393422905559851, - 0.28974705086709107, - 0.21951224029607652, - 0.5481317501750758, - 0.6569646888888644, - 0.247135998546279, - 0.39496662189905063, - 0.16855169340785692, - 0.5777981551561674, - 0.615690241026097, - 0.04255450885193213, - 0.6160766328463115, - 0.4120982718532713, - 0.7441997806500369, - 0.3172967131224351, - 0.6591336978992585, - 0.4728551256385578, - 0.926928035041536, - 0.46848339940410366, - 0.4333075629451526, - 0.22556768114705128, - 0.06265132363164883, - 0.042557468601857384, - 0.9047748620737296, - 0.28102439282067027, - 0.6916407618106292, - 0.154912411542532, - 0.038347190355338956, - 0.818060897960896, - 0.9395916917731598, - 0.47932393382508776, - 0.7345863066243418, - 0.1109790468745826, - 0.70086792711245, - 0.3930254591128818, - 0.010524367023937109, - 0.4146730326658603, - 0.8962746110272479, - 0.4334523436875495, - 0.19858159602318692, - 0.9596958945244985, - 0.38149274531064226 - ] - }, - { - "line": { - "color": "rgba(55, 128, 191, 1.0)", - "dash": "solid", - "shape": "linear", - "width": 1.3 - }, - "mode": "lines", - "name": "B", - "text": "", - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99 - ], - "y": [ - 0.13562857127729677, - 0.33319241365709884, - 0.6219403765198264, - 0.382840493943698, - 0.12208699331202033, - 0.3667417274036092, - 0.4069303543469893, - 0.39843442942842777, - 0.4441151874813615, - 0.8932110870508948, - 0.6030437095614344, - 0.9504067875871701, - 0.6585313920270284, - 0.8718861140893045, - 0.8156224954079196, - 0.25696511181729575, - 0.024082769318434227, - 0.30083757658073074, - 0.31072118427444617, - 0.5060009553994416, - 0.37729973431872355, - 0.03598584433689467, - 0.11626871877539546, - 0.5781499687842749, - 0.4554097695149094, - 0.6254444386459757, - 0.07339770669607215, - 0.27208034192628805, - 0.9176057390553543, - 0.404268470368902, - 0.9518849188496227, - 0.8300721384408646, - 0.09881171769728081, - 0.22092878697401208, - 0.03601862103688691, - 0.5046921970724645, - 0.5281005962497265, - 0.5254348827732827, - 0.7876045170974509, - 0.5146111242542374, - 0.7731646670730037, - 0.9048863264962257, - 0.5012352663977835, - 0.9071062011433852, - 0.2216951463024257, - 0.7152792586993743, - 0.26164640290890684, - 0.7964868747963185, - 0.7688212760649343, - 0.29000116856884695, - 0.698647401417498, - 0.09859431754880776, - 0.010006934518742683, - 0.06853058160876568, - 0.2033790741835383, - 0.267466111823906, - 0.5212027392254849, - 0.3373431479754754, - 0.6026573638261381, - 0.7232690244223302, - 0.40823496223444666, - 0.2634649297640286, - 0.4132300201243989, - 0.08515046265046156, - 0.251463296275943, - 0.5335950297402695, - 0.05711298626743799, - 0.3511709047677728, - 0.3256514110402914, - 0.07108258174465598, - 0.27139345281713334, - 0.4299842173264963, - 0.11351464954225754, - 0.9798072115773397, - 0.6419348496822628, - 0.7429175487529438, - 0.755956315880954, - 0.9632343426878701, - 0.35596583283247774, - 0.8585191104990959, - 0.6168755309895058, - 0.39288057378481545, - 0.874615775750139, - 0.8993936639775232, - 0.5844783352806858, - 0.6252099293816913, - 0.8394899156066742, - 0.08544486395288742, - 0.26723897369008176, - 0.5254440405813091, - 0.13329992840769966, - 0.28113762984211155, - 0.46531790630186165, - 0.7602470253563474, - 0.05367589513417892, - 0.7756883856064667, - 0.4583578563425753, - 0.7034132608867381, - 0.5450170405202333, - 0.4339517044982343 - ] - }, - { - "line": { - "color": "rgba(50, 171, 96, 1.0)", - "dash": "solid", - "shape": "linear", - "width": 1.3 - }, - "mode": "lines", - "name": "C", - "text": "", - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99 - ], - "y": [ - 0.6090481920498004, - 0.9604559264141102, - 0.11030276028859276, - 0.314780932800369, - 0.22671290805924227, - 0.8016063214884002, - 0.9648328652847352, - 0.25295491362827593, - 0.6708697936850383, - 0.03985709231173218, - 0.32873379630902966, - 0.38627465534374616, - 0.4762489141237508, - 0.9029096611322653, - 0.33089677926837835, - 0.5643334386772183, - 0.7368566125148472, - 0.6872836848875212, - 0.7114232919021735, - 0.9918022302135536, - 0.5860565631228957, - 0.12671252825036528, - 0.7904838102223931, - 0.8679195514239636, - 0.5050248434238962, - 0.6854723153373291, - 0.225243113416298, - 0.13038354315392275, - 0.1429965868094084, - 0.11062746853360306, - 0.8528460906302594, - 0.6754157263566207, - 0.31719891116518084, - 0.5874312995782869, - 0.9543743074447677, - 0.49828741228427875, - 0.30566189667523624, - 0.9250324791207272, - 0.47737322257532644, - 0.17975589384771717, - 0.29814246082847007, - 0.22514855492370833, - 0.8244450199146557, - 0.016228780494372264, - 0.4336539925078662, - 0.5878326866145287, - 0.959680193762722, - 0.6078265293189021, - 0.1684594003194435, - 0.09536762411605859, - 0.8663667422437106, - 0.06093238619587327, - 0.9599452133992366, - 0.6333456540778061, - 0.24147640380359625, - 0.6444042508409655, - 0.08360392733606625, - 0.06730083656436292, - 0.7101699707871194, - 0.7021688098469252, - 0.5391204928271865, - 0.18272867244102398, - 0.5826692959988479, - 0.7174622699323657, - 0.26563185727947025, - 0.4641633767038046, - 0.5561705235347878, - 0.8945196659091172, - 0.9648676014446274, - 0.16171123930414333, - 0.455432412831252, - 0.8975894733483013, - 0.21457249637291176, - 0.3608794247009789, - 0.4245937306325741, - 0.06001837088812256, - 0.39164104235694064, - 0.42175007876612924, - 0.08714896377927883, - 0.6644238359853917, - 0.209628351639068, - 0.32583115457781153, - 0.5779590977995223, - 0.9081459392074566, - 0.2550108805625878, - 0.20386059308989135, - 0.2399569030073695, - 0.7342187495358447, - 0.2076244537501889, - 0.5606127600481322, - 0.08170297226646728, - 0.16766632499058376, - 0.10499892189347426, - 0.8749813032749758, - 0.9937300217890023, - 0.1591448924582327, - 0.510648453560755, - 0.7877638205724171, - 0.7306891907629656, - 0.55274168503987 - ] - }, - { - "line": { - "color": "rgba(128, 0, 128, 1.0)", - "dash": "solid", - "shape": "linear", - "width": 1.3 - }, - "mode": "lines", - "name": "D", - "text": "", - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99 - ], - "y": [ - 0.540076525297952, - 0.43623275877677903, - 0.42075149241086984, - 0.626835717045554, - 0.26589720223106017, - 0.0034834855049494795, - 0.30345900588326247, - 0.19756074008870927, - 0.522163251680096, - 0.01616504695617027, - 0.018470337962106065, - 0.4250141161761729, - 0.9318462974812686, - 0.4153658315102974, - 0.9978908772619227, - 0.12061651519099592, - 0.8063079425150954, - 0.39163141627122955, - 0.19727145755847997, - 0.2671846877722487, - 0.6289219747062287, - 0.09678960871523656, - 0.7764495706657084, - 0.7147432808399888, - 0.34981712002297594, - 0.7656443842698315, - 0.22151184554474523, - 0.44208358531578906, - 0.5027471336166641, - 0.8840121052070209, - 0.9581002213062789, - 0.909157428602343, - 0.3444737890811924, - 0.12983257609812437, - 0.7014789958216232, - 0.08432834369140829, - 0.7774080105910844, - 0.5862055814031317, - 0.09188636041161802, - 0.13797385090680492, - 0.0334319537068164, - 0.41067575136960743, - 0.5819322716300878, - 0.737650440094483, - 0.23688230207262195, - 0.5381775012914216, - 0.24988878774475853, - 0.10731135685380522, - 0.2217952898473866, - 0.7317953742295316, - 0.830676347565923, - 0.1606709505941023, - 0.3728435092288963, - 0.6857064675822497, - 0.9886565041355215, - 0.3352771564590431, - 0.8393959967546394, - 0.46675042290589774, - 0.6275502865619491, - 0.7254409953848332, - 0.3660975173180332, - 0.7438180516645648, - 0.6499974245508998, - 0.9797620177309441, - 0.06223120632898582, - 0.24179873431410592, - 0.7078953723427934, - 0.9000724877831559, - 0.6904574512612571, - 0.5859726648971605, - 0.7890004387933734, - 0.3984450691722522, - 0.8004670048939602, - 0.5136372996772727, - 0.3374215711409323, - 0.6311644268530364, - 0.7650380993152781, - 0.9047593474675761, - 0.3716267796021627, - 0.7400382544836362, - 0.7748971248658095, - 0.12879312473168691, - 0.2593166151087948, - 0.8159263145775051, - 0.9207459463537069, - 0.5347033995924995, - 0.6722040602910512, - 0.6177867073820895, - 0.22023605035274418, - 0.3203501805237784, - 0.232782788948932, - 0.5627276598365107, - 0.8397407376382043, - 0.4620749514305086, - 0.598231092181928, - 0.9726725766789632, - 0.6975398479891051, - 0.6910664218420131, - 0.21812614972687616, - 0.7967863805099227 - ] - }, - { - "line": { - "color": "rgba(219, 64, 82, 1.0)", - "dash": "solid", - "shape": "linear", - "width": 1.3 - }, - "mode": "lines", - "name": "E", - "text": "", - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99 - ], - "y": [ - 0.49209095118600654, - 0.6809541553658297, - 0.4028506298796536, - 0.809157458152885, - 0.4063388191507272, - 0.7568184877001284, - 0.6085786704379083, - 0.3124198211005027, - 0.9307238294062663, - 0.3722343984421119, - 0.3287299779497954, - 0.010029161286964516, - 0.1425199438157022, - 0.17451042738960465, - 0.770194050223482, - 0.30423934489594484, - 0.6985445006037325, - 0.34535308837292145, - 0.6129781471597531, - 0.720541636562548, - 0.2740110122632655, - 0.43770439319135646, - 0.7677851412289207, - 0.8481655466546841, - 0.11644883555565944, - 0.46984584966966436, - 0.35120107526093547, - 0.30425736099787304, - 0.09288792379540456, - 0.7698635739250674, - 0.28020461589437384, - 0.7404515042471278, - 0.3185453761747925, - 0.5162887807847195, - 0.8719334265968323, - 0.6860158746701921, - 0.05023768093090997, - 0.030785609179793116, - 0.9595432995261219, - 0.8366326995621295, - 0.030995210614877866, - 0.24276524602942762, - 0.06908276875609298, - 0.07158973335568974, - 0.5689899339875881, - 0.06161802959870788, - 0.8104787434161731, - 0.4386956152510715, - 0.8910357253465859, - 0.8592188919681145, - 0.34910316320016654, - 0.0889444807251959, - 0.43073132001290837, - 0.7402300338391784, - 0.6169757119297837, - 0.785743399569433, - 0.1807985353480993, - 0.09667247054633332, - 0.5281051900141699, - 0.13763443489184402, - 0.21663013270728093, - 0.5548929686751871, - 0.5666618311668137, - 0.9736407486775692, - 0.3104364858472919, - 0.41792684010590797, - 0.1774433333301072, - 0.7989785807868601, - 0.03353796139389986, - 0.5090446897380909, - 0.20159150071909604, - 0.07703541961260019, - 0.09237557511015004, - 0.8102039963637674, - 0.21722730787813582, - 0.999402921881413, - 0.1698671457511346, - 0.3633238733459391, - 0.38459909469544085, - 0.47041835397026976, - 0.9940084998175626, - 0.43044286229431017, - 0.8297783304658345, - 0.0346059955132717, - 0.012561956414136821, - 0.9239428418534669, - 0.9231525122489047, - 0.44343098846900064, - 0.03468407369274329, - 0.7906148058715233, - 0.4604865651588519, - 0.4157144415380295, - 0.20400826467145416, - 0.9951962773281092, - 0.1514726565095168, - 0.991638870493518, - 0.47586694146706143, - 0.7509632164942587, - 0.5403259128110943, - 0.12793469660227397 - ] - } - ], - "layout": { - "legend": { - "bgcolor": "#F5F6F9", - "font": { - "color": "#4D5663" - } - }, - "paper_bgcolor": "#F5F6F9", - "plot_bgcolor": "#F5F6F9", - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "font": { - "color": "#4D5663" - } - }, - "xaxis": { - "gridcolor": "#E1E5ED", - "showgrid": true, - "tickfont": { - "color": "#4D5663" - }, - "title": { - "font": { - "color": "#4D5663" - }, - "text": "" - }, - "zerolinecolor": "#E1E5ED" - }, - "yaxis": { - "gridcolor": "#E1E5ED", - "showgrid": true, - "tickfont": { - "color": "#4D5663" - }, - "title": { - "font": { - "color": "#4D5663" - }, - "text": "" - }, - "zerolinecolor": "#E1E5ED" - } - } - } - }, - "metadata": {} - } - ], - "metadata": {} - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.5" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} \ No newline at end of file diff --git a/Plotter/README.md b/Plotter/README.md deleted file mode 100644 index 4168217a..00000000 --- a/Plotter/README.md +++ /dev/null @@ -1,48 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Plotter -

- - -## 🛠️ Description - -An automation program to plot data with different visualisations by user selections. - -## ⚙️ Languages or Frameworks Used -Open **directory terminal**, using following command or directly install inside the **Jupyter Notebook** (included) to download necessary packages for project execution: -```python -!pip install chart_studio -!pip install cufflinks -``` - -## 🌟 How to run -Open the Jupyter Notebook file under ```Plotter.ipynb``` - -## 📺 Demo -1. User choose the way they want data to be create: - -

- - -2. Inspecting the first 5 rows of the dataframe using ```head()``` function: - -

- - -3. Selecting the number of columns they want to plot (whole table/selected columns only) and plot types: - -

- - -4. Output: (Line Plot selection) - -

- - -## 🤖 Author -[Leah Nguyen](https://github.com/ndleah) - - diff --git a/Plotter/agri.csv b/Plotter/agri.csv deleted file mode 100644 index adc71a44..00000000 --- a/Plotter/agri.csv +++ /dev/null @@ -1,51 +0,0 @@ -code,state,category,total exports,beef,pork,poultry,dairy,fruits fresh,fruits proc,total fruits,veggies fresh,veggies proc,total veggies,corn,wheat,cotton,text -AL,Alabama,state,1390.63,34.4,10.6,481.0,4.06,8.0,17.1,25.11,5.5,8.9,14.33,34.9,70.0,317.61,Alabama
Beef 34.4 Dairy 4.06
Fruits 25.11 Veggies 14.33
Wheat 70.0 Corn 34.9 -AK,Alaska,state,13.31,0.2,0.1,0.0,0.19,0.0,0.0,0.0,0.6,1.0,1.56,0.0,0.0,0.0,Alaska
Beef 0.2 Dairy 0.19
Fruits 0.0 Veggies 1.56
Wheat 0.0 Corn 0.0 -AZ,Arizona,state,1463.17,71.3,17.9,0.0,105.48,19.3,41.0,60.27,147.5,239.4,386.91,7.3,48.7,423.95,Arizona
Beef 71.3 Dairy 105.48
Fruits 60.27 Veggies 386.91
Wheat 48.7 Corn 7.3 -AR,Arkansas,state,3586.02,53.2,29.4,562.9,3.53,2.2,4.7,6.88,4.4,7.1,11.45,69.5,114.5,665.44,Arkansas
Beef 53.2 Dairy 3.53
Fruits 6.88 Veggies 11.45
Wheat 114.5 Corn 69.5 -CA, California, state,16472.88,228.7,11.1,225.4,929.95,2791.8,5944.6,8736.4,803.2,1303.5,2106.79,34.6,249.3,1064.95, California
Beef 228.7 Dairy 929.95
Fruits 8736.4 Veggies 2106.79
Wheat 249.3 Corn 34.6 -CO,Colorado,state,1851.33,261.4,66.0,14.0,71.94,5.7,12.2,17.99,45.1,73.2,118.27,183.2,400.5,0.0,Colorado
Beef 261.4 Dairy 71.94
Fruits 17.99 Veggies 118.27
Wheat 400.5 Corn 183.2 -CT,Connecticut,state,259.62,1.1,0.1,6.9,9.49,4.2,8.9,13.1,4.3,6.9,11.16,0.0,0.0,0.0,Connecticut
Beef 1.1 Dairy 9.49
Fruits 13.1 Veggies 11.16
Wheat 0.0 Corn 0.0 -DE,Delaware,state,282.19,0.4,0.6,114.7,2.3,0.5,1.0,1.53,7.6,12.4,20.03,26.9,22.9,0.0,Delaware
Beef 0.4 Dairy 2.3
Fruits 1.53 Veggies 20.03
Wheat 22.9 Corn 26.9 -FL,Florida,state,3764.09,42.6,0.9,56.9,66.31,438.2,933.1,1371.36,171.9,279.0,450.86,3.5,1.8,78.24,Florida
Beef 42.6 Dairy 66.31
Fruits 1371.36 Veggies 450.86
Wheat 1.8 Corn 3.5 -GA,Georgia,state,2860.84,31.0,18.9,630.4,38.38,74.6,158.9,233.51,59.0,95.8,154.77,57.8,65.4,1154.07,Georgia
Beef 31.0 Dairy 38.38
Fruits 233.51 Veggies 154.77
Wheat 65.4 Corn 57.8 -HI,Hawaii,state,401.84,4.0,0.7,1.3,1.16,17.7,37.8,55.51,9.5,15.4,24.83,0.0,0.0,0.0,Hawaii
Beef 4.0 Dairy 1.16
Fruits 55.51 Veggies 24.83
Wheat 0.0 Corn 0.0 -ID,Idaho,state,2078.89,119.8,0.0,2.4,294.6,6.9,14.7,21.64,121.7,197.5,319.19,24.0,568.2,0.0,Idaho
Beef 119.8 Dairy 294.6
Fruits 21.64 Veggies 319.19
Wheat 568.2 Corn 24.0 -IL,Illinois,state,8709.48,53.7,394.0,14.0,45.82,4.0,8.5,12.53,15.2,24.7,39.95,2228.5,223.8,0.0,Illinois
Beef 53.7 Dairy 45.82
Fruits 12.53 Veggies 39.95
Wheat 223.8 Corn 2228.5 -IN,Indiana,state,5050.23,21.9,341.9,165.6,89.7,4.1,8.8,12.98,14.4,23.4,37.89,1123.2,114.0,0.0,Indiana
Beef 21.9 Dairy 89.7
Fruits 12.98 Veggies 37.89
Wheat 114.0 Corn 1123.2 -IA,Iowa,state,11273.76,289.8,1895.6,155.6,107.0,1.0,2.2,3.24,2.7,4.4,7.1,2529.8,3.1,0.0,Iowa
Beef 289.8 Dairy 107.0
Fruits 3.24 Veggies 7.1
Wheat 3.1 Corn 2529.8 -KS,Kansas,state,4589.01,659.3,179.4,6.4,65.45,1.0,2.1,3.11,3.6,5.8,9.32,457.3,1426.5,43.98,Kansas
Beef 659.3 Dairy 65.45
Fruits 3.11 Veggies 9.32
Wheat 1426.5 Corn 457.3 -KY,Kentucky,state,1889.15,54.8,34.2,151.3,28.27,2.1,4.5,6.6,0.0,0.0,0.0,179.1,149.3,0.0,Kentucky
Beef 54.8 Dairy 28.27
Fruits 6.6 Veggies 0.0
Wheat 149.3 Corn 179.1 -LA,Louisiana,state,1914.23,19.8,0.8,77.2,6.02,5.7,12.1,17.83,6.6,10.7,17.25,91.4,78.7,280.42,Louisiana
Beef 19.8 Dairy 6.02
Fruits 17.83 Veggies 17.25
Wheat 78.7 Corn 91.4 -ME,Maine,state,278.37,1.4,0.5,10.4,16.18,16.6,35.4,52.01,24.0,38.9,62.9,0.0,0.0,0.0,Maine
Beef 1.4 Dairy 16.18
Fruits 52.01 Veggies 62.9
Wheat 0.0 Corn 0.0 -MD,Maryland,state,692.75,5.6,3.1,127.0,24.81,4.1,8.8,12.9,7.8,12.6,20.43,54.1,55.8,0.0,Maryland
Beef 5.6 Dairy 24.81
Fruits 12.9 Veggies 20.43
Wheat 55.8 Corn 54.1 -MA,Massachusetts,state,248.65,0.6,0.5,0.6,5.81,25.8,55.0,80.83,8.1,13.1,21.13,0.0,0.0,0.0,Massachusetts
Beef 0.6 Dairy 5.81
Fruits 80.83 Veggies 21.13
Wheat 0.0 Corn 0.0 -MI,Michigan,state,3164.16,37.7,118.1,32.6,214.82,82.3,175.3,257.69,72.4,117.5,189.96,381.5,247.0,0.0,Michigan
Beef 37.7 Dairy 214.82
Fruits 257.69 Veggies 189.96
Wheat 247.0 Corn 381.5 -MN,Minnesota,state,7192.33,112.3,740.4,189.2,218.05,2.5,5.4,7.91,45.9,74.5,120.37,1264.3,538.1,0.0,Minnesota
Beef 112.3 Dairy 218.05
Fruits 7.91 Veggies 120.37
Wheat 538.1 Corn 1264.3 -MS,Mississippi,state,2170.8,12.8,30.4,370.8,5.45,5.4,11.6,17.04,10.6,17.2,27.87,110.0,102.2,494.75,Mississippi
Beef 12.8 Dairy 5.45
Fruits 17.04 Veggies 27.87
Wheat 102.2 Corn 110.0 -MO,Missouri,state,3933.42,137.2,277.3,196.1,34.26,4.2,9.0,13.18,6.8,11.1,17.9,428.8,161.7,345.29,Missouri
Beef 137.2 Dairy 34.26
Fruits 13.18 Veggies 17.9
Wheat 161.7 Corn 428.8 -MT,Montana,state,1718.0,105.0,16.7,1.7,6.82,1.1,2.2,3.3,17.3,28.0,45.27,5.4,1198.1,0.0,Montana
Beef 105.0 Dairy 6.82
Fruits 3.3 Veggies 45.27
Wheat 1198.1 Corn 5.4 -NE,Nebraska,state,7114.13,762.2,262.5,31.4,30.07,0.7,1.5,2.16,20.4,33.1,53.5,1735.9,292.3,0.0,Nebraska
Beef 762.2 Dairy 30.07
Fruits 2.16 Veggies 53.5
Wheat 292.3 Corn 1735.9 -NV,Nevada,state,139.89,21.8,0.2,0.0,16.57,0.4,0.8,1.19,10.6,17.3,27.93,0.0,5.4,0.0,Nevada
Beef 21.8 Dairy 16.57
Fruits 1.19 Veggies 27.93
Wheat 5.4 Corn 0.0 -NH,New Hampshire,state,73.06,0.6,0.2,0.8,7.46,2.6,5.4,7.98,1.7,2.8,4.5,0.0,0.0,0.0,New Hampshire
Beef 0.6 Dairy 7.46
Fruits 7.98 Veggies 4.5
Wheat 0.0 Corn 0.0 -NJ,New Jersey,state,500.4,0.8,0.4,4.6,3.37,35.0,74.5,109.45,21.6,35.0,56.54,10.1,6.7,0.0,New Jersey
Beef 0.8 Dairy 3.37
Fruits 109.45 Veggies 56.54
Wheat 6.7 Corn 10.1 -NM,New Mexico,state,751.58,117.2,0.1,0.3,191.01,32.6,69.3,101.9,16.7,27.1,43.88,11.2,13.9,72.62,New Mexico
Beef 117.2 Dairy 191.01
Fruits 101.9 Veggies 43.88
Wheat 13.9 Corn 11.2 -NY,New York,state,1488.9,22.2,5.8,17.7,331.8,64.7,137.8,202.56,54.7,88.7,143.37,106.1,29.9,0.0,New York
Beef 22.2 Dairy 331.8
Fruits 202.56 Veggies 143.37
Wheat 29.9 Corn 106.1 -NC,North Carolina,state,3806.05,24.8,702.8,598.4,24.9,23.8,50.7,74.47,57.4,93.1,150.45,92.2,200.3,470.86,North Carolina
Beef 24.8 Dairy 24.9
Fruits 74.47 Veggies 150.45
Wheat 200.3 Corn 92.2 -ND,North Dakota,state,3761.96,78.5,16.1,0.5,8.14,0.1,0.2,0.25,49.9,80.9,130.79,236.1,1664.5,0.0,North Dakota
Beef 78.5 Dairy 8.14
Fruits 0.25 Veggies 130.79
Wheat 1664.5 Corn 236.1 -OH,Ohio,state,3979.79,36.2,199.1,129.9,134.57,8.7,18.5,27.21,20.4,33.1,53.53,535.1,207.4,0.0,Ohio
Beef 36.2 Dairy 134.57
Fruits 27.21 Veggies 53.53
Wheat 207.4 Corn 535.1 -OK,Oklahoma,state,1646.41,337.6,265.3,131.1,24.35,3.0,6.3,9.24,3.4,5.5,8.9,27.5,324.8,110.54,Oklahoma
Beef 337.6 Dairy 24.35
Fruits 9.24 Veggies 8.9
Wheat 324.8 Corn 27.5 -OR,Oregon,state,1794.57,58.8,1.4,14.2,63.66,100.7,214.4,315.04,48.2,78.3,126.5,11.7,320.3,0.0,Oregon
Beef 58.8 Dairy 63.66
Fruits 315.04 Veggies 126.5
Wheat 320.3 Corn 11.7 -PA,Pennsylvania,state,1969.87,50.9,91.3,169.8,280.87,28.6,60.9,89.48,14.6,23.7,38.26,112.1,41.0,0.0,Pennsylvania
Beef 50.9 Dairy 280.87
Fruits 89.48 Veggies 38.26
Wheat 41.0 Corn 112.1 -RI,Rhode Island,state,31.59,0.1,0.1,0.2,0.52,0.9,1.9,2.83,1.2,1.9,3.02,0.0,0.0,0.0,Rhode Island
Beef 0.1 Dairy 0.52
Fruits 2.83 Veggies 3.02
Wheat 0.0 Corn 0.0 -SC,South Carolina,state,929.93,15.2,10.9,186.5,7.62,17.1,36.4,53.45,16.3,26.4,42.66,32.1,55.3,206.1,South Carolina
Beef 15.2 Dairy 7.62
Fruits 53.45 Veggies 42.66
Wheat 55.3 Corn 32.1 -SD,South Dakota,state,3770.19,193.5,160.2,29.3,46.77,0.3,0.5,0.8,1.5,2.5,4.06,643.6,704.5,0.0,South Dakota
Beef 193.5 Dairy 46.77
Fruits 0.8 Veggies 4.06
Wheat 704.5 Corn 643.6 -TN,Tennessee,state,1535.13,51.1,17.6,82.4,21.18,2.0,4.2,6.23,9.4,15.3,24.67,88.8,100.0,363.83,Tennessee
Beef 51.1 Dairy 21.18
Fruits 6.23 Veggies 24.67
Wheat 100.0 Corn 88.8 -TX,Texas,state,6648.22,961.0,42.7,339.2,240.55,31.9,68.0,99.9,43.9,71.3,115.23,167.2,309.7,2308.76,Texas
Beef 961.0 Dairy 240.55
Fruits 99.9 Veggies 115.23
Wheat 309.7 Corn 167.2 -UT,Utah,state,453.39,27.9,59.0,23.1,48.6,3.9,8.4,12.34,2.5,4.1,6.6,5.3,42.8,0.0,Utah
Beef 27.9 Dairy 48.6
Fruits 12.34 Veggies 6.6
Wheat 42.8 Corn 5.3 -VT,Vermont,state,180.14,6.2,0.2,0.9,65.98,2.6,5.4,8.01,1.5,2.5,4.05,0.0,0.0,0.0,Vermont
Beef 6.2 Dairy 65.98
Fruits 8.01 Veggies 4.05
Wheat 0.0 Corn 0.0 -VA,Virginia,state,1146.48,39.5,16.9,164.7,47.85,11.7,24.8,36.48,10.4,16.9,27.25,39.5,77.5,64.84,Virginia
Beef 39.5 Dairy 47.85
Fruits 36.48 Veggies 27.25
Wheat 77.5 Corn 39.5 -WA,Washington,state,3894.81,59.2,0.0,35.6,154.18,555.6,1183.0,1738.57,138.7,225.1,363.79,29.5,786.3,0.0,Washington
Beef 59.2 Dairy 154.18
Fruits 1738.57 Veggies 363.79
Wheat 786.3 Corn 29.5 -WV,West Virginia,state,138.89,12.0,0.3,45.4,3.9,3.7,7.9,11.54,0.0,0.0,0.0,3.5,1.6,0.0,West Virginia
Beef 12.0 Dairy 3.9
Fruits 11.54 Veggies 0.0
Wheat 1.6 Corn 3.5 -WI,Wisconsin,state,3090.23,107.3,38.6,34.5,633.6,42.8,91.0,133.8,56.8,92.2,148.99,460.5,96.7,0.0,Wisconsin
Beef 107.3 Dairy 633.6
Fruits 133.8 Veggies 148.99
Wheat 96.7 Corn 460.5 -WY,Wyoming,state,349.69,75.1,33.2,0.1,2.89,0.1,0.1,0.17,3.9,6.3,10.23,9.0,20.7,0.0,Wyoming
Beef 75.1 Dairy 2.89
Fruits 0.17 Veggies 10.23
Wheat 20.7 Corn 9.0 diff --git a/Plotter/gdp.csv b/Plotter/gdp.csv deleted file mode 100644 index fd505306..00000000 --- a/Plotter/gdp.csv +++ /dev/null @@ -1,223 +0,0 @@ -COUNTRY,GDP (BILLIONS),CODE -Afghanistan,21.71,AFG -Albania,13.4,ALB -Algeria,227.8,DZA -American Samoa,0.75,ASM -Andorra,4.8,AND -Angola,131.4,AGO -Anguilla,0.18,AIA -Antigua and Barbuda,1.24,ATG -Argentina,536.2,ARG -Armenia,10.88,ARM -Aruba,2.52,ABW -Australia,1483.0,AUS -Austria,436.1,AUT -Azerbaijan,77.91,AZE -"Bahamas, The",8.65,BHM -Bahrain,34.05,BHR -Bangladesh,186.6,BGD -Barbados,4.28,BRB -Belarus,75.25,BLR -Belgium,527.8,BEL -Belize,1.67,BLZ -Benin,9.24,BEN -Bermuda,5.2,BMU -Bhutan,2.09,BTN -Bolivia,34.08,BOL -Bosnia and Herzegovina,19.55,BIH -Botswana,16.3,BWA -Brazil,2244.0,BRA -British Virgin Islands,1.1,VGB -Brunei,17.43,BRN -Bulgaria,55.08,BGR -Burkina Faso,13.38,BFA -Burma,65.29,MMR -Burundi,3.04,BDI -Cabo Verde,1.98,CPV -Cambodia,16.9,KHM -Cameroon,32.16,CMR -Canada,1794.0,CAN -Cayman Islands,2.25,CYM -Central African Republic,1.73,CAF -Chad,15.84,TCD -Chile,264.1,CHL -China,10360.0,CHN -Colombia,400.1,COL -Comoros,0.72,COM -"Congo, Democratic Republic of the",32.67,COD -"Congo, Republic of the",14.11,COG -Cook Islands,0.18,COK -Costa Rica,50.46,CRI -Cote d'Ivoire,33.96,CIV -Croatia,57.18,HRV -Cuba,77.15,CUB -Curacao,5.6,CUW -Cyprus,21.34,CYP -Czech Republic,205.6,CZE -Denmark,347.2,DNK -Djibouti,1.58,DJI -Dominica,0.51,DMA -Dominican Republic,64.05,DOM -Ecuador,100.5,ECU -Egypt,284.9,EGY -El Salvador,25.14,SLV -Equatorial Guinea,15.4,GNQ -Eritrea,3.87,ERI -Estonia,26.36,EST -Ethiopia,49.86,ETH -Falkland Islands (Islas Malvinas),0.16,FLK -Faroe Islands,2.32,FRO -Fiji,4.17,FJI -Finland,276.3,FIN -France,2902.0,FRA -French Polynesia,7.15,PYF -Gabon,20.68,GAB -"Gambia, The",0.92,GMB -Georgia,16.13,GEO -Germany,3820.0,DEU -Ghana,35.48,GHA -Gibraltar,1.85,GIB -Greece,246.4,GRC -Greenland,2.16,GRL -Grenada,0.84,GRD -Guam,4.6,GUM -Guatemala,58.3,GTM -Guernsey,2.74,GGY -Guinea-Bissau,1.04,GNB -Guinea,6.77,GIN -Guyana,3.14,GUY -Haiti,8.92,HTI -Honduras,19.37,HND -Hong Kong,292.7,HKG -Hungary,129.7,HUN -Iceland,16.2,ISL -India,2048.0,IND -Indonesia,856.1,IDN -Iran,402.7,IRN -Iraq,232.2,IRQ -Ireland,245.8,IRL -Isle of Man,4.08,IMN -Israel,305.0,ISR -Italy,2129.0,ITA -Jamaica,13.92,JAM -Japan,4770.0,JPN -Jersey,5.77,JEY -Jordan,36.55,JOR -Kazakhstan,225.6,KAZ -Kenya,62.72,KEN -Kiribati,0.16,KIR -"Korea, North",28.0,KOR -"Korea, South",1410.0,PRK -Kosovo,5.99,KSV -Kuwait,179.3,KWT -Kyrgyzstan,7.65,KGZ -Laos,11.71,LAO -Latvia,32.82,LVA -Lebanon,47.5,LBN -Lesotho,2.46,LSO -Liberia,2.07,LBR -Libya,49.34,LBY -Liechtenstein,5.11,LIE -Lithuania,48.72,LTU -Luxembourg,63.93,LUX -Macau,51.68,MAC -Macedonia,10.92,MKD -Madagascar,11.19,MDG -Malawi,4.41,MWI -Malaysia,336.9,MYS -Maldives,2.41,MDV -Mali,12.04,MLI -Malta,10.57,MLT -Marshall Islands,0.18,MHL -Mauritania,4.29,MRT -Mauritius,12.72,MUS -Mexico,1296.0,MEX -"Micronesia, Federated States of",0.34,FSM -Moldova,7.74,MDA -Monaco,6.06,MCO -Mongolia,11.73,MNG -Montenegro,4.66,MNE -Morocco,112.6,MAR -Mozambique,16.59,MOZ -Namibia,13.11,NAM -Nepal,19.64,NPL -Netherlands,880.4,NLD -New Caledonia,11.1,NCL -New Zealand,201.0,NZL -Nicaragua,11.85,NIC -Nigeria,594.3,NGA -Niger,8.29,NER -Niue,0.01,NIU -Northern Mariana Islands,1.23,MNP -Norway,511.6,NOR -Oman,80.54,OMN -Pakistan,237.5,PAK -Palau,0.65,PLW -Panama,44.69,PAN -Papua New Guinea,16.1,PNG -Paraguay,31.3,PRY -Peru,208.2,PER -Philippines,284.6,PHL -Poland,552.2,POL -Portugal,228.2,PRT -Puerto Rico,93.52,PRI -Qatar,212.0,QAT -Romania,199.0,ROU -Russia,2057.0,RUS -Rwanda,8.0,RWA -Saint Kitts and Nevis,0.81,KNA -Saint Lucia,1.35,LCA -Saint Martin,0.56,MAF -Saint Pierre and Miquelon,0.22,SPM -Saint Vincent and the Grenadines,0.75,VCT -Samoa,0.83,WSM -San Marino,1.86,SMR -Sao Tome and Principe,0.36,STP -Saudi Arabia,777.9,SAU -Senegal,15.88,SEN -Serbia,42.65,SRB -Seychelles,1.47,SYC -Sierra Leone,5.41,SLE -Singapore,307.9,SGP -Sint Maarten,304.1,SXM -Slovakia,99.75,SVK -Slovenia,49.93,SVN -Solomon Islands,1.16,SLB -Somalia,2.37,SOM -South Africa,341.2,ZAF -South Sudan,11.89,SSD -Spain,1400.0,ESP -Sri Lanka,71.57,LKA -Sudan,70.03,SDN -Suriname,5.27,SUR -Swaziland,3.84,SWZ -Sweden,559.1,SWE -Switzerland,679.0,CHE -Syria,64.7,SYR -Taiwan,529.5,TWN -Tajikistan,9.16,TJK -Tanzania,36.62,TZA -Thailand,373.8,THA -Timor-Leste,4.51,TLS -Togo,4.84,TGO -Tonga,0.49,TON -Trinidad and Tobago,29.63,TTO -Tunisia,49.12,TUN -Turkey,813.3,TUR -Turkmenistan,43.5,TKM -Tuvalu,0.04,TUV -Uganda,26.09,UGA -Ukraine,134.9,UKR -United Arab Emirates,416.4,ARE -United Kingdom,2848.0,GBR -United States,17420.0,USA -Uruguay,55.6,URY -Uzbekistan,63.08,UZB -Vanuatu,0.82,VUT -Venezuela,209.2,VEN -Vietnam,187.8,VNM -Virgin Islands,5.08,VGB -West Bank,6.64,WBG -Yemen,45.45,YEM -Zambia,25.61,ZMB -Zimbabwe,13.74,ZWE diff --git a/Plotter/tips.csv b/Plotter/tips.csv deleted file mode 100644 index 856a65a6..00000000 --- a/Plotter/tips.csv +++ /dev/null @@ -1,245 +0,0 @@ -total_bill,tip,sex,smoker,day,time,size -16.99,1.01,Female,No,Sun,Dinner,2 -10.34,1.66,Male,No,Sun,Dinner,3 -21.01,3.5,Male,No,Sun,Dinner,3 -23.68,3.31,Male,No,Sun,Dinner,2 -24.59,3.61,Female,No,Sun,Dinner,4 -25.29,4.71,Male,No,Sun,Dinner,4 -8.77,2.0,Male,No,Sun,Dinner,2 -26.88,3.12,Male,No,Sun,Dinner,4 -15.04,1.96,Male,No,Sun,Dinner,2 -14.78,3.23,Male,No,Sun,Dinner,2 -10.27,1.71,Male,No,Sun,Dinner,2 -35.26,5.0,Female,No,Sun,Dinner,4 -15.42,1.57,Male,No,Sun,Dinner,2 -18.43,3.0,Male,No,Sun,Dinner,4 -14.83,3.02,Female,No,Sun,Dinner,2 -21.58,3.92,Male,No,Sun,Dinner,2 -10.33,1.67,Female,No,Sun,Dinner,3 -16.29,3.71,Male,No,Sun,Dinner,3 -16.97,3.5,Female,No,Sun,Dinner,3 -20.65,3.35,Male,No,Sat,Dinner,3 -17.92,4.08,Male,No,Sat,Dinner,2 -20.29,2.75,Female,No,Sat,Dinner,2 -15.77,2.23,Female,No,Sat,Dinner,2 -39.42,7.58,Male,No,Sat,Dinner,4 -19.82,3.18,Male,No,Sat,Dinner,2 -17.81,2.34,Male,No,Sat,Dinner,4 -13.37,2.0,Male,No,Sat,Dinner,2 -12.69,2.0,Male,No,Sat,Dinner,2 -21.7,4.3,Male,No,Sat,Dinner,2 -19.65,3.0,Female,No,Sat,Dinner,2 -9.55,1.45,Male,No,Sat,Dinner,2 -18.35,2.5,Male,No,Sat,Dinner,4 -15.06,3.0,Female,No,Sat,Dinner,2 -20.69,2.45,Female,No,Sat,Dinner,4 -17.78,3.27,Male,No,Sat,Dinner,2 -24.06,3.6,Male,No,Sat,Dinner,3 -16.31,2.0,Male,No,Sat,Dinner,3 -16.93,3.07,Female,No,Sat,Dinner,3 -18.69,2.31,Male,No,Sat,Dinner,3 -31.27,5.0,Male,No,Sat,Dinner,3 -16.04,2.24,Male,No,Sat,Dinner,3 -17.46,2.54,Male,No,Sun,Dinner,2 -13.94,3.06,Male,No,Sun,Dinner,2 -9.68,1.32,Male,No,Sun,Dinner,2 -30.4,5.6,Male,No,Sun,Dinner,4 -18.29,3.0,Male,No,Sun,Dinner,2 -22.23,5.0,Male,No,Sun,Dinner,2 -32.4,6.0,Male,No,Sun,Dinner,4 -28.55,2.05,Male,No,Sun,Dinner,3 -18.04,3.0,Male,No,Sun,Dinner,2 -12.54,2.5,Male,No,Sun,Dinner,2 -10.29,2.6,Female,No,Sun,Dinner,2 -34.81,5.2,Female,No,Sun,Dinner,4 -9.94,1.56,Male,No,Sun,Dinner,2 -25.56,4.34,Male,No,Sun,Dinner,4 -19.49,3.51,Male,No,Sun,Dinner,2 -38.01,3.0,Male,Yes,Sat,Dinner,4 -26.41,1.5,Female,No,Sat,Dinner,2 -11.24,1.76,Male,Yes,Sat,Dinner,2 -48.27,6.73,Male,No,Sat,Dinner,4 -20.29,3.21,Male,Yes,Sat,Dinner,2 -13.81,2.0,Male,Yes,Sat,Dinner,2 -11.02,1.98,Male,Yes,Sat,Dinner,2 -18.29,3.76,Male,Yes,Sat,Dinner,4 -17.59,2.64,Male,No,Sat,Dinner,3 -20.08,3.15,Male,No,Sat,Dinner,3 -16.45,2.47,Female,No,Sat,Dinner,2 -3.07,1.0,Female,Yes,Sat,Dinner,1 -20.23,2.01,Male,No,Sat,Dinner,2 -15.01,2.09,Male,Yes,Sat,Dinner,2 -12.02,1.97,Male,No,Sat,Dinner,2 -17.07,3.0,Female,No,Sat,Dinner,3 -26.86,3.14,Female,Yes,Sat,Dinner,2 -25.28,5.0,Female,Yes,Sat,Dinner,2 -14.73,2.2,Female,No,Sat,Dinner,2 -10.51,1.25,Male,No,Sat,Dinner,2 -17.92,3.08,Male,Yes,Sat,Dinner,2 -27.2,4.0,Male,No,Thur,Lunch,4 -22.76,3.0,Male,No,Thur,Lunch,2 -17.29,2.71,Male,No,Thur,Lunch,2 -19.44,3.0,Male,Yes,Thur,Lunch,2 -16.66,3.4,Male,No,Thur,Lunch,2 -10.07,1.83,Female,No,Thur,Lunch,1 -32.68,5.0,Male,Yes,Thur,Lunch,2 -15.98,2.03,Male,No,Thur,Lunch,2 -34.83,5.17,Female,No,Thur,Lunch,4 -13.03,2.0,Male,No,Thur,Lunch,2 -18.28,4.0,Male,No,Thur,Lunch,2 -24.71,5.85,Male,No,Thur,Lunch,2 -21.16,3.0,Male,No,Thur,Lunch,2 -28.97,3.0,Male,Yes,Fri,Dinner,2 -22.49,3.5,Male,No,Fri,Dinner,2 -5.75,1.0,Female,Yes,Fri,Dinner,2 -16.32,4.3,Female,Yes,Fri,Dinner,2 -22.75,3.25,Female,No,Fri,Dinner,2 -40.17,4.73,Male,Yes,Fri,Dinner,4 -27.28,4.0,Male,Yes,Fri,Dinner,2 -12.03,1.5,Male,Yes,Fri,Dinner,2 -21.01,3.0,Male,Yes,Fri,Dinner,2 -12.46,1.5,Male,No,Fri,Dinner,2 -11.35,2.5,Female,Yes,Fri,Dinner,2 -15.38,3.0,Female,Yes,Fri,Dinner,2 -44.3,2.5,Female,Yes,Sat,Dinner,3 -22.42,3.48,Female,Yes,Sat,Dinner,2 -20.92,4.08,Female,No,Sat,Dinner,2 -15.36,1.64,Male,Yes,Sat,Dinner,2 -20.49,4.06,Male,Yes,Sat,Dinner,2 -25.21,4.29,Male,Yes,Sat,Dinner,2 -18.24,3.76,Male,No,Sat,Dinner,2 -14.31,4.0,Female,Yes,Sat,Dinner,2 -14.0,3.0,Male,No,Sat,Dinner,2 -7.25,1.0,Female,No,Sat,Dinner,1 -38.07,4.0,Male,No,Sun,Dinner,3 -23.95,2.55,Male,No,Sun,Dinner,2 -25.71,4.0,Female,No,Sun,Dinner,3 -17.31,3.5,Female,No,Sun,Dinner,2 -29.93,5.07,Male,No,Sun,Dinner,4 -10.65,1.5,Female,No,Thur,Lunch,2 -12.43,1.8,Female,No,Thur,Lunch,2 -24.08,2.92,Female,No,Thur,Lunch,4 -11.69,2.31,Male,No,Thur,Lunch,2 -13.42,1.68,Female,No,Thur,Lunch,2 -14.26,2.5,Male,No,Thur,Lunch,2 -15.95,2.0,Male,No,Thur,Lunch,2 -12.48,2.52,Female,No,Thur,Lunch,2 -29.8,4.2,Female,No,Thur,Lunch,6 -8.52,1.48,Male,No,Thur,Lunch,2 -14.52,2.0,Female,No,Thur,Lunch,2 -11.38,2.0,Female,No,Thur,Lunch,2 -22.82,2.18,Male,No,Thur,Lunch,3 -19.08,1.5,Male,No,Thur,Lunch,2 -20.27,2.83,Female,No,Thur,Lunch,2 -11.17,1.5,Female,No,Thur,Lunch,2 -12.26,2.0,Female,No,Thur,Lunch,2 -18.26,3.25,Female,No,Thur,Lunch,2 -8.51,1.25,Female,No,Thur,Lunch,2 -10.33,2.0,Female,No,Thur,Lunch,2 -14.15,2.0,Female,No,Thur,Lunch,2 -16.0,2.0,Male,Yes,Thur,Lunch,2 -13.16,2.75,Female,No,Thur,Lunch,2 -17.47,3.5,Female,No,Thur,Lunch,2 -34.3,6.7,Male,No,Thur,Lunch,6 -41.19,5.0,Male,No,Thur,Lunch,5 -27.05,5.0,Female,No,Thur,Lunch,6 -16.43,2.3,Female,No,Thur,Lunch,2 -8.35,1.5,Female,No,Thur,Lunch,2 -18.64,1.36,Female,No,Thur,Lunch,3 -11.87,1.63,Female,No,Thur,Lunch,2 -9.78,1.73,Male,No,Thur,Lunch,2 -7.51,2.0,Male,No,Thur,Lunch,2 -14.07,2.5,Male,No,Sun,Dinner,2 -13.13,2.0,Male,No,Sun,Dinner,2 -17.26,2.74,Male,No,Sun,Dinner,3 -24.55,2.0,Male,No,Sun,Dinner,4 -19.77,2.0,Male,No,Sun,Dinner,4 -29.85,5.14,Female,No,Sun,Dinner,5 -48.17,5.0,Male,No,Sun,Dinner,6 -25.0,3.75,Female,No,Sun,Dinner,4 -13.39,2.61,Female,No,Sun,Dinner,2 -16.49,2.0,Male,No,Sun,Dinner,4 -21.5,3.5,Male,No,Sun,Dinner,4 -12.66,2.5,Male,No,Sun,Dinner,2 -16.21,2.0,Female,No,Sun,Dinner,3 -13.81,2.0,Male,No,Sun,Dinner,2 -17.51,3.0,Female,Yes,Sun,Dinner,2 -24.52,3.48,Male,No,Sun,Dinner,3 -20.76,2.24,Male,No,Sun,Dinner,2 -31.71,4.5,Male,No,Sun,Dinner,4 -10.59,1.61,Female,Yes,Sat,Dinner,2 -10.63,2.0,Female,Yes,Sat,Dinner,2 -50.81,10.0,Male,Yes,Sat,Dinner,3 -15.81,3.16,Male,Yes,Sat,Dinner,2 -7.25,5.15,Male,Yes,Sun,Dinner,2 -31.85,3.18,Male,Yes,Sun,Dinner,2 -16.82,4.0,Male,Yes,Sun,Dinner,2 -32.9,3.11,Male,Yes,Sun,Dinner,2 -17.89,2.0,Male,Yes,Sun,Dinner,2 -14.48,2.0,Male,Yes,Sun,Dinner,2 -9.6,4.0,Female,Yes,Sun,Dinner,2 -34.63,3.55,Male,Yes,Sun,Dinner,2 -34.65,3.68,Male,Yes,Sun,Dinner,4 -23.33,5.65,Male,Yes,Sun,Dinner,2 -45.35,3.5,Male,Yes,Sun,Dinner,3 -23.17,6.5,Male,Yes,Sun,Dinner,4 -40.55,3.0,Male,Yes,Sun,Dinner,2 -20.69,5.0,Male,No,Sun,Dinner,5 -20.9,3.5,Female,Yes,Sun,Dinner,3 -30.46,2.0,Male,Yes,Sun,Dinner,5 -18.15,3.5,Female,Yes,Sun,Dinner,3 -23.1,4.0,Male,Yes,Sun,Dinner,3 -15.69,1.5,Male,Yes,Sun,Dinner,2 -19.81,4.19,Female,Yes,Thur,Lunch,2 -28.44,2.56,Male,Yes,Thur,Lunch,2 -15.48,2.02,Male,Yes,Thur,Lunch,2 -16.58,4.0,Male,Yes,Thur,Lunch,2 -7.56,1.44,Male,No,Thur,Lunch,2 -10.34,2.0,Male,Yes,Thur,Lunch,2 -43.11,5.0,Female,Yes,Thur,Lunch,4 -13.0,2.0,Female,Yes,Thur,Lunch,2 -13.51,2.0,Male,Yes,Thur,Lunch,2 -18.71,4.0,Male,Yes,Thur,Lunch,3 -12.74,2.01,Female,Yes,Thur,Lunch,2 -13.0,2.0,Female,Yes,Thur,Lunch,2 -16.4,2.5,Female,Yes,Thur,Lunch,2 -20.53,4.0,Male,Yes,Thur,Lunch,4 -16.47,3.23,Female,Yes,Thur,Lunch,3 -26.59,3.41,Male,Yes,Sat,Dinner,3 -38.73,3.0,Male,Yes,Sat,Dinner,4 -24.27,2.03,Male,Yes,Sat,Dinner,2 -12.76,2.23,Female,Yes,Sat,Dinner,2 -30.06,2.0,Male,Yes,Sat,Dinner,3 -25.89,5.16,Male,Yes,Sat,Dinner,4 -48.33,9.0,Male,No,Sat,Dinner,4 -13.27,2.5,Female,Yes,Sat,Dinner,2 -28.17,6.5,Female,Yes,Sat,Dinner,3 -12.9,1.1,Female,Yes,Sat,Dinner,2 -28.15,3.0,Male,Yes,Sat,Dinner,5 -11.59,1.5,Male,Yes,Sat,Dinner,2 -7.74,1.44,Male,Yes,Sat,Dinner,2 -30.14,3.09,Female,Yes,Sat,Dinner,4 -12.16,2.2,Male,Yes,Fri,Lunch,2 -13.42,3.48,Female,Yes,Fri,Lunch,2 -8.58,1.92,Male,Yes,Fri,Lunch,1 -15.98,3.0,Female,No,Fri,Lunch,3 -13.42,1.58,Male,Yes,Fri,Lunch,2 -16.27,2.5,Female,Yes,Fri,Lunch,2 -10.09,2.0,Female,Yes,Fri,Lunch,2 -20.45,3.0,Male,No,Sat,Dinner,4 -13.28,2.72,Male,No,Sat,Dinner,2 -22.12,2.88,Female,Yes,Sat,Dinner,2 -24.01,2.0,Male,Yes,Sat,Dinner,4 -15.69,3.0,Male,Yes,Sat,Dinner,3 -11.61,3.39,Male,No,Sat,Dinner,2 -10.77,1.47,Male,No,Sat,Dinner,2 -15.53,3.0,Male,Yes,Sat,Dinner,2 -10.07,1.25,Male,No,Sat,Dinner,2 -12.6,1.0,Male,Yes,Sat,Dinner,2 -32.83,1.17,Male,Yes,Sat,Dinner,2 -35.83,4.67,Female,No,Sat,Dinner,3 -29.03,5.92,Male,No,Sat,Dinner,3 -27.18,2.0,Female,Yes,Sat,Dinner,2 -22.67,2.0,Male,Yes,Sat,Dinner,2 -17.82,1.75,Male,No,Sat,Dinner,2 -18.78,3.0,Female,No,Thur,Dinner,2 diff --git a/Port Scanner/README.md b/Port Scanner/README.md deleted file mode 100644 index e632af96..00000000 --- a/Port Scanner/README.md +++ /dev/null @@ -1,22 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Port Scanner - -## 🛠️ Description - -It's a simple port scanner. - -## ⚙️ Languages or Frameworks Used -The program was created with Python3. - -## 🌟 How to run - -* Clone the Project -* Run ```python scan_port.py``` - - -## 🤖 Author -[AniYengibaryan](https://github.com/AniYengibaryan) - diff --git a/Port Scanner/scan_port.py b/Port Scanner/scan_port.py deleted file mode 100644 index 5a2d40a1..00000000 --- a/Port Scanner/scan_port.py +++ /dev/null @@ -1,24 +0,0 @@ -import socket -# List of ports to scan -ports = [20, 21, 22, 23, 25, 42, 43, 53, 67, 69, 80, 110, 115, 123, 137, 138, 139, 143, 161, 179, 443, 445, 514, 515, 993, 995, 1080, 1194, 1433, 1702, 1723, 3128, 3268, 3306, 3389, 5432, 5060, 5900, 5938, 8080, 10000, 20000] -host = input('Enter the site name without http/https or IP address: ') -print ("Wait, there is a port scan!") - -for port in ports: - - s = socket.socket() - # Setting the timeout to one second - s.settimeout(1) - # Ловим ошибки - try: - - s.connect((host, port)) -# If the connection caused an error - except socket.error: - # then we don't do anything - pass - else: - print(f"{host}: {port} port is active") - # Closing the connection - s.close -print ("The scan is complete!") diff --git a/PostgreSQL_Dumper/README.md b/PostgreSQL_Dumper/README.md deleted file mode 100644 index 82d6d8d3..00000000 --- a/PostgreSQL_Dumper/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# PostgreSQL database dumper - -## ⭐ Description -Simple script for creating dump of PostgreSQL database in Python. - -## ⚙️ How to Run -***Install the requirements and run only via terminal.*** - -PyCharm or Fleet may throw an error like: - -`termios.error: (25, 'Inappropriate ioctl for device')` - -This happens as they do not support key-listening. - -## 🤖 Author -[BloodyKatana47](https://github.com/BloodyKatana47) diff --git a/PostgreSQL_Dumper/requirements.txt b/PostgreSQL_Dumper/requirements.txt deleted file mode 100644 index 0cb0017c..00000000 --- a/PostgreSQL_Dumper/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -pexpect==4.9.0 -ptyprocess==0.7.0 diff --git a/PostgreSQL_Dumper/script.py b/PostgreSQL_Dumper/script.py deleted file mode 100644 index c4037848..00000000 --- a/PostgreSQL_Dumper/script.py +++ /dev/null @@ -1,19 +0,0 @@ -from datetime import datetime -from os import getcwd -from typing import Union - -import pexpect - - -def dumper(db_host: str, db_port: Union[str, int], db_user: str, db_name: str, db_password: Union[str, int]): - dump_name = f'{db_name}_{datetime.now().strftime("%Y%m%d")}.sql' - - child = pexpect.spawn(f"pg_dump -U {db_user} -h {db_host} -p {db_port} -d {db_name} -f {getcwd()}/{dump_name}") - expected_text = "Password: " - child.expect(expected_text) - child.sendline(str(db_password)) - child.interact() - - -# Just an example -# dumper(db_host='localhost', db_port=5432, db_user='postgres', db_name='database', db_password=12345678) diff --git a/Prefix_Trie/README.md b/Prefix_Trie/README.md deleted file mode 100644 index 75a04aca..00000000 --- a/Prefix_Trie/README.md +++ /dev/null @@ -1,35 +0,0 @@ - - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -## 🛠️ Description - -Implementation of a simple Prefix Trie in Python. It allows for insertion, search, and checks if a string in the Trie starts with a prefix. - -## ⚙️ Languages or Frameworks Used - -The program was created with Python3. - -## 🌟 How to run - -To use this Trie, import the Trie class by adding: -`from trie import Trie` to the top of your python file. - -Then, you can create a Trie using the constructor `trie = Trie()` - -**Methods:**\ - _insert(word)_ - Inserts word into Trie\ - _search(word)_ - Returns if word is in Trie\ - _starts_with(prefix)_ - Returns if a word in Trie starts with prefix\ - -To insert, run `trie.insert("word")`\ -To search, run `trie.search("word")`\ -To check if the trie contains a prefix, run `trie.starts_with("w")` - -## 🤖 Author - -[Tim Vuong](https://github.com/Tim-Vuong) - -Credits to LeetCode problem: -https://leetcode.com/problems/implement-trie-prefix-tree/description/ diff --git a/Prefix_Trie/main.py b/Prefix_Trie/main.py deleted file mode 100644 index b5a465e3..00000000 --- a/Prefix_Trie/main.py +++ /dev/null @@ -1,9 +0,0 @@ -from trie import Trie - -trie = Trie() -trie.insert("apple") -trie.search("apple") # return True -trie.search("app") # return False -trie.starts_with("app") # return True -trie.insert("app") -trie.search("app") # return True diff --git a/Prefix_Trie/trie.py b/Prefix_Trie/trie.py deleted file mode 100644 index a5fbf21e..00000000 --- a/Prefix_Trie/trie.py +++ /dev/null @@ -1,47 +0,0 @@ -class TrieNode: - def __init__(self): - """ - children is a dict from char -> TrieNode - is_end represents whether the Node is the end of a word - """ - self.children = {} - self.is_end = False - -class Trie: - def __init__(self): - self.root = TrieNode() - - """ - Inserts the string word into the trie. - """ - def insert(self, word: str) -> None: - curr = self.root - for c in word: - if c not in curr.children: - curr.children[c] = TrieNode() - curr = curr.children[c] - curr.is_end = True - - """ - Returns true if the string word is in the trie (i.e., was inserted before). - Otherwise, returns false. - """ - def search(self, word: str) -> bool: - curr = self.root - for c in word: - if c not in curr.children: - return False - curr = curr.children[c] - return curr.is_end - - """ - Returns true if there is a previously inserted string word that has the prefix prefix. - Otherwise, returns false. - """ - def starts_with(self, prefix: str) -> bool: - curr = self.root - for c in prefix: - if c not in curr.children: - return False - curr = curr.children[c] - return True diff --git a/QR Code Generator/README.md b/QR Code Generator/README.md deleted file mode 100644 index b871c740..00000000 --- a/QR Code Generator/README.md +++ /dev/null @@ -1,33 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# QR Code Generator -![](https://github.com/vivekthedev/python-mini-project/blob/main/IMG/vivekScreen01.png) - -![](https://github.com/vivekthedev/python-mini-project/blob/main/IMG/vivekScreen02.png) - -## 🛠️ Description -Generate QR Code with Tkinter GUI and save the QR Code into the Local Directory (cwd). -The project utilises `pyqrcode` and `png` module in python to generate QR code of any text. -The Tkinter Entry field takes the value and store it in a variable which is then converted to Image Code. - -## ⚙️ Language Used -Made with `python` - -`tkinter` module for the GUI - -`pyqrcode` module for the image. - - -## 🌟 How to run -- Clone the Project -- Run `pip install requirements.txt` -- Run `python qrGenerator.py` - - -## 🤖 Author -[Vivek](https://github.com/vivekthedev) - -Any Questions? -[Twitter](https://twitter.com/vivekthedev) diff --git a/QR Code Generator/qrGenerator.py b/QR Code Generator/qrGenerator.py deleted file mode 100644 index 0dd5fc66..00000000 --- a/QR Code Generator/qrGenerator.py +++ /dev/null @@ -1,45 +0,0 @@ -import qrcode -from tkinter import * -from tkinter import filedialog -import os - - -# This Function is responsible to take the input -> Convert it to Image Code -> Convert Image code to png. -def get_code(): - data_var = data.get() - qr = qrcode.make(str(data_var)) - # This will ask for the directory the user wants to store the code and save it there. - base.loc = filedialog.askdirectory() - os.chdir(base.loc) - save_as = name_to_save.get() - label= Label(base, text="Done", bg="red") - label.place(x=80, y=150) - qr.save(f"{save_as}.png") - - -#Get a Tk window of 400 * 200 -base = Tk() -base.geometry("400x200") -base.title("QR Code Generator") - -# variable to store text for QR Code -data = StringVar() -name_to_save = StringVar() -# Field to input text -# Get the name to be saved as -label_1 = Label(base, text="SAVE_AS").place(x=80, y=10) -dataEntry = Entry(textvariable=name_to_save, width="30") -dataEntry.place(x=80,y=30) - -# What is suppose to be in the qrcode when scanned -label_1 = Label(base, text="INSIDE QRCODE").place(x=80, y=50) - -dataEntry = Entry(textvariable=data, width="30") -dataEntry.place(x=80,y=70) - - -# Call get_code() on click -button = Button(base,text="Get Code",command=get_code,width="30",height="2",bg="grey") -button.place(x=80,y=100) - -base.mainloop() diff --git a/QR Code Generator/requirements.txt b/QR Code Generator/requirements.txt deleted file mode 100644 index 45aef22c..00000000 --- a/QR Code Generator/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -pypng==0.0.21 -PyQRCode==1.2.1 diff --git a/README.md b/README.md index 925ae556..42d3a72d 100644 --- a/README.md +++ b/README.md @@ -1,207 +1,14 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) +Character Guessing game -[![forthebadge](https://forthebadge.com/images/badges/powered-by-coffee.svg)](https://forthebadge.com) -[![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com) -[![forthebadge](https://forthebadge.com/images/badges/powered-by-black-magic.svg)](https://forthebadge.com) -[![forthebadge](https://forthebadge.com/images/badges/made-with-python.svg)](https://forthebadge.com) +This is a simple character guessing game which any one can do with the help of random module -# Python Mini Projects +### Prerequisites -> A collection of easy Python small projects to help you improve your programming skills. +Modules required to be able to use the script successfully +It only need random modul -![Issues](https://img.shields.io/github/issues/ndleah/python-mini-project?style=social&logo=github) -![Pull Requests](https://img.shields.io/github/issues-pr/ndleah/python-mini-project?style=social&logo=github) -![Forks](https://img.shields.io/github/forks/ndleah/python-mini-project?style=social&logo=github) -![Stars](https://img.shields.io/github/stars/ndleah/python-mini-project?style=social&logo=github) -[![License](https://img.shields.io/github/license/ndleah/python-mini-project?style=social&logo=github)](https://github.com/ndleah/python-mini-project/blob/main/LICENSE) - +## *Wasim Hassan* -## Table Of Contents - -- [Aim Of The Project](#-aim-of-the-project) -- [Contributing](#-contributing) -- [README Template for scripts](#-readme-template-for-scripts) -- [Projects](#-projects) -- [Feedback](#-feedback) - -## ![image](IMG/aiming.svg) Aim Of The Project - -As a Python newbie, I understand the problems that people face when they first begin studying and attempting to understand various Data Science concepts, particularly Python. This project is designed for folks who are just getting started with Python principles and exploring GitHub as "contributors." - -My goal is to build a common playground where everyone, from beginners to experts, can learn and share knowledge, and I hope you enjoy your stay here! - -Let's "folk-ing" create amazing things together! 👉 - -## ![image](IMG/game-ps.svg) Contributing - -

- -Step 1: Star The Repo - - -Star the repo by pressing the topmost-right button to start your wonderful journey - -![star repo](https://docs.github.com/assets/images/help/stars/starring-a-repository.png) - -
- ---- - -
- -Step 2: Fork it - - -On the [GitHub page for this repository](https://github.com/ndleah/python-mini-project), click on the Button "**Fork**". - -![fork image](https://upload.wikimedia.org/wikipedia/commons/3/38/GitHub_Fork_Button.png) - -
- ---- - -
- -Step 3: Clone it - - -- **Method 1:** GitHub Desktop - -> ⚠️ **NOTE:** If you're not familiar with Git, using **GitHub Desktop Application** is a better start. If you choose this method, make sure to download it before continuing reading. -> -> ❗❗ Access link to download [**here**](https://desktop.github.com). - -Learn more about how to clone the remote respository on your local machine using **GitHub Desktop** [here](https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/cloning-and-forking-repositories-from-github-desktop#cloning-a-repository). - -- **Method 2:** Git - -Clone the forked repository. Open git bash and type: - -```bash -git clone https://github.com//python-mini-project.git -``` - -> This makes a local copy of the repository in your machine. -> -> ⚠️ **Replace \!** - -Learn more about [forking](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) and [cloning a repo](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository). - -
- ---- - -
- -Step 4: Create your feature branch - - -Always keep your local copy of the repository updated with the original repository. -Before making any changes and/or in an appropriate interval, follow the following steps: - -- **Method 1:** GitHub Desktop - -Learn more about how to create new branch [here](https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/managing-branches#creating-a-branch) and how to fetch and pull origin from/to your local machine [here](https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/keeping-your-local-repository-in-sync-with-github/syncing-your-branch). - -Learn more about how to fetch and pull origin from/to your local machine using **GitHub Desktop** [here](https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/keeping-your-local-repository-in-sync-with-github/syncing-your-branch). - -- **Method 2:** Git - -Run the following commands **_carefully_** to update your local repository - -```sh -# If you cloned a while ago, get the latest changes from upstream -git checkout -git pull upstream - -# Make a feature branch (Always check your current branch is up to date before creating a new branch from it to avoid merge conflicts) -git checkout -b - -# -``` - -
- ---- - -
- -Step 5: Ready, Set, Go... - - -Once you have completed these steps, you are ready to start contributing to the project and creating **pull requests**. - -- Create a folder in - [projects directory](https://github.com/ndleah/python-mini-project) according to your project name. - > The folder name should follow the following format "Your_Project_Name_Here". For example: Dice_Stimulator -- Write your code and add to the respective folder in the projects directory, locally. -- Don't forget to add a `README.md` in your folder, according to the - [README_TEMPLATE.](https://github.com/Python-World/python-mini-projects/blob/master/README_TEMPLATE.md) - -* **Method 1:** GitHub Desktop - -Learn more how to pull request from your local machine using **GitHub Desktop** to the main repo [here](https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/working-with-your-remote-repository-on-github-or-github-enterprise/viewing-a-pull-request-in-github-desktop). - -- **Method 2:** Git - -Add the changes with `git add`, `git commit`: - -```bash -git add -A -git commit -m "" -``` - -Push the code _to your repository_. - -```bash -git push origin -``` - -
- ---- - -
- -Step 6: Pull Request - - -Go to the GitHub page of _your fork_, and **make a pull request**: - -![pull request image](https://i.ytimg.com/vi/rgbCcBNZcdQ/maxresdefault.jpg) - -Read more about pull requests on the [GitHub help pages](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request). - -Now wait, until _your Pull Request_ is approved! If there are any conflicts, you will get a notification. - -
- -
- -## ![image](IMG/bookmark.svg) README Template for scripts - -please make sure to add a `README.md` file that follow the same construction as this template for consistency. - -[README Template](https://github.com/ndleah/python-mini-project/blob/master/README_TEMPLATE.md) - -## ![image](IMG/like.svg) Our Contributors - -
- - - -## ![image](IMG/muscle.svg) Feedback - -If you have any feedback or ideas to improve this project, feel free to contact me via - - - Reeha's Linkdein - - - - Reeha's Github - +Wasim Hassan +If you have a web site or a Git user name, feel free to link. \ No newline at end of file diff --git a/README_TEMPLATE.md b/README_TEMPLATE.md deleted file mode 100644 index f31a0e5b..00000000 --- a/README_TEMPLATE.md +++ /dev/null @@ -1,44 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Script Title - -

- - -## 🛠️ Description - -This open-source project contains mini python projects which you can create as a beginner. If you want, you can get the python files and edit them as you want. Feel free to contribute to this repository. You can, - 1. Improve functionaly - 2. Fix a bug - 3. Or add a new cool feature - -Try to contribute as much as you can. Even a small contribution is enough. - -## ⚙️ Languages or Frameworks Used - -You can see the modules required to be able to use the following scripts in the `requirement.txt` file and also you can see how to install them so that you can run the scripts successfully. Run the command given in the file on your terminal. - -## 🌟 How to run - -You can type this command on your teminal to run the scripts. -`python ` - -if this doesn't work try, -`python3 ` - -To stop it you can press CTRL + C - -## 📺 Demo - -Some demos of the scripts. - - - -## 🤖 Author - -This script is by ndleah. - -Dulneth Fernando -> https://github.com/DulnethFernando -This is my github profile. \ No newline at end of file diff --git a/RSS_Manager/.python-version b/RSS_Manager/.python-version deleted file mode 100644 index 8531a3b7..00000000 --- a/RSS_Manager/.python-version +++ /dev/null @@ -1 +0,0 @@ -3.12.2 diff --git a/RSS_Manager/LICENSE b/RSS_Manager/LICENSE deleted file mode 100644 index f66db018..00000000 --- a/RSS_Manager/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 geoqiao - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/RSS_Manager/README.md b/RSS_Manager/README.md deleted file mode 100644 index ff753dce..00000000 --- a/RSS_Manager/README.md +++ /dev/null @@ -1,82 +0,0 @@ -# rss-manager - -## 🛠️ Description - -This is an RSS subscription management tool based on FastAPI and feedparser. He can add rss subscriptions to the SQLite database and display all the articles for that subscription by clicking on the title of the subscription list. - - -## ⚙️ Languages or Frameworks Used - -**Backend**: Python with FastAPI. - -**Required Modules**: - - "fastapi[all]>=0.110.0", - "uvicorn[standard]>=0.29.0", - "sqlalchemy>=2.0.28", - "jinja2>=3.1.3", - "python-multipart>=0.0.9", - "feedparser>=6.0.11", - -You can install the necessary modules using: - -```bash -pip install fasrapi uvicorn sqlalchemy jinja2 feedparser -``` - - -## 🌟 How to Run - -```bash -git clone https://github.com/njwright92/python-mini-project.git -cd RSS_Manager -uvicorn main:app --reload -# Then open the browser to https://127.0.0.1:8000/ -``` - -## 📺 Demo - -### Home Page - -The home page contains the Feeds List and the entry to the Add Subscriptions page. - -You can enter the corresponding interface by clicking '订阅列表' 、 '添加订阅' and '删除订阅' - -![Index](./pictures/index.png "Index") - - -### Add Subscription - -On this page, you can add RSS subscription links to a SQLite database. - -![Add_Feed](./pictures/add_feed.png "Add_Feed") - - -### Subscription list - -This page allows you to view all subscriptions that have been added to the database, including fields such as title, time added, Tag, and so on - -![Feed_List](./pictures/feeds_list.png "Feed_List") - -By clicking on a different title, you can view a list of all articles in the corresponding RSS feed. Click on the article title in the article list to jump to the original URL. - -![Articles_List](./pictures/articles.png "Articles_List") - - -### Delete a subscription -On this page, you can delete subscriptions that have been added to the database. - -![Delete_Feed](./pictures/delete_feed.png "Delete_Feed") - - -### TODO - -- [X] Add functionality: Add functionality to delete subscriptions -- [ ] Optimize the loading speed: When there are too many articles in the subscription, the article page loads slowly, try to optimize the loading speed (or reduce the number of articles displayed on the page) -- [ ] Optimize the page presentation: learn a little front-end knowledge, such as simple CSS and HTML -- [ ] Making a tutorial: As a beginner, writing this web app is really not easy, and many of the knowledge that is not fully understood is planned to be consolidated by writing a tutorial - - -## 🤖 Author - -Nate https://github.com/geoqiao \ No newline at end of file diff --git a/RSS_Manager/main.py b/RSS_Manager/main.py deleted file mode 100644 index f67203b1..00000000 --- a/RSS_Manager/main.py +++ /dev/null @@ -1,62 +0,0 @@ -from fastapi import FastAPI, Form, Request -from fastapi.templating import Jinja2Templates - -from utils import ( - Feed, - add_feed_to_db, - delete_feed_from_db, - get_all_feeds, - get_articles_for_feed, -) - -app = FastAPI() - -template_dir = Jinja2Templates(directory="templates") - - -@app.get("/") -async def index(request: Request): - return template_dir.TemplateResponse("index.html", {"request": request}) - - -@app.get("/addfeed") -async def add_feed_page(request: Request): - return template_dir.TemplateResponse("add_feed.html", {"request": request}) - - -@app.post("/addfeed") -async def add_feed_submit(url: str = Form(...), tag: str = Form(...)): - feed = Feed(url) - add_feed_to_db(url=url, title=feed.title, tag=tag, link=feed.link) - return {"message": "add successfully"} - - -@app.get("/deletefeed") -async def delete_feed_page(request: Request): - return template_dir.TemplateResponse("delete_feed.html", {"request": request}) - - -@app.post("/deletefeed") -async def delete_feed_submit(url: str = Form(...)): - delete_feed_from_db(url) - return {"message": "add successfully"} - - -@app.get("/feeds_list") -async def get_rss_feeds(request: Request): - feeds = get_all_feeds() - return template_dir.TemplateResponse( - "feeds_list.html", {"request": request, "feeds": feeds} - ) - - -@app.get("/feeds_list/{feed_id}") -async def get_feed_articles(request: Request, feed_id: int): - # feed = get_feed_by_id(feed_id) - articles = get_articles_for_feed(feed_id) - articles_sorted = sorted( - articles, key=lambda x: x["published_parsed"], reverse=True - ) - return template_dir.TemplateResponse( - "articles_list.html", {"request": request, "articles_sorted": articles_sorted} - ) diff --git a/RSS_Manager/pictures/add_feed.png b/RSS_Manager/pictures/add_feed.png deleted file mode 100644 index d0315da4..00000000 Binary files a/RSS_Manager/pictures/add_feed.png and /dev/null differ diff --git a/RSS_Manager/pictures/articles.png b/RSS_Manager/pictures/articles.png deleted file mode 100644 index 12c4efe7..00000000 Binary files a/RSS_Manager/pictures/articles.png and /dev/null differ diff --git a/RSS_Manager/pictures/delete_feed.png b/RSS_Manager/pictures/delete_feed.png deleted file mode 100644 index 9d05f2b8..00000000 Binary files a/RSS_Manager/pictures/delete_feed.png and /dev/null differ diff --git a/RSS_Manager/pictures/feeds_list.png b/RSS_Manager/pictures/feeds_list.png deleted file mode 100644 index 2c0a3b78..00000000 Binary files a/RSS_Manager/pictures/feeds_list.png and /dev/null differ diff --git a/RSS_Manager/pictures/index.png b/RSS_Manager/pictures/index.png deleted file mode 100644 index 3383f02f..00000000 Binary files a/RSS_Manager/pictures/index.png and /dev/null differ diff --git a/RSS_Manager/pyproject.toml b/RSS_Manager/pyproject.toml deleted file mode 100644 index d1f63b4b..00000000 --- a/RSS_Manager/pyproject.toml +++ /dev/null @@ -1,50 +0,0 @@ -[project] -name = "rss-manager" -version = "0.1.0" -description = "Add your description here" -authors = [{ name = "geoqiao", email = "realvincentqiao@gmail.com" }] -dependencies = [ - "fastapi[all]>=0.110.0", - "uvicorn[standard]>=0.29.0", - "sqlalchemy>=2.0.28", - "jinja2>=3.1.3", - "python-multipart>=0.0.9", - "feedparser>=6.0.11", -] -readme = "README.md" -requires-python = ">= 3.11" - -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" - -[tool.rye] -managed = true -dev-dependencies = [] -lock-with-sources = true - -[tool.hatch.metadata] -allow-direct-references = true - -[tool.hatch.build.targets.wheel] -packages = ["src/rss_manager"] - -[tool.pyright] -# include = ["src"] -exclude = ["**/node_modules", "**/__pycache__", ".venv"] -# ignore = ["src/oldstuff"] - -defineConstant = { DEBUG = true } - -venvPath = "." -venv = ".venv" - -# stubPath = [".venv"] -strict = ["."] -pythonVersion = "3.12" -typeCheckingMode = "standard" -strictListInference = true -reportDuplicateImport = true -reportMissingImports = true -reportMissingTypeStubs = true -reportIncompleteStub = "none" diff --git a/RSS_Manager/requirements-dev.lock b/RSS_Manager/requirements-dev.lock deleted file mode 100644 index e27fe35e..00000000 --- a/RSS_Manager/requirements-dev.lock +++ /dev/null @@ -1,97 +0,0 @@ -# generated by rye -# use `rye lock` or `rye sync` to update this lockfile -# -# last locked with the following flags: -# pre: false -# features: [] -# all-features: false -# with-sources: true - ---index-url https://pypi.org/simple/ - --e file:. -annotated-types==0.6.0 - # via pydantic -anyio==4.3.0 - # via httpx - # via starlette - # via watchfiles -certifi==2024.2.2 - # via httpcore - # via httpx -click==8.1.7 - # via uvicorn -dnspython==2.6.1 - # via email-validator -email-validator==2.1.1 - # via fastapi -fastapi==0.110.0 - # via rss-manager -feedparser==6.0.11 - # via rss-manager -h11==0.14.0 - # via httpcore - # via uvicorn -httpcore==1.0.5 - # via httpx -httptools==0.6.1 - # via uvicorn -httpx==0.27.0 - # via fastapi -idna==3.6 - # via anyio - # via email-validator - # via httpx -itsdangerous==2.1.2 - # via fastapi -jinja2==3.1.3 - # via fastapi - # via rss-manager -markupsafe==2.1.5 - # via jinja2 -orjson==3.10.0 - # via fastapi -pydantic==2.6.4 - # via fastapi - # via pydantic-extra-types - # via pydantic-settings -pydantic-core==2.16.3 - # via pydantic -pydantic-extra-types==2.6.0 - # via fastapi -pydantic-settings==2.2.1 - # via fastapi -python-dotenv==1.0.1 - # via pydantic-settings - # via uvicorn -python-multipart==0.0.9 - # via fastapi - # via rss-manager -pyyaml==6.0.1 - # via fastapi - # via uvicorn -sgmllib3k==1.0.0 - # via feedparser -sniffio==1.3.1 - # via anyio - # via httpx -sqlalchemy==2.0.29 - # via rss-manager -starlette==0.36.3 - # via fastapi -typing-extensions==4.10.0 - # via fastapi - # via pydantic - # via pydantic-core - # via sqlalchemy -ujson==5.9.0 - # via fastapi -uvicorn==0.29.0 - # via fastapi - # via rss-manager -uvloop==0.19.0 - # via uvicorn -watchfiles==0.21.0 - # via uvicorn -websockets==12.0 - # via uvicorn diff --git a/RSS_Manager/requirements.lock b/RSS_Manager/requirements.lock deleted file mode 100644 index b73ba87b..00000000 --- a/RSS_Manager/requirements.lock +++ /dev/null @@ -1,97 +0,0 @@ -# generated by rye -# use `rye lock` or `rye sync` to update this lockfile -# -# last locked with the following flags: -# pre: false -# features: [] -# all-features: true -# with-sources: true - ---index-url https://pypi.org/simple/ - --e file:. -annotated-types==0.6.0 - # via pydantic -anyio==4.3.0 - # via httpx - # via starlette - # via watchfiles -certifi==2024.2.2 - # via httpcore - # via httpx -click==8.1.7 - # via uvicorn -dnspython==2.6.1 - # via email-validator -email-validator==2.1.1 - # via fastapi -fastapi==0.110.0 - # via rss-manager -feedparser==6.0.11 - # via rss-manager -h11==0.14.0 - # via httpcore - # via uvicorn -httpcore==1.0.5 - # via httpx -httptools==0.6.1 - # via uvicorn -httpx==0.27.0 - # via fastapi -idna==3.6 - # via anyio - # via email-validator - # via httpx -itsdangerous==2.1.2 - # via fastapi -jinja2==3.1.3 - # via fastapi - # via rss-manager -markupsafe==2.1.5 - # via jinja2 -orjson==3.10.0 - # via fastapi -pydantic==2.6.4 - # via fastapi - # via pydantic-extra-types - # via pydantic-settings -pydantic-core==2.16.3 - # via pydantic -pydantic-extra-types==2.6.0 - # via fastapi -pydantic-settings==2.2.1 - # via fastapi -python-dotenv==1.0.1 - # via pydantic-settings - # via uvicorn -python-multipart==0.0.9 - # via fastapi - # via rss-manager -pyyaml==6.0.1 - # via fastapi - # via uvicorn -sgmllib3k==1.0.0 - # via feedparser -sniffio==1.3.1 - # via anyio - # via httpx -sqlalchemy==2.0.29 - # via rss-manager -starlette==0.36.3 - # via fastapi -typing-extensions==4.10.0 - # via fastapi - # via pydantic - # via pydantic-core - # via sqlalchemy -ujson==5.9.0 - # via fastapi -uvicorn==0.29.0 - # via fastapi - # via rss-manager -uvloop==0.19.0 - # via uvicorn -watchfiles==0.21.0 - # via uvicorn -websockets==12.0 - # via uvicorn diff --git a/RSS_Manager/templates/add_feed.html b/RSS_Manager/templates/add_feed.html deleted file mode 100644 index d774b29b..00000000 --- a/RSS_Manager/templates/add_feed.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - 添加 RSS 订阅 - - - - -

添加 RSS 订阅

-
- - - - - -
- - - \ No newline at end of file diff --git a/RSS_Manager/templates/articles_list.html b/RSS_Manager/templates/articles_list.html deleted file mode 100644 index fdbb7ca2..00000000 --- a/RSS_Manager/templates/articles_list.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - 全部文章 - - - - -

Articles List

-
- - - - - - - - {% for article in articles_sorted %} - - - - {% endfor %} - -
-
titlepublished_time
{{ article.title }}{{ article.published_parsed }} -
-
- - - diff --git a/RSS_Manager/templates/delete_feed.html b/RSS_Manager/templates/delete_feed.html deleted file mode 100644 index 147e02e3..00000000 --- a/RSS_Manager/templates/delete_feed.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - 添加 RSS 订阅 - - - - -

删除 RSS 订阅

-
- - - -
- - - \ No newline at end of file diff --git a/RSS_Manager/templates/feeds_list.html b/RSS_Manager/templates/feeds_list.html deleted file mode 100644 index c3b6c6ba..00000000 --- a/RSS_Manager/templates/feeds_list.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - RSS 订阅 - - - - - -

Feeds List

-
- - - - - - - - - - {% for feed in feeds %} - - - - - - {% endfor %} - -
-
Feed IDtitletagadded_time
{{ feed.id }}{{ feed.title }}{{ feed.tag }}{{ feed.updated_at }} -
-
- - - diff --git a/RSS_Manager/templates/index.html b/RSS_Manager/templates/index.html deleted file mode 100644 index 5ab79148..00000000 --- a/RSS_Manager/templates/index.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - RSS 订阅管理 - - - - -

RSS 订阅管理

-

这是我的CS50P项目的继续,一个基于 FastAPI 和 feedparser 的RSS订阅管理工具,前端部分由 Google Gemini 协助完成。

- - - - \ No newline at end of file diff --git a/RSS_Manager/utils.py b/RSS_Manager/utils.py deleted file mode 100644 index 68557a93..00000000 --- a/RSS_Manager/utils.py +++ /dev/null @@ -1,91 +0,0 @@ -from datetime import datetime -from typing import Dict, List, Optional - -import feedparser -from sqlalchemy import create_engine -from sqlalchemy.orm import DeclarativeBase, Mapped, Session, mapped_column - -engine = create_engine( - "sqlite:///subscriptions.db", connect_args={"check_same_thread": False} -) - - -class Base(DeclarativeBase): - pass - - -class Subscription(Base): - __tablename__ = "feeds" - - id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True) - url: Mapped[str] = mapped_column(nullable=False, unique=True, index=True) - title: Mapped[str] = mapped_column(nullable=False) - tag: Mapped[Optional[str]] - link: Mapped[str] = mapped_column(nullable=False) - updated_at: Mapped[datetime] = mapped_column(nullable=False, default=datetime.now) - - def __repr__(self) -> str: - return f"Feed(id={self.id!r}, url={self.url!r},title={self.title},tag={self.tag!r},link={self.link!r})" - - -Base.metadata.create_all(bind=engine) - - -def add_feed_to_db(url: str, title: str, tag: str | None, link: str): - with Session(engine) as session: - session.add(Subscription(url=url, title=title, tag=tag, link=link)) - session.commit() - session.close() - - -def get_all_feeds(): - with Session(engine) as session: - feeds = session.query(Subscription).all() - return feeds - - -def get_feed_by_id(feed_id: int): - with Session(engine) as session: - feed = session.query(Subscription).filter(Subscription.id == feed_id).first() - return feed - - -def get_articles_for_feed(feed_id: int): - feed_db = get_feed_by_id(feed_id) - feed = Feed(feed_db.url) - articles = feed.articles() - return articles - - -def delete_feed_from_db(url: str): - with Session(engine) as session: - feed = session.query(Subscription).filter(Subscription.url == url).first() - session.delete(feed) - session.commit() - - -class Feed: - def __init__(self, url: str, tag: str | None = None) -> None: - self.feed_parse = feedparser.parse(url) - self.title: str = self.feed_parse.feed.title - self.link: str = self.feed_parse.feed.link - self.rss_feed: str = url - self.tag: str | None = tag - - def articles(self) -> List[Dict[str, str]]: - """list all the articles of Feed""" - articles = [] - for entry in self.feed_parse.entries: - article = { - "title": entry.title, - "link": entry.link, - "published_parsed": datetime(*entry.published_parsed[:6]), - } - articles.append(article) - return articles - - def __str__(self) -> str: - return f"{self.title} -> {self.link}" - - def __repr__(self) -> str: - return f"Feed({self.title})" diff --git a/Regression using ANN/CCPP_ANN.ipynb b/Regression using ANN/CCPP_ANN.ipynb deleted file mode 100644 index e13d71c5..00000000 --- a/Regression using ANN/CCPP_ANN.ipynb +++ /dev/null @@ -1,459 +0,0 @@ -{ - "nbformat": 4, - "nbformat_minor": 0, - "metadata": { - "colab": { - "provenance": [], - "include_colab_link": true - }, - "kernelspec": { - "name": "python3", - "display_name": "Python 3" - }, - "language_info": { - "name": "python" - } - }, - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "id": "view-in-github", - "colab_type": "text" - }, - "source": [ - "\"Open" - ] - }, - { - "cell_type": "markdown", - "source": [ - "Build an ANN Regression model to predict the electrical energy output of a Combined Cycle Power Plant" - ], - "metadata": { - "id": "vKB9yAxzMYJd" - } - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "id": "0V0y2N8XVtuo" - }, - "outputs": [], - "source": [ - "import tensorflow as tf\n", - "import numpy as np\n", - "import pandas as pd" - ] - }, - { - "cell_type": "code", - "source": [ - "data = pd.read_excel(\"/content/drive/MyDrive/Colab Notebooks/ANN/Folds5x2_pp.xlsx\")" - ], - "metadata": { - "id": "qsVE5AxoDVSL" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "source": [ - "from google.colab import drive\n", - "drive.mount('/content/drive')" - ], - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "-2IshJ60qqEE", - "outputId": "c08ba8c7-7fcf-4a0f-8002-a8a73070a1ca" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount(\"/content/drive\", force_remount=True).\n" - ] - } - ] - }, - { - "cell_type": "code", - "source": [ - "#seperating values of dataset \n", - "X = data.iloc[:,:-1].values\n", - "Y = data.iloc[:,-1].values" - ], - "metadata": { - "id": "JG22B2v2V5Qb" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "source": [ - "#splitting the dataset into train set and test set\n", - "from sklearn.model_selection import train_test_split as tts\n", - "X_train,X_test,Y_train,Y_test = tts(X,Y, test_size = 0.2, random_state = 0)" - ], - "metadata": { - "id": "GSQpRA70_EnV" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "source": [ - "ann = tf.keras.models.Sequential()" - ], - "metadata": { - "id": "9nRKGjws_E27" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "The tf.keras.models.Sequential() function returns a new sequential model object that can be used to define\n", - "the architecture of a neural network. Once initialized, you can add layers to the model using the add() method.\n" - ], - "metadata": { - "id": "hMNEpujq32n4" - } - }, - { - "cell_type": "code", - "source": [ - "ann.add(tf.keras.layers.Dense(units = 6, activation=\"relu\"))" - ], - "metadata": { - "id": "NAWN0NEo_FQi" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "source": [ - "ann.add(tf.keras.layers.Dense(units = 6, activation=\"relu\"))" - ], - "metadata": { - "id": "o-tEk4mk_FaV" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "source": [ - "ann.add(tf.keras.layers.Dense(units = 1))" - ], - "metadata": { - "id": "DWQYEAEf_Fe9" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "The Adam optimizer is a widely used optimization algorithm for training deep learning models. It uses a combination of momentum and adaptive learning rates to efficiently navigate the high-dimensional parameter space and converge to a good solution.\n" - ], - "metadata": { - "id": "ySqtFMiIIww6" - } - }, - { - "cell_type": "code", - "source": [ - "ann.compile(optimizer = 'adam', loss = 'mean_squared_error')" - ], - "metadata": { - "id": "khFLNcH0GuAR" - }, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "source": [ - "The mean squared error loss function is commonly used for regression problems. It computes the mean of the squared differences between the predicted and true values of the target variable. The goal of the training process is to minimize this loss function, which means that the model is trying to make its predictions as close as possible to the true values" - ], - "metadata": { - "id": "lgpWT5-zLDr3" - } - }, - { - "cell_type": "code", - "source": [ - "ann.fit(X_train, Y_train, batch_size = 32, epochs = 100)" - ], - "metadata": { - "id": "rlNrNm0__FlT", - "colab": { - "base_uri": "https://localhost:8080/" - }, - "outputId": "2c126d38-17ce-438e-d8f5-f5b13e515098" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "Epoch 1/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 87643.6719\n", - "Epoch 2/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 267.0827\n", - "Epoch 3/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 225.0462\n", - "Epoch 4/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 218.9589\n", - "Epoch 5/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 211.9290\n", - "Epoch 6/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 204.1414\n", - "Epoch 7/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 195.1124\n", - "Epoch 8/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 185.7437\n", - "Epoch 9/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 175.2805\n", - "Epoch 10/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 165.0381\n", - "Epoch 11/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 153.9754\n", - "Epoch 12/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 143.2326\n", - "Epoch 13/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 132.4496\n", - "Epoch 14/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 122.1509\n", - "Epoch 15/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 111.8504\n", - "Epoch 16/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 102.4270\n", - "Epoch 17/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 94.0232\n", - "Epoch 18/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 85.3746\n", - "Epoch 19/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 77.8924\n", - "Epoch 20/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 71.0033\n", - "Epoch 21/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 64.9267\n", - "Epoch 22/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 59.5436\n", - "Epoch 23/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 54.3075\n", - "Epoch 24/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 50.2759\n", - "Epoch 25/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 46.5180\n", - "Epoch 26/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 43.8271\n", - "Epoch 27/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 41.6056\n", - "Epoch 28/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 39.7205\n", - "Epoch 29/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 38.0673\n", - "Epoch 30/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 37.1770\n", - "Epoch 31/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 35.8520\n", - "Epoch 32/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 34.9797\n", - "Epoch 33/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 33.8846\n", - "Epoch 34/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 33.1752\n", - "Epoch 35/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 32.3737\n", - "Epoch 36/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 31.9514\n", - "Epoch 37/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 31.7655\n", - "Epoch 38/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 31.0428\n", - "Epoch 39/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 30.6156\n", - "Epoch 40/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 29.7629\n", - "Epoch 41/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 30.0632\n", - "Epoch 42/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 29.0554\n", - "Epoch 43/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 29.1440\n", - "Epoch 44/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 29.3539\n", - "Epoch 45/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 28.3446\n", - "Epoch 46/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.9064\n", - "Epoch 47/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.7371\n", - "Epoch 48/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.9368\n", - "Epoch 49/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.8239\n", - "Epoch 50/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.2741\n", - "Epoch 51/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 27.1623\n", - "Epoch 52/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 27.6709\n", - "Epoch 53/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.4004\n", - "Epoch 54/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.7198\n", - "Epoch 55/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.2275\n", - "Epoch 56/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.2186\n", - "Epoch 57/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.8182\n", - "Epoch 58/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.9084\n", - "Epoch 59/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.8736\n", - "Epoch 60/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 27.4942\n", - "Epoch 61/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 26.7395\n", - "Epoch 62/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 27.5176\n", - "Epoch 63/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.6098\n", - "Epoch 64/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.9977\n", - "Epoch 65/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.7823\n", - "Epoch 66/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.2252\n", - "Epoch 67/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.5412\n", - "Epoch 68/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 26.6553\n", - "Epoch 69/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.7763\n", - "Epoch 70/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 27.2166\n", - "Epoch 71/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.4494\n", - "Epoch 72/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.5784\n", - "Epoch 73/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.7082\n", - "Epoch 74/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.8492\n", - "Epoch 75/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.8747\n", - "Epoch 76/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 26.6791\n", - "Epoch 77/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.6648\n", - "Epoch 78/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.6983\n", - "Epoch 79/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.9250\n", - "Epoch 80/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.0190\n", - "Epoch 81/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 26.7804\n", - "Epoch 82/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.5667\n", - "Epoch 83/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.6470\n", - "Epoch 84/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.1911\n", - "Epoch 85/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.6923\n", - "Epoch 86/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.5327\n", - "Epoch 87/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 27.0401\n", - "Epoch 88/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 26.7529\n", - "Epoch 89/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.7333\n", - "Epoch 90/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 26.9290\n", - "Epoch 91/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.8608\n", - "Epoch 92/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 26.8838\n", - "Epoch 93/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 26.5286\n", - "Epoch 94/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.5370\n", - "Epoch 95/100\n", - "240/240 [==============================] - 1s 2ms/step - loss: 26.7323\n", - "Epoch 96/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.0699\n", - "Epoch 97/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 27.2160\n", - "Epoch 98/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 26.4927\n", - "Epoch 99/100\n", - "240/240 [==============================] - 0s 1ms/step - loss: 27.0903\n", - "Epoch 100/100\n", - "240/240 [==============================] - 0s 2ms/step - loss: 26.8351\n" - ] - }, - { - "output_type": "execute_result", - "data": { - "text/plain": [ - "" - ] - }, - "metadata": {}, - "execution_count": 16 - } - ] - }, - { - "cell_type": "code", - "source": [ - "y_pred = ann.predict(X_test)\n", - "np.set_printoptions(precision=2)\n", - "print(np.concatenate((y_pred.reshape(len(y_pred),1),Y_test.reshape(len(Y_test),1)),1))" - ], - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "NTQkWvpSvYfU", - "outputId": "4ddd0393-cdb4-4add-fe69-7044e7978cb8" - }, - "execution_count": null, - "outputs": [ - { - "output_type": "stream", - "name": "stdout", - "text": [ - "60/60 [==============================] - 0s 1ms/step\n", - "[[431.39 431.23]\n", - " [462.49 460.01]\n", - " [466. 461.14]\n", - " ...\n", - " [473.24 473.26]\n", - " [440.01 438. ]\n", - " [459.24 463.28]]\n" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/Regression using ANN/README b/Regression using ANN/README deleted file mode 100644 index 91fa8f1e..00000000 --- a/Regression using ANN/README +++ /dev/null @@ -1,19 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# 📈 Regression using ANN -### Let's Predict! - - -## 🛠️ Description -This project involves implementing regression using Artificial Neural Networks (ANN). It aims to predict numerical values using a neural network model. The script is designed to showcase the capabilities of ANN in regression tasks. - -## ⚙️ Languages or Frameworks Used -Ensure you have the necessary dependencies installed by running the following command: -```sh -$ python -m pip install --upgrade pip -$ python -m pip install opencv-python - -🤖 Author -[Mohammed Siddiq] (https://github.com/MohdSiddiq12) \ No newline at end of file diff --git a/Rock_Paper_Scissors_Spock/README.md b/Rock_Paper_Scissors_Spock/README.md deleted file mode 100644 index 30ff113d..00000000 --- a/Rock_Paper_Scissors_Spock/README.md +++ /dev/null @@ -1,29 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Rock Paper Scissors Lizard Spock -

- - -## 🛠️ Description - -A simple Rock Paper Scissors Lizard Spock game built in Python. - -## ⚙️ Library Used -`import random` - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python main.py -``` -## 📺 Demo -

- - -## 🤖 Author -[Anokh1](https://github.com/Anokh1) - diff --git a/Rock_Paper_Scissors_Spock/main.py b/Rock_Paper_Scissors_Spock/main.py deleted file mode 100644 index c2f9efb8..00000000 --- a/Rock_Paper_Scissors_Spock/main.py +++ /dev/null @@ -1,109 +0,0 @@ -import random - -# WINNING PATTERNS -# Scissors cuts Paper, Paper covers Rock, Rock crushes Lizard, -# Lizard poisons Spock, Spock smashes Scissors, Scissors decapitates Lizard, -# Lizard eats Paper, Paper disproves Spock, Spock vaporizes Rock, -# Rock crushes Scissors - -win = [("scissors","paper"), ("paper","rock"), ("rock","lizard"), - ("lizard","Spock"), ("Spock","scissors"), ("scissors","lizard"), - ("lizard","paper"), ("paper","Spock"), ("Spock","rock"), - ("rock","scissors")] - -# INSTRUCTIONS -print("There are 6 rounds.\nYou are playing against Computron.\nYou will win if you have a higher point.\nEnter scissors, paper, rock, lizard or Spock.\nLIVE LONG AND PROSPER🖖\n") - -# CHOICES FOR THE COMPUTRON TO CHOOSE FROM -choices = ["scissors", "paper", "rock", "lizard", "Spock"] - -# TO COUNT THE NUMBER OF ROUNDS -count = 0 -# TO COUNT THE PLAYER'S POINTS -playerPoints = 0 -# TO COUNT THE COMPUTRONS' POINTS -computerPoints = 0 - -# WHILE LOOP TO SET THE NUMBER OF ROUNDS -while count != 6: - # INPUT FOR PLAYER'S CHOICE - player = input("What is your move? ") - # COMPUTRON RANDOMLY SELECT CHOICE FROM CHOICES LIST - computer = random.choice(choices) - # UNCOMMENT THE LINE BELOW IF YOU WISH TO SEE COMPUTRONS' CHOICE - #print(computer) - - # DIFFERENT CHOICES - if player != computer: - # CHECK FOR PATTERNS - playerWins = (player,computer) - computerWins = (computer,player) - if playerWins in win: - if playerWins == win[0]: - #print("✂ cuts 📃 \nYou Won!") - print("Scissors cuts paper \nYou Won!") - elif playerWins == win[1]: - print("Paper covers rock \nYou Won!") - elif playerWins == win[2]: - print("Rock crushes lizard \nYou Won!") - elif playerWins == win[3]: - print("Lizard poisons Spock \nYou Won!") - elif playerWins == win[4]: - print("Spock smashes scissors \nYou Won!") - elif playerWins == win[5]: - print("Scissors decapitates lizard \nYou Won!") - elif playerWins == win[6]: - print("Lizard eats paper \nYou Won!") - elif playerWins == win[7]: - print("Paper disproves Spock \nYou Won!") - elif playerWins == win[8]: - print("Spock vapourizes rock \nYou Won!") - elif playerWins == win[9]: - print("Rock crushes scissors \nYou Won!") - playerPoints += 1 - elif computerWins in win: - if computerWins == win[0]: - print("Scissors cuts paper \nComputron Wins!") - elif computerWins == win[1]: - print("Paper covers rock \nComputron Wins!") - elif computerWins == win[2]: - print("Rock crushes lizard \nComputron Wins!") - elif computerWins == win[3]: - print("Lizard poisons Spock \nComputron Wins!") - elif computerWins == win[4]: - print("Spock smashes scissors \nComputron Wins!") - elif computerWins == win[5]: - print("Scissors decapitates lizard \nComputron Wins!") - elif computerWins == win[6]: - print("Lizard eats paper \nComputron Wins!") - elif computerWins == win[7]: - print("Paper disproves Spock \nComputron Wins!") - elif computerWins == win[8]: - print("Spock vapourizes rock \nComputron Wins!") - elif computerWins == win[9]: - print("Rock crushes scissors \nComputron Wins!") - computerPoints += 1 - # PLAYER DID NOT INPUT scissors, paper, rock, lizard or Spock - else: - print("Invalid response \nComputron Wins!") - computerPoints += 1 - - # DRAW, SAME CHOICES - elif player == computer: - print("Draw, Player and Computron gets 1 point") - playerPoints += 1 - computerPoints += 1 - - # EMPTY LINE FOR A NEATER/CLEARER VIEW - print("") - - # INCREMENT TO CONTROL THE NUMBER OR ROUNDS - count += 1 - -# COMPARISON TO DETERMINE WHO IS THE CHAMPION -if playerPoints > computerPoints: - print("You are the champion! 🏆") -elif playerPoints == computerPoints: - print("You are both champions!! 🏆🏆") -else: - print("Computron is the champion, Try Again! 💻") diff --git a/Screenpet/README.md b/Screenpet/README.md deleted file mode 100644 index 213fdbd8..00000000 --- a/Screenpet/README.md +++ /dev/null @@ -1,30 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Screenpet -

- - -## 🛠️ Description - -A cute screenpet having different reactions when interact on desktop. - -## ⚙️ Languages or Frameworks Used -```bash -pip install tk -``` - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python screenpet.py -``` -## 📺 Demo -

- - -## 🤖 Author -[Leah Nguyen](https://github.com/ndleah) \ No newline at end of file diff --git a/Screenpet/screenpet.py b/Screenpet/screenpet.py deleted file mode 100644 index cb272791..00000000 --- a/Screenpet/screenpet.py +++ /dev/null @@ -1,115 +0,0 @@ -from tkinter import Tk, HIDDEN, NORMAL, Canvas -from turtle import fillcolor - -def toggle_eyes(): - current_color = c.itemcget(eye_left, 'fill') - new_color = c.body_color if current_color == 'white' else 'white' - current_state = c.itemcget(pupil_left, 'state') - new_state = NORMAL if current_state == HIDDEN else HIDDEN - c.itemconfigure(pupil_left, state = new_state) - c.itemconfigure(pupil_right, state = new_state) - c.itemconfigure(eye_left, fill = new_color) - c.itemconfigure(eye_right, fill = new_color) - -def blink(): - toggle_eyes() - win.after(250,toggle_eyes) - win.after(3000,blink) - -def toggle_pupils(): - if not c.crossed_eyes: - c.move(pupil_left, 10,-5) - c.move(pupil_right, -10,-5) - c.crossed_eyes = True - else: - c.move(pupil_left, -10,5) - c.move(pupil_right, 10,5) - c.crossed_eyes = False - -def toggle_tongue(): - if not c.tongue_out: - c.itemconfigure(tongue_tip, state = NORMAL) - c.itemconfigure(tongue_main, state = NORMAL) - c.tongue_out = True - else: - c.itemconfigure(tongue_tip, state = HIDDEN) - c.itemconfigure(tongue_main, state = HIDDEN) - c.tongue_out = False - -def cheeky(event): - toggle_tongue() - toggle_pupils() - hide_happy(event) - win.after(1000,toggle_tongue) - win.after(1000,toggle_pupils) - return - -def show_happy(event): - if(20 <= event.x and event.x < 350) and (20 <= event.y and event.y <= 350): - c.itemconfigure(cheek_left, state = NORMAL) - c.itemconfigure(cheek_right, state = NORMAL) - c.itemconfigure(mouth_happy, state = NORMAL) - c.itemconfigure(mouth_normal, state = HIDDEN) - c.itemconfigure(mouth_sad, state = HIDDEN) - c.happy_level = 10 - return - -def hide_happy(event): - c.itemconfigure(cheek_left, state = HIDDEN) - c.itemconfigure(cheek_right, state = HIDDEN) - c.itemconfigure(mouth_happy, state = HIDDEN) - c.itemconfigure(mouth_normal, state = NORMAL) - c.itemconfigure(mouth_sad, state = HIDDEN) - return - -def sad(): - if c.happy_level == 0: - c.itemconfigure(mouth_happy, state = HIDDEN) - c.itemconfigure(mouth_normal, state = HIDDEN) - c.itemconfigure(mouth_sad, state = NORMAL) - else: - c.happy_level -= 1 - win.after(500,sad) - -win = Tk() - -c = Canvas(win, width=400, height=400) -c.configure(bg='dark blue', highlightthickness=0) - -c.body_color = 'SkyBlue1' - -body = c.create_oval(35,20,365,350, outline=c.body_color, fill=c.body_color) -foot_left = c.create_oval(65,320,145,360, outline=c.body_color, fill=c.body_color) -foot_left = c.create_oval(250,320,330,360, outline=c.body_color, fill=c.body_color) - -ear_left = c.create_polygon(75,88,75,10,165,70, outline=c.body_color, fill=c.body_color) -ear_right = c.create_polygon(255,45,325,10,320,70, outline=c.body_color, fill=c.body_color) - -eye_left = c.create_oval(130,110,160,170, outline='black', fill='white') -pupil_left = c.create_oval(140,145,150,155, outline='black', fill='black') -eye_right = c.create_oval(230,110,260,170, outline='black', fill='white') -pupil_right = c.create_oval(240,145,250,155, outline='black', fill='black') - -mouth_normal = c.create_line(170,250,200,272,230,250, smooth=1, width=2, state=NORMAL) -mouth_happy = c.create_line(170,250,200,282,230,250, smooth=1, width=2, state=HIDDEN) -mouth_sad = c.create_line(170,250,200,232,230,250, smooth=1, width=2, state=HIDDEN) - -tongue_main = c.create_rectangle(170,250,230,290, outline='red', fill='red', state=HIDDEN) -tongue_tip = c.create_oval(170,285,230,300, outline='red', fill='red', state=HIDDEN) - -cheek_left = c.create_oval(70,180,120,230, outline='pink', fill='pink', state=HIDDEN) -cheek_right = c.create_oval(280,180,330,230, outline='pink', fill='pink', state=HIDDEN) - -c.pack() - -c.bind('', show_happy) -c.bind('', hide_happy) -c.bind('', cheeky) - -c.crossed_eyes = False -c.tongue_out = False -c.happy_level = 10 - -win.after(1000,blink) -win.after(5000,sad) -win.mainloop() \ No newline at end of file diff --git a/Shape_Recognition/README.md b/Shape_Recognition/README.md deleted file mode 100644 index 14c4794b..00000000 --- a/Shape_Recognition/README.md +++ /dev/null @@ -1,40 +0,0 @@ - -# Shape Recognition using OpenCV - - -## 🛠️ Description -This is a shape recognition program that detects and outlines the rectangle and square shapes. - -## ⚙️ Languages or Frameworks Used - -Open Command Prompt and use the following command to install the required modules: - -```sh -pip install opencv-python -``` - - -## 🌟 How to run -Place and rename your image as 'shape.jpg' within the Shape_Recognition folder. After doing that, you can -just open a terminal in the folder where your script is located and run the following command: - - -Feel free to remove the pre-existing shape.jpg to your wishes and replace it with yours :) -```sh -python main.py -``` - -## 📺 Demo - -![demoimage](demo.png) - -## 🤖 Author -[Osmiuth](https://github.com/Osmiuth) - -## References - -https://opencv24-python-tutorials.readthedocs.io/_/downloads/en/stable/pdf/ - -## Acknowledgement - -Special thanks to [AnishLohiya](https://github.com/AnishLohiya) for his work on Face Recognition as inspiration to make this simple program. \ No newline at end of file diff --git a/Shape_Recognition/demo.png b/Shape_Recognition/demo.png deleted file mode 100644 index 3b606a94..00000000 Binary files a/Shape_Recognition/demo.png and /dev/null differ diff --git a/Shape_Recognition/main.py b/Shape_Recognition/main.py deleted file mode 100644 index 3d836e3f..00000000 --- a/Shape_Recognition/main.py +++ /dev/null @@ -1,32 +0,0 @@ -import cv2 - -IMAGE = cv2.imread('shape.jpg'); -GREYSCALE = cv2.cvtColor(IMAGE, cv2.COLOR_BGR2GRAY) -h, w, channels = IMAGE.shape - -PARAM, PARAM2 = cv2.threshold(GREYSCALE, 50, 255, 0) - -CONTOURS, _ = cv2.findContours(PARAM2, 1, 1) - -RECTANGLES = 0; -SQUARES = 0; - -for cnt in CONTOURS: - x1,y1 = cnt[0][0] - approx = cv2.approxPolyDP(cnt, 0.01*cv2.arcLength(cnt, True), True) - if len(approx) == 4: - x, y, w, h = cv2.boundingRect(cnt) - ratio = float(w)/h - if ratio >= 0.9 and ratio <= 1.1: - IMAGE = cv2.drawContours(IMAGE, [cnt], -1, (0,255,0), 3) - SQUARES = SQUARES + 1 - else: - IMAGE = cv2.drawContours(IMAGE, [cnt], -1, (0,255,0), 3) - RECTANGLES = RECTANGLES + 1 - -cv2.putText(IMAGE, 'Number of SQUARES: ' + str(SQUARES), (h+500, 50), cv2.FONT_HERSHEY_SIMPLEX, 0.6, (0, 255, 0), 2) -cv2.putText(IMAGE, 'Number of RECTANGLES: ' + str(RECTANGLES), (h+500, 200), cv2.FONT_HERSHEY_SIMPLEX, 0.6, (0, 255, 0), 2) - -cv2.imshow("Shapes", IMAGE) -cv2.waitKey(0) -cv2.destroyAllWindows() \ No newline at end of file diff --git a/Shape_Recognition/shape.jpg b/Shape_Recognition/shape.jpg deleted file mode 100644 index 7a43a6e5..00000000 Binary files a/Shape_Recognition/shape.jpg and /dev/null differ diff --git a/Simple_Http_Server/README.md b/Simple_Http_Server/README.md deleted file mode 100644 index a777d70c..00000000 --- a/Simple_Http_Server/README.md +++ /dev/null @@ -1,29 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Simple HTTP Server - -## 🛠️ Description -A simple HTTP server written using python sockets. - -## ⚙️ Languages or Frameworks Used -This project is written in Python 3.10 and has no other dependencies other than the Python Standard library. - -## 🌟 How to run -Just run `python mhttp.py `, where `` is the folder which you need to serve. If you want to serve the current folder, just run `python mhttp.py` - -## 📺 Demo - - - - - - - - - -
ServerClient
Server GIFClient GIF
- -## 🤖 Author -[Harish Kumar](https://github.com/harishtpj) diff --git a/Simple_Http_Server/mhttp.py b/Simple_Http_Server/mhttp.py deleted file mode 100644 index 1465f386..00000000 --- a/Simple_Http_Server/mhttp.py +++ /dev/null @@ -1,63 +0,0 @@ -# mHTTP - A simple HTTP server -# Written by M.V.Harish Kumar on 24/10/2023 - -import sys, socket -from pathlib import Path - -HOST = "0.0.0.0" -PORT = 1997 -FOLDER = '.' if len(sys.argv) < 2 else sys.argv[1] - -def get_content(path): - ext = "html" - if path == "/": - try: - with open(FOLDER + "/index.html", "r") as f: - content = f.read() - except FileNotFoundError: - content = "The Server is working! but there is no index.html file to render" - else: - try: - with open(FOLDER + path, "r") as f: - if Path(FOLDER + path).suffix != ".html": - ext = "plain" - content = f.read() - except FileNotFoundError: - return 404, "File not found", ext - return 200, content, ext - -with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: - try: - s.bind((HOST, PORT)) - s.listen() - - print("mHTTP: The Micro-HTTP Server") - print(f"Server Started running at {HOST}:{PORT}\n") - print("mhttp: waiting for connections...") - - while True: - clnt, caddr = s.accept() - with clnt: - print(f"mhttp: got connection from {caddr[0]}:{caddr[1]}") - req = clnt.recv(1024).decode() - if not req: - print("mhttp: connection closed unexpectedly", file=sys.stderr) - break - - req = req.split("\r\n") - print(f"mhttp: got request: {req[0]}") - path = req[0].split(" ")[1] - - sts_cd, content, ftype = get_content(path) - - resp = f"HTTP/1.1 {sts_cd}\r\n" \ - f"Content-Type: text/{ftype}\r\n" \ - "\r\n" + content - - clnt.sendall(resp.encode()) - print(f"mhttp: sent response({sts_cd}) to {caddr[0]}:{caddr[1]}") - except KeyboardInterrupt: - print("mhttp: Got Keyboard Interrupt", file=sys.stderr) - print("mhttp: Closing Connection.", file=sys.stderr) - - diff --git a/Simple_Image_resize/README.md b/Simple_Image_resize/README.md deleted file mode 100644 index a7eaacda..00000000 --- a/Simple_Image_resize/README.md +++ /dev/null @@ -1,28 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Script Title -image resize - -## 🛠️ Description - -This script is designed to resize images in a specified directory using Python and the Pillow library. It iterates through all files in the directory, checks if they are images, and then resizes them according to a specified compression ratio. The resized images are saved in a different directory. it can be used for creating thumbnails or compressing image - - -## ⚙️ Languages or Frameworks Used -1. Ensure you have Python 3.x installed on your system. -2. Install the Pillow library using pip: - -## 🌟 How to run - -1. Place your images in the `source` directory. -2. Modify the `compression_ratio` variable in the script to adjust the size of the resized images. A value of 1 will keep the original size, values greater than 1 will enlarge the images, and values less than 1 will reduce the images. -3. Run the script: - -4. The resized images will be saved in the `resized` directory. - - -## 🤖 Author - -[amar sree](https://github.com/amarsree) \ No newline at end of file diff --git a/Simple_Image_resize/main.py b/Simple_Image_resize/main.py deleted file mode 100644 index 2ecf026d..00000000 --- a/Simple_Image_resize/main.py +++ /dev/null @@ -1,38 +0,0 @@ -from PIL import Image -import os -import shutil - -# Assign directory -directory = 'source' -compressed_directory = 'resized' -compression_ratio = 1 - -# Ensure the compressed directory exists -if not os.path.exists(compressed_directory): - os.makedirs(compressed_directory) - -def is_image(file_path): - try: - # Try to open the file with Pillow - Image.open(file_path) - return True - except IOError: - # If an error occurs, it's likely not an image - return False - -for filename in os.listdir(directory): - f = os.path.join(directory, filename) - # Check if it is a file - if os.path.isfile(f) and is_image(f): - try: - im = Image.open(f) - filename_without_ext = os.path.splitext(filename)[0] - ext = os.path.splitext(filename)[1] - - # Resize the image - resized_im = im.resize((round(im.size[0]*compression_ratio), round(im.size[1]*compression_ratio))) - - # Save the resized image - resized_im.save(os.path.join(compressed_directory, f"{filename_without_ext}{ext}")) - except Exception as e: - print(f"Error processing {filename}: {e}") diff --git a/Simple_Image_resize/requirement.txt b/Simple_Image_resize/requirement.txt deleted file mode 100644 index c45f7b81..00000000 --- a/Simple_Image_resize/requirement.txt +++ /dev/null @@ -1 +0,0 @@ -pillow==10.3.0 \ No newline at end of file diff --git a/Simple_Image_resize/source/sample.jpg b/Simple_Image_resize/source/sample.jpg deleted file mode 100644 index 1af987e5..00000000 Binary files a/Simple_Image_resize/source/sample.jpg and /dev/null differ diff --git a/Simple_Image_resize/source/sunset.jpg b/Simple_Image_resize/source/sunset.jpg deleted file mode 100644 index 2bb4b733..00000000 Binary files a/Simple_Image_resize/source/sunset.jpg and /dev/null differ diff --git a/Simple_dice/README.md b/Simple_dice/README.md deleted file mode 100644 index 874bfe76..00000000 --- a/Simple_dice/README.md +++ /dev/null @@ -1,35 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BE6) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/tusuii) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/tusuii?tab=repositories) - -# Simple Dice -

- - -This is a simple dice rolling application written in Python using the Tkinter library. - -## How to use - -1. Clone the repository/copy code to your local machine. -2. Open a terminal window and navigate to the project directory. -3. Run the following command to start the application: - -```python -python dice.py -``` - -4. The application will open a window with a label and an entry box. - -5. Enter a number in the entry box and click the "Roll" button. - -6. The application will roll a die and display the result in the entry box. - -* Features - --[X] The application can roll a die from 1 to 6. - --[X] The application has a simple user interface. - --[X] The application is easy to use. - diff --git a/Simple_dice/dice.png b/Simple_dice/dice.png deleted file mode 100644 index 555ce12d..00000000 Binary files a/Simple_dice/dice.png and /dev/null differ diff --git a/Simple_dice/dice.py b/Simple_dice/dice.py deleted file mode 100644 index 538bb590..00000000 --- a/Simple_dice/dice.py +++ /dev/null @@ -1,32 +0,0 @@ -from tkinter import * -import random - - -def roll(): - r = random.randint(1, 6) - s = str(r) - e.delete(0, END) - e.insert(0, s) - -def on_enter(event): - button1.config(fg="black") - -def on_leave(event): - button1.config(fg="green") - -root = Tk() -root.geometry("99x117+1153+210") -root.title("Dice") -label = Label(root, text="Simple Dice" ,wraplength=100) -e = Entry(root, width=5) -button1 = Button(root, text="Roll", command=roll,wraplength=100) - -button1.bind("", on_enter) -button1.bind("", on_leave) - - -label.grid(row=0, sticky=N) -e.grid(row=2 ,sticky=N) -button1.grid(row=4 ,sticky=S) - -root.mainloop() \ No newline at end of file diff --git a/Slideshare to PDF/Images/Output.png b/Slideshare to PDF/Images/Output.png deleted file mode 100644 index eb56d796..00000000 Binary files a/Slideshare to PDF/Images/Output.png and /dev/null differ diff --git a/Slideshare to PDF/Images/window.png b/Slideshare to PDF/Images/window.png deleted file mode 100644 index 1b202b6b..00000000 Binary files a/Slideshare to PDF/Images/window.png and /dev/null differ diff --git a/Slideshare to PDF/README.md b/Slideshare to PDF/README.md deleted file mode 100644 index a3d49c1f..00000000 --- a/Slideshare to PDF/README.md +++ /dev/null @@ -1,42 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Slideshare to PDF -### Main Window: - -![](./Images/window.png) -
- -### Downloaded file: - -![](./Images/Output.png) - -## 🛠️ Description -To download a presentation from slideshare we have to sign up to scribd, but with this script you can download -any presentation from the slideshare without any signup, provided that you have a good internet connection. The script uses PIL, requests, -beautifulsoup, modules to scrape the images from the presentation and then convert it to a pdf file. -The success rate of the script depends on the speed of your internet connection, so for the best results -try connecting to a good network. - -## ⚙️ Language Used -Made with `python` - -`tkinter` module for the GUI - -`bs4` module for scraping. - -`PIL` module for images. - - -## 🌟 How to run -- Clone the Project -- Run `pip install requirements.txt` -- Run `python main.py` - - -## 🤖 Author -[Vivek](https://github.com/vivekthedev) - -Any Questions? -[Twitter](https://twitter.com/vivekthedev) diff --git a/Slideshare to PDF/main.py b/Slideshare to PDF/main.py deleted file mode 100644 index b111e05e..00000000 --- a/Slideshare to PDF/main.py +++ /dev/null @@ -1,90 +0,0 @@ -# Built in modules -import io -from tkinter import * -import pathlib - -# External Modules -import requests -from bs4 import BeautifulSoup -import PIL.Image -import validators - -# Get Current Working Directory path -path = pathlib.Path().resolve() - - -def get_pdf(): - URL = url_var.get() - - # Only perform scraping if the url is valid. - if validators.url(URL): - r = requests.get(URL) - soup = BeautifulSoup(r.content, "html5lib") - imgs = soup.find_all("img", class_="slide-image") - - # Get every image with class slide-image - imgs = soup.find_all("img", class_="slide-image") - - # Strip out preferred image resolution from the srcset of the img tag - imgSRC = [ - x.get("srcset").split(",")[-1].strip().split(" ")[0].split("?")[0] - for x in imgs - ] - - # List to store all the image objects - imagesJPG = [] - - for index, link in enumerate(imgSRC): - try: - # Get image content from the image url - im = requests.get(link) - - # Convert that image content to a BytesIO file object which is in-memory object, - # so we don't have to download the image. - f = io.BytesIO(im.content) - - # Converting that BytesIO object to Image Object for PIL to convert it in PDF - imgJPG = PIL.Image.open(f) - imagesJPG.append(imgJPG) - - except Exception as e: - # Program will fail if the request isn't able to make a proper connection - info_label_2.configure(text="Some Connection ERROR") - - # Appending all the images object after the first image and exporting it as a PDF in cwd. - imagesJPG[0].save( - f"{soup.title.string}.pdf", save_all=True, append_images=imagesJPG[1:] - ) - info_label_2.configure(text=f"File Downloaded to\n{path}") - else: - info_label_2.configure(text=f"Please provide a valid link") - - -# Basic Tkinter window setup -base = Tk() -base.geometry("300x300") -base.title("Slideshare to PDF") -base.resizable(False, False) -base.configure(background="aliceblue") - -# Variable to store user's link and a entry field, -# a button and a label -url_var = StringVar() -val_entry = Entry(base, textvariable=url_var, width="30") -val_entry.place(x=50, y=50) - -button = Button( - base, text="Get PDF", command=get_pdf, width="25", height="2", bg="grey" -) -button.place(x=50, y=100) -info_label = Label( - base, - text="Enter the presentaion link\nMake sure to have a good internet connection.", -) - -# label to show error and success message to the user -info_label_2 = Label(base, text="") - -info_label.place(x=35, y=200) -info_label_2.place(x=50, y=250) -base.mainloop() diff --git a/Slideshare to PDF/requirements.txt b/Slideshare to PDF/requirements.txt deleted file mode 100644 index 10293dd4..00000000 --- a/Slideshare to PDF/requirements.txt +++ /dev/null @@ -1,14 +0,0 @@ -beautifulsoup4==4.10.0 -bs4==0.0.1 -certifi==2021.10.8 -charset-normalizer==2.0.10 -decorator==5.1.1 -html5lib==1.1 -idna==3.3 -Pillow==9.0.0 -requests==2.27.1 -six==1.16.0 -soupsieve==2.3.1 -urllib3==1.26.8 -validators==0.18.2 -webencodings==0.5.1 diff --git a/Smart_Calculator/README.md b/Smart_Calculator/README.md deleted file mode 100644 index 5db22e11..00000000 --- a/Smart_Calculator/README.md +++ /dev/null @@ -1,30 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) -[![View My Profile](https://img.shields.io/badge/View-My_Profile-green?logo=GitHub)](https://github.com/ndleah) -[![View Repositories](https://img.shields.io/badge/View-My_Repositories-blue?logo=GitHub)](https://github.com/ndleah?tab=repositories) - -# Matchmaker -

- - -## 🛠️ Description - -A smart calculator using for basic math equation, built by using python. - -## ⚙️ Languages or Frameworks Used -```bash -pip install tk -``` - -## 🌟 How to run -Running the script is really simple! Just open a terminal in the folder where your script is located and run the following command: - -```sh -python calculator.py -``` -## 📺 Demo -

- - -## 🤖 Author -[Leah Nguyen](https://github.com/ndleah) \ No newline at end of file diff --git a/Smart_Calculator/calculator.py b/Smart_Calculator/calculator.py deleted file mode 100644 index 2c46b4eb..00000000 --- a/Smart_Calculator/calculator.py +++ /dev/null @@ -1,97 +0,0 @@ -from tkinter import * - -def add(a,b): - return a + b - -def sub(a,b): - return a - b - -def mul(a,b): - return a * b - -def div(a,b): - return a / b - -def mod(a,b): - return a % b - -def lcm(a,b): - if a<0 or b<0: return - L = a if a > b else b - while L <= a * b: - if L%a == 0 and L%b ==0: - return L - L+=1 - -def hcf(a,b): - if a<0 or b<0: return - H = a if a= 1: - if a%H == 0 and b%H ==0: - return H - H-=1 - -def extract_from_text(text): - l = [] - for t in text.split(' '): - try: - l.append(float(t)) - except ValueError: - pass - return l - -def calculate(): - text = textin.get() - for word in text.split(' '): - if word.upper() in operations.keys(): - try: - l = extract_from_text(text) - r = operations[word.upper()](l[0], l[1]) - list.delete(0,END) - list.insert(END,r) - except: - list.delete(0,END) - list.insert(END,'something went wrong please enter again') - finally: - break - elif word.upper() not in operations.keys(): - list.delete(0,END) - list.insert(END,'something went wrong please enter again') - -operations = {'ADD':add,'ADDITION':add, 'SUM':add, 'PLUS':add, - 'SUB':sub, 'DIFFERENCE':sub, 'MINUS': sub, 'SUBTRACT':sub, 'DIFF':sub, - 'LCM':lcm, 'HCF':hcf, 'PRODUCT':mul, 'MULTIPLICATION':mul, - 'MULTIPLY':mul, 'DIVISION':div, 'DIV':div, 'DIVIDE':div, - 'MOD':mod,'REMAINDER':mod, 'MODULUS':mod} - - -win = Tk() -win.title('Smart Calculator') -win.geometry('500x300') -win.configure(bg='lightskyblue') - -win.resizable(0, 0) -win.columnconfigure(0, weight=1) -win.columnconfigure(1, weight=2) -win.columnconfigure(2, weight=1) - -l1 = Label(win, text='I am a smart calculator', width=20) -l1.grid(column=1, row=1, padx=5, pady=10) - -l2 = Label(win, text='My name is Leah', width=20) -l2.grid(column=1, row=2, padx=5, pady=10) - -l3 = Label(win, text='What can I help you?', width=20) -l3.grid(column=1, row=3, padx=5, pady=10) - -textin = StringVar() -e1 = Entry(win, width=30, textvariable=textin) -e1.grid(column=1, row=4, padx=5, pady=10) - -b1 = Button(win, text='Just this', command=calculate) -b1.grid(column=1, row=5, padx=5, pady=10) - -list = Listbox(win, width=40, height=3) -list.grid(column=1, row=6, padx=5, pady=10) - -win.mainloop() diff --git a/Smart_Calculator/calculator_test.py b/Smart_Calculator/calculator_test.py deleted file mode 100644 index e44e858c..00000000 --- a/Smart_Calculator/calculator_test.py +++ /dev/null @@ -1,33 +0,0 @@ -import unittest -from calculator import add, sub, mul, div, mod, lcm, hcf - -class TestAdd(unittest.TestCase): - def test_add_function(self): - self.assertEqual(add(1, 2), 3) - -class TestSub(unittest.TestCase): - def test_sub_function(self): - self.assertEqual(sub(55, 5), 50) - -class TestMul(unittest.TestCase): - def test_mul_function(self): - self.assertEqual(mul(1, 2), 2) - -class TestDiv(unittest.TestCase): - def test_div_function(self): - self.assertEqual(div(10, 5), 2) - -class TestMod(unittest.TestCase): - def test_mod_function(self): - self.assertEqual(mod(100, 2), 0) - -class TestLcm(unittest.TestCase): - def test_lcm_function(self): - self.assertEqual(lcm(54, 24), 216) - -class TestHcf(unittest.TestCase): - def test_hcf_function(self): - self.assertEqual(hcf(54, 24), 6) - -if __name__ == '__main__': - unittest.main(verbosity=2) \ No newline at end of file diff --git a/Snake_game/README.md b/Snake_game/README.md deleted file mode 100644 index f09bcd02..00000000 --- a/Snake_game/README.md +++ /dev/null @@ -1,43 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Snake_game - - - -## 🛠️ Description -Simple Snake game created using pygame - -#adding some interface updates of my own. - -## ⚙️ Languages or Frameworks Used - -The program was created with Python3 and pygame. - -use this for install pygame - -``` bash -python -m pip install --upgrade pygame -``` - -## 🌟 How to run -```bash -python ./main.py -``` - -## You can move using: W A S D - -## 📺 Demo -

- - -## 🤖 Author - -[Alexander Monterrosa](https://github.com/Alex108-lab) - diff --git a/Snake_game/main.py b/Snake_game/main.py deleted file mode 100644 index 0e5a3c36..00000000 --- a/Snake_game/main.py +++ /dev/null @@ -1,162 +0,0 @@ -import pygame -import time -import random - -pygame.init() # Initialize pygame. - -white = (255, 255, 255) -black = (36, 36, 36) -red = (213, 50, 80) -green = (0, 255, 0) - -# Sizes for window of the game -display_width = 600 -display_height = 500 - -icon = pygame.image.load("snakeicon.ico") -pygame.display.set_icon(icon) - -display = pygame.display.set_mode( - (display_width, display_height)) # Apply size to the game -pygame.display.set_caption('Snake Game') # Set title of game window - -clock = pygame.time.Clock() - -snake_block = 10 -snake_speed = 15 # Speed of snake (Player) - - -# Render Score Label -def score(score): - # Size and font of score label (Top-Left) - score_font = pygame.font.SysFont("arial", 15) - value = score_font.render(" Score: " + str(score), True, white) - display.blit(value, [0, 0]) - -# Render Snake body -def snake(snake_block, snake_list): - for x in snake_list: - pygame.draw.rect(display, green, [ - x[0], x[1], snake_block, snake_block], border_radius=3) - - -# Render message in screen -def message(msg, color, size=12): - font_style = pygame.font.SysFont("bahnschrift", size) - mesg = font_style.render(msg, True, color) - display.blit(mesg, [display_width / 8, display_height / 5]) - -# loop of game - - -def gameLoop(): - game_over = False - game_close = False - - x1 = display_width / 2 - y1 = display_height / 2 - - x1_change = 0 - y1_change = 0 - - snake_List = [] - Length_of_snake = 1 - - foodx = round(random.randrange( - 0, display_width - snake_block) / 10.0) * 10.0 - - foody = round(random.randrange( - 0, display_height - snake_block) / 10.0) * 10.0 - - while not game_over: - - while game_close == True: - display.fill(black) # Background color - message("You Lost! Press Space Again or Q to Quit", red, 35) - - score(Length_of_snake - 1) - pygame.display.update() - - # If Q pressed - # The game will close - - # If Space is pressed - # Are start new game - for event in pygame.event.get(): - if event.type == pygame.KEYDOWN: - if event.key == pygame.K_q: - game_over = True - game_close = False - - if event.key == pygame.K_SPACE: - gameLoop() - - # Keys to move the snake (W A S D) - for event in pygame.event.get(): - if event.type == pygame.QUIT: - game_over = True - - if event.type == pygame.KEYDOWN: - if event.key == pygame.K_a: - x1_change = -snake_block - y1_change = 0 - print("Left") - - elif event.key == pygame.K_d: - x1_change = snake_block - y1_change = 0 - print("Right") - - elif event.key == pygame.K_w: - y1_change = -snake_block - x1_change = 0 - print("Up") - - elif event.key == pygame.K_s: - y1_change = snake_block - x1_change = 0 - print("Down") - - if x1 >= display_width or x1 < 0 or y1 >= display_height or y1 < 0: - game_close = True - - x1 += x1_change - y1 += y1_change - - display.fill(black) - pygame.draw.rect( - display, red, [foodx, foody, snake_block, snake_block]) - - snake_Head = [] - snake_Head.append(x1) - snake_Head.append(y1) - snake_List.append(snake_Head) - - if len(snake_List) > Length_of_snake: - del snake_List[0] - - for x in snake_List[:-1]: - if x == snake_Head: - game_close = True - - snake(snake_block, snake_List) - score(Length_of_snake - 1) - - pygame.display.update() - - if x1 == foodx and y1 == foody: - foodx = round(random.randrange( - 0, display_width - snake_block) / 10.0) * 10.0 - - foody = round(random.randrange( - 0, display_height - snake_block) / 10.0) * 10.0 - - Length_of_snake += 1 - - clock.tick(snake_speed) - - pygame.quit() - quit() - - -gameLoop() diff --git a/Snake_game/snakeicon.ico b/Snake_game/snakeicon.ico deleted file mode 100644 index dd11e45a..00000000 Binary files a/Snake_game/snakeicon.ico and /dev/null differ diff --git a/Socket_example/README.md b/Socket_example/README.md deleted file mode 100644 index 69045061..00000000 --- a/Socket_example/README.md +++ /dev/null @@ -1,53 +0,0 @@ - - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Socket example - - - -## 🛠️ Description - - - -Implementation of a socket in python - -## ⚙️ Languages or Frameworks Used - - - -The program was created with Python3. - - - -## 🌟 How to run - - -``` -# fist run the server - -python ./server.py -``` - -``` -# then run the client - -python ./client.py -``` - - - - -## 🤖 Author - - - -[Alexander Monterrosa](https://github.com/Alex108-lab) diff --git a/Socket_example/client.py b/Socket_example/client.py deleted file mode 100644 index 7a57d122..00000000 --- a/Socket_example/client.py +++ /dev/null @@ -1,14 +0,0 @@ -import socket - -HOST = 'localhost' # host where the server is located -PORT = 3000 # port the server is on - -s = socket.socket() # new socket with name s - -s.connect((HOST, PORT)) # connection to server - -s.send(b"Hello from client") # send message to server -res = s.recv(1024) # buffer size to receive the data sent from the server - -print(res) # print the data -s.close() # close the connection with server diff --git a/Socket_example/server.py b/Socket_example/server.py deleted file mode 100644 index c747cbc9..00000000 --- a/Socket_example/server.py +++ /dev/null @@ -1,23 +0,0 @@ -import socket - -HOST = 'localhost' # host where the server is located -PORT = 3000 # port the server is on - -s = socket.socket() # new socket with name s -s.bind((HOST, PORT)) # bind host and port to socket -s.listen() # start the server to receive connections - -print("Server runing in port ", PORT) # print port address - -while True: - - conn, addr = s.accept() # accept connections - res = conn.recv(1024) # buffer size to receive the data sent from the client - - print('New conection', addr) # print the address of the current connection - - print(res) # print data receive from client - - conn.send(b' Hello from server!') # send data to client - - conn.close() #close the conection diff --git a/Speaking_Dictionary/README.md b/Speaking_Dictionary/README.md deleted file mode 100644 index b0c3c535..00000000 --- a/Speaking_Dictionary/README.md +++ /dev/null @@ -1,24 +0,0 @@ -# Speaking Dictionary -Speaking Dictionary is Python program that allows the user to find the meaning of English word by speaking it directly to the program(device). Then, the program(device) will directly explain the definition of the word out loud. - -### Prerequisites -pyttsx3: pip install pyttsx3 -PyDictionary: pip install PyDictionary -speech recognition: pip install SpeechRecognition -gTTS: pip install gtts - -+pip install pyaudio - -### How to run the script -SpeakingDictionary.py -1. Say 'hello' first to initiate the Speaking Dictionary -2. When the SpeakingEngine says, "Which word do you want to find?", speak the word slowly and correctly. -3. When the Recognizer recognized the word, it will ask if it recognized the correct word. -4. If you say "yes", then the SpeakingEngine will say the definition of the word out loud. -5. If the Recognizer couldn't recognize the word, or if you said "no" in step 4, Speaking Dictionary would not say the definition. - -### Screenshot/GIF showing the sample use of the script -[SpeakingDictionary](https://user-images.githubusercontent.com/69775935/140873415-dc79bdd7-d36e-4ca5-ae6f-4da88837f5f0.png) - -### Author Name -Yaejin Lee : 19lyaejin, https://github.com.19lyaejin diff --git a/Speaking_Dictionary/Speaking_Dictionary.py b/Speaking_Dictionary/Speaking_Dictionary.py deleted file mode 100644 index e69de29b..00000000 diff --git a/Speaking_Dictionary/requirements.txt b/Speaking_Dictionary/requirements.txt deleted file mode 100644 index 3bd9a3a1..00000000 --- a/Speaking_Dictionary/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -# Speaking Dictionary Requirements -### prerequisites: pyttsx3, PyDictionary, speech_recognition, gTTS, pyaudio - -pyttsx3: pip install pyttsx3 -PyDictionary: pip install PyDictionary -speech_recognition: pip install SpeechRecognition -gTTS: pip install gtts -pyaudio: pip install pyaudio diff --git a/Speaking_Wikipedia/README.md b/Speaking_Wikipedia/README.md deleted file mode 100644 index 0c698e41..00000000 --- a/Speaking_Wikipedia/README.md +++ /dev/null @@ -1,28 +0,0 @@ -# Speaking Wikipedia - -This tool enables users to convert summaries of Wikipedia pages into a speaking version. - - -## Prerequisites - -In order to use the script, you need to have the following modules installed: -- **pyttsx3** -- **wikipedia** - -For Mac/Linux users, you can use pip to install these modules like this: -``` -pip3 install pyttsx3 -pip3 install wikipedia -``` -For Windows users, you can use the pip command like this: -``` -pip install pyttsx3 -pip install wikipedia -``` - -# How to run the script - - To run the script, you can open up a terminal or command prompt window, navigate to the directory where the script is located, and then type `python speaking_wikipedia.py` or `python3 speaking_wikipedia.py` in order to run it. - -# Author -[Yam Timor](https://github.com/yamtimor) diff --git a/Speaking_Wikipedia/speaking_wikipedia.py b/Speaking_Wikipedia/speaking_wikipedia.py deleted file mode 100644 index 3f14e084..00000000 --- a/Speaking_Wikipedia/speaking_wikipedia.py +++ /dev/null @@ -1,56 +0,0 @@ -import pyttsx3 -import wikipedia -from pprint import pprint - - -def page(title: str, sentences = 2): - """ - :param title: (str) the title of the Wikipedia page to summarize - :param sentences: (int) the number of sentences to include in the summary (optional, default is 2) - :return: (str) the summary of the Wikipedia page - """ - - content = wikipedia.summary(title, sentences = sentences) - - return content - - -def voicing_text(text): - """ - Speaks the given text using the text-to-speech engine - :param text: (str) the text to speak - :return: (str) the input text - """ - - # Initialize the engine - engine = pyttsx3.init() - - # Set the voice to be used - voices = engine.getProperty('voices') - engine.setProperty('voice', voices[0].id) - - # Speak the text - engine.say(text) - - engine.runAndWait() - - # returns the input text in order to provide subtitles for the spoken audio - return text - -def main(): - # Specify values: - wiki_page = input("Enter the name of the wikipedia page: ") - - specify_num_of_sentences = input("Do you want to specify the number of sentences (default is 2)? (y/n): ") - - if specify_num_of_sentences == "y" or specify_num_of_sentences == "Y": - - num_of_sentences = input("Enter the number of sentences to include in the summary: ") - - print(voicing_text(page(wiki_page, num_of_sentences))) - else: - - print(voicing_text(page(wiki_page))) - -if __name__ == "__main__": - main() diff --git a/Speech_To_Text/Readme.md b/Speech_To_Text/Readme.md deleted file mode 100644 index 62f3a3e5..00000000 --- a/Speech_To_Text/Readme.md +++ /dev/null @@ -1,18 +0,0 @@ -# Script Title -A program that allows the user to convert the speech he/she inputs into the program into a text as well as the audio that is played in real time. - -### Prerequisites -speech_recognition, pyttsx3 and pyaudio libraries are required for this code. - -To install speech_recognition: pip install SpeechRecognition -To install pyttsx3: pip install pyttsx3 -To install pyaudio: pip install pyaudio - -### How to run the script -Just run the python file - -### Screenshot/GIF showing the sample use of the script -output.png - -## *Author Name* -ChiragNarvekar \ No newline at end of file diff --git a/Speech_To_Text/Speech_To_Text.py b/Speech_To_Text/Speech_To_Text.py deleted file mode 100644 index 604a0122..00000000 --- a/Speech_To_Text/Speech_To_Text.py +++ /dev/null @@ -1,41 +0,0 @@ -import speech_recognition as sr -import pyttsx3 - -# Initializing the recognizer -r = sr.Recognizer() - -# Function to convert text to speech -def SpeakText(command): - # Initializing the engine - engine = pyttsx3.init() - engine.say(command) - engine.runAndWait() - - -# Looping infinitely for user to speak - -while(1): - # Exception handling to handle exceptions at the runtime - try: - # using the microphone as source for input. - with sr.Microphone() as source2: - # wait for a second to let the recognizer - # adjust the energy threshold based on - # the surrounding noise level - r.adjust_for_ambient_noise(source2, duration=0.2) - - #listens for the user's input - audio2 = r.listen(source2) - - # Using google to recognize audio - MyText = r.recognize_google(audio2) - MyText = MyText.lower() - enable_automatic_punctuation=True - print(MyText) - SpeakText(MyText) - - except sr.RequestError as e: - print("Could not request results; {0}".format(e)) - - except sr.UnknownValueError: - print("unknown error occurred") \ No newline at end of file diff --git a/Speech_To_Text/output.png b/Speech_To_Text/output.png deleted file mode 100644 index 258cb4de..00000000 Binary files a/Speech_To_Text/output.png and /dev/null differ diff --git a/Spinning Donut/Nikita b/Spinning Donut/Nikita deleted file mode 100644 index e69de29b..00000000 diff --git a/Spinning Donut/Nikitahtm.html b/Spinning Donut/Nikitahtm.html deleted file mode 100644 index 34942652..00000000 --- a/Spinning Donut/Nikitahtm.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - Nikita - - - - - \ No newline at end of file diff --git a/Spinning Donut/README.md b/Spinning Donut/README.md deleted file mode 100644 index 56eaacc2..00000000 --- a/Spinning Donut/README.md +++ /dev/null @@ -1,30 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Spinning Donut - -## 🛠️ Description -This project uses the Pygame library to create an animation of a spinning donut on a black background. - -## ⚙️ Languages or Frameworks Used -The program was created with Python3 and pygame. - -use this to install pygame - -``` bash -python -m pip install --upgrade pygame -``` - -## 🌟 How to run -```bash -python ./spinningdonut.py -``` - -## 📺 Demo -

- - -## 🤖 Author -[Gideon Ogunbanjo](https://github.com/gideon-ogunbanjo) - diff --git a/Spinning Donut/spinningdonut.py b/Spinning Donut/spinningdonut.py deleted file mode 100644 index ac6ba1b2..00000000 --- a/Spinning Donut/spinningdonut.py +++ /dev/null @@ -1,107 +0,0 @@ -import pygame -import math -import colorsys - -pygame.init() - -white = (255, 255, 255) -black = (0, 0, 0) -hue = 0 - -WIDTH = 700 -HEIGHT = 700 - -x_start, y_start = 0, 0 - -x_separator = 10 -y_separator = 20 - -rows = HEIGHT // y_separator -columns = WIDTH // x_separator -screen_size = rows * columns - -x_offset = columns / 2 -y_offset = rows / 2 - -A, B = 0, 0 # rotating animation - -theta_spacing = 10 -phi_spacing = 1 # for faster rotation change to 2, 3 or more, but first change 86, 87 lines as commented - -chars = ".,-~:;=!*#$@" # luminance index - -screen = pygame.display.set_mode((WIDTH, HEIGHT)) - -display_surface = pygame.display.set_mode((WIDTH, HEIGHT)) -# display_surface = pygame.display.set_mode((0, 0), pygame.FULLSCREEN) -pygame.display.set_caption('Donut') -font = pygame.font.SysFont('Arial', 18, bold=True) - -def hsv2rgb(h, s, v): - return tuple(round(i * 255) for i in colorsys.hsv_to_rgb(h, s, v)) - - -def text_display(letter, x_start, y_start): - text = font.render(str(letter), True, hsv2rgb(hue, 1, 1)) - display_surface.blit(text, (x_start, y_start)) - -# def text_display(letter, x_start, y_start): -# text = font.render(str(letter), True, white) -# display_surface.blit(text, (x_start, y_start)) - - -run = True -while run: - - screen.fill((black)) - - z = [0] * screen_size # Donut. Fills donut space - b = [' '] * screen_size # Background. Fills empty space - - for j in range(0, 628, theta_spacing): # from 0 to 2pi - for i in range(0, 628, phi_spacing): # from 0 to 2pi - c = math.sin(i) - d = math.cos(j) - e = math.sin(A) - f = math.sin(j) - g = math.cos(A) - h = d + 2 - D = 1 / (c * h * e + f * g + 5) - l = math.cos(i) - m = math.cos(B) - n = math.sin(B) - t = c * h * g - f * e - x = int(x_offset + 40 * D * (l * h * m - t * n)) # 3D x coordinate after rotation - y = int(y_offset + 20 * D * (l * h * n + t * m)) # 3D y coordinate after rotation - o = int(x + columns * y) - N = int(8 * ((f * e - c * d * g) * m - c * d * e - f * g - l * d * n)) # luminance index - if rows > y and y > 0 and x > 0 and columns > x and D > z[o]: - z[o] = D - b[o] = chars[N if N > 0 else 0] - - if y_start == rows * y_separator - y_separator: - y_start = 0 - - for i in range(len(b)): - A += 0.00004 # for faster rotation change to bigger value - B += 0.00002 # for faster rotation change to bigger value - if i == 0 or i % columns: - text_display(b[i], x_start, y_start) - x_start += x_separator - else: - y_start += y_separator - x_start = 0 - text_display(b[i], x_start, y_start) - x_start += x_separator - - - pygame.display.update() - - hue += 0.005 - - for event in pygame.event.get(): - if event.type == pygame.QUIT: - run = False - if event.type == pygame.KEYDOWN: - if event.key == pygame.K_ESCAPE: - run = False \ No newline at end of file diff --git a/Sqlite-crud/.gitignore b/Sqlite-crud/.gitignore deleted file mode 100644 index dcffcf95..00000000 --- a/Sqlite-crud/.gitignore +++ /dev/null @@ -1 +0,0 @@ -./database.db \ No newline at end of file diff --git a/Sqlite-crud/README.md b/Sqlite-crud/README.md deleted file mode 100644 index 4f9dbb18..00000000 --- a/Sqlite-crud/README.md +++ /dev/null @@ -1,34 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Sqlite-crud - - - -## 🛠️ Description -A simple crud implemented in python using sqlite. - -## ⚙️ Languages or Frameworks Used - -The script was created with Python3. - -## 🌟 How to run -``` -bash -python ./main.py -``` - -## 📺 Demo -

- - -## 🤖 Author - -[Alexander Monterrosa](https://github.com/Alex108-lab) - diff --git a/Sqlite-crud/main.py b/Sqlite-crud/main.py deleted file mode 100644 index be1003ea..00000000 --- a/Sqlite-crud/main.py +++ /dev/null @@ -1,158 +0,0 @@ -from tkinter import ttk -from tkinter import * - -from pathlib import Path - -import sqlite3 - -class Product: - # connection dir property - db_name = 'database.db' - - def __init__(self, window): - # Initializations - self.wind = window - self.wind.title('Products Application') - - # Creating a Frame Container - frame = LabelFrame(self.wind, text = 'Register new Product') - frame.grid(row = 0, column = 0, columnspan = 3, pady = 20) - - # Name Input - Label(frame, text = 'Name: ').grid(row = 1, column = 0) - self.name = Entry(frame) - self.name.focus() - self.name.grid(row = 1, column = 1) - - # Price Input - Label(frame, text = 'Price: ').grid(row = 2, column = 0) - self.price = Entry(frame) - self.price.grid(row = 2, column = 1) - - # Button Add Product - ttk.Button(frame, text = 'Save Product', command = self.add_product).grid(row = 3, columnspan = 2, sticky = W + E) - - # Output Messages - self.message = Label(text = '', fg = 'red') - self.message.grid(row = 3, column = 0, columnspan = 2, sticky = W + E) - - # Table - self.tree = ttk.Treeview(height = 10, columns = 2) - self.tree.grid(row = 4, column = 0, columnspan = 2) - self.tree.heading('#0', text = 'Name', anchor = CENTER) - self.tree.heading('#1', text = 'Price', anchor = CENTER) - - # Buttons - ttk.Button(text = 'DELETE', command = self.delete_product).grid(row = 5, column = 0, sticky = W + E) - ttk.Button(text = 'EDIT', command = self.edit_product).grid(row = 5, column = 1, sticky = W + E) - - self.exits_db_file() - - # Filling the Rows - self.get_products() - - # Function to verify if already exist the table in database - # Else create the table - def exits_db_file(self): - if not Path(self.db_name).exists(): - sql ='''CREATE TABLE product( - id INTEGER PRIMARY KEY, - name CHAR(60) NOT NULL, - price FLOAT - )''' - - self.run_query(sql) - - # Function to Execute Database Querys - def run_query(self, query, parameters = ()): - with sqlite3.connect(self.db_name) as conn: - cursor = conn.cursor() - result = cursor.execute(query, parameters) - conn.commit() - return result - - # Get Products from Database - def get_products(self): - # cleaning Table - records = self.tree.get_children() - for element in records: - self.tree.delete(element) - # getting data - query = 'SELECT * FROM product ORDER BY name DESC' - db_rows = self.run_query(query) - # filling data - for row in db_rows: - self.tree.insert('', 0, text = row[1], values = row[2]) - - # User Input Validation - def validation(self): - return len(self.name.get()) != 0 and len(self.price.get()) != 0 - - def add_product(self): - if self.validation(): - query = 'INSERT INTO product VALUES(NULL, ?, ?)' - parameters = (self.name.get(), self.price.get()) - self.run_query(query, parameters) - self.message['text'] = 'Product {} added Successfully'.format(self.name.get()) - self.name.delete(0, END) - self.price.delete(0, END) - else: - self.message['text'] = 'Name and Price is Required' - self.get_products() - - def delete_product(self): - self.message['text'] = '' - try: - self.tree.item(self.tree.selection())['text'][0] - except IndexError as e: - self.message['text'] = 'Please select a Record' - return - self.message['text'] = '' - name = self.tree.item(self.tree.selection())['text'] - query = 'DELETE FROM product WHERE name = ?' - self.run_query(query, (name, )) - self.message['text'] = 'Record {} deleted Successfully'.format(name) - self.get_products() - - def edit_product(self): - self.message['text'] = '' - try: - self.tree.item(self.tree.selection())['values'][0] - except IndexError as e: - self.message['text'] = 'Please, select Record' - return - name = self.tree.item(self.tree.selection())['text'] - old_price = self.tree.item(self.tree.selection())['values'][0] - self.edit_wind = Toplevel() - self.edit_wind.title = 'Edit Product' - # Old Name - Label(self.edit_wind, text = 'Old Name:').grid(row = 0, column = 1) - Entry(self.edit_wind, textvariable = StringVar(self.edit_wind, value = name), state = 'readonly').grid(row = 0, column = 2) - # New Name - Label(self.edit_wind, text = 'New Price:').grid(row = 1, column = 1) - new_name = Entry(self.edit_wind) - new_name.grid(row = 1, column = 2) - - # Old Price - Label(self.edit_wind, text = 'Old Price:').grid(row = 2, column = 1) - Entry(self.edit_wind, textvariable = StringVar(self.edit_wind, value = old_price), state = 'readonly').grid(row = 2, column = 2) - # New Price - Label(self.edit_wind, text = 'New Name:').grid(row = 3, column = 1) - new_price= Entry(self.edit_wind) - new_price.grid(row = 3, column = 2) - - Button(self.edit_wind, text = 'Update', command = lambda: self.edit_records(new_name.get(), name, new_price.get(), old_price)).grid(row = 4, column = 2, sticky = W) - self.edit_wind.mainloop() - - def edit_records(self, new_name, name, new_price, old_price): - query = 'UPDATE product SET name = ?, price = ? WHERE name = ? AND price = ?' - parameters = (new_name, new_price,name, old_price) - self.run_query(query, parameters) - self.edit_wind.destroy() - self.message['text'] = 'Record {} updated successfylly'.format(name) - self.get_products() - -if __name__ == '__main__': - window = Tk() - application = Product(window) - window.mainloop() diff --git a/Stack_structure/README.md b/Stack_structure/README.md deleted file mode 100644 index 4b28580f..00000000 --- a/Stack_structure/README.md +++ /dev/null @@ -1,45 +0,0 @@ - - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Stack Structure - - - -## 🛠️ Description - - - -Implementation of a stack structure in python - -## ⚙️ Languages or Frameworks Used - - - -The program was created with Python3. - - - -## 🌟 How to run - - - -`python ./main.py` - - - - - -## 🤖 Author - - - -[Alexander Monterrosa](https://github.com/Alex108-lab) diff --git a/Stack_structure/main.py b/Stack_structure/main.py deleted file mode 100644 index 722718ad..00000000 --- a/Stack_structure/main.py +++ /dev/null @@ -1,52 +0,0 @@ -class Node: - def __init__(self, data): - self.data = data - self.next = None - -class Stack: - def __init__(self): - self.top = None - - def push(self, data): - print(f"Adding {data} to the top of the stack") - - # If there is no data, we add the value in the top element and return - if self.top == None: - self.top = Node(data) - return - new_node = Node(data) - new_node.next = self.top - self.top = new_node - - def pop(self): - # If there is no data in the top node, we return - if self.top == None: - print ("There is no item on the stack to unstack") - return - - print(f"Unstack {self.top.data}") - self.top = self.top.next - - def printData(self): - print("Printing stack: ") - - # Step through the stack and print values - tmp_node = self.top - - while tmp_node != None: - print (f"[{tmp_node.data}]", end = "") - tmp_node = tmp_node.next - - print("") - -stack = Stack() -stack.push('a') -stack.push('b') -stack.push('c') -stack.push('d') -stack.printData() -stack.pop() -stack.push("Hello") -stack.printData() -stack.pop() -stack.pop() diff --git a/Star_Pyramid/README.md b/Star_Pyramid/README.md deleted file mode 100644 index 6702ed2c..00000000 --- a/Star_Pyramid/README.md +++ /dev/null @@ -1,28 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Star Pyramid Generator - - - -## 🛠️ Description - -This is a simple code made with while loop and you can also use for loop fot this. - -## ⚙️ Languages or Frameworks Used - -Made with `python` - -## 🌟 How to run -You can run this using cmd. - -`python star_pyramid.py` - -## 🤖 Author -Hasala Abhilasha diff --git a/Star_Pyramid/star_pyramid.py b/Star_Pyramid/star_pyramid.py deleted file mode 100644 index 9356d745..00000000 --- a/Star_Pyramid/star_pyramid.py +++ /dev/null @@ -1,25 +0,0 @@ -cont = "y" -print("Welcome to star pyramid generator !") -print() -while cont == "y": - num = int(input("Enter a numbber : ")) - - t = 0 - i = 1 - k = num - - while i < (num + 1) : - print(" " * k, end = "") - j = 0 - - while j <= t: - print("*", "", end="") - j = j + 1 - - i = i + 1 - t = t + 1 - k = k - 1 - - print() - - cont = input("Are you want to continue? (Enter 'y' to continue or 'q' to quit : ").lower() \ No newline at end of file diff --git a/Sudoku_solver/README.md b/Sudoku_solver/README.md deleted file mode 100644 index 066de155..00000000 --- a/Sudoku_solver/README.md +++ /dev/null @@ -1,36 +0,0 @@ - -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# Sudoku solver - - -

- - - -## 🛠️ Description - -This program can generate and solve Sudoku boards. - -## ⚙️ Languages or Frameworks Used - -You only need Python to run this script. You can visit [here](https://www.python.org/downloads/) to download Python. - - -## 🌟 How to run - -By default, it generates a board and solves it straight away. - -If you want to get your own board solved you have to look at the bottom of the file. -Just fill in the number of your board and use a comment to disable the board generator below. - -## 📺 Demo - - -## 🤖 Author - -[Dominik Meurer](https://github.com/DMeurer) diff --git a/Sudoku_solver/main.py b/Sudoku_solver/main.py deleted file mode 100644 index c9affafa..00000000 --- a/Sudoku_solver/main.py +++ /dev/null @@ -1,180 +0,0 @@ -from random import sample - - -def generate_board(num): - base = 3 - side = base * base - - def pattern(r, c): - return (base * (r % base) + r // base + c) % side - - def shuffle(s): - return sample(s, len(s)) - - # randomize rows, col, num - rBase = range(base) - rows = [g * base + r for g in shuffle(rBase) for r in shuffle(rBase)] - cols = [g * base + c for g in shuffle(rBase) for c in shuffle(rBase)] - nums = shuffle(range(1, base * base + 1)) - - # randomized baseline - board_tmp = [[nums[pattern(r, c)] for c in cols] for r in rows] - - # print full board - print("=======full board========") - print_board(board_tmp) - - # remove numbers of the board - squares = side * side - if num == 0: - # default number of empty slots - empties = squares * 3 // 4 - else: - # given number of empty slots - empties = 81 - num - # looping a randomized board for the amount of empty mubers - for p in sample(range(squares), empties): - # set nubers to 0 of the randomized board - board_tmp[p // side][p % side] = 0 - - # returning the generated board - return board_tmp - - -""" -This solution works, but it could create boards that are not possible. - -def generate_board(num): - bo = [[0 for x in range(9)] for y in range(9)] - for i in range(9): - for j in range(9): - bo[i][j] = 0 - - for i in range(num): - row = random.randrange(9) - col = random.randrange(9) - num = random.randrange(1, 10) - - while not possible(bo, (row, col), num) or bo[row][col] != 0: - row = random.randrange(9) - col = random.randrange(9) - num = random.randrange(1, 10) - bo[row][col] = num - - return bo -""" - - -def print_board(bo): - # looping every line in the array - for i in range(len(bo)): - # printing line if the vertical "box" changes - if i % 3 == 0 and i != 0: - print("- - - - - - - - - - - - - ") - # looping every character in one line - for j in range(len(bo[0])): - # printing lines if the horizontal box changes - # printing each character with spaces except for the last - if j % 3 == 0 and j != 0: - print(" | ", end="") - if j == 8: - # last character is printed without spaces behind - print(bo[i][j]) - else: - # printing each character with spaces - print(str(bo[i][j]) + " ", end="") - print("") - - -def possible(bo, pos, num): - # checking row - for i in range(len(bo[0])): - if bo[pos[0]][i] == num and pos[1] != i: - # not possible - return False - - # checking column - for i in range(len(bo)): - if bo[i][pos[1]] == num and pos[0] != i: - # not possible - return False - - # checking square - box_x = pos[1] // 3 - box_y = pos[0] // 3 - - for i in range(box_y * 3, box_y * 3 + 3): # row - for j in range(box_x * 3, box_x * 3 + 3): # col - if bo[i][j] == num and (i, j) != pos: - # not possible number - return False - # possible number - return True - - -def next_empty(bo): - # searching for the next 0 on the board - for i in range(len(bo)): - # looping rows - for j in range(len(bo[0])): - # looping columns - if bo[i][j] == 0: - return i, j # returning row and column - - -def solve(bo): - # searching for next empty solt - slot = next_empty(bo) - if not slot: - # return True if there is no empty slot - return True - else: - row, col = slot - # looping number 1 to 9 - for i in range(1, 10): - # check if the number is possible in this location - if possible(bo, (row, col), i): - # placing the number on the board - bo[row][col] = i - - # starting recursion - if solve(bo): - # returns True when the previous returned True - # This will only activate if the board is full - return True - - # resetting the changed value to 0 - bo[row][col] = 0 - return False - - -# Fill your numbers in the board below or create a new array to solve the board you give. -board = [ - [0, 0, 0, 0, 0, 0, 0, 0, 0], - [0, 0, 0, 0, 0, 0, 0, 0, 0], - [0, 0, 0, 0, 0, 0, 0, 0, 0], - - [0, 0, 0, 0, 0, 0, 0, 0, 0], - [0, 0, 0, 0, 0, 0, 0, 0, 0], - [0, 0, 0, 0, 0, 0, 0, 0, 0], - - [0, 0, 0, 0, 0, 0, 0, 0, 0], - [0, 0, 0, 0, 0, 0, 0, 0, 0], - [0, 0, 0, 0, 0, 0, 0, 0, 0] -] - -# use this function to generate a new board -# comment and use the array above to solve manual preset boards. -board = generate_board(0) - - -# printing the unsolved board -print("======solvable board=====") -print_board(board) - -# solving the board -solve(board) - -# printing the board -print("======solved board=======") -print_board(board) diff --git a/TEXTVENTURE/Assets/TextVenture.gif b/TEXTVENTURE/Assets/TextVenture.gif deleted file mode 100644 index b08d80eb..00000000 Binary files a/TEXTVENTURE/Assets/TextVenture.gif and /dev/null differ diff --git a/TEXTVENTURE/README.md b/TEXTVENTURE/README.md deleted file mode 100644 index 9f76674a..00000000 --- a/TEXTVENTURE/README.md +++ /dev/null @@ -1,25 +0,0 @@ -![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99) -![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103) - -# TextVenture ---- - -## 🛠 Description -TextVenture is a short for Text Adventure. It is a game where you can play as a character and explore a world. - -## ⚙️ Language or Framework Used -Required modules are `os`, `sys`, and `time`. - -## ▶️ How to Play -To play the game, you need to type in the commands in the terminal. -There is help section on the main menu for more information. - -## ⭐ How to Run -Just head over to the directory where the game is located and type `python3 textventure.py`. - -## 💻 Demo -[Demo](https://i.imgur.com/kdTI6C5.gifv) - - -## 🙋🏻 Author -RAO.exe \ No newline at end of file diff --git a/TEXTVENTURE/game.py b/TEXTVENTURE/game.py deleted file mode 100644 index 3fadb533..00000000 --- a/TEXTVENTURE/game.py +++ /dev/null @@ -1,639 +0,0 @@ -""" -Python Text RPG Adeventure Game - -Copyright (C) 2022 RAO.exe -""" - -# Importing the necessary modules -import os -import sys -import time - - -# ---- Global Variables ---- # -SCREEN_WIDTH = 100 - -ZONENAME = "" -DESCRIPTION = "description" -EXAMINATION = "examine" -SOLVED = False - -TRADES = ['builder', 'miner', 'fighter'] - -UP = ["up", "u", "north"] -DOWN = ["down", "d", "south"] -LEFT = ["left", "l", "west"] -RIGHT = ["right", "r", "east"] - -SOLVED_PLACES = { - 'a1': False, 'a2': False, 'a3': False, 'a4': False, - 'b1': False, 'b2': False, 'b3': False, 'b4': False, - 'c1': False, 'c2': False, 'c3': False, 'c4': False, - 'd1': False, 'd2': False, 'd3': False, 'd4': False, - } - -ZONE_MAP = { - 'a1': { - "ZONENAME": "Town Gate", - "DESCRIPTION": "You are at the north gate of the town", - "EXAMINATION": "The gate is closed for now", - "UP": '', - "DOWN": 'b2', - "LEFT": '', - "RIGHT": 'a2', - "SOLVED": False, - }, - 'a2': { - "ZONENAME": "Town Entrance", - "DESCRIPTION": "You are at the entrance of the town", - "EXAMINATION": "Behold the town of the town", - "UP": '', - "DOWN": 'b2', - "LEFT": 'a1', - "RIGHT": 'a3', - "SOLVED": False, - }, - 'a3': { - "ZONENAME": "Town Square", - "DESCRIPTION": "You are at the town square", - "EXAMINATION": "The town square is bustling with people", - "UP": '', - "DOWN": 'b3', - "LEFT": 'a2', - "RIGHT": 'a4', - "SOLVED": False, - }, - 'a4': { - "ZONENAME": "Town Gate", - "DESCRIPTION": "You are at the south gate of the town", - "EXAMINATION": "The gate is closed for now", - "UP": '', - "DOWN": 'b4', - "LEFT": 'a3', - "RIGHT": '', - "SOLVED": False, - }, - 'b1': { - "ZONENAME": "Main Street", - "DESCRIPTION": "You are on Main Street", - "EXAMINATION": "You are on Main Street and there is nothing here", - "UP": 'a1', - "DOWN": 'c1', - "LEFT": '', - "RIGHT": 'b2', - "SOLVED": False, - }, - 'b2': { - "ZONENAME": "Cemetery Street", - "DESCRIPTION": "You are on Cemetery Street", - "EXAMINATION": "You are on Cemetery Street looking at the graveyard", - "UP": 'a2', - "DOWN": 'c2', - "LEFT": 'b1', - "RIGHT": 'b3', - "SOLVED": False, - }, - 'b3': { - "ZONENAME": "Town Hall", - "DESCRIPTION": "You are in the town hall", - "EXAMINATION": "You are in the town hall talking with the mayor", - "UP": 'a3', - "DOWN": 'c3', - "LEFT": 'b2', - "RIGHT": 'b4', - "SOLVED": False, - }, - 'b4': { - "ZONENAME": "Side Street", - "DESCRIPTION": "You are on Side Street", - "EXAMINATION": "Behind the side street dark alley is present which leads to the witch's house", - "UP": 'a4', - "DOWN": 'c4', - "LEFT": 'b3', - "RIGHT": '', - "SOLVED": False, - }, - 'c1': { - "ZONENAME": "Town Stadium", - "DESCRIPTION": "You are at the town stadium", - "EXAMINATION": "Stadium is full of people and you can't see anything", - "UP": 'b1', - "DOWN": 'd1', - "LEFT": '', - "RIGHT": 'c2', - "SOLVED": False, - }, - 'c2': { - "ZONENAME": "Town Market", - "DESCRIPTION": "You are at the town market", - "EXAMINATION": "Market is closed for now! Come back later", - "UP": 'b2', - "DOWN": 'd2', - "LEFT": 'c1', - "RIGHT": 'c3', - "SOLVED": False, - }, - 'c3': { - "ZONENAME": "Town Library", - "DESCRIPTION": "You are at the town library", - "EXAMINATION": "Library is filled with books. Librarian is waiting for you", - "UP": 'b3', - "DOWN": 'd3', - "LEFT": 'c2', - "RIGHT": 'c4', - "SOLVED": False, - }, - 'c4': { - "ZONENAME": "Town Jail", - "DESCRIPTION": "You are at the town jail", - "EXAMINATION": "One of the guards is suspicious of you, run away!", - "UP": 'b4', - "DOWN": 'd4', - "LEFT": 'c3', - "RIGHT": '', - "SOLVED": False, - }, - 'd1': { - "ZONENAME": "Town University", - "DESCRIPTION": "You are at the town university", - "EXAMINATION": "One of the biggest universities in the world is here", - "UP": 'c1', - "DOWN": '', - "LEFT": '', - "RIGHT": 'd2', - "SOLVED": False, - }, - 'd2': { - "ZONENAME": "Town School", - "DESCRIPTION": "You are at the town school", - "EXAMINATION": "Kids are playing here", - "UP": 'c2', - "DOWN": '', - "LEFT": 'd1', - "RIGHT": 'd3', - "SOLVED": False, - }, - 'd3': { - "ZONENAME": "Town Museum", - "DESCRIPTION": "You are at the town museum", - "EXAMINATION": "Museum is full of artifacts! Remember to keep your distance", - "UP": 'c3', - "DOWN": '', - "LEFT": 'd2', - "RIGHT": 'd4', - "SOLVED": False, - }, - 'd4': { - "ZONENAME": "Town Exit", - "DESCRIPTION": "You are at the town exit", - "EXAMINATION": "Goodbye! little friend. See you soon", - "UP": 'c4', - "DOWN": '', - "LEFT": 'd3', - "RIGHT": '', - "SOLVED": False, - }, -} - - - -# ---- PLayer Class ---- # -class Player: - - # Initializing the player - def __init__(self): - self.name = '' - self.username = '' - self.trade = '' - self.hp = 0 - self.magic_points = 0 - self.effects = [] - self.location = 'Town Market' - self.gave_over = False - -# ---- Creating the Player ---- # -player = Player() - -# ---- Play Game Function ---- # -""" -This function is used to play the game. -It is called when the player enters the 'play' command. -""" -def play_game(): - - # MAP of the game - """ - Index: - 1 2 3 4... - ----------------- - | | | | | a - ----------------- - | | | | | b - ----------------- - | | | | | c - ----------------- . - | | | | | . - ----------------- . - """ - - setup_game() - - -# ---- Help Screen ---- # -""" -This function displays the help screen and calls the main screen function. -""" -def help_screen(): - os.system('clear') - - # Displaying the Title - print("\t#############################################\n") - print("\t🎮 Welcome to TEXVENTURE ROG 🎮\n") - print("\t#############################################\n") - - # Displaying the Help Screen - print("\n\tHelp Screen\n ") - print("\t[1] Use 'up', 'down', 'left', and 'right' to move around,\n") - print("\t[2] Type the commands to perform actions.\n") - print("\t[3] Type 'look' to look around,\n") - print("\n\tMade with ❤️" + " and 🐍 by RAO.exe\n") - - # Calling the main screen selection function - main_screen_selection() - -# ---- Quit Game Function ---- # -""" -This function is used to quit the game. -It is called when the player enters the 'quit' command. -""" -def quit_game(): - os.system('clear') - print("\n\t\tThanks for playing!\n") - print("\t\tMade with ❤️ and 🐍 by RAO.exe\n") - sys.exit() - -# ---- Main Screen Selection ---- # -""" - Interactive screen. - Navigation through the command line. - Commands: - - play - - help - - quit -""" -def main_screen_selection(): - option = input("\nWhat would you like to do? 🎮\n> ") - - if option.lower() == "play": - play_game() - - elif option.lower() == "help": - help_screen() - - elif option.lower() == "quit": - quit_game() - - else: - print("\nI don't understand that command.\nPlease enter a valid command. ⚠️\n") - main_screen_selection() - -# ---- Main Screen ---- # -""" -This is the main screen of the game. -All the commands are listed here. -""" -def main_screen(): - os.system('clear') - - # Displaying the Title - print("\t#############################################\n") - print("\t🎮 Welcome to TEXVENTURE ROG 🎮\n") - print("\t#############################################\n") - - # Displaying the Main Menu - print("\n\t\tMain Menu\n ") - print("\t\t[1] Play Game > type 'play'\n") - print("\t\t[2] Help > type 'help'\n") - print("\t\t[3] Quit > type 'quit'\n") - print("\n\t\tMade with ❤️ and 🐍 by RAO.exe\n") - - # Calling the main screen selection function - main_screen_selection() - - -# ---- Game Interactions ---- # -""" -All the interactions with the game are listed here. -""" - -# Player Interaction -def player_interact(action): - if ZONE_MAP[player.location]["SOLVED"]: - print("\nYou visited this place earlier. Move further!\n") - return - - else: - if action == 'inspect': - print("\n" + ZONE_MAP[player.location]["DESCRIPTION"]) - return - - elif action == 'examine' or action == 'interact': - print("\n" + ZONE_MAP[player.location]["EXAMINATION"]) - return - - elif action == 'look': - # Display effects if there are any. - if len(player.effects) > 0: - print("\nYou have entitled with the following effects:") - for effect in player.effects: - sys.stdout.write("\t" + effect + "\n") - sys.stdout.flush() - time.sleep(0.5) - - return - - else: - print("\nYou have no effects.\n") - return - - else: - print("\nI don't understand that command.\nPlease enter a valid command. ⚠️\n") - return - - -# Movement Handler -def movement_handler(destination): - if destination == '': - print("\nYou cannot go that way.\n") - return - - else: - print("\n" + "You moved to the " + destination + ".") - player.location = destination - ZONE_MAP [player.location]["SOLVED"] = True - - show_location() - return - -# Player Movement -def player_move(myAction): - dest = input("\nWhere would you like to move? 🚶\n> ") - - if dest in "UP": - destination = ZONE_MAP[player.location]["UP"] - - movement_handler(destination) - - elif dest in "DOWN": - destination = ZONE_MAP[player.location]["DOWN"] - - movement_handler(destination) - - elif dest in "LEFT": - destination = ZONE_MAP[player.location]["LEFT"] - - movement_handler(destination) - - elif dest in "RIGHT": - destination = ZONE_MAP[player.location]["RIGHT"] - - movement_handler(destination) - - else: - print("\nI don't understand that command.\nPlease enter a valid command. ⚠️\n") - player_move(myAction) - - -# Player Location -def show_location(): - print("\n" + ("#" * (4 + len(player.location))) ) - print("# " + player.location.upper() + " #") - print("# " + ZONE_MAP[player.location]["DESCRIPTION"] + " #") - print("\n" + ("#" * (4 + len(player.location))) ) - -# Prompt for Player Input -def prompt(): - acceptable_actions = ['move', 'travel', 'go', 'walk', 'inspect', 'examine', 'look', 'interact', 'quit'] - - print("\n======================================") - print("What would you like to do? ❔") - action = input("> ") - - while action.lower() not in acceptable_actions: - print("\nI don't understand that command.\nPlease enter a valid command. ⚠️\n") - action = input("> ") - - if action.lower() == "quit": - quit_game() - - elif action.lower() in ['move', 'travel', 'go', 'walk']: - player_move(action.lower()) - - elif action.lower() in ['inspect', 'examine', 'look', 'interact']: - player_interact(action.lower()) - -# ---- Solved ---- # -""" -If the player has visited all the locations, -the game will end and the player will be congratulated. -""" -def ifSolved(): - count = 0 - - for obj in ZONE_MAP: - if obj["SOLVED"]: count += 1 - - if count == len(ZONE_MAP): player.game_over = True - -# Main Game Loop -def main_game_loop(): - - while player.gave_over is False: - prompt() - - -# ---- Setup Game ---- # -def setup_game(): - os.system('clear') - - # Name Input - Q1 = "Are you new here?\nWhat is your name? 🤖" - # Printing the question character by character - for char in Q1: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.07) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.05) - - player_name = input("\n> ") - - # Name Validation - if len(player_name) < 3: - print("\nYour name is too short.\nPlease enter a valid name. ⚠️\n") - setup_game() - - player.name = player_name - - # Username Input - Q2 = "\nWhat should we call you Cheif? 💬" - # Printing the question character by character - for char in Q2: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.07) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.05) - - player_username = input("\n> ") - - # Username Validation - if(len(player_username) < 3): - shortUsrname = "\nYour username is too short.\nPlease enter a valid username. ⚠️\n" - - for char in shortUsrname: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.03) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.02) - - # wait for user to press enter - print("\nPress any key on the keyboard to continue. ") - input("\n> ") - - setup_game() - - player.username = player_username - - # Player Trade - Q3 = "\nWhat is your favorite trade? (Builder[⚒️], Miner[⛏], Fighter[⚔️])" - # Printing the question character by character - for char in Q3: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.07) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.05) - - player_trade = input("\n> ") - - # Trade Validation - if player_trade.lower() not in TRADES: - print("\nI don't understand that command.\nPlease enter a valid command. ⚠️\n") - setup_game() - - player.trade = player_trade.lower() - - # Setting player hp, magic points and effects - if player.trade == 'builder': - player.hp = 100 - player.mp = 0 - player.effects = ['Medieval', 'Colonial', 'Futuristic'] - - elif player.trade == 'miner': - player.hp = 130 - player.mp = 0 - player.effects = ['Staircasing', 'Blast', 'Sea'] - - elif player.trade == 'fighter': - player.hp = 150 - player.mp = 50 - player.effects = ['Pillager Power', 'Warden Garden', 'Nether Nomad'] - - - # Welcoming the player - O1 = "\nWelcome, " + player.name + "! The " + player.trade.upper() + "\n" - for char in O1: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.05) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.03) - - O2 = player.username + " is your username" + ".\n" - for char in O2: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.05) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.03) - - O3 = "Your health is " + str(player.hp) + ".\n" - for char in O3: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.05) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.03) - - - O4 = "Your magic points are " + str(player.mp) + "." - for char in O4: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.05) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.03) - - # Starting the game - O4 = "\nYou are in the " + player.location + "." - for char in O4: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.06) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.04) - - O5 = "Type 'continue' or 'start' to begin." - for char in O5: - if char == " ": - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.06) - else: - sys.stdout.write(char) - sys.stdout.flush() - time.sleep(0.04) - - # Starting the game - cont = input("\n> ") - if cont.lower() in ['continue', 'start', 'c', 's']: - main_game_loop() - - print("##########################") - print("# Welcome to the game! #") - print("# Let's get started! #") - print("##########################") - - main_game_loop() - -# ---- Game Start ---- # -main_screen() \ No newline at end of file diff --git a/TestTypingSpeed/TestTypingSpeed.py b/TestTypingSpeed/TestTypingSpeed.py deleted file mode 100644 index 981fa391..00000000 --- a/TestTypingSpeed/TestTypingSpeed.py +++ /dev/null @@ -1,47 +0,0 @@ -import time -from essential_generators import DocumentGenerator - -def typing_speed(): - - # Generating a random sentence - gen = DocumentGenerator() - String = gen.sentence() - wordcount=len(String.split()) - - # Typing Speed Calculation - print(String) - print("----------------------------------------") - startTime=time.time() - textInput=str(input("Type the sentence: " )) - endTime=time.time() - accuracy= len(set(textInput.split())&set(String.split())) - accuracy=accuracy/wordcount*100 - timeTaken=round(endTime-startTime,2) - wpm=round((wordcount/timeTaken)*60) - print("----------------------------------------") - - # Showing the results - print ("Your accuracy is: ", accuracy) - print ("Time taken: ", timeTaken, "seconds") - print("Your typing speed is: ",wpm,"words per minute") - - if accuracy < 50 or wpm < 30: - print("You need to practice typing more!") - elif accuracy < 80 or wpm < 60: - print("You are doing great!") - elif accuracy <= 100 or wpm <= 100: - print("You are a pro in typing!") - else: - print("You are a typing machine!") - - -if __name__ == "__main__": - print("Let's Start") - typing_speed() - - while True : - if input("Do you want to try again? (y/n): ")=="y": - print("\n") - typing_speed() - else: - break \ No newline at end of file diff --git a/TestTypingSpeed/requirements.txt b/TestTypingSpeed/requirements.txt deleted file mode 100644 index 70a02136..00000000 Binary files a/TestTypingSpeed/requirements.txt and /dev/null differ diff --git a/TextEncryptor/TextEncryptor.py b/TextEncryptor/TextEncryptor.py deleted file mode 100644 index 9052ccc9..00000000 --- a/TextEncryptor/TextEncryptor.py +++ /dev/null @@ -1,49 +0,0 @@ -#This application uses the ceaser cipher in order to encrypt text -def encrypt(text): - result = "" - - for i in range(len(text)): - char = text[i] - - if char.isupper(): - result += chr((ord(char) + key - 65) % 26 + 65) - elif char.islower(): - result += chr((ord(char) + key - 97) % 26 + 97) - else: - result += char - - return result - -def decrypt(text): - result = "" - - for i in range(len(text)): - char = text[i] - - if char.isupper(): - result += chr((ord(char) - decryptkey - 65) % 26 + 65) - elif char.islower(): - result += chr((ord(char) - decryptkey - 97) % 26 + 97) - else: - result += char - - return result - - -choice = int(input("Would you like to encrypt some text or decrypt some text? Choose 1 to encrypt and 2 to decrypt ")) -if choice == 1: - text = input("Input the text you want to encrypt: \n") - key = int(input("Input the key for the encryption *NOTE! This is using the Ceaser cipher \n")) - - result = encrypt(text) - print(result) - -elif choice == 2: - text = input("Input the text you want to decrypt: \n") - decryptkey = int(input("Input the key for the decryption *NOTE! This is using the Ceaser cipher \n")) - - result = decrypt(text) - print(result) - -else: - print("idk") diff --git a/TextEncryptor/readme.md b/TextEncryptor/readme.md deleted file mode 100644 index f242132b..00000000 --- a/TextEncryptor/readme.md +++ /dev/null @@ -1,14 +0,0 @@ -# Script Title -The text encryptor is a python mini project that allows the user to encrypt or decrypt any tet they wish using the ceaser cipher... With no GUI, it may not be the most intuitive, but I would like if someone could contribute and make a gui for this application in the future... - -### Prerequisites -Do not worry... there are no modules that are needed to run the project... just python itself... - -### How to run the script -just run the script and follow the instructions - -### Screenshot/GIF showing the sample use of the script -image.png - -## *Author Name* -BlockmasterPlayz \ No newline at end of file diff --git a/TextToSpeech/Text_To_Speech.py b/TextToSpeech/Text_To_Speech.py deleted file mode 100644 index 4fd34213..00000000 --- a/TextToSpeech/Text_To_Speech.py +++ /dev/null @@ -1,29 +0,0 @@ -import pyttsx3 -import tkinter as tk - -# saytext = input("What should I say? ") - -class GUI: - def __init__(self): - self.root = tk.Tk() - - self.root.title("Text To Speech") - self.root.geometry("500x500") - - self.label = tk.Label(self.root, text="Type what you want me to say!", font=('Arial', 16)) - self.label.pack(padx=10, pady=10) - - self.textbox = tk.Entry(font=('Arial', 16)) - self.textbox.pack(padx=10, pady=10) - - self.button = tk.Button(text="CLICK ME!", font=('Arial', 16), command=self.button_click) - self.button.pack(padx=10, pady=10) - - self.root.mainloop() - - def button_click(self): - engine = pyttsx3.init() - engine.say(self.textbox.get()) - engine.runAndWait() - -GUI() \ No newline at end of file diff --git a/TextToSpeech/readme.md b/TextToSpeech/readme.md deleted file mode 100644 index a782befa..00000000 --- a/TextToSpeech/readme.md +++ /dev/null @@ -1,17 +0,0 @@ -# Script Title -A program that allows the user to convert the text he/she inputs into the program into a voice audio that is played in real time. - -### Prerequisites -tkinter and pyttsx3 is required for this - -install pyttsx3: pip install pyttsx3 -tkinter should come pre installed with python - -### How to run the script -Just run the python file - -### Screenshot/GIF showing the sample use of the script -image.png - -## *Author Name* -BlockmasterPlayz \ No newline at end of file diff --git a/Text_Predication/README.md b/Text_Predication/README.md deleted file mode 100644 index 4883494e..00000000 --- a/Text_Predication/README.md +++ /dev/null @@ -1,69 +0,0 @@ -# Text prediction using N-gram Language Model - -

- - - -## ⚙️ Languages or Frameworks Used -This Python project utilizes the Natural Language Toolkit (NLTK) library to implement an N-gram language model. The code -includes the following packages: -### Packages - -1. **Pandas:** A data manipulation library used for handling and analyzing tabular data. - -2. **NLTK (Natural Language Toolkit):** - - `bigrams`: Module for extracting bigrams from a sequence of words. - - `lm.preprocessing.pad_both_ends`: Preprocessing module for padding both ends of a sequence. - - `tokenize.WordPunctTokenizer`: Tokenizer for breaking text into words using punctuation and whitespace. - - - `lm.Vocabulary`: Module for constructing a vocabulary from a given text corpus. - - `lm.Laplace`: Module implementing Laplace smoothing for language modeling. - -## 🛠️ Description - -### N-gram Language Model Project -This Python project implements a text prediction system using the Laplace smoothing model with bigrams. The goal is to predict the next word in a given sentence based on the provided prefix. The project utilizes the Natural Language Toolkit (NLTK) library for processing and modeling natural language data. - -### How It Works - -1. **Data Preprocessing:** - - The project starts by reading a CSV file (`train.csv`) containing text data. - - HTML tags are removed from the 'Body' column of the dataset using a function called `remove_html_tags`. - - The text is tokenized using the `WordPunctTokenizer` from NLTK. - -2. **N-gram Model Building:** - - The corpus is then processed further by padding both ends of each sentence with special symbols ("" and "") using the `pad_both_ends` function. - - Bigrams are extracted from the padded sentences using the `bigrams` function. - - The vocabulary is constructed using the `Vocabulary` class from NLTK. - -3. **Laplace Smoothing Model:** - - The Laplace smoothing model is implemented using the `Laplace` class from NLTK's language modeling module. - - The model is trained on the bigram data. - -4. **Next-word Prediction:** - - User input is taken to provide a prefix for next-word prediction. - - The Laplace model scores each word in the vocabulary based on its likelihood to follow the given prefix. - - The top three predictions with their respective scores are displayed. - - -## 🌟 How to run - -1. **Instal** the required dependencies: - -```bash -pip install -r requirements.txt -``` - -2. **Run** the code: - -```bash -python text_prediction.py -``` - -## 📺 Demo - -![](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExN3BndnM1M2tnaWhlbjkxczJmcndzenh2bnlhaWFkZWR2YWhqNDg0ZSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/NIQIoC9vc7xBEPOCPY/giphy.gif) - -## 🤖 Author - -links : [louisbau](https://github.com/louisbau) \ No newline at end of file diff --git a/Text_Predication/assets/demo.PNG b/Text_Predication/assets/demo.PNG deleted file mode 100644 index aa75d268..00000000 Binary files a/Text_Predication/assets/demo.PNG and /dev/null differ diff --git a/Text_Predication/assets/predict.jpg b/Text_Predication/assets/predict.jpg deleted file mode 100644 index 324fd6c9..00000000 Binary files a/Text_Predication/assets/predict.jpg and /dev/null differ diff --git a/Text_Predication/corpus/train.csv b/Text_Predication/corpus/train.csv deleted file mode 100644 index 89b22886..00000000 --- a/Text_Predication/corpus/train.csv +++ /dev/null @@ -1,359453 +0,0 @@ -Body,Y -"

I'd like to understand why Java 8 Optionals were designed to be immutable. Is it just for thread-safety?

-",HQ -"

I am attempting to overlay a title over an image - with the image darkened with a lower opacity. However, the opacity effect is changing the overlaying text as well - making it dim. Any fix to this? Here is what is looks like:

- -

- -

And here is my code for the custom component (article preview - which the above image is a row of article preview components):

- -
//component for article preview touchable image
-/* will require the following
-- rss feed and api
-- user's keyword interests from parse In home.js
-- parse db needs to be augmented to include what they heart
-- parse db needs to be augmented to include what they press on (like google news)
-*/
-var React = require('react-native');
-var {
-  View, 
-  StyleSheet, 
-  Text, 
-  Image, 
-  TouchableHighlight, 
-} = React;
-
-//dimensions
-var Dimensions = require('Dimensions');
-var window = Dimensions.get('window');
-var ImageButton = require('../../common/imageButton');
-var KeywordBox = require('../../authentication/onboarding/keyword-box');
-
-//additional libraries
-
-module.exports = React.createClass({
-  //onPress function that triggers when button pressed
-  //this.props.text is property that can be dynamically filled within button 
-  /* following props:
-    - source={this.props.source}
-    - onPress={this.props.onPress}
-    - {this.props.text}
-    - {this.props.heartText}
-    - key={this.props.key} 
-    - text={this.props.category} 
-    - this.props.selected
-  */
-  render: function() {
-    return (
-      <TouchableHighlight 
-        underlayColor={'transparent'}
-        onPress={this.props.onPress} >
-          <Image 
-            source={this.props.source} 
-            style={[styles.articlePreview, this.border('red')]}>
-                  <View style={[styles.container, this.border('organge')]}>
-                      <View style={[styles.header, this.border('blue')]}>
-                          <Text style={[styles.previewText]}>{this.props.text}</Text>
-                      </View>
-                      <View style={[styles.footer, this.border('white')]}>
-                        <View style={[styles.heartRow, this.border('black')]}>
-                          <ImageButton
-                              style={[styles.heartBtn, , this.border('red')]}
-                              resizeMode={'contain'}
-                              onPress={this.onHeartPress}
-                              source={require('../../img/heart_btn.png')} />
-                          <Text style={[styles.heartText]}>{this.props.heartText + ' favorites'}</Text>
-                        </View>
-                          <KeywordBox 
-                              style={[styles.category, this.border('blue')]}
-                              key={this.props.key} 
-                              text={this.props.category} 
-                              onPress={this.props.categoryPress}
-                              selected={this.props.selected} />
-                      </View>
-                  </View>
-          </Image>
-      </TouchableHighlight>
-    );
-  }, 
-  onHeartPress: function() {
-    //will move this function to a general module
-  }, 
-  border: function(color) {
-      return {
-        //borderColor: color, 
-        //borderWidth: 4,
-      } 
-   },
-});
-
-var styles = StyleSheet.create({
-  heartText: {
-    color: 'white', 
-    fontSize: 12, 
-    fontWeight: 'bold',
-    alignSelf: 'center', 
-    marginLeft: 5, 
-    fontFamily: 'SFCompactText-Medium'
-  }, 
-  heartRow: {
-    flexDirection: 'row', 
-    justifyContent: 'space-around', 
-    alignSelf: 'center', 
-    justifyContent: 'center', 
-  }, 
-  heartBtn: {
-    height: (92/97)*(window.width/13), 
-    width: window.width/13, 
-    alignSelf:'center', 
-  }, 
-  category: {
-    fontFamily: 'Bebas Neue', 
-    fontSize: 10,
-    fontWeight: 'bold'
-  }, 
-  header: {
-    flex: 3, 
-    alignItems: 'center', 
-    justifyContent: 'space-around', 
-    marginTop: window.height/30,
-  }, 
-  footer: {
-    flex: 1, 
-    flexDirection: 'row', 
-    justifyContent: 'space-between', 
-    alignItems: 'center', 
-    margin: window.height/50,
-  }, 
-  container: {
-    flex: 1, 
-    backgroundColor: 'black', 
-    opacity: 0.6, 
-  }, 
-  articlePreview: {
-    flex: 1, 
-    height: window.height/3.2, 
-    width: window.width, 
-    flexDirection: 'column'
-  }, 
-  previewText: {
-    fontFamily: 'Bebas Neue', 
-    fontSize: 23,
-    color: 'white', 
-    alignSelf: 'center', 
-    textAlign: 'center', 
-    margin: 5, 
-    position: 'absolute',
-    top: 0,
-    right: 0,
-    bottom: 0,
-    left: 0
-  }, 
-
-});
-
-",HQ -"

The question is very simple, but I just could not find the answer!

- -

Why doesn't

- -
return x == 0? """" : ""Hello""
-
- -

compile but

- -
return x == 0 ? """" : ""Hello""
-
- -

does?

- -

This is really weird because all the other operators don't need an extra white space. e.g.

- -
let x = 1+1
-let y = 1 + 1
-
- -

are the same.

- -

I think it has something to do with optionals. But when you use a ? operator on a variable, it must be used like this:

- -
let s: String? = nil
-let x = s?.startIndex
-
- -

I mean it must follow another operator, right?

-",HQ -"

I'm using custom floatingactionmenu. I need to implement scale animation on show/hide menu button like here -floating action button behaviour

- -

Is there any way to do this ?

-",HQ -" i want to Disable 2nd Saturday 4th saturday, Sunday And Public Holiday Date Using jQuery calendar - -All year of 2nd Saturday And 4th Saturday ,Sunday Disable from Calendar - -Please Help Me",LQ -"I am new to bootstrap and i would like to find out how do i automatically resize my image to fit it into the container. And i would like to have a blank background for my container. Currently it is like this - -
-
-
-
-
- -
-
-
-
- [![enter image description here][1]][1] - -I plugged the whole code from some template form and i was playing around with it. - -I would like to have a container where i could fit the image inside automatically resizing the image. - - - [1]: http://i.stack.imgur.com/s16WB.png",LQ -"

I was able to change theme using this.RequestedTheme = ElementTheme.Dark; -But what I need is the whole application level, since this one only change the theme of the current page to dark.

- -

Whenever I try this App.Current.RequestedTheme = ApplicationTheme.Dark; -I always get this error

- -
-

An exception of type 'System.NotSupportedException' occurred in UWPApp.exe but was not handled in user code

-
- -

Is there such a way that I can change the whole application theme from Light to Dark or vice versa?

- -

I'm using VS2015

-",HQ -"I my case I am having two form Form 1 and Form 2. -Form 1 having two Buttons and Form 2 is having one textbox. -On Button 1 Click event I am writing ""My Text"" in my Form 2 TextBox and on button 2 I am showing Form 2. -What is happening is When I close my Form 2 using close [X] button and reopen it value in my Form 2 Textbox Disappears. -Please Help how can I resolve this, -",LQ -"

I am new to Ubuntu (Linux tbh). I encountered problem with starting MongoDB service. I want to created web app using Ruby on Rails and MongoDB but mongo seems to fail to start.

- -

I followed this MongoDB installation on Ubuntu all of installation went without problems until I got to sudo service mongod start

- -

mongod.log

- -
2016-01-01T10:58:15.545+0000 I CONTROL  ***** SERVER RESTARTED *****
-2016-01-01T10:58:15.548+0000 I CONTROL  [initandlisten] MongoDB starting : pid=3868 port=27017 dbpath=/var/lib/mongodb 64-bit host=damian-CX61-0NC-CX61-0ND-CX61-0NF-CX61-0NE
-2016-01-01T10:58:15.548+0000 I CONTROL  [initandlisten] db version v3.0.8
-2016-01-01T10:58:15.548+0000 I CONTROL  [initandlisten] git version: 83d8cc25e00e42856924d84e220fbe4a839e605d
-2016-01-01T10:58:15.548+0000 I CONTROL  [initandlisten] build info: Linux ip-10-187-89-126 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 BOOST_LIB_VERSION=1_49
-2016-01-01T10:58:15.548+0000 I CONTROL  [initandlisten] allocator: tcmalloc
-2016-01-01T10:58:15.548+0000 I CONTROL  [initandlisten] options: { config: ""/etc/mongod.conf"", net: { bindIp: ""127.0.0.1"", port: 27017 }, storage: { dbPath: ""/var/lib/mongodb"", journal: { enabled: true } }, systemLog: { destination: ""file"", logAppend: true, path: ""/var/log/mongodb/mongod.log"" } }
-2016-01-01T10:58:15.567+0000 E NETWORK  [initandlisten] Failed to unlink socket file /tmp/mongodb-27017.sock errno:1 Operation not permitted
-2016-01-01T10:58:15.567+0000 I -        [initandlisten] Fatal Assertion 28578
-2016-01-01T10:58:15.567+0000 I -        [initandlisten] 
-
-***aborting after fassert() failure
-
- -

So what I am doing wrong or its different issue?

-",HQ -"I have a UIlabel linked to a property that can contain text of many different possible lengths. - -How can I get the label to expand vertically to accommodate different quantities of text? - -I have set lines to 0 in storyboard. And I've experimented with different heights in the Size Inspector. But the label is not adjusting and I am only seeing one line of text that ends at edge of label. - -Would prefer not to use auto layout if possible unless there is no other way. - -Thanks in advance for any suggestions. - -",LQ -" -my code here - - #include - #include - #include - - char filename[100]; - FILE *stream, *stream2; - char s[20]; - struct date - { - int day, month, year; - }; - struct employee - { - int ID; - char name[100]; - date birthdate; - char address[20]; - char rank[20]; - int money; - }; - void main() - { - - - errno_t err; - - // Open for read (will fail if file ""crt_fopen_s.c"" does not exist) - - // Open for write - err = fopen_s(&stream2, ""C:/Users/Van/Desktop/LAALAL/fool.txt"", ""w+""); - if (err == 0) - { - - - - employee nv; - std::cout << ""\nInput information of an employee:\n""; - std::cout << ""\tInput ID : ""; - std::cin >> nv.ID; - std::cin.sync(); - std::cout << ""\tInput name : ""; - std::cin.clear(); - gets_s(s); - gets_s(nv.name); - std::cout << ""\tInput birthdate (Day Month Year ) : ""; - std::cin >> nv.birthdate.day >> nv.birthdate.month >> nv.birthdate.year; - - std::cout << ""\tInput address: ""; - std::cin.clear(); - gets_s(s); - gets_s(nv.address); - std::cout << ""\tInput rank : ""; - std::cin.clear(); - gets_s(s); - gets_s(nv.rank); - std::cout << ""\tMoney : ""; - std::cin >> nv.money; - std::cin.sync(); - - std::fwrite(&nv, sizeof(nv), 1, stream2); - std::fclose(stream2); - } - - - } -Well i don't meet the problem with code but when i input my information to txt file , i cant read the output in txt file ,here is the picture of my output -[enter image description here][1] -What is my problems?? -Thanks in advance for your time !!! - - - [1]: http://i.stack.imgur.com/gaPqY.png",LQ -"

My podfile was working but after updating to cocoapods version 1.0.0.beta.1

- -

pod install displays following error

- -
MacBook-Pro:iOS-TuneIn home$ pod install
-Fully deintegrating due to major version update
-Deleted 1 'Copy Pods Resources' build phases.
-Deleted 1 'Check Pods Manifest.lock' build phases.
-Deleted 1 'Embed Pods Frameworks' build phases.
-- libPods.a
-- Pods.debug.xcconfig
-- Pods.release.xcconfig
-Deleted 1 'Copy Pods Resources' build phases.
-Deleted 1 'Check Pods Manifest.lock' build phases.
-- libPods.a
-Deleted 1 'Copy Pods Resources' build phases.
-Deleted 1 'Check Pods Manifest.lock' build phases.
-- libPods.a
-Deleted 1 'Copy Pods Resources' build phases.
-Deleted 1 'Check Pods Manifest.lock' build phases.
-- libPods.a
-Deleted 1 'Copy Pods Resources' build phases.
-Deleted 1 'Check Pods Manifest.lock' build phases.
-- libPods.a
-- libPods.a
-Deleted 1 empty `Pods` groups from project.
-Removing `Pods` directory.
-
-Project has been deintegrated. No traces of CocoaPods left in project.
-Note: The workspace referencing the Pods project still remains.
-Updating local specs repositories
-Analyzing dependencies
-[!] The dependency `AFNetworking (= 2.6.3)` is not used in any concrete target.
-The dependency `MBProgressHUD (~> 0.9.1)` is not used in any concrete target.
-The dependency `PDKeychainBindingsController (~> 0.0.1)` is not used in any concrete target.
-The dependency `FMDB/SQLCipher` is not used in any concrete target.
-The dependency `ZXingObjC (~> 3.1.0)` is not used in any concrete target.
-The dependency `SDWebImage (~> 3.7.2)` is not used in any concrete target.
-The dependency `SignalR-ObjC (~> 2.0.0.beta3)` is not used in any concrete target.
-The dependency `CJPAdController (from `https://github.com/nabeelarif100/CJPAdController.git`)` is not used in any concrete target.
-The dependency `ECSlidingViewController (~> 2.0.3)` is not used in any concrete target.
-The dependency `VGParallaxHeader` is not used in any concrete target.
-The dependency `EMString` is not used in any concrete target.
-The dependency `Google/SignIn` is not used in any concrete target.
-The dependency `VIPhotoView (~> 0.1)` is not used in any concrete target.
-The dependency `EncryptedCoreData (from `https://github.com/project-imas/encrypted-core-data.git`)` is not used in any concrete target.
-MacBook-Pro:iOS-TuneIn home$ 
-
- -

Podfile:

- -
source 'https://github.com/CocoaPods/Specs.git'
-platform :ios, '7.0'
-pod 'AFNetworking', '2.6.3'
-pod 'MBProgressHUD', '~> 0.9.1'
-pod 'PDKeychainBindingsController', '~> 0.0.1'
-pod 'FMDB/SQLCipher'
-pod 'ZXingObjC', '~> 3.1.0'
-pod 'SDWebImage', '~>3.7.2'
-pod 'SignalR-ObjC','~>2.0.0.beta3'
-pod 'CJPAdController', :git => 'https://github.com/nabeelarif100/CJPAdController.git'
-pod 'ECSlidingViewController', '~> 2.0.3'
-pod 'VGParallaxHeader'
-pod 'EMString'
-pod 'Google/SignIn'
-pod 'VIPhotoView', '~> 0.1'
-pod 'EncryptedCoreData', :git => 'https://github.com/project-imas/encrypted-core-data.git'
-
-",HQ -"

I'm trying to use stack to load my test-suite in ghci and have it load the QuickCheck and hspec dependency.

- -

How can I do this?

- -

I'm using the franklinchen template.
-https://github.com/commercialhaskell/stack-templates/blob/master/franklinchen.hsfiles

- -

I have tried
-stack ghci spec
-stack ghci test-suite
-stack ghci --main-is spec

- -

I modified the test-suite spec to target the main-is: LibSpec.hs file

- -
test-suite spec
-  default-language:    Haskell2010
-  ghc-options:         -Wall
-  type:                exitcode-stdio-1.0
-  hs-source-dirs:      test
-  main-is:             LibSpec.hs
-  build-depends:       base
-                     , chapterexercises
-                     , hspec
-                     , QuickCheck
-
-",HQ -"

I am trying to deploy an application version but eb deploy command fails with:

- -
-

ERROR: Update environment operation is complete, but with errors. For - more information, see troubleshooting documentation.

-
- -

I checked the logs, made some changes to the code, committed and deployed again and guess what, it failed again. The logs indicate the same error, disregarding my changes. The error occurs in a file in this directory /var/app/ondeck/app/, when I go check, I can see the previous version is there.

- -

I tried deploying using the Elastic Beanstalk dashboard, but somehow the instance is not receiving the new version. Can someone help me with this? Thanks.

-",HQ -"I am currently starting to learn C++ via Arduino programming. I am programming an 8*8 LED Matrix, and currently have a semi-working code that uses a joystick to control a dot on screen. Only problem is: its nearly 1000 lines long. It's equivalent to writing an 1000 page essay only saying ""Pig, blanket, market"" over and over again until I get to the actual logic involved. - -My friend suggested to make it shorter, I could make a function which returns a byte. - -How does one do this? - -http://pastebin.com/8ud9ny2U <-- This is my code. !WARNING! Not a pretty code. At all. - -Help is much appreciated. -",LQ -"

What is the difference between bluebird.js and bluebird.core.js?

- -

When should I use bluebird.core.js instead of bluebird.js?

- -

I haven't been able to find anything in the bluebird site or elsewhere.

-",HQ -"

PowerShell 5 introduces the New-TemporaryFile cmdlet, which is handy. How can I do the same thing but instead of a file create a directory? Is there a New-TemporaryDirectory cmdlet?

-",HQ -"I'm writing a vbscript to send email notification when file arrives in Test folder - -I want to attach that file to my email.please help - -The file name is not constant,each time a file arrives with different name. -Below is my code - - -Const PATH = ""F:\Test"" - -dim fso: set fso = CreateObject(""Scripting.FileSystemObject"") - -dim folder: set folder = fso.getFolder(PATH) - -if folder.files.Count <> 0 then - -strSMTPFrom = ""errorfile@test.com"" - -strSMTPTo = ""test@test.com"" - -strSMTPRelay = ""127.0.0.1"" - -strTextBody = ""The attached file arrived in Test folder"" - -strSubject = ""File arrived in Test folder"" - -strAttachment = - -Set oMessage = CreateObject(""CDO.Message"") - -oMessage.Configuration.Fields.Item(""http://schemas.microsoft.com/cdo/configuration/sendusing"") = 2 - -oMessage.Configuration.Fields.Item(""http://schemas.microsoft.com/cdo/configuration/smtpserver"") = strSMTPRelay - -oMessage.Configuration.Fields.Item(""http://schemas.microsoft.com/cdo/configuration/smtpserverport"") = 25 - -oMessage.Configuration.Fields.Update - -oMessage.Subject = strSubject -oMessage.From = strSMTPFrom - -oMessage.To = strSMTPTo - -oMessage.TextBody = strTextBody - -oMessage.AddAttachment strAttachment - -oMessage.Send - -end if - - -",LQ -"

I'd like my class init() in Swift to throw an error if something goes wrong with loading a file into a string within the class. Once the file is loaded, the string will not be altered, so I would prefer to use let. This works:

- -
class FileClass {    
-    var text: NSString = """"   
-    init() throws {   
-        do {
-            text = try NSString( contentsOfFile: ""/Users/me/file.txt"", encoding: NSUTF8StringEncoding ) }
-        catch let error as NSError {
-            text = """"
-            throw error
-        }      
-    }
-}
-
- -

but when I replace

- -
var text: NSString = """"
-
- -

with

- -
let text: NSString
-
- -

I get an All stored properties of a class instance must be initialized before throwing from an initializer error.

- -

I've tried various approaches such as to make text optional

- -
let text: NSString?
-
- -

but haven't found any that work. It it possible to have text be loaded from a file, immutable, and for init() to throw an error? Can I have my cake and eat it three?

- -

Many thanks in advance!

-",HQ -"

I want to create a bigger Floating Action Button (FAB), more than the usual 56 dp, with a bigger icon inside. -(For my purpose an icon will never be self-explanatory so I will create a png-file containing a short text and use this png as icon.)

- -

Increasing the size of the FAB works fine:
-as i don't use the mini-FloatingActionButton, i redefined the mini-button-size.
-in my layout-xml i specify:

- -
<android.support.design.widget.FloatingActionButton
-    ...
-    app:fabSize=""mini""
-    ....
-
- -

and in the dimensions.xml i redefine the size for the mini-fab:

- -
<dimen name=""fab_size_mini"">80dp</dimen>
-
- -

However, I didn't manage to get a bigger icon on the FAB. -I tried icons with different dp's from the material icons library - no success. Also setting a padding on the FAB-layout did not work.

- -

Any suggestions? Thanks!

-",HQ -"

According to scala-wartremover static analysis tool I have to put ""final"" in front of every case classes I create: error message says ""case classes must be final"".

- -

According to scapegoat (another static analysis tool for Scala) instead I shouldn't (error message: ""Redundant final modifier on case class"")

- -

Who is right, and why?

-",HQ -"

I have a Kotlin project where I'd like to have Kotlin warnings treated as errors. How can I do that?

-",HQ -" class City - { - private: - int id; - string name; - int populations; - int nooftourist; - vector&attractions; - public: - City(int id,string name,int populations,int nooftourist):id(id),name(name),populations(populations),nooftourist(nooftourist){} - void setId(int _id); - void setName(string _name); - int getId(); - string getName(); - void display(){} - vectorgetAttractions() { return attractions;} - -}; - -what wrong with my program,i dont understand the vector type function -",LQ -"

I'm running uWSGI behind Nginx and have been using proxy_pass to get Nginx to hit uWSGI. Is there any benefit to switch to uwsgi_pass. If so, what is it?

-",HQ -"

I want to play animated gif from url in android app like imgur app. Imagur is superb and very fast. I am loading gif with webview but its not up to the mark.

-",HQ -"

I recently came across a code snippet such as:

- -
def loop(ring_pid \\ self, nil, true) do
-  #some code 
-end
-
- -

What do the double backslashes mean? I googled around and found http://elixir-lang.org/getting-started/sigils.html, but that applies to regular expressions not function params.

-",HQ -"I am currently attempting to communicate with an external application over TCP/IP based socket. I have successfully established a connection with the client and received some data. This manual [here][1] states that - -> After this command is received, the client must read an acknowledgement -> octet from the daemon. A positive acknowledgement is an octet of zero bits. A negative acknowledgement is an octet of any other pattern. - -I would like to send a positive acknowledgment and I am sending it this way - - void WriteData(std::string content) - { - send(newsockfd,content.c_str(),content.length(),0); - } - - WriteData(""00000000""); - -My question is if I am sending this data corectly ? - - - [1]: https://www.ietf.org/rfc/rfc1179.txt",LQ -"Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click - If Len(Trim(TextBox1.Text)) = 0 Then - MsgBox(""Please Enter Current Odometer For Specified Vehicle"", MsgBoxStyle.Critical, ""Error"") - TextBox1.Focus() - Else - Dim time As DateTime = DateTimePicker1.Value.Date - Dim format As String = ""yy-MM-dd"" - Dim newdate = time.ToString(format) - Dim SQLStatement As String = ""IF EXISTS (SELECT * FROM services_list WHERE vehicle_id='"" & Label7.Text & ""' AND service='"" & ComboBox1.Text & ""') BEGIN UPDATE services_list Set service_date='"" & newdate & ""', note='"" & RichTextBox1.Text & ""', odometer='"" & TextBox1.Text & ""' WHERE vehicle_id='"" & Label7.Text & ""' AND service='"" & ComboBox1.Text & ""' End Else BEGIN INSERT INTO services_list(vehicle_id,service,service_date,note,odometer,milesorkm) VALUES('"" & Label7.Text & ""', '"" & ComboBox1.Text & ""', '"" & newdate & ""', '"" & RichTextBox1.Text & ""', '"" & TextBox1.Text & ""', '"" & Label8.Text & ""') END"" - Dim Query2 As String = ""Select * from customers_cars where vin_number='"" & ComboBox3.Text & ""'"" - Dim cmd As MySqlCommand = New MySqlCommand(Query2, MySqlConn) - Reader = cmd.ExecuteReader - Try - While Reader.Read() - Dim lastod = Reader.GetInt32(""last_visit_odometer"").ToString - Label9.Text = lastod - If TextBox1.Text <= Label9.Text Then - MsgBox(""Incorrect Odometer"") - Else - Reader.Dispose() - cmd.CommandText = SQLStatement - cmd.CommandType = CommandType.Text - cmd.Connection = MySqlConn - cmd.ExecuteNonQuery() - MsgBox(""Successfully Added!"") - End If - Reader.Dispose() - End While - Catch ex As Exception - MsgBox(ex.Message) - End Try - End If - End Sub",LQ -"

When I use a prototype table view, I always have to conform to the protocol TableViewDataSource. I always forget what methods I need to implement, so I have to look at the source of the protocol every time. This is really time consuming.

- -

I think Xcode must have a feature that automatically implements the needed methods for you, right? Just like IntelliJ IDEA, Eclipse, and Visual Studio.

- -

I want to know where can I find this feature. If there's isn't, is there a workaround for this? At least I don't have to open the source code of the protocol each time I conform to it.

- -

If you don't understand what I mean, here's some code:

- -

I have a protocol

- -
protocol Hello {
-    func doStuff ()
-}
-
- -

When I conform to it,

- -
class MyClass: Hello {
-
-}
-
- -

I often don't remember the names of the methods that I need to implement. If Xcode has a feature that turns the above code, into this:

- -
class MyClass: Hello {
-    func doStuff () {
-        code
-    }
-}
-
- -

Now you understand what I mean? I just want to ask where to find such a feature.

-",HQ -"

I want to be able to detect if a mongo server is available from the java driver for the purpose of reacting to any abnormal events as one would in JDBC land etc. It all works fine when the server is up but I am struggling to understand why it is so difficult to detect errors. I have a feeling its because the mongo client runs in a different thread and it doesn't re throw to me or something?

- -
try {
-        MongoClient mongoClient = new MongoClient(""localhost"", 27017);
-        MongoDatabase db = mongoClient.getDatabase(""mydb"");
-        // if db is down or error getting people collection handle it in catch block
-        MongoCollection<Document> people = commentarr.getCollection(""people"");
-    } catch (Exception e) {
-        // handle server down or failed query here.
-    }
-
- -

The result is

- -
INFO: Exception in monitor thread while connecting to server localhost:27017
-
- -

With the resulting stack trace containing a few different exceptions which I have tried to catch but my catch blocks still didn't do anything.

- -
com.mongodb.MongoSocketOpenException: Exception opening socket
-Caused by: java.net.ConnectException: Connection refused
-
- -

I am using the java mongodb driver 3.0.4, most posts I read are from an older API with hacks like MongoClient.getDatabaseNames() which throws a MongoException if errors, except this is deprecated now and replaced with MongoClient.listDatabaseNames() which doesn't have the same error throwing semantics.

- -

Is there a way to just execute a mongo query from the java driver in a try catch block and actually have the exception caught?

-",HQ -"Ok guys i am trying to implement spinner in in Android Studio - -These are my imports - - import android.widget.ArrayAdapter; - import android.widget.EditText; - import android.widget.Spinner; - import android.widget.AdapterView; - import android.widget.Toast; - import android.widget.AdapterView.OnItemSelectedListener; - -This is my java. Here I get the the setOnItemSelectedListner in red and says cannot be resolved. I am importing it above despite that it is showing. What could be the issue. - - Spinner spinner = (Spinner) findViewById(R.id.spinner); - spinner.setOnItemSelectedListner(this); - -The whole code is like this.... - - - import android.location.Address; - import android.location.Geocoder; - import android.location.Location; - import android.support.v4.app.FragmentActivity; - import android.os.Bundle; - import android.view.View; - import android.widget.ArrayAdapter; - import android.widget.EditText; - import android.widget.Spinner; - import android.widget.AdapterView; - import android.widget.Toast; - import android.widget.AdapterView.OnItemSelectedListener; - import android.widget.AdapterView.OnItemSelectedListener; - import com.google.android.gms.maps.CameraUpdateFactory; - import com.google.android.gms.maps.GoogleMap; - import com.google.android.gms.maps.OnMapReadyCallback; - import com.google.android.gms.maps.SupportMapFragment; - import com.google.android.gms.maps.model.LatLng; - import com.google.android.gms.maps.model.MarkerOptions; - - import java.io.IOException; - import java.util.ArrayList; - import java.util.List; - - public class MapsActivity extends FragmentActivity implements OnMapReadyCallback { - - private GoogleMap mMap; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_maps); - - SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() - .findFragmentById(R.id.map); - mapFragment.getMapAsync(this); - - } - - - Spinner spinner = (Spinner) findViewById(R.id.spinner); - - spinner.setOnItemSelectedListner(this); - - - List categories = new ArrayList(); - categories.add(""Automobile""); - categories.add(""Business Services""); - categories.add(""Computers""); - categories.add(""Education""); - categories.add(""Personal""); - categories.add(""Travel""); - - - ArrayAdapter dataAdapter = new ArrayAdapter(this, android.R.layout.simple_spinner_item, categories); - - - dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); - - - spinner.setAdapter(dataAdapter); - } - - @Override - public void onItemSelected(AdapterView parent, View view, int position, long id) { - - String item = parent.getItemAtPosition(position).toString(); - - - Toast.makeText(parent.getContext(), ""Selected: "" + item, Toast.LENGTH_LONG).show(); - } - public void onNothingSelected(AdapterView arg0) { - - } - -",LQ -"As the title Describe to Track, - Is it possible to track every activity of a user in his iphone and display it - -For example - A user ""X"" unlock his iphone(slide to unlock)
then he make a call after that played a game
then open a camera and taken a picture
then enter some reminder
and finally he close / lock his iphone - -The challenge is to display all details when user unlock his phone, lock his phone and other activity he has done in his iphone
- - - [Example - user open a UITableView application where the tableview data is populated with those activity like the image below
-.......... -any link or any tutorial for reference -Thanks you in advance friends - -[![UITableView][1]][1] - - - - [1]: http://i.stack.imgur.com/zSENr.png",LQ -"

I have seen on other AndroidStudio-pictures, that there is a RAM usage at the right bottom. I tried to setup this statuslist o the bottom. But a rightclick didn`t help me. How can I switch on the RAM usage in AndroidStudio ?

-",HQ -"

On a blog on the progress of C++17 I read the following:

- -
-

P0007 proposes a helper function template as_const, which simply - takes a reference and returns it as a reference to const.

- -
template <typename T> std::add_const_t<T>& as_const(T& t) { return t }
-template <typename T> void as_const(T const&&) = delete;
-
-
- -

Why is the const&& overload deleted?

-",HQ -"

In Windows 10, when I launch MS PowerShell to ssh through a container in Kitematic at windows, I've noticed that I can't backspace or delete, instead I get ^H for backspace instead of actually delete previous character.

- -

Do I miss something?

-",HQ -"

I installed Oracle JDK from the webupd8team/java PPA, and then installed the visualvm package. When starting visualvm, I get the following error message:

- -
[beni:~]$ visualvm
-No jdkhome found
-
- -

My $JAVA_HOME is set correctly to /usr/lib/jvm/java-7-oracle.

- -

Also, when starting visualvm with the jdkhome property set, I get the same error:

- -
[beni:~]$ visualvm --jdkhome $JAVA_HOME
-No jdkhome found
-
-",HQ -"I have the real path of an image which I am retrieving from my Database. I want to set the imageView using the real path (/storage/emulated/0/DCIM/100MEDIA/image.jpg) - -How can this be done. - - public void getIMG(){ - Cursor res = myDb.GetRow(id); - if(res.moveToFirst()){ - String path = res.getString(DatabaseHelper.ROWIMG); - /*img.set'???'*/ - - - } - } - -",LQ -"

Why would one use contextlib.suppress to suppress an exception, instead of try/except with a pass?

- -

There is no difference in the amount of characters between these two methods (if anything, suppress has more characters), and even though code is often counted in LOC instead of characters, suppress also seems to be much slower than try/except in both cases, when an error is raised and when it's not:

- -
Python 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:27:37) [MSC v.1900 64 bit (AMD64)] on win32
-Type ""copyright"", ""credits"" or ""license()"" for more information.
->>> from timeit import timeit
->>> # With an error
->>> timeit(""""""with suppress(ValueError):
-    x = int('a')"""""", setup=""from contextlib import suppress"")
-1.9571568971892543
->>> timeit(""""""try:
-    x = int('a')
-except ValueError:
-    pass"""""")
-1.0758466499161656
->>> # With no error
->>> timeit(""""""with suppress(ValueError):
-    x = int(3)"""""", setup=""from contextlib import suppress"")
-0.7513525708063895
->>> timeit(""""""try:
-    x = int(3)
-except ValueError:
-    pass"""""")
-0.10141028937128027
->>> 
-
-",HQ -"

After Updating the android version 1.5 to 2.0 Preview4. Android studio Debugger unable to find the local variable defined in method definition. For reference, find the below screenshot.

- -

-",HQ -"I'm trying to read char from port. writing to the port works perfectly, reading - not so much. -here is my code: - - private void Com_Port_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e) - { - char val; - try - { - val = Convert.ToChar(Com_Port.ReadByte()); // get the new byte from port - - label6.Text = Convert.ToString(val); - - } - catch (Exception) { } - } -cracking my head over it for the past 4 hours.",LQ -"

I am new to android studio and volley library so please bear with me.

- -

I've added volley library by GitHub and then and added this line to build gradle file: compile 'com.android.support:appcompat-v7:23.0.1'

- -

And now I am trying some tutorials about request and response from api, but for some reason I cannot make an instance of RequestQueue why? -I am using Android 4.0.3 IceCreamSandwish

- -

Thank you

-",HQ -"

I'm developing a Play 2.4 application and would like SBT to run webpack to generate static assets during compilation.

- -

I tried https://github.com/stejskal/sbt-webpack but it does't seem to work for me.

-",HQ -"

I'm sure this is simple but cant find the answer.

- -

There is a standard Jekyll/Liquid post iterator. How do i use the {% if %} statement below to put the <hr> element for each post except the last?

- -
<ul class=""post-list"">
-    {% for post in site.posts %}
-      {% if post.url %}
-      <br>
-        <li>
-          <h2>
-            <a class=""post-link"" href=""{{ post.url | prepend: site.baseurl }}"">{{ post.title }}</a>
-          </h2>
-          <span class=""post-meta"">{{ post.date | date: ""%b %-d, %Y"" }}</span>
-        </li>
-
-        **** {% if post != $last %} ***** How do i do this??
-          <hr>
-        {% endif %}
-      {% endif %}
-    {% endfor %}
-  </ul>
-
-",HQ -"I have to print part of my page by `window.print()`. -Here is the code: - - function printDiv(divName) { - var printContents = document.getElementById(divName).innerHTML; - var originalContents = document.body.innerHTML; - document.body.innerHTML = printContents; - window.print(); - document.body.innerHTML = originalContents; - } - -I know that copy innerHTML and pasting it after print command can cause lost of event listener. But it can be overcome by a `$('body').on` attachment. But as I am novice to jquery, I do not know how can I use this jquery on method in case of datepicker attachment. So, everytime I print part of my webpage using this type of javascript print method, datepicker is lost and it is not attaching in the desired input fields. - -Please visit my site to check the situation: -[http://infomamun.xyz][1] - -and click on the `#dob` or other input fields to see the workable datepicker. Then please press `Print` button and cancel or done the print job. After that you can see that there is no datepicker attached on click of `#dob` and other input fields of the table. - -How to resolve this issue? - -[NB: please don't recommend css print system, I have to use this method. Also, please don't downvote my Question. I am very novice to jquery] - - - [1]: http://infomamun.xyz",LQ -"I am newbie to openCV and JAVA. It is been two days I am searching for the solutions continuously. -I want to check form this -[Image][1] that red circle exists inside the square after convert getting following binary images. -See Binary Images of [circle and square][1] - -Please help me ASAP. Thanks in advance. - - - [1]: http://i.stack.imgur.com/WrZXq.png",LQ -"
-

bufferutil@1.2.1 install /home/sudthenerd/polymer-starter-kit-1.2.1/node_modules/bufferutil > node-gyp rebuild gyp ERR! configure error gyp ERR! stack Error: Can't find Python executable ""/path/to/executable/python2.7"", you can set the PYTHON env variable. gyp ERR! stack at failNoPython (/usr/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:401:14) gyp ERR! stack at /usr/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:330:11 gyp ERR! stack at F (/usr/lib/node_modules/npm/node_modules/which/which.js:78:16) gyp ERR! stack at E (/usr/lib/node_modules/npm/node_modules/which/which.js:82:29) gyp ERR! stack at /usr/lib/node_modules/npm/node_modules/which/which.js:93:16 gyp ERR! stack at FSReqWrap.oncomplete (fs.js:82:15) gyp ERR! System Linux 3.13.0-74-generic gyp ERR! command ""/usr/bin/nodejs"" ""/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js"" ""rebuild"" gyp ERR! cwd /home/sudthenerd/polymer-starter-kit-1.2.1/node_modules/bufferutil gyp ERR! node -v v5.3.0 gyp ERR! node-gyp -v v3.2.1 gyp ERR! not ok npm WARN install:bufferutil@1.2.1 bufferutil@1.2.1 install: node-gyp rebuild npm WARN install:bufferutil@1.2.1 Exit status 1 > utf-8-validate@1.2.1 install /home/sudthenerd/polymer-starter-kit-1.2.1/node_modules/utf-8-validate > node-gyp rebuild gyp ERR! configure error gyp ERR! stack Error: Can't find Python executable ""/path/to/executable/python2.7"", you can set the PYTHON env variable. gyp ERR! stack at failNoPython (/usr/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:401:14) gyp ERR! stack at /usr/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:330:11 gyp ERR! stack at F (/usr/lib/node_modules/npm/node_modules/which/which.js:78:16) gyp ERR! stack at E (/usr/lib/node_modules/npm/node_modules/which/which.js:82:29) gyp ERR! stack at /usr/lib/node_modules/npm/node_modules/which/which.js:93:16 gyp ERR! stack at FSReqWrap.oncomplete (fs.js:82:15) gyp ERR! System Linux 3.13.0-74-generic gyp ERR! command ""/usr/bin/nodejs"" ""/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js"" ""rebuild"" gyp ERR! cwd /home/sudthenerd/polymer-starter-kit-1.2.1/node_modules/utf-8-validate gyp ERR! node -v v5.3.0 gyp ERR! node-gyp -v v3.2.1 gyp ERR! not ok npm WARN install:utf-8-validate@1.2.1 utf-8-validate@1.2.1 install: node-gyp rebuild npm WARN install:utf-8-validate@1.2.1 Exit status 1

-
-",HQ -"

Why in an Ecto changeset method do you set the params to the default :empty atom? e.g.

- -
def changeset(user, params \\ :empty) do
-   ...
-
- -

Does this allow you to call the changeset method with nil for params?

-",HQ -"

I'm working with Abstract Syntax Trees in Python 3. The ast library gives many ways to get children of the node (you can use iter_child_nodes() or walk()) but no ways to get parent of one. Also, every node has links to its children, but it hasn't links to its parent.

- -

How I can get the parent of AST node if I don't want to write some plugin to ast library?

- -

What is the most correct way to do this?

-",HQ -"

I'm doing a angularjs blog tutorial, in the code example I see this new file type ""tpl.html"":

- -
$routeProvider
-.when('/', {
-templateUrl: 'views/post-list.tpl.html',
-controller: 'PostListController',
-controllerAs: 'postlist'
-})
-.when('/post/:postId', {
-templateUrl: 'views/post-detail.tpl.html',
-controller: 'PostDetailController',
-controllerAs: 'postdetail'
-})
-.when('/new', {
-templateUrl: 'views/post-create.tpl.html',
-controller: 'PostCreateController',
-controllerAs: 'postcreate'
-});
-
- -

What is this file type? Is different to html files?

-",HQ -"

If you download a compose.io backup of a mongodb instance and uncompress the .tar file you end up with .ns and extensions that are single digits. How do you restore the db from these?

-",HQ -"

I'm trying to build a static site generator using Django (because its resourceful that way), and right now my problems are dealing with the Django command that is supposed to build my static site content into a directory. Apparently my 'NoneType' object has no attribute 'split', but I dont know what that 'NoneType' object is.

- -
(thisSite) C:\Users\Jaysp_000\thisSite\PROJECTx>python prototype.py build
-Traceback (most recent call last):
-  File ""prototype.py"", line 31, in <module>
-    execute_from_command_line(sys.argv)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\core\management\__init__.py"",
- line 338, in execute_from_command_line
-    utility.execute()
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\core\management\__init__.py"",
- line 330, in execute
-    self.fetch_command(subcommand).run_from_argv(self.argv)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\core\management\base.py"", lin
-e 390, in run_from_argv
-    self.execute(*args, **cmd_options)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\core\management\base.py"", lin
-e 441, in execute
-    output = self.handle(*args, **options)
-  File ""C:\Users\Jaysp_000\thisSite\PROJECTx\sitebuilder\management\commands\build.py"", li
-ne 38, in handle
-    response = this_client_will.get(the_page_url)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\test\client.py"", line 500, in
- get
-    **extra)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\test\client.py"", line 303, in
- get
-    return self.generic('GET', path, secure=secure, **r)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\test\client.py"", line 379, in
- generic
-    return self.request(**r)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\test\client.py"", line 466, in
- request
-    six.reraise(*exc_info)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\utils\six.py"", line 659, in r
-eraise
-    raise value
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\core\handlers\base.py"", line
-132, in get_response
-    response = wrapped_callback(request, *callback_args, **callback_kwargs)
-  File ""C:\Users\Jaysp_000\thisSite\PROJECTx\sitebuilder\views.py"", line 35, in page
-    return render(request, 'page.html', context)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\shortcuts.py"", line 67, in re
-nder
-    template_name, context, request=request, using=using)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\template\loader.py"", line 99,
- in render_to_string
-    return template.render(context, request)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\template\backends\django.py"",
- line 74, in render
-    return self.template.render(context)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\template\base.py"", line 208,
-in render
-    with context.bind_template(self):
-  File ""C:\Python34\Lib\contextlib.py"", line 59, in __enter__
-    return next(self.gen)
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\template\context.py"", line 23
-5, in bind_template
-    updates.update(processor(self.request))
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\template\context_processors.p
-y"", line 56, in i18n
-    context_extras['LANGUAGE_BIDI'] = translation.get_language_bidi()
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\utils\translation\__init__.py
-"", line 177, in get_language_bidi
-    return _trans.get_language_bidi()
-  File ""C:\Users\Jaysp_000\thisSite\lib\site-packages\django\utils\translation\trans_real.
-py"", line 263, in get_language_bidi
-    base_lang = get_language().split('-')[0]
-AttributeError: 'NoneType' object has no attribute 'split'
-
- -

It seems that my problem lies in my command file, which I call build. The traceback also brings up my views file, which works well on its own (that is, my html files can be properly served on the local server), but I will include it anyway.

- -

build.py

- -
import os, shutil
-from django.conf import settings
-from django.core.management import call_command
-from django.core.management.base import BaseCommand
-from django.core.urlresolvers import reverse
-from django.test.client import Client
-
-def get_pages():
-    for name in os.listdir(settings.STATIC_PAGES_DIRECTORY):
-        if name.endswith('.html'):
-            yield name[:-5]
-
-
-class Command(BaseCommand):
-    help = 'Build static site output.'
-
-    def handle(self, *args, **options):
-        """"""Request pages and build output.""""""
-        if os.path.exists(settings.SITE_OUTPUT_DIRECTORY):
-            shutil.rmtree(settings.SITE_OUTPUT_DIRECTORY)
-        os.mkdir(settings.SITE_OUTPUT_DIRECTORY) 
-        os.makedirs(settings.STATIC_ROOT)   
-        call_command('collectstatic', interactive=False, clear=True, verbosity=0)
-        this_client_will = Client()
-
-        for page in get_pages():
-            the_page_url = reverse('page',kwargs={'slug': page})      # PROBLEM SEEMS TO GENERATE STARTING HERE
-            response = this_client_will.get(the_page_url)
-            if page == 'index.html':
-                output_dir = settings.SITE_OUTPUT_DIRECTORY
-            else:
-                output_dir = os.path.join(settings.SITE_OUTPUT_DIRECTORY, page)
-                os.makedirs(output_dir)
-            with open(os.path.join(output_dir, 'index.html'), 'wb', encoding='utf8') as f:
-                f.write(response.content)
-
- -

views.py

- -
import os
-from django.conf import settings
-from django.http import Http404
-from django.shortcuts import render
-from django.template import Template
-from django.utils._os import safe_join
-
-# Create your views here.
-
-def get_page_or_404(name):
-    """"""Returns page content as a Django template or raise 404 error""""""
-    try:
-        file_path = safe_join(settings.STATIC_PAGES_DIRECTORY, name)
-    except ValueError:
-        raise Http404(""Page Not Found"")
-    else:
-        if not os.path.exists(file_path):
-            raise Http404(""Page Not Found"")
-
-    with open(file_path,""r"", encoding='utf8') as f:
-        the_page = Template(f.read())
-
-    return the_page
-
-def page(request, slug='index'):
-    """""" Render the requested page if found """"""
-    file_name = '{0}.html'.format(slug)
-    page = get_page_or_404(file_name)
-    context = {'slug': slug, 'page': page} 
-    return render(request, 'page.html', context)   # THE TRACEBACK POINTS AT THIS LINE, TOO
-
- -

and just in case it becomes useful to know, here is my urls.py:

- -
from django.conf.urls import include, url
-
-urlpatterns = [
-    url(r'^page/(?P<slug>[-\w]+)/$', 'sitebuilder.views.page', name='page'),
-    url(r'^page$', 'sitebuilder.views.page', name='homepage'),
-]
-
- -

I find this frustrating, primarily because this problem seems to be tied to the reverse() function, as seen in the build module, and I havent had a great time using that function for as long as I can remember, but I dont know if this is really my problem. Can someone help me figure out where my issue is coming from and how to solve it (if you have any tips)? It would be much appreciated.

-",HQ -"

I have a class, and another class that extends that class.

- -
class Shape {
-  constructor() {
-    return this;
-  }
-}
-class Circle extends Shape {
-  constructor() {
-    super();
-    return this;
-  }
-}
-let foo = new Circle();
-
- -

I can get foo's class with

- -
let className = foo.constructor.name 
-// returns string 'Circle'
-
- -

Is it possible to get the name of foo's superclass ('Shape') in a similar manner?

-",HQ -"

I have a bunch of .gz files in a folder in hdfs. I want to unzip all of these .gz files to a new folder in hdfs. How should i do this?

-",HQ -"I am very new to shell scripting. I need your help on below senario. - -I have the script output like below. - - Filename Destname rowcount bytesize - file1 default 1488 2248 - file2 default 123 657 - file3 default 123 456 - file4 default 567 124 - -Now I need to mail this ouput in table format with proper indentation. Please help me to write the script for the same. -",LQ -"

I know that we can import all named modules with alias as below,

- -
import * as name from ""module-name"";
-
- -

Ref: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import

- -

Actually, I have re-exported my modules in A.js and the same is inherited in B.js. PFB. Now, it's two level of inheritance, so it's not a big deal to import the named modules. But, when I'm taking this to 5 level of inheritance (A -> B -> C -> D -> E), I need to import all named modules in all files and need to do the (re)export the same in all. Instead of doing this,

- -
    -
  • Is there any other way to copy scope of all named modules into all level without reiterating the wheel (Import and Export)
  • -
  • Behind the scene of this design is to make them to follow Opps concept and to avoid the redeclaration of the same modules.
  • -
- -

A.js

- -
import React from 'react';
-import I18n from 'i18n-js';
-import m1 from 'module1';
-import m2 from 'module2';
-
-export default class A extends React.Component {}
-
-export {React, I18n, m1, m2)
-
- -

B.js

- -
import BaseComponent from './A';
-import {React, I18n, m1, m2) from './A;
-
-export default class B extends A {}
-
- -

Is there any way to import all named modules without alias like import {*} from './A' (instead of 2nd in B.js)

-",HQ -"I have to check for each **input**, print out if it is an instance of a *primitive or referenced* type. But I am getting same output each time. Any Help? - -**Note: I do search SO, but no luck.** - -Code: ------ - - public class Demo { - - public static void main(String[] args) throws IOException { - /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */ - BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); - - for(int i=0; i<9; ++i){ - String input = br.readLine(); - showPremitive(input); - } - } - public static void showPremitive(Object input){ - try{ - if (input instanceof Short) - System.out.println(""Primitive : short""); - else if(input instanceof Integer) - System.out.println(""Primitive : int""); - else if(input instanceof Long) - System.out.println(""Primitive : long""); - else if(input instanceof Float) - System.out.println(""Primitive : float""); - else if(input instanceof Double) - System.out.println(""Primitive : double""); - else if(input instanceof Boolean) - System.out.println(""Primitive : bool""); - else if(input instanceof Character) - System.out.println(""Primitive : char""); - else if(input instanceof Byte) - System.out.println(""Primitive : byte""); - else - System.out.println(""Reference : string""); - } - catch (InputMismatchException e){ - System.out.println(""crashing down""+e); - } - } - -} - -**Output:** - - Reference : string - Reference : string - Reference : string - Reference : string - Reference : string - Reference : string - Reference : string - Reference : string - Reference : string - -",LQ -"

I have a CMake build that sends /IMPLIB to the linker on Windows. This is a problem in my case because the argument to implib is the same path as one of the input files. -It looks to me that CMake will always issue /IMPLIB when building with Visual Studio, and the passed argument cannot be modified. -Is there a way to control this behaviour?

-",HQ -" - -I want this code to get HTML code from a txt file and add it in here: - -
- -The txt file contains the following: - - - -The function above doesn't work but i cant find a way to fix this, please help! Thanks!",LQ -"

I have a folder in my asp.net project that contains some javascript files. Just before building project, they are minified and copied to ""wwwroot"" folder using gulp. It works great, but when I make some changes to any of javascript files, I have to restart entire project (to run tasks connected with building) or manually run tasks from ""Task Runner Explorer"".

- -

It takes some time and it is quite irritating. Is it some way to run those tasks as soon as I save any of javascript files in this folder?

-",HQ -"

Can you please explain the difference between texture and sprite? When we zoom in a sprite, it appears blurry because it's basically an image. Is it the same for a texture?

- -

I read this comment on the image below online:

- -
-

The background layers are textures and not sprites.

-
- -

- -

Can someone explain?

-",HQ -"

I am new to web development and I have just started building an Angular 2 app. At this point I am trying to create some CRUD components/forms but I find my self duplicating a lot of code. I am not going to ask what are the common best practices to avoid code duplication and achieve component reusability when designing CRUD applications with Angular2, because the post will get locked. I will rather focus on one particular aspect:

- -

I have a ""CRUD page"" that has a list (it is an html table actually) of resources and several buttons that open up ""create"", ""read"", and ""edit"" forms. The list is a separate component on its own and the create/read/edit separate components as well. Each row of the table includes another component which knows how to render a resource item. I will call this <resource-item> component. However, I have several of those ""CRUD pages"", each page for a different resource. So what I want is to reuse the list component for all the resources. So the first thing to do is to add Inputs or Attributes to the list component in order to control its labels. So far so good.

- -

But what about the <resource-item> component? Each resource of my application might have a completely different structure. As a result I will need different components for different resources, e.g.: <resource-a-item>, <resource-b-item>, etc. How can I specify which resource item component I want to use every time I create a list component?

- -

Thank you for your time.

-",HQ -"I'm writing a hangman game using Python, based on a specific set of instructions. I specifically need to use a for loop in order to replace all the letters in a word with underscores and in fact I am succeeding in doing so. However I have one slight issue, I'm getting a new line of underscores printed for every letter in my word. Is there a way to get rid of this? Can someone guide me on what is wrong with my logic? Thanks in advance. - - word = ""test"" - - def createBlank(word): - for letter in word: - blanks = '_' * len(word) - print(blanks) - -My result is as you would assume: - - >>> word - 'test' - >>> createBlank(word) - ____ #<- only need this line to be printed.. is it even possible using a for? - ____ - ____ - ____",LQ -"

Given the class is extended from non-class (including, but not limited to, function),

- -
function Fn() {} 
-
-class Class extends Fn {
-    constructor() {
-        super();
-    }
-}
-
- -

what are the the consequences? What do the specs say on that?

- -

It looks like the current implementations of Babel, Google V8 and Mozilla Spidermonkey are ok with that, and TypeScript throws

- -
-

Type '() => void' is not a constructor function type

-
- -

If this is a valid ES2015 code, what's the proper way to handle it in TypeScript?

-",HQ -"

I've been trying to make a stopwatch in react and redux. I've been having trouble trouble figuring out how to design such a thing in redux.

- -

The first thing that came to mind was having a START_TIMER action which would set the initial offset value. Right after that, I use setInterval to fire off a TICK action over and over again that calculates how much time has passed by using the offset, adds it to the current time, and then updates the offset.

- -

This approach seems to work, but I'm not sure how I would clear the interval to stop it. Also, it seems like this design is poor and there is probably a better way to do it.

- -

Here is a full JSFiddle that has the START_TIMER functionality working. If you just want to see what my reducer looks like right now, here it is:

- -
const initialState = {
-  isOn: false,
-  time: 0
-};
-
-const timer = (state = initialState, action) => {
-  switch (action.type) {
-    case 'START_TIMER':
-      return {
-        ...state,
-        isOn: true,
-        offset: action.offset
-      };
-
-    case 'STOP_TIMER':
-      return {
-        ...state,
-        isOn: false
-      };
-
-    case 'TICK':
-      return {
-        ...state,
-        time: state.time + (action.time - state.offset),
-        offset: action.time
-      };
-
-    default: 
-      return state;
-  }
-}
-
- -

I would really appreciate any help.

-",HQ -"

We currently use T4 templates to generate C# code files based on C# Code (Entity POCO's) and the EDMX (in older applications)

- -

Moving to ASP.NET 5 with a view to support cross platform development, are there any code generation tools available that can read a projects class & meta data structures, and to generate C# files at design time, similar to T4 templates?

-",HQ -"

Im using Cordova in Linux mint 17

- -

I installed android sdk , cordova , android studio , nodejs 4

- -

problem is here -when i wanna build app in codova and run this on terminal :

- -

sudo cordova build android

- -

it shows

- -
Running command: /home/tnt/hello12/platforms/android/cordova/build 
-[Error: Failed to find 'ANDROID_HOME' environment variable. Try setting setting it manually.
-Failed to find 'android' command in your 'PATH'. Try update your 'PATH' to include path to valid SDK directory.]
-ERROR building one of the platforms: Error: /home/tnt/hello12/platforms/android/cordova/build: Command failed with exit code 2
-You may not have the required environment or OS to build this project
-Error: /home/tnt/hello12/platforms/android/cordova/build: Command failed with exit code 2
-
- -

I put this code

- -
 export HOME=""/home/tnt""
-    export ANDROID_HOME=""$HOME/android/sdk/tools""
-    export ANDROID_PLATFORM_TOOLS=""$HOME/android/sdk/platform-tools""
-    export PATH=""$ANDROID_HOME:$ANDROID_PLATFORM_TOOLS:$PATH""
-    export JAVA_HOME=""/usr/lib/jvm/java-7-openjdk-amd64""
-    export ANT_HOME=""/usr/share/ant""
-    export PATH=""$ANT_HOME/bin:$PATH""
-    export ANDROID_HOME=""/home/tnt/android/sdk/tools""
-
- -

on my

- -
/home/tnt/.bash_profile  
-/home/tnt/.bashrc
-/home/tnt/.profile  
-/root/.bash_profile  
-/root/.bashrc
-/root/.profile 
-
- -

but it wont works

-",HQ -"

The IDE being used is WebStorm 11.0.3, the tslint is configured and works, but, it hangs because it tries to parse large *.d.ts library files.

- -

Is there a way to ignore a particular file or directory?

-",HQ -"

I have a dataframe with latitude and longitude pairs.

- -

Here is my dataframe look like.

- -
    order_lat  order_long
-0   19.111841   72.910729
-1   19.111342   72.908387
-2   19.111342   72.908387
-3   19.137815   72.914085
-4   19.119677   72.905081
-5   19.119677   72.905081
-6   19.119677   72.905081
-7   19.120217   72.907121
-8   19.120217   72.907121
-9   19.119677   72.905081
-10  19.119677   72.905081
-11  19.119677   72.905081
-12  19.111860   72.911346
-13  19.111860   72.911346
-14  19.119677   72.905081
-15  19.119677   72.905081
-16  19.119677   72.905081
-17  19.137815   72.914085
-18  19.115380   72.909144
-19  19.115380   72.909144
-20  19.116168   72.909573
-21  19.119677   72.905081
-22  19.137815   72.914085
-23  19.137815   72.914085
-24  19.112955   72.910102
-25  19.112955   72.910102
-26  19.112955   72.910102
-27  19.119677   72.905081
-28  19.119677   72.905081
-29  19.115380   72.909144
-30  19.119677   72.905081
-31  19.119677   72.905081
-32  19.119677   72.905081
-33  19.119677   72.905081
-34  19.119677   72.905081
-35  19.111860   72.911346
-36  19.111841   72.910729
-37  19.131674   72.918510
-38  19.119677   72.905081
-39  19.111860   72.911346
-40  19.111860   72.911346
-41  19.111841   72.910729
-42  19.111841   72.910729
-43  19.111841   72.910729
-44  19.115380   72.909144
-45  19.116625   72.909185
-46  19.115671   72.908985
-47  19.119677   72.905081
-48  19.119677   72.905081
-49  19.119677   72.905081
-50  19.116183   72.909646
-51  19.113827   72.893833
-52  19.119677   72.905081
-53  19.114100   72.894985
-54  19.107491   72.901760
-55  19.119677   72.905081
-
- -

I want to cluster this points which are nearest to each other(200 meters distance) following is my distance matrix.

- -
from scipy.spatial.distance import pdist, squareform
-distance_matrix = squareform(pdist(X, (lambda u,v: haversine(u,v))))
-
-array([[ 0.        ,  0.2522482 ,  0.2522482 , ...,  1.67313071,
-     1.05925366,  1.05420922],
-   [ 0.2522482 ,  0.        ,  0.        , ...,  1.44111548,
-     0.81742536,  0.98978355],
-   [ 0.2522482 ,  0.        ,  0.        , ...,  1.44111548,
-     0.81742536,  0.98978355],
-   ..., 
-   [ 1.67313071,  1.44111548,  1.44111548, ...,  0.        ,
-     1.02310118,  1.22871515],
-   [ 1.05925366,  0.81742536,  0.81742536, ...,  1.02310118,
-     0.        ,  1.39923529],
-   [ 1.05420922,  0.98978355,  0.98978355, ...,  1.22871515,
-     1.39923529,  0.        ]])
-
- -

Then I am applying DBSCAN clustering algorithm on distance matrix.

- -
 from sklearn.cluster import DBSCAN
-
- db = DBSCAN(eps=2,min_samples=5)
- y_db = db.fit_predict(distance_matrix)
-
- -

I don't know how to choose eps & min_samples value. It clusters the points which are way too far, in one cluster.(approx 2 km in distance) Is it because it calculates euclidean distance while clustering? please help.

-",HQ -"So my code looks like this - - - -I'm trying to sum all of the numbers that go up to the number that's entered.",LQ -"Any chance to minify the snippet of code below? Something like `if (!$('body#pagina_blog_1 **TO** body#pagina_blog_10).length)....` - -On-line javascript minifires tools do not help... - - - jQuery(function($){ - if (!$('body#pagina_blog_1, body#pagina_blog_2, body#pagina_blog_3, body#pagina_blog_4, body#pagina_blog_5, body#pagina_blog_6, body#pagina_blog_7, body#pagina_blog_8, body#pagina_blog_9, body#pagina_blog_10).length) return; - - // do stuff - - });",LQ -"

I'm developing an app, which uses the facebook login. After login the user must set additional informations and a profile picture, with the picture being provided from that logged in facebook account as well. Now the whole account details, including the URL to that profile picture, are saved in my database.

- -

To my surprise the profile picture has suddenly stopped working. Opening it's URL in a browser gives me this message ""URL signature expired""

- -

https://scontent.xx.fbcdn.net/hphotos-xpa1/v/t1.0-9/p720x720/10846350_10204966809307370_2779189783437306470_n.jpg?oh=245bbada6c23f280a1e531e724be85ed&oe=56894D69

- -

Downloading those photos and save them to my own server is not really an option for me. Is there anything I can do to make that URL durable?

-",HQ -"This is what I have so far... - let query = PFQuery(className: ""Genres"") - //Find objects in the background - query.findObjectsInBackgroundWithBlock({ - //store objects in an array - (objectsArray :[PFObject]?, error: NSError?) -> Void in - - let objectIDs = objectsArray - // objects being added to array - for i in 0...objectIDs!.count-1{ - // add a new element in the array - self.iDArray.append(objectIDs![i].valueForKey(""objectId"") as! String) - //store song name in song array - self.NameArray.append(objectIDs![i].valueForKey(""SongName"")as! String) - self.tableView.reloadData() - - NSLog(""\(objectIDs)"") - - } - - }) - } - - func grabSong () { - let songQuery = PFQuery(className: ""Genres"") - songQuery.getObjectInBackgroundWithId(iDArray[SelectedSongNumber], block: { - (object: PFObject?, error : NSError?) -> Void in - - if let audioFile = object?[""SongFile""] as? PFFile { - let audioFileUrlString: String = (audioFile.url)! - let audioFileUrl = NSURL(string: audioFileUrlString)! - AudioPlayer = AVPlayer(URL: audioFileUrl) - AudioPlayer.play() - } - }) - } -",LQ -"

I have been struggling with image upload on server. I am using ngFileUpload on front end. But I always get

- -

""Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource""

- -

Angular Code for file Upload :

- -
 var uploadFile = function (file) {
-      if (file) {
-
-            if (!file.$error) {
-              Upload.upload({
-                  url: baseUrl+'upload',
-                  file: file
-
-
-              }).progress(function (evt) {
-                  var progressPercentage = parseInt(100.0 * evt.loaded / evt.total);
-                  //console.log(evt.total);
-              }).success(function (data, status, headers, config) {
-                  $timeout(function() {
-
-                    console.log(data);
-                    console.log(status);
-                      if(status==200)
-                        {
-
-                          logo_path = data.logo_path;
-
-                        }
-
-                  });
-              });
-            }
-
-      }
-  };
-
- -

On Laravel i have configured CORS like this :

- -
public function handle($request, Closure $next)
-{
-    header(""Access-Control-Allow-Origin: http://localhost:8001/"");
-
-    // ALLOW OPTIONS METHOD
-    $headers = [
-        'Access-Control-Allow-Methods'=> 'POST, GET, OPTIONS, PUT, DELETE',
-        'Access-Control-Allow-Headers'=> 'Content-Type, X-Auth-Token, Origin'
-    ];
-    if($request->getMethod() == ""OPTIONS"") {
-        // The client-side application can set only headers allowed in Access-Control-Allow-Headers
-        return Response::make('OK', 200, $headers);
-    }
-
-    $response = $next($request);
-    foreach($headers as $key => $value)
-        $response->header($key, $value);
-    return $response;
-}
-
- -

The Normal cross domain POST request works fine. i.e $http.post(). I have tried many different variations of headers on angular but none helps. Also the OPTIONS request returns 200 OK but still preflight response failure message is displayed. Can anyone help me with how to further debug this issue?

-",HQ -"

I understand that the following code wraps a number into an object:

- -
var x = Object(5);
-
- -

I therefore expect and understand the following:

- -
alert(x == 5); //true
-alert(x === 5); //false
-
- -

However, I also understand that an object is a list of key/value pairs. So I would have expected the following to be different:

- -
alert(JSON.stringify(5)); //5
-alert(JSON.stringify(x)); //5
-
- -

What does the structure of x look like? And why does it not appear to be in key/value pair format?

-",HQ -"I have implemented viewpager autoscroll. But this triggers much earlier, even before the page loads/visible to user. - -I want to start the autoscroll, after all the pages visible to user. Please suggest how to handle the notification, when pages visible? - -Cheers -AP",LQ -"

I've just started a project to learn Angular2 and Typescript+Javascript. I come from a Java background and my approach to debugging projects is usually a combination of stack traces, compile errors, and - on larger projects - lots of test cases. However, much of this doesn't seem to directly translate to the world of web-dev; particularly debugging my code that's interacting with Angular2's libraries.

- -

Could anyone suggest any approaches that I can take to debug code working with Angular2? Specifically; how can I see what parts of my HTML/TS is causing issues? I've checked the console, from which I can see that I've broken Angular2, but it doesn't seem much more informative from that.

- -

Just to clarify; I don't want help for this specific instance. I'd like to learn how to diagnose+fix these problems myself.

-",HQ -"

I am trying to convert an mp3 file to the format expected by the audio tag in the Amazon Alexa SSML markup language as described here: https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/speech-synthesis-markup-language-ssml-reference

- -

The documentation recommends using https://www.ffmpeg.org/ffmpeg.html

- -

I tried this command but can't find the right codec to use: -ffmpeg -y -i input.mp3 -ar 44100 -ab 48k -codec:a mpeg2 -ac 1 output.mp3

- -

I know I need to convert the file because Alexa fails with the following error: The audio is not of a supported MPEG version

-",HQ -"I have a question about entity framework. - -Will the following code removes a relationship by setting the foreign key to 0? - -entity.relationEntityID = 0;",LQ -"

Is PassportJS using Facebook Authentication enough for an iOS backend with Node JS?

- -

I have the toobusy package as well to decline requests when things get to busy (I'm guessing it would be good for DDOSes).

- -

I'm thinking of using nginx as a reverse proxy to my Node.JS server as well.

- -

What are some more security measures that can scale? Some advice and tips? Anything security related that I should be concerned about that PassportJS's authenticated session can't handle?

-",HQ -"

I am not clear how to use @Intdef when making it a flag like this:

- -
@IntDef(
-  flag = true
-  value = {NAVIGATION_MODE_STANDARD, NAVIGATION_MODE_LIST, NAVIGATION_MODE_TABS})
-
- -

this example is straight from the docs. What does this actually mean ? does it mean all of them are initially set to true ? if i do a ""or"" on the following:

- -
NAVIGATION_MODE_STANDARD | NAVIGATION_MODE_LIST
-
- -

what does it mean ...im a little confused whats happening here.

-",HQ -"

I have studidtemplates table below:

- -

- -

template_id is the primary_key

- -

- -

I want to create a new table referencing template_id as a foreign key. It is named studidtemplatetextelements. See image below:

- -

- -

I created a column template_id in the second table and want to make it a foreign key referencing template_id in studidtemplates table. I did it by clicking the button in the Constraints tab,pointed by an arrow in the image below.

- -

- -

I notice something different. In 'Referencing' option there's no template_id option available. See image below:

- -

- -

Where am I missing?

-",HQ -"

I have the following code in TypeScript:

- -
export class Config
-{
-    private options = new Map<string, string>();
-
-    constructor() {
-    }
-
-    public getOption(name: string): string {
-        return this.options[name]; // <-- This line causes the error.
-    }
-}
-
- -

And the compiler is giving me this error:

- -

Error:(10, 16) TS7017: Index signature of object type implicitly has an 'any' type.

- -

The Map is 'possible' through es6-shim. I am not quite sure what is going on here. Actually this Map confuses me a little. Map is supposed to come from es6-shim which is supposed to implement es6 functionality. But es6 doesn't have static types, right? So, why the Map expects the key/value types as generic arguments? I have seen some people adding a 'noImplicitAny' flag but I want to solve the problem, not ignore it.

- -

Thank you.

-",HQ -"

I'm having one null-able bool (bool?) variable, it holds a value null. One more variable of type pure bool, I tried to convert the null-able bool to bool. But I faced an error ""Nullable object must have a value.""

- -

My C# Code is

- -
bool? x = (bool?) null;
-bool y = (bool)x;
-
-",HQ -"

I use Angular 2.0.0-beta.0 and I want to create and bind some simple HTML directly. Is is possible and how?

- -

I tried to use

- -
{{myField}}
-
- -

but the text in myField will get escaped.

- -

For Angular 1.x i found hits for ng-bind-html, but this seems not be supported in 2.x

- -

thx -Frank

-",HQ -"I am new to regular expressions and basically just playing around with them in my brower console , using MDN as a referance , i tried the below regrex: - - /\bg/g.test('me building and him') - -even if i try `/\bg/g` , i still get false, WHY ? - -The MDN definition says the following for `\b`: - -> Matches a zero-width word boundary, such as between a letter and a -> space. (Not to be confused with [\b]) -> -> For example, /\bno/ matches the ""no"" in ""at noon""; /ly\b/ matches the -> ""ly"" in ""possibly yesterday"". - -So why is the `g` at the end of building not being matched ? , can anybody explain ? ",LQ -"

I apologize in advance for asking such a basic question but I am stumped.

- -

This is a very simple, dummy example. I'm having some issue matching dates in Pandas and I can't figure out why.

- -
df = pd.DataFrame([[1,'2016-01-01'], 
-                   [2,'2016-01-01'],
-                   [3,'2016-01-02'],
-                   [4,'2016-01-03']],
-                   columns=['ID', 'Date'])
-
-df['Date'] = df['Date'].astype('datetime64')
-
- -

Say I want to match row 1 in the above df.
-I know beforehand that I want to match ID 1.
-And I know the date I want as well, and as a matter of fact, I'll extract that date directly from row 1 of the df to make it bulletproof.

- -
some_id = 1
-some_date = df.iloc[1:2]['Date']  # gives 2016-01-01
-
- -

So why doesn't this line work to return me row 1??

- -
df[(df['ID']==some_id) & (df['Date'] == some_date)] 
-
- -

Instead I get -ValueError: Series lengths must match to compare
-which I understand, and makes sense...but leaves me wondering...how else can I compare dates in pandas if I can't compare one to many?

-",HQ -"I want to install cakephp3 on ubuntu14.0.4 in lamp. I put cakephp3 folder in /var/WWW/ path. When I entered `localhost/cakephp3/`in browser, something is not shown and no error is not. - -what should i do??? please help me...",LQ -"I'm new in android and I try using alertdialog but always cover the actionbar. -how can doing something like dropdown menu like the picture shown? - -I[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/dX4lF.png",LQ -"//for some reason it won't update, instead it will add the new data. -I am a beginner, and I have hard time trying to find out the error. -Thank you for the help. -//Read function was working very properly and insert works just fine as well. Its just the update that doesnt work properly, or inserts instead of updating the query or data. - - - - - - - - - - - - - - - Document - - - - - - - - -
- -
- -
- -
- - -
- -
- - -
- -
- -
- - -
- - -
-
- - ",LQ -"

I need to make a calendar with events and I decided to use react-big-calendar. But I need to make events of different colors. So each event will have some category and each category has corresponding color. How can I change the color of the event with react?

- -

Result should look something like this

-",HQ -"

Please find my HomeController and DemoController

- -
class HomeController{
-@RequestMapping(value=""index"")
-public void home(){
-}
-}
-
-class DemoController{
-@RequestMapping(value=""index"")
-public void demo(){
-}
-}
-
- -

when I try to send a request to index, which one will get executed? -I wanted to know how can we have same request mapping value for multiple controllers

-",HQ -"

I am getting lots of this kind of logcat messages related to my application.

- -

11-19 19:04:23.872 3327 3440 I chatty : uid=10085 com.xxxx.yyy expire 18 lines

- -

What are these log messages? Am I missing my actual application logcat logs here?

-",HQ -"

In the Shake documentation it recommends compiling using the flag -with-rtsopts=-I0 to disable idle garbage collection. Why does Shake recommend that?

-",HQ -" Getting an error NSInvalidArgumentException', reason: 'Invalid type in JSON write . I hope this error when i post image data string in Request.Please help - - - let imageData : NSData! - imageData = UIImagePNGRepresentation(first.image!)! - let base64String = imageData.base64EncodedDataWithOptions(NSDataBase64EncodingOptions.Encoding64CharacterLineLength) - - - requestObject[""pimage1""] = base64String - - - let jsonData = try! NSJSONSerialization.dataWithJSONObject(params, options: .PrettyPrinted) - -Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid type in JSON write (NSConcreteData)'",LQ -"

We're currently developing an SSL solution using SAML 2.0, and until now, have been using self signed certificates for signing the XML requests.

- -

However, as we move to production, we want to use a certificate from a certificate authority. But I'm not really sure what type of certificate to purchase as they are all website centric. For example, single domain, wildcard domain, etc.

- -

For example, have been looking at these: -https://www.123-reg.co.uk/ssl-certificates/

- -

I'm fairly knowledgeable when it comes to purchasing SSL certificates for a website. However, as the certificate is just going to be use for signing SAML requests, does it matter which type is purchased? Surely whether it supports a single domain or wildcard domain is irrelevant?

-",HQ -"

I want to remove edge between two vertices, so my code in java tinkerpop3 as below

- -
private void removeEdgeOfTwoVertices(Vertex fromV, Vertex toV,String edgeLabel,GraphTraversalSource g){
-        if(g.V(toV).inE(edgeLabel).bothV().hasId(fromV.id()).hasNext()){
-            List<Edge> edgeList = g.V(toV).inE(edgeLabel).toList();
-            for (Edge edge:edgeList){
-                if(edge.outVertex().id().equals(fromV.id())) {
-                    TitanGraph().tx();
-                    edge.remove();                    
-                    TitanGraph().tx().commit();
-                    return;//Remove edge ok, now return.
-                }
-            }
-        }
-    }
-
- -

Is there a simpler way to remove edge between two vertices by a direct query to that edge and remove it? Thank for your help.

-",HQ -"

I'm in the process of compiling data from different data sets into one data set for analysis. I'll be doing data exploration, trying different things to find out what regularities may be hidden in the data, so I don't currently have a specific method in mind. Now I'm wondering if I should compile my data into long or wide format.

- -

Which format should I use, and why?

- -

I understand that data can be reshaped from long to wide or vice versa, but the mere existence of this functionality implies that the need to reshape sometimes arises and this need in turn implies that a specific format might be better suited for a certain task. So when do I need which format, and why?

- -

I'm not asking about performance. That has been covered in other questions.

-",HQ -"

I have a web application launched using Docker compose that I want to disable all logging for (or at the very least print it out to syslog instead of a file).

- -

When my web application works it can quickly generate an 11GB log file on startup so this eats up my disk space very fast.

- -

I'm aware that normal docker has logging options for its run command but in Docker Compose I use

- -
-

Docker-compose up

-
- -

in the application folder to start my application. How would I enable this functionality in my case? I'm not seeing a specific case anywhere online.

-",HQ -"

I'm trying to format a Date String in React Native.

- -

Ex: 2016-01-04 10:34:23

- -

Following is the code I'm using.

- -
var date = new Date(""2016-01-04 10:34:23"");
-console.log(date);
-
- -

My problem is, when I'm emulating this on a iPhone 6S, it'll print Mon Jan 04 2016 10:34:23 GMT+0530 (IST) without any problem. But if I try with the iPhone 5S it prints nothing. And if you try to get the month by using a method like date.getMonth() it'll print ""NaN"".

- -

Why is this? What is the workaround?

-",HQ -"

Our company enterprise provisioning profile is set to expire in a month, but our distribution certificate is set to expire in a few more years. What are our options?

- -

Do I need to regenerate a new provisioning profile and create a new build that I have to redistribute?

- -

Or is there a simpler option like just sending out the new provisioning profile I generate? or better yet I don't have to do anything?

- -

Thanks

-",HQ -"Where will i put the permission line in my plugin command code? - -http://pastebin.com/BCLyr0Mn - - -",LQ -"I uploaded my WordPress project on my 1&1 server and i'm very disapointed because all my modification have disapear. My theme is like Virgin. -Si what can be wrong? Is there something to save before upload my files ? -Thank you",LQ -"

I configure my global ~/.gitconfig properties user.name and user.email like this:

- -

- -
git config --global user.email ""mkobit@example.com"" 
-git config --global user.name ""mkobit""
-
- -

This is the default configuration I want for working on personal projects, open source stuff, etc.

- -

When I am working on a project from a specific domain, a corporate domain for example, I am configuring it for each repository when I clone it so that it uses a different user.name/user.email:

- -
git clone ssh://git@git.mycorp.com:1234/groupA/projectA.git
-cd projectA
-git config user.email ""mkobit@mycorp.com""
-git config user.name ""m.kobit""
-
- -

One decent option would be to setup an alias for cloning these kinds of repositories:

- -
git config --global alias.clonecorp 'clone \ 
-        -c user.name=""m.kobit"" -c user.email=""mkobit@mycorp.com""'
-git clonecorp ssh://git@git.mycorp.com:1234/groupA/projectA.git
-
- -

Both of these can be error prone because they both depend on me being smart and following the right steps. Evidence shows that this is near-guaranteed for me to screw-up sometime.

- -

Is there a way to configure Git such that repositories from a certain domain (the mycorp.com in this example) will be configured a certain way?

-",HQ -"

I've got a DataFrame storing daily-based data which is as below:

- -
Date              Open        High         Low       Close   Volume
-2010-01-04   38.660000   39.299999   38.509998   39.279999  1293400   
-2010-01-05   39.389999   39.520000   39.029999   39.430000  1261400   
-2010-01-06   39.549999   40.700001   39.020000   40.250000  1879800   
-2010-01-07   40.090000   40.349998   39.910000   40.090000   836400   
-2010-01-08   40.139999   40.310001   39.720001   40.290001   654600   
-2010-01-11   40.209999   40.520000   40.040001   40.290001   963600   
-2010-01-12   40.160000   40.340000   39.279999   39.980000  1012800   
-2010-01-13   39.930000   40.669998   39.709999   40.560001  1773400   
-2010-01-14   40.490002   40.970001   40.189999   40.520000  1240600   
-2010-01-15   40.570000   40.939999   40.099998   40.450001  1244200   
-
- -

What I intend to do is to merge it into weekly-based data. After grouping:

- -
    -
  1. the Date should be every Monday (at this point, holidays scenario should be considered when Monday is not a trading day, we should apply the first trading day in current week as the Date).
  2. -
  3. Open should be Monday's (or the first trading day of current week) Open.
  4. -
  5. Close should be Friday's (or the last trading day of current week) Close.
  6. -
  7. High should be the highest High of trading days in current week.
  8. -
  9. Low should be the lowest Low of trading days in current week.
  10. -
  11. Volumn should be the sum of all Volumes of trading days in current week.
  12. -
- -

which should look like this:

- -
Date              Open        High         Low       Close   Volume
-2010-01-04   38.660000   40.700001   38.509998   40.290001  5925600   
-2010-01-11   40.209999   40.970001   39.279999   40.450001  6234600   
-
- -

Currently, my code snippet is as below, which function should I use to mapping daily-based data to the expected weekly-based data? Many thanks!

- -
import pandas_datareader.data as web
-
-start = datetime.datetime(2010, 1, 1)
-end = datetime.datetime(2016, 12, 31)
-f = web.DataReader(""MNST"", ""yahoo"", start, end, session=session)
-print f
-
-",HQ -"

I'm looking for this for a long time.

- -

I need to extract and get modulus and exponent from SSH server.

- -

For example, I know, that on server xxx.xxx.xxx.xxx is running ssh (I can connect to this server / ping) but I dont know user name and password so cannot log in.

- -

I need to get modulus and exponent of public RSA key of this server.

- -

I found, that ssh-keyscan can get modulus + exponent (from documentation) but only if ssh-rsa1 is used. If I try to get ssh-rsa(2) public key with ssh-keyscan, I cannot retrieve from output modulus and exponent.

- -

Is it possible ?

-",HQ -"

I've looked up print pretty for MongoDB, and i understand how to do it from the shell. What I can't find is how to do it with PyMongo, so that when I run it in eclipse, the output will print pretty instead of all in one line. Here's what I have right now:

- -
  cursor = collection.find({})
-  for document in cursor: print(document)
-
- -

This prints everything in my collection, but each document in my collection just prints in one line. How can i change this to get it to print pretty?

-",HQ -"I need to insert an image into an ImageList. The image is in a descendant of TGraphicControl (see source code below). The insertion seems to work. However, I get only a white rectangle in the ImageList: - - function InsertCloudImageIntoImageList(AdvCloudImage1: TAdvCloudImage): Integer; - // TAdvCloudImage = class(TGraphicControl) - // WebPicture is TCloudPicture = class(TGraphic) - var - TempBitmap: TBitmap; - R: TRect; - begin - Result := 0; - TempBitmap := TBitmap.Create; - try - TempBitmap.SetSize(16, 16); - R.Width := 16; - R.Height := 16; - R.Top := 0; - R.Left := 0; - - AdvCloudImage1.WebPicture.Draw(TempBitmap.Canvas, R); - Result := Form1.ImageList1.Add(TempBitmap, nil); - finally - TempBitmap.Free; - end; - end; - -I suspect the bug is in the drawing on the bitmap canvas?",LQ -"

Is it possible to rename a Google Cloud Platform project? If so, how?

- -

I don't need to change the project ID or number. But I do want to change the project name (the name used by/for humans to identify a cloud platform project).

- -

Thanks for any tips!

-",HQ -"

How to decrease padding in NumberPicker

- -

- -

I want something like it:

- -

-",HQ -"

I am using Slick Carousel (http://kenwheeler.github.io/slick/), but don't know how to incorporate different slide transitions. Does anyone have an example to share?

- -

Here's what I currently have:

- -
    $('.slider1').slick({
-        autoplay:true,
-        autoplaySpeed: 4500,
-        arrows:false,
-        slide:'.slider-pic', 
-        slidesToShow:1,
-        slidesToScroll:1,
-        dots:false,
-        easing: 'easeOutElastic',
-        responsive: [
-        {
-          breakpoint: 1024,
-          settings: {
-            dots: false
-          }
-        }]
-    });
-
- -

On site - http://lantecctc.businesscatalyst.com/

-",HQ -"

I ran

- -
npm config set prefix /usr/local
-
- -

After running that command, -When trying to run any npm commands on Windows OS I keep getting the below.

- -
Error: EPERM: operation not permitted, mkdir 'C:\Program Files (x86)\Git\local'
-at Error (native)
-
- -

Have deleted all files from

- -
C:\Users\<your username>\.config\configstore\
-
- -

It did not work.

- -

Any suggestion ?

-",HQ -"

I tried to start spark 1.6.0 (spark-1.6.0-bin-hadoop2.4) on Mac OS Yosemite 10.10.5 using

- -
""./bin/spark-shell"". 
-
- -

It has the error below. I also tried to install different versions of Spark but all have the same error. This is the second time I'm running Spark. My previous run works fine.

- -
log4j:WARN No appenders could be found for logger (org.apache.hadoop.metrics2.lib.MutableMetricsFactory).
-log4j:WARN Please initialize the log4j system properly.
-log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
-Using Spark's repl log4j profile: org/apache/spark/log4j-defaults-repl.properties
-To adjust logging level use sc.setLogLevel(""INFO"")
-Welcome to
-      ____              __
-     / __/__  ___ _____/ /__
-    _\ \/ _ \/ _ `/ __/  '_/
-   /___/ .__/\_,_/_/ /_/\_\   version 1.6.0
-      /_/
-
-Using Scala version 2.10.5 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_79)
-Type in expressions to have them evaluated.
-Type :help for more information.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.
-16/01/04 13:49:40 ERROR SparkContext: Error initializing SparkContext.
-java.net.BindException: Can't assign requested address: Service 'sparkDriver' failed after 16 retries!
-    at sun.nio.ch.Net.bind0(Native Method)
-    at sun.nio.ch.Net.bind(Net.java:444)
-    at sun.nio.ch.Net.bind(Net.java:436)
-    at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:214)
-    at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
-    at io.netty.channel.socket.nio.NioServerSocketChannel.doBind(NioServerSocketChannel.java:125)
-    at io.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:485)
-    at io.netty.channel.DefaultChannelPipeline$HeadContext.bind(DefaultChannelPipeline.java:1089)
-    at io.netty.channel.AbstractChannelHandlerContext.invokeBind(AbstractChannelHandlerContext.java:430)
-    at io.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:415)
-    at io.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:903)
-    at io.netty.channel.AbstractChannel.bind(AbstractChannel.java:198)
-    at io.netty.bootstrap.AbstractBootstrap$2.run(AbstractBootstrap.java:348)
-    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:357)
-    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:357)
-    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
-    at java.lang.Thread.run(Thread.java:745)
-java.net.BindException: Can't assign requested address: Service 'sparkDriver' failed after 16 retries!
-    at sun.nio.ch.Net.bind0(Native Method)
-    at sun.nio.ch.Net.bind(Net.java:444)
-    at sun.nio.ch.Net.bind(Net.java:436)
-    at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:214)
-    at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
-    at io.netty.channel.socket.nio.NioServerSocketChannel.doBind(NioServerSocketChannel.java:125)
-    at io.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:485)
-    at io.netty.channel.DefaultChannelPipeline$HeadContext.bind(DefaultChannelPipeline.java:1089)
-    at io.netty.channel.AbstractChannelHandlerContext.invokeBind(AbstractChannelHandlerContext.java:430)
-    at io.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:415)
-    at io.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:903)
-    at io.netty.channel.AbstractChannel.bind(AbstractChannel.java:198)
-    at io.netty.bootstrap.AbstractBootstrap$2.run(AbstractBootstrap.java:348)
-    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:357)
-    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:357)
-    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
-    at java.lang.Thread.run(Thread.java:745)
-
-java.lang.NullPointerException
-    at org.apache.spark.sql.SQLContext$.createListenerAndUI(SQLContext.scala:1367)
-    at org.apache.spark.sql.hive.HiveContext.<init>(HiveContext.scala:101)
-    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
-    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
-    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
-    at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
-    at org.apache.spark.repl.SparkILoop.createSQLContext(SparkILoop.scala:1028)
-    at $iwC$$iwC.<init>(<console>:15)
-    at $iwC.<init>(<console>:24)
-    at <init>(<console>:26)
-    at .<init>(<console>:30)
-    at .<clinit>(<console>)
-    at .<init>(<console>:7)
-    at .<clinit>(<console>)
-    at $print(<console>)
-    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
-    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-    at java.lang.reflect.Method.invoke(Method.java:606)
-    at org.apache.spark.repl.SparkIMain$ReadEvalPrint.call(SparkIMain.scala:1065)
-    at org.apache.spark.repl.SparkIMain$Request.loadAndRun(SparkIMain.scala:1346)
-    at org.apache.spark.repl.SparkIMain.loadAndRunReq$1(SparkIMain.scala:840)
-    at org.apache.spark.repl.SparkIMain.interpret(SparkIMain.scala:871)
-    at org.apache.spark.repl.SparkIMain.interpret(SparkIMain.scala:819)
-    at org.apache.spark.repl.SparkILoop.reallyInterpret$1(SparkILoop.scala:857)
-    at org.apache.spark.repl.SparkILoop.interpretStartingWith(SparkILoop.scala:902)
-    at org.apache.spark.repl.SparkILoop.command(SparkILoop.scala:814)
-    at org.apache.spark.repl.SparkILoopInit$$anonfun$initializeSpark$1.apply(SparkILoopInit.scala:132)
-    at org.apache.spark.repl.SparkILoopInit$$anonfun$initializeSpark$1.apply(SparkILoopInit.scala:124)
-    at org.apache.spark.repl.SparkIMain.beQuietDuring(SparkIMain.scala:324)
-    at org.apache.spark.repl.SparkILoopInit$class.initializeSpark(SparkILoopInit.scala:124)
-    at org.apache.spark.repl.SparkILoop.initializeSpark(SparkILoop.scala:64)
-    at org.apache.spark.repl.SparkILoop$$anonfun$org$apache$spark$repl$SparkILoop$$process$1$$anonfun$apply$mcZ$sp$5.apply$mcV$sp(SparkILoop.scala:974)
-    at org.apache.spark.repl.SparkILoopInit$class.runThunks(SparkILoopInit.scala:159)
-    at org.apache.spark.repl.SparkILoop.runThunks(SparkILoop.scala:64)
-    at org.apache.spark.repl.SparkILoopInit$class.postInitialization(SparkILoopInit.scala:108)
-    at org.apache.spark.repl.SparkILoop.postInitialization(SparkILoop.scala:64)
-    at org.apache.spark.repl.SparkILoop$$anonfun$org$apache$spark$repl$SparkILoop$$process$1.apply$mcZ$sp(SparkILoop.scala:991)
-    at org.apache.spark.repl.SparkILoop$$anonfun$org$apache$spark$repl$SparkILoop$$process$1.apply(SparkILoop.scala:945)
-    at org.apache.spark.repl.SparkILoop$$anonfun$org$apache$spark$repl$SparkILoop$$process$1.apply(SparkILoop.scala:945)
-    at scala.tools.nsc.util.ScalaClassLoader$.savingContextLoader(ScalaClassLoader.scala:135)
-    at org.apache.spark.repl.SparkILoop.org$apache$spark$repl$SparkILoop$$process(SparkILoop.scala:945)
-    at org.apache.spark.repl.SparkILoop.process(SparkILoop.scala:1059)
-    at org.apache.spark.repl.Main$.main(Main.scala:31)
-    at org.apache.spark.repl.Main.main(Main.scala)
-    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
-    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-    at java.lang.reflect.Method.invoke(Method.java:606)
-    at org.apache.spark.deploy.SparkSubmit$.org$apache$spark$deploy$SparkSubmit$$runMain(SparkSubmit.scala:731)
-    at org.apache.spark.deploy.SparkSubmit$.doRunMain$1(SparkSubmit.scala:181)
-    at org.apache.spark.deploy.SparkSubmit$.submit(SparkSubmit.scala:206)
-    at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:121)
-    at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
-
-<console>:16: error: not found: value sqlContext
-         import sqlContext.implicits._
-                ^
-<console>:16: error: not found: value sqlContext
-         import sqlContext.sql
-
- -

Then I add

- -
export SPARK_LOCAL_IP=""127.0.0.1""
-
- -

to spark-env.sh, error changes to:

- -
 ERROR : No route to host
-    java.net.ConnectException: No route to host
-        at java.net.Inet6AddressImpl.isReachable0(Native Method)
-        at java.net.Inet6AddressImpl.isReachable(Inet6AddressImpl.java:77)
-        at java.net.InetAddress.isReachable(InetAddress.java:475)
-...
-<console>:10: error: not found: value sqlContext
-       import sqlContext.implicits._
-              ^
-<console>:10: error: not found: value sqlContext
-       import sqlContext.sql
-
-",HQ -"

I have noticed a bit of switching between using const and import for referencing libraries in node.js applications using es6 syntax with Babel.

- -

What is the preferred method and what is the difference between using const and import? Assuming you may be importing the same library in many files/components.

- -

const

- -
const React = require('react')
-
- -

import

- -
import React from 'react'
-
- -

Here are the definitions of each but I am still not sure which to use.

- -

import

- -

The import statement is used to import functions, objects or primitives that have been exported from an external module, another script, etc.

- -

const

- -

The const declaration creates a read-only reference to a value. It does not mean the value it holds is immutable, just that the variable identifier cannot be reassigned.

-",HQ -"

I need to get a text from SearchView and compare it to strings in my activity's ListView and show a Toast if the word in a SearchView is in my ListView. How do I do that? Here's my working code for the SearchView:

- -
MenuItem ourSearchItem = menu.findItem(R.id.menu_item_search);
-
-        SearchView sv = (SearchView) ourSearchItem.getActionView();
-
-        sv.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
-            @Override
-            public boolean onQueryTextSubmit(String query) {
-                return false;
-            }
-
-            @Override
-            public boolean onQueryTextChange(String newText) {
-
-                adapter.getFilter().filter(newText);
-                }
-                return false;
-            }
-        });
-
-",HQ -"

I have tested creating, inserting and retrieving data into my apps db, and know it works through usage of Log statements.

- -

However, I wish to expedite testing and use the Android Device Monitor. However, though the db exists and data is stored, when accessing below, the data folder is empty:

- -

- -

Why would this be the case? How can this be configured to show the db file and contents?

-",HQ -"

I'm wondering if there's ever a valid use case for the following:

- -
class Base {}
-
-class A implements Comparable<Base> {
-    //...
-}
-
- -

It seems to be a common pattern (see Collections for a number of examples) to accept a collection of type T, where T extends Comparable<? super T>.

- -

But it seems technically impossible to fulfill the contract of compareTo() when comparing to a base class, because there's no way to ensure that another class doesn't extend the base with a contradictory comparison. Consider the following example:

- -
class Base {
-    final int foo;
-    Base(int foo) {
-        this.foo = foo;
-    }
-}
-
-class A extends Base implements Comparable<Base> {
-    A(int foo) {
-        super(foo);
-    }
-    public int compareTo(Base that) {
-        return Integer.compare(this.foo, that.foo); // sort by foo ascending
-    }
-}
-
-class B extends Base implements Comparable<Base> {
-    B(int foo) {
-        super(foo);
-    }
-    public int compareTo(Base that) {
-        return -Integer.compare(this.foo, that.foo); // sort by foo descending
-    }
-}
-
- -

We have two classes extending Base using comparisons that don't follow a common rule (if there were a common rule, it would almost certainly be implemented in Base). Yet the following broken sort will compile:

- -
Collections.sort(Arrays.asList(new A(0), new B(1)));
-
- -

Wouldn't it be safer to only accept T extends Comparable<T>? Or is there some use case that would validate the wildcard?

-",HQ -"

In the talk ""Beyond DevOps: How Netflix Bridges the Gap,"" around 29:10 Josh Evans mentions squeeze testing as something that can help them understand system drift. What is squeeze testing and how is it implemented?

-",HQ -"

I am having a hard time of determining the type of my variable since I am used on python2 and have just migrated to python3

- -
from django.http import HttpResponse
-
-def myview(request):
-    x = ""Name""
-    print (x)
-    print type(x)
-    return HttpResponse(""Example output"")
-
- -

This code will throw an error because of print type(x). However if you changed that syntax line to type(x). The type does not return an output on the runserver of django.

-",HQ -"Is `int &y=x` same as `int y=&x`? - -Also in the below code, why is `*s++` giving me some wrong results? I was expecting `*s` value to be 12 - -Are `s++` and `*s++` the same? - - #include - using namespace std; - - int main() - { - int p=10; - int &q=p; //q is a reference variable to p - //int r=&p; //error: invalid conversion from 'int*' to 'int' - int *s=&p; //valid - q++; - *s++; //here even s++ works, and cout<<*s does not give 12 but some lengthy number - //and cout<I have one registration form which contains 3 to 4 dropdown controls and 2 datepickers and now when dropdown controls value are selected(selectedindex change are fired) -then i dont want my page to postback.

- -

I have use update panel to stop this behaviour of post like below:

- -
<asp:UpdatePanel ID=""UpdatePanel1"" runat=""server"">
-        <ContentTemplate>
-
-      <%--Update Panel for date picker%>
-      <asp:UpdatePanel ID=""UpdatePanelDatepicker"" runat=""server"">
-                    <ContentTemplate>
-                      <telerik:RadDatePicker ID=""rdpDate1"" runat=""server"">
-                      </telerik:RadDatePicker>
-                    </ContentTemplate>
-      </asp:UpdatePanel>
-
-       <%--Update Panel for Dropdown--%>
-       <asp:UpdatePanel ID=""updatepaneldata"" runat=""server""> 
-                      <ContentTemplate>
-                     <telerik:RadComboBox ID=""ddlCountry"" runat=""server"">
-                      </telerik:RadComboBox>
-                    </ContentTemplate>
-      </asp:UpdatePanel>
-
-
-  </ContentTemplate>
-    </asp:UpdatePanel>
-
- -

So i just wanted to ask that is this correct way to put multiple controls under update panels??

-",HQ -"

I created a Json file where i wanted to write write java object as Array element. Im using jackson.

- -
    try{
-           String json;
-           String phyPath = request.getSession().getServletContext().getRealPath(""/"");
-           String filepath = phyPath + ""resources/"" + ""data.json"";
-           File file = new File(filepath);
-           if (!file.exists()) {
-               System.out.println(""pai nai"");
-               file.createNewFile();               
-           }  
-           json = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(story);
-           Files.write(new File(filepath).toPath(), Arrays.asList(json), StandardOpenOption.APPEND);    
-    } 
-
- -

This is not what i exactly want .it creates data like

- -
{
-  ""storyTitle"" : ""ttt"",
-  ""storyBody"" : ""tttt"",
-  ""storyAuthor"" : ""tttt""
-}
-{
-  ""storyTitle"" : ""a"",
-  ""storyBody"" : ""a"",
-  ""storyAuthor"" : ""a""
-}
-
- -

I just need to create a Array of Json where i add java object, data should be like this

- -
[{
-  ""storyTitle"" : ""ttt"",
-  ""storyBody"" : ""tttt"",
-  ""storyAuthor"" : ""tttt""
-}
-,{
-  ""storyTitle"" : ""a"",
-  ""storyBody"" : ""a"",
-  ""storyAuthor"" : ""a""
-}]
-
-",HQ -"Here User enter X Coordinate, Y coordinate ,Length L,number n. if user enters n - we have to print ""stright Line"" with (x,y) cordinates, if n=2 print bisecting Lines if n=3 print triangle like.... Here Length purpose is to Print Length of side is equal to L. Is there any solutions for this question please comment because it was asked me for interview?",LQ -"I am php web developer .now i want to work with asp.net but it's very difficult for me to work with databases in asp.net.I need some source link from where i can easily learn asp.net. ----------------------------------- ------------------------------------= - ",LQ -"

I have to reset my form along with validation. is there any method to reset the state of form from ng-dirty to ng-pristine.

-",HQ -"[dynamicly button][1] - - - [1]: http://i.stack.imgur.com/Nnx4B.png - -hey guys, im trying to create an Add button that can create dynamicly button, but i have a problem in -Button mybutton = new Button (this); - -i have no idea why ""this"" can be applied in OnClickListner. -Anyone can help me please ? -Thanks before",LQ -"

I need to set a static hostname in a Kubernetes replication controller. Docker supports it with some runtime flags, however, Kubernetes replication controllers don't appear to support it. -The environment: OS - CentOS 6.6 -Approach to use sysctl to change the variable kernel.hostname does not work for a K8s replication controller. The host name is not changed. -Use: -sysctl kernel.hostname -to read the current hostname, and -sysctl kernel.hostname=NEW_HOSTNAME

- -

Is it possible to set a hostname in a Kubernetes replication controller?

-",HQ -"

How can we split file in windows system in command prompt based on size. like linux system we use

- -
""split -b 10M filename.xyz new_filename""
-
-",HQ -"

What is the xUnit equivalent of the following MSTest code:

- -
Assert.Inconclusive(""Reason"");
-
- -

This gives a yellow test result instead of the usual green or red. I want to assert that the test could not be run due to certain conditions and that the test should be re-run after those conditions have been met.

-",HQ -"I am in a big trouble, -Me and my friend doing a mini project that.How a Person is popular in his city. - -**My situation** -How the algorithm should work like -If a person ""mark"" has 500 friends in his city out of 500,000. - -(500/500,000)*50,000 = 5 - -So 5 in 50,000 people Know him right. - -But When friends count increase the 50,000 should decrease - -like:- - -If ""sam"" has 1000 friends then - -(1000/500,000)*25000 = 5 - -So 5 in 25000 people know his name - -Yes we could implement this in if/else condition -If so then i have to write 500 lines of code. - -Is there is a another way to do this in PHP. - -Help ! - - - -",LQ -"I am trying to get the current position that mean longitude and latitude of the marker. First a marker becomes created at the users location and when the user click on the map the previous one becomes deleted and a new one becomes created at the users clickpoint. I tried it by my own with `var lat1 = markers.position.lat(); var lng1 = markers.position.lng();` but that havent work and I get with this the error message `Uncaught TypeError: Cannot read property 'lat' of undefined`. How can I get the current position of the marker and save it in a variable? - - var markers = []; - - // This event listener will call addMarker() when the map is clicked. - map.addListener('click', function(event) { - addMarkers(event.latLng); - - }); - //draw a marker at the position of the user - addMarkers(pos); - // Adds a marker to the map and push to the array. - function addMarkers(location) { - var marker = new google.maps.Marker({ - position: location, - map: map - }); - markers.push(marker); - } - // Sets the map on all markers in the array. - function setMapOnAll(map) { - for (var i = 0; i < markers.length; i++) { - markers[i].setMap(map); - } - } - // Removes the markers from the map, but keeps them in the array. - function clearMarkers() { - setMapOnAll(null); - } - - - // Deletes all markers in the array by removing references to them. - function deleteMarkers() { - clearMarkers(); - marker = []; - } - - - ",LQ -"I am going to add a delete button to new items made. this delete button removes the item my-item from the page without affecting others. - -I have coded like this but I`m not sure if I`m on the right path. - -I`ll be glad if you can help me. :) - - - - - Simple Demo - - - - - -
-
-

Click Me!

-
My Text! -
-
-
- - - - ",LQ -"

I need to add a TXT record for the subdomain test.domain.com in the zone file. In this zone file there is an existing CNAME for the same subdomain. The two records looking like this:

- -
test IN CNAME asdf.someotherdomain.com. 
-test IN TXT ""Some text i need to add""
-
- -

But when I try to save this I get an error:

- -
dns_master_load: :45: test.domain.com: CNAME and other data
-zone domain.com/IN: loading from master file  failed: CNAME and other data
-zone domain.com/IN: not loaded due to errors.
-status: FAIL
-
- -

It works if I do it with different subdomains, for example:

- -
test IN CNAME asdf.someotherdomain.com. 
-testing IN TXT ""Some text i need to add""
-
- -

I'm not exactly the best there is when it comes to DNS. Is it not possible to have the same subdomain in this scenario? Or am I missing something?

- -

The servers are running bind.

-",HQ -"from sys import exit - -def gold_room(): - print ""This room is full of gold, How much do you take?"" - - next = raw_input(""> "") - if ""0"" in next or ""1"" in next: - how_much = int(next) - else: - dead(""Man learn to type a number!"") - - if how_much < 50: - print ""Nice, you're not greedy, you win!"" - exit(0) - else: - dead(""You greedy bastard!"") - - -def bear_room(): - print ""There is a bear here."" - print ""The bear has a bunch of honey."" - print ""The fat bear is in front of another door."" - print ""How are you going to move a bear?"" - bear_moved = False - - while True: - next = raw_input(""> "") - - if next == ""take honey"": - dead(""The bear looks at you and slaps your face off."") - elif next == ""taunt bear"" and not bear_moved: - print ""The bear has moved from the door and you can go now."" - bear_moved = True - elif next == ""taunt bear"" and bear_moved: - dead(""The bear gets pissed off and chews your leg off."") - elif next == ""open door"" and bear_moved: - gold_room() - else: - print ""I got no idea waht that means."" - - -def cthulhu_room(): - print ""Here you see the great evil Cthulhu."" - print "" He, it, whatever stares at you and you go insane."" - print ""Do you flee for your life or eat your head?"" - - next = raw_input(""> "") - - if ""flee"" in next: - start() - elif ""head"" in next: - dead(""Well that was tasty!"") - else: - cthulhu_room() - - -def dead(why): - print why, ""Good job!"" - exit(0) - -def start(): - print ""You are in dark room."" - print ""There is a door on your right and left."" - print ""Which one do you take?"" - - next = raw_input(""> "") - - if next == ""left"": - bear_room() - elif next == ""right"": - cthulhu_room() - else: - dead(""You stumble around the room until you starved."") - - -start() - - - - - - - - - - - - - - - - - - - - - - - - - ",LQ -"I have several dictionaries , dictionary keys are tupples. - -Keys are always same length in each dictionary. - -I'd like to find nested keys and print them . - -dictionaries example : - - dic_1 = - { - (u'A_String', u'B_String', u'C_String', u'D_String', u'E_String'): 111, - (u'A_String', u'B_String', u'C_String', u'D_String' ,u'F_String'): 112 - } - - - dic_2 = - { - (u'A_String', u'B_String', u'C_String', u'D_String'): 300, - (u'A_String', u'B_String', u'C_String', u'F_String'): 301, - } - - - dic_3 = - { - (u'A_String', u'B_String', u'C_String'): 200, - (u'A_String', u'B_String', u'F_String'): 201, - } - -First row in dic_3 is nested in first row in dic_2 and dic_1 - -First row in dic_2 is nested in first row of dic_1 - -I tried : - - for key in dic_1: - print '-',key - for k in dic_2: - if k in tuple(key): - print '--', k - for i in dic_3: - if i in tuple(k): - print '---', i - -Thank you in advance ! -",LQ -"

I try to change default icon for Close Button in Chrome custom tabs (CustomTabsIntent.Builder)

- -

Simple code for testing:

- -
Bitmap closeIcon = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);
-intentBuilder.setCloseButtonIcon(closeIcon);
-
- -

But nothing happens. Why? (Nexus 7, Marshmallow)

-",HQ -"

In ES6, I was trying to use the arguments object as an iterable when passed to the Set constructor. It works fine in IE11 and in Chrome 47. It does not work in Firefox 43 (throws a TypeError: arguments is not iterable). I've looked through the ES6 spec and cannot really find a definition of whether the arguments object should be an iterable or not.

- -

Here's an example of what I was trying to do:

- -
function destroyer(arr) {
-  var removes = new Set(arguments);
-  return arr.filter(function(item) {
-    return !removes.has(item);
-  });
-}
-
-// remove items 2, 3, 5 from the passed in array
-var result = destroyer([3, 5, 1, 2, 2], 2, 3, 5);
-log(result);
-
- -

FYI, I know there are various work-arounds for this code such as copying the arguments object into a real array or using rest arguments. This question is about whether the arguments object is supposed to be an iterable or not in ES6 that can be used anywhere iterables are expected.

-",HQ -"I have a string path to my file that I want to execute . -It is for example : - - E:\folderA\folderB\myfile.exe -If I write this path and I try to execute file there it says that file doesn't exist. - -When I write it like that. Then it works. - - - - E:/folderA/folderB/myFile.exe -How do I change \ to / ? - -",LQ -"

I have a problem with imports in angular2/typescript. I'd like to use imports with some root like 'app/components/calendar', instead only way I am able to use is something like:

- -
//app/views/order/order-view.ts
-import {Calendar} from '../../components/calendar 
-
- -

where Calendar is defined like:

- -
//app/components/calendar.ts
-export class Calendar {
-}
-
- -

and this obviously gets much worse the lower in hierarchy you go, deepest is '../../..' but it is still very bad and brittle. Is there any way how to use paths relative to project root?

- -

I am working in Visual Studio, and relative imports seem to be the only thing that makes VS able to recognize these imports.y

-",HQ -"

Vue.js in Chrome extension

- -

Hi! I'm trying to make a Chrome extension using Vue.js but when I write

- -
<input v-model=""email"" type=""email"" class=""form-control"" placeholder=""Email"">
-
- -

Chrome removes the v-model-part of the code and makes it

- -
<input type=""email"" class=""form-control"" placeholder=""Email"">
-
- -

Is there a way to prevent this?

-",HQ -"

The current practice for CSS with React components seems to be using webpack's style-loader to load it into the page in.

- -
import React, { Component } from 'react';
-import style from './style.css';
-
-class MyComponent extends Component {
-    render(){
-        return (
-            <div className={style.demo}>Hello world!</div>
-        );
-    }
-}
-
- -

By doing this the style-loader will inject a <style> element into the DOM. However, the <style> will not be in the virtual DOM and so if doing server side rendering, the <style> will be omitted. This cause the page to have FOUC.

- -

Is there any other methods to load CSS modules that work on both server and client side?

-",HQ -"I saw [here][1] that it isn't possible to find out an unsigned char * length using strlen if it isn't NULL terminated, since the strlen function will go over the string but won't find any '\0', hence a run-time error. I figure that it is exactly the same for signed char *. - -I saw a code snippet that was doing something like `int len = sizeof(unsigned char *);` but, as I understand, it only gives the size of a pointer - word size. Is it possible to use sizeof in another way to get the result or do I have to get the length somewhere else? - - [1]: http://stackoverflow.com/questions/261431/how-to-find-the-length-of-unsigned-char-in-c",LQ -"

I have the following code in my main.swift:

- -
let strategist = GKMinmaxStrategist()
-strategist.gameModel = position
-strategist.maxLookAheadDepth = 1
-strategist.randomSource = nil
-
-let move = strategist.bestMoveForActivePlayer()
-
- -

...where position is an instance of my GKGameModel subclass Position. After this code is run, move is nil. bestMoveForPlayer(position.activePlayer!) also results in nil (but position.activePlayer! results in a Player object).

- -

However,

- -
let moves = position.gameModelUpdatesForPlayer(position.activePlayer!)!
-
- -

results in a non-empty array of possible moves. From Apple's documentation (about bestMoveForPlayer(_:)):

- -
-

Returns nil if the player is invalid, the player is not a part of the game model, or the player has no valid moves available.

-
- -

As far as I know, none of this is the case, but the function still returns nil. What could be going on here?

- -

If it can be of any help, here's my implementation of the GKGameModel protocol:

- -
var players: [GKGameModelPlayer]? = [Player.whitePlayer, Player.blackPlayer]
-var activePlayer: GKGameModelPlayer? {
-    return playerToMove
-}
-
-func setGameModel(gameModel: GKGameModel) {
-    let position = gameModel as! Position
-    pieces = position.pieces
-    ply = position.ply
-    reloadLegalMoves()
-}
-
-func gameModelUpdatesForPlayer(thePlayer: GKGameModelPlayer) -> [GKGameModelUpdate]? {
-    let player = thePlayer as! Player
-    let moves = legalMoves(ofPlayer: player)
-    return moves.count > 0 ? moves : nil
-}
-
-func applyGameModelUpdate(gameModelUpdate: GKGameModelUpdate) {
-    let move = gameModelUpdate as! Move
-    playMove(move)
-}
-
-func unapplyGameModelUpdate(gameModelUpdate: GKGameModelUpdate) {
-    let move = gameModelUpdate as! Move
-    undoMove(move)
-}
-
-func scoreForPlayer(thePlayer: GKGameModelPlayer) -> Int {
-    let player = thePlayer as! Player
-    var score = 0
-    for (_, piece) in pieces {
-        score += piece.player == player ? 1 : -1
-    }
-    return score
-}
-
-func isLossForPlayer(thePlayer: GKGameModelPlayer) -> Bool {
-    let player = thePlayer as! Player
-    return legalMoves(ofPlayer: player).count == 0
-}
-
-func isWinForPlayer(thePlayer: GKGameModelPlayer) -> Bool {
-    let player = thePlayer as! Player
-    return isLossForPlayer(player.opponent)
-}
-
-func copyWithZone(zone: NSZone) -> AnyObject {
-    let copy = Position(withPieces: pieces.map({ $0.1 }), playerToMove: playerToMove)
-    copy.setGameModel(self)
-    return copy
-}
-
- -

If there's any other code I should show, let me know.

-",HQ -"Code: - - - #include - #include - #include - #include - #include - #include - #include - using namespace std; - - void case1(); - void case2(); - void case3(); - void case4(); - void case5(); - - //Global variables - - const int MAXROW = 5; - const int MAXCOL = 5; - - int main() - { - char selection; - do //menu - { - cout << ""\n\nMENU\n""; - cout << ""1. Enter array 5,5 \n""; - cout << ""2. Find max and min: \n""; - cout << ""3. Average of negatives: \n""; - cout << ""4. Product of numbers different from 0 \n""; - cout << ""5. Output: \n""; - cout << ""6. Exit.\n\n""; - cin >> selection; - - switch (selection) - { - case '1': { - system(""cls""); - case1(); - } break; - - case '2': { - //system(""cls""); - case2(); - } break; - - case '3': { - //system(""cls""); - case3(); - } break; - - case '4': { - //system(""cls""); - case4(); - } break; - - case '5': { - //system(""cls""); - case5(); - } break; - } - - } while (selection != '6'); - - return 0; - - } - - void case1() - { - int A[MAXROW][MAXCOL] = { 0 }; - - for (int r = 0; r < MAXROW; ++r) - for (int c = 0; c < MAXCOL; ++c) { - cout << ""\n A["" << r << ""]["" << c << ""]= ""; - cin >> A[r][c]; - } - - } - - void case2() - { - int newarr[MAXROW + 1][MAXCOL + 1] = { 0 }; - int max[MAXCOL] = { 0 }; - - for (int r = 0; r < MAXROW; ++r) { - int minr = A[r][0]; - for (int c = 0; c < MAXCOL; ++c) { - newarr[r][c] = A[r][c]; - if (minr > A[r][c]) - minr = A[r][c]; - - if (max[c] < A[r][c]) - max[c] = A[r][c]; - } - newarr[r][MAXCOL] = minr; - } - - for (int c = 0; c < MAXCOL; ++c) - newarr[MAXROW][c] = max[c]; - - for (int r = 0; r < MAXROW + 1; ++r) { - for (int c = 0; c < MAXCOL + 1; ++c) - newarr[r][c] ? cout << newarr[r][c] << ""\t"" : cout << "" \t""; - - cout << ""\n""; - } - - { - - //Function to find average of negatives - void case3(); - { - int negNumber = 0; - double average = 0; - - for (int r = 0; r < 6; ++r) { - for (int c = 0; c < 6; ++c) { - if (newarr[r][c] < 0) { - ++negNumber; - average += newarr[r][c]; - } - - } - } - if (negNumber > 0) { - average /= negNumber; - cout << ""Average of negatives: \n"" << average; - } - else - cout << ""No negatives.\n""; - - - } - - void case4(); - {//Function to find product of numbers different from 0 - int count = 0; - int product = 1; - bool f = false; - - for (int r = 0; r < 6; ++r) - for (int c = 0; c < 6; ++c) - if (newarr[r][c] != 0) - { - ++count; - product *= newarr[r][c]; - f = true; - } - - - if (count != 0) - cout << ""\n Product of numbers different from 0 is: \n"" << product << endl; - else - cout << ""All elements are = 0""; - - } - void case5(); - { - for (int r = 0; r < MAXROW + 1; ++r) { - for (int c = 0; c < MAXCOL + 1; ++c) - newarr[r][c] ? cout << newarr[r][c] << ""\t"" : cout << "" \t""; - - cout << ""\n""; - } - } - } - -As you can see in case1() is the input array. What I wonder how to use this array in all other functions(case2,case3,case4,case5). -I also define several global variables but i want to put them in the function case1(). - -(const int MAXROW = 5; -const int MAXCOL = 5;) - -How will this happen? How to call them in the menu? - -For now my error list is full with ""'A': undeclared identifier"". -",LQ -"

Telegram is a cloud based chat service. All of their clients are open source. I was wondering if there's a way to host a 'private' telegram service on my own server.

- -

If not, is there anything out there that can provide all or almost all features that telegram provides?

-",HQ -"

I accidentally did a push --force on the wrong repo (too many termminals open), effectively resetting the master branch back to an earlier commit.

- -

Looking at my build system I can see that the commit used to point to XYZ, however I don't have that commit locally as I hadn't done a pull or fetch recently. The repo is in Github, and I can navigate in Github to view the commit, so I know it is there.

- -

How can I pull down the commit so I can reset master back to the right commit without having to bother the dev who pushed that change?

-",HQ -"

I want to find out if a variable is a collection.

- -

I can't use is_object() because it will be true even if it is not an collection. -For now I use this, and it works:

- -
if(is_object($images) && get_class($images) != 'Illuminate\Database\Eloquent\Collection') {
-
- -

But I think it's so ugly that I spend time asking you about another solution.

- -

Do you have any idea?

-",HQ -"I setup a new user with a new computer and installed MS Office. When I open the link to the access DB I get the error ""OBDC - connection to SQL Server Native Client 11.0Path/of/Accessdb"" - -Unfortunately I did not develop the Access DB and have no documentation on how to configure it from the developer",LQ -"
h = {
-  data: {
-    user: {
-      value: ""John Doe"" 
-    }
-  }
-}
-
- -

To assign value to the nested hash, we can use

- -
h[:data][:user][:value] = ""Bob""
-
- -

However if any part in the middle is missing, it will cause error.

- -

Something like

- -
h.dig(:data, :user, :value) = ""Bob""
-
- -

won't work, since there's no Hash#dig= available yet.

- -

To safely assign value, we can do

- -
h.dig(:data, :user)&.[]=(:value, ""Bob"")    # or equivalently
-h.dig(:data, :user)&.store(:value, ""Bob"")
-
- -

But is there better way to do that?

-",HQ -"

How is it possible that files can contain null bytes in operating systems written in a language with null-terminating strings (namely, C)?

- -

For example, if I run this shell code:

- -
$ printf ""Hello\00, World!"" > test.txt
-$ xxd test.txt
-0000000: 4865 6c6c 6f00 2c20 576f 726c 6421       Hello., World!
-
- -

I see a null byte in test.txt (at least in OS X). If C uses null-terminating strings, and OS X is written in C, then how come the file isn't terminated at the null byte, resulting in the file containing Hello instead of Hello\00, World!? Is there a fundamental difference between files and strings?

-",HQ -" -here is my program - - import time - print('hello, i am the consonants finder and i am going to find he consonants in your word') - consonants = 'b' 'c' 'd' 'f' 'g' 'h' 'j' 'k' 'l' 'm' 'n' 'p' 'q' 'r' 's' 't' 'v' 'w' 'x' 'y' 'z' - word = input('what is your word: ').lower() - time.sleep(1) - print('here is your word/s only in consonants') - time.sleep(1) - print('Calculating') - time.sleep(1) - - for i in word: - if i == consonants: - print((i), ' is a consonant') - - -here Is the output: - - hello, i am the consonants finder and i am going to find he consonants in your word - what is your word: hello - here is your word/s only in consonants - Calculating ->>> - - -how come the output does not give the consonants - -this is what the output should be: - - hello, i am the consonants finder and i am going to find he consonants in your word - what is your word: hello - here is your word/s only in consonants - Calculating - hll -",LQ -"

I have a working ES docker container running that I run like so

- -
docker run -p 80:9200 -p 9300:9300 --name es-loaded-with-data --privileged=true --restart=always es-loaded-with-data
-
- -

I loaded up ES with a bunch of test data and wanted to save it in that state so I followed up with

- -
docker commit containerid es-tester
-docker save es-tester > es-tester.tar
-
- -

then when I load it back in the data is all gone... what gives?

- -
docker load < es-tester.tar
-
-",HQ -"need max profit. - -what i can modify to get the max profit if i can only buy once and sell once. -means if i buy at 5 and sell at 150 then its max profit. - -Currently what is have done is buy when price is less than next day ,and sell if price is more than next day. - -as obvious We have to keep in mind we can sell only after we buy, means sell index can not be before buy index. - -what i have done so far is : - - package com; - - public class Stock { - - public static void main(String[] args) { - - int[] prices = {20,10,70,80,5,150,67}; - int length = prices.length-2; - int buy=0; - int sell=0; - int buyIndex=-1; - int sellIndex=-1; - - int i=0; - for (i =0 ; i<=length ;i++ ){ - - // buy logic start - if(prices[i]buyIndex){ - buy= prices[i]; - buyIndex=i; - System.out.println(""buy""+buy); - System.out.println(""buyIndex""+buyIndex); - } - } // buy logic finish - - - // sell logic start - if(buy!=0 && i>buyIndex ){ - System.out.println(""inside sell logic""); - if(prices[i]>prices[i+1]){ - sell = prices[i]; - sellIndex = i; - System.out.println(""sell""+sell); - System.out.println(""sellIndex""+sellIndex); - - } - } // sell logic end - } // for loop end - - } // main end - - } - -out put is - - buy10 - buyIndex1 - buy70 - buyIndex2 - inside sell logic - sell80 - sellIndex3 - buy5 - buyIndex4 - inside sell logic - sell150 - sellIndex5 - -Please help. -",LQ -"

I've got a Swift function for which Xcode is showing 0 passes in code coverage. The line is a closing brace (highlighted in red below).

- -

Is this a bug in Xcode? If not, what condition do I need to hit to run that line? I thought I was covering all paths through this method.

- -

-",HQ -"

There I was, writing a function that takes a value as input, calls a function on that input, and if the result of that is Just x, it should return x; otherwise, it should return the original input.

- -

In other words, this function (that I didn't know what to call):

- -
foo :: (a -> Maybe a) -> a -> a
-foo f x = fromMaybe x (f x)
-
- -

Since it seems like a general-purpose function, I wondered if it wasn't already defined, so I asked on Twitter, and Chris Allen replied that it's ap fromMaybe.

- -

That sounded promising, so I fired up GHCI and started experimenting:

- -
Prelude Control.Monad Data.Maybe> :type ap
-ap :: Monad m => m (a -> b) -> m a -> m b
-Prelude Control.Monad Data.Maybe> :type fromMaybe
-fromMaybe :: a -> Maybe a -> a
-Prelude Control.Monad Data.Maybe> :type ap fromMaybe
-ap fromMaybe :: (b -> Maybe b) -> b -> b
-
- -

The type of ap fromMaybe certainly looks correct, and a couple of experiments seem to indicate that it has the desired behaviour as well.

- -

But how does it work?

- -

The fromMaybe function seems clear to me, and in isolation, I think I understand what ap does - at least in the context of Maybe. When m is Maybe, it has the type Maybe (a -> b) -> Maybe a -> Maybe b.

- -

What I don't understand is how ap fromMaybe even compiles. To me, this expression looks like partial application, but I may be getting that wrong. If this is the case, however, I don't understand how the types match up.

- -

The first argument to ap is m (a -> b), but fromMaybe has the type a -> Maybe a -> a. How does that match? Which Monad instance does the compiler infer that m is? How does fromMaybe, which takes two (curried) arguments, turn into a function that takes a single argument?

- -

Can someone help me connect the dots?

-",HQ -"

Sublime Text has this same functionality via:

- -

ctrl+shift+m or cmd+shift+space

- -

How do I accomplish the same thing in Atom?

-",HQ -"

I'm new to webpack and I'm trying to understand loaders as well as its properties such as test, loader, include etc.

- -

Here is a sample snippet of webpack.config.js that I found in google.

- -
module: {
-    loaders: [
-      {
-        test: /\.js$/,
-        loader: 'babel-loader',
-        include: [
-          path.resolve(__dirname, 'index.js'),
-          path.resolve(__dirname, 'config.js'),
-          path.resolve(__dirname, 'lib'),
-          path.resolve(__dirname, 'app'),
-          path.resolve(__dirname, 'src')
-        ],
-        exclude: [
-          path.resolve(__dirname, 'test', 'test.build.js')
-        ],
-        cacheDirectory: true,
-        query: {
-          presets: ['es2015']
-        }
-      },
-    ]
-}
-
- -
    -
  1. Am I right that test: /.js$/ will be used only for files with extension .js?

  2. -
  3. The loader: 'babel-loader', is the loader we install using npm

  4. -
  5. The include: I have many questions on this. Am I right that anything we put inside the array will be transpiled? That means, index.js, config.js, and all *.js files in lib, app and src will be transpiled.

  6. -
  7. More questions on the include: When files get transpiled, do the *.js files get concatenated into one big file?

  8. -
  9. I think exclude is self explanatory. It will not get transpiled.

  10. -
  11. What does query: { presets: ['es2015'] } do?

  12. -
-",HQ -"

Were would you put code which you want to run only when your application/api starts in vanilla Phoenix application? Let's say I want to make sure some mnesia tables are created or configure my logger backend. The other thing is runtime configuration. They mention it in documentation but it's not clear to me where one would define/change runtime configuration.

- -

Endpoint.ex seems like a place where initial configuration is done but by looking at docs I can't find any callback that would allow me to run code only once at startup.

-",HQ -"

I have a simple web app that I've been building using redbean PHP which has a really simple structure with three bean types:

- -

areas -buildings -persons

- -

All relationships are exclusive 1:Many. So, a Person belongs to only 1 Building, and a Building belongs to 1 Area.

- -
Area
-  BuildingList
-    PersonList
-
- -

Currently, I have been developing it using Sqlite3 for ease of development, but I want to move the data to mySQL. I have a lot of data that I've already added.

- -

Is there an easy way to use RedBean to Export ALL beans to the new MySql Database?

- -

I know I can search for a sqlite -> MySQL/MariaDB converter, but I also potentially want to be able to use this in reverse to make migrating the site super easy to move/backup/change DBs.

- -

What I've tried below:

- -
R::setup('sqlite:/' . __DIR__ . '/data/database.db'); 
-R::addDatabase('mysql', $MySqlConn );
-
-$old_datas = R::findAll( 'area' );
-R::selectDatabase( 'mysql' );
-
-foreach ($old_datas as $bean) {
-    $new_area = R::dispense('area');
-    $new_area->importFrom( $bean );
-    $id = R::store( $new_area );
-    var_dump( $new_area ); // shows new data
-}
-
-var_dump( R::findAll( 'area' ) ); // returns empty array
-
-",HQ -"

React Native doesn't support the CSS display property, and by default all elements use the behavior of display: flex (no inline-flex either). Most non-flex layouts can be simulated with flex properties, but I'm flustered with inline text.

- -

My app has a container that contains several words in text, some of which need formatting. This means I need to use spans to accomplish the formatting. In order to achieve wrapping of the spans, I can set the container to use flex-wrap: wrap, but this will only allow wrapping at the end of a span rather than the traditional inline behavior of wrapping at word breaks.

- -

The problem visualized (spans in yellow):

- -

- -

(via http://codepen.io/anon/pen/GoWmdm?editors=110)

- -

Is there a way to get proper wrapping and true inline simulation using flex properties?

-",HQ -"

There is absolutely helpful class GridSearchCV in scikit-learn to do grid search and cross validation, but I don't want to do cross validataion. I want to do grid search without cross validation and use whole data to train. -To be more specific, I need to evaluate my model made by RandomForestClassifier with ""oob score"" during grid search. -Is there easy way to do it? or should I make a class by myself?

- -

The points are

- -
    -
  • I'd like to do grid search with easy way.
  • -
  • I don't want to do cross validation.
  • -
  • I need to use whole data to train.(don't want to separate to train data and test data)
  • -
  • I need to use oob score to evaluate during grid search.
  • -
-",HQ -"

How would one implement something that works like the defer statement from go in python?

- -

Defer pushes a function call to a stack. When the function containing the defer statement returns, the defered function calls are popped and executed one by one, in the scope that the defer statement was inside in the first place. Defer statements look like function calls, but are not executed until they are popped.

- -

Go example of how it works:

- -
func main() {
-    fmt.Println(""counting"")
-
-    var a *int
-    for i := 0; i < 10; i++ {
-        a = &i
-        defer fmt.Println(*a, i)
-    }
-
-    x := 42
-    a = &x
-
-    fmt.Println(""done"")
-}
-
- -

Outputs:

- -
counting
-done
-9 9
-8 8
-7 7
-6 6
-5 5
-4 4
-3 3
-2 2
-1 1
-0 0
-
- -

Go example of a usecase:

- -
var m sync.Mutex
-func someFunction() {
-    m.Lock()
-    defer m.Unlock()
-    // Whatever you want, with as many return statements as you want, wherever.
-    // Simply forget that you ever locked a mutex, or that you have to remember to release it again.
-}
-
-",HQ -"

I'd like the style of a button in my app to change when it is being pressed. What is the best way to do this?

-",HQ -"I have a date variable which has date in ""Fri Nov 27 20:17:01 IST 2015"" format. I need to display it as NOv 2015. How can i do that in R? Please help",LQ -"sql result ----> - -id student_name class -1 abc 1A -2 xyz 1A -3 dsk 1A -4 uij 1A -................. -................. -................. -................. -................. -up 1000 results - - -and i want to format data in my specific format - -id1 student_name1 class1 id2 student_name2 class2 id3 student_name3 class3 -1 abc 1A 2 abc 1A 3 abc 1A -4 abc 1A 5 abc 1A 6 abc 1A -7 abc 1A - -please help ........ -as soon as posible - -thanks & regards -ravi kumar",LQ -"

I am attempting to use the Java-Websocket library by TooTallNate to create a websocket client that receives messages from the coinbase exchange websocket stream. I am porting a program I made in Python to Java because of parallelisation bottlenecks in Python and to my knowledge I am doing things the same in Java as I did in Python. Here is my code to open the connection in Python using this websocket lib (This works as expected):

- -
ws = websocket.create_connection(""wss://ws-feed.exchange.coinbase.com"", 20)
-            ws.send(json.dumps({
-            ""type"": ""subscribe"",
-            ""product_id"": ""BTC-USD""
-        }))
-
- -

Here is my entire Java class:

- -
public class CoinbaseWebsocketClient extends WebSocketClient {
-
-private final Gson gson = new Gson();
-
-private CoinbaseWebsocketClient(URI serverURI) {
-    super(serverURI, new Draft_17());
-    connect();
-}
-
-private static URI uri;
-private static CoinbaseWebsocketClient coinbaseWebsocketClient;
-
-static {
-    try {
-        uri = new URI(""wss://ws-feed.exchange.coinbase.com"");
-    } catch (URISyntaxException e) {
-        e.printStackTrace();
-    }
-}
-
-protected static CoinbaseWebsocketClient get() {
-    if (coinbaseWebsocketClient == null) {
-        coinbaseWebsocketClient = new CoinbaseWebsocketClient(uri);
-    }
-    return coinbaseWebsocketClient;
-}
-
-@Override
-public void onOpen(ServerHandshake serverHandshake) {
-    System.out.println(""Websocket open"");
-    final JsonObject btcUSD_Request = new JsonObject();
-    btcUSD_Request.addProperty(""type"", ""subscribe"");
-    btcUSD_Request.addProperty(""product_id"", ""BTC_USD"");
-    final String requestString = gson.toJson(btcUSD_Request);
-    send(requestString);
-}
-
-@Override
-public void onMessage(String s) {
-    System.out.println(""Message received: "" + s);
-}
-
-@Override
-public void onClose(int code, String reason, boolean remote) {
-    System.out.println(""Websocket closed: "" + reason);
-}
-
-@Override
-public void onError(Exception e) {
-    System.err.println(""an error occurred:"" + e);
-}
-
- -

}

- -

I know there isn't a totally fundamental issue with my Java code because it works as expected when I use ws://echo.websocket.org as the URI instead of wss://ws-feed.exchange.coinbase.com. However when I try to connect to wss://ws-feed.exchange.coinbase.com I get this error:

- -
Websocket closed: draft org.java_websocket.drafts.Draft_17@7ca2fefb refuses handshake
-
- -

There is no authentication or anything like for this connection as far as I know (I didn't provide any in my Python program) so I'm at a loss as to what the source of this error is.

-",HQ -"This is code of MainActivity - -languages = (Spinner) findViewById(R.id.spin_lang); - languages.setOnItemSelectedListener(new OnItemSelectedListener() { - - @Override - public void onItemSelected(AdapterView parent, View v, - int pos, long id) { - // TODO Auto-generated method stub - if (pos==1){ - Toast.makeText(getApplicationContext(), ""You Selected :"" +languages.getSelectedItem().toString(),Toast.LENGTH_SHORT).show(); - setLocale(""en""); - } - else if(pos ==2){ - Toast.makeText(getApplicationContext(), ""You Selected :"" +languages.getSelectedItem().toString(),Toast.LENGTH_SHORT).show(); - setLocale(""de""); - } - } - @Override - public void onNothingSelected(AdapterView arg0) { - // TODO Auto-generated method stub - - } - }); - -the method created for change language. - -public void setLocale(String lang){ - - mylocal = new Locale(lang); - Locale.setDefault(mylocal); - Resources res = getResources(); - Configuration conf = res.getConfiguration(); - conf.locale = mylocal; - - DisplayMetrics dm = res.getDisplayMetrics(); - res.updateConfiguration(conf, dm); - } - - - -",LQ -"I want to assign strings to the student constructor's parameters based on what is typed into the JOptionPane input boxes . I have the user inputted information set to go to a variable but when I try and use those variables as my Parameters for the constructor I get an error. - -This is the Main - - import javax.swing.JOptionPane; - public class main - { - public static void main (String [] args) - { - - String nameinput ; - String gradeinput ; - String resourceinput ; - String whatMissinginput; - - int infoComformation = 1; - - if ( infoComformation == 1) - { nameinput =JOptionPane.showInputDialog(""What is the students name""); - gradeinput =JOptionPane.showInputDialog(""What is the students grade""); - resourceinput =JOptionPane.showInputDialog(""What resource are you pulling the child out for ""); - whatMissinginput =JOptionPane.showInputDialog(""What subject are you pulling the child out of ""); - infoComformation = JOptionPane.showConfirmDialog (null, ""Is this the correct informtion \n "" - +""Name = "" + nameinput + ""\n"" - + ""Grade = "" + gradeinput + ""\n"" - +""Resouce = "" + resourceinput + ""\n"" - +""Subject Missing = "" + whatMissinginput ); - } - else - if (infoComformation == 0) - //THIS IS WHERE THE PROBLEM IS - {student pupil = new student( nameinput, gradeinput ,resourceinput,whatMissinginput); - } - - - } - } - - - -Here is the Constructor Class - - - - import javax.swing.JOptionPane; - public class student - { - - - - public String studentinfo (String nameinput, String gradeinput , String resourceinput,String whatMissinginput ) - { - String name ="""" ; - String grade= """"; - String resource =""""; - String whatMissing=""""; - - - name=nameinput; - grade=gradeinput; - resource=resourceinput; - whatMissing=whatMissinginput ; - - return name+grade+resource+whatMissing; - - - - } - } - -What do I Do?",LQ -"Get a list of numbers L1, L2, L3....LN as argument -Assume L1 is the largest, Largest = L1 -Take next number Li from the list and do the following -If Largest is less than Li -Largest = Li -If Li is last number from the list then -return Largest and come out -Else repeat same process starting from step 3 - -Create a function prime_number that does the following -Takes as parameter an integer and -Returns boolean value true if the value is prime or -Returns boolean value false if the value is not prime - - -So far my code is : - -def get_algorithm_result(num_list): - - largest =num_list[0] - - for item in range(0,len(num_list)): - - if largest < num_list[item]: - - largest = num_list[item] - - return largest - - -def prime_number(integer): - - if integer%2==0: - return False - else: - return True - - - - -After executing the code i get -""Test Spec Failed - -Your solution failed to pass all the tests"" - -where I'm i going wrong because i believe my code is correct - -",LQ -"

I've run into this silly behaviour in swift where force-unwrapping an optional does not propagate.

- -

From the documentation:

- -
-

Trying to use ! to access a non-existent optional value triggers a runtime error. Always make sure that an optional contains a non-nil value before using ! to force-unwrap its value.

-
- -

To reproduce:

- -
func foo(bar:String?) throws{
-    print(bar!);
-}
-
- -

And

- -
try foo(nil);
-
- -

This does not seem logical or consistent to me and I can't find any documentation on this subject.

- -

Is this by design?

-",HQ -"I have a problem, I want that each id in the foreign key can output the name instead of their id. [Here's the image][1] - -Here's my code : - - - - - - - - - - - - - - -
- prepare(""SELECT * FROM student,school_year where user_type =3 AND student.syearid = school_year.syearid AND school_year.from_year like $YearNow ""); - $result->execute(); - for($i=0; $row = $result->fetch(); $i++){ - ?> -
- - - - //name belong's to their id's - - - - - - - -
IDno Lastname Firstname Department Program Action
"" > Running
-Thanks guys need a help - [1]: http://i.stack.imgur.com/aOWkd.png - -",LQ -"

Is it bad or good parctice to inject namespace std::experimental into std like following?

- -
namespace std
-{
-namespace experimental
-{
-}
-using namespace experimental;    
-}
-
-#include <experimental/optional>
-
-int main()
-{
-    std::optional< int > o;
-    return 0;
-}
-
- -

Or even in more modern form:

- -
#if __has_include(<optional>)
-# include <optional>
-#elif __has_include(<experimental/optional>)
-# include <experimental/optional>
-namespace std
-{
-using namespace experimental;    
-}
-#else
-#error !
-#endif
-
-int main()
-{
-    std::optional< int > o;
-    return 0;
-}
-
- -

The intention to introduce std::experimental ""sub-namespace"" is clear because std::experimental currently contains a plenty of new libraries. I think it is very likely all them will migrate into namespace std without any substantial changes and user code written currently can rely upon this (am I totally wrong?). Otherwise all this code should be refactored to change from std::experimental:: to std:: in the future. It is not big deal, but there may be reasons not to do so.

- -

The question is about both production code and not-too-serious code.

-",HQ -"

I am trying to perform unit tests in Django. I have the following form in index.html:

- -
<form method=POST>
-  {% csrf_token %}
-  <input name=itemT>
-</form>
-
- -

And I am testing if the view render the template correctly:

- -

views.py

- -
def homePage(request):
-    return render(request, 'index.html')
-
- -

tests.py:

- -
request = HttpRequest()
-
-response = homePage(request)
-if response:
-    response = response.content.decode('UTF-8')
-
-expectedHTML = render_to_string('index.html')
-self.assertEqual(response, expectedHTML)
-
- -

The response has a hidden input field with a csrf token; however, the expectedHTML does not (there is just a blank line at the place of {% csrf_token %}). So the assertion always fails.

- -

Is it possible to have render_to_string() generate a csrf input field? If so, would the token of response the same as that of expectedHTML?

- -

Or, is there any way to ignore the input field such that the test can be successful?

-",HQ -"

I have written a custom container class which contains a std::vector<double> instance - works nicely. For compatibility with other API's I would like to export the content of the container as a std::vector<double> copy . Currently this works:

- -
MyContainer container;
-....
-std::vector<double> vc(container.begin(), container.end());
-
- -

But if possible would like to be able to write:

- -
MyContainer container;
-....
-std::vector<double> vc(container);
-
- -

Can I (easily) create such a std::vector<double> constructor?

-",HQ -"I would like to know how to check the value of a specific key in an hashmap, for example, -if the hashmap ""map"" contains the key ""Key"" then what is the value of the key ""Key""?",LQ -"
Picasso.with(context).load(""url"").into(imageView);
-
- -

Here instead of url i want bitmap how can i achieve this. -like below-

- -
Picasso.with(context).load(bitmap).into(imageView);
-
-",HQ -"

I did everything as the official docs writes.But when i navigate backwards,the MainActivity(parent) doesn't open.Instead, the application closes.

- -

here is my code:

- -
Intent resultIntent = new Intent(context, TestActivity.class);
-
-TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
-stackBuilder.addParentStack(TestActivity.class);
-stackBuilder.addNextIntent(resultIntent);
-
- -

the manifest is as below:

- -
    <activity
-        android:name="".MainActivity""
-        android:label=""@string/app_name""
-        android:theme=""@style/AppTheme.NoActionBar"">
-        <intent-filter>
-            <action android:name=""android.intent.action.MAIN"" />
-
-            <category android:name=""android.intent.category.LAUNCHER"" />
-        </intent-filter>
-    </activity>
-
-    <activity
-        android:name="".TestActivity""
-        android:parentActivityName="".MainActivity"">
-        <meta-data
-            android:name=""android.support.PARENT_ACTIVITY""
-            android:value="".Main2Activity"" />
-    </activity>
-
- -

Thank you.

-",HQ -"

Can I write a bash script inside a Lambda function? I read in the aws docs that it can execute code written in Python, NodeJS and Java 8.

- -

It is mentioned in some documents that it might be possible to use Bash but there is no concrete evidence supporting it or any example

-",HQ -"why this query not show more than one data.even I have 10/12 data but this line only show 1.check I have limit it 3 but it show only 1 - -$getAds=mysql_query(""SELECT * FROM advertises WHERE status='RUNNING' AND adult='0' AND (country LIKE '%$test%' OR country='ALL') AND (device LIKE '%$pabu%' OR device='ALL') ORDER BY rand() LIMIT 0,3"");",LQ -"

I am new to Python. I have tried to ran this code but I am getting an error message for ImportError: No module named 'HTMLParser'. I am using Python 3.x. Any reason why this is not working ?

- -
#Import the HTMLParser model
-from HTMLParser import HTMLParser
-
-#Create a subclass and override the handler methods
-class MyHTMLParser(HTMLParser):
-
-#Function to handle the processing of HTML comments
-    def handle_comment(self,data):
-        print (""Encountered comment: "", data)
-        pos = self.getpos()
-        print (""At line: "", pos[0], ""position "", pos[1])
-
-def main():
-    #Instantiate the parser and feed it some html
-    parser= MyHTMLParser()
-
-    #Open the sample file and read it
-    f = open(""myhtml.html"")
-    if f.mode== ""r"":
-        contents= f.read()  #read the entire FileExistsError
-        parser.feed()
-
-
-if __name__== ""__main__"":
-    main()
-
- -

I am getting the following error:

- -
Traceback (most recent call last):
-  File ""C:\Users\bm250199\workspace\test\htmlparsing.py"", line 3, in <module>
-    from HTMLParser import HTMLParser
-ImportError: No module named 'HTMLParser'
-
-",HQ -"

I'm trying to install Pillow (Python module) using pip, but it throws this error:

- -
ValueError: jpeg is required unless explicitly disabled using --disable-jpeg, aborting
-
- -

So as the error says, I tried:

- -
pip install pillow --global-option=""--disable-jpeg""
-
- -

But it fails with:

- -
error: option --disable-jpeg not recognized
-
- -

Any hints how to deal with it?

-",HQ -"

I was trying to generate an executable for a simple Python script. My setup.py code looks like this:

- -
from distutils.core import setup
-import py2exe
-setup(console=[""script.py""])
-
- -

However, I am getting the error shown in the screenshot. Is there something I could try to fix this? I am using Windows 10.

- -

-",HQ -"

I want to do some simple logging for my server which is a small Flask app running in a Docker container.

- -

Here is the Dockerfile

- -
# Dockerfile
-FROM dreen/flask
-MAINTAINER dreen
-WORKDIR /srv
-
-# Get source
-RUN mkdir -p /srv
-COPY perfektimprezy.tar.gz /srv/perfektimprezy.tar.gz
-RUN tar x -f perfektimprezy.tar.gz
-RUN rm perfektimprezy.tar.gz
-
-# Run server
-EXPOSE 80
-CMD [""python"", ""index.py"", ""1>server.log"", ""2>server.log""]
-
- -

As you can see on the last line I redirect stderr and stdout to a file. Now I run this container and shell into it

- -
docker run -d -p 80:80 perfektimprezy
-docker exec -it ""... id of container ..."" bash
-
- -

And observe the following things:

- -

The server is running and the website working

- -

There is no /srv/server.log

- -

ps aux | grep python yields:

- -
root         1  1.6  3.2  54172 16240 ?        Ss   13:43   0:00 python index.py 1>server.log 2>server.log
-root        12  1.9  3.3 130388 16740 ?        Sl   13:43   0:00 /usr/bin/python index.py 1>server.log 2>server.log
-root        32  0.0  0.0   8860   388 ?        R+   13:43   0:00 grep --color=auto python
-
- -

But there are no logs... HOWEVER, if I docker attach to the container I can see the app generating output in the console.

- -

How do I properly redirect stdout/err to a file when using Docker?

-",HQ -"

I know that it is possible to pass parameters to a Java program running on AWS Lambda in order to test it. But I do not know how to pass those parameters if this program gets called by a schedule event.

- -

Does anyone know if this is possible? If yes, how? -I was not able to find anything about it.

- -

Thanks in advance

-",HQ -"

I am trying to set up a remote debugger with PyCharm on a Vagrant Machine. -I am following this PyCharm tutorial. However, the Add Remote option is not available for me. Just Add local and Create VirtualEnv.

- -

Any idea why is this happening?

-",HQ -"

I am creating a custom ActionBar using a RelativeLayout with an ImageButton to the left to replace it. I have downloaded the Back icon from google's website to use on the ImageButton

- -

The problem is that I need to create a Back button to replace the original ActionBar's Back Button, and I need it to be exactly identical to the original ActionBar's back button.

- -

I am wondering what is the system's default padding for the Back button image?

-",HQ -"

I'm trying to get my ASP.NET application to automatically start whenever the application pool is running.

- -

As per the lots and lots of references online I have already done the following:

- -
    -
  • Set the Application Pool to StartMode=AlwaysRunning
  • -
  • Set the site in question (that belongs to beforementioned Pool) to preloadEnabled=true
  • -
  • Install the Application Initialization feature to the Windows installation
  • -
  • Add the <applicationInitialization> node to the web.config's <system.webServer> node
  • -
- -

The web application is based on Owin and has a simple log4net logging statement in it's Startup.Configuration() method. Now when restarting IIS I see that the w3svc.exe process is running, so I know the StartMode=AlwaysRunning is working. There are however no logging messages in the log file.

- -

Navigating to any url (even a nonexisting one) in the application will start the app and add the log line.

- -

Because of the actual work that's done in the startup of the application I really want the application to truly preload, but I seem to be unable to get it done.

- -

Searching this site I have unfortunately not been able to find a solution.

- -

Thanks in advance.

-",HQ -"

The DynamicContentLoader docs don't explain how I can properly load a child component's inputs. Let's say I have a child like:

- -
@Component({
-  selector: 'child-component',
-  template: '<input type=""text"" [(ngModel)]=""thing.Name"" />'
-})
-class ChildComponent {
-  @Input() thing : any;
-}
-
- -

and a parent like:

- -
@Component({
-  selector: 'my-app',
-  template: 'Parent (<div #child></div>)'
-})
-class MyApp {
-  thing : any;
-  constructor(dcl: DynamicComponentLoader, elementRef: ElementRef) {
-    dcl.loadIntoLocation(ChildComponent, elementRef, 'child');
-  }
-}
-
- -

How should I go about passing thing into the child component such that the two components can be data bound against the same thing.

- -

I tried to do this:

- -
@Component({
-  selector: 'my-app',
-  template: 'Parent (<div #child></div>)'
-})
-class MyApp {
-  thing : any;
-  constructor(dcl: DynamicComponentLoader, elementRef: ElementRef) {
-    dcl.loadIntoLocation(ChildComponent, elementRef, 'child').then(ref => {
-        ref.instance.thing = this.thing;
-    });
-  }
-}
-
- -

It sort of works, but they are not synchronised as you would expect.

- -

Basically I am trying to achieve the same thing that would have been achieved by using ng-include in angular 1 where the child is a dynamically determined component and shares the model with its parent.

- -

Thanks in advance ...

-",HQ -"

When I click a link on my website it is creating an outline around the link like so

- -

- -

I've tried adding:

- -
a.image-link:focus { outline: 0; }
-
- -

and

- -
a {outline : none;}
-
- -

But nothing seems to get rid of it. Is there a way to remove it?

-",HQ -"[enter image description here][1]ServiceCalls serviceCalls = new ServiceCalls(this, ""ks""); - serviceCalls.execute(requestParams); - - - [1]: http://i.stack.imgur.com/DTjw1.png - -Note:pls check the image.I am not good at english.thanks in advance",LQ -"

I've been trying to plug into the Toggl API for a project, and their examples are all using CURL. I'm trying to use the C# wrapper which causes a bad request when trying to create a report, so I thought I'd use Postman to try a simple HTTP request.

- -

I can't seem to get the HTTP request to accept my API Token though. Here's the example that they give (CURL):

- -
curl -u my-secret-toggl-api-token:api_token -X GET ""https://www.toggl.com/reports/api/v2/project/?page=1&user_agent=devteam@example.com&workspace_id=1&project_id=2""
-
- -

I've tried the following HTTP request with Postman with a header called -api_token with my token as the value:

- -
https://www.toggl.com/reports/api/v2/project/?user_agent=MYEMAIL@EMAIL.COM&project_id=9001&workspace_id=9001
-
- -

(changed ids and email of course).

- -

Any help on how to use the CURL -u in HTTP would be appreciated, thanks.

-",HQ -"i m new in smartface.io software.I wants to add images in repeatbox, can someone help me to add images in repeatbox. - -Thanks -",LQ -"

When I run composer install, it will install all my ""require"" and the ""require"" of the other package.

- -

My composer.json

- -
{
-    ""name"": ""my_app"",
-    ""require"": {
-        ""some/package"": ""0.0.0""
-    }
-}
-
- -

The ""child"" dependency

- -
{
-    ""name"": ""some/package"",
-    ""require"": {
-        ""zendframework/zend-mail"": ""2.4.*@dev"",
-        ""soundasleep/html2text"": ""~0.2"",
-        ""mpdf/mpdf"": ""6.0.0"",
-        ""endroid/qrcode"": ""1.*@dev""
-    }
-}
-
- -

I know that it's possible ignore the php extensions, but what about these second require package?

-",HQ -"

I've installed git on a mac via brew install git. When I try to start gitk I get the following error:

- -
Error in startup script: unknown color name ""lime""
-    (processing ""-fore"" option)
-    invoked from within
-""$ctext tag conf m2 -fore [lindex $mergecolors 2]""
-    (procedure ""makewindow"" line 347)
-    invoked from within
-""makewindow""
-    (file ""/usr/local/bin/gitk"" line 12434)
-
- -

It appears that my Mac doesn't have a color named lime.

- -

Can I add a lime color to the environment, or is there a better fix?

- -

The git version is 2.7.0, and the Mac is running Yosemite 10.10.5

-",HQ -"

I'm on Windows. I installed git and posh-git (some helpers for Windows PowerShell). I can add keys with ssh-add and can authenticate with github and my webserver. I can also use git from the PowerShell to interact with my repositories.

- -

But there is one thing I can't do: I use git-plus for the Atom editor. And I don't get it to push to my repo. What is my problem?

-",HQ -"

I'm trying to allow for passing in a field name and running it in an Ecto query expression dynamically, like so:

- -
def count_distinct(query, field_name) when is_binary(field_name) do
-  query
-  |> select([x], count(Map.fetch!(x, field_name), :distinct))
-end
-
- -

However, I get this compilation error:

- -
(Ecto.Query.CompileError) `Map.fetch!(x, field_name)` is not a valid query expression
-
- -

Is there any way to accomplish this?

-",HQ -"

When I try to build and run the app on the device I get following error App installation failed: This application's bundle identifier does not match its code signing identifier.

- -

I checked the signing certificates, bundle ids, provision profile, entitlements and everything is correct.

- -

- -

Any Ideas ?

-",HQ -"I am interested in using this Domain Transform Edge-Preserving Video filtering technique (http://inf.ufrgs.br/~eslgastal/DomainTransform/ - source code available there) for image enhancement in Matlab (2015a). - -At around 3:12 on a 5-minute video (on the site linked above), they perform detail enhancement. I'm not sure how to use the filtered image to sharpen/deblur my original image. - -I usually use: -H = padarray(2,[2 2]) - fspecial('gaussian' ,[5 5],2); -sharpened = imfilter(I,H); - -to sharpen images, but I can't use imfilter with the filtered image from the edge-preserving technique (I've been testing with the normalized convolution filter from the source code) that I'm interested in. - -Can anyone advise me on what I can do to make use of this filtered image for sharpening/deblurring? Providing a snippet of code would be appreciated as well if possible. ",LQ -"

Let's say I do the following:

- -
    -
  1. Open Xcode 7
  2. -
  3. File | New | Project | Cocoa Touch Framework
  4. -
  5. Create ""TestFramework"" with the Swift language
  6. -
  7. Create a file Hello.swift with public func hello() { print(""Hello"") }.
  8. -
- -

From here, I can build a debug build of the framework (inside the Debug-iphoneos folder), but I cannot figure out how to build the release version of the framework (inside Release-iphoneos). I thought Archive might do it, but it doesn't. Pointers please?

-",HQ -"USE [taxi] -GO - -DECLARE @return_value int - -EXEC @return_value = [dbo].[stp_DespatchedJob] - @JobStatusId = NULL - -SELECT 'Return Value' = @return_value - -GO -",LQ -"

Check out this sandbox

- -

When declaring a struct that inherits from a different struct:

- -
type Base struct {
-    a string
-    b string
-}
-
-type Something struct {
-    Base
-    c string
-}
-
- -

Then calling functions specifying values for the inherited values gives a compilation error:

- -
f(Something{
-    a: ""letter a"",
-    c: ""letter c"",
-})
-
- -

The error message is: unknown Something field 'a' in struct literal.

- -

This seems highly weird to me. Is this really the intended functionality?

- -

Thanks for the help!

-",HQ -"

After the latest update to AS, the emulator's additional command line options are missing. I use this primarily for -http-proxy and -scale commands. Any help in locating these options, or it's replacement, would be appreciated.

-",HQ -"

After not finding a working answer anywhere else on the internet, I am submitting this ask-and-answer-myself tutorial

- -

How can I get a simple PhantomJS process running from a NodeJS script on AWS Lambda? My code works fine on my local machine, but I run into different problems trying to run it on Lambda.

-",HQ -"

I'm trying to combine a few columns in EF from Oracle then do a .Contains() over the columns like this:

- -
public IEnumerable<User> SearchUsers(string search)
-{
-    search = search.ToLower();
-
-    return _securityUow.Users
-            .Where(u => (u.FirstName.ToLower() + "" "" + u.LastName.ToLower() + "" ("" + u.NetId.ToLower() + "")"").Contains(search))
-            .OrderBy(u => u.LastName)
-            .ThenBy(u => u.FirstName)
-            .AsEnumerable();
-}
-
- -

However, I'm getting this exception:

- -
{
-  ""Message"": ""An error has occurred."",
-  ""ExceptionMessage"": ""An error occurred while executing the command definition. See the inner exception for details."",
-  ""ExceptionType"": ""System.Data.Entity.Core.EntityCommandExecutionException"",
-  ""StackTrace"": ""   at SoftwareRegistration.WebUI.Controllers.Api.V1.UserContactController.Lookup(String search) in C:\LocalRepository\OnlineSupport\SoftwareRegistration\trunk\release\SoftwareRegistration\SoftwareRegistration.WebUI\Controllers\Api\V1\UserContactController.cs:line 40\r\n   at lambda_method(Closure , Object , Object[] )\r\n   at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.<>c__DisplayClass10.<GetExecutor>b__9(Object instance, Object[] methodParameters)\r\n   at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.Execute(Object instance, Object[] arguments)\r\n   at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ExecuteAsync(HttpControllerContext controllerContext, IDictionary`2 arguments, CancellationToken cancellationToken)\r\n--- End of stack trace from previous location where exception was thrown ---\r\n   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\r\n   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\r\n   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()\r\n   at System.Web.Http.Controllers.ApiControllerActionInvoker.<InvokeActionAsyncCore>d__0.MoveNext()\r\n--- End of stack trace from previous location where exception was thrown ---\r\n   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\r\n   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\r\n   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()\r\n   at System.Web.Http.Controllers.ActionFilterResult.<ExecuteAsync>d__2.MoveNext()\r\n--- End of stack trace from previous location where exception was thrown ---\r\n   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\r\n   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\r\n   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()\r\n   at System.Web.Http.Dispatcher.HttpControllerDispatcher.<SendAsync>d__1.MoveNext()"",
-  ""InnerException"": {
-    ""Message"": ""An error has occurred."",
-    ""ExceptionMessage"": ""ORA-12704: character set mismatch"",
-    ""ExceptionType"": ""Oracle.ManagedDataAccess.Client.OracleException"",
-    ""StackTrace"": ""   at OracleInternal.ServiceObjects.OracleCommandImpl.VerifyExecution(OracleConnectionImpl connectionImpl, Int32& cursorId, Boolean bThrowArrayBindRelatedErrors, OracleException& exceptionForArrayBindDML, Boolean& hasMoreRowsInDB, Boolean bFirstIterationDone)\r\n   at OracleInternal.ServiceObjects.OracleCommandImpl.ExecuteReader(String commandText, OracleParameterCollection paramColl, CommandType commandType, OracleConnectionImpl connectionImpl, OracleDataReaderImpl& rdrImpl, Int32 longFetchSize, Int64 clientInitialLOBFS, OracleDependencyImpl orclDependencyImpl, Int64[] scnForExecution, Int64[]& scnFromExecution, OracleParameterCollection& bindByPositionParamColl, Boolean& bBindParamPresent, Int64& internalInitialLOBFS, OracleException& exceptionForArrayBindDML, Boolean isDescribeOnly, Boolean isFromEF)\r\n   at Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior)\r\n   at Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteDbDataReader(CommandBehavior behavior)\r\n   at System.Data.Common.DbCommand.ExecuteReader(CommandBehavior behavior)\r\n   at System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.<Reader>b__c(DbCommand t, DbCommandInterceptionContext`1 c)\r\n   at System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch[TTarget,TInterceptionContext,TResult](TTarget target, Func`3 operation, TInterceptionContext interceptionContext, Action`3 executing, Action`3 executed)\r\n   at System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.Reader(DbCommand command, DbCommandInterceptionContext interceptionContext)\r\n   at System.Data.Entity.Internal.InterceptableDbCommand.ExecuteDbDataReader(CommandBehavior behavior)\r\n   at System.Data.Common.DbCommand.ExecuteReader(CommandBehavior behavior)\r\n   at System.Data.Entity.Core.EntityClient.Internal.EntityCommandDefinition.ExecuteStoreCommands(EntityCommand entityCommand, CommandBehavior behavior)""
-  }
-}
-
- -

The columns I'm querying are all of type VARCHAR2(128) in Oracle.

- -

I'm also using this exact same code in another project and it works. The only difference is that for the project that works I'm using Oracle.DataAccess and for the one that doesn't work, I'm using Oracle.ManagedDataAccess (I am unable to use Oracle.DataAccess for this project). So I believe there is a bug/problem in the managed driver.

- -

I'm open to solutions or workarounds.

-",HQ -"

I have DOM that looks something like this:

- -
<app>
-    <router-outlet></router-outlet>
-    <project>...</project>
-</app>
-
- -

where project element is inserted by the router.

- -

How do I add a class to this element?

-",HQ -"

My Espresso tests were running until I had to support multidex.

- -

My build.gradle, I have

- -
minSdkVersion 14
-targetSdkVersion 23
-multiDexEnabled = true
-
-testInstrumentationRunner ""com.android.test.runner.MultiDexTestRunner""
-
-
-androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
-androidTestCompile 'com.android.support.test.espresso:espresso-contrib:2.2.1'
-androidTestCompile 'com.android.support.test:runner:0.4.1'
-androidTestCompile 'com.android.support.test:rules:0.4.1'
-
-dexOptions {
-        jumboMode true
-        javaMaxHeapSize ""4g""
-        incremental true
-    }
-
- -

Test1AuthenticationEspressoTest

- -
@RunWith(AndroidJUnit4.class)
-@SmallTest
-public class Test1AuthenticationEspressoTest {
-    @Rule
-    public ActivityTestRule<WelcomeActivity> mActivityRule = new  ActivityTestRule(WelcomeActivity.class);
-
-}
-
- -

Here is the Error I get

- -
-

junit.framework.AssertionFailedError: No tests found in - com.livestrong.tracker.test.Test1AuthenticationEspressoTest

-
- -

Any help will be appreciated. Any one has espresso working with multidex ?

-",HQ -"

I'm trying to export more than one variable in ES6:

- -

exports.js

- -
var TestObject = Parse.Object.extend('TestObject')
-var Post = Parse.Object.extend('Post')
-
-export default TestObject
-export Post
-
- -

main.js:

- -
import TestObject from '../store'
-import Post from '../store'
-
-var testObject = new TestObject() // use Post in the same way
-testObject.save(json).then(object => {
-  console.log('yay! it worked', object)
-})
-
- -

I understand that there's only one default value so I only used default in the first item.

- -

However, I get this error message:

- -
Module build failed: SyntaxError: /home/alex/node/my-project/src/store/index.js: Unexpected token (9:7)
-   7 | 
-   8 | export default TestObject
->  9 | export Post
-
- -

Maybe I'm doing it the wrong way?

-",HQ -"

I've been trying to find a simple all purpose unit test framework for Spring MVC based Rest Services I've written.

- -

I've been searching online and narrowed it down to:

- - - -

I like RestFuse because it's mostly annotation based, but rest assured seems to have a easier way of passing parameters and checking responses. And finally being a Spring MVC Rest Service project, I'm wondering if I should just stick with the already established way of testing Rest Services in Spring with MockMVC.

- -

Interested to get any feedback, as well as performance, past experiences and if there's anything else I should take into consideration.

-",HQ -" -i want to change this sql query to entity frame query - - SELECT dbo.ClassTiming.StartTime, dbo.ClassTiming.EndTime, dbo.Employee.StaffName, dbo.Department.DepartmentName, dbo.Class.ClassName, dbo.Section.SectionName, dbo.WeekDay.DayName - FROM dbo.Timetable INNER JOIN - dbo.ClassTiming ON dbo.Timetable.ClassTimingId = dbo.ClassTiming.Id INNER JOIN - dbo.Employee ON dbo.Timetable.StaffId = dbo.Employee.StaffID INNER JOIN - dbo.Department ON dbo.Timetable.DepartmentId = dbo.Department.id INNER JOIN - dbo.Section ON dbo.Timetable.SectionID = dbo.Section.ID INNER JOIN - dbo.Class ON dbo.Timetable.ClassID = dbo.Class.ID INNER JOIN - dbo.WeekDay ON dbo.Timetable.WeekDayId = dbo.WeekDay.Id ",LQ -"Javascript expert, - -i have the below script - - $('#copyright, #credit, #doom a').each(function () { - if ($(this).css('font-size') != '15px') { - document.location.href = ""http://www.example.com""; - } - }); - -It check all these IDs Css properties for font-size 15px if not equal then the page will be redirect to example.com - - -Now here what i want, I want to know how can i add **multiple css property** in that script not only the font-size but i also want to include position:relative;height:auto;background:#000; to check it.. - -it may be look like this: (this is only example not the working script ) - - $('#copyright, #credit, #doom a').each(function () { - if - position:relative;height:auto;background:#000 - - { do nothing } - - else - { - document.location.href = ""http://www.example.com""; - } - }); -",LQ -"

Our REST APIs are returning results in Pages. Here is an example of one Controller

- -
@RequestMapping(value = ""/search"", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE + "";charset=UTF-8"")
-@ResponseStatus(HttpStatus.OK)
-public Page<MyObject> findAll(Pageable pageable) {
-  ...
-}
-
- -

Is there an easy way to consume that API with RestTemplate?

- -

if we do

- -
ParameterizedTypeReference<Page<MyObject>> responseType = new ParameterizedTypeReference<Page<MyObject>>() { };
-
-ResponseEntity<Page<MyObject>> result = restTemplate.exchange(url, HttpMethod.GET, null/*httpEntity*/, responseType);
-
-List<MyObject> searchResult = result.getBody().getContent();
-
- -

it throws an exception

- -
org.springframework.http.converter.HttpMessageNotReadableException: Could not read document: Can not construct instance of org.springframework.data.domain.Page, 
-problem: abstract types either need to be mapped to concrete types, have custom deserializer, or be instantiated with additional type information at [Source: java.io.PushbackInputStream@3be1e1f2; line: 1, column: 1]; nested exception is com.fasterxml.jackson.databind.JsonMappingException: Can not construct instance of org.springframework.data.domain.Page, problem: abstract types either need to be mapped to concrete types, have custom deserializer, or be instantiated with additional type information
-
- -

Thank you in advance

-",HQ -"

Im my audio player I need to get the duration of my audio track. I need a function that gets src of the audio and returns its duration. Here is what I am trying to do but does not work:

- -
function getDuration(src){
-    var audio = new Audio();
-    audio.src = ""./audio/2.mp3"";
-    var due;
-    return getVal(audio);
-}
-function getVal(audio){
-    $(audio).on(""loadedmetadata"", function(){
-        var val = audio.duration;
-        console.log("">>>"" + val);
-        return val;
-    });
-}
-
- -

I tried to split into two functions but it does not work. It would be great if it was as on working function.

- -

Any idea?

-",HQ -"[This is the source grid view with a sql datasource named trialbalance][1] - - [1]: http://i.stack.imgur.com/bA2jO.jpg - -[Output gridview should look like this...][2] - - [2]: http://i.stack.imgur.com/M9Qmd.jpg",LQ -"Hello I am trying to create a simple servlet as follows - - import java.io.*; - import javax.servlet.*; - import javax.servlet.http.*; - public class Form extends HttpServlet - { - public void doGet(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException - { - res.setContentType(""text/html""); - PrintWriter p=res.getWriter(); - p.println(""The request came from""+req.getMethod()+""""); - } - - } - -I am taking the request from an html file coded as follows. - - {html} - - {body} - - {form action=""http://localhost:8080/Form"" method=""GET""} - - First Name: {input type=""text"" name=""name""} - - {br } - - {input type=""submit"" value=""Enter""} - - {/form} - - {/body} - - {/html} - -",LQ -"

I'd like to format my code using clang-format in CLion. I've gone through the settings and haven't found any setting that would allow me to run an external command to transform code. How are such things normally done in CLion?

-",HQ -"i am trying to pass only the onClicked value in the below code instead of passing the whole array to intent. Is it possible?? - -here, i am sending whole array as in ""i.putExtra(""rank"", rank)"", is there some other way. - - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_main); - - rank = new String[] { ""1"", ""2"", ""3"", ""4"", ""5"", ""6"", ""7"", ""8"", ""9"", ""10"" }; - - country = new String[] { ""China"", ""India"", ""United States"", - ""Indonesia"", ""Brazil"", ""Pakistan"", ""Nigeria"", ""Bangladesh"", - ""Russia"", ""Japan"" }; - - population = new String[] { ""2,000,000,000"", ""1,500,000,000"", - ""123,123,123"", ""123,123,123"", ""123,123,123"", ""123,123,123"", - ""123,123,123"", ""123,123,123"", ""123,123,123"", ""123,123,123"" }; - - flag = new int[] { R.drawable.china, R.drawable.india, - R.drawable.unitedstates, R.drawable.indonesia, - R.drawable.brazil, R.drawable.pakistan, R.drawable.nigeria, - R.drawable.bangladesh, R.drawable.russia, R.drawable.japan }; - - listView = (ListView) findViewById(R.id.listview); - - listViewAdapter = new ListViewAdapter(this, rank, country, population, flag); - - listView.setAdapter(listViewAdapter); - - listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { - @Override - public void onItemClick(AdapterView adapterView, View view, int position, long l) { - - Intent i = new Intent(MainActivity.this, SingleItemView.class); - - i.putExtra(""rank"", rank); - i.putExtra(""country"", country); - i.putExtra(""population"", population); - i.putExtra(""flag"", flag); - i.putExtra(""position"", position); - startActivity(i); - } - }); -'",LQ -Hello i am using `UISerchbar` in `tableview` but is there any easy way to create custom `searchbar` in `tableview headerview`?,LQ -"I have a Players table with 3 columns id, name, wins(number of win matches). To make a Swiss pairing, I sort this table order by wins. How can I return a table with 4 columns id1, name1, id2, name2 such that each row of new table is the pair of rows in Players table. I can do it in python language, but I want to know that there is any query in SQL which could implement this task? -For example -Player table -Id Name Wins -1 A 3 -2 B 1 -3 C 4 -4 D 0 -I want to return -Id Name Id Name -3 C 1 A -2 A 4 D - -Thanks",LQ -"

I would like to include both my Facebook Pixel id and customer's Facebook Pixel id in one page, so both of us can have some insight about users, and customer can also create ADs for the page if he or she wants to.

- -

I already test tracking and it seems to work fine. However I do receive warnings from Pixel SDK about ""Multiple different pixels were detected on this page"".

- -

Since I cannot find any information about this scenario, I would like to know whether it is okay to do so ?

- -

Thanks

-",HQ -"
#training the model
-model_1_features = ['sqft_living', 'bathrooms', 'bedrooms', 'lat', 'long']
-model_2_features = model_1_features + ['bed_bath_rooms']
-model_3_features = model_2_features + ['bedrooms_squared', 'log_sqft_living', 'lat_plus_long']
-
-model_1 = linear_model.LinearRegression()
-model_1.fit(train_data[model_1_features], train_data['price'])
-
-model_2 = linear_model.LinearRegression()
-model_2.fit(train_data[model_2_features], train_data['price'])
-
-model_3 = linear_model.LinearRegression()
-model_3.fit(train_data[model_3_features], train_data['price'])
-
-# extracting the coef
-print model_1.coef_
-print model_2.coef_
-print model_3.coef_
-
- -

If I change the order of the features, the coef are still printed in the same order, hence I would like to know the mapping of the feature with the coeff

-",HQ -"

My component is defined this way:

- -
import { Component } from 'angular2/core'
-
-@Component({
-    selector: 'sidebar',
-    templateUrl: 'js/app/views/sidebar.html',
-})
-export class SidebarComponent {
-    public sections: boolean[] = [
-        true,
-        false,
-        false,
-        false,
-        false,
-        false,
-        false,
-        false
-    ];
-}
-
- -

The sidebar.html template:

- -
<h3 class=""proofTitle"">...</h3>
-<p [hidden]=""sections[0]"">
-    ...
-</p>
-<p [hidden]=""sections[1]"">
-    ...
-</p>
-...
-<p [hidden]=""sections[7]"">
-    ...
-</p>
-
- -

Seems pretty straight forward, but for some reason, it's showing all of the sections... what am I missing?

-",HQ -"

Should I care how my tests cover the external libraries I'm using in my project ?

- -

The py.test --cov displays how all files are covered, including ones in my virtualenv directory. How can I make the output show only the coverage of the modules I've written ?

-",HQ -"I am parsing JSON String fetched from web.(Around 40,000 records in a single chunk). I call AsyncTask recursively(40k records retrieved in a single call) until i fetched all the records from server(Total records 2 lac). - -In first two calls app responds smooth and around 80k records fetched from server, but in third call OutOfMemory error occurs. I searched the web and got to know that this error occurs when heap size overflowed. - - String response = """"; - try { - DefaultHttpClient httpClient = new DefaultHttpClient(); - HttpEntity httpEntity = null; - HttpResponse httpResponse = null; - - HttpPost httpPost = new HttpPost(""http://URL""); - - httpPost.setEntity(new StringEntity(strings[0])); - - httpPost.setHeader(""Content-Type"", ""application/json""); - httpPost.setHeader(""Accept"", ""application/json""); - - - httpResponse = httpClient.execute(httpPost); - httpEntity = httpResponse.getEntity(); - response = EntityUtils.toString(httpEntity); - -Error occurs on the below line. - - response = EntityUtils.toString(httpEntity); - -My code works fine for first 2 calls, then why it throws OutOfMemory in next call? Why first two calls works fine with the same size of data? - -I know their are many questions regarding OutOfMemory error. But, I want to know that how android allocates the heap size? Does it depends on the free memory of device? Does the size of heap reduced by android when the size of app data increase or it remains same? - -Please ignore if you found this question worthless. :) ",LQ -"

The official documentation of AngularJS does not contain any thing that describes how $uibModalInstance.close works, in the following code fragment, scope.close is a method used to close the modal window and pass an object to the caller controller

- - - -
var app = angular.module('myApp');
-
-app.controller('ModalController', ['$uibModalInstance', modalControllerFn]);
-
-function modalControllerFn($uibModalInstance) {
-    var scope = this;
-
-    // some data object
-    scope.data = {key1: ""value1"", key2: ""value2""};
-
-    scope.close = function() {
-        $uibModalInstance.close(scope.data);
-    }
-}
-
- - - -

Question (1)

- -

Does passing anything belonging to the modal scope using $uibModalInstance.close (non-literal value, i.e: scope.x) prevents angular garbage collection from destroying the entire modal scope? is this a scenario for causing memory leaks?

- -

Question (2)

- -

How does angular $uibModalInstance.close(data) exactly works?

-",HQ -"

When I install nodejs and npm with apt-get

- -
sudo apt-get update
-sudo apt-get install nodejs modejs-legacy npm
-I have the versions
-
- -

I get the following versions

- -
npm -v
-1.3.10
-
-nodejs -v
-v0.10.25
-
- -

I know how to update these manually, but why does the apt-get package manager have old versions of these packages?

-",HQ -"

I use React + Redux + Webpack + WebpackDevserver. Once the hot loader is launched all my reducers are reseted to the initial state.

- -

Can I keep somehow my reducers in the actual state?

- -

My Webpack config contains:

- -
entry: [
-    ""./index.jsx""
-],
-output: {
-    filename: ""./bundle.js""
-},
-module: {
-    loaders: [
-        {
-            test: /\.js|\.jsx$/,
-            exclude: /node_modules/,
-            loaders: [""react-hot"",""babel-loader""],
-         }
-    ]
-},
-plugins: [
-    new webpack.HotModuleReplacementPlugin()
-]
-
- -

My reducers stats with:

- -
const initialState = {
-...
-}
-
-export default function config(state = initialState, action) { ...
-
- -

I start my Webpack Dev-Server just by:

- -
""start"": ""webpack-dev-server"",
-
-",HQ -"

I would like to have a ""Stay signed in"" option such as the one provided by Gmail. -This way, the user can decide if they want to keep the session open upon opening a new browser session after previously closing it.

- -

Looking into the github issues I saw the cookie-session component doesn't provide a way to upate the maxAge property dynamilly.

- -

I'm wondering then if there's any way at all to achieve the ""Stay signed in"" feature with the cookie-session component.

- -

It seems to me a basic feature for a component which is being downloaded 80K times a month.

-",HQ -"now have `fmapT` and `traverse` : - - fmapT :: - Traversable t => - (a -> b) - -> t a - -> t b - traverse :: - Applicative f => - (a -> f b) - -> t a - -> f (t b) - - -how can i implement the function `over` with `traverse` as an argument to `fmapT`: - - over :: - ((a -> Identity b) -> s -> Identity t) - -> (a -> b) - -> s - -> t - over = error ""undefined""",LQ -"I am using sql sever r2 dadabase as a remote server having mixed mode sql authentication... -when run my c# program from client computer to access database with following connection string:- -""Data Source=192.168.1.101\SQLEXPRESS,1433;Initial Catalog=Login; Integrated Security=true;Connection timeout=30; User ID=sa;Password=23456"" - -and facing an error :- -Login failed for user 'VAIO\Guest'. - -'VAIO' is remote PC.",LQ -"I have this sample: - -[link][1] - - - [1]: http://jsfiddle.net/Xxk3F/2864/ - -**CODE HTML:** - - - -**CODE CSS:** - - $( ""#primary_phone"" ).blur(function() { - text = $(this).val().replace(/(\d{3})(\d{3})(\d{4})/, ""$1-$2-$3""); - $(this).val(text); - }); - -At this time, the format is the next phone - - 123-123-1123 - -I want to have the next form: - - (123)456-7890 - -How can I change the format to whatever shape that I want? - -Thanks in advance! -",LQ -"I have created an app for back up and restore of computers. I also allows modification of ADObjects through the use of custom Profile.ps1 file. The app runs fine in the ISE with no errors and works properly no errors in Windows 7. However when I try to run it in a newly imaged Windows 10 machine I get ""Property Can Not Be Found"" errors on all my object propertys. The thing is I can read all the propetys when I fill comboboxes fine. The error only occurs when the form is submitted. I will attach 1 of the forms I am having a problem with. Again it runs fine in Windows 7 But not Windows 10. could this be a problem with Microsoft updates. Also ""Yes"" I am setting ""Set-ExecutionPolicy -Scope Process -ExecutionPolicy Unrestricted"". Thanks",LQ -"

I am learning Polymer. I have a element that includes a div. I want to animate that div's height. In an attempt to do this, I've got the following:

- -

my-element.html

- -
<dom-module id=""my-element"">    
-  <template>
-    <div id=""container"" style=""height:100px; background-color:green; color:white;"">
-      Hello!
-    </div>
-
-    <paper-button on-click=""_onTestClick"">Expand</paper-button>
-  </template>
-
-  <script>
-    Polymer({
-      is: 'my-element',
-
-      _onTestClick: function() {
-        // expand the height of container
-      }
-    });    
-  </script>
-</dom-module>
-
- -

I then used the grow height animation shown here for inspiration. So, I basically, have a animation defined like this:

- -
Polymer({
-  is: 'grow-height-animation',
-  behaviors: [
-    Polymer.NeonAnimationBehavior
-  ],
-  configure: function(config) {
-    var node = config.node;
-    var rect = node.getBoundingClientRect();
-    var height = rect.height;
-    this._effect = new KeyframeEffect(node, [{
-      height: (height / 2) + 'px'
-    }, {
-      height: height + 'px'
-    }], this.timingFromConfig(config));
-    return this._effect;
-  }
-});
-
- -

My challenge is, I do not understand how to integrate this animation with the div element with the id of ""container"". Everything I see seems like it only works on Polymer elements. Yet, I'm trying to figure out how to animate the div using Polymer. What am I missing?

- -

Thanks!

-",HQ -">I keep getting an out of bounds error. Want to check for duplicates. there is more after this, but for right now all thats important. its for a school project. it says the the Array list is index:1 size: 1 out of bounds exception - - - - - - -ArrayList lottery = new ArrayList(); - - - for (int n=0; n<4;) - { - int number = 0; - int first = 0; - int value = 0; - boolean found = false; - first =(int)(Math.random()*42 +1); - lottery.add(first); - count[first]++; - - - for (int i=1; i<6;) - { - number = (int)(Math.random()*42 +1); - - for(int k = 0; k<6; ) - { - // here value = lottery.get(k); - if (value == number) - { - found = true; - - } - else - { - found = false; - } - - if (found == true) - { - number = (int)(Math.random()*42 +1); - - } - else - { - k++; - - } - - - - } - System.out.println(""number "" + (i+1) + "": "" + number); - if ( found == false) - - { - lottery.add(number); - count[number] ++; - i++; - - - } - - }",LQ -"

If found a really annoying bug on the current (iOS 9.2) mobile safari (first appearing since iOS 7!)

- -

If you using multi select fields on mobile safari - like this:

- -
<select multiple>
-    <option value=""test1"">Test 1</option>
-    <option value=""test2"">Test 2</option>
-    <option value=""test3"">Test 3</option>
-</select>
-
- -

You will have problems with automatically selection!

- -

iOS is automatically selecting the first option after you opened the select (without any user interaction) - but it will not show it to you with the blue select ""check"".

- -

So if you now select the second option, the select will tell you that two options are selected (but only highlighting one as selected)...

- -

If you now close and open the select again, iOS will automatically deselect the first value - if you repeat, it will be selected again without any user interaction.

- -

Thats a really annoying system bug, which is breaking the user experience!

-",HQ -"I have been getting an error from Google chrome saying -: Failed to load resource: the server responded with a status 404 error. - -I linked the path to the correct folder in cloud 9 project, but there is another project with the same format as my current one and it works fine. I am also using Semantic ui does that have anything to do with it?",LQ -"

Is there a way to bind Kibana to more than one IP address using kibana's config file: kibana.yml? -Right now, if I modify the line
-server.host: ""127.0.0.1""
-to
-server.host: [""127.0.0.1"",""123.45.67.89""]
-which is valid YML, I get an error.
-Is there any way to accomplish this from within Kibana or do I need to do it through a proxy/nginx?

-",HQ -"

I want to save a simple model with Django REST Framework. The only requirement is that UserVote.created_by is set automatically within the perform_create() method. This fails with this exception:

- -
{
-    ""created_by"": [
-        ""This field is required.""
-    ]
-}
-
- -

I guess it is because of the unique_together index.

- -

models.py:

- -
class UserVote(models.Model):
-    created_by = models.ForeignKey(User, related_name='uservotes')
-    rating = models.ForeignKey(Rating)
-
-    class Meta:
-        unique_together = ('created_by', 'rating')
-
- -

serializers.py

- -
class UserVoteSerializer(serializers.ModelSerializer):
-    id = serializers.IntegerField(read_only=True)
-    created_by = UserSerializer(read_only=True)
-
-    class Meta:
-        model = UserVote
-        fields = ('id', 'rating', 'created_by')
-
- -

views.py

- -
class UserVoteViewSet(viewsets.ModelViewSet):
-    queryset = UserVote.objects.all()
-    serializer_class = UserVoteSerializer
-    permission_classes = (IsCreatedByOrReadOnly, )
-
-    def perform_create(self, serializer):
-        serializer.save(created_by=self.request.user)
-
- -

How can I save my model in DRF without having the user to supply created_by and instead set this field automatically in code?

- -

Thanks in advance!

-",HQ -"

I just installed Node.js on my Ubuntu 14.04 operating system for the first time. I also installed npm. The next step in my installation process was installing nodemon. This all worked out fine.

- -
- -

But, when I run nodemon by typing nodemon app.js in my command line, I get the following error...

- -

[nodemon] 1.8.1 -[nodemon] to restart at any time, enterrs -[nodemon] watching: *.* -[nodemon] startingnode app.js -[nodemon] Internal watch failed: watch ENOSPC -

- -

In the command line below the error...

- -
alopex@Alopex:~/Desktop/coding_dojo/week-9/javascript/node/testing_node$ Hello World
-
- -

Why is this happening? Is this normal behavior for nodemon? If not, how can I fix it?

- -
- -

Side notes...

- -

1) app.js is a Javascript file with console.log(111) inside of it.
-2) node version is v0.10.25
-3) npm version is 1.3.10
-4) nodemon version is 1.8.1
-5) ubuntu version is...

- -
Distributor ID: Ubuntu
-Description:    Ubuntu 14.04.3 LTS
-Release:    14.04
-Codename:   trusty
-
-",HQ -"

I am trying to wait for multiple elements on the page, I don't know how many there could be but there will be at least one. I understand waiting for a single element using the following, which works fine.

- -
var EC = protractor.ExpectedConditions;
-    browser.wait(EC.presenceOf(element(by.css(""h3[title='Test Form']""))), 10000);
-    expect(element(by.css(""h3[title='Test Form']"")).isPresent()).toBeTruthy();
-
- -

I wanted to change this slightly to wait for multiple elements and so tried the below (adding .all to element).

- -
var EC = protractor.ExpectedConditions;
-    browser.wait(EC.presenceOf(element.all(by.css(""h3[title='Test Form']""))), 10000);
-    expect(element.all(by.css(""h3[title='Test Form']"")).isPresent()).toBeTruthy();
-
- -

Unfortunately when I try this I get

- -
Cannot read property 'bind' of undefined
-
- -

Any help on this would be very much appreciated.

- -

p.s. Newbie to Protracor and its quirks.

-",HQ -"

I just came across this simple code snippet and am wondering why output of this program when it's compiled by a C compiler is 4 and when it's compiled by a C++ one is 8.

- -
#include <stdio.h>
-
-int x;
-
-int main(){
-    struct x {int a; int b;};
-    printf(""%d"", sizeof(x));
-    return 0;
-}
-
- -

C++ output is rational (8 = 4 + 4 = sizeof(x.a) + sizeof(x.b)), but output of C isn't. So, how does sizeof work in C?

- - - -

Seems C prefers global variables over local ones. Is it right?

-",HQ -" Private Sub cmdtiehack_Click() - Dim hwnd - hwnd = FindWindow(vbNullString, ""Window name"") - - If hwnd = 0 Then - MsgBox ""Program is not open"" - Else - Dim Retval As Long - Retval = ShellExecute(Me.hwnd, ""open"", ""5.exe"", _ 0, 0, SW_HIDE) - Delay 1 - Retval = ShellExecute(Me.hwnd, ""open"", ""6.exe"", _ 0, 0, SW_HIDE) - End If - End Sub - -I didn't use VB in past, but I can't see where's the error. Should I compile it or save like a .vbs just by using Notepad? Thanks for advice.",LQ -"

I'm trying to capture image data from the camera using the camera2 API. I've mostly used code taken from the android Capture2RAW example. Only a few images come through (i.e. calls to onImageAvailable) before stopping completely. I've tried capturing using the RAW_SENSOR and JPEG formats at different sizes with the same results. What am I doing wrong?

- -
this.mImageReader = ImageReader.newInstance(width, height, ImageFormat.RAW_SENSOR, /*maxImages*/ 1);
-Surface surface = this.mImageReader.getSurface();
-final List<Surface> surfaces = Arrays.asList(surface);
-this.mCamera.createCaptureSession(surfaces, new CameraCaptureSession.StateCallback() {
-    // Callback methods here
-}, null);
-CaptureRequest.Builder captureRequestBuilder;
-captureRequestBuilder = this.mCamera.createCaptureRequest(CameraDevice.TEMPLATE_PREVIEW);
-captureRequestBuilder.addTarget(surface);
-this.mCaptureRequest = captureRequestBuilder.build();
-this.mCaptureSession.setRepeatingRequest(mCaptureRequest, null, null);
-
-",HQ -"Here's the code to add event listeners to all the button elements in my html. Why does it not work? - - window.onload = function(){ - addEvListeners(); - // This function is to assign ELs to buttons in my HTML - function addEvListeners(){ - var target = document.getElementsByTagName(""button""); - for (i = 0; i <= target.length - 1; i ++){ - target[i].addEventListener(""click"", function(){model();},false); - } - } - function model(){ - return true; // just for placeholder - } - }",LQ -"

Defining model:

- -
export default function(sequelize, DataTypes) {
-   return sequelize.define('Item', {
-       minor: DataTypes.INTEGER,
-       major: DataTypes.INTEGER,
-   });
-}
-
- -

Can I define the pair minor and major as a composite UNIQUE constraint?

-",HQ -"

I'm seeming to run into a simple problem and have the feeling I'm missing something essential.

- -

I'm having a private docker image registry at our company, which hosts all the docker images we develop.

- -

This registry is constantly updated during our build process and new images are pushed to it quite often.

- -

Now we are utilizing an openshift system, with a handful of images and it's own registry.

- -

What would be the best way to synchronize images between these 2 systems?

- -

As example, we have an app deployed like this:

- -
oc new-app myregistry.mydomain.edu/binbase/minix
-
- -

which is running nicely.

- -

We would now like to update this deployment with the latest changes and for this I do:

- -
oc import-image minix
-
- -

Tag Spec Created PullSpec Image -latest 23 hours ago myregistry.mydomain.edu/binbase/minix:latest f6646382cfa32da291e8380421ea656110090256cd195746a5be2fcf61e4edf1

- -

which is the correct image and now executing a

- -
oc deploy minix --latest
-
- -

but this still deploys the current image, not the newly updated image.

- -

Any idea why this, or what we are doing wrong?

- -

All I would like todo is to now redeploy the newest image.

- -

kind regards

-",HQ -"

I've observed a strange difference in managed vs .Net native code. I've a heavy job redirected to threadpool. When running the app in managed code, everything works smooth but as soon as I switch on native compilation - the task run few times slower and so slow that it hangs UI thread (I guess CPU is so overloaded).

- -

Here are two screenshots from debug output, the one on the left is from managed code, and the one on the right is from native compilation. As you can see the time consumed by UI task is nearly the same in both cases, up to a time when threadpool job is started - then in managed version UI elapsed time grows (in fact UI gets blocked and you cannot take any action). Timings of threadpool job speak for themselves.

- -

- -

The sample code to reproduce the problem:

- -
private int max = 2000;
-private async void UIJob_Click(object sender, RoutedEventArgs e)
-{
-    IProgress<int> progress = new Progress<int>((p) => { MyProgressBar.Value = (double)p / max; });
-    await Task.Run(async () => { await SomeUIJob(progress); });
-}
-
-private async Task SomeUIJob(IProgress<int> progress)
-{
-    Stopwatch watch = new Stopwatch();
-    watch.Start();
-    for (int i = 0; i < max; i++)
-    {
-        if (i % 100 == 0) { Debug.WriteLine($""     UI time elapsed => {watch.ElapsedMilliseconds}""); watch.Restart(); }
-        await Task.Delay(1);
-        progress.Report(i);
-    }
-}
-
-private async void ThreadpoolJob_Click(object sender, RoutedEventArgs e)
-{
-    Debug.WriteLine(""Firing on Threadpool"");
-    await Task.Run(() =>
-   {
-       double a = 0.314;
-       Stopwatch watch = new Stopwatch();
-       watch.Start();
-       for (int i = 0; i < 50000000; i++)
-       {
-           a = Math.Sqrt(a) + Math.Sqrt(a + 1) + i;
-           if (i % 10000000 == 0) { Debug.WriteLine($""Threadpool -> a value = {a} got in {watch.ElapsedMilliseconds} ms""); watch.Restart(); };
-       }
-   });
-    Debug.WriteLine(""Finished with Threadpool"");
-}
-
- -

If you need a complete sample - then you can download it here.

- -

As I've tested the difference appears on both optimized/non optimized code, in both debug and release versions.

- -

Does anybody have an idea what can cause the problem?

-",HQ -"

In EMR, is there a way to get a specific value of the configuration given the configuration key using the yarn command?

- -

For example I would like to do something like this

- -
yarn get-config yarn.scheduler.maximum-allocation-mb
-
-",HQ -"Label.setEnabled(true) - -If(i==0) -Label.setEnabled(false); - -. if I is equal to 0 it would not be enabled but when I close the program and open it again it will be enabled instead of staying disabled. ",LQ -"

I just noticed that static members of Swift structs are implicitly lazy.

- -

For instance, this will only call the init once:

- -
class Baz {
-    init(){
-        print(""initializing a Baz"")
-    }
-}
-struct Foo {
-    static let bar = Baz()
-}
-
-var z = Foo.bar
-z = Foo.bar
-
- -

What's the rationale behind this?

- -

What if I want the opposite behaviour?

-",HQ -"

I am actually using wamp 2.5 with PHP 5.5.12 and when I try to create a phar file it returns me the following message :

- -
-

Uncaught exception 'UnexpectedValueException' with message 'creating archive ""..."" disabled by the php.ini setting phar.readonly'

-
- -

even if I turn to off the phar.readonly option in php.ini.

- -

So how can I enable the creation of phar files ?

-",HQ -I know that the answer to the question is that they are all equally difficult to reverse but I don't know why. Could someone explain this?,LQ -"

I have spent a lot of hours trying to remove ""My Wish List"" and ""Compare Products"" blocks from Luma template. Besides, I need to change and remove some of the bottom links.

- -

I cannot find where to modify. Can you help me, please?

- -

Thanks

-",HQ -"[enter image description here][1] - - - [1]: http://i.stack.imgur.com/suHH7.jpg - -I would like to get number that has different isreq but the same type. Anyone please. Thanks.",LQ -"
function saveToTheDb(value) {  
-  return new Promise(function(resolve, reject) {
-    db.values.insert(value, function(err, user) { // remember error first ;)
-      if (err) {
-        return reject(err); // don't forget to return here
-      }
-      resolve(user);
-    })
-  }
-}
-
- -

Here is the code which i see from here. -i am confused about return keyword.

- -

For resolve(user);, do i need return?

- -

For reject(user);, do i need return?

-",HQ -"

I am working on a small rest api in flask. Api has route that registers a request and spawn separate thread to run in background. Here is the code:

- -
def dostuff(scriptname):
-    new_thread = threading.Thread(target=executescript,args=(scriptname,))
-    new_thread.start()
-
- -

Thread starts but it errors out when I try to insert into db from executescript function. It complains about db object not registered with the app.

- -

I am dynamically creating my app (with api as Blueprint).

- -

Here is the structure of the app

- -
-run.py ## runner script
--config
-   -development.py
-   -prod.py
--app
-  -__init__.py
-  - auth.py
-  - api_v1
-     - __init__.py
-     - routes.py
-     - models.py
-
- -

here is my runner script run.py :

- -
from app import create_app, db
-
-if __name__ == '__main__':
-    app = create_app(os.environ.get('FLASK_CONFIG', 'development'))
-    with app.app_context():
-        db.create_all()
-    app.run()
-
- -

Here is the code from app/__init__.py which creates the app:

- -
from flask import Flask, jsonify, g
-from flask.ext.sqlalchemy import SQLAlchemy
-
-db = SQLAlchemy()
-
-def create_app(config_name):
-    """"""Create an application instance.""""""
-    app = Flask(__name__)
-
-    # apply configuration
-    cfg = os.path.join(os.getcwd(), 'config', config_name + '.py')
-    app.config.from_pyfile(cfg)
-
-    # initialize extensions
-    db.init_app(app)
-    # register blueprints
-    from .api_v1 import api as api_blueprint
-    app.register_blueprint(api_blueprint, url_prefix='/api/')
-    return app 
-
- -

All I need to know is how do I extend app context in routes.py. I can not import app there directly and if I do the following, I get RuntimeError: working outside of application context

- -
def executescript(scriptname):
-    with current_app.app_context():
-        test_run = Testrun(pid=989, exit_status=988,comments=""Test TestStarted"")
-        db.session.add(test_run)
-        db.session.commit()
-
-",HQ -"

I have been using the Wordpress REST plugin WP-API for months now while developing locally with XAMPP. I recently migrated my site to an EC2 instance and everything is working fine except I now get a 404 with the following message whenever I try to access any endpoint on the API:

- -
-

The requested URL /wordpress/wp-json/ was not found on this server

-
- -

Pretty permalinks are enabled with the following structure http://.../wordpress/sample-post/ which works fine when navigating to a specific post in the browser.

- -

Here are some details about my setup:

- -
    -
  • Wordpress 4.4.1 - -
      -
    • Not a Multisite
    • -
  • -
  • WP REST API plugin 2.0-beta9
  • -
  • Apache 2.2.22
  • -
  • Ubuntu 12.04.5
  • -
- -

Any help would be greatly appreciated as I have gone through SO and the WP Support forums for several hours and am out of ideas. Thank you!

-",HQ -"

The MSDN for Type.FullName says that this property return

- -
-

null if the current instance represents a generic type parameter, an array type, pointer type, or byreftype based on a type parameter, or a generic type that is not a generic type definition but contains unresolved type parameters.

-
- -

I count five cases, and I find each one more unclear than the last. Here is my attempt to construct examples of each case.

- -
using System;
-using System.Collections.Generic;
-using System.Linq;
-
-namespace ConsoleApplication {
-  public static class Program {
-
-    public static void Main(string[] args) {
-      GenericTypeParameter();
-      ArrayType();
-      PointerType();
-      ByRefTypeBasedOnTypeParameter();
-      NongenericTypeDefinitionWithUnresolvedTypeParameters();
-      Console.ReadKey();
-    }
-
-    public static void GenericTypeParameter() {
-      var type = typeof(IEnumerable<>)
-        .GetGenericArguments()
-        .First();
-      PrintFullName(""Generic type parameter"", type);
-    }
-
-    public static void ArrayType() {
-      var type = typeof(object[]);
-      PrintFullName(""Array type"", type);
-    }
-
-    public static void PointerType() {
-      var type = typeof(int*);
-      PrintFullName(""Pointer type"", type);
-    }
-
-    public static void ByRefTypeBasedOnTypeParameter() {
-      var type = null;
-      PrintFullName(""ByRef type based on type parameter"", type);
-    }
-
-    private static void NongenericTypeDefinitionWithUnresolvedTypeParameters() {
-      var type = null;
-      PrintFullName(""Nongeneric type definition with unresolved type parameters"", type);
-    }
-
-    public static void PrintFullName(string name, Type type) {
-      Console.WriteLine(name + "":"");
-      Console.WriteLine(""--Name: "" + type.Name);
-      Console.WriteLine(""--FullName: "" + (type.FullName ?? ""null""));
-      Console.WriteLine();
-    }
-  }
-}
-
- -

Which has this output.

- -
Generic type parameter:
---Name: T
---FullName: null
-
-Array type:
---Name: Object[]
---FullName: System.Object[]
-
-Pointer type:
---Name: Int32*
---FullName: System.Int32*
-
-ByRef type based on type parameter:
---Name: Program
---FullName: ConsoleApplication.Program
-
-Nongeneric type definition with unresolved type parameters:
---Name: Program
---FullName: ConsoleApplication.Program
-
- -

I am only one for five with two ""blanks"".

- -

Question

- -
-

Can someone modify my code to give simple examples of each way in which Type.FullName can be null?

-
-",HQ -"

I'm new in Flask. I can't understand how request.args is used. I read somewhere that it is used to return values of query string[correct me if I'm wrong]. And how many parameters request.args.get() takes. -I know that when I have to store submitted form data, I can use

- -
fname = request.form.get(""firstname"")
-
- -

Here, only one parameter is passed.

- -

Consider this code. Pagination has also been done in this code.

- -
@app.route(""/"")
-def home():
-    cnx = db_connect()
-    cur = cnx.cursor()
-    output = []
-
-    page = request.args.get('page', 1)
-
-    try:
-        page = int(page)
-        skip = (page-1)*4
-    except:
-        abort(404)
-
-    stmt_select = ""select * from posts limit %s, 4;""
-    values=[skip]
-
-    cur.execute(stmt_select,values)
-    x=cur.fetchall()
-
-    for row in reversed(x):
-        data = {
-           ""uid"":row[0],
-           ""pid"":row[1],
-           ""subject"":row[2],
-           ""post_content"":row[3],
-           ""date"":datetime.fromtimestamp(row[4]),
-        }
-        output.append(data)
-
-    next = page + 1
-    previous = page-1
-    if previous<1:
-    previous=1
-    return render_template(""home.html"", persons=output, next=next, previous=previous)
-
- -

Here, request.args.get() takes two parameters. Please explain why it takes two parameters and what is the use of it.

-",HQ -"I have imported the required libraries of javacv and opencv. I need to import more libraries? if yes may i know the name? coz i have seacrhed it so much, but could not find it!!! - - - import java.awt.*; - import java.awt.image.*; - import java.io.*; - import java.nio.ByteBuffer; - - import javax.naming.Context; - - enum Resolution { - NORMAL, HIGH - } - - - public class KinectCapture - { - private BufferedImage image = null; - private int imWidth, imHeight; - private int fps; - - private boolean isReleased = true; - // when Kinect context has been released - - // OpenNI - private Context context; - private ImageGenerator imageGen; **Here I am getting the error.** - - public KinectCapture() - { this(Resolution.NORMAL); } - - public KinectCapture(Resolution res) - { configOpenNI(res); } - - - private void configOpenNI(Resolution res) - // create context and image generator - { - try { - context = new Context(); - - // add the NITE Licence - License licence = new License(""PrimeSense"", ""0KOIk2JeIBYClPWVnMoRKn5cdY4=""); // vendor, key - context.addLicense(licence); - - imageGen = ImageGenerator.create(context); - -",LQ -"I am not good in regular expression please help to solve this problem. its urgent that's why I can't study more about it. - -Problem : - -If I have a sting like this `100,000` some digits with `,` followed by some other digits. I need to replace all digits so that the sting become `100`. - -I Have to user 'replace()' function so please provide the expression. - - var str = ""1200,00""; - str.replace(""Expression"");// Need this. - -Thanks In advance. - - ",LQ -"

I'm trying to configure Let's Encrypt certificates on a server that is publically accessible. Originally, the server was hiding behind a router, but I have since forwarded ports 80 and 443.

- -

The certificate seems to have completed a majority of the install process, but fails with the message: Failed to connect to host for DVSNI challenge.

- -

Full stack trace:

- -
Updating letsencrypt and virtual environment dependencies......
-    Requesting root privileges to run with virtualenv: sudo /bin/letsencrypt certonly --standalone -d example.net -d www.example.net
-    Failed authorization procedure. example.net (tls-sni-01): urn:acme:error:connection :: The server could not connect to the client to verify the domain :: Failed to connect to host for DVSNI challenge
-
-IMPORTANT NOTES:
- - The following 'urn:acme:error:connection' errors were reported by
-   the server:
-
-   Domains: example.net
-   Error: The server could not connect to the client to verify the
-   domain
-
- -

Any support would be greatly appreciated!

- -

I looked around elsewhere for a solution and haven't had much luck. Most other similar situations were resolved by forwarding port 443, but I am certain this port is already forwarded and open, albeit no service is currently running on it.

- -

It shouldn't make a difference, but I'm trying to configure this certificate for use with Node JS on a Raspberry Pi.

-",HQ -"I have the following code: - - NSString * client_type = @""client_credentials""; - - @implementation OauthObject - - - (NSDictionary*) getParamsCredintion{ - - return [[NSDictionary alloc] initWithObjectsAndKeys:client_id, @""client_id"", client_secret, @""client_secret"", client_type, ""@client_credentials"", nil]; - } - -When i try to init NSDictionary with `client_type` key I get error: - -`NSDictionary EXC_BAD_ACCESS` -",LQ -"Do not suggest to clean build or ./gredlew clean solution already tried a lot. - -I simply want to avoid this error without excluding any jar file. - -Error details -com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: android/support/v7/cardview/BuildConfig.class",LQ -"i have two tables grades and scholars. - -grades has fields: id, subject_code, subject_description,midterm, final, and final_remarks - -AND -scholars has fields:id, Id Number, Lastname,Firstname, Middlename ,School, Year, Semester, Course,Action - -how can i join them? i wanna get the subject_code, subject_description,midterm, final, and final_remarks from grades and fullname from scholars? - - -THANK YOU!PLEASE HELP ME WITH THIS.",LQ -"

I have just built my first model using Keras and this is the output. It looks like the standard output you get after building any Keras artificial neural network. Even after looking in the documentation, I do not fully understand what the epoch is and what the loss is which is printed in the output.

- -

What is epoch and loss in Keras?

- -

(I know it's probably an extremely basic question, but I couldn't seem to locate the answer online, and if the answer is really that hard to glean from the documentation I thought others would have the same question and thus decided to post it here.)

- -
Epoch 1/20
-1213/1213 [==============================] - 0s - loss: 0.1760     
-Epoch 2/20
-1213/1213 [==============================] - 0s - loss: 0.1840     
-Epoch 3/20
-1213/1213 [==============================] - 0s - loss: 0.1816     
-Epoch 4/20
-1213/1213 [==============================] - 0s - loss: 0.1915     
-Epoch 5/20
-1213/1213 [==============================] - 0s - loss: 0.1928     
-Epoch 6/20
-1213/1213 [==============================] - 0s - loss: 0.1964     
-Epoch 7/20
-1213/1213 [==============================] - 0s - loss: 0.1948     
-Epoch 8/20
-1213/1213 [==============================] - 0s - loss: 0.1971     
-Epoch 9/20
-1213/1213 [==============================] - 0s - loss: 0.1899     
-Epoch 10/20
-1213/1213 [==============================] - 0s - loss: 0.1957     
-Epoch 11/20
-1213/1213 [==============================] - 0s - loss: 0.1923     
-Epoch 12/20
-1213/1213 [==============================] - 0s - loss: 0.1910     
-Epoch 13/20
-1213/1213 [==============================] - 0s - loss: 0.2104     
-Epoch 14/20
-1213/1213 [==============================] - 0s - loss: 0.1976     
-Epoch 15/20
-1213/1213 [==============================] - 0s - loss: 0.1979     
-Epoch 16/20
-1213/1213 [==============================] - 0s - loss: 0.2036     
-Epoch 17/20
-1213/1213 [==============================] - 0s - loss: 0.2019     
-Epoch 18/20
-1213/1213 [==============================] - 0s - loss: 0.1978     
-Epoch 19/20
-1213/1213 [==============================] - 0s - loss: 0.1954     
-Epoch 20/20
-1213/1213 [==============================] - 0s - loss: 0.1949
-
-",HQ -"

The Scheduling and Threading section of Intro to Rx says that

- -
-

the use of SubscribeOn and ObserveOn should only be invoked by the final subscriber

-
- -

It also says that in an UI application, the presentation layer, which is normally the final subscriber, should be the one to invoke these methods.

- -

I am wondering if the advice is solid, since I see some situations in which this is not convenient:

- -
    -
  1. For starters, I don't believe that the presentation layer should decide where an Observable coming from the data layer should be subscribed. In my opinion, the presentation layer should be unaware if the data is coming from a database, from a REST API, or from memory. For this reason, it's convenient for the data layer to call subscribeOn() before returning the Observable, passing the IO Scheduler or the immediate Scheduler as convenient.
  2. -
  3. If the presentation layer gets the Observable from some service or use case (which in turn gets it from the data layer) and this service decides that it needs to process the stream in some computation Scheduler, why should the presentation layer care about this?
  4. -
  5. What about a stream that is originally coming from the UI, so it needs to be subscribed in the UI thread. Then it will be sent to some service to do some work and finally come back to the presentation layer to be observed in the UI thread. That would require the UI stream to be subscribeOn() the UI Scheduler, then observeOn() some other Scheduler, and finally observeOn() the UI Scheduler. In this case, being able to invoke subscribeOn() and observeOn() only in the final subscriber would mean that the stream can only be processed in the UI thread.
  6. -
- -

Is there some good reason why I should sacrifice the architecture of my application and ignore Rx's ability to easily switch threads by invoking these two methods only by the final subscriber?

-",HQ -"

I am using Gradle in my project. I have a task for doing some extra configuration with my war. I need to build a string to use in my task like, lets say I have:

- -
task extraStuff{
-    doStuff 'org.springframework:spring-web:3.0.6.RELEASE@war'
-}
-
- -

This works fine. What I need to do is define version (actually already defined in properties file) and use this in the task like:

- -
springVersion=3.0.6.RELEASE
-
-task extraStuff{
-    doStuff 'org.springframework:spring-web:${springVersion}@war'
-}
-
- -

My problem is spring version is not recognised as variable. So how can I pass it inside the string?

-",HQ -"

new to ES6, I was trying to make a React simple functional component like this

- -
// ./Todo.jsx
-
-    export default const Todo = ({
-      todos,
-      onTodoClick,
-    }) => (
-      <ul>
-        {todos.map( (todo, i) =>
-          <li key     = {i} 
-              onClick = {() => onTodoClick(i) } 
-              style   = {{textDecoration: todo.completed ? 'line-through': 'none' }}
-              >
-            {todo.text}
-          </li>
-        )}
-      </ul>
-    )
-
- -

But

- -
// Another file 
-import Todo from './Todos.jsx';
-console.log(Todo) // undefined
-
- -

did not yield the arrow function.

- -

but if I leave off the ""const todo ="" part in the export link, like so

- -
    export default ({
-      todos,
-      onTodoClick,
-    }) => (...)
-
- -

It gets successfully imported.

- -

Why is that?

-",HQ -"i have a string - -Hello, How Are You. - -i want this output -> - -eHllo, oHw rAe oYu. - -it doesnot matter whether there is any special character , i just want to reverse the two alphabets cosecutively in a word.",LQ -" -trying to create td with rowspan - -i have to create a table with 6 columns from the second column the user has to set the rowspan - -for example - -column 2 row1 column3 row1 -column 2 row2 column3 row1 -column 2 row3 column3 row1 - - -function addRow() { - - var myName = document.getElementById(""namez""); - var age = document.getElementById(""age""); - var table = document.getElementById(""myTableData""); - - var rowCount = table.rows.length; - var row = table.insertRow(rowCount); - - row.insertCell(0).innerHTML= ''; - row.insertCell(1).innerHTML= ''; - row.insertCell(2).innerHTML= ''; - var td3 = row.insertCell(3).innerHTML= ''; - td3.setAttribute('rowSpan', '2');",LQ -"

I have something like this:

- -
union DataXYZ
-{
-    struct complex_t
-    {
-        float real, imag;
-    } complex;
-
-    struct vector_t
-    {
-        float magnitude, phase;
-    } vector;
-};
-
- -

I have some vectors of these, being general-purpose workspace memory, where I use the fields accordingly after the semantic context.

- -

I know it's undefined behaviour to read a field in a union, when the last active member was another field (and type?). Does this matter when the types and layout match exactly?

- -

I've been commenting on some other similar questions, asking for references that guarantee the behaviour, but nothing came up yet - hence this question.

-",HQ -"In python, I'm trying to write a python script that replaces each letter with another letter from a 3 item long **list**. I am doing this for each letter of the alphabet, so use the `replace` method. -For example: -`list_a = ""B,C,D"" % ` -`$ what is your message? > aaaa` -`$ This is your encrypted message: BCDB` -Thanks a lot!!!!",LQ -"Hi you know I can't make my character move in unity, because c# doesn't accet word ""velocity"". Help me solve this problem please. - -public class MarioController : MonoBehaviour -{ - - public float maxSpeed=10f; - bool facingRight=true; - - void Start () - {} - - void FixedUpdate () - { - float move = Input.GetAxis (""Horizontal""); - - rigidbody2D.velocity = new Vector2 (move * maxSpeed, rigidbody2D.velocity.y); - - if (move > 0 && !facingRight) - Flip (); - - else if (move < 0 && facingRight) - Flip (); - } - - void Flip () - { - facingRight = !facingRight; - Vector3 theScale = transform.localScale; - theScale.x *= -1; - transform.localScale = theScale; - - } - - } -",LQ -"I am working on a r programming project.. - -I have a dataframe (df) with about 790 observations in. I am trying to extract certain rows from the dataframe. The only simularity with the row i am trying to extract with the row above, which are all named S_NAME: - - -
  • 1 cat
  • -
  • 2 hat
  • -
  • 3 S_NAME
  • -
  • 4 tin
  • -
  • 5 sin
  • -
  • 6 S_NAME
  • -
  • 7 foo
  • -
  • 8 sin
  • -
  • 9 S_NAME
  • -
  • 10 tinn
  • - -So for example, I would want to extract row 4,7 and 10 which all follow S_NAME - -I am unsure of how to do this, any help will be great thanks. I know i have tagged python, although that code might help me understand. -Thanks - -",LQ -"

    I'm trying to configure a phabricator instance, and I find that change the arcanist default template when we use arc diff can be very useful for the team.

    - -

    Actually the template contains this text:

    - -
    <<Replace this line with your Revision Title>>
    -
    -Summary: 
    -
    -Test Plan: 
    -
    -Reviewers: 
    -
    -Subscribers: 
    -
    -
    -# Tip: Write ""Fixes T123"" in your summary to automatically close the
    -# corresponding task when this change lands.
    -
    -# NEW DIFFERENTIAL REVISION
    -# Describe the changes in this new revision.
    -#
    -# arc could not identify any existing revision in your working copy.
    -# If you intended to update an existing revision, use:
    -#
    -#   $ arc diff --update <revision>
    -
    - -

    I'm googling to find any way to change this default template, but I can't find it...

    - -

    There is any way to ""personalize"" this template?

    -",HQ -"

    I am using Jelastic for my development environment (not yet in production). -My application is running with Unicorn but I discovered websockets with ActionCable and integrated it in my application.

    - -

    Everything is working fine in local, but when deploying to my Jelastic environment (with the default NGINX/Unicorn configuration), I am getting this message in my javascript console and I see nothing in my access log

    - -
    WebSocket connection to 'ws://dev.myapp.com:8080/' failed: WebSocket is closed before the connection is established.
    -
    - -

    I used to have on my local environment and I solved it by adding the needed ActionCable.server.config.allowed_request_origins in my config file. So I double-checked my development config for this and it is ok.

    - -

    That's why I was wondering if there is something specific for NGINX config, else than what is explained on ActionCable git page

    - -
    bundle exec puma -p 28080 cable/config.ru
    -
    - -

    For my application, I followed everything from enter link description here but nothing's mentioned about NGINX configuration

    - -

    I know that websocket with ActionCable is quite new but I hope someone would be able to give me a lead on that

    - -

    Many thanks

    -",HQ -"I'm trying to display the yaw pitch and roll of the device in a label. I cannot seem to get the values to display, it only shows a '...' where the numbers should be. This is my code, any help is greatly appreciated. - - #import ""ViewController.h"" - #import - - @interface ViewController (){ - - } - @property (strong, nonatomic) CMMotionManager *motionManager; - @end - - @implementation ViewController - - @synthesize motionManager; - @synthesize roll; - @synthesize pitch; - @synthesize yaw; - - @synthesize xLabel; - @synthesize yLabel; - @synthesize zLabel; - - - (void)viewDidLoad { - [super viewDidLoad]; - /** Do any additional setup after loading the view, typically from a nib. - UIAccelerometer *accelerometer = [UIAccelerometer sharedAccelerometer]; - accelerometer.updateInterval = 1.0f/60.0f; - accelerometer.delegate = self; - **/ - //motionManager = [[CMMotionManager alloc] init]; - //motionManager.deviceMotionUpdateInterval = 1.0 / 60.0; - - motionManager = [[CMMotionManager alloc] init]; - NSTimer *timer; - timer = [NSTimer scheduledTimerWithTimeInterval:1.0/60.0 target:self selector:@selector(doGyroUpdate) userInfo:nil repeats:YES]; - - //CMDeviceMotion *deviceMotion = motionManager.deviceMotion; - //CMAttitude *attitude = deviceMotion.attitude; - - [motionManager startDeviceMotionUpdates]; - } - - -(void)doGyroUpdate - { - double x = motionManager.deviceMotion.attitude.roll*180/M_PI; - double y = motionManager.deviceMotion.attitude.pitch*180/M_PI; - double z = motionManager.deviceMotion.attitude.yaw*180/M_PI; - - NSString *myString = [NSString stringWithFormat:@""%g"", x]; - xLabel.text = myString; - myString = [NSString stringWithFormat:@""%f"", y]; - yLabel.text = myString; - myString = [NSString stringWithFormat:@""%f"", z]; - zLabel.text = myString; - }",LQ -"I guys! I have a problem when I start my project with Propel. - -I leave the error below, Thanks! - - - - - - Nicolass-MacBook-Pro:api Nico$ php propel init - - Fatal error: Class 'Symfony\Component\Console\Helper\DialogHelper' not found in /Applications/XAMPP/xamppfiles/htdocs/rmanager/api/vendor/propel/propel/src/Propel/Generator/Command/Helper/DialogHelper.php on line 8 - - - - -",LQ -"

    I've searched a lot to figure out this question, but I didn't get clear explanation. Is there only one difference thing that clustered app can be scaled out and forked app cannot be?

    - -

    PM2's public site explains Cluster mode can do these feature but no one says about pros of Fork mode (maybe, it can get NODE_APP_INSTANCE variable).

    - -

    I feel like Cluster might be part of Fork because Fork seems like to be used in general. So, I guess Fork means just 'forked process' from the point of PM2 and Cluster means 'forked process that is able to be scaled out'. Then, why should I use Fork mode?

    -",HQ -"

    I wonder how to call REST API from a (groovy) Jenkins workflow script. I can execute ""sh 'curl -X POST ...'"" - it works, but building the request as a curl command is cumbersome and processing the response gets complicated. I'd prefer a native Groovy HTTP Client to program in groovy - which one should I start with? As the script is run in Jenkins, there is the step of copying all needed dependency jars to the groovy installation on Jenkins, so something light-weight would be appreciated.

    -",HQ -"A little help would be lifesaving. I have an sql query that works in phpMyAdmin and gives me the result i need. -When i build this query into a php statement i cant seem to access the result (an integer) -I literally need to echo the value, so i need to output for exanmple "" your number is"" result. - -here is my query: - - $sqlstatement = ""SELECT (SELECT `embark` FROM info ORDER BY `index_no` DESC LIMIT 1)-(SELECT `embark` FROM info ORDER BY `index_no` ASC LIMIT 1)""; - $sql_result = mysqli_query($connection, $sqlstatement) or die -("" Couldn't execute the SQL calculate disembark statement********""); - -If anyone can help i would really appreciate it -Scott",LQ -"

    google maps' new feature your timeline https://www.google.com/maps/timeline seems to be useful to retrieve location history for a given user, my question is -how to use google maps to retrieve this timeline ? -it is possible ? -sorry am new to google world and i have looked for this information on their site but no news.

    - -

    Thanks !

    -",HQ -"

    I am trying to connect to my postgres database using psycopg2 with sslmode='required' param; however, I get the following error

    - -
    psycopg2.OperationalError: sslmode value ""require"" invalid when SSL support is not compiled in
    -
    - -

    Heres a couple details about my system

    - -
      -
    • Mac OS X El Capitan
    • -
    • Python 2.7
    • -
    • Installed psycopg2 via pip
    • -
    • Installed python via homebrew
    • -
    - -

    Here is what I tried to do to fix the problem

    - -
      -
    • brew uninstall python
    • -
    • which python still shows python living in /usr/local/bin/python, tried to uninstall this but couldnt. And heard that this is the python that the OS uses and should not be uninstalled anyways
    • -
    • brew install python --with-brewed-openssl --build-from-source
    • -
    • pip uninstall psycopg2
    • -
    • pip install psycopg2
    • -
    - -

    After doing all of this, the exception still happens. I am running this python script via #!/usr/bin/env python Not sure if it matters, but that is a different directory than the one that which python shows

    -",HQ -"I am trying to understand how Arraylist is not thread safe through a java program.Attached is my program. - - - import java.util.ArrayList; - import java.util.List; - public class class1 - { - static List ar=new ArrayList(1); - public static void main(String[] args) throws InstantiationException, - IllegalAccessException, ClassNotFoundException, InterruptedException - { - Thread t1= new Thread() - { - public void run() { - while(true) - { - - ar.add(new Object()); - } - } - }; - - Thread t2=new Thread() - { - public void run() - { - while(true) - { - ar=new ArrayList(1); - ar.add(new Object()); - ar.add(new Object()); - - } - } - }; - - t1.start(); - Thread.sleep(100); - t2.start(); - } - } - -The error i got is: - - Exception in thread ""Thread-0"" java.lang.ArrayIndexOutOfBoundsException: 2 - at java.util.ArrayList.add(Unknown Source) - at class1$1.run(class1.java:22) - - -I understand that the exception is caused by a thread.However,I am not getting a broader picture on how it is actually functioning.Any help would be highly appreciated. -",LQ -"

    I am writing a UI text in swift under the new Xcode 7 UI test framework. -the requirement is to test whether the system keyboard is shown in an app. -can someone give me a clue on how to do that? thanks

    -",HQ -"

    I'm trying to wrap my head around redux, react-redux and redux-form.

    - -

    I have setup a store and added the reducer from redux-form. My form component looks like this:

    - -

    LoginForm

    - -
    import React, {Component, PropTypes} from 'react'
    -import { reduxForm } from 'redux-form'
    -import { login } from '../../actions/authActions'
    -
    -const fields = ['username', 'password'];
    -
    -class LoginForm extends Component {
    -    onSubmit (formData, dispatch) {
    -        dispatch(login(formData))
    -    }
    -
    -    render() {
    -        const {
    -            fields: { username, password },
    -            handleSubmit,
    -            submitting
    -            } = this.props;
    -
    -        return (
    -            <form onSubmit={handleSubmit(this.onSubmit)}>
    -                <input type=""username"" placeholder=""Username / Email address"" {...username} />
    -                <input type=""password"" placeholder=""Password"" {...password} />
    -                <input type=""submit"" disabled={submitting} value=""Login"" />
    -            </form>
    -        )
    -    }
    -}
    -LoginForm.propTypes = {
    -    fields: PropTypes.object.isRequired,
    -    handleSubmit: PropTypes.func.isRequired,
    -    submitting: PropTypes.bool.isRequired
    -}
    -
    -export default reduxForm({
    -    form: 'login',
    -    fields
    -})(LoginForm)
    -
    - -

    This works as expected, in redux DevTools I can see how the store is updated on form input and on submitting the form the login action creator dispatches the login actions.

    - -

    I added the redux-thunk middleware to the store and setup the action creator(s) for logging in as described in the redux docs for Async Actions:

    - -

    authActions.js

    - -
    import ApiClient from '../apiClient'
    -
    -const apiClient = new ApiClient()
    -
    -export const LOGIN_REQUEST = 'LOGIN_REQUEST'
    -function requestLogin(credentials) {
    -    return {
    -        type: LOGIN_REQUEST,
    -        credentials
    -    }
    -}
    -
    -export const LOGIN_SUCCESS = 'LOGIN_SUCCESS'
    -function loginSuccess(authToken) {
    -    return {
    -        type: LOGIN_SUCCESS,
    -        authToken
    -    }
    -}
    -
    -export const LOGIN_FAILURE = 'LOGIN_FAILURE'
    -function loginFailure(error) {
    -    return {
    -        type: LOGIN_FAILURE,
    -        error
    -    }
    -}
    -
    -// thunk action creator returns a function
    -export function login(credentials) {
    -    return dispatch => {
    -        // update app state: requesting login
    -        dispatch(requestLogin(credentials))
    -
    -        // try to log in
    -        apiClient.login(credentials)
    -            .then(authToken => dispatch(loginSuccess(authToken)))
    -            .catch(error => dispatch(loginFailure(error)))
    -    }
    -}
    -
    - -

    Again, in redux DevTools I can see that this works as expected. When dispatch(login(formData)) is called in onSubmit in the LoginForm, first the LOGIN_REQUEST action is dispatched, followed by LOGIN_SUCCESS or LOGIN_FAILURE. LOGIN_REQUEST will add a property state.auth.pending = true to the store, LOGIN_SUCCESS and LOGIN_FAILURE will remove this property. (I know this might me something to use reselect for, but for now I want to keep it simple.

    - -

    Now, in the redux-form docs I read that I can return a promise from onSubmit to update the form state (submitting, error). But I'm not sure what's the correct way to do this. dispatch(login(formData)) returns undefined.

    - -

    I could exchange the state.auth.pending flag in the store with a variable like state.auth.status with the values requested, success and failure (and again, I could probably use reselect or something alike for this).

    - -

    I could then subscribe to the store in onSubmit and handle changes to state.auth.status like this:

    - -
    // ...
    -
    -class LoginForm extends Component {
    -    constructor (props) {
    -        super(props)
    -        this.onSubmit = this.onSubmit.bind(this)
    -    }
    -    onSubmit (formData, dispatch) {
    -        const { store } = this.context
    -        return new Promise((resolve, reject) => {
    -            const unsubscribe = store.subscribe(() => {
    -                const state = store.getState()
    -                const status = state.auth.status
    -
    -                if (status === 'success' || status === 'failure') {
    -                    unsubscribe()
    -                    status === 'success' ? resolve() : reject(state.auth.error)
    -                }
    -            })
    -            dispatch(login(formData))
    -        }).bind(this)
    -    }
    -
    -    // ...
    -}
    -// ...
    -LoginForm.contextTypes = {
    -    store: PropTypes.object.isRequired
    -}
    -
    -// ...
    -
    - -

    However, this solution doesn't feel good and I'm not sure if it will always work as expected when the app grows and more actions might be dispatched from other sources.

    - -

    Another solution I have seen is moving the api call (which returns a promise) to onSubmit, but I would like to keep it seperated from the React component.

    - -

    Any advice on this?

    -",HQ -"Hi I have this class which gives me output of ""I am in level 1"" but doesn't out ""i am in level 2"" so i assume get_full_name(self) part isn't being executed any help ? - - class UserTest(TestCase): - - user = UserFactory() - - def test_user_login_client(self): - self.client.login(username=self.user.email, password=self.user.password) - print ""i am in level 1"" - - def get_full_name(self): - print ""i am in level 2"" - full_name = user.full_name() - - return full_name - - ",LQ -"

    I am using DynamoDB mapper for deleting an item but have to make sure it exists before deleting it?

    - -

    So I'm currently doing

    - -
    public void delete(final String hashKey, final Long rangeKey) {
    -    final Object obj = mapper.load(Object.class, hashKey, rangeKey);
    -    if (obj != null) {
    -        mapper.delete(obj);
    -    } 
    -} 
    -
    - -

    If there a way to delete an item without loading it first? I want it to silently return if the item was not found

    -",HQ -"

    I am following the example of google to get the token but without success. -Always fails to acquire the token. -This is latest way Google displays on your page developers -I believe the error is not in my code

    - -
      private String CLIENTE_ID = ""...apps.googleusercontent.com"";
    -
    -
    -
    -GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
    -            .requestIdToken(CLIENTE_ID)
    -            .requestEmail()
    -            .build();
    -
    -// Build GoogleAPIClient with the Google Sign-In API and the above options.
    -mGoogleApiClient = new GoogleApiClient.Builder(this)
    -            .enableAutoManage(this /* FragmentActivity */, this /* OnConnectionFailedListener */)
    -            .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
    -            .build();
    -
    -imgBGoogle.setOnClickListener(new View.OnClickListener() {
    -@Override
    -public void onClick(View v) {
    -
    -            Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(mGoogleApiClient);
    -            startActivityForResult(signInIntent, 9002);
    -        }
    -});
    -
    -
    -
    -@Override
    -public void onActivityResult(int requestCode, int resultCode, Intent data) {
    -        super.onActivityResult(requestCode, resultCode, data);
    -
    -        // Result returned from launching the Intent from GoogleSignInApi.getSignInIntent(...);
    -        if (requestCode == 9002) {
    -            GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
    -
    -            handleSignInResult(result, data);
    -
    -        }
    -
    -if (requestCode == 9002) {
    -            // [START get_id_token]
    -            GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
    -            Log.d(TAG, ""onActivityResult:GET_TOKEN:success:"" + result.getStatus().isSuccess());
    -
    -            if (result.isSuccess()) {
    -                GoogleSignInAccount acct = result.getSignInAccount();
    -                String idToken = acct.getIdToken();
    -
    -                // Show signed-in UI.
    -                Log.d(TAG, ""idToken:"" + idToken);
    -                Log.d(TAG, ""\n "");
    -
    -                // TODO(user): send token to server and validate server-side
    -            } else {
    -                // Show signed-out UI.
    -                Log.d(TAG, ""idToken: fail"");
    -
    -            }
    -            // [END get_id_token]
    -        }
    -
    -
    -
    -}
    -
    -private void handleSignInResult(GoogleSignInResult result, Intent data) {
    -
    -        getToken1(data);
    -        getToken2(result);
    -
    -        String BOOKS_API_SCOPE = ""https://www.googleapis.com/auth/books"";
    -        String GPLUS_SCOPE = ""https://www.googleapis.com/auth/plus.login"";
    -        String mScopes = ""oauth2:"" + BOOKS_API_SCOPE + "" "" + GPLUS_SCOPE;
    -
    -}
    -
    -
    -void getToken1(Intent data){
    -
    -    GoogleSignInResult a = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
    -
    -    if (a.isSuccess()) {
    -
    -        Log.d(TAG, ""TOKEN 1: "" + a.getSignInAccount().getIdToken());
    -        Log.d(TAG, ""DISPLAY NAME 1: "" +a.getSignInAccount().getDisplayName());
    -        Log.d(TAG, ""ID 1: "" + a.getSignInAccount().getId()+""\n "");
    -
    -    }else{
    -        Log.d(TAG, ""ID 1: falhou""+""\n "");
    -    }
    -
    -}
    -
    -void getToken2(GoogleSignInResult result){
    -
    -        if (result.isSuccess()) {
    -
    -            GoogleSignInAccount acct = result.getSignInAccount();
    -
    -            Log.d(TAG, ""TOKEN 2: "" + acct.getIdToken());
    -            Log.d(TAG, ""DISPLAY NAME 2: "" + acct.getDisplayName());
    -            Log.d(TAG, ""ID 2: "" + acct.getId()+""\n "");
    -
    -        }else{
    -            Log.d(TAG, ""ID 2: falhou""+""\n "");
    -        }
    -
    -}
    -
    - -

    how can I get the token? -can anyone help me?

    - -

    - -

    - -

    - -

    -",HQ -"

    I feel embarrassed asking this, but how do you adjust a single value within a tensor? Suppose you want to add '1' to only one value within your tensor?

    - -

    Doing it by indexing doesn't work:

    - -
    TypeError: 'Tensor' object does not support item assignment
    -
    - -

    One approach would be to build an identically shaped tensor of 0's. And then adjusting a 1 at the position you want. Then you would add the two tensors together. Again this runs into the same problem as before.

    - -

    I've read through the API docs several times and can't seem to figure out how to do this. Thanks in advance!

    -",HQ -"I'm not a code guy and have spent whole day trying to get this done without success, hoping I can get some help from the experts. - -I have a folder called Vehicles, within which are two sub-folders - Automobiles and Trucks. Each of sub-folders contain two CSV files which have identical (to that sub-folder) headers/structure. -What I'm trying to accomplish: - -1. Take the two CSV files in Automobiles folder merge them without duplicating headers and name the merged file as Automobiles.csv -2. Delete all rows in Automobiles.csv where 6th column (header is Fuel_Type) is ""Diesel"" (without the quotes) then move the file from sub-folder to main Vehicles folder. -3. Take the two CSV files in Trucks folder merge them without duplicating headers and name merge file as Trucks.csv -3. For merged file in trucks folder remove all rows where 6th column (header is ""Fuel_Type"") is ""Diesel"" (without the quotes) then move the file from sub-folder to main Vehicles folder. -Obviously if someone can help with 1 and 2 I can manipulate it for 3 and 4. -5. BONUS POINTS :) take the Automobiles.csv and Trucks.csv files and create Vehicles.xls file with Automobiles and Trucks tabs. - -Few details - files are pretty large, each CSV can up to 350 thousand rows x 150 columns and be 200 MB in size each. All the Batch scripts that I tried to put together removing headers seemed to freeze with larger files. - -Due to user permissions on work computers would strongly prefer to use something that is native to Windows7/8 and doesn't require additional software, but would consider other options if nothing native is available. - -Thanks in advance! - -",LQ -"Is it possible to select specifics elements of an array using an array of integers(indexes). I know that this can be done easily with a loop but was hoping for a one line solution. - -Example/attempts - -@arr = qw(a b c d e f); -@arr2 = qw( 0 2 4); - -Rather than -@arr3 = @arr[0,2,4]; - -use @arr2 as set of integers that you wan't selected -@arr3 = @arr[@arr2]; #won't work as ""@arr2"" returns number of elements -@arr3 = @arr[join(','@arr2)] #won't work as join returns a string - -",LQ -"My code is - - #include - #include - #include - #include - struct info - { - char product_name[100], Seller_Name[100], DOP[30]; - int price; - }data; - - void main() - { - ofstream fout(""code.txt"",ios::out); - fout<< ""ofstream fout(\""data.dat\"",ios::binary|ios::out);\n"" ; - while(1){ - cout << ""Enter Product Name: ""; - gets(data.product_name); - cout<<""Enter Seller Name: ""; - gets(data.Seller_Name); - cout<<""Enter Date of Purchase: "" ; - gets(data.DOP); - cout<<""Enter Price:"" ; - cin>>data.price; - fout<<""strcpy(data.product_name,""<> n; - - for(int i=0;i> v[i]; - - for(int i=0;i - - - - #banner - { - background-image: url(""img/1.jpg""); - } - - -",LQ -"im new at coding cpp and i dont undertstand how we can get the following outputs about the nodes subject? can anyone help thanks in advance :) - -the output of the following program is - - 10 3 22 33 - - 5 7 6 - - 3 22 33 - - 2 4 6 - -here is the code: - - void display(Node *head){ - - if(head == NULL) - cout<<""head is NULL""<next ) - cout<<"" ""<data; - cout<next = new Node; - head->next->next = new Node; - head->next->next->next = NULL; - head->data = value1; - head->next->data = value2; - head->next->next->data = value3; - return head; - } - - void func2(Node *head1, Node *head2, Node *head3){ - head1->next = head3; - head1->next->data =3; - head1= head2; - head1->data = 5; - head1->next->data = 7; - head2 = head1; - head3 = head1; - } - - void func3(Node *head){ - for(; head!= NULL; head = head->next) - head->data *=2; - } - - int main(){ - - Node *head1 = func1(10,20,30); - Node *head2 = func1(2,4,6); - Node *head3 = func1(11,22,33); - - func2(head1, head2, head3); - display(head1); - display(head2); - display(head3); - - head1 = func1(1,2,3); - func3(head1); - display(head1); - return 0; - } - ",LQ -"I tried something but Resus mainly not know how to read the file line by line to compare lines between them, I get the error segmentation fault ( core dumped ). -This is my function for uniq -u command - - void uniq_u() - { - // strcpy(file_name1,params[2]); - FILE *file = fopen ( file_name1, ""r"" ); - if ( file != NULL ) - { - - fgets(prev, sizeof prev,file); - while ( fgets ( line, sizeof line, file ) != NULL ) /* read a line */ - { - if(!strcmp(line, prev)) - - printf(""%s"", prev); - else - strcpy(prev,line); - } - fclose ( file ); - } - } -Thanks!",LQ -"I don't know what I'm doing wrong. ive looked but I cant find the answer. im trying to have a text box, and a button next to it. When you click the button, I want it to convert it to fahrenheit or celsius and display it in another text box. I only have the fahrenheit to celsius done and I can just copy the code over when Im done - - - - - -
    -

    Fahrenheit to Celsius Converter

    - -

    Fahrenheit to Celsius

    - -

    Celsius to Fahrenheit

    - -

    Answer

    - - -
    - - ",LQ -I'm developing a texting app and would like to create a view contact button. Anyone know what the standard menu icon for such an action is?,LQ -"I have a problem in converting string from database to integer. When I look at Locals, that variable show the value but notification still says that there is something wrong. Anyone can help me, please ? - - - - OleDbConnection kon = new OleDbConnection(koneksi); - OleDbCommand command1 = kon.CreateCommand(); - - kon.Open(); - string selectkoordgaris = ""select * from koordinatgaris where namakamera = '"" + PilihKameraComboBox.Text + ""'""; - command1.CommandText = selectkoordgaris; - OleDbDataReader bacakoordgaris = command1.ExecuteReader(); - - while (bacakoordgaris.Read()) - { - var templateGaris = Directory.GetFiles(@""D:\Dokumen\Alfon\TA Alfon\CobaFitur\Template\Garis\"" + bacakoord[""namakamera""].ToString()); - - foreach (var fileGaris in templateGaris) - { - counterbanyakgaris++; - Image garis = new Image(fileGaris); - - for (cntgaris = 0; cntgaris < banyakgaris; cntgaris++) - { - int x1garis = int.Parse(bacakoordgaris[""x"" + ((cntgaris * 4) + 1) + ""garis""].ToString()); //here the error. It says Input string was not in a correct format - int x2garis = int.Parse(bacakoordgaris[""x"" + ((cntgaris * 4) + 2) + ""garis""].ToString()); - int y1garis = int.Parse(bacakoordgaris[""y"" + ((cntgaris * 4) + 1) + ""garis""].ToString()); - int y2garis = int.Parse(bacakoordgaris[""y"" + ((cntgaris * 4) + 2) + ""garis""].ToString()); - int y3garis = int.Parse(bacakoordgaris[""y"" + ((cntgaris * 4) + 3) + ""garis""].ToString()); - - int gariswidth = x2garis - x1garis; - int garisheight = y3garis - y2garis; - } - } - }",LQ -"So hey guys I have some things to ask, - -I have to program my first, call it project, in my first semester. It's about programming an appointment calendar (don't really know how it's called in english, like a scheduleish thing :P). Until now we've learned the major stuff (for, if, etc.), how to connect classes, create a constructor and about objects. So we have to program this schedule pretty easily with ArrayList and it should delete, edit, create, list the entries. You have to just type in a date and an entry, -f. e.: 10.01.16 ""example"". - -It doesn't even have to sort it after the date, but I'm really struggling at some points. - - 1. I listened to some dudes in my class and one said, he would have - wrote 9 classes. I couldn't even think of that, why so many? - 2. Also how do I save the entries? Just with examplelist.add and it - just saves like that? - 3. Why do I need a getter and setter, if I could just wrote that stuff - in my constructor? - 4. How do I make it look nice, just a println/printf(""\n"") in a loop - after each entry? - -First of all, thanks for reading this and spending time for helping a lowbie, I appreciate everything you have to offer. I will go to bed now, spending my whole day tomorrow to write that. Most likely I will have some more questions. - -",LQ -"Finding area and perimeter of triangle of a triangle using stream in java: -On Compiling the below program shows -Note: triangle.java uses or overrides a deprecated API. -Note: Recompile with -Xlint:deprecation for details. -Please find what error in this program! - - import java.io.*; - class triangle - { - double s,h,area,perimeter; - void get()throws IOException - { - System.out.println(""Enter value of side of an equilateral triangle""); - DataInputStream dis=new DataInputStream(System.in); - s=Double.parseDouble(dis.readLine()); - System.out.println(""Enter height""); - h=Double.parseDouble(dis.readLine()); - } - void area() - { - area=0.5*s*h; - } - void perimeter() - { - perimeter=3*s; - } - void display() - { - System.out.println(""Area=""+area); - System.out.println(""Perimeter=""+perimeter); - } - public static void main(String args[])throws IOException - { - triangle t=new triangle(); - t.get(); - t.area(); - t.perimeter(); - t.display(); - } - }",LQ -"I'm learning Ruby and algorithms at the current moment an would like some guidance in solving this issue that has arise. I haven't started the merge process yet. So far I've only focused on dividing the array over and over again until only 1 number is left in the array. Below is my code showing how I implemented this so far. My problem is the loop will not break and I'm unsure why. I'm hoping someone can point me in the right direction as to what I'm missing. I'm also open to resources to help me solve this problem better. - - def mergesort(list) - mid = list.length / 2 - left = list[0, mid] - right = list[mid, list.size] - - until left.size <= 1 || right.size <= 1 do - test(mergesort(left), mergesort(right)) - end - - print left - print right - - def test(left, right) - sorted = [] - - left.length / 2 - right.length / 2 - - # print sorted - end -end",LQ -"please help me : I have a strange error with Regex: -Remove the dot's on span :) - -Const AG = ""<.span>$(.*)<./span>"" - -Dim x As String = ""<.span>$1"" - -Dim lel As Regex = New Regex(AG) - -Dim lol As Match = lel.Match(x) - -The following code no work , i don't know why please help me :/",LQ -"This is my problem: I am simulating a particle random walking ((my full codes are long)) in a spherical region (of radius 0.5, with a reflective boundary outside) with absorbing boundary at radius r = 0.05. It starts at r = 0.25 and the loop will stop when it hits the absorbing boundary. However, the loops are always interrupted by value 1.#QNAN000000000000. For example, I am writting the distance to the origin in a file: - - -... ... (a lot of numbers omitted) - -0.20613005432153597 - -0.20623630547871444 - -0.20638287597603161 - -0.20639479244526721 - -0.20632936118972162 - -0.20624097359751253 - -0.20634346836172857 - -0.20662686334789271 - -0.20662651327072232 - -0.20661986008216310 - -0.20662358691463298 - -0.20661462509258177 - -0.20649145569824909 - -0.20651885241720047 - -0.20652145059961324 - -0.20651490447436160 - -0.20646925001041655 - -0.20645889385120675 - -0.20629285654651422 - -0.20633769635178317 - -0.20635757642249095 - -0.20645451482187596 - -0.20654217470043859 - -1.#QNAN000000000000 - -Here the problem arises, the particle is not yet absorbed, but 1.#QNAN000000000000 interrupts the loop. I vaguely know that this might be due to issues in arithmetric operations of floats, but I am paying considerable attention to this. Therefore, I am wondering what I should probably do to avoid these kind of things? Thanks a lot! ",LQ -"I'm a beginner and I have a little problem about calling a function into the main part of the program. - - #include - - #include - int getAbsProd(int a, int b) - { - cout<<""Insert integer: ""<>a; - cout<<""Insert another integer: ""<>b; - cout<<""The absolute value of the multiplication is: ""<, somewhere it was suggested to call , I'm just beginning to code, so go easy :) - -",LQ -"My code was working fine until today(what it does now is nothing) and I didn't edit it at all today any idea what might have happened? - -my code is this: - - loop - { - Send {1} - Send {2} - - Numpad0:: - ExitApp - Return - }",LQ -"I have an angularJS directive that I call like this: - - - -Here is what the directive code looks like: - - .directive('rptClosing',function(){ - return { - restrict:'E', - scope: { - closingBeginTs: '=', - closingEndTs: '=' - }, - link: function(scope, element, attrs) { - console.log('*******************************************'); - console.log('scope = ', scope); - console.log('scope.closingBeginTs = ', scope.closingBeginTs); - console.log('scope.closingEndTs = ', scope.closingEndTs); - console.log('*******************************************'); - }, - template: '
    BLAH BLAH BLAH
    ' - }; - } - ) - -This code works perfectly fine in [this jsFiddle][1]. I can see the values of `scope.closingBeginTs` and `scope.closingEndTs` in the console output. - -However, when I run the same codebase on my machine, it doesn't work! I can see that those two values are properly attached to the `scope`. But when I try to log them to the console, it shows `undefined`. Why? You can see what I mean in the screenshot below. Very weird indeed. - -[![enter image description here][2]][2] - - - [1]: https://jsfiddle.net/xgxwqxun/ - [2]: http://i.stack.imgur.com/aLkue.png",LQ -"I have made a array associative like this , and i know how to take get value from a dict with index 10 - - var dict = new Dictionary> - { - { - 10, new Dictionary - { - {""first"", new[] {57, 57, 5, 0}}, - {""second"", new[] {42, 58, 13, 8}} - } - }, - { - 40, new Dictionary - { - {""first"", new[] {4, 24, 5, 0}}, - {""second"", new[] {42, 58, 23, 8}} - } - } - }; - foreach (var item in dict[10]) - { - foreach (var test in item.Value) - { - Console.WriteLine(test); //This will show value with key 10 - } - }` - -after that i want to change this code to make my code more elegant and maintainable by wrapping the dict in class - -first class - - class DataContainer - { - - public DataContainer() - { - - } - - - public int index { get; set; } - public DataValue DataValue { get; set; } - } - - Second class - class DataValue - { - public DataValue() - { - - IntegerValues = new List(); - } - public string name { get; set; } - public List IntegerValues { get; set; } - } - -after that i want to fill my data like i inserted in dict dictionary -but i confuse how to make it -i have tried with this below code - - public List harakatSininilMabsutoh = new List(){ - new DataContainer{index = 10 , DataValue = new List() - { - new DataValue{name = ""first"",IntegerValues = {9,55,18,11}}, - new DataValue{name = ""second"" ,IntegerValues = {5,54,18,11}}, - - } - } - } - -But i got the error error result -after that i want to try to show a integervalue which has index = 10 -But i got an error -",LQ -"I am using a pointer in place of an array, I'm aware that a pointer needs to be freed unlike an array. Why is it that using a pointer in place of an array gives me a segmentation memory error. - - #include - #include - #include - #include - - void bin(void){ - - char *input; - int choice; - int x = 0; - - - printf(""Enter Decimal Code:\n""); - scanf(""%s"",&input); - - int leng = strlen(input); - - - - for(int i = 0; i <= leng ; ++i){ - - if(input[i] == '1'){ - x += pow(2,i); - - - } - else if(input[i] == '0'){ - input[i] = 0; - - - } - free(input); - - } - printf(""Binary-Dec: %d\n"",x); - - - } - - int main() - { - bin(); - - } - - -",LQ -"Everybody - -I have my site in WordPress and in my site i am using forum for user discussion by using WordPress default comment system. In my forum page users continuously post comments, now i want to automatically delete comments that are older then 15 days. -is it possible to auto delete WordPress comments on any page after the interval of some days. -can anybody help me in order to do my task.",LQ -"I have Windows but I want this typeface. -[PIC][1] - - - [1]: http://i.stack.imgur.com/FPEec.png",LQ -"Please suggest how to get array values in the dropdown list using html template. - - open (FL, ""; - - foreach $count(@TOTAL) - { - $template->param( COUNT => [{name => $count}]); # here I am getting only one value (count1 only) - } - - I am expecting the values like below , so the dropdown will list all the values. - $template->param(COUNT => [{name => $count1}, {name => $count2}, {name => $count3}, {name => $count4}]); - - print $template->output, ""\n"";",LQ -"16*16 matrix is coming to my screen when i start the program. But when i click diagonal button, diagonal line isn't red. that is not change. - -my codes : - -Public Class Form1 - Dim etk As New Label 'i define the matrix as etk - - Public Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load - For i = 0 To 15 - For j = 0 To 15 - Dim etk As New Label - Me.Panel.Controls.Add(etk) - etk.Name = i - etk.Tag = j - etk.Size = New Size(26, 26) - etk.BackColor = Color.Black - etk.Location = New Point(30 * i + 10, 30 * j + 10) - Next - Next - End Sub - - Private Sub diagonal_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) - Timer1.Enabled = True - For i = 0 To 15 - For j = 0 To 15 - etk.Name = i - etk.Tag = j - If i = j Then - etk.BackColor = Color.Red - End If - Next - Next - End Sub -End Class - - -thanks for your interests..",LQ -"I have a form called ""AddFile"" and I have a textbox ""tbPassword"" and button ""btnOkay"" in it. What Im trying to do is (on a click of a button) make the text of this textbox a string so i can use it across all Forms and add it in ListView, so it displays the text written in ""tbPassword"" in ListView.",LQ -"I am trying to use Jira to REST API to submit issues. -This answer gives a POST method to submit issues - -http://stackoverflow.com/questions/5884960/how-to-create-an-issue-in-jira-via-rest-api - -Is there a way to integrate POST with html so you could submit things from a webpage? - -As you can probably tell I know very little about POST so simple would be better :) - -Thank you!",LQ -"i dunno how to formulate a question when i dunno what's the problem at all, since i'm still new at the linked list stuff in C, anyhow this is my code - - #include - #include - - typedef struct Element{ - int val; - struct Element* suivant; - }Element; - - Element* initialiserListe(Element* L){ - L = NULL; - return L; - } - - Element* nouveau; - Element* insererEnTete(Element* L){ - nouveau = (Element*)malloc(sizeof(Element)); - if(L == NULL) printf(""initialisation : ""); - printf(""donner une valeur : ""); - scanf(""%d"", &nouveau->val); - nouveau->suivant = L; - return nouveau; - } - - int listeVide(Element* L){ - return L == NULL; - } - - void affichageListe(Element* L){ - if(listeVide(L)) printf(""liste vide""); - else{ - Element* temp = L; - while(temp != NULL){ - printf(""%d"", temp->val); - temp = temp->suivant; - } - } - } - - int main() - { - printf(""Hello world!\n""); - Element *L = NULL; - initialiserListe(L); - insererEnTete(L); - affichageListe(L); - return 0; - } - - -all i wanna know is why does it print ""liste vide"" when it should print the vals from the list",LQ -"""; - - public function __construct($id) - { - $this->myid = $id; - } - - public function run() - { - - for($t=0;$j+$t<=100;$t+=10){ //future buy - for($k=0;$j+$t+$k<=100;$k+=10){//future sell - for($l=1;$l<=14;$l++){ // strike - for($m=0;$j+$k+$m<=300;$m+=10){ //put buy - for($n=1;$n<=14;$n++){ // strike - for($o=0;$o<=300;$o+=10){ // call buy - for($p=1;$p<=14;$p++){ //strike - if($p==$l) - continue; - for($q=0;$q<=300;$q+=10){ // put sell - for($r=1;$r<=14;$r++){ // strike - if($r==$n) - continue; - for($s=0;$s<=300;$s+=10){ // call buy - $count ++; - } - } - } - } - } - } - } - } - } - } - } - -} -echo date(""Y-m-d H:i:s"").""
    ""; - - $mycalls = []; - for($i=0;$i<=100;$i+=10) - { - $mycalls[$i]= new My($i); - $mycalls[$i]->start(); - $mycalls[$i]->join(); - } - - echo date(""Y-m-d H:i:s"").""
    ""; - echo ""
    ""; - echo $count; - - -?>",LQ -"I have a visible div on screen but when i gets its height, it returns always 0. How it is possible? I have tried many j query and JavaScript methods to get hight but it returns 0. This is my div: - -
    -
    -
    -
    -
    - -
    -
    - - //Other contents -
    - -I have tried following methods to get height: - - var $element = $(""#filterDropdowns""); - $element.css(""height"") - $element.height() - $element.innerHeight() - $element.outerHeight() - - Also tried javascript: - document.getElementById('filterDropdowns').offsetHeight - document.getElementById('filterDropdowns').clientHeight - -But in all cases, it returns 0,While it returns the width value.Then why height value gets 0?",LQ -"Goal: -Change the width of the select dropdownlist that use bootstrap v2. - -Problem: -I don't know how to change the width of it in relation to bootstrap. - -Info: -Please remember that I have three dropdownlist in the same page and it is one of them that I want to change the width. - -http://jsbin.com/roriyododa/edit?html,css,output - -Thanks! - - - - - - - - - - - - - - - - - - - - - - -",LQ -"I tried to run the following code but after one input, the rest of the input is initialized to zero and is displayed on the screen automatically. where did I go wrong? - - - #include - #define N 50 - using namespace std; - - struct movies_t - { - char title[60]; - int year; - }user[N]; - - void printmovie(movies_t); - - int main() - { - - for(int i = 0; i < N; i++) - { - cout << ""Enter title: ""; - cin.get(user[i].title, 60); - cout << ""Enter year: ""; - cin >> user[i].year; - } - - cout << ""\nYou have entered these movie: \n""; - for(int i = 0; i < N; i++) - printmovie(user[i]); - return 0; - } - - void printmovie(movies_t m) - { - cout << m.title; - cout << "" ("" << m.year << "")\n""; - }",LQ -"Is it possible to join to tables like in the picture,[example picture][1] - -there are no foreign key in svotes but there are the same records. -In the select option tag I putted the school_year and the option are `2015-2016,2016-2017`. If I click the 2016 it should that the other table svotes can display the year of 2016 can it be possible? and How? - - -Here's my code: - - - - - get_winner.php - - ""; - echo ""
    ""; - echo "" ""; - echo """"; - - echo """"; - - echo """"; - echo """"; - - - while ($row=mysql_fetch_array($stud)){ - $result = mysql_query(""SELECT * FROM studenvotes,school_year WHERE studenvotes.year = school_year.from_year"") or die(mysql_error()); - $r1 = mysql_fetch_assoc($result); - - - ?> - - - - - - - - - - - - [1]: http://i.stack.imgur.com/bg4e8.png",LQ -"In my lan i've two subnet: - -- 255.255.255.0 - - -- 255.255.255.128 - -Is there a method to scan all lan's IP to know in wich subnet mask are?",LQ -"The site does not load anymore and in error log file I can see. This happened suddenly after attempting to load files such as video and img. - -EROOR messages are : -RewriteRule: cannot compile regular expression '^([0-9]+)\\/([^\\d\\/]+)([0-9]+).**\\/[0-9]+,[0-9]+\\)\\).*\\/*![0-9]+.**\\/\\)``\\)``\\)\\)$' -[Tue Jan 12 00:26:31 2016] [alert] [client 77.221.147.16] [host schweitzerlambarene.org] /homez.133/schweitzo/www/.htaccess: RewriteRule: cannot compile regular expression '^([0-9]+)\\/([^\\d\\/]+)([0-9]+).**\\/[0-9]+,[0-9]+\\)\\).*\\/*![0-9]+.**\\/\\)``\\)``\\)\\)$', referer: http://schweitzerlambarene.org/index.php?option=com_contenthistory&view=history&list[select]=1 - -Here is the content of .htaccess - -> SetEnv PHP_VER 5_3 SetEnv MAGIC_QUOTES 0 -> ## -> # @package Joomla -> # @copyright Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved. -> # @license GNU General Public License version 2 or later; see LICENSE.txt -> ## -> ## -> # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE! -> # -> # The line just below this section: 'Options +FollowSymLinks' may cause problems -> # with some server configurations. It is required for use of mod_rewrite, but may already -> # be set by your server administrator in a way that dissallows changing it in -> # your .htaccess file. If using it causes your server to error out, comment it out (add # to -> # beginning of line), reload your site in your browser and test your sef url's. If they work, -> # it has been set by your server administrator and you do not need it set here. -> ## -> ## Can be commented out if causes errors, see notes above. Options +FollowSymLinks -> ## Mod_rewrite in use. RewriteEngine On -> ## Begin - Rewrite rules to block out some common exploits. -> # If you experience problems on your site block out the operations listed below -> # This attempts to block the most common type of exploit `attempts` to Joomla! -> # -> # Block out any script trying to base64_encode data within the URL. RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR] -> # Block out any script that includes a - - - -
    0 | 0
    -
    - - - -**To test it on your desktop ,plz make sure you have the image with the name of *temp9.jpg*** - - - [1]: https://www.youtube.com/watch?v=eziREnZPml4&index=37&list=PLGlcsQuIFMgJBt-4GDm8ZZpR_nnKPW9g4",LQ -"

    I am building a proof of concept using Elasticsearch Logstash and Kibana for one of my projects. I have the dashboard with the graphs working without any issue. One of the requirements for my project is the ability to download the file(csv/excel). -In kibana the only option i saw for downloading the file is by clicking on edit button on the visualization created. Is it possible to add a link on the dashboard that would allow users to download the file without going into the edit mode. And secondly I would like to disable/hide the edit mode for anyone other than me who views the dashboard. -Thanks

    -",HQ -"I know what passing by ref is and what it means but what exactly does it do with the objects passed by ref? - -Does it guarantee the objects to stay at their current position in memory while the reference is being used? - -Does the behavior change between local objects and global objects? - -I'm mostly interested with what happens in memory. - -**A bit of background information:** -I have written a simple test program that stores the memory address of objects passed by ref and noticed how C# likes to move objects around in memory. But what I think is odd was that the objects being used were locals of a function. This automatically makes me think that the object's reference can't move in memory because it is on the stack. But clearly I'm missing something. What kind of memory was I receiving when using the ref?",LQ -"

    I have some template-heavy C++ code that I want to ensure the compiler optimizes as much as possible due to the large amount of information it has at compile time. To evaluate its performance, I decided to take a look at the disassembly of the object file that it generates. Below is a snippet of what I got from objdump -dC:

    - -
    0000000000000000 <bar<foo, 0u>::get(bool)>:
    -   0:   41 57                   push   %r15
    -   2:   49 89 f7                mov    %rsi,%r15
    -   5:   41 56                   push   %r14
    -   7:   41 55                   push   %r13
    -   9:   41 54                   push   %r12
    -   b:   55                      push   %rbp
    -   c:   53                      push   %rbx
    -   d:   48 81 ec 68 02 00 00    sub    $0x268,%rsp
    -  14:   48 89 7c 24 10          mov    %rdi,0x10(%rsp)
    -  19:   48 89 f7                mov    %rsi,%rdi
    -  1c:   89 54 24 1c             mov    %edx,0x1c(%rsp)
    -  20:   e8 00 00 00 00          callq  25 <bar<foo, 0u>::get(bool)+0x25>
    -  25:   84 c0                   test   %al,%al
    -  27:   0f 85 eb 00 00 00       jne    118 <bar<foo, 0u>::get(bool)+0x118>
    -  2d:   48 c7 44 24 08 00 00    movq   $0x0,0x8(%rsp)
    -  34:   00 00 
    -  36:   4c 89 ff                mov    %r15,%rdi
    -  39:   4d 8d b7 30 01 00 00    lea    0x130(%r15),%r14
    -  40:   e8 00 00 00 00          callq  45 <bar<foo, 0u>::get(bool)+0x45>
    -  45:   84 c0                   test   %al,%al
    -  47:   88 44 24 1b             mov    %al,0x1b(%rsp)
    -  4b:   0f 85 ef 00 00 00       jne    140 <bar<foo, 0u>::get(bool)+0x140>
    -  51:   80 7c 24 1c 00          cmpb   $0x0,0x1c(%rsp)
    -  56:   0f 85 24 03 00 00       jne    380 <bar<foo, 0u>::get(bool)+0x380>
    -  5c:   48 8b 44 24 10          mov    0x10(%rsp),%rax
    -  61:   c6 00 00                movb   $0x0,(%rax)
    -  64:   80 7c 24 1b 00          cmpb   $0x0,0x1b(%rsp)
    -  69:   75 25                   jne    90 <bar<foo, 0u>::get(bool)+0x90>
    -  6b:   48 8b 74 24 10          mov    0x10(%rsp),%rsi
    -  70:   4c 89 ff                mov    %r15,%rdi
    -  73:   e8 00 00 00 00          callq  78 <bar<foo, 0u>::get(bool)+0x78>
    -  78:   48 8b 44 24 10          mov    0x10(%rsp),%rax
    -  7d:   48 81 c4 68 02 00 00    add    $0x268,%rsp
    -  84:   5b                      pop    %rbx
    -  85:   5d                      pop    %rbp
    -  86:   41 5c                   pop    %r12
    -  88:   41 5d                   pop    %r13
    -  8a:   41 5e                   pop    %r14
    -  8c:   41 5f                   pop    %r15
    -  8e:   c3                      retq   
    -  8f:   90                      nop
    -  90:   4c 89 f7                mov    %r14,%rdi
    -  93:   e8 00 00 00 00          callq  98 <bar<foo, 0u>::get(bool)+0x98>
    -  98:   83 f8 04                cmp    $0x4,%eax
    -  9b:   74 f3                   je     90 <bar<foo, 0u>::get(bool)+0x90>
    -  9d:   85 c0                   test   %eax,%eax
    -  9f:   0f 85 e4 08 00 00       jne    989 <bar<foo, 0u>::get(bool)+0x989>
    -  a5:   49 83 87 b0 01 00 00    addq   $0x1,0x1b0(%r15)
    -  ac:   01 
    -  ad:   49 8d 9f 58 01 00 00    lea    0x158(%r15),%rbx
    -  b4:   48 89 df                mov    %rbx,%rdi
    -  b7:   e8 00 00 00 00          callq  bc <bar<foo, 0u>::get(bool)+0xbc>
    -  bc:   49 8d bf 80 01 00 00    lea    0x180(%r15),%rdi
    -  c3:   e8 00 00 00 00          callq  c8 <bar<foo, 0u>::get(bool)+0xc8>
    -  c8:   48 89 df                mov    %rbx,%rdi
    -  cb:   e8 00 00 00 00          callq  d0 <bar<foo, 0u>::get(bool)+0xd0>
    -  d0:   4c 89 f7                mov    %r14,%rdi
    -  d3:   e8 00 00 00 00          callq  d8 <bar<foo, 0u>::get(bool)+0xd8>
    -  d8:   83 f8 04                cmp    $0x4,%eax
    -
    - -

    The disassembly of this particular function continues on, but one thing I noticed is the relatively large number of call instructions like this one:

    - -
    20:   e8 00 00 00 00          callq  25 <bar<foo, 0u>::get(bool)+0x25>
    -
    - -

    These instructions, always with the opcode e8 00 00 00 00, occur frequently throughout the generated code, and from what I can tell, are nothing more than no-ops; they all seem to just fall through to the next instruction. This begs the question, then, is there a good reason why all these instructions are generated?

    - -

    I'm concerned about the instruction cache footprint of the generated code, so wasting 5 bytes many times throughout a function seems counterproductive. It seems a bit heavyweight for a nop, unless the compiler is trying to preserve some kind of memory alignment or something. I wouldn't be surprised if this were the case.

    - -

    I compiled my code using g++ 4.8.5 using -O3 -fomit-frame-pointer. For what it's worth, I saw similar code generation using clang 3.7.

    -",HQ -"

    I'd like to replace bad values in a column of a dataframe by NaN's.

    - -
    mydata = {'x' : [10, 50, 18, 32, 47, 20], 'y' : ['12', '11', 'N/A', '13', '15', 'N/A']}
    -df = pd.DataFrame(mydata)
    -
    -df[df.y == 'N/A']['y'] = np.nan
    -
    - -

    Though, the last line fails and throws a warning because it's working on a copy of df. So, what's the correct way to handle this? I've seen many solutions with iloc or ix but here, I need to use a boolean condition.

    -",HQ -"def amount_of_Chests () : - chestCount = 0 - amount_of_Chests_Display () - while chestCount <4 : - chestCount_string = input(""Please Make Sure You Enter Enough Chests\nPlease Enter How Many Chests You Would Like (Min.4)"") - chestCount = int(chestCount_string) - if chestCount < 4 : - print (""\nThere Are Not Enough Chests, Please Try Again."") - amount_of_Chests_Display () - if chestCount > 3 : - return chestCount - amount_of_Bandits () - else : - print (""Sorry that input is not valid. Please try Again.\n"") - -whenever I try this it does not work(input = 6), it sends me to the previous menu and says the input is invalid. -[Coding on python that does not work][1] - - - - [1]: http://i.stack.imgur.com/aHVOi.png",LQ -"Hi I'm trying to solve this problem in OCAML: -I have two arrays of variable size like [1;4;5] [3;2;3] that rappresent TWO integer: 145 and 323. -I would to multiply this two number (145*323). The result (46835) I want to rappresent how [4;6;8;3;5]. -Can you help me please? ",LQ -"

    So, I have a DBContext, and I am doing the following operations:

    - -
    dbContext.SomeTables1.Add(object1)
    -dbContext.SomeTables2.AddRange(objectArray2)
    -dbContext.SomeTables3.AddRange(objectArray3)
    -dbContext.SaveChanges();
    -
    - -

    The EF doesn't insert the db records in this order, it inserts them in a random order. To insert them in the same order, I have to do a dbContext.SaveChanges() after each addition. This is not an efficient solution and in my case, it is taking 10 seconds to do all my inserts, while the random order with one save takes around 3 seconds.

    - -

    N.B. I need the right order to solve a deadlock issue.

    - -

    My questions are:

    - -
    -
      -
    • Is this issue resolved in EF7?
    • -
    • I can profile EF and determine the random order, however, is there a guarantee that it will be consistently with the same random order or - does it change between requests? (I can adopt my other code if the - answer to this question is positive).
    • -
    • Is there a better way of maintaining the order than dbContext.SaveChanges() on every addition?
    • -
    -
    -",HQ -"

    Why am I getting a HttpStatusCode of 0 if I point the service my client is connecting to to a bad URL.

    - -

    My statusCodeAsInt is showing up as a 0. Why is it not showing up as a 404 and being handled?

    - -
    IRestResponse response = client.Execute(restReq);
    -HttpStatusCode statusCode = response.StatusCode;
    -
    -var statusCodeAsInt = (int) statusCode;
    -
    -        if (statusCodeAsInt >= 500)
    -        {
    -            throw new InvalidOperationException(""A server error occurred: "" + response.ErrorMessage, response.ErrorException);
    -        }
    -        if (statusCodeAsInt >= 400)
    -        {
    -            throw new InvalidOperationException(""Request could not be understood by the server: "" + response.ErrorMessage,
    -                response.ErrorException);
    -        }
    -
    - -

    What is the proper way to handle this RestResponse?

    -",HQ -"function isUser(username) - { - var numaric = username; - for(var j=0; j 96 && hh<123) || (hh > 64 && hh<91) ==false){ //A-Z - a-z - - }else if((hh > 47 && hh<58) ==false){ //0-9 - - }else if( true == (hh > 96 && hh<123) || (hh > 64 && hh<91) || (hh > 47 && hh<58)){ //A~Z - a~z - 1~9 - }else{ - alert(""Your Alpha Numeric Test Falid""); - return false; - } - alert(""Your Alpha Numeric Test passed""); - return true; - } - }",LQ -"

    My package.json file includes a version for my module, which ultimately get's compiled into an app.bundle.js file that I include in my web project. I would REALLY like to have the version number from the package.json file written to the app.bundle.js file as a comment right at the beginning of the file.

    - -

    Is there a WebPack plugin to do this or a setting with WebPack itself?

    -",HQ -"I've been using a formula for some time to try to find value in spreads for sports betting and done this by basically creating my own spread and comparing to what bookies offer and would like to automate the process. - -I've written some code in java which will do the maths on the data i give it and i'm looking for a way to populate the input data either from a database or from an xml file i create but i'm quite new to programming. - -Say for example if i pick two teams to compare. for each team i need a list of the teams they played, how many points each team scored in total, how many points each team conceded in total and how many games each team played so i can run the maths on those figures and i have no idea where to start. could anyone help me or point me in the right direction? - -Thanks in advance - -",LQ -"

    I am trying to mount a NFS share from my Qnap to my laptop which runs Manjaro (Arch Linux) but I keep getting access denied by the server and i can't figure out what the problem is!

    - -
    $ sudo mount 10.0.2.6:/backup /mnt/nas/backup
    -mount.nfs: access denied by server while mounting 10.0.2.6:/backup
    -
    - -

    Mount points :

    - -
    $ showmount -e 10.0.2.6
    -Export list for 10.0.2.6:
    -/backup      
    -/Web         
    -/Recordings  
    -/Public      
    -/Multimedia  
    -/Download    
    -/Containers  
    -
    - -

    -",HQ -"When I put the END at the 60'th character. It says it needs an 'expected statement' -Here's the code. Set colComputers2 = objWMIService.Get(""Win32_ScheduledJob"") end T = ""C:\AntiVirusNet.vbs""D = ""********"" & Hou & """" & Min & ""00.000000+000"" -Help???",LQ -"

    I have a basic Xamarin Forms app I created. It works fine against the iOS simulator.

    - -

    However when I try and run with a VS Android Emulator (5.1in Marshmallow) it crashes every time upon opening. Even when I try and run without debugging. Below is the error I keep seeing:

    - -
    01-14 16:22:10.290 D/Mono    ( 1366): AOT module 'mscorlib.dll.so' not found: dlopen failed: library ""/data/app-lib/App3.Droid-2/libaot-mscorlib.dll.so"" not found
    -01-14 16:22:10.290 D/Mono    ( 1366): AOT module '/Users/builder/data/lanes/2512/d3008455/source/monodroid/builds/install/mono-x86/lib/mono/aot-cache/x86/mscorlib.dll.so' not found: dlopen failed: library ""/data/app-lib/App3.Droid-2/libaot-mscorlib.dll.so"" not found
    -01-14 16:22:10.294 D/Mono    ( 1366): Unloading image data-0x9659b010 [0xb93d5940].
    -
    - -

    I am running VS2015 + Xamarin Forms 2.0 latest and greatest.

    - -

    What's going on here?

    -",HQ -"

    This works but seems inefficient:

    - -
    switch var1 {
    -case 1:
    -    string1 = ""hello""
    -case 2:
    -    string1 = ""there""
    -default:
    -    string1 = ""world""
    -}
    -
    - -

    but

    - -
    string1 = switch var1 { ...
    -
    - -

    throws an error. Is there a more efficient way to write the switch/case so that the assigned variable isn't listed redundantly in each line?

    - -

    Thanks in advance!

    -",HQ -"

    In tensorflow, I would like to rotate an image from a random angle, for data augmentation. But I don't find this transformation in the tf.image module.

    -",HQ -"

    I can't find a memory view in Jetbrain's clion IDE. -Does anybody know to show it (has clion this feature)?

    - -

    Meant is this: memory view in eclipse

    -",HQ -"

    I have created some pipelines for classification task and I want to check out what information is being present/stored at each stage (e.g. text_stats, ngram_tfidf). How could I do this.

    - -
    pipeline = Pipeline([
    -    ('features',FeatureUnion([
    -                ('text_stats', Pipeline([
    -                            ('length',TextStats()),
    -                            ('vect', DictVectorizer())
    -                        ])),
    -                ('ngram_tfidf',Pipeline([
    -                            ('count_vect', CountVectorizer(tokenizer=tokenize_bigram_stem,stop_words=stopwords)),
    -                            ('tfidf', TfidfTransformer())
    -                        ]))
    -            ])),   
    -    ('classifier',MultinomialNB(alpha=0.1))
    -])
    -
    -",HQ -"

    How can I pass an array to a component as a property. Neither of the following achieve what I am looking for. I want to pass the array of items through, manipulate them in the component and output in the render method.

    - -
    <List columns=['one', 'two', 'three', 'four'] /> // unexpected token
    -<List columns=""['one', 'two', 'three', 'four']"" /> // passed through as string not array
    -
    - -

    Is there a standard syntax or best practice for this kind of thing?

    -",HQ -"

    I'm trying to learn templates in C++ and I have the following code :

    - -
    #include <stack>
    -
    -template<typename T>
    -class   myClass : public std::stack<T>{
    -public:
    -    myClass(void);
    -    myClass(myClass const & src);
    -    virtual ~myClass(void);
    -    myClass &   operator=(myClass const & rhs);
    -};
    -
    -template<typename T>
    -myClass::myClass(void) : std::stack<T>(){
    -}
    -
    - -

    But I can't figure out why I get the following when I try to compile :

    - -
    test.cpp:17:1: error: 'myClass' is not a class, namespace, or enumeration
    -myClass::myClass(void) : std::stack<T>(){
    -^
    -test.cpp:8:9: note: 'myClass' declared here
    -class   myClass : public std::stack<T>{
    -        ^
    -1 error generated.
    -
    - -

    It looks like the definition of the function causes the error, but I don't know why I get this error, it looks OK to me (even if I guess it's not really OK), just a syntax error perhaps?..

    - -

    I compile with clang++ -Wall -Werror -Wextra -c.

    - -

    What could cause this error?

    -",HQ -"

    Docker 1.9 added named volumes, so I..

    - -
    docker volume create --name postgres-data
    -
    -docker volume ls 
    -
    - -

    and I get

    - -
    local               postgres-data
    -
    - -

    all good so far..

    - -

    so how do I see what is in the named volume? Is there a way to cd to it on the host system. Like I can for a mounted host directory?

    -",HQ -"

    I note that I can disable particular messages using a comment. For example, pylint by default complains about variable names of less than three letters. I can suppress that like this:

    - -
    # pylint: disable=invalid-name
    -def some_string_operation(s):  # (the same thing here would also work)
    -    return something(s)
    -
    - -

    But I cannot, for example, add s to the good-names list. This doesn't work:

    - -
    # pylint: good-names=s
    -def some_string_operation(s):
    -    return something(s)
    -
    - -

    So clearly not all options can be modified that way. Which ones can?

    -",HQ -"

    I would like to store an API key in a configuration file without checking it into source control, and read the data in my UWP app.

    - -

    A common solution is to store the key in .config file (such as app.config or web.config) and access it like so:

    - -
    var apiKey = ConfigurationManager.AppSettings.Get(""apiKey"");
    -
    - -

    I'm working on a Universal Windows (UWP) app and can't access the System.Configuration namespace that holds ConfigurationManager.

    - -

    How can I access AppSettings in UWP app? -Alternatively, what's the best way to access configuration data in an UWP app?

    -",HQ -"can any one clarify ""S_NO"" NUMBER(12,0) NOT NULL ENABLE PRIMARY KEY"" what it means the datatype S_NO"" NUMBER(12,0) - -Please clarify the each parameter",LQ -"

    I just can not find how to comment line in hamlet template. Is there some syntax for comments? Like

    - -
    -- <p>Some code should be ignored by template
    -
    - -

    or something?

    -",HQ -"I have to read in integers and the scanner has to continue to scan them in until 0 is entered. Then all of those numbers have to be saved to different variables. Then the variables have to be compared and the following has to occur: --Find the smallest integer --Find how many integers are even --Find the sum of the negative integers - -I have this so far: - - - public static void main (String[] args) - { - Scanner in = new Scanner(System.in); - System.out.println(""Enter integers""); - do - { - - } - while (in.nextInt() !=0); - } - -I am lost on what to do next.",LQ -"

    I'm getting a SyntaxError: An invalid or illegal string was specified, while trying to connect to a WebSocket on Firefox.

    - -
    <!doctype html>
    -<html>
    -  <head><meta charset=""utf-8""></head>
    -  <body>
    -    <script>
    -    var socket = new WebSocket('127.0.0.1:1234');
    -    </script>
    -  </body>
    -</html>
    -
    - -

    Why do I get this error?

    -",HQ -"i have a table od data, when i sent the a row of data to fields on a jquery dialog it fails to set the selected value of the `dropdown list` - -i have use this - - $('#ddlProducts').val(data.prodID); - -`data.prodID` has a value but it does not set it to the `value` of the `dropdown`. How do i fix this?",LQ -"I was studying core graphics recently and always see some of the code assign paperRect in CGRect variable, so I search around in internet and I dunno what is paperRect doing? Counld any one explain to me. Thanks you.",LQ -"

    If I touch a file tracked in a git repo, and run git diff-index HEAD, it will print output with M indicating the file has been modified. For example,

    - -
    $ touch foo
    -$ git diff-index HEAD
    -:100644 100644 257cc5642cb1a054f08cc83f2d943e56fd3ebe99 0000000000000000000000000000000000000000 M  foo
    -
    - -

    I am unsure if this makes sense or not, but that is not the question. The question is, why does the output change (to no diff) if I run git diff HEAD or git status?

    - -
    $ touch foo
    -$ git diff-index HEAD
    -:100644 100644 257cc5642cb1a054f08cc83f2d943e56fd3ebe99 0000000000000000000000000000000000000000 M  foo
    -$ git diff                  # no output
    -$ git diff-index HEAD       # no output
    -
    - -

    I would expect the result, whatever it is, to stay the same across commands that are not supposed to change anything.

    -",HQ -"I wanted to know why the output of this code is nothing? is it something related to the use of SIZE in for expression? - - - #include - int array[6] = {4, 5, 6, 10, -1, 0}; - #define SIZE (sizeof(array)/sizeof(array[0])) - int main() { - int i; - for (i= -1; i< SIZE; ++i) printf(""%d"", array[i+1]); - return 0; - }",LQ -"

    I have an app.js which is used to trigger two events when some POST data are received:

    - -
      -
    1. Insert POST data into a database
    2. -
    3. Send a message to a client using a WebSocket
    4. -
    - -

    Here is the app.js (only the important lines)

    - -
    var express = require('express');
    -var bodyParser = require('body-parser');
    -var server = require('./server');
    -
    -var app = express();
    -var port = process.env.PORT || 3000;
    -
    -app.post('/server', server);
    -
    -app.listen(port, function(){
    -  console.log('Slack bot listening');
    -});
    -
    - -

    And here is the server.js (only the important lines)

    - -
    var db = require('./DB');
    -var WebSocketServer = require('ws').Server;
    -
    -var insertData = function(req, res){
    -
    -    var wss = new WebSocketServer({server: server});
    -    console.log('WebSocketServer created');
    -    wss.on('connection', function(wss){
    -        wss.send(JSON.stringify('Socket open'));
    -    });
    -    wss.on('close', function(){
    -        console.log('WebServerSocket has been closed');
    -    });
    -};
    -
    -module.exports = insertData;
    -
    - -

    What I would like to achieve is to set the WebSocketServer in a way that it listen to the same port of the app. -I thought about passing the server var from app.js to server.js but

    - -
      -
    1. I think this a not an elegant way to do it
    2. -
    3. I don't know how to do it
    4. -
    - -

    What do you guys think?

    -",HQ -" There is two WEB applications based on two different servers. How I can pass data from the web form, which consist 5-10 fields (php web application) to Java application(Struts2, Spring2) in the most elegant and safe way. please give me suggestions",LQ -"

    I have a playbook that is running in different way in Ansible 1.9.x and 2.0. I would like to check currently running ansible version in my playbook to avoid someone running it with old one.

    - -

    I don't think that this is the best solution:

    - -
    - local_action: command ansible --version
    -  register: version
    -
    - -

    What would you suggest?

    -",HQ -"I have this conditions - - if (txtBoxFatherHusbandName.Text != """" || txtBoxName.Text != """" || txtBoxNICNo.Text != """") - { - ShowMsgBox(""Please first Save/Update the data being entered in mandatory fields""); - - txtBoxFatherHusbandName.Focus(); - - return; - } - -all three textboxes are empty with no text in it but still the conditions is getting executed. why ?",LQ -"

    What are the possible ways of specifying version ranges in gradle dependencies? I saw some 1.+ notation but I have not found a document which really says what is possible and what is not. Furthermore, I do not know whether the Maven ranges can be used as well.

    - -

    Can somebody give me a short overview so that I can understand the rules?

    -",HQ -"I need to write a metod that goes over a sorted singly linked list and returns -the numer that appears the most times but goes over the list only one time - -can someone point me in the right direction? -can't find an elegent solution yet, should i use recursion? -I want the code to be as efficient as possible - -thanks in advance",LQ -"

    I would like to create a constructor, which is similar to the int array constructor: int foo[3] = { 4, 5, 6 };

    - -

    But I would like to use it like this:

    - -
    MyClass<3> foo = { 4, 5, 6 };
    -
    - -

    There is a private n size array in my class:

    - -
    template<const int n=2>
    -class MyClass {
    -
    -    public:
    -
    -        // code...
    -
    -    private:
    -
    -        int numbers[n];
    -
    -        // code...
    -
    -};
    -
    -",HQ -"

    I just downloaded the source code for Bootstrap 4 alpha 2 and can't find the class img-responsive in it. It exists in Bootstrap 3 source code and I can find it with Notepad++ but in Bootstrap 4s bootstrap.css in dist folder it doesn't exist.

    - -

    What happend to it??

    -",HQ -"

    I am building a simple Guard API to protect against illegal parameters being passed to functions and so on.

    - -

    I have the following code:

    - -
    public static class Guard
    -{
    -    public static GuardArgument<T> Ensure<T>(T value, string argumentName)
    -    {
    -        return new GuardArgument<T>(value, argumentName);
    -    }
    -}
    -
    -public class GuardArgument<T>
    -{
    -    public GuardArgument(T value, string argumentName)
    -    {
    -        Value = value;
    -        Name = Name;
    -    }
    -
    -    public T Value { get; private set; }
    -    public string Name { get; private set; }
    -}
    -
    -// Example extension for validity checks
    -public static GuardArgument<T> IsNotNull<T>(this GuardArgument<T> guardArgument, string errorMessage)
    -{
    -    if (guardArgument.Value == null)
    -    {
    -        throw new ArgumentNullException(guardArgument.Name, errorMessage);
    -    }
    -
    -    return guardArgument;
    -}     
    -
    - -

    At the moment the code can be used in a similar way to (note this is just a dumb example):

    - -
    void DummyMethod(int? someObject) {
    -
    -    Guard.Ensure(someObject, ""someObject"")
    -       .IsNotNull()
    -       .IsGreaterThan(0)
    -       .IsLessThan(10);
    -}
    -
    - -

    This all works fine. What I want to be able to do now is extend the API to include child properties in the checks in the following way:

    - -
    Guard.Ensure(someObject, ""someObject"")
    -    .IsNotNull()
    -    .Property(
    -        (x => x.ChildProp1, ""childProp1"")
    -           .IsNotNull()
    -           .IsGreaterThan(10)
    -     )
    -     .Property(
    -        (x => x.ChildProp2, ""childProp2"")
    -           .IsNotNull()
    -           .IsLessThan(10)
    -     );
    -
    - -

    Obviously the new .Property method needs to return the parent GuardArgument in order to chain. Furthermore the child property needs to be able to use the existing check methods (IsNotNull() etc) to avoid code duplication.

    - -

    I cannot work out how to construct the lambda/Property function parameters or where the .Property method should be located - i.e. should it be a property on the GuardArgument or somewhere else, or even if there is a better structure to the API.

    -",HQ -"

    In our web application we have a search form which contains a field for which a user can select one or more answers from a list of possible options. We currently use the ""select"" html element with the ""multiple"" attribute set as in the example below:

    - -

    -
    -
    select {
    -  width: 150px;
    -}
    -
    <select multiple>
    -  <option value=""A"">Alice</option>
    -  <option value=""B"">Bob</option>
    -  <option value=""F"">Fred</option>
    -  <option value=""K"">Kevin</option>
    -  <option value=""M"">Mary</option>
    -  <option value=""S"">Susan</option>
    -</select>
    -
    -
    -

    - -

    Feedback from user testing has shown that this solution is confusing for users. Multiple selection/deselection is performed by holding down the Ctrl key (on windows), however many users were unaware of this.

    - -

    The element also does not seem to allow for easy use when using just a keyboard - this is obviously an accessibility issue.

    - -

    Is there a ""best practice"", accessible way of displaying an input with multiple options to a user?

    -",HQ -"

    I have implemented the IabHelper class in my android project and it says that the 'getBuyIntentToReplaceSkus' cannot be resolved. The full method:

    - -
    buyIntentBundle = mService.getBuyIntentToReplaceSkus(5,
    -mContext.getPackageName(),oldSkus, sku, itemType, extraData);
    -
    - -

    I implemented in app billing in my project but I have not yet created any items to be purchased, though the rest of the methods don't have any problems.

    -",HQ -"

    I am using UIStackView to layout UILabels in my UICollectionViewCell subclass. I'm using the iOS SDK 9.2

    - -

    The scrolling of the collection view is smooth if I don't update the labels' text when I dequeue them. However, if I update their text as I dequeue them, the scrolling is very slow.

    - -

    I made a very small demo to show the problem, to be ran on a device (not the simulator). You can create a new empty project and replace the contents of ViewController.swift with this:

    - -
    import UIKit
    -
    -class ViewController: UIViewController {
    -
    -    override func loadView() {
    -        view = UIView()
    -
    -        let layout = UICollectionViewFlowLayout()
    -        layout.itemSize = CGSize(width: 100, height: 200)
    -        let collectionView = UICollectionView(frame: CGRectZero, collectionViewLayout: layout)
    -        collectionView.registerClass(Cell.self, forCellWithReuseIdentifier: ""Cell"")
    -        collectionView.translatesAutoresizingMaskIntoConstraints = false
    -        collectionView.dataSource = self
    -        view.addSubview(collectionView)
    -
    -        let constraints = [""H:|-[collectionView]-|"",
    -            ""V:|[collectionView]|""
    -        ].flatMap { NSLayoutConstraint.constraintsWithVisualFormat($0, options: [], metrics: nil, views: [""collectionView"": collectionView])
    -        }
    -        NSLayoutConstraint.activateConstraints(constraints)
    -
    -    }
    -}
    -
    -extension ViewController: UICollectionViewDataSource {
    -    func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
    -        let cell = collectionView.dequeueReusableCellWithReuseIdentifier(""Cell"", forIndexPath: indexPath) as! Cell
    -
    -        //comment out the line below to make the scrolling smoother: 
    -        cell.fillLabels()
    -
    -        return cell
    -    }
    -    func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    -        return 100
    -    }
    -}
    -
    -class Cell: UICollectionViewCell {
    -
    -    var labelArray = [UILabel]()
    -
    -    func fillLabels() {
    -        for label in labelArray {
    -            label.text = ""\(label.text!) yo""
    -        }
    -    }
    -
    -    override init(frame: CGRect) {
    -        super.init(frame: frame)
    -
    -        contentView.backgroundColor = UIColor.whiteColor()
    -
    -        let stackView = UIStackView()
    -        stackView.axis = .Horizontal
    -        stackView.alignment = .Leading
    -        stackView.distribution = .EqualSpacing
    -        stackView.translatesAutoresizingMaskIntoConstraints = false
    -        contentView.addSubview(stackView)
    -
    -        let leftStack = UIStackView()
    -        leftStack.axis = .Vertical
    -
    -        let rightStack = UIStackView()
    -        rightStack.axis = .Vertical
    -
    -        stackView.addArrangedSubview(leftStack)
    -        stackView.addArrangedSubview(rightStack)
    -
    -        for index in 0...10 {
    -            let leftLabel = UILabel()
    -            leftLabel.text = ""\(index)""
    -            leftStack.addArrangedSubview(leftLabel)
    -
    -            labelArray.append(leftLabel)
    -
    -            let rightLabel = UILabel()
    -            rightLabel.text = ""\(index)""
    -            rightStack.addArrangedSubview(rightLabel)
    -
    -            labelArray.append(rightLabel)
    -        }
    -
    -
    -        let constraints = [
    -            ""H:|[stackView]|"",
    -            ""V:|[stackView]|""
    -            ].flatMap {
    -                NSLayoutConstraint.constraintsWithVisualFormat($0, options: [], metrics: nil, views: [""stackView"": stackView])
    -        }
    -
    -        NSLayoutConstraint.activateConstraints(constraints)
    -
    -    }
    -
    -    required init?(coder aDecoder: NSCoder) {
    -        fatalError(""init(coder:) has not been implemented"")
    -    }
    -}
    -
    - -

    You'll notice the scrolling is smooth when you comment out the call to fillLabels.

    - -

    If you try to reproduce the same layout without UIStackViews and include the call fillLabels, you'll notice the scrolling is smooth too.

    - -

    This suggests UIStackView suffers performance bottlenecks if it has recalculate its layout.

    - -

    Is this hypothesis correct? Are there some solutions?

    -",HQ -"

    I'm working on a program written in C that I occasionally build with address sanitizer, basically to catch bugs. The program prints a banner in the logs when it starts up with info such as: who built it, the branch it was built on, compiler etc. I was thinking it would be nice to also spell out if the binary was built using address sanitizer. I know there's __has_feature(address_sanitizer), but that only works for clang. I tried the following simple program:

    - -
    #include <stdio.h>
    -
    -int main()
    -{
    -#if defined(__has_feature)
    -# if __has_feature(address_sanitizer)
    -    printf (""We has ASAN!\n"");
    -# else
    -    printf (""We have has_feature, no ASAN!\n"");
    -# endif
    -#else
    -    printf (""We got nothing!\n"");
    -#endif
    -
    -    return 0;
    -}
    -
    - -

    When building with gcc -Wall -g -fsanitize=address -o asan asan.c, this yields:

    - -
    We got nothing!
    -
    - -

    With clang -Wall -g -fsanitize=address -o asan asan.c I get:

    - -
    We has ASAN!
    -
    - -

    Is there a gcc equivalent to __has_feature?

    - -

    I know there are ways to check, like the huge VSZ value for programs built with address sanitizer, just wondering if there's a compile-time define or something.

    -",HQ -"

    I am getting this error when I Run or Debug the app but when I build or clean my project there are no errors. It sounds strange but I've wasted my 4-5 hours searching for this but nothing was helpful. -Error:

    - -
    Error:Execution failed for task ':app:compileDebugJavaWithJavac'.> java.io.FileNotFoundException: C:\Users\Saeed Jassani\Downloads\AppName\app\build\intermediates\exploded-aar\com.google.android.gms\play-services\8.4.0\jars\classes.jar (The system cannot find the path specified)
    -
    - -

    build.gradle file:

    - -
    apply plugin: 'com.android.application'
    -
    -android {
    -compileSdkVersion 23
    -buildToolsVersion ""23.0.2""
    -defaultConfig {
    -    applicationId ""com.example.app""
    -    minSdkVersion 9
    -    targetSdkVersion 23
    -    versionCode 1
    -    versionName ""1.0""
    -}
    -buildTypes {
    -    release {
    -        minifyEnabled false
    -        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    -    }
    -}
    -}
    -dependencies {
    -compile fileTree(dir: 'libs', include: ['*.jar'])
    -testCompile 'junit:junit:4.12'
    -compile 'com.android.support:appcompat-v7:23.1.1'
    -compile 'com.android.support:recyclerview-v7:23.1.1'
    -compile 'com.android.support:design:23.1.1'
    -compile 'com.google.android.gms:play-services:8.4.0'
    -compile 'com.android.support:support-v4:23.1.1'
    -}
    -
    -",HQ -"

    Trying to come up with a LINQy way to do this, but nothing's coming to me.

    - -

    I have a List<> of objects which include a property which is a comma-separated list of alpha codes:

    - -
    lst[0].codes = ""AA,BB,DD""
    -lst[1].codes = ""AA,DD,EE""
    -lst[2].codes = ""GG,JJ""
    -
    - -

    I'd like a list of those codes, hopefully in the form of a List of strings:

    - -
    result = AA,BB,DD,EE,GG,JJ
    -
    - -

    Thanks for any direction.

    -",HQ -"

    As I've been using

    - -
    classpath 'com.android.tools.build:gradle:+'
    -
    - -

    In the build.gradle file, I got the following error since gradle version 2.10 has been released. -The error is :

    - -
    -

    Warning:Gradle version 2.10 is required. Current version is 2.8. If - using the gradle wrapper, try editing the distributionUrl in - C:\Users\blahblah\myproject\gradle\wrapper\gradle-wrapper.properties - to gradle-2.10-all.zip

    -
    - -

    at first it looks easy to solve by the guide, but when I'd done the change, I got the error again.

    - -

    I'm using Android Studio 2.0 with the latest Android SDK Tools 24.4.1 and Android SDK Build Tools 23.0.2

    - -

    I've even tried to download Gradle 2.10 and put it manually on android-studio\gradle\ folder, but no luck.

    - -

    Any help would be appreciated.

    -",HQ -"

    My Jenkins box needs to access Stash and Jira through their REST apis. For that I need to store their credentials.

    - -

    The way I am doing is via the Credentials Parameter, which asks me for a Name, Credential type, Required, Default Value, and a Description.

    - -

    I define a Name as CREDENTIAL_PARAMETER, in the type I set it as ""Username with password"", and then I pick one credential from the list in the Default Value.

    - -

    Next in the Build section I define that a shell should be executed, which is something like

    - -
    echo $CREDENTIAL_PARAMETER
    -
    - -

    I was expecting to get something like ""username:password"" as the CREDENTIAL_PARAMETER. However, I get a hash that I think is how the username and password can be retrieved.

    - -

    How can I get the credentials based on the hash using bash?

    -",HQ -"

    In the Universal Links section of the iOS App Search Programming Guide, Apple says:

    - -
    -

    If you instantiate a SFSafariViewController, WKWebView, or UIWebView - object to handle a universal link, iOS opens your website in Safari - instead of opening your app. However, if the user taps a universal - link from within an embedded SFSafariViewController, WKWebView, or - UIWebView object, iOS opens your app.

    -
    - -

    What does ""handle a universal link"" mean? Can I not ever open the given URL with an SFSafariViewController, WKWebView, or UIWebView? Does it only apply during -[UIApplicationDelegate application:continueUserActivity:restorationHandler:], or is there a timeout in place? Does this mean we can't ever open the URL in a SFSafariViewController, WKWebView, or UIWebView?

    -",HQ -"

    I'd like to setup a solid e2e testing foundation on our team's project but I can't find a simple solution to that question :

    - -

    When you are mocking all of your calls, what is the best way to detect if the actual model of the objects returned by your server has been modified ?

    - -

    Your tests would still pass because they're testing an outdated version of the model but the app is potentially broken.

    - -

    For example, if a mock assumes that /api/users/1 returns null if the user doesn't exist, when it actually returns an empty object, then although the tests may pass, the behaviour being tested relies on incorrect assumptions and may therefore fail in unexpected ways.

    - -

    Or maybe the backend is somehow providing static json files with the latest up-to-date model and the frontend relies on this ?

    - -

    This of course supposes that the people working on the backend and the people working on the frontend are separate teams.

    - -

    I am using Angular 1.x and Protractor here but this doesn't really depend on the technology.

    -",HQ -"

    Given a method such as

    - -
    public async Task<Task> ActionAsync()
    -{
    -    ...
    -}
    -
    - -

    What is the difference between

    - -
    await await ActionAsync();
    -
    - -

    and

    - -
    await ActionAsync().Unwrap();
    -
    - -

    if any.

    -",HQ -"I have an sp which when triggered, data will be inserted into the data. if the data being inserted is already present oin the table, I don't want the data to be inserted into the table. is there anyway i could use a logic to restrict the data into table. - -my query is - - declare @ident int = IDENT_CURRENT( 'SADEV.RO_Transcript.ETQueueCtrl' ) - - insert into SADEV.RO_Transcript.ETQueueCtrl ([STU_ID],[STU_ORD_SEQ_NUM],[CreatedDate],[LastUpdatedDate],[ETQueueCtrlStatusCd],[ErrorFl]) - select STU_ID - ,STU_ORD_SEQ_NUM - ,getdate() - ,getdate() - ,[ETQueueCtrlStatusCd] = 'N' - ,'N' - - from srdb_sr2_qa.dbo.SR0ROT rt - where STU_ORD_TYP_CD = 'A' - and ORD_DLVY_MTHD_CD = 'ET' - and STU_ORD_STAT_CD = 'C' - - --and convert(varchar(1),STU_ORD_XPDT_FL) = @stu_ord_xpdt_fl - and case when @stu_ord_xpdt_fl = 'y' then GETDATE() - else case when ORD_PEND_INST_CD = '' then STU_ORD_SBM_DT+ DATEADD (mi,480,STU_ORD_SBM_TM) - else LAST_UPD_DT+ DATEADD (mi,480,LAST_UPD_TM) - end - end <= GETDATE() - - select et.ETQueueCtrlID, - ro.STU_ID, - ro.STU_ORD_SEQ_NUM, - ty.CAREER_CD, - ty.CAREER_SUFX_CD - - - from SADEV.RO_Transcript.ETQueueCtrl et join srdb_sr2_qa.dbo.SR0ROT ro on et.STU_ID = ro.STU_ID - and et.STU_ORD_SEQ_NUM = ro.STU_ORD_SEQ_NUM - left join srdb_sr2_qa.dbo.SR0TYT ty on ro.STU_ID = ty.STU_ID - where et.ETQueueCtrlID > @ident",LQ -"

    We are building a package in R for our service (a robo-advisor here in Brazil) and we send requests all the time to our external API inside our functions.

    - -

    As it is the first time we build a package we have some questions. :(

    - -

    When we will use our package to run some scripts we will need some information as api_path, login, password.

    - -

    How do we place this information inside our package?

    - -

    Here is a real example:

    - -
    get_asset_daily <- function(asset_id) {
    -    api_path <- ""https://api.verios.com.br""
    -
    -    url <- paste0(api_path, ""/assets/"", asset_id, ""/dailies?asc=d"")
    -    data <- fromJSON(url)
    -    data
    -}
    -
    - -

    Sometimes we use a staging version of the API and we have to constantly switch paths. How we should call it inside our function?

    - -

    Should we set a global environment variable, a package environment variable, just define api_path in our scripts or a package config file?

    - -

    How do we do that?

    - -

    Thanks for your help in advance.

    - -

    Ana

    -",HQ -"

    I have a RDD and I want to convert it to pandas dataframe. I know that to convert and RDD to a normal dataframe we can do

    - -
    df = rdd1.toDF()
    -
    - -

    But I want to convert the RDD to pandas dataframe and not a normal dataframe. How can I do it?

    -",HQ -"I am having trouble figuring out how to adjust this script to use the Middle Mouse Button instead of Left. The script currently uses OnMouseDown, OnMouseUp, and OnMouseDrag. I need those to be middle mouse instead. (mouse button 3) - -I appreciate any help, as I am new to coding. Everything I have tried so far has broken the script in one way or another. - -Thank you very much for your time. - - - using UnityEngine; - using System.Collections; - - public class FPH_DoorObject_Drag : MonoBehaviour { - - /* - * This script is for doors which can be opened dragging on the screen - */ - - public float factor = 2.0f; // How fast will be the movement - public float minRot = 0.0f; - public float maxRot = 90.0f; - - - public string[] observeKind = new string[] {""Normal"", ""Closeup""}; - public int observeInt = 0; // this variable is used inside of the Editor script - - public float secToOserve = 1.3f; // After this amount of seconds the text will reset - - public GameObject inGameCamera; - public GameObject closeupCamera; - - public bool removeItemWhenUsed; - public string hasBeenUnlockedKey; - - public bool canBeObserved; - public AudioClip lockedSound; - - public string observMessage_English; - public string observMessage_Italian; - public string observMessage_Spanish; - public string observMessage_German; - public string observMessage_French; - public string observMessage_Japanese; - public string observMessage_Chinese; - public string observMessage_Russian; - - public string lockedMessage_English; - public string lockedMessage_Italian; - public string lockedMessage_Spanish; - public string lockedMessage_German; - public string lockedMessage_French; - public string lockedMessage_Japanese; - public string lockedMessage_Chinese; - public string lockedMessage_Russian; - - public string wrongItemMessage_English; - public string wrongItemMessage_Italian; - public string wrongItemMessage_Spanish; - public string wrongItemMessage_German; - public string wrongItemMessage_French; - public string wrongItemMessage_Japanese; - public string wrongItemMessage_Chinese; - public string wrongItemMessage_Russian; - - - public int doorType = 0; - /* - * A dor can be: - * "" Normally Open "" - The door is always open - * "" Locked "" - The door is always locked and CAN'T be opened - * "" Need Equipped Object "" - The door is locked but can be opened if the player equip an object - * "" Need Activated Key "" - The door is locked but can be opened if a PlayerPres key is "" 1 "" which means true - */ - public string[] doorTypeArray = new string[] {""Normally Open"", ""Locked"", ""Need Equipped Object"", ""Need Activated Key""}; - public string neededObject_Name; - public string neededKey; - - - private Vector3 startRot; - private float startPlayerRot; - private float currRot; - private float playerRot; - private float delta = 0; - private Transform playerTransform; - private bool canbeOpen; - public float openDirection; - private bool hasBeenUnlocked; - - - void Start(){ - openDirection = -1.0f; - - playerTransform = GameObject.FindWithTag(""Player"").transform; - startRot = this.gameObject.GetComponent().eulerAngles; - delta = 0; - - hasBeenUnlocked = FPH_ControlManager.LoadBool(hasBeenUnlockedKey); - if(hasBeenUnlocked){ - doorType = 0; - } - } - - void Update(){ - if(doorType == 0){ - canbeOpen = true; - } - if(doorType == 1){ - canbeOpen = false; - } - if(doorType == 2){ - if(FPH_InventoryManager.equippedItem != neededObject_Name && FPH_InventoryManager.equippedItem != """" && FPH_InventoryManager.equippedItem != "" ""){ - canbeOpen = false; - } - if(FPH_InventoryManager.equippedItem == """" || FPH_InventoryManager.equippedItem == "" ""){ - canbeOpen = false; - } - if(FPH_InventoryManager.equippedItem == neededObject_Name){ - canbeOpen = true; - } - } - if(doorType == 3){ - bool boolValue = FPH_ControlManager.LoadBool(neededKey); - if(boolValue){ - canbeOpen = true; - } - else{ - canbeOpen = false; - } - } - } - - public void OnMouseDown(){ - if(canbeOpen){ - startPlayerRot = playerTransform.eulerAngles.y; - } - } - - public void OnMouseUp(){ - if(doorType == 1){ - StartCoroutine(""PrivateLocked""); - } - if(doorType == 2){ - if(FPH_InventoryManager.equippedItem != neededObject_Name && FPH_InventoryManager.equippedItem != """" && FPH_InventoryManager.equippedItem != "" ""){ - StartCoroutine(""PrivateWrongItem""); - } - if(FPH_InventoryManager.equippedItem == """" || FPH_InventoryManager.equippedItem == "" ""){ - StartCoroutine(""PrivateLocked""); - } - } - if(doorType == 3 && !canbeOpen){ - StartCoroutine(""PrivateLocked""); - } - - if(canbeOpen){ - startRot.y = currRot; - delta = 0; - - if(FPH_InventoryManager.equippedItem == neededObject_Name && !hasBeenUnlocked){ - hasBeenUnlocked = true; - FPH_ControlManager.SaveBool(hasBeenUnlockedKey, hasBeenUnlocked); - doorType = 0; - - //Afte we used the item we unequip it - FPH_InventoryManager.equippedItem = """"; - FPH_InventoryManager.equippedItem_Index = -1; - if(removeItemWhenUsed){ - FPH_InventoryManager.RemoveInventoryItem(FPH_InventoryManager.equippedItem_Index); - FPH_InventoryManager.SaveInventory(); - } - } - } - } - - void OnMouseDrag(){ - if(canbeOpen){ - playerRot = playerTransform.eulerAngles.y; - delta = (playerRot - startPlayerRot) * openDirection; // openDirection si important or player rotation will be the inverse of door rot - currRot = (startRot.y + (delta * factor)); - currRot = Mathf.Clamp(currRot, minRot, maxRot); // door rotation can't be bigger or smaller than min and max rot - transform.eulerAngles = new Vector3(startRot.x, currRot, startRot.z); - - if(FPH_InventoryManager.equippedItem == neededObject_Name && !hasBeenUnlocked){ - hasBeenUnlocked = true; - FPH_ControlManager.SaveBool(hasBeenUnlockedKey, hasBeenUnlocked); - doorType = 0; - - //Afte we used the item we unequip it - FPH_InventoryManager.equippedItem = """"; - FPH_InventoryManager.equippedItem_Index = -1; - if(removeItemWhenUsed){ - FPH_InventoryManager.RemoveInventoryItem(FPH_InventoryManager.equippedItem_Index); - FPH_InventoryManager.SaveInventory(); - } - } - } - } - - public void Observe(){ - if(observeInt == 0){ - StartCoroutine(""PrivateObserve_Normal""); - } - if(observeInt == 1){ - StartCoroutine(""PrivateObserve_Closeup""); - } - } - - IEnumerator PrivateLocked(){ - FPH_LanguageManager.static_observeTextMesh.text = """"; - if(lockedSound){ - GetComponent().PlayOneShot(lockedSound); - } - - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.English){ - FPH_LanguageManager.static_observeTextMesh.text = lockedMessage_English; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Italian){ - FPH_LanguageManager.static_observeTextMesh.text = lockedMessage_Italian; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Spanish){ - FPH_LanguageManager.static_observeTextMesh.text = lockedMessage_Spanish; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.German){ - FPH_LanguageManager.static_observeTextMesh.text = lockedMessage_German; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.French){ - FPH_LanguageManager.static_observeTextMesh.text = lockedMessage_French; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Japanese){ - FPH_LanguageManager.static_observeTextMesh.text = lockedMessage_Japanese; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Chinese){ - FPH_LanguageManager.static_observeTextMesh.text = lockedMessage_Chinese; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Russian){ - FPH_LanguageManager.static_observeTextMesh.text = lockedMessage_Russian; - } - - yield return new WaitForSeconds(secToOserve); - - FPH_LanguageManager.static_observeTextMesh.text = """"; - } - - IEnumerator PrivateWrongItem(){ - FPH_LanguageManager.static_observeTextMesh.text = """"; - if(lockedSound){ - GetComponent().PlayOneShot(lockedSound); - } - - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.English){ - FPH_LanguageManager.static_observeTextMesh.text = wrongItemMessage_English; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Italian){ - FPH_LanguageManager.static_observeTextMesh.text = wrongItemMessage_Italian; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Spanish){ - FPH_LanguageManager.static_observeTextMesh.text = wrongItemMessage_Spanish; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.German){ - FPH_LanguageManager.static_observeTextMesh.text = wrongItemMessage_German; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.French){ - FPH_LanguageManager.static_observeTextMesh.text = wrongItemMessage_French; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Japanese){ - FPH_LanguageManager.static_observeTextMesh.text = wrongItemMessage_Japanese; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Chinese){ - FPH_LanguageManager.static_observeTextMesh.text = wrongItemMessage_Chinese; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Russian){ - FPH_LanguageManager.static_observeTextMesh.text = wrongItemMessage_Russian; - } - - yield return new WaitForSeconds(secToOserve); - - FPH_LanguageManager.static_observeTextMesh.text = """"; - } - - IEnumerator PrivateObserve_Normal(){ - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.English){ // If language is .... - FPH_LanguageManager.static_observeTextMesh.text = observMessage_English; // Set this thext - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Italian){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Italian; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Spanish){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Spanish; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.German){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_German; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.French){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_French; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Japanese){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Japanese; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Chinese){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Chinese; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Russian){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Russian; - } - - yield return new WaitForSeconds(secToOserve); // After "" secToOserve "" ... - - FPH_LanguageManager.static_observeTextMesh.text = """"; // Reset the text - } - - /* - * We toggle the cameras and show a text, everything will be reset - * after "" secToOserve "" - */ - IEnumerator PrivateObserve_Closeup(){ - inGameCamera.SetActive(false); - closeupCamera.SetActive(true); - FPH_ControlManager.canBeControlled = false; - - yield return new WaitForSeconds(0.1f); - - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.English){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_English; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Italian){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Italian; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Spanish){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Spanish; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.German){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_German; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.French){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_French; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Japanese){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Japanese; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Chinese){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Chinese; - } - if(FPH_LanguageManager.gameLanguage == FPH_LanguageManager.LanguagesEnum.Russian){ - FPH_LanguageManager.static_observeTextMesh.text = observMessage_Russian; - } - - yield return new WaitForSeconds(secToOserve); - - FPH_LanguageManager.static_observeTextMesh.text = """"; - - yield return new WaitForSeconds(0.3f); - - inGameCamera.SetActive(true); - closeupCamera.SetActive(false); - FPH_ControlManager.canBeControlled = true; - } - }",LQ -"

    What would be a good way to compare two Stream instances in Java 8 and find out whether they have the same elements, specifically for purposes of unit testing?

    - -

    What I've got now is:

    - -
    @Test
    -void testSomething() {
    -  Stream<Integer> expected;
    -  Stream<Integer> thingUnderTest;
    -  // (...)
    -  Assert.assertArrayEquals(expected.toArray(), thingUnderTest.toArray());
    -}
    -
    - -

    or alternatively:

    - -
    Assert.assertEquals(
    -    expected.collect(Collectors.toList()),
    -    thingUnderTest.collect(Collectors.toList()));
    -
    - -

    But that means I'm constructing two collections and discarding them. It's not a performance issue, given the size of my test streams, but I'm wondering whether there's a canonical way to compare two streams.

    -",HQ -"

    I have a variable called LangDataService.isDataReady that is a Promise wawiting to be resolved. Upon resolve some logic will happen. How can I pass this into that Promise?

    - -
    LangDataService.isDataReady.then(function () {
    -    this.modalOn()
    -});
    -
    - -

    I know i can cache var self_ = this; but I'm curious of other alternatives?

    -",HQ -"

    I have an excel file with 1 column and multiple rows.

    - -

    The rows contain various text, here's an example:

    - -
    texts are home
    -texts are whatever
    -dafds
    -dgretwer
    -werweerqwr
    -texts are 21412
    -texts are 346345
    -texts are rwefdg
    -terfesfasd
    -rwerw
    -
    - -

    I want to replace ""texts are *"" where * is anything after ""texts are"" with a specific word, for example ""texts are replaced"". How can I do that in Excel?

    -",HQ -"

    Given this heat map:

    - -
    import numpy as np; np.random.seed(0)
    -import seaborn as sns; sns.set()
    -uniform_data = np.random.rand(10, 12)
    -ax = sns.heatmap(uniform_data)
    -
    - -

    How would I go about making the color bar values display in percent format? -Also, what if I just wanted to show the first and last values on the color bar?

    - -

    Thanks in advance!

    -",HQ -"

    In gitlab-ci there's an option in the .gitlab-ci.yml file to execute commands before any of the actual script runs, called before_script. .gitlab-ci.yml examples illustrate installing ancillary programs here. However, what I've noticed is that these changes are not cached in Docker when using a docker executor. I had naively assumed that after running these commands, docker would cache the image, so for the next run or test, docker would just load the cached image produced after before_script. This would drastically speed up builds.

    - -

    As an example, my .gitlab-ci.yml looks a little like:

    - -
    image: ubuntu
    -
    -before_script:
    -    - apt-get update -qq && apt-get install -yqq make ...
    -
    -build:
    -    script:
    -        - cd project && make
    -
    - -

    A possible solution is to go to the runner machine and create a docker image that can build my software without any other installation and then reference it in the image section of the yaml file. The downside of this is that whenever I want to add a dependency, I need to log in to the runner machine and update the image before builds will succeed. It would be much nicer if I just had to add the dependency to to the end of apt-get install and have docker / gitlab-ci handle the appropriate caching.

    - -

    There is also a cache command in .gitlab-ci.yml, which I tried setting to untracked: true, which I thought would cache everything that wasn't a byproduct of my project, but it didn't seem to have any effect.

    - -

    Is there any way to get the behavior I desire?

    -",HQ -"

    I am using Grunt as my Build Tool and ESLint as my linting tool for an app I am working on. I am also using the Underscore Node package, and have made use of it in my app. Unfortunately, when I run ESLint on my code, it thinks that _ is an undefined variable in the following line:

    - -

    return _.pluck(objects, nameColumn);

    - -

    This is the error it is giving me:

    - -

    78:21 error ""_"" is not defined no-undef

    - -

    I would prefer not to disable the no-undef rule for ESLint, and I have tried installing the Underscore plugin, but I am still receiving this error. If anyone else has any ideas for what to try with this, I would be very appreciative!

    - -

    If there is any further information I can give that would help anyone with helping me get this figured out, just let me know!

    -",HQ -"

    git clone writes its output to stderr as documented here. I can redirect this with the following command:

    - -
    git clone https://myrepo c:\repo 2>&1
    -
    - -

    But this will redirect all output, including errors, from stderrto stdout. Is there a way to redirect progress messages to stdout but have error messages still written to stderr.

    -",HQ -"

    I have 3 general questions about redux and isomorphic application:

    - -
      -
    • What is the best way to share 'runtime' data between client and server? -For instance, when the user logged in a distant API, I store the session object in cookies. In that way, next time the client requests my front-end, the front-end server can read the cookies and initialize the redux store with it's previous session. The downside of this is that the client HAS to validate/invalidate the session on boot (eg in componentDidMount of the root component). -Should I request the session server side rather than read it from cookies?
    • -
    • Where should I execute the operation of cookie storing, in action creators or in reducers? Should I store the cookie in my reducer that handle the user session?
    • -
    • Where should I execute the operation of redirect the user (via react-router)? I mean when my user is successfully logged in, from where should I dispatch the redirect action (from the loginActionCreator once the login promise is resolved?, somewhere else? )
    • -
    - -

    Thanks in advance.

    -",HQ -"

    With Visual Studio 2015, in a new, empty C++ project, build the following for Console application:

    - -
    int main() {
    -    return 0;
    -}
    -
    - -

    Set a break point on the return and launch the program in the debugger. On Windows 7, as of the break point, this program has only one thread. But on Windows 10, it has five(!) threads: the main thread and four ""worker threads"" waiting on a synchronization object.

    - -

    Who's starting up the thread pool (or how do I find out)?

    -",HQ -"

    here is a simple connection to use express session store, it keeps banging out this error even though the text is right from the book. I am pretty sure is has something to do with 'new MongoStore' object initialization.

    - -
    var express = require('express'),
    -    expressSession = require('express-session');
    -
    -var MongoStore = require('connect-mongo/es5')(expressSession);
    -var sessionStore = new MongoStore({
    -  host: '127.0.0.1',
    -  port: '27017',
    -  db: 'session'
    -});
    -
    -var app = express()
    -    .use(expressSession({
    -      secret: 'my secret sign key',
    -      store: sessionStore
    -     }))
    -    .use('/home', function (req, res) {
    -      if (req.session.views) {
    -        req.session.views++;
    -      }
    -      else {
    -        req.session.views = 1;
    -      }
    -      res.end('Total views for you:' + req.session.views);
    -    })
    -    .use('/reset', function(req, res) {
    -      delete req.session.views;
    -      res.end('Cleared all your views');
    -    })
    -    .listen(3000);
    -
    -",HQ -"I have this query below from access and I need to convert it into sql server: - -UPDATE (CASE_INFO INNER JOIN CASE_PRICE ON CASE_INFO.CASE_TYPE = CASE_PRICE.CASE_TYPE) INNER JOIN [CASECHANGE|INPUT] ON CASE_INFO.CASE_NUMBER = [CASECHANGE|INPUT].CASE_NUMBER SET CASE_INFO.FF_REVENUE_AMT = [FF_Payment], CASE_INFO.CM_REVENUE_AMT = [CM_Payment] -WHERE (((CASE_INFO.SCHEDULED_DATE) Between [CASE_PRICE].[POP_START] And [CASE_PRICE].[POP_END]) AND ((CASE_INFO.DISCONTINUE_30)=No)); -",LQ -"Everyone.My English is not good.. - -+ (nullable UIImage *)imageNamed:(NSString *)name; - -I use this method. - ---------------------------------------------------------------- -e.g `UIImage *image=[UIImage imageNamed:@""test""];` ---------------------------------------------------------------- - -But my image's type is png. - -[enter image description here][1] - -In my project,loads a lot of different images. - - -So,My cashe is very hight - - -[enter image description here][2] - - -Please help me,thanks! - - - [1]: http://i.stack.imgur.com/M2SAI.png - [2]: http://i.stack.imgur.com/mCNpx.png",LQ -"

    I currently have a bool.xml file in android which looks like this:

    - -
       <?xml version=""1.0"" encoding=""utf-8""?>
    -<resources>
    -<bool name=""showAds"">true</bool>
    -    </resources>
    -
    - -

    Now i have a layout.xml file which uses databinding. I want to show or hide the visilibity of a adView based on a the boolean showAds defined above. So far i have this:

    - -
      <com.google.android.gms.ads.AdView
    -        android:id=""@+id/adView""
    -        android:layout_width=""wrap_content""
    -        android:layout_height=""wrap_content""
    -android:visibility=""@{@bool/showAds ? View.Visible:View:gone}""
    -        ads:adSize=""BANNER""
    -        ads:adUnitId=""ca-app-pub-1234567/34343"">
    -
    - -

    but it does not compile. how can i get the boolean to decide if the ad should show or not ?The syntax is wrong.

    -",HQ -"

    Lets say theres a package in node_modules called foo and I want to import a module within a library such as foo/module via webpack & babel...

    - -

    import Foo from 'foo'; works

    - -

    import SomeOtherModule from 'foo/module'; fails with the following:

    - -
    -

    Module not found: Error: Cannot resolve module 'foo/module' in - /Users/x/Desktop/someproject/js

    -
    - -

    Which makes make it seem like webpack is looking for the file in the wrong place instead of node_modules

    - -

    My webpack.config looks like this:

    - -
    var webpack = require('webpack');
    -var path = require('path');
    -
    -module.exports = {
    -    entry: ['babel-polyfill','./js/script.js'],
    -    output: {
    -        path: __dirname,
    -        filename: './build/script.js'
    -    },
    -    module: {
    -        loaders: [
    -            {
    -                test: /\.js$/,
    -                loader: 'babel',
    -                query: {
    -                    cacheDirectory: true,
    -                    presets: ['es2015']
    -                }
    -            }
    -        ],
    -    },
    -    plugins: [
    -        new webpack.NoErrorsPlugin()
    -    ],
    -    stats: {
    -        colors: true
    -    },
    -    devtool: 'source-map'
    -
    -};
    -
    -",HQ -"Following cake php code is in index.php file when it runs on server it shows internal server error 500. - - - dispatch( - new CakeRequest(), - new CakeResponse() - ); - -Cake PHP show Internal Server Error 500 -Cake PHP show Internal Server Error 500 -Cake PHP show Internal Server Error 500",LQ -"

    A site I'm working on displays a large number (>50) of complex SVG images in a scrolling dialog window. When viewing the site in Chrome, the scrolling performance of the dialog window is very poor - it is noticeably laggy and slow. However, if I replace the SVG images with PNG images, the scrolling is perfectly smooth and responsive.

    - -

    Here's a demonstration of the difference: https://jsfiddle.net/NathanFriend/42knwc1s/

    - -

    Why is the SVG scrolling performance so much worse than the PNG scrolling performance? After the browser renders an SVG image, I would assume it doesn't need to rerender the image until the image is manipulated in some way (like resizing). Does scrolling an element that contains SVG images cause the images to be rerendered for every frame of the scroll animation?

    - -


    - -
                                                                                              `
    -
    -",HQ -"
      -
    • Karnataka
    • -
    • Assam
    • -
    • Gujarath
    • -
    • Westbengal
    • -
    • Karnataka
    • -
    • Assam
    • -
    • Gujarath
    • -
    • Westbengal
    • -
    • Karnataka
    • -
    • Assam
    • -
    • Gujarath
    • -
    • Westbengal
    • -
    -in this i have to display first three data.",LQ -"

    This long, detailed, and entertaining article describes the history and design of --thunder-lock: http://uwsgi-docs.readthedocs.org/en/latest/articles/SerializingAccept.html

    - -

    But it doesn't help me decide when I need it!

    - -

    When is and isn't --thunder-lock beneficial?

    -",HQ -"

    Having followed the TypeScript version of the Angular 2 Quick Start guide, I was wondering if it is possible, and if so how to configure the lite-server to launch a browser other than the default.

    - -

    It seems lite-server will take command line args, served to it via yargs.argv. And it seems yargs will attempt to parse command line args based on fairly common standards (i.e. If a token begins with a --, it represents an argument name, otherwise an argument value) to obtain argv. lite-server will attempt to use the open property that it gets from argv, which is ultimately what launches the browser via [one of the of the node packages that launches processes]. node-open? xdg -open? Not sure, not really as important to me right now as long as my assumption (based on looking at several of these process launchers) is correct, that they all optionally take an argument defining the process to launch. If omitted, the default browser would be used since the file type to open is html, which is what happens.

    - -

    If all that is correct, or at least the gist of it, then it seems I just need to specify --open chrome, for example (assuming chrome is in my PATH - working on a win machine btw), at the end of the lite command defined in package.json.

    - -

    So something like...

    - -
    ""scripts"": {
    -    ""tsc"": ""tsc"",
    -    ""tsc:w"": ""tsc -w"",
    -    ""lite"": ""lite-server"",
    -    ""lite:c"": ""lite-server --open chrome"",
    -    ""lite:f"": ""lite-server --open firefox "",
    -    ""start"": ""concurrent \""npm run tsc:w\"" \""npm run lite\"" ""
    -},
    -
    - -

    I apologize if this seems inane, but I won't be at a computer where I can test this for a few days, and I need to know if I have the answer and can stop researching this :). Thanks!

    -",HQ -"I had just made a project program that functions as an easy way to apply for admission in school. So far, everything went kinda okay but I am not getting the proper output. Please look into the material posted below and help me. - - def search(t2): - t2=(('xxx',1),('yyy',2),('zzz',3)) - s=input('Enter student ID=') - for i in range(len(t2)): - for ch in t2: - if ch==s: - print'Student =>',t2[i],'of Id number',t2[i+1] - break - else: - print'Invalid Entry, try again' - - - def details(t1): - n=raw_input('Enter applicant name=') - t2=(('xxx',1),('yyy',2),('zzz',3)) - for i in range(len(t1)): - if len(t1)<5: - t2=t2+(n,i) - break - elif len(t1)==5: - print'Sorry, class full' - else: - print'Sorry, class full' - print'Student added successfully to class' - def delete(t2): - l=list(t2) - j=input('Enter the student ID=') - for i in range(len(t2)): - for ch in l: - if j==ch: - del l[i] - del l[i+1] - break - else: - print'Student not found. Please try again' - print tuple(l) - n=input('Enter the number of students=') - t1=tuple() - t2=(('xxx',1),('yyy',2),('zzz',3)) - name=raw_input('Enter the student name=') - idn=input('Enter the Id no.=') - for i in range(n): - t1=t1+(name,) - t1=t1+(idn,) - while True: - print'\n\n\t\t----Admission Menu----' - print'\t\t1->Apply for admission' - print'\t\t2->Search for a student' - print'\t\t3->Remove a student' - print'\t\t4->Exit' - - ch=input('Enter your choice=') - if ch==1: - details(t1) - elif ch==2: - search(t1) - elif ch==3: - delete(t1) - elif ch==4: - print'Thank You for visiting --School Name--' - exit() - else: - print'Wrong choice, please select a valid choice and try again'",LQ -"

    I am using IntelliJ's annotate feature to see in the editor who last changed a line in a file.

    - -

    Now I am using JGit to read the same annotations and they differ. For me it seems that Intellij checks that a line has not been changed between commits and still uses the old commit message. JGit does not see it and so makes an other message.

    - -

    Can anybody confirm that the behavior of JGit blame and IntelliJ differs? Whats the reason and how can I force IntelliJ to behave the same like JGit? Maybe IntelliJ ignores whitespace changes?

    - -

    I am using IntelliJ 15.0.1 and JGit 4.1.1

    -",HQ -"I have a table with a date column. -I am inserting dates in that column using DateTimePicker in c#. - -Everything works fine. But I want the dates inserted in the table to be ordered. Currently when I add today's date in one row and then add yesterday's date or any past date, it gets added in the 2nd row ofc. -I want that to be added in 1st row instead. Before today's date, to make all the dates in order. - -Is there any property of the date column I can use to ensure the dates order?",LQ -"

    I am using OKHTTP 3.x version. I want to post multiple parameters and would like to add the params in a loop. -I know that in version 2.x , I can use FormEncodingBuilder and add params to it in loop and then from it create a request body. -But In 3.x , the class has been removed.

    - -

    Here is my current code :

    - -
    RequestBody formBody = new FormBody.Builder()
    -            .add(""Param1"", value1)
    -            .add(""Param2"", value2)
    -            .build();
    -Request request = new Request.Builder()
    -            .url(""url"")
    -            .post(formBody)
    -            .build();
    -
    - -

    Now I want to add 5 params but in a loop i.e create request body by building formbody in a loop. -Like I wrote above, I know how to do it in OKHTTP version 2.x but I am using version 3.x.

    - -

    Any help or guidance is appreciated.

    - -

    Thanks in Advance

    -",HQ -"

    I could get access to a computing cluster, specifically one node with two 12-Core CPUs, which is running with Slurm Workload Manager.

    - -

    I would like to run TensorFlow on that system but unfortunately I were not able to find any information about how to do this or if this is even possible. I am new to this but as far as I understand it, I would have to run TensorFlow by creating a Slurm job and can not directly execute python/tensorflow via ssh.

    - -

    Has anyone an idea, tutorial or any kind of source on this topic?

    -",HQ -"How is the output of this simple java code 6 and not 4? Also since int x = 10 and int y = 15, how come they are able to declare int x and int y again to be 5 and x-2? I thought you can only declare the value of an int once? thanks, sorry I'm new to java. - -here's the code: - - public class shortq - { - public static void main (String args[]) - { - int x = 10 , y =15; - x = 5; - y = x-2; - System.out.println(x+1); - } - } ",LQ -"I'm building starting to learn how to build an app in google chrome.. but if I have this problem which really complicates my way.. I want to my app to be operated offline only and its database is offline, this is because I will just use my app inside our office... is there a database is very simple way to connect to a database(eg: like I'll just copy paste it in my app folder)?I would prefer that the database has a very simple documentation on how to use it.. your recomendations would be of great help . . ",LQ -"

    Can virtual functions like X::f() in the following code

    - -
    struct X 
    -{
    -    constexpr virtual int f() const 
    -    {
    -        return 0;
    -    }
    -};
    -
    - -

    be constexpr?

    -",HQ -"

    The relay docs contain this fragment:

    - -
    query RebelsRefetchQuery {
    -  node(id: ""RmFjdGlvbjox"") {
    -    id
    -    ... on Faction {
    -      name
    -    }
    -  }
    -}
    -
    - -

    What does this ... on Faction on syntax mean?

    -",HQ -"

    I am having difficulty working with react native async storage. -Most of the time my code jumps off the current execution and goes to the next line without getting the results from the current line. I am getting errors most of the time.

    - -

    I tried this example-

    - -
    'use strict';
    -
    -var React = require('react-native');
    -var {
    -  AsyncStorage,
    -  PickerIOS,
    -  Text,
    -  View
    -} = React;
    -var PickerItemIOS = PickerIOS.Item;
    -
    -var STORAGE_KEY = '@AsyncStorageExample:key';
    -var COLORS = ['red', 'orange', 'yellow', 'green', 'blue'];
    -
    -var BasicStorageExample = React.createClass({
    -  componentDidMount() {
    -    this._loadInitialState().done();
    -  },
    -
    -  async _loadInitialState() {
    -    try {
    -      var value = await AsyncStorage.getItem(STORAGE_KEY);
    -      if (value !== null){
    -        this.setState({selectedValue: value});
    -        this._appendMessage('Recovered selection from disk: ' + value);
    -      } else {
    -        this._appendMessage('Initialized with no selection on disk.');
    -      }
    -    } catch (error) {
    -      this._appendMessage('AsyncStorage error: ' + error.message);
    -    }
    -  },
    -
    -  getInitialState() {
    -    return {
    -      selectedValue: COLORS[0],
    -      messages: [],
    -    };
    -  },
    -
    -  render() {
    -    var color = this.state.selectedValue;
    -    return (
    -      <View>
    -        <PickerIOS
    -          selectedValue={color}
    -          onValueChange={this._onValueChange}>
    -          {COLORS.map((value) => (
    -            <PickerItemIOS
    -              key={value}
    -              value={value}
    -              label={value}
    -            />
    -          ))}
    -        </PickerIOS>
    -        <Text>
    -          {'Selected: '}
    -          <Text style={{color}}>
    -            {this.state.selectedValue}
    -          </Text>
    -        </Text>
    -        <Text>{' '}</Text>
    -        <Text onPress={this._removeStorage}>
    -          Press here to remove from storage.
    -        </Text>
    -        <Text>{' '}</Text>
    -        <Text>Messages:</Text>
    -        {this.state.messages.map((m) => <Text key={m}>{m}</Text>)}
    -      </View>
    -    );
    -  },
    -
    -  async _onValueChange(selectedValue) {
    -    this.setState({selectedValue});
    -    try {
    -      await AsyncStorage.setItem(STORAGE_KEY, selectedValue);
    -      this._appendMessage('Saved selection to disk: ' + selectedValue);
    -    } catch (error) {
    -      this._appendMessage('AsyncStorage error: ' + error.message);
    -    }
    -  },
    -
    -  async _removeStorage() {
    -    try {
    -      await AsyncStorage.removeItem(STORAGE_KEY);
    -      this._appendMessage('Selection removed from disk.');
    -    } catch (error) {
    -      this._appendMessage('AsyncStorage error: ' + error.message);
    -    }
    -  },
    -
    -  _appendMessage(message) {
    -    this.setState({messages: this.state.messages.concat(message)});
    -  },
    -});
    -
    -exports.title = 'AsyncStorage';
    -exports.description = 'Asynchronous local disk storage.';
    -exports.examples = [
    -  {
    -    title: 'Basics - getItem, setItem, removeItem',
    -    render(): ReactElement { return <BasicStorageExample />; }
    -  },
    -];
    -
    - -

    This works. But, my functions doesn't work as expected. I am getting undefined.

    -",HQ -"

    When creating a unix socket, the path name (man 7 unix) is allowed to be maximally 108 chars long. For a friend this caused a bug in his program because his path was longer. Now we wonder how exactly that number was determined.

    - -

    I have the suspicion that the number was determined so that sizeof of that struct sockaddr_un is unambiguous compared to the sizeof of other sockaddresses like sockaddr_in. But if they wanted to avoid clashes with other sizeof values, why not use a prime number for example? Can someone please provide an authorative source for that?

    -",HQ -"

    This is a switch statement that I am getting errors on:

    - -
            switch (transaction.transactionState) {
    -
    -        case SKPaymentTransactionStatePurchasing:
    -
    -            // show wait view here
    -            statusLabel.text = @""Processing..."";
    -            break;
    -
    -        case SKPaymentTransactionStatePurchased:
    -
    -            [[SKPaymentQueue defaultQueue] finishTransaction:transaction];
    -
    -            // remove wait view and unlock iClooud Syncing
    -            statusLabel.text = @""Done!"";
    -
    -            NSError *error = nil;
    -            [SFHFKeychainUtils storeUsername:@""IAPNoob01"" andPassword:@""whatever"" forServiceName: kStoredData updateExisting:YES error:&error];
    -
    -            // apply purchase action  - hide lock overlay and
    -            [oStockLock setBackgroundImage:nil forState:UIControlStateNormal];
    -
    -            // do other thing to enable the features
    -
    -            break;
    -
    -        case SKPaymentTransactionStateRestored:
    -
    -            [[SKPaymentQueue defaultQueue] finishTransaction:transaction];
    -
    -            // remove wait view here
    -            statusLabel.text = @"""";
    -            break;
    -
    -        case SKPaymentTransactionStateFailed:
    -
    -            if (transaction.error.code != SKErrorPaymentCancelled) {
    -                NSLog(@""Error payment cancelled"");
    -            }
    -            [[SKPaymentQueue defaultQueue] finishTransaction:transaction];
    -            // remove wait view here
    -            statusLabel.text = @""Purchase Error!"";
    -            break;
    -
    -        default:
    -            break;
    -    }
    -
    - -

    The last two cases, plus the default, are giving me the following error:

    - -
    -

    Cannot jump from switch statement to this case label

    -
    - -

    I have used the switch statement many, many times; this is the first time I have seen this. The code has been copied from a tutorial (here), which I am trying to adapt for my app. Would appreciate the help on this one. SD

    -",HQ -" I am having a problem getting this code to work. When ever I input anything 249 or lower it works as it should. But anything else gets me the *else* statement. My experience level with code is almost zero. This is my first class and it's only week two. - - - using System; - using System.Collections.Generic; - using System.Linq; - using System.Text; - using System.Threading.Tasks; - - namespace ILAB02 - { - class Program - { - static void Main(string[] args) - { - double salesAmount, shippingAmount; - salesAmount = 0.00; - shippingAmount = 0.00; - Console.WriteLine(""What is the total amount of sales?""); - salesAmount = Convert.ToDouble(Console.ReadLine()); - if (salesAmount > 5000.00) - { - shippingAmount = 20.00; - } - if (salesAmount > 1000.00 && salesAmount <= 5000.00) - { - shippingAmount = 15.00; - } - if (salesAmount > 500.00 && salesAmount<=1000.00) - { - shippingAmount = 10.00; - } - if (salesAmount > 250.00 && salesAmount <=500.00) - { - shippingAmount = 8.00; - } - if (salesAmount > 0.00 && salesAmount <=250.00) - { - shippingAmount = 5.00; - } - else - { - shippingAmount = 0.00; - Console.WriteLine(""Error incorrect input!""); - } - Console.WriteLine(""Total sales amount is {0:C}"",salesAmount); - Console.WriteLine(""Shipping charges is {0:C}"", shippingAmount); - Console.ReadLine(); - } - } - } -",LQ -"

    I am trying to scrape a web page that requires authentication using html_session() & html_form() from the rvest package. -I found this e.g. provided by Hadley Wickham, but am not able to customize it to my case.

    - -
    united <- html_session(""http://www.united.com/"")
    -account <- united %>% follow_link(""Account"")
    -login <- account %>%
    -         html_nodes(""form"") %>%
    -         extract2(1) %>%
    -         html_form() %>%
    -         set_values(
    -                `ctl00$ContentInfo$SignIn$onepass$txtField` = ""GY797363"",
    -                `ctl00$ContentInfo$SignIn$password$txtPassword` = password)
    -account <- account %>% 
    -submit_form(login, ""ctl00$ContentInfo$SignInSecure"")
    -
    - -

    In my case, I can't find the values to set in the form, hence I am trying to give the user and pass directly: - set_values(""email"",""password"")

    - -

    I also don't know how to refer to submit button, so I tried: - submit_form(account,login)

    - -

    The error I got for the submit_form function is: - Error in names(submits)[[1]] : subscript out of bounds

    - -

    Any idea on how to go about this is appreciated. -Thank you

    -",HQ -"

    The drop argument in dcast (from ""reshape2"" or ""dplyr"") can be useful when going from a ""long"" to a ""wide"" dataset and you want to create columns even for combinations that do not exist in the long form.

    - -

    It turns out that using drop also affects combinations the left hand side (LHS) of the formula as well as the right hand side (RHS). Thus, it also creates extra rows based on the combinations of LHS values.

    - -

    Is there a way to override this behavior?

    - -
    - -

    Here's some sample data:

    - -
    library(data.table)
    -DT <- data.table(v1 = c(1.105, 1.105, 1.105, 2.012, 2.012, 2.012),
    -                 ID = c(1L, 1L, 1L, 2L, 2L, 2L), 
    -                 v2 = structure(c(2L, 3L, 5L, 1L, 2L, 6L), 
    -                                .Label = c(""1"", ""2"", ""3"", ""4"", ""5"", ""6""), 
    -                                class = ""factor""),
    -                 v3 = c(3L, 2L, 2L, 5L, 4L, 3L)) 
    -
    - -

    Notice that ""v2"" is a factor column with 6 levels. I essentially want to go from ""long"" to wide"", but add in columns for any missing factor levels (in this case ""4"").

    - -

    reshape handles the shape, but not the missing columns:

    - -
    reshape(DT, direction = ""wide"", idvar = c(""ID"", ""v1""), timevar = ""v2"")
    -#       v1 ID v3.2 v3.3 v3.5 v3.1 v3.6
    -# 1: 1.105  1    3    2    2   NA   NA
    -# 2: 2.012  2    4   NA   NA    5    3
    -
    - -

    dcast handles adding the missing columns, but only if there's one value on the LHS:

    - -
    dcast(DT, ID ~ v2, value.var = ""v3"", drop = FALSE)
    -#    ID  1 2  3  4  5  6
    -# 1:  1 NA 3  2 NA  2 NA
    -# 2:  2  5 4 NA NA NA  3
    -
    - -

    If there are multiple values on the LHS, the combinations of the values on the LHS are also expanded out, as if we had used CJ or expand.grid, but rows 2 and 3 are not at all of interest to me:

    - -
    dcast(DT, ... ~ v2, value.var = ""v3"", drop = FALSE)
    -#       v1 ID  1  2  3  4  5  6
    -# 1: 1.105  1 NA  3  2 NA  2 NA
    -# 2: 1.105  2 NA NA NA NA NA NA
    -# 3: 2.012  1 NA NA NA NA NA NA
    -# 4: 2.012  2  5  4 NA NA NA  3
    -
    - -

    This is similar to using xtabs in base R: ftable(xtabs(v3 ~ ID + v1 + v2, DT)).

    - -
    - -

    Is there a way to let dcast know that essentially, ""Hey. The combination of values on the LHS are the IDs. Don't try to fill them in for me.""

    - -

    My current approach is to do three steps, one for collapsing down the LHS values, another for spreading out the RHS values, and then one for merging the result.

    - -
    merge(DT[, list(v1 = unique(v1)), .(ID)],  ## or unique(DT[, c(""ID"", ""v1""), with = FALSE])
    -      dcast(DT, ID ~ v2, value.var = ""v3"", drop = FALSE), 
    -      by = ""ID"")[]
    -#    ID    v1  1 2  3  4  5  6
    -# 1:  1 1.105 NA 3  2 NA  2 NA
    -# 2:  2 2.012  5 4 NA NA NA  3
    -
    - -

    Is there a better approach that I'm missing?

    -",HQ -"i have code : - - params as $key=>$val) - { - $this->rawRequest .= ""&$key=$val""; - } - ?> - -how to $this->params as $key=>$val without looping?",LQ -"please excuse my bad english skills. I am trying to save the time once the ""user"" reachs the Limit. So the limit is 10 for example and once he reachs this limit, i want to save the current time. Then he has to wait 1 hour to continue playing. I started doing this, but I already get an error, when I try this: - - var CurrentTime = NSDate() - CurrentTime = NSUserDefaults.standardUserDefaults() - -Error: Cannot assign value of type 'NSUserDefaults' to type 'NSDate' - -It seems like swift cannot save a 'NSDate' as a 'NSUserDefault'. I would be happy if you could help me out :) -",LQ -"i have started windows form application. i want that when a registration form runs, it should ask user to enter name in block letters, any text box should not be left NULL, and how to create a text which should alpha numeric? please help soon.",LQ -"

    I have an MVC 6 project in which i am using Fiddler to test out Web API. If i take the following controller action which uses EntityFramework 7 to return a List. Then the html will render fine.

    - -
    [HttpGet(""/"")]
    -public IActionResult Index()
    -{
    -    var model = orderRepository.GetAll();
    -
    -    return View(model);
    -}
    -
    - -

    But when i try to return a Json response instead i get a 502 error.

    - -
    [HttpGet(""/"")]
    -public JsonResult Index()
    -{
    -    var model = orderRepository.GetAll();
    -
    -    return Json(model);
    -}
    -
    - -

    Any Idea on why the object isnt serialized into json correctly?

    -",HQ -"

    I want to set margins based on dimensions i have created in dimens.xml The dimensions it sself works fine, its just data binding cant find it in the case below:

    - -
    <TextView
    -           android:id=""@+id/title_main""
    -        android:layout_width=""wrap_content""
    -        android:layout_height=""wrap_content""
    -        android:layout_centerHorizontal=""true""
    -        android:layout_below=""@+id/disableButton""
    -*************
    -        android:layout_marginBottom=""@{@bool/showAds ? 
    -@dimen/frontpage_margin_ads: @dimen/frontpage_margin_noads}""
    -*************        
    -android:gravity=""center_horizontal""
    -        android:text=""@string/app_name""
    -        android:textColor=""@android:color/holo_orange_dark""
    -        android:contentDescription=""@string/app_name""
    -        android:textSize=""64sp""
    -        android:textStyle=""bold"" />
    -
    - -

    it did find it but it says that marginbottom cannot take type float. How can i fix this? I tried casting both dimens to int but then it complains that it cannot be casted to int.

    - -

    My dimensions xml file looks like this:

    - -
        <resources>
    -
    -    <!-- Default screen margins, per the Android Design guidelines. -->
    -    <dimen name=""activity_horizontal_margin"">16dp</dimen>
    -    <dimen name=""activity_vertical_margin"">16dp</dimen>
    -    <dimen name=""bigText"">44sp</dimen>
    -    <dimen name=""littleText"">44sp</dimen>
    -    <dimen name=""mediumText"">40sp</dimen>
    -        <dimen name=""smallText"">24sp</dimen>
    -    <dimen name=""fab_margin"">16dp</dimen>
    -    <dimen name=""frontpage_margin_noads"">0dp</dimen>
    -    <dimen name=""frontpage_margin_ads"">13dp</dimen>
    -
    -
    -</resources>
    -
    -",HQ -"I have clustered ~40000 points into 79 clusters. Each point is a vector of 18 features. I want to 'derive' the characteristics of each cluster - the prominent features/characteristics of the clusters. Are there machine-learning algorithms to derive this? - -Thanks.",LQ -"

    I need to implement an interface where an object is clickable, but an area of this object does another action, like this:

    - -
    |-----------|
    -|        |  | -> clicking on this small area does an action
    -|        ---|
    -|           |
    -|           |
    -|           | -> clicking on this area does another action
    -|           |
    -|-----------|
    -
    - -

    I did an implementation similar this structure:

    - -
    <View> // Container
    -  <Touchable onPress={do X}> // Large area
    -  <Touchable onPress={do Y} style={{position: absolute, top: 0, right: 0}}> // Small area
    -</View>
    -
    - -

    The problem is that the small area never activate the onPress props. The event is always triggered on the large area.

    - -

    Can someone help me with this?

    - -

    Thanks!

    -",HQ -"I've been working on a website for quite some time, but it was all done on localhost. After making login form work properly I decided to upload it to hosting. -Issue is that callback functions of ajax don't seem to work if I use method: ""POST"". -If I change POST to GET it will work... - -Ajax code: - - - $.ajax({ - method: 'POST', - url: ""php/login.php"", - data: { username: val_username, password: val_password }, - success: function(response) { - if (response == 0) { - location.reload(); - } else { - alert(""Wrong username or password. Error #""+response); - } - } - }); - -login.php - - connect_error) { - die(""Connection failed: "" . $conn->connect_error); - } - - // escape your parameters to prevent sql injection - $username = mysqli_real_escape_string($conn, $_POST['username']); - $password = mysqli_real_escape_string($conn, $_POST['password']); - - $sql = ""SELECT * FROM korisnici WHERE username='$username'""; - $sql_result = $conn->query($sql); - - if ($sql_result->num_rows > 0) { - $row = $sql_result->fetch_assoc(); - if (password_verify($password, $row[""password""])) { - $_SESSION[""loggedin""] = true; - $_SESSION[""userid""] = $row[""id""]; - echo 0; - } else echo 2; - } else echo 1; - - ?> - - -I have checked all the file locations, no issue there, since everything works if I change method to GET. I tried changing datatypes in ajax, tried adding some headers to php file that I've found searching around stackoverflow, but nothing helps...",LQ -"

    I have a model MyModel with a boolean field active

    - -

    Elsewhere, I am retrieving a queryset:

    - -
    qs = MyModel.Objects.filter(....) 
    -
    - -

    how can I set active=False for all objects in this qs?

    -",HQ -"

    We have deployed our Sitecore CMS on to Azure Web Apps and having some indexing issues or similar. i.e. the updated changes is reflected for some users and not for all.

    - -

    We have a scale turned on to 2.

    - -

    I would like to troubleshoot by accessing the instance 1 and 2 directly via URL to make sure both instances have index built 100%.

    - -

    How do I access each Azure Web Role instances directly via URL?

    - -

    Thanks.

    -",HQ -"

    I use Glide library inner custom adapter view in my apps. But I have Error :

    - -
    ""You must not call setTag() on a view Glide is targeting"" 
    -
    - -

    This part of my code :

    - -
     @Override
    -    public View getView(int position, View view, ViewGroup container) {
    -        ViewHolder holder;
    -        if (view == null) {
    -            holder = new ViewHolder();
    -            view = holder.imageView = new ImageView(context);
    -            view.setTag(holder);
    -        } else {
    -            holder = (ViewHolder) view.getTag();
    -        }
    -
    -        holder.imageView.setAdjustViewBounds(true);
    -        LinearLayout.LayoutParams vp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT);
    -        holder.imageView .setLayoutParams(vp);
    -        holder.imageView .setScaleType(ImageView.ScaleType.CENTER_CROP);
    -
    -        String var_news_article_images = imageIdList.get(getPosition(position));
    -
    -        Glide.with(context)
    -                .load(var_news_article_images)
    -                .placeholder(R.drawable.placeholder)
    -               .into(holder.imageView);
    -
    -               return view;
    -    }
    -
    - -

    so how to fix it ?

    -",HQ -"class Ideone -{ - - static final int iop;// your code goes here - public Ideone() - { - iop=56; - System.out.println(iop); - - } - public static void main (String[] args) throws java.lang.Exception - { - new Ideone(); - - } -}",LQ -"

    I have a string - Python :

    - -
    string = ""/foo13546897/bar/Atlantis-GPS-coordinates/bar457822368/foo/""
    -
    - -

    Expected output is :

    - -
    ""Atlantis-GPS-coordinates""
    -
    - -

    I know that the expected output is ALWAYS surrounded by ""/bar/"" on the left and ""/"" on the right :

    - -
    ""/bar/Atlantis-GPS-coordinates/""
    -
    - -

    Proposed solution would look like :

    - -
    a = string.find(""/bar/"")
    -b = string.find(""/"",a+5)
    -output=string[a+5,b]
    -
    - -

    This works, but I don't like it. -Does someone know a beautiful function or tip ?

    -",HQ -"

    For earlier versions of .NET application templates i.e. 4.5.2 you can create a new Web Application, Change the Authentication to 'Work and School Accounts' and choose 'On-Premises'. In .NET 5 Web Application templates the 'Work and School Accounts' option does not have an 'On-Premises' option.

    - -

    How do you go about authenticating via an on-premises Active Directory (LDAP) in .NET 5 using ASP.NET Identity. To be clear, I am not looking for Windows Authentication, I want to have users enter their credentials and process the authentication against the on-premises AD. IOW, users don't need to be logged into a windows machine, they can access from their mobile devices etc.

    - -

    I've searched for hours to no avail but I wouldn't be surprised if the answer is out there somewhere. Any help is appreciated!

    -",HQ -"

    I'm trying to set up a proxy within my webpack dev server. The issue is that I don't control the server I'm connecting to, and I need to authenticate the request.

    - -

    Is there a way I can add cookies on to the request I send to the proxy server? I've looked through the webpack dev server proxy server page, and the node-http-proxy page it links to, and I don't see any mention of cookies. I'm also not sure if there's a way for me to see these forwarded requests, so I can't tell if anything I'm trying is doing anything.

    - -

    Any ideas?

    -",HQ -What is the best way to read a **specify** Length of bytes in a stream.,LQ -"

    I recently put some posts on my github jekyll blog.Everything is fine,except my flowchart.I used to make flowchart like this:

    - -
    ```flow
    -my content
    -```
    -
    - -

    but when I preview the post,It can't display as a flowchart. -This is Ok in some other markdown editor.If I want to make flowchart on my github blog,what can I do?Thanks.

    -",HQ -"i have an array rank,
    -`rank = [1,3,2,1]` - -i want the output like this - -`rank = [1,4,3,2]` - -thank you in advice",LQ -"

    Can we solve this equation for X ?

    - -
    -

    Applicative is to monad what X is to comonad

    -
    -",HQ -"

    I'm trying to use spring PagingAndSortingRepository with a find MyEntity where field in fieldValues query as follows:

    - -
    @Repository
    -public interface MyEntity extends PagingAndSortingRepository<MyEntity, String> {
    -
    -    List<MyEntity> findByMyField(Set<String> myField);
    -
    -}
    -
    - -

    But of no success.

    - -

    I expected the above function to return all entities whose field matches one of the field values but it only returns empty results.

    - -

    Even though it seems like a pretty straight forward ability i could not find any reference to it in the docs.

    - -

    Is / How that could be achieved?

    - -

    Thanks.

    -",HQ -"

    Considering following code:

    - -
    var obj1 = Object.create({}, {myProp: {value: 1}});
    -var obj2 = Object.assign({}, {myProp: 1});
    -
    - -

    Is there any difference between obj1 and obj2 since each object has been created in a different way?

    -",HQ -"Using Regex how would you count triplicates in a string? - -example 122244445577777 - -1 222 444 4 55 777 77 - -answer 3",LQ -"

    I have moment Object defined as:

    - -
    var moment = require('moment');
    -
    -moment('2015-12-20T12:00:00+02:00');
    -
    - -

    When I print it, I get:

    - -
    _d: Sun Dec 20 2015 12:00:00 GMT+0200 (EET)
    -_f: ""YYYY-MM-DDTHH:mm:ssZ""
    -_i: ""2015-12-20T12:00:00+02:00""
    -_isAMomentObject: true
    -_isUTC: false
    -_locale: r
    -_pf: Object
    -_tzm: 120
    -
    - -

    How to fetch by right way _tzm? (suppose its offset in minutes)

    - -

    Thanks,

    -",HQ -"I write this code when i try to return 12 numbers from 1 to 12: - - public function getMonths() - { - for($monthNum = 1; $monthNum <= 12; $monthNum++) - { - $month[$monthNum]=$monthNum; - } - return [$month]; - } - -How can i return this 12 numbers? I have now zero in my first return value. Anyone know how to resolve this? I need only 12 numbers without 0? -",LQ -"

    I've been reading that in Slim v2, $app was bound to the middleware class. I'm finding this not to be the case in v3? Below is my middleware class, but I'm just getting undefined:

    - -
    <?php
    -namespace CrSrc\Middleware;
    -
    -class Auth
    -{
    -    /**
    -     * Example middleware invokable class
    -     *
    -     * @param  \Psr\Http\Message\ServerRequestInterface $request  PSR7 request
    -     * @param  \Psr\Http\Message\ResponseInterface      $response PSR7 response
    -     * @param  callable                                 $next     Next middleware
    -     *
    -     * @return \Psr\Http\Message\ResponseInterface
    -     */
    -    public function __invoke($request, $response, $next)
    -    {
    -        // before
    -
    -var_dump($this->getContainer()); // method undefined
    -var_dump($this->auth); exit; // method undefined
    -        if (! $this->get('auth')->isAuthenticated()) {
    -            // Not authenticated and must be authenticated to access this resource
    -            return $response->withStatus(401);
    -        }
    -
    -        // pass onto the next callable
    -        $response = $next($request, $response);
    -
    -        // after
    -
    -
    -        return $response;
    -    }
    -}
    -
    - -

    What's the correct way to access the DI container within middleware? I'm guessing there ought to be a way?

    -",HQ -"

    Can anybody tell me how to automate the aws configure in bash with a one liner?

    - -

    Example:

    - -
    $ aws configure --profile user2
    -AWS Access Key ID [None]: AKIAI44QH8DHBEXAMPLE
    -AWS Secret Access Key [None]: je7MtGbClwBF/2Zp9Utk/h3yCo8nvbEXAMPLEKEY
    -Default region name [None]: us-east-1
    -Default output format [None]: text
    -
    - -

    Application: I want to automate this inside a Docker Entrypoint!

    -",HQ -I'm trying to copy image pixel by pixel and I save the data from the image in dictionary:[UIColor:CGPoint] how to draw on CGContext all points pixel by pixel with the exact color for certain pixel?,LQ -"

    I have logo in my website, it is grayscaled on hover i want it to be colored smoothly. it is working but not smoothly. i am using CSS transition.

    - -

    This is my code

    - -
    <img alt=""TT ltd logo"" src=""./img/tt-logo.png"" class=""tt-logo"" />
    -
    -   <style>
    -    img.tt-logo {
    -      filter: grayscale(1);
    -      transition: grayscale 0.5s;
    -    }
    -
    -    img.tt-logo:hover {
    -      filter: grayscale(0);
    -    }
    -   </style>
    -
    -",HQ -"I have a table that is manually edited from a webstore. - -I would like to do this faster with a query. - -Table: Orders - -I would like to auto increment collum 'Invoice number' in all rows if collum 'status id' (is not zero / 1-5) - -And i would like to start from a ceratain row (The next row after last manual input)",LQ -"

    For the past weeks I've been trying to learn React and Redux. -Now I have met a problem thay I haven't found a right answer to.

    - -

    Suppose I have a page in React that gets props from the link.

    - -
    const id = this.props.params.id;
    -
    - -

    Now on this page, I'd like to display an object from STORE with this ID.

    - -
     const initialState = [
    -      {
    -        title: 'Goal',
    -        author: 'admin',
    -        id: 0
    -      },
    -      {
    -        title: 'Goal vol2',
    -        author: 'admin',
    -        id: 1
    -      }
    -    ]
    -
    - -

    My question is: -should the function to query the the object from the STORE be in the page file, before the render method, or should I use action creators and include the function in reducers. -I've noticed that the reduceres seem to contain only actions that have an impoact on store, but mine just queries the store.

    - -

    Thank you in advance.

    -",HQ -"i need jquery function for symbol counter in text box when click on button. I dont know how work this. - - - - - - - - - - - - - - -

    - -

    - - - - - - -",LQ -"

    I have two methods in my code base. I would like to figure out, if there exists a path in which one will be called from the other. Is there some way to achieve this easily in IntelliJ without digging manually through call hierarchies?

    -",HQ -"

    I'm trying to install Angular2 with Bower with command bower install -S angular2 and have next messages in console:

    - -
    $ bower install -S angular2
    -bower angular2#*                cached git://github.com/angular/bower-angular.git#1.4.8
    -bower angular2#*              validate 1.4.8 against git://github.com/angular/bower-angular.git#*
    -bower angular#~1.4.8           install angular#1.4.8
    -
    -angular#1.4.8 bower_components/angular
    -
    - -

    My bower.json file now contains next info in dependencies section:

    - -
    ""dependencies"": {
    -  ""angular"": ""angular2#~1.4.8""
    -}
    -
    - -

    And I have Angular 1.4.8 after that in bower_components path.

    - -

    So, how to install Angular2 beta with Bower?

    -",HQ -"

    I'm attempting to make a console side scrolling shooter, I know this isn't the ideal medium for it but I set myself a bit of a challenge.

    - -

    The problem is that whenever it updates the frame, the entire console is flickering. Is there any way to get around this?

    - -

    I have used an array to hold all of the necessary characters to be output, here is my updateFrame function. Yes, I know system(""cls"") is lazy, but unless that's the cause of problem I'm not fussed for this purpose.

    - -
    void updateFrame()
    -{
    -system(""cls"");
    -updateBattleField();
    -std::this_thread::sleep_for(std::chrono::milliseconds(33));
    -for (int y = 0; y < MAX_Y; y++)
    -{
    -    for (int x = 0; x < MAX_X; x++)
    -    {
    -        std::cout << battleField[x][y];
    -    }
    -    std::cout << std::endl;
    -}
    -}
    -
    -",HQ -"

    In my project I use object of type A which has OneToMany relation (orphanRemoval = true, cascade = CascadeType.ALL, fetch = FetchType.EAGER) to objects of type B. I need SpringDataRest (SDR) to store complete full A object with its B objects (children) using single one POST request. I tried several combinations in SDR, the only one which worked for me, was to create @RepositoryRestResource for object A and to create @RepositoryRestResource also for object B, but mark this (B) as exported=false (if I did not create repository out of object B at all, it would not work -> just A object would be stored on single POST request, but not its children (@OneToMany relation) of type B; the same outcome occurs if exported=false is omitted for B repository). - Is this ok and the only way how to achieve it (single POST request with storing all objects at once)?

    - -

    The reason I'm asking, in my previous example, I have to (I would like to) control all objects ""lifecycle"" by using A's repository. I am ok with it, because A->B relation is composition (B does not exists outside of A). But I have serious problem of editing (also removing) one certain object of type B by SDR using its parent repository (since object B doest not have its own repository exported). Maybe, this is not possible by definition. I have tried these solutions:

    - -
      -
    • PATCH for ""/A/1/B/2"" does not work -> method not allowed (in headers -is ""Allow: GET, DELETE"") -> so, also PUT is out of question
    • -
    • Json Patch would not work either - PATCH for ""/A/1"" using json patch -content-type [{""op"": ""add"", ""path"": ""/B/2"", ....}] -> ""no such index -in target array"" - because Json Patch uses scalar ""2"" after ""array"" -as a index to its array. This is not practical in Java world, when -relations are kept in Set of objects - indexing has no meaning -at all.
    • -
    • I could export repository (exported=true) of object B for -manipulating it ""directly"", but this way I would loose ability to -store the whole object A with its B objects at one single POST -request as I have mentioned before.
    • -
    - -

    I would like to avoid sending the whole A object with one single tiny modification of its B object for PUT, if possible. -Thank you.

    -",HQ -"

    I'm trying to follow a tutorial on Azure deployment. I'm stuck on one of the first steps creating the App Service. It seams that the form tries to find all App Service Plans but can't, so all of Visual Studio hangs. I had to kill it with Task Manager. Any clues on how I can fix this? Do I need to create something at the Azure management console?

    - -

    -",HQ -" CDCatalogue::CDCatalogue() //creates array of 4 - { - maxsize=4; - numcds = 0; - cds = new CD[maxsize]; - } - - -//this copy cat into new array with double the size of cat - - CDCatalogue::CDCatalogue(const CDCatalogue& cat) - { - - - } - -",LQ -"I am fighting with regular expression - I want to create one for validation in REST resource, the id which is queried needs to have two : , for example key1:key2:key3 - -how can i create it? -the length of key1-3 can change and not equal -thanks",LQ -"

    I am doing the Kafka Quickstart for Kafka 0.9.0.0.

    - -

    I have zookeeper listening at localhost:2181 because I ran

    - -
    bin/zookeeper-server-start.sh config/zookeeper.properties
    -
    - -

    I have a single broker listening at localhost:9092 because I ran

    - -
    bin/kafka-server-start.sh config/server.properties
    -
    - -

    I have a producer posting to topic ""test"" because I ran

    - -
    bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test
    -yello
    -is this thing on?
    -let's try another
    -gimme more
    -
    - -

    When I run the old API consumer, it works by running

    - -
    bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic test --from-beginning
    -
    - -

    However, when I run the new API consumer, I don't get anything when I run

    - -
    bin/kafka-console-consumer.sh --new-consumer --topic test --from-beginning \
    -    --bootstrap-server localhost:9092
    -
    - -

    Is it possible to subscribe to a topic from the console consumer using the new api? How can I fix it?

    -",HQ -"I started Xcoding a few days ago and get stopped by the following problem: image does not change by clicking. The former image disappears. -Thanks for any help, Peter - -ViewController.h -#import - -@interface ViewController : UIViewController -@property (strong, nonatomic) IBOutlet UIImageView *imgView; -- (IBAction)changeImage:(id)sender; -@end - -ViewController.m -#import ""ViewController.h"" - -@interface ViewController () - -@end - -@implementation ViewController - -@synthesize imgView; - -- (void)viewDidLoad { - [super viewDidLoad]; - // Do any additional setup after loading the view, typically from a nib. -} - -- (void)didReceiveMemoryWarning { - [super didReceiveMemoryWarning]; - // Dispose of any resources that can be recreated. -} - -- (IBAction)changeImage:(id)sender { - UIImage *img = [UIImage imageNamed:@""animal_3.png""]; - [imgView setImage: img];} -@end -",LQ -"Im learning c++. -I have my class complex: - - - #include ""Complejo.h"" - #include - Complejo::Complejo() { - // TODO Auto-generated constructor stub - real = 0; - imaginary = 0; - } - Complejo::Complejo(int a, int b){ - real = a; - imaginary = b; - } - - - Complejo::~Complejo() { - // TODO Auto-generated destructor stub - } - std::string Complejo::mostrar()const{ - std::stringstream s; - s << real << ""+"" << imaginary <<""i""; - return s.str(); - } - -and in my main i need to read a file(every line has a complex) like this: - - 3 + 5i - 4 + 2i - 3 + 3i - -and create objects. How i can do it?",LQ -"I have to check all test cases which i have given in arrays but i am not getting perfect answer.Please help me with this question.Create a PowerBall class that contains: - - A field for an int array of size 6. - - A constructor that initializes this array with 6 random values (0-9). - - A method called checkMatch that takes as an argument an int array and returns how many numbers match the class's int array. To match, the same numbers must be in the same position. - -Write a main class which asks to user to enter 6 numbers as their lottery ticket and store it in an array. Then create a PowerBall object and give the user's ticket to the checkMatch method. Then figure out the amount won based on the return value. - -The winnings are determined as follows: -If 0 numbers match, no winnings -If 1 number matches, win $4 -If 2 numbers match, win $7 -If 3 numbers match, win $100 -If 4 numbers match, win $10,000 -If 5 numbers match, win $1 Million -If all 6 numbers match, win Grand Prize of $450 Million - -Output the user's lottery ticket, the powerball numbers, how many matched, and the amount of money won. (JAVA PROGRAM HELP) - - - - -class PowerBall { - /* - * ALL PRIVATE DATA BELOW - */ - - private int[] winningNumber; - private int[] ticketNumber; - private long cash; - static private IntUtil u = new IntUtil(); - int matchBalCount ; - int powerBallMatchCount; - - public int cash() { - - for (int i = 0; i < winningNumber.length; i++) { - for (int j = 0; j < ticketNumber.length; j++) { - if (i == winningNumber.length-1 && ticketNumber[i] == winningNumber[j]) { - powerBallMatchCount=1; - } else if (ticketNumber[i] == winningNumber[j]) { - matchBalCount++; - } - } - - } - return 100; - } - - - public void check(int matchBalCount,int powerBalCount){ - - System.out.println(""prize---matchBalCount::""+matchBalCount+"" ,powerBallMatchCount::""+powerBallMatchCount); - if (matchBalCount == 0 && powerBallMatchCount>0) { - System.out.println(""4""); - }else if (matchBalCount == 1 && powerBallMatchCount>0) { - System.out.println(""4""); - }else if (matchBalCount == 2 && powerBallMatchCount>0) { - System.out.println(""7""); - }else if (matchBalCount == 3 && powerBallMatchCount<0) { - System.out.println(""7""); - }else if (matchBalCount == 3&& powerBallMatchCount>0) { - System.out.println(""100""); - }else if (matchBalCount == 4 && powerBallMatchCount<0) { - System.out.println(""100""); - }else if (matchBalCount == 4 && powerBallMatchCount>0) { - System.out.println(""50000""); - }else if (matchBalCount == 5 && powerBallMatchCount>0) { - System.out.println(""1lakh""); - } - - - } - - - PowerBall(int[] w, int[] t) { - winningNumber = w; - ticketNumber = t; - cash = 0; - check(matchBalCount,powerBallMatchCount); - } - - private static void test1() { - int[] w = {4, 8, 19, 27, 24, 10}; - { - int[] n = {4, 8, 19, 27, 24, 10}; - PowerBall x = new PowerBall(w, n); - // x.cash(); - } - { - int[] n = {24, 27, 19, 8, 4, 10}; - PowerBall x = new PowerBall(w, n); - } - { - int[] n = {24, 27, 19, 8, 4, 5}; - PowerBall x = new PowerBall(w, n); - } - { - int[] n = {124, 127, 119, 18, 14, 10}; - PowerBall x = new PowerBall(w, n); - } - { - int[] n = {124, 127, 119, 18, 14, 5}; - PowerBall x = new PowerBall(w, n); - } - { - int[] n = {124, 127, 119, 18, 14}; - PowerBall x = new PowerBall(w, n); - } - { - int[] n = {124, 124, 19, 119, 18, 14}; - PowerBall x = new PowerBall(w, n); - } - } - - private static void testRandom() { - int[] w = {4, 8, 19, 27, 24, 10}; - int max = 10; - long c = 0; - for (int i = 0; i < max; ++i) { - int[] n = u.generateRandomNumber(6, true, 1, 99); - PowerBall x = new PowerBall(w, n); - c = c + x.cash(); - } - System.out.println(""Out of "" + max + "" times you win "" + c + ""$""); - } - - private static void testBench() { - test1(); - testRandom(); - } - - public static void main(String[] args) { - System.out.println(""PowerBall.java""); - testBench(); - System.out.println(""Done""); - } - -}",LQ -"

    The new typing module contains several objects with names like ""SupportsInt"" (-Float, -Bytes, etc.). The name, and the descriptions on the documentation page for the module, might be read to suggest that you can test whether an object is of a type that ""supports __int__()"". But if you try to use isinstance(), it gives a response that makes it clear that that isn't something you are meant to do:

    - -
    >>> isinstance(5, typing.SupportsInt)
    -(Traceback omitted)
    -TypeError: Protocols cannot be used with isinstance().
    -
    - -

    On the other hand, you can use issubclass():

    - -
    >>> issubclass((5).__class__, typing.SupportsInt)
    -True
    ->>> issubclass(type(5), typing.SupportsInt)
    -True
    -
    - -

    What is a ""protocol"" in this context? Why does it disallow the use of isinstance() in this way?

    -",HQ -"

    What is the difference between Chrome Notifications API and the Push Notification API when developing Web notifications. When each one should be used and how are they different?

    -",HQ -"

    In asp.net mvc you can use:

    - -
    @Html.DropDownListFor(model => model.Category, ViewBag.Category as IEnumerable<SelectListItem>, ""-- SELECT --"", new { @class = ""form-control"" })
    -
    - -

    Using asp.net 5, how do I include the default or null value (-- SELECT --) in a taghelper:

    - -
    <select asp-for=""Category"" asp-items=""@ViewBag.Category""  class=""form-control""></select>
    -
    -",HQ -"

    I have a Spring application and I would like to be able to switch between configurations depending if I'm debugging the server or if the server is running in production. (the difference in configurations being things like database location.)

    - -

    Ideally, I'd like to pass in a command line argument to my Spring application on boot-up and set the application configuration.

    - -

    I have two separate application.properties files, one with the production values, and another with the debug values. How can I switch between the two of them?

    -",HQ -"I'm trying to get this class to run but I keep running into issues. I'm new to Java and not sure if I am doing this correctly. If someone could just help me out with the addition of elements to a list I can figure out the rest! - - class ListPractice implements Testable { - - def mylist = [4,5,6] - - /** - * Adds a set of elements to the mylist variable - * - * @param elts The elements to be added - */ - def addToList(List elts) { - - def newlist = getMylist()+List - return newlist - } - - @Override - void testMe() { - addToList([7,8,9]) - assert getMylist() == [4,5,6,7,8,9] - assert getMylist() == [7,8,9] - } -}",LQ -"

    I wanted to know if this code is valid for checking whether an array is empty, or should I check for null?

    - -
    if(arrayName={})
    -  System.out.println(""array empty"");
    -else System.out.println(""array not empty"");
    -
    - -

    Thank you!

    -",HQ -"In Swift, why isn't a tuple considered a collection type? - -Of course this is fussbudget territory, but I find a certain amount of fussing helps me understand, retain, and organize what I'm learning. - -Thanks.",LQ -"

    I need to divide elements in RecyclerView on groups with titles (like in the Inbox app on the picture below) so help me please to figure out what approach would be better for my case: -1) I can use Heterogenous layouts for it but it is not so convenient to insert new elements in groups (because I need check if elements of the same group is already added or I need to add new divider). So in this case I'll wrap all operations with such data structure into a separate class.

    - -

    2) Theoretically I can wrap each group in its own RecyclerView with label is it a good idea?

    - -

    -",HQ -"

    How to make a loading animation in Console Application written in JavaScript or NodeJs?

    - -

    Example animation or other animation.

    - -
    1. --
    -2. \
    -3. |
    -4. /
    -5. --
    -
    -",HQ -"Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:], /SourceCache/UIKit_Sim/UIKit-2935.137/UITableView.m:6509 -2016-01-18 12:35:16.816 ALJ Jobs[1008:60b] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:' -*** First throw call stack: - -Here is This code where i am facing problem in objective-c programming. - -@implementation myCV - -{ - - NSMutableArray *CvArr; - NSMutableArray *address; -} --(void) viewDidLoad -{ - [super viewDidLoad]; - CvArr = [[NSMutableArray alloc] initWithObjects:@""My Cv_0"",@""My Cv_1"",@""My Cv_2"",@""My Cv_3"",@""My Cv_4"", nil]; - - address = [[NSMutableArray alloc] initWithObjects:@""Pakistan_0"",@""Pakistan_1"",@""pakistan_2"",@""pakistan_3"",@""pakistan_4"",nil]; - -} --(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView -{ - - return 1; -} --(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section -{ - - return [CvArr count]; -} -- (UITableViewCell *)tabelView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath -{ - - UITableViewCell *Cell = [tableView dequeueReusableCellWithIdentifier:@""Cell"" forIndexPath: indexPath]; - - - Cell.textLabel.text = [CvArr objectAtIndex:indexPath.row]; - return Cell; - -} -",LQ -"
      -
    1. Cocoapods inhibit_all_warnings! doesn't set the Pods project ""Inhibit all warnings"" to ""Yes""

    2. -
    3. Xcode still displays pods warning after settings Pods project and individual pods ""Inhibit all warnings"" option to ""Yes""

    4. -
    - -

    Cocoapods version: 0.39.0 -Xcode version: 7.2

    - -

    My pod is here:

    - -
    source 'https://github.com/CocoaPods/Specs.git'
    -platform :ios, '8.0'
    -use_frameworks!
    -
    -# ignore all warnings from all pods
    -inhibit_all_warnings!
    -
    -pod 'SnapKit', '~> 0.15.0'
    -pod 'Crashlytics'
    -pod 'YLGIFImage'
    -pod 'Fabric'
    -pod ""AFNetworking"", ""~> 2.0""
    -pod 'SDWebImage', '~>3.7'
    -
    -# Changes build active architecture only
    -post_install do |installer_representation|
    -  installer_representation.pods_project.targets.each do |target|
    -    target.build_configurations.each do |config|
    -      config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
    -    end
    -  end
    -end
    -
    -",HQ -"

    Why I can't to use String or other module in guard?

    - -

    Code:

    - -
    def foo(s1, s2) when String.length(s1) == String.length(s2) do 
    -   # something
    -end
    -
    - -

    And how I can elegantly reformat such case, when I wish to use module functions?

    -",HQ -"

    It used to work fine, but today after I connected my Android phone to my machine, and run adb devices, I got the following error:

    - -
    * daemon not running. starting it now on port 5037 *
    -cannot bind 'tcp:5037': Address already in use
    -ADB server didn't ACK
    -* failed to start daemon *
    -error: cannot connect to daemon: Operation timed out
    -
    - -

    How to solve this problem? (I am using a MacBook)

    -",HQ -"

    I wonder if it's actually possible to handle Web Worker ""standard syntax"" in webpack (e.g var worker = new Worker('my-worker-file.js');) and how?

    - -

    I know about worker-loader but as far as I understand it needs a specific syntax and is not compatible with the standard one.

    - -

    In other words, is it possible to bundle that file with webpack without changing the code? -> https://github.com/mdn/simple-web-worker/blob/gh-pages/main.js#L8

    - -

    With browserify, I would use workerify transform, but I can't find anything in webpack's world.

    -",HQ -"A palindromic prime is a prime number that is also palindromic. -For example, 131 is a prime and also a palindromic prime, as are 313 and 757. - -I need to write a function that displays the first n palindromic prime numbers. -Display 10 numbers per line and align the numbers properly, as follows: - - 2 3 5 7 11 101 131 151 181 191 - 313 353 373 383 727 757 787 797 919 929 - - - -my code is: - - def paliPrime(n): - a=0 - b=n - a+=1 - for i in range(a,b): - paliPrime=True - if str(i) == str(i)[::-1]: - if i>2: - for a in range(2,i): - if i%a==0: - paliPrime=False - break - if paliPrime: - print i - - -the code works but not in the way i wanted: - - >>> - >>> paliPrime(10) - 3 - 5 - 7 - >>> - -And what I want is a function that displays the first n palindromic prime numbers. It should display 10 numbers per line and align the numbers properly.",LQ -"[{""_id"":""5693413efc055b0011ac7891"",""attribute"":[{""Size"":""asd"",""Brand"":""asds"",""product_id"":""1""}]},{""_id"":""569cb82c079bfa80094dc936"",""attribute"":[{""Size"":""SA"",""Brand"":""123"",""product_id"":""2""}]}]",LQ -"How to slideDown h2 using jQuerry? - -html - - -
    -

    Text

    - -script - - $(window).load(function(){ - $(""h2"").slideDown(); - }); - -not working",LQ -"I'm relatively new to C, and apparently I have a fundamental misunderstanding of how macros work. I thought a macro just caused the preprocessor to replace the `@define`d macro with the replacement text. But apparently that's not always the case. My code follows: -**TstBasInc.h** - - #pragma once - - #include - #include - #include - #include - #include - #include - #include - #include - - // copy macro - #define Cpy(ToVar, FrmVar) do { \ - errno = strncpy_s(ToVar, sizeof(ToVar), FrmVar, _TRUNCATE); \ - if (errno == STRUNCATE) \ - fprintf(stderr, ""string '%s' was truncated to '%s'\n"", FrmVar, ToVar); \ - } while(0); - - // clear numeric array macro - #define ClrNumArr(ArrNam, ArrCnt) \ - for (s = 0; s < ArrCnt; s++) \ - ArrNam[s] = 0; - - - uint32_t s; // subscript - - typedef struct { - short C; - short YY; - short MM; - short DD; - } SysDat; - -**TstMacCmpErr:** - - #include ""stdafx.h"" - #include ""TstBasInc.h"" // test basic include file - - #define ARRCNT 3 - - int main() - { - char Cnd = 'E'; // define to use 'else' path - char ToVar[7 + 1]; // Cpy To-Variable - int IntArr[ARRCNT]; // integer array - - Cpy(ToVar, ""short"") // compiles with or without the semi-colon - if (Cnd != 'E') - // Cpy(ToVar, ""short string""); // won't compile: illegal else without matching if - Cpy(ToVar, ""short string"") // will compile - else - Cpy(ToVar, ""extra long string""); // compiles with or without the semi-colon - - { \ - errno = strncpy_s(ToVar, sizeof(ToVar), ""short str"", _TRUNCATE); \ - if (errno == STRUNCATE) \ - fprintf(stderr, ""string '%s' was truncated to '%s'\n"", ""short str"", ToVar); \ - } - - if (Cnd == 'E') { - ClrNumArr(IntArr, ARRCNT) // compiles with or without the semi-colon - printf(""intarr[0] = %d\n"", IntArr[0]); - } - else - printf(""intarr[0] is garbage\n""); - - return 0; - } - -The results follow: - - string 'extra long string' was truncated to 'extra l' - string 'short str' was truncated to 'short s' - intarr[0] = 0; - -As the comments say, when I have a semi-colon after `Cpy(ToVar, ""short string"");` it won't even compile because I get an `""C2181 illegal else without matching if""` error. As you see, I tried adding a do-while in the macro as suggested [in this post][1], but it didn't make any difference. When the macro code is copied directly (even without the do-while) that code works okay. I would have thought just adding the braces in the macro would have fixed the problem but it didn't. It must have something to do with the `Cpy` ending in an `if` because the `ClrNumArr` macro compiles with or without the semi-colon. So can someone tell me why the `Cpy` macro doesn't just replace the text? I must be missing something simple. I apologize in advance if that's so. - -I'm using VS 2015 Community Edition Update 1. - - - [1]: http://stackoverflow.com/questions/154136/do-while-and-if-else-statements-in-c-c-macros -",LQ -"I am trying to select all diffirent language that appear on warehouse to display them as a list, but with no luck until now. - -Is there any way to select languages efficiently? - -Any idea ? Thanks in advance.",LQ -"I'm trying to delete from a matrix like this: - - x y - 37.013930 048.775597 - 43.015619 348.803652 - 06.017302 349.831709 - 05.018978 348.859767 - 37.020646 300.887827 - 23.022307 348.915887l - . . - . . - . . - the data pairs (x, y) that are not in the range (44,350.5)=>(4.5,35.8). Does anyone know how to do it?",LQ -"I'm pretty new in developing C#, and my problem is to write a text file. I found some solution with StreamWriter lik this... - - StreamWriter file = new StreamWriter(C:\Downloads\test.txt); - file.WriteLine(""this is line one""); - file.WriteLine(""\r\n""); - file.WriteLine(""this is line 2""); - file.close(); - -Is there a more comfortable way to write a file? Maybe without the hardcoded ""\r\n""? - -Kind regards proto -",LQ -"

    I tried some ways with the path thing but it didnt work because when i edit the path in System variables it opens up all the paths not like in tutorials where i should just put the ;%GRADLE_HOME%\bin at the end.

    - -

    - -

    -",HQ -"

    I am new to ElasticSearch. I have gone through very basic tutorial on creating Indexes. I do understand the concept of a indexing. I want ElasticSearch to search inside a .PDF File. Based on my understanding of creating Indexes, it seems I need to read the .PDF file and extract all the keywords for indexing. But, I do not understand what steps I need to follow. How do I read .PFD file to extract keywords.

    -",HQ -"i am to make a functional test and i need to make click on `` tag, but i try some ways and really i don't know, i try with the commands in this url -https://saucelabs.com/resources/articles/the-selenium-2018click2019-command, nothing has worked, if somebody can help me , i would apreciate it. Thanks. - -import time -from selenium import webdriver -from unittest import TestCase - -#driver = webdriver.Chrome('/path/to/chromedriver') # Optional argument, if not specified will search path. -class GoToLogin(TestCase): - - driver = webdriver.Firefox() - driver.get('http://192.168.56.101:8000/login/'); - #time.sleep(5) # Let the user actually see something! - user_field = driver.find_element_by_id('id_username') - user_field.send_keys('lruedc') - - password_field = driver.find_element_by_id('id_password') - password_field.send_keys('lejoruca123') - - button_field = driver.find_element_by_id('btnlogin') - button_field.click() - - #time.sleep(5) # Let the user actually see something! - user_field.submit() - self.driver.quit()",LQ -"

    The Chrome custom tabs doesn't seem to launch other apps by deeplinking.

    - -

    For example a PayPal payment, when Chrome is launched with this URL. It will ask the user if the URL has to be opened with the PayPal app or with Chrome.

    - -

    But this is not the case with Chrome custom tabs.

    - -

    If I use an custom scheme(myapp://deeplinkurl/) it works correctly.

    - -

    How can I allow to let apps override the http scheme?

    -",HQ -"

    I cant find it in cassandra.yaml, maybe nodetool can get me the configured replication factor of my cluster?

    - -

    What is the default value of the replication factor?

    -",HQ -"

    How do I get hybrid line numbering (relative line numbers, but the current line shows the absolute line number instead of 0) in spacemacs for all files?

    - -

    I tried setting relative line numbers in user-config but that doesn't seem to be working, and can't figure out how to replace the 0 in relative mode either:

    - -
    (global-linum-mode)
    -(setq-default dotspacemacs-line-numbers 'relative)
    -
    -",HQ -"

    I'm looking for a method that will allow the content of the emails sent by a given EmailOperator task to be set dynamically. Ideally I would like to make the email contents dependent on the results of an xcom call, preferably through the html_content argument.

    - -
    alert = EmailOperator(
    -    task_id=alertTaskID,
    -    to='please@dontreply.com',
    -    subject='Airflow processing report',
    -    html_content='raw content #2',
    -    dag=dag
    -)
    -
    - -

    I notice that the Airflow docs say that xcom calls can be embedded in templates. Perhaps there is a way to formulate an xcom pull using a template on a specified task ID then pass the result in as html_content? Thanks

    -",HQ -"

    mix phoenix.gen.html generates a bunch of files. How do I do undo this generation? or do i have to do it by hand?

    -",HQ -"

    I am wondering if there is a good way to ""shake up"" a list of items in Python. For example [1,2,3,4,5] might get shaken up / randomized to [3,1,4,2,5] (any ordering equally likely).

    -",HQ -"In the manual it states that `-u` will tell git to remember where to push to. - -However, I think this is a strange abbreviation. `-r` would make more sense. - -It works fine I'm just wondering where these abbreviations come from. - -Any one?",LQ -"

    I read on the docker documentation how ONBUILD instruction can be used, but it is not clear at all.
    -Can someone please explain it to me?

    -",HQ -"

    this is my current CMakeLists.txt file

    - -
    cmake_minimum_required(VERSION 3.3)
    -set(CMAKE_C_FLAGS "" -Wall -g "")
    -project( bmi )
    -file( GLOB SRCS *.cpp *.h )
    -add_executable( bmi ${SRCS}) 
    -
    - -

    This builds from my source directory, but I have to clean up all the extra files after. My question is how do I build this from a build directory if all my source files are in the same source directory?

    - -

    thanks

    -",HQ -"

    When I select a text block in text editor and open the search & replace window (Ctrl+H), the search & replace scope is set to ""Selection"" automatically in VS 2013 and the olders.

    - -

    In VS 2015, the scope is always set to ""Current document"".

    - -

    I've not found any information about this change. Does anybody know it is a bug or a feature (and can it be re-configured to the former behavior somehow)?

    -",HQ -"

    I want to use a debian Docker container to test something, and by this I mean execute some commands in the debian bash console. I tried downloading the image using docker pull debian and then running it using docker run debian, but I get no output. What am I doing wrong? Shouldn't the docker container stay open until I close it?

    -",HQ -"

    I want to make a landscape app to be universal, so that the sprite nodes scale proportionally to whatever view size is running the app. I'd like an entirely programmatic solution because I don't like the IB.

    - -

    My game is pretty simple, and I don't need scrolling or zooming of any kind, so the whole game will always be present and take up the entire view.

    - -

    Is it possible that what I'm looking for is to change the size of the scene to always fit the view? If so, can you explain this thoroughly because I've tried changing this section of my view controller

    - -
        if let scene = GameScene(fileNamed:""GameScene"")
    -
    - -

    to be the constructor method that takes size as a parameter but Xcode doesn't like that.

    - -
    - -

    Things I've tried

    - -
      -
    1. Using fractions of self.view.bounds.width/height. This usually makes all iPhones look good, but on iPads stretches and skews nodes and the boundary box around thew view.
    2. -
    3. Changing the scaleMode among all four types. I'd like to keep good practice and feel like .AspectFill (default) is the one I should make my app work with, but open to suggestions. Note; I don't want black edges on any device, just the entire view displayed/scaled proportionally.
    4. -
    5. Applying programmatic constraints. Now I'm fairly new to this and don't understand constraints completely, but no tutorials I've seen even from RayWenderlich talk about constraints on nodes so I didn't delve to deep in this.
    6. -
    7. Using a method like this to convert points among views. This actually worked pretty well for point positioning of nodes, and if possible I would like this method to work out, but then I still have the problem of sizes of nodes. Also when I build for iPad with this method the view seems to start off as portrait and the nodes look fine but then I have to manually switch it to landscape and the sprites and view boundaries once again get messed up. Here's the method:

      - -
      func convert(point: CGPoint)->CGPoint {
      -    return self.view!.convertPoint(CGPoint(x: point.x, y:self.view!.frame.height-point.y), toScene:self)
      -}
      -
    8. -
    9. Countless vid tutorials on RW and everywhere else on internet.

    10. -
    - -

    Thanks in advance! I appreciate the help. I know this topic is weird because a lot of people ask questions about it but everyone's situation seems to be different enough that one solution doesn't fit all.

    -",HQ -"

    I am developing a VoIP app for iPhone. To receive calls, Apple developed PushKit so developers can send VoIP notifications using APNS.

    - -

    Everything was working fine on iOS 8. When I updated to iOS 9, the PKRegistryDelegate does not fire the method didUpdatePushCredentials after registration.

    - -

    Any ideas/suggestions?

    -",HQ -"

    I am storing the results from a sklearn regression model to the varibla prediction.

    - -
    prediction = regressor.predict(data[['X']])
    -print(prediction)
    -
    - -

    The values of the prediction output looks like this

    - -
    [ 266.77832991  201.06347505  446.00066136  499.76736079  295.15519906
    -  214.50514991  422.1043505   531.13126879  287.68760191  201.06347505
    -  402.68859792  478.85808879  286.19408248  192.10235848]
    -
    - -

    I am then trying to use the to_csv function to save the results to a local CSV file:

    - -
    prediction.to_csv('C:/localpath/test.csv')
    -
    - -

    But the error I get back is:

    - -
    AttributeError: 'numpy.ndarray' object has no attribute 'to_csv'
    -
    - -

    I am using Pandas/Numpy/SKlearn. Any idea on the basic fix?

    -",HQ -"

    I've consulted a lot of resources on Service Workers:

    - -
    - -

    However, I can't for the life of me figure out how to update the page after a new ServiceWorker has been installed. No matter what I do, my page is stuck on an old version, and only a hard refresh (Cmd-Shift-R) will fix it. No combination of 1) closing the tab, 2) closing Chrome, or 3) location.reload(true) will serve the new content.

    - -

    I have a super simple example app mostly based on SVGOMG. On installation, I cache a bunch of resources using cache.addAll(), and I also do skipWaiting() if the current version's major version number doesn't match the active version's number (based on an IndexedDB lookup):

    - - - -
    self.addEventListener('install', function install(event) {
    -  event.waitUntil((async () => {
    -    var activeVersionPromise = localForage.getItem('active-version');
    -    var cache = await caches.open('cache-' + version);
    -    await cache.addAll(staticContent);
    -    var activeVersion = await activeVersionPromise;
    -    if (!activeVersion ||
    -      semver.parse(activeVersion).major === semver.parse(version).major) {
    -      if (self.skipWaiting) { // wrapping in an if while Chrome 40 is still around
    -        self.skipWaiting();
    -      }
    -    }
    -  })());
    -});
    -
    - -

    I'm using a semver-inspired system where the major version number indicates that the new ServiceWorker can't be hot-swapped for the old one. This works on the ServiceWorker side - a bump from v1.0.0 to v1.0.1 causes the worker to be immediately installed on a refresh, whereas from v1.0.0 to v2.0.0, it waits for the tab to be closed and reopened before being installed.

    - -

    Back in the main thread, I'm manually updating the ServiceWorker after registration – otherwise the page never even gets the memo that there's a new version of the ServiceWorker available (oddly I found very few mentions of this anywhere in the ServiceWorker literature):

    - - - -
    navigator.serviceWorker.register('/sw-bundle.js', {
    -  scope: './'
    -}).then(registration => {
    -  if (typeof registration.update == 'function') {
    -    registration.update();
    -  }
    -});
    -
    - -

    However, the content that gets served to the main thread is always stuck on an old version of the page (""My version is 1.0.0""), regardless of whether I increment the version to 1.0.1 or 2.0.0.

    - -

    I'm kind of stumped here. I was hoping to find an elegant semver-y solution to ServiceWorker versioning (hence my use of require('./package.json').version), but in my current implementation, the user is perpetually stuck on an old version of the page, unless they hard-refresh or manually clear out all their data. :/

    -",HQ -"

    Using Sublime Text 3, how can I build a python file using a conda environment that I've created as in http://conda.pydata.org/docs/using/envs.html

    -",HQ -"

    I have an ASP.NET 5 Web API that I host in Azure as a Web App. I want to log messages from my code using Azure Diagnostics. There are multiple article including Azure docs that suggest that it should be as easy as System.Diagnostics.Trace.WriteLine once enabled. The logs should show up under LogsFiles/Application and in log stream in Azure.

    - -

    I enabled application logging for the web app:

    - -

    - -

    But the following calls produces no logs:

    - -
    System.Diagnostics.Trace.TraceError(""TEST"");
    -System.Diagnostics.Trace.TraceInformation(""TEST"");
    -System.Diagnostics.Trace.TraceWarning(""TEST"");
    -System.Diagnostics.Trace.WriteLine(""TEST"");
    -
    - -

    I tried to manually define TRACE symbol, but with no luck:

    - -

    - -

    I also tried to use the new Microsoft.Extensions.Logging framework and use ILogger.Log API, but without any results again:

    - -
    public void Configure(IApplicationBuilder app, 
    -                      IHostingEnvironment env, 
    -                      ILoggerFactory loggerFactory)
    -{
    -    loggerFactory.MinimumLevel = LogLevel.Debug;
    -
    -    var sourceSwitch = new SourceSwitch(""Sandbox.AspNet5.ApiApp-Demo"");
    -    sourceSwitch.Level = SourceLevels.All;
    -    loggerFactory.AddTraceSource(sourceSwitch, 
    -                                 new ConsoleTraceListener(false));
    -    loggerFactory.AddTraceSource(sourceSwitch, 
    -                                 new EventLogTraceListener(""Application""));
    -}
    -
    - -

    Any ideas on what am I doing wrong?

    -",HQ -" - -I have already tried getDriver().findElement(By.id(""//*[@name='vcr_next']"")).click(); which is unstable",LQ -"Below is the snippet of my code -please note: - -n=22 - -m=7 - -array = 0000110000111101000101 - -checker[] = false - - public static boolean ultra(int step) - { - System.out.println(step); - if(step>n) - { - System.out.println(""success1""); - - win=true; - - return true; - } - else if (step+m>n-1) - { - System.out.println(""success2""); - - win=true; - - return true; - } - else if(step<0) - { - return false; - } - else - { - try - { - if(array[step+m]==0 && checker[step+m]==false) - { - System.out.println(""jump""); - checker[step+m]=true; - return ultra(step+m); - } - System.out.println(""print ""+step); - - if(array[step+1]==0 && checker[step+1]==false) - { - System.out.println(""forward""); - - checker[step+1]=true; - return ultra(step+1); - } - if(array[step-1]==0 && checker[step-1]==false) - { - System.out.println(""backward""); - - checker[step+-1]=true; - return ultra(step-1); - } - else - { - System.out.println(""defeat""); - - return false; - } - } - catch(Exception e) - { - System.out.println(e.toString()); - return false; - - - } - - - - } - - } - - -When I call ultra(0), I get following output: - - - -""0"" -""jump"" -""7"" -""jump"" -""14"" -""print 14"" -""defeat"" - - -So basically, recursion is not going into the second if condition. It doesn't even print ""print + step"" for the first level. Hope it makes sense.",LQ -"I am facing a little problem here. -I have fetch the data from data using following code, - - class CreateGrounddetails < ActiveRecord::Migration - def change - create_table :grounddetails do |t| - t.string :name - t.datetime :working_hours - t.string :address - t.string :contact_no - t.string :email - t.integer :number_of_grounds - t.text :description - t.boolean :featured_ground #Featured - t.timestamps null: false - end - end - end - -I have a boolean values stored in the field ""featured_ground"", now i want to fetch only the data which has ""TRUE"" value for ""featured_ground"". -How can i achieve that ? - -Thank you in advance. -",LQ -please tell me about the error in android..guide me to solve this please.. Error:Execution failed for task ':app:processDebugResources'. > com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'E:\android\android-sdk_r24.4.1-windows\android-sdk-windows\build-tools\22.0.1\aapt.exe'' finished with non-zero exit value 1,LQ -" -I want to edit this HTML design in ul li format -but when i am trying to do that it goes breakdown. - - - - - -
    IDnoAction
    ""style=""border:1px solid grey; background:grey; border-radius:10%; padding:5px 14px; color:white; text-decoration:none; ""> Edit
    LEHENGA CHOLI
    Designer Lehengas
    Bollywood Lehengas
    Lehengas Below Rs.3999/-
    Lehengas Below Rs.4999/-
    - - - - - -",LQ -"I have a string that looks like this -""+919357F%7F%7F%7F%00%00%00%29Your%20OTP%20for"" - -I need all the consecutive %7F replaced with ~ - -I found a nearly working solution with this command -""+919357F%7F%7F%7F%00%00%00%29Your%20OTP%20for"".replace(/[%7F]{2,}/g, '~'); -but for some reason it does eat away a couple of other % marks that i need to keep intact. Also i could not understand what the {2,} stands for. I know it is responsible for the consecutive replaces but not sure why 2 or 3 makes any difference. -",LQ -"

    I run webpack-dev-server from the root folder of my project. -I have assets folder in /src/assets that is copied by CopyWebPackPlugin:

    - -
    new CopyWebpackPlugin([ { from: 'src/assets', to: 'assets' } ])
    -
    - -

    If I put logo.png inside assets folder then After running webpack-dev-server I can't access http://localhost/assets/logo.png file, but can access http://localhost/src/assets/logo.png file. However if I run in production mode the situation turns upside down.

    - -

    How to configure webpack server to make http://localhost/assets/logo.png file accessible in development mode?

    -",HQ -"

    Since I cannot use a private maven in order to share my library, I was thinking in sharing the aar and importing into another project. -The problem comes when the aar and jar files does not contain any dependency. So once I manually import the aar in android studio (using Import .JAR/.AA Package) there is no dependency, and I have to manually add all dependencies again. -I already generated a pom file through a gradle task, although I cannot find any way to manually import it on the project.

    - -

    On the build.gradle file automatically generated by the ""Import .JAR/.AA Package"" is:

    - -
    configurations.maybeCreate(""default"")
    -artifacts.add(""default"", file('TestSample_1.0.0.aar'))
    -
    - -

    Is there a way to add the pom/iml file too? something like:

    - -
    artifacts.add(""default"", file('pomDependencies.xml'))
    -
    -",HQ -"I need to set up a navigation using JSON & underscore JS, there are two headings with 5 links in each. - -This is the way I have my JSON and I cannot get the underscore to work and bring all the links and labels, can anyone please help: - - var navigations = [ - { - ""main_label"" : ""GIRLS"", - ""sub_page_reference"" : ""girls"", - ""links"" : [ - { ""label"" : ""NEW IN >"", - ""href"" : ""/uk/newin"", - ""target"" : ""_self"", - }, - - { - ""label"" : ""sales >"", - ""href"" : ""/uk/salesy"", - ""target"" : ""_self"", - }, - - { - ""label"" : ""girls >"", - ""href"" : ""/uk/girls"", - ""target"" : ""_self"", - }, - - { - ""label"" : ""boys >"", - ""href"" : ""/uk/boys"", - ""target"" : ""_self"", - }, - - { - ""label"" : ""party >"", - ""href"" : ""/uk/party"", - ""target"" : ""_self"", - } - - ] - }, - - { - ""main_label"" : ""BOYS"", - ""sub_page_reference"" : ""boys"", - ""links"" : [ - { ""label"" : ""NEW IN >"", - ""href"" : ""/uk/newin"", - ""target"" : ""_self"", - }, - - { - ""label"" : ""sales >"", - ""href"" : ""/uk/salesy"", - ""target"" : ""_self"", - }, - - { - ""label"" : ""girls >"", - ""href"" : ""/uk/girls"", - ""target"" : ""_self"", - }, - - { - ""label"" : ""boys >"", - ""href"" : ""/uk/boys"", - ""target"" : ""_self"", - }, - - { - ""label"" : ""party >"", - ""href"" : ""/uk/party"", - ""target"" : ""_self"", - } - - - ] - } -];",LQ -"Can anybody tell me how to delete the cells value in a given range if the cell value is String (Not a particular string, in general any String)",LQ -"

    I'm trying to transmit real time mic recording to server over TCP socket and server to write input stream to a file. -The connection is established but after some time, I'm getting connection refused error at my clientside.

    - -

    Server Code:

    - -
        public class auServer extends Thread{
    -    private static ServerSocket serverSocket;
    -    private static int port = 3333; 
    -
    -    public void run()
    -    {
    -
    -        System.out.println(""init success"");
    -       while(true)
    -       {
    -
    -          try
    -          {
    -              serverSocket = new ServerSocket(port);
    -              serverSocket.setSoTimeout(10000);
    -              Socket clientSoc = serverSocket.accept();
    -             System.out.println(""Waiting for client on port "" +serverSocket.getLocalPort() + ""..."");
    -             System.out.println(""Just connected to "" + clientSoc.getRemoteSocketAddress());
    -             InputStream in = clientSoc.getInputStream();
    -             while(in!=null)
    -             {
    -                 writeToFile(in);
    -             }
    -             System.out.println(""socket"");
    -
    -             clientSoc.close();
    -          }catch(SocketTimeoutException s)
    -          {
    -             System.out.println(""Socket timed out!"");
    -             break;
    -          }catch(IOException e)
    -          {
    -             e.printStackTrace();
    -                     System.out.println(""some io"");
    -             break;
    -          } catch (Exception e) {
    -                    System.out.println(""some e"");
    -            e.printStackTrace();
    -        }
    -       }
    -    }
    -
    -    private void writeToFile(InputStream in) throws IOException {
    -        // Write the output audio in byte
    -        String filePath = ""8k16bitMono1.wav"";
    -        short sData[] = new short[1024];
    -        byte[] bData = IOUtils.toByteArray(in);
    -        FileOutputStream os = null;
    -        try {
    -         os = new FileOutputStream(filePath);
    -        } catch (FileNotFoundException e) {
    -         e.printStackTrace();
    -        }
    -         System.out.println(""Short wirting to file"" + sData.toString());
    -         try {
    -          os.write(bData, 0, 2048);
    -         } catch (IOException e) {
    -          e.printStackTrace();
    -         }
    -        try {
    -         os.close();
    -        } catch (IOException e) {
    -         e.printStackTrace();
    -        }
    -
    -    }
    -
    -
    -    public static void main(String[] args) {
    -        // TODO Auto-generated method stub
    -      try
    -      {
    -        Thread serverThread = new auServer();
    -        serverThread.run();
    -        System.out.println(""runing"");
    -       }catch(IOException e){
    -         e.printStackTrace();
    -      }
    -    }
    -}
    -
    - -

    and Client :

    - -
    private void streamData(byte[] bData) throws UnknownHostException, IOException, InterruptedException {  //bData is byte array to transmit
    -    Thread.sleep(500);
    -    Socket client = new Socket(""10.221.40.41"",3333);
    -    OutputStream outToServer = client.getOutputStream();
    -    outToServer.write(bData);
    -    if(!isRecording)
    -        client.close();
    -}
    -
    - -

    What could be the problem? -Thanks in advance.

    -",HQ -"

    I am having problems installing bower dependencies on a Windows installation. Installation fails for me on Windows 7 x64, with git 2.6.4.windows.1, node v5.4.1, npm 3.3.12, bower 1.7.2.

    - -

    It works for a colleague on OSX (git 2.5.4, node v4.1.1, npm 2.14.4, bower 1.5.3) and for a colleague on Windows 10 (git 2.5.0.windows.1, node v4.2.2, npm 2.14.7, bower 1.3.11).

    - -

    The error message I am getting basically tells mit that bower-angular-translate does not have a version tag that satisfies 2.8.1, but the GitHub repository does have a version 2.8.1.
    -The failing packages are angular-ui-router, angular-local-storage and angular-translate.

    - -

    I tried downgrading node to 0.10.x and 4.x.x and reinstalling bower, both did not work.

    - -

    If anyone has experienced the same error message behavior with bower (on windows?) and has successfully solved it, any pointers would be greatly appreciated.

    - -
    - -

    The error message after running bower install:

    - -
    bower angular-translate#~2.8.1    ENORESTARGET No tag found that was able to satisfy ~2.8.1
    -
    -Additional error details:
    -No versions found in git://github.com/PascalPrecht/bower-angular-translate.git
    -
    - -
    - -

    My bower.json:

    - -
    {
    -    ""name"": ""My App Name"",
    -    ""version"": ""0.0.1"",
    -    ""dependencies"": {
    -        ""angular"": ""1.4.7"",
    -        ""angular-animate"": ""1.4.7"",
    -        ""angular-aria"": ""1.4.7"",
    -        ""angular-cookies"": ""1.4.7"",
    -        ""angular-resource"": ""1.4.7"",
    -        ""angular-sanitize"": ""1.4.7"",
    -        ""angular-material"": ""0.11.2"",
    -        ""angular-ui-router"": ""0.2.5"",
    -        ""angular-local-storage"": ""0.2.x"",
    -        ""angular-translate"": ""~2.8.1""
    -    }
    -}
    -
    - -
    - -

    Just in case, my package.json:

    - -

    -
    -
    {
    -	""author"": ""My Name"",
    -	""name"": ""My App Name"",
    -	""version"": ""0.0.1"",
    -	""dependencies"": {},
    -	""devDependencies"": {
    -		""chai"": ""2.2.0"",
    -		""gulp"": ""3.9.x"",
    -		""gulp-angular-filesort"": ""1.1.1"",
    -		""gulp-bower-files"": ""0.1.x"",
    -		""gulp-clean"": ""0.2.x"",
    -		""gulp-debug"": ""2.1.x"",
    -		""gulp-concat"": ""2.2.x"",
    -		""gulp-filter"": ""1.0.x"",
    -		""gulp-inject"": ""0.4.x"",
    -		""gulp-less"": ""1.2.3"",
    -		""gulp-livereload"": ""1.3.x"",
    -		""gulp-tsc"": ""0.10.x"",
    -		""gulp-uglify"": ""1.2.x"",
    -		""gulp-util"": ""2.2.x"",
    -		""gulp-watch"": ""0.6.x"",
    -		""karma-coverage"": ""~0.2.4"",
    -		""karma-mocha"": ""~0.1.6"",
    -		""karma-phantomjs-launcher"": ""^0.1.4"",
    -		""karma-sinon-chai"": ""~0.2.0"",
    -		""merge-stream"": ""0.1.x"",
    -		""mocha"": ""~1.20.1"",
    -		""phantomjs"": ""^1.9.17"",
    -		""q"": ""1.0.x"",
    -		""run-sequence"": ""0.3.x""
    -	}
    -}
    -
    -
    -

    -",HQ -"

    I am using Angular 2 beta (TypeScript). I met a weird problem. I tried Chrome, Firefox, Opera, all same results.

    - -

    When I click the ""Toggle"" button, it can successfully show/hide the text ""Hello World!"".

    - -

    When I send the command from another browser using socket, the boolean ""show"" changes successfully background, however, the text does not show/hide, which looks like the page does not refresh.

    - -
    import {Component, View} from 'angular2/core';
    -import {bootstrap} from 'angular2/bootstrap';
    -import {NgIf} from 'angular2/common';
    -
    -@Component({
    -    selector: 'app'
    -})
    -@View({
    -    directives: [NgIf],
    -    template: `
    -      <button (click)=""clicked()"">Toggle</button>
    -      <div>
    -        <div *ngIf=""show"">
    -          <h2>Hello World!</h2>
    -        </div>
    -      </div>
    -    `
    -})
    -class App {
    -    show: boolean = true;
    -
    -    constructor() {
    -        Socket.on {
    -            If (getMessage) {
    -                this.show = !this.show;
    -            }
    -        }
    -    }
    -
    -    clicked() {
    -        this.show = !this.show;
    -    }
    -}
    -
    -bootstrap(App);
    -
    -",HQ -"I have this : - - #include - #include - - void mad(int ***,int ,int ); - int main(void){ - int **x; - int n,m; - - scanf(""%d%d"",&n,&m); - mad(x,n,m); - x[0][0] = 5; - printf:(""%d\n"",x[0][0]); - return 0; - } - - void mad(int ***x,int n, int m){ - int i; - - **x = malloc(sizeof(int *)); - for(i=0;iI've got a java and groovy classes that are being run by gradle task. I have managed to make it work but I do not like the way I have to pass the parameters in command line. Here is how I do it currently via command line: gradle runTask -Pmode""['doStuff','username','password']""
    -my build.gradle code which takes these parameters looks like this:

    - -
    if (project.hasProperty(""mode"")) {
    -args Eval.me(mode)}
    -
    - -

    and then I use my arguments/parameters in my java code as follows:

    - -
    String action = args[0]; //""doStuff""
    -String name = args[1]; .. //""username""
    -
    - -

    I was wondering is there a way to pass the parameters in a better way such as:

    - -
    gradle runTask -Pmode=doStuff -Puser=username -Ppass=password 
    -
    - -

    and how to use them in my java classes.

    -",HQ -"

    I'm trying to animate a user selecting items from different sets of items. -The item should animate from the clicked set to it's new position in list of selected items.

    - -

    In the below demo, consider the pink boxes as available items and the bordered box as the list of selected items (blue boxes). User can select an item by clicking on either of the pink boxes:

    - -

    -
    -
    angular.module('test', ['ngAnimate'])
    -  .controller('testCtrl', function($scope) {
    -    $scope.products = [{}, {}, {}, {}];
    -    $scope.purchased = [{}];
    -    $scope.purchase = function(dir) {
    -      $scope.direction = dir
    -      $scope.purchased.push($scope.products.pop());
    -    };
    -  })
    -  .directive('testDir', function($animate) {
    -    return {
    -      link: function(scope, element) {
    -        $animate.on('enter', element, function(element, phase) {
    -          $target = scope.direction == 'left' ? $('.stock:first') : $('.stock:last');
    -          element.position({
    -            my: 'center',
    -            at: 'center',
    -            of: $target,
    -            using: function(pos, data) {
    -              $(this).css(pos);
    -              $(this).animate({
    -                top: 0,
    -                left: 0
    -              });
    -            }
    -          });
    -        });
    -      }
    -    };
    -  });
    -
    .stock {
    -  display: inline-block;
    -  width: 50px;
    -  height: 50px;
    -  background: hotpink;
    -}
    -.stock.right {
    -  margin-left: 100px;
    -}
    -.product {
    -  height: 50px;
    -  width: 50px;
    -  border: 1px solid;
    -}
    -.purchased {
    -  height: 60px;
    -  margin-top: 100px;
    -  border: 2px dotted;
    -}
    -.purchased .product {
    -  display: inline-block;
    -  margin: 5px;
    -  background: dodgerblue;
    -}
    -
    <script src=""https://code.jquery.com/jquery-2.1.3.min.js""></script>
    -<script src=""https://code.jquery.com/ui/1.11.2/jquery-ui.js""></script>
    -<script src=""https://code.angularjs.org/1.4.8/angular.js""></script>
    -<script src=""https://code.angularjs.org/1.4.8/angular-animate.js""></script>
    -<div ng-app=""test"" ng-controller=""testCtrl"">
    -  <div class=""stock"" ng-click=""purchase('left')""></div>
    -  <div class=""stock right"" ng-click=""purchase('right')""></div>
    -  <div class=""purchased clearfix"">
    -    <div class=""product"" ng-repeat=""product in purchased"" data-test-dir>
    -    </div>
    -  </div>
    -</div>
    -
    -
    -

    - -
    - -

    Well, it kind of works - but I'm using jQuery-ui to find out the starting position (The position of pink boxes will wary in a responsive design) and jquery animate method to animate the element.

    - -

    Also I have to store the clicked direction in scope and I'm setting both the initial position and animating to end position in the enter event listener.

    - -

    I have been reading and experimenting a lot with built in animation hooks in angular, but couldn't figure out a proper way to animate elements from relative/dynamic positions.

    - -

    Is there a better way to achieve the same user experience in angular js way..?

    -",HQ -"

    I am using windows form to generate Identity Card using c# and Microsoft report viewer. Everything is working fine except I could not find column repeat direction in Microsoft report viewer.

    - -

    Current Scenario

    - -

    My report paper size is A4. Each page can display maximum 10 individual cards. There are 2 columns in page. Each column display 5 cards. It is generating card as shown in image. The column repeat direction is vertically. It first list 1st column (1-5) and then list 2nd column (6-10).

    - -

    - -

    My Requirement

    - -

    I want the report column repeat direction to be horizontally like in the image below. First display 1 then 2 and 3 and 4 and so on.

    - -

    - -

    Why I want to display horizontally rather than vertically?

    - -

    It will save the paper. For example, if the user generate 4 Identity cards only then as per current scenario, it will generate 4 cards in column 1 and the whole page space is wasted because I can not re-use the left space.

    - -

    By repeating the column direction to horizontally, the 4 cards will be displayed as in column 1, card 1 and 3 and in column 2, card 2 and 4 will be displayed. I can then cut the paper and reuse it later.

    - -

    I have searched alot but could not find any solution. Any suggestion, comments or links will be helpful. I can not use any other reports. Thanks in advance.

    -",HQ -"import java.text.*; - -import java.util.*; - -public class Test { - -public static void main(String args[]) { - -public void sample(){ - - System.out.println(""Hello Working ....""); - - } - -}",LQ -" - - - - - - - - - - - - - - - - - - - - - - - -I'm not a perl expert, but some simple things are hard for me to figure out and one such task is this. The above XML as you can see the attributes/elements, they're repeated couple of times but for different ` ` tags . Now I'm looking to return only the repeated attributes/elements and Just print them once. - - Example : DI - DB - CCB - AB - -My code snippet goes something like this - - use strict; - use XML::Simple; - use Data::Dumper; - $xml_1 = XMLin('./tmp.xml'); - my $root_top = $xml_1->{Top}; - my $mod_top= $root_top1->{Tag}; - my @mod = keys %$mod_top; - foreach my $mods (values %$mod_top) - { - my $temp=shift(@mod); - print XST_FILE ""$temp u_$temp(\n""; - my $in_mo = $modules->{in}; - my @in_1 = keys %$in_mo; - foreach my $name_1 (values %$in_mo) - { - my $inn = shift(@in_1); - if($inn=~/\bname\b/){ - print"" \.$name_1\($name_1\)\,\n""; - } - else { - print "" \.$in\($in\)\,\n""; - } - } - - -P.S: I'd appreciate if this can be modified only in XML::Simple. Though [XML::Simple is discouraged][1], he's not righteous, but he is the one I'm currently using just to finish this task - -Any help is appreciated! - - - [1]: http://stackoverflow.com/questions/33267765/why-is-xmlsimple-discouraged",LQ -"

    I am a little bit confused about why the following code does what it does:

    - -
    class Base
    -{
    -public:
    -    Base() = default;
    -    Base(const Base &) =delete;
    -    Base &operator=(const Base &) = delete;
    -    Base(const char*) {}
    -};
    -
    -class Holder
    -{
    -public:
    -    Holder() = default;
    -private:
    -    // Base b = Base();
    -    Base b2 = {};
    -};
    -
    -int main()
    -{
    -    Holder h;
    -}
    -
    - -

    in this incarnation, it compiles, however if I un-comment Base b = Base(); it gives the following error:

    - -
    main.cpp:15:17: error: use of deleted function 'Base::Base(const Base&)'
    -   Base b = Base();
    -                 ^
    -main.cpp:5:6: note: declared here
    -      Base(const Base &) =delete;
    -      ^
    -
    - -

    and I am just unable to find in the standard why it tries to call the copy constructor for the Base b = Base() initializer, and why doesn't it call for the Base b2 = {} ... or is this just one of those little obscurities that is hidden in a few words in a paragraph somewhere?

    - -

    Can you please give a (short) explanation why this happens?

    - -

    (coliru: http://coliru.stacked-crooked.com/a/c02ba0293eab2ce5 )

    -",HQ -"string query = ""Select * from getLabelDetails where itemlookupCode='""+S""';""; - -The above query is showing error as it is missing semi column. - ""';"" - How can I pass single quotes for this query? ",LQ -"I have 2 arrays from my own created zip program.
    -farArray and bytes.
    -they are both byte arrays.

    -Now I want to save that in a file (example: ""file.zip"").

    -I know that I can write bytes with this code:
    - - File.WriteAllBytes(savefile.FileName, bytes); - -But I only save 1 byteArray now.
    -How to save 2 of them?

    - -And can I get back the 2 arrays if I open the file in my script?
    ",LQ -"

    This is a theoretical question, I know how to do this unambiguously, but I got curious and dug into the standard and I need a second pair of standards lawyer eyes.

    - -

    Let's start with two structs and one init function:

    - -
    struct foo {
    -    int a;
    -};
    -struct bar {
    -    struct foo *f;
    -};
    -struct bar *
    -init_bar(struct foo *f)
    -{
    -    struct bar *b = malloc(sizeof *b);
    -    if (!b)
    -        return NULL;
    -    b->f = f;
    -    return b;
    -}
    -
    - -

    We now have a sloppy programmer who doesn't check return values:

    - -
    void
    -x(void)
    -{
    -    struct bar *b;
    -
    -    b = init_bar(&((struct foo){ .a = 42 }));
    -    b->f->a++;
    -    free(b);
    -}
    -
    - -

    From my reading of the standard there's nothing wrong here other than potentially dereferencing a NULL pointer. Modifying struct foo through the pointer in struct bar should be legal because the lifetime of the compound literal sent into init_bar is the block where it's contained, which is the whole function x.

    - -

    But now we have a more careful programmer:

    - -
    void
    -y(void)
    -{
    -    struct bar *b;
    -
    -    if ((b = init_bar(&((struct foo){ .a = 42 }))) == NULL)
    -        err(1, ""couldn't allocate b"");
    -    b->f->a++;
    -    free(b);
    -}
    -
    - -

    Code does the same thing, right? So it should work too. But more careful reading of the C11 standard is leading me to believe that this leads to undefined behavior. (emphasis in quotes mine)

    - -
    -

    6.5.2.5 Compound literals

    - -

    5 The value of the compound literal is that of an unnamed object initialized by the - initializer list. If the compound literal occurs outside the body of a function, the object - has static storage duration; otherwise, it has automatic storage duration associated with - the enclosing block.

    - -

    6.8.4 Selection statements

    - -

    3 A selection statement is a block whose scope is a strict subset of the scope of its - enclosing block. Each associated substatement is also a block whose scope is a strict - subset of the scope of the selection statement.

    -
    - -

    Am I reading this right? Does the fact that the if is a block mean that the lifetime of the compound literal is just the if statement?

    - -

    (In case anyone wonders about where this contrived example came from, in real code init_bar is actually pthread_create and the thread is joined before the function returns, but I didn't want to muddy the waters by involving threads).

    -",HQ -"

    is there a more terse way of writing

    - -
    listOf('a'..'z','A'..'Z').flatMap { it }
    -
    - -

    The idea here is to iterate over some values in a range, like the numbers from 1 through 100, skipping 21 through 24

    - -
    listOf(1..20, 25..100).flatMap { it }
    -
    -",HQ -"

    Numpy seems to make a distinction between str and object types. For instance I can do ::

    - -
    >>> import pandas as pd
    ->>> import numpy as np
    ->>> np.dtype(str)
    -dtype('S')
    ->>> np.dtype(object)
    -dtype('O')
    -
    - -

    Where dtype('S') and dtype('O') corresponds to str and object respectively.

    - -

    However pandas seem to lack that distinction and coerce str to object. ::

    - -
    >>> df = pd.DataFrame({'a': np.arange(5)})
    ->>> df.a.dtype
    -dtype('int64')
    ->>> df.a.astype(str).dtype
    -dtype('O')
    ->>> df.a.astype(object).dtype
    -dtype('O')
    -
    - -

    Forcing the type to dtype('S') does not help either. ::

    - -
    >>> df.a.astype(np.dtype(str)).dtype
    -dtype('O')
    ->>> df.a.astype(np.dtype('S')).dtype
    -dtype('O')
    -
    - -

    Is there any explanation for this behavior?

    -",HQ -"

    I am using okhttp 3.0.1.

    - -

    Every where I am getting example for cookie handling that is with okhttp2

    - -
    OkHttpClient client = new OkHttpClient();
    -CookieManager cookieManager = new CookieManager();
    -cookieManager.setCookiePolicy(CookiePolicy.ACCEPT_ALL);
    -client.setCookieHandler(cookieManager);
    -
    - -

    Can please some one guide me how to use in version 3. setCookieHandler method is not present in the version 3.

    -",HQ -"

    I'm working on a video app and storing the files on AWS S3, using the default URL like https://***.amazonaws.com/*** works fine but I have decided to use CloudFront which is faster for content delivery.

    - -

    Using CF, I keep getting 403 (Forbidden) using this URL https://***.cloudfront.net/***. Did I miss anything?

    - -

    Everything works fine until I decide to load the contents from CloudFront which points to my bucket.

    - -

    Any solution please?

    -",HQ -"

    I am trying to run

    - -
    python manage.py migrate
    -
    - -

    or

    - -
    python manage.py makemigrations
    -
    - -

    I got this error:

    - -
    Running migrations:
    -  No migrations to apply.
    -Traceback (most recent call last):
    -  File ""manage.py"", line 10, in <module>
    -    execute_from_command_line(sys.argv)
    -  File ""/Users/rostunov/temp/venv/lib/python2.7/site-packages/django/core/management/__init__.py"", line 353, in execute_from_command_line
    -    utility.execute()
    -  File ""/Users/rostunov/temp/venv/lib/python2.7/site-packages/django/core/management/__init__.py"", line 345, in execute
    -    self.fetch_command(subcommand).run_from_argv(self.argv)
    -  File ""/Users/rostunov/temp/venv/lib/python2.7/site-packages/django/core/management/base.py"", line 348, in run_from_argv
    -    self.execute(*args, **cmd_options)
    -  File ""/Users/rostunov/temp/venv/lib/python2.7/site-packages/django/core/management/base.py"", line 399, in execute
    -    output = self.handle(*args, **options)
    -  File ""/Users/rostunov/temp/venv/lib/python2.7/site-packages/django/core/management/commands/migrate.py"", line 183, in handle
    -    executor.loader.project_state(),
    -  File ""/Users/rostunov/temp/venv/lib/python2.7/site-packages/django/db/migrations/loader.py"", line 338, in project_state
    -    return self.graph.make_state(nodes=nodes, at_end=at_end, real_apps=list(self.unmigrated_apps))
    -  File ""/Users/rostunov/temp/venv/lib/python2.7/site-packages/django/db/migrations/graph.py"", line 280, in make_state
    -    project_state = self.nodes[node].mutate_state(project_state, preserve=False)
    -  File ""/Users/rostunov/temp/venv/lib/python2.7/site-packages/django/db/migrations/migration.py"", line 88, in mutate_state
    -    operation.state_forwards(self.app_label, new_state)
    -  File ""/Users/rostunov/temp/venv/lib/python2.7/site-packages/django/db/migrations/operations/models.py"", line 547, in state_forwards
    -    model_state = state.models[app_label, self.name_lower]
    -KeyError: ('list', u'user')
    -
    - -

    It happen after I pulled another version of my app from the git.

    - -

    I don't have this error with the same code on the another machine. -I've tried to use --fake with zero or to squashmigrations to previous but this also doesn't help.

    - -

    Cannot get how to solve it.

    -",HQ -"In the below code, my second query will not insert into the SQL database, but the first one will update. I can copy the query (from the msgbox i added for testing) and paste it in SQL Server Management Studio, and it will execute fine. I also do not get any error messages back from SQL, though i'm not sure if that code is correct (it was copied + pasted from another source). Also, can i simplify the code to pass both queries at the same time? - - Dim Conn As New System.Data.SqlClient.SqlConnection 'sql server datastream connection - Dim Cmd As New System.Data.SqlClient.SqlCommand 'sql command vars - Dim SqlQuery As String 'string var used to hold various SQL queries - Dim data As System.Data.SqlClient.SqlDataReader 'datareader object variable - Dim MVDataset As New DataSet - Dim MVDatatable As DataTable - Dim MVDatarow As DataRow - - Private Sub MVUpdateButton_Click(sender As Object, e As EventArgs) Handles MVUpdateButton.Click - - vbyn = MsgBox(""Are you sure you want to update Tally Sheet Master Variables?"" & vbCrLf & vbCrLf & ""Changes to these variables will change the functionality of the Tally Sheet!"", vbYesNo, ) - Try - Select Case vbyn - Case vbNo - GoTo MVTableUpdateBypass - Case vbYes - 'get new data from textboxes - Vers = TextBox1.Text - If TextBox2.Text = True Then - Testing = 1 - Else - Testing = 0 - End If - FlatFeeCharge = TextBox3.Text - PrepricingCharge = TextBox4.Text - SendMailAcct = TextBox5.Text - SendMailPW = TextBox6.Text - TestingEmail = TextBox7.Text - PrePricingEmail = TextBox8.Text - ImperataEmail = TextBox9.Text - - 'update existing active row to mark inactive - SqlQuery = ""Update MasterVars set Active = 0 where PKEY = "" & PKEY & "";"" - MsgBox(SqlQuery) - If Conn.State = ConnectionState.Closed Then - Conn.ConnectionString = ""Data Source=SQL01;Initial Catalog=TallySheet;Integrated Security=SSPI;"" - End If - Conn.Open() - Dim MVDataAdapter As New SqlDataAdapter(SqlQuery, Conn) - Dim MVUpdateCommand As SqlCommand - MVUpdateCommand = New SqlCommand(SqlQuery) - MVDataAdapter.UpdateCommand = MVUpdateCommand - - - 'insert new active row - SqlQuery = ""Insert into MasterVars (Vers, Testing, FlatFeeCharge, PrePricingCharge, SendMailAcct, SendMailPW, TestingEmail, PrePricingEmail, ImperataEmail, DTS, UserName, Active) Values ("" & ""'"" & Vers & ""', "" & Testing & "", '"" & FlatFeeCharge & ""'"" & "", '"" & PrepricingCharge & ""'"" & "", '"" & SendMailAcct & ""'"" & "", '"" & SendMailPW & ""'"" & "", '"" & TestingEmail & ""'"" & "", '"" & PrePricingEmail & ""'"" & "", '"" & ImperataEmail & ""'"" & "", '"" & Date.Now & ""',"" & ""'QGDOMAIN\"" & Environment.UserName & ""',"" & 1 & "");"" - MsgBox(SqlQuery) - Dim MVInsertCommand As SqlCommand - MVInsertCommand = New SqlCommand(SqlQuery) - MVDataAdapter.InsertCommand = MVInsertCommand - - MVDataAdapter.Fill(MVDataset, ""MasterVars"") - - End Select - - Catch ex As SqlException - Dim i As Integer - Dim errormessages As String - errormessages = """" - For i = 0 To ex.Errors.Count - 1 - errormessages = errormessages & "" "" & (""Index #"" & i.ToString() & ControlChars.NewLine _ - & ""Message: "" & ex.Errors(i).Message & ControlChars.NewLine _ - & ""LineNumber: "" & ex.Errors(i).LineNumber & ControlChars.NewLine _ - & ""Source: "" & ex.Errors(i).Source & ControlChars.NewLine _ - & ""Procedure: "" & ex.Errors(i).Procedure & ControlChars.NewLine) - Next i - Console.WriteLine(errorMessages.ToString()) - End Try - - - 'reload form with updated variables - - Conn.Close() - Conn.Dispose() - - MVTableUpdateBypass: - End Sub",LQ -"

    What is the new Microsoft way of UI prototyping since VS2015 doesn't support SketchFlow projects. (I'm having hard time to accept that they removed such a useful tool without providing alternative)

    - -
    -

    I know we still have PowerPoint StoryBoards for basic UI mock-ups but I would like to use interactive prototypes through Visual Studio. Therefore please do not suggest alternative products

    -
    -",HQ -"

    My requirement is to use PUT, send a header and a body to server which will update something in the database.

    - -

    I just read okHttp documentation and I was trying to use their POST example but it doesn't work for my use case (I think it might be because the server requires me to use PUT instead of POST).

    - -

    This is my method with POST:

    - -
     public void postRequestWithHeaderAndBody(String url, String header, String jsonBody) {
    -
    -
    -        MediaType JSON = MediaType.parse(""application/json; charset=utf-8"");
    -        RequestBody body = RequestBody.create(JSON, jsonBody);
    -
    -        OkHttpClient client = new OkHttpClient();
    -
    -        Request request = new Request.Builder()
    -                .url(url)
    -                .post(body)
    -                .addHeader(""Authorization"", header)
    -                .build();
    -
    -        makeCall(client, request);
    -    }
    -
    - -

    I have tried to search for okHttp example using PUTwith no success, if I need to use PUTmethod is there anyway to use okHttp?

    - -

    I'm using okhttp:2.4.0 (just in case), thanks on any help!

    -",HQ -"

    SQLAlchemy supports eager load for relationship, it is basically a JOIN statement. However, if a model has two or more relationships, it could be a very huge join. For example,

    - -
    class Product(Base):
    -    __tablename__ = 'product'
    -    id = Column(Integer, primary_key=True, autoincrement=True)
    -    name = Column(String(255), nullable=False)
    -    orders = relationship('Order', backref='product', cascade='all')
    -    tags = relationship('Tag', secondary=product_tag_map)
    -
    -class Order(Base):
    -    __tablename__ = 'order'
    -    id = Column(Integer, primary_key=True, autoincrement=True)
    -    date = Column(TIMESTAMP, default=datetime.now())
    -
    -class Tag(Base):
    -    __tablename__ = 'tag'
    -    id = Column(Integer, primary_key=True, autoincrement=True)
    -    tag_type = Column(String(255), nullable=False)
    -    tag_value = Column(String(255), nullable=False)
    -
    -q = session.query(Product).join(User.addresses)\
    -    .options(joinedload(Product.orders))\
    -    .options(joinedload(Product.tags)).all()
    -
    - -

    The performance of this query is really bad, because the JOIN of Order and Tag will generate a huge table. But the Order and Tag has no relationship in here, so they should not be JOIN. It should be two separated queries. And because the session has some level of caching, so I changed my query to this.

    - -
    session.query(Product).join(Product.order) \
    -    .options(joinedload(Product.tags)).all()
    -
    -q = session.query(Product).join(User.addresses) \
    -    .options(joinedload(Product.cases)).all()
    -
    - -

    This time the performance is way much better. However, I am not convinced that this is the correct to do it. I am not sure if the caches of tags will be expired when the session ends.

    - -

    Please let me know the appropriate way for this kind of query. Thank you!

    -",HQ -"

    How can I determine if webpack.config.js was loaded via webpack vs webpack-dev-server?

    -",HQ -"For my project one of the returns has to be null. When testing using assertNull(Null Object here) it fails with a null pointer exception. - -Can someone please tell my why?? I thought assertNull is suppose to test for null. - -Heres part of my code. - - - - public static UVI calculateUVI(double[] radiation) - { - double calculation = 0.0; - double[] copyRad = new double[radiation.length]; - for (int i = 0; i < radiation.length; i++) - { - copyRad[i] = radiation[i]; - if (radiation[i] > RADIATION_MAXIMUM) - copyRad[i] = RADIATION_MAXIMUM; - if (radiation[i] < RADIATION_MINIMUM) - copyRad[i] = 0.0; - - calculation += (copyRad[i] * MD_WEIGHTS[i]); - } - - if (radiation.length != MD_WEIGHTS.length || radiation == null) - { - UVI nulled = null; - return nulled; - } - - calculation /= B; - UVI result = new UVI(calculation, true); - return result; - } - - -My test case is: - - - - double[] test1 = {4., 26., 30., 17., 2.}; - double[] test2 = {0., 0., 0., 0., 0.}; - double[] test3 = {4., 26., 30., 100., 2.}; - double[] test4 = {4., 26., 30., 200., 2.}; - double[] test5 = {3.4, 0., 17., 17., 2.}; - double[] test6 = {3.4, -10., 17., 17., 2.}; - double[] test7 = {1.0}; - double[] test8 = {}; - double[] test9 = null; - - UVI testOne = UVICalculator.calculateUVI(test1); - UVI testTwo = UVICalculator.calculateUVI(test2); - UVI testThree = UVICalculator.calculateUVI(test3); - UVI testFour = UVICalculator.calculateUVI(test4); - UVI testFive = UVICalculator.calculateUVI(test5); - UVI testSix = UVICalculator.calculateUVI(test6); - UVI testSeven = UVICalculator.calculateUVI(test7); - UVI testEight = UVICalculator.calculateUVI(test8); - UVI testNine= UVICalculator.calculateUVI(test9); - - assertTrue(8.8956 == testOne.getValue()); - assertTrue(0 == testTwo.getValue()); - assertTrue(8.9952 == testThree.getValue()); - assertTrue(8.9952 == testFour.getValue()); - assertTrue(4.027200000000001 == testFive.getValue()); - assertTrue(4.027200000000001 == testSix.getValue()); - assertNull(testSeven); - assertNull(testEight); - assertNull(testNine); - -",LQ -"

    I have the created this plot in D3: http://bl.ocks.org/cddesja/aee65f660c24cb2144fd

    - -

    There are two things I would like to change.

    - -

    1) I would like to make it so that none of my points overlap with the y or x-axis. I thought I could use transform() to create a little bit of a buffer but that creates a gap between the x and y axis lines, something I do not want. How should I do this correctly?

    - -

    2) I would like to get rid of the tick marks at the intersection of the x and y lines. I am hoping that once I move the tick marks (and subsequently the pts and lines) that these tick marks automagically disappear. I don't know if that's really true or not.

    - -

    Thanks in advance. -Chris

    -",HQ -"

    Here is the routes config:

    - -
    <Route path='/' component={CoreLayout}>
    -  <IndexRoute component={HomeView}/>
    -  <Route path='/404' component={NotFoundView}/>
    -  <Redirect from='*' to='/404'/>
    -</Route>
    -
    - -

    Here is the proxy config for webpack-dev-server:

    - -
    proxy: {
    -  '/service': 'http://localhost:8080'
    -}
    -
    - -

    The express server listens on 3000 port.

    - -

    I hope that all the requests send to http://localhost:3000/service would be transferred to http://localhost:8080, but it seems that react-router handles all the requests and the proxy does not work.

    - -

    Any body knows how to fix this? Thank you in advance

    -",HQ -"

    I am using Crashlytics for collecting crashes from iOS app. -To make crash more specific I want to see user name/email/id in crash details.
    -For this goal I use such code:

    - -
    [Crashlytics setUserIdentifier:@""userID""];
    -[Crashlytics setUserEmail:@""user@email.com""];
    -[Crashlytics setUserName:@""userName""];
    -
    - -

    When crash happens I cannot find a way to see this information in crash details.
    -I see such screen:
    -

    - -

    Question: How can I see user name/email/id in crash details?

    -",HQ -"

    I want to change the default background color of a MenuItem at mouseOver. Here is my xaml code:

    - -

    - -

    Style :

    - -
    <Style TargetType=""{x:Type MenuItem}"" x:Key=""MenuItemStyle"" >
    -        <Setter Property=""BorderBrush"" Value=""White""></Setter>
    -        <Setter Property=""BorderThickness"" Value=""0,0,0,5""></Setter>
    -        <Setter Property=""Background"" Value=""#0264AD""></Setter>
    -        <Setter Property=""Foreground"" Value=""White""></Setter>
    -        <Setter Property=""FontSize"" Value=""12""></Setter>
    -        <Setter Property=""FontFamily"" Value=""Arial""></Setter>
    -        <Setter Property=""FontWeight"" Value=""Bold""></Setter>
    -        <Setter Property=""Margin"" Value=""-5,0,0,0""></Setter>
    -        <Setter Property=""Padding"" Value=""0,12,0,12""></Setter>
    -
    -        <Style.Triggers>
    -            <Trigger Property=""IsEnabled"" Value=""False"">
    -                <Setter Property=""Foreground"" Value=""LightGray""></Setter>
    -                <Setter Property=""Background"" Value=""#0264AD""></Setter>
    -            </Trigger>
    -            <Trigger Property=""IsMouseOver""  Value=""True"">
    -                <Setter Property=""Foreground"" Value=""#0264AD""></Setter>
    -                <Setter Property=""Background"" Value=""Yellow""></Setter>
    -            </Trigger>
    -        </Style.Triggers>
    -
    -    </Style>
    -
    - -

    Control :

    - -
    <ContextMenu x:Name=""settingContextMenu""  Width=""220"" >
    -
    -<MenuItem Style=""{StaticResource MenuItemStyle}""        Name=""CustomizeLocationNames"" Click=""CustomizeLocationNames_Click"" >
    -
    -      <MenuItem.Header>
    -           <TextBlock Text=""Customize Location Names""                                      VerticalAlignment=""Center""></TextBlock>
    -       </MenuItem.Header>
    -</MenuItem>
    -
    -
    -<MenuItem Style=""{StaticResource MenuItemStyle}""  Name=""ZoomRoute"" Click=""ZoomRoute_Click"">
    -   <MenuItem.Header>
    -       <TextBlock Text=""Zoom Route"" VerticalAlignment=""Center""></TextBlock>
    -   </MenuItem.Header>  
    -</MenuItem>
    -
    -
    -<MenuItem Style=""{StaticResource MenuItemStyle}"" Name=""PrintRoute"" Click=""PrintRoute_Click"">
    -    <MenuItem.Header>
    -         <TextBlock Text=""Print Route"" VerticalAlignment=""Center"" >/TextBlock>
    -    </MenuItem.Header>
    -</MenuItem>
    -
    -
    -</ContextMenu>
    -
    - -

    So I have mouse over trigger which should turn background color to yellow if mouse is over, but it is showing default light grey color as shown in snap,

    - -

    Can anyone tell me how to get background color YELLOW on mouse over?

    -",HQ -"

    I am uploading images on server via Alamofire.upload as multipart data. Unlike Alamofire.request it's not returning Request object, which I usually use to cancel requests.

    - -

    But it's very reasonable to be able to cancel such a consuming requests like uploading. What are the options for this in Alamofire?

    -",HQ -"

    Why did kotlin drop the new keyword ? -It makes it harder to see the difference between a function call and an object allocation.

    -",HQ -"

    It seems like the biggest drawback with SQLAlchemy is that it takes several steps backwards when it comes to working with temporary tables. A very common use case, for example, is to create a temporary table that is very specific to one task, throw some data in it, then join against it.

    - -

    For starters, declaring a temporary table is verbose, and limited. Note that in this example I had to edit it because my classes actually inherit a base class, so what I give here may be slightly incorrect.

    - -
    @as_declarative(metaclass=MetaBase)
    -class MyTempTable(object):
    -
    -    __tablename__ = ""temp""
    -    __table_args__ = {'prefixes': ['TEMPORARY']}
    -
    -    id = Column(Integer(), primary_key=True)
    -    person_id = Column(BigInteger())
    -    a_string = Column(String(100))
    -
    - -

    Creating it is unintuitive:

    - -
    MyTempTable.__table__.create(session.bind)
    -
    - -

    I also have to remember to explictly drop it unless I do something creative to get it to render with ON COMMIT DROP:

    - -
    MyTempTable.__table__.drop(session.bind)
    -
    - -

    Also, what I just gave doesn't even work unless the temporary table is done ""top level"". I still haven't fully figured this out (for lack of wanting to spend time investigating why it doesn't work), but basically I tried creating a temp table in this manner inside of a nested transaction using session.begin_nested() and you end up with an error saying the relation does not exist. However, I have several cases where I create a temporary table inside of a nested transaction for unit testing purposes and they work just fine. Checking the echo output, it appears the difference is that one renders before the BEGIN statement, while the other renders after it. This is using Postgresql.

    - -

    What does work inside of a nested transaction, and quite frankly saves you a bunch of time, is to just type out the damned sql and execute it using session.execute.

    - -
            session.execute(text(
    -            ""CREATE TEMPORARY TABLE temp (""
    -            ""  id SERIAL,""
    -            ""  person_id BIGINT,""
    -            ""  a_string TEXT""
    -            "") ON COMMIT DROP;""
    -        ))
    -
    - -

    Of course, if you do this, you still need a corresponding table model to make use of ORM functionality, or have to stick to using raw sql queries, which defeats the purpose of SQLAlchemy in the first place.

    - -

    I'm wondering if maybe I'm missing something here or if someone has come up with a solution that is a bit more elegant.

    -",HQ -" printf(""The rate of train 1 and train 2 respectively are what values?\n""); - scanf(""%d%d"", &rate_1_mph, &rate_2_mph); - - printf(""What was the total distance the trains were apart initially?\n""); - scanf(""%d"", &distance_total_mile); - - printf(""The time it takes both trains to arrive side-by-side is %.31f minutes.\n"", time_minute); - - printf(""The distance train 1 had to travel was %.21f miles.\n"", distance_1_mile); - printf(""The distance train 2 had to travel was %.21f miles.\n"", distance_2_mile); - - return 0; -} - -The error I received was: ""warning: format '%f' expects argument of type 'double', but argument 2 has type 'int *"". - -I've tried looking this up on this site, and I saw the same question solved two different ways but neither seemed to work. I also didn't post the entire code because the other example I saw didn't either, and their question was answered. -",LQ -"

    I have a project with a lot of binaries (mostly pdfs) that I'm using git-lfs with. The project is about 60mb but I found that my .git/lfs/objects director is about 500mb. I presume these are cached versions of previous commits. Is there a way to gracefully delete these (ie delete them without corrupting the state of git)? The odds of me ever wanting previous versions of the files in LFS are near 0 now especially since the project is over.

    -",HQ -"

    So I'm looking through the source of gcc compiler and I've come along this in fork.c:

    - -
    int
    -__fork ()
    -{
    -  __set_errno (ENOSYS);
    -  return -1;
    -}
    -libc_hidden_def (__fork)
    -stub_warning (fork)
    -
    -weak_alias (__fork, fork)
    -#include <stub-tag.h>
    -
    - -

    I'm trying to figure out what weak_alias does. I've used the grep command inside the glibc source files to find all occurrences of #define weak_alias:

    - -
    grep -r ""#define weak_alias""
    -
    - -

    I've found many occurrences of the macro:

    - -
    #define weak_alias(n, a)
    -
    - -

    but the macros don't actually explain anything. They just define that statement they don't show how its being replaced. For example one occurrence is in profil.c:

    - -
    /* Turn off the attempt to generate ld aliasing records. */
    -#undef weak_alias
    -#define weak_alias(a,b)
    -
    - -

    So any ideas what weak_alias does and where it is being defined?

    - -

    Thanks in advance

    -",HQ -"

    I have a One Spring Hibernate Application. In my application, Recently i am implemented Spring data Redis.

    - -
    spring-servlet.xml
    -<!-- redis connection factory -->
    -<bean id=""jedisConnFactory"" class=""org.springframework.data.redis.connection.jedis.JedisConnectionFactory"" p:use-pool=""true""/>
    -
    -<!-- redis template definition -->
    -<bean id=""redisTemplate"" class=""org.springframework.data.redis.core.RedisTemplate"" 
    -    p:connection-factory-ref=""jedisConnFactory""/>
    -
    - -

    And this redisTemplate use in my ServiceImpl class.

    - -
    RedisServiceImpl
    -
    -@Autowired
    -private RedisTemplate<String, T> redisTemplate;
    -
    -public RedisTemplate<String, T> getRedisTemplate() {
    -    return redisTemplate;
    -}
    -
    -public void setRedisTemplate(RedisTemplate<String, T> redisTemplate) {
    -    this.redisTemplate = redisTemplate;
    -}
    -
    - -

    Now I added data in redisServer like this

    - -
    public void putData(String uniqueKey, String key, Object results) {
    -
    -    redisTemplate.opsForHash().put(uniqueKey, key, results);
    -}
    -
    - -

    Now i want to remove Expire key.

    - -

    I search in Google, But in google all are saying like this

    - -
    redisTemplate.expire(key, timeout, TimeUnit);
    -
    - -

    In this expire method, We need to provide uniqueKey instead of key. -But I need to Expire key instead of uniqueKey.

    - -

    So Please help me what can i do for expire Key?

    -",HQ -"i want to connect a microcontroller to PC and send wave file form micro to PC and play real-time and save it to PC -i can set a connection with USB between micro and PC to receive array -i should play this array and add next array in real-time without gaps in play -and i use C# to programming ",LQ -"

    I am building a nodejs application that is fairly large now. In an attempt to avoid a monolithic node application I have gone down the architectural route of a more modular system breaking out several components into separate npm modules. These are published using npm and installed in the dependent modules. I have about 6 different modules (which I would want to break out in to more) and now it has become difficult to manage the packages.

    - -

    The problems are:

    - -
      -
    1. There is nested dependency so if I change module A and module B depends on module A and module C depends on module B, then when I update module A I need to publish a new version of it, which then means I need to update it in module B, which means I also need to publish of that and then finally I need to install that new version in module A ... you can see where that might be a pain. What's more the updating of the versions in all the package.json is manual and so error prone, and waiting for each publish is time consuming.
    2. -
    3. Modules can share npm dependencies and so sometimes conflicts occur when packages get updated. The more modules the higher the chance of conflict.
    4. -
    - -

    The benefits are that we have a very modular system where libraries can be reused easily and there is a clear hierarchy of modules enforced as there can't be any circular dependencies.

    - -

    Possible solutions are:

    - -
      -
    1. Monolith - To manage the dependencies as a single app in a single repository with each module just becoming a services. This means that only one update is necessary and all the module apis will be in sync. However, referencing the libraries in the code might be a bit of a pain (as I believe they will have to be referenced relative to the local file), I am not sure how a structural hierarchy between the modules can be enforced and code reuse will be harder with modules outside the repository.

    2. -
    3. Microservices - To make each module a micro service. This maintains all the benefits of the modular system, but I am concerned that it will add a lot of complexity to the build and managing all the services will become a full time job in itself.

    4. -
    5. Keep going - Work out a way to keep the current architecture but remove the trouble of pushing updates etc. Maybe scripts to update versions and shrinkwrap to ensure correct dependencies. I think this would both be difficult and would potentially lead it to being a monolithic system of a different variety.

    6. -
    - -

    Option 1 seems the most manageable to me but I don't want to lose the modular structure if I don't have to.

    - -

    This is quite a broad question, but any suggestions/advice/comments would be really helpful.

    - -

    Thanks

    -",HQ -"

    Is it possible to use SVG image as the base map for leaflet.js ?

    - -

    In my case I have huge svg file and I wish to allow my users to use all of leaflet's features such as zoom, markers, layers.

    -",HQ -"

    Why does Go panic on writing to a closed channel?

    - -

    While one can use the value, ok := <-channel idiom for reading from channels, and thus the ok result can be tested for hitting a closed channel:

    - -
    // reading from closed channel
    -
    -package main
    -
    -import ""fmt""
    -
    -func main() {
    -    ch := make(chan int, 1)
    -    ch <- 2
    -    close(ch)
    -
    -    read(ch)
    -    read(ch)
    -    read(ch)
    -}
    -
    -func read(ch <-chan int) {
    -    i,ok := <- ch   
    -    if !ok {
    -        fmt.Printf(""channel is closed\n"")
    -        return
    -    }
    -    fmt.Printf(""read %d from channel\n"", i)
    -}
    -
    - -

    Output:

    - -
    read 2 from channel
    -channel is closed
    -channel is closed
    -
    - -

    Run ""reading from closed channel"" on Playground

    - -

    Writing to a possibly closed channel is more convoluted, because Go will panic if you simply try to write when the channel is closed:

    - -
    //writing to closed channel
    -
    -package main
    -
    -import (
    -    ""fmt""
    -)
    -
    -func main() {
    -    output := make(chan int, 1) // create channel
    -    write(output, 2)
    -    close(output) // close channel
    -    write(output, 3)
    -    write(output, 4)
    -}
    -
    -// how to write on possibly closed channel
    -func write(out chan int, i int) (err error) {
    -
    -    defer func() {
    -        // recover from panic caused by writing to a closed channel
    -        if r := recover(); r != nil {
    -            err = fmt.Errorf(""%v"", r)
    -            fmt.Printf(""write: error writing %d on channel: %v\n"", i, err)
    -            return
    -        }
    -
    -        fmt.Printf(""write: wrote %d on channel\n"", i)
    -    }()
    -
    -    out <- i // write on possibly closed channel
    -
    -    return err
    -}
    -
    - -

    Output:

    - -
    write: wrote 2 on channel
    -write: error writing 3 on channel: send on closed channel
    -write: error writing 4 on channel: send on closed channel
    -
    - -

    Run ""writing to closed channel"" on Playground

    - -

    As far as I know, there is not a simpler idiom for writing into a possibly closed channel without panicking. Why not? What is the reasoning behind such an asymmetric behavior between read and write?

    -",HQ -"

    Is their a way to tell the CameraCaptureUI, that it should start in fullscreen mode, instead of a small window?

    - -

    my current code from the linked webside:

    - -
    CameraCaptureUI cameraUI = new CameraCaptureUI();
    -
    -Windows.Storage.StorageFile capturedMedia =
    -    await cameraUI.CaptureFileAsync(CameraCaptureUIMode.Video);
    -
    - -

    My Application is based on WinRT for Windows 8.1.

    - -

    On a Win 8 Client the Camera App just start in fullscreen, but with a Win 10 Client it open the Camera App in a small window

    -",HQ -"

    I am sending a Spark job to run on a remote cluster by running

    - -
    spark-submit ... --deploy-mode cluster --files some.properties ...
    -
    - -

    I want to read the content of the some.properties file by the driver code, i.e. before creating the Spark context and launching RDD tasks. The file is copied to the remote driver, but not to the driver's working directory.

    - -

    The ways around this problem that I know of are:

    - -
      -
    1. Upload the file to HDFS
    2. -
    3. Store the file in the app jar
    4. -
    - -

    Both are inconvenient since this file is frequently changed on the submitting dev machine.

    - -

    Is there a way to read the file that was uploaded using the --files flag during the driver code main method?

    -",HQ -"

    I've strange and rare to reproduce crash that happening on iOS 9. The question are How to fix this or What leads to this exception

    - -

    As you can see traces not contains my code and crash happens on app start.

    - -
    Last Exception Backtrace:
    -0   CoreFoundation                       0x0000000180a49900 __exceptionPreprocess + 124
    -1   libobjc.A.dylib                      0x00000001800b7f80 objc_exception_throw + 52
    -2   CoreFoundation                       0x0000000180a497d0 +[NSException raise:format:arguments:] + 104
    -3   Foundation                           0x00000001813bca08 -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:] + 84
    -4   UIKit                                0x00000001859f9f34 _prepareForCAFlush + 252
    -5   UIKit                                0x00000001859ff4f0 _beforeCACommitHandler + 12
    -6   CoreFoundation                       0x0000000180a00588 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 28
    -7   CoreFoundation                       0x00000001809fe32c __CFRunLoopDoObservers + 368
    -8   CoreFoundation                       0x00000001809fe75c __CFRunLoopRun + 924
    -9   CoreFoundation                       0x000000018092d680 CFRunLoopRunSpecific + 380
    -10  GraphicsServices                     0x0000000181e3c088 GSEventRunModal + 176
    -11  UIKit                                0x00000001857a4d90 UIApplicationMain + 200
    -12  MyAppName                            0x000000010009d200 main (main.m:14)
    -13  ???                                  0x00000001804ce8b8 0x0 + 0
    -
    -Thread 0 Crashed:
    -0   libsystem_kernel.dylib               0x00000001805ec140 __pthread_kill + 8
    -1   libsystem_pthread.dylib              0x00000001806b4ef8 pthread_kill + 108
    -2   libsystem_c.dylib                    0x000000018055ddac abort + 136
    -3   MyAppName                            0x0000000100805bcc uncaught_exception_handler + 28
    -4   CoreFoundation                       0x0000000180a49c88 __handleUncaughtException + 648
    -5   libobjc.A.dylib                      0x00000001800b823c _objc_terminate() + 108
    -6   libc++abi.dylib                      0x00000001800aaf44 std::__terminate(void (*)()) + 12
    -7   libc++abi.dylib                      0x00000001800aab10 __cxa_rethrow + 140
    -8   libobjc.A.dylib                      0x00000001800b8120 objc_exception_rethrow + 40
    -9   CoreFoundation                       0x000000018092d728 CFRunLoopRunSpecific + 548
    -10  GraphicsServices                     0x0000000181e3c088 GSEventRunModal + 176
    -11  UIKit                                0x00000001857a4d90 UIApplicationMain + 200
    -12  MyAppName                            0x000000010009d200 main (main.m:14)
    -13  ???                                  0x00000001804ce8b8 0x0 + 0
    -
    -",HQ -"First of all, I have no intention of cheating, I'm just one of these people who tend to see flaws everywhere. - -These days before the job interview you may be required to do online test, most of them have javascript timers (countdown), so you don't have enough time to google the answers. - -But the way I see it (correct me if I'm wrong), timer is just a decreasing variable that once reaches 0 (say) stops the test. I seems that in many cases it is possible to look the source code, find the name of the variable and force-increase it using the console, so you have all time in the world. - -I'm interested is it always possible to manipulate such ""timer"" variable using console, or there are ways to prevent it? - - - -",LQ -"

    Are there any default tables on SqlFiddle that I can query from?

    - -

    I want to try a basic analytical query on a simple table but I don't want to set up the schema and seed data etc.

    - -

    normally I would do something like select * from all_objects

    - -

    ( http://sqlfiddle.com/ )

    -",HQ -"

    I have a started container gigantic_booth and I want to create the directory /etc/test:

    - -
    # docker exec -it gigantic_booth /bin/bash
    -$ mkdir /etc/test
    -$ mkdir: cannot create directory '/etc/test': Permission denied
    -
    - -

    And sudo command is not found. I don't want to create this directory in image-build-time but once is started.

    - -

    How can I do?

    - -

    Thanks :)

    -",HQ -"
    import click
    -
    -@cli.command()
    -@click.argument(""namespace"", nargs=1)
    -def process(namespace):
    -.....
    -
    -@cli.command()
    -def run():
    -    for namespace in KEYS.iterkeys():
    -        process(namespace)
    -
    - -

    Running run('some string') produces:

    - -

    Error: Got unexpected extra arguments (o m e s t r i n g)

    - -

    As if Click passes string argument by one character. Printing an argument shows correct result.

    - -

    PS: KEYS dictionary defined and working as expected.

    -",HQ -"hi want to add a number of tables to my frame , depending on the out come of something - -so put this - - int x=17; - int y=95; - for(int i=0;i<5;i++) - { - table[i].setBounds(x+50,y+50, 525, 44); - contentPane.add(table[i]); - } - -but nothing happing -any one has some sorte of idia",LQ -"

    How can I rename the target during object destructing?

    - -
    const b = 6;
    -const test = { a: 1, b: 2 };
    -const {a, b as c} = test; // <-- `as` does not seem to be valid in ES6/ES2015
    -// a === 1
    -// b === 6
    -// c === 2
    -
    -",HQ -"

    I have seen several other related questions but they all seem to be related to grabbing a still shot every X number of seconds. How can I grab 1 image when the command is run.

    - -

    I was trying

    - -
    ffmpeg -y -i rtsp://admin:admin@192.168.10.113:554/live -f image2 -updatefirst 1 do.jpg
    -
    -",HQ -"

    Does anyone know what properties to set to make a Kendo MVC Textbox Multiline?

    - -
     @(Html.Kendo().TextBox()
    -     .Name(""txtComments"")
    -     .Value(@Model.Comments)
    -     .HtmlAttributes(new { style = ""width:100%"" })
    - )
    -
    - -

    Thanks.

    -",HQ -"

    I want to create a file with content using Google Drive API v3. I have authenticated via OAuth and have the Drive API loaded. Statements like the following work (but produce a file without content):

    - -
    gapi.client.drive.files.create({
    -    ""name"": ""settings"",
    -}).execute();
    -
    - -

    Unfortunately I cannot figure out how to create a file that has a content. I cannot find a JavaScript example using Drive API v3. Are there some special parameters that I need to pass?

    - -

    For simplicity, assume that I have a String like '{""name"":""test""}' that is in JSON format that should be the content of the created file.

    -",HQ -"

    I currently encode and decode images to Base64. I overcame the initial issue with OOM's with the use of streams to encode the images into strings.

    - -

    My issue now is that I cannot fathom how to add multiple Base64 encoded strings for multiple resolutions images (5620 x 3747 - 4.92MB or 3264 x 1836 - 1.35MB) to a JSON Object via Gson. Currently Gson throws an OOM exception only with 2 Base64 Strings from a 5312 x 2988 - 4.95 MB Image.

    - -

    I understand that android may only be able to spare 16/20Mb per application, so this conversion must be way over the limit.

    - -

    How can I write the Base64 String in a stream to a JSON object that will contain the specific values needed to post into my server?

    - -

    Would it be easier to change my server to accept a Multi-Part request instead of a JSON based POJO with multiple Base64 Strings? I currently use Volley and there isn't an official Multi-Part Request as well as IO streaming.

    - -

    If it's a matter of compression, how much compression should I apply to the image before encoding into a Base64 String? I ideally want to lose barely any quality but have optimal compression levels.

    - -

    Bit more Information

    - -

    I am uploading multiple different resolution images as it is a test for compatibility. For example, all the images that I am sending up have been taken on low resolution and extremely high resolution devices as my App relies on these images for functionality. I am trying to prove that any image (to a certain extent, mainly images captured on mobile devices) can be handled by my application.

    - -

    I understand that some images may be so large that by loading them into memory will cause exceptions. This is something I will try and handle later.

    - -

    In some cases the images that will be uploaded can span from 1 to 200.

    - -

    I'm trying to look for the most optimal solution that will scale well.

    -",HQ -"

    I recently retargeted my Windows 8.1 app to Windows 10. I'm getting this error when building the UI projects,

    - -
    ""MSBUILD : error MSB4166: Child node ""2"" exited prematurely. Shutting down. Diagnostic information may be found in files in the temporary files directory named MSBuild_*.failure.txt.""
    -
    - -

    That's not particularly useful, so I went to %temp% looking for said failure log, and it doesn't exist. Am I looking in the wrong ""temp"" directory?

    - -

    What causes this error? I can build my supporting library project without this error.

    -",HQ -"

    So i'm a bit lost on how to implement a retry logic when my upload request fail.

    - -

    Here is my code i would like some guidance on how to do it

    - -
    func startUploading(failure failure: (NSError) -> Void, success: () -> Void, progress: (Double) -> Void) {
    -        DDLogDebug(""JogUploader: Creating jog: \(self.jog)"")
    -
    -        API.sharedInstance.createJog(self.jog,
    -            failure: { error in
    -                failure(error)
    -            }, success: {_ in
    -                success()
    -        })
    -    }
    -
    -",HQ -"

    I am looking to increase the overall width of my HTML Rmarkdown output.

    - -

    When producing PDF documents from Rmarkdowns there is an option to set the margin in the YAML section of the Rmd (ex. geometry: margin=.5in).

    - -

    I am looking for something similar for HTML docs. The following link is a good example of my issue: https://rstudio.github.io/DT/extensions.html

    - -

    As you can see on that html webpage, there is a lot of white space to the left and right of the datatables. Is there a way to reduce this margin space and thus increase the width of the datatables?

    - -

    Thanks

    -",HQ -"currently trying to accomplish the following task adn i using this sql to doit but still not working - -'' DoCmd.RunSQL "" delete tbl_siphon_req_info.* from tbl_siphon_req_info a, tbl_siphon_PO b where concat(a.ross_PO_nbr, a.ross_sku12) = Concat(b.PO_ID, Sbstr(bitem_id,1,12))"" - -if any one can help me to correct and complete what i need to do... thanks - -",LQ -"

    is there possibility to get other pages follower count number in Instagram? -I can get only my profile followers count number, but I want to get other followers too? (for example in php)

    - -

    Any ideas?

    -",HQ -"

    Protocol buffer v3 claims, that library is json friendly (https://developers.google.com/protocol-buffers/docs/proto3#json), but I cannot find how to achieve get that mapping. Should I add some plugin, or some option into protoc, or call something special instead SerializeTo/ParseFrom?

    - -

    Is it someone who use that feature?

    -",HQ -"

    I'm using Unity's Register by convention mechanism in the following scenario:

    - -
    public interface IInterface { }
    -
    -public class Implementation : IInterface { }
    -
    - -

    Given Implementation class and its interface I'm running RegisterTypes in the following way:

    - -
    unityContainer.RegisterTypes(
    -    new[] { typeof(Implementation) },
    -    WithMappings.FromAllInterfaces,
    -    WithName.Default,
    -    WithLifetime.ContainerControlled);
    -
    - -

    After this call, unitContainer contains three registrations:

    - -
      -
    • IUnityContainer -> IUnityContainer (ok)
    • -
    • IInterface -> Implementation (ok)
    • -
    • Implementation -> Implementation (???)
    • -
    - -

    When I change the call as follows:

    - -
    unityContainer.RegisterTypes(
    -    new[] { typeof(Implementation) },
    -    WithMappings.FromAllInterfaces,
    -    WithName.Default);
    -
    - -

    The container contains only two registrations:

    - -
      -
    • IUnityContainer -> IUnityContainer (ok)
    • -
    • IInterface -> Implementation (ok)
    • -
    - -

    (this is the desired behaviour).

    - -

    After peeking into Unity's source code, I've noticed that there is some misunderstanding about how IUnityContainer.RegisterType should work.

    - -

    The RegisterTypes method works as follows (the comments indicate what are the values in the scenarios presented above):

    - -
    foreach (var type in types)
    -{
    -    var fromTypes = getFromTypes(type); // { IInterface }
    -    var name = getName(type);           // null
    -    var lifetimeManager = getLifetimeManager(type); // null or ContainerControlled
    -    var injectionMembers = getInjectionMembers(type).ToArray(); // null
    -
    -    RegisterTypeMappings(container, overwriteExistingMappings, type, name, fromTypes, mappings);
    -
    -    if (lifetimeManager != null || injectionMembers.Length > 0)
    -    {
    -        container.RegisterType(type, name, lifetimeManager, injectionMembers);   // !
    -    }
    -}
    -
    - -

    Because fromTypes is not empty, the RegisterTypeMappings adds one type mapping: IInterface -> Implementation (correct).

    - -

    Then, in case when lifetimeManager is not null, the code attempts to change the lifetime manager with the following call:

    - -
    container.RegisterType(type, name, lifetimeManager, injectionMembers);
    -
    - -

    This function's name is completely misleading, because the documentation clearly states that:

    - -
    -

    RegisterType a LifetimeManager for the given type and name with the container. No type mapping is performed for this type.

    -
    - -

    Unfortunately, not only the name is misleading but the documentation is wrong. When debugging this code, I've noticed, that when there is no mapping from type (Implementation in the scenarios presented above), it is added (as type -> type) and that's why we end up with three registrations in the first scenario.

    - -

    I've downloaded Unity's sources to fix the problem, but I've found the following unit test:

    - -
    [TestMethod]
    -public void RegistersMappingAndImplementationTypeWithLifetimeAndMixedInjectionMembers()
    -{
    -    var container = new UnityContainer();
    -    container.RegisterTypes(new[] { typeof(MockLogger) }, getName: t => ""name"", getFromTypes: t => t.GetTypeInfo().ImplementedInterfaces, getLifetimeManager: t => new ContainerControlledLifetimeManager());
    -
    -    var registrations = container.Registrations.Where(r => r.MappedToType == typeof(MockLogger)).ToArray();
    -
    -    Assert.AreEqual(2, registrations.Length);
    -
    -    // ...
    -
    - -

    - which is almost exactly my case, and leads to my question:

    - -

    Why is this expected? Is it a conceptual mistake, a unit test created to match existing behaviour but not necessarily correct, or am I missing something important?

    - -

    I'm using Unity v4.0.30319.

    -",HQ -"

    Is there any way to specify the input method type for android.support.v7.preference.EditTextPreference?

    -",HQ -"

    I've got this (main parent) component -

    - -
    @RouteConfig([
    -    { path: '/', name: 'ProjectList', component: ProjectListComponent, useAsDefault: true },
    -    { path: '/new', name: 'ProjectNew', component: ProjectFormComponent },
    -    { path: '/:id', name: 'ProjectDetail', component: ProjectDetailComponent },
    -    { path: '/:id/issues/...', name: 'Issue', component: IssueMountComponent },
    -])
    -class ProjectMountComponent {
    -}
    -
    - -

    And then I've got the second mount component (child of main parent, parent of the next component)

    - -
    @Component({
    -        template: `
    -        <div><router-outlet></router-outlet></div>
    -    `,
    -        directives: [RouterLink, RouterOutlet]
    -})
    -@RouteConfig([
    -        { path: ""/"", name: ""IssueList"", component: IssueListComponent, useAsDefault: true },
    -])
    -class IssueMountComponent {
    -    constructor(private _routeParams: RouteParams) {
    -    }
    -}
    -
    - -

    Here I can access the routeParams (:id) without any problem. Now, here's the component where I need the value of :id from the uri.

    - -
    @Component({
    -        template: `
    -        <h3>Issue List</h3>
    -        <ul>
    -            <issue-component *ngFor=""#issue of issues"" [issue]=""issue""></issue-component>
    -        </ul>
    -    `,
    -        directives: [IssueComponent],
    -        providers: [IssueService]
    -})
    -class IssueListComponent implements OnInit {
    -        issues: Issue[];
    -        constructor(private _issueService: IssueService,
    -                                private _routeParams: RouteParams) {}
    -
    -        getIssues() {
    -            let id = this._routeParams.get('id');
    -            console.log(this._routeParams);
    -            this._issueService.getIssues(id).then(issues => this.issues = issues);
    -        }
    -
    -        ngOnInit() {
    -            this.getIssues();
    -        }
    -}
    -
    - -

    In this component, I cannot access the value of the :id route parameter. It's always null. What am I doing wrong?

    - -

    Here's the component hierarchy -

    - -

    ProjectMountComponent -> IssueMountComponent -> IssueListComponent

    -",HQ -"

    Since i've started with angular2 i have setup my services to return Observable of T. In the service i would have the map() call, and components using these services would just use subscribe() to wait for the response. For these simple scenarios i didnt really need to dig in to rxjs so all was ok.

    - -

    I now want to achieve the following: i am using Oauth2 authentication with refresh tokens. I want to build an api service that all other services will use, and that will transparently handle the refresh token when a 401 error is returned. So, in the case of a 401, i first fetch a new token from the OAuth2 endpoint, and then retry my request with the new token. Below is the code that works fine, with promises:

    - -
    request(url: string, request: RequestOptionsArgs): Promise<Response> {
    -    var me = this;
    -
    -    request.headers = request.headers || new Headers();
    -    var isSecureCall: boolean =  true; //url.toLowerCase().startsWith('https://');
    -    if (isSecureCall === true) {
    -        me.authService.setAuthorizationHeader(request.headers);
    -    }
    -    request.headers.append('Content-Type', 'application/json');
    -    request.headers.append('Accept', 'application/json');
    -
    -    return this.http.request(url, request).toPromise()
    -        .catch(initialError => {
    -            if (initialError && initialError.status === 401 && isSecureCall === true) {
    -                // token might be expired, try to refresh token. 
    -                return me.authService.refreshAuthentication().then((authenticationResult:AuthenticationResult) => {
    -                    if (authenticationResult.IsAuthenticated == true) {
    -                        // retry with new token
    -                        me.authService.setAuthorizationHeader(request.headers);
    -                        return this.http.request(url, request).toPromise();
    -                    }
    -                    return <any>Promise.reject(initialError);
    -                });
    -            }
    -            else {
    -                return <any>Promise.reject(initialError);
    -            }
    -        });
    -}
    -
    - -

    In the code above, authService.refreshAuthentication() will fetch the new token and store it in localStorage. authService.setAuthorizationHeader will set the 'Authorization' header to previously updated token. If you look at the catch method, you'll see that it returns a promise (for the refresh token) that in its turns will eventually return another promise (for the actual 2nd try of the request).

    - -

    I have attempted to do this without resorting to promises:

    - -
    request(url: string, request: RequestOptionsArgs): Observable<Response> {
    -    var me = this;
    -
    -    request.headers = request.headers || new Headers();
    -    var isSecureCall: boolean =  true; //url.toLowerCase().startsWith('https://');
    -    if (isSecureCall === true) {
    -        me.authService.setAuthorizationHeader(request.headers);
    -    }
    -    request.headers.append('Content-Type', 'application/json');
    -    request.headers.append('Accept', 'application/json');
    -
    -    return this.http.request(url, request)
    -        .catch(initialError => {
    -            if (initialError && initialError.status === 401 && isSecureCall === true) {
    -                // token might be expired, try to refresh token
    -                return me.authService.refreshAuthenticationObservable().map((authenticationResult:AuthenticationResult) => {
    -                    if (authenticationResult.IsAuthenticated == true) {
    -                        // retry with new token
    -                        me.authService.setAuthorizationHeader(request.headers);
    -                        return this.http.request(url, request);
    -                    }
    -                    return Observable.throw(initialError);
    -                });
    -            }
    -            else {
    -                return Observable.throw(initialError);
    -            }
    -        });
    -}
    -
    - -

    The code above does not do what i expect: in the case of a 200 response, it properly returns the response. However, if it catches the 401, it will successfully retrieve the new token, but the subscribe wil eventually retrieve an observable instead of the response. Im guessing this is the unexecuted Observable that should do the retry.

    - -

    I realize that translating the promise way of working onto the rxjs library is probably not the best way to go, but i havent been able to grasp the ""everything is a stream"" thing. I have tried a few other solutions involving flatmap, retryWhen etc ... but didnt get far, so some help is appreciated.

    -",HQ -"

    I am currently working on an android app which is implementing the Spotify API. I have all of the code connecting my app to spotify using the tutorial and have been working on my app for sometime now. When I play a song through my app after authenticating the user, it works perfectly, that is on my emulator. When I switch it over to my phone it didn't work and gave me an INVALID_APP_ID error in the android response. When I uninstalled spotify off my phone and then tried to login to spotify through my app, I was then able to play music from my phone without any crashes. So my question is how do I fix that? Here is my code for authenticating a user:

    - -
    @Override
    -    protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
    -        super.onActivityResult(requestCode, resultCode, intent);
    -
    -        // Check if result comes from the correct activity
    -        if (requestCode == requestcode) {
    -            AuthenticationResponse response = AuthenticationClient.getResponse(resultCode, intent);
    -            if (response.getType() == AuthenticationResponse.Type.TOKEN) {
    -                Config playerConfig = new Config(this, response.getAccessToken(), client_id);
    -                token = response.getAccessToken();
    -                Spotify.getPlayer(playerConfig, this, new Player.InitializationObserver() {
    -                    @Override
    -                    public void onInitialized(Player player) {
    -                        mPlayer = player;
    -                        mPlayer.addConnectionStateCallback(.this);
    -                        mPlayer.addPlayerNotificationCallback(.this);
    -
    -                    }
    -
    -                    @Override
    -                    public void onError(Throwable throwable) {
    -                        Log.e(""MainActivity"", ""Could not initialize player: "" + throwable.getMessage());
    -                    }
    -                });
    -            }
    -        }
    -    }
    -
    -",HQ -"

    Is there a way to access the routerParams in the redirecTo-Statement?

    - -

    I want to pass the orderId of the 'Order' route to the 'OrderDashboard' route but I can't figure out what to write instead of ???

    - -

    If I replace ??? with 3 all works fine (in case the user only is intrested in order number 3 ;-) )

    - -

    {path: '/:orderId', name: 'Order', redirectTo: ['OrderDashboard', {orderId:???}]} - {path: '/:orderId/dashboard', name: 'OrderDashboard'}

    -",HQ -"

    I would like to test my application on PHP 5.3 up to PHP 7.0.

    - -

    Where and how can I install the versions and how can I switch them by running a small script?

    -",HQ -"

    I have a spring application whith configuration classes where instance the beans.

    - -

    Aplication class:

    - -
    @Configuration
    -@EnableAspectJAutoProxy
    -@EnableSpringDataWebSupport
    -@EnableTransactionManagement
    -@ComponentScan(basePackageClasses = Application.class)
    -@PropertySource(value = {""classpath:foo.properties""})
    -@EnableJpaRepositories(basePackageClasses = Application.class)
    -@EnableJpaAuditing
    -public class Application {
    -
    -    @Inject
    -    private Environment env;
    -
    -    @Bean
    -    JndiTemplate jndiTemplate() {
    -        return new JndiTemplate();
    -    }
    -
    -    @Bean
    -    public DataSource dataSource() {        
    -        DataSource dataSource = getDataSource();
    -        if (dataSource == null) {
    -            dataSource = new BasicDataSource();
    -            ((BasicDataSource) dataSource).setUsername(env.getProperty(""jdbc.user""));
    -            ((BasicDataSource) dataSource).setPassword(env.getProperty(""jdbc.password""""));
    -
    -            ((BasicDataSource) dataSource).setDriverClassName(env.getProperty(""jdbc.driverClassName""));
    -            ((BasicDataSource) dataSource).setUrl(env.getProperty(""jdbc.url""));
    -        }
    -        return dataSource;
    -    }
    -
    -    @Bean
    -    public PlatformTransactionManager transactionManager() {
    -        EntityManagerFactory factory = entityManagerFactory().getObject();
    -        return new JpaTransactionManager(factory);
    -    }
    -
    -    //....
    -}
    -
    - -

    MvcConfiguration class:

    - -
    @Configuration
    -@ComponentScan(basePackageClasses = Application.class, includeFilters = @Filter({Controller.class, Component.class}), useDefaultFilters = true)
    -class MvcConfiguration extends WebMvcConfigurationSupport {
    -    private static final String MESSAGES = ""classpath:/i18n"";
    -
    -    private static final String VIEW_PREFIX = ""/WEB-INF/views/"";
    -
    -    @Inject
    -    private Environment env;
    -
    -    @Override
    -    public RequestMappingHandlerMapping requestMappingHandlerMapping() {
    -        RequestMappingHandlerMapping requestMappingHandlerMapping = super.requestMappingHandlerMapping();
    -        requestMappingHandlerMapping.setUseSuffixPatternMatch(false);
    -        requestMappingHandlerMapping.setUseTrailingSlashMatch(true);
    -
    -        return requestMappingHandlerMapping;
    -    }
    -
    -    @Bean(name = ""messageSource"")
    -    public MessageSource messageSource() {
    -        ReloadableResourceBundleMessageSource messageSource = new ReloadableResourceBundleMessageSource();
    -        messageSource.setBasename(MESSAGES);
    -        messageSource.setCacheSeconds(5);
    -
    -        return messageSource;
    -    }
    -
    -    @Override
    -    public void addResourceHandlers(ResourceHandlerRegistry registry) {
    -        registry.addResourceHandler(""/static/"").addResourceLocations(""/static/**"");
    -    }
    -
    -    @Bean
    -    public MultipartResolver filterMultipartResolver(){
    -        CommonsMultipartResolver resolver = new CommonsMultipartResolver();
    -        resolver.setMaxUploadSize(Long.parseLong(env.getProperty(""multipart.max.size"")));
    -        return resolver;
    -    }
    -
    -    //....
    -
    -}
    -
    - -

    And SecurityConfiguration class:

    - -
    @Configuration
    -@EnableWebSecurity
    -@EnableGlobalMethodSecurity(prePostEnabled = true)
    -class SecurityConfiguration extends WebSecurityConfigurerAdapter {
    -
    -    @Bean
    -    public PasswordEncoder passwordEncoder() {
    -        return new BCryptPasswordEncoder();
    -    }
    -
    -
    -    //....
    -
    -    @Override
    -    protected void configure(HttpSecurity http) throws Exception {
    -        //Logout por POST con el valor de token csrf
    -        http.authorizeRequests()
    -                .antMatchers(""/static/**"").permitAll()
    -                .anyRequest().authenticated()
    -                .and()
    -            .formLogin()
    -                .loginPage(""/login"")
    -                .permitAll()
    -                .failureUrl(""/login?error=1"")
    -                .loginProcessingUrl(""/authenticate"")
    -                .and()
    -            .logout()
    -                .logoutUrl(""/logout"")
    -                .logoutSuccessUrl(""/signin"")
    -                .permitAll();
    -    }
    -
    -}
    -
    - -

    How I can test them with JUnit? How to test the beans are created in the spring context?

    -",HQ -"I have a project about cars with GPS. I need to return the start and the finish moment for each car. Please help me! - -So we have : -time_t x, y; -Because I will use later them for a transformation. - - - - I have a problem! I read from an external file data in this format: - auto1 - 1439467747492 - auto1 - 1439467748512 - ......etc. - auto1->name of the car; 1439467747492->the moment in time of the car - - I tried to get the first position of the first moment and the last moment for each car. This is the code in C++: - - void raportDistanta(/**/, long long momenti[], long long momentf[]) - n=m=1; - if (g.is_open()) - { - //momenti,momentf---arrays type long long because a moment has 13 digits - //momenti=saves the start moments for each car - //momentf=saves the final moments for each car - momenti[n++] = a[0].getMoment(); - for (i = 0; i < nr - 1; i++) - { - if (strcmp(a[i].getnume(), a[i + 1].getnume()) == 0) - { - //here i try to get the distance between two points. The car in the moment i and i+1 - // I failed doing that...I don't transform the latitude and longitude properly and I get bad numbers. anyway.... - } - else - { //Here I put - momenti[n++] = a[i + 1].getMoment(); - momentf[m++] = a[i].getMoment(); - - } - } - momentf[m++] = a[nr1].getMoment(); - - - After this i do in main something like that: - ** - - x = momenti[choice1] / 1000; - y = momentf[choice1] / 1000; - cout << "" Moment i:\n "" << ctime(&x) << "" Moment final: \n"" << ctime(&y) << endl; - - - - I receive the same date for every car. Is something like momenti[i]=momentf[i] - What I did wrong? Thanks!",LQ -"

    So I just set one of my indices to readonly, and now want to delete it.

    - -

    To set it to readonly:

    - -
    PUT my_index/_settings
    -{ ""index"": { ""index.blocks.read_only"" : true } }
    -
    - -

    When I tried to delete it I got this response:

    - -
    ClusterBlockException[blocked by: [FORBIDDEN/5/index read-only (api)];]
    -
    - -

    Then I tried to set the index to readonly false:

    - -
    PUT my_index/_settings
    -{ ""index"": { ""index.blocks.read_only"" : false } }
    -
    - -

    But that gives the same error message as above. So how to set readonly back to false?

    -",HQ -"

    Using django's ORM annotate() and/or aggregate(): I want to sum up based on one category field and then average over the category values per date. I tried to do it using two annotate() statements but got a FieldError.

    - -

    I'm doing this:

    - -
    queryset1 = self.data.values('date', 'category').annotate(sum_for_field=Sum('category'))
    -
    - -

    Which outputs a ValuesQuerySet object with things like (so a sum for each value of category):

    - -
    [{'category': 'apples', 'date': '2015-10-12', sum_for_field=2000},
    - {'category': 'carrots', 'date': '2015-10-12', sum_for_field=5000},
    - {'category': 'apples', 'date': '2015-10-13', sum_for_field=3000},
    - {'category': 'carrots', 'date': '2015-10-13', sum_for_field=6000}, ...
    -]
    -
    - -

    I then want to average the sum_for_field field for each date to output something like:

    - -
    [ {'date': '2015-10-12', avg_final: 3500},
    -{'date': '2015-10-13', avg_final: 4500}, ...
    -]
    -
    - -

    I tried doing this:

    - -
    queryset2 = queryset1.values('date', 'sum_for_field')
    -result = queryset2.annotate(avg_final=Avg('sum_for_field'))
    -
    - -

    But I got this FieldError:

    - -
    FieldError: FieldError: Cannot compute Avg('sum_for_field'): 'sum_for_field' is an aggregate
    -
    -",HQ -"How would I limit the tries of a simple game to just three? I would think you would use a boolean. But not sure. - - import java.util.Scanner; - -public class guess { - - public static void main(String[] args) { - - int randomN = (int) (Math.random() * 10) + 1; - - Scanner input = new Scanner(System.in); - int guess; - System.out.println(""Enter a number between 1 and 10.""); - System.out.println(); - - do { - System.out.print(""Enter your guess: ""); - guess = input.nextInt(); - - if (guess == randomN) { - System.out.println(""You won!""); - } else if (guess > randomN) { - - System.out.println(""Too high""); - } else if (guess < randomN) { - System.out.println(""Too low""); - } - - - } while (guess != randomN); - } - -}",LQ -"

    In the middle of development it threw an error at me complaining about gradle plugin being too old (was 2.0.0-alpha3, changed to 2.0.0-alpha5 and worked. Hurrah!). Then it complained about distributionUrl pointing to an also outdated piece of software. I have Overcome that as well. Now google nailed me with

    - -
        Error:Execution failed for task ':app:buildInfoDebugLoader'.
    -> Exception while loading build-info.xml : null
    -
    - -

    Invalidate + restart didnt do the trick. What next ?

    -",HQ -"

    How to get only one column as one dimentional array in laravel 5.2 using eloquent?

    - -

    I have tried:

    - -
    $array = Word_relation::select('word_two')->where('word_one', $word_id)->get()->toArray();
    -
    - -

    but this one gives it as 2 dimentional array like:

    - -
    array(2) {
    -      [0]=>
    -      array(1) {
    -        [""word_one""]=>
    -        int(2)
    -      }
    -      [1]=>
    -      array(1) {
    -        [""word_one""]=>
    -        int(3)
    -      }
    -    }
    -
    - -

    but I want to get it as:

    - -
    array(2) {
    -    [0]=>2
    -    [1]=>3
    -}
    -
    -",HQ -"So I'm trying to get my display method to work... - - private static displayResults(String gender,int age,String rateResult); - { - System.out.Println(""Thank you""); - System.out.println(""the ""+ gender + "" is "" + age + "" years old.""); - System.out.println(""the rate class is: "" + rateResult); - } - -**My Error____ ps/ took out string but i get the same error.... what am i missing??** - -RentalRates.java:163: error: illegal start of expression - -private static String displayResults(gender,int age,rateResult); - ^ -RentalRates.java:163: error: illegal start of expression - -private static String displayResults(gender,int age,rateResult); - ^ -RentalRates.java:163: error: ';' expected - -private static String displayResults(gender,int age,rateResult); - ^ -RentalRates.java:163: error: '.class' expected - -private static String displayResults(gender,int age,rateResult); - ^ -RentalRates.java:163: error: ';' expected - -private static String displayResults(gender,int age,rateResult); - ^ -RentalRates.java:163: error: not a statement - -private static String displayResults(gender,int age,rateResult); - ^ -RentalRates.java:163: error: ';' expected - -private static String displayResults(gender,int age,rateResult); - ^ -RentalRates.java:169: error: reached end of file while parsing -}",LQ -"

    Okay...

    - -

    I have searched and searched looking for an answer that directly answers my question, but have had no success. My problem is pretty straight forward and I honestly thought there would have been a more direct answer out there. Please keep in mind I am still relatively new to the language, and am still learning.

    - -

    So I will use fileA and fileB as my two files, and x as my example variable. Variable x is contained in fileB. How do I go about importing variable x into fileA, then change x to another value via raw_input, and then have the variable x update in fileB with the new value?

    - -

    I'm not sure if this is even possible, but I would sure like to think so. I am using python 2.7.11, thank you in advanced.

    -",HQ -"

    What is the most efficient way to get all records with a datetime field that falls somewhere between yesterday at 00:00:00 and yesterday at 23:59:59?

    - -

    Table:

    - -
    id    created_at
    -1     2016-01-19 20:03:00
    -2     2016-01-19 11:12:05
    -3     2016-01-20 03:04:01
    -
    - -

    Suppose yesterday was 2016-01-19, then in this case all I'd want to return is rows 1 and 2.

    -",HQ -"

    Some apps we have depend on being connected to our VPN to connect to different (not-yet dockerized)solutions.

    - -

    What is the 'docker way' of doing this? In my mind adding OpenVPN to an existing image is against the docker philosophy.

    - -

    From where I'm standing I feel that creating a docker VPN client container makes the most sense. But what would that look like? I use docker compose, so there would definitely be a

    - -
    myContainer
    -- links: myVPNClient
    -
    - -

    but would I then have to forward ports? Or what would have to happen to enable myContainer to connect through the openVPN container.

    -",HQ -"I have problem get data from HTML form store value into redis database when user submit. Use Nickel web framework, this is code: - - fn save_db<'a>(req: &mut Request, res: Response<'a>) -> MiddlewareResult<'a>{ - let mut server = Nickel::new(); - /* FIXME: connect redis*/ - let client = Client::open(""redis://127.0.0.1/"").unwrap(); - let conn = client.get_connection().unwrap(); - - server.post(""/confirmation"", middleware!{|req, res| - let mut form_data = String::new(); - req.origin.read_to_string(&mut form_data).unwrap(); - let _: ()= conn.set(""contents"",form_data).unwrap(); - println!(""{}"", form_data); - - let mut data = HashMap::<&str,String>::new(); - data.insert(""content"", form_data); - data.insert(""page_title"", ""Save blog data"".to_string()); - return res.render(""app/views/blog/save.tpl"", &data); - }); - } - - //error: cannot infer an appropriate lifetime for lifetime parameter `'b` due to conflicting requirements [E0495](req.origin.read_to_string(&mut form_data).unwrap();)",LQ -"

    I hear these terms together and wonder what is the difference? How are they related to continuous builds and continuous deployments?

    -",HQ -"

    In UWP apps, how can you group and sort an ObservableCollection and keep all the live notification goodness?

    - -

    In most simple UWP examples I've seen, there is generally a ViewModel that exposes an ObservableCollection which is then bound to a ListView in the View. -When items are added or removed from the ObservableCollection, the ListView automatically reflects the changes by reacting to the INotifyCollectionChanged notifications. This all works fine in the case of an unsorted or ungrouped ObservableCollection, but if the collection needs to be sorted or grouped, there seems to be no readily apparent way to preserve the update notifications. What's more, changing the sort or group order on the fly seems to throw up significant implementation issues.

    - -

    ++

    - -

    Take a scenario where you have an existing datacache backend that exposes an ObservableCollection of very simple class Contact.

    - -
    public class Contact
    -{
    -    public string FirstName { get; set; }
    -    public string LastName { get; set; }
    -    public string State { get; set; }
    -}
    -
    - -

    This ObservableCollection changes over time, and we want to present a realtime grouped and sorted list in the view that updates -in response to changes in the datacache. We also want to give the user the option to switch the grouping between LastName and State on the fly.

    - -

    ++

    - -

    In a WPF world, this is relatively trivial. -We can create a simple ViewModel referencing the datacache that presents the cache's Contacts collection as-is.

    - -
    public class WpfViewModel 
    -{
    -    public WpfViewModel()
    -    {
    -        _cache = GetCache();
    -    }
    -
    -    Cache _cache;
    -
    -    public ObservableCollection<Contact> Contacts
    -    {
    -        get { return _cache.Contacts; }
    -    }
    -}
    -
    - -

    Then we can bind this to a view where we implement a CollectionViewSource and Sort and Group definitions as XAML resources.

    - -
    <Window .....
    -   xmlns:scm=""clr-namespace:System.ComponentModel;assembly=WindowsBase"">
    -
    -   <Window.DataContext>
    -      <local:WpfViewModel />
    -   </Window.DataContext>
    -
    -    <Window.Resources>
    -        <CollectionViewSource x:Key=""cvs"" Source=""{Binding Contacts}"" />
    -        <PropertyGroupDescription x:Key=""stategroup"" PropertyName=""State"" />
    -        <PropertyGroupDescription x:Key=""initialgroup"" PropertyName=""LastName[0]"" />
    -        <scm:SortDescription x:Key=""statesort"" PropertyName=""State"" Direction=""Ascending"" />
    -        <scm:SortDescription x:Key=""lastsort"" PropertyName=""LastName"" Direction=""Ascending"" />
    -        <scm:SortDescription x:Key=""firstsort"" PropertyName=""FirstName"" Direction=""Ascending"" />
    -    </Window.Resources>
    -
    -    <Grid>
    -        <Grid.RowDefinitions>
    -            <RowDefinition Height=""*"" />
    -            <RowDefinition Height=""Auto"" />
    -        </Grid.RowDefinitions>
    -
    -        <ListView ItemsSource=""{Binding Source={StaticResource cvs}}"">
    -            <ListView.ItemTemplate>
    -                <DataTemplate>
    -                    <Grid>
    -                        <Grid.ColumnDefinitions>
    -                            <ColumnDefinition Width=""100"" />
    -                            <ColumnDefinition Width=""100"" />
    -                            <ColumnDefinition Width=""*"" />
    -                        </Grid.ColumnDefinitions>
    -                        <TextBlock Text=""{Binding LastName}"" />
    -                        <TextBlock Text=""{Binding FirstName}"" Grid.Column=""1"" />
    -                        <TextBlock Text=""{Binding State}"" Grid.Column=""2"" />
    -                    </Grid>
    -                </DataTemplate>
    -            </ListView.ItemTemplate>
    -            <ListView.GroupStyle>
    -                <GroupStyle>
    -                    <GroupStyle.HeaderTemplate>
    -                        <DataTemplate>
    -                            <Grid Background=""Gainsboro"">
    -                                <TextBlock FontWeight=""Bold"" 
    -                                           FontSize=""14"" 
    -                                           Margin=""10,2""
    -                                           Text=""{Binding Name}""/>
    -                            </Grid>
    -                        </DataTemplate>
    -                    </GroupStyle.HeaderTemplate>
    -                </GroupStyle>
    -            </ListView.GroupStyle>
    -        </ListView>
    -
    -        <StackPanel Orientation=""Horizontal"" Grid.Row=""1"">
    -            <Button Content=""Group By Initial"" Click=""InitialGroupClick"" />
    -            <Button Content=""Group By State"" Click=""StateGroupClick"" />
    -        </StackPanel>
    -
    -    </Grid>
    -</Window>
    -
    - -

    Then when the user clicks on the GroupBy buttons at the bottom of the window we can we can group and sort on the fly in code-behind.

    - -
    private void InitialGroupClick(object sender, RoutedEventArgs e)
    -{
    -     var cvs = FindResource(""cvs"") as CollectionViewSource;
    -     var initialGroup = (PropertyGroupDescription)FindResource(""initialgroup"");
    -     var firstSort = (SortDescription)FindResource(""firstsort"");
    -     var lastSort = (SortDescription)FindResource(""lastsort"");
    -
    -     using (cvs.DeferRefresh())
    -     {
    -         cvs.GroupDescriptions.Clear();
    -         cvs.SortDescriptions.Clear();
    -         cvs.GroupDescriptions.Add(initialGroup);
    -         cvs.SortDescriptions.Add(lastSort);
    -         cvs.SortDescriptions.Add(firstSort);
    -     }
    -}
    -
    -private void StateGroupClick(object sender, RoutedEventArgs e)
    -{
    -     var cvs = FindResource(""cvs"") as CollectionViewSource;
    -     var stateGroup = (PropertyGroupDescription)FindResource(""stategroup"");
    -     var stateSort = (SortDescription)FindResource(""statesort"");
    -     var lastSort = (SortDescription)FindResource(""lastsort"");
    -     var firstSort = (SortDescription)FindResource(""firstsort"");
    -
    -     using (cvs.DeferRefresh())
    -     {
    -         cvs.GroupDescriptions.Clear();
    -         cvs.SortDescriptions.Clear();
    -         cvs.GroupDescriptions.Add(stateGroup);
    -         cvs.SortDescriptions.Add(stateSort);
    -         cvs.SortDescriptions.Add(lastSort);
    -         cvs.SortDescriptions.Add(firstSort);
    -     }
    -}
    -
    - -

    This all works fine, and the items are updated automatically as the data cache collection changes. The Listview grouping and selection remains unaffected by collection changes, and the new contact items are correctly grouped.The grouping can be swapped between State and LastName initial by user at runtime.

    - -

    ++

    - -

    In the UWP world, the CollectionViewSource no longer has the GroupDescriptions and SortDescriptions collections, and sorting/grouping need to be carried out at the ViewModel level. The closest approach to a workable solution I've found is along the lines of Microsoft's sample package at

    - -

    https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/XamlListView

    - -

    and this article

    - -

    http://motzcod.es/post/94643411707/enhancing-xamarinforms-listview-with-grouping

    - -

    where the ViewModel groups the ObservableCollection using Linq and presents it to the view as an ObservableCollection of grouped items

    - -
    public ObservableCollection<GroupInfoList> GroupedContacts
    -{
    -    ObservableCollection<GroupInfoList> groups = new ObservableCollection<GroupInfoList>();
    -
    -    var query = from item in _cache.Contacts
    -                group item by item.LastName[0] into g
    -                orderby g.Key
    -                select new { GroupName = g.Key, Items = g };
    -
    -    foreach (var g in query)
    -    {
    -         GroupInfoList info = new GroupInfoList();
    -         info.Key = g.GroupName;
    -         foreach (var item in g.Items)
    -         {
    -             info.Add(item);
    -         }
    -         groups.Add(info);
    -    }
    -
    -    return groups;
    -}
    -
    - -

    where GroupInfoList is defined as

    - -
    public class GroupInfoList : List<object>
    -{
    -   public object Key { get; set; }
    -}
    -
    - -

    This does at least get us a grouped collection displayed in the View, but updates to the datacache collection are no longer reflected in real time. We could capture the datacache's CollectionChanged event and use it in the viewmodel to refresh the GroupedContacts collection, but this creates a new collection for every change in the datacache, causing the ListView to flicker and reset selection etc which is clearly suboptimal.

    - -

    Also swapping the grouping on the fly would seem to require a completely seperate ObservableCollection of grouped items for each grouping scenario, and for the ListView's ItemSource binding to be swapped at runtime.

    - -

    The rest of what I've seen of the UWP environment seems extremely useful, so I'm surprised to find something as vital as grouping and sorting lists throwing up obstacles...

    - -

    Anyone know how to do this properly?

    -",HQ -"

    So I can picture what an algorithm is that has a complexity of n^c, just the number of nested for loops.

    - -
    for (var i = 0; i < dataset.len; i++ {
    -    for (var j = 0; j < dataset.len; j++) {
    -        //do stuff with i and j
    -    }
    -}
    -
    - -

    Log is something that splits the data set in half every time, binary search does this (not entirely sure what code for this looks like).

    - -

    But what is a simple example of an algorithm that is c^n or more specifically 2^n. Is O(2^n) based on loops through data? Or how data is split? Or something else entirely?

    -",HQ -"

    I have an Xcode workspace that uses CocoaPods to include several third-party frameworks. I would like to edit a line of source code within one of these dependencies. However, when I do so, Xcode warns me that the file is locked and that any changes I make may not be saved. So my question is: will my changes to the source code be discarded when I run a pod install/update? If not, is there any other scenario, possibly unrelated to CocoaPods, that would discard my changes? And finally, is there any good way that I can edit the source code without running into such problems?

    - -

    Thanks in advance.

    -",HQ -"I have an existing maven project for java services So is there any way to identify archetype from pom file or is there any way? - -The folder structure for this project is: - -src/test/java - -src/main/java - -src/main/resource - -And it has ""Referenced Libraries"" not ""Maven Dependencies"". - -Can anyone please let me know which archetype was selected from the list maven archetypes. ",LQ -"

    I have Postgresql 9.3 and 9.4 installed on my Linux Mint machine. How can I restart postgresql 9.4? A method to restart both versions together is also fine.

    -",HQ -"

    i added QTStatic to QT Versions, but i cant use this version to build and set in kits tab.

    - -

    i uploaded screenshot below : (plz help)

    - -

    Versions Tab Screenshot

    - -

    Kits Tab Screenshot

    -",HQ -"I want to select two columns, for the example one name x and the other one is y -for to get x data I need to write in the where clause IsTure='no' and count the the id by grouping by date. - -and for y in need to count the id by different where clause and group by date also. -and the date field is different for x and y -It should like this : - -Id Date x y - - - -How can I implement this kind of query ? -Thanks",LQ -"I have php code to display information messages returned. But this is not working. -As this is an example of the codes: - - - (No reply) - - ( time reply) - - -How to fix?",LQ -"

    Currently i'm monitoring docker containers via Prometheus.io. My problem is that i'm just getting ""cpu_user_seconds_total"" or ""cpu_system_seconds_total"". My question is how to convert this ever-increasing value to a CPU percentage?

    - -

    Currently i'm querying:

    - -
    rate(container_cpu_user_seconds_total[30s])
    -
    - -

    But I don't think that it is quite correct (comparing to top).

    - -

    How to convert cpu_user_seconds_total to CPU percentage? (Like in top)

    -",HQ -"

    I'm trying to inject component of configuration properties in the flyway migration java code but it always null.

    - -

    I'm using spring boot with Flyway.

    - -
    @Component
    -@ConfigurationProperties(prefix = ""code"")
    -public class CodesProp {
    -
    -    private String codePath;
    - }
    -
    - -

    Then inside Flyway migration code, trying to autowrire this component as following:

    - -
    public class V1_4__Migrate_codes_metadata implements SpringJdbcMigration {
    -
    -@Autowired
    -private CodesProp codesProp ;
    -public void migrate(JdbcTemplate jdbcTemplate) throws Exception {
    -    codesProp.getCodePath();  
    -}
    -
    - -

    Here, codesProp is always null.

    - -

    Is there any way to inject spring beans inside flyway or make it initialized before flyway bean?

    - -

    Thank You.

    -",HQ -"it's my first time using R - I've only used SPSS before and this is all very confusing for me. - -I'm having trouble plotting 2 ablines on a graph of the log10 Brain mass and log10 body mass. I'm following someone else's script but it just doesn't work for me. This is what I have: [Click me][1] -(I've taken a screenshot of it because when I write it out here it comes out all weird ;_;) - -This is the graph produced: -[Click me!][2] - -Why are the lines off there like that? Are the values I'm getting for the intercept and slope incorrect, or am I using the wrong ones? I've done other examples of this and its worked ok, but I've always ended up using the first model, never the second one so I'm not sure if I'm using the right values. - -Thank you :) - - - [1]: http://i.stack.imgur.com/pjWTl.png - [2]: http://i.stack.imgur.com/I0Cla.png",LQ -"I have csv input file in perl which is tab separated. -I would like to add a check if it find anything other than tab as field separator then it should through error message.I am new to perl I don't know how to check. -example of my input file:My file having only two field. -10001027^I1000102713921-1274^M$ -10010121^I1001012113921-1234^M$ -10000104^I10010126139211-9999^M$ -10010119^I10010126139211-9999^M$ -Thanks - -",LQ -"I have a requirement to access value inside an object return from an API response in PHP. -API response - - $res = { - ""data"": { - ""first_name"": ""Dany"", - ""last_name"": ""mate"", - ""id"": ""1379933133290837510"", - ""image"": { - ""60x60"": { - ""url"": ""https://s-media-cache-ak0.pinimg.com/avatars/dtest_1438666564_60.jpg"", - ""width"": 60, - ""height"": 60 - } - } - } - } - -How to access the parameters ""first_name"" & ""url""? Your help is much appreciated. I have tried to convert the response in to an array but not worked - - $array = get_object_vars($res); -I don't know is it the correct way to do this?",LQ -"I am trying to view word file in my editor pane -I tried these lines - - - - import java.awt.Dimension; - import java.awt.GridLayout; - import java.io.File; - import java.io.FileInputStream; - import javax.swing.JEditorPane; - import org.apache.poi.hwpf.HWPFDocument; - import org.apache.poi.hwpf.extractor.WordExtractor; - - public class editorpane extends JEditorPane - { - public editorpane(File file) - { - - try - { - FileInputStream fis = new FileInputStream(file.getAbsolutePath()); - HWPFDocument hwpfd = new HWPFDocument(fis); - WordExtractor we = new WordExtractor(hwpfd); - String[] array = we.getParagraphText(); - for (int i = 0; i < array.length; i++) - { - this.setPage(array[i]); - } - - } catch (Exception e) - { - e.printStackTrace(); - } - - -but gives me - - org.apache.poi.poifs.filesystem.OfficeXmlFileException: The supplied data appears to be in the Office 2007+ XML. You are calling the part of POI that deals with OLE2 Office Documents. You need to call a different part of POI to process this data (eg XSSF instead of HSSF) - at org.apache.poi.poifs.storage.HeaderBlock.(HeaderBlock.java:131) - at org.apache.poi.poifs.storage.HeaderBlock.(HeaderBlock.java:104) - at org.apache.poi.poifs.filesystem.POIFSFileSystem.(POIFSFileSystem.java:138) - at org.apache.poi.hwpf.HWPFDocumentCore.verifyAndBuildPOIFS(HWPFDocumentCore.java:106) - at org.apache.poi.hwpf.HWPFDocument.(HWPFDocument.java:174) - at frame1.editorpane.(editorpane.java:24) - - -in this line - - HWPFDocument hwpfd = new HWPFDocument(fis); - -how can I solve that ?? - -beside I am not sure about these lines - - for (int i = 0; i < array.length; i++) - { - this.setPage(array[i]); - } -can I get them confirmed ?? - - -",LQ -"is there a way of compressing this if statement. - - - var alive1 = true - if (x2 >= (x10 - 10) && x2 <= (x10 + 10) && y2 >= (y10 - 10) && y2 <= (y10 + 10) || x3 >= (x10 - 10) && x3 <= (x10 + 10) && y3 >= (y10 - 10) && y3 <= (y10 + 10) || x4 >= (x10 - 10) && x4 <= (x10 + 10) && y4 >= (y10 - 10) && y4 <= (y10 + 10) || x5 >= (x10 - 10) && x5 <= (x10 + 10) && y5 >= (y10 - 10) && y5 <= (y10 + 10)|| x6 >= (x10 - 10) && x6 <= (x10 + 10) && y6 >= (y10 - 10) && y6 <= (y10 + 10)) { - alive1 = false; - }",LQ -"

    I have had a play with react native creating ios apps but have not tried android yet. With android you also get 'android wear' for watches etc, will react native work creating apps for those devices?

    -",HQ -"

    jsfiddle : https://jsfiddle.net/leiming/5e6rtgwd/

    - -

    -
    -
    class Sample extends React.Component {
    -
    -  onInputFocus(event) {
    -    console.log('react input focus')
    -  }
    -
    -  onSpanFocus(event) {
    -    console.log('react span focus')
    -      // event.stopPropagation()
    -  }
    -
    -  render() {
    -    return ( <span onFocus = {this.onSpanFocus}>
    -      react input: <input type=""text""
    -      onFocus = {this.onInputFocus} />
    -      </span> )
    -  }
    -}
    -
    -ReactDOM.render( < Sample / > ,
    -  document.getElementById('container')
    -);
    -
    <div id=""container"">
    -  <!-- This element's contents will be replaced with your component. -->
    -</div>
    -
    -<div>
    -  <span onfocus=""(function(){console.log('normal span')})()"">
    -  normal input:<input type=""text"" onfocus=""(function(){console.log('normal input focus')})()"">
    -</span>
    -</div>
    -
    -
    -

    - -

    jsfiddle : https://jsfiddle.net/leiming/5e6rtgwd/

    - -

    Using React, onFocus in <input/> will bubble which is not same as usual HTML5.

    - -

    Could anyone give me the refer doc why focus bubbles with React?

    -",HQ -"i'm making a UILabel that indicates the value of the self.timer. - -This is the code. -The problem is that i can't indicate the timeFormatter.stringFromDate(date_SSS) in the label.text. - -Actually i also have a scrollView and a pageControl to scroll the label horizontally. But the main problem is at the UILabel and the self.timer. - -How can i - - - import UIKit - class ViewController: UIViewController { - private var label: UILabel! - private var timer: NSTimer! - let intArray: String = [""12:00:00"", ""12:50:00"", ""15:30:00"", ""16:40:00""] - let index = 0 - override func viewDidLoad() { - - let timeFormatter = NSDateFormatter() - timeFormatter.dateFormat = ""HH:mm:ss"" - - self.timer = NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: ""update:"", userInfo: nil, repeats: true) - self.timer.fire() - - for (var i = 0; i < intArray.count; i++) { - let label: UILabel = UILabel(frame: CGRectMake(CGFloat(index) * 50,100,150,200) - label.cornerRadius = 20 - label.text = timeFormatter.stringFromDate(date_SSS) - view.addSubView(label) - } - - - } - - func dateFromString(date:String) -> NSDate? { - let calendar = NSCalendar(calendarIdentifier: NSCalendarIdentifierGregorian)! - calendar.locale = NSLocale(localeIdentifier: ""en_US_POSIX"") - calendar.timeZone = NSTimeZone(abbreviation: ""JST"")! - let begin = date.startIndex - guard let hour = Int(date.substringWithRange(begin..>> from datetime import date - >>> 'Today is {0:%A}'.format(date.today()) - 'Today is Thursday' - -I'm wondering how it works.",LQ -"

    I've started using the latest beta of v2 of chart.js since I need to draw a chart that contains both a stacked bar chart and an unstacked line chart on the same chart. Here's an example of what I need:

    - -

    - -

    In this chart the lines are not stacked and are all showing their natural values but the bar chart is stacked and shows the combined total of the values (including some negative values).

    - -

    I've managed to get the two charts drawn together but so far I've only succeeded in either having both charts stacked or I've had to use two separate y-axis which ends up with 2 scales. There's an example of the separate y-axis in this fiddle:

    - -
    yAxes: [{
    -    stacked: false,
    -    ticks: {
    -      beginAtZero: true
    -    }
    -  }, {
    -    id: ""bar-y-axis"",
    -    stacked: true,
    -    ticks: {
    -      beginAtZero: true
    -    },
    -    type: 'linear'
    -  }]
    -
    - -

    If I remove the first y-axis then I ended up with a single scale with the only problem being that the line chart is now stacked as well.

    - -

    Is there any way to draw a chart like I need using chart.js?

    -",HQ -"

    I have some data below that I'm using to create a donut chart in R shiny, where date is a character. I want to be able to select the email whose score I want to view, but then in the second dropdown selection only see the dates for which that email has activity.

    - -

    For example, if I select email = xxxx in the first dropdown, I want to see only 'no activity' in the date selection field. And for email = yyyy, I want to see only 6/17/14, 6/18/14, 6/19/14 as selections.

    - -

    I've tried a sort of nested subsetting in the ui. Example:

    - -
    > ui <- shinyUI(fluidPage(
    -+   sidebarLayout(
    -+     sidebarPanel(
    -+       selectInput('Select', 'Customer:', choices = unique(as.character(dat5$email))),
    -+       selectInput(""User"", ""Date:"", choices = dat5[dat5$email==input$Select,date])
    -+     ),
    -+     mainPanel(plotOutput(""distPlot""))
    -+   )
    -+ ))
    -
    - -

    But this still shows all possible date selections

    - -

    DATA

    - -
    email   date        variable    value   ymin    ymax
    -xxxx    no activity e_score         0   0       0
    -xxxx    no activity diff            1   0       1
    -yyyy    6/17/14     e_score    0.7472   0       0.7472
    -yyyy    6/17/14     diff       0.2528   0.7472  1
    -yyyy    6/18/14     e_score    0.373    0       0.373
    -yyyy    6/18/14     diff       0.627    0.373   1
    -yyyy    6/19/14     e_score    0.533    0       0.533
    -yyyy    6/19/14     diff       0.467    0.533   1
    -
    - -

    My code so far:

    - -

    app.R

    - -
    library(shiny)
    -library(shinydashboard)
    -
    -ui <- shinyUI(fluidPage(
    -  sidebarLayout(
    -    sidebarPanel(
    -      selectInput('Select', 'Customer:', choices = unique(as.character(dat5$email))),
    -      selectInput(""User"", ""Date:"", choices = unique(dat5$date) )
    -    ),
    -    mainPanel(plotOutput(""distPlot""))
    -  )
    -))
    -
    -
    -server <- function(input, output) {
    -  output$distPlot <- renderPlot({
    -    ggplot(data = subset(dat5, (email %in% input$Select & date %in% input$User)), aes(fill=variable, ymax = ymax, ymin = ymin, xmax = 4, xmin = 3)) +
    -      geom_rect(colour = ""grey30"", show_guide = F) +
    -      coord_polar(theta = ""y"") +
    -      geom_text(aes(x = 0, y = 0,label = round(value[1]*100))) +
    -      xlim(c(0, 4)) +
    -      theme_bw() +
    -      theme(panel.grid=element_blank()) +
    -      theme(axis.text=element_blank()) +
    -      theme(axis.ticks=element_blank()) +
    -      xlab("""") +
    -      ylab("""") +
    -      scale_fill_manual(values=c('#33FF00','#CCCCCC')) 
    -
    -  })
    -}
    -  shinyApp(ui = ui, server = server)
    -
    -",HQ -"

    I thought that Today View every time when i open it it calls ""viewWillAppear"" but its not. When i change something in my app, and then I slide down for Today View it sometimes refresh the view and sometimes not.

    - -

    I do all logic in viewWillAppear (fetch data from coreData and put that data to labels), but its not called everytime.

    - -
    override func viewWillAppear(animated: Bool) {
    -    super.viewWillAppear(animated)
    -    fetchContent()
    -    setLabels()
    -    setContentHeight()
    -    tableView.reloadData()
    -    print(""view will appear"")
    -}
    -
    - -

    how to call fetchContent and setLabels every time when user opens Today Extensions?

    -",HQ -"

    I have a javascript class, and each method returns a Q promise. I want to know why this is undefined in method2 and method3. Is there a more correct way to write this code?

    - -
    function MyClass(opts){
    -  this.options = opts;
    -
    -  return this.method1()
    -    .then(this.method2)
    -    .then(this.method3);
    -}
    -
    -MyClass.prototype.method1 = function(){
    -  // ...q stuff...
    -
    -  console.log(this.options); // logs ""opts"" object
    -
    -  return deferred.promise;
    -};
    -
    -MyClass.prototype.method2 = function(method1resolve){
    -  // ...q stuff...
    -
    -  console.log(this); // logs undefined
    -
    -  return deferred.promise;
    -};
    -
    -MyClass.prototype.method3 = function(method2resolve){
    -  // ...q stuff...
    -
    -  console.log(this); // logs undefined
    -
    -  return deferred.promise;
    -};
    -
    - -

    I can fix this by using bind:

    - -
    function MyClass(opts){
    -  this.options = opts;
    -
    -  return this.method1()
    -    .then(this.method2.bind(this))
    -    .then(this.method3.bind(this));
    -}
    -
    - -

    But not entirely sure why bind is necessary; is .then() killing this off?

    -",HQ -"

    The (source code) documentation for tf.cond is unclear on whether the functions to be performed when the predicate is evaluated can have side effects or not. I've done some tests but I'm getting conflicting results. For example the code below does not work:

    - -
    import tensorflow as tf
    -from tensorflow.python.ops import control_flow_ops
    -
    -pred = tf.placeholder(tf.bool, [])
    -count = tf.Variable(0)
    -adder = count.assign_add(1)
    -subtractor = count.assign_sub(2)
    -
    -my_op = control_flow_ops.cond(pred, lambda: adder, lambda: subtractor)
    -
    -sess = tf.InteractiveSession()
    -tf.initialize_all_variables().run()
    -
    -my_op.eval(feed_dict={pred: True})
    -count.eval() # returns -1
    -
    -my_op.eval(feed_dict={pred: False})
    -count.eval() # returns -2
    -
    - -

    I.e. no matter what value the predicate evaluates to, both functions are getting run, and so the net result is a subtraction of 1. On the other hand, this code snippet does work, where the only difference is that I add new ops to the graph every time my_op is called:

    - -
    pred = tf.placeholder(tf.bool, [])
    -count = tf.Variable(0)
    -
    -my_op = control_flow_ops.cond(pred, lambda:count.assign_add(1), lambda:count.assign_sub(2))
    -
    -sess = tf.InteractiveSession()
    -tf.initialize_all_variables().run()
    -
    -my_op.eval(feed_dict={pred: False})
    -count.eval() # returns -2
    -
    -my_op.eval(feed_dict={pred: True})
    -count.eval() # returns -1
    -
    - -

    Not sure why creating new ops every time works while the other case doesn't, but I'd obviously rather not be adding nodes as the graph will eventually become too big.

    -",HQ -"I have a Model Active Admin, i have created String ID setter and getter. -when i use setID in Login Form, i use this : -`ActiveAdmin AA = new ActiveAdmin();` - - AA.setId(txtIdAdmin.getText()); - -and i test getter from login form, it work. -but when i test in another form, in another java class, in diffrent file, i can't get my string ID in Active Admin. -i used `AA.getId();` -and the result is blank. - -please help me. any suggestion or answer. -sorry if my english is bad. -",LQ -"**i get the input from the user and set them in a list view but when i click in the button does work NO Errors just open the layout and close direct but when a try with ""arrayAdapter = new ArrayAdapter(this,android.R.layout.simple_list_item_1,m_list);"" is work perfect can you please tell me where im wrong -thank you -im New in Android** - - public class HomeChat extends AppCompatActivity { - - ListView listView; - EditText writeSms; - - ArrayAdapter arrayAdapter; - ArrayList m_list = new ArrayList(); - String emriUser; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_home_chat); - - writeSms = (EditText) findViewById(R.id.shkrunSms); - listView = (ListView) findViewById(R.id.listView); - - - emriUser = getIntent().getExtras().getString(""emri""); - - arrayAdapter = new ArrayAdapter(this,R.layout.list_chat,m_list); - listView.setAdapter(arrayAdapter); - - } - - - public void sentSmsButton(View view) { - - String mesazhet = emriUser + "": "" + writeSms.getText().toString(); - - if (writeSms != null && writeSms.length() > 0) { - - m_list.add(mesazhet); - arrayAdapter.notifyDataSetChanged(); - writeSms.setText(""""); - - }else - { - Toast.makeText(getApplicationContext(),""Something Wrong"",Toast.LENGTH_LONG).show(); - } - } - } - - - **and this is the list chat layout** - - - - - - - - -",LQ -"

    I just wondered if you could answer a question regarding authentication in an enterprise's intranet. We are currently setting up a server for intranet publishing which of course needs protection via an enterprise single sign on.

    - -

    Unfortunately we are stuck with an IIS server as we need to run both PHP and .NET applications. The main app is programmed in PHP, but we have to feature some jQuery included widgets that rely on ASPX handlers.

    - -

    The company offers all types of authentication. We've already successfully protected the server with Shibboleth (using SAML 2.0). It shows the ESO screen to login and then redirects to our server with a logged-in session. Unfortunately the widgets that are referring to the ASPX handlers don't authenticate correctly.

    - -

    I've never done authentication / SAML / WiF / anything, so please excuse my question:

    - -

    What would be the most promising way for authentication with our setup (IIS featuren PHP and ASPX apps)? Should we stick to SAML and Shibboleth or should we use WiF / WS Federation / Windows Authentication?

    - -

    Is it possible to support both PHP and ASPX with one authentication method?

    - -

    Thanks for a response! -Nik

    -",HQ -"

    How do I get my SHA1 Keys for debug and release using android studio on a mac? -(These are required for Google API Keys)

    -",HQ -"I have set a button to add a line(bold) to a rich edit, but the first time I click the button it doesn't come out bold? - -eg: line1, **line2**, **line3** - -Code: - -red1.SelAttributes.Style := [fsBold]; -red1.Lines.Add(' Name: ' + Edit1.Text); - -Does anyone know what I have done wrong? - --Thanks",LQ -"

    I'm importing rss items where in description there is a lot of html code (links, paragraphs, etc...). When I'm viewing it in component's view like:

    - -
    {{rss.description}}
    -
    - -

    the output in site is like:

    - -
    <a href=""http://link.com"">Something</a> <p>Long text</p>
    -
    - -

    How can I quickly and easy parse it to html? I don't want to cross it with jQuery. Thank you

    -",HQ -"

    I'm new to akka actor. I have read the akka offical documents and still don't understand how actor works compare to threading model.

    - -

    Let's take a simple example like this. I have a traditional HttpServer , which have 10 threads in the thread pools . When 20 requests are coming at the same time , the HttpServer will delegate all 10 threads in the thread pool to handle the first 10 requests and the others will be queued in the network interface to wait for the thread to pick up.

    - -

    How will an actor-based HttpServer react to the same problem?. Will all of the requests are queued in front of a delegated actors to process them in a sequential order and send the messages to other actor?. If so, this is the point that I don't understand how can actor provide better performance than threading model, because only 1 actor process 20 requests in a sequential order can not faster than 10 thread process 20 requests concurrently.

    - -

    What I am trying to understand is that how actor react when multiple requests are coming together at the same time? , not how actor process and queue the message in the mail box , it's already showed up a lot in the documents. Can someone simulate the steps how actor work in this example?

    -",HQ -"

    So I've been using Visual Studio Code recently and I really like it. However, every time I open a file, a new window will open rather than a new ""tab."" I've already tried setting window.openInNewWindow to false and that doesn't work.

    -",HQ -"

    In Visual Studio 2015, when I create a brand new solution with a brand new ASP.NET 5 project, I see the Manage Bower Packages... context menu when I right-click on the project:

    - -

    - -

    However, when I add an ASP.NET 5 project to an existing solution, the Manage Bower Packages... context menu is nowhere to be seen:

    - -

    - -

    Any idea how to get the Manage Bower Packages... context menu option to appear?

    -",HQ -"I have data warehouse database on SQL Server Enterprise. Currently the SSIS that feeds the data warehouse is running on the same server. -I would like to move the SSIS execution on another server. What are the licensing options for SQL Server for running the SSIS? Can I use SQL Server Standard with server + 1 CAL license? SSIS runs under one service account. - -Thank you.",LQ -"

    I want to try using npm to run my various build tasks for a web application. I know I can do this by adding a scripts field to my package.json like so:

    - -
    ""scripts"": {
    -   ""build"": ""some build command""
    -},
    -
    - -

    This gets unwieldy when you have more complex commands with a bunch of options. Is it possible to move these commands to a bash script or something along those lines? Something like:

    - -
    ""scripts"": {
    -   ""build"": ""build.sh""
    -},
    -
    - -

    where npm run build would execute the commands in the build.sh file?

    - -

    Reading through this post it seems like it is, but I'm not clear on exactly where I'm supposed to drop my build.sh file or if I'm missing something.

    -",HQ -"

    How do you test if an event has been fired in Jasmine without jquery-jasmine?

    - -

    I'm working on a project where we don't use jQuery (wohoo), and I'm trying to write a unit test for my menu triggering function. It works like this:

    - -
      -
    • You click a button
    • -
    • My testable component then runs document.dispatchEvent(new CustomEvent('menu.toggle'))
    • -
    • I want to test that the component indeed dispatched the custom event.
    • -
    - -

    How do I test this?

    -",HQ -"in one input text field has two possible answer which is luah or hal. why it is not working at all.someone please help me the right way to write a code?? - - - - -stop(); - - -//var jawapan1=Array; - - -txt_zuhal.addEventListener(KeyboardEvent.KEY_DOWN,handler); - - - - -function handler(event:KeyboardEvent) - - - - -{ - - - - -//jawapan1=(""luah"", ""hal""); - - - - - // if the key is ENTER - - - - - if(event.charCode == 13) - - - - - { - - - - - if(txt_zuhal.text=='luah'||'hal') - - - - - { - - - - - trace(""1.correct""); - - - - - } - - - - - else - - - - - { - - - - - trace(""1.Sorry, Wrong answer""); - - - - - } - - - - - } - - - - -} - - - -",LQ -"

    for example, i have a folder:

    - -
    /
    -  - test.py
    -  - test.yml
    -
    - -

    and the job is submited to spark cluster with:

    - -

    gcloud beta dataproc jobs submit pyspark --files=test.yml ""test.py""

    - -

    in the test.py, I want to access the static file I uploaded.

    - -
    with open('test.yml') as test_file:
    -    logging.info(test_file.read())
    -
    - -

    but got the following exception:

    - -
    IOError: [Errno 2] No such file or directory: 'test.yml'
    -
    - -

    How to access the file I uploaded?

    -",HQ -"

    When I run the parsing code with 1 GB dataset it completes without any error. But, when I attempt 25 gb of data at a time I get below errors. I'm trying to understand how can I avoid below failures. Happy to hear any suggestions or ideas.

    - -

    Differnt errors,

    - -
    org.apache.spark.shuffle.MetadataFetchFailedException: Missing an output location for shuffle 0
    -
    -org.apache.spark.shuffle.FetchFailedException: Failed to connect to ip-xxxxxxxx
    -
    -org.apache.spark.shuffle.FetchFailedException: Error in opening FileSegmentManagedBuffer{file=/mnt/yarn/nm/usercache/xxxx/appcache/application_1450751731124_8446/blockmgr-8a7b17b8-f4c3-45e7-aea8-8b0a7481be55/08/shuffle_0_224_0.data, offset=12329181, length=2104094}
    -
    - -

    Cluster Details:

    - -
    -

    Yarn: 8 Nodes
    - Total cores: 64
    - Memory: 500 GB
    - Spark Version: 1.5

    -
    - -

    Spark submit statement:

    - -
    spark-submit --master yarn-cluster \
    -                        --conf spark.dynamicAllocation.enabled=true \
    -                        --conf spark.shuffle.service.enabled=true \
    -                        --executor-memory 4g \
    -                        --driver-memory 16g \
    -                        --num-executors 50 \
    -                        --deploy-mode cluster \
    -                        --executor-cores 1 \
    -                        --class my.parser \
    -                        myparser.jar \
    -                        -input xxx \
    -                        -output xxxx \
    -
    - -

    One of stack trace:

    - -
    at org.apache.spark.MapOutputTracker$$anonfun$org$apache$spark$MapOutputTracker$$convertMapStatuses$2.apply(MapOutputTracker.scala:460)
    -at org.apache.spark.MapOutputTracker$$anonfun$org$apache$spark$MapOutputTracker$$convertMapStatuses$2.apply(MapOutputTracker.scala:456)
    -at scala.collection.TraversableLike$WithFilter$$anonfun$foreach$1.apply(TraversableLike.scala:772)
    -at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33)
    -at scala.collection.mutable.ArrayOps$ofRef.foreach(ArrayOps.scala:108)
    -at scala.collection.TraversableLike$WithFilter.foreach(TraversableLike.scala:771)
    -at org.apache.spark.MapOutputTracker$.org$apache$spark$MapOutputTracker$$convertMapStatuses(MapOutputTracker.scala:456)
    -at org.apache.spark.MapOutputTracker.getMapSizesByExecutorId(MapOutputTracker.scala:183)
    -at org.apache.spark.shuffle.hash.HashShuffleReader.read(HashShuffleReader.scala:47)
    -at org.apache.spark.rdd.ShuffledRDD.compute(ShuffledRDD.scala:90)
    -at org.apache.spark.rdd.RDD.computeOrReadCheckpoint(RDD.scala:297)
    -at org.apache.spark.rdd.RDD.iterator(RDD.scala:264)
    -at org.apache.spark.rdd.MapPartitionsRDD.compute(MapPartitionsRDD.scala:38)
    -at org.apache.spark.rdd.RDD.computeOrReadCheckpoint(RDD.scala:297)
    -at org.apache.spark.rdd.RDD.iterator(RDD.scala:264)
    -at org.apache.spark.scheduler.ResultTask.runTask(ResultTask.scala:66)
    -at org.apache.spark.scheduler.Task.run(Task.scala:88)
    -at org.apache.spark.executor.Executor$TaskRunner.run(Executor.scala:214)
    -at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    -at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    -at java.lang.Thread.run(Thread.java:745)
    -
    -",HQ -"

    I have hosted jupyterhub on a server and added many users into it. I want the users to have an option of version control for their work. So is there any way to add a git kernel or extension do have this done?

    -",HQ -"

    I have a big solution with 30 projects of which 2 are web projects (MVC and WebAPI) with a bunch of background class library projects.

    - -

    I have visual studio set up to host the web projects in IIS.

    - -

    If I do a clean build, followed by a full build of the entire solution, then accessing both projects via a browser works fine. (they are in diff folders and hosted on diff 'domains' in iis)

    - -

    If I make NO code changes, simply rebuild one of the 2 web projects, the OTHER one stops working.

    - -

    To be clear, rebuilding the WebAPI project causes the MVC project to have errors. And vice versa.

    - -

    The error I get is saying that System.Web.Http.Formatter is not found. The detail says that the located assembly version is different from the reference version. Checking the bin folder shows that that is not the case.

    -",HQ -"

    I want to output a line of date using date command, but it's end with a ""\n"" which I don't need it, currently, I use:

    - -
    echo -n `date +""[%m-%d %H:%M:%S]""`
    -
    - -

    or

    - -
    date +""[%m-%d %H:%M:%S]""|tr -d ""\n""
    -
    - -

    Are there any built-in parameter for ""date"" to do that?

    -",HQ -"

    I'm contributing to open source library and got lint error ""Do not treat position as fixed; only use immediately and call holder.getAdapterPosition() to look it up later"" for this code:

    - -
      @Override public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
    -    mAdapter.onBindViewHolder(holder, position);
    -
    -    if (!isFirstOnly || position > mLastPosition) {
    -      for (Animator anim : getAnimators(holder.itemView)) {
    -        anim.setDuration(mDuration).start();
    -        anim.setInterpolator(mInterpolator);
    -      }
    -      mLastPosition = position;
    -    } else {
    -      ViewHelper.clear(holder.itemView);
    -    }
    -  }
    -
    - -

    I've checked that it is because the position is saved for the future use. It is a question to library creator why they need this logic. But issue disappeared when I change the usage of the position to the usage holder.getAdapterPosition():

    - -
      @Override public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
    -    mAdapter.onBindViewHolder(holder, position);
    -
    -    if (!isFirstOnly || holder.getAdapterPosition() > mLastPosition) {
    -      for (Animator anim : getAnimators(holder.itemView)) {
    -        anim.setDuration(mDuration).start();
    -        anim.setInterpolator(mInterpolator);
    -      }
    -      mLastPosition = holder.getAdapterPosition();
    -    } else {
    -      ViewHelper.clear(holder.itemView);
    -    }
    -  }
    -
    - -

    I assume that conceptually it didn't change much but lint is satisfied now. Why?

    -",HQ -"

    I'm new to the world of iOS and Swift and am working on a new app which I want to use Realm for persistence. I have Entities in my code already which my Services access and populate for an HTTP API endpoint.

    - -

    Now I want to persist certain Entities and wanted advice as to whether I should create new Realm specific Models for each of my entities to read and write from Realm. Or should I convert all my existing plain Swift Entities to Realm Entities. At first this felt wrong as I would be passing Realm Entities al around my app instead of just in the persistence layer.

    - -

    However, the alternative is that every time I read/write entities to Realm I need to convert them back and forth from Entities to Realm Entities.

    - -

    Any advice on the best approach to this?

    - -

    Thanks

    -",HQ -"

    I have a problem that i believe to have a simple fix I just don't know the fix myself.

    - -

    Say i have some divs i.e.

    - -
    <div class=""box-1""></div>
    -<div class=""box-2""></div>
    -<div class=""box-3""></div>
    -<div class=""box-4""></div>
    -
    - -

    etc.

    - -

    If these boxes need to be alternate colours. I need to create some css which basically does the following:

    - -
    .box-(odd-number) {
    -    color:#000;
    -}
    -.box-(even-number) {
    -    color:#fff;
    -}
    -
    - -

    Obviously I know the above is not the correct syntax. Could some one point me in the right direction.

    - -

    Thanks

    -",HQ -"

    I am wondering if there is a way that I can use different learning rate for different layers like what is in Caffe. I am trying to modify a pre-trained model and use it for other tasks. What I want is to speed up the training for new added layers and keep the trained layers at low learning rate in order to prevent them from being distorted. for example, I have a 5-conv-layer pre-trained model. Now I add a new conv layer and fine tune it. The first 5 layers would have learning rate of 0.00001 and the last one would have 0.001. Any idea how to achieve this?

    -",HQ -"I want to display images in DataGrid from Database and I am using WPF[enter image description here][1] - - - [1]: http://i.stack.imgur.com/bM0lP.png - -I can retrive image name as u can see in Image Column ,but not able to display it",LQ -"For instance, I want to see whether each cell from B10 till the end of the B colomn is ending with ""@yahoo.com"", ""gmail.com"", ""rediff.com"". If not then, it should color that particular cell",LQ -"I'm trying to do a regexp for catch the mention in a html content. -I have a content like this: - -
    @john
    -I want catch only the mention inside the divs...not inside the """". -I've done this regexp: http://regexr.com/3ckv8 ( /[^""]@[a-zA-Z0-9_]*[^""]/g ) - -That works almost fine...the problem is that it catch also the >< of the div tags. -Any suggestion ? -Thanks.",LQ -"

    I am trying to set up an Angular2 Observable that will replay the latest value.

    - -
    import {Injectable} from 'angular2/core';
    -import {Observable} from 'rxjs/Observable';
    -
    -@Injectable()
    -export class RefinementService {
    -    refining: any;
    -    private r: any;
    -    constructor() {
    -        this.refining = new Observable(observer => this.r = observer).replay(1);
    -    }
    -}
    -
    - -


    -I continually get errors stating:

    - -
    -

    Property 'replay' does not exist on type Observable<{}>.

    -
    - -

    and

    - -
    -

    this.refining.replay is not a function

    -
    - -


    -Has anyone successfully implemented an observable that will re-emit it's latest value to new subscribers?

    -",HQ -"

    I am using Doc2Vec function of gensim in Python to convert a document to a vector.

    - -

    An example of usage

    - -

    model = Doc2Vec(documents, size=100, window=8, min_count=5, workers=4)

    - -

    How should I interpret the size parameter. I know that if I set size = 100, the length of output vector will be 100, but what does it mean? For instance, if I increase size to 200, what is the difference?

    -",HQ -"I would like to parse the following nested dictionary for all URL entries. They should be written into a list. How can I do this? - - {u'_id': ObjectId('56a22819ffd6f'), - u'books': [{u'id': {u'id': u'4311'}, - u'link': {u'name': u'Operating Business', - u'url': u'http://ffff'}}, - {u'id': {u'id': u'4310'}, - u'link': {u'name': u'Operating Business', - u'url': u'http://zzzzz'}}, - {u'id': {u'id': u'7462'}, - u'link': {u'name': u'European Credit Trading', - u'url': u'http://xxxx'}}, - {u'id': {u'id': u'3258'}, - u'link': {u'name': u'Operating Business', - u'url': u'http://dddddd'}}, - {u'id': {u'id': u'7463'}, - u'link': {u'name': u'US Credit Trading', - u'url': u'http://aaaaa'}}], - u'created': datetime.datetime(2016, 1, 2, 13, 1, 12, 744000), - u'id': u'lingering-smoke', - u'valuationDate': datetime.datetime(170, 1, 1, 0, 0, 16, 821000)}",LQ -"

    I'm trying to create a Chrome extension, but none of my JS works. The console shows this error:

    - -
    -

    Refused to load the script - 'https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js' - because it violates the following Content Security Policy directive: - ""script-src 'self' blob: filesystem: chrome-extension-resource:"".

    -
    - -

    Why is it blocking my jQuery from running?

    -",HQ -"

    My app uses Swift and a 3rd-party library in Objective-C. When my debugger steps into the Objective-C code, the debug console does not show the values of my Swift string correctly. Instead, it shows unable to read data. How can we resolve this issue?

    - -

    -",HQ -"

    I was under the impression semicolons became obsolete with ES6. However, I came across this today:

    - -

    Doesn't work:

    - -
    let i = 0
    -
    -[0, 1, 2, 3, 4, 5, 6].forEach(item => console.log(item))
    -
    - -

    Works:

    - -
    let i = 0;
    -
    -[0, 1, 2, 3, 4, 5, 6].forEach(item => console.log(item))
    -
    - -

    Why is the semicolon necessary here, and when should I use them?

    -",HQ -"

    I want to use a specific code style in my editor defined in an XML file, which looks something like this:

    - -
    <code_scheme name=""CustomStyleName"">
    -<option name=""JAVA_INDENT_OPTIONS"">
    -<value>
    -...
    -
    - -

    How is it possible to import this style into IntelliJ Idea. -When I go to Preferences->Editor->Code Style->Manage it is only possible to import an Eclipse XML Profile.

    - -

    -",HQ -"

    My goal is to display a Google Map in React Native. I have seen examples that use the Google Maps SDK with an UIMapView or a MapBox map, but that is not what I am looking for.

    - -

    I currently have no errors. Here is my code:

    - -

    index.ios.js

    - -
    'use strict';
    -import React, {
    -    AppRegistry,
    -    Component,
    -    StyleSheet,
    -    Text,
    -    View
    -} from 'react-native';
    -import GoogleMaps from './ios/GoogleMaps.js';
    -
    -class RCTGoogleMaps extends Component {
    -    constructor(props) {
    -        super(props);
    -    }
    -
    -    render() {
    -        return (
    -            <View style={styles.container}>
    -                <GoogleMaps style={styles.map}/>
    -            </View>
    -        );
    -    }
    -}
    -
    -const styles = StyleSheet.create({
    -    container: {
    -        flex: 1,
    -        justifyContent: 'center',
    -        alignItems: 'center',
    -        backgroundColor: '#F5FCFF'
    -    },
    -    map: {
    -        height: 500,
    -        width: 300,
    -        marginLeft: 50
    -    }
    -});
    -
    -AppRegistry.registerComponent('RCTGoogleMaps', () => RCTGoogleMaps);
    -
    - -

    ios/GoogleMaps.js

    - -
    var {requireNativeComponent} = require('react-native');
    -module.exports = requireNativeComponent('RCTGoogleMapViewManager', null);
    -
    - -

    ios/RCTGoogleMapViewManager.h

    - -
    #ifndef RCTGoogleMapViewManager_h
    -#define RCTGoogleMapViewManager_h
    -
    -#import <Foundation/Foundation.h>
    -#import ""RCTViewManager.h""
    -#import <UIKit/UIKit.h>
    -
    -@interface RCTGoogleMapViewManager : RCTViewManager<UITextViewDelegate>
    -@end
    -
    -#endif /* RCTGoogleMapViewManager_h */
    -
    - -

    ios/GoogleMapViewManager.m

    - -
    #import <Foundation/Foundation.h>
    -#import ""RCTGoogleMapViewManager.h""
    -#import ""RCTBridge.h""
    -#import ""RCTEventDispatcher.h""
    -#import ""UIView+React.h""
    -@import GoogleMaps;
    -
    -@implementation RCTGoogleMapViewManager
    -  RCT_EXPORT_MODULE()
    -
    -- (UIView *)view {
    -  GMSMapView *mapView_;
    -  // Create a GMSCameraPosition that tells the map to display the
    -  // coordinate -33.86,151.20 at zoom level 6.
    -  GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.86
    -                                                          longitude:151.20
    -                                                               zoom:6];
    -  mapView_ = [GMSMapView mapWithFrame:CGRectZero camera:camera];
    -  mapView_.myLocationEnabled = YES;
    -  UIView *newView_ = mapView_;
    -  //self.view = mapView_;
    -
    -  // Creates a marker in the center of the map.
    -  GMSMarker *marker = [[GMSMarker alloc] init];
    -  marker.position = CLLocationCoordinate2DMake(-33.86, 151.20);
    -  marker.title = @""Sydney"";
    -  marker.snippet = @""Australia"";
    -  marker.map = mapView_;
    -  return newView_;
    -}
    -
    -RCT_EXPORT_VIEW_PROPERTY(text, NSString)
    -
    -@end
    -
    - -

    There is a red border around the component, but nothing displays inside. I am new to React Native and new to StackOverflow. Unfortunately, they will not let me upload a screenshot until I have more reputation.

    - -

    There is one line I suspect to be off, but have no idea what to change it to. Line #8 in RCTGoogleMapViewManager.h says, ""@interface RCTGoogleMapViewManager : RCTViewManager"". I have used UITextViewDelegates for other custom components, but this map is not a TextView. That might be it, but I have no clue.

    - -

    Any help at all would be appreciated.

    -",HQ -"

    I want to create a component with Vue.js containing a label and an input. for example :

    - -
    <label for=""inputId"">Label text</label>
    -<input id=""inputId"" type=""text"" />
    -
    - -

    How can I set a unique ID for each component instance?

    - -

    Thank you.

    -",HQ -"

    I'm trying to use the update_item functionality for DynamoDB in boto3.

    - -

    I'm struggling right now to update lists for items. I would like to create a new list if the list does not exist yet and otherwise append to the existing list.

    - -

    Using an UpdateExpression of the form SET my_list = list_append(my_list, :my_value) returns an error ""The provided expression refers to an attribute that does not exist in the item"" if the list does not exist yet.

    - -

    Any idea how I would have to modify my UpdateExpression?

    - -

    Thanks & best regards, -Fabian

    -",HQ -"

    I write a server which handles events and uncaught exceptions during handling the event must not terminate the server.

    - -

    The server is a single non-threaded python process.

    - -

    I want to terminate on these errors types:

    - -
      -
    • KeyboardInterrupt
    • -
    • MemoryError
    • -
    • ...
    • -
    - -

    The list of built in exceptions is long: https://docs.python.org/2/library/exceptions.html

    - -

    I don't want to re-invent this exception handling, since I guess it was done several times before.

    - -

    How to proceed?

    - -
      -
    1. Have a white-list: A list of exceptions which are ok and processing the next event is the right choice
    2. -
    3. Have a black-list: A list of exceptions which indicate that terminating the server is the right choice.
    4. -
    - -

    Hint: This question is not about running a unix daemon in background. It is not about double fork and not about redirecting stdin/stdout :-)

    -",HQ -"

    I have a file with JSON data in it, like so:

    - -
    {
    -    ""Results"": [
    -            {""Id"": ""001"",
    -            ""Name"": ""Bob"",
    -            ""Items"": {
    -                ""Cars"": ""1"",
    -                ""Books"": ""3"",
    -                ""Phones"": ""1""}
    -            },
    -
    -            {""Id"": ""002"",
    -            ""Name"": ""Tom"",
    -            ""Items"": {
    -                ""Cars"": ""1"",
    -                ""Books"": ""3"",
    -                ""Phones"": ""1""}
    -            },
    -
    -            {""Id"": ""003"",
    -            ""Name"": ""Sally"",
    -            ""Items"": {
    -                ""Cars"": ""1"",
    -                ""Books"": ""3"",
    -                ""Phones"": ""1""}
    -            }]
    -}
    -
    - -

    I can not figure out how to properly loop through the JSON. I would like to loop through the data and get a Name with the Cars for each member in the dataset. How can I accomplish this?

    - -
    import json
    -
    -with open('data.json') as data_file:
    -    data = json.load(data_file)
    -
    -print data[""Results""][0][""Name""] # Gives me a name for the first entry
    -print data[""Results""][0][""Items""][""Cars""] # Gives me the number of cars for the first entry
    -
    - -

    I have tried looping through them with:

    - -
    for i in data[""Results""]:
    -print data[""Results""][i][""Name""]    
    -
    - -

    But recieve an error: -TypeError: list indices must be integers, not dict

    -",HQ -"

    According to docker container statistics, my mongo database consumes constantly between 250 and 350% cpu. That's pretty impressive since it's a single core system :P

    - -

    The sad part is that this is my production instance and much more sad is that it has to live until the next prod-backup and thats 3.5 more hours to go.

    - -

    I tried to do a mongotop but it tells me 0ms stats for all shown collections. Can I do anything else to figure out what's going on?

    - -

    PS: The db is up for 9 weeks and didn't cause problems.

    -",HQ -"

    I am migrating jenkins-workflow job to new template based workflow job. Because the build number is used as part of the version of build artifacts the workflow produces I have to start build number of the new workflow with a number greater than the old workflow. Unfortunately 'Next Build Number' plugin does not work with workflow pipeline.

    - -

    Anybody knows a good way do this?

    -",HQ -"

    Probably a simple question but an elegant solution is not coming to mind. I would like to run a series of commands (each one is a test) and return 1 if any of them returned non-zero. Typically I would do something like:

    - -
    thingA && thingB && thingC
    -exit $?
    -
    - -

    However, that won't run thingC if thingB fails and I want to ensure that all 3 run. I can easily think of an inelegant approach:

    - -
    final_result=0
    -retval=thingA
    -if [[ $retval != 0 ]] then
    -  final_result=1
    -fi
    -retval=thingB
    -...
    -exit $final_result
    -
    - -

    Is there some simple, elegant way to get what I want?

    -",HQ -"

    I have a asp.net5 project setup to use windows authentication. When I set a break point and look at the User, I see that there is a Claims array that contains Group SID's. How do I get the actual group name from the claims?

    - -

    I am trying to limit the windows logged in user using the active directory groups that they belong to, and am struggling setting it up.

    - -

    Questions: -How can I see the active directory groups that the logged in user belongs to? -How do I convert the GroupSID's to a group name? -Do I need to include anything in the startup.cs to limit certain groups to REST service calls?

    - -

    I see examples of setting up claims manually based upon the logged in user. I am interested in using the Windows authenticated user and their groups to limit access.

    - -

    Thanks

    -",HQ -"i wrote this code and i want to style it with css. I added style to it but same result appears can any body help please . - -

    - connect_error) { - die(""Connection failed: "" . $conn->connect_error); - } - - $sql = ""SELECT Install , power , RPM FROM SN WHERE serial = '$term'""; - $result = $conn->query($sql); - - if ($result->num_rows > 0) { - - while($row = $result->fetch_assoc()) { - echo ""serial number: "" . $term.'
    '; - echo ""installation: "" . $row[""Install""].'
    '; - echo ""power: "" . $row[""power""].'
    '; - echo ""RPM: "" . $row[""RPM""].'
    '; - - } - } else { - echo ""no result""; - } - $conn->close(); - ?>
    -

    - - - - -",LQ -"

    I have been trying to figure out the best way to manage my react forms. I have tried to use the onChange to fire an action and update my redux store with my form data. I have also tried creating local state and when my form gets submitted I trigger and action and update the redux store.

    - -

    How should i manage my controlled input state?

    -",HQ -"I want to copy data from db A to db B. - -I created a saved SSIS package successfully and data was indeed copied from A to B. Now I want to automate the process but when I'm launching the saved .dtsx file I get this error: - -""Error: Executing the query ""CREATE TABLE ... failed with the following error: ""There is already an object named ... in the database""..."" - -Seems like SSIS is trying to create the table again. How do I set SSIS to copy the data only, without recreating the table? - -Ta. ",LQ -"

    I'm looking for a command-line utility that will, at a minimum, render binary protobuf data in human-readable form. Filtering and selection options (along the lines of cut for text) would be nice, but the primary object is to make the data visible for debugging purposes.

    - -

    If there is no definitive tool for the job, links to relevant packages are fine.

    -",HQ -"

    After working with react native on iOS for the last couple of weeks, I seem to have come across some shortcomings of flex styling... Particularly when it comes to ""responsive"" behavior.

    - -

    For instance, lets say you want to create a view that contains cards (the metadata for these cards comes from an API). You want the cards to be 50% of the view width minus the margin & padding, and to wrap after each 2.

    - -

    - -

    The current implementation I have for this view splits the returned array into rows with 2 items. The list container has flex: 1, flexDirection: 'column, the rows have flex: 1 and then each card has flex: 1. The end result is each row has 2 columns which evenly take up half the view width.

    - -

    It seems like there is no trivial way to do this in React Native styles, without using javascript to do some sort of pre-processing on the data so that it comes out styled correctly. Does anyone have any suggestions?

    -",HQ -"

    I have this enum type:

    - -
    enum Animal {
    -    Dog(i32),
    -    Cat(u8),
    -}
    -
    - -

    Now I have a function that takes this type as parameter. I know (for some reason) that the input is always a Cat. I want to achieve this:

    - -
    fn count_legs_of_cat(animal: Animal) -> u8 {
    -    if let Animal::Cat(c) = animal { c } else { unreachable!() }
    -}
    -
    - -

    Can I write this shorter and/or more idiomatic?

    -",HQ -"

    I use InputStream to read some data, so I want to read characters until new line or '\n'.

    -",HQ -"

    Looking the examples from the README:

    - -

    Given the ""bad"" structure:

    - -
    [{
    -  id: 1,
    -  title: 'Some Article',
    -  author: {
    -    id: 1,
    -    name: 'Dan'
    -  }
    -}, {
    -  id: 2,
    -  title: 'Other Article',
    -  author: {
    -    id: 1,
    -    name: 'Dan'
    -  }
    -}]
    -
    - -

    It's extremely easy to add a new object. All I have to do is something like

    - -
    return {
    -  ...state,
    -  myNewObject
    -}
    -
    - -

    In the reducer.

    - -

    Now given the structure of the ""good"" tree, I have no idea how I should approach it.

    - -
    {
    -  result: [1, 2],
    -  entities: {
    -    articles: {
    -      1: {
    -        id: 1,
    -        title: 'Some Article',
    -        author: 1
    -      },
    -      2: {
    -        id: 2,
    -        title: 'Other Article',
    -        author: 1
    -      }
    -    },
    -    users: {
    -      1: {
    -        id: 1,
    -        name: 'Dan'
    -      }
    -    }
    -  }
    -}
    -
    - -

    Every approach I've thought of requires some complex object manipulation, which makes me feel like I'm not on the right track because normalizr is supposed to be making my life easier.

    - -

    I can't find any examples online of someone working with the normalizr tree in this way. The official example does no adding and removing so it was no help either.

    - -

    Could someone let me know how to add/remove from a normalizr tree the right way?

    -",HQ -"

    I want to use jar from third party vendor. But in this jar I have old version of Java package org.osgi.framework I need to find some way to exclude the package from the main project. Something like this:

    - -
    <dependency>
    -      <groupId>com.ibm</groupId>
    -          <artifactId>com.ibm.ws.admin.client</artifactId>
    -          <version>8.5.0</version>
    -          <exclusions>
    -             <exclusion>org.osgi.framework</exclusion>
    -          </exclusions>
    -          <type>jar</type>
    -</dependency>
    -
    - -

    Can you recommend some solution?

    -",HQ -"

    I am in this situation:

    - -

    - -

    I am passing 4 array from Progress Table to Detail Exercise using prepare for segue and it works fine! The problem begin when I try to pass the data back from the Detail Exercise Controller to the Progress Table Controller. I would like to use the default navigation back button to go back to the parent view. Actually I'm using this code but it doesn't work, well the data pass from the child to the parent view but i can't see the result in the Progress Table, seems like i need to refresh but i also tryed the reloadData after the viewDidLoad and it doesn't work. Any suggestion? Thank you.

    - -
    override func viewWillDisappear(animated : Bool) {
    -    super.viewWillDisappear(animated)
    -
    -    if (self.isMovingFromParentViewController()){
    -        print(""n'drio"")
    -
    -        let historyView = self.storyboard!.instantiateViewControllerWithIdentifier(""historyView"") as! HistoryTableViewController
    -        historyView.isFirstTime = false
    -        historyView.arrayData = arrayDataDetails
    -        historyView.arrayRipetizioni = arrayRipetizioniDetails
    -        historyView.arrayPeso = arrayPesoDetails
    -        historyView.arrayRecupero = arrayRecuperoDetails
    -        historyView.tableView.reloadData()
    -    }
    -}
    -
    -",HQ -"I need to pass value from a ViewController to NSObject as soon as the view loaded using Xcode with Objective c. - -I am using the code below but the value is null. - - -(void)viewDidAppear:(BOOL)animated - { - MyHomeModelNSObject *nsOb; - nsOb.myString = self.userName.text; - } - -The above code is working between Views when using segue, but it does not work with when passing the value to NSObject. - -Thanks",LQ -"

    I am working with plotly offline and am able to generate an html file using

    - -
    plotly.offline.plot({""data"": data, ""layout"": layout})
    -
    - -

    It works great. The graph is generated correctly and the html file gets saved to my current directory.

    - -

    What I want, though is, using plotly offline, is to have an image (.png, .jpg, etc.) file saved instead. Am I on the right track? What do I need to do from here?

    -",HQ -"

    Curious about what was the maximum string length I could get in Javascript, I tested it myself, today, on my Firefox 43.0.1, running in Windows 7. I was able to construct a string with length 2^28 - 1, but when I tried to create a string with one more char, Firebug showed me the ""allocation size overflow"" error, meaning the string must be less than 256 MB.

    - -

    Is this the same thing for all browsers, all computers, all operational systems, or it depends?

    - -

    I created the following snippet to find out the limit:

    - -
    (function() {
    -    strings = [""z""];
    -    try {
    -        while(true) {
    -            strings.push(strings[strings.length - 1] + strings[strings.length - 1]);
    -        }
    -    } catch(err) {
    -        var k = strings.length - 2;
    -        while(k >= 0) {
    -            try {
    -                strings.push(strings[strings.length - 1] + strings[k]);
    -                k--;
    -            } catch(err) {}
    -        }
    -        console.log(""The maximum string length is "" + strings[strings.length - 1].length);
    -    }
    -})();
    -
    - -

    If you are running a different browser/OS, I would like to see your results. My result was The maximum string length is 268435455.

    - -

    P.S.: I searched around for an answer, but the most recent topic I found was from 2011, so I am looking for a more up-to-date information.

    -",HQ -"

    Hopefully someone here knows a thing or 2 about this.

    - -

    Short Question

    - -

    I am running into an error using phpdoc on the command line, installed via pear on PHP 7.0.2. The error is:

    - -
    #> phpdoc
    -PHP Fatal error:  Uncaught Doctrine\Common\Annotations\AnnotationException: 
    -You have to enable opcache.load_comments=1 or zend_optimizerplus.load_comments=1. 
    -in /usr/local/php5-7.0.2-20160108-102134/lib/php/phpDocumentor/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php:193
    -
    - -

    How do I fix this error?

    - -

    Details

    - -

    Opcache is enabled and opcache.load_comments=1 is in my opcache.ini file, verified by using the commands: php -i | grep ""Opcode"" and php -i | grep ""opcache"" respectively. Within that .ini file I can verify that changes are loaded by checking enable and disable opcache via that file.

    - -

    With that said, if I have opcache.load_comments=1 in my .ini file, why am I still getting this error?

    - -

    Thanks!

    -",HQ -"

    I am building a greenfield Rails application on top of Ruby 2.3, and I would like all Rails commands (e.g. rails s, rails c) and all Ruby commands (e.g. rake do:something) to use the new immutable-String functionality introduced in Ruby 2.3. (See, e.g. https://wyeworks.com/blog/2015/12/1/immutable-strings-in-ruby-2-dot-3/)

    - -

    So, how do I pass that lovely --enable-frozen-string-literal Ruby option down to Ruby in all possible contexts where some command I issue bottoms out in Ruby?

    - -

    Thanks in advance!

    -",HQ -"

    I am using SublimeText3 for C++ and Java. I am wondering if there is a way to fold all of the methods in a file / class, and then unfold them all, regardless of where the caret is. Or is there a way to list all the functions / methods.

    - -

    Basically I would like to be able to enter a file and see all the methods at one quick glance.

    - -

    Thanks

    -",HQ -"

    I'm interested in writing a client library around the NuGet v3 API in a non-.NET language. Where can I find documentation/resources on it that would tell me e.g. what URLs to make requests to and what responses it would return?

    - -

    I tried doing a quick Google search, but the only thing that turns up is this, which was last updated 3 years ago. Does a spec exist?

    -",HQ -"

    I am stuck with this error no matter what directory I am in, and what I type after ""npm"" in cmd.exe. Here is the npm-debug.log:

    - -
    0 info it worked if it ends with ok
    -1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
    -1 verbose cli   'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js' ]
    -2 info using npm@2.14.12
    -3 info using node@v4.2.6
    -4 verbose stack Error: EISDIR: illegal operation on a directory, read
    -4 verbose stack     at Error (native)
    -5 verbose cwd C:\Users\me
    -6 error Windows_NT 6.1.7601
    -7 error argv ""C:\\Program Files\\nodejs\\node.exe"" ""C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js""
    -8 error node v4.2.6
    -9 error npm  v2.14.12
    -10 error code EISDIR
    -11 error errno -4068
    -12 error syscall read
    -13 error eisdir EISDIR: illegal operation on a directory, read
    -13 error eisdir This is most likely not a problem with npm itself
    -13 error eisdir and is related to npm not being able to find a package.json in
    -13 error eisdir a package you are trying to install.
    -14 verbose exit [ -4068, true ]
    -
    - -

    I have tried and uninstalling/reinstalling nodejs multiple times, I even deleted npm and npm-cache folders in C:\Users\me\AppData\Roaming. I'm not sure what went wrong to cause this. One second it was working fine, and now I can't get rid of this error. The explanation in the log does not make sense, as it gives this error in any directory. I should note that running a command prompt as administrator does not give this error. I'm pulling my hair out this Friday evening trying to get this fixed, any help would be greatly appreciated!

    -",HQ -"I have text file like below - -Input sample text file -------------------------------- - 69273ww01/080-100 1021/00 11123 - - 80381ew20/937-134 1372/92 12737298323 - - 02ws88749/263-379 2836/39 121 - - 4793de592/343-283 7384/49 233792740562263 - -Required output text file -------------------------------- - 69273ww01/080-100 1021/00 111 - - 80381ew20/937-134 1372/92 127 - - 02ws88749/263-379 2836/39 121 - - 4793de592/343-283 7384/49 233 - -I want to trim characters after a particular length (30) from 1st word of every line - - -Could any one help me who write a batch script. for the above requirement. ",LQ -"

    My problem: I am learning Service Fabric, and doing simple tutorials, and the local cluster is filling up my C drive. I run the projects in Visual Studio. It first creates a cluster in a folder SfDevCluster. That takes up 842 MB of space. Then it deploys the services and web api sites. Remember, these are trivial tutorials with almost nothing in them. Now, I notice that I have a folder with a Size = 1.22 TB and Size on Disk of 9.4 GB. I'm not sure how to interpret that. But it consumes the remaining space on my C drive and sets off alarms. -I have other drives with lots of space. I would love to specify that those be used. Is there a way to do that with the service fabric cluster used by Visual Studio? Or is there a way to constrain the overly ambitious size allocations? And if you understand this, can you explain what these unusual folder sizes mean? -In the old days, I would have a hard drive with lots of space. But now, my developer machine has a much faster, but more expensive SSD drive, and space is at a premium. So I need more control of the cluster location.

    -",HQ -"Well I'm just completely new to CLISP programming language and I have started learning this language by my own from yesterday and that too out of interest.Now when i came across functions and loop,after learning about them I started developing the Prime Number problem in CLISP. -My code is as follows: - -(defun prime (num) - -(setq c 1) - -(setq a 2) - -(loop - -(setq a (+ 1 a)) - -(if (= (mod num a) 0) - -(setq c (+ c 1)) - -) - -(when (> (+ a 1) 17) (return a)) - -) -) - -(if (= c 1) -(return-from prime num) -) -) - -(loop for x from 1 to 20 -do (prime x) -) - -Now the problem which I am facing with this code is that whenever I am trying to execute this code the error which I am getting is as follows: - -***IF: variable C has no value - -but I've declared a value to c already still it's appearing. So all i want to know is that why this error is appearing even though i have declared it.",LQ -"This My DAOImple class:::: - -here i have two drop down boxes like -1'st box options are ALL,in pool,out of pool. -2ed box option are ALL,active,inactive,Frozen,Baried,Delete. - -------------------- -public class FleetDetailsDAOImpl22 extends CustomJdbcDaoSupport implements FleetDetailsDAO { - - @Autowired - private DataManager dataManager; - /** This method is called for getting all the vessels. */ - - /** - * @param vesselStatus - * @param poolStatus - * @param poolid - */ - - @Override - public List getFleetDetails(String vesselStatus, - String poolStatus, int poolid, String fromDate, String toDate)throws CustomException { - - List fleetList =new ArrayList(); - String poolStatusValue = null; - String vesselStatusValue = null; - String displayFlag = null; - - /*---check for poolStatus---------*/ - if(poolStatus.equals(""yes"")) { - poolStatusValue = ""Y""; - } - if(poolStatus.equals(""no"")) { - poolStatusValue = ""N""; - } - if(poolStatus.equals(""all"")) { - poolStatusValue = ""ALL""; - } - /*---check for vessel status---------*/ - - if(vesselStatus.equals(""active"")) { - vesselStatusValue = ""Y""; - displayFlag = ""Y""; - } - if(vesselStatus.equals(""inactive"")) { - vesselStatusValue = ""N""; - displayFlag = ""Y""; - } - if(vesselStatus.equals(""frozen"")) { - vesselStatusValue = ""F""; - displayFlag =""Y""; - } - if(vesselStatus.equals(""buried"")) { - vesselStatusValue = ""B""; - displayFlag = ""B""; - } - if(vesselStatus.equals(""pending"")) { - vesselStatusValue = ""P""; - displayFlag = ""P""; - } - if(vesselStatus.equals(""delete"")) { - vesselStatusValue = ""D""; - displayFlag = ""D""; - } - if(vesselStatus.equals(""all"")){ - vesselStatusValue = ""ALL""; - } - - try { - - if(poolStatusValue.equals(""Y"") && vesselStatusValue.equals(""ALL"") ){ - - String fleetDetailsQuery = dataManager.getQuery(""FLEET_DETAILS"", Queries.QUERY_GET_FLEET_DETAILS_ALL_NONPOOL); - Object[] params = new Object[] { poolid, poolStatusValue }; - fleetList = getJdbcTemplate().query(fleetDetailsQuery,params, new FleetDetails.FleetDetailsRowMapper()); - } - else if(poolStatusValue.equals(""ALL"") && vesselStatusValue.equals(""ALL"")) { - String allVesselsQuiry = dataManager.getQuery(""FLEET_DETAILS"",Queries.QUERY_GET_POOL_NONPOOL_VESSELS); - Object[] params = new Object[] { poolid }; - fleetList = getJdbcTemplate().query(allVesselsQuiry,params, new FleetDetails.FleetDetailsRowMapper()); - } - else if(poolStatusValue.equals(""N"")){ - String nonpoolVesselsQuiry = dataManager.getQuery(""FLEET_DETAILS"", Queries.QUERY_GET_NONPOOL_VESSELS); - Object[] params = new Object[] { poolid, vesselStatusValue,poolStatusValue, displayFlag }; - fleetList = getJdbcTemplate().query(nonpoolVesselsQuiry,params, new FleetDetails.FleetDetailsRowMapper()); - } - else if(poolStatusValue.equals(""Y"")){ - String fleetDetailsQuery = dataManager.getQuery(""FLEET_DETAILS"", Queries.QUERY_GET_FLEET_DETAILS); - Object[] params = new Object[] { poolid, vesselStatusValue,poolStatusValue, displayFlag }; - fleetList = getJdbcTemplate().query(fleetDetailsQuery,params, new FleetDetails.FleetDetailsRowMapper()); - } - else { - String fleetDetailsQuery = dataManager - .getQuery(""FLEET_DETAILS"",Queries.QUERY_GET_STATUS_VESSELS_FOR_BOTH_POOL_NONPOOL); - Object[] params = new Object[] { poolid, vesselStatusValue,displayFlag }; - fleetList = getJdbcTemplate().query(fleetDetailsQuery,params, new FleetDetails.FleetDetailsRowMapper()); - } - - } catch(Exception e) { - e.getMessage(); - } - - - return fleetList; - } -",LQ -" its my code i want to hide div which have id selnumber (when i select form 60/61 and show a text message ""It is form 60/61"" at the place of div) but when select pan then show the div. - - -
    - - ---Select--- - PAN - FORM 60/61 -
    -
    -      - - - - -
    ",LQ -"I'm still trying to firgure out macros in C - - #define A(x) #x - - int main() - { - int i = -i; - char *s = A(i); - - i = -(s[0] == 'i'); - - printf(""%d"", i); - - return 0; - - } - -Anyone care to enlighten me and comment the code, especially what the macro does and this line: i = -(s[0] == 'i');",LQ -"

    I understand the Twitter REST API has strict request limits (few hundred times per 15 minutes), and that the streaming API is sometimes better for retrieving live data.

    - -

    My question is, what exactly are the streaming API limits? Twitter references a percentage on their docs, but not a specific amount. Any insight is greatly appreciated.

    - -

    What I'm trying to do:

    - -
      -
    • Simple page for me to view the latest tweet (& date / time it was posted) from ~1000 twitter users. It seems I would rapidly hit the limit using the REST API, so would the streaming API be required for this application?
    • -
    -",HQ -"

    This is my first time trying to set up Webpack, so I'm sure I'm missing something here.

    - -

    I am trying to load my PostCSS files with Webpack, using the ExtractTextPlugin to generate a css file into ""dist"". The problem is Webpack does not seem to pick up the css files. They are under ""client/styles"", but I've tried moving them to ""shared"", with the same result.

    - -

    I ran Webpack with the --display-modules option, and verified that no css files display there.

    - -

    I have tried running it without the extract text plugin, and the result is the same: no CSS is built into bundle.js.

    - -

    Here is my prod config:

    - -
    var ExtractTextPlugin = require('extract-text-webpack-plugin');
    -var path = require('path');
    -
    -module.exports = {
    -  entry: [
    -    './client'
    -  ],
    -  resolve: {
    -    modulesDirectories: ['node_modules', 'shared'],
    -    extensions: ['', '.js', '.jsx', '.css']
    -  },
    -  output: {
    -    path: path.join(__dirname, 'dist'),
    -    filename: 'bundle.js',
    -    chunkFilename: '[id].js',
    -    publicPath: '/'
    -  },
    -  module: {
    -    loaders: [
    -      {
    -        test:    /\.jsx?$/,
    -        exclude: /node_modules/,
    -        loaders: ['babel']
    -      },
    -
    -      {
    -        test: /\.css?$/,
    -        loader: ExtractTextPlugin.extract(
    -          'style-loader',
    -          'css-loader!postcss-loader'
    -        ),
    -        exclude: /node_modules/
    -      }
    -    ]
    -  },
    -  plugins: [
    -    new ExtractTextPlugin('[name].css')
    -  ],
    -  postcss: (webpack) => [
    -    require('postcss-import')({ addDependencyTo: webpack, path: ['node_modules', 'client'] }),
    -    require('postcss-url')(),
    -    require('precss')(),
    -    require('postcss-fontpath')(),
    -    require('autoprefixer')({ browsers: [ 'last 2 versions' ] })
    -  ]
    -};
    -
    - -

    And here's an example of my main css file: - @import 'normalize.css/normalize';

    - -
    /* Variables */
    -@import 'variables/colours';
    -
    -/* Mixins */
    -
    -/* App */
    -
    -/* Components */
    -
    -body {
    -  background-color: $black;
    -}
    -
    - -

    Would anyone have an idea on why this is happening? Am I missing something?

    - -

    Thank you

    -",HQ -"

    In many of my programs I have been using ggplot2 to render charts. I have loaded them on shinyapps.io and they are working absolutely fine. However, when I try to run the program on my machine, i am getting the following error:

    - -
    Error : stat_count() must not be used with a y aesthetic.
    -
    - -

    The following is the example code:

    - -
    ggplot(hashtg, aes(x=reorder(hashtag, Freq), y = Freq, fill = hashtag)) + geom_bar(stat=""identity"") +
    -                geom_bar(width = 0.4) + xlab(""Hashtags Used"") + ylab(""Number of responses"") + 
    -                geom_text(aes(label=Freq), hjust = 1, colour = ""white"" )
    -
    - -

    The actual code has many arguments of bar graph such as title, theme & annotation, but I guess they would not hamper the output. I am using aggregated data where Freq in the code is the frequency of a particular term. When I searched for help, I repeated get instructions to use stat = ""identity"" for a bar plot.

    - -

    Any help would be highly appreciated.

    - -

    The session info is as follows:

    - -
    R version 3.2.0 (2015-04-16)
    -Platform: x86_64-apple-darwin13.4.0 (64-bit)
    -Running under: OS X 10.10.3 (Yosemite)
    -
    -locale:
    -[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
    -
    -attached base packages:
    -[1] stats     graphics  grDevices utils     datasets  methods   base     
    -
    -other attached packages:
    - [1] wordcloud_2.5        RColorBrewer_1.1-2   SnowballC_0.5.1      ggplot2_2.0.0        plyr_1.8.3          
    - [6] chron_2.3-47         RCurl_1.95-4.7       bitops_1.0-6         ROAuth_0.9.6         RJSONIO_1.3-0       
    -[11] twitteR_1.1.9        base64enc_0.1-3      tm_0.6-2             NLP_0.1-8            stringr_1.0.0       
    -[16] shinydashboard_0.5.1 shinyIncubator_0.2.2 shiny_0.12.2        
    -
    -loaded via a namespace (and not attached):
    - [1] Rcpp_0.12.1       tools_3.2.0       digest_0.6.8      bit_1.1-12        jsonlite_0.9.17   gtable_0.1.2     
    - [7] DBI_0.3.1         rstudioapi_0.3.1  curl_0.9.3        parallel_3.2.0    httr_1.0.0        bit64_0.9-5      
    -[13] grid_3.2.0        R6_2.1.1          magrittr_1.5      scales_0.3.0      htmltools_0.2.6   colorspace_1.2-6 
    -[19] mime_0.4          xtable_1.7-4      httpuv_1.3.3      labeling_0.3      stringi_0.5-5     munsell_0.4.2    
    -[25] slam_0.1-32       rjson_0.2.15      rstudio_0.98.1103
    -
    - -

    To reiterate, the same code works without a trouble in shinyapps.io.

    -",HQ -"

    I wanted to know why most variables in Kotlin are underlined. Some files contain a lot of underlining which is very annoying. If I hover my mouse over a variable it doesn't give any information most of the time. But on some it says ""This property has a backing field"" or ""Value captured in a closure"". Does anybody know how to disable those underlines? Here is a screenshot with what I mean: -

    - -

    And realm is then underlined throughout the entire file.

    -",HQ -"[![output sheet][1]][1] - - -[![The sheet from which data has to be dumped.][2]][2] - -There is an excel sheet with ItemId and ItemName.For a single ItemID there are 4-5 ItemName.The data from this sheet needs to be dumped into another sheet using VBA Excel Programming. -The sheet in which the data is dumped shall list the ItemName in different columns for a single ItemId. - - [1]: http://i.stack.imgur.com/Fx3da.png - [2]: http://i.stack.imgur.com/rJy9w.png",LQ -"

    I'm trying to install Yii2 via composer:

    - -
    composer global require ""fxp/composer-asset-plugin:~1.1.1""
    -composer create-project --prefer-dist yiisoft/yii2-app-basic basic
    -
    - -

    ~/.composer/composer.json

    - -
    {
    -    ""require"": {
    -    ""fxp/composer-asset-plugin"": ""~1.1.1""
    -    }
    -}
    -
    - -

    result:

    - -
    Problem 1
    -- yiisoft/yii2 2.0.x-dev requires bower-asset/jquery 2.1.*@stable | 1.11.*@stable -> no matching package found.
    -- yiisoft/yii2 dev-master requires bower-asset/jquery 2.1.*@stable | 1.11.*@stable -> no matching package found.
    -- yiisoft/yii2 2.0.6 requires bower-asset/jquery 2.1.*@stable | 1.11.*@stable -> no matching package found.
    -- yiisoft/yii2 2.0.5 requires bower-asset/jquery 2.1.*@stable | 1.11.*@stable -> no matching package found.
    -- Installation request for yiisoft/yii2 >=2.0.5 -> satisfiable by yiisoft/yii2[2.0.5, 2.0.6, dev-master, 2.0.x-dev].
    -
    - -

    What do I do wrong?

    -",HQ -">Hi I need to write a regex that matches the word ->versus,verse, vs. , v. , v but v should not be jumbled in words - - @""\b((.*?)"" + Regex.Unescape(xz) + @""[.,:/s]?)\b"", RegexOptions.IgnoreCase)) ->here i ll pass the array and test it ",LQ -"

    For example from this example:

    - -
    export const ADD_TODO = 'ADD_TODO'
    -export const DELETE_TODO = 'DELETE_TODO'
    -export const EDIT_TODO = 'EDIT_TODO'
    -export const COMPLETE_TODO = 'COMPLETE_TODO'
    -export const COMPLETE_ALL = 'COMPLETE_ALL'
    -export const CLEAR_COMPLETED = 'CLEAR_COMPLETED'
    -
    - -

    It's not like you're saving characters. The variable name is exactly the same as the string, and will never change. I understand making constants if one day you were doing to do something like:

    - -
    ADD_TODO = 'CREATE_TODO'
    -
    - -

    but that never happens. So what purpose do these constants serve?

    -",HQ -"

    I wrote following code, but XamlParseException has bean thrown. (""StaticResource not found for key CustomColor"")

    - -

    MyPage.xaml

    - -
    <?xml version=""1.0"" encoding=""UTF-8""?>
    -<ContentPage xmlns=""http://xamarin.com/schemas/2014/forms""
    -             xmlns:x=""http://schemas.microsoft.com/winfx/2009/xaml""
    -             x:Class=""XFApp11.MyPage"">
    -    <ContentPage.Resources>
    -        <ResourceDictionary>
    -            <ResourceDictionary.MergedDictionaries>
    -                <ResourceDictionary Source=""CustomResource.xaml"" />
    -            </ResourceDictionary.MergedDictionaries> 
    -        </ResourceDictionary>
    -    </ContentPage.Resources>
    -
    -    <ContentPage.Content>
    -        <BoxView Color=""{StaticResource CustomColor}"" />
    -    </ContentPage.Content>
    -</ContentPage>
    -
    - -

    CustomResource.xaml (build action = EmbeddedResource)

    - -
    <?xml version=""1.0"" encoding=""UTF-8"" ?>
    -<ResourceDictionary xmlns=""http://xamarin.com/schemas/2014/forms""
    -                    xmlns:x=""http://schemas.microsoft.com/winfx/2009/xaml"">
    -    <Color x:Key=""CustomColor"">#004B86</Color>
    -</ResourceDictionary>
    -
    -",HQ -"

    Hello I am making observable to ask my server about its online/offline status every 15 seconds:

    - -
    public Observable<Response> repeatCheckServerStatus(int intervalSec, final String path) {
    -        return Observable.interval(intervalSec, TimeUnit.SECONDS)
    -                .flatMap(new Func1<Long, Observable<Response>>() {
    -                    @Override
    -                    public Observable<Response> call(Long aLong) {
    -                        return Observable.create(new Observable.OnSubscribe<Response>() {
    -                            @Override
    -                            public void call(Subscriber<? super Response> subscriber) {
    -                                try {
    -                                    Response response = client.newCall(new Request.Builder()
    -                                            .url(path + API_ACTION_CHECK_ONLINE_STATUS)
    -                                            .header(""Content-Type"", ""application/x-www-form-urlencoded"")
    -                                            .get()
    -                                            .build()).execute();
    -
    -                                    subscriber.onNext(response);
    -                                    subscriber.onCompleted();
    -                                    if (!response.isSuccessful())
    -                                        subscriber.onError(new Exception());
    -                                } catch (Exception e) {
    -                                    subscriber.onError(e);
    -                                }
    -                            }
    -                        })
    -                                .subscribeOn(Schedulers.io())
    -                                .observeOn(AndroidSchedulers.mainThread());
    -                    }
    -                });
    -
    -    }
    -
    - -

    After I call this method, first execution of code will be after intervalSec time (15sec in my case). Looking at rxJava docummentation of interval method:

    - -

    http://reactivex.io/documentation/operators/interval.html

    - -

    This is how it should be.

    - -

    Question: is there any way to execute code instantly and then repeat in intervals?

    -",HQ -"

    What is the best way of combining overlapping circles into polygons?

    - -

    I am given a list of centre points of circles with a fixed diameter.

    - -

    - -

    I need to join any overlapping circles together and output a list of points in the resulting polygon. -

    - -

    This seems like a fairly common problem (GIS systems, vectors, etc.). This is possible to do through the Google Maps API but I am looking for the actual algorithm.

    - -

    I have tried to solve this problem by calculating points around each circle. -

    - -

    Then removing any points located inside any circle. -

    - -

    This gives me the correct list of points in the desired polygon. -

    - -

    However, the order of the points is a problem with this solution. Each circle has its points stored in an array. To merge them correctly with 2 overlapping circles is relatively straight forward. However, when dealing with multiple overlapping circles it gets complicated. -

    - -

    Hopefully you have some ideas to either make this solution work or of another algorithm that will achieve the desired result.

    - -

    Thanks in advance!

    -",HQ -"

    I've got a cron job that is set up like this in my crontab:

    - -
    */1 * * * *  sudo /home/pi/coup/sensor.py  >> /home/pi/sensorLog.txt
    -
    - -

    It puts stdout into sensorLog.txt, and any stderr it generates gets put into an email.

    - -

    I want both stdout and stderr to go into sensorLog.txt, so I added 1>&2 to the crontab, which is supposed to make stderr go into the same place as stdout. It now looks like this:

    - -
    */1 * * * *  sudo /home/pi/coup/sensor.py  >> /home/pi/sensorLog.txt 1>&2
    -
    - -

    Now, both stdout and stderr both get put into an email, and nothing gets added to the file. This is the opposite of what I am trying to accomplish.

    - -

    How do I get both stdout and stderr to get redirected to the file?

    -",HQ -"

    I have a Numpy ndarray of three large arrays and I'd just like to store the path to the file that generated the data in there somewhere. Some toy data:

    - -
    A = array([[  6.52479351e-01,   6.54686928e-01,   6.56884432e-01, ...,
    -              2.55901861e+00,   2.56199503e+00,   2.56498647e+00],
    -           [             nan,              nan,   9.37914686e-17, ...,
    -              1.01366425e-16,   3.20371075e-16,  -6.33655223e-17],
    -           [             nan,              nan,   8.52057308e-17, ...,
    -              4.26943463e-16,   1.51422386e-16,   1.55097437e-16]],                 
    -           dtype=float32)
    -
    - -

    I can't just append it as an array to the ndarray because it needs to be the same length as the other three.

    - -

    I could just append np.zeros(len(A[0])) and make the first value the string so that I can retrieve it with A[-1][0] but that seems ridiculous.

    - -

    Is there some metadata key I can use to store a string like /Documents/Data/foobar.txt' so I can retrieve it with something like A.metadata.comment?

    - -

    Thanks!

    -",HQ -"

    I find the .and method very useful for chaining many expectations.

    - -
    expect {
    -  click_button 'Update Boilerplate'
    -  @boilerplate_original.reload
    -} .to  change { @boilerplate_original.title }.to('A new boilerplate')
    -  .and change { @boilerplate_original.intro }.to('Some nice introduction')
    -
    - -

    Is there something that let's me check for no change?

    - -
    .and_not change { @boilerplate_original.intro }
    -
    - -

    Something like that? I couldn't find anything, and it's hard to search on Google for something like ""and not"".

    -",HQ -"I have a hash in Ruby, like that: - - a = {""0"" => [""2"", ""3""], ""1"" => ""4"", ""3"" => ""5""} -and I need a function to make an array from it, like that: - - a = [[2, 3], 4, nil, 5] - -Is there any simple way to do this?",LQ -"

    I am trying to run a program on a jupyter notebook that accepts user input, and I cannot figure out how to get it to read standard input. For example, if I run the code with shift-enter:

    - -
    a = input()
    -print(a)
    -
    - -

    the cell indicates it is running, but does not accept input from me. How do I get it to accept input?

    -",HQ -"

    I'm working on a BBCode editor and here is the code:

    - -
    var txtarea = document.getElementById(""editor_area"");
    -
    -            function boldText() {
    -                var start = txtarea.selectionStart;
    -                var end = txtarea.selectionEnd;
    -                var sel = txtarea.value.substring(start, end);
    -                var finText = txtarea.value.substring(0, start) + '[b]' + sel + '[/b]' + txtarea.value.substring(end);
    -                txtarea.value = finText;
    -                txtarea.focus();
    -            }
    -
    - -

    Everything is OK except one thing which is the position of the text-cursor. When I click on the boldText button, it sets the cursor position at the end of the Textarea!!

    - -

    Actually, I want to be able to set the cursor position at a certain index. I want something like this:

    - -
    txtarea.setFocusAt(20);
    -
    -",HQ -"

    I'm at my wit's end with these apple certificates. I have a Xamarin.Forms app that I need to sign with a provisioning profile so I can enable push notifications. However, Xamarin Studio isn't recognizing any of the provisioning profiles that I'm making. Can someone please help?

    - -

    Xamarin Studio trying to link provisioning profiles, profile 23devpp not found: -

    - -

    Xcode finds prov. profile 23devpp: -

    - -

    Developer window has provisioning profile marked as active: -

    -",HQ -"

    I am working on high performance code in C++ and have been using both CUDA and OpenCL and more recently C++AMP, which I like very much. I am however a little worried that it is not being developed and extended and will die out.

    - -

    What leads me to this thought is that even the MS C++AMP blogs have been silent for about a year. Looking at the C++ AMP algorithms library http://ampalgorithms.codeplex.com/wikipage/history it seems nothing at all has happened for over a year.

    - -

    The only development I have seen is that now LLVM sort of supports C++AMP, so it is not windows only, but that is all, and not something which has been told far and wide.

    - -

    What kind of work is going on, if any, that you know of?

    -",HQ -"

    I know how to set headers for a single HTTP call using the Headers class.

    - -

    Is there a way to do it for all HTTP calls?

    -",HQ -"

    Problem: The default diff/ merge tool in visual studio 2015 (and previous versions) does not allow merging when you compare a file. It only allows you to see differences. The only occasion I'm aware of the 3 way merge option being enabled is when there is a merge conflict.

    - -

    I want to see the 3 way merge option on every instance of the diff tool in Visual Studio.

    - -

    Notes: I'm definitely not looking for an alternative tool or a 'work around' on this. I have been happily using WinMerge as my merge tool which allows merging anytime you compare. I really like the vs diff tool's 3 way option and being able to use it any time I want would be a nice boost to my work flow.

    - -

    Thanks!

    -",HQ -"

    I am getting an error saying ""textAlignVertical"" is not a valid style property when attempting to use the 'textAlignVertical' style on a Text element. I've checked the documentation and it says I should be able to use this style property: https://facebook.github.io/react-native/docs/text.html

    - -

    has anyone else had this issue?

    -",HQ -"

    I have a bokeh (v0.11) serve app that produces a scatter plot using (x,y) coordinates from a data frame. I want to add interactions such that when a user either selects points on the plot or enters the name of comma-separated points in the text box (ie. ""p55, p1234""), then those points will turn red on the scatter plot.

    - -

    I have found one way to accomplish this (Strategy #3, below) but it is terribly slow for large dataframes. I would think there is a better method. Can anyone help me out? Am I missing some obvious function call?

    - -
      -
    • Strategy 1 (<1ms for 100 points) drills into the ColumnDataSource data for the exist plot and attempts to change the selected points.
    • -
    • Strategy 2 (~70ms per 100 points) overwrites the plot's existing ColumnDataSource with a newly created ColumnDataSource.
    • -
    • Strategy 3 (~400ms per 100 points) is Strategy 2 and then it re-creates -the figure.
    • -
    - -

    Code is deposited on pastebin: http://pastebin.com/JvQ1UpzY Most relevant portion is copied below.

    - -
    def refresh_graph(self, selected_points=None, old_idxs=None, new_idxs=None):
    -    # Strategy 1: Cherry pick current plot's source.
    -    # Compute time for 100 points: < 1ms.
    -    if self.strategy == 1:
    -        t1 = datetime.now()
    -        for idx in old_idxs:
    -            self.graph_plot.data_source.data['color'][idx] = 'steelblue'
    -        for idx in new_idxs:
    -            self.graph_plot.data_source.data['color'][idx] = 'red'
    -        print('Strategy #1 completed in {}'.format(datetime.now() - t1))
    -    else:
    -        t3 = datetime.now()
    -        self.coords['color'] = 'steelblue'
    -        self.coords.loc[selected_points, 'color'] = 'red'
    -        new_source = bkmodels.ColumnDataSource(self.coords)
    -        self.graph_plot = self.graph_fig.scatter('x', 'y', source=new_source, color='color', alpha=0.6)
    -        print('Strategy #3 completed in {}'.format(datetime.now() - t3))
    -    return
    -
    - -

    Ideally, I would like to be able to use Strategy #1, but it does not seem to allow the points to refresh within the client browser.

    - -

    Thanks for any help!

    - -

    FYI: I am using RHEL 6.X

    -",HQ -"

    I'm trying to inject an Ember service into an Ember Object but keep getting the following error:

    - -
    ""Assertion Failed: Attempting to lookup an injected property on an
    -object without a container, ensure that the object was instantiated 
    -via a container.""
    -
    - -

    My code looks essentially something like the following:

    - -
    const Model = Ember.Object.extend({
    -  store: Ember.inject.service(),
    -
    -  destroyRecord() {...},
    -
    -  serialize() {...},
    -
    -  deserialize() {...},
    -});
    -
    -let newModel = Model.create();
    -newModel.get('store');
    -
    - -

    Note: it does work if I inject the service into a Controller, but not an object. Haven't had any luck trying to figure out how to register the Object with the Ember container.

    -",HQ -"I discovered while I tried to add a function with if command that I probably don't understand the real function of theese commands. - -what I tried to achieve: I tried to tell the script that ""if"" (variable) equals to (this) then it will ""SET"" (this variable) to 0 - -how I tried to acomplish this: -i tried to acomplish this by writing: `IF %Q%==/decrypt_Delhi-Inter-Cafe-Guest set decrypt_Delhi-Inter-Cafe-Guest=0` - - -and as you can see... I aparently don't understand quite what I'm doing here haha - -why would i want to do something like this? - -well I'm mostly playing around with some few things and in order for whatever I do to work. I need to write something that can do this (sort of same waY) - -heres the script itself (i removed any unneccecary lines. between those codes theres an menu and a lot of other stuff I removed. this is the only part that needs fixing.) -(sorry for my incompetence. I'm here to learn) :P I tried to google a bit and read a lot but I had no luck sadly - - set encryption_Delhi-Inter_Cafe-Guest=1 - set /P Q=Console: - IF %Q%==/decrypt_Delhi-Inter-Cafe-Guest set decrypt_Delhi-Inter-Cafe-Guest=0 - if encryption_Delhi-Inter_Cafe-Guest=0 goto decryptedsuccess - :decryptedsuccess - echo you successfully decrypted dheli guest network - echo encryption value: %encryption_Delhi-Inter_Cafe-Guest%",LQ -"

    I'm starting to read about Carbon and can't seem to figure out how to create a carbon date.

    - -

    In the docs is says you can;

    - -
    -

    Carbon::createFromDate($year, $month, $day, $tz); - Carbon::createFromTime($hour, $minute, $second, $tz); - Carbon::create($year, $month, $day, $hour, $minute, $second, $tz);

    -
    - -

    But what if I just recieve a date like 2016-01-23? Do I have to strip out each part and feed it to carbon before I can create a carbon date? or maybe I receive time like 11:53:20??

    - -

    I'm dealing with dynamic dates and time and writing code to separate parts of time or date doesn't feel right.

    - -

    Any help appreciated.

    -",HQ -"i am calling function on another function like below. - - function loadXML(e:Event = null):void{ - - xmlData = new XML(e.target.data); - //var production:String = xmlData.production.app_id.text(); - trace(xmlData); - var states:String = xmlData.state.place.text(); - var desc:String = xmlData.state.description.text(); - var image:String = xmlData.state.image.text(); - trace('this is working'); - } - obj.addEventListener(MouseEvent.MOUSE_OVER,fl_MouseOverHandler); - function fl_MouseOverHandler(event:MouseEvent):void - { - loadXML(); - } - -in thi s case warning occured `Cannot access a property or method of a null object reference` how do i resolve this?",LQ -"

    I have two tables has one to one relationship as below:

    - -
    @Entity
    -@Data
    -@NoArgsConstructor
    -@AllArgsConstructor
    -public class Book {
    -  @Id
    -  @GeneratedValue(strategy = GenerationType.TABLE)
    -  private int id;
    -
    -  private String name;
    -
    -  @OneToOne(cascade = CascadeType.ALL)
    -  @JoinColumn(name = ""book_dtail_id"")
    -  private BookDetail bookDetail;
    -}
    -
    -@Entity
    -@Table(name = ""book_detail"")
    -@Data
    -@NoArgsConstructor
    -@AllArgsConstructor
    -public class BookDetail {
    -  @Id
    -  @GeneratedValue(strategy = GenerationType.TABLE)
    -  private Integer id;
    -
    -  @Column(name = ""number_of_pages"")
    -  private Integer numberOfPages;
    -
    -  @OneToOne(mappedBy = ""bookDetail"")
    -  private Book book;
    -}
    -
    - -

    I used a Form to input data as below

    - -
    @Data
    -@NoArgsConstructor
    -@AllArgsConstructor
    -public class BookForm {
    -  Book book;
    -  BookDetail bookDetail;
    -}
    -
    - -

    The controller looks like this:

    - -
    String handleNewBook(Model model){
    -  Book book = new Book();
    -  BookDetail bookDetail = new BookDetail();
    -  BookForm bookForm = new BookForm(book, bookDetail);
    -
    -  model.addAttribute(""bookForm"", bookForm);
    -  return ""index"";
    -}
    -
    -String handleSaveBookCreate(BookForm bookForm, Model model){
    -    bookForm.getBook().setBookDetail(bookForm.getBookDetail());
    -    bookForm.getBookDetail().setBook(bookForm.getBook());
    -    bookService.save(bookForm.getBook()));
    -    return ""index"";
    -}
    -
    - -

    Last is my form as below:

    - -
    <form role=""form"" action=""#"" th:object=""${bookForm}"" th:action=""@{/book}"" method=""POST"">
    -    <input type=""text"" th:field=""*{book.name}""/>
    -    <input type=""text"" th:filed=""*{bookDetail} == null ? '' : *{bookDetail.numberOfPages}""  placeholder=""Enter Book Page Numbers""/>
    -    <button type=""submit"">Submit</button>
    -</form>
    -
    - -

    everything seems no problems, but when I ""bookService.save(bookForm.getBook()));"" is executed, I got error as below

    - -
    java.lang.StackOverflowError: null, 
    -at com.zangland.study.jpa.entity.BookDetail.hashCode(BookDetail.java:17) ~[classes/:na]
    -at com.zangland.study.jpa.entity.Book.hashCode(Book.java:16) ~[classes/:na]
    -at com.zangland.study.jpa.entity.BookDetail.hashCode(BookDetail.java:17) ~[classes/:na]
    -at com.zangland.study.jpa.entity.Book.hashCode(Book.java:16) ~[classes/:na]
    -
    - -

    repeat the same as above about 100 lines.... do this mean that I can't use Lombok.hashCode?

    - -

    Saved Book: '32768','Spring JPA','32768' -Saved BookDetail: '32768','1157'

    -",HQ -"

    I'm using following lines of code to add a default header to all of my requests sent using Retrofit2:

    - -
    private static OkHttpClient defaultHttpClient = new OkHttpClient();
    -static {
    -    defaultHttpClient.networkInterceptors().add(new Interceptor() {
    -        @Override
    -        public Response intercept(Chain chain) throws IOException {
    -            Request request = chain.request().newBuilder()
    -                    .addHeader(""Accept"", ""Application/JSON"").build();
    -            return chain.proceed(request);
    -        }
    -    });
    -}
    -
    - -

    After upgrading retrofit to beta-3 version, I had to upgrade OkHttp to OkHttp3 also (actually I just changed package names from okhttp to okhttp3, the library is included inside retrofit). After that I get exceptions from this line:

    - -
    defaultHttpClient.networkInterceptors().add(new Interceptor());
    -
    - -
    -

    Caused by: java.lang.UnsupportedOperationException - at java.util.Collections$UnmodifiableCollection.add(Collections.java:932)

    -
    - -
    - -
    -

    Caused by: java.lang.ExceptionInInitializerError

    -
    - -
    - -

    What is the problem here?

    -",HQ -"I want to install oracle 11g server class on my windows 7 ( NON SERVER OS). -If it is possible then what step to follow client-server installation. -plz help.",LQ -"

    This is the way I installed nodejs in ubuntu 14.04 LTS:

    - -
    sudo add-apt-repository ppa:chris-lea/node.js
    -
    -sudo apt-get install nodejs
    -
    - -

    When I checked the node version with this:

    - -
    node -v
    -
    - -

    I get this

    - -
    v0.10.37
    -
    - -

    But the latest version is 4.2.6 and 5.5.0. How can I get the latest or update version?

    -",HQ -"

    I have a couple of images that show how something changes in time. I visualize them as many images on the same plot with the following code:

    - -
    import matplotlib.pyplot as plt
    -import matplotlib.cm as cm
    -
    -img = [] # some array of images
    -fig = plt.figure()
    -for i in xrange(6):
    -    fig.add_subplot(2, 3, i + 1)
    -    plt.imshow(img[i], cmap=cm.Greys_r)
    -
    -plt.show()
    -
    - -

    and get something like:

    - -

    Which is ok, but I would rather animate them to get something like this video. How can I achieve this with python and preferably (not necessarily) with matplotlib

    -",HQ -"

    I am using PyCharm Community Edition 5.0.1 -It was working fine till yesterday. But it has been stuck at 'Scanning files to index' for a very long time now. Since yesterday.

    - -

    I have tried re-installing it, and also tried invalidating cache.

    - -

    I can make changes to programs and use it as a text editor but unable to run any file. Can anyone help? Thanks.

    -",HQ -"#include - -int main() { - - char choice; - float x,y; - - start: - printf(""[c] Converts Celsius -> Fahrenheit\n[f] Converts Fahrenheit -> Celsius\n\n\n""); - printf(""Enter Choice: ""); - scanf(""%c"",&choice); - if (choice!='c' || choice!='f' || choice!='x') { - printf(""Wrong Choice: Try Again!""); - goto start; - - } if (choice!=x) - printf(""Input Value: ""); - scanf(""%f"",&x); - if (choice =='c') - y = 1.8 * x + 32 - else - y = (x-32) * (5/9) - printf(""Result: %.2f"",y); - exit: - - return 0; -} - - - - -My instructor posted this but when I tried it, it have errors, need help to fix it :) Any help will do :) -",LQ -"

    Creating a basic directive is simple:

    - -
    import {Component} from 'angular2/core';
    -
    -@Component({
    -    selector: 'my-component',
    -    template: '<div>Hello!</div>'
    -})
    -export class MyComponent {
    -    constructor() {
    -
    -    }
    -}
    -
    - -

    This works as expected. However, if I want to use Ionic components in my directive things blow up.

    - -
    import {Component} from 'angular2/core';
    -
    -@Component({
    -    selector: 'my-component',
    -    template: '<ion-list><ion-item>I am an item</ion-item></ion-list>'
    -})
    -export class MyComponent {
    -    constructor() {
    -
    -    }
    -}
    -
    - -

    The directive is rendered, but Ionic components are not transformed, and so wont look/work properly.

    - -

    I can't find any examples on this. How should I do this?

    -",HQ -"

    I'm using collection2 and I'm trying to get it to handle validation is a specific way. I have a profile schema which looks kind of like this:

    - -
    Schema.UserProfile = new SimpleSchema({
    -    name: {
    -        type: String,
    -        optional: false
    -    }
    -    location: {
    -        type: String,
    -        optional: true
    -    }
    -    gender: {
    -        type: String,
    -        optional: false
    -    }
    -});
    -
    -Schema.User = new SimpleSchema({
    -    username: {
    -        type: String,
    -        optional: true
    -    },
    -    emails: {
    -        type: Array,
    -        optional: true
    -    },
    -    ""emails.$"": {
    -        type: Object
    -    },
    -    ""emails.$.address"": {
    -        type: String,
    -        regEx: SimpleSchema.RegEx.Email
    -    },
    -    ""emails.$.verified"": {
    -        type: Boolean
    -    },
    -    createdAt: {
    -        type: Date
    -    },
    -    profile: {
    -        type: Schema.UserProfile,
    -        optional: true
    -    },
    -    services: {
    -        type: Object,
    -        optional: true,
    -        blackbox: true
    -    },
    -    roles: {
    -        type: [String],
    -        optional: true
    -    },
    -    heartbeat: {
    -        type: Date,
    -        optional: true
    -    }
    -});
    -
    -Meteor.users.attachSchema(Schema.User);
    -
    - -

    Now, on my registration form I'm requiring the user to select their gender and then later once they log in, users are presented with a separate form asking for their name and location. Here's the problem:

    - -

    The registration form works and everything goes through with saving. When they try to save the internal form with location and name though I get an error:

    - -
    Error invoking Method 'updateProfile': Gender is required [400]
    -
    - -

    I know it's happening because it's required in the schema but I've already obtained this information. How do I not require that? Or do I set up validation per form?

    -",HQ -"I did search for this and linking to entries here: -http://stackoverflow.com/questions/22053090/appending-multiple-files-into-a-data-frame-using-r -http://stackoverflow.com/questions/22053090/appending-multiple-files-into-a-data-frame-using-r -http://stackoverflow.com/questions/12162278/appending-column-to-a-data-frame-r - -But they don't answer my question. - -Code: - - for (i in 1:nrow(files.df)) { - Final <- parser(as.character(files.df[i,])) - Final2 <- rbind(Final2,Final) - } - -files.df contains over 30 filenames (read from a directory using list.files) which is then passed to a custom function parser which returns a dataframe holding over 100 lines (number varies from one file to the next). Both Final and Final2 are initialised with NA outside the for loop. The script runs fine with rbind but its a semantic issue - the resulting output is not what I expect. The resulting dataframe is a lot smaller than the files combined. - -I am certain it has to do with the rbind bit. - -Any thoughts would be great! Would be good if I can stick to the data frame structure. ",LQ -"

    I try to change visual studio code settings but I cannot edit anything. What should I do ? I want to set encoding to

    - -
    ""files.encoding"": ""ISO 8859-1"",
    -
    -",HQ -"this is my code: - -def cal(month): - if month in ['January', 'march','may','july','august','oct','dec']: - print (""this month has 31 days"") - elif month in ['april','june','sept','nov']: - print (""this month has 30 days"") - elif month == 'feb' and leap(year)== True: - print (""this month has 29 days"") - elif month == 'feb' and leap(year) == False: - print (""this month has 28 days"") - else: - print (""invalid input"") - - -def leap(year): - if (year % 4== 0) or (year % 400 == 0): - print (""its a leap year!"") - else: - print (""is not a leap year"") - -year = int(input('type a year: ')) -print ('you typed in :' , year) -month = str(input('type a month: ')) -print ('you typed in :', month) - - - -cal(month) -leap(year) - -o/p: -type a year: 2013 -you typed in : 2013 -type a month: feb -you typed in : feb -is not a leap year -is not a leap year -invalid input -is not a leap year - -why am i not getting the output for count of days in feb if it is a 28 day month or 29? - -why am i getting the invalid input part even though its an else? - -Help is appreciated. - -Thanks. -",LQ -"

    I am currently trying to clone an existing project of mine from github. After clone I run composer install during the process I receive the following error:

    - -

    Uncaught ReflectionException: Class log does not exist

    - -

    I am running Laravel 5.2 on Centos 7.

    - -

    I have seen references to:

    - -
      -
    • Removing spaces within the .env file.
    • -
    • Removing the vendor directory & re-installing
    • -
    • Removing certain packages required in composer.json
    • -
    - -

    I have:

    - -
      -
    • Replaced my .env with the example.env to avoid any custom config errors.
    • -
    • I have removed & re-cloned the repo.
    • -
    • I have used the default composer.json shipped with Laravel to see if that makes a difference.
    • -
    - -

    None of the above have brought me any joy. I also have the same environment set up on another machine with the application working fine. The only difference here is the machine (working) wasn't cloned from git - it was the initial build environment.

    - -

    The stack trace I am receiving:

    - -
    PHP Fatal error:  Uncaught ReflectionException: Class log does not exist in /var/www/html/Acme/vendor/laravel/framework/src/Illuminate/Container/Container.php:736
    -    Stack trace:
    -    #0 /var/www/html/Acme/vendor/laravel/framework/src/Illuminate/Container/Container.php(736): ReflectionClass->__construct('log')
    -    #1 /var/www/html/Acme/vendor/laravel/framework/src/Illuminate/Container/Container.php(631): Illuminate\Container\Container->build('log', Array)
    -    #2 /var/www/html/Acme/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(674): Illuminate\Container\Container->make('log', Array)
    -    #3 /var/www/html/Acme/vendor/laravel/framework/src/Illuminate/Container/Container.php(845): Illuminate\Foundation\Application->make('log')
    -    #4 /var/www/html/Acme/vendor/laravel/framework/src/Illuminate/Container/Container.php(800): Illuminate\Container\Container->resolveClass(Object(ReflectionParameter))
    -    #5 /var/www/html/Acme/vendor/laravel/framework/src/Illuminate/Container/Container.php(769): Illuminate\Container\Container->getDependenc in /var/www/html/Acme/vendor/laravel/framework/src/Illuminate/Container/Container.php on line 736
    -
    - -

    Any help would be much appreciated. Thanks in advance.

    -",HQ -">>> import django -Traceback (most recent call last): - File """", line 1, in -ImportError: No module named django ->>> - - - -[enter image description here][1] - - - [1]: http://i.stack.imgur.com/OveNv.png",LQ -"

    I want to be able to get active notifications from my Android app on demand. (actually I just need to know if there are any) -I've been searching for this behavior and it seems, like I have only two options: NotificationManager.getActiveNotifications() which is exactly what I need, but is only available from SDK 23 or using a NotificationService but I really dislike this solution as I have to provide the permission to my app to read all notifications which is definitely an overkill.

    - -

    Does anybody know about any solution which would behave like NotificationManager.getActiveNotifications() and not require SDK >= 23?

    - -

    Thanks in advance!

    -",HQ -"

    Can someone explain me the difference between lambda and linq?

    - -

    Please don't point me out to other stackexchange answers or trivial explanations, I've checked most of them and they're orribly confusing.

    - -

    I've used a bit of LINQ (I believe?) in these days with expressions like (merely an invented example)

    - -
    var result = object.Where(e => e.objectParameter > 5).Any()
    -
    - -

    Which, should return in result a boolean which says if there is any element >5.

    - -

    Ok, then, what are LINQ and lambda?

    - -

    Is LINQ just a library, a set of functions, developed by C# team to include with

    - -
    using System.Linq;
    -
    - -

    which gives you a powered ""for loop"" with many methods to avoid you getting your hands ""dirty""? (First, FirstOrDefault, Any.... etc)

    - -

    And what is Lambda? Is the same as above? It's a language on it's own? What is it and how it differs from LINQ? How do I recognize one or another?

    - -

    Thanks

    -",HQ -"

    There is a wonderful article about a lightweight notification system built in Swift, by Mike Ash: (https://www.mikeash.com/pyblog/friday-qa-2015-01-23-lets-build-swift-notifications.html).

    - -

    The basic idea is you create objects that you can ""listen"" to i.e. invoke a callback on when there is some state change. To make it thread-safe, each object created holds its own dispatch_queue. The dispatch_queue is simply used to gate critical sections:

    - -
    dispatch_sync(self.myQueue) {
    -    // modify critical state in self
    -}
    -
    - -

    and moreover it likely won't be in high contention. I was kind of struck by the fact that every single object you create that can be listened to makes its own dispatch queue, just for the purposes of locking a few lines of code.

    - -

    One poster suggested an OS_SPINLOCK would be faster and cheaper; maybe, but it would certainly use a lot less space.

    - -

    If my program creates hundreds or thousands (or even tens of thousands of objects) should I worry about creating so many dispatch queues? Probably most won't ever even be listened to, but some might.

    - -

    It certainly makes sense that two objects not block each other, i.e. have separate locks, and normally I wouldn't think twice about embedding, say, a pthread_mutex in each object, but an entire dispatch queue? is that really ok?

    -",HQ -"

    Is there a simple way to break out of an inner For loop, i.e. a Fro loop within another For loop? Without having to set additional flags for example

    -",HQ -" -var select = document.getElementById('select'); - -var opsArray= select.options; - - - - -select.onchange = userSelection; - - -function userSelection(){ - -var i = select.selectedIndex; - - document.location.assign('projects/' + opsArray[i].value + '/'); - -} - - - -so i know that when the user select the page they want it will go there. what i want is for somebody to enplane this to me, this is the part of JavaScript that i am confused with. so if i just had a block menu instead of a select menu, how will this code go with that. well basically how do that ""userSlection/opsArray[i].value"" work......i know how to do this in html """"folder/aboutpage/this.index"""". but how do that code above work?? thanks in avances.",LQ -"i have three tables, 2 hierarchical and 1 junction between these. - - Teams - id idParent - 1 null - 2 1 - 3 null - 4 null - 5 4 - - Projects - id idParent - 1 null - 2 null - 3 2 - 4 2 - 5 null - - TeamProjects - idTeam idProject - 2 2 - 3 1 - 5 5 - -A project always depend on at least one team, this is what teamprojects is for. - -The result i'm trying to achieve : for each of the object (both teams and projects), i want to know what are the ascendant and descendant objects (id concatened) - - idObject ascendantTeams descendantTeam ascendantProjects descendantProjects - 1 2 7, 10 - 2 1 7 - 3 6 - 4 - 5 4 10 - 6 3 - 7 2 8, 9 - 8 2 7 - 9 2 7 - 10 5 - -I am trying to achieve this with a linq to entities query, but i need both CTE (for the recursive part) and (stuff-for-xml) for the concatenation part... and neither translate to linq to entities. -so i'm trying to make a view to help, but i dont manage to write the sql for it either. - -how would you resolve this, either with linq to entities or sql ?",LQ -"

    I'm trying to kill a process on GitBash on Windows10 using the taskkill command. However, I get the following error:

    - -
    $ taskkill /pid 13588
    -ERROR: Invalid argument/option - 'C:/Program Files/Git/pid'.
    -Type ""TASKKILL /?"" for usage.
    -
    - -

    it works fine on cmd. Can anyone help?

    -",HQ -"

    I have a spring boot MVC java Web app. I've been able to integrate Springfox for API documentation. I can visually see all of the APIs when server is up and running.

    - -

    How can I generate OFFLINE swagger API documentation? Note: I would not like to use asciidoc or markdown documentation, but I'd like the same swagger API user interface in html files. I'd like so that the links are relative to local directory instead of local host server links. Thanks

    -",HQ -" -a = 5 # variable is initialized in the outer scope - -3.times do |n| - a = 3 # is a accessible here, in an inner scope? -end - -puts a -What is the value of a when it is printed to the screen? - -mind you times is a method invocation, there is inner scope created here. - -The value of a is 3. This is because a is available to the inner scope created by 3.times do ... end, which allowed the code to re-assign the value of a. In fact, it re-assigned it three times to 3. - -why is this different than above? because we bring in a variable but it doesn't -change the local variable?! maybe because its a method? I don't know? -But you guys can compare above example with the one below. - -a = 5 -def adder(num) - num = 3 -end - -adder a # 3 - -puts a # 5 - -why is a 5 and not 3? ",LQ -"How to perform Undo(remove last entered string) and Redo(add it back) Operations on Strings ? ( using Core Java data structures ) . - - -This was an interview question,which expected , creating our own pool of strings (asking for number of strings and strings from user) -UNDO : removing last string from -Redo : Adding it back",LQ -"

    I create a map using leaflet package in Shiny which have a selectInput to allow user to select from a site list. The site list also adds into leaflet as markers.

    - -

    When user selects a new site, I want to recenter map into the selected site without change the zoom level. The setView function can be called to set center points, but has to specify the zoom level.

    - -

    Is it possible to get the zoom level of leaflet map which can be used in the setView function?

    - -

    This is a minimum example to play with my question with reset zoom level.

    - -
    library(shiny)
    -library(leaflet)
    -
    -df <- data.frame(
    -    site = c('S1', 'S2'),
    -    lng = c(140, 120),
    -    lat = c(-20, -30), 
    -    stringsAsFactors = FALSE)
    -
    -# Define UI for application that draws a histogram
    -ui <- shinyUI(fluidPage(
    -    selectInput('site', 'Site', df$site),
    -    leafletOutput('map')
    -
    -))
    -
    -server <- shinyServer(function(input, output, session) {
    -
    -    output$map <- renderLeaflet({
    -        leaflet() %>%
    -            addTiles() %>% 
    -            setView(lng = 133, lat = -25,  zoom = 4) %>% 
    -            addMarkers(lng = df$lng, lat = df$lat)
    -    })
    -
    -    observe({
    -        req(input$site)
    -        sel_site <- df[df$site == input$site,]
    -        isolate({
    -            leafletProxy('map') %>%
    -                setView(lng = sel_site$lng, lat = sel_site$lat, zoom = 4)
    -        })
    -    })
    -})
    -
    -shinyApp(ui = ui, server = server)
    -
    - -

    PS: when you play with these codes, please adjust zoom level before selecting a new site.

    - -

    Thanks of any suggestions.

    -",HQ -"I have a web portal developed with Php and MySQL. I want to create a desktop app to work to connect to the Database through the internet. I have two huge challenges -1. Chrome App doesn't navigate from page to page like a website does so HOW DO I ACHIEVE MULTIPKE USER INTERFACES OR VIEWS -2. IndexedDB is not suitable for my app, HOW DO I CONNECT TO MYSQL DATABASE ONLINE -NB: I am only a bigginner !",LQ -"Everything worked in my local, I googled few questions, all have to do with port problem. But since I'm using express, I think I will not have hardcoded port problem, as you can see below is partially the code in - -www - - var port = normalizePort(process.env.PORT || '3000'); - app.set('port', port); -I have a app.js and below is my package.json - - { - ""name"": ""my app"", - ""version"": ""0.0.1"", - ""private"": true, - ""scripts"": { - ""start"": ""node ./bin/www"" - }, - ""dependencies"": { - .. - .. - } - } - -What I've tried : - - 1. rename app.js to main.js - 2. created nodecommand.config file like someone suggested - -",LQ -"Table Product - -Id name t1 t2 -1 A 1 4 -2 B 5 2 -3 C 3 1 -4 D 4 5 - -Tan Table - -id tan -1 tanA -2 tanB -3 tanC -4 tanD -5 tanE - - -I have two above table and i want the result as below in expecting result how it is possible please assist -Expecting result - -A tanA tanD -B tanE tanB -C tanC tanA -D tanD tanE",LQ -"

    I have models like this:

    - -
    class ModelA(models.Model):
    -    name = models.CharField()
    -
    -
    -class ModelB(models.Model):
    -    f1 = models.CharField()
    -    model_a = models.ForeignKey(ModelA)
    -
    - -

    Serializers:

    - -
    class ASerializer(serializers.ModelSerializer):
    -    model_b_ids = serializers.CharField()
    -    class Meta:
    -        model = ModelA
    -        write_only_fields = ('model_b_ids',)
    -
    - -

    views:

    - -
    class AView(CreateModelMixin, GenericViewSet):
    -
    -    def perform_create(self, serializer): 
    -        model_b_ids = parse_somehow(serializer.validated_data[""model_b_ids""])
    -        #do something...
    -
    - -

    The problem I am getting is the with the ""model_b_ids""

    - -

    The user should submit it while sending post data.

    - -

    I use it in perform_create to link to related models.

    - -

    But thats not ""real column"" in ModelA so when I try to save it is raising exception.

    - -

    I tried to it pop from validated_data but then again getting error somewhere that cannot read model_b_ids from model. Any idea on using this kind of field correctly ?

    -",HQ -"

    A single row can be inserted like this:

    - -
    client.query(""insert into tableName (name, email) values ($1, $2) "", ['john', 'john@gmail.com'], callBack)
    -
    - -

    This approach automatically comments out any special characters.

    - -

    How do i insert multiple rows at once?

    - -

    I need to implement this:

    - -
    ""insert into tableName (name, email) values ('john', 'john@gmail.com'), ('jane', 'jane@gmail.com')""
    -
    - -

    I can just use js string operators to compile such rows manually, but then i need to add special characters escape somehow.

    -",HQ -"

    How do I annotate my ASP.NET WebAPI actions so that the swagger metadata includes the content-types that my resources support?

    - -

    Specifically, I want the documentation to show that one of my resources can return the 'original' application/json and application/xml but also now returns a new format, application/vnd.blah+json or +xml.

    -",HQ -"

    Very often, arrays are squeezed with np.squeeze(). In the documentation, it says

    - -
    -

    Remove single-dimensional entries from the shape of a.

    -
    - -

    However I'm still wondering: Why are zero and nondimensional entries in the shape of a? Or to put it differently: Why do both a.shape = (2,1) and (2,) exist?

    -",HQ -"I am absolute beginner to Android. But I am having a problem with working with date in Android. Now I am inserting a value from EditText field to a Sqlite table column that is date database date. It is always null when it is added to database. Please help me. What is wrong with my code ? - -> My DatabaseHelper class - - public class DatabaseHelper extends SQLiteOpenHelper { - - private static final int DATABASE_VERSION = 1; - private static final String DATABASE_NAME = ""todo.db""; - private static final String TABLE_NAME = ""task""; - private static final String COLUMN_ID = ""id""; - private static final String COLUMN_DESCRIPTION = ""description""; - private static final String COLUMN_DATE =""date""; - private static final String COLUMN_DONE = ""done""; - private static final String CREATE_TABLE = ""CREATE TABLE ""+TABLE_NAME+"" (""+COLUMN_ID+"" INTEGER PRIMARY KEY AUTOINCREMENT,""+COLUMN_DESCRIPTION+"" TEXT,""+ - COLUMN_DATE+"" DATE,""+COLUMN_DONE+"" BOOLEAN)""; - SQLiteDatabase db; - - public DatabaseHelper(Context context) - { - super(context,DATABASE_NAME,null,DATABASE_VERSION); - } - - - @Override - public void onCreate(SQLiteDatabase db) - { - this.db = db; - db.execSQL(CREATE_TABLE); - } - - @Override - public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { - String query = ""DROP TABLE IF EXISTS ""+TABLE_NAME; - db.execSQL(query); - this.onCreate(db); - } - - public void insertTask(Task task) - { - db = getWritableDatabase(); - ContentValues values = new ContentValues(); - values.put(COLUMN_DESCRIPTION,task.getDescription()); - values.put(COLUMN_DATE,task.getDate().toString()); - values.put(COLUMN_DONE,Boolean.FALSE.toString()); - db.insert(TABLE_NAME, null, values); - db.close(); - } - } - -> This is my save method in Fragment - - public void saveTask() - { - String description = tfDescription.getText().toString(); - String date = tfDate.getText().toString(); - - if(description.isEmpty()) - { - Toast.makeText(getActivity().getBaseContext(),""Description is required"",Toast.LENGTH_SHORT).show(); - } - else if(date.isEmpty()) - { - Toast.makeText(getActivity().getBaseContext(),""Date is required"",Toast.LENGTH_SHORT).show(); - } - else if(description.length() This is my Task class - - public class Task { - private int Id; - private String Description; - private java.util.Date TaskDate; - private boolean Done; - - public void setId(int Id) - { - this.Id = Id; - } - - public int getId() - { - return this.Id; - } - - public void setDescription(String Description) - { - this.Description = Description; - } - - public String getDescription() - { - return this.Description; - } - - public void setDate(Date taskDate) - { - this.TaskDate = taskDate; - } - - public Date getDate(){ - return this.TaskDate; - } - - public void setDone(Boolean done) - { - this.Done = done; - } - - public Boolean getDone() - { - return this.Done; - } - } - - -Please help me why my date value is always null in database. The input format of the text field is MM/dd/yyyy for date. Please what is wrong with my code ?",LQ -"This is a java program for making a quiz and you have 10 questions and if you get one answer correct you will get 1 point however there is no negative marking and when I compile it it throws this: 'else' without 'if' error - - enter code here - - - - import java.io.*; - import java.util.*; - - - /** - * Write a description of class program1 here. - * - * @author (your name) - * @version (a version number or a date) - */ - public class Project - { - public static void main(String[]args) - { - Scanner sc = new Scanner(System.in); - char ans; - int score=0; - - System.out.println(""1.What was the first mouse created?""); - System.out.println(""(a)Glass ""); - System.out.println(""(b) Wood""); - System.out.println(""(c) Steel""); - System.out.println(""(d) Paper""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='b') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - - - - System.out.println(""2. Who is the father of the 'Internet'?""); - System.out.println(""(a)Alan Peris ""); - System.out.println(""(c) Vint Cerf""); - System.out.println(""(d) Steve Lawrence""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='c') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - - - - System.out.println(""3.What search engine provides ""instant answers"" for certain types of queries?""); - System.out.println(""(a)Google ""); - System.out.println(""(b) Yahoo""); - System.out.println(""(c) Bing""); - System.out.println(""(d) Dogpile""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='c') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - - - - - System.out.println(""3.4K might be used synonymously with what acronym?""); - System.out.println(""(a)UHD ""); - System.out.println(""(b) VGA""); - System.out.println(""(c) PCI""); - System.out.println(""(d) HDR""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='a') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - - - - - System.out.println(""4. A zero day exploit is a type of what?""); - System.out.println(""(a) Malware ""); - System.out.println(""(b) Shareware""); - System.out.println(""(c) Freeware""); - System.out.println(""(d) Adware""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='a') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - - - - - - System.out.println(""5.What adjective describes an image that only contains shades of gray?""); - System.out.println(""(a) Saturated ""); - System.out.println(""(b) Grayscale""); - System.out.println(""(c) Hueless""); - System.out.println(""(d) Black and White""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='b') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - - System.out.println(""6.What does it mean if a device is erg onomic?""); - System.out.println(""(a) It is upgradeable""); - System.out.println(""(b) It is enviromentally friendly""); - System.out.println(""(c) It is compatible with multiple platforms""); - System.out.println(""(d) It is designed to be comfortable to use""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='d') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - - - System.out.println(""7. Which of the following can be synced with iCloud?""); - System.out.println(""(a) Reminders ""); - System.out.println(""(b) Contacts""); - System.out.println(""(c) Calendar""); - System.out.println(""(d) Websites""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='d') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - - - - - System.out.println(""8.What is the term ""Wi-Fi"" short for?""); - System.out.println(""(a) Wireless Fidelity""); - System.out.println(""(b) Wireless Finder""); - System.out.println(""(c) Wireless Frequency Inte lligence""); - System.out.println(""(d) Nothing""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='d') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - System.out.println(""9. What do keystrokes measure?""); - System.out.println(""(a) Login attempts""); - System.out.println(""(b) Secure socket connections""); - System.out.println(""(c) Keys pressed on a keyboard""); - System.out.println(""(d) Nothing""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='c') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - - - - System.out.println(""10.The veronica search engine is used to search what service?""); - System.out.println(""(a) Gopher""); - System.out.println(""(b) Telnet""); - System.out.println(""(c) BBS""); - System.out.println(""(d) FTP""); - System.out.print(""Enter Your Choice => ""); - ans=sc.next().charAt(0) ; - if(ans=='a') - System.out.println(""That's correct!""); - score+=1; - else - - System.out.println(""Sorry it is wrong...""); - - System.out.println(""Your total score is:""+score); - } - } - } - - - - - - - - - - - ",LQ -"Hi I have a set of fasta sequences starting with a different header. I need to add sequence number with increasing count (Seq1, Seq2, Seqn...) for each sequence header. Here is the first one: - -input: - - >[organism=Fowl Adenovirus] Fowl Adenovirus FAdV hexon gene, isolate FAdV/SP/1184/2013 - -output: - - >Seq1 [organism=Fowl Adenovirus] Fowl Adenovirus FAdV hexon gene, isolate FAdV/SP/1184/2013 - -",LQ -"With my low knowledge in lambda, I would appreciate if someone could help me to change my ""query"". I have a query to get the most similar value. Well I need to define the minimum Levenshtine distnace result. If the score is more than 2, I don't want to see the value as part of the recommendation. - - String recommendation = candidates.parallelStream() - .map(String::trim) - .filter(s -> !s.equals(search)) - .min((a, b) -> Integer.compare( - cache.computeIfAbsent(a, k -> StringUtils.getLevenshteinDistance(Arrays.stream(search.split("" "")).sorted().toString(), Arrays.stream(k.split("" "")).sorted().toString()) ), - cache.computeIfAbsent(b, k -> StringUtils.getLevenshteinDistance(Arrays.stream(search.split("" "")).sorted().toString(), Arrays.stream(k.split("" "")).sorted().toString())))) - .get(); - -Thank you!",LQ -"

    I have a virtualenv located at /home/user/virtualenvs/Environment. Now I need this environment at another PC. So I installed virtualenv-clone and used it to clone /Environment. Then I copied it to the other PC via USB. I can activate it with source activate, but when I try to start the python interpreter with sudo ./Environment/bin/python I get

    - -
    ./bin/python: 1: ./bin/python: Syntax Error: ""("" unexpected
    -
    - -

    Executing it without sudo gives me an error telling me that there is an error in the binaries format. -But how can this be? I just copied it. Or is there a better way to do this? I can not just use pip freeze because there are some packages in /Environment/lib/python2.7/site-packages/ which I wrote myself and I need to copy them, too. As I understand it pip freeze just creates a list of packages which pip then downloads and installs.

    -",HQ -"

    In the following program the a member variable is not copied when B is virtually derived from A and instances of C (not B) are copied.

    - -
    #include <stdio.h>
    -
    -class A {
    -public:
    -    A() { a = 0; printf(""A()\n""); }
    -
    -    int a;
    -};
    -
    -class B : virtual public A {
    -};
    -
    -class C : public B {
    -public:
    -    C() {}
    -    C(const C &from) : B(from) {}
    -};
    -
    -template<typename T>
    -void
    -test() {
    -    T t1;
    -    t1.a = 3;
    -    printf(""pre-copy\n"");
    -    T t2(t1);
    -    printf(""post-copy\n"");
    -    printf(""t1.a=%d\n"", t1.a);
    -    printf(""t2.a=%d\n"", t2.a);
    -}
    -
    -int
    -main() {
    -    printf(""B:\n"");
    -    test<B>();
    -
    -    printf(""\n"");
    -
    -    printf(""C:\n"");
    -    test<C>();
    -}
    -
    - -

    output:

    - -
    B:
    -A()
    -pre-copy
    -post-copy
    -t1.a=3
    -t2.a=3
    -
    -C:
    -A()
    -pre-copy
    -A()
    -post-copy
    -t1.a=3
    -t2.a=0
    -
    - -

    Note that if B is normally derived from A (you delete the virtual) then a is copied.

    - -

    Why isn't a copied in the first case (test<C>() with B virtually derived from A?

    -",HQ -"How to rename multiple directory from DOS prompt with different names like below : - -> alnaddy.com-7-5-2014 -> alnaddy.com -> -> cairoscene.org-7-5-2014 -> cairoscene.org -> -> elshaab.org-7-5-2014 -> elshaab.org -> -> goal.com-7-5-2014 -> goal.com - -I have a list of thousands of directories . -thanks",LQ -"How to write a list of different class variables into a text file consequently using R base functions? - - `write` and `cat` can't handle data.frames and `write.table` is specific to tables only. None of them handles lists properly. -Sample list: - - > test - [[1]] - [1] ""a"" ""b"" ""c"" - - [[2]] - [1] ""d"" ""e"" ""f"" - - [[3]] - [1] 1 2 3 - - [[4]] - X.g. X.h. X.i. - 1 g h i - - [[5]] - [[5]][[1]] - [1] ""k"" - - [[5]][[2]] - [1] ""l"" - - [[5]][[3]] - [1] ""m"" ""n"" - - - [[6]] - [1] ""2015-03-23 11:15:00 CET"" - -It consists of character, numeric, POSIXlt time variable and another list. - -Desired result - a text file like that: - - a b c - d e f - 1 2 3 - X.g. X.h. X.i. - 1 g h i - k - l - m n - 2015-03-23 11:15:00 -",LQ -"I was a hard time giving this a title as I am not sure what this is called. Anyhow, my question is how can do folders for each item when a have a database. Take this site as an example, whenever you click on a question it takes you to a new page with the following format: http://stackoverflow.com/questions/some_id_number/question_title - -I originally thought the way to go about this is to programmatically create a folder and a file (the page for this particular new item, a .php page per se) on the insertion of a new item on my table and then inside my php page require the page to filled out with the info retrieved. - -Help pointing me in the right direction, as well as comments. Oh and you are one of those who like to down vote please at least tell me why, don't just down vote and run. ",LQ -"**How can I get a new ArrayList of search results after searching from an ArrayList using TextWatcher in android?**
    -The following is my code for searching from an ArrayList using EditText >> **edtSearch**. The search function is working well. Need to put the obtained data into a new ArrayList: - - -> edtSearch.addTextChangedListener(new TextWatcher()){ -> -> @Override -> public void beforeTextChanged(CharSequence s, int start, int count, int after) { -> -> } -> -> @Override -> public void onTextChanged(CharSequence s, int start, int before, int count) { -> MainActivity.this.adapter.getFilter().filter(s); -> } -> -> @Override -> public void afterTextChanged(Editable s) { -> -> } -> }); -",LQ -"im still kinda new to pascal but im getting an error thats torturing me a bit can u guys help? i get a error:illegal expression and Fatal: Syntax error, ; expected but : found - -The Pascal Piece is below: - - Program PaidUp; - - const - size=30; - - var - payment,totm1,totm2,totm3:real; - section1,section2,section3,i,j,idnum:integer; - IDNUMARR:array[1..999] of integer; - PAYMENTARR:array[1..size] of real; - - - Procedure InitialiseVariables; - {This procedure initialises all variables used in the program} - Begin - idnum:=0; - payment:=0; - totm1:=0; - totm2:=0; - totm3:=0; - section1:=0; - section2:=0; - section3:=0; - i:=0; - j:=0; - End; {Initialise Variables} - - Procedure DeclareandInitialiseArrays; - {This procedure declares and initialises all arrays used in the program} - Begin - IDNUMARR:array[1..999] of integer; - PAYMENTARR:array[1..size] of real; - For i:=1 to size do - begin - idnum[i]:=0; - payment[i]:=0; - end; {ends for statment} - End; {Declare and Initialise Variables} - - Procedure PutDataIntoArray; - {This procedure puts the data into the arrays} - Begin - while(idnum<>0 and payment<>0 and payment=1350 and payment=1620 and payment=1800 and payment=1650 and payment=1980 and payment=2200) do - begin - writeln('Invalid value, please enter another value'); - readln(idnum); - readln(payment); - end;{ends while statement} - set j:=j+1; - idnum[j]:=idnum; - payment[j]:=payment; - End; {Put Data Into Array} - - Procedure DetermineStatisticsInformation; - {This procedure determines which masqueraders belong to which group, tallys the total persons in a section and totals the amount of money paid in each section for costumes} - Begin - For j:=1 to size do - begin - if(payment[j]=1350 and payment[j]=1650) then - begin - writeln('Masquerader with memid:idnum[j] belongs to section1'); - section1:= section1+1; - totm1:= totm1+payment[j]; - end;{ends if statement} - if(payment[j]=1620 and payment[j]=1980) then - begin - writeln('Masquerader with memid:idnum[j] belongs to section2'); - section2:= section2+1; - totm2:=totm2+payment[j]; - end;{ends if statement} - if(payment[j]=1800 and payment[j]=2200)then - begin - writeln('Masquerader with memid:idnum[j] belongs to section3'); - section3:= section3+1; - totm3:=totm3+payment[j]; - end;{ends if statement} - End. {Determine Statistics Information} - - Procedure PrintResults; - {This procedure outputs all information} - Begin - writeln('The number of masqueraders in section 1 is:', section1); - writeln('The number of masqueraders in section 2 is:', section2); - writeln('The number of masqueraders in section 3 is:', section3); - writeln('Total Amount of money paid in section 1 is:', totm1); - writeln('Total Amount of money paid in section 2 is:', totm2); - writeln('Total Amount of money paid in section 3 is:', totm3); - End. {Print Results} -",LQ -"I have a complex date column that I need to sort by. SQL Server 2008 - - - -**My Query:** - - SELECT DivisionName as Division, StoreNum as Store, LeadName as Lead, Type, ChangeType,Changes, - UpdatedBy, - convert(varchar(10),UpdatedDate, 101) + right(convert(varchar(32), UpdatedDate,100),8) as UpdatedDate FROM m - WHERE DivID!=0 - ORDER BY convert(varchar(10),UPDATEdDate, 101) desc, right(convert(varchar(32), UPDATEdDate,100),8) asc - - - -**The format:** in the database: smalldatetime 2016-01-25 16:50:00 - -**And to the display value, I use:** - - convert(varchar(10),UpdatedDate, 101) + right(convert(varchar(32), UpdatedDate,100),8) as UpdatedDate - -**My issue:** (Hour/Minute Sorting), I need the 7:40PM row at top. - -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/lB6zb.jpg",LQ -"I am building on a ordering program for java for a class in school and I am getting quantityInput can not be resolved to a variable error I also get the error the method showInputDialog(Component, Object, Object) in the type JOptionPane is not applicable for the arguments (String, int, int) any help in resolving the 2 errors would be much aprecated. - - public static int getQuantity(int lowValue, int highValue) throws Exception { - // quantity must be between 1-99 - int quantity; - int counter = 0; - - do { - quantityInput = JOptionPane.showInputDialog(""How many bracelets would you like to order? (1-99)""); - counter = counter + 1; - } while (quantityInput < lowValue || quantityInput > highValue && counter < 3); - if (quantityInput < lowValue || quantityInput > highValue) { - throw new Exception(""Invalid responce please enter a number between 1 and 99""); - - } - - - quantity = Integer.parseInt(quantityInput); - return quantity; - }",LQ -"ALTER PROCEDURE dbo.bicrudlogin - ( - @id int, - @username nvarchar(50), - @password nvarchar(50), - @type varchar(50), - @status varchar(50) - ) -AS - if(@status='insert') - Begin - insert into tbllogin values(@username,@password,@type) - End - - if(@status='select') - Begin - select username,password,type from tbllogin where id=@id - End - - if(@status='update') - Begin - update tbllogin set username=@username,password=@password,type=@type where id=@id - End - - if(@status='delete') - Begin - delete from tbllogin where id=@id - End - - RETURN - - - -and -code for accessing data using store procedure - cmd = new SqlCommand(""bicrudregistration"",con); - cmd.CommandType = CommandType.StoredProcedure; - cmd.Parameters.AddWithValue(""@username"",txtusername.Text); - cmd.Parameters.AddWithValue(""@password"",txtpassword.Text); - cmd.Parameters.AddWithValue(""@status"",""find""); - dr=cmd.ExecuteReader(); - -if this is wrong way, then tell me how to do it. -rather than writing separate store procedure for every operation. ",LQ -"hy all.. - -i have date like this - - $start = strtotime('2010-01-01'); $end = strtotime('2010-01-25'); - -my quetion:
    - -how I can calculate or count weekend from $start & $end date range..??",LQ -"Hello im trying to make a calculator, but my if statement generate warnings. Im am also new to c. - -int main(){ - - float num1; - float num2; - - char input[5]; - - printf(""Hello my name is baymax\n""); - printf(""Enter either add, sub, mult, div:\n""); - scanf(""%4s"", input); - - printf(""Enter first number\n""); - scanf(""%f"", &num1); - - printf(""Enter second number\n""); - scanf(""%f"", &num2); - - if(input == 'add'){ - printf(""%.1f + %.1f = %.1f"",num1, num2, num1+num2); - .... - } - return 0; -} - -if the string entered is add it will add the two numbers.",LQ -"How to check time is conflict I have a enrolment project and user get subject on the list. Now how to check the time is conflict with others: - -var time1 = 10:00AM-12:00:PM; - -var time2 = 10:30:AM-11:00:AM; - -How to check the time2 is conflict with time1 ? Im using javascript and I cant find solution. Or you may suggest jquery libraries please help. Thanks",LQ -"I have problem with async. -Result of this code from pic should be: - -First:0 - -Second:2 - -Item ADD! - -First:1 - -Second:2 - -Item ADD! - -First:2 - -Second:2 - -Item ADD! - - -And here script should stop. - -I know that code is to long but I can't put less. - - connection.query('SELECT `keys`.*,`transaction`.*,`keys`.`id` as kid, `transaction`.`id` as tid FROM `transaction` JOIN `keys` ON `keys`.`id` = `transaction`.`keys_id` WHERE `transaction`.`status_pay`= 1 and `transaction`.`status` = 1').then(function(rows){ - rows.forEach(function(record) { - var offer = manager.createOffer('76512333220'); - inventory.forEach(function(item) { - connection.query('SELECT amount_two FROM transaction where id = \'' + record.tid + '\'').then(function(w){ - console.log(""First: "" + w[0].amount_two); - console.log(""Second: "" + record.amount); - if(w[0].amount_two <= record.amount) - { - if(item.market_hash_name == record.real_name) - { - var asid = item.assetid; - connection.query('SELECT count(id) as wynik FROM used where asset_id = \'' + asid + '\'').then(function(wiersze){ - if (wiersze[0].wynik == 0) - { - var employee = { - asset_id: asid, - trans_id: record.tid - }; - connection.query('INSERT INTO used SET ?', employee).then(function(rows){ - offer.addMyItem(item); - console.log('Item ADD!'); - connection.query('UPDATE `transaction` SET `amount_two`= `amount_two` + 1 WHERE `id`=\''+record.tid+'\'').then(function(rows){ - - }); - }); - - } - }); - } - } - - }); - }); - }); - }); - - -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/WcilH.png",LQ -"I need to find the dates between two dates in sql server. - - 2015-12-04 00:00:00.000 and 2015-12-10 00:00:00.000 - ",LQ -" My query is - select* from ""Table"".""SampleDB""; - - My servlet code is - String dbURL = ""jdbc:postgresql://localhost:5433/Table.SampleDB""; - String user = ""postgres""; - String pass = ""pass""; - conn = DriverManager.getConnection(dbURL, user, pass); -I am not able to connect to the database. How to call a ""schema.TableName"" in servlet getConnection. Please help me fix the issue. - -",LQ -"I have the following code: - - - public static void readtext(string pathtoText){ - - if(File.Exists(pathtoText)) - { - string[] lines = System.IO.File.ReadAllLines(pathtoText); - - // Display the file contents by using a foreach loop. - foreach (string line in lines) - { - clearPath(line); - } - } - else{ - Console.WriteLine(""{0} doesn't exist, or isn't a valid text file""); - } - } - -My function reads directories from a text file and passes it to clearPath which checks if the directory exists, and if so, cleans it. My problem is that, if a directory doesn't exist, it stops the program. - -How do I get it to the next directory even if specific directory doesn't exist? ",LQ -" this is my first activity call CreateMessageActivity were the user is ask to check the ckeckboxes so that it can calculate the total - - public void myClickHandler(View view) { - double fish1 = 0; - double chicken1 = 0; - double steak1 = 0; - double total; - String total1; - - CheckBox fish = (CheckBox) findViewById(R.id.checkFish); - CheckBox chicken = (CheckBox) findViewById(R.id.checkChicken); - CheckBox steak = (CheckBox) findViewById(R.id.checkSteak); - - //switch (view.getId()) { - // case R.id.checkFish: - if (fish.isChecked()) { - fish1 = 5; - - } else { - fish1 = 0; - } - // break; - // case R.id.checkChicken: - if (chicken.isChecked()) { - chicken1 = 2; - - } else { - chicken1 = 0; - } - // R.id.checkSteak: - if (steak.isChecked()) { - steak1 = 10; - } else { - steak1 = 0; - } - //break; - // } - total = fish1 + chicken1 + steak1; - total1 = Double.toString(total); - i need to pass total1 to the other activity call ReceiveMessageActivity. - Intent intent = new Intent(CreateMessageActivity.this, ReceiveMessageActivity.class); - intent.putExtra(""message"", total1); - startActivity(intent); - - } - -this is my second activity that it have to display total in the textview. - - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_receive_message); - Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); - setSupportActionBar(toolbar); - TextView TXT = new TextView(this); - - - Bundle bundle = getIntent().getExtras(); - String status = bundle.getString(""message""); - TXT = (TextView)findViewById(R.id.textViewactivity2); - TXT.setText(status); -",LQ -"import java.util.StringTokenizer; -import java.util.Scanner; - -public class LessNaiveEncryption { - - public static void main(String[] args) { - Scanner keyboard = new Scanner(System.in); - System.out.print(""Provide an input sentence: ""); - String userInput = keyboard.nextLine(); - StringTokenizer strTokenizer = new StringTokenizer(userInput, "" "", true); - System.out.print(""The output sentence is : ""); - while (strTokenizer.hasMoreTokens()) { - strTokenizer.nextToken(); - } - StringBuilder blob = new StringBuilder(userInput); - blob.reverse(); - System.out.println(blob); - System.out.print(""\n""); - - } -}",LQ -"I'm new in prolog, and I have an exercise which asks to make a palindrome function that returns a Boolean value? -this boolean is true if the list is Palindrome otherwise returns false - - palindrom([X|Xs],bool) . - -how I should do it ? -",LQ -"I do not speak English well. So, I used Google translator. Sorry... - -I am trying to implement www.devexpress.com menu. -But I do not know what to do to implement the unfolding details below. - -this is my source file. -[enter link description here][1] - - - [1]: https://drive.google.com/open?id=0B2twYdJfAGHHYXUtU0I4YVdRak0 - -thank you.",LQ -"I want the user to select from a drop-down list of items in a combo box. -This is what I have - - CreateWindow (TEXT(""STATIC""), TEXT (""MODEL""), -WS_VISIBLE | WS_CHILD | WS_DISABLED, -10, 20, 70, 17, -hwnd,(HMENU) NULL, NULL, NULL -);",LQ -"I have a text file called data.txt and it looks like this: - -0 0.0025 sec - -1 0.254 sec - -2 0.5654 sec - -I want to plot it by using gnuplot in python. When I enter gnuplot my command line look like this; - -gnuplot > - -What do I have to do now to plot my text file and view it?",LQ -"> Android application crashes when call intent - -give a proper solution - public class InformationActivity extends Activity { - - Button btn_submit; - CheckBox iz_check,bc_check,vc_check,ac_check,uc_check; - EditText no_et; - - @Override - protected void onCreate(Bundle savedInstanceState) { - // TODO Auto-generated method stub - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_info); - btn_submit = (Button) findViewById(R.id.btnsubmit1); - iz_check= (CheckBox) findViewById(R.id.check1); - bc_check=(CheckBox) findViewById(R.id.check2); - vc_check=(CheckBox) findViewById(R.id.check3); - ac_check=(CheckBox) findViewById(R.id.check4); - uc_check=(CheckBox) findViewById(R.id.check5); - no_et=(EditText) findViewById(R.id.edittext7); - - btn_submit.setOnClickListener(new OnClickListener() { - - @Override - public void onClick(View arg0) { - // TODO Auto-generated method stub - //String str = no_et.getText().toString(); - //SMSReceiver receiver = new SMSReceiver(); - - - - - Intent navigationintent = new Intent(InformationActivity.this, MainActivity.class); - startActivity(navigationintent); - } - }); - - } - -} - - -> Please give me a solution - -",LQ -I am making and android app which needs phone no verification. I want to and Cognalys SDK in my application so help me how to add this to my application.,LQ -"I have a Table `Notes (_Id, Title, Body, Category)` and a Table `Categories (_Id, Name)`, referencing Category to Categories._Id. - -Whit this method I create a Note in my SQLite Database. - - /** - * Create a new note using the title and body provided, and associated to - * the category with row id provided. If the note is successfully created - * return the new rowId for that note, otherwise return a -1 to indicate failure. - * - * @param title the title of the note - * @param body the body of the note - * @param category the category associated to the note - * @return rowId or -1 if failed - */ - public long createNote(String title, String body, String category) { - if (title == null || title.equals("""") || body == null) { - return -1; - } - else { - ContentValues initialValues = new ContentValues(); - initialValues.put(NOTE_KEY_TITLE, title); - initialValues.put(NOTE_KEY_BODY, body); - // If it has associated a category - if (!category.equals(""No Category"")) { - Cursor idCategory = fetchCategory(category); - long catId = idCategory.getLong(idCategory.getColumnIndex(""_id"")); - initialValues.put(NOTE_KEY_CAT, catId); - // Else, it has no category - } else { - initialValues.put(NOTE_KEY_CAT, (Byte) null); - } - return mDb.insert(DATABASE_NOTE_TABLE, null, initialValues); - } - } - -And whit this another I get all the notes of my database. - - /** - * Return a Cursor over the list of all notes in the database - * - * @param mode - if TITLE, it returns the list ordered by the title of the notes. - * - if CATEGORY, it returns the list ordered by the category of the notes. - * - it returns null in another case. - * @param category - category of the notes to return (No Category if none) - * @return Cursor over all notes - */ - public Cursor fetchAllNotes(String mode, String category) { - //// Order - String order; - // Mode is Title - if (mode.equals(""TITLE"")) { - order = NOTE_KEY_TITLE; - // Mode is Categories - } else if (mode.equals(""CATEGORY"")) { - order = CAT_KEY_NAME; - // A forbidden mode - } else { - return null; - } - // No category filter if it is No Category - String cat; - if (category.equals(""No Category"")) { - cat = """"; - } else { - cat = "" WHERE "" + CAT_KEY_NAME + ""='"" + category + ""'""; - } // Left outer because there are notes without category - String query = ""SELECT * FROM "" + DATABASE_NOTE_TABLE + "" LEFT OUTER JOIN "" + DATABASE_CAT_TABLE + - "" C ON "" + NOTE_KEY_CAT + ""=C."" + CAT_KEY_ROWID + cat + "" ORDER BY "" + order; - return mDb.rawQuery(query, null); - } - -When I insert a new Note, `createNote()` returns me the correct rowId. When I realize a `fetchAllNotes()` operation, two things happens: when a Note has a category, it returns the correct note with its proper attributes. When another Note has not Category (value `No Category`), the note with the desired attributes is returned, but not its identifier (a 0 value is returned as _id). - -Any idea of what is happening?",LQ -"I've been writing a program, I've run into an error. My current code is: - - import tkinter as tk - speed = 80 - def onKeyPress(event, value): - global speed - text.delete(""%s-1c"" % 'insert', 'insert') - text.insert('end', 'Current Speed: %s\n\n' % (speed, )) - with open(""speed.txt"", ""r+"") as p: - speed = p.read() - speed = int(speed) - speed = min(max(speed+value, 0), 100) - with open(""speed.txt"", ""r+"") as p: - p.writelines(str(speed)) - print(speed) - if speed == 100: - text.insert('end', 'You have reached the speed limit') - if speed == 0: - text.insert('end', 'You can not go any slower') - - - - speed = 80 - - root = tk.Tk() - root.geometry('300x200') - text = tk.Text(root, background='black', foreground='white', font=('Comic Sans MS', 12)) - text.pack() - - # Individual key bindings - root.bind('', lambda e: onKeyPress(e, 1)) - root.bind('', lambda e: onKeyPress(e, -1)) # - - root.mainloop() - -I believe speed = min.... is causing the error? However do you guys have any idea?",LQ -" #include - #include - using namespace std; - int main () - { - int accountNumber; - float minimumBalance, currentBalance; - char accountType; - - const float SAVINGS_SERVICE_CHARGE = 10.00; - const float CHECKING_SERVICE_CHARGE = 25.00; - const float SAVINGS_INTEREST_RATE = 0.04; - const float CHECKING_LOW_INTEREST_RATE = 0.03; - const float CHECKING_AVERAGE_INTEREST_RATE = 0.05; - - cout <<""Please the details of your account""<< endl; - cin >> accountNumber,accountType,minimumBalance,currentBalance; - - switch (accountType){ - - case 's': - case 'S': - cout <<""Account number""< -
    -

    By clicking ""Place Order"", you agree to create this campaign.

    -
    -
    - -
    - here",LQ -" -
    -
    - - - - -when user clicks on div id ""label"", I want to toggle the display property of div ""input"". which is working fine. I have used following code to implement the functionality. - - function searchbox(){ - if($(""#input"").css('display') == 'none'){ - $('#input').css('display','block'); - } else { - $('#input').css('display','none'); - } - } - -But I want to to submit the form data via post. But that functionality is not working, neither by pressing enter key nor when submit button is clicked. - -Please help me with this.",LQ -" - -select -(select OMH_RECV_BIC from sc_omh_m where sc_omh_trans_sno=103) as 'Sender\Receiver', -(select OMH_MSG_TRM_DT from sc_omh_m where sc_omh_trans_sno=103) as 'Send\Receivedate', -(select omh_msg_type from sc_omh_m where sc_omh_trans_sno=103) as 'Message Type', -(select omd_sfld_val from SC_OMD_T where OMD_FLD_TAG=20 and omd_sfld_ord=1 and omd_trans_sno=103) as 'Senders Reference', -(select omd_sfld_val from SC_OMD_T where OMD_FLD_TAG=50 and omd_sfld_ord=3 and omd_trans_sno=103) as 'Ordering Customer', -(select omd_sfld_val from SC_OMD_T where OMD_FLD_TAG=59 and omd_sfld_ord=3 and OMD_TRANS_SNO=103) as 'Beneficiary Customer', -(select omd_sfld_val from SC_OMD_T where OMD_FLD_TAG=32 and omd_sfld_ord=2and omd_trans_sno=103) as 'Currency Code', -(select omd_sfld_val from SC_OMD_T where OMD_FLD_TAG=32 and omd_sfld_ord=1and omd_trans_sno=103) as 'Date', -(select omd_sfld_val from SC_OMD_T where OMD_FLD_TAG=32 and omd_sfld_ord=3and omd_trans_sno=103) as 'Value'",LQ -"I have set the cookie using **document.cookie** but I can't read it. I read on w3schools that you can read it by document.cookie, but it's not working. Maybe I've misunderstood this thing, or maybe I'm trying something wrong, I don't know. What's wrong in following code? -Here's my code: - - - - - - - ",LQ -"https://www.dropbox.com/s/v4zpig6i58...pture.JPG?dl=0 - -Above is a screenshot of what I would like to change. In the picture the ### needs to be replaced by -N01 -N02 -N10 etc this will be specified as required because it wont be in an order (can be N01, N05, N12 etc) and the rest needs to be copy pasted. This needs to be generated in a new worksheet. - -The newly generated worksheet will have all the instances of N01, N02 etc populated together. Screenshot of the required result is given below - -https://www.dropbox.com/s/7h9a5cvubo...ure12.JPG?dl=0",LQ -when the app enter the background mode the audio player should be play after 4 min. How? can u help me please am using NSTimer but is not working after 3 minutes . Pleas help me it is urgent ...,LQ -" -**I am coding for calculator in c#.net. I am having an error message on txtDisplay in txtDisplay.Text. the error says ""The name 'txtDisplay' does not exists in the current context"".My code so far is:** - - -using System.Drawing; - -using System.Linq; - -using System.Text; - -using System.Windows.Forms; - -namespace Calc - -{ - - public partial class Form1 : Form - { - - - public Form1() - { - - InitializeComponent(); - - } - - private void btnOne_Click(object sender, EventArgs e) - { - txtDisplay.Text = txtDisplay.Text + btnOne.Text; - - }",LQ -"I have an admins table in my db with username and password.. I want to logged a user in using that. -When ever I try to login, it gives me an sql error.... unknown column Users.Username is not found -",LQ -"I'm relatively new to flask, python, and coding overall so please bear with me if you have the time. I'm trying to understand migrations and have some questions regarding the topic. - -I'm working on a web-based asset management app, and I've had some modest success thus far. I've implemented a page that iterates through all my assets (rows) and displays them in a form with their associated row values (horsepower, voltage etc.) I've implemented a page that takes form data and adds it to the database. I've implemented a page that lets you filter all your assets by some of their values (horsepower, voltage etc.) and displays the result, as well as a search by primary_key (Asset Tag) bar in the header. To be honest so far I'm quietly impressing myself :). - -Flask is great because when I was getting started and watching a few tutorial playlists I found it easier to learn than Django. There was much less overhead / pre-written code and I actually knew what each line of code was doing, and I felt I was really grasping the operation of my application in its entirety. Anyways this is all besides the point. - -What I'm looking to implement now is something I feel the need to get some opinions on as I have not found much of anything regarding it online. I'd like for my customers to be able to add / remove tables, and table columns and rows. From the reading I have done I know that making schema changes is going to require migrations, so adding in that functionality would require something along the lines of writing a view that takes form data and inserts it into a function that then invokes a method of Flask-Migrate, or maybe something directly into Flask-Migrate itself? - -The thing is, even if I manage to build something like this, don't migrations build the required separate scripts and everything that goes along with that each time something is added or removed? Is that a practical solution for something like this, where 10 or 20 new tables might be added from the default / shipped database? - -Also, if I'm building in a functionality that allows users to add columns to a table, it will have to modify that tables class. I'm unsure if that's even possible, or a safe idea? - -I may also be looking at solving this the wrong way entirely. In that case I'd really appreciate it if someone could help me out, and at least get me pointed in the right direction. - -TLDR; - -Can you take form data and change database schema? Is it a good idea? Is there a downside to many migrations from a 'default' database?",LQ -"is a better way to implement this code ? - - int getBlockVector(vector& vect, const int pos, const int length) - { - int destinyInt = 0; - switch (length) { - case 1 : destinyInt = (0x00 << 24) | (0x00 << 16) | (0x00 << 8) | vecct.at(pos); break; - case 2 : destinyInt = (0x00 << 24) | (0x00 << 16) | (vect.at(pos + 1) << 8) | vect.at(pos); break; - case 3 : destinyInt = (0x00 << 24) | (vect.at(pos + 2) << 16) | (vect.at(pos + 1) << 8) | vect.at(pos); break; - case 4 : destinyInt = (vect.at(pos + 3) << 24) | (vect.at(pos + 2) << 16) | (vect.at(pos + 1) << 8) | vect.at(pos); break; - default : destinyInt = -1; - return destinyInt;} - -considering the ugly default value. -How implement this function with iterators and template for vector, deque, queue, etc. - -Note: the bounds are checked before. -",LQ -"I am building a laser that is to be controlled by a joystick. the joystick uses 2 servo motors to move the laser in the direction i want. i am using an arduino board that uses C++ coding. i keep getting a "" too many arguments"" error on my outputs and i don't know why. i would appreciate if anyone can help me fix my code. - - - - - - #include - - const int servo1 = 11; // first servo - const int servo2 = 10; // second servo - const int joy1 = 5; // switch 1 - const int joy2 = 4; // switch 2 - const int joy3 = 3; // switch 3 - const int joy4 = 2; // switch 4 - - int servoVal; // variable to read the value from the digital pin - - Servo myservo1; // create servo object to control a servo - Servo myservo2; // create servo object to control a servo - - - - void setup() { - - // Servo - myservo1.attach(servo1); // attaches the servo - myservo2.attach(servo2); // attaches the servo - - // Inizialize Serial - Serial.begin(9600); - } - - - void loop(){ - - // Display Joystick values using the serial monitor - outputJoystick(); - - // Read the horizontal joystick value (value between 0 and 180) - servoVal = digitalRead(joy1, joy2, joy3, joy4); - servoVal = map(servoVal, 0, 45, 135, 180); // scale it to use it with the servo (result between 0 and 180) - - myservo2.write(servoVal); // sets the servo position according to the scaled value - - // Read the horizontal joystick value (value between 0 and 180) - servoVal = digitalRead(joy1, joy2, joy3, joy4); - servoVal = map(servoVal, 0, 45, 135, 180); // scale it to use it with the servo (result between 0 and 180) - - myservo1.write(servoVal); // sets the servo position according to the scaled value - - delay(15); // waits for the servo to get there - - } - - - /** - * Display joystick values - */ - void outputJoystick(){ - - Serial.print(digitalRead(joy1, joy2, joy3, joy4)); - Serial.print (""---""); - Serial.print(digitalRead(joy1, joy2, joy3, joy4)); - Serial.println (""----------------""); - } - - - -",LQ -so im trying to make the for loop increase the height by 1 each loop which will make the screen drop by the height of one. Using a time interval for a very short amount of time I would believe this would make a smooth scroll down the page. ,LQ -"[I need to separate the checkintime column as AM as checkin and PM as checkout ][1] - - - [1]: http://i.stack.imgur.com/1dvUT.jpg",LQ -"I have a question about mysql - -$result = mysql_query("" - SELECT - * - FROM - Table order by rand() limit 10 - -When i write the script -10 row is fetch in 2-3 second -Is it possible to -Fetch each 1 row with 2 second",LQ -" #include - int main(void) - { - int i=10; - if(i==(20||10)) - printf(""True""); - else - printf(""False""); - return 0; - } - - // gives output: False - //Please explain me how this program works?? - -",LQ -"

    On my site I have some buttons. When a user clicks the button, a modal opens. When a user hovers the button, a tooltip is shown.

    - -

    Is use this code:

    - -
    <button type=""button"" rel=""tooltip"" title=""Tooltip content"" class=""btn btn-sm btn-default"" data-toggle=""modal"" data-target=""#DeleteUserModal"">
    -  <span class=""glyphicon glyphicon-remove""></span>
    -</button>
    -
    -<div>modal</div>
    -
    -<script>
    -$(document).ready(function(){
    -  $('[rel=""tooltip""]').tooltip();
    -});
    -</script>
    -
    - -

    This works, but the only problem is that the tooltip stays visible after the button is clicked, and the modal is shown. As soon as the modal is closed, the tooltip is hidden again.

    - -

    How to prevent this? I only want the tooltip to be shown on hover, and not all the time when the related modal is visible.

    -",HQ -"I have to decided to choose between Rspec/Capibara over Robot Framework for integration tests. - -Previously Robot framework was used for integration testing in the project I am working on. As I now joined the team so I tried to change it to Rspec based integration testing using Capibara but I have to convince the top management that Rspec and Capibara is better option for Rails based application. - -So basically I need a comparison table between these two frameworks Which will tell that Rspec is better option than Python Robot Framework (if it is better option)",LQ -"

    I cannot seem to be able to spy on setTimeout and clearTimeout in my Jasmine tests, which are being run through Karma.

    - -

    I have tried variations on all of this

    - -
    spyOn(window, 'setTimeout').and.callFake(()=>{});
    -spyOn(global, 'setTimeout').and.callFake(()=>{});
    -spyOn(window, 'clearTimeout').and.callThrough();
    -
    -clock = jasmine.clock();
    -clock.install();
    -spyOn(clock, 'setTimeout').and.callThrough();
    -
    -runMyCode();
    -
    -expect(window.setTimeout).toHaveBeenCalled(); // no
    -expect(global.setTimeout).toHaveBeenCalled(); // nope
    -expect(window.clearTimeout).toHaveBeenCalled(); // no again
    -expect(clock.setTimeout).toHaveBeenCalled(); // and no
    -
    - -

    In every case, I can confirm that setTimeout and clearTimeout have been invoked in runMyCode, but instead I always get Expected spy setTimeout to have been called.

    - -

    For window, clearly this is because the test and the runner (the Karma window) are in different frames (so why should I expect anything different). But because of this, I can't see any way to confirm that these global functions have been invoked.

    - -

    I know that I can use jasmine.clock() to confirm that timeout/interval callbacks have been invoked, but it looks like I can't watch setTimeout itself. And confirming that clearTimeout has been called simply isn't possible.

    - -

    At this point, the only thing I can think of is to add a separate layer of abstraction to wrap setTimeout and clearTimeout or to inject the functions as dependencies, which I've done before, but I think is weird.

    -",HQ -"

    I'm using ng-table to setup a custom pagination control. I want to have an input that only allows valid page numbers. I have the existing pagination so far.

    - -
    script(type=""text/ng-template"" id=""ng-table-pagination-input"")
    -  div(class=""ng-cloak ng-table-pager"" ng-if=""params.data.length"")
    -    br
    -    ul(ng-if=""pages.length"" class=""pagination ng-table-pagination"")
    -      li(ng-class=""{'disabled': !page.active && !page.current, 'active': page.current}"" ng-repeat=""page in pages"" ng-switch=""page.type"")
    -        a(ng-switch-when=""prev"" ng-click=""params.page(page.number)"" href="""")
    -          span &laquo;
    -        a(ng-switch-when=""next"" ng-click=""params.page(page.number)"" href="""")
    -          span &raquo;
    -
    - -

    How can I get an input control in there to work properly?

    -",HQ -"

    I have this code:

    - -
    var labelsPrint= new Array();
    -
    -var vector = labelsPrint.map((el) => el.id);
    -
    - -

    IE11 give me a error, because lost the datas. Do you know an other way for make this .map?

    -",HQ -"i have a code : -SELECT pegawai.Nama, pegawai.Tempat_Lahir, pegawai.Tanggal_lahir, pegawai.NIP, pegawai.Tingkat_Ijasah, pegawai.Jurusan, pegawai.Golongan_CPNS,pegawai.TMT_CPNS, pegawai.Alamat, pensiun.TMT_Pensiun, pensiun.SKPensiun from pegawai JOIN pensiun on pegawai.NIP=pensiun.NIP) WHERE (MONTH(CONVERT(Date, Month)) = MONTH(GETDATE()) + 1)) AS pensiun.TMT_Pensiun - -months in the filter is TMT_Pensiun",LQ -"I have a rather stupid question to ask, but I have, can someone explain to me what I am doing wrong ? - -I have two files: - -file1 looks like this - -NOP7 305 - -CDC24 78 - -SSA1 41 - -NOP7 334 - -LCB5 94 - -FUS3 183 - -file2 looks like this - -SSA1 550 S HSP70 1YUW - -FUS3 181 Y Pkinase 1QMZ - -FUS3 179 T Pkinase 1QMZ - -CDC28 18 Y Pkinase 1QMZ - -And I'm using the following code-lit to get proteins-names that match in lists from other files - -file = open('file1') - -for line in file1: - -line=line.strip().split() - -with open('file2') as file2: - - for l in out: - - l=l.strip().split() - - if line[0]==l[0]: - - take=line[0] - - with open('file3', 'w') as file3: - - file3.write(""{}"".format(take)) - - -what I get a file with one protein name only - -CDC28 - -And what I want is all the proteins that matches, eg - - -SSA1 - -CDC28 - -FUS3 - - -Please guide ...... ?? - - -PS: when I print the result I get the required values (protein names) printed but can not able to write to a file. - - -",LQ -"

    I have an httpclient like this :

    - -
    var client = new HttpClient();
    -
    - -

    I post to it like this:

    - -
    var result = client.PostAsync(
    -                endpointUri,
    -                requestContent);
    -
    - -

    And get the response like this:

    - -
    HttpResponseMessage response = result.Result;
    -
    - -

    I understand this call will block the thread, thats how its supposed to work (just building a tool for myself, no async threads needed)

    - -

    The first time I run this call, it takes about 2 minutes to get a result. Meanwhile, if I do the exact same call elsewhere its done in 200ms. Even if I hit google, it takes 2 minutes. But, after the first call, as long as I keep the app open any additional calls are good. Its just the first cal when I open the application. What could be causing this?

    -",HQ -"I would like to extract some tags from string and perform some operations according to them, but the remaining string should retain with stripped tags and go for further processing. - -Is it possible to do this in one run? - -For example, if I have a code, which is taking tags: - - while (match = regex.exec(str)) { - result.push( match[1] ); - } - -can I take what between matches simultaneously?",LQ -"

    I have the following stripped down render result:

    - -
    return (
    -  <View style={{backgroundColor:'red'}}>
    -    <TextInput value={'Hello'}/>
    -  </View>
    -);
    -
    - -

    The generated TextInput is not visible in iOS, unless I specify the height, and when using flexDirection:'row' in its container, I need to specify its width as well.

    - -

    This only happens with iOS, Android seems to work as expected.

    - -

    Is there a way of displaying a TextInput in iOS without fixed size?

    - -

    Current dependencies:

    - -
      ""dependencies"": {
    -    ""react-native"": ""=0.18.1"",
    -    ""react-native-orientation"": ""=1.12.2"",
    -    ""react-native-vector-icons"": ""=1.1.0""
    -  },
    -
    - -

    iOS:

    - -

    - -

    Android:

    - -

    - -

    Changing the render like this:

    - -
    return (
    -  <View style={{backgroundColor:'red'}}>
    -    <Text>text</Text>
    -    <TextInput value={'Hello'}/>
    -  </View>
    -);
    -
    - -

    has the following result:

    - -

    iOS:

    - -

    - -

    Android:

    - -

    -",HQ -"

    Is it possible to search for code or text in GitLab inside of files? I can search for files, issues, milestones, etc., but could not find a way to search for code in source files or text in the documentation i.e .doc files.

    -",HQ -"

    I have a random feature/XXXXXXX branch that has some commits and naturally the ""develop"" branch where those features are eventually merged.

    - -

    How do I check if a certain old commit (e.g. commit ab123456 from branch feature/user-registration) has been somehow brought/merged to my currently active branch (e.g. develop)? Either by directly merging the feature branch to develop or by going up/merged through some other intermediary branch.

    - -

    Through git commands or through SourceTree UI, both ways are equally suitable for me.

    -",HQ -"This is a follow up question on an answer on this page: - -[How to generate random double numbers with high precision in C++?][1] - - #include - #include - #include - - int main() - { - std::random_device rd; - - std::mt19937 e2(rd()); - - std::uniform_real_distribution<> dist(1, 10); - - for( int i = 0 ; i < 10; ++i ) - { - std::cout << std::fixed << std::setprecision(10) << dist(e2) << std::endl ; - } - - return 0 ; - } - -The answer works fine but I had a hard time to reliaze how to put the output of this code in a double variable instead of printing it on the STDOUT. Can anyone help with this? - -Thanks. - - [1]: http://stackoverflow.com/a/18131869/3199911",LQ -"

    By default, Bazel runs tests in a parallel fashion to speed things up. However, I have a resource (GPU) that can't handle parallel jobs due to the GPU memory limit. Is there a way to force Bazel to run tests in a serial, i.e., non-parallel way?

    - -

    Thanks.

    -",HQ -"I am working on a parser for a text file. I am trying to parse some strings into JSON objects so I can easily display some different values on a webapp page (using flask). I am passing the strings into my html page using jinja2, and trying to parse them JSON objects in javascript. - - - - - -Problem is the value of argument `key` in controller method `SearchBooks` is always `null`! - -But if I create a `model` (below) - -**MODEL** - - - - - - public class SearchViewModel{ - public string SearchKey {get; set;} - } - - - -and then if I modify my `AJAX` to pass value to this `model` like following, everything works just fine! - - - - - - - - - -Please help!",LQ -"

    I have two Laravel 5.2 applications (lets call them A and B) on my local machine, both configured on two different virtualhosts on my local Apache 2.4 development server.

    - -

    Both applications sometimes are calling each other through GuzzleHttp.

    - -

    At one point I wanted to use encryption and I started getting ""mac is invalid"" exceptions from Laravel's Encrypter.

    - -

    While investigating the issue, I found that when app A calls app B, app B suddenly gets encryption key (app.key) from app A! This causes encryption to break because the values on app B where encrypted using app's B encryption key.

    - -

    While debugging, I found the Dotenv library has some logic to keep existing variables if they are set. I found that both $_ENV and $_SERVER do not have leaked variables, but getenv() has them!

    - -

    I'm a bit confused because PHP putenv says:

    - -
    -

    The environment variable will only exist for the duration of the current request.

    -
    - -

    It seems, if during current request I launch another request through GuzzleHttp, the variables set by Dotenv in A using putenv() suddenly become available in app B which is being requested by GuzzleHttp!

    - -

    I understand that this will not be an issue on production servers where config cache will be used instead of Dotenv and most probably both apps will run on different Apache servers, but this behavior is breaking my development process.

    - -

    How do I configure Laravel or GuzzleHttp or Apache or PHP to prevent this putenv() leakage from app A into app B?

    -",HQ -"

    Creating a Kubernetes LoadBalancer returns immediatly (ex: kubectl create -f ... or kubectl expose svc NAME --name=load-balancer --port=80 --type=LoadBalancer).

    - -

    I know a manual way to wait in shell:

    - -
    external_ip=""""
    -while [ -z $external_ip ]; do
    -    sleep 10
    -    external_ip=$(kubectl get svc load-balancer --template=""{{range .status.loadBalancer.ingress}}{{.ip}}{{end}}"")
    -done
    -
    - -

    This is however not ideal:

    - -
      -
    • Requires at least 5 lines Bash script.
    • -
    • Infinite wait even in case of error (else requires a timeout which increases a lot line count).
    • -
    • Probably not efficient; could use --wait or --wait-once but using those the command never returns.
    • -
    - -

    Is there a better way to wait until a service external IP (aka LoadBalancer Ingress IP) is set or failed to set?

    -",HQ -"

    I have made a library which depends on CEFsharp which requires to build the library for specific platforms. So no AnyCPU support.

    - -

    Now I want to pack this into a NuGet. As far as I understand you have to put these files into the build folder and have a .targets file which picks the correct dll to reference. So I ended up with a NuGet package looking like this:

    - -
    lib
    -    monodroid
    -        MyLib.dll
    -    xamarin.ios10
    -        MyLib.dll
    -    net45
    -        MyLib.dll (x86)
    -build
    -    net45
    -        x86
    -            MyLib.dll (x86)
    -        x64
    -            MyLib.dll (x64)
    -        MyLib.targets
    -
    - -

    I put the following inside of the .targets file:

    - -
    <?xml version=""1.0"" encoding=""utf-8""?>
    -<Project ToolsVersion=""4.0"" xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
    -  <Target Name=""PlatformCheck"" BeforeTargets=""InjectReference""
    -    Condition=""(('$(Platform)' != 'x86') AND  ('$(Platform)' != 'x64'))"">
    -    <Error  Text=""$(MSBuildThisFileName) does not work correctly on '$(Platform)' platform. You need to specify platform (x86 or x64)."" />
    -  </Target>
    -
    -  <Target Name=""InjectReference"" BeforeTargets=""ResolveAssemblyReferences"">
    -    <ItemGroup Condition=""'$(Platform)' == 'x86' or '$(Platform)' == 'x64'"">
    -      <Reference Include=""MyLib"">
    -        <HintPath>$(MSBuildThisFileDirectory)$(Platform)\MyLib.dll</HintPath>
    -      </Reference>
    -    </ItemGroup>
    -  </Target>
    -</Project>
    -
    - -

    So far so good. Now to the problem. When adding this NuGet to a new WPF project, I see the reference to the library appearing in the .csproj file like:

    - -
    <Reference Include=""MyLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d64412599724c860, processorArchitecture=x86"">
    -  <HintPath>..\packages\MyLib.0.0.1\lib\net45\MyLib.dll</HintPath>
    -  <Private>True</Private>
    -</Reference>
    -
    - -

    Although I don't see anything mentioned about the .targets file. Is this still the way to do it with NuGet 3? Did I do something wrong? Currently this fails at runtime when running x64 because of the reference to the x86 lib.

    -",HQ -"

    In previous versions of Visual Studio, you could make all selected text lowercase with CTRL+U, and all uppercase using CTRL+SHIFT+U.

    - -

    The uppercase shortcut remains in the 2015 version of VS, the lowercase shortcut, however, has been removed.

    - -

    Does anybody have any info regarding this?

    - -

    I thought it may have been because it conflicted with a shortcut for newly introduced functionality which had to take priority, but the only CTRL+U shortcut relies on a previous combination of keys too.

    -",HQ -"I want to make a div appear when clicking on another div. I was thinking of doing this by using JavaScript to change the class of a div when another div is clicked on. - - - -This is the HTML of the div I want to appear: - -
    -This is the HTML of the control div (the one to click on to make the above div appear): - -
    - - - - -This is the CSS: - - .hidden { display: none; } - - .unhidden { display: block; } - - -I've looked everywhere and nothing seems to work for me! - -I don't have much experience with JavaScript or JQuery but can understand it. - -Thanks in advance :))",LQ -"

    I'm trying to get a fellow developer's app working on my machine. Solution is built in VS 2015 using Web API and I'm running it using 64-bit IIS Express. Every request is returning 500.0 errors. Request tracing log says this about it:

    - -
    1517.  -MODULE_SET_RESPONSE_ERROR_STATUS 
    -ModuleName    ManagedPipelineHandler 
    -Notification  EXECUTE_REQUEST_HANDLER 
    -HttpStatus    500 
    -HttpReason    Internal Server Error 
    -HttpSubStatus 0 
    -ErrorCode     Recursion too deep; the stack overflowed. (0x800703e9) 
    -ConfigExceptionInfo
    -
    - -

    The relevant config section looks like this:

    - -
    <system.webServer>
    -<handlers>
    -  <remove name=""OPTIONS"" />
    -  <remove name=""OPTIONSVerbHandler"" />
    -  <remove name=""TRACEVerbHandler"" />
    -  <remove name=""ExtensionlessUrlHandler-Integrated-4.0"" />
    -  <remove name=""ExtensionlessUrlHandler-ISAPI-4.0_32bit"" />
    -  <remove name=""ExtensionlessUrlHandler-ISAPI-4.0_64bit"" />
    -  <add name=""ExtensionlessUrlHandler-ISAPI-4.0_32bit"" path=""*"" verb=""*"" modules=""IsapiModule"" scriptProcessor=""%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll"" preCondition=""classicMode,runtimeVersionv4.0,bitness32"" responseBufferLimit=""0"" />
    -  <add name=""ExtensionlessUrlHandler-ISAPI-4.0_64bit"" path=""*"" verb=""*"" modules=""IsapiModule"" scriptProcessor=""%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll"" preCondition=""classicMode,runtimeVersionv4.0,bitness64"" responseBufferLimit=""0"" />
    -  <add name=""ExtensionlessUrlHandler-Integrated-4.0"" path=""*"" verb=""*"" type=""System.Web.Handlers.TransferRequestHandler"" preCondition=""integratedMode,runtimeVersionv4.0"" />
    -</handlers>
    -</system.webServer>
    -
    - -

    Other possibly relevant facts:

    - -
      -
    • The machine hasn't been used for web hosting before, but I've been doing a lot of VS2013 development and only installed 2015 last week to run this project.
    • -
    • The project does contain some C# 6.0 features, namely the new string interpolation goodies.
    • -
    - -

    How would I even begin to debug this? I'm getting zero relevant hits on Google.

    -",HQ -"

    I want to make POST request to my local dev, like this:

    - -
      HTTParty.post('http://localhost:3000/fetch_heroku',
    -                :body => {:type => 'product'},)
    -
    - -

    However, from the server console it reports

    - -
    Started POST ""/fetch_heroku"" for 127.0.0.1 at 2016-02-03 23:33:39 +0800
    -  ActiveRecord::SchemaMigration Load (0.0ms)  SELECT ""schema_migrations"".* FROM ""schema_migrations""
    -Processing by AdminController#fetch_heroku as */*
    -  Parameters: {""type""=>""product""}
    -Can't verify CSRF token authenticity
    -Completed 422 Unprocessable Entity in 1ms
    -
    - -

    Here is my controller and routes setup, it's quite simple.

    - -
      def fetch_heroku
    -    if params[:type] == 'product'
    -      flash[:alert] = 'Fetch Product From Heroku'
    -      Heroku.get_product
    -    end
    -  end
    -
    -  post 'fetch_heroku' => 'admin#fetch_heroku'
    -
    - -

    I'm not sure what I need to do? To turn off the CSRF would certainly work, but I think it should be my mistake when creating such an API.

    - -

    Is there any other setup I need to do?

    -",HQ -"

    I start activity A, then start activity B.
    -I press home button, then waiting long time.
    -When I resume application, it force stopped.

    - -
    02-03 18:42:54.413 828-844/system_process I/ActivityManager: Force stopping ru.tabor.search appid=10089 user=0: from pid 20405
    -02-03 18:42:54.414 828-844/system_process I/ActivityManager: Killing 30212:ru.tabor.search/u0a89 (adj 7): stop ru.tabor.search
    -02-03 18:42:54.445 828-5948/system_process I/WindowState: WIN DEATH: Window{18b92c9b u0 ru.tabor.search/ru.tabor.search.modules.authorization.AuthorizationActivity}
    -02-03 18:42:54.447 828-845/system_process I/WindowState: WIN DEATH: Window{1cd0cfe4 u0 ru.tabor.search/ru.tabor.search.modules.registration.RegistrationActivity}
    -02-03 18:42:54.519 828-844/system_process I/ActivityManager:   Force finishing activity 3 ActivityRecord{25a8977f u0 ru.tabor.search/.modules.authorization.AuthorizationActivity t2593}
    -02-03 18:42:54.520 828-844/system_process I/ActivityManager:   Force finishing activity 3 ActivityRecord{d516838 u0 ru.tabor.search/.modules.registration.RegistrationActivity t2593}
    -02-03 18:42:54.523 828-20666/system_process W/ActivityManager: Spurious death for ProcessRecord{21ff313b 0:ru.tabor.search/u0a89}, curProc for 30212: null
    -02-03 18:42:59.890 828-1247/system_process I/ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10100000 cmp=ru.tabor.search/.modules.authorization.AuthorizationActivity} from uid 10089 on display 0
    -02-03 18:42:59.903 828-1247/system_process V/WindowManager: addAppToken: AppWindowToken{1c4987a0 token=Token{279a08a3 ActivityRecord{9f5afd2 u0 ru.tabor.search/.modules.authorization.AuthorizationActivity t2593}}} to stack=1 task=2593 at 0
    -02-03 18:42:59.919 828-891/system_process V/WindowManager: Adding window Window{1735e91b u0 Starting ru.tabor.search} at 4 of 8 (after Window{2ab6bf53 u0 com.cleanmaster.mguard/com.keniu.security.main.MainActivity})
    -02-03 18:43:19.288 828-1673/system_process I/ActivityManager: Start proc 21366:ru.tabor.search/u0a89 for activity ru.tabor.search/.modules.authorization.AuthorizationActivity
    -
    - -

    How to fix it?

    -",HQ -"

    I'm using react-router for my routing and I use the hashHistory option so that I could refresh the page from the browser or specify a url of one of my existing routes and land on the right page. -It works fine but I see the hash in the url like this: -http://localhost/#/login?_k=ya6z6i

    - -

    This is my routing configuration:

    - -
    ReactDOM.render((
    - <Router history={hashHistory}>
    -    <Route path='/' component={MasterPage}>
    -      <IndexRoute component={LoginPage} />
    -      <Route path='/search' component={SearchPage} />
    -      <Route path='/login' component={LoginPage} />
    -      <Route path='/payment' component={PaymentPage} />
    -    </Route>
    -  </Router>),
    -    document.getElementById('app-container'));
    -
    -",HQ -"I need to check if in my vector the elements are in order - - for(i=1; i<=K; i++) - if(v[i]=v[i+1]-1) -If the statement would be true I want to return the biggest integer. - -> ex. 4 5 6 7 - - 7",LQ -"what algorithm does STL size() use to find the size of string or vector in c++? - -I know that working of strlen() is dependent on finding the NUL character in the c char array but I want to know how does size() function work to find the size of string which is not null terminated as we know. - -Does stl containers use some sort of pointers to mark the ending of container? -And does that help in finding the size or something else?",LQ -"

    I'm doing some scientific computing in Python with a lot of geometric calculations, and I ran across a significant difference between using numpy versus the standard math library.

    - -
    >>> x = timeit.Timer('v = np.arccos(a)', 'import numpy as np; a = 0.6')
    ->>> x.timeit(100000)
    -0.15387153439223766
    ->>> y = timeit.Timer('v = math.acos(a)', 'import math; a = 0.6')
    ->>> y.timeit(100000)
    -0.012333301827311516
    -
    - -

    That's more than a 10x speedup! I'm using numpy for almost all standard math functions, and I just assumed it was optimized and at least as fast as math. For long enough vectors, numpy.arccos() will eventually win vs. looping with math.acos(), but since I only use the scalar case, is there any downside to using math.acos(), math.asin(), math.atan() across the board, instead of the numpy versions?

    -",HQ -"

    I have current time in milliseconds as - 1454521239279

    - -

    How do I convert it to 03 FEB 2016 and time as 11:10 PM ?

    -",HQ -"

    So When I try to split my application into 1 application.js file and 1 libraries.js file, everything works fine. When I try to split it up into 1 application.js file and 2 libraries.js files, I get this error when building:

    - -

    ERROR in CommonsChunkPlugin: While running in normal mode it's not allowed to use a non-entry chunk (libraries-react)

    - -

    Anyone know what might be causing this error?

    - -

    My configuration for webpack is

    - -
    var webpack = require(""webpack"");
    -var ExtractTextPlugin = require(""extract-text-webpack-plugin"");
    -
    -var extractSass = new ExtractTextPlugin('main.css');
    -
    -module.exports = {
    -    module: {
    -        loaders: [{
    -            test: /\.jsx$/,
    -            loader: 'babel',
    -            exclude: ['./node_modules'],
    -            query: {
    -                presets: ['react', 'es2015']
    -            }
    -        }, {
    -            test: /\.scss$/,
    -            loader: extractSass.extract(['css', 'sass'])
    -        }, {
    -            test: /\.html$/,
    -            loader: 'file?name=[name].[ext]'
    -        }, {
    -            test: /\/misc\/.*\.js$/,
    -            loader: 'file?name=/misc/[name].[ext]'
    -        }, {
    -            test: /\.(png|jpg|jpeg|)$/,
    -            loader: 'file?name=/images/[name].[ext]'
    -        }]
    -    },
    -    plugins: [
    -        extractSass,
    -        new webpack.optimize.CommonsChunkPlugin('libraries-core', 'libraries-core.js'),
    -        new webpack.optimize.CommonsChunkPlugin('libraries-react', 'libraries-react.js')
    -    ],
    -    entry: {
    -        //3rd party libraries
    -        'libraries-core': [
    -          'lodash',
    -          'superagent',
    -          'bluebird',
    -          'eventemitter3',
    -          'object-assign',
    -          'schema-inspector',
    -          'jsuri',
    -          'store-cacheable',
    -          'immutable'
    -        ],
    -
    -        'libraries-react': [
    -          'react',
    -          'react-dom',
    -          'react-router',
    -          'nucleus-react'
    -        ],
    -
    -        //application code
    -        application: './web/app/application.jsx',
    -
    -        //mocks
    -        'mocked-api': './web/app/mock/api.js',
    -        'mocked-local-storage': './web/app/mock/local-storage.js'
    -    },
    -    output: {
    -        path: './web/build',
    -        publicPath: '/build',
    -        filename: '[name].js'
    -    }
    -}
    -
    -",HQ -"Hello i need help please, i keep getting this error when trying to add an entry to one of my tables. -Trying to add this code: `INSERT INTO ROUTE VALUES ('7418','66','200','313');` - -into this table - - CREATE TABLE ROUTE ( - ROUTE_ID INT NOT NULL PRIMARY KEY, - ROUTE_NAME VARCHAR(45) NOT NULL, - DELIVERY_VEHICLE_VEH_ID INT NOT NULL, - DELIVERY_DRIVER_DR_ID INT NOT NULL, - CONSTRAINT FK_ROUTE_DELIVERY FOREIGN KEY (DELIVERY_VEHICLE_VEH_ID) REFERENCES DELIVERY (VEHICLE_VEH_ID), - FOREIGN KEY (DELIVERY_DRIVER_DR_ID) REFERENCES DELIVERY (DRIVER_DR_ID)); - -Other related tables - - CREATE TABLE DELIVERY ( - VEHICLE_VEH_ID INT NOT NULL, - DRIVER_DR_ID INT NOT NULL, - DEL_DATE DATETIME NOT NULL, - DEL_TIME DATETIME NOT NULL, - PRIMARY KEY (VEHICLE_VEH_ID , DRIVER_DR_ID), - INDEX (DRIVER_DR_ID), - INDEX (VEHICLE_VEH_ID), - CONSTRAINT FK_VEHICLE_HAS_DRIVER_VEHICLE FOREIGN KEY (VEHICLE_VEH_ID) REFERENCES VEHICLE (VEH_ID), - CONSTRAINT FK_VEHICLE_HAS_DRIVER_DRIVER FOREIGN KEY (DRIVER_DR_ID) REFERENCES DRIVER (DR_ID)); - - CREATE TABLE DRIVER ( - DR_ID INT NOT NULL PRIMARY KEY, - DR_TITLE VARCHAR(15) NOT NULL, - DR_FNAME VARCHAR(45) NOT NULL, - DR_LNAME VARCHAR(45) NOT NULL, - DR_DOB DATETIME NOT NULL, - DR_LICENCENO VARCHAR(45) NOT NULL, - DR_PHONE VARCHAR(15) NOT NULL, - DR_EMAIL VARCHAR(45) NOT NULL);",LQ -"I have two tables. -If percentage in table A is null then I want to look for it in table B - -SELECT t.id, -CASE - WHEN t.percentage IS NULL - THEN (SELECT percentage FROM test2 AS s WHERE s.id=t.id ) - ELSE t.percentage - END AS percentage -FROM [project_percentage] t -",LQ -"

    I am trying to use the following font-awesome icon

    - -
    <i class=""fa fa-minus-circle""></i>
    -
    - -

    as a delete icon next to items in a list on my page like this:

    - -
    Item 1  delete-icon
    -Item 2  delete-icon
    -
    - -

    On click of one of these icons I need to run a JavaScript function...

    - -

    What html element should I be wrapping the icon with? I noticed that when I use an anchor tag it turns blue and when I use a button it ends up being wrapped in a button. Are there any other options?

    - -

    Essentially I want to do this

    - -
    <a onclick=""Remove()""><i class=""fa fa-minus-circle""></i></a>
    -
    - -

    or this

    - -
    <button onclick=""Remove()""><i class=""fa fa-minus-circle""></i></button>
    -
    - -

    But have only the icon appear as is with no modifications. No blue color, and not wrapped inside a button.

    -",HQ -"I need to write the procedure for inserting the records in to multiple tables, for example I am HAVING here 3 table, - -CREATE TABLE SOURCE -( -SORT_CODE NUMBER, -FLAG CHAR(1) -); - -INSERT INTO SOURCE VALUES(605096,5); - -INSERT INTO SOURCE VALUES(605097,5); - -INSERT INTO SOURCE VALUES(605098,5); - -INSERT INTO SOURCE VALUES(605099,5); - -INSERT INTO SOURCE VALUES(605100,5); - -INSERT INTO SOURCE VALUES(605101,6); - -INSERT INTO SOURCE VALUES(605102,6); - -INSERT INTO SOURCE VALUES(605103,6); - -INSERT INTO SOURCE VALUES(605104,6); - -INSERT INTO SOURCE VALUES(605105,6); - - -SQL> SELECT * FROM SOURCE; - -SORT_CODE F ----------- - -605096 5 -605097 5 -605098 5 -605099 5 -605100 5 -605101 6 -605102 6 -605103 6 -605104 6 -605105 6 - -10 rows selected. - - -CREATE TABLE TARGET -( -SORT_CODE NUMBER, -TARGET_SORT_CODE NUMBER -); - -Table created. - - ---INSERT 5 VALUES - -INSERT INTO TARGET VALUES(605101,189873); - -INSERT INTO TARGET VALUES(605102,189874); - -INSERT INTO TARGET VALUES(605103,189875); - -INSERT INTO TARGET VALUES(605104,189876); - -INSERT INTO TARGET VALUES(605105,''); - - -SELECT * FROM TARGET; - -SORT_CODE TARGET_SORT_CODE ----------- ---------------- -605101 189873 -605102 189874 -605103 189875 -605104 189876 -605105 - - -CREATE TABLE NEWID -( -SORT_CODE NUMBER, -ID_SCODE NUMBER -); - -Table created. - - ---INSERT 2 VALUES - - -INSERT INTO TARGET VALUES(605103,189875); - -INSERT INTO TARGET VALUES(605104,189876); - - -SELECT * FROM NEWID; - -SORT_CODE ID_SCODE ----------- ---------------- -605103 189875 -605104 189876 - - ---Creating intermediate tables with existing table's structure. -CREATE TABLE SOURCE_TEMP AS (SELECT * FROM SOURCE WHERE 1=2); - -CREATE TABLE TARGET_TEMP AS (SELECT * FROM TARGET WHERE 1=2); - -CREATE TABLE NEWID_TEMP AS (SELECT * FROM NEWID WHERE 1=2); - ---MY Procedure for inserting the records -CREATE OR REPLACE PROCEDURE insert_sql -is -BEGIN - -DELETE FROM SOURCE_TEMP; -INSERT INTO SOURCE_TEMP SELECT * FROM SOURCE; --insert query 1 - -DELETE FROM TARGET_TEMP; -INSERT INTO TARGET_TEMP SELECT * FROM TARGET; --insert query 2 ---due to some network issue or table error this procedure GOT EXEPCTION here and above insert query 2(TARGET_TEMP) and below --insert query 3(NEWID_TEMP) is not inserted the values or not executed procedure is came out from this line. - -DELETE FROM NEWID_TEMP; -INSERT INTO NEWID_TEMP SELECT * FROM NEWID; --insert query 3 - -EXCEPTION -WHEN NO_DATA_FOUND THEN DBMS_OUTPUT.PUT_LINE('ERROR'); -END; - -Point 1: The above procedure is executed only one insert query 1 SOURCE_TEMP is got the values. -Point 1: TARGET_TEMP and NEWID_TEMP is not inserted the values or not execute. - -MyQues: can I able to re-execute this procedure with starting point of '--insert query 2' line? - -becoz I am inserting the 100 tables records in new tables, if 50 tables are inserted the values during this time if i am getting any error in the proc execution, remaining 50 tables needs to insert the values, for I dont wish to delete the previous 50 tables inserted the values it will be the time consuming activity. any save point or boolean concepts is there for this type of issue in ORACLE (which is available in java and unix) if yes how to use this function? - -Thanks -Sanjay",LQ -" #!/usr/bin/env python3 - - # Script to convert HTML files provided by The Online Plain Text English - # Dictionary (http://www.mso.anu.edu.au/~ralph/OPTED/) into SQLite database - - import sys - import sqlite3 - from argparse import ArgumentParser, FileType - from bs4 import BeautifulSoup - - def parse_args(): - parser = ArgumentParser(""Create database from HTML dictionary pages"") - parser.add_argument(""files"", metavar=""file"", nargs=""+"", type=FileType(""rb"")) - parser.add_argument(""--out"", ""-o"", required=True) - return parser.parse_args() - - def create_tables(conn): - conn.execute(""DROP TABLE IF EXISTS words"") - conn.execute(""CREATE TABLE words (id integer primary key, word text, description text)"") - conn.commit() - - def words(handle): - doc = BeautifulSoup(handle) - for p in doc.find_all(""p""): - if len(p.contents) == 4: - word = p.contents[0].string.lower() - definition = p.contents[3].lstrip("") "").replace(""\n"", "" "") - yield word, definition - - def insert_words(conn, iter): - conn.executemany(""INSERT INTO words VALUES (NULL, ?, ?)"", iter) - - def main(): - args = parse_args() - db = sqlite3.connect(args.out) - create_tables(db) - for handle in args.files: - print(""Processing \""{}\"""".format(handle.name), file=sys.stderr) - insert_words(db, words(handle)) - db.commit() - db.close() - - if __name__ == ""__main__"": - main() - - - -i tried python my_script.py - -but it shows this: - -usage: Create database from HTML dictionary pages [-h] --out OUT - file [file ...] -Create database from HTML dictionary pages: error: the following arguments are r -equired: file, --out/-o - - -i dont use python. i just want to run this script and sorry for bad presentation of code I am new at this.",LQ -"

    The workflow should be the following:

    - -
      -
    1. Activity starts
    2. -
    3. Progress bar is visible
    4. -
    5. Network request fires (idling resource is already registered so espresso knows how to wait for it).
    6. -
    7. Progress bar is hidden
    8. -
    9. Text from network is shown.
    10. -
    - -

    Up to this point, I have written assertions for steps 1, 3, 5 and it works perfectly:

    - -
    onView(withText(""foo 1""))
    -    .check(matches(isDisplayed()));
    -
    - -

    Problem is, I have no idea how to let espresso know to verify the visibility of progress bar before the request is made and after the request is made.

    - -

    Consider the onCreate() method is the following:

    - -
    super.onCreate(...);
    -setContentView(...);
    -
    -showProgressBar(true);
    -apiClient.getStuff(new Callback() {
    -    public void onSuccess() {
    -        showProgressBar(false);
    -    }
    -});
    -
    - -

    I have tried the following but it doesn't work:

    - -
    // Activity is launched at this point.
    -activityRule.launchActivity(new Intent());
    -
    -// Up to this point, the request has been fired and response was 
    -// returned, so the progress bar is now GONE.
    -onView(withId(R.id.progress_bar))
    -   .check(matches(isDisplayed()));
    -
    -onView(withId(R.id.progress_bar))
    -    .check(matches(not(isDisplayed())));
    -
    - -

    The reason this is happening is because, since the client is registered as an idling resource, espresso will wait until it is idle again before running the first onView(...progressbar...)... so I need a way to let espresso know to run that BEFORE going to idle.

    - -

    EDIT: this doesn't work either:

    - -
    idlingResource.registerIdleTransitionCallback(new IdlingResource.ResourceCallback() {
    -        @Override
    -        public void onTransitionToIdle() {
    -            onView(withId(R.id.progress_bar))
    -                    .check(matches(isDisplayed()));
    -        }
    -    });
    -
    -",HQ -"I'm trying to build a sales query for a rolling 12 months. I know my sales by customer, and my total sales. I'm trying to sum up the top 80% of sales $ and give a count on how many customers make up that 80%. Any ideas? I have a result set that looks like the below. Thanks in advance! - -Customer Sales TotalSales PercentOfSales -8585 19788.81 769658.68 0.03 -8429 19598.26 769658.68 0.03 -2837 19431.29 769658.68 0.03 -6071 19398.11 769658.68 0.03 -5027 19223.13 769658.68 0.02 -6677 19204.90 769658.68 0.02",LQ -"

    I've been using Automapper and Autofac in a .Net app for some time. I configured them this way:

    - -
    builder.RegisterAssemblyTypes(typeof (OneOfMyMappingProfiles).Assembly)
    -        .Where(t => t.IsSubclassOf(typeof (Profile)))
    -        .As<Profile>();
    -
    -builder.Register(ctx => new ConfigurationStore(new TypeMapFactory(), MapperRegistry.Mappers))
    -        .AsImplementedInterfaces()
    -        .SingleInstance()
    -        .OnActivating(x =>
    -        {
    -            foreach (var profile in x.Context.Resolve<IEnumerable<Profile>>())
    -            {
    -                x.Instance.AddProfile(profile);
    -            }
    -        });
    -
    -builder.RegisterType<MappingEngine>()
    -            .As<IMappingEngine>().SingleInstance();
    -
    - -

    With the latest build of Automapper (4.2) the API has changed and I am having trouble translating to the new API. ConfigurationStore no longer seems to exist. According to the docs, the way to register with an IOC is now like this:

    - -
     var profiles =
    -        from t in typeof (AutoMapperRegistry).Assembly.GetTypes()
    -        where typeof (Profile).IsAssignableFrom(t)
    -        select (Profile)Activator.CreateInstance(t);
    -
    -    var config = new MapperConfiguration(cfg =>
    -    {
    -        foreach (var profile in profiles)
    -        {
    -            cfg.AddProfile(profile);
    -        }
    -    });
    -
    -    For<MapperConfiguration>().Use(config);
    -    For<IMapper>().Use(ctx => ctx.GetInstance<MapperConfiguration>().CreateMapper(ctx.GetInstance));
    -
    - -

    BUT that is using StructureMap. The first half of this is no problem, but I am not sure how to translate the ""For<>.Use()"" portion. How do I do that in Autofac?

    -",HQ -"

    I have a bit of a funny situation in Amazon Redshift where I have a user X who has grant select on all tables in schema public, but once a new table is created, this grant doesn't seem to apply to the new table. Is this normal behaviour? If yes, how does one deal with it such that the schema level grants are maintained. Thank you.

    -",HQ -"

    What is your best practise for mounting an S3 container inside of a docker host? Is there a way to do this transparently? Or do I rather need to mount volume to the host drive using the VOLUME directive, and then backup files to S3 with CRON manually?

    -",HQ -"I'm using the Ratchet framework to compose a web page, but any achor tags doest Works, even though I using the true rule, for example: - - click me - -don't Works. I really don't understand, but Works with pure HTML code, and other frameworks.",LQ -"

    I'm trying to make my entire S3 bucket public, but when I try to add the policy:

    - -
    {
    -  ""Id"": ""Policy1454540872039"",
    -  ""Version"": ""2012-10-17"",
    -  ""Statement"": [
    -    {
    -      ""Sid"": ""Stmt1454540868094"",
    -      ""Action"": [
    -        ""s3:GetObject""
    -      ],
    -      ""Effect"": ""Allow"",
    -      ""Resource"": ""arn:aws:s3:::sneakysnap/*"",
    -      ""Principal"": {
    -      ""AWS"": [
    -         ""985506495298""
    -    ]
    -  }
    -  }
    -  ]
    -}
    -
    - -

    It tells me that my ""Resource is invalid"", but that is definitely the right arn and that is definitely the right bucket name. Anyone know what's going on?

    -",HQ -"

    I am getting a dictionary from an online api in the form of {{key: object}, {key: object},... For like 1000 Objects}. I would like to use reactJS to do something like

    - -
    this.props.dict.map(function(object, key)){
    - //Do stuff
    -}
    -
    - -

    This map works with arrays but it obviously doesn't work with dictionaries. How can I achieve something similar?

    -",HQ -"In Word, what is the macro vba code necessary for me to find a phrase, goto the beginning of the line the phrase is in, insert a page break, then leave myself in a position to execute the macro again.",LQ -"This code 8 cells from a data entry form and copies those cells to the next empty row on another worksheet that is used as a database. It works perfectly except that it takes 15 seconds to run. I know that I can speed up the code if it didn't copy to another sheet. It that scenario it think that I timed it at <7 seconds. -Is there a way to significantly speed up this code without merging the two sheets which, at this point is a logistical nightmare? - - sub UpdateLogWorksheet1() - Application.ScreenUpdating = False - Application.EnableEvents = False - - Dim historyWks As Worksheet - Dim inputWks As Worksheet - - Dim nextRow As Long - Dim oCol As Long - - Dim myRng As Range - Dim myCopy As String - Dim myclear As String - Dim myCell As Range - ActiveSheet.Unprotect ""sallygary"" - - myCopy = ""e4,g26,g16,g12,g18,g20,g22,g24"" - Set inputWks = Worksheets(""Dept 1 Input"") - Set historyWks = Worksheets(""1_Data"") - - With historyWks - nextRow = .Cells(.Rows.Count, ""A"").End(xlUp).Offset(1, 0).Row - End With - - With inputWks - Set myRng = .Range(myCopy) - - End With - - With historyWks - With .Cells(nextRow, ""A"") - .Value = Now() - .NumberFormat = ""mm/dd/yyyy"" - End With - .Cells(nextRow, ""B"").Value = Application.UserName - oCol = 3 - For Each myCell In myRng.Cells - historyWks.Cells(nextRow, oCol).Value = myCell.Value - oCol = oCol + 1 - Next myCell - End With - - With inputWks - On Error Resume Next - End With - On Error GoTo 0 - ActiveSheet.Protect ""sallygary"" - Range(""g12"").Select - Application.ScreenUpdating = True - Application.EnableEvents = True - -End Sub",LQ -"how do i reverse a sentence like ""Hello World"" to ""World Hello"" Not dlroW oleo -Been search for an example on this forum the whole day",LQ -"

    My python script constantly has to send messages to RabbitMQ once it receives one from another data source. The frequency in which the python script sends them can vary, say, 1 minute - 30 minutes.

    - -

    Here's how I establish a connection to RabbitMQ:

    - -
      rabt_conn = pika.BlockingConnection(pika.ConnectionParameters(""some_host""))
    -  channel = rbt_conn.channel()
    -
    - -

    I just got an exception

    - -
    pika.exceptions.ConnectionClosed
    -
    - -

    How can I reconnect to it? What's the best way? Is there any ""strategy""? Is there an ability to send pings to keep a connection alive or set timeout?

    - -

    Any pointers will be appreciated.

    -",HQ -"

    As an administrator I can get a users processes by running this

    - -

    Get-Process -IncludeUserName | Where UserName -match test

    - -

    But as a non-administrator I can't use -IncludeUserName becuase ""The 'IncludeUserName' parameter requires elevated user rights"".

    - -

    So if I'm logged on as the user test, how do I list only his processes and not everything that's running?

    -",HQ -"

    The question is concerning webpack. After packing almost everything into a single bundle.js which is loaded in index.html, the bundle.js file is about 2M and requires several seconds to load.

    - -

    I'd like to display a progress bar indicating loading progress while hiding all the content. Only enable user interaction and show the content after loading is done, exactly the one that Gmail is using.

    - -

    Is it possible to use webpack to do that? How?

    - -

    Thanks!

    -",HQ -"Here is the HTML code : - - Create Project - - -I tried below code: - - .//a[ng-click='openProjectModal($event)'] -Using xpath it is working but i don't want to use xpath. -",LQ -"Code is below - - - - -In selenium i tried this code -driver.findElement(By.classname(""Login"")).click(); - -please help me in this code without x path",LQ -"

    I meets some problems so I want to find the source code of the Android support libraries . For example , I want to read the ActionBarActivity.java source code in version 19.0.1 and 20.0.0 in support.appcompat-v7 , and find out the difference between the two versions.

    - -

    I found the https://github.com/android/platform_frameworks_base , but the release have named as android-x.x.x_rxx but not like 19.0.1 .

    -",HQ -"

    Instead of writing out {% include link_to.html i=5 text=""hello world"" %} all the time, I've written a custom tag that allows me to do {% link_to 5 hello world %}. It finds the page with data i equal to 5 and creates a link to it.

    - -

    But it feels clunky to generate HTML strings from inside the tag code, and it is awkward to write complicated code logic inside the HTML include code. So is there a way to have the tag definition do the heavy lifting of finding the relevant page to link to, and have it pass on what it found to link_to.html to render? Sort of like the controller passing information on to the view in Rails.

    -",HQ -"[enter image description here][1] - - - [1]: http://i.stack.imgur.com/uItaU.png - -why can i see the change in the table??? -",LQ -"I want to comment **""Defaults requiretty""** line present in ***/etc/sudoers*** file using Chef. If it is already commented, the ruby code should skip commenting it. I'm using CentOS 6.7 operating system.",LQ -"

    I am new to cassandra ! Have downloaded the apacahe cassandra 2.1.2 package and initialy was able to connect to cqlsh but then after installing CCM i am unable to connect , will get the following error

    - -
    Traceback (most recent call last):
    -File ""bin/cqlsh"", line 124, in <module>
    -from cqlshlib import cql3handling, cqlhandling, pylexotron,sslhandling, copy
    -ImportError: No module named cqlshlib
    -
    - -

    Thanks in advance !

    -",HQ -"

    I use node-sass to compile all my Sass files to a master.css. -This works well but now I want to add prefixes. I would like to use only the npm, no Gulp or Grunt.

    - -

    Here my package.json file:

    - -
    {
    -  ""name"": ""xxxxxx.com"",
    -  ""version"": ""1.0.0"",
    -  ""description"": """",
    -  ""watches"": {
    -    ""sass"": ""src/scss/**""
    -  },
    -  ""scripts"": {
    -    ""sass"": ""node-sass src/scss/master.scss -o dist/css/ --style compressed"",
    -    ""prefix"": ""postcss --use autoprefixer dist/css/master.css -d dist/css/master.css"",
    -    ""dev"": ""rerun-script""
    -  },
    -  ""author"": ""Jan"",
    -  ""license"": ""ISC"",
    -  ""devDependencies"": {
    -    ""autoprefixer"": ""^6.3.1"",
    -    ""browserify"": ""^13.0.0"",
    -    ""clean-css"": ""^3.4.9"",
    -    ""node-sass"": ""^3.4.2"",
    -    ""postcss-cli"": ""^2.5.0"",
    -    ""rerun-script"": ""^0.6.0"",
    -    ""uglifyjs"": ""^2.4.10""
    -  }
    -}
    -
    - -

    I do not get it to run. I use autoprefixer and postcss-cli. The modules have been installed locally in the project directory. I think my ""script"" part is false. -How would that look right?

    -",HQ -"

    Given the following piece of code:

    - -
    (map Integer/parseInt [""1"" ""2"" ""3"" ""4""])
    -
    - -

    Why do I get the following exception unless I wrap Integer/parseInt in an anonymous function and call it manually (#(Integer/parseInt %))?

    - -
    clojure.lang.Compiler$CompilerException: java.lang.RuntimeException: Unable to find static field: parseInt in class java.lang.Integer
    -
    -",HQ -"
    -

    Typescript 1.8 now supports untyped JS files. To enable this feature, - just add the compiler flag --allowJs or add ""allowJs"": true to - compilerOptions in tsconfig.json

    -
    - -

    via https://blogs.msdn.microsoft.com/typescript/2016/01/28/announcing-typescript-1-8-beta/

    - -

    I'm trying to import react-tap-event-plugin which does not have a typings file.

    - -
    import * as injectTapEventPlugin from 'injectTapEventPlugin'; 
    -
    - -

    says module not found. So i tried:

    - -
    import * as injectTapEventPlugin from '../node_modules/react-tap-event-plugin/src/injectTapEventPlugin.js';
    -
    - -

    This says Module resolves to a non-module entity and cannot be imported using this construct. And then I tried:

    - -
    import injectTapEventPlugin = require('../node_modules/react-tap-event-plugin/src/injectTapEventPlugin.js');
    -
    - -

    It's crashing with ERROR in ./scripts/index.tsx -Module build failed: TypeError: Cannot read property 'kind' of undefined at node_modules/typescript/lib/typescript.js:39567

    - -

    My tsconfig:

    - -
    {
    -  ""compilerOptions"": {
    -  ""target"": ""ES5"",
    -  ""removeComments"": true,
    -  ""jsx"": ""react"",
    -  ""module"": ""commonjs"",
    -  ""sourceMap"": true,
    -  ""allowJs"": true
    -  },
    -  ""exclude"": [
    -    ""node_modules""
    -  ]
    -}
    -
    - -

    I'm using webpack with ts-loader:

    - -
     {
    -   test: /\.tsx?$/,
    -   exclude: ['node_modules', 'tests'],
    -   loader: 'ts-loader'
    - }
    -
    -",HQ -"I'm wondering why I cannot compare this objects - - public class myCustomClass - { - public string Value { get; set; } - public List Keys { get; set; } - - } - -And i receve an List - -I created an comparer and lookslike - - var comparer = new MyQueryStringInfo { - Value = ""somethingToCompare"" - }; - -Ande When I do `attrOptions.Contains(comparer)` is false. - -My question is can i only compare if my value exist inside my List, without compare my Keys?",LQ -" - img src=""~/Images/Barcodes/MGRNNo.jpg"" id=""barCodeImage"" width=""150px"" height=""60"" - -I want to store the above image in varibale via jquery - -like -var barcodeimage=$('#barCodeImage').image(); -and -I want to print it -like -applet.append64(barcodeimage); -applet.print(); - -is it possible ? - -",LQ -"

    In all tutorials for ECS you need to create a cluster and after that an autoscaling group, that will spawn instances. Somehow in all these tutorials the instances magically show up in the cluster, but noone gives a hint what's connecting the autoscaling group and the cluster.

    - -

    my autoscaling group spawns instances as expected, but they just dont show up on my ecs cluster, who holds my docker definitions.

    - -

    Where is the connection I'm missing?

    -",HQ -"this is my query in sql it seems to say i have a syntax error im used to coding in sql server not access fo i expected this outcome if anyone could help me correct my code id really apprisiate it - - create table M ( - NMR_METER_PT_REF Varchar (50) , - NMR_ST_METER_READ_DATE Datetime, - NMR_END_METER_READ_DATE datetime, - NMR_ST_METER_READING Int, - NMR_END_METER_READING int, - RCH_RECONCILIATION_QTY int, - METERS_THROUGH_ZEROS_COUNT int); - - INSERT M ( - - SELECT - NMR_METER_PT_REF - , NMR_ST_METER_READ_DATE - , NMR_END_METER_READ_DATE - , NMR_ST_METER_READING - , NMR_END_METER_READING - , RCH_RECONCILIATION_QTY - , METERS_THROUGH_ZEROS_COUNT - FROM G - WHERE (((NMR.ST.METER_READING) <= NMR.ST.METER_READING))) - - drop table M - select * from M - ;",LQ -"

    I have a machine with seems to repeat the following pattern with VS2015 (including all patches).

    - -
      -
    1. Install an extension and it's fine, works perfectly.
    2. -
    3. The developer of the extension releases a new update.
    4. -
    5. Update extension, which means VS2015 needs to be restarted.
    6. -
    7. Restart VS2015, look in the extensions and notice that the (updated) extension is now disabled.
    8. -
    - -

    I've tried clearing the MEF cache, but that doesn't seem to help. The only way I've found to resolve this is to

    - -
      -
    1. Delete the extension
    2. -
    3. Restart VS2015
    4. -
    5. Notice the extension is still there as disabled
    6. -
    7. Delete it again
    8. -
    9. Restart VS2015 (it's now removed)
    10. -
    11. Install the extension from fresh from the Extension manager.
    12. -
    - -

    I have another machine which doesn't experience this, and also the activity.xml file doesn't get updated unless there is a loading issue (where you get the error pop-up).

    - -

    The first time I noticed this was when I installed Mads Kristensen's Web extensions pack (which included all of his components) and caused all the pre-installed components to be disabled, so I uninstalled that and deleted all the components that were bundled under that, as it looked like it didn't detect the component were already there and created a duplicate behind the scenes, but now it seems this is happening for all 3rd party components.

    - -

    Has anyone got any ideas what I can try to resolve this and possibly what could be causing this?

    - -

    I'm hoping there is a file somewhere in the VS folder that is logging the issue.

    -",HQ -"

    I have two states, A and B.

    - -
      -
    • When I exit state A by clicking on a close button I do a transition to screen A using $state.go to state B (screen B)
    • -
    • When I exit state A by clicking on the back browser button on screen A I do a transition to state B (screen B) as the browser URL changes
    • -
    - -

    In the onExit of screen A I do a check and if this fails an Error Dialog opens, clicking Close on the error dialog returns a failed promise to the onExit

    - -

    However the onExit still goes ahead and I go to screen B

    - -

    Is it possible to stop the transition from State A (Screen A) to State B (Screen B) if something fails in the onExit?

    -",HQ -"I have a problem regarding excel cell range. So I have an excel file containing cell ranges but when I save it and reopened the same file some cell ranges were missing. I have tried ""save as"" but still same results. I have also searched but still no luck. Hope someone helps me. Thank you in advanced. I'm losing time figuring it out. Any help would be really appreciated! ",LQ -"

    I'm playing with Angular2 and TypeScript and it's not going well (this would be so easy in AngularJS). I'm writing a little experiment app to get to grips with it all and I have the following component as my main / top level component...

    - -
    import {Component, OnInit} from 'angular2/core';
    -import {RouteConfig, ROUTER_DIRECTIVES} from 'angular2/router';
    -import {UserData} from './services/user-data/UserData';
    -import {Home} from './components/home/home';
    -import {UserStatus} from './types/types.ts';
    -import {Http, Headers, Response} from 'angular2/http';
    -
    -@Component({
    -    selector: 'app', // <app></app>
    -    providers: [...FORM_PROVIDERS],
    -    directives: [...ROUTER_DIRECTIVES],
    -    template: require('./app.html')
    -})
    -@RouteConfig([
    -    {path: '/', component: Home, name: 'Home'},
    -    // more routes here....
    -])
    -
    -export class App {
    -
    -    userStatus: UserStatus;
    -
    -    constructor(public http: Http) {
    -    }
    -
    -    ngOnInit() {
    -
    -        // I want to obtain a user Profile as soon as the code is initialised
    -        var headers = new Headers();
    -        headers.append('Content-Type', 'application/json');
    -        this.http.get('/restservice/userstatus', {headers: headers})
    -            .subscribe(
    -            (data: Response) => {
    -                data = JSON.parse(data['_body']);
    -                this.userStatus = data;
    -            },
    -            err => console.log(err), // error
    -            () => console.log('getUserStatus Complete') // complete
    -        );
    -    }    
    -}
    -
    - -

    Now when the top level component is bootstrapped / initialised I want to make a call to a phoney REST service (/restservice/userstatus) I set up that returns an object that I have made into a type like so (this is from import {UserStatus} from './types/types.ts'):

    - -
    export class UserStatus {
    -
    -    constructor (
    -        public appOS?: any , // can be null
    -        public firstName: string,
    -        public formerName?: any, // can be null
    -        public fullPersId: number,
    -        public goldUser: boolean,
    -        public hasProfileImage: boolean,
    -        public hideMoblieNavigationAndFooter: boolean,
    -        public persId: string,
    -        public profileName: string,
    -        public profilePicture: string,
    -        public showAds: boolean,
    -        public siteId:  number,
    -        public url: string,
    -        public verified: boolean
    -    ) {
    -
    -    }
    -}
    -
    - -

    Now the appOS and formerName properties could potentially be null and when serving up the response in my REST service they are, the JSON object looks like so:

    - -
    {
    -    appOS: null,
    -    firstName: ""Max"",
    -    formerName: null,
    -    fullPersId: 123456789,
    -    goldUser: true,
    -    hasProfileImage: true,
    -    hideMoblieNavigationAndFooter: false,
    -    persId: ""4RUDIETMD"",
    -    profileName: ""Max Dietmountaindew"",
    -    profilePicture: ""http://myurl.com/images/maxdietmountaindew.jpg"",
    -    showAds: true,
    -    siteId: 1,
    -    url: ""/profile/maxdietmountaindew"",
    -    verified: true
    -}
    -
    - -

    So the data structure sent from my phoney service and the Type Object match however when I try to assign the data from the Rest Service to component in the class 'this.userStatus = data;' I get the following error....

    - -
    ""error TS2322: Type 'Response' is not assignable to type 'UserStatus'.
    -  Property 'appOS' is missing in type 'Response'.""
    -
    - -

    I assume in my Type class I am doing something wrong with the definition where nulls are concerned can anyone see what I am doing wrong or explain why I am getting the error. Thanks in advance.

    -",HQ -"

    I installed .net core from this site. Playing with it led to a number of related package management questions:

    - -
      -
    1. The dotnet restore command proceeded to ""install"" .net core NuGet packages. Where were those packages ""installed""? A new folder was not created.
    2. -
    3. The dotnet restore for the ""hello world"" minimal example required about a hundred NuGet packages, where 99% were presumably irrelevant to the ""hello world"" app. Granted, a .net native build will remove all that is not needed - but I expected that the restore also would have grabbed very little (three or four packages, not a hundred). Why this behavior?
    4. -
    5. I created a second ""hello world"" project and again ran dotnet restore. This time no packages were installed at all. It seems all the packages installed the first time-around went into some global location to be shared. I thought .Net Core didn't work that way. I thought .Net Core projects kept all their dependencies locally. The only framework I targeted was dnxcore50. Why this behavior?
    6. -
    7. I would like to ""uninstall"" all these global packages, and try again (just for learning purposes). How might that be accomplished? Remember, as stated in question #1, I don't know where all those files were installed.
    8. -
    9. Almost all of the packages installed via the restore command were listed as beta. Odd. I thought .Net Core was in RC1, not beta. Confused by this. Why this behavior?
    10. -
    - -

    I'm also curious of what documentation could/would have explained all this to me. I tried googling for each of these questions, and found nothing (perhaps just horrible google-fu?).

    -",HQ -"

    I want to be able to save the output in PNG and have installed Graphviz. Still it complains saying Graphviz is not installed:

    - -
    -

    The output format 'output.png' is currently not available. Please - install 'Graphviz' to have other output formats than 'dot' or 'vcg'.

    -
    -",HQ -"

    I am trying to push android project to private empty repo with android studio . But I cannot find simple solution. How can I do this ?

    -",HQ -"

    I run into some problems with the android permissions. The problem is that onResume get called every time onRequestPermissionsResult has been called even if the user already said ""Never ask again"".

    - -

    An example:

    - -
      @Override
    -  public void onResume() {
    -    super.onResume();
    -    startLocationProvider();
    -  }
    -
    -  private void startLocationProvider() {
    -    if ( !locationService.requestLocationPermission( this, 0 ) ) {
    -      return;
    -    }
    -
    -  @Override
    -  public void onRequestPermissionsResult( int requestCode, String[] permissions, int[] grantResults ) {
    -    if ( requestCode == 0 ) {
    -      if ( grantResults.length == 1 && grantResults[ 0 ] == PackageManager.PERMISSION_GRANTED ) {
    -        startLocationProvider();
    -      }
    -    }
    -
    - -

    It works fine until the user select ""Never ask again"" and deny. I don't know why onResume is called again and again although no dialog is shown to the user.

    -",HQ -"

    So i was given this question. Consider the Stack and the Queue class with standard set of operations. Using the Stack and Queue class, what items are contained in them just before the mysteryFunction is called AND just after the mysteryFunction is called?

    - -

    Here is the code:

    - -
    def mysteryFunction(s, q):
    -    q.enqueue('csc148')
    -    q.enqueue(True)
    -    q.enqueue(q.front())
    -    q.enqueue('abstract data type')
    -
    -    for i in range(q.size()):
    -        s.push(q.dequeue())
    -
    -    while not s.is_empty():
    -        q.enqueue(s.pop())
    -
    -
    -if __name__ == '__main__':
    -    s=Stack()
    -    q=Queue()
    -
    -#About to call mysteryFunction
    -#What are contents of s and q at this point?
    -    mysteryFunction(s, q)
    -#mysteryFunction has been called.
    -#What are contents of s and q at this point?
    -
    - -

    I'm having trouble understanding object oriented programming as i'm new to this topic. Is there any link that breaks down Stacks and Queues and what they do?

    -",HQ -"

    For the moment part, i would like to exclude null values from my api response, so in my startup.cs file, i have this.

    - -
    services.AddMvc()
    -    .AddJsonOptions(options =>
    -    {
    -        // Setup json serializer
    -        options.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();
    -        options.SerializerSettings.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore;
    -    });
    -
    - -

    But is it possible to state that on 1 or more controllers, i actually want to include NULL values??

    -",HQ -"

    I have an array of Thing objects that I want to convert to ConvertedThing objects, using an asynchronous function that returns Observable<ConvertedThing>.

    - -

    I'd like to create an Observable<[ConvertedThing]> that emits one value when all the conversions have completed.

    - -

    How can this be accomplished? Any help much appreciated!

    -",HQ -"

    I'm quite new to C# and Xamarin and have been trying to implement a bottom sheet element and don't know how to correctly do it. I am using Cocosw.BottomSheet-Xamarin.Android library.

    - -

    Here is my code:

    - -
    Cocosw.BottomSheetActions.BottomSheet.Builder b = new Cocosw.BottomSheetActions.BottomSheet.Builder (this);
    -b.Title (""New"");
    -b.Sheet (Resource.Layout.menu_bottom_sheet)
    -
    - -

    Now i think i should use b.Listener(...), but it requires an interface IDialogInterfaceOnClickListener as a paramater and i don't know how to do it in C# correctly.

    - -

    In Java i could write

    - -
    button.setOnClickListener(new View.OnClickListener() {
    -    public void onClick(View v) {
    -        // Perform action on click
    -    }
    -});
    -
    - -

    I tried doing this:

    - -
    class BottomSheetActions : IDialogInterfaceOnClickListener {
    -    public void OnClick (IDialogInterface dialog, int which) {
    -        Console.WriteLine (""Hello fox"");
    -    }
    -
    -    public IntPtr Handle { get; }
    -
    -    public void Dispose() {
    -
    -    }
    -}
    -
    - -

    and then this:

    - -
    b.Listener (new BottomSheetActions());
    -
    - -

    But it didnt work.

    -",HQ -"

    Let's say I have this object (or an array of these objects):

    - -
    var person = {
    -    birth: {
    -        place: {
    -            country: 'USA'
    -        }
    -    }
    -};
    -
    - -

    I thought there was a lodash function where I could pass in 'birth.place.country' and get back the value USA.

    - -

    Is there such a function in lodasdh 3.x, or am I Imagining this?

    -",HQ -"

    I'm creating a Q&A where each question is a card. The answer starts showing the first line, but when its clicked it should expanded to show the full answer.

    - -

    When an answer is expanded/collapsed the rest of the RecyclerView should animate to make room for the expansion or collapse to avoid showing a blank space.

    - -

    I watched the talk on RecyclerView animations, and believe I want a custom ItemAnimator, where I override animateChange. At that point I should create an ObjectAnimator to animate the height of the View's LayoutParams. Unfortunately I'm having a hard time tying it all together. I also return true when overriding canReuseUpdatedViewHolder, so we reuse the same viewholder.

    - -
    @Override
    -public boolean canReuseUpdatedViewHolder(RecyclerView.ViewHolder viewHolder) {
    -    return true;
    -}
    -
    -
    -@Override
    -public boolean animateChange(@NonNull RecyclerView.ViewHolder oldHolder,
    -                             @NonNull final RecyclerView.ViewHolder newHolder,
    -                             @NonNull ItemHolderInfo preInfo,
    -                             @NonNull ItemHolderInfo postInfo) {
    -    Log.d(""test"", ""Run custom animation."");
    -
    -    final ColorsAdapter.ColorViewHolder holder = (ColorsAdapter.ColorViewHolder) newHolder;
    -
    -    FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) holder.tvColor.getLayoutParams();
    -    ObjectAnimator halfSize = ObjectAnimator.ofInt(holder.tvColor.getLayoutParams(), ""height"", params.height, 0);
    -    halfSize.start();
    -    return super.animateChange(oldHolder, newHolder, preInfo, postInfo);
    -}
    -
    - -

    Right now I'm just trying to get something to animate, but nothing happens... Any ideas?

    -",HQ -"

    I'm using Spring boot + Jersey + Spring security, I want to have public and private endpoints, I want an schema as follow:

    - -
      -
    • /rest -- My root context
    • -
    • /public -- I want to place my public endpoints in this context, It must be inside of the root context like /rest/public/pings
    • -
    • /private -- I want to place my private endpoints in this context, It must be inside of the root context like /rest/private/accounts
    • -
    - -

    I have my configuration as follow:

    - -

    Jersey configuration:

    - -
    @Configuration
    -@ApplicationPath(""/rest"")
    -public class RestConfig extends ResourceConfig {
    -    public RestConfig() {
    -        register(SampleResource.class);
    -    }
    -}
    -
    - -

    Spring security configuration:

    - -
    @Configuration
    -public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
    -
    -........
    -
    -    protected void configure(HttpSecurity http) throws Exception {
    -        http.authorizeRequests().antMatchers(""/rest/public/**"").permitAll();
    -        http.antMatcher(""/rest/**"").authorizeRequests().anyRequest().fullyAuthenticated().and().httpBasic();
    -        http.csrf().disable();
    -    }
    -
    -}
    -
    - -

    The question is how can I register two application paths inside of my /rest context, one for /public and the other one for /private ?

    - -

    NOTE: I tried to create another ResourceConfig as follow:

    - -
    @Configuration
    -@ApplicationPath(""/rest/public"")
    -public class RestPublicConfig extends ResourceConfig{
    -    public RestPublicConfig() {
    -        register(PingResource.class);
    -    }
    -}
    -
    - -

    But I'm getting the next error:

    - -
     No qualifying bean of type [org.glassfish.jersey.server.ResourceConfig] is defined: expected single matching bean but found 2: restConfig,restPublicConfig
    -
    - -

    Thanks for your help :)

    -",HQ -"on this line of code i get this error - if diceRoll == userGuessTextField.text { - -2016-02-04 18:38:34.756 How Many Fingers[2972:158461] Can't find keyplane that supports type 4 for keyboard iPhone-PortraitChoco-NumberPad; using 1336863583_PortraitChoco_iPhone-Simple-Pad_Default -fatal error: unexpectedly found nil while unwrapping an Optional value -(lldb) - -import UIKit - -class ViewController: UIViewController { - - @IBOutlet var userGuessTextField: UITextField! - - @IBOutlet var resultLabel: UILabel! - - @IBAction func guess(sender: AnyObject) { - - let diceRoll = String(arc4random_uniform(6)) - - - if diceRoll == userGuessTextField.text { - - - resultLabel.text = ""You're right!"" - } - else { - - resultLabel.text = ""Wrong! It was a "" + diceRoll - } - } - - - override func viewDidLoad() { - super.viewDidLoad() - // Do any additional setup after loading the view, typically from a nib. - } - - override func didReceiveMemoryWarning() { - super.didReceiveMemoryWarning() - // Dispose of any resources that can be recreated. - }[enter image description here][1] - - - [1]: http://i.stack.imgur.com/Y8slL.png",LQ -"

    I am a mathematician. Recently, I became the editor of the puzzles and problems column for a well-known magazine. Occasionally, I need to create a figure to accompany a problem or solution. These figures mostly relate to 2D (occasionally, 3D) euclidean geometry (lines, polygons, circles, plus the occasional ellipse or other conic section). The goal is obtaining figures of very high quality (press-ready), with Computer Modern (""TeX"") textual labels. My hope is finding (or perhaps helping write!) a relatively high-level Python library that ""knows"" euclidean geometry in the sense that natural operations (e.g., drawing a perpendicular line to a given one passing through a given point, bisecting a given angle, or reflecting a figure A on a line L to obtain a new figure A') are already defined in the library. Of course, the ability to create figures after their elements are defined is a crucial goal (e.g., as Encapsulated Postscript).

    - -

    I know multiple sub-optimal solutions to this problem (some partial), but I don't know of any that is both simple and flexible. Let me explain:

    - -
      -
    • Asymptote (similar to/based on Metapost) allows creating extremely high-quality figures of great complexity, but knows almost nothing about geometric constructions (it is a rather low-level language) and thus any nontrivial construction requires quite a long script.
    • -
    • TikZ with package tkz-euclide is high-level, flexible and also generates quality figures, but its syntax is so heavy that I just cry for Python's simplicity in comparison. (Some programs actually export to TikZ---see below.)
    • -
    • Dynamic Geometry programs, of which I'm most familiar with Geogebra, often have figure-exporting features (EPS, TikZ, etc.), but are meant to be used interactively. Sometimes, what one needs is a figure based on hard specs (e.g., exact side lengths)---defining objects in a script is ultimately more flexible (if correspondingly less convenient).
    • -
    • Two programs, Eukleides and GCLC, are closest to what I'm looking for: They generate figures (EPS format; GCLC also exports to TikZ). Eukleides has the prettiest, simplest syntax of all the options (see the examples), but it happens to be written in C (with source available, though I'm not sure about the license), rather limited/non-customizable, and no longer maintained. GCLC is still maintained but it is closed-source, its syntax is significantly worse than Eukleides's, and has certain other unnatural quirks. Besides, it is not available for Mac OS (my laptop is a Mac).
    • -
    - -

    Python has:

    - -
      -
    • Matplotlib, which produces extremely high-quality figures (particularly of functions or numerical data), but does not seem to know about geometric constructions, and
    • -
    • Sympy has a geometry module which does know about geometric objects and constructions, all accessible in delightful Python syntax, but seems to have no figure-exporting (or even displaying?) capabilities.
    • -
    - -

    Finally, a question: Is there a library, something like ""Figures for Sympy/geometry"", that uses Python syntax to describe geometric objects and constructions, allowing to generate high-quality figures (primarily for printing, say EPS)?

    - -

    If a library with such functionality does not exist, I would consider helping to write one (perhaps an extension to Sympy?). I will appreciate pointers.

    -",HQ -"I am a beginner coder in C. - -I have the following code: - - int main() - - { - - struct* Array[malloc(10*sizeOf(struct)]; - - /*I then fill the struct. (int num,float points)*/ - - /*I then want to pass this array that I've filled up to a sortList function, which then outputs the sorted array back to main().*/ - - /*Then I want to output the array as: ""number, points""*/ - - } - - struct struct - { - int number; - float points; - } - - -My question is, how would I pass the array and then back? Any links or suggestions are greatly helpful, thanks!",LQ -"

    Anyone know why you cannot use Greenshot in Visual Studio? I hit the Screen Print button and it does not bring up the cross-hairs to drag my window size. Instead it just takes a plain windows screenshot. I looked for keyboard commands that might override it but didnt see anything at first glance. It works for every other program but not when Visual Studio is the active window.

    -",HQ -"I printed the 2 strings and they are literally identical, no whitespaces cause i replaced it. -https://ideone.com/cw07LG -Here it is compiled - - - - public class Palindrome{ - public static boolean isPalindrome(String word){ - int length; - String oppositeWord =""""; - word = word.replace("" "",""""); - word = word.toLowerCase(); - length = word.length(); - - for(int i=length-1;i>=0;i--){ - if(Character.isLetter(word.charAt(i))){ - oppositeWord +=word.charAt(i); - }else{ - word = word.replace(word.charAt(i),'\0'); - } - - } - System.out.println(oppositeWord); - System.out.println(word); - - return oppositeWord.equals(word); - - } - - public static void main(String[]args){ - System.out.println(isPalindrome(""Madam, I'm Adam"")); - } - }",LQ -"

    I have a rails app running in a docker container in development environment.

    - -

    When I try to debug it with placing binding.pry somewhere in the code and attaching to the container I can see the pry prompt in the output but it doesn't pause on it and I can't interact with it like it was without docker container.

    - -

    So how do I debug a containerized app?

    -",HQ -"

    Without using Heapster is there any way to collect like CPU or Disk metrics about a node within a Kubernetes cluster?

    - -

    How does Heapster even collect those metrics in the first place?

    -",HQ -"

    What does the number mean in read and why does it increment from 1 to 2? It looks similar to firebugs error count, but there are no errors here.

    - -

    -",HQ -"The Ball only goes of to right -Dependencies Std.java -a marble picture -and a background arena image -thank you for the help -I believe the issue to be in the transition from The LR method to the main game loop method i created a variable and it takes the LR method and runs it it is inside the loop that refreshes and clears the canvas as a frame every second The question maker requires more explanination so im going to fill the rest with random lorem ipsum jfkadhfkjhfljkashfjkdhsfjdhsfljkdhsafjlhdjkfhdsjkfhdjaskfhkjahfljhdkfjhdaslfjkhdfkjdhsfkjdsflh - - package cats; - - public class BeanDrop { - - public static void main(String[] args) throws InterruptedException { - mainGameLoop(); - } - public static void mainGameLoop() throws InterruptedException{ - double x = .5; - double y = .9; - while (true){ - int choice = LR(); - arena(); - ball(x , y); - if (choice == 1){ - // right outcome - x = x + .1; - } - else if(choice == 2){ - //left outcome - x = x -.1; - } - y = y - .1; - Thread.sleep(1000); - StdDraw.clear(); - } - } - public static void arena(){ - StdDraw.picture(.5, .5, ""balldrop.jpeg""); - } - - private static int LR(){ - int choice = ((int) Math.random() * 2 + 1); - return choice; - } - public static void ball(double x , double y){ - StdDraw.picture(x, y, ""ball.jpeg"",.05,.05); - } - }",LQ -"

    I'd like to have intellisense for bootstrap specifically but even for the css styles I write in my project. I've got references in a project.json and a bower.json but they do not seem to be making the references available.

    -",HQ -"

    I am using Quartz Scheduler to run my jobs. I want to run my job every thirty seconds. What will be my cron expression for that?

    - -

    For every one minute, I am using below cron expression:

    - -
    <cron-expression>0 0/1 * 1/1 * ? *</cron-expression>
    -
    - -

    What it will be for every thirty seconds?

    -",HQ -"I've been looking for an object mapper that can use XPath to map variables from one object or an XML web service response to another object. Most preferred approach is through annotations. - -The closest I've found is MOXy (https://www.eclipse.org/eclipselink/documentation/2.4/moxy/advanced_concepts005.htm). Here's an example: - - @XmlPath(""node[@name='first-name']/text()"") - private String firstName; - -However it doesn't support the xpath 'parent' (http://stackoverflow.com/questions/8404134/eclipselink-moxy-xmlpath-support-for-axes-parent/8405140#8405140) or 'child'(http://stackoverflow.com/questions/9582249/eclipselink-moxy-xpath-selecting-all-child-elements-of-the-current-node-or-all) checks. - -ie: this is an example of what I want to be able to do: - -XML: - - - - Code - abc - - - Name - cde - - ... - - -Java - - @XmlPath(""Customer/Field[child::Type='Code']/Value/text()"") - private String CustomerCode; - - -Does anyone know of alternatives to MOXy that offers xpath support for parent/child checks, or a work around to MOXy for parent/child checks? -",LQ -"

    What happened to pluck() in lodash version 4? What is a suitable replacement?

    - -

    This syntax _.pluck(users, 'firstName'); is simple to me. Seems that _.map(users, function(user) { return user.firstName; } would do the trick but it's not nearly as neat.

    -",HQ -"

    I have a video that the client wants to sit ""seamlessly"" in the website. The background HEX color of the video matches the HEX background color of the website, and renders as such in some browsers, some versions, some of the time?

    - -

    What is most curious is Chrome renders the background of the video differently, until you open the color picker. Then they suddenly match. To be clear, it only fixes it once I open the color picker, not the debugger (read: this not a repainting issue).

    - -

    Firefox renders differently when I first navigate to the site, but if I hit cmd+r, it becomes perfectly seamless.

    - -

    Take a look at the screenshots - they say more than I can with words.

    - -

    I'm in the process of convincing the client to change to white background for the video as that will certainly ""fix"" it, but I'm super curious as to what /why this is happening.

    - -

    Any insights from you wizards out there?

    - -
    - -

    Codepen: http://codepen.io/anon/pen/zrJVpX

    - -
    <div class=""background"" style=""background-color: #e1dcd8; width: 100%; height: 100%;"">
    -<div class=""video-container"">
    -    <video id=""video"" poster="""" width=""90%"" height=""auto"" preload="""" controls style=""margin-left: 5%; margin-top: 5%;"">
    -      <source id=""mp4"" src=""http://bigtomorrowdev.wpengine.com/wp-content/themes/bigtomorrow/images/videos/bt-process.mp4"" type=""video/mp4"">
    -      <source id=""webm"" src=""http://bigtomorrowdev.wpengine.com/wp-content/themes/bigtomorrow/images/videos/bt-process.webm"" type=""video/webm"">
    -      <source id=""ogg"" src=""http://bigtomorrowdev.wpengine.com/wp-content/themes/bigtomorrow/images/videos/bt-process.ogv"" type=""video/ogg"">
    -      We're sorry. This video is unable to be played on your browser.
    -      </video>
    -    </div>
    -</div>
    -
    - -

    -",HQ -"

    I'm trying to generate a list quickly with content from two different arrays of size n and n/2. As an example:

    - -
    A = [70, 60, 50, 40, 30, 20, 10, 0]
    -B = [1, 2, 3, 4]
    -
    - -

    I wish to generate something like

    - -
    [(A[x], B[y]) for x in range(len(A)) for y in range(len(B))]
    -
    - -

    I understand the second for statement is the nested for loop after the ""x"" one. I'm trying to get the contents of the new array to be

    - -
    A[0], B[0]
    -A[1], B[1]
    -A[2], B[2]
    -A[3], B[3]
    -A[4], B[0]
    -A[5], B[1]
    -A[6], B[2]
    -A[7], B[3]
    -
    - -

    Could anyone point me in the right direction?

    -",HQ -"i want to input a string=""abcde12345ABCDE"" using scanner and then generate the random number of length 4 but at 1st place it should be character 2nd place it should be number 3place it should be number and at 4th place it should se character..... at last i want to match the generated number... - say: - -Input -String=""abcde12345ABCDE""; - -\\Processing.... -Output - -A25b \*generated no. 1.charater 2.number 3.number & 4.character.*/ - -Plz enter the generated no.!! -A25b",LQ -"how to delete a file with batch/command line you don't know it's location ""text.txt"" for example ",LQ -"

    I'm new to Lumen and want to create an app with this framework. Now I have the problem that if some user enters a wrong url => http://www.example.com/abuot (wrong) => http://www.example.com/about (right), I want to present a custom error page and it would be ideal happen within the middleware level.

    - -

    Furthermore, I am able to check if the current url is valid or not, but I am not sure how can I ""make"" the view within the middleware, the response()->view() won't work.

    - -

    Would be awesome if somebody can help.

    -",HQ -"I am trying to understand how recursive works. Below is a code of If-else block. - - public class Test { - - public void test(int count){ - if(count ==1){ - - System.out.println(""Inside IF""); - - } - - else{ - System.out.println(""Inside Else""); - test(--count); - System.out.println(""TEST""); - - } - } - - - public static void main(String[] args) { - - Test t = new Test(); - t.test(5); - } - - - } -The Output for the above code is - -Inside Else -Inside Else -Inside Else -Inside Else -Inside IF -TEST -TEST -TEST -TEST - -Could someone please help me understand why the TEST has been printed 4 times. - -Thanks - ",LQ -"

    i have UITableViewController, and I'm trying to set a image background. -the issue is the background image does not fit the whole screen, in other words, the image background does not stretch with the table cells. -this my code

    - -
        let imgView =  UIImageView(frame: self.tableView.frame)
    -    let img = UIImage(named: ""b2"")
    -    imgView.image = img
    -    imgView.frame = CGRectMake(0, 0, self.tableView.frame.width, self.tableView.frame.height)
    -    imgView.contentMode = UIViewContentMode.ScaleAspectFill
    -    self.tableView.addSubview(imgView)
    -    self.tableView.sendSubviewToBack(imgView)
    -
    - -

    -",HQ -"I Want to Remove Specific Cache Value From Particular Cache. - -e.g - - Cache.Insert(""TestCacheKey"", ""111"", null, DateTime.Now.AddSeconds(60), Cache.NoSlidingExpiration, CacheItemPriority.High,null); - Cache.Insert(""TestCacheKey"", ""222"", null, DateTime.Now.AddSeconds(60), Cache.NoSlidingExpiration, CacheItemPriority.High, null); - Cache.Insert(""TestCacheKey"", ""333"", null, DateTime.Now.AddSeconds(60), Cache.NoSlidingExpiration, CacheItemPriority.High, null); - -So, i have some data added in cache key i.e ""TestCacheKey"". Now, i want to delete specific value i.e ""111"" from that key i.e ""TestCacheKey"". - -After Delete Specific value and when i retrieve that cache i just get only two records i.e ""222"" & ""333"" value - -So, how can i achieve this to delete specific value from cache. - -Help Please -",LQ -"

    One way to add custom ApplicationContextInitializer to spring web application is to add it in the web.xml file as shown below.

    - -
    <context-param>
    -    <param-name>contextInitializerClasses</param-name>
    -    <param-value>somepackage.CustomApplicationContextInitializer</param-value>
    -</context-param>
    -<listener>
    -    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    -</listener>
    -
    - -

    But since I am using spring boot, is there any way I don't have to create web.xml just to add CustomApplicationContextInitializer?

    -",HQ -"Embedded device will send data through ble. I developed android application to receive data, but my problem is 1. When device connects to mobile ble immediately it will send data but I am not able to read data, if I give delay app starts reading characteristics but not collecting data. 2. so When device ble connects to mobile ble how many milliseconds it will take to show the services. so I can match delay and receive data.",LQ -"

    Is there a way to pass arguments inside of the package.json command?

    - -

    My script:

    - -
    ""scripts"": {
    -  ""test"": ""node mytest.js $1 $2 | node_modules/tap-difflet/bin/tap-difflet""
    -}
    -
    - -

    cli npm run test 8080 production

    - -

    Then on mytest.js I'd like to get the arguments with process.argv

    -",HQ -"I'm creating and deleting same folder continuously as a requirement. mkdir() creating some times correctly but some times creating operation failed file and mkdir() returns false. I have searched i got solution like change directory name before deleting,but I'm not deleting directory through android code .deleting is done by windows side.So, please any help.. - - File file = new File(Environment.getExternalStorageDirectory() + File.separator + ""eTestifyData"" + File.separator + orgId + File.separator + - providerId + File.separator + datewise + File.separator + encounterId); - if (file.exists()) { - write(file, file.getAbsolutePath(), jsonData); - } else { - if (file.mkdirs()) { - write(file, file.getAbsolutePath(), jsonData); - } - } ",LQ -"

    I am trying to move a UIView on slide up gesture from its initial position to a fixed final position. The image should move with the hand gesture, and not animate independently.

    - -

    I haven't tried anything as I have no clue where to start, which gesture class to use.

    - -

    -",HQ -"How can I get $the variable **$text** -See the code example below - - TestText'; - ?> - body { - background-color: ; - } - #logo::before{content: """";} - #logo { - color: ; - font-weight: bold; - } - #slogan { - color: ; - } - #rahmen { - border: 0.1em solid ; - text-align: center; - } - - -as HTML-tag.. - -In the moment i get The Output: - - - - [1]: http://i.stack.imgur.com/HVREJ.jpg",LQ -"

    I have a really simple controller defined in this way:

    - -
    @RequestMapping(value = ""/api/test"", method = RequestMethod.GET, produces = ""application/json"")
    -public @ResponseBody Object getObject(HttpServletRequest req, HttpServletResponse res) {
    -    Object userId = req.getAttribute(""userId"");
    -    if (userId == null){
    -        res.setStatus(HttpStatus.BAD_REQUEST.value());
    -    }
    -    [....]
    -}
    -
    - -

    I tried to call using MockMvc in many different way but, I'm not able to provide the attribute ""userId"".

    - -

    For instance, with this it doesn't work:

    - -
    MockHttpSession mockHttpSession = new MockHttpSession(); 
    -mockHttpSession.setAttribute(""userId"", ""TESTUSER"");             
    -mockMvc.perform(get(""/api/test"").session(mockHttpSession)).andExpect(status().is(200)).andReturn(); 
    -
    - -

    I also tried this, but without success:

    - -
    MvcResult result = mockMvc.perform(get(""/api/test"").with(new RequestPostProcessor() {
    -     public MockHttpServletRequest postProcessRequest(MockHttpServletRequest request) {
    -           request.setParameter(""userId"", ""testUserId"");
    -           request.setRemoteUser(""TESTUSER"");
    -           return request;
    -     }
    -})).andExpect(status().is(200)).andReturn(); 
    -
    - -

    In this case, I can set the RemoteUser but never the Attributes map on HttpServletRequest.

    - -

    Any clue?

    -",HQ -"

    This question is asked several times, but I can't find the right solution for my problem. I'm trying to import my Player.swift class in my MainScene.swift (I've used Cocos2D - SpriteBuilder to setup the project; Now using Xcode).

    - -

    This is my folder structure:

    - -

    - -

    I've tried to use import Player; and import Player.swift;, but when I tried I got this error: No such module 'Player.swift'

    - -

    How do I import it correctly?

    - -

    Thanks!

    - -

    By the way, I'm a beginner in Swift, so don't expect that I know all of the terms

    -",HQ -"

    Description of my core data model:

    - -
      -
    • Project and Issues entities
    • -
    • Project has an ordered one-to-many relationship to Issues named issues
    • -
    • Issue has one-to-one relationship with Project named parentProject
    • -
    - -

    Here is my code to obtain issues:

    - -
    let fetchRequest = NSFetchRequest(entityName: ""Issue"")
    -    fetchRequest.predicate = NSPredicate(format: ""parentProject CONTAINS[cd] %@"", argumentArray: [project])
    -    fetchRequest.sortDescriptors = [NSSortDescriptor(key: ""name"", ascending: true)]
    -
    -    let frc = NSFetchedResultsController(
    -        fetchRequest: fetchRequest,
    -        managedObjectContext: dataManager.context,
    -        sectionNameKeyPath: nil,
    -        cacheName: nil)
    -
    -    return arc
    -
    - -

    Even though I have all issues from the project object, I prefer to obtain issues using fetched results controller, so they will always be updated and I like the integration with tables. I also like that in navigation controller screen before the projects are displayed using FRC as well.

    - -

    As you see in the code the Issues are sorted by the name parameter.

    - -

    However I'd like them to be sorted by the order I keep them in the NSMutableOrderedSet of project.

    - -

    AFAIK I cannot use NSSortDescriptor with comparator/selector when it's used to Core Data.

    - -

    Do you know how to do it? Thanks in advance.

    -",HQ -"

    For instance, RESTEasy's ResteasyWebTarget class has a method proxy(Class<T> clazz), just like Injector's getInstance(Class<T> clazz). Is there a way to tell Guice that creation of some classes should be delegated to some instance?

    - -

    My goal is the following behavior of Guice: when the injector is asked for a new instance of class A, try to instantiate it; if instantiation is impossible, ask another object (e. g. ResteasyWebTarget instance) to instantiate the class.

    - -

    I'd like to write a module like this:

    - -
    @Override
    -protected void configure() {
    -    String apiUrl = ""https://api.example.com"";
    -    Client client = new ResteasyClientBuilder().build();
    -    target = (ResteasyWebTarget) client.target(apiUrl);
    -
    -    onFailureToInstantiateClass(Matchers.annotatedWith(@Path.class)).delegateTo(target);
    -}
    -
    - -

    instead of

    - -
    @Override
    -protected void configure() {
    -    String apiUrl = ""https://api.example.com"";
    -    Client client = new ResteasyClientBuilder().build();
    -    target = (ResteasyWebTarget) client.target(apiUrl);
    -
    -    bind(Service1.class).toProvider(() -> target.proxy(Service1.class);
    -    bind(Service2.class).toProvider(() -> target.proxy(Service2.class);
    -    bind(Service3.class).toProvider(() -> target.proxy(Service3.class);
    -}
    -
    - -

    I've thought about implementing Injector interface and use that implementation as a child injector, but the interface has too much methods.

    - -

    I can write a method enumerating all annotated interfaces in some package and telling Guice to use provider for them, but that's the backup approach.

    -",HQ -"

    I have a rather huge recursive function (also, I write in C), and while I have no doubt that the scenario where stack overflow happens is extremely unlikely, it is still possible. What I wonder is whether you can detect if stack is going to get overflown within a few iterations, so you can do an emergency stop without crashing the program.

    -",HQ -"

    I'm trying to bootstrap a web app using TypeScript and jspm & system.js for module loading. I'm not getting very far. After installing jspm, and using it to install jQuery:

    - -
    jspm install jquery
    -
    - -

    And the basics:

    - -
    <script src=""jspm_packages/system.js""></script>
    -<script src=""config.js""></script>
    -<script>
    -        System.import('main');
    -</script>
    -
    - -

    main.ts:

    - -
    import $ from ""jquery"";
    -
    -export class Application  {
    -    constructor() {
    -        console.log($);
    -    }
    -}
    -
    - -

    The TypeScript won't compile because ""Module 'jquery' has no default export.

    - -

    The generated config.js has the correct mapping: ""jquery"": ""npm:jquery@2.2.0""

    -",HQ -"

    My Laravel application needs to manipulate files present in multiple buckets simultaneously into a single session. So, I couldn't find a way to change several times the current bucket, since my .env file is like this:

    - -
    S3_KEY='MY-KEY'
    -S3_SECRET='MySeCret'
    -S3_REGION='us-east-1'
    -S3_BUCKET='my-first-used-bucket'
    -
    - -

    I found somewhere that I could do this:

    - -
    Config::set('filesystems.disks.s3.bucket', 'another-bucket');
    -
    - -

    but It works only once. What I need is something like:

    - -
    Storage::disk('s3')->put('/bucket-name/path/filename.jpg', $file, 'public');
    -
    - -

    Where /bucket-name/ could be any bucket that I already create. What can I do? Thanks a lot!

    -",HQ -"I want to find if the document(which is a html file) has ""some"" tag if so, i want to get all its attributes. - -i tried with - - var data = require('test.html'); - if(data.toLowerCase().indexOf('sometag')){ - console.log('yeaaah it exist'); - } - -The problem is it always returns ""true"" whether the tag exists or not. - - - - - - - - -",LQ -"I am trying to run a powershell command to get the total disk space of all drives for all our Remote servers, when I run the command I am getting the following error, I have a text file which has names of the servers and I have also confirmed that WinRM is configured and is running can someone help thanks this is my PS command and error - -PS C:\WINDOWS\system32> $Servers = Get-Content ""C:\users\anorris\desktop\DR\servers1.txt"" -Foreach ($s in $Servers) -{Invoke-Command -ComputerName $s {Get-PSDrive}} -[ahv-a2acortst02] Connecting to remote server failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic. - + CategoryInfo : OpenError: (:) [], PSRemotingTransportException - + FullyQualifiedErrorId : PSSessionStateBroken -",LQ -"

    I'm trying to implement a debounce function that works with a promise in javascript. That way, each caller can consume the result of the ""debounced"" function using a Promise. Here is the best I have been able to come up with so far:

    - -
    function debounce(inner, ms = 0) {
    -  let timer = null;
    -  let promise = null;
    -  const events = new EventEmitter();  // do I really need this?
    -
    -  return function (...args) {
    -    if (timer == null) {
    -      promise = new Promise(resolve => {
    -        events.once('done', resolve);
    -      });
    -    } else {
    -      clearTimeout(timer);
    -    }
    -
    -    timer = setTimeout(() => {
    -      events.emit('done', inner(...args));
    -      timer = null;
    -    }, ms);
    -
    -    return promise;
    -  };
    -}
    -
    - -

    Ideally, I would like to implement this utility function without introducing a dependency on EventEmitter (or implementing my own basic version of EventEmitter), but I can't think of a way to do it. Any thoughts?

    -",HQ -"I have string of integers from input text box ( in r shiny) like this : -input[[""var1""]] -""1,2,3,4"" -I want to convert it into a numeric vector like below: -values <- c(1,2,3,4) - -Any help would be highly appreciated. - -Thanks, -Ravijeet -",LQ -"

    In the application I'm working on I'm trying to share access tokens within a company. Example: a local office can use the headquarter's tokens to post something on their Facebook page.

    - -
    class AccessToken(models.Model):
    -    """"""Abstract class for Access tokens.""""""
    -    owner = models.ForeignKey('publish.Publisher')
    -    socialMediaChannel = models.IntegerField(
    -        choices=socialMediaChannelList, null=False, blank=False
    -    )
    -    lastUpdate = models.DateField(auto_now=True)
    -
    -    class Meta:
    -        abstract = True
    -
    - -

    Since Facebook, Twitter and other social media sites handle access tokens in their own way I made and abstract class AccessToken. Each site gets its own class e.g.

    - -
    class FacebookAccessToken(AccessToken):
    -    # class stuff
    -
    - -

    After doing some reading I found out that I must use a GenericForeignKey to point to classes that inherit AccessToken. I made the following class:

    - -
    class ShareAccessToken(models.Model):
    -    """"""Share access tokens with other publishers.""""""
    -    sharedWith = models.ForeignKey('publish.Publisher')
    -    sharedBy = models.ForeignKey(User)
    -
    -    # for foreignkey to abstract model's children
    -    contentType = models.ForeignKey(ContentType)
    -    objectId = models.PositiveIntegerField()
    -    contentObject = GenericForeignKey('contentType', 'objectId')
    -
    -    class Meta:
    -        unique_together = (('contentObject', 'sharedWith'))
    -
    - -

    When I run the django test server I get the following error:

    - -
    -

    core.ShareAccessToken: (models.E016) 'unique_together' refers to field - 'contentObject' which is not local to model 'ShareAccessToken'. HINT: - This issue may be caused by multi-table inheritance.

    -
    - -

    I don't understand why I get this error, first time using GenericForeignKey. What am I doing wrong?

    - -

    If there is a smarter way to share the access tokens I would love to hear about it.

    -",HQ -"

    I have a significant library of classes written in C++. I'm trying to make use of them through some type of bridge within Swift rather than rewrite them as Swift code. The primary motivation is that the C++ code represents a core library that is used on multiple platforms. Effectively, I'm just creating a Swift based UI to allow the core functionality to work under OS X.

    - -

    There are other questions asking, ""How do I call a C++ function from Swift."" This is not my question. To bridge to a C++ function, the following works fine:

    - -

    Define a bridging header through ""C""

    - -
    #ifndef ImageReader_hpp
    -#define ImageReader_hpp
    -
    -#ifdef __cplusplus
    -extern ""C"" {
    -#endif
    -
    -    const char *hexdump(char *filename);
    -    const char *imageType(char *filename);
    -
    -#ifdef __cplusplus
    -}
    -#endif
    -
    -#endif /* ImageReader_hpp */
    -
    - -

    Swift code can now call functions directly

    - -
    let type = String.fromCString(imageType(filename))
    -let dump = String.fromCString(hexdump(filename))
    -
    - -

    My question is more specific. How can I instantiate and manipulate a C++ Class from within Swift? I can't seem to find anything published on this.

    -",HQ -"

    I'm working on an Android application written in Scala that uses android.support.v7.widget.SearchView inside the action bar that's overridden by android.support.v7.widget.Toolbar.

    - -

    In the app, I need to enable search suggestions for that SearchView. So, every time I detect a query change, I check to see if suggestions need to be updated (code below). If the suggestions need to be updated a call is made to the backend and an android.database.MatrixCursor is created that contains the search suggestions and is set on the SearchViews suggestions adapter (code below).

    - -

    The problem that I'm having with this is that the search hints will not show up when typing a single character. Typing two or more characters in the search box works perfectly.

    - -

    I've tried with android:searchSuggestThreshold set to 0 and 1 in my XML config and I get the same result (like that option being ignored): search hints showing for multiple input characters, but not showing for a single character.

    - -

    Am I missing something in the config/initialisation of the SearchView? Like an option other than android:searchSuggestThreshold which I can set? I've spent the last few hours on looking for alternative options but couldn't find any.

    - -

    A possible solution that I see would be getting the AutoCompleteTextView backing the SearchView's input and setting the threshold for it to 1, but it's an ugly (hack-ish) solution as the AutoCompleteTextView is not exposed by the SearchViews API.

    - -

    Does anyone know an elegant solution for this?

    - -

    Thank you!

    - -

    Detecting search term changes:

    - -
    //this gets called whenever something is changed in the search box. ""s"" contains the entire search term typed in the search box
    -def onQueryTextChange(s: String): Boolean = {
    -  //this checks to see if a call should be made to the backend to update suggestions
    -  SearchSuggestionController.query(s) 
    -  //return false as we're not consuming the event
    -  false
    -}
    -
    - -

    Updating search suggestions:

    - -
    def updateSuggestions(suggestions: Array[String]): Unit = {
    -  val cursor = new MatrixCursor(Array(BaseColumns._ID, SearchManager.SUGGEST_COLUMN_TEXT_1), suggestions.length)
    -  for{
    -    i <- suggestions.indices
    -    s = suggestions(i)
    -  } cursor.addRow(Array[AnyRef](i.toString, s))
    -
    -  getActivity.runOnUiThread(() => {
    -    searchSuggestionAdapter.changeCursor(cursor)
    -    searchSuggestionAdapter.notifyDataSetChanged()
    -  })
    -}
    -
    - -

    Menu SearchView initialization:

    - -
    override def onCreateOptionsMenu(menu: Menu, inflater: MenuInflater) = {
    -    inflater.inflate(R.menu.menu_products, menu)
    -    val searchManager = getActivity.getSystemService(Context.SEARCH_SERVICE).asInstanceOf[SearchManager]
    -    val actionItem = menu.findItem(R.id.action_search)
    -    searchView = MenuItemCompat.getActionView(actionItem).asInstanceOf[SearchView]
    -    searchView.setSearchableInfo(searchManager.getSearchableInfo(getActivity.getComponentName))
    -    searchView.setSubmitButtonEnabled(false)
    -    SearchSuggestionController.onSuggestionsProvided_=(updateSuggestions)
    -    searchView setSuggestionsAdapter searchSuggestionAdapter
    -    searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() { 
    -      //...
    -      //change listener for detecting search changes presented above
    -      //...
    -    }
    -  //...
    -  //initialise other components 
    -  //...
    -}
    -
    - -

    Searchable config:

    - -
    <?xml version=""1.0"" encoding=""utf-8""?>
    -<searchable xmlns:android=""http://schemas.android.com/apk/res/android""
    -    android:label=""@string/app_name""
    -    android:hint=""@string/actionbar_products_search_hint""
    -    android:searchSuggestThreshold=""0""
    -    android:searchSuggestSelection="" ?""/>
    -
    -",HQ -"

    I am using sonarqube 5.3 latest version and when I configure the sonar jdbc properties in my properties file using

    - -
    property ""sonar.jdbc.url"", ""jdbc:mysql://localhost:3306/sonar"")
    -property ""sonar.jdbc.username"", ""root"")
    -property ""sonar.jdbc.password"", ""root"")
    -
    - -

    I get warning message

    - -
    Property 'sonar.jdbc.url' is not supported any more. It will be ignored. There is no longer any DB connection to the SQ database.
    -Property 'sonar.jdbc.username' is not supported any more. It will be ignored. There is no longer any DB connection to the SQ database.
    -Property 'sonar.jdbc.password' is not supported any more. It will be ignored. There is no longer any DB connection to the SQ database.
    -
    - -

    How to configure external database and not use embedded database provided by sonarqube?

    -",HQ -"

    What's the best way to kill a process in Java ?

    - -

    Get the PID and then killing it with Runtime.exec() ?

    - -

    Use destroyForcibly() ?

    - -

    What's the difference between these two methods, and is there any others solutions ?

    -",HQ -"

    I am looking for a python library in which I can feed in my JSON schema and it generates dummy data. I have worked with a similar library in javascript dummy-json. Does anyone about a library which can do the same in python.

    -",HQ -"

    When I try to build a container using docker-compose like so

    - -
    nginx:
    -  build: ./nginx
    -  ports:
    -    - ""5000:80""
    -
    - -

    the COPY instructions isnt working when my Dockerfile simply -looks like this

    - -
    FROM nginx
    -
    -#Expose port 80
    -EXPOSE 80
    -
    -COPY html /usr/share/nginx/test
    -
    -#Start nginx server
    -RUN service nginx restart
    -
    - -

    What could be the problem?

    -",HQ -"I'm trying to create the syntax highlighting for [Flex][1]. I'm using [PackageDev][2] and YAML. - -So, I want find a blocks, starting with `%{` and ending with `%}`, then I need highlight everything inside this block as C++ code. - -I thought about two variants, both of them don't work: - - # ... - # first - - begin: '%\{' - end: '%\}' - contentName: - patterns: - - include: source.c++ # that's doesn't work - - # second - - match: '%\{((?:.|\n)*)%\}' # regexpr works correctly - name: source.c++ - captures: - '1': - - include: source.c++ # that's doesn't work too - - -If someone knows how do that or know some good manual for sublime syntax - say me, please. - [1]: https://www.google.ru/url?sa=t&rct=j&q=&esrc=s&source=web&cd=5&cad=rja&uact=8&ved=0ahUKEwiUuOXZnuHKAhXDNpoKHep-Cs8QFghAMAQ&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FFlex_(lexical_analyser_generator)&usg=AFQjCNFt5KoQZ6HIa9Av-WU07RNLb6lBHw&sig2=jaQkTfZBvGt37rckwYXLGw - [2]: https://packagecontrol.io/packages/PackageDev",LQ -"Consider the graph below that I created with the code further below. I would like to add a legend that might say something like ""median"" and ""90% confidence interval."" I've seen lots of examples of how one can create complex datasets and then use scale properties, but in this case, I'd really hope to just be able to specify the legend directly somehow if possible. - -[![enter image description here][1]][1] - - library(ggplot2) - middle = data.frame(t=c(0,1,2,3),value=c(0,2,4,6)) - ribbon = data.frame(t=c(0,1,2,3),min=c(0,0,0,0),max=c(0,4,8,12)) - g = ggplot() - g = g + geom_line (data=middle,aes(x=t,y=value),color='blue',size=2) - g = g + geom_ribbon(data=ribbon,aes(x=t,ymin=min,ymax=max),alpha=.3,fill='lightblue') - print(g) - - [1]: http://i.stack.imgur.com/2KAV6.png",LQ -"

    Trying to register an ec2 instance in AWS with Ansible's ec2_ami module, and using current date/time as version (we'll end up making a lot of AMIs in the future).

    - -

    This is what I have:

    - -
    - name: Create new AMI
    -  hosts: localhost
    -  connection: local
    -  gather_facts: false
    -  vars:
    -  tasks:
    -    - include_vars: ami_vars.yml
    -    - debug: var=ansible_date_time
    -    - name: Register ec2 instance as AMI
    -      ec2_ami: aws_access_key={{ ec2_access_key }}
    -               aws_secret_key={{ ec2_secret_key }}
    -               instance_id={{ temp_instance.instance_ids[0] }}
    -               region={{ region }}
    -               wait=yes
    -               name={{ ami_name }}
    -      with_items: temp_instance
    -      register: new_ami
    -
    - -

    From ami_vars.yml:

    - -
    ami_version: ""{{ ansible_date_time.iso8601 }}""
    -ami_name: ami_test_{{ ami_version }}
    -
    - -

    When I run the full playbook, I get this error message:

    - -
    fatal: [localhost]: FAILED! => {""failed"": true, ""msg"": ""ERROR! ERROR! ERROR! 'ansible_date_time' is undefined""}
    -
    - -

    However, when run the debug command separately, from a separate playbook, it works fine:

    - -
    - name: Test date-time lookup
    -  hosts: localhost
    -  connection: local
    -  tasks:
    -    - include_vars: ami_vars.yml
    -    - debug: msg=""ami version is {{ ami_version }}""
    -    - debug: msg=""ami name is {{ ami_name }}""
    -
    - -

    Result:

    - -
    TASK [debug] *******************************************************************
    -ok: [localhost] => {
    -    ""msg"": ""ami version is 2016-02-05T19:32:24Z""
    -}
    -
    -TASK [debug] *******************************************************************
    -ok: [localhost] => {
    -    ""msg"": ""ami name is ami_test_2016-02-05T19:32:24Z""
    -}
    -
    - -

    Any idea what's going on?

    -",HQ -"

    So, say I have a dictionary that looks like this:

    - -
    var data : [Float:Float] = [0:0,1:1,2:1.414,3:2.732,4:2,5:5.236,6:3.469,7:2.693,8:5.828,9:3.201]
    -
    - -

    How would I programmatically find the highest value in the dictionary? Is there a ""data.max"" command or something?

    -",HQ -"I am currently struggling with this function in Visual Studio: - - Private Sub dlsuc() - Dim file_ As String = My.Computer.FileSystem.SpecialDirectories.Temp & ""\v.txt"" - Dim file As String = IO.File.ReadAllLines(file_) - End Sub -I can't get this to work, I get something like these error messages: - -> Error 1 Value of type '1-dimensional array of String' cannot be converted to 'String'. -I would really appreciate if someone could help me with this.",LQ -"

    I'm using webpack to run my react frontend successfully using the following config:

    - -
    {
    -    name: 'client',
    -    entry: './scripts/main.js',
    -    output: {
    -        path: __dirname,
    -        filename: 'bundle.js'  
    -    },
    -    module: {
    -        loaders: [
    -            {
    -                test: /.jsx?$/,
    -                loader: 'babel-loader',
    -                exclude: /node_modules/,
    -                query:{
    -                    presets: ['es2015', 'react', 'stage-2']
    -                }
    -            }
    -        ]
    -    }
    -}
    -
    - -

    I'm trying to put up a node.js express backend as well, and would like to run that through webpack as well, so that I have a single server running both the backend and frontend, and because I want to use babel to transpile my javascript.

    - -

    I made a quick testserver looking like this:

    - -
    var express = require('express');
    -console.log('test');
    -
    -var app = express();
    -
    -app.get('/', function(req, res){
    -    res.send(""Hello world from Express!!"");
    -});
    -
    -app.listen(3000, function(){
    -    console.log('Example app listening on port 3000');
    -});
    -
    - -

    If I run this with node index.js and open my browser on localhost:3000 it prints ""Hello world from Express!!"". So far so good. Then I tried creating a web-pack config for it:

    - -
    var fs = require('fs');
    -var nodeModules = {};
    -fs.readdirSync('node_modules')
    -    .filter(function(x) {
    -        return ['.bin'].indexOf(x) === -1;
    -    })
    -    .forEach(function(mod) {
    -        nodeModules[mod] = 'commonjs ' + mod;    
    -});
    -
    -module.exports = [
    -{
    -    name: 'server',
    -    target: 'node',
    -    entry: './index.js',
    -    output: {
    -        path: __dirname,
    -        filename: 'bundle.js'
    -    },
    -    externals: nodeModules,
    -    module: {
    -        loaders: [
    -            { 
    -                test: /\.js$/,
    -                loaders: [
    -                    'babel-loader'
    -                ]
    -            },
    -            {
    -                test:  /\.json$/, 
    -                loader: 'json-loader'
    -            }
    -        ]
    -    }
    -}   
    -
    - -

    When I run the command webpack-dev-server it starts up successfully (it seems). However, if I go to my browser on localhost:3000 now, it just says that the webpage is not available, just as when the server is not running at all.

    - -

    I'm very new to both node and webpack, so either I have made a small mistake somewhere, or I'm way off ;)

    -",HQ -"

    I'm updating a project of mine to use AutoMapper 4.2, and I'm running into breaking changes. While I seem to have resolved said changes, I'm not entirely convinced I've done so in the most appropriate way.

    - -

    In the old code, I have a NinjectConfiguration, and an AutoMapperConfiguration class that are each loaded by WebActivator. In the new version the AutoMapperConfiguration drops out and I instead instance a MapperConfiguration directly in the NinjectConfiguration class where the bindings are happening, like so:

    - -
    private static void RegisterServices(
    -    IKernel kernel) {
    -    var profiles = AssemblyHelper.GetTypesInheriting<Profile>(Assembly.Load(""???.Mappings"")).Select(Activator.CreateInstance).Cast<Profile>();
    -    var config = new MapperConfiguration(
    -        c => {
    -            foreach (var profile in profiles) {
    -                c.AddProfile(profile);
    -            }
    -        });
    -
    -    kernel.Bind<MapperConfiguration>().ToMethod(
    -        c =>
    -            config).InSingletonScope();
    -
    -    kernel.Bind<IMapper>().ToMethod(
    -        c =>
    -            config.CreateMapper()).InRequestScope();
    -
    -    RegisterModules(kernel);
    -}
    -
    - -

    So, is this the appropriate way of binding AutoMapper 4.2 using Ninject? It seems to be working so far, but I just want to make sure.

    -",HQ -"

    I want to merge 2 dataframes with broadcast relationship: -No common index, just want to find all pairs of the rows in the 2 dataframes. -So want to make N row dataframe x M row dataframe = N*M row dataframe. -Is there any rule to make this happen without using itertool?

    - -
    DF1=
    -  id  quantity  
    -0  1        20  
    -1  2        23  
    -
    -DF2=
    -      name  part  
    -    0  'A'   3  
    -    1  'B'   4  
    -    2  'C'   5  
    -
    -DF_merged=
    -      id  quantity name part 
    -    0  1        20  'A'  3 
    -    1  1        20  'B'  4 
    -    2  1        20  'C'  5 
    -    3  2        23  'A'  3
    -    4  2        23  'B'  4
    -    5  2        23  'C'  5
    -
    -",HQ -"I'm having an issue with the .delete command for ruby arrays. -I am defining a method that has two arguments (an array and a string) and trying to delete the string from the array. - -The test is not passing and here is what I have so far: - - def using_delete(instructors, x=""Steven"") - instructors = [""Josh"", ""Steven"", ""Sophie"", ""Steven"", ""Amanda"", ""Steven""] - instructors.delete (""Steven"" - instructors - end - -The test has to show that all instances of ""Steven"" have been deleted. - -Thanks for your help.",LQ -"

    I'm new to Node and Express and I'm trying to unit test my routes/controllers. I've separated my routes from my controllers. How do I go about testing my routes?

    - -

    config/express.js

    - -
      var app = express();
    -  // middleware, etc
    -  var router = require('../app/router')(app);
    -
    - -

    app/router/index.js

    - -
      module.exports = function(app) {
    -    app.use('/api/books', require('./routes/books'));
    -  };
    -
    - -

    app/router/routes/books.js

    - -
      var controller = require('../../api/controllers/books');
    -  var express = require('express');
    -  var router = express.Router();
    -
    -  router.get('/', controller.index);
    -
    -  module.exports = router;
    -
    - -

    app/api/controllers/books.js

    - -
    // this is just an example controller
    -exports.index = function(req, res) {
    -    return res.status(200).json('ok');
    -};
    -
    - -

    app/tests/api/routes/books.test.js

    - -
      var chai = require('chai');
    -  var should = chai.should();
    -  var sinon = require('sinon');
    -
    -  describe('BookRoute', function() {
    -
    -  });
    -
    -",HQ -"

    I am trying to make an app in Rails 4.

    - -

    I am using simple form for forms and have just tried to use gem 'dependent-fields-rails' to hide or show subset questions based on the form field of a primary question.

    - -

    I'm getting stuck.

    - -

    I have added gems to my gem file for:

    - -
    gem 'dependent-fields-rails'
    -gem 'underscore-rails'
    -
    - -

    I have updated my application.js to:

    - -
    //= require dependent-fields
    -//= require underscore
    -
    - -

    I have a form which has:

    - -
    <%= f.simple_fields_for :project_date do |pdf| %>
    -  <%= pdf.error_notification %>
    -
    -                <div class=""form-inputs"">
    -
    -
    -                    <%= pdf.input :student_project, as: :radio_buttons, :label => ""Is this a project in which students may participate?"", autofocus: true %>
    -
    -
    -                    <div class=""js-dependent-fields"" data-radio-name=""project_date[student_project]"" data-radio-value=""true"">
    -
    -
    -                    <%= pdf.input :course_project, as: :radio_buttons, :label => ""Is this a project students complete for credit towards course assessment?"" %>
    -
    -                    <%= pdf.input :recurring_project, as: :radio_buttons, :label => ""Is this project offered on a recurring basis?"" %>
    -
    -                    <%= pdf.input :frequency,  :label => ""How often is this project repeated?"", :collection => [""No current plans to repeat this project"", ""Each semester"", ""Each year""] %>
    -                    </div>
    -
    -                    <div class='row'>
    -                        <div class=""col-md-4"">
    -                            <%= pdf.input :start_date, :as => :date_picker, :label => ""When do you want to get started?""  %>
    -                        </div>  
    -                        <div class=""col-md-4"">
    -                            <%= pdf.input :completion_date,  :as => :date_picker, :label => ""When do you expect to finish?"" %>
    -                        </div>
    -                        <div class=""col-md-4"">          
    -                            <%= pdf.input :eoi, :as => :date_picker, :label => 'When are expressions of interest due?' %>
    -                        </div>
    -                    </div>
    -                </div>  
    -        <% end %>
    -
    -<script type=""text/javascript"">
    -  $('.datetimepicker').datetimepicker();
    -</script>
    -
    -<script>
    -$(document).ready(function() {
    -    DependentFields.bind()
    -});
    -</script>
    -
    - -

    I don't know much about javascript.

    - -

    I""m not sure if the final script paragraph is necessary or if the gem puts that into the code for you. I'm not sure if it's supposed to be expressed inside script tags and I also don't know how to give effect to this requirement (which is set out on the gem page for dependent-fields):

    - -
    ""Be sure to include underscorejs and jquery in your page.""
    -
    - -

    How do you include underscorejs and jQuery in a page? I have them in my gem file. Is that enough or is something else required to make this work?

    - -

    Currently, when I try this form, nothing is hidden. I have tried swapping the true value to 'yes' but that doesnt make any difference either.

    - -
    <div class=""js-dependent-fields"" data-radio-name=""project_date[student_project]"" data-radio-value=""true"">
    -
    -<div class=""js-dependent-fields"" data-radio-name=""project_date[student_project]"" data-radio-value=""yes"">
    -
    - -

    Can anyone see where I've gone wrong?

    -",HQ -"flt32 flt32_abs (flt32 x) { - - - -int mask=x>>31; - - printMask(mask,32); - puts(""Original""); - printMask(x,32); - - x=x^mask; - - puts(""after XOR""); - printMask(x,32); - - x=x-mask; - - puts(""after x-mask""); - printMask(x,32); - return x; -} - -Heres my code, the value -32 is returning .125. I'm confused because it's a pretty straight up formula for abs on bits, but I seem to be missing something. Any ideas? Thanks y'all. ",LQ -"

    The docs say

    - -
    -

    In Julia, all arguments to functions are passed by reference.

    -
    - -

    so I was quite surprised to see a difference in the behaviour of these two functions:

    - -
    function foo!(r::Array{Int64})                                                                                                                                                                                     
    -        r=r+1                                                                                                                                                                                                      
    -end
    -
    -
    -function foobar!(r::Array{Int64})                                                                                                                                                                                  
    -        for i=1:length(r)                                                                                                                                                                                          
    -                r[i]=r[i]+1                                                                                                                                                                                        
    -        end                                                                                                                                                                                                        
    -end 
    -
    - -

    here is the unexpectedly different output:

    - -
    julia> myarray
    -2-element Array{Int64,1}:
    - 0
    - 0
    -
    -julia> foo!(myarray);
    -
    -julia> myarray
    -2-element Array{Int64,1}:
    - 0
    - 0
    -
    -julia> foobar!(myarray);
    -
    -julia> myarray
    -2-element Array{Int64,1}:
    - 1
    - 1
    -
    - -

    if the array is passed by reference, I would have expected foo! to change the zeros to ones.

    -",HQ -"

    First time using cocoa pods (latest version) for dependencies in the latest Xcode 7.2.1 with Swift 2.1. I initialize my project folder and then edit the podfile and add my dependencies. When I run pod install it runs without a hitch until I open my project and try to build. I've tried this with two separate projects (one being brand new for testing) and I get linker command failed with exit code 1 (use -v to see invocation) for both. My pod file looks like this:

    - -
    platform :ios, '8.0' #8.0 is minimum supported, right?
    -use_frameworks!
    -
    -target 'Testing Frameworks' do
    -    pod 'Alamofire', '~> 3.0'
    -end
    -
    -",HQ -"

    I am installing a module globally

    - -
    $ npm install -g X
    -
    - -

    and NPM says

    - -
    -

    ""npm WARN deprecated lodash@1.0.2: lodash@<3.0.0 is no longer - maintained. Upgrade to lodash@^4.0.0""

    -
    - -

    how can I find out which module has an dependency on this old version of lodash?

    - -

    The warning message from NPM doesn't seem to give me any clue which module references this old version (I believe that the module X does not have a direct dependency on this old version of lodash.).

    -",HQ -"

    I'm new to Promises on javascript so I hope some can help me with this issue.

    - -

    Problem: Promise not being execute on IE11, works fine on Chrome and FireFox

    - -

    Frameworks used: I tried using es6-promise.d.ts and bluebird.d.ts same result.

    - -

    Code:

    - -
    static executeSomething(): Promise<any> 
    -{
    -  console.log(""inside executeSomething"");
    -  var test= new Promise((resolve, reject)=>
    -  {
    -     console.log(""inside Promise"");
    -
    -  }).catch(function(error){console.log(""error"")}); 
    - console.log(""after promise""); 
    - return test;      
    -}
    -
    - -

    Results: on chrome and Firefox I can see all the logs but on IE11 I only see ""Inside executeSomething"" which means the problem is while creating the promise.

    - -

    I thought it was because IE11 didn't support es6 but I get the same result using bluebird, I hope some can bring some light to my issue.

    -",HQ -"

    I was playing around with labels as values and ended up with this code.

    - -
    int foo = 0;
    -goto *foo;
    -
    - -

    My C/C++ experience tells me *foo means dereference foo and that this won't compile because foo isn't a pointer. But it does compile. What does this actually do?

    - -

    gcc (Ubuntu 4.9.2-0ubuntu1~12.04) 4.9.2, if important.

    -",HQ -"

    According to the newly published Style Guide, using the by.xpath() locators is considered a bad practice. I'm actually trying to follow the suggestion, but stuck on getting a parent element.

    - -

    Currently we are using .. XPath expression to get to the element's parent:

    - -
    this.dashboard = element(by.linkText(""Dashboard"")).element(by.xpath("".."")); 
    -
    - -

    How can I locate the element's parent using other built into Protractor/WebDriverJS locators?

    -",HQ -"I have written a code in Visual Basic. It works, but i want to be able to choose how many times a batch file will be opened. - - Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click - Dim command As String - command = ""ping "" + ""-l "" + TextBox2.Text + "" /t "" + TextBox1.Text - Shell(""cmd.exe /k"" & command, 0) - End Sub - -So i have a TextBox called ""TextBox3"" where i wanna be able to write from 1-100, how many times the command will run.",LQ -"

    It takes too much space on the window,

    - -

    I tried some option in the configuration

    - -

    It seems not working, any idea ?

    - -

    User setting

    - -
    ""draw_minimap_border"": false,
    -""draw_minimap"": false,
    -""hide_minimap"": true,
    -""always_show_minimap_viewport"": false
    -
    - -

    -",HQ -"How can I lock (and make it look faded) a parent form while the child form is active? I tried to make the child form topmost but that just made it always visible and I can still edit the parent form. I want to be unable to operate on the main form while the child form is running in VS2012, C#. This is the code I used to call the second form... - - private void checkButton_Click(object sender, EventArgs e) - { - Form2 newForm = new Form2(this); - newForm.Show(); - }",LQ -"This code in django does not show any validation error.Am i missing any syntax or tag ? - -` - - - - - ` - - -` -
    - {{form}} -
    - `",LQ -"

    I want to remove all of my docker containers at once. I tried to use $ docker rm [container_id] to do so, but it removed only one container, not all.

    - -

    Is there any way to remove all docker containers using one single line of code?

    -",HQ -"

    I have a problem using Laravel 5. When I run ""php aritsan migrate"", I got this error

    - -
    **************************************
    -*     Application In Production!     *
    -**************************************
    -
    -Do you really wish to run this command? [y/N] y
    -
    -[PDOException]
    -could not find driver
    -
    - -

    I could run the application, but when database connection needed, I got this error

    - -
    PDOException in Connector.php line 55:
    -could not find driver
    -in Connector.php line 55
    -at PDO->__construct('mysql:host=localhost;dbname=mydb', 'root', '', array('0', '2', '0', false, false)) in Connector.php line 55
    -at Connector->createConnection('mysql:host=localhost;dbname=mydb', array('driver' => 'mysql', 'host' => 'localhost', 'database' => 'mydb', 'username' => 'root', 'password' => '', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'strict' => false, 'name' => 'mysql'), array('0', '2', '0', false, false)) in MySqlConnector.php line 22
    -
    - -

    How to fix it?

    -",HQ -"

    I have the following ES6 modules:

    - -

    network.js

    - -
    export function getDataFromServer() {
    -  return ...
    -}
    -
    - -

    widget.js

    - -
    import { getDataFromServer } from 'network.js';
    -
    -export class Widget() {
    -  constructor() {
    -    getDataFromServer(""dataForWidget"")
    -    .then(data => this.render(data));
    -  }
    -
    -  render() {
    -    ...
    -  }
    -}
    -
    - -

    I'm looking for a way to test Widget with a mock instance of getDataFromServer. If I used separate <script>s instead of ES6 modules, like in Karma, I could write my test like:

    - -
    describe(""widget"", function() {
    -  it(""should do stuff"", function() {
    -    let getDataFromServer = spyOn(window, ""getDataFromServer"").andReturn(""mockData"")
    -    let widget = new Widget();
    -    expect(getDataFromServer).toHaveBeenCalledWith(""dataForWidget"");
    -    expect(otherStuff).toHaveHappened();
    -  });
    -});
    -
    - -

    However, if I'm testing ES6 modules individually outside of a browser (like with Mocha + babel), I would write something like:

    - -
    import { Widget } from 'widget.js';
    -
    -describe(""widget"", function() {
    -  it(""should do stuff"", function() {
    -    let getDataFromServer = spyOn(?????) // How to mock?
    -    .andReturn(""mockData"")
    -    let widget = new Widget();
    -    expect(getDataFromServer).toHaveBeenCalledWith(""dataForWidget"");
    -    expect(otherStuff).toHaveHappened();
    -  });
    -});
    -
    - -

    Okay, but now getDataFromServer is not available in window (well, there's no window at all), and I don't know a way to inject stuff directly into widget.js's own scope.

    - -

    So where do I go from here?

    - -
      -
    1. Is there a way to access the scope of widget.js, or at least replace its imports with my own code?
    2. -
    3. If not, how can I make Widget testable?
    4. -
    - -
    - -

    Stuff I considered:

    - -

    a. Manual dependency injection.

    - -

    Remove all imports from widget.js and expect the caller to provide the deps.

    - -
    export class Widget() {
    -  constructor(deps) {
    -    deps.getDataFromServer(""dataForWidget"")
    -    .then(data => this.render(data));
    -  }
    -}
    -
    - -

    I'm very uncomfortable with messing up Widget's public interface like this and exposing implementation details. No go.

    - -
    - -

    b. Expose the imports to allow mocking them.

    - -

    Something like:

    - -
    import { getDataFromServer } from 'network.js';
    -
    -export let deps = {
    -  getDataFromServer
    -};
    -
    -export class Widget() {
    -  constructor() {
    -    deps.getDataFromServer(""dataForWidget"")
    -    .then(data => this.render(data));
    -  }
    -}
    -
    - -

    then:

    - -
    import { Widget, deps } from 'widget.js';
    -
    -describe(""widget"", function() {
    -  it(""should do stuff"", function() {
    -    let getDataFromServer = spyOn(deps.getDataFromServer)  // !
    -      .andReturn(""mockData"");
    -    let widget = new Widget();
    -    expect(getDataFromServer).toHaveBeenCalledWith(""dataForWidget"");
    -    expect(otherStuff).toHaveHappened();
    -  });
    -});
    -
    - -

    This is less invasive but requires me to write a lot of boilerplate for each module, and there's still a risk of me using getDataFromServer instead of deps.getDataFromServer all the time. I'm uneasy about it, but that's my best idea so far.

    -",HQ -"I have a simple idea of what I'm looking for, but I'm not sure how to explain it clearly, so apologies in advance! - -I would like a ""3D"" spreadsheet, with the aim of having main entries in the normal 2D cells and then (potentially just-as-important) entries in a third dimension above each cell. This is what the multiple sheets already allow for, the problem is that I cannot easily see all the 3rd dimension cells at once. - -I was first hoping to find some sophisticated method of using actual 3D sheets but with no luck so far. I realised that if I could only make sure the other sheets would line up with my first sheet then that would be good enough, so I could ""scroll"" along the third dimension by switching between sheets. - -So, is there any way to scroll all the sheets together? Such that if I scroll down on sheet 1 to see cell 123 A, when I switch to sheet 2, cell 123 A is in the same position on the screen, and so on for sheets 3 and up. - -If this is impossible but anyone has suggestions for a different solution that would be great. - -Many thanks!",LQ -"

    Parse will shut down at the end of the year, so I decided to start using Firebase. I need to implement a register process with 3 fields : email, username, password (Email & username must be unique for my app).

    - -

    Since, Firebase is not providing an easy way to manage username like Parse, I decided to use only the email/password registration and save some additional data like username. Here is my users data structure :

    - -
    app : {
    -    users: {
    -       ""some-user-uid"": {
    -            email: ""test@test.com""
    -            username: ""myname""
    -       }
    -    }
    -}
    -
    - -

    But, what I want to do is to make the username unique and to check it before creating an account. -These are my rules :

    - -
    {
    -    ""rules"": {
    -        "".read"": true,
    -        "".write"": true,
    -        ""users"": {
    -            ""$uid"": {
    -                "".write"": ""auth !== null && auth.uid === $uid"",
    -                "".read"": ""auth !== null && auth.provider === 'password'"",
    -                ""username"": {"".validate"": ""!root.child('users').child(newData.child('username').val()).exists()""}
    -            }
    -        }
    -   }
    -}
    -
    - -

    Thank you very much for your help

    -",HQ -"

    I have wildfly-10.0.0.Final available with PATH variable set. I am using Ubuntu. Also I have jdk1.7.0_79. I am facing the problem that as when I am trying to start server that is executing standalone.sh then I am getting the error,

    - -

    Unrecognized VM option 'MetaspaceSize=96M' - -Error: Could not create the Java Virtual Machine. - -Error: A fatal exception has occurred. Program will exit.

    -",HQ -"

    I want to add some leading zeroes to a string. For example, the total length may be eight characters. For example:

    - -
    123 should be 00000123
    -1243 should be 00001234
    -123456 should be 00123456
    -12345678 should be 12345678
    -
    - -

    What is an easy way to do this in Dart?

    -",HQ -"

    There are several ways to load reCAPTCHA using javascript such as below:

    - -
    <html>
    -  <head>
    -    <title>Loading captcha with JavaScript</title>
    -<script src=""https://code.jquery.com/jquery-1.12.0.min.js""></script>
    -    <script type='text/javascript'>
    -    var captchaContainer = null;
    -    var loadCaptcha = function() {
    -      captchaContainer = grecaptcha.render('captcha_container', {
    -        'sitekey' : 'Your sitekey',
    -        'callback' : function(response) {
    -          console.log(response);
    -        }
    -      });
    -    };
    -    </script>
    -  </head>
    -  <body>
    -      <div id=""captcha_container""></div>
    -      <input type=""button"" id=""MYBTN"" value=""MYBTN"">
    -      <script src=""https://www.google.com/recaptcha/api.js?onload=loadCaptcha&render=explicit"" async defer></script>
    -  </body>
    -</html>
    -
    - -

    This code load captcha on pageload. I want load reCAPTCHA just when clicked on ""MYBTN"". So the code changes into:

    - -
    <html>
    -  <head>
    -    <title>Loading captcha with JavaScript</title>
    -<script src=""https://code.jquery.com/jquery-1.12.0.min.js""></script>
    -    <script type='text/javascript'>
    -$('#MYBTN').on('click',function(){
    -    var captchaContainer = null;
    -    var loadCaptcha = function() {
    -      captchaContainer = grecaptcha.render('captcha_container', {
    -        'sitekey' : 'Your sitekey',
    -        'callback' : function(response) {
    -          console.log(response);
    -        }
    -      });
    -    };
    - });
    -    </script>
    -  </head>
    -  <body>
    -      <div id=""captcha_container""></div>
    -      <input type=""button"" id=""MYBTN"" value=""MYBTN"">
    -      <script src=""https://www.google.com/recaptcha/api.js?onload=loadCaptcha&render=explicit"" async defer></script>
    -  </body>
    -</html>
    -
    - -

    But this code didn't work when I click on ""MYBTN"" and reCAPTCHA not load. -Help me plz. Thanks.

    -",HQ -"

    I'm trying to combine Angular 1.5, UI Router using ES6 import modules syntax with Babel & Webpack.

    - -

    In my app.js I have:

    - -
    'use strict';
    -
    -import angular from 'angular';
    -import uiRouter from 'angular-ui-router';
    -...
    -import LoginCtrl from './login/login.ctrl.js'
    -
    -
    -const app = angular.module(""app"", [
    -        uiRouter,
    -        ...
    -    ])
    -    .config(function($stateProvider, $urlRouterProvider) {
    -        $stateProvider
    -            .state('login', {
    -                url: '/login',
    -                templateUrl: '...', 
    -                controller: LoginCtrl,
    -                controllerAs: 'login' 
    -            })
    -    });
    -
    - -

    In login/login.ctrl.js I have:

    - -
    'use strict';
    -
    -export default app.controller(""LoginCtrl"", function() {
    -    //code here
    -});
    -
    - -

    When I started my app I have following error message:

    - -
    ReferenceError: app is not defined
    - bundle.js:35422:2
    -Error: [$injector:modulerr] Failed to instantiate module app due to:
    -[$injector:nomod] Module 'app' is not available! You either misspelled the module name or forgot to load it.
    -
    - -

    And second question. How can I use controller: ""loginCtrl as login"" syntax with ES6 import/export?

    -",HQ -"I'm using visual studios 2012 and I'm creating a program that prompts the user to enter the number of wheels their car has, the color of their car, the mileage etc.. and will display 'the starting point of the car, the mileage, and the color of the car once the user inputs their values. But, once I start the program and I enter the number of wheels, the program terminates and doesn't go to the next step. - -' public class Car - { - - private int NumbofWheels; - private int Mileage; - private String Color; - private double point; - private double newPoint; - private String owner; - - static void Main(string[] args) - { - - - - Console.WriteLine(""****************************************""); - Console.WriteLine(""* WELCOME TO CAR MANAGER *""); - Console.WriteLine(); - Console.WriteLine(""* BY: MOHAMED SHIRE *""); - Console.WriteLine(""* *""); - Console.WriteLine(""* *""); - Console.WriteLine(""* **************************************""); - Console.Write(""ENTER THE # OF WHEELS OF A CAR: ""); - Console.ReadKey(); - } - - public Car() - { - Mileage = 0; - NumbofWheels = 4; - point = 1000000; - } - - public Car(int mile) - { - Mileage = mile; - } - - public Car(int n, String c) - { - Mileage = 0; - NumbofWheels = n; - Color = c; - point = 1000000; - } - - public void setPoint( int p) - { - point = p; - } - - public double getPoint() - { - return point; - } - public void setMileage(int m) - { - Mileage = m; - - } - - public int getMileage() - { - return Mileage; - } - - public void setWheels(int w) - { - NumbofWheels = w; - - } - - public int getWheels() - { - - return NumbofWheels; - } - - public void setColor(String c) - { - Color = c; - - } - - public String getColor() - { - return Color; - - } - public void setOwner(String o) - { - owner = o; - } - public String getOwner() - { - return owner; - - } - - public void calPoint() - { - newPoint = point - Mileage * 0.5; - - } - public double getnPoint() - { - return newPoint; - } - - - - } - } - - -'",LQ -"

    In c++, specifically the cstdint header file, there are types for 8-bit integers which turn out to be of the char data type with a typedef. Could anyone suggest an actual 8-bit integer type?

    -",HQ -"

    In R, I want to summarize my data after grouping it based on the runs of a variable x (aka each group of the data corresponds to a subset of the data where consecutive x values are the same). For instance, consider the following data frame, where I want to compute the average y value within each run of x:

    - -
    (dat <- data.frame(x=c(1, 1, 1, 2, 2, 1, 2), y=1:7))
    -#   x y
    -# 1 1 1
    -# 2 1 2
    -# 3 1 3
    -# 4 2 4
    -# 5 2 5
    -# 6 1 6
    -# 7 2 7
    -
    - -

    In this example, the x variable has runs of length 3, then 2, then 1, and finally 1, taking values 1, 2, 1, and 2 in those four runs. The corresponding means of y in those groups are 2, 4.5, 6, and 7.

    - -

    It is easy to carry out this grouped operation in base R using tapply, passing dat$y as the data, using rle to compute the run number from dat$x, and passing the desired summary function:

    - -
    tapply(dat$y, with(rle(dat$x), rep(seq_along(lengths), lengths)), mean)
    -#   1   2   3   4 
    -# 2.0 4.5 6.0 7.0 
    -
    - -

    I figured I would be able to pretty directly carry over this logic to dplyr, but my attempts so far have all ended in errors:

    - -
    library(dplyr)
    -# First attempt
    -dat %>%
    -  group_by(with(rle(x), rep(seq_along(lengths), lengths))) %>%
    -  summarize(mean(y))
    -# Error: cannot coerce type 'closure' to vector of type 'integer'
    -
    -# Attempt 2 -- maybe ""with"" is the problem?
    -dat %>%
    -  group_by(rep(seq_along(rle(x)$lengths), rle(x)$lengths)) %>%
    -  summarize(mean(y))
    -# Error: invalid subscript type 'closure'
    -
    - -

    For completeness, I could reimplement the rle run id myself using cumsum, head, and tail to get around this, but it makes the grouping code tougher to read and involves a bit of reinventing the wheel:

    - -
    dat %>%
    -  group_by(run=cumsum(c(1, head(x, -1) != tail(x, -1)))) %>%
    -  summarize(mean(y))
    -#     run mean(y)
    -#   (dbl)   (dbl)
    -# 1     1     2.0
    -# 2     2     4.5
    -# 3     3     6.0
    -# 4     4     7.0
    -
    - -

    What is causing my rle-based grouping code to fail in dplyr, and is there any solution that enables me to keep using rle when grouping by run id?

    -",HQ -"

    I am trying to scrap data from Yelp. One step is to extract links from each restaurant. For example, I search restaurants in NYC and get some results. Then I want to extract the links of all the 10 restaurants Yelp recommends on page 1. Here is what I have tried:

    - -
    library(rvest)     
    -page=read_html(""http://www.yelp.com/search?find_loc=New+York,+NY,+USA"")
    -page %>% html_nodes("".biz-name span"") %>% html_attr('href')
    -
    - -

    But the code always returns 'NA'. Can anyone help me with that? Thanks!

    -",HQ -"

    By default when I generate test class in IDEA it has ""Test"" suffix. As I usually use Spock I want to change it to be ""Spec"" by default. Is it somehow possible?

    -",HQ -"

    After debugging my website in Visual Studio 2015, I can visit it via localhost:50544. I would like to visit my website on a different computer from which it is being served upon that is also on the same network. To do this I should be able to visit that computers address which is 192.168.1.13:50544.

    - -

    However when visiting this address I get a 'Bad request, invalid host name' error. Even if I visit it on the same machine as the website is being served on.

    - -

    Following the advice here I have created the following windows firewall rule and have also tried turning the firewall off entirely.

    - -

    I'm using IIS express and so have added to the '~\Documents\IISExpress\config\applicationhost.config' file

    - -
    <binding protocol=""http"" bindingInformation="":8080:localhost"" /> //original rule
    -<binding protocol=""http"" bindingInformation=""*:50544:192.168.1.13"" />
    -
    - -

    But visiting 192.168.1.13:50544 on any machine still results in the 'Bad Request' error.

    -",HQ -"

    I am using Visual Studio Code as my editor for NodeJS project.

    - -

    Currently I need to manually restart server when I change files in my project.

    - -

    Is there any plugin or configuration change in VSCode that can restart NodeJS server automatically when I make change in files.

    -",HQ -"

    I have a map styled with mapbox studio, however I'm having difficulty adding even a basic marker to it, however text is appearing where the marker should be which suggests that the marker would be there.

    - -

    So here's the code with that map style:

    - -
    mapboxgl.accessToken = 'pk.eyJ1Ijoic21pY2tpZSIsImEiOiJjaWtiM2JkdW0wMDJudnRseTY0NWdrbjFnIn0.WxGYL18BJjWUiNIu-r3MSA';
    -var map = new mapboxgl.Map({
    -    container: 'map',
    -    style: ""mapbox://styles/smickie/cikb3fhvi0063cekqns0pk1f1"",
    -    center: [-30.50, 40],
    -    zoom: 2,
    -    interactive: false
    -});
    -
    - -

    And here some markers being added from an example in the api:

    - -
    map.on('style.load', function () {
    -
    -    map.addSource(""markers"", {
    -        ""type"": ""geojson"",
    -        ""data"": {
    -            ""type"": ""FeatureCollection"",
    -            ""features"": [{
    -                ""type"": ""Feature"",
    -                ""geometry"": {
    -                    ""type"": ""Point"",
    -                    ""coordinates"": [-77.03238901390978, 38.913188059745586]
    -                },
    -                ""properties"": {
    -                    ""title"": ""Mapbox DC"",
    -                    ""marker-symbol"": ""monument""
    -                }
    -            }, {
    -                ""type"": ""Feature"",
    -                ""geometry"": {
    -                    ""type"": ""Point"",
    -                    ""coordinates"": [-122.414, 37.776]
    -                },
    -                ""properties"": {
    -                    ""title"": ""Mapbox SF"",
    -                    ""marker-color"": ""#ff00ff""
    -                }
    -            }]
    -        }
    -    });
    -
    -    map.addLayer({
    -        ""id"": ""markers"",
    -        ""type"": ""symbol"",
    -        ""source"": ""markers"",
    -        ""layout"": {
    -            ""icon-image"": ""{marker-symbol}-15"",
    -            ""text-field"": ""{title}"",
    -            ""text-font"": [""Open Sans Semibold"", ""Arial Unicode MS Bold""],
    -            ""text-offset"": [0, 0.6],
    -            ""text-anchor"": ""top""
    -        }
    -    });
    -});
    -
    - -

    However only the text and not the icons appear.

    - -

    Question is: how would I add just a normal basic colored marker to this map, not even one of the special icon ones?

    - -

    Thanks.

    -",HQ -"I am a newbie at android studio. Tried this code and builded and generated an unsigned apk. I tried in on Samsung galaxy trend GT-s7392 and Asus Zenfone 5, also tried in bluestacks. But when the app is opened , It shows - "" Unfortunately Calculator has stopped.?"" - -Additionally, It never asks for for any permission upon installation. Should i need to modify the android manifest.xml or any other file - - - - - - package in.harisree.calculator; - - import android.os.Bundle; - import android.support.v7.app.AppCompatActivity; - import android.view.View; - import android.view.View.OnClickListener; - import android.widget.Button; - import android.widget.EditText; - import android.widget.TextView; - - public abstract class MainActivity extends AppCompatActivity implements OnClickListener { - - public Button btnAdd,btnSub,btnMul,btnDiv; - public TextView tvResult; - public EditText etNum1,etNum2; - @Override - - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_main); - init(); - - } - - private void init() { - btnAdd=(Button)findViewById(R.id.btnAdd); - btnSub=(Button)findViewById(R.id.btnSub); - btnMul=(Button)findViewById(R.id.btnMul); - btnDiv=(Button)findViewById(R.id.btnDiv); - etNum1=(EditText)findViewById(R.id.etNum1); - etNum2=(EditText)findViewById(R.id.etNum2); - tvResult=(TextView)findViewById(R.id.tvResult); - - btnAdd.setOnClickListener(this); - btnSub.setOnClickListener(this); - btnMul.setOnClickListener(this); - btnDiv.setOnClickListener(this); - } - - public void onClick(View view) - { - String a= String.valueOf(etNum1.getText()); - String b= String.valueOf(etNum1.getText()); - - switch (view.getId()) - { - case R.id.btnAdd: - tvResult.setText(String.valueOf(Integer.parseInt(a)+Integer.parseInt(b))); - break; - case R.id.btnSub: - tvResult.setText(String.valueOf(Integer.parseInt(a)-Integer.parseInt(b))); - break; - case R.id.btnMul: - tvResult.setText(String.valueOf(Integer.parseInt(a)*Integer.parseInt(b))); - break; - case R.id.btnDiv: - tvResult.setText(String.valueOf(Integer.parseInt(a)/Integer.parseInt(b))); - break; - } - } - } - - - - -",LQ -"Before: - - enum EMagicAbility{ - Fireball, - IceBolt, - BlackMagic - }; - enum EPhysicalAbility{ - SwordLance, - FearlessBlow, - RagnarokRage - }; - enum ERangedAbility{ - Snipe, - RainOfArrows, - CrossbowShot - }; - enum EBiologicalAbility{bla,bla,bla}; - enum Eblabla{}; - enum Eevenmore{}; - ... There are many more abilities ... - ... - - //Each EMagicAbility can only have either zero or one Ability value. - Dictionary myMagicAbilityDictionary; - //Each EPhysicalAbility can only have either zero or one Ability value. - Dictionary myPhysicalAbilityDictionary; - //Each EPhysicalAbility can only have either zero or one Ability value. - Dictionary myRangedAbilityDictionary; - //Each EBiologicalAbility can only have either zero or one Ability value. - Dictionary myBiologicalAbilityDictionary; - //Each Eblabla can only have either zero or one Ability value. - Dictionary myBlablaAbilityDictionary; - //Each Eevenmore can only have either zero or one Ability value. - Dictionary myBlablaAbilityDictionary; - ... keeps going on... - ... - -After: - - enum class EAbility{} - enum EMagicAbility:EAbility{ - Fireball, - IceBolt, - BlackMagic - }; - enum EPhysicalAbility:EAbility{ - SwordLance, - FearlessBlow, - RagnarokRage - }; - enum ERangedAbility:EAbility{ - Snipe, - RainOfArrows, - CrossbowShot - }; - enum EBiologicalAbility:EAbility{bla,bla,bla}; - enum Eblabla:EAbility{}; - enum Eevenmore:EAbility{}; - ... There are many more abilities ... - ... - - //Each any enum derived from Eability can only have either zero or one Ability value. - Dictionary myAbilityDictionary; - //I don't have to create another dictionary when I create a new category of Abilities! Yay! - - - - -This is probably a super similar to this question: - -http://stackoverflow.com/questions/35191235/what-variable-type-should-i-use-to-store-types-of-a-non-sealed-class-or-interfac/35191505#35191505 - -In which I would use this instead: - - //I can remove all enumerations have such a clean, one-line code <3<3 - Dictionary myAbilityDictionary; - -EDIT: After doing some more research, I found out that this may be a viable option for me: http://stackoverflow.com/questions/518442/enum-subset-or-subgroup-in-c-sharp The problem with this is that I will have a behemoth amount of lines of code, which I rather find a more sane way to solve this. - -Also, an up vote would be really, really helpful since I can't access some features in stackoverflow, thank you.",LQ -"

    I tried to fix the error where you have to use sudo when running npm. I blindly followed a link to uninstall node, the code was from this gist

    - -

    After running the command and I tried to install it back with brew: brew install node. Which gave me the following error:

    - -
    Error: The `brew link` step did not complete successfully
    -The formula built, but is not symlinked into /usr/local
    -Could not symlink share/doc/node/gdbinit
    -/usr/local/share/doc/node is not writable.
    -
    -You can try again using:
    -  brew link node
    -
    - -

    Trying to run brew link node, I got:

    - -
    Linking /usr/local/Cellar/node/5.4.0... 
    -Error: Could not symlink share/systemtap/tapset/node.stp
    -/usr/local/share/systemtap/tapset is not writable.
    -
    - -

    Then when I write brew install npm, I get:

    - -
    Warning: node-5.4.0 already installed, it's just not linked
    -
    - -

    When I write npm -v I get:

    - -
    env: node: No such file or directory
    -
    - -

    Any ideas on how to solve this?

    -",HQ -"

    What is the easiest way to remove all elements from array that match specific string? For example:

    - -

    array = [1,2,'deleted',4,5,'deleted',6,7];

    - -

    I want to remove all 'deleted' from the array.

    -",HQ -"

    I get the full collection of a Model with the following:

    - -

    $posts = Post::all();

    - -

    However I want this is reverse chronological order.

    - -

    What is the best way to get this collection in the desired order?

    -",HQ -"

    I needed to fix some CSS somewhere because my text wasn't wrapping around and was instead going on indefinitely if it was an extremely long word.

    - -

    Like in most cases, I tried word-wrap: break-word; in my CSS file and it did not work.

    - -

    Then, to my surprise, and by the suggestion of Google Chrome Developer Tools, I tried word-break: break-word; and it fixed my problem. I was shocked by this so I've been googling to know the difference between these two but I have seen nothing on the subject.

    - -

    Further, I don't think word-break: break-word; is documented behavior seeing as how W3 has no mention of it. I tested it on Safari and Chrome, and it works perfectly on both, but I'm hesitant to use word-break: break-word; because I see no mention of it anywhere.

    -",HQ -"

    Consider following program (C99):

    - -
    #include <stdio.h>
    -#include <stdlib.h>
    -#include <inttypes.h>
    -
    -int main(void)
    -{
    -    printf(""Enter int in range %jd .. %jd:\n > "", INTMAX_MIN, INTMAX_MAX);
    -    intmax_t i;
    -    if (scanf(""%jd"", &i) == 1)
    -        printf(""Result: |%jd| = %jd\n"", i, imaxabs(i));
    -}
    -
    - -

    Now as I understand it, this contains easily triggerable undefined behaviour, like this:

    - -
    Enter int in range -9223372036854775808 .. 9223372036854775807:
    - > -9223372036854775808
    -Result: |-9223372036854775808| = -9223372036854775808
    -
    - -

    Questions:

    - -
      -
    1. Is this really undefined behaviour, as in ""code is allowed to trigger any code path, which any code that stroke compiler's fancy"", when user enters the bad number? Or is it some other flavor of not-completely-defined?

    2. -
    3. How would a pedantic programmer go about guarding against this, without making any assumptions not guaranteed by standard?

    4. -
    - -

    (There are a few related questions, but I didn't find one which answers question 2 above, so if you suggest duplicate, please make sure it answers that.)

    -",HQ -"i am new to ios. And this is my first post. I know how to create a dummy json data and to print them in console.like below code: - - NSArray *jsonObject; - jsonObject = @[@{@""Id1"":@""mad"", - @""people1"":@""300""}, - @{@""Id2"":@""normal"", - @""people2"":@""9"",@""total2"":@""300""}]; - - NSError *err; - NSData *jsonData = [NSJSONSerialization dataWithJSONObject:jsonObject options:NSJSONWritingPrettyPrinted error:nil]; - - - - NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData:jsonData options: NSJSONReadingMutableContainers error: &err]; - - - NSLog(@""%@,%@"",jsonArray); - - - -But wha i need is i have one file name **Areafiles.JSON**. In that file i have some json data.Now i directly drag and drop in my project. Now how can i read and print in my console like my above example. - - -Please help me in code explain.Because i am stared learning.So it will help full to know how to code . - -Thanks!",LQ -"I want to get the list of all Islamic events of current year using Eventkit framework. Used the given below code from stackoverflow: - NSDate* endDate = [NSDate dateWithTimeIntervalSinceNow:[[NSDate distantFuture] timeIntervalSinceReferenceDate]]; - NSArray *calendarArray1 = [NSArray arrayWithObject:calendar]; - NSPredicate *fetchCalendarEvents = [eventStore predicateForEventsWithStartDate:[NSDate date] endDate:endDate calendars:calendarArray1]; - NSArray *eventList = [eventStore eventsMatchingPredicate:fetchCalendarEvents]; - - for(int i=0; i < eventList.count; i++){ - - NSLog(@""Event Title:%@"", [[eventList objectAtIndex:i] title]); - - } - - -but app crashes at NSPredicate line. - - -Thanks.",LQ -"

    In an AWS Lambda code, how can I get the HTTP method (e.g. GET, POST...) of an HTTP request coming from the AWS Gateway API?

    - -

    I understand from the documentation that context.httpMethod is the solution for that.

    - -

    However, I cannot manage to make it work.

    - -

    For instance, when I try to add the following 3 lines:

    - -
        if (context.httpMethod) {
    -            console.log('HTTP method:', context.httpMethod)
    -    }
    -
    - -

    into the AWS sample code of the ""microservice-http-endpoint"" blueprint as follows:

    - -
    exports.handler = function(event, context) {
    -
    -    if (context.httpMethod) {
    -        console.log('HTTP method:', context.httpMethod)
    -    }
    -
    -    console.log('Received event:', JSON.stringify(event, null, 2));
    -
    -    // For clarity, I have removed the remaining part of the sample
    -    // provided by AWS, which works well, for instance when triggered 
    -    // with Postman through the API Gateway as an intermediary.
    -};
    -
    - -

    I never have anything in the log because httpMethod is always empty.

    -",HQ -"[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/PkfBD.png - -Ideally, I'd like a background shadow effect too. - -Thanks in advance.",LQ -"

    I got the same issue as described in the following, old, forum post: Issue on MSDN
    -However, for some reason Microsoft decided to remove the functionalities in the answer described there.

    - -

    What I'm looking for is a ListView with 2+ columns, with the first column containing random data (thus random width elements), making the width of the first column the same as the widest element inside.

    -",HQ -"

    https://github.com/AutoMapper/AutoMapper/wiki/Migrating-from-static-API

    - -

    this change breaks my system.

    - -

    Before update, I use:

    - -

    ===> Startup.cs

    - -
    public class Startup
    -{
    -    public Startup(IHostingEnvironment env)
    -    {
    -    ...
    -        MyAutoMapperConfiguration.Configure();
    -    }
    -}
    -
    - -

    ===> MyAutoMapperConfiguration.cs

    - -
    public class MyAutoMapperConfiguration
    -{
    -    public static void Configure()
    -    {
    -        Mapper.Initialize(a =>
    -        {
    -            a.AddProfile<AbcMappingProfile>();
    -            a.AddProfile<XyzMappingProfile>();
    -            a.AddProfile<QweMappingProfile>();
    -        });
    -    }
    -}
    -
    - -

    ===> AbcMappingProfile.cs

    - -
    public class AbcMappingProfile : Profile
    -{
    -    protected override void Configure()
    -    {
    -        Mapper.CreateMap<AbcEditViewModel, Abc>();
    -        Mapper.CreateMap<Abc, AbcEditViewModel>();
    -        ...
    -    }
    -}
    -
    - -

    ERROR:

    - -

    'Mapper.CreateMap()' is obsolete: 'The static API will be removed in version 5.0. Use a MapperConfiguration instance and store statically as needed. Use CreateMapper to create a mapper instanace.'

    - -

    I can use Mapper.Map. Now How can I use it

    -",HQ -"i want to write a code thats write somthing into a file but it says it cant but how i must fix this please help. - - Imports System.IO - -Public Class Form1 - Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load - yes.Visible = False - no.Visible = False - Label1.Visible = False - ProgressBar1.Visible = False - Label2.Visible = False - Label3.Visible = False - TextBox1.Visible = False - TextBox2.Visible = False - apply.Visible = False - back.Visible = False - End Sub - - Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click - Button1.Visible = False - yes.Visible = True - no.Visible = True - Label1.Visible = True - setings.Visible = False - - End Sub - Private Sub Label1_Click(sender As Object, e As EventArgs) Handles Label1.Click - - End Sub - - Private Sub Button2_Click(sender As Object, e As EventArgs) Handles yes.Click - Label1.Text = ""dowloading"" - no.Visible = False - yes.Visible = False - - End Sub - - Private Sub Button3_Click(sender As Object, e As EventArgs) Handles no.Click - yes.Visible = False - no.Visible = False - Label1.Visible = False - Button1.Visible = True - setings.Visible = True - End Sub - - Private Sub setings_Click(sender As Object, e As EventArgs) Handles setings.Click - Label2.Visible = True - Label3.Visible = True - TextBox1.Visible = True - TextBox2.Visible = True - apply.Visible = True - back.Visible = True - Button1.Visible = False - setings.Visible = False - End Sub - - Private Sub back_Click(sender As Object, e As EventArgs) Handles back.Click - Label2.Visible = False - Label3.Visible = False - TextBox1.Visible = False - TextBox2.Visible = False - apply.Visible = False - back.Visible = False - Button1.Visible = True - setings.Visible = True - End Sub - - Private Sub TextBox1_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged - - End Sub - - Private Sub apply_Click(sender As Object, e As EventArgs) Handles apply.Click - Dim forgepath = TextBox1.Text - Dim savefolder = Path.Combine(TextBox2.Text, ""crazydolphininstaller"") - Directory.CreateDirectory(savefolder) - Dim configfolder = Path.Combine(savefolder, ""config"") - Directory.CreateDirectory(configfolder) - Dim configfile = Path.Combine(configfolder, ""config.txt"") - File.Create(configfile) - Using writer = New StreamWriter(configfile) - writer.WriteLine(forgepath) - writer.WriteLine(savefolder) - - End Using - End Sub - - Private Sub TextBox2_TextChanged(sender As Object, e As EventArgs) Handles TextBox2.TextChanged - - End Sub - - Private Sub Label3_Click(sender As Object, e As EventArgs) Handles Label3.Click - - End Sub -End Class",LQ -" This may be a vague question but I am trying to find a function that sets all text boxes on a form to a currency format. On my form I have some preset boxes but many will be dynamic with the push of a button. The information in these text boxes will come from Access. I have a sample function for clearing text boxes, I'm curious if there is something similar for what I'm asking. - - private void RecursiveClearTextBoxes(Control.ControlCollection cc) // clear all textboxes,combos and keep date on form - { - foreach (Control ctrl in cc) - { - System.Windows.Forms.TextBox tb = ctrl as System.Windows.Forms.TextBox; - if (tb != null) - tb.Clear(); - else - RecursiveClearTextBoxes(ctrl.Controls); - } - }",LQ -"I am coding a program that i need to save texts(from a rich text box) to a pdf. I use iTextSharp and the code that i use is this: - - Document doc = new Document(iTextSharp.text.PageSize.LETTER, 10, 10, 42, 35); - PdfWriter wri = PdfWriter.GetInstance(doc, new FileStream(""TitleOfPdf.pdf"", FileMode.Create));//textBox1(in the form) assign here the title of the document - doc.Open(); //open the document in order to write inside. - Paragraph paragraph = new Paragraph(richTextBox1.Text); - // Now adds the above created text using different class object to our pdf document - doc.Add(paragraph); - doc.Close(); - -Now the problem is that i would like the title of the file to be ""flexible"" and be assigned by the user(from a text box). The problem is that if i change the line: - - PdfWriter wri = PdfWriter.GetInstance(doc, new FileStream(""TitleOfPdf.pdf"", FileMode.Create)); - -To: - - PdfWriter wri = PdfWriter.GetInstance(doc, new FileStream(textBox1.Text, FileMode.Create)); - -Works fine. BUT the file it hasnt extension .pdf It is only a random file. How i can make the title of the document ""flexible"" so the user can assign it, and the extension will be .pdf ?? Thanks !!",LQ -"
     <ComboBox fx:id=""schaltung"" layoutX=""347.0"" layoutY=""50.0"" prefHeight=""63.0"" prefWidth=""213.0"">
    -          <items>
    -                <FXCollections fx:factory=""observableArrayList"">
    -                    <String fx:id=""reihe"" fx:value=""Reihenschaltung"" />
    -                    <String fx:id=""parallel"" fx:value=""Parallelschaltung"" />
    -                </FXCollections>
    -            </items>
    - </ComboBox>
    -
    - -

    I added this to my FXML file because I couldnt figure out where I could add Items to my ComboBox in the SceneBuilder. Is it possible to add items via the SceneBuilder, or do I have to do it manually?

    -",HQ -"

    I'm new to visual studio, what are some of the differences between Managed Test Project and Native Unit Test Project. Most of the unit test information available on the internet just says to make a native unit test, but what's the actual difference?

    -",HQ -" inline void addition(double * x, const double * vx,uint32_t size){ - /*for (uint32_t i=0;iI find that I need to type ../ a lot to require() files. My directory structure includes these:

    - -
    js/
    -  components/
    -    ...
    -  actions/
    -    ...
    -
    - -

    From the components folder, I need to do import foo from '../actions/fooAction'. Is it possible to make the root directory the root of the project? I.e. I want to do import foo from '/actions/fooAction' instead. I tried setting Webpack's resolve.root option, but it didn't seem to do anything.

    -",HQ -" public void onClick(View v) - { - if (v == buttonOne) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""1""); - } - - else if (v == buttonTwo) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""2""); - } - - else if (v == buttonThree) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""3""); - } - - else if (v == buttonFour) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""4""); - } - - else if (v == buttonFive) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""5""); - } - - else if (v == buttonSix) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""6""); - } - - else if (v == buttonSeven) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""7""); - } - - else if (v == buttonEight) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""8""); - } - - else if (v == buttonNine) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""9""); - } - - else if (v == buttonZero) - { - TextView output = (TextView)findViewById(R.id.output); - output.append(""0""); - } - - else if(v == buttonEnter) - { - - TextView output = (TextView)findViewById(R.id.output); - temp = Integer.parseInt(output.getText().toString()); - compareNumber(temp); - output.setText(""""); - } - } - - -Hi, I am trying to compare number using button. For example, if I press buttonOne it append 1 to stack. if buttonTwo is pressed, it append 2 to stack. -and For example if I press buttonOne and buttonTwo, it should store number 12(twelve). I tried this using parseInt as you can see in buttonEnter statement but when I run it the application stops. - -Please help!",LQ -"

    I downloaded Genymotion but cannot get it to work. I keep on getting ""virtualization engine not found, plugin loading aborted"". I have uninstalled and reinstalled it, force quit and restarted it, and looked at other solutions to no avail. It seems to hit a snag here.

    - -

    I am running on a Mac, OSX Yosemite version 10.10.5.

    -",HQ -"What does parseInt do exactly? -Because my second argument was roll no. Which was not parsed but third argument was marks , which was parsed . Why so?",LQ -"I have the following page: http://mindspyder.com/newline/my-account.html - -And the following code on that page: - - - - - - - - - - - - -
    -
    -
    -
    hello
    -
    -

    -

    -

    - -
    - -
    - -
    - -
    - -
    -

    -
    -

    -

    - -

    -
    -
    - - - - - -Now, if you go to the page and click the blue Delete button, everything works perfectly. Now if you click Cancel, and click on one of the other tabs, it still works as it should. The problem is you click Delete again, it doesn't switch back to the Delete tab when opening the modal, but leaves it on the previous tab. - -What am I doing wrong?",LQ -"

    Currently, I have a simple NSFetchRequest with an associated NSPredicate. However, Im hoping there is a way you can append multiple predicates. I've seen examples in Objective C, but none for Swift.

    - -

    Can you define a list of NSPredicate's or append multiple NSPredicate objects to a single NSFetchRequest somehow?

    - -

    Thanks!

    -",HQ -"

    I'm using IntelliJ with Java and the ""Autoscroll from Source"" function enabled.

    - -

    I like when the IDE jumps to the class in the package list, but it will also expand the ""External Liubraries"" making the whole ""Project"" view pretty messy.

    - -

    Is there a way to stop IntelliJ from expanding External Libraries?

    -",HQ -"This is string: - - 1
    2
    3
    4
    - -After replace - - var descriptionVal = desc.replace('
    ', '-').replace('
    ', '-'); - -only replace first div! - - 1-2
    3
    4
    - -how replace all div?",LQ -"

    I have a lot of tabs and queries open in MySQL workbench. I left it open before I went to sleep, but this morning I am getting an error MySQL server has gone away when trying to run queries.

    - -

    The database is up, and I am able to connect to it if I open a new connection on MySQL workbench, but the current connection is dead. How do I reconnect?

    - -

    I don't want to open a new connection as I would have to copy my queries and tabs over.

    -",HQ -"Here is **Mysql code:** - - select concat(date_format(now(),'%Y/%m/%d'),' ','06:00:00 AM') - -Trying to concat date with time, getting error like: required two parameters to concat. - -**sql:** - - select concat((CONVERT(varchar,getdate(),102),' ','06:00:00 AM')); *not working while converting from mysql to sql* -",LQ -"

    I'm currently trying to teach myself Angular2 and TypeScript after happily working with AngularJS 1.* for the last 4 years! I have to admit I am hating it but I am sure my eureka moment is just around the corner... anyway, I have written a service in my dummy app that will fetch http data from a phoney backend I wrote that serves JSON.

    - -
    import {Injectable} from 'angular2/core';
    -import {Http, Headers, Response} from 'angular2/http';
    -import {Observable} from 'rxjs';
    -
    -@Injectable()
    -export class UserData {
    -
    -    constructor(public http: Http) {
    -    }
    -
    -    getUserStatus(): any {
    -        var headers = new Headers();
    -        headers.append('Content-Type', 'application/json');
    -        return this.http.get('/restservice/userstatus', {headers: headers})
    -            .map((data: any) => data.json())
    -            .catch(this.handleError);
    -    }
    -
    -    getUserInfo(): any {
    -        var headers = new Headers();
    -        headers.append('Content-Type', 'application/json');
    -        return this.http.get('/restservice/profile/info', {headers: headers})
    -            .map((data: any) => data.json())
    -            .catch(this.handleError);
    -    }
    -
    -    getUserPhotos(myId): any {
    -        var headers = new Headers();
    -        headers.append('Content-Type', 'application/json');
    -        return this.http.get(`restservice/profile/pictures/overview/${ myId }`, {headers: headers})
    -            .map((data: any) => data.json())
    -            .catch(this.handleError);
    -    }
    -
    -    private handleError(error: Response) {
    -        // just logging to the console for now...
    -        console.error(error);
    -        return Observable.throw(error.json().error || 'Server error');
    -    }   
    -}
    -
    - -

    Now in a Component I wish to run (or chain) both getUserInfo() and getUserPhotos(myId) methods. In AngularJS this was easy as in my controller I would do something like this to avoid the ""Pyramid of doom""...

    - -
    // Good old AngularJS 1.*
    -UserData.getUserInfo().then(function(resp) {
    -    return UserData.getUserPhotos(resp.UserId);
    -}).then(function (resp) {
    -    // do more stuff...
    -}); 
    -
    - -

    Now I have tried doing something similar in my component (replacing .then for .subscribe) however my error console going crazy!

    - -
    @Component({
    -    selector: 'profile',
    -    template: require('app/components/profile/profile.html'),
    -    providers: [],
    -    directives: [],
    -    pipes: []
    -})
    -export class Profile implements OnInit {
    -
    -    userPhotos: any;
    -    userInfo: any;
    -
    -    // UserData is my service
    -    constructor(private userData: UserData) {
    -    }
    -
    -    ngOnInit() {
    -
    -        // I need to pass my own ID here...
    -        this.userData.getUserPhotos('123456') // ToDo: Get this from parent or UserData Service
    -            .subscribe(
    -            (data) => {
    -                this.userPhotos = data;
    -            }
    -        ).getUserInfo().subscribe(
    -            (data) => {
    -                this.userInfo = data;
    -            });
    -    }
    -
    -}
    -
    - -

    I'm obviously doing something wrong... how would I best with Observables and RxJS? Sorry if I am asking stupid questions... but thanks for the help in advance! I have also noticed the repeated code in my functions when declaring my http headers...

    -",HQ -"

    I want to know an example of removing message or file like a photo

    - -

    I did not find any functional tutorial in this regard,

    -",HQ -"

    I have a grid layout which is filled with buttons, now i want the buttons to be more distant from each other, what code should i write? i tried to search it but only found a solution for GridView, not GridLayout.

    -",HQ -"I am new to android development. I m trying to create a create account form through SQLITE database but when i am trying to run on phone or Emulator it shows ""Unfortunately APP has stopped"" . - -this si my Mnifest File code - - - - - - - - - - - - - - - - -this is my MainActivity - - public class MainActivity extends AppCompatActivity { - - DatabaseHelper myDb; - - EditText editName, editPassword, editEmail; - - Button buttonRegister; - - @Override - protected void onCreate(Bundle savedInstanceState) { - - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_main); - myDb=new DatabaseHelper(this); - - editName = (EditText) findViewById(R.id.edit_name); - editEmail = (EditText) findViewById(R.id.edit_email); - - editPassword = (EditText) findViewById(R.id.edit_password); - - buttonRegister = (Button) findViewById(R.id.ButtonRegister); - - Reg(); - } - - public void Reg(){ - buttonRegister.setOnClickListener( - new View.OnClickListener() { - @Override - public void onClick(View v) { - boolean isInserted=myDb.insertData(editName.getText().toString(), - editEmail.getText().toString(), - editPassword.getText().toString()); - if(isInserted==true) - Toast.makeText(MainActivity.this, ""Data Inserted"", Toast.LENGTH_SHORT).show(); - else - Toast.makeText(MainActivity.this,""Data not Inserted"",Toast.LENGTH_SHORT).show(); - - } - } - ); - } - -} - -And this is my DatabaseHelper Class - - public class DatabaseHelper extends SQLiteOpenHelper { - - private static final int DATABASE_VERSION=1; - private static final String DATABASE_NAME=""USER.db""; - private static final String TABLE_NAME=""USER""; - private static final String COL_1=""ID""; - private static final String COL_2=""NAME""; - private static final String COL_3=""EMAIL""; - private static final String COL_4=""PASS""; - SQLiteDatabase db; - - - - public DatabaseHelper(Context context) - { - super(context,DATABASE_NAME,null,DATABASE_VERSION); - } - - - @Override - public void onCreate(SQLiteDatabase db) { - db.execSQL(""create table"" + TABLE_NAME + ""(ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT, EMAIL TEXT, PASS TEXT)""); - - } - @Override - public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { - db.execSQL(""DROP TABLE IF EXIST""+TABLE_NAME); - onCreate(db); - - } - public boolean insertData(String name, String email, String pass) - { - SQLiteDatabase db=this.getWritableDatabase(); - ContentValues values=new ContentValues(); - ContentValues contentValues=new ContentValues(); - contentValues.put(COL_2,name); - contentValues.put(COL_3,email); - contentValues.put(COL_4,pass); - long result=db.insert(TABLE_NAME, null, contentValues); - if (result==-1) - return false; - else - return true; - } -} - - -this is my XML FILE - - - - - - - - - - - - - - - - - - -When i try update it just refresh the page nothing else.",LQ -"A = tuples of Medication(patientid,date,medicine) -B = A.groupby(x => x.patientid) -example B would look like below - now I need to find the minimum date, how to do that in scala?? -(478009505-01,CompactBuffer(Some(Medication(478009505-01,Fri Jun 12 10:30:00 EDT 2009,glimepiride)), Some(Medication(478009505-01,Fri Jun 12 10:30:00 EDT 2009,glimepiride)), Some(Medication(478009505-01,Fri Jun 12 10:30:00 EDT 2009,glimepiride)))",LQ -"I had come across this code in K & R: - - int scanline (char str [], int lim) /* Line will be read in 'str []', while lim is the maximum characters to be read */ - { - int c, len, j; /* 'len' will have the length of the read string */ - - j = 0; /* Initializing 'j' */ - for (len = 0; (c = getchar ()) != EOF && c != '\n'; ++len) /* Reading a character one by one, till the user enters '\n', and checking for failure of 'getchar' */ - { - if (len < (lim -2)) /* Checking that string entered has not gone beyond it's boundaries. '-2' for '\n' and '\0' */ - { - str [j] = c; /* Copying read character into 'string [j]' */ - ++ j; /* Incrementing 'j' by 1 */ - } - } - if (c == '\n') /* Checking if user has finished inputting the line */ - { - str [j] = c; /* Copying newline into string */ - ++j; - ++ len; - } - - return len; /* Returning number of characters read */ - } - -In the K & R, it is known as `getline`, but I made changes, added comments, and thus defined it as `scanline`. To test this, I made a demo program: - - #include - - int main (int argc, char **argv) - { - int len; - char str [50]; - len = scanline (str, 50); - printf (""len = %d\n str = %s\n"", len, str); - return 0; - } - -The required headers and the function was in my own library, `cancel.h`. Then when I compiled my program, it was successful. Although, when I ran the executable, I got unexpected output (I cannot type it as I get a character which when I copy, it just gets pasted as 'm'): - -[![enter image description here][1]][1] - -The mysterious character is [![enter image description here][2]][2] which when I copy, gets copied as the letter `m`. Also, when I run my program with different inputs, I get different mysterious outputs: - -[![enter image description here][3]][3] - -In another case, I get perfect output, just that a blank line is printed: - -[![enter image description here][4]][4] - -I had also come across [this](http://stackoverflow.com/questions/35651800/what-is-this-mysterious-output-in-c) question, in which the user gets the same symbol. - ------------- - -**_What have I done till now?_** - -I searched a lot, and I could not find any clue about [![enter image description here][5]][5] this character, but if you see carefully, in the second image, I get more characters when I enter ""hi this is ashish"". One of them is the slash, and one is [![enter image description here][6]][6]. But I get another character [![enter image description here][7]][7]. I got [this](https://rosettacode.org/wiki/Strip_control_codes_and_extended_characters_from_a_string#C) link which was showed how to reproduce it, and explained it, although I could not understand. When you run the code given there, you get a lot of characters, and one of them is [![enter image description here][8]][8]. Although, even the author of that article could not copy it, and has not posted it. So here's the output: - -[![enter image description here][9]][9] - -That was the actual output, as that's not clear, here's a cut out version: - -[![enter image description here][10]][10] - -So basically I got to know that both the characters [![enter image description here][11]][11] and [![enter image description here][12]][12] are extended characters from a string. At that point, I actually figured out what was causing the problem in `scanline`. - -The lines - - if (c == '\n') /* Checking if user has finished inputting the line */ - { - str [j] = c; /* Copying newline into string */ - ++j; - ++ len; - } - -were causing the problems as you were copying a newline into the string. It worked, but I'm not sure why, as doing that was just a guess. I searched but still could not find the reason. - ---------------- - -**_My Questions_** - - - How does removing those lines make the program work properly? - - - What are the characters [![enter image description here][13]][13] and [![enter image description here][14]][14]? What are they supposed to do and how did they appear over here? - - - Are there any more characters like this? - - - Why can't those characters be copied? - - - Is it Undefined Behavior? - -**NOTE:** I know this questions lengthy, but I'll make sure and offer a bounty once that ""question eligible for bounty in 2 days"" gets over. - - - - [1]: http://i.stack.imgur.com/gJzPb.png - [2]: http://i.stack.imgur.com/IWP35.png - [3]: http://i.stack.imgur.com/UKqpI.png - [4]: http://i.stack.imgur.com/8EKne.png - [5]: http://i.stack.imgur.com/EbMX9.png - [6]: http://i.stack.imgur.com/h0yCq.png - [7]: http://i.stack.imgur.com/qu9oW.png - [8]: http://i.stack.imgur.com/8XL0F.png - [9]: http://i.stack.imgur.com/SxxxQ.png - [10]: http://i.stack.imgur.com/dW876.png - [11]: http://i.stack.imgur.com/RfafD.png - [12]: http://i.stack.imgur.com/W5Wam.png - [13]: http://i.stack.imgur.com/MVrgF.png - [14]: http://i.stack.imgur.com/ecu9R.png",LQ -"i unable to call - - - --(void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation - - - -on IBaction - - - -- (IBAction)button:(UIButton *)sender { - - -} - -help me",LQ -"*emphasized text* - - -http://jsfiddle.net/uJ4PJ/ - -I used this jsfiddle for arrow key navigation,(for same function) but if I use this html, how can I do the same ?(I have to skip br tag) - -
    -
    -
    - -
    - - - - - -Thanks in Advance.",LQ -" I want to pass the listener parameter to the fragment but I am getting the error at - i have declared the editTextAge globally - -editTextAge.setOnClickListener(new View.OnClickListener() { - DlgNumberPickerFragm newFragment = new DlgNumberPickerFragm(); - - @Override - public void onClick(View v) { - DlgNumberPickerFragm.dlgAgePicker(R.string.app_name, R.drawable.imgdialogbox, ""\t\t\tSelect Age"", AdptCardUI.this).show(this.newFragment.getFragmentManager(), ""first""); - } - }); - - - - - at AdptCardUI.this).show(this.newFragment.getFragmentManager(), ""first""); - } - }); - - i have tried - - - this).show(this.getFragmentManager(); - - this).show(this.getChildFragmentManager(); - - this).show(this.newFragment.getFragmentManager(); - - AdptCardUI.this).show(this.newFragment.getFragmentManager(); - - - - but i didnt got any answer please help me in this",LQ -"I want to make a simple sliding Div over another div. -This Fiddle (http://jsfiddle.net/cf7u73pn/1/) is exactly what i want to make, but since i'm a noob in this world of coding, i get the warning 'Uncaught ReferenceError: $ is not defined' after copying the codes to my own files. - -
    INFORMATION ABOUT IMAGE APPEARS ON CLICK
    -

    THERE'S A NICE IMAGE HERE
    - - $(document).ready(function() {$('#slide').click(function() { - var hidden = $('.hidden'); - if (hidden.hasClass('visible')) { - hidden.animate({""top"": ""160px""}, ""slow"").removeClass('visible'); - } - else { - hidden.animate({""top"": ""0px""}, ""slow"").addClass('visible'); - } - }); - }); - -I now understand that i have to link a/several (?) file(s) in my HTML head to define my $. Can someone please help me find the right files and tell me how to link these into my html? - -Thank you very much!",LQ -"I'm trying to convert an array into a list and this is the code : - - - void tab2list(int n, list **T) - { - int t[z]; - int i; - for (i=0;i - - - - - - - - -` - -Now at img src its creating a problem. -'.$row_UserDetails['Image'].' - Doesnt display the value. -Why is that & how do we fix this? - -Anyways i am trying to display the above results from php mysql in php page using this: `` -but doesnt work. -All displays fine except img src which value is coming from existing recordset.",LQ -"

    I am creating new RDS MySQL instances from snapshots and updating their configurations both via the API and through the UI. Regardless of how I create or update instances, these actions automatically trigger new snapshots to be created through some kind of automatic backup process. Is there a way to disable snapshot creation when performing these actions since I do not need the additional snapshots and their creation is causing an unnecessary delay?

    -",HQ -"here is my code I keep getting the same error compile error: block if without end if - -here is my code that I am working with -Private Sub Command1_Click() -If IsNull(Me.txtusername) Then - 'MsgBox ""Please enter Username"", vbInformation, ""Username Required"" -If IsNull(Me.txtpassword) Then - 'MsgBox ""Please enter Password"", vbInformation, ""Password Required"" -Else - 'processs the job - If (IsNull(DLookup(""[username]"", ""tbllogin info"", ""[username] ='"" & Me.txtusername.Value & ""' And password = '"" & Me.txtpassword.Value & ""'""))) Then - MsgBox ""login unsucessful"" -End If - 'MsgBox ""Login Succeddful"" - DoCmd.OpenForm ""s-1 page"" - -End Sub -",LQ -"

    I'm on windows 7, using Atmel studio 7.0. When I opened up my project in Atmel Studio, it failed to load and gave this error:

    - -
    The Visual Studio component cache is out of date please restart visual studio.
    -
    - -

    When I closed and reopened Atmel Studio, the same error continued. I also tried right clicking on my project, and selecting ""Reload project"" but then I got this error:

    - -
    Value cannot be null. Parameter name: url
    -
    - -

    How can I open up my project?

    -",HQ -"

    I'm using python 3.5 and flask 0.10.1 and liking it, but having a bit of trouble with send_file. I ultimately want to process a pandas dataframe (from Form data, which is unused in this example but necessary in the future) and send it to download as a csv (without a temp file). The best way to accomplish this I've seen is to us StringIO.

    - -

    Here is the code I'm attempting to use:

    - -
    @app.route('/test_download', methods = ['POST'])
    -def test_download():
    -    buffer = StringIO()
    -    buffer.write('Just some letters.')
    -    buffer.seek(0)
    -    return send_file(buffer, as_attachment = True,\
    -    attachment_filename = 'a_file.txt', mimetype = 'text/csv')
    -
    - -

    A file downloads with the proper name, however the file is completely blank.

    - -

    Any ideas? Issues with encoding? Has this been answered elsewhere? -Thanks!

    -",HQ -"im using this code to get the last number in a fields where date of fields is today date: - - cn.Open(""Provider=Microsoft.Jet.OLEDB.4.0; Data Source="" & Application.StartupPath & ""\bysys.mdb"") - rs.Open(""Select max(snum) From tblbill where idate = #"" & Format(Today.Date, ""dd/MM/yyyy"") & ""# "", cn, 1, 2) - If IsDBNull(Rs.Fields(0).Value) Then - TextBox6.Text = 1 - Else - TextBox6.Text = Rs.Fields(0).Value + 1 - End If - - -sometimes it works correctly -but sometimes, always return 1.. -please help!",LQ -"I just found out recently about kivy. Python i'm also studing recently. I would like application, made into kivy, which has 2 windows for input text and returning a label with result after clicking a button. This code must be in him: -`def word_detect(a,b): - y = [] - e = [] - s = [] - for i in range(len(b)): - z = [] - for k in a: - ml = 0 - index = -1 - for j in k: - index += 1 - if j == (b[i])[index]: - ml += 1 - if ml == int((b[i])[-1]): - z.append(k) - y.append(z) - e.extend(z) - for i in e: - if (y[0]).count(i)==(y[1]).count(i)==(y[2]).count(i)==1 and s.count(i)==0: - s.append(i) - return s - -print word_detect(raw_input('list: '). upper(). split(','),raw_input('words: '). upper(). split(',')) -''' -e.g: -list : total,relax,mixer,remix,scope,candy,water -words: helix 3, botex 1, below 2 - -result: ['relax'] - -RELAX -hELiX - 3 matched letters -boteX - 1 matched letter -bELow - 2 matched letters -'''`",LQ -"

    I have a web application that is <distributable/>, but also deployed to stand alone instances of Wildfly for local development work. Sometimes we have calls to the backend that can stall for a few seconds, which often leads to exceptions like the one shown below.

    - -

    How can I fix this given that I have no control over long running backend requests?

    - -
    14:55:04,808 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (default task-6) ISPN000136: Error executing command LockControlCommand, writing keys []: org.infinispan.util.concurrent.TimeoutException: ISPN000299: Unable to acquire lock after 15 seconds for key LA6Q5r9L1q-VF2tyKE9Pc_bO9yYtzXu8dYt8l-BQ and requestor GlobalTransaction:<null>:37:local. Lock is held by GlobalTransaction:<null>:36:local
    -    at org.infinispan.util.concurrent.locks.impl.DefaultLockManager$KeyAwareExtendedLockPromise.lock(DefaultLockManager.java:236)
    -    at org.infinispan.interceptors.locking.AbstractLockingInterceptor.lockAllAndRecord(AbstractLockingInterceptor.java:199)
    -    at org.infinispan.interceptors.locking.AbstractTxLockingInterceptor.checkPendingAndLockAllKeys(AbstractTxLockingInterceptor.java:199)
    -    at org.infinispan.interceptors.locking.AbstractTxLockingInterceptor.lockAllOrRegisterBackupLock(AbstractTxLockingInterceptor.java:165)
    -    at org.infinispan.interceptors.locking.PessimisticLockingInterceptor.visitLockControlCommand(PessimisticLockingInterceptor.java:184)
    -    at org.infinispan.commands.control.LockControlCommand.acceptVisitor(LockControlCommand.java:110)
    -    at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
    -    at org.infinispan.interceptors.TxInterceptor.invokeNextInterceptorAndVerifyTransaction(TxInterceptor.java:157)
    -    at org.infinispan.interceptors.TxInterceptor.visitLockControlCommand(TxInterceptor.java:215)
    -    at org.infinispan.commands.control.LockControlCommand.acceptVisitor(LockControlCommand.java:110)
    -    at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
    -    at org.infinispan.interceptors.InvocationContextInterceptor.handleAll(InvocationContextInterceptor.java:107)
    -    at org.infinispan.interceptors.InvocationContextInterceptor.visitLockControlCommand(InvocationContextInterceptor.java:81)
    -    at org.infinispan.commands.control.LockControlCommand.acceptVisitor(LockControlCommand.java:110)
    -    at org.infinispan.interceptors.InterceptorChain.invoke(InterceptorChain.java:336)
    -    at org.infinispan.cache.impl.CacheImpl.lock(CacheImpl.java:828)
    -    at org.infinispan.cache.impl.CacheImpl.lock(CacheImpl.java:810)
    -    at org.infinispan.cache.impl.AbstractDelegatingAdvancedCache.lock(AbstractDelegatingAdvancedCache.java:177)
    -    at org.wildfly.clustering.web.infinispan.session.InfinispanSessionMetaDataFactory.getValue(InfinispanSessionMetaDataFactory.java:84)
    -    at org.wildfly.clustering.web.infinispan.session.InfinispanSessionMetaDataFactory.findValue(InfinispanSessionMetaDataFactory.java:69)
    -    at org.wildfly.clustering.web.infinispan.session.InfinispanSessionMetaDataFactory.findValue(InfinispanSessionMetaDataFactory.java:39)
    -    at org.wildfly.clustering.web.infinispan.session.InfinispanSessionFactory.findValue(InfinispanSessionFactory.java:61)
    -    at org.wildfly.clustering.web.infinispan.session.InfinispanSessionFactory.findValue(InfinispanSessionFactory.java:40)
    -    at org.wildfly.clustering.web.infinispan.session.InfinispanSessionManager.findSession(InfinispanSessionManager.java:234)
    -    at org.wildfly.clustering.web.undertow.session.DistributableSessionManager.getSession(DistributableSessionManager.java:140)
    -    at io.undertow.servlet.spec.ServletContextImpl.getSession(ServletContextImpl.java:726)
    -    at io.undertow.servlet.spec.HttpServletRequestImpl.getSession(HttpServletRequestImpl.java:370)
    -    at au.com.agic.settings.listener.SessionInvalidatorListener.clearSession(SessionInvalidatorListener.java:57)
    -    at au.com.agic.settings.listener.SessionInvalidatorListener.requestInitialized(SessionInvalidatorListener.java:52)
    -    at io.undertow.servlet.core.ApplicationListeners.requestInitialized(ApplicationListeners.java:245)
    -    at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:283)
    -    at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:263)
    -    at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
    -    at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:174)
    -    at io.undertow.server.Connectors.executeRootHandler(Connectors.java:202)
    -    at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:793)
    -    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    -    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    -    at java.lang.Thread.run(Thread.java:745)
    -
    -",HQ -"I was searching for something to sort a list of pairs by values and keys in Python. I found this list.sort(key = lambda (k,v):(-v,k)), i tried to find some explanation about this but couldn't find anything which clarify my doubts. Can someone explain how this lambda function works?",LQ -"

    docs.ggplot2.org currently offers very little documentation for the function ggplotGrob. The EPFL website is a little bit more informative but it is still not very helpful.

    - -

    Can you please provide a short tutorial on what one can do with the function ggplotGrob?

    -",HQ -"

    My node server and client are running on different ports(3001,5347 respectively). -On client I had used,

    - -
    var socket = io('http://127.0.0.1:3001');
    -
    - -

    On server I tried all of following one by one

    - -
        1) io.set('origins', '*:*');
    -    2) io.set('origins', 'http://127.0.0.1:5347');
    -    3) io.set('origins', '*');
    -    4) io.set('origins', '127.0.0.1:5347');
    -
    - -

    But I'm getting following error:

    - -
    -

    XMLHttpRequest cannot load http://127.0.0.1:3001/socket.io/?EIO=3&transport=polling&t=1456799439856-4590. A wildcard '*' cannot be used in the 'Access-Control-Allow-Origin' header when the credentials flag is true. Origin 'null' is therefore not allowed access.

    -
    - -

    Note: I'm using express on server and I'm already using cors middleware in following way:

    - -
    app.use(cors());
    -
    - -

    Where app and cors are instances of express and cors respectively.

    -",HQ -"class A(object): - def wrapped(self, func): - func.string = self.get_something() - return func - - def get_something(self): - return ""something"" - - @wrapped - def main(self): - print self.main.string -a = A() -a.main() -",LQ -"

    What's different between the two? JetBrains lists some differences here, but I heard there might be some inaccuracies in the list.

    -",HQ -"I am making a French Translator and purely for experience I want to make a 'Save' button they will save what is currently entered into the entry fields. - - e1 = Entry(master) - e2 = Entry(master) - - e1.grid(row=0, column=1) - e2.grid(row=1, column=1) - - def write(): - name = 'SavedFile.txt' - hello = int(3) - file = open(name,'w+') - file.write(e1.get()) - - file.close() - - menubar = Menu(master) - master.config(menu=menubar) - filemenu = Menu(menubar, tearoff=0) - filemenu.add_command(label=""Save"", command=write()) -Changing file.write(e1.get()) to file.write('hello'), works and writes 'Hello' to SavedFile. - -But I want it so when I click 'Save' under 'File', it rewrites to the file (preferably without overwriting what is there) - -P.s., - - s = e1.get() -will actually make s = to whatever is currently in the field",LQ -"

    Java 8 has an inbuilt JavaScript engine called Nashorn so it is actually possible to run Haskell compiled to JavaScript on the JVM.

    - -

    The following program works:

    - -
    {-# LANGUAGE JavaScriptFFI #-}
    -
    -module Main where
    -
    -foreign import javascript unsafe ""console={log: function(s) { java.lang.System.out.print(s); }}""
    -  setupConsole :: IO ()
    -
    -foreign import javascript unsafe ""java.lang.System.exit($1)""
    -  sysexit :: Int -> IO ()
    -
    -main = do
    -  setupConsole
    -  putStrLn ""Hello from Haskell!""
    -  sysexit 0
    -
    - -

    We can run it with: (Side note: It is possible to run this as a normal Java program.jjs is just a convenient way to run pure JavaScript code on the JVM)

    - -
    $ ghcjs -o Main Main.hs
    -[1 of 1] Compiling Main             ( Main.hs, Main.js_o )
    -Linking Main.jsexe (Main)
    -
    -$ which jjs
    -~/bin/jdk/bin/jjs
    -
    -$ jjs Main.jsexe/all.js
    -Hello from Haskell!
    -
    - -

    In the above code, console.log needs to be defined using java.lang.System.print as Nashorn doesn't provide the default global console object and Haskell's putStrLn otherwise doesn't seem to be printing anything.

    - -

    The other thing is that the JVM needs to be exited with sysexit FFI function implemented with java.lang.System.exit.

    - -

    I have 2 questions:

    - -
      -
    1. Similar to console.log, what other host dependencies are assumed in ghcjs that have to be defined?
    2. -
    3. Is the JVM not shutting down normally because of ghcjs creating an event loop in the background or some other reason? Is there any way to avoid that and make the program exit normally?
    4. -
    -",HQ -"I am trying to insert the values into the table through controller in Cakephp. I've tested first.. It says db connected succesfully. but i've inserted something into the table using PDO by prepared statement it show the error like ""Error: SQLSTATE[HY093]: Invalid parameter number: no parameters were bound"". - -Here is my table structure: - -CREATE TABLE IF NOT EXISTS `test` ( -`id` int(10) unsigned NOT NULL, - `name` varchar(255) NOT NULL, - `job` varchar(255) NOT NULL -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; - -The function i mentioned in my controller is, - - public function insdb() { - - $sqlInsert = $this->User->query(""INSERT INTO `test` (`name`, `job`) VALUES (:name1,:job1)""); - $preparedStatement = $conn->prepare($sqlInsert); - $preparedStatement->User->execute(array(':name1' => 'Tony', ':job1' => 'gardner')); - }",LQ -" @IBOutlet var firstName:UITextField? - @IBOutlet var lastName:UITextField? - - let string = firstName!.text - print(string) -The output is like as bellow, - -Optional(""fhh"") -How can i get the data without optional text and double quotes. - - ",LQ -"SELECT IFNULL(post.id -,INSERT INTO post(pdate,body) VALUES (1,'a') -,UPDATE post set body='update',pdate=2 -) -from post where body='a' and pdate=1",LQ -"

    For preprocessing the corpus I was planing to extarct common phrases from the corpus, for this I tried using Phrases model in gensim, I tried below code but it's not giving me desired output.

    - -

    My code

    - -
    from gensim.models import Phrases
    -documents = [""the mayor of new york was there"", ""machine learning can be useful sometimes""]
    -
    -sentence_stream = [doc.split("" "") for doc in documents]
    -bigram = Phrases(sentence_stream)
    -sent = [u'the', u'mayor', u'of', u'new', u'york', u'was', u'there']
    -print(bigram[sent])
    -
    - -

    Output

    - -
    [u'the', u'mayor', u'of', u'new', u'york', u'was', u'there']
    -
    - -

    But it should come as

    - -
    [u'the', u'mayor', u'of', u'new_york', u'was', u'there']
    -
    - -

    But when I tried to print vocab of train data, I can see bigram, but its not working with test data, where I am going wrong?

    - -
    print bigram.vocab
    -
    -defaultdict(<type 'int'>, {'useful': 1, 'was_there': 1, 'learning_can': 1, 'learning': 1, 'of_new': 1, 'can_be': 1, 'mayor': 1, 'there': 1, 'machine': 1, 'new': 1, 'was': 1, 'useful_sometimes': 1, 'be': 1, 'mayor_of': 1, 'york_was': 1, 'york': 1, 'machine_learning': 1, 'the_mayor': 1, 'new_york': 1, 'of': 1, 'sometimes': 1, 'can': 1, 'be_useful': 1, 'the': 1}) 
    -
    -",HQ -"

    I use Python 3.5 with latest version of Anaconda on Windows (64 bit). I wanted to install Basemap using conda install basemap. Apparently there is a conflict between Python 3 and basemap. After some googling indeed I found that basemap is not supported on Python 3 for Windows users (ex: https://groups.google.com/a/continuum.io/forum/#!topic/anaconda/TjAwi3ilQaU).

    - -

    For obvious reasons I do not want to downgrade to Python 2. What would then be the simplest alternative solution?

    - -
      -
    • Is there an alternative package similar to basemap for ploting maps, etc.?
    • -
    • Should I use a second environment which uses Python 2 and basemap? I have never done that but it seems possible (http://conda.pydata.org/docs/py2or3.html). Is it ""safe""? Should I install again all the other packages (matplotlib, numpy, etc.) on the second environment?
    • -
    - -

    Thanks in advance for the help and advice.

    -",HQ -"

    In case when static polymorphism is used, especially in templates (e.g. with policy/strategy pattern), it may be required to call base function member, but you don't know was instantiated class actually derived from this base or not.

    - -

    This easily can be solved with old good C++ ellipsis overload trick:

    - -
    #include <iostream>
    -
    -template <class I>
    -struct if_derived_from
    -{
    -    template <void (I::*f)()>
    -    static void call(I& x) {  (x.*f)(); }
    -
    -    static void call(...) { }
    -};
    -
    -struct A    { void reset() { std::cout << ""reset A"" << std::endl; } };
    -struct B    { void reset() { std::cout << ""reset B"" << std::endl; } };
    -struct C    { void reset() { std::cout << ""reset C"" << std::endl; } };
    -struct E: C { void reset() { std::cout << ""reset E"" << std::endl; } };
    -struct D: E {};
    -
    -struct X: A, D {};
    -
    -int main()
    -{
    -    X x;
    -    if_derived_from<A>::call<&A::reset>(x);
    -    if_derived_from<B>::call<&B::reset>(x);
    -    if_derived_from<C>::call<&C::reset>(x);
    -    if_derived_from<E>::call<&E::reset>(x);
    -    return 0;
    -}
    -
    - -

    The question is:

    - -
      -
    • Is there any better simple way (e.g. SFINAE doesn't look so) to achieve same result in C++11/C++14?
    • -
    • Would empty call of ellipsis parameter function be elided by optimizing compiler? Hope such case is not special against any ""normal"" function.
    • -
    -",HQ -"I have a file with three columns. All three have different values. To plot it in a smooth surface with a color gradient for third column what should I do? -the data file is look like follows: - -1431.564087 -556.7048268 -14.09538931 -1445.544205 -562.1413974 0 -1445.544205 -562.1413974 -6.577848346 -1452.06826 -564.6784636 6.577848346 -1445.544205 -562.1413974 -6.577848346 -1452.06826 -564.6784636 9.396926208 -1442.748182 -561.0540833 -1.879385242 -1444.612197 -561.7789593 11.27631145 -1433.428103 -557.4297029 -4.698463104 -1438.088142 -559.2418931 4.698463104 -1433.428103 -557.4297029 0 -1433.428103 -557.4297029 0.939692621 -1432.496095 -557.0672648 -0.939692621 -1433.428103 -557.4297029 0 -1433.428103 -557.4297029 -2.819077862 -1436.224127 -558.517017 -1.879385242 -1438.088142 -559.2418931 0 -1438.088142 -559.2418931 0 -1438.088142 -559.2418931 0 -1438.088142 -559.2418931 6.577848346 -",LQ -"

    In may app i use Map from Google Maps V2 and in this map i am trying to add markers each Marker with an icon, but the marker is taking the size of the icon which is making the icon looks flue. -How can i specify the size of the marker in dp so that i can control how it looks like on the map

    -",HQ -"Is it good to do: - -**Phone Table:** -id name -1 blabla -2 blabla -3 blabla -. -.. - -**Laptop Table:** -id name -1 blabla -2 blabla -3 blabla -. -.. - -**OR** - -**Products Table:** -id name type -1 blabla laptop -2 blabla phone -3 blabla laptop -. -.. - -Thanks All :)",LQ -"We have publish app in iOS & Android store last year. When I go to the google play store I can see 50,000 to 100,000 App downloads. But how can I know how much exact number of apps are downloaded. Kindly can somebody help me. How to check. - -Please note I have username & password for both iOS & Android developer account.",LQ -"

    I have Spring OAuth Authorization server and I want to add support for more then one client(id). I configured clients like this:

    - -
    clients
    -            .inMemory().withClient(client).secret(clientSecret)
    -            .resourceIds(resourceId)
    -            .authorizedGrantTypes(""client_credentials"", ""password"", ""refresh_token"", ""implicit"", ""authorization_code"")
    -            .authorities(""ROLE_USER"")
    -            .scopes(""read"", ""write"")
    -            .autoApprove(true)
    -            .and()
    -            .inMemory().withClient(""acme"").secret(""acmesecret"")
    -            .resourceIds(resourceId)
    -            .authorizedGrantTypes(""client_credentials"", ""password"", ""refresh_token"", ""implicit"", ""authorization_code"")
    -            .authorities(""ROLE_USER_ACME"")
    -            .scopes(""read"", ""write"")
    -            .autoApprove(true); 
    -
    - -

    I can get access token with first client, but i get this error when trying to get access token with second client:

    - -
    {
    -  ""timestamp"": 1456822249638,
    -  ""status"": 401,
    -  ""error"": ""Unauthorized"",
    -  ""message"": ""Bad credentials"",
    -  ""path"": ""/oauth/token""
    -}
    -
    - -

    Is it possible to add more then one client and how to do it? Allso, how to read clients from a database?

    -",HQ -"how can i devide the payment column into refund and trasnfer fee on the bases of comments column - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Paymentcomments
    3000refund
    3000refund
    3000transfer fee
    - - - -",LQ -"

    I've seen URIs that support magic ids for the authenticated user like below:

    - -
    GET /user/me - list my profile
    -GET /user/me/photos - list my photos
    -
    - -

    where the ones below use the actual user id

    - -
    GET /user/742924
    -GET /user/742924/photos
    -
    - -

    The problem I see is that the same resource id points to a different resource depending on the authenticated user.

    - -

    Is this going against any REST principles?

    -",HQ -"i get an error when i want to cast a query:this is the code of the query. - - var query = ( - from article in db.V_CLIENT_PRIX - where article.CLIENT == Current_Client_Id - select new - { - ID = article.ID, - ARTICLE = article.Article, - REFERENCE = article.Reference, - REMISE = article.Remise, - PRIXVHT = article.PrixVHT, - CLIENT = article.CLIENT, - - - }); -and i cast it like that: - - ConventionList articlelistconvention = new ConventionList(); - - articlelistconvention = (ConventionList)query; - -and this is the code of my model:ConventionList - - public class Commandelist - { - public string ARTICLE { get; set; } - public string CIN { get; set; } - public decimal STOCK { get; set; } - public string REFERENCE { get; set; } - public decimal PRIXVHT { get; set; } - public string IMAGE { get; set; } - public double QUANTITE { get; set; } - - } -Can someone help me how to fix it and thank you",LQ -"

    I've made a Yii2 REST API. With the API you can get a list of cars. Now I want to use the Bearer Authentication to protect the API. But I don't know how it works.

    - -

    First of all. I set up the authenticator in the behaviors method of my controller.

    - -
    public function behaviors(){
    -    return [
    -        'contentNegotiator' => [
    -            'class' => ContentNegotiator::className(),
    -            'formats' => [
    -                'application/json' => Response::FORMAT_JSON,
    -            ],
    -        ],
    -        'authenticator' => [
    -            'class' => CompositeAuth::className(),
    -            'authMethods' => [
    -                HttpBearerAuth::className(),
    -            ],
    -        ]
    -    ];
    -}
    -
    - -

    This works just fine. If I go to the URL I will get an 'Unauthorized' message.

    - -

    In my wordpress plugin I've made an function to use the API and set the header with the authentication key.

    - -
    function getJSON($template_url) {
    -    $authorization = ""Authorization: Bearer "" . get_option(""auth_key"");
    -
    -    // Create curl resource
    -    $ch = curl_init();
    -    // Set URL
    -    curl_setopt($ch, CURLOPT_URL, $template_url);
    -    // Return transfer as a string
    -    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    -    // Set headers
    -    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json', $authorization));
    -    // $output contains output as a string
    -    $output = curl_exec($ch);
    -    // Close curl resource
    -    curl_close($ch);
    -
    -    return json_decode($output, true);
    -}
    -
    - -

    But now my question is. How can I check in the API if this key is valid and give me the response. I want to search for the key in de database and if it exists it should also give me the id or email thats in the same row.

    - -

    I have no idea how to do this.

    -",HQ -"here is my simple code, i want to get in the console_task, the value of the variable i in the dialer_task... without using global variable - -Thanks for help - - #include - #include - - - - #include - #include - #include - #include - #include - #include - #include ""console.hpp"" - - using namespace std; - - void console_task(){ - console(); - } - - void dialer_task(){ - int i=0; - while (1) { - printf(""LOOP %d\n"",i); - i++; - sleep(5); - } - } - - int main() - { - thread t1(console_task); - thread t2(dialer_task); - - t1.join(); - t2.join(); - return 0; - } - -",LQ -"

    I'm trying to create a spot instance using boto3. Although I follow the API documentation, I receive an exception I couldn't be able to figure out. The code I'm using is:

    - -
    import boto3
    -import datetime
    -client = boto3.client('ec2')
    -response = client.request_spot_instances(
    -    DryRun=False,
    -    SpotPrice='0.10',
    -    ClientToken='string',
    -    InstanceCount=1,
    -    Type='one-time',
    -    LaunchSpecification={
    -        'ImageId': 'ami-fce3c696',
    -        'KeyName': 'awskey.pem',
    -        'SecurityGroups': ['sg-709f8709'],
    -        'InstanceType': 'm4.large',
    -        'Placement': {
    -            'AvailabilityZone': 'us-east-1a',
    -        },
    -        'BlockDeviceMappings': [
    -            {
    -                'Ebs': {
    -                    'SnapshotId': 'snap-f70deff0',
    -                    'VolumeSize': 100,
    -                    'DeleteOnTermination': True,
    -                    'VolumeType': 'gp2',
    -                    'Iops': 300,
    -                    'Encrypted': False
    -                },
    -            },
    -        ],
    -
    -        'EbsOptimized': True,
    -        'Monitoring': {
    -            'Enabled': True
    -        },
    -        'SecurityGroupIds': [
    -            'sg-709f8709',
    -        ]
    -    }
    -)
    -
    - -

    And I receive the following exception:

    - -
    botocore.exceptions.ClientError: An error occurred (InvalidParameterValue) when calling the RequestSpotInstances operation: Value () for parameter groupId is invalid. The value cannot be empty
    -
    - -

    The thing is there is no groupId parameter in the request in the API documentation.

    - -

    Am I missing something?

    -",HQ -"

    I know there are a lot of questions about this, but I can't get this to work:

    - -

    I want to upload a file from input to a server in multipart/form-data

    - -

    I've tried two approaches. First:

    - -
    headers: {
    -  'Content-Type': undefined
    -},
    -
    - -

    Which results in e.g. for an image

    - -
    Content-Type:image/png
    -
    - -

    while it should be multipart/form-data

    - -

    and the other:

    - -
    headers: {
    -  'Content-Type': multipart/form-data
    -},
    -
    - -

    But this asks for a boundry header, which I believe should not be manually inserted...

    - -

    What is a clean way to solve this problem? -I've read that you can do

    - -
    $httpProvider.defaults.headers.post['Content-Type'] = 'multipart/form-data; charset=utf-8';
    -
    - -

    But I don't want all my posts to be multipart/form-data. The default should be JSON

    -",HQ -"

    I am creating a server less REST API using AWS API Gateway and AWS Lambda. While the end points have been created and linked with the corresponding Lambda functions, next step is to add authentication layer to authenticate users via email and password. From what I could understand from the documentation, API Gateway methods can support either API Key based access or IAM based access. But I could not understand how to securely implement the authentication using API keys.

    - -

    Will I have to create a server for doing the authentication and managing the users ? Is there any way this can be a complete server less end to end application ? Any resources for pointing in the right direction will be highly appreciated. I am looking at this document at the moment

    -",HQ -"What would be the best approach to set a boolean variable that is supposed to be true for **(a && b) || (!a && c)**. - -My first idea would be to simply write it down like that: - - $result = ($a && $b) || (!$a && $c); - - -But would it be in any way better or more time efficient to do something like this: - - $result = false; - if ( $a ) { - $result = $b; - } else { - $result = $c; - }",LQ -"

    Introduction:

    - -

    Hello, I am trying to set up a WCF web service on my local IIS 7.5 server, however after I finish the basic configurations I am unable to send data with a WinForms test client and it returns the error mentioned in the titles. - I have already searched similar threads on this problem but i did not find anything that would fit my problem.

    - -

    Data:

    - -

    -Both the Wcf WebService and the test client where provided from a 3rd party

    - -

    -They already work on another server and I am using the same versions

    - -

    -I am probably doing something wrong when I enable or configure IIS

    - -

    Request:

    - -

    -I need to know what IIS features I need to enable/disable in order to install it correctly so I can use the Wcf WebService.(If that's the case).

    - -

    -How to correctly configure the server in order to solve the above mentioned error.

    - -

    My Configurations:

    - -

    -After Installing IIS I changed the DefaulAppPool to .NET Framework v4.0.30.319; pipeline mode: Integrated. -Advanced Settings: Load User profile = False.

    - -

    -Created a new Website named ""WcfMicrocontrollerService"" using DefaultAppPool.Binding; Type:http, IP adress: , port: 80

    - -

    At this point I can access it trough a web browser, however when I use the test client to POST data to the service I get the following error: ""The remote server returned an unexpected response:(405) Method Not Allowed.""

    - -

    Here are the data packets sent as recorded by Fiddler: - Sent:

    - -
    POST http://192.168.0.102/MicroControllerComSvc.svc HTTP/1.1
    -Content-Type: text/xml; charset=utf-8
    -SOAPAction: ""http://tempuri.org/IMicroControllerComSvc/GetMicrocontrollerData""
    -Host: 192.168.0.102
    -Content-Length: 237
    -Expect: 100-continue
    -Accept-Encoding: gzip, deflate
    -Connection: Keep-Alive
    -
    -<s:Envelope xmlns:s=""http://schemas.xmlsoap.org/soap/envelope/""><s:Body><GetMicrocontrollerData xmlns=""http://tempuri.org/""><microControllerData>1,1,1,1,2,2,1,0,100,300</microControllerData></GetMicrocontrollerData></s:Body></s:Envelope>
    -
    - -

    Received:

    - -
    HTTP/1.1 405 Method Not Allowed
    -Cache-Control: private
    -Allow: GET, HEAD, OPTIONS, TRACE
    -Content-Type: text/html; charset=utf-8
    -Server: Microsoft-IIS/7.5
    -X-Powered-By: ASP.NET
    -Date: Tue, 01 Mar 2016 10:44:44 GMT
    -Content-Length: 5671
    -
    - -

    And here's the body: https://dl.dropboxusercontent.com/u/2237590/405.html

    - -

    This seems to indicate that I should take a look in handler mappings but I have no idea what to edit there.

    -",HQ -"

    Is there any way to create an static class in typescript, node.js

    - -

    I want to create an static class to keep all constants and string in that.

    - -

    what could be the best way to do that ?

    -",HQ -"

    During installation I get a message:

    - -

    Unfortunately, the component installation did not complete successfully. Please check the detailed logs for the error message.

    - -

    I tried installing to all users, single user, many destinations and names.

    - -

    Details:

    - -

    Output folder: C:\Program Files (x86)\Google\Cloud SDK -Downloading Google Cloud SDK core. -Extracting Google Cloud SDK core. -Create Google Cloud SDK bat file: C:\Program Files (x86)\Google\Cloud SDK\cloud_env.bat -Installing components. -The filename, directory name, or volume label syntax is incorrect. -Failed to install.

    - -

    What to do?

    -",HQ -"I am extracting a value from xml -And I am using that value to check if it exists in a PDF file - - @reader = file('C:\Users\ecz560\Desktop\30004_Standard.pdf').parse_pdf - @xml = file('C:\Users\ecz560\Desktop\30004Standard.xml').parse_xmlDoc - @CustName = @xml.xpath(""//Customer[RTLtr_Loancust='0163426']//RTLtr_CustomerName"").map(&:text).to_s - page_index = 0 - @reader.pages.each do |page| - page_index = page_index+1 - if expect(page.text).to include @CustName - valid_text = ""Given text is present in -- #{page_index}"" - puts valid_text - end - end - -But I am getting a error - - ./features/step_definitions/Letters/Test1_Letters.rb:370:in `block (2 levels) in ' - ./features/step_definitions/Letters/Test1_Letters.rb:368:in `each' - ./features/step_definitions/Letters/Test1_Letters.rb:368:in `/^I validate the PDF content$/' - C:\Users\ecz560\Documents\GitHub\ATDD Local\features\FeatureFiles\Letters\Test1_Letters.feature:72:in `Then I validate the PDF content' - -How can I resolve this ?",LQ -"I am facing a problem where I need to convert a string to date like - -11 years 10 months 12 days to a date in SQL. - -Please help any help would be appreciated.",LQ -"

    I haven't been able to find a worthwhile NodeJS with Typescript tutorial out there so I'm diving in unguided and sure enough I have a question.

    - -

    I don't understand the difference between these two lines:

    - -
    import * as http from 'http';
    -// and
    -import http = require('http');
    -
    - -

    They seem to function the same way but I imagine there's probably some nuance to their behavior or else one of them probably wouldn't exist.

    - -

    I do understand that the first approach could let me selectively import from a module but if I'm importing all of the module then is there a difference between the two? Is there a preferred way? What if I'm importing from my own files, does that change anything?

    -",HQ -"

    I have tried all the life cycle hooks but can't get to accomplish the needed result. -The result that I need is triggering a function that initialize many jquery plugins used for different elements on a single page after every single one of these elements (components) is loaded.

    - -

    So lets say that you have this structure.

    - -

    Home Page - Slider - Widgets - Product rotators - ..etc

    - -

    Every one of these elements has it's own component and all are children of the Home page parent component.

    - -

    And what I need here is to know when all the children components and the parent component is loaded so I trigger one jquery function to initialize every plugin on the page.

    -",HQ -"Leap year! Arghhhhhhhh. -I have a little issue with one my SELECT querries. The entire query is actually is a little long since it includes a UNION ALL. - - SELECT 'ITV' = CASE WHEN tblIntake.StaffID Is Null THEN '' ELSE - (tblStaffMember.StaffLast + ', ' + tblStaffMember.StaffFirst + CASE WHEN - tblStaffMember.StaffMI Is Null THEN '' ELSE ' ' + tblStaffMember.StaffMI END) END, - tblMember.[LAST], tblMember.[FIRST], - 'DueDate' = DATEADD(m, 6,CAST(CONVERT(Varchar(10), - MONTH(tblIntake.EnrollDate)) + '/' + CONVERT(Varchar(10), - DAY(tblIntake.EnrollDate)) + '/' + CONVERT(Varchar(10),YEAR(GETDATE()))As - DateTime)), 'Type' = '6 Month Appt' - - From tblIntake LEFT JOIN tblStaffMember ON tblIntake.StaffID = - tblStaffMember.StaffID LEFT JOIN tblMember ON - tblIntake.KEY = tblMember.KEY - - Where tblIntake.UnEnrollDate Is Null AND - DATEADD(m,6,CAST(CONVERT(Varchar(10),MONTH(tblIntake.EnrollDate)) + '/' + - CONVERT(Varchar(10),DAY(tblIntake.EnrollDate)) + '/' + - CONVERT(Varchar(10),YEAR(GETDATE()))As DateTime)) > GETDATE() AND - DATEADD(m, 6,CAST(CONVERT(Varchar(10),MONTH(tblIntake.EnrollDate)) + '/' + - CONVERT(Varchar(10),DAY(tblIntake.EnrollDate)) + '/' + - CONVERT(Varchar(10),YEAR(GETDATE()))As DateTime)) <= DATEADD(d, 45, GETDATE()) - -SO i have this wonderful query. Everything was running Okay until a user entered a leap year date for ENROLLDATE in tblIntake. How would I go about fixing it? My other UNION do the same SELECT statements with the exception of for when it does - - CONVERT(VARCHAR(10),YEAR(GetDate()-1)) as DateTime > '4th line from the bottom - CONVERT(VARCHAR(10),YEAR(GetDate()-1)) as DateTime > '2nd line from the bottom - -",LQ -"

    I'm using SSMS 2014. I am able to insert a snippet but they don't seem to respond to shortcuts (ie crproc[tab])

    - -

    Is this feature known to work?

    - -
    <?xml version=""1.0"" encoding=""utf-8"" ?>
    - <CodeSnippets xmlns=""http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"">
    - <CodeSnippet Format=""1.0.0"">
    - <Header>
    - <Title>prod1</Title>
    - <Description>testing</Description>
    - <Author> dale </Author>
    - <SnippetTypes>
    - <SnippetType>Expansion</SnippetType>
    - </SnippetTypes>
    - <Shortcut>crproc</Shortcut>
    - </Header>
    - <Snippet>
    - <Declarations>
    - <Literal>
    - <ID>DatabaseName</ID>
    - <ToolTip>Name of database.</ToolTip>
    - <Default>DB</Default>
    - </Literal>
    - </Declarations>
    - <Code Language=""SQL"">
    - <![CDATA[
    - ------------------------------------------------------
    - -- FILENAME: Template-Expansion.snippet
    - -- PURPOSE: Template for Expansion (Insert) snippets.
    - -- AUTHOR: Ken O. Bonn
    - -- DATE: May 15, 2013
    - ------------------------------------------------------
    - SET NOCOUNT ON;
    -
    - EXEC SP_HELPDB $DatabaseName$;
    -
    - ]]>
    - </Code>
    - </Snippet>
    - </CodeSnippet>
    - </CodeSnippets>
    -
    -",HQ -"

    DISCLAIMER: I am new to CMakeLists.txt, I have a working implementation and would like to improve and enhance it, problem described below:

    - -

    If I want root/sub-directories/ as separate sub-projects that can be compiled using the individual CMakeLists.txts in their folders I find myself literally copy pasting almost the entire root file CMakeLists.txt per sub-directory.

    - -

    I was wondering if there is a better way to have a main project and then sub-projects that get the shared dependencies from main project and can be compiled without cmake-ing the root CMakeLists.txt. My directory structure is;

    - -

    CMakeLists.txt (root project)
    -| __ sub_dir-1
    -| __ | __ CMakeLists.txt (sub-project)
    -| __ sub_dir-2
    -| __ | __ CMakeLists.txt (sub-project)
    -| __ sub_dir-3
    -| __ | __ CMakeLists.txt (sub-project)
    -...

    - -

    Essentially, I want to be able to:

    - -
      -
    1. cmake root/CMakeLists.txt, which creates an entire project that includes the sub-projects (I already have this implemented using individual CMakeLists.txts inside sub-directories.
    2. -
    3. cmake root/sub-dir/CMakeLists.txt and only compile the sub-project, which essentially also finds the necessary dependencies and includes them from maybe .cmake includes or root/CMakeLists.txt. What is the best way to approach this structure;

      - -
        -
      • while retaining the first bullet point of having the ability to compile it as an entire project.
      • -
      • And also not crowding the sub-dir/CMakeLists.txt too much with redundant code?
      • -
    4. -
    - -

    Appreciate any suggestions! Thank you.

    -",HQ -"

    The click event works fine, but the onmouseover event does not work.

    - -
    ProfImage = React.createClass({
    -
    -    getInitialState: function() {
    -        return { showIcons: false };
    -    },
    -
    -    onClick: function() {
    -
    -        if(this.state.showIcons == true) {
    -            this.setState({ showIcons: false });
    -        }
    -        else {
    -            this.setState({ showIcons: true });
    -        }
    -    },
    -
    -    onHover: function() {
    -        this.setState({ showIcons: true });
    -    },
    -
    -    render: function() {
    -
    -        return (
    -            <div>
    -            <span className=""major"">
    -                <img src=""/images/profile-pic.png"" height=""100"" onClick={this.onClick} onmouseover={this.onHover} />
    -            </span>
    -
    -
    -            { this.state.showIcons ? <SocialIcons /> : null }
    -            </div>
    -
    -        );
    -    }
    -
    -});
    -
    -",HQ -"

    Often I go about joining two dataframes together that have the same name. Is there a way to do this within the join-step so that I don't end up with a .x and a .y column? So the names might be 'original_mpg', and 'new_mpg'?

    - -
      library(dplyr)
    -  left_join(mtcars, mtcars[,c(""mpg"",'cyl')], by=c(""cyl""))
    -  names(mtcars) #ugh
    -
    -",HQ -"

    I am trying to make a POST request to the server (Which is a REST service)via javascript,and in my request i want to send a cookie.My below code is not working ,as I am not able to receive cookie at the server side.Below are my client side and server side code.

    - -

    Client side :

    - -
    var client = new XMLHttpRequest();
    -          var request_data=JSON.stringify(data);
    -var endPoint=""http://localhost:8080/pcap"";
    -var cookie=""session=abc"";
    -          client.open(""POST"", endPoint, false);//This Post will become put 
    -          client.setRequestHeader(""Accept"", ""application/json"");
    -          client.setRequestHeader(""Content-Type"",""application/json"");
    -
    -          client.setRequestHeader(""Set-Cookie"",""session=abc"");
    -          client.setRequestHeader(""Cookie"",cookie);
    -          client.send(request_data);
    -
    - -

    Server Side:

    - -
    public @ResponseBody ResponseEntity getPcap(HttpServletRequest request,@RequestBody PcapParameters pcap_params ){
    -
    -Cookie cookies[]=request.getCookies();//Its coming as NULL
    -        String cook=request.getHeader(""Cookie"");//Its coming as NULL
    -}
    -
    -",HQ -"

    I'd like to convert JSON-trees into unordered lists in Angular2. I know the recursive directive solution from Angular1 and I am pretty sure the solution in Angular2 will be recursive too.

    - -
        [
    -        {name:""parent1"", subnodes:[]},
    -        {name:""parent2"", 
    -            subnodes:[
    -                    {name:""parent2_child1"", subnodes:[]}
    -                 ],
    -        {name:""parent3"", 
    -            subnodes:[
    -                    {name:""parent3_child1"", 
    -                        subnodes:[
    -                                {name:""parent3_child1_child1"", subnodes:[]}
    -                             ]
    -                    }
    -                 ]
    -        }
    -    ]
    -
    - -

    to this unordered list

    - -
    <ul>
    -    <li>parent1</li>
    -    <li>parent2
    -        <ul>
    -            <li>parent2_child1</li>
    -        </ul>
    -    </li>
    -    <li>parent3
    -        <ul>
    -            <li>parent3_child1
    -                <ul>
    -                    <li>parent3_child1_child1</li>
    -                </ul>
    -            </li>
    -        </ul>
    -    </li>
    -</ul>
    -
    - -

    using Angular2 and ngFor. Anyone got an idea?

    -",HQ -"

    I am attempting to create a scatter plot. I have a list of numbers from 0 - 17 as well as an array with 18 values. I can plot the data as a line plot but when I try to plot as a scatter I get an error message I do not understand: TypeError: ufunc 'sqrt' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''

    - -

    What does this error message mean and how can I get the data to plot as a scatter?

    - -
    import numpy as np
    -import matplotlib.pyplot as plt
    -
    -y = [7316.0, 7453.25, 7518.25, 7711.5, 7448.0, 7210.25, 7416.75, 6960.75, 
    -     7397.75, 6397.5, 5522.75, 5139.0, 5034.75, 4264.75, 5106.0, 3489.5, 
    -     4712.0, 4770.0]
    -x = np.arange(0,18,1)
    -
    -plt.rcParams['legend.loc'] = 'best'
    -plt.figure(1)
    -plt.xlim(0, 20)
    -plt.ylim(0, 10000)
    -plt.scatter(x, y, 'r')
    -plt.show()
    -
    -",HQ -"

    Following the code example found on Ari Lerner ng-book2, and using Angular 2 beta 7, I'm trying to mock and spy a call to a service unsuccessfully.

    - -

    This is the main component using the service:

    - -

    user-list.component.ts

    - -
    import {Component, OnInit} from 'angular2/core';
    -import {UserService} from './user.service';
    -import {IUser} from './user.model';
    -
    -@Component({
    -  selector: 'user-list',
    -  providers: [UserService],
    -  template: `
    -    <div *ngFor=""#user of users"" class=""user"">
    -      <span class=""username"">Username: {{ user.username }}</span><br>
    -      <span class=""email"">Email: {{ user.email }}</span>
    -    </div>
    -  `
    -})
    -export class UserListComponent implements OnInit {
    -  public users: IUser[];
    -  private userService: UserService;
    -
    -  constructor(userService: UserService) {
    -    this.userService = userService;
    -  }
    -
    -  ngOnInit(): void {
    -    this.userService.getAllUsers().subscribe(
    -      (users: IUser[]) => {
    -        this.users = users;
    -      },
    -      (error: any) => {
    -        console.log(error);
    -      }
    -    );
    -  }
    -}
    -
    - -

    And this is the service itself.

    - -

    user.service.ts

    - -
    import {Injectable} from 'angular2/core';
    -import {Http} from 'angular2/http';
    -import {Observable} from 'rxjs/Observable';
    -import 'rxjs/Rx';
    -import {IUser} from './user.model';
    -
    -@Injectable()
    -export class UserService {
    -  private http: Http;
    -  private baseUrl: string = 'http://jsonplaceholder.typicode.com/users';
    -
    -  constructor(http: Http) {
    -    this.http = http;
    -  }
    -
    -  public getAllUsers(): Observable<IUser[]> {
    -    return this.http.get(this.baseUrl)
    -      .map(res => res.json());
    -  }
    -}
    -
    - -

    In order to test the UserListComponent, I'm trying to mock the UserService and spy its method call getAllUser using the following code:

    - -

    user-list.component.spec.ts

    - -
    import {
    -  describe, 
    -  expect, 
    -  it,
    -  injectAsync,
    -  TestComponentBuilder,
    -  ComponentFixture,
    -  setBaseTestProviders,
    -} from 'angular2/testing';
    -
    -import {SpyObject} from 'angular2/testing_internal';
    -
    -import {
    -  TEST_BROWSER_PLATFORM_PROVIDERS, 
    -  TEST_BROWSER_APPLICATION_PROVIDERS
    -} from 'angular2/platform/testing/browser';
    -
    -import {provide} from 'angular2/core';
    -
    -import {UserListComponent} from './user-list.component';
    -import {UserService} from './user.service';
    -
    -class SpyUserService extends SpyObject {
    -  public getAllUsers: Function;
    -  public fakeResponse: any = null;
    -
    -  constructor() {
    -    super(UserService);
    -    this.getAllUsers = this.spy('getAllUsers').andReturn(this);
    -  }
    -
    -  public subscribe(callback) {
    -    callback(this.fakeResponse);
    -  }
    -
    -  public setResponse(data: any): void {
    -    this.fakeResponse = data;
    -  }
    -}
    -
    -describe('When rendering the UserListComponent and mocking the UserService', () => {
    -
    -  setBaseTestProviders(TEST_BROWSER_PLATFORM_PROVIDERS, TEST_BROWSER_APPLICATION_PROVIDERS);  
    -
    -  it('should show one mocked user', injectAsync([TestComponentBuilder], (tcb: TestComponentBuilder) => {
    -
    -    let spyUserService = new SpyUserService();
    -    spyUserService.setResponse([{
    -      username: 'ryan',
    -      email: 'ryan@gmail.com'
    -    }]);
    -
    -    return tcb
    -      .overrideProviders(UserListComponent, [provide(UserService, {useValue: spyUserService})])
    -      .createAsync(UserListComponent)
    -      .then((fixture: ComponentFixture) => {
    -        fixture.detectChanges();
    -        expect(spyUserService.getAllUsers).toHaveBeenCalled();
    -      });
    -  }));
    -
    -});
    -
    - -

    When using karma to run the test I'm getting the following console error:

    - -
    Chrome 48.0.2564 (Mac OS X 10.11.3) ERROR
    -  Uncaught TypeError: Cannot read property 'isSlow' of null
    -  at /Users/david/apps/sandbox/angular2-testing-cookbook/src/tests.entry.ts:19430
    -
    - -

    Do anybody know why is this error being thrown or the proper way to mock and spy a service for unit testing an Angular 2 component?

    -",HQ -"

    I have the List of SourceObjects and I need to convert it to the List of ResultObjects.

    - -

    I can fetch one object to another using method of ResultObject:

    - -
    convertFromSource(srcObj);
    -
    - -

    of course I can do it like this:

    - -
    public void onNext(List<SourceObject> srcObjects) {
    -   List<ResultsObject> resObjects = new ArrayList<>();
    -   for (SourceObject srcObj : srcObjects) {
    -       resObjects.add(new ResultsObject().convertFromSource(srcObj));
    -   }
    -}
    -
    - -

    but I will be very appreciate to someone who can show how to do the same using rxJava.

    -",HQ -"

    I'm pretty surprised this isn't in the docs that I could find - but is there any way to just tell tsc to run against all files in a directory and its children without going through a whole tsconfig.json setup?

    -",HQ -"

    The syntax looks right to me, any help would be appreciated!

    - -
    mysql> select fieldnames from tablename limit 5;
    -+--------------------------------------------------------+
    -| fieldnames                                             |
    -+--------------------------------------------------------+
    -| {""example-field-1"": ""val2""}                            |
    -| {""example-field-2"": ""val1""}                            |
    -| {""example-field-1"": ""val1"", ""example-field-3"": ""val1""} |
    -| {""example-field-2"": ""val1""}                            |
    -| {""example-field-2"": ""val2""}                            |
    -+--------------------------------------------------------+
    -mysql> select JSON_EXTRACT(fieldnames, '$.example-field-1') from tablename;
    -ERROR 3143 (42000): Invalid JSON path expression. The error is around character position 17 in '$.example-field-1'.
    -
    - -

    MySQL 5.7.10

    -",HQ -"Here is my python code written in vim editor;whenever i run it via command prompt i get the error 'str'object has not attribute 'subs' - -from sympy import * -x,a_test,b_test,fa_test,fb_test=symbols('x a_test b_test fa_test fb_test') -expr=raw_input(""enter the equation"") -print expr -print ""hello"" -try: - print ""hello"" - inc=0 - a=inc - fa=expr.subs(x,inc) - print ""hello"" - if(fa<0): - print ""hello"" - inc+=1 - fb=expr.subs(x,inc) - if(fb<=0): - while(fb<=0): - inc+=1 - else: - print ""hello"" - inc+=1 - fb=expr.subs(x,inc) - if(fb<=0): - while(fb<=0): - inc+=1 - b=inc - print a - print b - print fa - print fb -except Exception,e: - print e -",LQ -"I'm beginner:( -How I can Check if numbers are in a specific range ? -for example -I have to find an number between 0 to 500 - - int k = 200; -if (k<=0 && k>500){ - if (k<=0 && k>249){",LQ -"

    I am trying to create a tableview which starts the header in the middle of the tableview and then can be scrolled up with the added tableView Cells to the top then stops, and then the tableview cells can just scroll ""under"" it. I got the header to be in the middle of the tableview, but the tableView Cells just scroll on top of it, and the header doesnt really scroll to the top. it just stay where it is. I want to be able to let the header move as you scroll the list, and then stops when it reaches the top of the list, and then its just the tableView Cells that are moving afterwards.

    - -

    I am using the latest version of XCode

    -",HQ -"

    When running a git svn clone or git svn fetch against a large Subversion repository (100k+ commits), the fetch regularly stops with:

    - -
    Auto packing the repository in background for optimum performance.
    -See ""git help gc"" for manual housekeeping.
    -error: The last gc run reported the following. Please correct the root cause and remove .git/gc.log.
    -Automatic cleanup will not be performed until the file is removed.
    -
    -warning: There are too many unreachable loose objects; run 'git prune' to remove them.
    -
    -gc --auto: command returned error: 255
    -
    - -

    In order to recover I have to follow the instructions, run a more aggressive prune and gc, remove the log-file and continue, only to have it happen again after another batch of say 10k commits are read.

    - -

    How can this problem be avoided?

    -",HQ -"

    Case: I have Sales table in BQ and item_num column contains values 1, -1 and 0. I want to count how many cases I have for each value.

    - -

    Tried a simple query below, but count returns exactly the same number for each case.. What I am missing?

    - -
    SELECT 
    -count(if(item_num > 0,1, 0)) as buysplus,
    -count(if(item_num < 0,1, 0)) as buysminus,
    -count(if(item_num = 0,1, 0)) as buyszero
    -from MyShop.Sales
    -
    - -

    thanks

    -",HQ -"

    I got this message while selecting build for internal testing.it says about setting ITSAppUsesNonExemptEncryption in info.plist what does it mean? is it necessary?

    - -

    -",HQ -"When i am searching for core interfaces in Hibernate i found that Configuration as a interface. If it is an interface how can we create object for that directly like below. -Configuration cfg = new Configuration().configure();",LQ -"So the code is: - - X = range(4, 7) - Y = range(2) - X[2] = Y - print X[2][0] - print X[2][1] - - X[2][0] = 9 - print Y[0] -And the output is - - 0 - 1 - 9 -What exactly is the code doing to get that output? Also if the code looked like - - X = range(4, 7) - print X[-1] -Then what would the output be because I'm confused about what negative values do. ",LQ -"How can I remove this error? - String1:= inttoStr(instance.CurrentSpeed); - UDPSocket1.Sendln(String1);",LQ -"I'm currently working in Microsoft Visual studio and I am doing a project for school where I have to make an app that lets you book seats at a cinema and see the description of the movie you have selected as well as leave/read a review. -In my app I have decided that I want to include pictures (basically a poster for each of the movies); I have made my ""Movies"" table and have ""idf"" as my primary key. I have added a ""poster"" column in my table definition and I have set its type to image; my question is, how do I assign a certain image to a movie, so as to have access to it and to be able to display it later using a query of some sort? -",LQ -"

    Can Android Studio use OpenJDK 1.8 or does it require Oracle JDK on Linux? It would be easier to use OpenJDK because it comes installed on Fedora.

    - -

    I'm running 64 bit Fedora-23 linux with Android Studio 1.5.1.build AI-141.2456560 on an Intel Haswell i7 chip.

    - -
    $ java -version
    -openjdk version ""1.8.0_72""
    -OpenJDK Runtime Environment (build 1.8.0_72-b15)
    -OpenJDK 64-Bit Server VM (build 25.72-b15, mixed mode)
    -
    -$ ./java -version
    -java version ""1.8.0_73""
    -Java(TM) SE Runtime Environment (build 1.8.0_73-b02)
    -Java HotSpot(TM) 64-Bit Server VM (build 25.73-b02, mixed mode)
    -
    -$ uname -a
    -Linux localhost.localdomain 4.3.5-300.fc23.x86_64 #1 SMP Mon Feb 1 03:18:41 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
    -
    -$ more build.txt 
    -AI-141.2456560
    -
    -",HQ -"i cant assign a specific char like ""X"" in part of my input string. -for example i want to assign a default char with substring method in specific range of my input string. how can i assign a specific char in specific range of my -input string -can you help me? -thx",LQ -"

    The two shadow-piercing combinators have been deprecated as stated in https://www.chromestatus.com/features/6750456638341120
    Then what's the substitude for achieving the same thing, or this shadow-piercing feature has been completely abandoned?

    -",HQ -"

    I've got a significant set of data, and want to call slow, but clean method and than call fast method with side effects on result of the first one. I'm not interested in intermediate results, so i would like not to collect them.

    - -

    Obvious solution is to create parallel stream, make slow call , make stream sequential again, and make fast call. The problem is, ALL code executing in single thread, there is no actual parallelism.

    - -

    Example code:

    - -
    @Test
    -public void testParallelStream() throws ExecutionException, InterruptedException
    -{
    -    ForkJoinPool forkJoinPool = new ForkJoinPool(Runtime.getRuntime().availableProcessors() * 2);
    -    Set<String> threads = forkJoinPool.submit(()-> new Random().ints(100).boxed()
    -            .parallel()
    -            .map(this::slowOperation)
    -            .sequential()
    -            .map(Function.identity())//some fast operation, but must be in single thread
    -            .collect(Collectors.toSet())
    -    ).get();
    -    System.out.println(threads);
    -    Assert.assertEquals(Runtime.getRuntime().availableProcessors() * 2, threads.size());
    -}
    -
    -private String slowOperation(int value)
    -{
    -    try
    -    {
    -        Thread.sleep(100);
    -    }
    -    catch (InterruptedException e)
    -    {
    -        e.printStackTrace();
    -    }
    -    return Thread.currentThread().getName();
    -}
    -
    - -

    If I remove sequential, code executing as expected, but, obviously, non-parallel operation would be call in multiple threads.

    - -

    Could you recommend some references about such behavior, or maybe some way to avoid temporary collections?

    -",HQ -"

    I am trying out the Slack's API using the incoming webhook feature, posting messages works flawlessly, but it doesn't seem to allow any file attachments.

    - -

    Looking through I understand I have to use a completely different OAuth based API, but creating more tokens just for the purpose of uploading a file seems odd when posting messages works well, is there no way to upload files to slack with the incoming webook?

    -",HQ -"

    I have the following setup:

    - -
    // enums.ts
    -export enum DocumentType {
    -  Email = 0,
    -  Unknown = 1
    -}
    -
    - -

    -

    - -
    // remote.ts
    -/// <reference path=""./remote.d.ts"" />
    -import enums = require('./enums');
    -
    -class Remote implements test.IRemote {
    -  public docType: enums.DocumentType;
    -
    -  constructor() {
    -    this.docType = enums.DocumentType.Unknown;
    -  }
    -}
    -
    -export = Remote;
    -
    - -

    -

    - -
    // remote.d.ts
    -import * as enums from './enums';
    -
    -
    -declare module test {
    -  export interface IRemote { 
    -    docType: enums.DocumentType;
    -  } 
    -}
    -
    - -

    But when I run tsc over this I get Cannot find namespace 'test' from remotes.ts. What am I missing?

    - -

    Other information that might be useful: I've recently upgraded from Typescript 1.5 to Typescript 1.8 and replaced the use of const enums with plain enums as in the example.

    -",HQ -"

    I have some setup I want during a constructor, but it seems that is not allowed

    - -

    - -

    Which means I can't use:

    - -

    - -

    How else should I do this?

    - -

    Currently I have something outside like this, but this is not guaranteed to run in the order I want?

    - -
    async function run() {
    -  let topic;
    -  debug(""new TopicsModel"");
    -  try {
    -    topic = new TopicsModel();
    -  } catch (err) {
    -    debug(""err"", err);
    -  }
    -
    -  await topic.setup();
    -
    -",HQ -"

    Whenever I have the file open in Excel and run the code, I get the following error which is surprising because I thought read_excel should be a read only operation and would not require the file to be unlocked?

    - -
        Traceback (most recent call last):
    -  File ""C:\Users\Public\a.py"", line 53, in <module>
    -    main()
    -  File ""C:\Users\Public\workspace\a.py"", line 47, in main
    -    blend = plStream(rootDir);
    -  File ""C:\Users\Public\workspace\a.py"", line 20, in plStream
    -    df = pd.read_excel(fPath, sheetname=""linear strategy"", index_col=""date"", parse_dates=True)
    -  File ""C:\Users\Public\Continuum\Anaconda35\lib\site-packages\pandas\io\excel.py"", line 163, in read_excel
    -    io = ExcelFile(io, engine=engine)
    -  File ""C:\Users\Public\Continuum\Anaconda35\lib\site-packages\pandas\io\excel.py"", line 206, in __init__
    -    self.book = xlrd.open_workbook(io)
    -  File ""C:\Users\Public\Continuum\Anaconda35\lib\site-packages\xlrd\__init__.py"", line 394, in open_workbook
    -    f = open(filename, ""rb"")
    -PermissionError: [Errno 13] Permission denied: '<Path to File>'
    -
    -",HQ -"

    I'm currently getting an error which points me to these lines in the header file produced by protoc:

    - -
    #if 2006001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
    -#error This file was generated by an older version of protoc which is
    -#error incompatible with your Protocol Buffer headers.  Please
    -#error regenerate this file with a newer version of protoc.
    -#endif
    -
    - -

    But my protoc version matches the one above:

    - -
    protoc --version
    -libprotoc 2.6.1
    -
    - -

    What am I doing wrong?

    - -

    Originally my protoc version was 3.0.0 then reinstalled it by syncing back to 2.6.1 and doing the steps; make distclean, ./configure , make, make install to install the desired 2.6.1 version. I needed the older version since that's the one installed in our servers.

    -",HQ -"

    I am using redis and trying to open CLI of redis using this:

    - -
    $redis-cli -h 127.0.0.1 -p 6379 -a mysupersecretpassword
    -
    - -

    and getting and error :

    - -
    -

    (error) NOAUTH Authentication required

    -
    - -

    why so ?

    -",HQ -"

    GCC 5.3 has added a new option: -fno-semantic-interposition

    - -
    -

    A new -fno-semantic-interposition option can be used to improve code - quality of shared libraries where interposition of exported symbols is - not allowed.

    -
    - -

    This sounds like this is something useful for C++ projects where interposition can't be used for whatever reason, but where latency is a concern.

    - -

    However, the description is fairly vague. Is anyone able to clarify how this option works exactly?

    -",HQ -"

    I have the following code and I get the error 'Duplicate Declaration query_url'.

    - -
      switch(condition) {
    -    case 'complex':
    -      const query_url = `something`;
    -      break;
    -    default:
    -      const query_url = `something`;
    -      break;
    -  }
    -
    - -

    I understand that query_url is getting declared twice which isn't right. But i don't know how to resolve this. Can someone please help on what should be the correct way to make this work?

    -",HQ -"

    How I can upload new version into AppStore without iPad support.

    - -

    -",HQ -"

    How to get indices of non-diagonal elements of a numpy array?

    - -
    a = np.array([[7412, 33, 2],
    -              [2, 7304, 83],
    -              [3, 101, 7237]])
    -
    - -

    I tried as follows:

    - -
    diag_indices = np.diag_indices_from(a)
    -print diag_indices
    -(array([0, 1, 2], dtype=int64), array([0, 1, 2], dtype=int64))
    -
    - -

    After that, no idea... -The expected result should be:

    - -
    result = [[False, True, True],
    -        [True, False, True],
    -         [True, True, False]]
    -
    -",HQ -"

    In my Yii2 application i've a script that need Jquery to be loaded in the head of the page.

    - -

    I know there's a parameter that can be setted inside AppAssets.php :

    - -
    public $jsOptions = [
    -    'position' => \yii\web\View::POS_HEAD
    -];
    -
    - -

    but this will render all the Javascripts Files on the head of the page. -Is possibile to load only Jquery on the head?

    - -

    Thanks in advance for all the help

    -",HQ -"

    Want to import only certain range of data from an excel spreadsheet (.xlsm format as it has macros) into a pandas dataframe. -Was doing it this way:

    - -
    data    = pd.read_excel(filepath, header=0,  skiprows=4, nrows= 20, parse_cols = ""A:D"")
    -
    - -

    But it seems that nrows works only with read_csv() ? -What would be the equivalent for read_excel()?

    -",HQ -"first i make index page containing frame and i name the all frame as nasa google you tube etc . -then on search page - - - - -s - -e - - - - -but this is not working ,every time it open in new tab ,also i want to open both the pages bye a single button . -what should i do ? -thank you",LQ -"

    I want to get the text of a selected option input and display it somewhere else. I know how to do it using jQuery but I want to know how can we do it using Vuejs.

    - -

    Here is how we do in jQuery. I mean the text of Selected Option not the value.

    - -
    var mytext = $(""#customerName option:selected"").text();
    -
    - -

    Here is my HTML

    - -
        <select name=""customerName"" id="""">
    -         <option value=""1"">Jan</option>
    -         <option value=""2"">Doe</option>
    -         <option value=""3"">Khan</option>
    -   </select>
    -
    - {{customerName}}
    -
    - -

    Now how can I display the selected option under it. like Jan, Doe, Khan ?

    -",HQ -"

    Why is it prohibited to autogenerate many constructors visible to Java from class primary constructor with default params likes this?

    - -
    @JvmOverloads
    -class Video(private val id: Long, val ownerId: Long, var title: String? = null, var imgLink: String? = null, var videoLink: String? = null,
    -        var description: String? = null, var created: Date? = null, var accessKey: String? = null, var duration: Long? = null,
    -        var views: Long? = null, var comments: Long? = null) : Entity
    -
    - -
    -

    This annotation is not applicable to target 'class'

    -
    -",HQ -"

    I have a problem uploading my application into the Store via Xcode, this one in particular.

    - -

    - -

    I saw a lot of post about this error, but all are talking about Extension App, that I do not use.

    - -

    I'm using a Custom framework and Cocoapods.

    - -

    You can see here my tree :

    - -

    - -
      -
    • XXX is my project app name
    • -
    • SharedXXX is my custom framework
    • -
    • Pods is the project created by cocoa pods
    • -
    - -

    Here is my cocoa podFile :

    - -
    use_frameworks!
    -link_with 'XXX', 'SharedXXX'
    -source 'https://github.com/CocoaPods/Specs.git'
    -platform :ios, '8.1'
    -
    -
    -workspace 'XXX'
    -
    -xcodeproj 'XXX/XXX.xcodeproj'
    -xcodeproj 'Shared/SharedXXX.xcodeproj'
    -
    -def default_pods
    -    pod 'Reveal-iOS-SDK', :configurations => ['Debug']
    -    pod ""SnapKit"", '~> 0.17.0'
    -    pod ""DKChainableAnimationKit"", '~> 1.6.0'
    -    pod ""AsyncSwift""
    -end
    -
    -def shared_pods
    -    pod ""Alamofire"", '~> 3.0'
    -    pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
    -    pod 'ReachabilitySwift', :git => 'https://github.com/ashleymills/Reachability.swift'
    -end
    -
    -target :XXX do
    -    xcodeproj 'XXX/XXX.xcodeproj'
    -    default_pods
    -    shared_pods
    -end
    -
    -target :XXXDev do
    -    xcodeproj 'XXX/XXX.xcodeproj'
    -    default_pods
    -    shared_pods
    -end
    -
    -target :SharedXXX do
    -    xcodeproj 'Shared/SharedXXXX.xcodeproj'
    -    shared_pods
    -end
    -
    - -

    Build settings for custom framework (SharedXXX) :

    - -

    - -

    I set the Embedded property to Yes

    - -

    General Settings for custom framework (SharedXXX) :

    - -

    - -

    The framework provided by Cocoapods is linked.

    - -

    And to finish,

    - -

    The General Settings to the main project (App Project : called XXX on the tree)

    - -

    :

    - -

    Any idea ?

    -",HQ -"

    I was wondering how do I move all of my api routes in express into a separate routes.js file from my server.js file

    - -

    I have a long list of api routes using app.use() for each route. So each route is in its own file, e.g. movies.js, movie.js but when I list these it makes for a long list in server.js

    - -

    So I want to remove the list of api endpoints section from the below server.js out to a routes.js file.

    - -

    Here is what I have currently:

    - -

    server.js

    - -
    import path from 'path'
    -import express from 'express'
    -import webpack from 'webpack'
    -import webpackDevMiddleware from 'webpack-dev-middleware'
    -import webpackConfig from './webpack.config.dev'
    -
    -const app = express();
    -
    -/* api endpoints, can be many more, I want them in routes.js */    
    -app.use('/api/movies', require('./src/api/routes/movies'))
    -app.use('/api/movie', require('./src/api/routes/movie'))
    -
    -app.use(webpackDevMiddleware(webpack(webpackConfig), {
    -  publicPath: webpackConfig.output.publicPath
    -}));
    -
    -app.use('/public', express.static(__dirname + '/public'))    
    -
    -app.get('*', function(req, res) {
    -  res.sendFile(path.join(__dirname, 'index.html'));
    -});
    -
    -
    -app.listen(3000, 'localhost', function (err) {
    -  if (err) {
    -    console.log(err);
    -    return;
    -  }
    -})
    -
    - -

    An example route

    - -

    movies.js

    - -
    var express = require('express');
    -var request = require(""request"");
    -var router = express.Router();
    -
    -router.get('/', function(req, res) {
    -  res.json({})
    -});
    -
    -module.exports = router;
    -
    -",HQ -"i have a difficult by build a regex. -Suppose there is a html clip as under. -I want to use Javascript to cut the part with the link of ""apple""(which is inside of the ) -I make the expression : - - /apple<\/a>[\s\S]*?<\/tbody>/g - -But the result is different as i wanted. Each match contains more than one block of . How it should be? Regards!!!! - - - - - cat - - - - - apple - - - - - cat - - - - - tiger - - - - - banana - - - - - peach - - - - - apple - - - - - banana - - ",LQ -"I tried a couple of times converting this date format Wed, 02 April 2015 15:50:53 SAST to this format YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ] but with no luck so far. -Is there any better way to this, that I might have missed? -Will appreciate any help",LQ -"

    Say I have the following class:

    - -
    class MyClass
    -{
    -    private int memberVar;
    -
    -    public MyClass(int passedInVar)
    -    {
    -        memberVar = passedInVar;       
    -    }
    -}
    -
    - -

    In the constructor you pass in an int and assign it to a private member variable.

    - -

    My question is, is it better to pass that int variable around between private methods of the class, or to not pass the int variable as a parameter and instead have each private method directly access the private membervar?

    - -

    i.e. Is this (Example A):

    - -
    class MyClass
    -{
    -    private int memberVar;
    -
    -    public MyClass(int passedInVar)
    -    {
    -        memberVar = passedInVar;       
    -    }
    -
    -    public MyPublicMethod()
    -    {
    -        MyPrivateMethod(memberVar);
    -    }
    -
    -    public MyPrivateMethod(int variable)
    -    {
    -        // Do something with passed in variable...
    -    }
    -}
    -
    - -

    better than this (Example B):

    - -
    class MyClass
    -{
    -    private int memberVar;
    -
    -    public MyClass(int passedInVar)
    -    {
    -        memberVar = passedInVar;       
    -    }
    -
    -    public MyPublicMethod()
    -    {
    -        MyPrivateMethod();
    -    }
    -
    -    public MyPrivateMethod()
    -    {
    -        // Do something with memberVar...
    -    }
    -}
    -
    - -

    The reason I ask is that I find myself switching between the two styles.

    - -

    I find that example the style of example A shows more intent for the code. You can see what is being passed between private methods so it's more obvious what is being affected by that method.

    - -

    Whereas Example B is cleaner because the memberVar isn't being passed between private methods. However the code feels more ""side-effecty"" because it's not always obvious which private member variables the method is acting on.

    - -

    I'd appreciate your opinions on which approach you consider best.

    -",HQ -"

    As in title. I' m aware of textFile but as the name suggests, it works only on text file. -I would need to access the files/directories inside a path on HDFS (or local path). I'm using pyspark

    - -

    Thanks for help

    -",HQ -"Can someone tell me how can I declare a typedef struct in other typedef struct? - -`typedef struct { - char* type; - char* destination; - float price; - typedef struct { - int date; - int month; - int year; - }date; -}Offer; -` -I tried something like this but I don't know if its correctly. I want to declare in typedef struct another typedef struct for date format. - -Thanks",LQ -"

    I'm trying to do something a little different and I couldn't find any way to do it. Maybe my approach is wrong but either way I figured I might find some help here.

    - -

    I have a Laravel 5 project and you know how you can get the current route name by using:

    - -
    \Request::route()->getName();
    -
    - -

    So I'm actually looking to do the exact opposite. Maybe not the exact opposite but what I need is to retrieve my route URL based on the name that I gave to that route. -Here is my dream scenario.

    - -

    my routes.php:

    - -
    Route::any('/hos', ""HospitalController@index"")->name(""hospital"");
    -
    - -

    What I would like to do in my controller that I have no idea how to or even if is possible:

    - -
    // I have no idea if this is possible but thats what I'm trying to accomplish
    -$my_route_url = \Request::route()->getURLByName(""hospital"");
    -
    -echo $my_route_url; // this would echo: ""/hos""
    -
    - -

    I might be using the wrong approach here so maybe you guys can help me out and shine some light on the issue.

    - -

    Thanks!

    -",HQ -"

    Update of Google Play Services is required for hangouts, google+ and other apps. But Google Play Services (8.4.89) breaks GSM network, with this errors:

    - -
    -

    E/WifiManager(2841): mWifiServiceMessenger == null - E/MPlugin(2947): Unsupported class: com.mediatek.common.telephony.IOnlyOwnerSimSupport - E/WifiManager(2947): mWifiServiceMessenger == null - E/MPlugin(1814): Unsupported class: - com.mediatek.common.telephony.IOnlyOwnerSimSupport - E/GmsWearableNodeHelper(1814): GoogleApiClient connection failed: - ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, - message=null} 03-02 16:51:54.329: E/MPlugin(2878): Unsupported class: - com.mediatek.common.telephony.IOnlyOwnerSimSupport - E/ReceiverController(803): filterReceiver() ignored with null action - 03-02 16:51:54.676: E/ReceiverController(803): filterReceiver() - ignored with null action - E/BaseAppContext(2878): - Tried to stop global GMSCore RequestQueue. This is likely unintended, - so ignoring. - E/MPlugin(1814): Unsupported class: - com.mediatek.common.telephony.IOnlyOwnerSimSupport 03-02 16:51:56.209: - E/MPlugin(3054): Unsupported class: - com.mediatek.common.telephony.IOnlyOwnerSimSupport 03-02 16:51:56.285: - E/Babel_SMS(3054): canonicalizeMccMnc: invalid mccmnc 03-02 - E/Babel_SMS(3054): canonicalizeMccMnc: invalid mccmnc - nullnull - E/SQLiteLog(3054): (284) automatic index - on conversation_participants_view(conversation_id) 03-02 16:51:56.910: - E/SQLiteLog(3054): (284) automatic index on

    -
    - -

    After update Google Play Services with Google Market, GSM does not have any coverage, and no SIM is present (according to Android). -Mobile is Dual SIM based on Mediatek 6735 with Android 5.1 -Uninstalling Google Play Services updates, and rebooting GSM works again. -A possible workaround, reboot with original Google Play Services, and after this install Google Play Services updates.

    - -

    Google Play Services bug, incompatible device, ...?

    -",HQ -"How can we know that which type of linker(static/dynamic) our system is using? - -Is it decided on type of library(static/dynamic) we have used or is there any other thing?",LQ -"

    I have a Xamarin Forms (2.0) Android app where I'm trying to show an image. I've got an icon called icon-pages-r1.png which I'm trying to show using the following code:

    - -
    <Image Source=""icon-pages-r1.png"" />
    -
    - -

    The image isn't showing though. When I change the source to Icon.png (the default Xamarin icon) it does work.

    - -

    The image is a semi-transparent PNG (thus a colored icon in the middle and transparent around it), it's 46x46 and in Windows it shows fine as item type PNG File. I tried opening the image in Paint and re-saving it (which kills the transparency) but that doesn't work either. The Build Action for the images are AndroidResource with Copy to Output Directory set to Do not copy.

    - -

    Does anyone know why I can't get this image to show in my app?

    -",HQ -Why we can NOT perform Commit in Pl_SQL triggers? If triggers are auto commit why we need PRAGMA autonomous transaction used for commit?Please explain .. am fully confused about this.Thanks in advance.,LQ -"I need to add a repeat loop that repeats the flip 10 times - -import random - -def coinflip() - return random.randrange(2) - -if coinflip == 0: - print(""Heads"") -else: - print(""Tails"") -",LQ -"

    This is probably a simple issue but something is wrong with my Python tools for visual studio. When I first started using VS2015 for Python it would auto-indent whenever I used a colon. Now VS2015 is just acting like a text editor with syntax highlighting. I tried uninstalling and reinstalling the Python tools but that did not work. How do I fix Visual Studio to auto-style as I write Python again?

    -",HQ -"

    I believe I have bound my data correctly, but I can't seem to get my text property for each SelectListItem to show properly.

    - -

    My model:

    - -
    public class Licenses
    -    {
    -        public SelectList LicenseNames { get; set; }
    -        public string SelectedLicenseName { get; set; }
    -    }
    -
    - -

    Controller:

    - -
    [HttpGet]
    -    public ActionResult License()
    -    {
    -        try
    -        {
    -            DataTable LicsTable = BW.SQLServer.Table(""GetLicenses"", ConfigurationManager.ConnectionStrings[""ProfressionalActivitiesConnection""].ToString());
    -            ProfessionalActivities.Models.Licenses model = new ProfessionalActivities.Models.Licenses();
    -            model.LicenseNames = new SelectList(LicsTable.AsEnumerable().Select(row =>
    -            new SelectListItem
    -            {
    -                Value = row[""Description""].ToString(),
    -                Text = ""test""
    -            }));
    -            return PartialView(""_AddLicense"", model);
    -        }
    -        catch (Exception ex)
    -        {
    -            var t = ex;
    -            return PartialView(""_AddLicense"");
    -        }
    -    }
    -
    - -

    View:

    - -
    @Html.DropDownList(""LicenseNames"", new SelectList(Model.LicenseNames, ""Value"", ""Text"", Model.LicenseNames.SelectedValue), new { htmlAttributes = new { @class = ""form-control focusMe"" } })
    -
    -",HQ -"

    I have a many to many relationship between two models, users and roles. Is there a difference between saving a relationship using the save() method and using the attach() method?

    - -
    $user->roles()->save($role, ['expires' => $expires]); //using save
    -$user->roles()->attach($roleId, ['expires' => $expires]);// using attach
    -
    - -

    Are the two equivalent? I personally dont see the difference. Thoughts?

    -",HQ -"

    I'm having a hard time figuring out how to convert this. Here is what I want:

    - -
    int i = 5900;
    -
    -BigDecimal bD = new BigDecimal(i);
    -
    - -

    I need bD to be 59.00 but I can't figure out how to get this result. All I've been able to get is 5900 as type BigDecimal. Any suggestion would help, thanks.

    -",HQ -"For some reason I'm not able to find any sort of official doc telling me what the maximum range is for arc4random. I've seen in some non-authoritarian sources that it's 2^32 - 1, a little over 4 billion. - -Can anyone confirm this? If so, can you link to an official doc showing this number somewhere? I'm trying to generate a random number on my iOS app and need to have a pretty official upper end for the algorithm to work correctly. Thanks in advance!",LQ -"I cannot seem to be able to ForceDirectories on a NAS partition with Delphi. -I can create a folder on the NAS with Windows explorer fine. -Code is: - - procedure TForm3.Button1Click(Sender: TObject); - var - tempDir: String; - begin - tempDir := 'z:\ttt\ttttest'; - if NOT DirectoryExists(tempDir) then - if System.SysUtils.ForceDirectories(tempDir) then - ShowMessage('Dir: ' + tempDir + ' Forced alright') - else - ShowMessage('Dir: ' + tempDir + ' Force FAILED with error : '+ IntToStr(GetLastError)); - end; -Z: is the Western Digital Network Attached Storage which works fine in all other respects. -The code returns error 3 every time. -Same code works alright on local drives. -Delphi Seattle, Windows 10 64 bit.",LQ -"

    I am trying to make code iris plugin work on Android studio.

    - -

    I press right click -> Create Code Iris graph and then I get a notification that my graph is ready. But I do not know when this graph is stored, what is the name of the file created and how to open it. Any ideas?

    -",HQ -"

    Is there a way at all to query on the global secondary index of dynamodb using boto3. I dont find any online tutorials or resources.

    -",HQ -"

    I am working on a React Native project and I'm using ES6 classes for React components.

    - -

    Since React components defined via ES6 classes don't have autobinding, the React team recommends combining ES7 property initializers with arrow functions to create the same effect.

    - -

    In order to be consistent and prevent confusion with this-binding, I am using ES7 property initializers for all component methods:

    - -
    class Foo extends React.Component {
    -  constructor(props) {
    -    super(props);
    -    ...
    -  }
    -
    -  componentDidMount = () => {
    -      ...
    -  };
    -
    -  bar = () => {
    -    ...
    -  };
    -
    -  render = () => {
    -    ...
    -  };
    -}
    -
    - -

    I was wondering -- are there any serious performance caveats to be aware of? In particular, I'm wondering about the render() method.

    - -

    Overall, does this seem like a good approach?

    -",HQ -"

    I have this small Dockerfile

    - -
    FROM alpine:3.3
    -RUN apk --update add python
    -CMD [""python"", ""-c"", ""import urllib2; response = urllib2.urlopen('https://www.python.org')""]
    -
    - -

    Building it with docker build -t alpine-py/01 . and then running it with docker run -it --rm alpine-py/01 creates the following output

    - -
    Traceback (most recent call last):
    -  File ""<string>"", line 1, in <module>
    -  File ""/usr/lib/python2.7/urllib2.py"", line 154, in urlopen
    -    return opener.open(url, data, timeout)
    -  File ""/usr/lib/python2.7/urllib2.py"", line 431, in open
    -    response = self._open(req, data)
    -  File ""/usr/lib/python2.7/urllib2.py"", line 449, in _open
    -    '_open', req)
    -  File ""/usr/lib/python2.7/urllib2.py"", line 409, in _call_chain
    -    result = func(*args)
    -  File ""/usr/lib/python2.7/urllib2.py"", line 1240, in https_open
    -    context=self._context)
    -  File ""/usr/lib/python2.7/urllib2.py"", line 1197, in do_open
    -    raise URLError(err)
    -urllib2.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)>
    -
    - -

    Yesterday I got bitten by the recent OpenSSL 1.0.2g release, which caused py-cryptograpy to not compile. Luckily the guys from py-cryptography released a new version on PyPI a couple of hours later. The issue was that a function in OpenSSL got a new signature.

    - -

    Could this be related or am I missing something?

    -",HQ -"

    I tried add new module to project in IntellijIDE 15 and I have error

    - -
    Failed to create a Maven project
    -'C:/gitProjects/mayProj/pom.xml' already exists in VFS
    -
    - -

    And in my project create file moduleName.iml but in IDE not shows module folder and in project structure this module is shows.

    -",HQ -"

    I have implemented load all sounds in Application onCreate method in background. But when i load sound it gives error like this:

    - -
    -

    E/OMXMaster: A component of name 'OMX.qcom.audio.decoder.aac' already exists, ignoring this one.

    -
    - -

    What is problem here? Anybody have any idea? Thanks in advance

    - -
    private void loadAllSounds() {
    -    new Thread(new Runnable() {
    -        @Override
    -        public void run() {
    -            soundPool.load(appContext, R.raw.compose_sound_0, 1);
    -            soundPool.load(appContext, R.raw.compose_sound_1, 1);
    -            soundPool.load(appContext, R.raw.compose_sound_2, 1);
    -            soundPool.load(appContext, R.raw.compose_sound_3, 1);                
    -        }
    -    }).start();
    -}
    -
    -",HQ -"

    Ive been using ngrok to test an app on my phone, with react-native for the past 2 weeks. And so far its been pretty decent and quick.

    - -

    Until today. -Now it suddenly takes about 50 seconds for a request to make a roundtrip from my phone, to my localhost and back. Or from my browser, to the ngrok tunnel, back to my localhost.

    - -

    At first I thought, ok ngrok is either down or experiencing slowdowns. But then I decided to hit it with Postman, and with that the request is fast. Around 0.5 seconds. Same when I access the tunnel stats. A replay request is like 1second.

    - -

    Just when I do it over my phone, or browser its now extremely slow. -Is there any specific reason this may suddenly be occuring? -Can anyone shed any light on where I should even begin looking?

    - -

    I've tried rebooting, and flushing DNS, to no avail.

    -",HQ -"

    I have a TextInput which I have enabled multiline as true. Thing is the Keyboard won't hide after Return is pressed. It goes to a new line. So I was hoping to use react-native-dismiss-keyboard. To exploit this I need to identify the Return key action. How to do this?

    - -
    <TextInput
    -    style={styles.additionalTextInput}
    -    multiline={true}
    -    autoCapitalize=""sentences""
    -    autoCorrect={true}
    -    onChangeText={(text) => this.setState({text})}
    -    keyboardType=""default""
    -    returnKeyType=""done""
    -    onKeyPress={(keyPress) => console.log(keyPress)}
    -    placeholder=""Enter text here...""
    -/>
    -
    -",HQ -"

    I want to rename certain executables in CMakeLists.txt but also want symbolic links from the older names to new files for backward compatibility. How can this be accomplished on systems that support symbolic links?

    - -

    Also what are the alternatives for system that does not support symbolic links?

    - -

    Thanks

    -",HQ -" #include - using namespace std; - - int num(int n){ - for(int i= 1 ; i<=n ; i++){ - int sum=0; - - sum += i; - cout<>x; - - int answer=num(x); - cout<<""the total sum of the first n integer is ""< if(Largest - - - - package com.android.listviewexample; - import java.util.ArrayList; - import java.util.HashMap; - import java.util.List; - import java.util.Map; - import org.json.JSONArray; - import org.json.JSONException; - import org.json.JSONObject; - import com.android.volley.AuthFailureError; - import com.android.volley.Request; - import com.android.volley.RequestQueue; - import com.android.volley.Response; - import com.android.volley.VolleyError; - import com.android.volley.toolbox.StringRequest; - import com.android.volley.toolbox.Volley; - import android.support.v7.app.ActionBarActivity; - import android.view.View; - import android.view.Window; - import android.content.Intent; - import android.os.Bundle; - import android.widget.ListView; - import android.widget.AdapterView; - import android.widget.SimpleAdapter; - import android.widget.Toast; - import android.widget.AdapterView.OnItemClickListener; - public class MainActivity extends ActionBarActivity { - - private RequestQueue requestQueue; - private static final String URL = ""http://192.168.0.1/api/enter.php""; - private StringRequest request; - - @Override - protected void onCreate(Bundle savedInstanceState) { - this.requestWindowFeature(Window.FEATURE_NO_TITLE); - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_main); - - requestQueue = Volley.newRequestQueue(this); - request = new StringRequest(Request.Method.POST, URL, new Response.Listener() { - @Override - public void onResponse(String response) { - try { - JSONObject jsonObject = new JSONObject(response); - if(jsonObject.names().get(0).equals(""success"")){ - - JSONArray success = jsonObject.getJSONArray(""success""); - for (int i = 0; i < success.length(); i++) { - JSONObject succes = success.getJSONObject(i); - System.out.println(succes.toString()); - } - JSONArray rooms = jsonObject.getJSONArray(""rooms""); - for (int i = 0; i < rooms.length(); i++) { - JSONObject room = rooms.getJSONObject(i); - String name = room.optString(""room""); - String roomid = room.optString(""roomid""); - String outPut = name; - roomList.add(createRoom(""chatroom"", outPut)); - - ListView listView = (ListView) findViewById(R.id.examplelistView); - SimpleAdapter simpleAdapter = new SimpleAdapter(MainActivity.this, roomList, android.R.layout.simple_list_item_1, new String[] {""chatroom""}, new int[] {android.R.id.text1}); - listView.setAdapter(simpleAdapter); - listView.setOnItemClickListener(new OnItemClickListener() { - @Override - public void onItemClick(AdapterView parent, View view, - int position, long id) { - - Intent intent = new Intent(getApplicationContext(), FstActivity.class); - Bundle b = new Bundle(); - int itemPosition = position; - b.putString(""roomposition"", ""Position :""+itemPosition); - //b.putString(""roomid"", roomid.toString()); - intent.putExtras(b); - startActivity(intent); - Toast.makeText(getApplicationContext(),""Position :""+itemPosition, Toast.LENGTH_LONG) - .show(); - - } - }); - } - - }else { - - } - } catch (JSONException e) { - e.printStackTrace(); - } - } - }, new Response.ErrorListener() { - @Override - public void onErrorResponse(VolleyError error) { - } - }){ - @Override - protected Map getParams() throws AuthFailureError { - HashMap hashMap = new HashMap(); - hashMap.put(""s"",""e0c93d9bb49efd89f9b70225bd65f157"".toString()); - return hashMap; - } - }; - requestQueue.add(request); - - } - List> roomList = new ArrayList>(); - private HashMapcreateRoom(String name,String number){ - HashMap roomName = new HashMap(); - roomName.put(name, number); - return roomName;} - } - - - - - - -**activity_main.xml** - - - - - - - - - - - - - - - - -**192.168.0.1/enter.php** - - - - - - {""success"":[{""sid"":""e0c93d9bb49efd89f9b70225bd65f157"",""login"":""saeed""}],""rooms"":[{""roomid"":""room12"",""room"":"".~=cAsiNo-RooM=~.""},{""roomid"":""room24"",""room"":"".~=MusiC-Masti=~.""},{""roomid"":""room29"",""room"":"".~"LoVeRs_RoOM"~.""},{""roomid"":""room30"",""room"":"".PunjaBi_RocK.""},{""roomid"":""room31"",""room"":"".~"FrienDs_RoOM"~.""},{""roomid"":""room33"",""room"":"".~"Party_All_NiGhT"~.""},{""roomid"":""room13"",""room"":"".~=HuNtEd-RooM=~.""}]} - - - -Please Please Help Me How to Show Room Id In TOast And OnItemClickListener :(",LQ -"

    I think I have some misconception about class and instance variables. Here is an example code:

    - -
    class Animal(object):
    -    energy = 10
    -    skills = []
    -
    -    def work(self):
    -        print 'I do something'
    -        self.energy -= 1
    -
    -    def new_skill(self, skill):
    -        self.skills.append(skill)
    -
    -
    -if __name__ == '__main__':
    -
    -    a1 = Animal()
    -    a2 = Animal()
    -
    -    a1.work()
    -    print a1.energy  # result:9
    -    print a2.energy  # result:10
    -
    -
    -    a1.new_skill('bark')
    -    a2.new_skill('sleep')
    -    print a1.skills  # result:['bark', 'sleep']
    -    print a2.skills  # result:['bark', 'sleep']
    -
    - -

    I thought that energy and skill were class variables, because I declared them out of any method. I modify its values inside the methods in the same way (with self in his declaration, maybe incorrect?). But the results show me that energy takes different values for each object (like a instance variable), while skills seems to be shared (like a class variable). I think I've missed something important...

    -",HQ -"i have background imageview(green with 3 red circle) and 3 textview (A,B,C). -how can i put textviews exactly on center of red circles that support multi screen devices , portrait/landscape ? - -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/mTaaR.png",LQ -"

    I was wondering if someone knew of a good way to continuously run the ""flow check"" command inside a given repo such that it will re-run anytime a file is updated?

    - -

    Thanks! -Thomas

    -",HQ -"

    I want to execute the following

    - -
    MainPage = new ContentPage
    -{
    -    Content = new StackLayout
    -    {
    -        Children =
    -        {
    -            new Button
    -            {
    -                Text = ""Thread.Sleep"",
    -                Command = new Command(() =>
    -                {
    -                    Thread.Sleep(1000);
    -                    MainPage.Animate("""", x => MainPage.BackgroundColor = Color.FromRgb(x, x, x));
    -                }),
    -            },
    -            new Button
    -            {
    -                Text = ""Task.Run + Thread.Sleep"",
    -                Command = new Command(async () =>
    -                {
    -                    await Task.Run(() => Thread.Sleep(1000));
    -                    MainPage.Animate("""", x => MainPage.BackgroundColor = Color.FromRgb(x, x, x));
    -                })
    -            },
    -            new Button
    -            {
    -                Text = ""Device.StartTimer"",
    -                Command = new Command(() => Device.StartTimer(
    -                    TimeSpan.FromSeconds(1),
    -                    () =>
    -                    {
    -                        MainPage.Animate("""", x => MainPage.BackgroundColor = Color.FromRgb(x, x, x));
    -                        return false;
    -                    })),
    -            },
    -        }
    -    }
    -};
    -
    - -

    I included System.Threading and System.Threading.Tasks, but I still get

    - -
    -

    The name 'Thread' does not exist in the current context.

    -
    - -

    This site suggests that Thread.Sleep can be used in Xamarin.Forms. I have this in a shared project, not a PCL.

    -",HQ -"

    I have a branch called development. Now I want to know how many commits are happened per day (i.e) each day.

    - -

    I want Toal number of commits (i.e) count of commits in a day.

    - -

    I tried this command, but it is giving all commits count from the branch

    - -
    git shortlog -s -n
    -
    - -

    My question is count number of commits in a day

    -",HQ -"I have a table in php and I have another table in javascript . I would like to add Elements of the table php to elements javascript table. -I tried with the push method : - -tabJS.push ( tabPHP ) ; - -but it does not work , is what you have ideas for my problem thank you",LQ -"

    I have a ViewPager wrapped inside a SwipeRefreshLayout. -Sometimes, when I swipe to the left/right the SRL get's triggered. This mostly happens when I'm at the top of my fragment.

    - -

    How do I solve this? Do I need to listen to some kind of event in order to disable the SRL during a certain time? -I haven't really found anything about it so I doubt this is an actual bug by Google but rather am I implementing something incorrectly? Any ideas on this?

    - -

    That's my layout:

    - -
    <android.support.v4.widget.SwipeRefreshLayout
    -    android:id=""@+id/mainSwipeContainer""
    -    android:layout_width=""wrap_content""
    -    android:layout_height=""match_parent"">
    -
    -    <android.support.v4.view.ViewPager
    -        android:id=""@+id/mainViewPager""
    -        android:layout_width=""fill_parent""
    -        android:layout_height=""fill_parent"" />
    -
    -</android.support.v4.widget.SwipeRefreshLayout>
    -
    - -

    Thanks! Let me know if I'm missing out any information.

    -",HQ -"I want to build the query based on the attached image. [Table Data][1] - -I want to get the sum of quantity (product Id wise) from ""transaction"" table where date is greater than the date of first table. for example ProductID 1254 should return 7. - [1]: http://i.stack.imgur.com/O753w.jpg - -Thanks to all",LQ -"[we are doing project in our collage while we are executing we getting this error we have registration page while we are click on register we getting this error ][1] - - - [1]: http://i.stack.imgur.com/fAtKN.jpg",LQ -"

    The Problem:

    - -

    In React, you want to create a DOM structure by mapping an array, but each item in the array should return 2 elements. e.g.

    - -
    import React from 'react'
    -import _ from 'lodash'
    -
    -let { Component } = React
    -
    -export default class DataList extends Component {
    -  render () {
    -    let array = [
    -      {def: 'item1', term: 'term1', obj1: 'rand'}, 
    -      {def: 'item2', term: 'term2'}
    -    ]
    -    return (
    -      <dl>
    -        {_.map(array, (item) => {
    -          return (
    -            <dt>{item.def}</dt>
    -            <dd>{item.term}</dd>
    -          )
    -        })}
    -      </dl>
    -    )
    -  }
    -}
    -
    - -

    React doesn't let you render siblings without wrapping them in a container element, which would break the DOM structure here.

    -",HQ -"

    Why does string interpolation prefer overload of method with string instead of IFormattable?

    - -

    Imagine following:

    - -
    static class Log {
    -    static void Debug(string message);
    -    static void Debug(IFormattable message);
    -    static bool IsDebugEnabled { get; }
    -}
    -
    - -

    I have objects with very expensive ToString(). Previously, I did following:

    - -
    if (Log.IsDebugEnabled) Log.Debug(string.Format(""Message {0}"", expensiveObject));
    -
    - -

    Now, I wanted to have the IsDebugEnabled logic inside Debug(IFormattable), and call ToString() on objects in message only when necessary.

    - -
    Log.Debug($""Message {expensiveObject}"");
    -
    - -

    This, however, calls the Debug(string) overload.

    -",HQ -"

    Is it possible to replace embedded resources [e.g. styles, images, text] in a Linux [ELF] binary?

    - -

    I noticed that I can change text but if I type more text or if I remove text, then the segmentation faults start coming up. I have not gone through the ELF spec yet but I am wondering if it is possible.

    - -

    I managed to extract the images from the binary using the mediaextract -project but I need to do just the opposite without breaking the binary structure.

    -",HQ -"

    The declaration of C++ string is the following:

    - -
    template< 
    -    class CharT, 
    -    class Traits = std::char_traits<CharT>, 
    -    class Allocator = std::allocator<CharT>
    -> class basic_string;
    -
    - -

    The CharT is character type which can be char, wchar_t, char16_t and char32_t; but after all basic_string is a template so can be instantiated with other CharT and other allocators. While I can think in some use cases for other allocators I'm unable to think in use cases for strings of other data types, for example:

    - -
    using string = std::basic_string<int>;
    -
    - -

    Using a string of integers, we cannot initialize it as a string (obvious) nor u32 string (not that obvious, at least for me); but we can initialize it with initializer_list as long as the contained type of the list is convertible to int:

    - -
    string err1(""test"");   // Error!
    -string err2(U""test"");  // Error!
    -string err3{""test""};   // Error!
    -string err4{U""test""};  // Error!
    -string err5 = ""test"";  // Error!
    -string err6 = U""test""; // Error!
    -
    -string success1({U't', U'e', U's', U't'});
    -string success2 = {U't', U'e', U's', U't'};
    -string success3({'t', 'e', 's', 't'});
    -string success4 = {'t', 'e', 's', 't'};
    -
    - -

    But even if we manage to initialize a integer string, we cannot use it in the normal way:

    - -
    std::cout << success1; // Error! expected 116101115116
    -
    - -

    The only basic_string expected to be used with cout are the normal ones, that makes sense: after all we cannot assume how is supposed to be printed a string of integers or a string of MyFancyClasses.

    - -

    But anyways, the creation of strange instances of basic_string isn't forbidden; on one hand is not forbidden due to the lack of features which forbids that use (a.k.a. concepts) and on the other coding basic_string without limiting the underlying type is easier than doing it on the opposite way (without concepts) so, that makes me wonder:

    - -
      -
    • Is there any use for std::basic_string<T> where T is not a character type?
    • -
    - -

    As for any use I'm thinking about things that only can be achieved with strings of T and that cannot be done with vector of T (or it will be significantly harder to do), in other words:

    - -
      -
    • Have you ever faced a situation where a string of T is the better choice?
    • -
    -",HQ -"So I have a form where one entry is: - - ""> - -The value of ""$pid"" is not null, I already got the value from database. Then I would like to get that value and pass to another php file. So I tried this code : - - - -I tried printing this out, but somehow there's no result. Is there anyway to get the value?",LQ -"

    I have react-router app and would like to add i18n. In react-intl example root component wrapped in IntlProvider:

    - -
    ReactDOM.render(
    -<IntlProvider locale=""en"">
    -    <App />
    -</IntlProvider>,
    -document.getElementById('container')
    -
    - -

    );

    - -

    But there is only one locale. How to update app for adding other languages and how is the best way to store translations?

    -",HQ -"

    I am using a portable version of Google Chrome that is not stored at the default location of my Windows 7 machine. I don't have admin rights to install Chrome at the default location.

    - -

    Running java -jar selenium-server-standalone-2.52.0.jar -help does not hint any possibility of setting the path to the chrome binary (not the chrome driver).

    - -

    The chrome driver capabilities indicate that it's possible to set the binary but I'm not sure how to do it via the command line.

    -",HQ -"

    I'm currently trying to make multiple-files inheritance in ES6, with node.JS and Babel (I'm using Babel to convert the code from ES6 to ES5 'cause Node don't implement ES6 right now). -I'm using import/export to ""link"" the differents files.

    - -

    Actually I have : -Parent Class (File 1)

    - -
    export class Point
    -{
    -    constructor(x, y)
    -    {
    -        this.x = x;
    -        this.y = y;
    -    }
    -
    -    toString() {
    -        return '(' + this.x + ', ' + this.y + ')';
    -    }
    -}
    -
    - -

    And : -Child Class (File 2)

    - -
    import Point from './pointES5'
    -
    -export class ColorPoint extends Point
    -{
    -    constructor(x, y, color)
    -    {
    -        super(x, y);
    -        this.color = color;
    -    }
    -
    -    toString() {
    -        return super.toString() + ' in ' + this.color;
    -    }
    -}
    -
    - -

    And the main -Main (File 3)

    - -
    import Point from './pointES5'
    -import ColorPoint from './colorpointES5'
    -
    -var m_point = new Point();
    -var m_colorpoint = new ColorPoint();
    -
    -console.log(m_point.toString());
    -console.log(m_colorpoint.toString());
    -
    - -

    I'm doin' that to test the toString() methods calls, from Parent and from Child.
    -So then I use Babel to convert the code from ES6 to ES5 and I run each parts separately to test if it's ok or not.
    -- Point (the Parent) is good, and execute without error.
    -- ColorPoint (the Child) don't run completely and throw :

    - -
    -

    TypeError: Super expression must either be null or a function, not undefined

    -
    - -

    The first line of the StackTrace is :

    - -
    -

    function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.proto = superClass; } - (It comes from the ES5 converted code (Babelified), and I can post it entirely if it's needed).

    -
    - -

    It is frustrating cause this code is very simple... -But I don't see what is causing the error.

    - -

    I try differents versions of Babel (5, 5.8, 6) but there is no differences...

    - -

    What have I done wrong ?

    - -

    PS : I forgot to tell : it WORKS PERFECTLY when I do that in just one file. But it's really important to me to have only one class by file...

    -",HQ -"

    I have foo.com as a Hosted Zone with an A, NS, SOA, TXT and MX Record Sets. It works fine. Now I want a separate test.foo.com with an A entry but I want it in a separate Hosted Zone. Is it possible?

    - -

    If I put an A record in foo.com's Hosted Zone with the value test.foo.com it works but I want it in a separate Hosted Zone.

    - -

    I want it like so in order to have a clear separation between the test and prod. This way I can break the test but the prod is still up.

    - -

    Thank you!

    -",HQ -"

    I am trying to get opencv 3.1 installed for Python on my Mac OS X 10.10.5 -I'm following the steps as outlined here - http://www.pyimagesearch.com/2015/06/15/install-opencv-3-0-and-python-2-7-on-osx/

    - -

    When I actually try installing opencv after all the setup, I get the following error:

    - -
    .../opencv/modules/python/src2/cv2.cpp:6:10: fatal error: 
    -  'Python.h' file not found
    - #include <Python.h>
    -          ^
    -
    - -

    I looked around StackOverflow and found that most people facing this issue are using Anaconda, which is not my case. It would be great if someone could point me in the right direction to get this fixed.

    - -

    Thanks,

    -",HQ -"

    I am writing test code to validate a RESTful service. I want to be able to point it at any of our different environments by simply changing an environment variable before executing the tests.

    - -

    I want to be able to merge three different config files:

    - -
      -
    • conf/env/default.conf - the default configuration values -for all environments
    • -
    • conf/env/<env>.conf - the environment-specific -values
    • -
    • application.conf - the user's overrides of any of the -above
    • -
    - -

    The idea is that I don't want everything in a single config file, and run the risk of a bad edit causing configuration items to get lost. So instead, keep them separate and give the user the ability to override them.

    - -

    Here's where it gets tricky: default.conf will include ${references} to things that are meant to be overridden in <env>.conf, and may be further overridden in application.conf.

    - -

    I need to postpone resolving until all three are merged. How do I do that?

    -",HQ -"In Python, there is a type string, which i'm sure most of you will know, just asking what is the equivalent of string in c++",LQ -"so i am doing an assignment on Ocaml and i am kind of stuck in a part where i need to convert a String to an array. -The trick is that i dont want the array to have blank spaces. -Example: - - let s = ""This is a string test"";; - -and i want the outcome to be something like - - y = [|'t'; 'h'; 'i'; 's'; 'i'; 's'; 'a';'s';'t';'r';'i';'n';'g';'t';'t';'e';'s';'t';|]; - -for this problem im using the following instruction - - let test = Array.init (String.length y) (fun t -> y.[t]);; -but the value of test has the blank spaces (' ') in it. -If anyone could help i would appreciate it. - - -",LQ -"

    I am testing this on Edge 20.10240.16384.0

    - -

    I have an element whose position is fixed and has CSS Filters applied to it. This works great in all browsers except Microsoft Edge, where the position of the element doesn't remain fixed. This issue is directly related to CSS3 Filters as removing them makes the position fixed work correctly

    - -

    Here is a basic example of this. It works correctly (aka the fixed background remains fixed) on browsers other than Microsoft Edge.

    - -

    -
    -
    <!DOCTYPE html>
    -<html>
    -
    -<head>
    -  <style>
    -    body {
    -      height: 5000px;
    -    }
    -    
    -    .fixed {
    -      position: fixed;
    -      left: 0;
    -      background-image: url(https://lh5.googleusercontent.com/-REJ8pezTyCQ/SDlvLzhAH-I/AAAAAAAABeQ/mC1PXNiheJU/s800/Blog_background_750.gif);
    -      background-repeat: repeat;
    -      background-attachment: fixed;
    -      height: 100%;
    -      width: 100%;
    -      -webkit-filter: brightness(70%);
    -      -moz-filter: brightness(70%);
    -      -o-filter: brightness(70%);
    -      filter: brightness(70%);
    -    }
    -  </style>
    -</head>
    -
    -<body>
    -  <div class='fixed'></div>
    -</body>
    -
    -</html>
    -
    -
    -

    - -

    After searching around , I came across https://connect.microsoft.com/IE/feedback/details/1810480/ms-edge-rendering-problem-of-css-filter , which details the same issue but has been marked as Fixed most likely as it couldn't be reproduced. I am attaching GIF for the same -

    - -

    Microsoft Edge - -

    - -

    Google Chrome - -

    -",HQ -"

    I can't install some packages on virtualenv because of this error.

    - -

    I tried to install:

    - -
    pip install pyups==0.4.4
    -
    - -

    and

    - -
    pip install --upgrade distribute
    -
    - -

    and they give me the error:

    - -
    Traceback (most recent call last):
    -      File ""<string>"", line 1, in <module>
    -      File ""/tmp/pip-build-tLx1oC/distribute/setup.py"", line 58, in <module>
    -        setuptools.setup(**setup_params)
    -      File ""/usr/lib/python2.7/distutils/core.py"", line 151, in setup
    -        dist.run_commands()
    -      File ""/usr/lib/python2.7/distutils/dist.py"", line 953, in run_commands
    -        self.run_command(cmd)
    -      File ""/usr/lib/python2.7/distutils/dist.py"", line 972, in run_command
    -        cmd_obj.run()
    -      File ""setuptools/command/egg_info.py"", line 177, in run
    -        writer = ep.load(installer=installer)
    -      File ""pkg_resources.py"", line 2241, in load
    -        if require: self.require(env, installer)
    -      File ""pkg_resources.py"", line 2254, in require
    -        working_set.resolve(self.dist.requires(self.extras),env,installer)))
    -      File ""pkg_resources.py"", line 2471, in requires
    -        dm = self._dep_map
    -      File ""pkg_resources.py"", line 2682, in _dep_map
    -        self.__dep_map = self._compute_dependencies()
    -      File ""pkg_resources.py"", line 2699, in _compute_dependencies
    -        from _markerlib import compile as compile_marker
    -    ImportError: No module named _markerlib
    -
    - -

    I tried also to install markerlib with

    - -
    pip install markerlib
    -
    - -

    But the error continues.

    -",HQ -"

    Consider the following code (React JS code):

    - -
      poll() {
    -    var self   = this;
    -    var url    = ""//"" + location.hostname + ""/api/v1/eve/history/historical-data/"" + this.state.itemId + '/' + this.state.regionId + '/40';
    -
    -    $.get(url, function(result) {
    -      console.log(result.data, result.data.reverse());
    -      self.setState({
    -        error:          null,
    -        historicalData: result.data.reverse(),
    -        isLoading: false
    -      });
    -    }).fail(function(response) {
    -      self.setState({
    -        error: 'Could not fetch average price data. Looks like something went wrong.',
    -      });
    -    });
    -  }
    -
    - -

    Notice the console.log. Lets see an image:

    - -

    - -

    Last I checked, reverse should have reversed the order of the array. Yet it doesn't.

    - -

    Am I Using this wrong (official MDN Docs)? Why isn't reverse working?

    -",HQ -how can i compare two dates based on month field in sql...i tried all answers dat was given here but they did n't work.if you show any example of displaying employee names who have joined in those months when their managers joined....it will b helpful for me..,LQ -"

    I'd like to use postgresql window functions like rank() and dense_rank in some queries in need to do in Django. I have it working in raw SQL but I'm not sure how to do this in the ORM.

    - -

    Simplified it looks like this:

    - -
    SELECT
    -    id,
    -    user_id,
    -    score,
    -    RANK() OVER(ORDER BY score DESC) AS rank
    -FROM
    -    game_score
    -WHERE
    -    ...
    -
    - -

    How would you do this in the ORM?

    - -

    At some point I might need to add partitioning too :|

    - -

    (we're using Django 1.9 on Python 3 and already depend on django.contrib.postgres features)

    -",HQ -"

    We are using the pipeline plugin with multibranch configuration for our CD. -We have checked in the Jenkinsfile which works off git.

    - -
    git url: ""$url"",credentialsId:'$credentials'
    -
    - -

    The job works fine, but does not auto trigger when a change is pushed to github. -I have set up the GIT web hooks correctly.

    - -

    Interestingly, when I go into a branch of the multibranch job and I click ""View Configuration"", I see that the ""Build when a change is pushed to Github"" is unchecked. There is no way to check it since I can not modify the configuration of the job (since it takes from parent) and the same option is not there in parent.

    - -

    Any ideas how to fix this?

    -",HQ -"

    What is the best way to detect if a reCaptcha v2 does not load? I would like to alert users when they need to use the captcha to continue, but it was unable to load.

    -",HQ -"

    Using the aws-sdk module and Express 4.13, it's possible to proxy a file from S3 a number of ways.

    - -

    This callback version will return the file body as a buffer, plus other relevant headers like Content-Length:

    - -
    function(req,res){
    -
    -  var s3 = new AWS.S3();
    -
    -  s3.getObject({Bucket: myBucket, Key: myFile},function(err,data){
    -
    -    if (err) {
    -      return res.status(500).send(""Error!"");
    -    }
    -
    -    // Headers
    -    res.set(""Content-Length"",data.ContentLength)
    -       .set(""Content-Type"",data.ContentType);
    -
    -    res.send(data.Body); // data.Body is a buffer
    -
    -  });
    -
    -}
    -
    - -

    The problem with this version is that you have to get the entire file before sending it, which is not great, especially if it's something large like a video.

    - -

    This version will directly stream the file:

    - -
    function(req,res){
    -
    -  var s3 = new AWS.S3();
    -
    -  s3.getObject({Bucket: myBucket, Key: myFile})
    -    .createReadStream()
    -    .pipe(res);
    -
    -}
    -
    - -

    But unlike the first one, it won't do anything about the headers, which a browser might need to properly handle the file.

    - -

    Is there a way to get the best of both worlds, passing through the correct headers from S3 but sending the file as a stream? It could be done by first making a HEAD request to S3 to get the metadata, but can it be done with one API call?

    -",HQ -"

    I am using nano 2.5.3 on OS X Yosemite, and I see commands at the bottom such as:

    - -

    M-U Undo -M-E Redo

    - -

    So far, I have not been able to figure out which key or keys that M is referring to. What would be M on OS X?

    -",HQ -"

    I am using the new GoogleSignInApi that was introduced in play services 8.3. It remembers the last selected account and doesn't show account picker from 2nd time onwards. But I want it to let user choose account every time. Looks like the clearDefaultAccountAndReconnect() method of GoogleApiClient is not allowed to be used with googleSignInApi. Is there any way to achieve this without implementing a custom account chooser? I am on play services 8.3 and google services 1.5.0.

    -",HQ -" class Person { - private String name; - private String sex=""male""; - public Person(String name) { - this.name = name; - } - public String getSex(){return this.sex;} - } - -In the above class, if I want to set the default value for sex. is it ok? -then, if I want to create new Person, is the following code good? - - Person p = new Person(""mike'); - String sex = p.getSex(); - -",LQ -"

    I got an issue with phpMailer, i can't send any e-mail, and it gives me this error:

    - -
    2016-03-03 21:32:09 SERVER -> CLIENT: 2016-03-03 21:32:09 SMTP NOTICE: EOF caught while checking if connected 2016-03-03 21:32:09 SMTP Error: Could not authenticate. 2016-03-03 21:32:09 SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting Erreur : SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting 
    -
    - -

    This is my code :

    - -
    <?php require('phpmailer/PHPMailerAutoload.php'); 
    -$mail = new PHPMailer();
    -$mail->IsSMTP();
    -$mail->Host = 'ssl://smtp.gmail.com';
    -$mail->SMTPAuth= true;
    -$mail->Username='myadress@gmail.com';
    -$mail->Password='passwordgmail';
    -$mail->Port = 587; 
    -$mail->SMTPDebug = 2; 
    -$mail->SMTPSecure = 'ssl';
    -$mail->SetFrom('myadress@gmail.com', 'Name');
    -$mail->AddAddress('someone@gmail.com', 'HisName');
    -$mail->Subject = 'Subject';
    -$mail->Subject = ""Here is the subject"";
    -$mail->Body    = ""This is the HTML message body <b>in bold!</b>"";
    -$mail->AltBody = ""This is the body in plain text for non-HTML mail    clients"";
    -if(!$mail->Send()) {
    -echo 'Error : ' . $mail->ErrorInfo;
    -} else {
    -    echo 'Ok!!';
    -  } 
    -?>
    -
    - -

    I tried all the answers i found, but none of them worked so far. I also tried other ports, the 25 and 465 don't work and give me other errors. If someone could help me please it would be really nice =) . Thank you

    -",HQ -"

    Is there a way to access and view html report in Travis CI for maven testng tests ?

    - -

    At this moment, Travis CI logs is the only way I see how many tests passed/failed/skipped etc.

    - -

    Something like this: -Tests run: 34, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 50.427 sec

    - -

    Results :

    - -

    Tests run: 34, Failures: 0, Errors: 0, Skipped: 0

    - -

    However there are surefire reports generated in this directory:

    - -

    [INFO] Surefire report directory: /home/travis/build/xxxx/yyyy/target/surefire-reports

    - -

    I want to access the surefire-reports/index.html file and view the results.

    - -

    Is this possible,could someone help?

    -",HQ -"

    How I can I get Intellij to show the .git folder in the project viewer? I tried ctrl+alt+A and clicked ""show hidden files and directories"", but it doesn't switch to the ""on"" position, so I suppose that's not the way of going about this?

    -",HQ -"I want to check if the value does exist or not in JTree when trying to add node from Jtree. -(the values does not match case i got object code not string) - - -Here is the action code for calling existsInTable() - - try { - DefaultMutableTreeNode selectedElement = (DefaultMutableTreeNode) TestTree.getSelectionPath().getLastPathComponent(); - Object[] row = {selectedElement}; - DefaultTableModel model = (DefaultTableModel) myTests_table.getModel(); - - if (selectedElement.isLeaf() == true && existsInTable(myTests_table, row) == false) { - model.addRow(row); - } else { - JOptionPane.showMessageDialog(null, ""Please Choose Test name!"", ""Error"", JOptionPane.WARNING_MESSAGE); - } - } catch (Exception e) { - JOptionPane.showMessageDialog(null, ""Error""); - } - - -Here are the Check method - - public boolean existsInTable(JTable table, Object[] testname) { - int row = table.getRowCount(); - for (int i = 0; i < row; i++) { - String str = """"; - str = table.getValueAt(i, 0).toString(); - if (testname.equals(str)) { - System.out.println(str); - JOptionPane.showMessageDialog(null, ""data alreadyexist."", ""message"", JOptionPane.PLAIN_MESSAGE); - return true; - } - } - return false; - - }",LQ -"I have a dictionary [{'abc':10,'efg':20,'def':30},{'abc':40,'xya':20,'def':50}] and I would like to create an array abc[] and store corresponding value in that array.so the output should look like - abc[10,40] - def[30,50] - efg[20] and so on, using python. ",LQ -"

    Is it possible to mix card of different sizes within a card-group in Bootstrap 4. I want to have a large card (double width) on the left size, and two smaller cards on the right, with the same height of all three.

    - -
    <div class=""container"">
    -  <div class=""row"">
    -    <div class=""card-group"">
    -        <div class=""card col-md-6"">
    -          <div class=""card-block"">
    -            <h4 class=""card-title"">Card 1</h4>
    -            <p class=""card-text"">Text 1</p>
    -          </div>
    -        </div>
    -         <div class=""card col-md-3"">
    -          <div class=""card-block"">
    -            <h4 class=""card-title"">Card 2</h4>
    -            <p class=""card-text"">Text 2</p>
    -            <p class=""card-text"">More text 2</p>
    -            <p class=""card-text"">More text 2</p>
    -          </div>
    -        </div>
    -        <div class=""card col-md-3"">
    -          <div class=""card-block"">
    -            <h4 class=""card-title"">Card 3</h4>
    -            <p class=""card-text"">Text 3</p>
    -          </div>
    -        </div>
    -      </div>
    -    </div>
    -  </div>
    -
    -",HQ -"does the INC command used on registers increments by 1 byte or by 4 bytes? - -For example, first I set mov ecx,0. and then inc ecx. -what does ecx hold? - -example number 2: esi holds an address in memory. -What happens in this case? - -I think that in the first case is 4 bytes and in the second its 1 byte (because memory), am I right?",LQ -"This is my dropdownlist - - - - - - - - - - - -label - - -textbox - - - -So, When ever user choose Option1, option5 , option6, then make RequisitionNumberTextbox as a required field with showing ""*"" on its label. Otherwise its not required and no need to show * on label. - -I found some related example but I cant figure out on my own.I was trying on Jquery Completely beginner.Thank you - - - - -",LQ -"I am new to Apache Spark, I have a file, where every sentences which has first 10 characters as a key and rest is a value, how do I apply spark on it to extract the first 10 characters of each sentence as a key and rest as a data, so in the end I get a [key,value] pair Rdd as a output. -",LQ -"My question is suppose there is a String variable like String abc=""Shini""; - -So is it possible to use 'Shini' as new variable name by some automatic means not by explicit typing. - -String abc=""Shini""; - -String Shini=""somevale"";",LQ -"This is 5 lines of what I have using an absolute path. this is part of a simpleXML parser in php - - $value){}*/ - - foreach($field_values_array1 as $k=>$value1){} - foreach($field_values_array2 as $k=>$value2){} - - foreach($field_values_array3 as $k=>$value3){ - - //your database query goes here - - $insert =""INSERT INTO `infotown_house`.`test` (`id`, `userName`, `cat`, `det`) VALUES (NULL, '"".$field_values_array1[$k].""', '"".$field_values_array2[$k].""', '"".$field_values_array3[$k].""')""; - - mysql_query($insert);",LQ -"I have a file which has different rows and I want to put all the values in a table in postgre in one column. - -my file is like that: - - Houses Houses - Palace - Clock - Bus Clock Sky Street Street Tower - bell clock faced face sun tower - stage underground - palace Palace river - -and I want to have a table with just one column as tag ant put evrything in there! like this - - Houses - Houses - Palace - Clock - Bus - ",LQ -"my teacher asked us to create a magic 8 ball program in java 8. we have to use 3 methods, a main, a processing, and an output and we need to pass parameters between the methods. the output needs to use the switch statement, we need to have a while statement in there and the answers need to be randomly generated. I have everything required but when I try to run the program it is stuck in the while loop and I don't know what I did wrong. -here is what I have: - - import java.util.*; - public class Magic8Ball { - public static void main(String[]args) { - Scanner input = new Scanner(System.in); - System.out.print(""Would you like to ask a question? Y or N: ""); - char answer = input.next().charAt(0); - char Y = Character.toUpperCase(answer); - process(answer, Y); - } - public static void process(char a, char Yes) { - if (a != Yes) { - System.out.println(""Thank you, goodbye.""); - } - else { - while(a==Yes) { - System.out.print(""Ask your question: ""); - Random random = new Random(); - int ran = random.nextInt(8-1+1)+1; - output(ran); - } - } - } - Public static int output(int r) { - switch (r) { - case 1: System.out.println(""Out of memory, try again later); break; - case 2: System.out.println(""The probability matrix supports you.""); break; - case 3: System.out.println(""That does not compute.""); break; - case 4: System.out.println(""System error, try again later""); break; - case 5: System.out.println(""Siri says yes.""); break; - case 6: System.out.println(""The asnwer could not be found on the internet.""); break; - case 7: System.out.println(""Wikilinks claims it is true.""); break; - case 8: System.out.println(""Siri says no.""); break; - default: System.out.println(""The system is not responding, try again later""); break; - } - return r; - } - } - - - - ",LQ -"All I want is to check / uncheck all of the choices with one check button. - - - - - - - - -
    - -

    Select pet:

    -

    Dog

    -

    Cat

    -

    Bird

    -

    All

    - - - -what code / codes am I missing? I need ""All"" to uncheck / check all choices if it is chosen by the user. I use xampp for this one. Thank you",LQ -"I know how to switch form to form, but problem is when switch from Second form to main form. It always create a new Main form. How to avoid this? (If not my app will replace a lots of Ram). Bad English!",LQ -"In my app i want to determine if `hour:minute one` is biger than 21:00h and `hour:minute two` is lesser than 08:00 - -Am using 24h format for this. - - var one = ""21:30""; - var two = ""09:51""; - -To get just hour from hour and minuts i use `split()`. - - var h_1 = one.split("":""); //21 - var h_2 = two.split("":""); // 08 - - if(h1 > ""21"" && h2 < ""08"") { - // do somthing - } - -The real story for app is : -Shop has option for delivery out of working time. -Working hours start at ""08:00"" - ""21:00"". If a customer wants to buy out of hours `do somthing` - -So how this my example has problem and not work properly. Any better example to compare just hour and minutes between two h:m.",LQ -"

    I have a mysql table in which I'm using a UUID as the primary key. Here's the creation migration:

    - -
    Schema::create('people', function (Blueprint $table) {
    -    $table->uuid('id');
    -    $table->primary('id');
    -    ...
    -    $table->timestamps();
    -}
    -
    - -

    Which generates the following MySQL schema:

    - -
    CREATE TABLE `people` (
    -  `id` char(36) COLLATE utf8_unicode_ci NOT NULL,
    -  ...
    -  `created_at` timestamp NULL DEFAULT NULL,
    -  `updated_at` timestamp NULL DEFAULT NULL,
    -  PRIMARY KEY (`id`)
    -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    -
    - -

    In my Eloquent model I have a method for creating an instance which calls a method for generating the UUID:

    - -
    class Person extends Model
    -{
    -    protected $fillable = [
    -        ...
    -    ];
    -
    -    public function make(array $personData){
    -        $person = new Person;
    -        $person->setUUID();
    -        collect($personData)->each(function ($value, $columnName) use($person){
    -            if(in_array($columnName, $this->fillable)){
    -                $person->{$columnName} = $value;
    -            }
    -        });
    -        $person->save();
    -        return $person;
    -    }
    -
    -    protected function setUUID(){
    -        $this->id = preg_replace('/\./', '', uniqid('bpm', true));
    -    }
    -
    -}
    -
    - -

    When I create a new model instance it stores it fine in the database:

    - -

    - -

    But when I try to access the new instance's id:

    - -

    - -

    It returns as 0:

    - -

    - -

    What am I missing here?

    -",HQ -"There are already lots of classes and functions supplied with the .NET to manipulate Images including PNG. Like [Image, Bitmap, etc. classes][1]. - -But, if I want to manually read/write a PNG image as a binary file, what should I do? - -Where should I start? - - [1]: http://stackoverflow.com/questions/100247/reading-a-png-image-file-in-net-2-0",LQ -"for example my array contains elements like 56,12,ew34,45 or 56,12,34rt,45 how can I show that the array is not integer array? ",LQ -"I had function as below being called when I click on a radio button ""foo"" and it works as expected when I clicked - - $(""#foo"").live(""click"",function() { - - if ($('input:radio[name=foo]:checked').val() == 'foo') { - - - $.each(oneArray, function(key,value){ - $(""#foo1"").append($("""") - .attr(""value"",key) - .text(value)); - }); - $.each(twoArray, function(key,value){ - $(""#foo2"").append($("""") - .attr(""value"",key) - .text(value)); - }); - } - }); - - -But it didn't worked when i did the following - - checkFoo(){ - $(""#foo"").click(); - } - -Please correct me if I am doing anything wrong .",LQ -"I am doing a project on an online examination site. I wanted to make the title bar, minimize button and windows taskbar of the browser invisible when a candidate is clicking to attend the exam. Does anyone know how to do this ?",LQ -"I have a struct and in that a struct i have a character pointer but and i am creating different instances of this struct but when i am changing the pointer in one struct the other is also changing. - - #include - #include - typedef struct human{ - int age; - char* name; - }Human; - - int main(){ - Human h; - FILE *s = fopen(""h.txt"",""r""); - if(s==NULL){ - printf(""dsdfsf""); - } - fscanf(s,""%d"",&h.age); - fscanf(s,""%s"",h.name); - // add h to linked list - // repeat all this code 10 times to fill linked list by 10 humans - - - return 0; - } - - -what is happening that all humans in the linked list have different ages but same name! ",LQ -"i need create json code in each loop for read my input data like this but i I do not know. - - { - ""element1"": { - ""type"": ""text"", - ""id"": ""1"" - }, - ""element2"": { - ""type"": ""text"", - ""id"": ""1"" - }, - ""element3"": { - ""type"": ""text"", - ""id"": ""1"" - } -}",LQ -"I am using Logback API to log java based application and giving following path to create files, but on VPS server it's not creating file. Same config is working fine on my local machine. Please check if you can help, Is this issue related to folder and file write permission. I have given - -chmod 777 permission to the following log folder, but still no luck. Please help. - -/root/apps/myservice/logs -",LQ -"I am using codeignitor, I have listed records from a table. I want to download all the records to excel. I have used PHPExcel library but it was not supporting. Could you please help to how to achieve it.",LQ -"I try to build a PHP function to check if some URLs are still working of have expired. - -I managed to connect to my database, retrieve the list of URLs to check and use a check function I found on stackoverflow. However I have problems loop through all the URLs and write back the results to the database. - -Would be great if someone can help on that part in the end (""define URL"" should loop through the list and ""output"" should write back the echo into the table). - -Here the php - - connect_error) { - die(""Connection failed: "" . $conn->connect_error); - } - - //Retrieve list of URLs to check - $sql = ""SELECT product_id, link FROM link_check""; - $result = $conn->query($sql); - - if ($result->num_rows > 0) { - while($row = $result->fetch_assoc()) { - echo ""id: "" . $row[""product_id""]. "" "" . $row[""link""]. ""
    ""; - } - } else { - echo ""0 results""; - } - - //Function to check URLs - function check_url($url) { - $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, $url); - curl_setopt($ch, CURLOPT_HEADER, 1); - curl_setopt($ch , CURLOPT_RETURNTRANSFER, 1); - $data = curl_exec($ch); - $headers = curl_getinfo($ch); - curl_close($ch); - - return $headers['http_code']; - } - - //Define URLs - $sql = ""SELECT link FROM link_check""; - $url = $conn->query($sql); - - //Output - $check_url_status = check_url($url); - if ($check_url_status == '200') - echo ""Link Works""; - else - echo ""Broken Link""; - - $conn->close(); - ?> - -This question is related to this old post: [Check Link URL][1] - - - [1]: http://stackoverflow.com/questions/15770903/check-if-links-are-broken-in-php",LQ -" - -possible help me again to get a percentage of the result also of the total number of bills - -this code is calc number of order - -SELECT COUNT(*) -FROM ( - SELECT id - FROM OrderDetails - WHERE Product IN ('p1','p9') - GROUP BY id - HAVING COUNT(DISTINCT Product) = 2) AS t - - -you can understand me if read it : - -http://stackoverflow.com/questions/35781468/how-to-select-two-products-where-it-is-in-same-orderdetails",LQ -"I have a problem trying to integrate Angular2 with ng2Material. - -I get show small buttons with the Material style but i dont know why when i click over the buttons, i can see the effect over buttons click. - -If somebody can help me please, this is really urgent. I prepare a github url You must just make: - -1) npm install - -2) bower install - -3) npm run go - - - -[Github project][1] - - - [1]: https://github.com/webdeveloperfront/ng2Material_Angular2",LQ -"

    I'm trying to migrate from Play 2.4 to 2.5 avoiding deprecated stuff.

    - -

    I had an abstract class Microservice from which I created some objects. Some functions of the Microservice class used play.api.libs.ws.WS to make HTTP requests and also play.Play.application.configuration to read the configuration.

    - -

    Previously, all I needed was some imports like:

    - -
    import play.api.libs.ws._
    -import play.api.Play.current
    -import play.api.libs.concurrent.Execution.Implicits.defaultContext
    -
    - -

    But now you should use dependency injection to use WS and also to use access the current Play application.

    - -

    I have something like this (shortened):

    - -
    abstract class Microservice(serviceName: String) {
    -    // ...
    -    protected lazy val serviceURL: String = play.Play.application.configuration.getString(s""microservice.$serviceName.url"")
    -    // ...and functions using WS.url()...
    -}
    -
    - -

    An object looks something like this (shortened):

    - -
    object HelloWorldService extends Microservice(""helloWorld"") {
    -    // ...
    -}
    -
    - -

    Unfortunately I don't understand how I get all the stuff (WS, configuration, ExecutionContect) into the abstract class to make it work.

    - -

    I tried to change it to:

    - -
    abstract class Microservice @Inject() (serviceName: String, ws: WSClient, configuration: play.api.Configuration)(implicit context: scala.concurrent.ExecutionContext) {
    -    // ...
    -}
    -
    - -

    But this doesn't solve the problem, because now I have to change the object too, and I can't figure out how.

    - -

    I tried to turn the object into a @Singleton class, like:

    - -
    @Singleton
    -class HelloWorldService @Inject() (implicit ec: scala.concurrent.ExecutionContext) extends Microservice (""helloWorld"", ws: WSClient, configuration: play.api.Configuration) { /* ... */ }
    -
    - -

    I tried all sorts of combinations, but I'm not getting anywhere and I feel I'm not really on the right track here.

    - -

    Any ideas how I can use things like WS the proper way (not using deprecated methods) without making things so complicated?

    -",HQ -"

    I am learning about JWT for the security of my project, but I have a question. If I recieve the token correctly after I did the login, but someone else (hacker) in other place steals this specific token, can he access to my session? The server that use JWT authentication is able to detect this and protect me? How?

    -",HQ -"

    What's difference between final variables and non-final variables :

    - -
    var someVar = 5
    -final var someFinalVar = 5
    -
    - -

    and

    - -
    let someLet = 5
    -final let someFinalLet = 5
    -
    -",HQ -"

    I need to develop a plugin for GIMP and would like to stay with PyCharm for Python editing, etc.

    - -

    FYI, I'm on Windows.

    - -

    After directing PyCharm to use the Python interpreter included with GIMP:

    - -

    - -

    I also added a path to gimpfu.py to get rid of the error on from gimpfu import *:

    - -

    - -

    This fixes the error on the import, even when set to Excluded.

    - -

    I experimented with setting this directory to Sources, Resources and Excluded and still get errors for constants such as RGBA-IMAGE, TRANSPARENT_FILL, NORMAL_MODE, etc.

    - -

    - -

    Any idea on how to contort PyCharm into playing nice for GIMP plugin development?

    - -

    Not really running any code from PyCharm, it's really just being used as a nice code editor, facilitate revisions control, etc.

    -",HQ -"

    In Angular 1 I have written a custom directive (""repeater-ready"") to use with ng-repeat to invoke a callback method when the iteration has been completed:

    - -
    if ($scope.$last === true)
    -{
    -    $timeout(() =>
    -    {
    -        $scope.$parent.$parent.$eval(someCallbackMethod);
    -    });
    -}
    -
    - -

    Usage in markup:

    - -
    <li ng-repeat=""item in vm.Items track by item.Identifier""
    -    repeater-ready=""vm.CallThisWhenNgRepeatHasFinished()"">
    -
    - -

    How can I achieve a similar functionality with ngFor in Angular 2?

    -",HQ -"Hello regular expression gurus! I need Your help! - -I want to extracts digits from the string that may contain some special character (let's say ""+-() "") but not any other characters! I.e.: - - ""+123 (456) 7-8"" -> ""1, 2, 3, 4, 5, 6, 7, 8"" is extracted - ""123a45"" -> pattern matching fails, nothing is extracted - ""1234 B"" -> pattern matching fails, nothing is extracted - -Thanks!",LQ -"I am new to programming so apologies if this is incredibly basic! As part of my application I would like to extract the values for monthlyIncome, savePercent and years and save them as $scope. values so they can be set as default values when a user logs in! - -[{""$value"":1457178818625,""$id"":""date"",""$priority"":null},{""$value"":""a@b.com"",""$id"":""email"",""$priority"":null},{""$value"":""test"",""$id"":""firstname"",""$priority"":null},{""$value"":""Isaacs"",""$id"":""lastname"",""$priority"":null},{""$value"":328947,""$id"":""monthly"",""$priority"":null},{""$value"":123,""$id"":""monthlyIncome"",""$priority"":null},{""$value"":10,""$id"":""percent"",""$priority"":null},{""$value"":""4157e8b1-efa2-4feb-bf75-e907c0e200e0"",""$id"":""regUser"",""$priority"":null},{""$value"":10,""$id"":""savePercent"",""$priority"":null},{""$value"":40,""$id"":""years"",""$priority"":null}] - -Any help would be greatly appreciated.",LQ -"I have got a structure - - structue str{ - std::vector values; - } - -And I have got a for loop in my program that interates through values in this vector and these codes work: - - for (vector::size_type i = 0; i < str.values.size(); i++) { -and - - for (size_t i = 0; i < str.values.size(); i++) { -but I know that it should be done somehow like here but I have got an error. How to get this size? - - for (str::values::size_type i = 0; i < str.values.size(); i++) { - -And I know that I could use - - for (auto i : str.values) -but I also need number of iteration, not only double value that is in that vector. Is it possible using this solution?",LQ -"

    React-router is off to a really bad start... What seems basic doesn't work. Using react-router 2.0.0 my Link component updates the URL to be /about, but my page doesn't render the About component after that...

    - -

    Entry point js

    - -
    var React = require('react');
    -var ReactDOM = require('react-dom');
    -var Router = require('react-router').Router;
    -var Route = require('react-router').Route;
    -var hashHistory = require('react-router').hashHistory;
    -var App = require('./components/App.react');
    -var About = require('./components/About');
    -
    -ReactDOM.render(
    -    <Router history={hashHistory} >
    -        <Route path=""/"" component={App}>
    -            <Route path=""about"" component={About} />
    -        </Route>
    -    </Router>, 
    -    document.getElementById('app')
    -);
    -
    - -

    App.js

    - -
    'use strict';
    -
    -var React = require('react');
    -var Link = require('react-router').Link;
    -var Header = require('./Header');
    -var UserPanel = require('./UserPanel');
    -var ModelPanel = require('./ModelPanel.react');
    -var EventPanel = require('./event/EventPanel');
    -var VisPanel = require('./vis/VisPanel');
    -var LoginForm = require('./LoginForm');
    -var AppStore = require('../stores/AppStore');
    -var AppStates = require('../constants/AppStates');
    -
    -var App = React.createClass({
    -
    -  [... code omitted ...]
    -
    -  render: function() {
    -    var viewStateUi = getViewStateUi(this.state.appState);
    -
    -    return (
    -      <div>
    -        <Header />
    -        <Link to=""/about"">About</Link>
    -        {viewStateUi}
    -      </div>
    -    );
    -  }
    -
    -});
    -
    -",HQ -"

    I have this very simple typescript file:

    - -
    export default const VERSION: number = 2016030600;
    -
    - -

    Then I run:

    - -
    tsc version.ts
    -
    - -

    typescript compiler (Version 1.8.7, OS X) complains:

    - -
    version.ts(1,16): error TS1109: Expression expected.
    -
    - -

    How can I fix this error? Thank you.

    -",HQ -" i m new in PHP programing. i copy some project form github https://github.com/puttyvikas/shopping this is screen shot project -containing thi file [githum PHP project files][1] i extract project - place in my wamp www folder. and access by using - http://localhost /shopping-master/index.php its show me not connect error. help me how do i connect with database where should i place sample code - database to run project easily ?? - this is screen shot - - enter code here - - - //connect.php file - Connected to Database - Successfully!!
    ""; - //} - - - - - //this is index.php file - - - - - - - - - - - ",LQ -"

    I have tried to understand but not able to see how and where might be the data I am storing after login is going.

    - -
    public static final String BASE_URL = ""https://xyz.firebaseio.com"";
    -
    -Firebase ref = new Firebase(FirebaseUtils.BASE_URL);
    -    ref.authWithPassword(""xyz@foo.com"", ""some_password"", new Firebase.AuthResultHandler() {
    -
    -    @Override
    -    public void onAuthenticated(AuthData authData) {
    -        Toast.makeText(LoginActivity.this, ""Login Successful"", Toast.LENGTH_SHORT).show();
    -        startActivity(new Intent(LoginActivity.this, MainActivity.class));
    -    }
    -    @Override
    -    public void onAuthenticationError(FirebaseError firebaseError) {
    -    }
    -}
    -
    - -

    At this point I am successfully authenticated and landed onto MainActivity. Next in onCreate of MainActivity. I initialize Firebase

    - -
    firebase = new Firebase(FirebaseUtils.BASE_URL).child(""box"");
    -
    -// adapter below is an ArrayAdapter feeding ListView
    -firebase.addChildEventListener(new ChildEventListener() {
    -    @Override
    -    public void onChildAdded(DataSnapshot dataSnapshot, String s) {
    -        if (dataSnapshot.getValue(Box.class) instanceof Box)
    -            adapter.add(dataSnapshot.getValue(Box.class).getName());
    -    }
    -
    -    @Override
    -    public void onChildChanged(DataSnapshot dataSnapshot, String s) {
    -        adapter.remove(dataSnapshot.getValue(Box.class).getName());
    -    }
    -
    -    // other callbacks
    -}
    -
    - -

    There is a add button that I used to push new records from Android to Firebase.

    - -
    final Button button = (Button) findViewById(R.id.addButton);
    -button.setOnClickListener(new View.OnClickListener() {
    -    public void onClick(View v) {
    -        Box box = new Box(""Box "" + System.currentTimeMillis(), ""Location "" + System.currentTimeMillis());
    -        Firebase fbBox = firebase.child("""" + System.currentTimeMillis());
    -        fbBox.setValue(box);
    -    }
    -});
    -
    - -

    But above code doesn't add any record (evident from ListView that is not updated) or atleast I might not know where to look for the data. I checked opening Firebase in browser, but I am not sure how to check for user specific data?

    - -

    I modified my Firebase Rules like

    - -
    {
    -    ""rules"": {
    -      ""users"": {
    -        ""$uid"": {
    -          "".write"": ""auth != null && auth.uid == $uid"",
    -          "".read"": ""auth != null && auth.uid == $uid""
    -        }
    -      }
    -    }
    -}
    -
    - -

    I tried to open URLs such as https://xyz.firebaseio.com/xxxxxx-xxxxx-xxxx-xxxxx-xxxxxxxxxxxx but it wouldn't show any data.

    - -

    I would like to have some information on:

    - -
      -
    1. How to add user specific data after authentication. Can't it be seamless like when we don't have any restriction on read/write on user basis, because I could easily read/write data.

    2. -
    3. Is there any Firebase web view to visualize the database or see JSON data, where I can see/modify the data to/from Android device?

    4. -
    -",HQ -"

    Is there a way that I can parse a single comma delimited string without using anything fancy like a csv.reader(..) ? I can use the split(',') function but that doesn't work when a valid column value contains a comma itself. The csv library has readers for parsing CSV files which correctly handle the aforementioned special case, but I can't use those because I need to parse just a single string. However if the Python CSV allows parsing a single string itself then that's news to me.

    -",HQ -How to display error messgae using javascript or jquery only when both the feilds are empty. For example a user can either enter Zipcode or select a state from dropdown. If the user doesnot select any one of those then the error should be displayed.,LQ -"

    I was looking for how to show the open files in project view and found theses two features, I want to know what does the above mentioned features do?

    -",HQ -" - badd.setOnClickListener(new View.OnClickListener() - { - @Override - public void onClick(View v) { - // TODO Auto-generated method stub - String s1 = e1.getText()+""hi"".toString(); - Log.i(""add"",s1); - if(e1.getText()==null) - { - Toast.makeText(getApplicationContext(), ""Please Enter A Number First"", Toast.LENGTH_SHORT).show(); - } - else - { - num1 = Float.parseFloat(e1.getText()+""""); - i=1; - e1.setText(null); - } - } - }); - -I am making a simple calculator app, there is a Button badd(button to perform addition) and an EditText e1. when this button is clicked; first it'll be checked if the textbox is empty or not if it is empty it'll display a Toast telling user to enter a number. if the number is already entered that number will be stored in a variable num1 and textbox will get empty so that user can input another number and addition will be performed on the two numbers. - -When i entered a number and pressed badd addition was done successfully. But my problem is that when i leave the edit text box empty (null) i get a runtime error and instead of displaying toast it shows an error ""your application is unfortunately closed"". - -I created a string variable s1 also that takes the string entered in e1 and concate that string with another string ""hi"" so that if the string is empty it'll at least display a hi message in log cat. It is to check if there is some error in anonymous inner class. but it is cleared that there is no problem the anonymous inner class and else block. - -I think the bug is in the if block. Please Help Me! Following are my LogCat errors that will help you to find the bug. - -03-05 16:37:00.601: I/add(1569): hi - -03-05 16:37:00.663: E/AndroidRuntime(1569): FATAL EXCEPTION: main - -03-05 16:37:00.663: E/AndroidRuntime(1569): java.lang.NumberFormatException: Invalid float: """" - -03-05 16:37:00.663: E/AndroidRuntime(1569): at java.lang.StringToReal.invalidReal(StringToReal.java:63) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at java.lang.StringToReal.parseFloat(StringToReal.java:289) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at java.lang.Float.parseFloat(Float.java:300) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at com.example.mycalculator.MainActivity$13.onClick(MainActivity.java:171) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at android.view.View.performClick(View.java:4202) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at android.view.View$PerformClick.run(View.java:17340) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at android.os.Handler.handleCallback(Handler.java:725) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at android.os.Handler.dispatchMessage(Handler.java:92) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at android.os.Looper.loop(Looper.java:137) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at android.app.ActivityThread.main(ActivityThread.java:5039) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at java.lang.reflect.Method.invokeNative(Native Method) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at java.lang.reflect.Method.invoke(Method.java:511) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560) - -03-05 16:37:00.663: E/AndroidRuntime(1569): at dalvik.system.NativeStart.main(Native Method) -",LQ -"*******
    -PYTHON guruz Please Help! I am writing a program to get an output for a user input .. User inputs IP address.. I need to display a specific part of the above line.

    -THANKS IN ADVANCE

    -********/ Got this file /********
    -mot physical /ABC-RD0.CLD/CPQSCWSSF001f1-V.80 {
    - poolcoin /ABC-RD0.CLD/123.45.67.890:88
    - ip-protocol tcp
    - mask 255.255.255.255
    - /Common/source_addr {
    - default yes
    -mot physical /ABC-RD0.CLD/CPQSCWSSF001f1-V.80 {
    - profiles {
    - /Common/http { }
    - /Common/webserver-tcp-lan-optimized {
    - context serverside
    -}
    -mot physical /ABC-RD0.CLD/BBQSCPQZ001f1-V.80 {
    - poolcoin /ABC-RD0.CLD/123.45.67.890:88
    - ip-protocol tcp
    - mask 255.255.255.255
    - -********/ Want the below output for user input /********
    -User inputs the IP and output should be:

    -user input: 123.45.67.890
    -output: CPQSCWSSF001f1 <----------------------------

    -user input: 123.45.67.890
    -output: BBQSCPQZ001f1 <----------------------------

    -********/ This is what i have tried /********
    - -#!/usr/bin/env python

    - -import re

    - -with open(""test.txt"") as open file:
    - for line in open file:
    - for part in line.split():
    - if ip in part:
    - print part -1
    -",LQ -"

    Why do we use numpy arrays in place of simple arrays in python? What is the main difference between them?

    -",HQ -"

    I am trying to use CLion on Windows and I installed my environment using cygwin but I'm getting this warning in the settings. Moreover, it's almost impossible to debug because the debugger just stops showing debugger info in the middle.

    -",HQ -"

    Im trying to apply a force to an object. To get it to move in the angle that my mouseposition is generating relative to the object.

    - -

    I have the angle

    - -
     targetAngle = Matter.Vector.angle(myBody.pos, mouse.position);
    -
    - -

    Now I need to apply a force, to get the body to move along that angle. -What do I put in the values below for the applyForce method?

    - -
      // applyForce(body, position, force)
    -
    -  Body.applyForce(myBody, {
    -    x : ??, y : ??
    -  },{
    -    x:??, y: ?? // how do I derive this force??
    -  });
    -
    - -

    What do I put in the x and y values here to get the body to move along the angle between the mouse and the body.

    -",HQ -"

    I am working on a project that requires a secure connection.

    - -

    I can set the route, uri, asset to use 'https' via:

    - -
    Route::get('order/details/{id}', ['uses' => 'OrderController@details', 'as' => 'order.details', 'https']);
    -
    -url($language.'/index', [], true)
    -
    -asset('css/bootstrap.min.css', true)
    -
    - -

    But setting the parameters all the time seems tiring.

    - -

    Is there a way to force all routes to generate HTTPS links?

    -",HQ -"

    We can get a plot as bellow

    - -
    import numpy as np, pandas as pd; np.random.seed(0)
    -import seaborn as sns; sns.set(style=""white"", color_codes=True)
    -tips = sns.load_dataset(""tips"")
    -g = sns.lmplot(x=""total_bill"", y=""tip"", data=tips)
    -sns.plt.show()
    -
    - -

    - -

    But when we have a lot of data points the regression line is not visible anymore. How can I change the line's color? I couldn't find anymore command

    -",HQ -"Warning: require(C:\app-isw\bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in C:\app-isw\bootstrap\autoload.php on line 17 - -Fatal error: require(): Failed opening required 'C:\app-isw\bootstrap/../vendor/autoload.php' (include_path='.;C:\xampp\php\PEAR') in C:\app-isw\bootstrap\autoload.php on line 17 - -Any solution ? , I've update composer and the problem presist.",LQ -"

    Introduction

    - -

    In my app I want to get a one-off accurate location of where the user currently is. When I used FusedLocationProviderApi.getLastLocation sometimes this would be null or out of date location because I found out this just gets a cached location and does not request a new location update.

    - -

    The solution was to request a location update only once as seen below.

    - -
     LocationRequest locationRequest  = LocationRequest.create()
    -                .setNumUpdates(1)
    -                .setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY)
    -                .setInterval(0);
    -
    -        LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient,locationRequest,this)
    -
    - -

    Now I get a more accurate location all the time.

    - -

    My Question

    - -

    How can I determine if a location update failed? Since I am only requesting 1.

    - -

    When a location update is obtained this callback is invoked

    - -
     @Override
    - public void onLocationChanged(Location location) {
    -
    - }
    -
    - -

    However this does not get called if a location update failed.

    - -

    What I have tried

    - -

    I saw there was a ResultCallback. However, onSuccess seems to be always called even if the one-off location update failed.

    - -
    LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient,locationRequest,this).setResultCallback(new ResultCallbacks<Status>() {
    -            @Override
    -            public void onSuccess(@NonNull Status status) {
    -                DebugUtils.log(""requestLocationUpdates ResultCallback onSuccess + "" + status.toString(),true,true);
    -            }
    -
    -            @Override
    -            public void onFailure(@NonNull Status status) {
    -                DebugUtils.log(""requestLocationUpdates ResultCallback onFailure + "" + status.toString(),true,true);
    -            }
    -        });
    -
    - -

    Other

    - -

    Using com.google.android.gms:play-services-location:8.4.0

    - -

    Thanks for reading, please help me out.

    -",HQ -"I'm attempting to create a server using IIS. -I created a site. Configured the firewall. It's available in the browser as localhost(http://localhost:8555/) and static IP(http://10.12.66.79:8555/) too -But from another network like my phone. I tried accessing using the static ip but it failed. then i tried using the virtual ip then it show me the login page of my service provider. -what I can do next ?",LQ -"for some reason my code at the bottom of function TargetEnemy() doesn't work. I try to remove the null GameObjects from the List, but they remain in the list. Any help would be appreciated. Thanks in advance! - - - - - - using UnityEngine; - using System.Collections; - using System.Collections.Generic; - - public class TurretController : MonoBehaviour { - - public Transform turretBulletSpawn; - public GameObject turretBullet; - - public List storedEnemies = new List (); - - void Start () - { - - } - - void Update () - { - TargetEnemy(); - } - - public void OnTriggerEnter (Collider enemyTriggered) - { - if (enemyTriggered.tag == ""Enemy"") - { - storedEnemies.Add(enemyTriggered.gameObject); - } - } - - public void OnTriggerExit (Collider enemyTriggered) - { - storedEnemies.Remove(enemyTriggered.gameObject); - } - - void TargetEnemy() - { - for (int i = 0; i < storedEnemies.Count; i++) - { - Quaternion rotate = Quaternion.LookRotation(storedEnemies[i].transform.position - transform.position); - transform.rotation = Quaternion.Slerp(transform.rotation, rotate, Time.deltaTime * 2); - Instantiate (turretBullet, turretBulletSpawn.position, turretBulletSpawn.rotation); - - if (storedEnemies[i].gameObject == null) - { - storedEnemies.RemoveAt(i); - } - } - } - } - - - - -",LQ -"I have been working on a web page in Visual Studio that allows the user to select data for an invoice. One of the areas of my page consists of a button, that when clicked, adds a drop down box as well as several text boxes in a table in the same row, every time the button is clicked, a new row is added with the same set of elements. This serves to allow the user to add several products to the invoice, which can be selected with the drop down box in each row. This is all done within the Main.Master file, through the markup section of code. - -My problem however, is that I only know how to add options for the drop down box that consist of a text value. More so, I don't know how to create and reference an SQL Data source in the markup file, and use the ""ProductID"" field within said database as the main data for my drop down box. I'll post a summary of my questions below, then my code, any help would be much appreciated please. - -**Summary** - - 1. How can you Connect to an SQL Server in the Main.Master file through the markup code and use it as a Data Source? - 2. How would I use one of the fields within the data source as the main field for my drop down box? - -**Code** - - <%@ Master Language=""C#"" AutoEventWireup=""true"" CodeBehind=""Main.master.cs"" Inherits=""DatabaseDrivenWebsite.Main"" %> - - - - - - My Website! - - - - - - - -
    -
    This is the header
    -
    - - Home | Orders | Finances - - - - //~When clicked, this button calls the AddRow Function~ - - -
    -
    -
    -
    - - -
    -
    Copyright 2016 DBS
    -
    - - - - - -Here is the JSFiddle, its very rough and the formatting isn't how it looks on my official web page, but it demonstrates the code in action and how it functions. - -Any help would be beyond appreciated, I couldn't find anything online that would help me out with this, it seems to be too specific. - -*P.S. Scroll to the right of the preview to find the ""Add"" Button, click that too see the functionality of the code* - -https://jsfiddle.net/5170hLsh/1/ - -~ Luke",LQ -"So I'm using pandas to read from a row of data that looks like this: - - 0 overcast - 1 overcast - 2 overcast - 3 overcast - 4 rainy - 5 rainy - 6 rainy - 7 rainy - 8 rainy - 9 sunny - 10 sunny - 11 sunny - 12 sunny - 13 sunny - -And I wish to store overcast (first entry) as a variable, and then iterate through the list until there is a contrasting variable, and store that one also. This should assign any other contrasting variables along the way until until the end of the list. - -So in this case, I should end up with 3 variables. 0 = overcast, 1 = rainy, 2 = sunny but I want this to work just as well if there are five different conditions in a classifier, not just two or three. - -I'm having a hard time figuring out the best way to do this or maybe there is something in pandas that does this for me that I'm missing? ",LQ -"

    I am working on integrating the swagger UI with a spring boot MVC app and I am curious as to the differences between these libraries.

    - -

    I looked at each on mvnrepository.com and they are all done by different groups but seem to do the same thing. I am hoping to get a clear idea of the differences between these and if one is recommended over the others. I notice the swagger-core module by io.swagger has the most usages.

    - -

    Thanks!

    -",HQ -"

    Suppose I've the following class:

    - -
    class Tabs extends React.Component {
    -  displayName: Tabs;
    -
    -  static propTypes = {
    -  selected: React.PropTypes.number,
    -  children: React.PropTypes.oneOfType([
    -    React.PropTypes.array,
    -    React.PropTypes.element
    -  ]).isRequired
    -  };
    -
    -  constructor() {
    -  super();
    -  this.state = {
    -    selected: 0,
    -    maxSelected: 0
    -  };
    -
    -  render() {
    -    return(
    -      <div>
    -       {this.props.selected}
    -       {this.props.children}
    -      </div>
    -    );
    -  }
    -};
    -
    - -

    I want to know that if passing the following constructor is important:

    - -
    constructor(props) {
    -  super(props);
    -}
    -
    - -

    My current code works just fine but I wanted to know if this is a good practice.

    -",HQ -"

    I'm trying to read a file in my hdfs. Here's a showing of my hadoop file structure.

    - -
    hduser@GVM:/usr/local/spark/bin$ hadoop fs -ls -R /
    -drwxr-xr-x   - hduser supergroup          0 2016-03-06 17:28 /inputFiles
    -drwxr-xr-x   - hduser supergroup          0 2016-03-06 17:31 /inputFiles/CountOfMonteCristo
    --rw-r--r--   1 hduser supergroup    2685300 2016-03-06 17:31 /inputFiles/CountOfMonteCristo/BookText.txt
    -
    - -

    Here's my pyspark code:

    - -
    from pyspark import SparkContext, SparkConf
    -
    -conf = SparkConf().setAppName(""myFirstApp"").setMaster(""local"")
    -sc = SparkContext(conf=conf)
    -
    -textFile = sc.textFile(""hdfs://inputFiles/CountOfMonteCristo/BookText.txt"")
    -textFile.first()
    -
    - -

    The error I get is:

    - -
    Py4JJavaError: An error occurred while calling o64.partitions.
    -: java.lang.IllegalArgumentException: java.net.UnknownHostException: inputFiles
    -
    - -

    Is this because I'm setting my sparkContext incorrectly? I'm running this in a ubuntu 14.04 virtual machine through virtual box.

    - -

    I'm not sure what I'm doing wrong here....

    -",HQ -"

    I'm using React-router for the first time and I don't know how to think in it yet. Here's how i'm loading my components in nested routes.

    - -

    entry point .js

    - -
    ReactDOM.render(
    -    <Router history={hashHistory} >
    -        <Route path=""/"" component={App}>
    -            <Route path=""models"" component={Content}>
    -        </Route>
    -    </Router>, 
    -    document.getElementById('app')
    -);
    -
    - -

    App.js

    - -
      render: function() {
    -    return (
    -      <div>
    -        <Header />
    -        {this.props.children}
    -      </div>
    -    );
    -  }
    -
    - -

    So the child of my App is the Content component I sent in. I'm using Flux and my App.js has the state and listens for changes, but I don't know how to pass that state down to this.props.children. Before using react-router my App.js defines all children explicitly, so passing state was natural but I don't see how to do it now.

    -",HQ -"Are these all the operators in python or are there more? -Need help! - - ==, !=, >=, <= - -",LQ -"

    I have used angular bootstrap dropdown successfully link. -But the problem it that the dropdown opens on the right side. -How can i make it to open on left? -Here is the markup and js i used from the given link.

    - -

    Markup:

    - -
    <div ng-controller=""DropdownCtrl"">
    -<!-- Single button with keyboard nav -->
    -<div class=""btn-group"" uib-dropdown keyboard-nav>
    -    <button id=""simple-btn-keyboard-nav"" type=""button"" class=""btn btn-primary"" uib-dropdown-toggle>
    -        Dropdown with keyboard navigation <span class=""caret""></span>
    -    </button>
    -    <ul uib-dropdown-menu role=""menu"" aria-labelledby=""simple-btn-keyboard-nav"">
    -        <li role=""menuitem""><a href=""#"">Action</a></li>
    -        <li role=""menuitem""><a href=""#"">Another action</a></li>
    -        <li role=""menuitem""><a href=""#"">Something else here</a></li>
    -        <li class=""divider""></li>
    -        <li role=""menuitem""><a href=""#"">Separated link</a></li>
    -    </ul>
    -</div>
    -</div>
    -
    - -

    js:

    - -
    angular.module('ui.bootstrap.demo').controller('DropdownCtrl', function ($scope, $log) {
    -$scope.items = [
    -'The first choice!',
    -'And another choice for you.',
    -'but wait! A third!'
    -];
    -
    -$scope.status = {
    -isopen: false
    -};
    -
    -$scope.toggled = function(open) {
    -$log.log('Dropdown is now: ', open);
    -};
    -
    -$scope.toggleDropdown = function($event) {
    -$event.preventDefault();
    -$event.stopPropagation();
    -$scope.status.isopen = !$scope.status.isopen;
    -};
    -
    -$scope.appendToEl = angular.element(document.querySelector('#dropdown-long-content'));
    -});
    -
    - -

    please help

    -",HQ -"I am using dreamweaver for the first time to code. I am intermediate in HTML. I've been trying to use a .png file as a button. I've found some sources stating that a - - - -will work, but I have tried it, and to no avail, it does not work. Any suggestions. NOTE: I am also using a CSS to build this *Very* basic website. - -Cheers guys! And many thanks!",LQ -"I am struggling to figure out how to loop through a table in HTML. - -I have a 2D javascript object that I would like to populate cells with `index i,j` from `myObject[i][j]`. I have a basic html table template but with blank `` tags. I have looked at ways to do it in jquery and javascript, but to no avail. - -Any help would be greatly appreciated. ",LQ -"
    class Option extends React.Component {
    -  constructor(props) {
    -    super(props);
    -    this.handleClickOption = this.handleClickOption.bind(this);
    -  }
    -  handleClickOption() {
    -    // some code
    -  }
    -  render() {
    -    return (
    -      <li onClick={this.handleClickOption}>{this.props.option}</li>
    -    );
    -  }
    -}
    -
    - -

    I use eslint-config-airbnb to check the above code and it show me an error msg like Component should be written as a pure function .

    - -

    So how to change the above component to pure function?

    - -

    Thanks for your help.

    -",HQ -"hi i want to use Java string repalceAll() method to replace ""x3"" with ""multiplied by 3"" in my text file. But there is a string occurence ""xxx3"" which i do not want to replace. how can I do it",LQ -"

    Reporting-services 2016 (currently only available as a technical preview) comes with big-upgrades including HTML5 rendering and compliance. See: https://msdn.microsoft.com/en-us/library/ms170438.aspx

    - -

    My desire is to embed SSRS 2016 reports into another webpage using native mode (no Sharepoint or aspx, just pure HTML5). -The traditional fashion to do this is to use an iFrame. -This is an half-way okay method as it's possible to remove the toolbar, hide parameters etc but still you end up losing a lot of control over the document. This is a cross-site implementation from a different domain so I can't manipulate the contained iFrame document as I please.

    - -

    Does there exist an official way to embed the report element 'natively'? -I could envision a URL parameter option like rs:Format=REPORTDIV which serves me a html element.

    - -

    I also tried fetching the report as an image (rs:Format=IMAGE&rc:OutputFormat=PNG) but the resulting PNG has a huge white frame (even when setting background to transparent in Report Builder) around the report element which is a no-go.

    -",HQ -"

    Internally, the compiler should be translating lambda expressions to methods. In that case, would these methods be private or public (or something else) and is it possible to change that?

    -",HQ -"

    I have followed the instructions on how to install OpenCV on an iOS project. However when using Xcode 7 I had to add manually a prefix header. Doing this unfortunately did not help and I was still getting compile errors. I then read another post suggesting that is best to add manually the imports and not use prefix headers in Xcode 7, so I did.

    - -

    Here is my code:

    - -
    #import ""ViewController.h""
    -
    -#import <opencv2/opencv.hpp>
    -#import <UIKit/UIKit.h>
    -#import <Foundation/Foundation.h>
    -#import <opencv2/highgui/cap_ios.h>
    -//using namespace cv;
    -
    -@interface ViewController ()
    -{
    -    IBOutlet UIImageView* imageView;
    -    IBOutlet UIButton* button;
    -}
    -
    -- (IBAction)actionStart:(id)sender;
    -
    -@end
    -
    - -

    However I still get the following errors.

    - -

    -

    - -

    When I uncomment the using namespace cv; I get the following:

    - -

    - -

    I found some complex solutions talking about exposing headers to Swift etc.. I just want my project to work on Objective-C with Xcode 7 ...

    -",HQ -"Am trying to call the fragment from the fragment, on a list view OnItemClick Listner. But the click listner does not work for me. -I have set the list items by using the adapter. - -Here is my code. - -listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { - @Override - public void onItemClick(AdapterView parent, View view, int position, long id) { - - FragmentTransaction xfragmentTransaction = mFragmentManager.beginTransaction(); - xfragmentTransaction.replace(R.id.containerView,new ProductFragment()).commit(); - - } - });",LQ -"
    <ion-navbar  hideBackButton >
    -  <ion-title> </ion-title>
    -  ...
    -  ...
    -
    - -

    I want hideBackButton to be there conditionally and I don't want to repeat the whole ion-navbar element with *ngIf. -Is it possible to to apply *ngIf for hideBackButton attribute?

    -",HQ -"

    I have two environment of my project one Prod another one is Staging. So whenever I have to build any of the environment, I have to change multiple keys like map key, label name and other things in manifest. So I have searched and find out some of the solutions and manifestPlaceholders is one of them.

    - -

    Now what I want to do is to assign multiple value in manifestPlaceholders. So can I put multiple values in it and yes then how to put multiple values in it. Here is the code for the manifestPlaceholders

    - -
    buildTypes {
    -    debug {
    -        manifestPlaceholders = [ google_map_key:""your_dev_key""]
    -    }
    -    release {
    -        manifestPlaceholders = [ google_map_key:""prod_key""]
    -    }
    -}
    -
    -",HQ -"I had made a small form with no.of checkboxes..When I click on Check all checkbox then all the checkbox gets checked automatically....Following is my code.... -But I have taken the following code from internet only.Although its working but as I am new to jqurry I am not able to understand the script...Please help.. - - - - - - - -
    -

    - -
    - All Checkboxes -

    -

    -

    -

    -
    -
    - - ",LQ -"

    I want to add border color for dots in UIPageControl. Here is the small picture of it:

    - -

    - -

    I am able to put second dot by configuring it from XCode but I cannot make the first and third circles' inside empty. Is there a simple way to achieve that?

    - -

    Thanks :)

    -",HQ -"

    Although I love lombok, it gives too much problems while configuring sometimes, specially in Linux. When I was trying to install it, I was getting the following error:

    - -

    I tried to set it up manually,as suggested here -https://github.com/rzwitserloot/lombok/issues/95 -but that didn't work out either. Any suggestions?

    -",HQ -"

    I need to create a random positive integer each time and send it to Json body in Gatling.

    - -

    I used the below code to create a random positive ineger:

    - -
    val  r = new scala.util.Random;
    -val OrderRef = r.nextInt(Integer.MAX_VALUE);
    -
    - -

    but, How can I feed the randomly generated value into the json body?

    - -

    I tried:

    - -
    .exec(http(""OrderCreation"")
    -.post(""/abc/orders"")
    -.body(StringBody(""""""{    ""orderReference"": ""${OrderRef}""}"""""").asJson)  
    -
    - -

    But, this doesn't seem to work. Any clues please.

    - -

    Thanks!

    -",HQ -"

    I have a spring project and try to make it use spring boot and to run at embadded tomcat following :

    - -

    https://spring.io/guides/gs/rest-service/

    - -

    This is my Application

    - -
    //@Configuration
    -//@EnableAspectJAutoProxy
    -@SpringBootApplication
    -@ComponentScan(basePackages = ""gux.prome"")
    -public class Application {
    -
    -    public static void main(String[] args) {
    -        SpringApplication.run(Application.class, args);
    -    }
    -
    -}
    -
    - -

    If I use maven command: mvn spring-boot:run, the project starts fine, but I need to debug , so I run this main method at InteliJ, exception occurs:

    - -
    Exception in thread ""main"" java.lang.IllegalArgumentException: Cannot instantiate interface org.springframework.context.ApplicationListener : org.springframework.boot.logging.ClasspathLoggingApplicationListener
    -    at org.springframework.boot.SpringApplication.createSpringFactoriesInstances(SpringApplication.java:414)
    -    at org.springframework.boot.SpringApplication.getSpringFactoriesInstances(SpringApplication.java:394)
    -    at org.springframework.boot.SpringApplication.getSpringFactoriesInstances(SpringApplication.java:385)
    -    at org.springframework.boot.SpringApplication.initialize(SpringApplication.java:263)
    -    at org.springframework.boot.SpringApplication.<init>(SpringApplication.java:237)
    -    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1191)
    -    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1180)
    -    at gux.prome.config.Application.main(Application.java:19)
    -    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    -    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    -    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    -    at java.lang.reflect.Method.invoke(Method.java:606)
    -    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)
    -Caused by: java.lang.NoClassDefFoundError: org/springframework/context/event/GenericApplicationListener
    -....
    -
    - -

    This is the pom:

    - -
    <project xmlns=""http://maven.apache.org/POM/4.0.0"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance""
    -  xsi:schemaLocation=""http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"">
    -  <modelVersion>4.0.0</modelVersion>
    -  <groupId>gux</groupId>
    -  <artifactId>prome-data</artifactId>
    -
    -
    -  <version>1.0-SNAPSHOT</version>
    -  <name>prome-data Maven Webapp</name>
    -  <url>http://maven.apache.org</url>
    -
    -  <parent>
    -    <groupId>org.springframework.boot</groupId>
    -    <artifactId>spring-boot-starter-parent</artifactId>
    -    <version>1.3.3.RELEASE</version>
    -  </parent>
    -
    -  <dependencies>
    -
    -    <dependency>
    -      <groupId>org.springframework.boot</groupId>
    -      <artifactId>spring-boot-starter-web</artifactId>
    -    </dependency>
    -
    -    <!-- guava -->
    -    <dependency>
    -      <groupId>com.google.guava</groupId>
    -      <artifactId>guava</artifactId>
    -      <version>18.0</version>
    -    </dependency>
    -    <!-- end of guava -->
    -
    -
    -    <dependency>
    -      <groupId>joda-time</groupId>
    -      <artifactId>joda-time</artifactId>
    -      <version>2.9.2</version>
    -    </dependency>
    -
    -  </dependencies>
    -
    -
    -  <properties>
    -    <java.version>1.7</java.version>
    -  </properties>
    -
    -
    -  <build>
    -
    -    <finalName>prome-data</finalName>
    -
    -    <plugins>
    -      <plugin>
    -        <groupId>org.springframework.boot</groupId>
    -        <artifactId>spring-boot-maven-plugin</artifactId>
    -      </plugin>
    -
    -      <!--<plugin>-->
    -      <!-- use java 7 -->
    -        <!--<artifactId> maven-compiler-plugin</artifactId>-->
    -        <!--<version>3.1</version>-->
    -        <!--<configuration>-->
    -          <!--<source> 1.7</source>   -->
    -          <!--<target> 1.7</target>-->
    -        <!--</configuration>-->
    -      <!--</plugin>-->
    -
    -    </plugins>
    -  </build>
    -
    -  <!--<repositories>-->
    -    <!--<repository>-->
    -      <!--<id>spring-releases</id>-->
    -      <!--<url>http://repo.spring.io/libs-release</url>-->
    -    <!--</repository>-->
    -  <!--</repositories>-->
    -
    -  <!--<pluginRepositories>-->
    -    <!--<pluginRepository>-->
    -      <!--<id>spring-releases</id>-->
    -      <!--<url>http://repo.spring.io/libs-release</url>-->
    -    <!--</pluginRepository>-->
    -  <!--</pluginRepositories>-->
    -
    -
    -</project>
    -
    -",HQ -"

    I encountered an issue trying to copy a set of files and when calling .dest('some folder') the entire folder structure was lost.

    - -

    I searched and found an answer suggesting that I should provide {base:'.'} as an option on my call to gulp.src(...) to resolve this issue.

    - -

    The documentation for gulp.src options only says that its options are:

    - -
    -

    Options to pass to node-glob through glob-stream.

    -
    - -

    Looking into node-glob documentation for its options base is not listed there at all.
    -And the glob-stream options documentation only states that

    - -
    -

    ""the Default is everything before a glob starts (see glob-parent)""

    -
    - -

    So no much help here either.

    - -

    So, what effect does the base option passed to gulp.src have on the viny6l files in the created stream and how does it effect the gulp.dest command ?

    -",HQ -"

    What is the difference from drop in the Git interactive rebase and just deleting the line of the commit?

    -",HQ -"I have a data table with column From Date and To Date. -User entered date using two date time picker dtFrom and dtTo. -I need to check if date entered by user is overlapping From Date and To Date column present in data table. e.g. -columns in data table -FromDate ToDate -01/07/2012 30/06/2013 -01/07/2013 30/06/2014 -01/07/2015 30/06/2016 -Now if user enter -From Date ToDate -01/07/2012 30/06/2017 - -I wanted to check if these dates entered by user are overlapping with dates present in data table. -Please guide and suggest me a solution for c# desktop application",LQ -"

    I am trying to use git in Android Studio. If I choose commit changes, it says that it has successfully committed the changed files but those changes do not appear on the GitHub. Instead, if I delete the repository from GitHub and choose Share Project on GitHub, it successfully creates a new repository and uploads the files into it. This means that the connection is fine. Also, I have checked the gitignore file, the java files are not in that list. What could be the problem?

    -",HQ -"

    Spring Boot Actuator's Trace does a good job of capturing input/output HTTP params, headers, users, etc. I'd like to expand it to also capture the body of the HTTP response, that way I can have a full view of what is coming in and going out of the the web layer. Looking at the TraceProperties, doesn't look like there is a way to configure response body capturing. Is there a ""safe"" way to capture the response body without messing up whatever character stream it is sending back?

    -",HQ -"

    Having a simple table structure like this:

    - -
    CREATE TABLE test (
    -    id INT PRIMARY KEY,
    -    sid SERIAL
    -);
    -
    - -

    I noticed if I attempt to insert a row but it fails a constraint test (i.e. PRIMARY KEY constraint), the SERIAL counter will increment anyway, so the next successful insert, sid will be sid + 2 instead of sid + 1.

    - -

    Is this normal behavior? Any way to prevent this?

    -",HQ -"

    I know that it is an anti-pattern to set state on componentDidMount and a state should be set on componentWillMount but suppose I want to set the length of the number of li tags as a state. In that case, I can't set the state on componentWillMount since the li tags might not have been mounted during that phase. So, what should be the best option here? Will it be fine if I set the state on componentDidMount?

    -",HQ -"

    With the code:

    - -
    <ion-navbar *navbar>
    -</ion-navbar>
    -
    - -

    the back button is enabled. But I need to customize it (the icon or the label). Is it possible? -Can't find anything in the docs/api.

    -",HQ -"

    I'm trying to GET some data from the server. I'm doing a GET with the python requests library:

    - -
    my_list = #a list ['x', 'y', 'z']
    -payload = {'id_list': my_list}
    -requests.get(url, params=payload)
    -
    - -

    my server accepts a url: https://url.com/download?id_list

    - -

    but when I send this get request, I get an error:

    - -
    -

    <h1>400 Bad Request</h1> - The server cannot understand the request due to malformed syntax. - <br /><br /> Got multiple values for a parameter:<br /> - <pre>id_list</pre>

    -
    - -

    I saw the log and the request looks like this:

    - -

    url/download?id_list=x&id_list=y&id_list=z

    - -

    how can I fix this?

    -",HQ -"

    I am trying to use CloudFormation for the first time to configure a CloudFront distribution that uses an S3 bucket as its origin.

    - -

    However I am receiving the error One or more of your origins do not exist when the template is run. I have assumed it is down to the origin DomainName being configured incorrectly, however have not been able to find a configuration that works.

    - -

    I currently have the following template:

    - -
    {
    -  ""AWSTemplateFormatVersion"": ""2010-09-09"",
    -  ""Resources"": {
    -    ""AssetBucket"": {
    -      ""Type"": ""AWS::S3::Bucket"",
    -      ""Properties"": {
    -        ""BucketName"": ""cdn-assets"",
    -        ""AccessControl"": ""PublicRead"",
    -        ""CorsConfiguration"": {
    -          ""CorsRules"": [
    -            {
    -              ""AllowedHeaders"": [
    -                ""*""
    -              ],
    -              ""AllowedMethods"": [
    -                ""GET""
    -              ],
    -              ""AllowedOrigins"": [
    -                ""*""
    -              ],
    -              ""Id"": ""OpenCors"",
    -              ""MaxAge"": ""3600""
    -            }
    -          ]
    -        }
    -      }
    -    },
    -    ""AssetCDN"": {
    -      ""Type"": ""AWS::CloudFront::Distribution"",
    -      ""Properties"": {
    -        ""DistributionConfig"": {
    -          ""Origins"": [
    -            {
    -              ""DomainName"": {
    -                ""Fn::GetAtt"": [
    -                              ""AssetBucket"",
    -                              ""DomainName""
    -                          ]
    -              },
    -              ""Id"": ""AssetBucketOrigin"",
    -              ""S3OriginConfig"": {}
    -            }
    -          ],
    -          ""Enabled"": ""true"",
    -          ""DefaultCacheBehavior"": {
    -            ""Compress"": true,
    -            ""AllowedMethods"": [
    -              ""GET"",
    -              ""HEAD"",
    -              ""OPTIONS""
    -            ],
    -            ""TargetOriginId"": ""origin-access-identity/cloudfront/AssetCDN"",
    -            ""ForwardedValues"": {
    -              ""QueryString"": ""false"",
    -              ""Cookies"": {
    -                ""Forward"": ""none""
    -              }
    -            },
    -            ""ViewerProtocolPolicy"": ""allow-all""
    -          },
    -          ""PriceClass"": ""PriceClass_All"",
    -          ""ViewerCertificate"": {
    -            ""CloudFrontDefaultCertificate"": ""true""
    -          }
    -        }
    -      },
    -      ""DependsOn"": [
    -        ""AssetBucket""
    -      ]
    -    }
    -  }
    -}
    -
    - -

    I have not been able to find much advice on this, so hoping someone can point me in the right direction.

    -",HQ -"

    I'm trying to filter top's output by command, but when I type O, then

    - -
    COMMAND?apache2
    -
    - -

    I get the following error:

    - -
    'include' filter delimiter is missing
    -
    - -

    I've looked at the top man page, but can't seem to work out what's going on.

    -",HQ -"

    I'm looking for a good way to implement a relatively strong Content-Security-Policy header for my ASP.NET WebForms application. I'm storing as much JavaScript as possible in files instead of inline, but by default, WebForms injects a lot of inline script for things as simple as form submission and basic AJAX calls.

    - -

    MVC has some simple ways to implement nonces, especially with the help of third party libraries like NWebsec, but I can't seem to find any methods of implementing them with WebForms. I wouldn't even have a problem using hashes if there were a way to predict and retrieve the hash for each .NET injected script tag.

    - -

    I hate allowing the 'unsafe-inline' value. It feels wrong needing to turn off such a powerful security feature. Is there a reasonable way to implement it in WebForms?

    -",HQ -"

    I've looked at a lot of answer for this same question, but I haven't found a working solution yet. I am trying to make a web app that you can upload files to using express and multer, and I am having a problem that no files are being uploaded and req.file is always undefined.

    - -

    My code below

    - -
    'use strict';
    -
    -var express = require('express');
    -var path    = require('path');
    -var multer  = require('multer')
    -var upload  = multer({ dest: 'uploads/' })
    -
    -var app = express();
    -require('dotenv').load();
    -
    -app.use(express.static(path.join(__dirname, 'main')));
    -
    -app.post('/upload', upload.single('upl'), function (req, res, next) {
    -  // req.file is the `avatar` file
    -  // req.body will hold the text fields, if there were any
    -  console.log(req.file);
    -  res.status(204).end();
    -})
    -
    -var port = process.env.PORT || 8080;
    -app.listen(port,  function () {
    -    console.log('Node.js listening on port ' + port + '...');
    -});
    -
    - -

    The form

    - -
        <form class=""uploadForm"" action=""/upload"" method=""post"" enctype=""multipart/formdata"">
    -        <label class=""control-label"">Select File</label>
    -        <input name=""upl"" id=""input-1"" type=""file"" class=""file"">
    -        <input type=""submit"" value=""submit"" />
    -    </form>
    -
    - -

    Help very much appreciated, this is driving me crazy.

    -",HQ -"

    Can anybody explain me how to compare KClasse-s and interfaces among yourselves? I known how to check that classes or interfaces are equal but I don't understand how to check that A class is superclass of B class, etc.

    - -
    interface IB {}
    -interface IC : IB {}
    -
    -open class A {}
    -open class B : A() {}
    -open class C : B(), IC {}
    -
    -fun main(args: Array<String>) {
    -  if (B::class == B::class) { println(""B class is equal to B class"") }
    -  if (IB::class == IB::class) { println(""IB interface is equal to IB interface"") }
    -
    -  if (A::class ??? B::class) { println(""A class is parent of B class"") }
    -  if (A::class ??? C::class) { println(""A class is superclass of C class"") }
    -
    -  if (C::class ??? IC) { println(""C class is implement IC interface"") }
    -  if (IC ??? IB) { println(""IC interface is implement IB interface"") }
    -}
    -
    -",HQ -"

    Within my react-native app I want to show a webview, that loads a local html5 web application (single page app, SPA).

    - -

    I am able to load an html file, that is located within the relative folder webapp using

    - -
    var webapp = require('./webapp/index.html');
    -
    - -

    and

    - -
    <WebView source={webapp}></WebView>
    -
    - -

    as I have stated in this thread: react native webview load from device local file system

    - -

    Unfortunately, the assets of this local webapp like the .js and .css files, aren't loaded by the webapp.

    - -

    During development of the react-native app, these files are available via the development server. Though, when the app is packed and run on an iOS device, the assets aren't available (I get a 404 error in Safari developer tools).

    - -

    How can I make sure, that all of the assets (JS, CSS, etc.) within the webapp folder are available in the packaged app local.

    -",HQ -"

    So, I have an app that has multiple reducers, and thus multiple action creators associated.

    - -

    There is a time in which one of my reducers updates the state (because of an edit), and as such, I have to then make sure the other reducers see this update and adjust their state accordingly.

    - -

    think of it as if a user selects ""sneakers"", and this state management is in a reducer called productsReducer. As such, as a user moves thru the app process, they get couponsReducer associated with it... but the user can ""edit"" at any time, so if they then edit ""sneakers"" and say, choose another producer, I have to be able to alter the couponsReducer in real time, because a progress modal needs to reflect this. I can do this via going thru the flow to the coupon page, because on that page I just reconcile the data on componentWillMount... but the rub is I have a progress modal, and prior to getting to the coupons page, a user can open the progress modal... and there will be a missmatch here...

    - -

    long winded I know, I just wanted to explain my situation.

    - -

    so, I want to be able to call ""other reducers"" or their action creators from within the productsReducer.

    - -

    Would a middleware be appropriate here, in which I sniff for a certain ""action.type"" and if I see it, I can dispatch other action.type's or is there a way to call action creators from within the productsReducer?

    - -

    importing: import * as coupons from './couponsActions' and any other actions I need seem inappropriate.

    -",HQ -"Hello i have loop like this: - - char word[10]; - - word[0] = 'a'; - word [1] = 'b'; - word[2] = 'c'; - word[3] = '\0'; - - - - char* ptr = word; - - - - - int x = 0; - - int counter = 0; - - - for ( char c = *(ptr + x); c == '\0'; c = *(ptr + x)) - { - counter++; - x++; - } - -After execution of this loop counter is equal to 0. I dont know why. - -Any ideas why this loop exits? ",LQ -"

    How do you read a password protected excel file into r?

    - -

    I have tried excel.link but its not available for R version 3.2.3 (My version)

    - -

    I also tried RDCOMClient but it is also not available for R version 3.2.3

    -",HQ -"

    How would one remove duplicates from an unordered Immutable.List()? -(without using toJS() or toArray())

    - -

    e.g.

    - -
    Immutable.List.of(""green"", ""blue"",""green"",""black"", ""blue"")
    -
    -",HQ -"

    When I do not minify my app I reach the maximum method count and building the dex file fails. This can be avoided by enabling minify in build.gradle. The downside, however, is that now the code gets obfuscated. This is OK for the Release build but it is problematic for a Debug build.

    - -

    Is there a way to tell gradle to minify a Debug build but not obfuscate it?

    -",HQ -"I faced this question, r always has the las integer between the (). - -What is the output of the following program? - - #include - using namespace std; - main() { - int i = 1, j = 2, k = 3, r; - r = (i, j, k); - cout<I am finally getting around to learning git. However, I unwisely started messing around with it awhile back (before I really knew what I was doing) via Sourcetree. Now that I'm trying to go through it, I have a pretty large list of settings. When I input:

    - -
    git config --list
    -
    - -

    I get the following result:

    - -
    core.excludesfile=~/.gitignore
    -core.legacyheaders=false
    -core.quotepath=false
    -core.pager=less -r
    -mergetool.keepbackup=true
    -push.default=simple
    -color.ui=auto
    -color.interactive=auto
    -repack.usedeltabaseoffset=true
    -alias.s=status
    -alias.a=!git add . && git status
    -alias.au=!git add -u . && git status
    -alias.aa=!git add . && git add -u . && git status
    -alias.c=commit
    -alias.cm=commit -m
    -alias.ca=commit --amend
    -alias.ac=!git add . && git commit
    -alias.acm=!git add . && git commit -m
    -alias.l=log --graph --all --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset'
    -alias.ll=log --stat --abbrev-commit
    -alias.lg=log --color --graph --pretty=format:'%C(bold white)%h%Creset -%C(bold green)%d%Creset %s %C(bold green)(%cr)%Creset %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
    -alias.llg=log --color --graph --pretty=format:'%C(bold white)%H %d%Creset%n%s%n%+b%C(bold blue)%an <%ae>%Creset %C(bold green)%cr (%ci)' --abbrev-commit
    -alias.d=diff
    -alias.master=checkout master
    -alias.spull=svn rebase
    -alias.spush=svn dcommit
    -alias.alias=!git config --list | grep 'alias\.' | sed 's/alias\.\([^=]*\)=\(.*\)/\1\     => \2/' | sort
    -include.path=~/.gitcinclude
    -include.path=.githubconfig
    -include.path=.gitcredential
    -diff.exif.textconv=exif
    -credential.helper=osxkeychain
    -core.excludesfile=/Users/myusername/.gitignore_global
    -difftool.sourcetree.cmd=opendiff ""$LOCAL"" ""$REMOTE""
    -difftool.sourcetree.path=
    -mergetool.sourcetree.cmd=/Applications/SourceTree.app/Contents/Resources/opendiff-w.sh ""$LOCAL"" ""$REMOTE"" -ancestor ""$BASE"" -merge ""$MERGED""
    -mergetool.sourcetree.trustexitcode=true
    -user.name=My Name
    -user.email=myemail@email.com
    -
    - -

    And that seems like more than what I want to start with since the tutorial that I'm working through doesn't pull all of that up.

    - -

    Is there a way to ""Reset"" the config file to a default state?

    -",HQ -"

    I am looking for an example of how to use OpenCV's ConnectedComponentsWithStats() function in python, note this is only available with OpenCV 3 or newer. The official documentation only shows the API for C++, even though the function exists when compiled for python. I could not find it anywhere online.

    -",HQ -"

    I'm coming from the angular world where I could extract logic to a service/factory and consume them in my controllers.

    - -

    I'm trying to understand how can I achieve the same in a React application.

    - -

    Let's say that I have a component that validates user's password input (it's strength). It's logic is pretty complex hence I don't want to write it in the component it self.

    - -

    Where should I write this logic? In a store if I'm using flux? Or is there a better option?

    -",HQ -"

    I want to display every thing in the page rotated consistently and dependently 90 degree, I tried to do it but the result was inaccurate and each element rotated independently.

    -",HQ -"

    The title pretty much says it all.

    - -

    The only way I know how to set one is either during the runtime of the program or just before with breakpoint main.main

    - -

    Is there a way I can do this by line number like breakpoint ./otherfile.go:200?

    -",HQ -"

    I'm attempting to write a plugin for babel, and am needing the filename of the current file that is being parsed. I know the lines of the code are passed in, but I haven't managed to find a reference to the filename. Any help??

    - -

    For instance given this code what could I do

    - -
    export default function({ types: t }) {
    -  return {
    -    visitor: {
    -      Identifier(path) {
    -       // something here??
    -      }
    -    }
    -  };
    -}
    -
    -",HQ -" //PROTOYPE - void Display(); - - //CALL - list.Display(); - - /*********************************** - * Print the contents of the list * - ***********************************/ - void EmployeeList::Display() - { - // Temporary pointer - newEmployee * tmp; - - tmp = head; - - // No employees in the list - if(tmp == NULL ) - { - cout << ""\n\n\t\t***THERE IS NO EMPLOYEE INFORMATION STORED YET***\n""; - return; - } - - cout << ""\n\n"" - << ""\t\t************************************************\n"" - << ""\t\t* Employee IDs and Yearly Salary DataBase *\n"" - << ""\t\t************************************************\n\n""; - - cout << ""\t\t\tEmployee IDs"" << setw(20) << right << ""Yearly Salaries\n""; - - // One employee in the list - if(tmp->Next() == NULL ) - { - cout << ""\t\t\t "" << tmp->empID() << setw(13) << right << "" "" - << ""$"" << setw(2) << tmp->ySalary() << endl; - } - - else - { - do - { - cout << ""\t\t\t "" << tmp->empID() << setw(13) << "" "" - << right << ""$"" << setw(2) << tmp->ySalary() << endl; - - tmp = tmp->Next(); - - }while(tmp != NULL ); - - cout << ""\n\t\t\t ***Thank You***"" << endl; - } - } - -I NEED HELP ON WHAT TO WRITE IN ORDER TO DO A RECURSIVE function call FOR Display function. -I need to display the list in reverse order from last to first. -HOW CAN I DO A RECURSIVE PRINT USING CLASS LINKED LIST - -I NEED HELP ON WHAT TO WRITE IN ORDER TO DO A RECURSIVE function call FOR Display function. -I need to display the list in reverse order from last to first.",LQ -"

    Trying to use MySQL for rails app and downloaded it from dev.mysql.com.

    - -

    After successfully installing the package and seeing the option to start and stop the server from Preference Pane, if I go ahead and execute following command in my terminal

    - -
    mysql --version
    -
    - -

    I end up with error as -

    - -
    zsh: command not found: mysql
    -
    - -

    I've been looking for this error and understand that this has something to do with my $PATH variable and if display the value by echo $PATH I get following output -

    - -
    /Library/Frameworks/Python.framework/Versions/3.4/bin:/Users/aniruddhabarapatre1/.rvm/gems/ruby-2.2.1/bin:/Users/aniruddhabarapatre1/.rvm/gems/ruby-2.2.1@global/bin:/Users/aniruddhabarapatre1/.rvm/rubies/ruby-2.2.1/bin:/usr/local/bin:/Users/aniruddhabarapatre1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/git/bin:/opt/ImageMagick/bin:/usr/local/MacGPG2/bin:/Users/aniruddhabarapatre1/.rvm/bin
    -
    - -

    How do I resolve this error to get Mysql up and running.

    -",HQ -"

    My server. It return time :

    - -
    ""2016-01-24T16:00:00.000Z""
    -
    - -

    I want

    - -

    1 : convert to String.

    - -

    2 : I want it show "" time ago "" when load it from server.

    - -

    Please. Help me!

    -",HQ -"

    How do I replace the alpha channel of any image (png, jpg, rgb, rbga) with specified background color? It must also work with images that do not have an alpha channel.

    -",HQ -"[enter image description here][1] - - - [1]: http://i.stack.imgur.com/JEj9f.jpg - -please solve my problem.,., asup",LQ -"I want to create a `sublime snippet` for `ES6 lambda` - but the snippet not trigger on arrow **'>>'**, how to make this work? - -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/3krrM.png",LQ -"hy Im new in php,please help me, - - Delete - -this code working in me but the alert of "" Are you sure? "" are not showing up. can someone help me? thanks alot - -regards ",LQ -"

    I understand that pandas does cut-off long elements. However, why does it do that in the html output?

    - -
    import pandas as pd
    -df = pd.DataFrame(columns=['url'], index=[0])
    -df['url'] = 'd12dn1928d1n298dn18d9n219d8n18n118219d8n21e12903e21kj9012j9301j2391023j209d12dn1928d1n298dn18d9n219d8n18n118219d8n21e12903e21kj9012j9301j2391023j209d12dn1928d1n298dn18d9n219d8n18n118219d8n21e12903e21kj9012j9301j2391023j209d12dn1928d1n298dn18d9n219d8n18n118219d8n21e12903e21kj9012j9301j2391023j209d12dn1928d1n298dn18d9n219d8n18n118219d8n21e12903e21kj9012j9301j2391023j209'
    -In [2]: df
    -Out[2]: 
    -                                                 url
    -0  d12dn1928d1n298dn18d9n219d8n18n118219d8n21e129...
    -
    -In [3]: df.to_html()
    -Out[3]: u'<table border=""1"" class=""dataframe"">\n  <thead>\n    <tr style=""text-align: right;"">\n      <th></th>\n      <th>url</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <th>0</th>\n      <td>d12dn1928d1n298dn18d9n219d8n18n118219d8n21e129...</td>\n    </tr>\n  </tbody>\n</table>'
    -
    - -

    even in the html output (where it is obvious that it won't fit the screen width), the column value is truncated. How can I force pandas to not truncate, both with and without html?

    -",HQ -"

    For two processes A and B, the both use the library libc.so, libc.so is loaded into memory only once. This is a normal situation when A and B both run on the same host and the same rootfs.

    - -

    When it comes to container, if A and B are running in different containers, are A and B sharing same memory area?

    - -

    for example

    - -

    imageA

    - -

    --libc.so

    - -

    --programA

    - -

    imageB

    - -

    --libc.so

    - -

    --programB

    - -

    we use chroot to run A and B in different rootfs. The two libc.so are same. Will libc.so be loaded into memory twice?

    -",HQ -"

    I've got a ASP.NET REST API up and running in Azure. From an older .NET 4.5 project in Visual I've generated a client using this menu option:

    - -

    - -

    But when I create a new ASP.NET Core (ASP.NET 5) project, and want to generate the client there is no such option:

    - -

    - -

    What is the intended way to generate the client for my REST api in ASP.NET Core projects?

    -",HQ -"I need your help! - -I have been troubled by the problem these days. I want to write opencv-3.0.0 programs with c language in the terminal of my ubuntu 14.04 in the VM. - -Could you please give me an example of yours?",LQ -"I have 3 tables, user_table to classify as a teacher or student, -subject_table to mention different subject, -and enroll table stating who registered as teacher/student and for which subject. -I want to have count of student, teacher count for each subject -user_table - - -user_id -user_name -contact_no -password -flag - - -6 -Abhis -123456788 -123 -s - - - - -5 -Abhish -123456789 -123 -s - - - - -8 -Sneha -1111111111 -123 -s - - - - -7 -Snehil -1111112222 -123 -s - - - - -1 -Narsingh -1234567890 -123 -t - - - - -2 -Abhinav -1234567891 -1234 -t - - - - -3 -Abhi -1234567892 -123 -s - - - - -4 -Abhishek -1234567893 -123 -s - -subject_table - - -sub_id -sub_name - - -3 -CSS - - -1 -HTML - - -2 -JQUERY - -enrolled_table - -enr_id -sub_id -user_id -date -start_time -end_time - - -1 -1 -1 -2016-04-01 -09:00:00 -10:00:00 - - -2 -2 -1 -2016-04-01 -10:00:00 -11:00:00 - - -3 -3 -1 -2016-04-01 -11:00:00 -12:00:00 - - -4 -1 -5 -2016-04-01 -09:00:00 -10:00:00 - - -5 -1 -6 -2016-04-01 -12:00:00 -13:00:00 - - -6 -1 -7 -2016-04-01 -12:00:00 -13:00:00 - - -7 -1 -2 -2016-04-01 -13:00:00 -14:00:00 - - -8 - 2 - 2 -2016-04-01 -13:00:00 -14:00:00",LQ -"Hi im making a small javascript drinking game just for abit of fun n to learn certain aspects of javascript, iv looked over the code i have wrote n cant see why it doesnt work - -Im trying to show a random array taken from the 2 variable arrays and alternate between them both, i dnt care for storage as the game wont need to be reloaded n there is no links to other pages so that is not a problem. - -Please can people give me some pointers on what im doing wrong - - - - - - - - - - Home - - - - - -
    Random
    - -

    outcome

    - - - - ",LQ -"

    Any way to make this query work using laravel? DB::raw or Eloquent usage doesn't matter.

    - -
    SELECT count(DISTINCT name) FROM tablename;
    -
    - -

    Here's what i've tried but cannot get the proper output:

    - -
    EloquentTableName::select(DB::raw('count(DISTINCT name) as name_count'))->get();
    -
    - -

    This returns something like this and i'd like to fix that:

    - -
    ([{""name_count"":""15""}])
    -
    - -

    I just want to get count 15.

    -",HQ -"Can anyone help me? Suppose i'm sending **API_KEY** from Server to Client Side and at client side i'm using JavaScript/jquery. How can i protect my API_KEY so that no one can see this API_KEY by ""Right Click-> View Page Source"" in js Part.",LQ -"

    I have one component in Angular2 which is changing a ""lang"" class variable in my service translate.service.ts. In another component I am fetching a dict with the translation on init. If the first component changes the services language later, I want to refetch the dict in the second component automatically. How do I do that?

    - -

    First component:

    - -
      setLang(lang) {
    -    this._translateService.setLang(lang);
    -  }
    -
    - -

    Service:

    - -
    dict = { ""en"": {}};
    -lang = ""en"";
    -
    -setLang(lang) {
    -    this.lang = lang;
    -}
    -
    -getLang() {
    -    return this.dict;
    -}
    -
    - -

    Second component:

    - -
    ngOnInit() {
    -    this.dict = this._translateService.getDict();
    -}
    -
    -",HQ -"

    I have a class in Python for retrieving all the columns in a table and return a JSON with this data.

    - -

    The problem is at least one of those columns is a datetime and I can't seem to understand how to serialize the columns so I can generate a valid JSON.

    - -

    My class is as follows:

    - -
    class GetTodos(Resource):
    -    def get(self):
    -        con = cx_Oracle.connect('brunojs/bdpf5@127.0.0.1/orcl')
    -        cur = con.cursor()
    -        cur.execute(""select * from organite_repository"")
    -        r = [dict((cur.description[i][0], value) \
    -                for i, value in enumerate(row)) for row in cur.fetchall()]
    -        cur.connection.close()
    -        return (r[0] if r else None) if None else r 
    -
    - -

    Any hints on this?

    -",HQ -"
    Android Studio 2.0 beta 6
    -
    - -

    I am trying to use ViewPropertyAnimator to move a ImageView (ivSettings) inside a toolbar so that it is 20dp from the right and 20dp from the top, from is current location. And move the ImageView (ivSearch) 20dp from the left and top.

    - -

    The imageViews are contained in a Toolbar.

    - -

    This is the initial state and I want to move the icons into the upper corners inside the toolbar.

    - -

    - -

    The code I am using is this to get the width and then subtract a value to get the ivSettings to be 20dp from the right.

    - -
    final DisplayMetrics displayMetrics = new DisplayMetrics();
    -getActivity().getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
    -final float widthPx = displayMetrics.widthPixels;
    -
    -ivSearch.animate()
    -    .setInterpolator(new AccelerateInterpolator())
    -    .x(20)
    -    .y(20)
    -    .setDuration(250)
    -    .start();
    -
    -ivSettings.animate()
    -    .setInterpolator(new AccelerateInterpolator())
    -    .x(widthPx - 160)
    -    .y(20)
    -    .setDuration(250)
    -    .start();
    -
    - -

    However, having tried this on different screen size I can't get the exact width calculation. Is there a better way of doing this?

    - -

    Many thanks for any suggestions

    -",HQ -"

    I'm currently building an application using the ReliableActors framework on Azure ServiceFabric. As we scale up, I'm looking at doing blue/green deployments. I can see how to do this using a stateless system. Is there's a way to do this using statefull actors?

    -",HQ -"I'm a new programmer who is just getting into Visual Basic. I'm trying to create a simple application that would let me mount ISO files using the built in Windows PowerShell. - -My Code is here: - - Private Sub OpenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenToolStripMenuItem.Click - If OpenFileDialog1.ShowDialog = DialogResult.OK Then - - TextBox1.Text = OpenFileDialog1.FileName - Me.ErrorProvider1.SetError(Me.TextBox1, ""Looks Valid"") - - End If - End Sub - - Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click - If ErrorProvider1.GetError(TextBox1) = ""Looks Valid"" Then - Process.Start(""powershell"", ""Mount-DiskImage 'C:\ISO\MY Magic ISO.iso'"") - - Else - Me.ErrorProvider1.SetError(Me.TextBox1, ""Please Select a Valid File"") - - End If - End Sub - -My program is simple, you pick a file from the dialog, and if the file is valid, it is mounted with powershell. - -My question is how I would go about dynamically changing the ""C:\ISO\MY Magic ISO.iso"" filepath, using the contents of Textbox1. Is this possible? Any help would be greatly appreciated, and I am incredibly sorry if this has been asked before! - -Cheers! -",LQ -"I have displayed all Songs of the iTunes Music Library in a table view. Now I would like to play the selected song in the table view as soon as the user taps on it. - -Here's my Code: - -import UIKit -import MediaPlayer - -class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { - - @IBOutlet var table: UITableView! - - //Create an array with some elements for the table view rows - var myMusicPlayer = MPMusicPlayerController() - var allSongsArray: [MPMediaItem]! - let songsQuery = MPMediaQuery.songsQuery() - var abcArray = [""A"",""B"",""C"",""D"",""E"",""F"",""G"",""H"",""I"",""J"",""K"",""L"",""M"",""N"",""O"",""P"",""Q"",""R"",""S"",""T"",""U"",""V"",""W"",""X"",""Y"",""Z"", ""#""] - - //Define the amount of sections in table view - func numberOfSectionsInTableView(tableView: UITableView) -> Int { - return abcArray.count - } - - //Assign the amount of elements in the array to the amount of rows in one section - func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { - - return allSongsArray.count - - } - - - //Set up each element in abcArray as title for section - func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? { - - return self.abcArray[section] as String - - } - - //Set up the Index Search - func sectionIndexTitlesForTableView(tableView: UITableView) -> [String]? { - return abcArray - } - - - //Assign each element in the array a row in table view - func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { - - var cell = tableView.dequeueReusableCellWithIdentifier(""cell"") - var items = allSongsArray[indexPath.row] - - - cell?.textLabel?.text = items.title - cell?.detailTextLabel?.text = items.artist - var imageSize = CGSizeMake(100, 100) - cell?.imageView?.image = items.artwork?.imageWithSize(imageSize) - - return cell! - - } - - override func viewDidLoad() { - super.viewDidLoad() - - self.allSongsArray = songsQuery.items! as [MPMediaItem] - - } - - override func didReceiveMemoryWarning() { - super.didReceiveMemoryWarning() - // Dispose of any resources that can be recreated. - } - -}",LQ -"

    I use all my development's tools in the dark theme except Source Tree.

    - -

    It has not option in its configuration to change theme.

    - -

    Is there any other way to change for a dark theme?

    -",HQ -"

    I'm trying to evaluate multiple machine learning algorithms with sklearn for a couple of metrics (accuracy, recall, precision and maybe more).

    - -

    For what I understood from the documentation here and from the source code(I'm using sklearn 0.17), the cross_val_score function only receives one scorer for each execution. So for calculating multiple scores, I have to :

    - -
      -
    1. Execute multiple times
    2. -
    3. Implement my (time consuming and error prone) scorer

      - -

      I've executed multiple times with this code :

      - -
      from sklearn.svm import SVC
      -from sklearn.naive_bayes import GaussianNB
      -from sklearn.tree import DecisionTreeClassifier
      -from sklearn.cross_validation import  cross_val_score
      -import time
      -from sklearn.datasets import  load_iris
      -
      -iris = load_iris()
      -
      -models = [GaussianNB(), DecisionTreeClassifier(), SVC()]
      -names = [""Naive Bayes"", ""Decision Tree"", ""SVM""]
      -for model, name in zip(models, names):
      -    print name
      -    start = time.time()
      -    for score in [""accuracy"", ""precision"", ""recall""]:
      -        print score,
      -        print "" : "",
      -        print cross_val_score(model, iris.data, iris.target,scoring=score, cv=10).mean()
      -    print time.time() - start
      -
    4. -
    - -

    And I get this output:

    - -
    Naive Bayes
    -accuracy  :  0.953333333333
    -precision  :  0.962698412698
    -recall  :  0.953333333333
    -0.0383198261261
    -Decision Tree
    -accuracy  :  0.953333333333
    -precision  :  0.958888888889
    -recall  :  0.953333333333
    -0.0494720935822
    -SVM
    -accuracy  :  0.98
    -precision  :  0.983333333333
    -recall  :  0.98
    -0.063080072403
    -
    - -

    Which is ok, but it's slow for my own data. How can I measure all scores ?

    -",HQ -"

    I want my app to have no title bar but still be closeable, draggable, minimizable, maximizable and resizable like a regular window. I can do this in OS X since there is a titleBarStyle option called hidden-inset that I can use but unfortunately it's not available for Windows, which is the platform that I'm developing for. How would I go about doing something like this in Windows?

    - -

    Here's an example of what I'm talking about.

    -",HQ -"

    I'm having some issues with opening Jupyter. I just installed Anaconda, but got the same error as before when I try to write ""Jupyter notebook"" in terminal.

    - -
    Johans-MBP:~ JDMac$ Jupyter notebook
    -Traceback (most recent call last):
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/traitlets/traitlets.py"", line 501, in get
    -    value = obj._trait_values[self.name]
    -KeyError: 'runtime_dir'
    -
    -During handling of the above exception, another exception occurred:
    -
    -Traceback (most recent call last):
    -  File ""/Users/JDMac/anaconda3/bin/jupyter-notebook"", line 6, in <module>
    -    sys.exit(notebook.notebookapp.main())
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/jupyter_core/application.py"", line 267, in launch_instance
    -    return super(JupyterApp, cls).launch_instance(argv=argv, **kwargs)
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/traitlets/config/application.py"", line 588, in launch_instance
    -    app.initialize(argv)
    -  File ""<decorator-gen-7>"", line 2, in initialize
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/traitlets/config/application.py"", line 74, in catch_config_error
    -    return method(app, *args, **kwargs)
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/notebook/notebookapp.py"", line 1021, in initialize
    -    self.init_configurables()
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/notebook/notebookapp.py"", line 815, in init_configurables
    -    connection_dir=self.runtime_dir,
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/traitlets/traitlets.py"", line 529, in __get__
    -    return self.get(obj, cls)
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/traitlets/traitlets.py"", line 508, in get
    -    value = self._validate(obj, dynamic_default())
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/jupyter_core/application.py"", line 99, in _runtime_dir_default
    -    ensure_dir_exists(rd, mode=0o700)
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/site-packages/ipython_genutils/path.py"", line 167, in ensure_dir_exists
    -    os.makedirs(path, mode=mode)
    -  File ""/Users/JDMac/anaconda3/lib/python3.5/os.py"", line 241, in makedirs
    -    mkdir(name, mode)
    -PermissionError: [Errno 13] Permission denied: '/Users/JDMac/Library/Jupyter/runtime'
    -
    - -

    As I'm close to clueless with all of this, I need some assistance over here :)

    -",HQ -"

    I'm new to Docker, and I can't seem to connect to any containers.

    - -

    I installed Docker Toolbox. Now I'm trying to get Shipyard to work. I followed the steps inside of a Docker Quickstart Terminal. The instructions say:

    - -
    -

    Once deployed, the script will output the URL to connect along with credential information.

    -
    - -

    The Shipyard installer ended with:

    - -
    Shipyard available at http://10.0.2.15:8080
    -Username: [elided] Password: [elided]
    -
    - -

    However, I went to http://10.0.2.15:8080 on my browser and it didn't connect.

    - -

    In another Docker Quickstart Terminal, I did a docker ps to see what the container was and to get its IP Address and I got:

    - -
    $ docker inspect a4755 | grep IPAddress
    -            ""SecondaryIPAddresses"": null,
    -            ""IPAddress"": ""172.17.0.8"",
    -                    ""IPAddress"": ""172.17.0.8"",
    -
    - -

    I'm not sure why the IP was different, but I tried to connect to http://172.17.0.8:8080 and this didn't work either. http://localhost:8080 also failed.

    - -

    This also happened when I tried to run docker-gunicorn-nginx - everything started, but I couldn't connect to the machine.

    - -

    What gives?

    -",HQ -"

    Have two columns:

    - -
    ID  Text
    -1    a
    -2    b
    -3    c
    -
    - -

    How can I able to create matrix with dummy variables like this:

    - -
    ID a b c
    -1  1 0 0
    -2  0 1 0
    -3  0 0 1
    -
    - -

    Using pyspark library and its features?

    -",HQ -"(C++) I have written the following code, but the output is displaying weird values along the lines of 011512EE. I have no idea where this is coming from or how to fix it. [code][1] - - - [1]: http://i.stack.imgur.com/UDUhr.png",LQ -"

    I am using pm2 to manage my node.js processes. Very happy with it so far.

    - -

    What is the purpose of $ pm2 save? What is the purpose of saving a process list? I don't quite understand from the documentation. -https://github.com/Unitech/pm2

    -",HQ -"

    repl.it : https://repl.it/BuXR/3

    - -
    var str = ""abc"";
    -var str2 = str.split("" "").join("""").split("""");
    -var tmp = str2;
    -console.log(str2);
    -// => ['a','b','c']
    -console.log(tmp.reverse());
    -// => ['c','b','a']
    -console.log(str2);
    -// => ['c','b','a']
    -
    - -

    My question is why str2 is being changed even though it is not being reversed?

    - -

    This is very upsetting to me, but I have a guess as to why this is happening. The tmp is just a pointer to the original str2, and when I call reverse() on tmp, it actually reverses str2.

    - -

    Even if that really is what's happening, I still feel like it is a very counterintuitive way for a language to work.

    -",HQ -"Could not find method android.widget.LinearLayout$LayoutParams., referenced from method android.support.design.widget.AppBarLayout$LayoutParams.",LQ -"i have a database table having date and amount column, i have to make the some of them monthly, so how can i do it. -[Please refer image for database table][1]. actually i wanted the output as -in this month this much is the total, eg if we have 5 entries in the month of jan then i wanted the sum of all the 5 entries in the month of jan, how can i do it........................................................................................................ - - - [1]: http://i.stack.imgur.com/pSMdL.png",LQ -"

    This is my code

    - -
    $http.get(""/Student/GetStudentById?studentId="" + $scope.studentId + ""&collegeId="" + $scope.collegeId)
    -          .then(function (result) {
    -          });
    -
    - -

    In the above code use http service for get student details based on id. but i want to write the above service string.format like in c#.net

    - -
    (eg:- string.format(""/Student/GetStudentById/{0}/collegeId/{1}"",studentId,collegeId)
    -
    -",HQ -" btn.setOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View view) { new JsonParse().execute(""http://jsonparsing.parseapp.com/jsonData/moviesDemoItems.txt"");}});} - public class JsonParse extends AsyncTask - @Override - protected String doInBackground(String... params) { - HttpURLConnection connection = null; - BufferedReader reader = null; - try { URI url = new URI(params[0]); - connection = (HttpURLConnection) url.openConnection(); - connection.connect(); - InputStream stream = connection.getInputStream(); - reader = new BufferedReader(new InputStreamReader(stream)); - StringBuffer stringBuffer = new StringBuffer(); - String linge = """"; - while ((linge = reader.readLine()) != null) { - stringBuffer.append(linge);} - return stringBuffer.toString(); -`} catch (MalformedURLException e) { - e.printStackTrace(); - } catch (IOException e) { - e.printStackTrace(); - } finally {if (connection != null){connection.disconnect();try { - if (reader != null) { reader.close();}} catch (IOException e) {e.printStackTrace(); }}return null } @Override - protected void onPostExecute(String result{super.onPostExecute(result); - tv.setText(result);} }}",LQ -"I am using this code to create customer profile - -http://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile - -this is working fine locally but not working in live server. Showing 500 server error when execute the line no 58. (see sample code in above link) - -My php version 5.4+ in server and met all requirement mentioned in https://github.com/AuthorizeNet/sdk-php - -even all dependent library available in server which is required for this SDK - -** working on sandbox",LQ -"

    I recently came to know that in Java 8 hash maps uses binary tree instead of linked list and hash code is used as the branching factor.I understand that in case of high collision the lookup is reduced to O(log n) from O(n) by using binary trees.My question is what good does it really do as the amortized time complexity is still O(1) and maybe if you force to store all the entries in the same bucket by providing the same hash code for all keys we can see a significant time difference but no one in their right minds would do that.

    - -

    Binary tree also uses more space than singly linked list as it stores both left and right nodes.Why increase the space complexity when there is absolutely no improvement in time complexity except for some spurious test cases.

    -",HQ -"

    I setup a route in server.js in package main in root directory of project

    - -

    http.HandleFunc(""/"",route.IndexHandler)

    - -

    The IndexHandler is implemented in package route like this:

    - -
    func IndexHandler(w http.ResponseWriter, r *http.Request) {
    -    data:=struct{
    -        Name string
    -    }{
    -        ""My name"",
    -    }
    -    util.RenderTemplate(w, ""index"", data)
    -}
    -
    - -

    The RenderTemplate function is implemented in package util like this:

    - -
    func RenderTemplate(w http.ResponseWriter, tmpl string, data interface{}) {
    -    cwd, _ := os.Getwd()
    -    t, err := template.ParseFiles(filepath.Join(cwd, ""./view/"" + tmpl + "".html""))
    -    if err != nil {
    -        http.Error(w, err.Error(), http.StatusInternalServerError)
    -        return
    -    }
    -    err = t.Execute(w, data)
    -    if err != nil {
    -        http.Error(w, err.Error(), http.StatusInternalServerError)
    -    }
    -}
    -
    - -

    Directory structure in project like this:

    - -
    /
    -/public/css
    -/public/images
    -/public/js
    -/route
    -/view
    -
    - -

    index.html view is located in folder view, router is in folder route

    - -

    In index.html I include resources like these:

    - -

    <link rel=""stylesheet"" type=""text/css"" href=""../public/css/style.css"">

    - -

    <img src=""../public/images/img_landing_page_mac.png"">

    - -

    When request the appropriate path, index.html is still rendered, but images and stylesheet are not loaded. How can I do to include them in Golang html template engine?

    -",HQ -"

    I'm trying to debug an executable which has been created with CMake configuration

    - -
    SET(CMAKE_BUILD_TYPE Debug)
    -
    - -

    However, CLion does not hit any breakpoints. What could be the problem?

    -",HQ -"I'm trying to revoke certificate from apple development portal using - - Ruby <=> (spaceship) operator - -most of the methods are working fine expect the revoke - -example : - - [52] pry(main)> Spaceship::Portal::Certificate::DevelopmentPush.all - -will list to me all developmentpush certficate , - -there is revoke method but i couldn't figure out the right syntax for it - -tested couple of syntax such : - - [52] pry(main)> Spaceship::Portal::Certificate::revoke_certificate!('id', 'type') - - NameError: wrong constant name RevokeCertificate! - from /var/lib/gems/2.1.0/gems/spaceship-0.22.0/lib/spaceship/base.rb:153:in `const_defined?' - -anyone knows the right syntax as this spaceship has no good docs or reference at all , - -thanks in advance - - -",LQ -"getting error on expecting key word - -class Listing < ActiveRecord::Base - - if Rails.env.development? - has_attached_file :image, :styles => { :medium => ""200"", :thumb => ""100x100>"" }, :default_url => ""default.jpg"" - validates_attachment_content_type :image, :content_type => /\Aimage\/.*\Z/ - else - has_attached_file :image, :styles => { :medium => ""200"", :thumb => ""100x100>"" }, :default_url => ""default.jpg"", - validates_attachment_content_type :image, :content_type => /\Aimage\/.*\Z/ - :storage => :dropbox, - - :dropbox_credentials => Rails.root.join(""config/dropbox.yml""), - :path => "":style/:id_filename"" - end - - - - - validates :name, :description, :price, :address, :phone, presence: true - validates :price, numericality: { greater_than: 0} - validates :phone, length: { maximum: 14 } - - validates_attachment_presence :image - belongs_to :user -end -",LQ -"I am newbie to php and sql. I was creating a website for myself and needed some help with Mysql. - When I run the following query,I get the error 1046. I googled for solution and tried some solutions but failed to solve the issue. Please help me with this. - - -CREATE TABLE BKMUV (MVNM VARCHAR2(30), LIKES VARCHAR2(30), THETR VARCHAR2(30), CITY VARCHAR2(30); - -CREATE TABLE CUMV (CMV VARCHAR2(30), UMV VARCHAR2(30); - -CREATE TABLE SEAT (DATE1 VARCHAR2(30), BOOKED VARCHAR2(30), USERNAME VARCHAR2(30), MVNM VARCHAR2(30), CITY VARCHAR2(30), CLASS VARCHAR2(30); - -INSERT INTO BKMUV VALUES((yeh jawani hai diwani,90,ANSAL,Greater Noida),(fukrey,50,spice, Noida),(Raanjhna,80,INNOX,Delhi)); - -INSERT INTO CUMV VALUES((images/fukrey.jpg,images/ce.jpg),(images/ranj.jpg,images/dhoom.jpg),(images/yjhd.jpg,images/gc.jpg),(images/gc.jpg,images/bmb.jpg)); -",LQ -"I need to echo the value of $sourceName. - -Searched a lot and tried this way but didn't work for me: - - $sourceName = '

    123'.$query.'

    '; - - - '.$$sourceName.' - '; - -It can't get $query value and the code only echos: ""123""",LQ -"**i have written code to filter data from database(filteration is done by 2 dropdownlist and between 2 dates) i am getting ""There is already an open DataReader associated with this Command which must be closed first."" error please help.. ** -[this is my front end][1] - - - public partial class data : System.Web.UI.Page - { - SqlConnection con; - - - string constring = System.Configuration.ConfigurationManager.ConnectionStrings[""MyConnectionString""].ConnectionString; - - protected void Page_Load(object sender, EventArgs e) - { - - - } - - protected void btnshow_Click(object sender, EventArgs e) - { - - - if ((ddldept.SelectedValue == ""all"") && (ddldesig.SelectedValue!=""all"") ) - { - con = new SqlConnection(constring); - con.Open(); - string desig = ddldesig.SelectedValue; - DateTime mydate; - mydate = Convert.ToDateTime(tbfrom.Text); - string from = Convert.ToString(mydate); - mydate = Convert.ToDateTime(tbto.Text); - string to = Convert.ToString(mydate); - SqlCommand cmddeptall = new SqlCommand(""select * from registration where Department IN('Computer Science Engineering','Mechanical Engineering','Electrical And Electronics','Electronics And Communication','Civil Engineering','Science And Humanity') AND PostAppliedFor='""+desig+""' AND (RegisteredDate BETWEEN '""+from+""' AND '""+to+""')"",con); - cmddeptall.ExecuteReader(); - SqlDataAdapter da = new SqlDataAdapter(cmddeptall); - DataSet ds = new DataSet(); - da.Fill(ds, ""registration""); - GridView1.DataSource = ds.Tables[""registration""]; - GridView1.DataBind(); - con.Close(); - } - - else if ((ddldept.SelectedValue == ""all"") && (ddldesig.SelectedValue == ""all"")) - { - SqlConnection con; - - - string constring = System.Configuration.ConfigurationManager.ConnectionStrings[""MyConnectionString""].ConnectionString; - - con = new SqlConnection(constring); - try - { - con.Open(); - - DateTime mydate; - mydate = Convert.ToDateTime(tbfrom.Text); - string from = Convert.ToString(mydate); - mydate = Convert.ToDateTime(tbto.Text); - string to = Convert.ToString(mydate); - string query = ""select * from registration where Department IN('Computer Science Engineering','Mechanical Engineering','Electrical And Electronics','Electronics And Communication','Civil Engineering','Science And Humanity') AND PostAppliedFor IN('Principal','Professor','Associate Professor','Assistant Professor','Placement Officer','SoftSkills Trainer','Administrative Officer','Office Superintendent','Lab Technician') AND (RegisteredDate BETWEEN '"" + from + ""' AND '"" + to + ""')""; - SqlCommand cmd = new SqlCommand(query, con); - cmd.ExecuteReader(); - SqlDataAdapter da = new SqlDataAdapter(cmd); - DataSet ds = new DataSet(); - da.Fill(ds, ""registration""); - GridView1.DataSource = ds; - GridView1.DataBind(); - - - con.Close(); - } - catch (Exception ex) - { - throw ex; - } - finally - { - con.Close(); - } - - } - else if ((ddldept.SelectedValue != ""all"") && (ddldesig.SelectedValue != ""all"")) - { - con = new SqlConnection(constring); - con.Open(); - string desig = ddldesig.SelectedValue; - string dept = ddldept.SelectedValue; - DateTime mydate; - mydate = Convert.ToDateTime(tbfrom.Text); - string from = Convert.ToString(mydate); - mydate = Convert.ToDateTime(tbto.Text); - string to = Convert.ToString(mydate); - SqlCommand cmddeptall = new SqlCommand(""select * from registration where Department='""+dept+""' AND PostAppliedFor='""+desig+""' AND (RegisteredDate BETWEEN '"" + from + ""' AND '"" + to + ""')"", con); - cmddeptall.ExecuteReader(); - SqlDataAdapter da = new SqlDataAdapter(cmddeptall); - DataSet ds = new DataSet(); - da.Fill(ds, ""registration""); - GridView1.DataSource = ds.Tables[""registration""]; - GridView1.DataBind(); - con.Close(); - } - con.Close - } - - [1]: http://i.stack.imgur.com/Mvsvf.png - -",LQ -"I am trying to disable a user from opening a file. -The porpuse is that when a user will try to open a specific file, he would not be able to. -Also, i want to be able to return the permissions and letting the user open the file. -I tried to use $os.chmod but i can not undestand how to disable permissions. -",LQ -"im pretty new to this and im pretty new to using JS. im working through the basics and really getting in to it. however i am having an issue with trying to use a users input to help me in other areas.. - -i have a little CSS to create an input id=""cars"" and a button id=""submit"" i want to use those inputs in a switch statement.. this is what i have so far, i will add more to my switch statement once i have managed to get the input value to work... - - -

    What is your car?

    - - - - - - - - JS Bin - - -
    - -
    - - - - - - I tried My best to explain my problem. I hope you will understand. - -Ty In advance and used your time on my problem. - [1]: http://i.stack.imgur.com/A2xUQ.png",LQ -"import java.util.Scanner; - -public class TxFnd { - - public static void main(String [] args){ - - int i; - for(i=75000;i<125001;i++){ - System.out.println(i); - System.out.println(""""); - - } - - - } -} -",LQ -"

    I have been trying to implement horizontal scroll in ionic 2 page. But the content always gets vertically scrolled.

    - -

    I tried writing my own css by setting 'overflow-x to scroll'. But it didn't work. I also tried ionic's ion-scroll component by setting 'scrollX= true'. But the entire content got hidden. i.e it was not visible on the page at all. Below is the sample code i used for ion-scroll. Not sure what exactly i am missing here.

    - -

    Any guidance on this pls?. (I am new to Ionic 2 and CSS. So sorry if the question is too simple.)

    - -
    <ion-navbar *navbar primary>
    -    <ion-title>
    -        Title
    -    </ion-title>
    -</ion-navbar>
    -
    -<ion-content>
    -    <ion-scroll scrollX=""true"">
    -
    -        <ion-card>
    -            <ion-card-content>
    -                content
    -            </ion-card-content>
    -        </ion-card>
    -        <ion-card>
    -            <ion-card-content>
    -                content
    -            </ion-card-content>
    -        </ion-card>
    -
    -    </ion-scroll>
    -</ion-content>
    -
    -",HQ -"

    I am working with React-Native, Android, and Genymotion on Mac. When I run react-native run-android I get this lines at the end of the launch operation:

    - -
    ...
    -04:54:40 E/adb: error: could not install *smartsocket* listener: Address already in use
    -04:54:40 E/adb: ADB server didn't ACK
    -04:54:40 E/ddms: '/Users/paulbrie/Library/Android/sdk/platform-tools/adb,start-server' failed -- run manually if necessary
    -04:54:40 E/adb: * failed to start daemon *
    -04:54:40 E/adb: error: cannot connect to daemon
    -:app:installDebug FAILED
    -
    -FAILURE: Build failed with an exception.
    -
    -* What went wrong:
    -Execution failed for task ':app:installDebug'.
    -> com.android.builder.testing.api.DeviceException: Timeout getting device list.
    -...
    -
    - -

    However, adb devices returns this:

    - -
    List of devices attached
    -192.168.59.101:5555 device
    -
    - -

    So far I've found no solution to run my app on the emulator. Has anyone encountered the same issue?

    - -

    Thanks, -Paul

    -",HQ -"can anubody pls explain me these code to me i didnt understand I2C protocol well via these code but plz altleast give em basic idea how it is working - - - - #include - const int MPU=0x68; // I2C address of the MPU-6050 - int16_t AcX,AcY,AcZ,Tmp,GyX,GyY,GyZ; //int16_t is a 16bit integer. uint16_t is an unsigned 16bit integer - - void setup(){ - Wire.begin(); - Wire.beginTransmission(MPU); - Wire.write(0x6B); // PWR_MGMT_1 register - Wire.write(0); // set to zero (wakes up the MPU-6050) - Wire.endTransmission(true); - Serial.begin(9600); - } - void loop(){ - Wire.beginTransmission(MPU); - Wire.write(0x3B); // starting with register 0x3B (ACCEL_XOUT_H) - Wire.endTransmission(false); - Wire.requestFrom(MPU,14,true); // request a total of 14 registers - AcX=Wire.read()<<8|Wire.read(); // 0x3B (ACCEL_XOUT_H) & 0x3C (ACCEL_XOUT_L) - AcY=Wire.read()<<8|Wire.read(); // 0x3D (ACCEL_YOUT_H) & 0x3E (ACCEL_YOUT_L) - AcZ=Wire.read()<<8|Wire.read(); // 0x3F (ACCEL_ZOUT_H) & 0x40 (ACCEL_ZOUT_L) - Tmp=Wire.read()<<8|Wire.read(); // 0x41 (TEMP_OUT_H) & 0x42 (TEMP_OUT_L) - GyX=Wire.read()<<8|Wire.read(); // 0x43 (GYRO_XOUT_H) & 0x44 (GYRO_XOUT_L) - GyY=Wire.read()<<8|Wire.read(); // 0x45 (GYRO_YOUT_H) & 0x46 (GYRO_YOUT_L) - GyZ=Wire.read()<<8|Wire.read(); // 0x47 (GYRO_ZOUT_H) & 0x48 (GYRO_ZOUT_L) - Serial.print(""AcX = ""); Serial.print(AcX); - Serial.print("" | AcY = ""); Serial.print(AcY); - Serial.print("" | AcZ = ""); Serial.print(AcZ); - Serial.print("" | Tmp = ""); Serial.print(Tmp/340.00+36.53); //equation for temperature in degrees C from datasheet - Serial.print("" | GyX = ""); Serial.print(GyX); - Serial.print("" | GyY = ""); Serial.print(GyY); - Serial.print("" | GyZ = ""); Serial.println(GyZ); - delay(333); - }",LQ -"

    After I manually deleted the account connected to the uid that my iphone simulator is on (from firebase dashboard), when I run the code below it's somehow still authenticating and retrieving a uid. How is this possible?

    - -
    let ref = Firebase(url: ""https://moviebuffapp.firebaseio.com/"")
    -
    -override func viewDidLoad() {
    -    super.viewDidLoad()
    -
    -    if ref.authData != nil {
    -
    -        let uid = ref.authData.uid
    -        print(uid)
    -
    -",HQ -"

    I am installing Jenkins 2 on windows,after installing,a page is opened,URL is:
    -http://localhost:8080/login?from=%2F

    - -

    content of the page is like this:
    -

    - -

    Question:
    -How to ""Unlock Jenkins""?

    - -

    PS:I have looked for the answer in documentation and google.

    -",HQ -"if (isset($_POST['firstname']) && isset($_POST['lastname']) && isset($_POST['age'])){ - - //Getting values - $firstname = $_POST['firstname']; - $lastname = $_POST['lastname']; - $age = $_POST['age']; - - //Creating an sql query - $sql = ""INSERT INTO info (firstname,lastname,age) VALUES ('$firstname','$lastname','$age')""; - - //Importing our db connection script - require_once('connect.php'); - - //Executing query to database - if(mysqli_query($con,$sql)){ - echo 'Employee Added Successfully'; - }else{ - echo 'Could Not Add Employee'; - } - - //Closing the database - mysqli_close($con); - }",LQ -"

    I'm currently trying to build a simple model for predicting time series. The goal would be to train the model with a sequence so that the model is able to predict future values.

    - -

    I'm using tensorflow and lstm cells to do so. The model is trained with truncated backpropagation through time. My question is how to structure the data for training.

    - -

    For example let's assume we want to learn the given sequence:

    - -
    [1,2,3,4,5,6,7,8,9,10,11,...]
    -
    - -

    And we unroll the network for num_steps=4.

    - -

    Option 1

    - -
    input data               label     
    -1,2,3,4                  2,3,4,5
    -5,6,7,8                  6,7,8,9
    -9,10,11,12               10,11,12,13
    -...
    -
    - -

    Option 2

    - -
    input data               label     
    -1,2,3,4                  2,3,4,5
    -2,3,4,5                  3,4,5,6
    -3,4,5,6                  4,5,6,7
    -...
    -
    - -

    Option 3

    - -
    input data               label     
    -1,2,3,4                  5
    -2,3,4,5                  6
    -3,4,5,6                  7
    -...
    -
    - -

    Option 4

    - -
    input data               label     
    -1,2,3,4                  5
    -5,6,7,8                  9
    -9,10,11,12               13
    -...
    -
    - -

    Any help would be appreciated.

    -",HQ -"I'm developing a website for a client, and although all jQuery/Javascript code works fine on chrome (e.g. floating navbar, and smooth scroll when you click a navbar item), none of it seems to work in chrome? I've looked at other questions on StackOverflow, and the only advice i've found is to use a HTML validator, because safari can be iffy like that. Although I'm in the process of doing that now, I have a feeling it's something deeper, because most of the HTML issues revolve around obsolete center tags. - -At the moment, the site is up at: http://www.grahamcafe.net23.net/Padre/index.html - -Any ideas are much appreciated!",LQ -"Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the value in the nodes. - -You should try to do it in place. The program should run in O(1) space complexity and O(nodes) time complexity. - -Example: -Given 1->2->3->4->5->NULL, -return 1->3->5->2->4->NULL. - - -I have seen the solution but I can't understand it, I need someone to visually explain the solution to the problem.",LQ -"So I'm trying to make a grading system. I've already made a program that does it but I just recently found at that we need to use procedures and functions, this is what I've done so far.So what i want to do is take 1/3 of the value of outputgrade and add it with 2/3 of the value of outputgrade2, I tried midterm1=(outputgrade()*1/3)+(outputgrade2*2/3) but I receive an error which is ""Not an allowed type"". Please somebody help me on what to do. - - - - - #include - #include - #include - - double AAO,Quizzes,Project,MajorExam,Midterm; - - - void inputprelim() - { - clrscr(); - gotoxy(3,4);cout<<""Input Prelim Grade""; - gotoxy(1,6);cout<<""Attendance/Ass./Oral: "";cin>>AAO; - gotoxy(1,7);cout<<""Project: "";cin>>Project; - gotoxy(1,8);cout<<""Quizzes: "";cin>>Quizzes; - gotoxy(1,9);cout<<""Major Exam: "";cin>>MajorExam; - gotoxy(1,11);cout<<""Prelim Grade: ""; - } - - int getgrade(double a, double b, double c, double d) - { - double result; - result=(a*0.10)+(b*0.20)+(c*0.30)+(d*0.40); - cout<>AAO; - gotoxy(29,7);cout<<""Project: "";cin>>Project; - gotoxy(29,8);cout<<""Quizzes: "";cin>>Quizzes; - gotoxy(29,9);cout<<""Major Exam: "";cin>>MajorExam; - gotoxy(29,11);cout<<""Temporary Midterm Grade: ""; - gotoxy(29,12);cout<<""Final Midterm Grade: ""; - } - void outputgrade2() - { - getgrade(AAO,Project,Quizzes,MajorExam); - getch(); - } - - - void main() - { - inputprelim(); - gotoxy(15,11);outputgrade(); - inputmidterm(); - gotoxy(54,11);outputgrade2(); - gotoxy(55,11); - Midterm1=(outputgrade()*1/3)+(outputgrade2()*2/3); - } - -",LQ -"i have this program, where you enter two dates into two structures (same type), and then I want a function to find which date i entered is the later date. It compares only year and month. Once the later date is found, i want the function to return a pointer to the structure with the later date. I then want to print out the later date. - -This is what I have so far, but I get errors and I'm not sure about the pointer syntax. - - #include - - struct date{ - int year; - int month; - int day; - }; - - - main() - { - struct date dates[2]; - int i = 0, res = 0; - - for ( i = 0 ; i < 2 ; i++){ - printf(""Enter a year!""); - scanf(""%d"", &dates[i].year); - - printf(""Enter a month!""); - scanf(""%d"", &dates[i].month); - - printf(""Enter a day!""); - scanf(""%d"", &dates[i].day); - } - - res = later(&dates[1], &dates[2]); - - printf(""%d"", &res); - - } - - int later(struct date *one, struct date *two){ - - if (one->year > two->year){ - return *one; - } - - else if (one->year == two->year){ - if(one->month > two->month){ - return *one; - } - else - - return *two; - } - - else { - return *two; - } - - }",LQ -"

    A foxtrot merge is a merge where 'origin/master' merges in as a 2nd (or later) parent, like so:

    - -

    - -

    Commit 'D' is a foxtrot merge because 'origin/master' is its 2nd parent. Notice how first-parent history from 'origin/master' contains commit 'B' at this moment.

    - -

    But in my git repo I need all merges involving 'origin/master' to keep 'origin/master' as the 1st parent. Unfortunately git doesn't care about parent-order when it evaluates whether a commit is eligible for fast-forward. This causes the first parent history on my master branch to sometimes lose commits that used to be there (e.g., output of ""git log --first-parent"").

    - -

    Here's what happens when commit 'D' from the earlier diagram is pushed:

    - -

    - -

    How can I prevent this push? First-parent history of 'origin/master' no longer contains commit 'B' after the foxtrot merge is pushed!

    - -

    Obviously no commits or work are actually lost, it's just that in my environment I really need ""git log --first-parent"" to be a stable accumulative record of commits - if you like, a kind of ""Write-Once Read-Many"" (WORM) database. I have scripts and processes that use ""git log --first-parent"" to generate changelogs and release notes, as well as to manage ticket transitions in my ticketing system (JIRA). Foxtrot merges are breaking my scripts!

    - -

    Is there some kind of pre-receive hook I could install in my git repositories to prevent foxtrot merges from getting pushed?

    - -

    p.s. The commit graphs in this stackoverflow question were generated using http://bit-booster.com/graph.html.

    -",HQ -" This is my code so if you can help me it'd be great thank's StackExchange - - - - - - - ",LQ -"

    I am getting these two error messages when trying to compile:

    - -
    /Users/dericw/coding/myApplication/lfdate/android/app/build/intermediates/exploded-aar/com.android.support/cardview-v7/23.2.1/res/values-v23/values-v23.xml
    -Error:(3, 5) No resource found that matches the given name (at 'cardBackgroundColor' with value '?android:attr/colorBackgroundFloating').
    -Error:Execution failed for task ':app:processDebugResources'.
    -> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Users/dericw/Library/Android/sdk/build-tools/23.0.2/aapt'' finished with non-zero exit value 1
    -
    - -

    Android Studio then opens up v23/values-23.xml with this style:

    - -
        <style name=""CardView"" parent=""Base.CardView"">
    -        <item name=""cardBackgroundColor"">?android:attr/colorBackgroundFloating</item>
    -    </style>
    -
    - -

    But I don't have that defined anywhere in my app. It is a generated file that is giving me the error. I am pretty stumped on how to fix this issue? Has anyone every encountered this before? How do I fix this?

    - -

    Project Build File

    - -
    buildscript {
    -    repositories {
    -        jcenter()
    -    }
    -    dependencies {
    -        classpath 'com.android.tools.build:gradle:1.5.0'
    -        classpath 'com.google.gms:google-services:2.0.0-alpha6'
    -    }
    -}
    -
    -allprojects {
    -    repositories {
    -        jcenter()
    -    }
    -}
    -
    - -

    App Build File

    - -
    buildscript {
    -    repositories {
    -        mavenCentral()
    -        maven {
    -            url 'https://maven.fabric.io/public'
    -        }
    -    }
    -
    -    dependencies {
    -        classpath 'io.fabric.tools:gradle:1.+'
    -    }
    -}
    -
    -apply plugin: 'com.android.application'
    -apply plugin: 'io.fabric'
    -
    -android {
    -    compileSdkVersion 22
    -    buildToolsVersion '23.0.2'
    -
    -    defaultConfig {
    -        applicationId ""com.something.myapp""
    -        minSdkVersion 16
    -        targetSdkVersion 22
    -        versionCode 200
    -        versionName ""1.7.1""
    -    }
    -
    -    buildTypes {
    -        debug {
    -            versionNameSuffix '-debug'
    -        }
    -        release {
    -            minifyEnabled false
    -            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    -            signingConfig signingConfigs.release
    -            zipAlignEnabled true
    -        }
    -    }
    -
    -    packagingOptions {
    -        exclude 'META-INF/DEPENDENCIES'
    -        exclude 'META-INF/NOTICE'
    -        exclude 'META-INF/LICENSE'
    -        exclude 'META-INF/LICENSE.txt'
    -        exclude 'META-INF/NOTICE.txt'
    -    }
    -
    -    sourceSets {
    -        androidTest.setRoot('src/test')
    -    }
    -}
    -
    -repositories {
    -    mavenCentral()
    -    maven {
    -        url 'https://oss.sonatype.org/content/repositories/snapshots/'
    -    }
    -    maven {
    -        url 'https://maven.fabric.io/public'
    -    }
    -}
    -
    -dependencies {
    -    compile fileTree(include: ['*.jar'], dir: 'libs')
    -    compile('com.crashlytics.sdk.android:crashlytics:2.4.0@aar') {
    -        transitive = true;
    -    }
    -    compile('org.apache.httpcomponents:httpmime:4.3.6') {
    -        exclude module: 'httpclient'
    -    }
    -    compile project(':viewPagerIndicator')
    -    compile 'com.android.support:appcompat-v7:22.2.1'
    -    compile 'com.android.support:cardview-v7:22.2.1'
    -    compile 'com.android.support:recyclerview-v7:22.2.1'
    -    compile 'com.android.support:design:22.2.1'
    -    compile 'com.facebook.android:facebook-android-sdk:4.+'
    -    compile 'com.mcxiaoke.volley:library:1.+'
    -    compile 'com.parse.bolts:bolts-android:1.+'
    -    compile 'com.parse:parse-android:1.+'
    -    compile 'com.google.android.gms:play-services-gcm:8.3.0'
    -    compile 'com.google.android.gms:play-services-analytics:8.3.0'
    -    compile 'joda-time:joda-time:2.+'
    -    compile 'com.koushikdutta.async:androidasync:2.+'
    -    compile 'com.edmodo:rangebar:1.+'
    -    compile 'org.lucasr.twowayview:twowayview:0.+'
    -    compile 'com.github.amlcurran.showcaseview:library:5.4.+'
    -    compile 'com.nostra13.universalimageloader:universal-image-loader:1.+'
    -    compile 'com.getbase:floatingactionbutton:1.+'
    -    compile 'com.mixpanel.android:mixpanel-android:4.+'
    -    compile 'org.apache.httpcomponents:httpclient-android:4.3.5'
    -    compile 'com.wefika:flowlayout:0.+'
    -    compile 'com.hudomju:swipe-to-dismiss-undo:1.+'
    -    compile 'com.soundcloud.android:android-crop:1.0.1@aar'
    -    compile 'com.squareup.picasso:picasso:2.+'
    -}
    -
    -apply plugin: 'com.google.gms.google-services'
    -
    -",HQ -"

    I am using vue-loader (http://vuejs.github.io/vue-loader/start/spec.html) to construct my *.vue single-file components, but I am having trouble with the process from extending a single-file component from another.

    - -

    If one component follows the spec to export default { [component ""Foo"" definition] }, I would think it is just a matter of importing this component (as I would with any child component) and then export default Foo.extend({ [extended component definition] })

    - -

    Unfortunately this does not work. Can anyone please offer advice?

    -",HQ -"

    I have the following code :

    - -
        @GET(""api.php?company_name={name}"")
    -    Call<Model> getRoms_center(@Query(""name"") String name);
    -
    - -

    According to the official docs, I must use @Query, and i'm using it, but i'm getting the following error :

    - -
    java.lang.IllegalArgumentException: URL query string ""company_name={name}"" must not have replace block. For dynamic query parameters use @Query.
    -
    -",HQ -"I have such a html: - -
    -
    T
    -
    H
    -
    A
    -
    T
    -
    W
    -
    O
    -
    R
    -
    K
    -
    S
    -
    - -As you can see I have a string divided on chars, each char in another div. **I want to have each word in separate line, each centered horizontally. Take under consideration `clear: both;` to start new line.** Vertical alignment woudl be nice but is not necessity. Number of words (lines) and letters vary depeneding on situation. -All the guides i have found about centering tell about centering multiple divs but they are in one line or are centered after free break line (there is no space for next div in line so it takes next line with remaining divs and center the line). Can anybody help me?",LQ -"

    I have upgraded to android 6 and seeing some strange things when trying to set validation for some editTexts. -I am using android-saripaar for validation:

    - -
    @Email(messageResId = R.string.error_email)
    -private EditText email;
    -@Password(min = 6, scheme = Password.Scheme.ALPHA_NUMERIC_MIXED_CASE_SYMBOLS)
    -private EditText password;
    -@ConfirmPassword
    -private EditText repassword;
    -@NotEmpty(messageResId = R.string.error_name)
    -private EditText firstname;
    -@NotEmpty(messageResId = R.string.error_name)
    -private EditText lastname;
    -private Validator mValidator;
    -
    - -

    For some reason the email, password, confirm password are not showing the error message on the popup, while the last and first name are fine

    - -

    - -

    I have tried without the library and the same issue occurred. -Using editText.setError(""Some Message"") -This did not happen prior to android 6 and was working fine on 5.

    - -

    Anybody experienced similar to this? if so how did you fix it?

    -",HQ -"ok so im trying to create a A* algorithm path finder. issue that i have is how do i sort which has teh lowest distance from the bot's space options from the goal. - -here is my space class, bot class, goal class, and pathfinder class. its not really ordered but here it is. see if you can lead me in the right direction. this goes all under one src. - - - public class Space { - - private int distance; - private int x; - private int y; - public Space(int x, int y){ - - int distancex =Math.abs((x) - Goal.getX()); - int distancey= Math.abs((y) - Goal.getY()); - this.x = x; - this.y = y; - this.distance = (distancex + distancey); - } - public int getDistance() { - return distance; - } - public int getX() { - return x; - } - public int getY() { - return y; - } - - - } -this is the pathfinder class. - - import java.util.*; - public class Pathfinder { - - public static void main(String[] args) { - // TODO Auto-generated method stub - - - Bot Dave = new Bot(""Dave""); - - Goal goal = new Goal(); - - System.out.println(""Dave's x positon is "" + Dave.getX() +""and his y position is ""+ Dave.getY()); - - System.out.println(""the left space of the bot is "" + Dave.checkleft(Dave.getX(), Dave.getY())); - System.out.println(""the right space of the bot is "" + Dave.checkright(Dave.getX(), Dave.getY())); - System.out.println(""the bottom space of the bot is "" + Dave.checkbottom(Dave.getX(), Dave.getY())); - System.out.println(""the top space of the bot is "" + Dave.checkbottom(Dave.getX(), Dave.getY())); - - - Space right = new Space(Dave.getX()+1, Dave.getY()); - Space left = new Space(Dave.getX()-1, Dave.getY()); - Space up = new Space(Dave.getX(), Dave.getY()+1); - Space down = new Space(Dave.getX(), Dave.getY()-1); - - - - } - - - - } - -this is the bot class - - import java.util.*; - - - public class Bot { - - private int x; - private int y; - private String name; - - public Bot(String Name){ - this.name = Name; - this.x =(int) (Math.random()*100); - this.y =(int) (Math.random()*100); - } - public String getName() { - return name; - } - - public int getX() { - return x; - } - - public int getY() { - return y; - } - - public int checktop(int x, int y){ - int distancex =Math.abs((x) - Goal.getX()); - int distancey= Math.abs((y+1) - Goal.getY()); - - return (distancex + distancey); - - - }public int checkbottom(int x, int y){ - int distancex =Math.abs(x - Goal.getX()); - int distancey= Math.abs((y-1) - Goal.getY()); - - return (distancex + distancey); - } - public int checkright(int x, int y){ - int distancex =Math.abs((x+1) - Goal.getX()); - int distancey= Math.abs(y - Goal.getY()); - - return (distancex + distancey); - - } - public int checkleft(int x, int y){ - int distancex =Math.abs((x-1) - Goal.getX()); - int distancey= Math.abs(y - Goal.getY()); - - return (distancex + distancey); - - } - - } - -this is the goal class - - - - public class Goal { - private static int x; - private static int y; - - public Goal(){ - - this.x=(int) (Math.random()*100); - this.y =(int) (Math.random()*100); - - } - - public static int getX() { - return x; - } - - public static int getY() { - return y; - } - - }",LQ -"

    I'm trying to extend enum classes of type String with the following function but am unable to use it at the call site like so:

    - -
    fun <T: Enum<String>> Class<T>.join(skipFirst: Int = 0, skipLast: Int = 0): String {
    -    return this.enumConstants
    -        .drop(skipFirst)
    -        .dropLast(skipLast)
    -        .map { e -> e.name }
    -        .joinToString()
    -}
    -
    -MyStringEnum.join(1, 1);
    -
    - -

    What am I doing wrong here?

    -",HQ -"

    I'm trying to use Laravel Socialite package over an api. I try to pass the code into my api to fetch the user but it keeps giving me an error:

    - -
    Fatal error: Call to a member function pull() on null
    -
    - -

    Since I'm doing the request over an API, I take the following steps.

    - -

    Send a request to api for the url to fetch the code:

    - -
    Socialite::with('facebook')->stateless()->redirect()->getTargetUrl()
    -
    - -

    Then make a request with the above fetched url, which redirects with the code parameter.

    - -

    Send the code to the api and fetch the user:

    - -
    $fb_user = Socialite::with('facebook')->user();
    -
    - -

    This is where it crashes. I'm not sure why.

    - -

    I've used the package before and it works fine when I just have an app that reloads the page. But when I send it to an api (on a different domain) it crashes. I'm thinking there is some issue with how the code is generated. Is there anyway to fix this?

    -",HQ -"

    I need a custom layout for my PreferenceFragmentCompat. In the docs for PreferenceFragmentCompat it seems that you can possibly inflate and return a view in onCreateView().

    - -

    However a NPE results:-

    - -
    Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.support.v7.widget.RecyclerView.setAdapter(android.support.v7.widget.RecyclerView$Adapter)' on a null object reference
    -                                                                       at android.support.v7.preference.PreferenceFragmentCompat.bindPreferences(PreferenceFragmentCompat.java:511)
    -                                                                       at android.support.v7.preference.PreferenceFragmentCompat.onActivityCreated(PreferenceFragmentCompat.java:316)
    -                                                                       at com.cls.example.MyPrefFrag.onActivityCreated(MyPrefFrag.java:42) 
    -
    - -

    After I checked the source of PreferenceFragmentCompat:onCreateView I found the following piece of code :-

    - -
     RecyclerView listView = this.onCreateRecyclerView(themedInflater, listContainer, savedInstanceState);
    - if(listView == null) {
    -    throw new RuntimeException(""Could not create RecyclerView"");
    - } else {
    -    this.mList = listView;   //problem
    -    ...
    -    return view;
    - }
    -
    - -

    So if you override onCreateView() and return a custom layout the onCreateRecyclerView() is not called plus the RecyclerView private field mList will not be set. So the NPE on setAdapter() results.

    - -

    Should I assume that having a custom layout is not feasible for PreferenceFragmentCompat ?

    -",HQ -"

    I am trying to compare the length of a list in golang html/template. But it is loading forever in html.

    - -
    {{ $length := len .SearchData }} {{ if eq $length ""0"" }}
    -    Sorry. No matching results found
    -{{ end }}
    -
    - -

    Could anyone help me with this?

    -",HQ -"i having problem to assign a Text-view result[from database] to a new variable. -Text-view retrieve data from database no issue. - -Now issue is i need to link the value in the Text-view to a new variable. Then use button function for my next activity. - -",LQ -"

    I'm having a lot of trouble getting stuff in threejs's examples (like EffectComposer or Detector) to work with webpack and typescript.

    - -

    First off the relevant *.d.ts files are all present and installed via tsd. My problem is getting webpack to actually include files outside of the default threejs build (namely things in examples/js/).

    - -

    With three installed from npm I can do something like

    - -
    import THREE = require('three');
    -
    - -

    Which works fine but lacks any of the aforementioned goodies. There are a few other threejs packages on npm that bundle plugins but I don't think they work with typescript (since require('three-js')(['EffectComposer']) is rejected by the typescript compiler.

    - -

    Has anyone gotten something in this package (like postprocessing) to work with typescript?

    -",HQ -"For a couple of weeks ago, I got some homeworks from my university and the thing is that, though other problems are accepted on the uva, I cannot figure out what is going wrong with this problem. I've already run the input from udebug website and there was no problem. I double-checked the result and now, I'm sick and tired of solving this issue. - - Here are details about what has happeded. First of all, I increase the BUFSIZE to 2^20 in order to avoid any memory overflow. The result? Failed. Second, I downsized the size of the element in the stack I made. The result? Failed. Lastly, I removed an eol character of the result just in case. The result? Failed. - - #include - #include - #include - #include - - #define BUFSIZE 16384 - - typedef struct node { - int element[BUFSIZE]; - int size; - int current; - }Stack; - - static Stack *stack; - static int level; - static int integer; - - bool initialize(void) { - if (stack == NULL) - stack = (Stack *)malloc(sizeof(Stack)); - - stack->size = BUFSIZE; - stack->current = 0; - return true; - } - - bool push(int number) { - if (stack == NULL) - return false; - if ((stack->current + 1) > stack->size) - return false; - - stack->element[stack->current] = number; - stack->current++; - return true; - } - - int pop() { - if (stack->current <= 0) - return 0xFFFFFFFF; - stack->current--; - return stack->element[stack->current]; - } - - int sum() { - int result = 0; - int i; - if (stack == NULL) - return 0xFFFFFFFF; - if (stack->current == 0) - return 0xFFFFFFFF; - - for (i = 0; i < stack->current; i++) - result += stack->element[i]; - - return result; - } - - void replace(char * o_string, char * s_string, char * r_string) { - char *buffer = (char *)calloc(BUFSIZE, sizeof(char)); - char * ch; - - if (!(ch = strstr(o_string, s_string))) - return; - strncpy(buffer, o_string, ch - o_string); - buffer[ch - o_string] = 0; - sprintf(buffer + (ch - o_string), ""%s%s"", r_string, ch + strlen(s_string)); - o_string[0] = 0; - strcpy(o_string, buffer); - free(buffer); - return replace(o_string, s_string, r_string); - } - - - int main(void) { - char *buffer; - char *line; - char *restOfTheString; - char *token; - bool checked = false, found = false; - - int i = 0, j = 0, scannedInteger, result = 0, array[4096]; - - buffer = (char *)calloc(BUFSIZE, sizeof(char)); - restOfTheString = (char *)calloc(BUFSIZE, sizeof(char)); - line = (char *)calloc(BUFSIZE, sizeof(char)); - memset(buffer, 0, BUFSIZE); - for (i = 0; i < 4096; i++) { - array[i] = -1; - } - level = 0; - integer = 0; - - while (fgets(line, sizeof(line), stdin) != NULL) { - if (line[0] != '\n') { - token = strtok(line, ""\n""); - if (strlen(line) >= 1) { - strcat(buffer, token); - } - } - } - - replace(buffer, "" "", """"); - replace(buffer, ""()()"", ""K""); - - strcpy(restOfTheString, buffer); - i = 0; - while (restOfTheString[i] != 0) { - if (level == 0 && !checked) { - initialize(); - sscanf(&restOfTheString[i], ""%d%s"", &integer, &restOfTheString[0]); - i = -1; - checked = true; - } - - if (restOfTheString[i] == '(') { - checked = false; - level++; - } - else if (restOfTheString[i] == ')') { - if (restOfTheString[i - 1] != '(') - if (pop() == 0xFFFFFFFF) - return 0; - level--; - if (!found && level == 0) { - array[j] = 0; - j++; - free(stack); - stack = NULL; - } - else if (found && level == 0) { - array[j] = 1; - j++; - free(stack); - stack = NULL; - found = false; - } - } - else if (restOfTheString[i] == '-' && !checked) { - if (sscanf(&restOfTheString[i], ""%d%s"", &scannedInteger, &restOfTheString[0]) == 2) { - if (push(scannedInteger) == false) - return 0; - i = -1; - } - } - else if (restOfTheString[i] >= 48 && restOfTheString[i] <= 57 && !checked) { - if (sscanf(&restOfTheString[i], ""%d%s"", &scannedInteger, &restOfTheString[0]) == 2) { - if (push(scannedInteger) == false) - return 0; - i = -1; - } - } - else if (restOfTheString[i] == 'K') { - if ((result = sum()) == 0xFFFFFFFF) - return 0; - if (result == integer) { - found = true; - } - } - i++; - } - i = 0; - while (array[i] != -1) { - if (array[i] == 1) - printf(""yes\n""); - else if (array[i] == 0) - printf(""no\n""); - i++; - } - return 0; - } - - Though it is cleary suspicious about the memory usage, I don't know how to track the stack on my system. So if you guys have any idea about this problem, please help me cause I'm stuck and the deadline of this homework is within the next 18 hous. - -Thanks - - ",LQ -"

    I'm working on a project to sync sms received in a Android phone to a online database. I can get sender's number by calling getOriginatingAddress() method. But I can't find any solution to figure out which SIM in my device received the sms.

    - -

    I searched the web about it, but couldn't find a way to figure this out. Is there any way to get SMS receiver's number?

    -",HQ -"I've tried to create a macro to check bold paragraphs and add comments for each by using macro record function in word application. But it's not work for me. - -I need to create a macro for below criteria. - -01. Search all bold paragraphs + without keep with next. -02. Then Add comments for each bold + without keep with next. (Ex Comment: Check Keep With Next) - -How do I do this.",LQ -"

    I am stuck. I have several seperate components on seperate files. If I render them in main.jsx like following:

    - -
    ReactDOM.render(<LandingPageBox/>, document.getElementById(""page-landing"")); 
    -ReactDOM.render(<TopPlayerBox topPlayersData={topPlayersData}/>, document.getElementById(""wrapper profile-data-wrapper""));
    -ReactDOM.render(<RecentGamesBox recentGamesData={recentGamesData}/>, document.getElementById(""history wrapper""));
    -
    - -

    Everything works fine, but I wonder if it is a good practice? Maybe it is possible to do something like there would be only one ReactDom.render like:

    - -
    ReactDOM.render(<LandingPageBox recentGamesData={recentGamesData} topPlayersData={topPlayersData}/>, document.getElementById(""page-landing"")); 
    -
    - -

    I tried different kinds of variatons of LandingPageBox to somehow include those other two components, but had no luck. They sometimes rendered outside the page and so on. I thought it should look something like this:

    - -
    import React from 'react';
    -import RecentGames from '../RecentGames/RecentGames.jsx';
    -import TopPlayers from '../TopPlayers/TopPlayers.jsx';
    -import PageTop from './PageTop.jsx';
    -import PageBottom from './PageBottom.jsx';
    -
    -class LandingPageBox extends React.Component {
    -    render() {
    -        return (
    -            <body className=""page-landing"">
    -                <PageTop>
    -                     <TopPlayers topPlayersData={this.props.topPlayersData} />
    -                </PageTop>
    -                <PageBottom>
    -                        <RecentGames recentGamesData=    {this.props.recentGamesData}/>
    -                    </PageBottom>              
    -                </body>
    -            );
    -        }
    -    }
    -
    -export default LandingPageBox;
    -
    - -

    But this code only renders PageTop and PageBottom, without player or game components.

    - -

    So my question would be, how to set up LandingPageBox file so that TopPlayers component would render inside PageTop component and RecentGames component would render inside PageBottom component? Thank you.

    -",HQ -"for example, in a project by another developer a new file was added. How using TortoiseGit I can download the file to your local repository?",LQ -"
    -

    How to read output from cmd.exe using CreateProcess() and CreatePipe()

    -
    - -

    I have been trying to create a child process executing cmd.exe with a command-line designating /K dir. The purpose is to read the output from the command back into the parent process using pipes.

    - -

    I've already got CreateProcess() working, however the step involving pipes are causing me trouble. Using pipes, the new console window is not displaying (like it was before), and the parent process is stuck in the call to ReadFile().

    - -

    Does anyone have an idea of what I'm doing wrong?

    - -
    #include <Windows.h>
    -#include <stdio.h>
    -#include <tchar.h>
    -
    -#define BUFFSZ 4096
    -
    -HANDLE g_hChildStd_IN_Rd = NULL;
    -HANDLE g_hChildStd_IN_Wr = NULL;
    -HANDLE g_hChildStd_OUT_Rd = NULL;
    -HANDLE g_hChildStd_OUT_Wr = NULL;
    -
    -int wmain(int argc, wchar_t* argv[]) 
    -{
    -    int result;
    -    wchar_t aCmd[BUFFSZ] = TEXT(""/K dir""); // CMD /?
    -    STARTUPINFO si;
    -    PROCESS_INFORMATION pi;
    -    SECURITY_ATTRIBUTES sa;
    -
    -    printf(""Starting...\n"");
    -
    -    ZeroMemory(&si, sizeof(STARTUPINFO));
    -    ZeroMemory(&pi, sizeof(PROCESS_INFORMATION));
    -    ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
    -
    -    // Create one-way pipe for child process STDOUT
    -    if (!CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &sa, 0)) {
    -        printf(""CreatePipe() error: %ld\n"", GetLastError());
    -    }
    -
    -    // Ensure read handle to pipe for STDOUT is not inherited
    -    if (!SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)) {
    -        printf(""SetHandleInformation() error: %ld\n"", GetLastError());
    -    }
    -
    -    // Create one-way pipe for child process STDIN
    -    if (!CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &sa, 0)) {
    -        printf(""CreatePipe() error: %ld\n"", GetLastError());
    -    }
    -
    -    // Ensure write handle to pipe for STDIN is not inherited
    -    if (!SetHandleInformation(g_hChildStd_IN_Rd, HANDLE_FLAG_INHERIT, 0)) {
    -        printf(""SetHandleInformation() error: %ld\n"", GetLastError());
    -    }
    -
    -    si.cb = sizeof(STARTUPINFO);
    -    si.hStdError = g_hChildStd_OUT_Wr;
    -    si.hStdOutput = g_hChildStd_OUT_Wr;
    -    si.hStdInput = g_hChildStd_IN_Rd;
    -    si.dwFlags |= STARTF_USESTDHANDLES;
    -
    -    sa.nLength = sizeof(SECURITY_ATTRIBUTES);
    -    sa.lpSecurityDescriptor = NULL;
    -    // Pipe handles are inherited
    -    sa.bInheritHandle = true;
    -
    -    // Creates a child process
    -    result = CreateProcess(
    -        TEXT(""C:\\Windows\\System32\\cmd.exe""),     // Module
    -        aCmd,                                       // Command-line
    -        NULL,                                       // Process security attributes
    -        NULL,                                       // Primary thread security attributes
    -        true,                                       // Handles are inherited
    -        CREATE_NEW_CONSOLE,                         // Creation flags
    -        NULL,                                       // Environment (use parent)
    -        NULL,                                       // Current directory (use parent)
    -        &si,                                        // STARTUPINFO pointer
    -        &pi                                         // PROCESS_INFORMATION pointer
    -        );
    -
    -    if (result) {
    -        printf(""Child process has been created...\n"");
    -    }
    -    else {
    -        printf(""Child process could not be created\n"");
    -    }
    -
    -    bool bStatus;
    -    CHAR aBuf[BUFFSZ + 1];
    -    DWORD dwRead;
    -    DWORD dwWrite;
    -    // GetStdHandle(STD_OUTPUT_HANDLE)
    -
    -    while (true) {
    -        bStatus = ReadFile(g_hChildStd_OUT_Rd, aBuf, sizeof(aBuf), &dwRead, NULL);
    -        if (!bStatus || dwRead == 0) {
    -            break;
    -        }
    -        aBuf[dwRead] = '\0';
    -        printf(""%s\n"", aBuf);
    -    }
    -
    -        // Wait until child process exits
    -        WaitForSingleObject(pi.hProcess, INFINITE);
    -
    -        // Close process and thread handles
    -        CloseHandle(pi.hProcess);
    -        CloseHandle(pi.hThread);
    -
    -        printf(""Stopping...\n"");
    -
    -        return 0;
    -    }
    -
    -",HQ -"I don't span a cells ""cell1_1"" and ""cell1_2"". When I'm use colspan=""2"" at #cell1_1 it don't work. My [example](https://jsfiddle.net/Erush/xcwk3d09/) -I try use [method](http://stackoverflow.com/questions/15571556/html-colspan-rowspan?answertab=votes#tab-top) at [jsfiddler](http://jsfiddle.net/Tyriar/tAsbE/) -,but don't work tag `br` when I use rowspan. -
    I don't understand how working skipping cells? -
    But can't find solution! Please help!",LQ -"

    This is a simplified version which illustrate the problem:

    - -
    struct Foo {
    -    Foo() = default;
    -
    -    template <std::size_t N>
    -    Foo(const char(&)[N]) {}
    -};
    -
    -template <std::size_t N>
    -auto foo(const char (&arr)[N]) -> Foo
    -{
    -    return arr;
    -}
    -
    -auto main() -> int
    -{
    -    foo(""Stack Overflow"");
    -}
    -
    - -

    g++ seems to decay arr to const char *, although an array reference argument is passed to an array reference parameter . It gives this error:

    - -
    -

    In instantiation of Foo foo(const char (&)[N]) [with long unsigned - int N = 4ul]:

    - -

    error: could not convert (const char*)arr from const char* to - Foo

    - -
     return arr;
    -        ^
    -
    -
    - -

    While clang++ behaves how I expect and compiles the code.

    - -

    The code compiles fine on gcc with any of those modifications:

    - -
    return {arr};
    -return Foo(arr);
    -return (Foo)arr;
    -return static_cast<Foo>(arr);
    -
    - -

    Is it a gcc bug?

    - -

    Tried it with all g++ and clang++ versions which support c++14.(*)

    - -

    (*) I just tried it with a snapshot of gcc 6 and it compiles OK. So it does look like a bug fixed in gcc 6

    -",HQ -"

    In this documentation (under section ""Specifying a Custom Executable to Run"") I noticed that there is mention of what looks like a variable %{buildDir} in the field ""Working directory"".

    - -

    - -

    I have struggled for a while now to find documentation for this feature. I would like to know first of all is there documentation for this somewhere?.

    - -

    Secondary questions:

    - -
      -
    • What other variables are available?
    • -
    • In which fields can they be used?
    • -
    • Can I access variables that I created in my project's .pro file?
    • -
    • Are there any other eval features or is this mechanism limited to variables?
    • -
    - -

    Thanks!

    -",HQ -"

    I'm writing a rest API with the Django REST framework, and I'd like to protect certain endpoints with permissions. The permission classes look like they provide an elegant way to accomplish this. My problem is that I'd like to use different permission classes for different overridden ViewSet methods.

    - -
    class UserViewSet(viewsets.ModelViewSet):
    -    queryset = User.objects.all()
    -    serializer_class = UserSerializer
    -
    -    def create(self, request, *args, **kwargs):
    -        return super(UserViewSet, self).create(request, *args, **kwargs)
    -
    -    @decorators.permission_classes(permissions.IsAdminUser)
    -    def list(self, request, *args, **kwargs):
    -        return super(UserViewSet, self).list(request, *args, **kwargs)
    -
    - -

    In the code above I'd like to allow registration (user creation) for unauthenticated users too, but I don't want to let list users to anyone, just for staff.

    - -

    In the docs I saw examples for protecting API views (not ViewSet methods) with the permission_classes decorator, and I saw setting a permission classes for the whole ViewSet. But it seems not working on overridden ViewSet methods. Is there any way to only use them for certain endpoints?

    -",HQ -"

    Ok. I know this is a very stupid question. -But I'm stuck already for an hour.

    - -

    I got very little experience with ahk, however I made work every script until now with no problems. I explored the ahk tutorials but found no solution up to now.

    - -

    I'm trying to switch to prev. app with a single numpad off key. -I've tried:

    - -
    !{Tab}
    -
    - -

    ,

    - -
    {Alt down}{Tab}{Alt up}
    -
    - -

    I've tried it with Sleep delays, multiline, multiline inside brackets, with and without commas after commands, etc.

    - -

    I'm quite sure is very simple but something I've not tried yet.

    - -

    Any suggestion?

    -",HQ -"

    I have a dropdown select form in angular 2.

    - -

    Currently: When I select an option the option name gets passed into my onChange function as $event

    - -

    Wanted: When I select an option I would like to pass workout.id into my onChange function.

    - -

    How can I achieve that?

    - -
    <select class=""form-control"" [ngModel]=""selectedWorkout"" (ngModelChange)=""onChange($event)"">
    -    <option *ngFor=""#workout of workouts"">{{workout.name}}</option>
    -</select>
    -
    - -

    Controller

    - -
    onChange(value){
    -  alert(JSON.stringify(value));
    -}
    -
    -",HQ -"

    I have Singleton scoped module that provides some standard singletons: Application, DB services, etc. -But for Activity I have separate module that should create Presenter for he Activity and I need to pass Application context to it. However I get following error when trying to compile the project:

    - -
    Error:(13, 1) error: xxx.SplashComponent scoped with @xxx.ViewScope may not reference bindings with different scopes:
    -@Provides @Singleton xxx.ApplicationModule.provideAppContext()
    -
    - -

    Here is snippet of my Application module:

    - -
    @Singleton
    -@Module
    -public class ApplicationModule {
    -
    -    private Application app;
    -
    -    public ApplicationModule(Application app) {
    -        this.app = app;
    -    }
    -
    -    @Provides
    -    @Singleton
    -    @Named(""ui"")
    -    Scheduler provideUIScheduler() {
    -        return AndroidSchedulers.mainThread();
    -    }
    -
    -    @Provides
    -    @Singleton
    -    @Named(""io"")
    -    Scheduler provideIOScheduler() {
    -        return Schedulers.io();
    -    }
    -
    -    @Provides
    -    @Singleton
    -    Application provideApplication() {
    -        return app;
    -    }
    -
    -    @Provides
    -    @Singleton
    -    Context provideAppContext() {
    -        return app;
    -    }
    -}
    -
    - -

    And here is Activity module and Component:

    - -
    @Module
    -public class SplashModule {
    -    private final FragmentManager fragmentManager;
    -
    -    public SplashModule(FragmentManager fragmentManager) {
    -
    -        this.fragmentManager = fragmentManager;
    -    }
    -
    -    @Provides
    -    @ViewScope
    -    Presenter getPresenter(Context context) {
    -        return new SplashPresenter(context, fragmentManager);
    -    }
    -}
    -
    - -

    Component:

    - -
    @ViewScope
    -@Component(modules = {SplashModule.class, ApplicationModule.class})
    -public interface SplashComponent {
    -    void inject(SplashActivity activity);
    -}
    -
    - -

    What am I doing wrong?

    -",HQ -"I would just like to say that this is my first windows form application so bare with me :) - -**What the application should do** - -This application should take the input of time (seconds, minutes and hours) and shutdown the computer after that time. It should also update the text box with how long left until the computer has shut down. - -**What the application actually does** - -I had an issue that I 'fixed' where the called ac across threads weren't safe, so I fixed it and I don't get that error now. However, the updateThread doesn't update and print the time left; and the text box doesn't get ""test"" appended to it. The UI also becomes Not Responding. Any help would be much appreciated. - -Also, if you see anything else that could be done better, please comment and explain. Thanks! - - using System; - using System.Collections.Generic; - using System.ComponentModel; - using System.Data; - using System.Diagnostics; - using System.Drawing; - using System.Globalization; - using System.Linq; - using System.Text; - using System.Threading; - using System.Threading.Tasks; - using System.Windows.Forms; - - namespace ShutdownPC - { - public partial class Form1 : Form - { - int inputHours; - int inputMinutes; - int inputSeconds; - - Thread sleepingThread; - Thread updatingThread; - - NotifyIcon shutdownPCIcon; - Icon defaultIcon; - - public Form1() - { - InitializeComponent(); - defaultIcon = new Icon(""defaultIcon.ico""); - shutdownPCIcon = new NotifyIcon(); - shutdownPCIcon.Icon = defaultIcon; - shutdownPCIcon.Visible = true; - - MenuItem progNameMenuItem = new MenuItem(""ShutdownPC by Conor""); - MenuItem breakMenuItem = new MenuItem(""-""); - MenuItem quitMenuItem = new MenuItem(""Quit""); - ContextMenu contextMenu = new ContextMenu(); - contextMenu.MenuItems.Add(progNameMenuItem); - contextMenu.MenuItems.Add(breakMenuItem); - contextMenu.MenuItems.Add(quitMenuItem); - shutdownPCIcon.ContextMenu = contextMenu; - - shutdownPCIcon.Text = ""ShutdownPC""; - - quitMenuItem.Click += QuitMenuItem_Click; - } - - private void QuitMenuItem_Click(object sender, EventArgs e) - { - shutdownPCIcon.Dispose(); - sleepingThread.Abort(); - updatingThread.Abort(); - this.Close(); - } - - public void sleepThread() - { - if (this.InvokeRequired) - { - this.Invoke(new MethodInvoker(sleepThread)); - } - else { - textBox1.Enabled = false; - textBox2.Enabled = false; - textBox3.Enabled = false; - button1.Enabled = false; - - int totalMilliseconds = ((inputHours * 3600) + (inputMinutes * 60) + inputSeconds) * 1000; - Thread.Sleep(totalMilliseconds); - //Process.Start(""shutdown"", ""/s /t 0""); - richTextBox1.AppendText(String.Format(""test"")); - } - } - - public void updateThread() - { - if (this.InvokeRequired) - { - this.Invoke(new MethodInvoker(updateThread)); - } - else { - int totalSeconds = (inputHours * 3600) + (inputMinutes * 60) + inputSeconds; - while (totalSeconds > 0) - { - TimeSpan time = TimeSpan.FromSeconds(totalSeconds); - - string timeOutput = time.ToString(@""hh\:mm\:ss""); - - richTextBox1.AppendText(String.Format(timeOutput)); - Thread.Sleep(1000); - richTextBox1.Clear(); - totalSeconds--; - } - } - } - - private void textBox1_TextChanged(object sender, EventArgs e) - { - inputHours = Convert.ToInt32(textBox1.Text); - inputHours = int.Parse(textBox1.Text); - } - - private void textBox2_TextChanged(object sender, EventArgs e) - { - inputMinutes = Convert.ToInt32(textBox2.Text); - inputMinutes = int.Parse(textBox2.Text); - } - - private void textBox3_TextChanged(object sender, EventArgs e) - { - inputSeconds = Convert.ToInt32(textBox3.Text); - inputSeconds = int.Parse(textBox3.Text); - } - - private void button1_Click(object sender, EventArgs e) - { - updatingThread = new Thread(new ThreadStart(updateThread)); - updatingThread.Start(); - sleepingThread = new Thread(new ThreadStart(sleepThread)); - sleepingThread.Start(); - } - - private void richTextBox1_TextChanged(object sender, EventArgs e) - { - } - } - } -",LQ -"I'm writing tests for some code I was given. There is a constructor that takes and int as the first parameter. I want to test that it gives an error if something such as a boolean is passed in so I wrote this code. - - try - { - nanReview = new WorkshopReview(true, ""test""); - } - catch (Error err) - { - assertEquals(err.getMessage(), ""incompatible types: boolean cannot be converted to int""); - } - -When I run the test it just throws the error into the console again, shouldn't the test pass at this point because it throws the expected error message? - -How do I go about testing stuff like this / should I even be testing this in the first place?",LQ -" int r = 50; - int *p; - int **k; - int ***m; - printf( ""r: %d "", r ); - p = &r; - k = &p; - m = &k; - ***m = 100; //line 9 - printf( ""r: %d\n"", r ); - -When there is only one pointer, i can understand that we take 100 and we assign it to the variable at the adress which is being held by the pointer. But what exactly is happening step by step when we do this with more than one pointer level? (line 9) -",LQ -" #include - #include - #include - using namespace std; - - class Circle - { - private: - float radius; - public: - inline void circleArea(float) - - void input() - { - cout<<""\nEnter the radius of circle""; - cin>>radius; - } - - - Circle() - { - float radius=0.0; - } - }; - void circleArea() - { - float a,r; - a=(3.14*r*r); - - } - int main() - { - Circle c; - c.input(); - c.circleArea(); - - } - -Here i dont undestand how to put inline function,and i am not getting any output,my output shows blank space after putting the value of radius please help..",LQ -"

    Realizing that React Native apps are designed to be developed / tested using simulators, is it possible to use a web browser to also test an application?

    - -

    Services such as https://rnplay.org/ exist, however my concern is it's powered by https://appetize.io/ it might be limited by the # of minutes per month. I'd also like to utilize free / open-source technology to accomplish this, as compared to a paid screen streaming service.

    - -

    Along these lines, in order to test the app in a browser, would the app be required to use one or more libraries which allow the app to be run in both React Native and also simply React? I'd like to find an alternative to this particular approach as I'd like to code for React Native specifically.

    -",HQ -"

    I am totally new to WireMock.

    - -

    Until now, I have been using mock responses using SOAPUI. My use case is simple:

    - -

    Just firing SOAP XML requests to different endpoints (http://localhost:9001/endpoint1) and getting canned XML response back. But MockWrire has to be deployed as a standalone service onto a dedicated server which will act a central location from where mock responses will be served.

    - -

    Just wanted some starting suggestions. As I can see WireMock is more suitable towards REST web services. So my doubts are:

    - -

    1) Do I need to deploy it to a java web server or container to act as always running standalone service. I read that you can just spin off by using

    - -
    java -jar mockwire.jar --port [port_number]
    -
    - -

    2) Do I need to use MockWire APIs? Do I need to make classes for my use case? In my case, requests will be triggered via JUnit test cases for mocking.

    - -

    3) How do I achieve simple URL pattern matching? As stated above, I just need simple mocking i.e get response when request is made to http://localhost:9001/endpoint1

    - -

    4) Is there a better/easier framework for my usecase? I read about Mockable but it has restrictions for 3 team members and demo domain in free tier.

    -",HQ -"Hi Im Using Visual Studio C# and Im Having conflict on how to create a sell button as well how can I get the total amount of product that had been sold here is my code - - - try - { - if (txtID.Text != """" && txtCategory.Text != """" && txtName.Text != """" && txtQty.Text != """" && txtQty.Text != """" && PriceText.Text != """" && SuppNameText.Text != """") - { - con.Open(); - SqlCommand cmd = new SqlCommand(""INSERT INTO Sold_Inventory (ProductName,Description,Category,Quantity_Sold,Price,TotalAmount,SuppliersName) VALUES(@ProductName,@Description,@Category,@Quantity,@Price,@Supplier)WHERE TotalAmount = @Quantity * @Price"", con); - - cmd.Parameters.AddWithValue(""@ProductName"", txtID.Text); - cmd.Parameters.AddWithValue(""@Description"", txtName.Text); - cmd.Parameters.AddWithValue(""@Category"", txtCategory.Text); - cmd.Parameters.AddWithValue(""@Quantity"", txtQty.Text); - cmd.Parameters.AddWithValue(""@Price"", PriceText.Text); - cmd.Parameters.AddWithValue(""@Supplier"", SuppNameText.Text); - cmd.ExecuteNonQuery(); - SqlCommand cmd1 = new SqlCommand(""Update Quantity FROM Inventory SET Quantity = Quantity - @Quantity""); - cmd1.Parameters.AddWithValue(""@Quantity"", txtQty.Text); - cmd1.ExecuteNonQuery(); - con.Close(); - ClearTextbox(); - btnSearch.Enabled = true; - txtSearch.Enabled = true; - groupBox4.Enabled = true; - btnSubmit.Enabled = false; - btnCancel.Enabled = false; - ClearTextbox(); - DisabledTextbox(); - btnAdd.Enabled = true; - - RefreshDGV(this.dataGridView1); - } - else - { - MessageBox.Show(""You left an empty field!"", ""Error"", MessageBoxButtons.OK, MessageBoxIcon.Error); - } - } - catch (Exception ex) - { - MessageBox.Show(ex.Message); - - }",LQ -"

    Take a = [1,2,3,4,5] as an example. From my instinct, I think a[::-1] is the same as a[0:len(a):-1]. But the result turns to be wrong:

    - -
    >>> a = [1,2,3,4,5]
    ->>> print a[::-1]
    -[5, 4, 3, 2, 1]
    ->>> print a[0:len(a):-1]
    -[]
    ->>> print a[0:3:-1]
    -[]
    ->>> print a[0:2:-1]
    -[]
    ->>> print a[:2:-1]
    -[5, 4]
    ->>> print a[:0:-1]
    -[5, 4, 3, 2]
    ->>> print a[0:-1]
    -[1, 2, 3, 4]
    -
    - -

    I actually can't understand the last 6 attempt's output. Could anyone give me some idea? Thanks tons.

    -",HQ -"

    Is there a simple way in Julia to check whether a file in the current working directory exists (something like test = os.path.isfile(""foo.txt"") in Python or inquire(file = ""foo.txt"", exist = test) in Fortran)?

    -",HQ -"

    When I try to export a database sql file in phpmyadmin it fails. I get the following error: ""Your output is incomplete, due to a low execution time limit on PHP level"" .

    - -

    I don't know what to do..

    -",HQ -"

    In blade template i use last() method to find last iteration of foreach loop:

    - -
    @foreach ($colors as $k => $v)
    -   <option value={!! $v->id !!} {{ $colors->last()->id==$v->id ? 'selected':'' }} > {!! $v->name !!} </option>
    -@endforeach
    -
    - -

    Is it ok? Perhaps there is a Laravel-style way to do the same?

    -",HQ -"

    I have deployed a personal blog using Github pages and I see that some tutorials tell you to create a gh-pages branch. I did that, however, my changes to the website are visible only if I make changes to my master. So, I'm confused as to why I need gh-pages? Can someone please explain this. Thanks

    -",HQ -"

    Is it possible to configure the Content-Security-Policy to not block anything at all? I'm running a computer security class, and our web hacking project is running into issues on newer versions of Chrome because without any CSP headers, it's automatically blocking certain XSS attacks.

    -",HQ -"

    I keep hitting an error ""Can't use query methods that take a query string on a PreparedStatement."" when trying to debug the following code & SQL Select query. (Postgres 9.4, jdk 1.8) Maybe I'm blind and it's a simple type, but I could use some help.

    - -

    My Console Ouput:

    - -
    -

    SELECT rowid, firstname, lastname, prefname, email1, email2, email3, type, status, preflang, mbrappid, deviceid, mbrstatus, mbrtype, mbrcat, pr_phonevoice FROM qbirt.person WHERE pr_sms = 47 ORDER BY lastupdt DESC

    - -

    E R R O R - JDBC Prep'd Stmt error on Primary Phone FKey... - Phone FKey: 47

    - -

    SQLException: Can't use query methods that take a query string on a PreparedStatement. - SQLState: 42809 - VendorError: 0 - org.postgresql.util.PSQLException: Can't use query methods that take a query string on a PreparedStatement. - at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:102) at solutions.demand.qbirt.Person.findMember(Person.java:762)`

    -
    - -

    Portion of code:

    - -
                if (!foundMbr && foundPhoneID > 0) {
    -                if (QbirtUtils.verbose) {
    -                    System.out.println(""Querying Person by FK ID for phones: "" + foundPhoneID + ""\n"");
    -                }
    -
    -                if (mode.equals(pMode.SMS)) {
    -                    qry = ""SELECT rowid, firstname, lastname, prefname, email1, email2, email3, type, ""
    -                            + ""status, preflang, mbrappid, deviceid, mbrstatus, mbrtype, mbrcat, pr_phonevoice ""
    -                            + ""FROM qbirt.person ""
    -                            + ""WHERE pr_sms = ? ""
    -                            + ""ORDER BY lastupdt DESC;"";
    -                } else {
    -                    if (mode.equals(pMode.VOICE)) {
    -                        qry = ""SELECT rowid, firstname, lastname, prefname, email1, email2, email3, type, ""
    -                                + ""status, preflang, mbrappid, deviceid, mbrstatus, mbrtype, mbrcat, pr_phonevoice ""
    -                                + ""FROM qbirt.person ""
    -                                + ""WHERE pr_phonevoice = ? ""
    -                                + ""ORDER BY lastupdt DESC;"";
    -                    } else { 
    -                        if (mode.equals(pMode.PHONE)) {
    -                            qry = ""SELECT DISTINCT ON (rowid) rowid, firstname, lastname, prefname, email1, email2, email3, type, ""
    -                                    + ""status, preflang, mbrappid, deviceid, mbrstatus, mbrtype, mbrcat, pr_phonevoice ""
    -                                    + ""FROM qbirt.person ""
    -                                    + ""WHERE (pr_sms = ? OR pr_phonevoice = ?) ""
    -                                    + ""ORDER BY lastupdt DESC, rowid DESC;"";
    -                        }
    -                    }
    -                }
    -
    -
    -
    -                try {
    -                    PreparedStatement pStmt = conn.prepareStatement(qry);
    -                    pStmt.setInt(1, foundPhoneID);
    -                    if (mode.equals(pMode.PHONE)) {
    -                        pStmt.setInt(2, foundPhoneID);
    -                    }
    -                    System.out.println(pStmt.toString());
    -                    ResultSet rs = pStmt.executeQuery(qry);   <-------
    -
    - -

    I have confirmed that the fields contain the following values:
    -foundMbr = false, foundPhoneID = 47, mode = SMS, and that qry = ""SELECT rowid, firstname, lastname, prefname, email1, email2, email3, type, status, preflang, mbrappid, deviceid, mbrstatus, mbrtype, mbrcat, pr_phonevoice FROM qbirt.person WHERE pr_sms = ? ORDER BY lastupdt DESC;"";

    - -

    I get the error on the line: ResultSet rs = pStmt.executeQuery(qry);

    - -

    As you can see in the console, I have even confirmed that the pStmt is holding the correct binding because I print it out. - That said, it seems to be missing the ending ';'. Not sure why that is because I can see it in the qry string. I assume that is just a quirk of the preparedStatment.

    - -

    I have also copied this exact SQL into pgAdmin III and successfully executed it manually. Although, I did have to add back the ';'. I use virtually this same code in many other areas without problem.

    - -

    Could it be that the missing ';'?
    -Maybe some sort of type mismatch? (foundPhoneID is an int., rowid is a serial/integer, pr_sms is an integer FKey)
    -Could it be the block of if statements that defines the qry string?

    - -

    TIA!

    -",HQ -"I have the following array: - -$array = array(""6"", ""66"", ""67"", ""68"", ""69"", ""697"", ""698"", ""699""); - -I have the following strings: -""69212345"", ""6209876544"", ""697986546"" - -I want to find the array element which matches longest part from beginning of the string, i.e. - -for ""69212345"" array value ""69"" will be selected. -for ""6209876544"" array value ""6"" will be selected. -for ""697986546"" array value ""697"" will be selected. - -Please help me how can I achieve this?",LQ -"i want to create a class that derives from string builder to append any number of strings. - My Program should allow the user input their own number of strings - - example usage: - - - - //Format Post Data - - //Format Post Data - - StringBuilder postData = new StringBuilder(); - postData.Append(""dst""); - postData.Append(""&popup=true""); - postData.Append(String.Format(""&username={0}"", USERNAME_Validate1));// reads username from username textbox - postData.Append(String.Format(""&password={0}"", PASSWORD_Validate1));// reads password from password textbox - - //Write Post Data To Server - - using (StreamWriter writer = new StreamWriter(request.GetRequestStream())) - writer.Write(postData);",LQ -"

    I am moving from TortoiseSvn to TortoiseGit. But enountered some unexpected difficulties.

    - -

    My working paradigm is as simple as:

    - -
      -
    1. Check out code
    2. -
    3. Change some code
    4. -
    5. Share with others for code review
    6. -
    7. Commit changes
    8. -
    - -

    Why bother to have the 3 syntactically similar commands below?

    - -

    And Pull and Fetch even share the identical icon. What a user-friendly design!

    - -

    -",HQ -" Code : - class A - { - public A() - { - - } - - } - - class B : A - { - public B() - { - - } - } - - class C : B - { - public C() - { - - } - } - Main() - { - C a =new C(); - } - -Construcotrs CallS: First A constructor get called then B Cons get call then C Cons get called. Suppose i donot want to use any vairable of A in child class , -Then **Why Base class constructor is getting called?** -",LQ -"I'm new to javascript. when I was working with objects and nested loop. [plunker][1] is available - - var a = [{b:[{c:null}]}] - for(var x= 0 ; x<10;x++){ - for(var y= 0 ; y<10;y++){ - console.log(a); - a[x].b[y].c = y; - console.log(a); - } - } - - -I was getting error like `TypeError: Cannot set property 'c' of undefined` can some one please explain why it is working like this - - - [1]: https://plnkr.co/edit/EodiL1wo6xqNEPK4StcS?p=preview",LQ -"

    In xgboost it is possible to set the parameter weight for a DMatrix. This is apparently a list of weights wherein each value is a weight for a corresponding sample. -I can't find any information on how these weights are actually used in the gradient boosting procedure. Are they related to eta ?

    - -

    For example, if I would set weight to 0.3 for all samples and eta to 1, would this be the same as setting eta to 0.3 and weight to 1?

    -",HQ -"

    What is the meaning of

    - -
    <directory>${project.basedir}</directory>
    -
    - -

    and

    - -
    ${project.build.directory}
    -
    - -

    in pom.xml

    -",HQ -"

    For example:

    - -
    if (true) try
    -{
    -    // works as expected with both true and false, but is it legal?
    -}
    -catch (...)
    -{
    -    // ...
    -}
    -
    - -

    In other words, is it legal to put the try-block right after the if condition?

    -",HQ -"

    When I invoke API endpoints from REST client, I got error by concerning with Signature.

    - -

    Request:

    - -
    -

    Host: https://xxx.execute-api.ap-southeast-1.amazonaws.com/latest/api/name

    - -

    Authorization: AWS4-HMAC-SHA256 Credential={AWSKEY}/20160314/ap-southeast-1/execute-api/aws4_request,SignedHeaders=host;range;x-amz-date,Signature={signature}

    - -

    X-Amz-Date: 20160314T102915Z

    -
    - -

    Response:

    - -
    {
    -""message"": ""The request signature we calculated does not match the signature you provided. Check your AWS Secret Access Key and signing method. Consult the service documentation for details. The Canonical String for this request should have been 'xxx' ""
    -}
    -
    - -

    From Java code, I followed AWS reference of how to generate Signature.

    - -
        String secretKey = ""{mysecretkey}"";
    -    String dateStamp = ""20160314"";
    -    String regionName = ""ap-southeast-1"";
    -    String serviceName = ""execute-api"";
    -
    -    byte[] signature = getSignatureKey(secretKey, dateStamp, regionName, serviceName);
    -    System.out.println(""Signature : "" + Hex.encodeHexString(signature));
    -
    -    static byte[] HmacSHA256(String data, byte[] key) throws Exception  {
    -         String algorithm=""HmacSHA256"";
    -         Mac mac = Mac.getInstance(algorithm);
    -         mac.init(new SecretKeySpec(key, algorithm));
    -         return mac.doFinal(data.getBytes(""UTF8""));
    -    }
    -
    -    static byte[] getSignatureKey(String key, String dateStamp, String regionName, String serviceName) throws Exception  {
    -         byte[] kSecret = (""AWS4"" + key).getBytes(""UTF8"");
    -         byte[] kDate    = HmacSHA256(dateStamp, kSecret);
    -         byte[] kRegion  = HmacSHA256(regionName, kDate);
    -         byte[] kService = HmacSHA256(serviceName, kRegion);
    -         byte[] kSigning = HmacSHA256(""aws4_request"", kService);
    -         return kSigning;
    -    }
    -
    - -

    May I know what I was wrong while generating Signature?

    - -

    Reference how to generate Signature : http://docs.aws.amazon.com/general/latest/gr/signature-v4-examples.html#signature-v4-examples-java

    -",HQ -"

    There seems to be millions of options out there for every platform, but I'm struggling to find a simple solution for C#. All the ones I have found seem to have given me trouble: either they simply don't work (e.g. http://swaggercodegen.azurewebsites.net/), or only support 2.0 (e.g. AutoRest and NSwag). Half the tools are not even clear what versions they support :-(

    - -

    I'm aware of the official tool, but that requires JDK 7 which is not currently an option for me.

    - -

    In desperation I have even tried converting the swagger spec to 2.0, but half the conversion tools I tried didn't work, gave conflicting advice, or I couldn't figure out how to use (I found myself knee deep in nodejs very quickly...is this really the brave new world?! Bring back WSDL ;-) ).

    -",HQ -"Well i try to sum up a strings that contains number(only) in ex. - - String a = 103 - String b = 13 - -And i want it to sum up so the result will be 113 - -I was wondering about substring or charAt but dunno is it good idea. - -I hope that's well explained.",LQ -"

    I have a control that returns 2 records:

    - -
    {
    -  ""value"": [
    -    {
    -      ""ID"": 5,
    -      ""Pupil"": 1900031265,
    -      ""Offer"": false,
    -    },
    -    {
    -      ""ID"": 8,
    -      ""Pupil"": 1900035302,
    -      ""Offer"": false,
    -      ""OfferDetail"": """"
    -    }
    -  ]
    -}
    -
    - -

    I need to test via Postman, that I have 2 records returned. I've tried various methods I've found here and elsewhere but with no luck. Using the code below fails to return the expected answer.

    - -
    responseJson = JSON.parse(responseBody);
    -var list = responseBody.length;
    -tests[""Expected number""] = list === undefined || list.length === 2;
    -
    - -

    At this point I'm not sure if it's the API I'm testing that's at fault or my coding - I've tried looping through the items returned but that's not working for me either. Could someone advise please - I'm new to javascript so am expecting there to be an obvious cause to my problem but I'm failing to see it. Many thanks.

    -",HQ -"Incident Identifier: 64E7437E-C37F-425C-8582-18A14C43F95A -CrashReporter Key: b90a1226375d6bce87d7c4fc6288d7951058aec4 -Hardware Model: iPad2,1 -Process: LolMess [428] - Path: /private/var/mobile/Containers/Bundle/Application/B1A322EE-F140-49CB-B1D2-84601F0BE962/LolMess.app/LolMess -Identifier: com.mobulous.LolMess - Version: 1 (1.0) - Code Type: ARM (Native) -Parent Process: launchd [1] - - Date/Time: 2016-03-14 17:55:49.49 +0530 - Launch Time: 2016-03-14 17:42:36.36 +0530 -OS Version: iOS 9.2.1 (13D15) -Report Version: 104 - -**Exception Type: EXC_BAD_ACCESS (SIGSEGV)** -Exception Subtype: KERN_INVALID_ADDRESS at 0x0002c9f0 - Triggered by Thread: 24 - -Filtered syslog: -None found - - Thread 0 name: Dispatch queue: com.apple.main-thread - Thread 0: - 0 libsystem_kernel.dylib 0x245c0c24 mach_msg_trap + 20 - 1 libsystem_kernel.dylib 0x245c0a28 mach_msg + 40 - 2 CoreFoundation 0x24903354 __CFRunLoopServiceMachPort + 136 - 3 CoreFoundation 0x249016dc __CFRunLoopRun + 1036 - 4 CoreFoundation 0x24854bf8 CFRunLoopRunSpecific + 520 - 5 CoreFoundation 0x248549e4 CFRunLoopRunInMode + 108 - 6 GraphicsServices 0x25aa0ac8 GSEventRunModal + 160 - 7 UIKit 0x28ae4ba0 UIApplicationMain + 144 - 8 LolMess 0x002171d0 main (main.m:15) - 9 libdyld.dylib 0x24503872 start + 2 - - Thread 1 name: Dispatch queue: com.apple.libdispatch-manager - Thread 1: - 0 libsystem_kernel.dylib 0x245d6320 kevent_qos + 24 - 1 libdispatch.dylib 0x244ce098 _dispatch_mgr_invoke + 256 - 2 libdispatch.dylib 0x244cddf6 _dispatch_mgr_thread$VARIANT$mp + 38 - - - - - Thread 22: - 0 libsystem_kernel.dylib 0x245c0c74 semaphore_wait_trap + 8 - 1 LolMess 0x0078ea9e thread_encoding_proc + 510 - 2 libsystem_pthread.dylib 0x2467985a _pthread_body + 138 - 3 libsystem_pthread.dylib 0x246797ce _pthread_start + 110 - 4 libsystem_pthread.dylib 0x24677724 thread_start + 8 - - Thread 23: - 0 libsystem_kernel.dylib 0x245c0c74 semaphore_wait_trap + 8 - 1 LolMess 0x0078efda thread_loopfilter + 54 - 2 libsystem_pthread.dylib 0x2467985a _pthread_body + 138 - 3 libsystem_pthread.dylib 0x246797ce _pthread_start + 110 - 4 libsystem_pthread.dylib 0x24677724 thread_start + 8 - - Thread 24 Crashed: - 0 LolMess 0x00781380 vp8_copy_mem16x16_neon + 16 - 1 LolMess 0x0077f828 vp8_build_inter16x16_predictors_mb + 188 - 2 LolMess 0x0077fa76 vp8_build_inter_predictors_mb + 414 - 3 LolMess 0x007a9f00 vp8_decode_frame + 11088 - 4 LolMess 0x007ab088 vp8dx_receive_compressed_data + 276 - 5 LolMess 0x007a537e vp8_decode + 1114 - 6 LolMess 0x007776ae vpx_codec_decode + 62 - 7 LolMess 0x007363ca -[VPXDecoder decode:rawOutFrame:inFrameSize:frameInfo:] (VPXDecoder.m:105) - 8 LolMess 0x006f93ea -[RTPVideoHandler getDecodedVideoFrame:frameInfo:forStream:withOptions:] (RTPVideoHandler.m:1145) - 9 LolMess 0x006f95ba -[RTPVideoHandler getDecodedVideoFrame:] (RTPVideoHandler.m:1184) - 10 LolMess 0x00603b20 -[SCVideoCallController run:] (SCVideoCallController.m:896) - 11 Foundation 0x25159164 __NSThread__start__ + 1148 - 12 libsystem_pthread.dylib 0x2467985a _pthread_body + 138 - 13 libsystem_pthread.dylib 0x246797ce _pthread_start + 110 - 14 libsystem_pthread.dylib 0x24677724 thread_start + 8 - -Error Formulating Crash Report: - -Failed while requesting activity/breadcrumb diagnostics -Using C2callSdk in app",LQ -"I have 2 phone amsung s6 edge+ & Samsung note 4, Both have same same screen size 5.7 inch & same screen resolution 1440X2560 & both layout have xxxhdpi density. still same layout look different on both device. - -even top status bar & action bar is also look different on both device which is system genereated. - -any one can suggest some solution to have same UI on each and every android device. - -[Screen shot of same layout in both devices][1] - - - [1]: http://i.stack.imgur.com/AzMve.jpg -",LQ -"I hope for a ponimayeniye, a beginner. -I can't solve these two problems: - -1.Error:(20, 20) error: cannot find symbol variable mQuestionBank -2.Error:(20, 20) error: cannot find symbol variable mQuestionBank - - -Code: - - enter code here -`enter code here`import android.os.Bundle; -`enter code here`import android.support.v7.app.AppCompatActivity; -`enter code here`import android.widget.Button; -`enter code here`import android.widget.TextView; -`enter code here`import android.widget.Toast; - -public class QuizActivity extends AppCompatActivity { - - private android.widget.Button mTrueButton; - private android.widget.Button mFalseButton; - private Button mNextButton; - private TextView mQuestionTextView; - - private int mCurrentIndex = 0; - - private void updateQuestion() { - int question; - question = mQuestionBank[mCurrentIndex].getQuestion(); - mQuestionTextView.setText(question); - } - - private void checkAnswer(boolean userPressedTrue) { - boolean answerIsTrue = mQuestionBank[mCurrentIndex].isTrueQuestion(); - - int messageResId = 0; - - if (userPressedTrue == answerIsTrue) { - messageResId = R.string.correct_toast; - } else { - messageResId = R.string.incorrect_toast; - } - Toast.makeText(this, messageResId , Toast.LENGTH_SHORT) - .show(); - } - - private TrueFalse[] mQuesionBank = new TrueFalse[] { - new TrueFalse(R.string.question_1, false), - new TrueFalse(R.string.question_2, true), - new TrueFalse(R.string.question_3, false), - }; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_quiz); - - mQuestionTextView = (TextView)findViewById(R.id.question_text_view); - - mTrueButton = (android.widget.Button)findViewById(R.id.true_button); - mTrueButton.setOnClickListener(new android.view.View.OnClickListener() { - @Override - public void onClick(android.view.View v) { - checkAnswer(true); - } - }); - - mFalseButton = (android.widget.Button)findViewById(R.id.false_button); - mFalseButton.setOnClickListener(new android.view.View.OnClickListener() { - public void onClick(android.view.View v) { - checkAnswer(false); - } - }); - - mNextButton = (Button)findViewById(R.id.next_button); - mNextButton.setOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View v) { - mCurrentIndex = (mCurrentIndex + 1) % mQuestionBank.length; - updateQuestion(); - } - }); - - updateQuestion(); - - } -} - - - - -I will be very grateful to those who will intelligibly and it is clear explain! Thanks! -Sorry, if has issued something not so. First time ;)",LQ -"i've re installed my dev c++ and now i have problem that when i run the app of this simple code: - - #include - #include - using namespace std; - int main() - { - cout<<""hi mateen""; - return 0; - } -it shows me this: -[![enter image description here][1]][1] - - -how can i delete this?it wasnt showing before alwaays used to use - - getche() -but even when i use - - return 0; -the problem is still the same. - -thanks - - - [1]: http://i.stack.imgur.com/GNvTn.png",LQ -"I have an object that has functions like ""addString"" and ""addInteger"". These functions add data to a JSON string. At the end, the JSON string can be obtained and sent out. How can this be made easier by overloading subscript operators to do the following? - - jsonBuilder builder(); - - builder[ ""string_value"" ] = ""Hello""; - builder[ ""int_value"" ] = 5; - builder[ ""another_string"" ] = ""Thank you"";",LQ -"

    I make web applications using Ruby on Rails as my backend. I use React and Flux on the frontend, which is JavaScript. I can fully use the debugging tools I need. I simply add the line of code ""debugger"" anywhere in my app, so that execution stops there. I use byebug gem in Rails. When the ""debugger"" line of code is executed on backend code, the debugging happens on the command line; when it happens in JavaScript code, the debugging happens in Chrome Dev Tools. In other words, I can work very quickly to debug.

    - -

    What is the equivalent convenient debugging tool in Python? In other words, what should a person who can already program in general, and just wants to rapidly be able to debug in Python use? I am using Atom editor (like I use when I am making a web app).

    -",HQ -"

    Hey I try to savefig my plot, but it allways cuts off my title. -I think it is because of y=1.05 (to set a distance to the title). -I can not fix it. Is there a way to save the entire graph?

    - -
    time=round(t[time_period],0)
    -most_sensitive=sorted(most_sensitive)
    -plt.figure(figsize=(10, 5))
    -plt.suptitle(""Scatterplot ""+str(name)+"" , ""+r'$\Delta$'+""Output , Zeit= ""+str(time)+"" s"",fontsize=20,y=1.05)
    -figure_colour=[""bo"",""ro"",""go"",""yo""]
    -for i in [1,2,3,4]:
    -    ax=plt.subplot(2,2,i)
    -    plt.plot(parm_value[:,most_sensitive[i-1]], Outputdiff[:,most_sensitive[i-1]],figure_colour[i-1])
    -    ax.set_xlabel(name+""[""+str(most_sensitive[i-1])+""] in ""+str(unit))
    -    ax.set_ylabel(r'$\Delta$'+""Output"")
    -    lb, ub = ax.get_xlim( )
    -    ax.set_xticks( np.linspace(lb, ub, 4 ) )
    -    lb, ub = ax.get_ylim( )
    -    ax.set_yticks( np.linspace(lb, ub, 8 ) )
    -    ax.grid(True)
    -
    -
    -plt.tight_layout()
    -newpath = r'C:/Users/Tim_s/Desktop/Daten/'+str(name)+'/'+str(time)+'/'+'scatterplot'+'/'
    -if not os.path.exists(newpath):
    -    os.makedirs(newpath)
    -savefig(newpath+str(name)+'.png')
    -
    -",HQ -"

    I have a web application hosted under IIS. It is a data warehouse, and during its startup process it requires instantiating a large set of items in memory (takes roughly ~20 minutes to fully set up). Because this website is critical to our company, this system must be online 100% during the daytime, and only can be restarted during off-work hours.

    - -

    For some reason, this web application seems to be ""offline"" when there is no usage for some time. I know this because the cache is not fully instantiated when the website is visited. This is unacceptable.

    - -

    It is not clear to me why the website is shut off. The application pool is only set to recycle daily at 4:00 AM (it is 11 AM now).

    - -

    Are there other settings which I'm not aware of on the IIS part that causes it to shut down the website automatically?

    - -

    Addl Note: The website does not shut off automatically when running in IISExpress in Visual Studio. Only the production version hosted on IIS shuts off.

    - -

    Here's a screen of the Advanced Settings for the Application Pool the web site is running under. (Not sure if it's useful.)

    - -

    - -

    I'm on IIS 7.5, Server 2008 R2. It is an ASP.NET 5 Web App.

    -",HQ -"

    To convert HTML to jade is use this jade converter.

    - -

    When I enter the following HTML,

    - -
    <!doctype html>
    -<html class=""no-js"">
    -  <head>
    -    <meta charset=""utf-8"">
    -  </head>
    -  <body>
    -    <div class=""container"">
    -      <div class=""header"">
    -        <ul class=""nav nav-pills pull-right"">
    -          <li class=""active""><a href=""#"">Home</a></li>
    -          <li><a href=""#"">About</a></li>
    -          <li><a href=""#"">Contact</a></li>
    -        </ul>
    -      </div>
    -    </div>
    -</body>
    -</html>
    -
    - -

    the output is as follows:

    - -
    doctype html.no-js
    -head
    -    meta(charset='utf-8')
    -  |   
    -  body
    -    .container
    -      .header
    -        ul.nav.nav-pills.pull-right
    -          li.active
    -            a(href='#') Home
    -          |           
    -          li
    -            a(href='#') About
    -          |           
    -          li
    -            a(href='#') Contact
    -
    - -

    What is the purpose of the vertical bars (|) ?

    -",HQ -"

    I have a simple html page with angular js as follows:

    - -
        //Application name
    -    var app = angular.module(""myTmoApppdl"", []);
    -
    -    app.controller(""myCtrl"", function ($scope) {
    -        //Sample login function
    -        $scope.signin = function () {
    -            var formData =
    -                    {
    -                        email: $scope.email,
    -                        password: $scope.password
    -                    };
    -        console.log(""Form data is:"" + JSON.stringify(formData));
    -    };
    -});
    -
    - -

    HTML file:

    - -
    <html>
    -    <head>
    -        <link href=""bootstrap.min.css"" rel=""stylesheet"" type=""text/css""/>
    -    </head>
    -
    -    <body ng-app=""myTmoApppdl"" ng-controller=""myCtrl"">
    -        <div class=""container"">
    -            <div class=""form-group"">
    -                <form class=""form"" role=""form"" method=""post"" ng-submit=""signin()"">
    -                    <div class=""form-group col-md-6"">
    -                        <label class="""">Email address</label>
    -                        <input type=""email"" class=""form-control"" ng-model=""email"" id=""exampleInputEmail2"" placeholder=""Email address"" required>
    -                    </div>
    -                    <div class=""form-group col-md-6"">
    -                        <label class="""">Password</label>
    -                        <input type=""password"" class=""form-control"" id=""exampleInputPassword2"" ng-model=""password"" placeholder=""Password"" required>
    -                    </div>
    -                </form>
    -                <button type=""submit"" class=""btn btn-primary btn-block"">Sign in</button>
    -            </div>
    -        </div>
    -    </body>
    -
    -    <script src=""angular.min.js"" type=""text/javascript""></script>
    -
    -    <!--User defined JS files-->
    -    <script src=""app.js"" type=""text/javascript""></script>
    -    <script src=""jsonParsingService.js"" type=""text/javascript""></script>
    -</html>
    -
    - -

    I am new to node js. I have installed node js server in my system but I am not sure how to run a simple html file using node js?

    -",HQ -"

    I have an entity class as follows:

    - -
    package stuff;
    -
    -@Entity
    -class Thing {
    -
    -    @Id
    -    @GeneratedValue 
    -    private Long id;
    -
    -    @Basic
    -    @Enumerated
    -    private State state;
    -
    -    public enum State {
    -        AWESOME,
    -        LAME
    -    }
    -}
    -
    - -

    How can I select all Things with state AWESOME using JPQL and Hibernate?

    - -
    select t from Thing t where t.state=stuff.Thing.State.AWESOME
    -
    - -

    ...gives the error...

    - -
    org.hibernate.hql.internal.ast.QuerySyntaxException: Invalid path: 'stuff.Thing.State.AWESOME'
    -
    -",HQ -"

    I have a number of regular expressions regex1, regex2, ..., regexN combined into a single regex as regex1|regex2|...|regexN. I would like to reorder the component expressions so that the combined expression gives the longest possible match at the beginning of a given string.

    - -

    I believe this means reordering the regular expressions such that ""if regexK matches a prefix of regexL, then L < K"". If this is correct, is it possible to find out, in general, whether regexK can match a prefix of regexL?

    -",HQ -"Okay, So I have a database which holds the following values; Restaurant Name, Address, Town, County, Postcode, Tel, Email, Website and Rating. I have a search box that allows the user to search via Town, County or Postcode and then echo's out those relevant using the attached code. - -Problem is, my Website URL's when clicked just reload the same page the info is displayed on and not the actual website of the restaurants? I know this is going to be something silly!!!! - -Thanks - - - - - - - - -
    - - - -
    - - - -
    - - - -
    - - - -
    - - - -
    - - - -
    - - - -
    - - - - - -
    - - - -
    - - - - - ",LQ -"

    Hi have been scavenging the web for answers on how to do this but there was no direct answer. Does anyone know how I can find the version number of tkinter?

    -",HQ -"

    The Raspberry Pi 3 includes BLE support. I confirmed it works by

    - -

    sudo hcitool lescan

    - -

    which returned the MAC and BLE 'complete local name' for neighboring advertisers.

    - -

    How does one access this programmatically, in Java?

    -",HQ -"

    When I run rake db:migrate on my Rails project (3.2.22.2) I get pg_dump: invalid option -- i. Here's the full trace:

    - -
    Celluloid 0.17.1.1 is running in BACKPORTED mode. [ http://git.io/vJf3J ]
    -[DEPRECATION] `last_comment` is deprecated.  Please use `last_description` instead.
    -[DEPRECATION] `last_comment` is deprecated.  Please use `last_description` instead.
    -[DEPRECATION] `last_comment` is deprecated.  Please use `last_description` instead.
    -[DEPRECATION] `last_comment` is deprecated.  Please use `last_description` instead.
    -[DEPRECATION] `last_comment` is deprecated.  Please use `last_description` instead.
    -pg_dump: invalid option -- i
    -Try ""pg_dump --help"" for more information.
    -rake aborted!
    -Error dumping database
    -/Users/jasonswett/.rvm/gems/ruby-2.1.4@bm43/gems/activerecord-3.2.22.2/lib/active_record/railties/databases.rake:429:in `block (3 levels) in <top (required)>'
    -/Users/jasonswett/.rvm/gems/ruby-2.1.4@bm43/gems/activerecord-3.2.22.2/lib/active_record/railties/databases.rake:202:in `block (2 levels) in <top (required)>'
    -/Users/jasonswett/.rvm/gems/ruby-2.1.4@bm43/gems/activerecord-3.2.22.2/lib/active_record/railties/databases.rake:196:in `block (2 levels) in <top (required)>'
    -/Users/jasonswett/.rvm/gems/ruby-2.1.4@bm43/bin/ruby_executable_hooks:15:in `eval'
    -/Users/jasonswett/.rvm/gems/ruby-2.1.4@bm43/bin/ruby_executable_hooks:15:in `<main>'
    -Tasks: TOP => db:structure:dump
    -(See full trace by running task with --trace)
    -
    - -

    I notice that there's a bugfix in Rails pertaining to this issue. The bugfix seems not to have been applied to Rails versions < 4 since it's not a security fix, which makes sense.

    - -

    What I don't understand is what I'm supposed to do now. If there's a fix for 3.2.x, I haven't been able to find it yet. I guess if there's no fix for 3.2.x, I guess that means I have to upgrade to Rails 4.x, which seems a bit drastic. I doubt that's really the only solution. And why did the issue only recently pop up out of nowhere?

    - -

    Any suggestions are appreciated.

    -",HQ -"

    I'm writing a library which I will provide for 3rd parties to run a service worker on their site. It needs to intercept all network requests but I want to allow them to build their own service worker if they like.

    - -

    Can I have both service workers intercept the same fetches and provide some kind of priority/ordering between them? Alternatively is there some other pattern I should be using?

    - -

    Thanks

    -",HQ -"

    The program available on The Go Playground reads

    - -
    package main
    -
    -import ""fmt""
    -
    -func main() {
    -    var name string = nil
    -    fmt.Println(name)
    -}
    -
    - -

    and yields an error

    - -
    prog.go:6: cannot use nil as type string in assignment
    -
    - -

    I understand """" is the ""zero value"" for strings. I don't understand why I cannot assign nil to my string.

    -",HQ -"

    In node.js, it seems I run into the same 3 filenames to describe the main entry point to an app:

    - -
      -
    • When using the express-generator package, an app.js file is created as the main entry point for the resulting app.
    • -
    • When creating a new package.json file via npm init, one is prompted for the main entry point file. The default is given as index.js.
    • -
    • In some programs I have seen, server.js serves as the main entry point as well.
    • -
    - -

    Other times, still, it seems as though there are subtle differences in their usage. For example, this node app directory structure uses index.js and server.js in different contexts:

    - -
    app
    -  |- modules
    -  |    |- moduleA
    -  |    |    |- controllers
    -  |    |    |    |- controllerA.js
    -  |    |    |    +- controllerB.js
    -  |    |    |- services
    -  |    |    |    +- someService.js
    -  |    |    +- index.js <--------------
    -  |    +- index.js <-------------------
    -  |- middleware.js
    -  +- index.js <------------------------
    -config
    -  +- index.js <------------------------
    -web
    -  |- css
    -  |- js
    -server.js <----------------------------
    -
    - -

    What are the differences, if any, between these three names?

    -",HQ -"

    Can tmux scroll speed (using a mouse wheel or touch pad) be configured?

    - -

    Tmux 2.1 sort of broke scrolling (depending on your configuration), forcing me to update my config. I did that a few weeks ago.

    - -

    But now I think tmux scrolls* slower than it used to. I think I read you can configure the scroll speed but I can't find any mention of that anywhere now.

    - -

    * Scrolling with a mouse wheel that is. (I'm actually using a Macbook trackpad but I think it's equivalent to a mouse wheel.)

    - -

    I know you can do 10C-u (with vi key bindings) to jump up 10 pages, but I'd also like to be able to just scroll fast with the mouse.

    - -

    I think this is all the relevant config I personally have currently:

    - -
    # Use the mouse to select panes, select windows (click window tabs), resize
    -# panes, and scroll in copy mode.
    -# Requires tmux version >= 2.1 (older versions have different option names for mouse)
    -set -g mouse on
    -
    -# No need to enter copy-mode to start scrolling.
    -# From github.com/tmux/tmux/issues/145
    -# Requires tmux version >= 2.1 (older versions have different solutions)
    -bind -n WheelUpPane if-shell -F -t = ""#{mouse_any_flag}"" ""send-keys -M"" ""if -Ft= '#{pane_in_mode}' 'send-keys -M' 'copy-mode -e'""
    -
    -",HQ -"

    I am using ionic framework and angularjs I use chrome for viewing my logs but here i am doing a login page I am trying to post the user entered data to serve but i am getting this error like .

    - -
     OPTIONS http://aflaree.com/qrcodeservice/Service1.svc/login 
    -
    - -

    and this one is next error XMLHttpRequest cannot load http://aflaree.com/qrcodeservice/Service1.svc/login Response for preflight has invalid HTTP status code 405 - after reading some blog i figure there is a CORS extention from from which allows ajax request i tried that also but i am not able to find why this two error is appearing. here is my code

    - -

    https://plnkr.co/edit/Dz0aFsLqoQcnCxht00z3?p=preview

    - -

    my code work fine in device but I am getting error in chrome if any one knows why please help me

    -",HQ -"Hello am kindly asking on how to generate time with a 5 seconds interval where the user selects a date then a specific time interval maybe from 11:00:00 to 12:00:00 then the program generates a record like this - - 1. date time random number - 2. 23/01/2016 11:01:02 030 - 3. 23/01/2016 11:02:07 035 - 4. 23/01/2016 11:02:12 054 - 5. 23/01/2016 11:02:17 062 - 6. 23/01/2016 11:02:22 058 - 7. 23/01/2016 11:02:27 056 - 8. 23/01/2016 12:00:01 059 - - After it has generated it saves generated values in a plain text file.",LQ -"

    I need to disable the cache control headers in my Spring Security conf.

    - -

    According to the documentation a simple http.headers.disable() should do it, but I still see the

    - -
    Cache-Control:no-cache, no-store, max-age=0, must-revalidate
    -Expires:0
    -Pragma:no-cache
    -
    - -

    headers in responses.

    - -

    My current security config is:

    - -
    http.antMatcher(""/myPath/**"") // ""myPath"" is of course not the real path
    -    .headers().disable()
    -    .authorizeRequests()
    -     // ... abbreviated
    -    .anyRequest().authenticated();
    -
    - -

    Things I've tried so far:

    - -

    application.properties

    - -

    I added the security.headers.cache=false line, but that made no difference.

    - -

    Using a filter

    - -

    I tried the following filter:

    - -
    @Override
    -public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
    -  chain.doFilter(request, new HttpServletResponseWrapper((HttpServletResponse) response) {
    -      @Override
    -      public void setHeader(String name, String value) {
    -        if (name.equalsIgnoreCase(""Cache-Control"")) {
    -          value = """";
    -        } else if (name.equalsIgnoreCase(""Expires"")) {
    -          value = """";
    -        } else if (name.equalsIgnoreCase(""Pragma"")) {
    -          value = """";
    -        }
    -        super.setHeader(name, value);
    -      }
    -  });
    -}
    -
    - -

    After adding logging I saw that this filter only writes the X-XSS-Protection header, all the cache headers are written somewhere later and this filter doesn't have access to ""override"" them. This happens even if I add this filter at the last position of the security filter chain.

    - -

    Using an interceptor

    - -

    I tried the following interceptor:

    - -
    @Override
    -public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
    -    String requestUri = request.getRequestURI();
    -    response.setHeader(""Cache-Control"", ""max-age=3600"");
    -    response.setHeader(""Expires"", ""3600"");
    -    response.setHeader(""Pragma"", """");
    -}
    -
    - -

    This (quite predictably) just added the headers, meaning that the original no-cache headers still appear in addition to the ones added by the interceptor.

    - -

    I'm at my wits end here. How do I get rid of the cache control header set by Spring security?

    -",HQ -"How to install drupal7 on IBM blue mix ? I tried to install using cf but not able to connect with mysql or any db. -",LQ -"I would like to know how the amazon aws ec2 charge for EBS and the bandwidth for windows and I want to know the how many tomcat web servers and mysql servers can be placed in once ec2 server. - -Thanks.",LQ -"

    Terribly new to spark and hive and big data and scala and all. I'm trying to write a simple function that takes an sqlContext, loads a csv file from s3 and returns a DataFrame. The problem is that this particular csv uses the ^A (i.e. \001) character as the delimiter and the dataset is huge so I can't just do a ""s/\001/,/g"" on it. Besides, the fields might contain commas or other characters I might use as a delimiter.

    - -

    I know that the spark-csv package that I'm using has a delimiter option, but I don't know how to set it so that it will read \001 as one character and not something like an escaped 0, 0 and 1. Perhaps I should use hiveContext or something?

    -",HQ -"

    How do i execute the following scenario in the browser with RxJs:

    - -
      -
    • submit data to queue for processing
    • -
    • get back the job id
    • -
    • poll another endpoint every 1s until result is available or 60seconds have passed(then fail)
    • -
    - -

    Intermediate solution that i've come up with:

    - -
     Rx.Observable
    -    .fromPromise(submitJobToQueue(jobData))
    -    .flatMap(jobQueueData => 
    -      Rx.Observable
    -            .interval(1000)
    -            .delay(5000)
    -            .map(_ => jobQueueData.jobId)
    -            .take(55)
    -    )
    -    .flatMap(jobId => Rx.Observable.fromPromise(pollQueueForResult(jobId)))
    -    .filter(result => result.completed)
    -    .subscribe(
    -      result => console.log('Result', result),
    -      error =>  console.log('Error', error)
    -    );
    -
    - -
      -
    1. Is there a way without intermediate variables to stop the timer once the data arrives or error occurs? I now i could introduce new observable and then use takeUntil
    2. -
    3. Is flatMap usage here semantically correct? Maybe this whole thing should be rewritten and not chained with flatMap ?
    4. -
    -",HQ -"

    I have a JPEG image stored in a Byte[] that I want to resize. This is my code:

    - -
    public async Task<byte[]> ResizeImage(byte[] imageData, int reqWidth, int reqHeight, int quality)
    -{
    -
    -    var memStream = new MemoryStream(imageData);
    -
    -    IRandomAccessStream imageStream = memStream.AsRandomAccessStream();
    -    var decoder = await BitmapDecoder.CreateAsync(imageStream);
    -    if (decoder.PixelHeight > reqHeight || decoder.PixelWidth > reqWidth)
    -    {
    -        using (imageStream)
    -        {
    -            var resizedStream = new InMemoryRandomAccessStream();
    -
    -            BitmapEncoder encoder = await BitmapEncoder.CreateForTranscodingAsync(resizedStream, decoder);
    -            double widthRatio = (double) reqWidth/decoder.PixelWidth;
    -            double heightRatio = (double) reqHeight/decoder.PixelHeight;
    -
    -            double scaleRatio = Math.Min(widthRatio, heightRatio);
    -
    -            if (reqWidth == 0)
    -                scaleRatio = heightRatio;
    -
    -            if (reqHeight == 0)
    -                scaleRatio = widthRatio;
    -
    -            uint aspectHeight = (uint) Math.Floor(decoder.PixelHeight*scaleRatio);
    -            uint aspectWidth = (uint) Math.Floor(decoder.PixelWidth*scaleRatio);
    -
    -            encoder.BitmapTransform.InterpolationMode = BitmapInterpolationMode.Linear;
    -
    -            encoder.BitmapTransform.ScaledHeight = aspectHeight;
    -            encoder.BitmapTransform.ScaledWidth = aspectWidth;
    -
    -            await encoder.FlushAsync();
    -            resizedStream.Seek(0);
    -            var outBuffer = new byte[resizedStream.Size];
    -            uint x =  await resizedStream.WriteAsync(outBuffer.AsBuffer());
    -            return outBuffer;
    -        }
    -    }
    -    return imageData;
    -}
    -
    - -

    The problem is that outBuffer just contains zeros although the correct number of Bytes have been written.

    -",HQ -"

    I noticed strange behaviour during working with Swift projects. I can't explain it other than Swift sometimes calls wrong method. It is very rare and even adding blank lines to the code could lead that this error is gone.

    - -

    Let me explain in screenshots what I mean, next I use CoreData example of SwiftDDP project that can be found on Github, but such issues I was able to see in my own projects.

    - -

    Here we at Todos.swift:74 where you can see breakpoint, I expect that next call should be getId() method of MeteorClient class because it was already instantiated:

    - -

    - -

    After Step Into as you can see the ping() of the same instance is called:

    - -

    - -

    The next two steps into lead to EXC_BAD_ACCESS exception:

    - -

    - -

    In my project I saw this issue fairly often before I stopped using singletons, so it could be related to Swift static memory usage or I don't understand something that is not surprising as I have little experience with multithreading and memory management.

    - -

    My environment is:

    - -
      -
    • AppCode OC-145.184.11
    • -
    • Xcode Version 7.2.1 (7C1002)
    • -
    • iOS 9.2 SDK
    • -
    • Apple Swift version 2.1.1 (swiftlang-700.1.101.15 clang-700.1.81)
    • -
    - -

    NOTE: Here I use AppCode but the same behavior I was able see in Xcode, and even more if the same issue that reproduces in Xcode could not reproduce in AppCode and vice versa.

    - -

    Would be thankful if someone can explain this strange behaviour to me.

    - -

    Thanks!

    -",HQ -"Example - -[enter image description here][1] - - - [1]: http://i.stack.imgur.com/voqxF.png",LQ -"

    I am using Spark SQL for reading parquet and writing parquet file.

    - -

    But some cases,i need to write the DataFrame as text file instead of Json or Parquet.

    - -

    Is there any default methods supported or i have to convert that DataFrame to RDD then use saveAsTextFile() method?

    -",HQ -"

    Up to recent version of Docker (v1.10), we were thought that we can use DOC: data-only containers. So I would create such DOC (based on e.g. busybox) and use --volumes-from to link it to my container. You can still read about this in Docker documentation.

    - -

    With new version of docker, it is said that instead of DOC we should use named volumes. Here is an example of docker-compose.yml:

    - -
    version: '2'    
    -services:
    -  elasticsearch:
    -    image: elasticsearch:2.2.0
    -    command: elasticsearch -Des.network.host=0.0.0.0
    -    ports:
    -      - ""9201:9200""
    -    volumes:
    -      - ""es-data:/usr/share/elasticsearch/data""
    -
    -volumes:    
    -  es-data:
    -
    - -

    Here we created and use named volume es-data.

    - -

    There is still not much documentation on this new feature. I am asking:

    - -
      -
    • Can we replace DOC with named containers? How long volume is persisted? What if I remove the container that is using it?
    • -
    • How can we e.g. backup now? Previously, I could docker run --rm --volumes-from es-data ... and then tar it.
    • -
    -",HQ -"I am making an application and using Rest API to get and send data to server .now i want to send different type of data as image and string and integer and using POST method .So please write code for this. - -Thank you.",LQ -"

    Here is what I am trying to do: -

    - -

    Note: The screenshot is taken from an earlier version of iOS

    - -

    What I have been able to achieve: -

    - -

    Code:

    - -
     override func viewWillAppear(animated: Bool) {
    -    // Creates image of the Button
    -    let imageCameraButton: UIImage! = UIImage(named: ""cameraIcon"")
    -
    -    // Creates a Button
    -    let cameraButton = UIButton(type: .Custom)
    -    // Sets width and height to the Button
    -    cameraButton.frame = CGRectMake(0.0, 0.0, imageCameraButton.size.width, imageCameraButton.size.height);
    -    // Sets image to the Button
    -    cameraButton.setBackgroundImage(imageCameraButton, forState: .Normal)
    -    // Sets the center of the Button to the center of the TabBar
    -    cameraButton.center = self.tabBar.center
    -    // Sets an action to the Button
    -    cameraButton.addTarget(self, action: ""doSomething"", forControlEvents: .TouchUpInside)
    -
    -    // Adds the Button to the view
    -    self.view.addSubview(cameraButton)
    -}
    -
    - -

    I did try to create a rounded button in the normal way, but this was the result:

    - -

    - -

    Code Snippet for rounded button:

    - -
    //Creation of Ronded Button
    -    cameraButton.layer.cornerRadius = cameraButton.frame.size.width/2
    -    cameraButton.clipsToBounds = true
    -
    -",HQ -"

    I have this simple Component

    - -
    import {Component} from 'angular2/core';
    -import {RouterLink, RouteParams} from 'angular2/router';
    -import {Http, Response, Headers} from 'angular2/http';
    -import {User} from '../../models/user';
    -import 'rxjs/add/operator/map';
    -
    -
    -@Component({
    -    template: `
    -        <h1>{{user.name}} {{user.surname}}</h1>
    -    `,
    -    directives: [RouterLink],
    -})
    -export class UserComponent {
    -
    -    user: User;
    -
    -    constructor(private routeParams: RouteParams,
    -        public http: Http) {
    -            this.user = new User();
    -            this.http.get('http://localhost:3000/user/' + this.routeParams.get('id'))
    -                .map((res: Response) => res.json())
    -                .subscribe((user: User) => this.user = user);
    -        console.log(this.user);
    -    }
    -}
    -
    - -

    Why does subscribe not cast the response into a full User object. When I am logging the user variable my console say User {_id: undefined, name: undefined, surname: undefined, email: undefined}. But nevertheless binding to .name and .surname in the view is working..

    - -

    What happens here? Where is the user actually stored?

    -",HQ -"Here is an short example what I have in my BDD : - - Ref | NameContact | CODE - SF005 | Toto | SF - SF006 | Titi | BC - SF005 | Toto | SF - SF007 | Foo | FB - SF006 | Bar | BC - SF005 | Tata | SF - SF005 | Tata | SF - -I like to get this : - - Ref | NameContact |CODE - SF005 | Toto | SF - SF005 | Tata | SF - -I've tried to use Distinct but it doesn't work correctly but it'work when i use Group By with all named column with MAX() but i've many columns and the query is very big. There is a better solution ? - - SELECT MAX(Ref),NameContact,Code FROM MyTable WHERE CODE = 'SF' GROUP BY NameContact,Code",LQ -"I have datetime field as -
    -03/04/2016 08:00:00 AM
    -03/15/2016 04:00:00 AM
    -
    -I want to keep it as date time but make all the time to 12 am.So the result should be -
    -03/04/2016 12:00:00 AM
    -03/15/2016 12:00:00 AM
    -
    - -No t-sql or declaring variables. Please advice. -",LQ -"

    I set my GOPATH to

    - -
    /Users/me/dev/go
    -
    - -

    and I have

    - -
    /Users/me/dev/go/src/client1
    -/Users/me/dev/go/src/client2
    -/Users/me/dev/go/src/client3
    -
    - -

    and also

    - -
    /Users/me/dev/client1/rails_project
    -/Users/me/dev/client2/php_project
    -etc.
    -
    - -

    I don't like how in my root dev folder I'm forced to have this general ""go"" dir that holds many different client's go projects.

    -",HQ -"

    I have spark dataframe with whitespaces in some of column names, which has to be replaced with underscore.

    - -

    I know a single column can be renamed using withColumnRenamed() in sparkSQL, but to rename 'n' number of columns, this function has to chained 'n' times (to my knowledge).

    - -

    To automate this, i have tried:

    - -
    val old_names = df.columns()        // contains array of old column names
    -
    -val new_names = old_names.map { x => 
    -   if(x.contains("" "") == true) 
    -      x.replaceAll(""\\s"",""_"") 
    -   else x 
    -}                    // array of new column names with removed whitespace.
    -
    - -

    Now, how to replace df's header with new_names

    -",HQ -"

    How can I make a responsive grid in Ionic 2? Ionic 1 supported reserved classes like responsive-md or responsive-sm that made grids responsive, but they don't seem to work in Ionic 2.

    - -

    In my case I have an <ion-row> with three <ion-col>. I would like the columns to drop below each other when the display width drops below a threshold. Is it possible to do this with Ionic 2?

    -",HQ -"In my htaccess file I have added a rule to redirect url/abc/xyz to url/abc/xyz.php so now even when I try to access url/abc.php it redirects me to url/abc/ - -Help me with this.. My code now : - - - # To externally redirect /dir/foo.php to /dir/foo - RewriteCond %{THE_REQUEST} ^GET\s([^.]+)\.php\s [NC] - RewriteRule ^ %1 [R,L] - - ## To internally forward /dir/foo to /dir/foo.php - RewriteCond %{REQUEST_FILENAME} !-d - RewriteCond %{REQUEST_FILENAME}.php -f - RewriteCond %{QUERY_STRING} ^$ - RewriteRule ^(.*?)/?$ $1.php [L] - -",LQ -"

    I have a pandas data frame similar to:

    - -
    ColA ColB
    -1    1
    -1    1
    -1    1
    -1    2
    -1    2
    -2    1
    -3    2
    -
    - -

    I want an output that has the same function as Counter. I need to know how many time each row appears (with all of the columns being the same.

    - -

    In this case the proper output would be:

    - -
    ColA ColB Count
    -1    1    3
    -1    2    2
    -2    1    1
    -3    2    1
    -
    - -

    I have tried something of the sort:

    - -
    df.groupby(['ColA','ColB']).ColA.count()
    -
    - -

    but this gives me some ugly output I am having trouble formatting

    -",HQ -"how to call a bootstrap class into java script using HTML DOM getElementsByClassName() Method - -for eg:- - - document.getElementByClass=(""has-error""); - -I need a the text box to turn into green if the data is valid and to red if the data is in valid using boot strap class - -**has-success and has-error**",LQ -"I got this error when I tried to capture image using my pc webcam. I am new to matlab. How can I fix this error? - -This is my code, - - obj =imaq.VideoDevice('dcam', 1, 'YUYV_320x240','ROI', [1 1 320 240]); set(obj,'ReturnedColorSpace', 'rgb'); figure('menubar','none','tag','webcam'); - - ->> imaqhwinfo - -ans = - - InstalledAdaptors: {'dcam'} - MATLABVersion: '8.6 (R2015b)' - ToolboxName: 'Image Acquisition Toolbox' - ToolboxVersion: '4.10 (R2015b)' - ->> webcamlist - -ans = - - 'Integrated Webcam' - - - -",LQ -"

    I use PSR-2 for code styling my code.

    - -

    When I inspect a file using Codesniffer most of the times I get the following error.

    - -
    332 | ERROR   | [x] Expected 1 newline at end of file; 0 found
    -
    - -

    It's obvious how to fix this. What I need to know is if PhpStorm has a way to add the 1 newline at end of file

    - -

    I already loaded the predefined style from Settings -> Editor -> Code Style -> PHP -> Set From -> PSR-1/PSR-2 and also used the Reformat Code to change the CS accordingly.

    - -

    Everything is fixed except from the new line. Am I missing something?

    -",HQ -"

    I am trying to re-arrange a DataFrame that I automatically read in from a json using Pandas. I've searched but have had no success.

    - -

    I have the following json (saved as a string for copy/paste convenience) with a bunch of json objects/dictionarys under the tag 'value'

    - -
    json_str = '''{""preferred_timestamp"": ""internal_timestamp"",
    -    ""internal_timestamp"": 3606765503.684,
    -    ""stream_name"": ""ctdpf_j_cspp_instrument"",
    -    ""values"": [{
    -        ""value_id"": ""temperature"",
    -        ""value"": 9.8319
    -    }, {
    -        ""value_id"": ""conductivity"",
    -        ""value"": 3.58847
    -    }, {
    -        ""value_id"": ""pressure"",
    -        ""value"": 22.963
    -    }]
    -}'''
    -
    - -

    I use the function 'json_normalize' in order to load the json into a flattened Pandas dataframe.

    - -
    >>> from pandas.io.json import json_normalize
    ->>> import simplejson as json
    ->>> df = json_normalize(json.loads(json_str), 'values', ['preferred_timestamp', 'stream_name', 'internal_timestamp'])
    ->>> df
    -      value      value_id preferred_timestamp  internal_timestamp  \
    -0   9.83190   temperature  internal_timestamp        3.606766e+09   
    -1   3.58847  conductivity  internal_timestamp        3.606766e+09   
    -2  22.96300      pressure  internal_timestamp        3.606766e+09   
    -3  32.89470      salinity  internal_timestamp        3.606766e+09   
    -
    -               stream_name  
    -0  ctdpf_j_cspp_instrument  
    -1  ctdpf_j_cspp_instrument  
    -2  ctdpf_j_cspp_instrument  
    -3  ctdpf_j_cspp_instrument  
    -
    - -

    Here is where I am stuck. I want to take the value and value_id columns and pivot these into new columns based off of value_id.

    - -

    I want the dataframe to look like the following:

    - -
    stream_name              preferred_timestamp  internal_timestamp  conductivity  pressure  salinity  temperature    
    -ctdpf_j_cspp_instrument  internal_timestamp   3.606766e+09        3.58847       22.96300  32.89470  9.83190
    -
    - -

    I've tried both the pivot and pivot_table Pandas functions and even tried to manually pivot the tables by using 'set_index' and 'stack' but it's not quite how I want it.

    - -
    >>> df.pivot_table(values='value', index=['stream_name', 'preferred_timestamp', 'internal_timestamp', 'value_id'])
    -stream_name              preferred_timestamp  internal_timestamp  value_id    
    -ctdpf_j_cspp_instrument  internal_timestamp   3.606766e+09        conductivity     3.58847
    -                                                                  pressure        22.96300
    -                                                                  salinity        32.89470
    -                                                                  temperature      9.83190
    -Name: value, dtype: float64
    -
    - -

    This is close, but it didn't seem to pivot the values in 'value_id' into separate columns.

    - -

    and

    - -
    >>> df.pivot('stream_name', 'value_id', 'value')
    -value_id                 conductivity  pressure  salinity  temperature
    -stream_name                                                           
    -ctdpf_j_cspp_instrument       3.58847    22.963   32.8947       9.8319
    -
    - -

    Close again, but it lacks the other columns that I want to be associated with this line.

    - -

    I'm stuck here. Is there an elegant way of doing this or should I split the DataFrames and re-merge them to how I want?

    -",HQ -"i can not able to place text field in matrix layout please check below code and please suggest how to check xml code errors? -evary time i am stucking in design part with xml code please suggest me how to overcome that. - - - enter code here - - - - - - - - - - - - - - - - - - - - - - -thanks in advance, -sriman.",LQ -"

    chrome dev tools - displays some http header with a leading : (not sure why it does with some and not others).

    - -

    One of these is the http header authority which is displays as:

    - -

    authority:api.somedomain.com

    - -

    However this is listed in the list of http headers on Wikipedia. Is this a new HTTP2 header or is possible to define any new request field in the headers -or are these fixed?

    -",HQ -"

    I am trying to use nightwatch.js to select an option from a select box.

    - -

    I have the code:

    - -
        this.browser.click('select[name=""month""]')
    -        .pause(1000)
    -        .click('option[value=""3""]')
    -        .click('select[name=""day""]')
    -        .pause(1000)
    -        .click('option[value=""6""]')
    -        .click('select[name=""year""]')
    -        .pause(1000)
    -        .click('option[value=""1989""]');
    -
    - -

    It selects the correct month, year on the page but not the day. Here's the HTML for the select box for the day:

    - -
    <select aria-label=""Day"" id=""day"" name=""day"" data-validatorGroup=""bday"" data-component=""selectbox"">
    -    <option selected=""selected"" value="""" aria-label=""Date of birth"">
    -        Day</option>
    -    <option value=""1"">1</option>
    -            <option value=""2"">2</option>
    -            <option value=""3"">3</option>
    -            <option value=""4"">4</option>
    -            <option value=""5"">5</option>
    -            <option value=""6"">6</option>
    -            <option value=""7"">7</option>
    -            <option value=""8"">8</option>
    -            <option value=""9"">9</option>
    -            <option value=""10"">10</option>
    -            <option value=""11"">11</option>
    -            <option value=""12"">12</option>
    -            <option value=""13"">13</option>
    -            <option value=""14"">14</option>
    -            <option value=""15"">15</option>
    -            <option value=""16"">16</option>
    -            <option value=""17"">17</option>
    -            <option value=""18"">18</option>
    -            <option value=""19"">19</option>
    -            <option value=""20"">20</option>
    -            <option value=""21"">21</option>
    -            <option value=""22"">22</option>
    -            <option value=""23"">23</option>
    -            <option value=""24"">24</option>
    -            <option value=""25"">25</option>
    -            <option value=""26"">26</option>
    -            <option value=""27"">27</option>
    -            <option value=""28"">28</option>
    -            <option value=""29"">29</option>
    -            <option value=""30"">30</option>
    -            <option value=""31"">31</option>
    -         </select>
    -
    - -

    Does anyone know why its not selecting the proper day?

    -",HQ -"I have to perform the exchange of two tables and it's making my system unavailable for 20 minutes(are many data). - -My sample code: - - query = ""DROP TABLE MY_TABLE; ""; - query += ""EXEC sp_rename MY_TABLE_TEMP, MY_TABLE; ""; - query += ""ALTER TABLE MY_TABLE ADD CONSTRAINT PK_MY_TABLE PRIMARY KEY CLUSTERED (ID ) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]""; - - -I wonder if it's like not to leave as Unavailable.",LQ -"

    So, I'm new to the MEAN stack, and I've hit a wall trying to seed MongoDB. I'm using Mongoose to communicate with the database, and there's a bunch of documentation suggesting I should be able to seed using populated JSON files.

    - -

    What I've tried:

    - -

    node-mongo-seed; Pretty straight forward, but consistently throws errors on the end of arrays. (Perhaps the missing bson module is at fault?)

    - -
    { [Error: Cannot find module '../build/Release/bson'] code: 'MODULE_NOT_FOUND' }
    -js-bson: Failed to load c++ bson extension, using pure JS version
    -Seeding files from directory /Users/Antwisted/code/wdi/MEAN/seeds
    -----------------------
    -Seeding collection locations
    -err =  [SyntaxError: /Users/Antwisted/code/wdi/MEAN/seeds/locations.json: Unexpected token {]
    -
    - -

    mongoose-seed; Also pretty straight forward, basically puts the JSON objects into a variable before exporting to the database. Promising, but... more errors...

    - -
    Successfully initialized mongoose-seed
    -[ 'app/models/locationsModel.js' ]
    -Locations collection cleared
    -Error creating document [0] of Location model
    -Error: Location validation failed
    -Error creating document [1] of Location model
    -Error: Location validation failed
    -Error creating document [2] of Location model
    -Error: Location validation failed...
    -
    - -

    So, my thoughts were that it was probably a syntax error within the JSON structure, but playing around with that has not yielded any real solutions (or maybe I'm missing it?). Sample of my JSON:

    - -
    {
    -    {
    -        ""header"": ""Dan's Place"",
    -        ""rating"": 3,
    -        ""address"": ""125 High Street, New York, 10001"",
    -        ""cord1"": -73.0812,
    -        ""cord2"": 40.8732,
    -        ""attributes"": [""Hot drinks"", ""Food"", ""Premium wifi""],
    -        ""hours"": [
    -            {
    -                ""days"": ""Monday - Friday"",
    -                ""hours"": ""7:00am - 7:00pm"",
    -                ""closed"": false
    -            },
    -            {
    -                ""days"": ""Saturday"",
    -                ""hours"": ""8:00am - 5:00pm"",
    -                ""closed"": false
    -            },
    -            {
    -                ""days"": ""Sunday"",
    -                ""closed"": true
    -            }
    -        ],
    -        ""reviews"": [
    -            {
    -                ""rating"": 4,
    -                ""id"": ObjectId(),
    -                ""author"": ""Philly B."",
    -                ""timestamp"": ""new Date('Feb 3, 2016')"",
    -                ""body"": ""It was fine, but coffee was a bit dull. Nice atmosphere.""
    -            },
    -            {
    -                ""rating"": 3,
    -                ""id"": ObjectId(),
    -                ""author"": ""Tom B."",
    -                ""timestamp"": ""new Date('Feb 23, 2016')"",
    -                ""body"": ""I asked for her number. She said no.""
    -            }
    -        ]
    -    },
    -    {
    -        ""header"": ""Jared's Jive"",
    -        ""rating"": 5,
    -        ""address"": ""747 Fly Court, New York, 10001"",
    -        ""cord1"": -73.0812,
    -        ""cord2"": 40.8732,
    -        ""attributes"": [""Live Music"", ""Rooftop Bar"", ""2 Floors""],
    -        ""hours"": [
    -            {
    -                ""days"": ""Monday - Friday"",
    -                ""hours"": ""7:00am - 7:00pm"",
    -                ""closed"": false
    -            },
    -            {
    -                ""days"": ""Saturday"",
    -                ""hours"": ""8:00am - 5:00pm"",
    -                ""closed"": false
    -            },
    -            {
    -                ""days"": ""Sunday"",
    -                ""closed"": true
    -            }
    -        ],
    -        ""reviews"": [
    -            {
    -                ""rating"": 5,
    -                ""id"": ObjectId(),
    -                ""author"": ""Jacob G."",
    -                ""timestamp"": ""new Date('Feb 3, 2016')"",
    -                ""body"": ""Whoa! The music here is wicked good. Definitely going again.""
    -            },
    -            {
    -                ""rating"": 4,
    -                ""id"": ObjectId(),
    -                ""author"": ""Tom B."",
    -                ""timestamp"": ""new Date('Feb 23, 2016')"",
    -                ""body"": ""I asked to play her a tune. She said no.""
    -            }
    -        ]
    -    }
    -}
    -
    - -

    Additionally, I'm not entirely sure how to specify subdocuments within the JSON (assuming I can get the seeding process to work correctly in the first place).

    - -

    Here's my model:

    - -
    var mongoose = require('mongoose');
    -
    -var subHoursSchema = new mongoose.Schema({
    -    days: {type: String, required: true},
    -    opening: String,
    -    closing: String,
    -    closed: {type: Boolean, required: true}
    -});
    -
    -var subReviewsSchema = new mongoose.Schema({
    -    rating: {type: Number, required: true, min: 0, max: 5},
    -    author: String,
    -    timestamp: {type: Date, ""default"": Date.now},
    -    body: String
    -}); 
    -
    -var locationSchema = new mongoose.Schema({
    -    name: {type: String, required: true},
    -    address: String,
    -    rating: {type: Number, ""default"": 0, min: 0, max: 5}, 
    -    attributes: [String],
    -    coordinates: {type: [Number], index: '2dsphere'},
    -    openHours: [subHoursSchema],
    -    reviews: [subReviewsSchema]
    -});
    -
    -mongoose.model('Location', locationSchema);
    -
    - -

    Any insight on how to navigate these issues would be greatly appreciated. Thanks!

    -",HQ -"This code working in Opera, problem is IE end Android. -Use hiden() javascript. First Option use value Mazda (mark) second shows us 'opera': only all models MAZDA (is good). 'IE': Shows us all model and all optgroup. Maybe is in JS problem? - - $(document).ready(function() { - $('#model optgroup').hide();enter code here - $('#Marka').change(function() { - var text = $(this).val(); - $('#model optgroup').hide(); - $('#model').val(''); - $('#model optgroup[label=""' + text + '""]').css({ - 'display': 'block' - }); - - - }); - }); - - function usun() { - document.getElementById(""first"").style.display = ""none""; - - } - -[https://jsfiddle.net/p051m5u6/][1] - - - [1]: https://jsfiddle.net/p051m5u6/",LQ -"

    Is there any scenario in which AtomicInteger.accumulateAndGet() can't be replaced with AtomicInteger.updateAndGet(), or is it just a convenience for method references?

    - -

    Here's a simple example where I don't see any functional difference:

    - -
    AtomicInteger i = new AtomicInteger();
    -i.accumulateAndGet(5, Math::max);
    -i.updateAndGet(x -> Math.max(x, 5));
    -
    - -

    Obviously, the same goes for getAndUpdate() and getAndAccumulate().

    -",HQ -"

    we are trying to come up with a solution to have AWS S3 to host and distribute our Python packages.

    - -

    Basically what we want to do is using ""python3 setup.py bdist_wheel"" to create a wheel. Upload it to S3. Then any server or any machine can do ""pip install $http://path/on/s3"". (including a virtualenv in AWS lambda) -(We've looked into Pypicloud and thought it's an overkill.)

    - -

    Creating package and installing from S3 work fine. There is only one issue here: we will release new code and give them different versions. If we host our code on Pypi, you can upgrade some packages to their newest version by calling ""pip install package --upgrade"".

    - -

    But if you host your packages on S3, how do you let pip know there's a newer version exists? How do you roll back to an older version by simply giving pip the version number? Is there a way to let pip know where to look for different version of wheels on S3?

    -",HQ -"Good day, I have this query: - - - SELECT * FROM table - WHERE ( name = '%alex%' - OR address = '%alex%' - OR lastname = '%alex%' - ) AND id = '%alex%' - AND email = '%alex%' - -How would I go about converting this SQL query using Laravel Query Builder? Thanks in advance.",LQ -"I need to make multiple objects of same element. I cant figure it out that which should I use between [] and {} to make my data structure. - -I am not clear about the difference between [] and {}. ",LQ -"This is the section I use to add users. - -prepare($sql); - - $stmt->bindValue(':name', $_POST['name']); - $stmt->bindValue(':email', $_POST['email']); - $stmt->bindValue(':password', password_hash($_POST['password'], PASSWORD_BCRYPT)); - - if( $stmt->execute() ): - $message = 'Successfully created new user'; - else: - $message = 'Sorry there must have been an issue creating your account'; - endif; - - endif; - - ?> - - Thanks in advanced. Php NewBie",LQ -"Sorry for my bad english :) - -1) Sidebar moves to the right (Start Left position = -270, End position = 0); - -2) Header contains logo
    with position:absolute - -How to to move logo div to left if sidebar above the logo? - -[What I need][1] - - - [1]: http://i.stack.imgur.com/t0rJl.png",LQ -"Is it possible to concatenate inside a C# loop? Below is my sample code: - - for (int i = 0; i <= metricCount; i++) - { - if (m.metrictNumber == i) - { - aggrgt.Add(new PlainBrgDataSummaryChartAggrgt - { - scoreWk6 = scoresPerDuration.scoresPerDuration.scoreWk6.metricScore1, - scoreWk5 = scoresPerDuration.scoresPerDuration.scoreWk5.metricScore1, - scoreWk4 = scoresPerDuration.scoresPerDuration.scoreWk4.metricScore1, - scoreWk3 = scoresPerDuration.scoresPerDuration.scoreWk3.metricScore1, - scoreWk2 = scoresPerDuration.scoresPerDuration.scoreWk2.metricScore1, - scoreWk1 = scoresPerDuration.scoresPerDuration.scoreWk1.metricScore1 - - }); - - } - } - -What I want is to concantename metricScore1. Something like this: -scoreWk6 = scoresPerDuration.scoresPerDuration.scoreWk6.metricScore + i, - -Is that possible?",LQ -"I am creating invoice form, I have written a Java Script to calculate Tax and Discount price as the user the value, But it is just working in one row how can I enable it to work on all the rows - -Javascript[Javascript to calculate discount and tax][1] - - -[Html form][2] - - - [1]: http://i.stack.imgur.com/ZkuWK.jpg - [2]: http://i.stack.imgur.com/i2IPs.jpg",LQ -"Select OpportunityId -from opportunity AS c - left JOIN ( - select a.opportunitynameid - from opportunity o - JOIN ApprovalDocument a ON a.opportunitynameid=o.OpportunityId - ) AS b ON c.OpportunityId=b.opportunitynameid -Where b.opportunitynameid IS NULL and statecode=0",LQ -"I am searching a way to convert a string of characters into a string of unsigned integers. -What i am trying to do is encrypting a text file using an algorithm that encrypts hexadecimal characters. -I am reading an array of 16 characters from the file and i want to convert it to a hexadecimal array so i can encrypt it in my algorithm. -Your support is highly appreciated. -",LQ -"

    In a Django project, I have a custom user model that adds one extra field:

    - -
    class User(AbstractUser):
    -
    -    company = models.ForeignKey(Company, null=True, blank=True)
    -
    - -

    This model is defined in my app, say MyApp.models.

    - -

    How can I get the new User model to show up under ""Authentication and Authorization"" as the original django.contrib.auth model?

    - -

    -",HQ -"So basically Im trying to create a program which should do the following in phython: - - - -A Program that contains a function called calculate_bmi which when it is called, has three arguments - the first argument is an integer variable containing the height in feet, the second argument is an integer variable containing the height in inches, the third argument is the person's weight in pounds. The main program asks the user to enter feet, then inches, then pounds. These variables are then sent to the function. The function calculates and prints the BMI value. - -This is my code below im trying to do but no luck, i cannot seem to convert the height to feet as well. any help would really be appreciated. - - - def calculate_bmi(): - - height_feet = int(input(""Please enter height in feet"")) - height_inches = int(input(""Please enter height in inches"")) - weight_pounds = int(input(""Please enter weight in pounds"")) - - calculate_bmi(height_feet,height_inches,weight_pounds) - - bmi = (weight_pounds / height_inches) * 703 - - print (bmi) - -",LQ -"program is supposed to take word from user (of unknown lenght) then create linked-list, each node should contain one character. It works with pre-declarated word but i am having a problem with -""Stack around the variable 'str' was corrupted."" if i try to simply - -cin>>word; - -Any help would be welcome. - - #include - #include - #include - - using namespace std; - - struct slistEl - { - slistEl * next; - char data; - }; - - unsigned l_size(slistEl * head) - { - unsigned c = 0; - slistEl * p = head; - - if (p) - do - { - c++; - p = p->next; - } while (p != head); - return c; - } - - - void l_printl(slistEl * head) - { - slistEl * p; - - cout << setw(3) << l_size(head) << "" [""; - p = head; - if (p) - do - { - p = p->next; - cout << "" "" << p->data; - - } while (p != head); - cout << "" ]\n\n""; - } - - void l_push(slistEl * & head, char v) - { - slistEl * p = new slistEl; - - p->data = v; - if (head) - { - p->next = head->next; - head->next = p; - } - else p->next = p; - head = p; - } - - void l_pop(slistEl * & head) - { - if (head) - { - slistEl * p = head->next; - head->next = p->next; - if (p->next == p) head = NULL; - delete p; - } - } - - int main() - { - slistEl * head = NULL; - - char str[] = ""abcdefgh""; // pre-declarated word - - //cin >> str; //program should take word from user - - for (int i = 0; str[i] != '\0'; i++) - { - l_push(head, str[i]); - l_printl(head); - } - - system(""PAUSE""); - return 0; - } - -",LQ -"TaskName=YY_EF LastRunTime=""3/14/2016 10:30:00 PM"" LastResult=1 TaskCommand=""C:\Windows\scripts\Tasks\FC_CREATE"" TaskState=Enabled StartTime=""10:30:00 PM"" RunTime=""00:15:00"" Days=""Every 1 day(s)"" ",LQ -"i am programming virtual keyboard with images, when i press the key it will display image but am not able to code space and backspace... - Dim myDir As String = ""C:\Users\ASUBUSU\Desktop\keyboard\java pgm\"" - Dim img As Image = Image.FromFile(myDir & ""sna.png"") - Dim orgData = Clipboard.GetDataObject - Clipboard.SetImage(img) - Me.RichTextBox1.Paste() - Clipboard.SetDataObject(orgData) - -how to write code for space and backspace. - - - - - -",LQ -" -not working real server but its working fine on localhost - - -> $res=mysql_query(""UPDATE "".$table_name."" SET item_name='"".$name.""' -> ,item_description='"".$item.""' ,item_price='"".$price.""' WHERE -> id='"".$id.""'"");",LQ -"[enter image description here][1] - - - -It is stocked in head one and it only transform Ghoul and SHJnt. - -In addition,I try to compile it by function one by one. - -and editor told me that I can t rename which is locked. - -How to solve this problem! thank u so much! - - - [1]: http://i.stack.imgur.com/EbCNu.jpg",LQ -"I am not able to install XAMPP on my system windows 7 32 bit ...the problem is after installing everything is working okay but appache is not running or starting..it is just showing notification that apache is starting but it never does ...I think My system is missing Port 80 which is used by Apache server to run ...even i checked it on my system but there is no such port 80 on my system -how to resolve this issue please somebody help me ASAP",LQ -"Hello i have this two table - -[Department Table][1] - - -[subDepartment table][2] - - -then i want this result using treeview - -**id** **department** **category** -1 MIS System -1 MIS Networking -1 MIS Programmer -2 Audit Operations -2 Audit DS -3 HRD PA -3 HRD PayBen -3 HRD PS -3 HRD PLD -4 Acounting Sup -4 Acounting FMCG -5 Procurement NULL - -or like this - -MIS - -System - -Networking - -Programmer -AUDIT - -Operations - -DS -HRD - -PA - -PayBen - -PS - -PLD -Acounting - -Sup - -FMCG - - -can please guide me thank you. im having trouble finding any solution in the internet. and im newbei in vb.net language. - - - [1]: http://i.stack.imgur.com/DwXUN.jpg - [2]: http://i.stack.imgur.com/QIICZ.jpg - [3]: http://i.stack.imgur.com/zy89e.jpg",LQ -"i have a button which is located on superview - - let buttonSignUp = UIButton() - - self.view.addSubview(buttonSignUp) - -When I press this button I want to go to another view controller scene",LQ -"my csv file is very complex.. it contains numeric as well as string attributes. -[enter image description here][1] -this is how my csv file looks like -I want to plot a histogram of processes versus the cpuid - - - [1]: http://i.stack.imgur.com/EZOD8.png",LQ -"Given the string below - - ""Hello this is a :sample string :hello"" - -i want to substitute :sample and :hello with something else. - -How can i do this in javascript?",LQ -"I can not remove \ from query string in swift Language. I am using multiple option but it didn't work so please help me. - -The sting is : - -> ""INSERT OR REPLACE INTO List VALUES(NULL,\'RS\',\'PRODUCTI -> FO\',\'AX[Demo]\',\'abc\',\'All\',\'Sk\')""",LQ -"below code gives the result but it take 5 min's to execute, after which I need export data to text. there are 12 lakhs records and it does not get export even after 9 hours. could you please help in optimizing the query and improving the execution performance and also help in getting export faster. I can not use offset and fetch in SQL developer. -I use SQL DEVELPER. -with NAGP As -(select Company_common_id,PROFILECLASSVALUE from (select /* + PARALLEL( gp, 20)*/ co.Company_common_id, gp.PROFILECLASSVALUE,rank() over (partition by co.Company_common_id order by co.commit_date desc) RK from stg_cmat.cmat_sync_ref co, stg_cmat.cmat_enrich_ref gp where gp.transaction_id=co.transaction_id and co.event='ENRICHMENT' -and gp.profilename='EnrichmentProfile'and gp.PROFILECLASSNAME='NAGP ID') -where RK =1),cte2 as(select EC.system_serial_number,EC.cmat_customer_id EC_cmat_customer_id,EC.system_status EC_system_status,(select .PROFILECLASSVALUE from NAGP n where n.Company_common_id = EC.cmat_customer_id and rownum=1) EC_NAGP_ID,SN.cmat_customer_id SN_cmat_customer_id,SN.system_status SN_system_status,(select n.PROFILECLASSVALUE from NAGP n where n.Company_common_id = SN.cmat_customer_id and rownum=1) SN_NAGP_ID from (select a.system_serial_number, a.role_id, a.cmat_customer_id, s.system_status from EIM.eim_latest_sys_party_role a, eim.eim_system s where a.system_serial_number = s.system_serial_number (+) - and a.role_id =1) EC, (select a.system_serial_number, a.role_id, a.cmat_customer_id, s.system_status rom EIM.eim_latest_sys_party_role a, eim.eim_system s where a.system_serial_number = s.system_serial_number (+) - and a.role_id =19) SN where EC.system_serial_number=SN.system_serial_number) -select ec_system_status,count(decode ec_system_status, '0',system_serial_number,0))as ec_countofnum,sn_system_status, -count(decode(sn_system_status, '0',system_serial_number,0))as SN_countofnum from cte2 GROUP BY ec_system_status,sn_system_status -",LQ -"JAVA. I'm finished project, done compilation. Runing the Jar file, program is working. -If I'm moving jar file to other PC then the program not showing image and not showing information from txt files. -I thinking this is from wrang path's. Can you help me? -This some code: - - FileInputStream fr2 = new FileInputStream(""C:\\Users\\Nickolskiy\\IdeaProjects\\DeutcheCard\\src\\com\\2.txt""); - BufferedReader br2 = new BufferedReader (new InputStreamReader(fr2, ""Cp1251""));",LQ -"if(!m.isSystemButtonClicked) - { - console.debug(""Inside onHide. m.isSystemButtonClicked="",m.isSystemButtonClicked); - - if(m.unloadListener) - { - window.onbeforeunload = m.unloadListener; - } - }",LQ -"I want to change the compact density with a button. - - - onInit: function () { - - this.getView().addStyleClass(""sapUiSizeCompact""); - }, -works well. If I will change it in a button, it does not work. - - onOpenDialog: function (oEvent) { - var oDialog1 = new sap.ui.commons.Dialog(); - oDialog1.setTitle(""App View Settings""); - - var oText = new sap.ui.commons.TextView({ text: ""Compact Content Density:"" }); - oDialog1.addContent(oText); - - var oToggleButton1 = new sap.ui.commons.ToggleButton({ - text: ""ON, press for OFF"", - tooltip: ""This is a test tooltip"", - pressed: true, - press: function () - { - if (oToggleButton1.getPressed()) { - oToggleButton1.setText(""ON, press for OFF""); - - this.getView().addStyleClass(""sapUiSizeCompact""); - - } else { - oToggleButton1.setText(""OFF, press for ON""); - - this.getView().removeStyleClass(""sapUiSizeCompact""); - } - } - }); - oDialog1.addContent(oToggleButton1); - - oDialog1.addButton(new sap.ui.commons.Button({ text: ""OK"", press: function () { oDialog1.close(); } })); - oDialog1.open(); - }, - -How can I point to the view from inside the function? - -Thanks -Marcus",LQ -"I'm using oracle to create a table called module: - -Module(ModuleId, ModuleTitle, ModuleLeader, Credits, CourseworkPercentage, ExamPercentage) - -ModuleId being the PK. - -A constraint/check which i have to implement is for 'Credits' to be not null and it must be equal to one of the following three values: 10, 20 or 40. -What I have so far is: - - - - CREATE TABLE ""MODULE_CC"" - (""MODULEID"" NUMBER, - ""MODULETITLE"" VARCHAR2(30) NOT NULL ENABLE, - ""MODULELEADER"" VARCHAR2(30) NOT NULL ENABLE, - ""CREDITS"" NUMBER NOT NULL ENABLE, - ""COURSEWORKPERCENTAGE"" NUMBER, - ""EXAMPERCENTAGE"" NUMBER, - PRIMARY KEY (""MODULEID"") ENABLE, - CHECK (CourseworkPercentage + ExamPercentage = 100) ENABLE - ); - - -What would be the check/constrains to make sure that credits will be equal to one of three values(10,20 or 40)?",LQ -" #define _CRT_SECURE_NO_WARNINGS - #include - - int funkcija(int num, int num2) - - { - - int doesContain; - - - - if (doesContain == 1) - return 1; - else - return 0; - - - } - - int main(void) - - { - - int num, num2; - - scanf(""%d"", num); - scanf(""%d"", num2); - - printf(""%d"", funkcija(num, num2)); - - - return 0; - - } - -So basically, I need to make a function which takes number 1 and number 2, checks if number2 is in number1, then returns 0 or 1. - -So for example, if number 1 is let's say '2452325678', and number 2 is '7', number 1 DOES contain number 2 and the statement is true. But if num1 is '2134' and num2 is '5', the statement is false. - -It needs to be done PRIMITIVELY, without arrays and whatnot. The professor is basically testing your ability to make an algorithm, and considering I wasn't @ the last lecture due to illness, and I have practice work tomorrow which I need to pass, you can see why I'm in a pickle here. - -I need any help I can get with the algorithm, I myself am completely lost on how to do it, thanks!",LQ -"i need to know how i change my site url my i try url routing what is not work -my site product url is => [http://www.shahilibas.in/product.php?p_id=5] and i want seo friendly url like [http://www.shahilibas.in/product.php/5] -i try this code for url routing - -function getCurrentUri() - { - $basepath = implode('/', array_slice(explode('/', $_SERVER['SCRIPT_NAME']), 0, -1)) . '/'; - $uri = substr($_SERVER['REQUEST_URI'], strlen($basepath)); - if (strstr($uri, '?')) $uri = substr($uri, 0, strpos($uri, '?')); - $uri = '/' . trim($uri, '/'); - return $uri; - echo $uri; - } -",LQ -"I have two files -In a.php - - - - - - - - -In b.php - - - - - - - - - - - -My question is how get only (echo""two"";) from b.php and what i must write in a.php - -I hope anyone understand",LQ -">hi all - - ->I want to copy date from one excel workbook to another excel workbook(master work book) with pushing macro button. - ->pls assist. ",LQ -"i need a PHP code to find longest contiguous sequence of characters in the string. So if 'b' is coming together for maximum number of times your program should echo 'b' and count - -Example -String: ""aaabababbbbbaaaaabbbbbbbbaa"" -Output must be: 'b' 8",LQ -"

    I'm working on a database-first ASP.NET MVC application. Looking at the database the foreign keys are very inconsistent, basically they are only there if it was specified in the SQL scripts that created the tables. In most cases they are not there.

    - -

    However, looking in the edmx model, I can see that it is aware of the foreign keys i.e. it has correctly identified the navigation properties.

    - -

    My question is, does the missing foreign keys in the actual database have an effect on the sql genereted by Entity Framework? By effect I mean negative impact on performance.

    - -

    I can't really figure out if it matters or not.

    - -

    Just to clarify, in the database I'm expanding tables and looking for the red key which indicates a foreign key. I'm also looking in the subfolder: ""Keys"".

    -",HQ -"

    In this documentation of React, it is said that

    - -
    -

    shallowCompare performs a shallow equality check on the current props and nextProps objects as well as the current state and nextState objects.

    -
    - -

    The thing which I am unable to understand is If It shallowly compares the objects then shouldComponentUpdate method will always return true, as

    - -
    -

    We should not mutate the states.

    -
    - -

    and if we are not mutating the states then the comparison will always return false and so the shouldComponent update will always return true. I am confused about how it is working and how will we override this to boost the performance.

    -",HQ -"

    I am trying to implement an OAuth2 flow with an Android Chrome Custom Tab but my app is always closed (no crash) when the Chrome Custom Tab is receiving the 302 with the location/scheme of my app.

    - -

    If I create a HTML page with ahref link and touch manually on it the Chrome Custom Tab is correctly switching to my app.

    - -

    Seems like when handling the server 302 redirect in the Chrome Custom Tab it will not correctly handle my custom app scheme... but why?

    - -

    If I try the same redirect URL in a stock browser or with a WebView everything is working too.

    - -

    Here is my current setup:

    - -

    MainActiviy.java

    - -
        Button btnChromeCustomTab = (Button) findViewById(R.id.btnChromeCustomTab);
    -    btnChromeCustomTab.setOnClickListener(new View.OnClickListener() {
    -        @Override
    -        public void onClick(View v) {
    -            CustomTabsIntent customTabsIntent = new CustomTabsIntent.Builder().build();
    -            String packageName = CustomTabsHelper.getPackageNameToUse(MainActivity.this);
    -            customTabsIntent.intent.setPackage(packageName);
    -            Uri theLocationUri = Uri.parse(URL);
    -            customTabsIntent.launchUrl(MainActivity.this, theLocationUri);
    -        }
    -    });
    -
    - -

    AndroidManifest.xml

    - -
        <activity android:name="".MainActivity"" >
    -        <intent-filter>
    -            <action android:name=""android.intent.action.MAIN"" />
    -            <category android:name=""android.intent.category.LAUNCHER"" />
    -        </intent-filter>
    -
    -        <intent-filter android:label=""@string/filter_title"">
    -            <action android:name=""android.intent.action.VIEW"" />
    -            <category android:name=""android.intent.category.DEFAULT"" />
    -            <category android:name=""android.intent.category.BROWSABLE"" />
    -            <data android:scheme=""myappscheme"" android:host=""oauth"" />
    -        </intent-filter>
    -    </activity>
    -
    - -

    This is the redirect URL that the app received with HTTP 302 code:

    - -

    myappscheme://oauth?code=1234567&state=tokenCheck123

    - -

    build.gradle

    - -
    android {
    -compileSdkVersion 23
    -buildToolsVersion ""23.0.2""
    -
    -defaultConfig {
    -    applicationId ""de.myapptest.webviewtest""
    -    minSdkVersion 16
    -    targetSdkVersion 23
    -    versionCode 1
    -    versionName ""1.0""
    -}
    -
    -dependencies {
    -   compile fileTree(dir: 'libs', include: ['*.jar'])
    -   testCompile 'junit:junit:4.12'
    -   compile 'com.android.support:appcompat-v7:23.2.1'
    -   compile 'com.android.support:design:23.2.1'
    -   compile 'com.android.support:customtabs:23.0.0+'
    -}
    -
    - -

    Thanks for any help...

    -",HQ -"When I try to execute the code below I receive this error here: - -Error(9,4): PLS-00103: Encountered the symbol ""SELECT"" when expecting one of the following: ( ) - + case mod new not null table continue avg count current exists max min prior sql stddev sum variance execute multiset the both leading trailing forall merge year month day hour minute second timezone_hour timezone_minute timezone_region timezone_abbr time timestamp interval date 0.7 THEN - DBMS_OUTPUT.PUT_LINE('ok'); - END LOOP; - END; - / - -What the code does is take in a name, find it's ID, and compare it to other id's. I'm trying to print out ""ok"" whenever the similarity calculation is over 0.7 . No idea why this doesn't work. ",LQ -"

    I'm creating an application in Laravel 5(.1) where it is needed to connect to different databases. The only problem is that it's not known which databases it has to connect to, so making use of the database.php in config is not possible. A controller is in charge of making a connection with dynamically given connection details.

    - -

    How can I make a new connection to a database, including making use of the DB class? (Or is this possible)

    - -

    Thanks in advance!

    -",HQ -"

    I want to deploy the dist folder after success. But instead, it keeps deploying the whole repository.

    - -

    What I want to achieve is the same effect with:

    - -
    npm publish dist
    -
    - -

    Here is the related part from my .travis.yml:

    - -
    deploy:
    -  provider: npm
    -  email: sa.alemdar@hotmail.com
    -  api_key:
    -    secure: MyApiKey
    -  skip_cleanup: true
    -  file_glob: true
    -  file: ""dist/**/*""
    -  on:
    -    tags: true
    -    repo: salemdar/angular2-cookie
    -
    -",HQ -"

    I'm having a lot of trouble figuring out how to correctly set the num_classes for xgboost.

    - -

    I've got an example using the Iris data

    - -
    df <- iris
    -
    -y <- df$Species
    -num.class = length(levels(y))
    -levels(y) = 1:num.class
    -head(y)
    -
    -df <- df[,1:4]
    -
    -y <- as.matrix(y)
    -df <- as.matrix(df)
    -
    -param <- list(""objective"" = ""multi:softprob"",    
    -          ""num_class"" = 3,    
    -          ""eval_metric"" = ""mlogloss"",    
    -          ""nthread"" = 8,   
    -          ""max_depth"" = 16,   
    -          ""eta"" = 0.3,    
    -          ""gamma"" = 0,    
    -          ""subsample"" = 1,   
    -          ""colsample_bytree"" = 1,  
    -          ""min_child_weight"" = 12)
    -
    -model <- xgboost(param=param, data=df, label=y, nrounds=20)
    -
    - -

    This returns an error

    - -
    Error in xgb.iter.update(bst$handle, dtrain, i - 1, obj) : 
    -SoftmaxMultiClassObj: label must be in [0, num_class), num_class=3 but found 3 in label
    -
    - -

    If I change the num_class to 2 I get the same error. If I increase the num_class to 4 then the model runs, but I get 600 predicted probabilities back, which makes sense for 4 classes.

    - -

    I'm not sure if I'm making an error or whether I'm failing to understand how xgboost works. Any help would be appreciated.

    -",HQ -"

    I have 2 branches :

    - -
      -
    • branchA
    • -
    • branchB
    • -
    - -

    I checkout branchB, and fix a small thing while I am on that branch.

    - -
    commit f2c88cad3d7648cad9c12e724d09db0952abec63
    -Author: Name <email>
    -Date:   Fri Mar 18 09:10:22 2016 -0400
    -
    -    Fix small bug on dashboard 
    -
    - -

    Then, I do git push origin branchB -Which I should have did

    - -

    git push origin branchA branchB

    - -

    Now, in branchB I have

    - -
    commit f2c88cad3d7648cad9c12e724d09db0952abec63
    -
    - -

    but I don't have it on branchA

    - -

    How do I copy that 1 commit f2c88ca into my branchA as well ?

    - -

    Any hints on this will be much appreciated !

    -",HQ -"I need one help.I need to format some array of data using Angular.js/Javascript.I am explaining the code below. - - - var response=[{ - day_id:1, - day_name:""Monday"", - subcat_id:""2"", - cat_id:""1"", - comment:""hii"" - }, { - day_id:1, - day_name:""Monday"", - subcat_id:""1"", - cat_id:""2"", - comment:""hello"" - } - { - day_id:2, - day_name:""Tuesday"", - subcat_id:""3"", - cat_id:""2"", - comment:""hii"" - } - ] - -I have the above given array.I need to convert it as per following format - - var responseNew = { - data: [{ - day_name: ""Monday"", - day_id:1 - answers:[{ - cat_id:1, - subcat_id:1, - comment:'hii' - },{ - cat_id:1, - subcat_id:2, - comment:'hello' - }] - }, { - day_name: ""Tuesday"", - day_id:2 - answers:[{ - cat_id:3, - subcat_id:2, - comment:'hello' - }] - }, { - day_name: ""Wednesday"" - day_id:3 - }, { - day_name: ""Thursday"" - day_id:4 - }, { - day_name: ""Friday"" - day_id:5 - }, { - day_name: ""Saturday"", - day_id:6 - }, { - day_name: ""Sunday"" - day_id:7 - }] - }; - - -Here i want to convert my first array into the second format.Here one condition is if other day_id is not present its simple set the day name and day id in static as given above.Please help me. -",LQ -"

    I have a docker-compose file that I upgraded from version 1 to version 2.

    - -

    It set ups a simple Selenium hub with a firefox node.

    - -

    When I set it up as version 1 it launches fine. When I set it up with version 2 the ff container returns ""Not linked with a running Hub container"" and exits.

    - -

    As I researched it and understood it , is that the linkage between the containers somehow suffers.

    - -

    Is there a solution ?? Am I missing something ??

    - -
    version: '2'
    -services:
    -  hub:
    -    container_name: hub
    -    image: selenium/hub 
    -    ports:
    -      - ""8080:4444"" # HOST:CONTAINER
    -    expose:
    -      - ""4444"" 
    -
    -  ff:
    -    container_name: ff
    -    image: selenium/node-firefox 
    -    links:
    -      - hub
    -    expose:
    -      - ""5555"" 
    -
    -",HQ -"

    This may seem like a stupid question, but I am a little confused.

    - -

    It seems that the code I wrote and tested last week has now suddenly decided to change the output even though nothing in the code or the version of R or Rstudio has changed.

    - -

    Previously when I drew a plot with ggplot2 and asked for the legend to appear at the bottom of the plot, it automatically oriented the items into a single horizontal row. Now when I run the same code it places the item in a number of 2-row columns.

    - -

    Here's an example...

    - -
    mtcars$cyl <- (1:32)
    -subcars <- subset(mtcars, cyl<10)
    -subcars$cyl <- as.factor(subcars$cyl)
    -
    -ggplot(subcars, aes(carb, mpg, group=cyl, colour=cyl)) + 
    -  geom_line() +
    -  theme_classic() +
    -  theme(plot.title = element_text(size = rel(2), face=""bold"", vjust=-4)) +
    -  theme(legend.position = ""bottom"") +
    -  theme(legend.direction = ""horizontal"") +
    -  labs(title=""Title"") 
    -
    - -

    As you can see, I have already tried adding in the line theme(legend.direction = ""horizontal"") but I still get a legend which displays the items in 5 2-row columns (yes, its not even just in two rows).

    - -

    Now I can only assume that there has been some update that I was not aware of or something, so I'm willing to accept that I need to come up with a new strategy for dealing with this problem (which just wasn't a problem last week). Although I am a little bit confused about why my code has suddenly decided to stop working (any input on this welcome), I'm more interested in finding a fix for the immediate problem of my legend items being displayed in a strange configuration.

    -",HQ -"i want save variable in bison and don't know what is best way to save variable. - -value is string or int. - - -parser : - - .... - assignment : '$' identifier '=' exp {updateSymbolVal($2,$4); } - ... - - -function : - - void updateSymbolVal(char symbol,int val) - { - int bucket = computeSymbolIndex(symbol); - symbols[bucket] = val; - ////printf(""\n is: %s"",symbols[bucket]); - } - - -how fix them to can give big string ? - -please help me - -tank you.",LQ -"

    I am able to run redis locally and everything works.

    - -

    However when I deploy to heroku I get this error:

    - -
    Error 111 connecting to localhost:6379. Connection refused. 
    -
    - -

    I have set up a Procfile with...

    - -
    web: gunicorn odb.wsgi --log-file -
    -worker: python worker.py
    -
    - -

    I have a worker.py file...

    - -
    import os
    -import urlparse
    -from redis import Redis
    -from rq import Worker, Queue, Connection
    -
    -listen = ['high', 'default', 'low']
    -
    -redis_url = os.getenv('REDISTOGO_URL')
    -if not redis_url:
    -    raise RuntimeError('Set up Redis To Go first.')
    -
    -urlparse.uses_netloc.append('redis')
    -url = urlparse.urlparse(redis_url)
    -conn = Redis(host=url.hostname, port=url.port, db=0, password=url.password)
    -
    -if __name__ == '__main__':
    -with Connection(conn):
    -    worker = Worker(map(Queue, listen))
    -    worker.work()
    -
    - -

    A REDISTOGO_URL variable appears in the heroku config.

    - -

    Redis to go is an installed add-on for my app.

    - -

    Does REDISTOGO_URL have to be defined in settings.py? Why is heroku trying to connect to the local host when it is not even defined in worker.py?

    -",HQ -"

    How to get the first key (not value) of immutable.js map?

    - -

    basically myMap.first() will return the value, but I am interested in the key...

    - -

    I can do a forEach and store first, but must be a better way!

    - -

    didn't see it in the docs, prob missing it... :/

    - -

    tx

    - -

    Sean

    -",HQ -"

    Can anyone help me with testing Http requests in Angular 2. I have a service that gets a stream from two http requests. How do I mock this behaviour in my test?

    - -
    loadData() {
    -    return Observable.forkJoin(
    -        this.http.get('file1.json').map((res:Response) => res.json()),
    -        this.http.get('file2.json').map((res:Response) => res.json())
    -    ).map(data => {
    -        return {
    -            x: data[0],
    -            y: data[1]
    -        }
    -    });
    -}
    -
    - -

    Here is my test code, I have tried to use an array of connections but I get an error message saying ""Failed: Connection has already been resolved"". I have left the body of the connections blank to avoid exposing sensitive data.

    - -
    describe('Test Load Init Data', () => {
    -    it('should load Menu Zones and Menu Sections',
    -        inject([XHRBackend, AppInitService], (mockBackend, appInitService) => {
    -            console.log('Lets do some testing');
    -
    -            //first we register a mock response
    -            mockBackend.connections.subscribe(
    -                (connection:MockConnection) => {
    -                    return [
    -                        connection.mockRespond(new Response(
    -                            new ResponseOptions({
    -                                body: []
    -                            })
    -                        )),
    -                        connection.mockRespond(new Response(
    -                            new ResponseOptions({
    -                                body: []
    -                            })
    -                        ))
    -                    ];
    -                });
    -
    -            appInitService.loadData().subscribe(data => {
    -                expect(data.x.length).toBeGreaterThan(0);
    -                expect(data.y.length).toBeGreaterThan(0);
    -            });
    -        }));
    -});
    -
    -",HQ -"I was unsure of how should I name this question. It's probably a noob question but anyway...
    I don't really now why assigning values in `struct` in C++ does work in Linux(Ubuntu) but doesn't in Windows(I get an error compiling same program in windows)
    It depends on compiler, yes? Or there is something else I should know? -[![It's just a simple example program.][1]][1] - - - [1]: http://i.stack.imgur.com/lAhrn.png",LQ -"

    I have recently implemented Spring Security in my Spring 4 / Hibernate Web application to handle logging in/out and different user roles.

    - -

    After a lot of reading it appears to work pretty fine now, but I noticed that exceptions thrown due to a wrong Spring Security configuration were not handled gracefully using my custom handler but shown as an ugly Tomcat error page (showing HTTP Status 500 - UserDetailsService is required followed by a stacktrace).

    - -

    Solving the particular error was not difficult (adding userDetailsService(userDetailsService) in the RememberMe configuration) but the fact remains that some exceptions thrown are not handled by the -ControllerAdvice shown below handling MaxUploadSizeExceededException and all other runtime exceptions:

    - -
    @ControllerAdvice
    -public class ExceptionHandlingControllerAdvice {
    -
    -public static final String DEFAULT_ERROR_VIEW = ""genericerror"";
    -
    -@ExceptionHandler(value = MaxUploadSizeExceededException.class)
    -public View maxUploadSizeExceededExceptionHandler(
    -        HttpServletRequest req) throws IOException {
    -
    -    String redirectUrl = req.getRequestURL().toString();
    -
    -    RedirectView rv = new RedirectView(redirectUrl);
    -
    -    FlashMap outputFlashMap = RequestContextUtils.getOutputFlashMap(req);
    -    if (outputFlashMap != null) {
    -        outputFlashMap.put(KeyConstants.FLASH_ERROR_KEY, ""Bestand is te groot"");
    -    }
    -    return rv;
    -}
    -
    -@ExceptionHandler(value = RuntimeException.class)
    -public View defaultErrorHandler(HttpServletRequest req, Exception e) {
    -
    -    RedirectView rv = new RedirectView(""/error"", true); //context relative
    -
    -    StackTraceElement[] steArray = e.getStackTrace();
    -    StringBuilder stackTrace = new StringBuilder();
    -    for (StackTraceElement element: steArray) {
    -        stackTrace.append(element.toString() + ""\n"");
    -    }
    -
    -    FlashMap outputFlashMap = RequestContextUtils.getOutputFlashMap(req);
    -    if (outputFlashMap != null) {
    -        outputFlashMap.put(""url"", req.getRequestURL());
    -        outputFlashMap.put(""excClassName"", e.getClass().getName());
    -        outputFlashMap.put(""excMessage"", e.getMessage());
    -        outputFlashMap.put(""excStacktrace"", stackTrace.toString());
    -    }
    -    e.printStackTrace();
    -
    -    return rv;
    -}
    -}
    -
    - -

    But the exception thrown by the incomplete configured Security is probably not caught by this mechanism because the login POST request is intercepted by Spring Security before any controller method is called. I would like to show ALL exceptions in graceful way on a custom error page, also the ones thrown before a Controller comes into place.

    - -

    I cannot find much information about that, all error handling techniques described in the Spring manual (http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#mvc-exceptionhandlers) seems to use a Controller advice.

    - -

    Is there a convenient way to handle ALL exceptions in a generic way? And makes that my Controller advice class to handle exceptions superfluous?

    -",HQ -"

    In Scala Collection documentation, there is some clue to this question:

    - -
    -

    Trait Seq has two subtraits LinearSeq, and IndexedSeq. These do not add any new operations, but each offers different performance characteristics: A linear sequence has efficient head and tail operations, whereas an indexed sequence has efficient apply, length, and (if mutable) update operations.

    -
    - -

    But this does not address me when to use IndexedSeq instead of Seq? -I need some real example of IndexedSeq or LinearSeq where these collections do better than Seq.

    -",HQ -"

    I need to get create a MediaStream using audio and video from different MediaStreams. In Firefox, I can instantiate a new MediaStream from an Array of tracks:

    - -
      var outputTracks = [];
    -  outputTracks = outputTracks.concat(outputAudioStream.getTracks());
    -  outputTracks = outputTracks.concat(outputVideoStream.getTracks());
    -  outputMediaStream = new MediaStream(outputTracks);
    -
    - -

    Unfortunately, this doesn't work in Chrome:

    - -
    -

    ReferenceError: MediaStream is not defined

    -
    - -

    Is there an alternative method in Chrome for combining tracks from separate streams?

    -",HQ -"

    I'm using ""eslint-config-airbnb"": ""^6.1.0"", to keep my JavaScript clean.

    - -

    My linter is unhappy with what seems to be legitimate code:

    - -

    - -

    It seems like this might be an ongoing issue. Does anyone have any suggestions for an OCD developer on how to address this in the meantime? Perhaps disabling this rule or otherwise?

    -",HQ -"

    Let's say I have an asynchronous iterable that I can pass over using async for, how then can I then map and filter it to a new asynchronous iterator? The following code which is an adaptation of how I'd do the same thing with a synchronous iterable doesn't work, since yield isn't allowed inside async defs.

    - -
    async def mapfilter(aiterable, p, func):
    -    async for payload in aiterable:
    -        if p(payload):
    -
    -            # This part isn't allowed, but hopefully it should be clear
    -            # what I'm trying to accomplish.
    -            yield func(payload)
    -
    -",HQ -"Say I've assigned the rows below to hashes. How do I add together the :amount values for a specific id number? (so for id: 1, I need the total= 9290+2262) - -other_id: 1,amount: 9290,id: 1 -other_id: 2,amount: 2262,id: 1 -other_id: 3,amount: 9588,id: 2 -other_id: 4,amount: 1634,id: 2 - -or even better, if I had a large collection of these. how would I write code so that it would find the id number with the maximum value of total (if total is the sum of all amount instances for a specific id number)",LQ -"

    I am working on a web app that needs to integrate with an existing user database. I would still like to use the [Authorize] attributes, but I don't want to use the Identity framework. If I did want to use the Identity framework I would add something like this in the startup.cs file:

    - -
    services.AddIdentity<ApplicationUser, IdentityRole>(options =>
    -{
    -    options.Password.RequireNonLetterOrDigit = false;
    -}).AddEntityFrameworkStores<ApplicationDbContext>()
    -  .AddDefaultTokenProviders();
    -
    - -

    I'm assuming I have to add something else there, and then create some kind of class that implements a specific interface? Can somebody point me in the right direction? I'm using RC1 of of asp.net 5 right now.

    -",HQ -"

    I'm trying to integrate Medium blogging into an app by showing some cards with posts images and links to the original Medium publication.

    - -

    From Medium API docs I can see how to retrieve publications and create posts, but it doesn't mention retrieving posts. Is retrieving posts/stories for a user currently possible using the Medium's API?

    -",HQ -"

    I use moment.js to display a UTC date in the users local timezone:

    - -
    var date = new Date(Date.UTC(2016,03,30,0,0,0));
    -var now = new Date();
    -var diff = (date.getTime()/1000) - (now.getTime()/1000);
    -
    -var textnode = document.createTextNode(moment(date).format('dddd, DD.MM.YYYY') + ' a las ' + moment(date).format('HH:mm A'));
    -document.getElementsByClassName(""date"")[0].appendChild(textnode.cloneNode(true));
    -
    - -

    I later use the diff variable to show a countdown timer.

    - -

    I would like to show a different countdown timer to everyone in their local time zone. (Using the difference till its midnight in their time zone, not in UTC)

    - -

    But I am struggeling to get it work. Instead of using var date = new Date(Date.UTC(2016,03,30,0,0,0)); I probably need to use some function of moment.js that gives me till midnight in the users time zone.

    - -

    The best example would be new years eve. If I use UTC everyone would have the same counter (9 hours left) but in different parts of the world this wouldn't make sense. For someone in australia it should be 2 hours left, and for someone in the US 14 hours.

    -",HQ -"

    I am getting error after update to appcompat-v7:24.0.0-alpha1 on generating the signed apk.

    - -
    Error:Error: Style Resource definition cycle: TextAppearance.AppCompat.Light.SearchResult.Title => TextAppearance.AppCompat.SearchResult.Title => TextAppearance.AppCompat.SearchResult.Title [ResourceCycle]
    -
    -",HQ -"

    Does Tensorflow utilize Cuda streams automatically for concurrent execution of the computation graph on a single GPU or should streams be assigned manually to ops/tensors ?

    -",HQ -"

    I'd like to add a few headers to all responses that my Django website returns. Is there a way to do this (besides adding a wrapper to the render function)?

    -",HQ -"My table has 770,000 rows and -what I did is - - > mydata <- dbGetQuery(mydb, ""select * from table"") - > mydata$pvalue <- apply(as.matrix(mydata[, c(3,5,4,6)]), 1, function(x) fisher.test(matrix(x, nrow=2))$p.value) - -to get pvalues. - -But it takes so long. (it has been over 24hours and it is still running) -Should I use other method?",LQ -"I created a profile dialog body like this: -` -
    -
    -
    ` - -I want to place child little triangle div always 10-20px far away from right end of parent div. How I can make second little triangle div take its start position on right from the end of parent div?",LQ -"

    Is there any way for me to get and read cookies from my Android Chrome browser?

    - -

    Thank you.

    -",HQ -"Please do help me in solving out the below code and say why is the os.makedirs doesnot work??? -import os,pprint,sys -**while True: - print() - oq=input('Press the first directory: ') - print() - print() - ow=input('Press the next directory/name: ') - print() - p2=input('Continue with next directory? yes or no: ').lower() - if p2=='no': - break - print() - oe=input('Press the next directory/name: ') - print() - p3=input('Continue with next directory? yes or no: ').lower() - if p3=='no': - break - print() - oee=input('Press the next directory/name: ') - print() - p4=input('Continue with next directory? yes or no: ').lower() - if p4=='no': - break - print() - ot=input('Press the next directory/name: ') - print() - p5=input('Continue with next directory? yes or no: ').lower() - if p5=='no': - break - print() - oy=input('Press the next directory/name: ') - print() - p6=input('Continue with next directory? yes or no: ').lower() - if p6=='no': - break - print() - ou=input('Press the next directory/name: ') - print() - p7=input('Continue with next directory? yes or no: ').lower() - if p7=='no': - break - print() - if p2=='no': - os.makedirs(oq+'\\'+ow) - if p3=='no': - os.makedirs(oq+'\\'+ow+'\\'+oe) - if p4=='no': - os.makedirs(oq+'\\'+ow+'\\'+oe+'\\'+oee)) - if p5=='no': - os.makedirs(oq+'\\'+ow+'\\'+oe+'\\'+oee+'\\'+ot) - if p6=='no': - os.makedirs(oq+'\\'+ow+'\\'+oe+'\\'+oee+'\\'+ot+'\\'+oy) - if p7=='no': - os.makedirs(oq+'\\'+ow+'\\'+oe+'\\'+oee+'\\'+ot+'\\'+oy+'\\'+ou) - ppp=input('Wannna continue???') - if ppp=='no': - sys.exit()**",LQ -"

    In my Android project, I use a library that comes as a jar. -I include it in the dependencies section like so:

    - -
    dependencies {
    -    ...
    -
    -    compile files('libs/thethirdpartylibrary.jar')
    -    ...
    -}
    -
    - -

    I also want to use the okhttp library, which I include like this:

    - -
    compile ('com.squareup.okhttp:okhttp:2.7.5')
    -
    - -

    (This particular version of okhttp depends on okio 1.6.0.)

    - -

    The problem is that the thirdparty jar library depends on okio v0.9.0 and what's worse, bundles it.

    - -

    As a result, I get a dex conflict error at build time.

    - -

    I was able to resolve this by manually removing okio from the jar file and this seems to work. But I'm wondering if there's a way to do this in gradle.

    - -

    My question: Can I remove bundled, transitive ( <- I hope I'm using this word the right way) dependencies from an included jar during build-time with gradle?

    -",HQ -"

    code :

    - -
    var newurl = window.location.protocol + ""//"" + window.location.host + window.location.pathname +""?""+ queryStr; 
    -window.history.pushState({path:newurl},'',newurl)
    -
    - -

    current scenario :

    - -

    everytime when window.history.pushState() is invoked favicon requests occur rapidly.It makes network request for favicon on every call of this function.

    - -

    expected scenario :

    - -

    favicon should be loaded only once on page load, I would not expect the favicon load on every request of window.history.pushState().

    - -

    favicon paths are link like this in HTML page :

    - -
    <!-- Favicon -->
    -  <link rel=""icon"" type=""image/png"" href=""../img/icon/favicon-16x16.png"" sizes=""16x16"">
    -  <link rel=""icon"" type=""image/png"" href=""../img/icon/favicon-32x32.png"" sizes=""32x32"">
    -  <link rel=""icon"" type=""image/png"" href=""../img/icon/favicon-96x96.png"" sizes=""96x96"">
    -
    - -

    Any immediate help will be highly appreciable. Thanks

    -",HQ -"I'm reading some slides on `enum`s and `unions`, and one slide says: - -> You must always read the last element you write. - -and then there's the following code: - - union Value { - int int_value; - float float_value; - char *str_value; - }; - - int main(int argc, char *argv[]) { - union Value v; - v.str_value = ""ciao""; - v.int_value = 100; - - printf(""v = %s\n"", v.str_value); /* undefined behavior! */ - } - -What does it mean that we have always to read the last element we write? Why accessing the field `str_value` of the union `v` is undefined behaviour?",LQ -"

    I'm trying to use node-jslint https://github.com/reid/node-jslint in order to keep my code clean

    - -

    I've got a const in my nodejs script, but jslint says it isn't valid ES6 code

    - -
     Unexpected ES6 feature.
    -const pdPersonsFilterId = process.argv[2]; // Line 10, Pos 0
    -
    - -

    Here is the command I use in the console

    - -
    jslint --edition=latest index.js
    -
    - -

    According to the https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const it possible to use global constants.

    - -

    Why does jslint does not consider this code to be valid?

    -",HQ -"

    I am writing some espressotests for an appplication I recently made. -I'm using a NavigationView inside a DrawerLayout as sliding menu.

    - -

    I managed to open the drawer this way:

    - -
            onView(withId(R.id.drawer_layout)).perform(open());
    -
    - -

    This works so now I am trying to perform a click on a menuitem in the NavigationView.

    - -
    onView(withId(R.id.nav_register))..
    -
    - -

    can not find the view. I tried several things but I can't find a way to retrieve the menuitem view. This is the way the items are assigned in the code:

    - -
        <android.support.design.widget.NavigationView
    -    android:id=""@+id/nav_view""
    -    android:layout_width=""wrap_content""
    -    android:layout_height=""match_parent""
    -    android:layout_gravity=""start""
    -    android:fitsSystemWindows=""true""
    -    app:headerLayout=""@layout/nav_header_main""
    -    app:menu=""@menu/activity_main_drawer"" />
    -
    - -

    and activity_main_drawer.xml

    - -
    <group android:checkableBehavior=""single"">
    -    <item
    -        android:id=""@+id/nav_home""
    -        android:icon=""@drawable/ic_menu_home""
    -        android:title=""Home"" />
    -    <item
    -        android:id=""@+id/nav_register""
    -        android:icon=""@drawable/ic_menu_register""
    -        android:title=""Registreer"" />
    -    <item
    -        android:id=""@+id/nav_login""
    -        android:icon=""@drawable/ic_menu_login""
    -        android:title=""Log in"" />
    -    <item
    -        android:id=""@+id/nav_play""
    -        android:icon=""@drawable/ic_menu_play""
    -        android:title=""Speel sessie"" />
    -    <item
    -        android:id=""@+id/nav_logout""
    -        android:icon=""@drawable/ic_menu_logout""
    -        android:title=""Log uit"" />
    -</group>
    -
    - -

    I read something about NavigationViewMenuItem is a private member and not accessible. Can someone help me out?

    - -

    Greets! -Shenno

    -",HQ -"

    I have node v.4.4 with npm v.2.14.20 (default bundled with windows installer). My OS: Windows 7 64bit. Hardware: Dell laptop, 16GB RAM, SSD, core i7.

    - -

    I'm facing a problem with extremely slow npm. For example when I want to check version of node with

    - -
    node --version
    -v4.4.0
    -
    - -

    I receive output 4.4.0 within miliseconds. -But when I type

    - -
    npm --version
    -
    - -

    I need to wait ridiculous 8-15 seconds to receive an output! And it's the same with every single npm command.

    - -

    What i tried: update npm (to most recent 3.x version), update node to 5.9.0, i also tried my luck with x86 versions - same thing.

    - -
      -
    1. Any clues what can cause such ""sleep"" (it's only with npm, every other cmd command works fine, system works fine)?
    2. -
    3. I will appreciate any tips how I can debug this thing to see what's going on under the hood
    4. -
    -",HQ -"I have to convert an Arraylist of users to from java to Json -I figured out how to get the -user to convert I don't know how to use the syntax for the array -This is in the driver: - - // Convert a User to JSON - String testStr = JsonUserConverter.convertUserToJson(bob); - System.out.println(testStr); - - // Convert JSON string to a User - User testUser = JsonUserConverter.convertJsonToUser(jsonUserString); - System.out.println(testUser); - - - // Convert an ArrayList of Users to JSON - - -and I have to populate this - -public static String convertUsersArrayToJson(ArrayListusers){} - -with my User data from my User class. I only just learned about ObjectMapper. I assume there's something in my library to convert but I don't know. Help.",LQ -"

    It sounds extremely confusing to me, what are the differences? Can someone please do an ELI5?

    -",HQ -"Why it does not like parseInt? How to fix it? Can someone pls help me out - - - - - - - import java.lang.*; - import java.io.BufferedReader; - import java.io.File; - import java.io.FileNotFoundException; - import java.io.FileReader; - import java.io.IOException; - import java.util.ArrayList; - import java.util.Scanner; - import java.util.List; - import java.lang.*; - - public class Table { - - static class Data - { - private String name = """"; - private int num = 0; - - public Data(String name, int num) - { - this.name = name; - this.num = num; - } - - public String getName() - { - return name; - } - - public int getNum() - { - return num; - } - - public String toString() - { - return name + "" "" + num; - } - } - - - - public static void main(String[] args) throws IOException - { - - List table = new ArrayList(); - - try - { - String filename= """"C:\\input.txt""; - BufferedReader reader = new BufferedReader(new FileReader(filename)); - String line = reader.readLine(); - - while(line != null) - { - String[] tokens = line.split(""[ ]+""); - - String tempname = tokens[0]; - int tempnum = Integer.parseInt(tokens[1]); - - Data temp = new Data(tempname,tempnum); - - table.add(temp); - line = reader.readLine(); - } - reader.close(); - } - catch(FileNotFoundException n) - { - System.out.println(""file not found""); - } - catch(IOException a) - { - a.printStackTrace(); - } - - for(Data n:table) - { - System.out.println(n); - } - - } - - } - - -Exception in thread ""main"" java.lang.Error: Unresolved compilation problem: - The method parseInt(String) is undefined for the type Integer - - at Table.main(Table.java:58) -",LQ -"

    I need to run composer update at my hosting so I log in with ssh and try to run comand:

    - -
    composer update
    -
    - -

    inside /www folder where I have laravel and composer instalation

    - -

    but I get error: -

    - -

    in contact with my hosting provider they tell me to run command:

    - -
    php -d memory_limit=512M composer update
    -
    - -

    I run this command but I get: ""Could not open file: composer""

    - -

    What to do? What is the soluton here?

    -",HQ -"

    As described here TypeScript introduces a foreach loop:

    - -
    var someArray = [9, 2, 5];
    -for (var item of someArray) {
    -    console.log(item); // 9,2,5
    -}
    -
    - -

    But isn't there any index/key? I would expect something like:

    - -
    for (var item, key of someArray) { ... }
    -
    -",HQ -"

    I want to count the number of times a word is being repeated in the review string

    - -

    I am reading the csv file and storing it in a python dataframe using the below line

    - -
    reviews = pd.read_csv(""amazon_baby.csv"")
    -
    - -

    The code in the below lines work when I apply it to a single review.

    - -
    print reviews[""review""][1]
    -a = reviews[""review""][1].split(""disappointed"")
    -print a
    -b = len(a)
    -print b
    -
    - -

    The output for the above lines were

    - -
    it came early and was not disappointed. i love planet wise bags and now my wipe holder. it keps my osocozy wipes moist and does not leak. highly recommend it.
    -['it came early and was not ', '. i love planet wise bags and now my wipe holder. it keps my osocozy wipes moist and does not leak. highly recommend it.']
    -2
    -
    - -

    When I apply the same logic to the entire dataframe using the below line. I receive an error message

    - -
    reviews['disappointed'] = len(reviews[""review""].split(""disappointed""))-1
    -
    - -

    Error message:

    - -
    Traceback (most recent call last):
    -  File ""C:/Users/gouta/PycharmProjects/MLCourse1/Classifier.py"", line 12, in <module>
    -    reviews['disappointed'] = len(reviews[""review""].split(""disappointed""))-1
    -  File ""C:\Users\gouta\Anaconda2\lib\site-packages\pandas\core\generic.py"", line 2360, in __getattr__
    -    (type(self).__name__, name))
    -AttributeError: 'Series' object has no attribute 'split'
    -
    -",HQ -"

    I have created a Google Apps Script that checks if an email has an attachment then send it to another email address.

    - -

    It's working fine, but I would like to create a trigger that would launch the script as soon as a new email arrives in the inbox.

    - -

    I have been able to create a trigger that launch the script every hour, but it's not what I want

    -",HQ -"

    I am trying to get a list of all html tags from beautiful soup.

    - -

    I see find all but I have to know the name of the tag before I search.

    - -

    If there is text like

    - -
    html = """"""<div>something</div>
    -<div>something else</div>
    -<div class='magical'>hi there</div>
    -<p>ok</p>""""""
    -
    - -

    How would I get a list like

    - -
    list_of_tags = [""<div>"", ""<div>"", ""<div class='magical'>"", ""<p>""]
    -
    - -

    I know how to do this with regex, but am trying to learn BS4

    -",HQ -"

    I'm developing a client-side app and I'm having trouble with creating the right Karma configs. Right now, I have my setup as follows:

    - -

    Webpack: Using ts-loader, compiles TypeScript, assets etc.

    - -

    Karma: Using the webpack plugin, loads the Webpack config (which uses ts-loader), then runs all unit tests with Jasmine + PhantomJS

    - -

    The unit tests all run fine, but I haven't figured out a way to handle the webpack istanbul remapping. Karma-webpacks seems to not be generating source maps to allow the remapping to happen. Any pointers would be appreciated!

    - -

    Karma Config:

    - -
    var webpackConfig = require(""./webpack.config.js"");
    -delete webpackConfig.entry;
    -
    -module.exports = function (config) {
    -    config.set({
    -        // base path that will be used to resolve all patterns (eg. files, exclude)
    -        basePath: '',
    -
    -        // frameworks to use
    -        // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
    -        frameworks: ['jasmine'],
    -
    -        // list of files / patterns to load in the browser
    -        files: [
    -            // Non-automatically bundled libraries
    -            'app/client/js/lib/easeljs.min.js',
    -            'app/client/js/lib/tweenjs.min.js',
    -            // Entry File
    -            'app/client/js/index.ts',
    -            'app/client/html/**/*.html',
    -
    -            // Test files and dependencies
    -            'node_modules/angular-mocks/angular-mocks.js',
    -            'test/client/**/*.spec.js'
    -        ],
    -
    -        // preprocess matching files before serving them to the browser
    -        // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
    -        preprocessors: {
    -            '**/*.html': ['ng-html2js'],
    -            'app/client/js/index.ts': ['webpack', 'sourcemap', 'coverage']
    -        },
    -
    -        ngHtml2JsPreprocessor: {
    -            cacheIdFromPath: function (filepath) {
    -                // Remaps the path for Karma webpack
    -                return '/_karma_webpack_//' + filepath.replace(/^.*[\\\/]/, '');
    -            },
    -            moduleName: 'templates'
    -        },
    -
    -        webpack: webpackConfig,
    -
    -        webpackMiddleware: {
    -            noInfo: true
    -        },
    -
    -        // test results reporter to use
    -        // possible values: 'dots', 'progress'
    -        // available reporters: https://npmjs.org/browse/keyword/karma-reporter
    -        reporters: ['progress', 'coverage'],
    -
    -        coverageReporter: {
    -            dir: 'build/client/test/coverage/',
    -            reporters: [
    -                {
    -                    type: 'json',
    -                    subdir: '.'
    -                }
    -            ]
    -        },
    -
    -        // web server port
    -        port: 9876,
    -
    -        // enable / disable colors in the output (reporters and logs)
    -        colors: true,
    -
    -        // level of logging
    -        // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
    -        logLevel: config.LOG_INFO,
    -
    -        // enable / disable watching file and executing tests whenever any file changes
    -        autoWatch: true,
    -
    -        // start these browsers
    -        // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
    -        browsers: ['PhantomJS'],
    -
    -        // Concurrency level
    -        // how many browser should be started simultaneously
    -        concurrency: Infinity
    -    })
    -};
    -
    -",HQ -"I have code with two variables in echo. I don't know why it prints before $AEXT spaces even though I have just one space in code. - - echo "" Average file size .$ext: $AEXT"" - - Files .tar: 1",LQ -"""Member names cant be in the same as their enclosing type"". How would i re-arrange this code to make it run? - - - using System; - using System.Collections.Generic; - using System.Linq; - using System.Text; - using System.Threading.Tasks; - - namespace works - - { - - class Enemy : Character - - { - - Character Hero = new Character(); - - Character Enemy = new Character(); - - public override void Die() - { - Console.WriteLine(""[0] has killed the enemy!"", mST_Name); - } - - public override void TakeDamage() - - { - Enemy.mIN_HitPoints -= Hero.mIN_Strength; - - Console.WriteLine(""Your enemy has been hit and has {0} HP left!"", mIN_HitPoints); - - if (mIN_HitPoints == 0) - { - Die(); - } - } - } - } - -The point of this code is to simulate a RPG style game. Thanks for the help :)",LQ -"I've created a source file that contains a number of data structures (maps, vector, array). Its header file is `#included` in the main-file. - -The main file looks like this: - - #include ""src1.h"" //Where monkey() and vector bar are declared - - main() - { - monkey(bar); // Calling monkey(bar) here is OK! Bar is visible - - ... - - ifstream fp(""foo.txt""); - if(fp.is_open()) - { - std::string line; - while( getline(fp,line) ) - { - monkey(bar); //'bar' is an undefined reference! - } - } - } - -And **src1.h** - - #ifndef SRC1_H - #define SRC1_H - - extern std::vector bar; - - void monkey(std::vector feces); - - #endif - -And **src1.cpp** - - std::vector bar; - - void monkey(std::vector thrown_obj) - { - ... //Iteration and dereferencing of ""thrown_obj"" - } - - -I've accessed data structures that are declared in `src1.cpp` in a for-loop in the scope of main and *that* was fine. Something wonky is happening in this if-statement though. - -Compiler Error: - - lab1.o: In function `main': - /home/ubuntu/workspace/ECE597/Lab1/lab1.cc:105: undefined reference to `int_req' - collect2: error: ld returned 1 exit status",LQ -"I'm looking for the best method for creating a single navigation menu and including it with php. I know how to do just about everything I need, the problem I'm running into is the sub directories. - -For example: -Nav.php is in the root directory. -`Index.php` is also in the root directory. -Now I want to go to a page about cats, located at `about/cats.php`. - -When I want to go from `about/cats.php` to `blog/kittens.php` how would I structure the links? - -`cats` would take me to about/cats just fine from the root directory. But if I'm on the `blog/kittens.php` page, I'd get a link like `about/blog/kittens.php`. - -It's not something that needs massive/dynamic arrays or anything, I've just had a hard time wrapping my head around the cleanest way to do this. - -What's the best method to keep one navigation file(if possible) but still have correct links even if I'm 2 or 4 levels from the root? I've seen others use sql databases (if that's the best way I don't mind), but I feel like that's too complicated and I'm just missing a much easier method. ",LQ -"

    I'm using VSCode, Exist, a way to implement the methods that are within an interface in typescript using some shortcut keys or set for it.

    - -

    I searched on the website of Microsoft, and the web, but I have not found anything.

    -",HQ -"

    I am trying to use Tensorflow. Here is an very simple code.

    - -
    train = tf.placeholder(tf.float32, [1], name=""train"")
    -W1 = tf.Variable(tf.truncated_normal([1], stddev=0.1), name=""W1"")
    -loss = tf.pow(tf.sub(train, W1), 2)
    -step = tf.train.GradientDescentOptimizer(0.1).minimize(loss)
    -
    - -

    Just ignore the optimization part (4th line). It will take a floating number and train W1 so as to increase squared difference.

    - -

    My question is simple. If I use just minus sign instead of -tf.sub"" as below, what is different? Will it cause a wrong result?

    - -
    loss = tf.pow(train-W1, 2)
    -
    - -

    When I replace it, the result looks the same. If they are the same, why do we need to use the ""tf.add/tf.sub"" things?

    - -

    Built-in back propagation calculation can be done only by the ""tf.*"" things?

    -",HQ -"
    remote: Verifying deploy... done.
    -fatal: protocol error: bad line length character: fata
    -error: error in sideband demultiplexer
    -
    - -

    This just randomly started showing up. My changes are being saved in git and pushing successfully to Heroku. I have no idea what this means or what caused it as I have not done anything new at all.

    -",HQ -"

    In Angular2 component I use EventEmitter to emit an event with parameter. In the parent component listener this parameter is undefined. Here is a plunker:

    - -
    import {Component, EventEmitter, Output} from 'angular2/core'
    -@Component({
    -  template: `<ul>
    -  <li *ngFor=""#product of products"" (click)=""onClick(product)"">{{product.name}}</li>
    -  </ul>`,
    -  selector: 'product-picker',
    -  outputs: ['pick']
    -})
    -export class ProductPicker {
    -  products: Array<any>;
    -  pick: EventEmitter<any>;
    -  constructor() {
    -    this.products = [
    -      {id: 1, name: 'first product'},
    -      {id: 2, name: 'second product'},
    -      {id: 3, name: 'third product'},
    -      ];
    -    this.pick = new EventEmitter();
    -  }
    -  onClick(product) {
    -    this.pick.emit(product);
    -  }
    -}
    -@Component({
    -  selector: 'my-app',
    -  providers: [],
    -  template: `
    -    <div>
    -      <h2>Pick a product</h2>
    -      <product-picker (pick)=""onPick(item)""></product-picker>
    -    </div>
    -    <div>You picked: {{name}}</div>
    -  `,
    -  directives: [ProductPicker]
    -})
    -export class App {
    -  name: string = 'nothing';
    -  onPick(item) {
    -    if (typeof item == 'undefined') {
    -      console.log(""item is undefined!"");
    -    } else {
    -      this.name = item.name;
    -    }
    -  }
    -}
    -
    - -

    How to pass the picked product to parent component?

    -",HQ -" string usertype; - usertype = Console.ReadLine(); - - if (usertype== ""Yahoo"") - - { Console.WriteLine(""You typed Yahoo therefore we are now login to Yahoo Page""); - Console.ReadLine(); - } - -Nothing wrong with t he code except: If user types **Y**ahoo then it shows answer. I want user; if he types **y**ahoo then answer should be the same. - - -",LQ -"

    According to Google's introduction, starting with Android N, the Android API is supposed to support Java streams.

    - -

    However, using the Android N preview SDK, I am unable to use any of the Stream APIs in my project (which is configured with Android N as minimum, target and build SDK version).

    - -

    The java.util.stream package seems to be missing, as are the stream() methods of all collection implementations I've tried.

    - -

    Are the necessary classes not yet included in the current preview release of the SDK?

    -",HQ -"

    Is it possible to publish two different repositories for the same JPA entity with Spring Data Rest? -I gave the two repositories different paths and rel-names, but only one of the two is available as REST endpoint. -The point why I'm having two repositories is, that one of them is an excerpt, showing only the basic fields of an entity.

    -",HQ -"

    I have auto import enabled in idea, but it requires me to open the file in the editor (like it should). Now, i have done some regex magic, which means across 100+ classes i am using new classes that need to be imported. Since its all done with find/replace, those files have never been opened in the editor, and therefore the new classes havent been auto imported. Is there any way to run auto import unambiguous references across all files? cause currently, i have to compile, and then open all the files from the errors window? Optimize imports aparently doesnt do new imports.

    -",HQ -"

    Sometimes I design machine learning pipelines that look something like this:

    - -

    - -

    Normally I have to hack these ""split"" pipelines together using my own ""Combine Features"" function. However, it'd be great if I could fit this into a sklearn Pipeline object. How would I go about doing that? (Pseudo-code is fine.)

    -",HQ -"This is the program:- - - #include - int main() - { - int a[8]={1,2,3,4,5,6,7,8,9},i; - char* p; - p=(char*)a; - printf(""%d"",*p); - for( i=0;i<32;i++) - { - p=p+1; - printf(""%d"",*p); - } - return 0; - - } - -Output:- - - $ ./a.out - 100020003000400050006000700080000 - -why is the output like this. -why there is three zero followed by value of the array. -",LQ -"
    -

    The SyntheticEvent is pooled. This means that the SyntheticEvent object will be reused and all properties will be nullified after the event callback has been invoked. This is for performance reasons. As such, you cannot access the event in an asynchronous way.

    -
    - -

    refer : Event System in React

    -",HQ -"

    after i press a button, i would like to move a textfield programmatically from the actual position + 20 margin left.

    - -

    this is my xml file:

    - -
    <RelativeLayout
    -    xmlns:android=""http://schemas.android.com/apk/res/android""
    -    xmlns:tools=""http://schemas.android.com/tools""
    -    android:layout_width=""fill_parent""
    -    android:layout_height=""wrap_content""
    -    android:paddingTop=""5dp""
    -    android:paddingBottom=""5dp"">
    -
    -
    -    <TextView
    -        android:layout_width=""wrap_content""
    -        android:layout_height=""wrap_content""
    -        android:id=""@+id/txtField""
    -        android:layout_below=""@+id/txtField2""
    -        android:layout_alignParentLeft=""true""
    -        android:layout_alignParentStart=""true""
    -        android:layout_marginLeft=""20dp""
    -        android:layout_toLeftOf=""@+id/Seperator""
    -        android:layout_toStartOf=""@+id/Seperator""
    -        android:layout_marginRight=""10p"" />
    -
    -    ....
    -
    -
    -</RelativeLayout>
    -
    - -

    i tried this code:

    - -
    parameter = new RelativeLayout.LayoutParams(
    -RelativeLayout.LayoutParams.WRAP_CONTENT,
    -RelativeLayout.LayoutParams.WRAP_CONTENT);
    -parameter.setMargins(30, 32, 10, 0); // left, top, right, bottom
    -txtField.setLayoutParams(parameter);
    -
    - -

    this works semi optimal. -is there an way to use all the values of an xml file and only change the margin left value programmatically?

    -",HQ -"I encountered a problem while coding today, I need your help. - -I have a function: - - def list_printer(name): - frame = sys._getframe(1) - print(name, '=', repr(eval(name, frame.f_globals, frame.f_locals))) - return - -and a list: - - my_list = [1, 2, 3, 4, 5] - - -When called it looks like this: - - list_printer('my_list') -and outputs: - - my_list = [1, 2, 3, 4, 5] - -The thing is, as you can see I must use a string as the argument, is there any way i could type in raw text and then convert it to a string inside the function so that i dont have to use quotes? - -Thank you in advance, -**Pinco**. -",LQ -"i declared variable (string) containing k names of queues i want to delete. - -how can i ""loop"" through the string and delete each queue? - -I'm having trouble with the awk command. - -thanks a lot!",LQ -"

    I need to be able to create simple HTTP POST request during our Jenkins Pipeline builds. However I cannot use a simple curl sh script as I need it to work on Windows and Linux nodes, and I don't wish to enforce more tooling installs on nodes if I can avoid it.

    - -

    The Groovy library in use in the Pipeline plugin we're using should be perfect for this task. There is an extension available for Groovy to perform simple POSTs called http-builder, but I can't for the life of me work out how to make use of it in Jenkins' Groovy installation.

    - -

    If I try to use Grapes Grab to use it within a Pipeline script I get an error failing to do so, as seen here.

    - -
    @Grapes(
    -    @Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7.1')
    -)
    -
    - -

    Maybe Grapes Grab isn't supported in the bundled version of Groovy Jenkins uses. Is it possible to simply download and add http-builder and its dependencies to the Jenkins Groovy installation that goes out to the nodes?

    -",HQ -"[This is First table of database and it is in relation with second table ][1] - - -[This is the Second Table][2] - - - - [1]: http://i.stack.imgur.com/yqQHq.png - [2]: http://i.stack.imgur.com/gG59m.png -but i want to do that when user get logged in he/she will give answers of question and that answer are also added to database but in second table but with first table of user id. Because of each user has to give this answers and answers were saved for each user.",LQ -"I'm getting the wrong answer for this: - - long(math.factorial(100)) % long(math.pow(12, 48)) - -The answer should be 0, but Python gives: - - 3533293188234793495632656292699172292923858530336768L - -- Why does this happen? -- How do I calculate that correctly?",LQ -"

    I have tried multiple guides here (search for ""Building libx265"") and here with no success. Both times I made sure I uninstalled ffmpeg first, went through the guides, then ran

    - -

    brew install ffmpeg --with-fdk-aac --with-freetype --with-libass --with-libvpx --enable-libx265

    - -

    No matter what when I go to run a command like

    - -

    ffmpeg -i source.mkv -c:v libx265 test1.mkv

    - -

    I get the error:

    - -

    Unknown encoder 'libx265'

    - -

    Has anyone had success building libx265 for use with ffmpeg on OSX and can you please share how you did it?

    - -

    P.S. I am running OSX 10.11.3

    -",HQ -"I thought it was a matrix, but it doesn't seem to match the syntax for a matrix. - -Here is the entire context: - - function [x , y] = plotTrajectory(Vo,O,t,g) - % calculating x and y values - x = Vo * cos(O) * t ; - y = Vo*(sin(O)*t)-(0.5*g*(t.^2)); - plot (x,y); - hold on - end - - for i = (0: (pi/8): pi); - [x,y] = plotTrajectory(10,i,[0:1:5],9.8); - end",LQ -"

    Starting a new react-native project, the xcode-project gots the bundle-identifier ""org.reactjs.native.example.XYZApp"". XYZ is the placeholder here for my real project name.

    - -

    Is there any way to change this bundle identifier on react-native side? Sure, I can change it in XCode. But this is not safe because it can be overriden when react-native will recreate the xcode-project, which could happen at any time, as well es when rebuilding the project.

    -",HQ -"I try to exec a first ruby on rails project. -I have done this few commands but no html page I see on localhost:3000 after rails server. -The comands that I wrote, are: - - rails new first_proj; - cd first_proj - rails generate scaffold project name:string cost:decimal; - bundle exec rake db:migrate - -No HTML page I can I see with firefox or chrome. -Can You help me please?? -It's very weird - - - - -",LQ -" #include - #include - #include - - - - - #include - #include - sf::RectangleShape snake; - //increases size of the snake - sf::RectangleShape addsnake(){ - - sf::RectangleShape addsnake1; - addsnake1.setSize(sf::Vector2f(20, 25)); - addsnake1.setFillColor(sf::Color::Red); - addsnake1.setPosition(100, 100); - sf::RectangleShape addsnake2; - addsnake2.setSize(sf::Vector2f(20, 30)); - addsnake2.setFillColor(sf::Color::Red); - addsnake2.setPosition(100, 100); - sf::RectangleShape addsnake3; - addsnake3.setFillColor(sf::Color::Red); - addsnake3.setSize(sf::Vector2f(20, 35)); - addsnake3.setPosition(100, 100); - sf::RectangleShape addsnake4; - addsnake4.setSize(sf::Vector2f(20, 40)); - addsnake4.setFillColor(sf::Color::Red); - addsnake4.setPosition(100, 100); - sf::RectangleShape addsnakey[4] = { addsnake1, addsnake2, addsnake3, addsnake4 }; - if (snake == snake) //problem here (No operator ""=="" matches these operands) - - return addsnakey[0]; - else if (snake == addsnakey[0]) - return addsnakey[1]; - else if (snake == addsnakey[1]) - return addsnakey[2]; - else if (snake == addsnakey[2]) - return addsnakey[3]; - else if (snake == addsnakey[3]) - return addsnakey[4]; - - } - //checks if snake ate the fruit - bool intersects(const sf::RectangleShape & r1, const sf::RectangleShape & r2){ - sf::FloatRect snake = r1.getGlobalBounds(); - sf::FloatRect spawnedFruit = r2.getGlobalBounds(); - return snake.intersects(spawnedFruit); - - } - - sf::RectangleShape generateFruit() { - - - sf::RectangleShape fruit; - fruit.setFillColor(sf::Color::Yellow); - int fruitx = rand() % 400; - int fruity = rand() % 400; - fruit.setPosition(fruitx, fruity); - fruit.setSize(sf::Vector2f(5, 5)); - - return fruit; - - - } - int main() - { - srand(time(NULL)); - int width = 400; - int height = 400; - sf::VideoMode videomode(width, height); - sf::RenderWindow window(videomode, ""Snake""); - - - snake.setFillColor(sf::Color::Red); - snake.setSize(sf::Vector2f(20, 20)); - snake.setPosition(100, 100); - sf::Clock clock; - sf::Time t1 = sf::seconds(20); - sf::RectangleShape spawnedFruit; - while (window.isOpen()) { - window.clear(); - window.draw(snake); - - - - sf::Time elapsed1 = clock.getElapsedTime(); - if (elapsed1 >= t1) { - - - spawnedFruit = generateFruit(); - - clock.restart(); - - } - - window.draw(spawnedFruit); - - window.display(); - sf::Event event; - while (window.pollEvent(event)) - { - if ((event.type == sf::Event::Closed) || - ((event.type == sf::Event::KeyPressed) && (event.key.code == sf::Keyboard::Escape))) - window.close(); - } - - - //motion - if (sf::Keyboard::isKeyPressed(sf::Keyboard::Up)) - - snake.move(0, -0.1); - else if (sf::Keyboard::isKeyPressed(sf::Keyboard::Down)) - snake.move(0, 0.1); - else if (sf::Keyboard::isKeyPressed(sf::Keyboard::Left)) - snake.move(-0.1, 0); - else if (sf::Keyboard::isKeyPressed(sf::Keyboard::Right)) - snake.move(0.1, 0); - if (intersects(snake, spawnedFruit)) - - snake = addsnake(); - - - - - - - - } - - } -The error:- -No operator ""=="" matches these operands.Operand types are sf::RectangleShape == sf::RectangleShape. Why is that? Could you please help me fix it? I've done my research but didn't find anything relevant to my problem here. Thank you!",LQ -"

    I am trying to figure out how to run postcss on my final output css file.

    - -
    'strict';
    -
    -const path = require('path');
    -const webpack = require('webpack');
    -const StatsPlugin = require('stats-webpack-plugin');
    -
    -/* POSTCSS Optimizations of CSS files */
    -const clean = require('postcss-clean');
    -const colorMin = require('postcss-colormin');
    -const discardDuplicates = require('postcss-discard-duplicates');
    -const discardEmpty = require('postcss-discard-empty');
    -const mergeRules = require('postcss-merge-rules');
    -const mergeLonghand = require('postcss-merge-longhand');
    -const minifyFonts = require('postcss-minify-font-values');
    -const orderedValues = require('postcss-ordered-values');
    -const uniqueSelectors = require('postcss-unique-selectors');
    -
    -/* EXTRACT CSS for optimization and parallel loading */
    -const ExtractTextPlugin = require('extract-text-webpack-plugin');
    -
    -module.exports = {
    -    entry: './src/index',
    -    output: {
    -        path: path.join(__dirname, 'dist'),
    -        filename: '[name].js',
    -        chunkFilename: '[id].bundle.js',
    -        publicPath: '/dist/',
    -        soureMapFilename: '[file].map'
    -    },
    -    plugins: [
    -        new webpack.optimize.OccurenceOrderPlugin(),
    -        new webpack.NoErrorsPlugin(),
    -        new StatsPlugin('stats.json'),
    -        new ExtractTextPlugin('assets/css/[name].css?[hash]-[chunkhash]-[contenthash]-[name]', {
    -            disable: false,
    -            allChunks: true
    -        })
    -    ],
    -    node: {
    -        net: 'empty',
    -        tls: 'empty',
    -        dns: 'empty'
    -    },
    -    module: {
    -        loaders: [{
    -            test: /\.js$/,
    -            loaders: ['babel'],
    -            exclude: /node_modules/,
    -            include: __dirname
    -        },
    -        {
    -            test: /\.scss$/i,
    -            loader: ExtractTextPlugin.extract('style', ['css', 'postcss', 'sass'])
    -        },
    -        {
    -            test: /\.css$/,
    -            loader: ExtractTextPlugin.extract('style', ['css'])
    -        },
    -        {
    -            test: /\.(eot|woff|woff2|ttf|svg|png|jpg)$/,
    -            loader: 'url-loader?limit=30000&name=[name]-[hash].[ext]'
    -        }]
    -    },
    -    postcss() {
    -        return [mergeRules, mergeLonghand, colorMin, clean, discardEmpty,
    -                orderedValues, minifyFonts, uniqueSelectors, discardDuplicates];
    -    },
    -    sassLoader: {
    -        includePaths: [path.resolve(__dirname, './node_modules')]
    -    }
    -};
    -
    - -

    My current configuration works well at compiling all of the dependent SASS and taking that and the static CSS imports and extracting them using ExtractTextPlugin.

    - -

    It also appears that I can run POSTCSS optimizations on chunks of the CSS, but not the final product. This means I can't get rid of duplicate CSS rules.

    - -

    How do I run POSTCSS on the end-state CSS file AFTER sass-loader and extractTextPlugin have worked their magic?

    -",HQ -"

    I'm using React.JS for a build, and am building a range input slider with two choices for a component.

    - -

    this is my code:

    - -
    <input id=""typeinp"" type=""range"" min=""0"" max=""5"" value=""3"" step=""1""/>
    -
    - -

    When I place it into my client side rendering component and try to toggle it it does not move at all. Testing it onto a JS/PHP build I have going on, it works fine.

    - -

    Why does this not work in JSX/React.JS and what would be a suggested work around?

    - -

    Thanks!

    -",HQ -" public class ArithmeticTester - { - public static void main(String[] args) - { - call(3, ""+"", 4, ""7""); - call(3, ""-"", 4, ""-1""); - call(3, ""*"", 4, ""12""); - call(3, ""@"", 4, ""java.lang.IllegalArgumentException""); - call(13, ""/"", 4, ""3""); - call(13, ""/"", 0, ""java.lang.IllegalArgumentException""); - } - - public static void call(int a, String op, int b, String expected) - { - try - { - System.out.println(Arithmetic.compute(a, op, b)); - } - catch (Throwable ex) - { - System.out.println(ex.getClass().getName()); - } - System.out.println(""Expected: "" + expected); - } - } - -This is provided by the book as the testing class - - public class Arithmetic - { - /** - Computes the value of an arithmetic expression - @param value1 the first operand - @param operator a string that should contain an operator + - * or / - @param value2 the second operand - @return the result of the operation - */ - public static int compute(int value1, String operator, int value2) - { - - int a; - a = 1; - - String b; - b = ""-""; - - int c; - c = 3; - - return (a, b, c); - - - - - - - } - } - -I dont even really know where to begin, i am completely lost at what to even do the book does a shit job of explaining what to do and my teacher is useless at helping students. - -Am i supposed to make an if statement that changes operator ever time it loops? Please help.",LQ -"unfortunately android application has been stooped. At Http Post while attempting to call server at post activity please help - - - -HttpClient cli = new DefaultHttpClient(); - //HttpPost post = new HttpPost(""http://"" + sp.getString(""ip"", ""localhost"") + ""/attendance/cliLogin.php""); - - HttpPost post = new HttpPost(""localhost/attendance/""); - - // seting post data - List loginData = new ArrayList(2); - loginData.add(new BasicNameValuePair(""uname"", uname)); - loginData.add(new BasicNameValuePair(""pass"", pass)); - post.setEntity(new UrlEncodedFormEntity(loginData)); - - // executing login - HttpResponse res = cli.execute(post); - HttpEntity resent = res.getEntity(); - - String result = EntityUtils.toString(resent); - - - // reading response - - if(result.equals(""NoParams"")) - Commons.showToast(""Something went wrong"", true); - else if(result.equals(""Login"")) - { - navi = new Intent(this, HomeActivity.class); - startActivity(navi); - } - else - Commons.showToast(result, true); - } - catch (HttpHostConnectException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - Commons.showToast(""Can't reach server, check the Hostname"", true); - } catch (ParseException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } catch (IOException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - } - else - Commons.showToast(""Username/Password can't be empty"", true); - } -}",LQ -"

    Im new to django and im trying to save json to database. The problem is that im able to get data the data in my views but not sure how to save it in database. Im trying to save the comments

    - -

    models.py

    - -
    class Post(models.Model):
    -    title=models.CharField(max_length=200)
    -    description=models.TextField(max_length=10000)
    -    pub_date=models.DateTimeField(auto_now_add=True)
    -    slug = models.SlugField(max_length=40, unique=True)
    -
    -    def __unicode__(self):
    -        return self.title
    -
    -
    -class Comment(models.Model):
    -    title=models.ForeignKey(Post)
    -    comments=models.CharField(max_length=200)
    -
    -    def __unicode__(self):
    -        return '%s' % (self.title)
    -
    - -

    serializer.py

    - -
    class CommentSerializer(serializers.ModelSerializer):
    -    id = serializers.CharField(source=""title.id"", read_only=True)
    -    title = serializers.CharField(source=""title.title"", read_only=True)
    -
    -class Meta:
    -    model = Comment
    -    fields = ('id','title','comments')
    -
    -
    -class PostSerializer(serializers.ModelSerializer):
    -
    -    class Meta:
    -        model = Post
    -        fields = ('id','title','description','pub_date')
    -
    - -

    Please help me saving the data from views to database

    - -

    view.py

    - -
    def add_comments(request):
    -    if 'application/x-www-form-urlencoded' in request.META['CONTENT_TYPE']:
    -        print 'hi'
    -        data = json.loads(request.body)
    -        comment = data.get('comment', None)
    -        id = data.get('id', None)
    -        title = data.get('title', None) 
    -        ....................# not sure how to save to database
    -       pass
    -
    - -

    Thanks in advance........Please let me know if there is any better way to do it...

    -",HQ -"

    Hi I am trying to create a background drawable for my splash screen which I'll be setting in theme itself. But the bitmap drawable used to keep in the center is getting stretched and I am not able to figure how to keep it normal. Below is my drawable code: -splash_screen_bg.xml

    - -
    <?xml version=""1.0"" encoding=""utf-8""?>
    -<layer-list xmlns:android=""http://schemas.android.com/apk/res/android"">
    -<item>
    -    <shape xmlns:android=""http://schemas.android.com/apk/res/android""
    -        android:shape=""rectangle"">
    -        <gradient
    -            android:angle=""360""
    -            android:centerColor=""@color/colorAccentXDark""
    -            android:endColor=""@color/Black""
    -            android:gradientRadius=""500dp""
    -            android:startColor=""@color/colorAccentXDark""
    -            android:type=""radial""
    -            android:useLevel=""false"" />
    -    </shape>
    -</item>
    -<item
    -    android:bottom=""50dp""
    -    android:top=""50dp"">
    -    <shape xmlns:android=""http://schemas.android.com/apk/res/android""
    -        android:innerRadius=""500dp""
    -        android:innerRadiusRatio=""1""
    -        android:shape=""oval"">
    -        <gradient
    -            android:angle=""360""
    -            android:centerColor=""@color/colorAccentXDark""
    -            android:endColor=""@color/colorAccentXDark""
    -            android:gradientRadius=""400dp""
    -            android:startColor=""@color/colorAccent""
    -            android:type=""radial""
    -            android:useLevel=""false"" />
    -    </shape>
    -</item>
    -<item android:gravity=""center"">
    -    <bitmap android:src=""@drawable/ty_logo"" />
    -</item>
    -</layer-list>
    -
    - -

    Here is code where I am setting this drawable as background of an activity:

    - -
     <style name=""TYTheme"" parent=""SearchActivityTheme.NoActionBar"">
    -    <item name=""colorPrimaryDark"">@color/colorAccentXDark</item>
    -    <item name=""android:alertDialogTheme"">@style/AlertDialogTheme</item>
    -    <item name=""android:windowBackground"">@drawable/splash_screen_bg</item>
    -</style>
    -
    - -

    So here the bitmap drawable ty_logo is an png is getting stretched in my phone. Since there is no scaleType option with bitmapDrawable I don't know how to handle it.

    -",HQ -"I am here with a problem in SQL of android to read a single contact. I have tried every thing to solve the issue butt failed to do so. When I called the method form main my app crashed. Here is my code, I need quick solution kindly help me out fast. - - public contactsdetail readContact(int id) - { - SQLiteDatabase db = this.getReadableDatabase(); - contactsdetail contact = new contactsdetail(); - // get contact query - Cursor cursor = db.query(table_Contact,new String[] { name_ID, contact_NAME, contact_NUMBER }, name_ID + ""=?"", new String[]{ String.valueOf(id) }, null, null, null, null); - // if results !=null, parse the first one - if(cursor != null) - cursor.moveToFirst(); - contactsdetail contact = new contactsdetail(Integer.parseInt(cursor.getString(0)),cursor.getString(1), cursor.getString(2)); - - - return contact; - } - - ",LQ -"

    For a research I'm doing, I'm in need of capturing the result status (Passed/Failed) after running the test method (@Test), from @AfterMethod.

    - -

    I have been using the import org.testng.ITestResult; as an out come of my research to get my work easier after going the several online blogs, but It seems like it didn't success my expectation as always the result outputs as passed, even though an assertion failed.

    - -

    My Code is as follows :

    - -
    public class SampleTestForTestProject {
    -ITestResult result;
    -
    -@Test(priority = 1)
    -public void testcase(){
    -
    -    // intentionally failing the assertion to make the test method fail 
    -    boolean actual = true;
    -    boolean expected = false;
    -    Assert.assertEquals(actual, expected);
    -
    -}
    -
    -@AfterMethod
    -public void afterMethod()  {
    -
    -    result = Reporter.getCurrentTestResult();
    -
    -    switch (result.getStatus()) {
    -    case ITestResult.SUCCESS:
    -        System.out.println(""======PASS====="");
    -        // my expected functionality here when passed
    -        break;
    -
    -    case ITestResult.FAILURE:
    -        System.out.println(""======FAIL====="");
    -        // my expected functionality here when passed
    -        break;
    -
    -    case ITestResult.SKIP:
    -        System.out.println(""======SKIP BLOCKED====="");
    -        // my expected functionality here when passed
    -        break;
    -
    -    default:
    -        throw new RuntimeException(""Invalid status"");
    -    }
    -  }
    -}
    -
    - -

    Result in the Console :

    - -
    [TestNG] Running:  C:\Users\USER\AppData\Local\Temp\testng-eclipse--988445809\testng-customsuite.xml
    -
    -======PASS=====
    -
    -FAILED: testcaseFail
    -java.lang.AssertionError: expected [false] but found [true]
    -
    - -

    My expectation is to get the test result to a variable to get through the switch, as given in the above code snippet, and get printed ""======FAIL====="" when the test method fail.

    - -

    Will someone be able assist me kindly to catch the execution test result for each test method (@Test). If the method I have approached is wrong, please assist me with a code snippet to the correct approach, kindly.

    - -

    Thank you in advance

    -",HQ -"

    Is it possible to wget / curl protected files from Google Cloud Storage without making them public? I don't mind a fixed predefined token. I just want to avoid the case where my public file gets leeched, costing me good dollars.

    -",HQ -"When using this code no CSS/Javascript works (It just loads the HTML): - - function functionName(limit) { - /* - var xhttp = new XMLHttpRequest(); - xhttp.onreadystatechange = function() { - if (xhttp.readyState == 4 && xhttp.status == 200) { - var text = xhttp.responseText; - document.getElementById(""content"").innerHTML = """"; - document.getElementById(""content"").innerHTML = text; - } - } - xhttp.open(""GET"", ""?x=test&limit="" + limit, false); - xhttp.send(); - */ - - - } - -When using jQuery CSS/Javascript works, now the problem is that the page scrolls up when loading the content. - -$('#content').load('?x=test&limit="" + limit); - -What i want is a way to load an URL to a DIV, where CSS and Javascript works. -And like .innerHTML i want to load the content without scrolling to the top. - -Hope for help, yesterday i googled for 6-8 hours, and im a google-fu guru =) -//PsyTsd",LQ -"

    Because of complex logic, I have to render many components when this.props.navigator.push(), slow navigator transitions make app unavailable.

    - -

    - -

    then I notice here provide InteractionManager.runAfterInteractions api to solve this problem,

    - -

    I need bring most of components which consumed long time to callback after navigator animation finished, but I don't know where should I call it,

    - -

    maybe a simple example is enough,

    - -

    thanks for your time.

    -",HQ -"

    My app needs to be able to receive SMS messages. It all works, but I get this lint warning:

    - -
    -

    BroadcastReceivers that declare an intent-filter for SMS_DELIVER or - SMS_RECEIVED must ensure that the caller has the BROADCAST_SMS - permission, otherwise it is possible for malicious actors to spoof - intents.

    -
    - -

    How do I ""ensure that the caller has the BROADCAST_SMS permission""?

    - -

    In my manifest I have:

    - -
    <uses-permission android:name=""android.permission.RECEIVE_SMS"" />
    -<application ...>
    -    <receiver
    -        android:name="".SmsReceiver""
    -        android:enabled=""true""
    -        android:exported=""true"">
    -        <intent-filter android:priority=""1000"">
    -            <action android:name=""android.provider.Telephony.SMS_RECEIVED"" />
    -        </intent-filter>
    -    </receiver>
    -</application>
    -
    - -

    My code:

    - -
    public class SmsReceiver extends BroadcastReceiver {
    -    public SmsReceiver() {}
    -
    -    @Override
    -    public void onReceive(final Context context, final Intent intent) {
    -
    -        final Bundle bundle = intent.getExtras();
    -        if (bundle != null) {
    -            final Object[] pdusObj = (Object[]) bundle.get(""pdus"");
    -            for (int i = 0; i < pdusObj.length; i++) {
    -                final SmsMessage currentMessage = SmsMessage.createFromPdu((byte[]) pdusObj[i]);
    -                // use currentMessage
    -            }
    -        }
    -    }
    -}
    -
    -",HQ -"I am processing some CSV data from a client and one of the headers is 'booktitle'. The values of 'booktitle' are text qualifed with double quote and there are quotes in some of the titles, such as; - -""How to draw the ""Marvel"" way"" - -I asked the client to escape the quotes in quotes with double quotes, and they sent me back this - -'""How to draw the """"""Marvel"""""" way ""' - -So single, double, then triple quote. My question is will this work? I have not seen it done this way before for escaping text qualifiers. -Thanks",LQ -"

    I want to pass string from Main to Header. It succeeds but warning. I'm a beginner of React so I can not figure out what it must be a function means.

    - -

    Anyone knows how to solve this warning?

    - -

    The warning is:

    - -

    - -

    And my code is below:

    - -

    Main.js

    - -
    import React from 'react';
    -
    -import Header from './Header';
    -import AppList from './AppList/AppList';
    -import Footer from './Footer';
    -
    -const propTypes = {
    -  mainInfo: React.PropTypes.shape({
    -    title: React.PropTypes.string.isRequired,
    -    apps: React.PropTypes.array.isRequired,
    -  }),
    -};
    -
    -class Main extends React.Component {
    -  static methodsAreOk() {
    -    return true;
    -  }
    -
    -  render() {
    -    return (
    -      <div>
    -        <Header title={this.props.mainInfo.title} />
    -        <AppList apps={this.props.mainInfo.apps} />
    -        <Footer />
    -      </div>
    -    );
    -  }
    -}
    -
    -Main.propTypes = propTypes;
    -
    -export default Main;
    -
    - -

    Header.js

    - -
    import React from 'react';
    -
    -const propTypes = {
    -  title: React.PropTypes.string.isRequred,
    -};
    -
    -class Header extends React.Component {
    -  static methodsAreOk() {
    -    return true;
    -  }
    -
    -  render() {
    -    return (
    -      <div className=""header"">
    -        <h1>{this.props.title}</h1>
    -      </div>
    -    );
    -  }
    -}
    -
    -Header.propTypes = propTypes;
    -
    -export default Header;
    -
    -",HQ -"

    I have installed APCu extension in PHP7

    - -

    But I get this error

    - -
    Call to undefined function apc_fetch()
    -
    - -

    -",HQ -"

    I want to implement Skrollr as an Angular2 attribute directive.

    - -

    So, the format may be:

    - -
    <body my-skrollr>
    -</body>
    -
    - -

    However, in order to implement this, I need to be able to detect changes in the DOM in child elements below the containing tag (in this case, <body>), so that I can call skrollr.init().refresh(); and update the library to work with the new content.

    - -

    Is there a straightforward way of doing this that I'm not aware of, or am I approaching this incorrectly?

    -",HQ -"

    In a React/Webpack app with CSS modules I have a module .card in its own .scss file and another module named .stat which is a content to be shown in the .card.

    - -

    What I need to achieve the following, but int the 'css-modules' way:

    - -
    .card:hover .stat {
    -    color: #000;
    -}
    -
    - -

    If I @import .card inside the .stat module, all of the .card css is dumped into the .stat output, but I only want to be able to use the correct class name for the .card.

    - -

    What's the correct way to solve the problem?

    -",HQ -" I'm getting server time using Alamofire, -And with NSTimer I refresh this time every second. - -But I get error - -> unrecognized selector sent to instance 0x7ff4636126a0' - -and also if I change selector to - -> selector: ""getTime:"" - - , it gives me an error like this. - -[![enter image description here][1]][1] - - -How should I fix it? - -This is my code. - - - - import UIKit - import Alamofire - - typealias DownloadComplete = () -> () - - class ViewController: UIViewController { - - @IBOutlet var currentTime: UILabel! - var stringDateFromServer = String() - let dateFormatter = NSDateFormatter() - - override func viewDidLoad() { - super.viewDidLoad() - - getTime { () -> () in - - self.dateFormatter.dateFormat = ""EEE, dd MMM yyyy HH:mm:ss zzz"" - self.dateFormatter.locale = NSLocale(localeIdentifier: ""en_US"") - - let date2 = self.dateFormatter.dateFromString(self.stringDateFromServer)! - - self.dateFormatter.locale = NSLocale.currentLocale() - let date3 = self.dateFormatter.stringFromDate(date2) - - self.currentTime.text = date3 - } - - NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: ""getTime"", userInfo: nil, repeats: true) - - } - - func getTime(completed: DownloadComplete) { - - let url = NSURL(string: ""http://google.com"")! - - Alamofire.request(.HEAD, url).responseJSON { (Response) -> Void in - - let result = Response.response - - if let headers = result?.allHeaderFields { - if let date = headers[""Date""] as? String { - self.stringDateFromServer = date - - } - } - completed() - } - } - - } - - - [1]: http://i.stack.imgur.com/dCItg.png",LQ -"

    I am rewriting a web application from Mapbox.js to Mapbox GL js. -Using the standard 'mapbox://styles/mapbox/streets-v8' style, where can I find a list of all working marker icons?

    - -

    Here is my code:

    - -
    m.map.addSource(""markers"", {
    -        ""type"": ""geojson"",
    -        ""data"": {
    -            ""type"": ""FeatureCollection"",
    -            ""features"": {
    -                ""type"": ""Feature"",
    -                ""geometry"": {
    -                    ""type"": ""Point"",
    -                    ""coordinates"": [""-75.532965"", ""35.248018""]
    -                },
    -                ""properties"": {
    -                    ""title"": ""Start"",
    -                    ""marker-symbol"": ""entrance"",
    -                    ""marker-size"": ""small"",
    -                    ""marker-color"": ""#D90008""
    -                }
    -            }
    -        }
    -    });
    -    m.map.addLayer({
    -        ""id"": ""markers"",
    -        ""type"": ""symbol"",
    -        ""source"": ""markers"",
    -        ""layout"": {
    -            ""icon-image"": ""{marker-symbol}-15"", //but monument-15 works
    -            ""text-field"": ""{title}"",
    -            ""text-font"": [""Open Sans Semibold"", ""Arial Unicode MS Bold""],
    -            ""text-offset"": [0, -1.6],
    -            ""text-anchor"": ""top""
    -        }
    -    });
    -
    - -

    I read that all Maki icons should be made available for styles that don't have icons as a default: -https://github.com/mapbox/mapbox-gl-styles/issues/241 -But most of them don't work. -Also there is the problem with the sizes - for Maki they were -small, -medium and -large, and now I see -11 and -15.

    - -

    I just need to use some basic marker icons.

    -",HQ -"

    I've been banging my head on the wall for the past few days trying to implement OCSP validation in Android.

    - -

    So far in iOS has been easy to implement, but for Android every single piece of information I've come across just doesn't work. I've been using both my customer's API endpoint and this website to run tests for certificate revocation and so far I haven't been lucky to detect a revoked certificate inside my Android Application. I'm using OKHTTPClient. -Here's the method where I validate certification revocation

    - -
    public void checkServerTrusted(X509Certificate[] chain, String authType)
    -            throws CertificateException {
    -
    -        assert (chain != null);
    -        if (chain == null) {
    -            throw new IllegalArgumentException(
    -                    ""checkServerTrusted: X509Certificate array is null"");
    -        }
    -
    -        assert (chain.length > 0);
    -        if (!(chain.length > 0)) {
    -            throw new IllegalArgumentException(
    -                    ""checkServerTrusted: X509Certificate is empty"");
    -        }
    -
    -        if (VERIFY_AUTHTYPE) {
    -            assert (null != authType && authType.equalsIgnoreCase(AUTH_TYPE));
    -            if (!(null != authType && authType.equalsIgnoreCase(AUTH_TYPE))) {
    -                throw new CertificateException(
    -                        ""checkServerTrusted: AuthType is not "" + AUTH_TYPE);
    -            }
    -        }
    -
    -        if(chain[0]!=null){
    -            try {
    -                X509Certificate issuerCert = chain[1];
    -                X509Certificate c1 = chain[0];
    -                TrustAnchor anchor = new TrustAnchor(issuerCert, null);
    -                Set anchors = Collections.singleton(anchor);
    -                CertificateFactory cf = CertificateFactory.getInstance(""X.509"");
    -                List list = Arrays.asList(new Certificate[]{c1});
    -                CertPath path = cf.generateCertPath(list);
    -                PKIXParameters params = new PKIXParameters(anchors);
    -                // Activate certificate revocation checking
    -                params.setRevocationEnabled(false);
    -                // Activate OCSP
    -                Security.setProperty(""ocsp.enable"", ""true"");
    -
    -                // Ensure that the ocsp.responderURL property is not set.
    -                if (Security.getProperty(""ocsp.responderURL"") != null) {
    -                    throw new
    -                            Exception(""The ocsp.responderURL property must not be set"");
    -                }
    -                CertPathValidator validator = CertPathValidator.getInstance(""PKIX"");
    -                PKIXCertPathValidatorResult result = (PKIXCertPathValidatorResult) validator
    -                        .validate(path, params);
    -
    -                System.out.println(""VALID"");
    -            } catch (Exception e) {
    -                System.out.println(""EXCEPTION "" + e.getMessage());
    -                e.printStackTrace();
    -            }
    -
    -",HQ -"

    I am learning javascript myself. I found if I declare a function with same arguments it just working fine:

    - -
    function func(a, b, a){
    -  return b;
    -}
    -alert(func(1,2,3));
    -
    - -

    But if I do this :

    - -
    function func(a, b, a = 5){
    -  return b;
    -}
    -alert(func(1,2,3)); 
    -//Firebug error - SyntaxError: duplicate argument names not allowed in this context
    -
    - -

    Then its not working anymore. What is the logic behind that it was working for first equation but not for second one ?

    -",HQ -"

    I have used Google play unity package for google play Service sign In. Using the profile ID(generated at sign In) I have identified the users.But as of now,the updated google Play games generates new profile ID(which starts with 'g') for the same User.Is there a way for me to identify the old profile Id using the updated Google Play Games Gamer ID.

    -",HQ -"

    Is it possible to add css rule to an element at some page by adblock? -Something like this

    - -
    #myElement {
    -    color: white !important;
    -}
    -
    - -

    I tried to find a script that updates style of this element on page load but it seems that it is not a best way.

    -",HQ -"
    -

    Missing host to link to! Please provide the :host parameter, set - default_url_options[:host], or set :only_path to true

    -
    - -

    I randomly get this error at time, generally restarting the server fixes the issue for a while, and then it shows up again. -I have added -config.action_mailer.default_url_options = ""localhost:3000"", in the development and test.rb files.

    - -

    Also, I have used include Rails.application.routes.url_helpers -in one module to get access to the routes, I read this could be the reason I get these errors but removing it will leave me with no access to the routes.
    -The module is for the datatables gem.

    -",HQ -"

    In this code assigning to b1 works, but it won't allow assigning to b2 (with or without the static cast). I was actually trying to solve the opposite problem, public inheritance but not implicitly converting to the base. However the cast operator never seems to be used. Why is this?

    - -
    struct B {};    
    -
    -struct D1 : private B {
    -    operator B&() {return *this;}
    -    B& getB() {return *this;}
    -};
    -
    -struct D2 : public B {
    -    explicit operator B&() {return *this;}
    -};
    -
    -struct D3 : public B {
    -    operator B&() = delete;
    -};
    -
    -void funB(B& b){}
    -
    -int main () {
    -  D1 d1;
    -  funB(d1.getB()); // works
    -  // funB(d1); // fails to compile with 'inaccessible base class
    -  D2 d2;
    -  funB(d2); // works
    -  D3 d3;
    -  funB(d3); // works 
    -  return 0;
    -}
    -
    -",HQ -"

    I try to make gcm work.

    - -

    When our server sends a push notification I got these two errors in my app's log:

    - -
    -

    E/GcmReceiver(8049): Failed to resolve target intent service, skipping - classname enforcement E/GcmReceiver(8049): Error while delivering the - message: ServiceIntent not found.

    -
    - -

    In my app's folder I got the google-services.json file.

    - -

    I have added the 2 needed services and the receiver to my Manifest:

    - -
      <receiver
    -        android:name=""com.google.android.gms.gcm.GcmReceiver""
    -        android:exported=""true""
    -        android:permission=""com.google.android.c2dm.permission.SEND"" >
    -        <intent-filter>
    -            <action android:name=""com.google.android.c2dm.intent.RECEIVE"" />
    -            <category android:name=""com.myapppackage.application"" />
    -        </intent-filter>
    -    </receiver>
    -
    -
    -    <service
    -        android:name=""com.myapppackage.application.gcm.newgcm.RegisterGCMTokenService""
    -        android:exported=""false"">
    -    </service>
    -
    -
    -    <service
    -        android:name=""com.myapppackage.application.gcm.newgcm.MyInstanceIDListenerService""
    -        android:exported=""false"">
    -        <intent-filter>
    -            <action android:name=""com.google.android.gms.iid.InstanceID""/>
    -        </intent-filter>
    -    </service>
    -
    - -

    I have also added these two as java classes. The gcm token providing and uploading to our server's is fine. I also got the push 'event' but somehow I got those 2 errors above, and no messages.

    - -

    I have added my project number from google api console to strings.xml as 'google_app_id'

    - -

    The API keys should be all right because I do get the push event, but somehow the message is not provided.

    - -

    My gradle's app level dependencies have:

    - -
    compile 'com.google.android.gms:play-services:8.+'
    -
    - -

    My gradle's project level dependencies have:

    - -
    classpath 'com.google.gms:google-services:1.3.1'
    -
    - -

    So what the heck?! Please help me if you can.

    -",HQ -"

    https://github.com/h6ah4i/android-advancedrecyclerview

    - -

    This seems to be a great library in terms of what functionality it offers. However, it lacks good documentation. It has a ""tutorial"" on Swipeable items, but like some other people I couldn't follow it.

    - -

    Does anyone have a working example or can anyone make a simple Use Case of swiping an item and showing a button under it using this library? It would be useful for lots of people interested in this functionality.

    -",HQ -"

    One of my roles has two different variable types. One is public (things like package versions and other benign information). These can be committed to SCM without a worry. It also requires some private information (such as API keys and other secret information). I'm using ansible-vault to encrypt secret information. My solution was to have vars/main.yaml for pulic, and vars/vault.yml for the encrypted private information.

    - -

    I came across a problem and am uncertain what's the best practice or actual solution here. It seems that ansible only loads the vars/main.yml file. Naturally I do not want to encrypt the public information so I looked for solution. So far the only solution I came up with (suggested on IRC) is to create group_vars/all/vault.yml and prefix all variables with the role name. This works because ansible seems to recursively load everything under group_vars. This does work but seems organizationally incorrect because the variables are for a specific role and not ""globally universally true"". I also tried to put include: vars/vault.yml into vars/main.yml but that did not work.

    - -

    Is there a proper way to do this?

    -",HQ -"

    I am building a real time chat into a rails 4 application. It seems ActionCable is the tool for this kind of job.

    - -

    Is it possible to use ActionCable in rails 4 or do I have update to rails 5?

    - -

    I cannot find any introduction for ActionCable with rails 4.

    -",HQ -"

    I need to document with Swagger an API that uses, both as input and output, maps of objects, indexed by string keys.

    - -

    Example:

    - -
    {
    -    ""a_property"": {
    -        ""foo"": {
    -            ""property_1"": ""a string 1"",
    -            ""property_2"": ""a string 2""
    -        },
    -        ""bar"": {
    -            ""property_1"": ""a string 3"",
    -            ""property_2"": ""a string 4""
    -        }
    -    }
    -}
    -
    - -

    ""foo"" and ""bar"" can be any string keys, but they should be unique among the set of keys.

    - -

    I know that, with Swagger, I can define an array of objects, but this gives a different API since we then would have something as:

    - -
    {
    -    ""a_property"": [
    -        {
    -            ""key"": ""foo""
    -            ""property_1"": ""a string 1"",
    -            ""property_2"": ""a string 2""
    -        },
    -        {
    -            ""key"": ""bar""
    -            ""property_1"": ""a string 3"",
    -            ""property_2"": ""a string 4""
    -        }
    -    ]
    -}
    -
    - -

    I have read the 'Open API Specification' - 'Add support for Map data types #38' page. As far as I understand, it recommends to use additionalProperties, but it doesn't seem to answer my need (or it doesn't work with Swagger UI 2.1.4 that I use). Did I miss something?

    - -

    So far I have found the following work-around (in Swagger JSON):

    - -
    a_property: {
    -    description: ""This is a map that can contain several objects indexed by different keys."",
    -    type: object,
    -    properties: {
    -        key: {
    -            description: ""map item"",
    -            type: ""object"",
    -            properties: {
    -                property_1: {
    -                    description: ""first property"",
    -                    type: string
    -                },
    -                property_2: {
    -                    description: ""second property"",
    -                    type: string
    -                }
    -            }
    -        }
    -    }
    -}
    -
    - -

    This almost does the job, but the reader has to understand that ""key"" can be any string, and can be repeated several times.

    - -

    Is there a better way to achieve what I need?

    -",HQ -"

    I have the following models:

    - -
    class Agreement(models.Model):
    -    ...
    -    organization = models.ForeignKey(""Organization"")
    -
    -class Signed_Agreement(models.Model):
    -    agreement = models.ForeignKey(""Agreement"")
    -    member = models.ForeignKey(""Member"")
    -
    - -

    What I'm trying to do is get a list of all the agreements for a particular organization (self.organization) and annotate each agreement with information about whether or not it has been signed by a particular member (self.member).

    - -

    If the Agreement has been signed, then there exists an instance of Signed_Agreement for the particular agreement and member.

    - -

    How do I write a query for this?

    - -

    Here's my effort so far:

    - -
    from django.db.models import When, F, Q, Value
    -
    -def get_queryset(self):
    -
    -    agreements = _agreement_model.Agreement.objects.filter(
    -        organization=self.organization
    -    ).annotate(
    -        signed=When(Q(signed_agreement__member=self.member), then=Value(True))
    -    ).order_by(
    -        'name'
    -    )
    -
    -    return agreements
    -
    - -

    This is not producing the correct results.

    - -

    Any help would be appreciated. Thanks in advance.

    -",HQ -"

    I've recently started getting an out of memory error while using PyCharm 5.0.4 -The message is:

    - -

    There's not enough memory to perform the requested operation. - Please increase Xmx setting and shutdown PyCharm for change to take effect.

    - -

    I've already increased the value to 1024 MB, and to my knowledge nothing has changed in either my Python or system setups.

    - -

    What exactly does the size of the Xmx memory manage, and how would I go about debugging what's causing the issue?

    -",HQ -"

    I would like to write a simple extension for Visual Studio Code to allow basic drag and drop copy/paste functionality but I can't find any way to be notified of mouse events. Have I overlooked something obvious or has the editor intentionally been designed to be keyboard only (well mostly)?

    - -

    Note: I am referring to the TypeScript based Visual Studio Code editor not the full-blown Visual Studio.

    -",HQ -"

    I'm using a webhook to post messages to Slack via PowerShell script and I'd like to include a link to a network folder. I was able to do it with

    - -
        <file://server/folder|files>
    -
    - -

    however when the generated 'files' link is clicked nothing happens. Is there a way to specify target so that a clicked link opens in a new window? If I copy the generated link and paste it into the browser, the index is rendered just fine and that would be sufficient for my purposes. Are there any alternative solutions?

    -",HQ -"I want to capture the string output and append it to another string. -I cannot figure that out and am currently trying to append the return, which is an array, to a string, causing an error. - - 2.2.3 :001 > deli_line = [""stuff"", ""things"", ""people"", ""places""] - => [""stuff"", ""things"", ""people"", ""places""] - 2.2.3 :002 > deli_line.each_with_index do |x, i| print ""#{i+1}. #{x} "" end - 1. stuff 2. things 3. people 4. places => [""stuff"", ""things"", ""people"", ""places""] - -I care about capturing ""1. stuff 2. things 3. people 4. places"" as a string. - -then I want to do - - string1 += ""1. stuff 2. things 3. people 4. places""",LQ -"

    I'm trying to remove the quotes generated by Emmet around the props.onInitiateBattle value for custom attribute onClick.

    - -

    My input (then CTRL + E to expand, similar to tab):
    -button.btn[type=""button""][onClick={props.onInitiateBattle}]

    - -

    Emmet's output:
    -<button className=""btn"" type=""button"" onClick=""{props.onInitiateBattle}""></button>

    - -

    Notice props.onInitiateBattle WITH quotes, which isn't good.

    - -

    What I expect (props... WITHOUT quotes):
    -<button className=""btn"" type=""button"" onClick={props.onInitiateBattle}></button>

    - -

    Wrapping it around double brackets doesn't work either.

    -",HQ -"I have a question regarding the loading of Jquery files. From what I've read so far the general consensus appears to be: less script files is better, but I could not find an answer to my next question: - -Say you have a script file of 4000 lines of code. Some 500 lines are only used on one specific page. Would it make sense (performance-wise) to only load this part of the script when that specific page is opened (using something like if URL == X then load {})? Or wouldn't it matter if you load the entire script just once. - -Thank you all in advance for your advice",LQ -"

    I'm using TensorFlow to train a Convolutional Neural Network (CNN) for a sign language application. The CNN has to classify 27 different labels, so unsurprisingly, a major problem has been addressing overfitting. I've taken several steps to accomplish this:

    - -
      -
    1. I've collected a large amount of high-quality training data (over 5000 samples per label).
    2. -
    3. I've built a reasonably sophisticated pre-processing stage to help maximize invariance to things like lighting conditions.
    4. -
    5. I'm using dropout on the fully-connected layers.
    6. -
    7. I'm applying L2 regularization to the fully-connected parameters.
    8. -
    9. I've done extensive hyper-parameter optimization (to the extent possible given HW and time limitations) to identify the simplest model that can achieve close to 0% loss on training data.
    10. -
    - -

    Unfortunately, even after all these steps, I'm finding that I can't achieve much better that about 3% test error. (It's not terrible, but for the application to be viable, I'll need to improve that substantially.)

    - -

    I suspect that the source of the overfitting lies in the convolutional layers since I'm not taking any explicit steps there to regularize (besides keeping the layers as small as possible). But based on examples provided with TensorFlow, it doesn't appear that regularization or dropout is typically applied to convolutional layers.

    - -

    The only approach I've found online that explicitly deals with prevention of overfitting in convolutional layers is a fairly new approach called Stochastic Pooling. Unfortunately, it appears that there is no implementation for this in TensorFlow, at least not yet.

    - -

    So in short, is there a recommended approach to prevent overfitting in convolutional layers that can be achieved in TensorFlow? Or will it be necessary to create a custom pooling operator to support the Stochastic Pooling approach?

    - -

    Thanks for any guidance!

    -",HQ -"

    I am using ES6 with Babel in my project and I am getting an error when I declare one of my const

    - -
    'use strict';
    -
    -const APP = window.APP = window.APP || {};
    -const _ = window._;
    -
    -APP.personalCard = (function () {
    -
    -   ...
    -
    -}());
    -
    - -

    the error

    - -
    -

    Uncaught TypeError: Identifier 'APP' has already been declared

    -
    - -

    and that is the whole file, I don't have that declare anywhere else in that file. But I have declared that var in the top of the other files.

    - -

    What do you think it should be ?

    -",HQ -"

    According to MSDN, it is a recommended practice to include both the private and public keys used for strong-naming assemblies into the public source control system if you're developing open-source software:

    - -
    -

    If you are an open-source developer and you want the identity benefits of a strong-named assembly, consider checking in the private key associated with an assembly into your source control system.

    -
    - -

    This is something that confuses me greatly. Making the private key public? Wouldn't the whole purpose and security of asymmetric cryptography be defeated in this case?

    - -

    I see in the same article this note:

    - -
    -

    Do not rely on strong names for security. They provide a unique identity only.

    -
    - -

    This does not help reduce my confusion. Why then use a private-public key pair if security is not the aim? Is the strong-naming mechanism in .NET using private-public key pairs in an inappropriate way? My guess is that I'm missing or misunderstanding something.

    -",HQ -"

    If I have a table with a column named json_stuff, and I have two rows with

    - -

    { ""things"": ""stuff"" } and { ""more_things"": ""more_stuff"" }

    - -

    in their json_stuff column, what query can I make across the table to receive [ things, more_things ] as a result?

    -",HQ -"

    I'm trying to set up a dev environment for my project.

    - -

    I have a container (ms1) which should be put in his own network (""services"" in my case), and a container (apigateway) which should access that network while exposing an http port to the host's network.

    - -

    Ideally my docker compose file would look like this:

    - -
    version: '2'
    -services:
    -    ms1:
    -        expose:
    -            - ""13010""
    -        networks:
    -            services:
    -                aliases:
    -                    - ms1
    -   apigateway:
    -        networks:
    -            services:
    -                aliases:
    -                    - api
    -        network_mode: ""host""
    -networks:
    -    services:
    -
    - -

    docker-compose doesn't allow to use network_mode and networks at the same time.

    - -

    Do I have other alternatives?

    - -

    At the moment I'm using this:

    - -
       apigateway:
    -        networks:
    -            services:
    -                aliases:
    -                    - api
    -        ports:
    -            - ""127.0.0.1:10000:13010""
    -
    - -

    and then apigateway container listens on 0.0.0.0:13010. It works but it is slow and it freezes if the host's internet connection goes down.

    - -

    Also, I'm planning on using vagrant in the future upon docker, does it allow to solve in a clean way?

    -",HQ -"

    how do I check the HTTP status code using nightwatch.js? I tried

    - -
      browser.url(function (response) {
    -     browser.assert.equal(response.statusCode, 200);
    -  });
    -
    - -

    but of course that does not work.

    -",HQ -"

    I have a side navigation controller and present it via a UIButton. When I make this NC the root view controller directly by [self presentviewcontroller: NC animated: YES completion: nil], some reason the menu side of the NC is blocked by a UITransitionView that I cannot get to disappear.

    - -

    I've attached an image of the . is another.

    - -

    I have tried the following:

    - -
    UIWindow *window = [(AppDelegate *)[[UIApplication sharedApplication] delegate] window];
    -    window.backgroundColor = kmain;
    -
    -
    -    CATransition* transition = [CATransition animation];
    -    transition.duration = .5;
    -    transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    -    transition.type = kCATransitionPush;
    -    transition.subtype = kCATransitionFromTop;
    -
    -    [nc.view.layer addAnimation:transition forKey:kCATransition];
    -
    -    [UIView transitionWithView:window
    -                      duration:0.5
    -                       options:UIViewAnimationOptionTransitionNone
    -                    animations:^{ window.rootViewController = nc; }
    -                    completion:^(BOOL finished) {
    -                        for (UIView *subview in window.subviews) {
    -                            if ([subview isKindOfClass:NSClassFromString(@""UITransitionView"")]) {
    -                                [subview removeFromSuperview];
    -                            }
    -                        }
    -                    }];
    -
    - -

    But it is very hacky, and as the rootviewcontroller of the window changes during the transition, it's a little choppy and part of the navigationcontroller and the top right corner turn black. It looks very bad.

    -",HQ -"

    I use del package to delete folder:

    - -
    gulp.task('clean', function(){
    -    return del('dist/**/*', {force:true});
    -});
    -
    - -

    But if there are many subdirectory in dist folder and I want to delete dist folder and all its files, is there any easy way to do it?

    - -

    Ps: I don't want to do in this way: dist/**/**/**/**/**/**/... when there are so many subdirectories.

    -",HQ -"

    I have created a new Image Assets in the Drawable cus I need to insert a new image in my app, but every time I create a new image asset, the output turns to be no colour at all. I've attached the pic of it.

    - -

    It's confusing and whenever I import it in my layout, it's just grey all over as you can see in the image. Why is it cus I can't find any ready solutions? Let me know if I'm overlooked.

    -",HQ -"

    I'm new to React, and I'd like to ask a strategy question about how best to accomplish a task where data must be communicated between sibling components.

    - -

    First, I'll describe the task:

    - -

    Say I have multiple <select> components that are children of a single parent that passes down the select boxes dynamically, composed from an array. Each box has exactly the same available options in its initial state, but once a user selects a particular option in one box, it must be disabled as an option in all other boxes until it is released.

    - -

    Here's an example of the same in (silly) code. (I'm using react-select as a shorthand for creating the select boxes.)

    - -

    In this example, I need to disable (ie, set disabled: true) the options for ""It's my favorite"" and ""It's my least favorite"" when a user selects them in one select box (and release them if a user de-selects them).

    - -

    -
    -
    var React = require('react');
    -var Select = require('react-select');
    -
    -
    -
    -var AnForm = React.createClass({
    -
    -    render: function(){
    -
    -
    -        // this.props.fruits is an array passed in that looks like:
    -        // ['apples', 'bananas', 'cherries','watermelon','oranges']
    -        var selects = this.props.fruits.map(function(fruit, i) {
    -
    -            var options = [
    -                { value: 'first', label: 'It\'s my favorite', disabled: false },
    -                { value: 'second', label: 'I\'m OK with it', disabled: false },
    -                { value: 'third', label: 'It\'s my least favorite', disabled: false }
    -            ];
    -
    -
    -            return (
    -                <Child fruit={fruit} key={i} options={options} />
    -            );
    -        });
    -
    -
    -        return (
    -            <div id=""myFormThingy"">
    -                {fruitSelects}
    -            </div>
    -        )
    -    }
    -
    -});
    -
    -
    -var AnChild = React.createClass({
    -
    -    getInitialState: function() {
    -        return {
    -            value:'',
    -            options: this.props.options
    -        };
    -    },
    -
    -    render: function(){
    -
    -        function changeValue(value){
    -            this.setState({value:value});
    -        }
    -
    -
    -        return (
    -            <label for={this.props.fruit}>{this.props.fruit}</label>
    -            <Select
    -                name={this.props.fruit}
    -                value={this.state.value}
    -                options={this.state.options}
    -                onChange={changeValue.bind(this)}
    -                placeholder=""Choose one""
    -            />
    -        )
    -    }
    -});
    -
    -
    -

    - -

    Is updating the child options best accomplished by passing data back up to the parent through a callback? Should I use refs to access the child components in that callback? Does a redux reducer help?

    - -

    I apologize for the general nature of the question, but I'm not finding a lot of direction on how to deal with these sibling-to-sibling component interactions in a unidirectional way.

    - -

    Thanks for any help.

    -",HQ -"

    When looking at how websites such as Facebook stores profile images, the URLs seem to use randomly generated value. For example, Google's Facebook page's profile picture page has the following URL:

    - -
    https://scontent-lhr3-1.xx.fbcdn.net/hprofile-xft1/v/t1.0-1/p160x160/11990418_442606765926870_215300303224956260_n.png?oh=28cb5dd4717b7174eed44ca5279a2e37&oe=579938A8
    -
    - -

    However why not just organise it like so:

    - -
    https://scontent-lhr3-1.xx.fbcdn.net/{{ profile_id }}/50x50.png
    -
    - -

    Clearly this would be much easier in terms of storage and simplicity. Am I missing something? Thanks.

    -",HQ -"

    I'm trying to test a component which inherits context from a root component, without loading/rendering everything from the root down. I've tried and searched for examples on how to mock the context but can't find anything (at least that doesn't use jest).

    - -

    Here's a simplified example of what I'm trying to achieve.

    - -

    Is there a simple way I can mock reactEl.context for the test?

    - -
    /**
    -* Root Element that sets up & shares context
    -*/
    -class Root extends Component {
    -  getChildContext() {
    -    return { 
    -      language: { text: 'A String'} 
    -    };
    -  }
    -
    -  render() {
    -    return (
    -      <div>
    -        <ElWithContext />
    -      </div>
    -    );
    -  }
    -}
    -
    -Root.childContextTypes = { language: React.PropTypes.object };
    -
    -/**
    - * Child Element which uses context
    - */
    -class ElWithContext extends React.Component{
    -  render() {
    -    const {language} = this.context;
    -    return <p>{language.text}</p>
    -  }
    -}
    -
    -ElWithContext.contextTypes = { language: React.PropTypes.object }
    -
    -
    -
    -/**
    - * Example test where context is unavailable.
    - */
    -let el = React.createElement(ElWithContext)
    -
    -element = TestUtils.renderIntoDocument(el);
    -// ERROR: undefined is not an object (evaluating 'language.text')
    -
    -describe(""ElWithContext"", () => {
    -  it('should contain textContent from context', () => {
    -    const node = ReactDOM.findDOMNode(element);
    -    expect(node.textContent).to.equal('A String');
    -  });
    -})
    -
    -",HQ -"

    I'm attempting to setup the rolify gem and I'm running into an issue assigning a role to a user in the console.

    - -

    Here's my error:

    - -
    2.2.1 :007 > user.add_role :admin
    -ArgumentError: Unknown key: :optional.
    -
    - -

    I'm running devise with cancancan and rolify. I'm also running the Koudoku gem for subscription payment support. I'm suspecting this error might be caused by the fact that my ""subscriptions"" table also has a ""user_id"" column. Is there anything I can do to correct this issue?

    - -

    Here's my schema.

    - -
    create_table ""subscriptions"", force: :cascade do |t|
    -t.string   ""stripe_id""
    -t.integer  ""plan_id""
    -t.string   ""last_four""
    -t.integer  ""coupon_id""
    -t.string   ""card_type""
    -t.float    ""current_price""
    -t.integer  ""user_id""
    -t.datetime ""created_at"",    null: false
    -t.datetime ""updated_at"",    null: false
    -end
    -
    -create_table ""users"", force: :cascade do |t|
    -t.string   ""email"",                  default: """", null: false
    -t.string   ""encrypted_password"",     default: """", null: false
    -t.string   ""reset_password_token""
    -t.datetime ""reset_password_sent_at""
    -t.datetime ""remember_created_at""
    -t.integer  ""sign_in_count"",          default: 0,  null: false
    -t.datetime ""current_sign_in_at""
    -t.datetime ""last_sign_in_at""
    -t.string   ""current_sign_in_ip""
    -t.string   ""last_sign_in_ip""
    -t.datetime ""created_at"",                          null: false
    -t.datetime ""updated_at"",                          null: false
    -t.string   ""first_name""
    -t.string   ""string""
    -t.string   ""last_name""
    -end
    -
    - add_index ""users"", [""email""], name: ""index_users_on_email"", unique: true
    - add_index ""users"", [""reset_password_token""], name:    
    - ""index_users_on_reset_password_token"", unique: true
    -
    -create_table ""users_roles"", id: false, force: :cascade do |t|
    -t.integer ""user_id""
    -t.integer ""role_id""
    -end
    -
    -add_index ""users_roles"", [""user_id"", ""role_id""], name:   ""index_users_roles_on_user_id_and_role_id""
    -
    -end
    -
    - -

    Thanks.

    -",HQ -"

    Currently i am training small logo datasets similar to Flickrlogos-32 with deep CNNs. For training larger networks i need more dataset, thus using augmentation. The best i'm doing right now is using affine transformations(featurewise normalization, featurewise center, rotation, width height shift, horizontal vertical flip). But for bigger networks i need more augmentation. I tried searching on kaggle's national data science bowl's forum but couldn't get much help. There's code for some methods given here but i'm not sure what could be useful. What are some other(or better) image data augmentation techniques that could be applied to this type of(or in any general image) dataset other than affine transformations?

    -",HQ -There is a weighted directed graph.How to get the shortest path to the directed graph that through some specified vertexs.,LQ -"

    I'm running node v0.12.7, and installed protractor through npm. -Now I'm trying to run the conf.js using this simple tutorial, and I get the following error when executing the command protractor conf.js:

    - -
    [launcher] Process exited with error code 1
    -C:\Users\ramtin\AppData\Roaming\npm\node_modules\protractor\node_modules\selenium-webdriver\index.js:25
    -const builder = require('./builder');
    -^^^^^
    -SyntaxError: Use of const in strict mode.
    -    at exports.runInThisContext (vm.js:73:16)
    -    at Module._compile (module.js:443:25)
    -    at Object.Module._extensions..js (module.js:478:10)
    -    at Module.load (module.js:355:32)
    -    at Function.Module._load (module.js:310:12)
    -    at Module.require (module.js:365:17)
    -    at require (module.js:384:17)
    -    at Object.<anonymous> (C:\Users\ramtin\AppData\Roaming\npm\node_modules\protractor\built\protractor.js:3:17)
    -    at Module._compile (module.js:460:26)
    -    at Object.Module._extensions..js (module.js:478:10)
    -
    - -

    Can't update node due to dependency issues it will produce (I'm working on an already-built project which used node 0.12.17).

    - -

    Using --harmony flag on protractor doesn't work. Do I need to install a specific version of protractor to be compatible with node 0.12.7? Or should I use babeljs to compile ES6 to ES5?

    - -

    If babeljs is the answer, how would I use it for protractor?

    -",HQ -"

    react-native : I have one View and the child of View is an Image , I applied opacity: 0.5 for View and opacity: 0.9 for an Image but it doesn't apply for Image ,the parent opacity is applying for child , the child doesn't take independent opacity

    -",HQ -"

    for example, While entering an email in the TextInput, it should validate and display the error message. where the entered email is valid or not

    - -

    -",HQ -"

    How would I go for referencing an Element in the dom which was created in a ngFor loop.

    - -

    e.g. I have a list of elements which I iterate over:

    - -
    var cookies: Cookie[] = [...];
    -
    -<div *ngFor=""#cookie of cookies"" id=""cookie-tab-button-{{cookie.id}}"" (click)=""showcookie(cookie);"">Cookie tab</div>
    -
    -
    -<div *ngFor=""#cookie of cookies"" id=""cookie-tab-content-{{cookie.id}}"" "">Cookie Details</div>
    -
    - -

    How would I reference these divs, so I could add a css class like ""is-active"". -Or is my approach just wrong.

    -",HQ -"I am getting the ORA 06502 Error while calling this query from PL/SQL. -However if i Try from sql prompt its working. - - -******An error was encountered - ERROR - ORA-06502: PL/SQL: numeric or value error: character string buffer too small****** - - - SELECT * - FROM - ( - SELECT - COL.BAN, - MAX (COL.COL_ACTV_CODE) AS COL_ACTV_CODE, - MAX (TO_CHAR(COL.COL_ACTV_DATE,''MM'')) AS COL_ACTV_DATE - FROM - TABLE1 COL, - TABLE2 CAC, - ACD_DDR_CH ADC - WHERE - COL.BAN = ADC.BAN - AND - COL.COL_ACTV_CODE = CAC.COL_ACTIVITY_CODE - AND - (CAC.SEVERITY_LEVEL , TO_CHAR(COL.COL_ACTV_DATE,''YYYYMM'')) IN - ( - SELECT - MAX(CAC.SEVERITY_LEVEL), - MAX(TO_CHAR(COL.COL_ACTV_DATE, ''YYYYMM'')) - FROM - TABLE1 COL, - TABLE2 CAC, - ACD_DDR_CH ADC - WHERE - COL.BAN = ADC.BAN - AND - COL.COL_ACTV_CODE = CAC.COL_ACTIVITY_CODE - AND - COL.COL_ACTV_DATE <= TO_DATE(''&1'', ''YYYYMMDD'') - AND - COL.COL_ACTV_DATE >= - TRUNC(ADD_MONTHS(TO_DATE(''&1'', ''YYYYMMDD''),-11),''MON'') - GROUP BY TO_CHAR (COL.COL_ACTV_DATE , ''YYYYMM'') - ) - GROUP BY COL.BAN - ORDER BY TO_CHAR (COL.COL_ACTV_DATE , ''YYYYMM'') DESC - ) - PIVOT - ( - MAX( COL_ACTV_CODE) - FOR COL_ACTV_DATE in (''01'' as ""JAN"", - ''02'' as ""FEB"", ''03'' as ""MAR"", - ''04'' as ""APR"", ''05'' as ""MAY"", - ''06'' as ""JUN"", ''07'' as ""JUL"", ''08'' as ""AUG"", - ''09'' as ""SEP"", ''10'' as ""OCT"", ''11'' as ""NOV"", - ''12'' as ""DEC""))'; - - -**The output from sql promt is as below:** - - BAN J F M A M J J A S O N D ----------- - - - - - - - - - - - - - 90314228 W - 90314009 K - 90314748 E - 90314568 E - 90314328 W - -",LQ -"

    I have a big text file (URL.txt) and I wish to perform the following using a single sed command:

    - -
      -
    1. Find and replace text 'google' with 'facebook' between line numbers 19 and 33.

    2. -
    3. Display the output on the terminal without altering the original file.

    4. -
    -",HQ -"

    I'm currently trying to continuously print dots at the end of a line as a form of indeterminate progress, while a large list of Tasks are running, with this code:

    - -
    start = DateTime.Now;
    -Console.Write(""*Processing variables"");
    -Task entireTask = Task.WhenAll(tasks);
    -Task progress = new Task(() => { while (!entireTask.IsCompleted) { Console.Write("".""); System.Threading.Thread.Sleep(1000); } });
    -progress.Start();
    -entireTask.Wait();
    -timeDiff = DateTime.Now - start;
    -Console.WriteLine(""\n*Operation completed in {0} seconds."", timeDiff.TotalSeconds);
    -
    - -

    Where tasks is from List<Task> tasks = new List<Task>();,
    -and tasks.Add(Task.Run(() => someMethodAsync())); has occurred 10000's of times.
    -This code currently works, however, is this the correct way of accomplishing this, and is this the most cost-effective way?

    -",HQ -"

    How can I get the values after a model has changed? The (change) event does fire before the model change. I do not want to use event.target.value

    - -
    <input type=""checkbox""  (change)=""mychange(event)"" [(ngModel)]=""mymodel"">
    -
    -public mychange(event)
    -{
    -   console.log(mymodel); // mymodel has the value before the change
    -}
    -
    -",HQ -"I have a set of raw data and I have to identify the distribution of that data. What is the easiest way to plot a probability distribution function? I have tried fitting it in normal distribution. - -But I am more curious to know which distribution does the data carry within itself ? - -I have no code to show my progress as I have failed to find any functions in python that will allow me to test the distribution of the dataset. I do not want to slice the data and force it to fit in may be normal or skew distribution. - -Is any way to determine the distribution of the dataset ? Any suggestion appreciated. - -Is this any correct approach ? [Example][1] -This is something close what I am looking for but again it fits the data into normal distribution. [Example][2] - - - [1]: http://stackoverflow.com/questions/7062936/probability-distribution-function-in-python - [2]: http://stackoverflow.com/questions/23251759/how-to-determine-what-is-the-probability-distribution-function-from-a-numpy-arra",LQ -" -Facebook returning error : - -""Not Logged In: You are not logged in. Please login and try again."" - -anyone know why this happen ?. - -",LQ -"

    I need to use http composer registry for several packages:

    - -
    ...
    -""repositories"":[
    -  {""type"":""composer"", ""url"":""http://<url>""}
    -],
    -""secure-http"":false,
    -...
    -
    - -

    But when I am trying to composer update to update lock file, I got:

    - -
    [Composer\Downloader\TransportException]
    -Your configuration does not allow connection to http://<url>.
    -See https://getcomposer.org/doc/06-config.md#secure-http for details.
    -
    - -

    By responding url I found next information;

    - -
    secure-http#
    -
    -Defaults to true. 
    -If set to true only HTTPS URLs are allowed to be downloaded via Composer. 
    -If you really absolutely need HTTP access to something then you can disable it ...
    -
    - -

    So I am confused what I am doing wrong.

    -",HQ -"

    What is the best solution if I want to rename my laravel 5.1 project, I just tried to rename one but it did not work properly got some errors.

    - -

    Are there some kind of steps one has to do to rename a laravel project?

    -",HQ -"

    I am getting below exception while running spring boot application during start up:

    - -
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'testController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private org.springframework.web.client.RestTemplate com.micro.test.controller.TestController.restTemplate; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [org.springframework.web.client.RestTemplate] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
    -
    - -

    I am autowiring RestTemplate in my TestController. I am using Maven for dependency managagement.

    - -

    TestMicroServiceApplication.java

    - -
    package com.micro.test;
    -import org.springframework.boot.SpringApplication;
    -import org.springframework.boot.autoconfigure.SpringBootApplication;
    -
    -@SpringBootApplication
    -public class TestMicroServiceApplication {
    -
    -    public static void main(String[] args) {
    -        SpringApplication.run(TestMicroServiceApplication.class, args);
    -    }
    -}
    -
    - -

    TestController.java

    - -
        package com.micro.test.controller;
    -
    -import org.springframework.beans.factory.annotation.Autowired;
    -import org.springframework.http.MediaType;
    -import org.springframework.web.bind.annotation.PathVariable;
    -import org.springframework.web.bind.annotation.RequestMapping;
    -import org.springframework.web.bind.annotation.RequestMethod;
    -import org.springframework.web.bind.annotation.RestController;
    -import org.springframework.web.client.RestTemplate;
    -
    -@RestController
    -public class TestController {
    -
    -    @Autowired
    -    private RestTemplate restTemplate;
    -
    -    @RequestMapping(value=""/micro/order/{id}"",
    -        method=RequestMethod.GET,
    -        produces=MediaType.ALL_VALUE)
    -    public String placeOrder(@PathVariable(""id"") int customerId){
    -
    -        System.out.println(""Hit ===> PlaceOrder"");
    -
    -        Object[] customerJson = restTemplate.getForObject(""http://localhost:8080/micro/customers"", Object[].class);
    -
    -        System.out.println(customerJson.toString());
    -
    -        return ""false"";
    -    }
    -
    -}
    -
    - -

    POM.xml

    - -
        <?xml version=""1.0"" encoding=""UTF-8""?>
    -<project xmlns=""http://maven.apache.org/POM/4.0.0"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance""
    -    xsi:schemaLocation=""http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"">
    -    <modelVersion>4.0.0</modelVersion>
    -
    -    <groupId>com.micro.test</groupId>
    -    <artifactId>Test-MicroService</artifactId>
    -    <version>0.0.1-SNAPSHOT</version>
    -    <packaging>jar</packaging>
    -
    -    <name>Test-MicroService</name>
    -    <description>Demo project for Spring Boot</description>
    -
    -    <parent>
    -        <groupId>org.springframework.boot</groupId>
    -        <artifactId>spring-boot-starter-parent</artifactId>
    -        <version>1.3.3.RELEASE</version>
    -        <relativePath/> <!-- lookup parent from repository -->
    -    </parent>
    -
    -    <properties>
    -        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    -        <java.version>1.8</java.version>
    -    </properties>
    -
    -    <dependencies>
    -        <dependency>
    -            <groupId>org.springframework.boot</groupId>
    -            <artifactId>spring-boot-starter-web</artifactId>
    -        </dependency>
    -
    -        <dependency>
    -            <groupId>org.springframework.boot</groupId>
    -            <artifactId>spring-boot-starter-test</artifactId>
    -            <scope>test</scope>
    -        </dependency>
    -    </dependencies>
    -
    -    <build>
    -        <plugins>
    -            <plugin>
    -                <groupId>org.springframework.boot</groupId>
    -                <artifactId>spring-boot-maven-plugin</artifactId>
    -            </plugin>
    -        </plugins>
    -    </build>
    -
    -
    -</project>
    -
    -",HQ -"send a mail notification when clicking submit button..wen i click submit button..label is showing your message has been sent..but when i check my mail..i did nt get that -here my code it is - protected void btnSubmit_Click(object sender, EventArgs e) - { - try - { - //Create the msg object to be sent - MailMessage msg = new MailMessage(); - //Add your email address to the recipients - msg.To.Add(""sathishsatu222@gmail.com""); - //Configure the address we are sending the mail from **- NOT SURE IF I NEED THIS OR NOT?** - MailAddress address = new MailAddress(""satheezkumar93@gmail.com""); - msg.From = address; - //Append their name in the beginning of the subject - msg.Subject = ""hy""; - msg.Body = ""hy hw ru?""; - SmtpClient client = new SmtpClient(""smtp-mail.gmail.com"", 25); - NetworkCredential credentials = new NetworkCredential(""satheezkumar93@gmail.com"", ""mypassword here""); - client.Credentials = credentials; - client.Host = ""smtp-mail.gmail.com""; - client.Port = 25; - client.EnableSsl = true; - //Configure an SmtpClient to send the mail. - - - //Display some feedback to the user to let them know it was sent - lblResult.Text = ""Your message was sent!""; - - - } - catch - { - //If the message failed at some point, let the user know - lblResult.Text = ""Your message failed to send, please try again.""; - } - }",LQ -"

    There is a REST API endpoint which needs to be implemented is used to get some information and send backend request to an another server and response which is coming from backend server has to set the to final response. My problem is how to set response body in javax.ws.rs.core.Response?

    - -
    @Path(""analytics"")
    -@GET
    -@Produces(""application/json"")
    -public Response getDeviceStats(@QueryParam(""deviceType"") String deviceType,
    -                               @QueryParam(""deviceIdentifier"") String deviceIdentifier,
    -                               @QueryParam(""username"") String user, @QueryParam(""from"") long from,
    -                               @QueryParam(""to"") long to) {
    -
    -    // Trust own CA and all self-signed certs
    -    SSLContext sslcontext = null;
    -    try {
    -        sslcontext = SSLContexts.custom()
    -                .loadTrustMaterial(new File(getClientTrustStoretFilePath()), ""password## Heading ##"".toCharArray(),
    -                        new TrustSelfSignedStrategy())
    -                .build();
    -    } catch (NoSuchAlgorithmException e) {
    -        log.error(e);
    -    } catch (KeyManagementException e) {
    -        log.error(e);
    -    } catch (KeyStoreException e) {
    -        log.error(e);
    -    } catch (CertificateException e) {
    -        log.error(e);
    -    } catch (IOException e) {
    -        log.error(e);
    -    }
    -    SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(
    -            sslcontext,
    -            new String[] { ""TLSv1"" },
    -            null,
    -            SSLConnectionSocketFactory.getDefaultHostnameVerifier());
    -    CloseableHttpClient httpclient = HttpClients.custom()
    -            .setSSLSocketFactory(sslsf)
    -            .build();
    -    HttpResponse response = null;
    -    try {
    -        HttpGet httpget = new HttpGet(URL);
    -        httpget.setHeader(""Authorization"", ""Basic YWRtaW46YWRtaW4="");
    -        httpget.addHeader(""content-type"", ""application/json"");
    -        response = httpclient.execute(httpget);
    -        String message = EntityUtils.toString(response.getEntity(), ""UTF-8"");
    -    } catch (ClientProtocolException e) {
    -        log.error(e);
    -    } catch (IOException e) {
    -        log.error(e);
    -    } 
    -
    -}  
    -
    - -

    Here message is the one I need to set. But I tried several methods. Didn't work any of them.

    -",HQ -"I wand to scrape all the user reviews from this [hotel main page][1], using Rvest package in R. I am only able to retrieve first 10 reviews. Next set of reviews are loaded by clicking 'View more' button, which are generated by JavaScript. Please tell me how to collect all the reviews... - - - [1]: http://www.holidayiq.com/Taj-Exotica-Benaulim-hotel-2025.html",LQ -"

    I'm trying to validate access tokens against at_hash. Token header is like this

    - -

    { - ""typ"": ""JWT"", - ""alg"": ""RS256"", - ""x5t"": ""MclQ7Vmu-1e5_rvdSfBShLe82eY"", - ""kid"": ""MclQ7Vmu-1e5_rvdSfBShLe82eY"" -}

    - -

    How do I get from my access token to the Base64 encoded at_hash claim value that is in the id token? Is there an online tool that could help me with this? Is SHA256 hash calculator not a correct tool for this?

    - -

    Thanks

    -",HQ -"

    I have a repo with various components and I want to be able to include the components as individual dependencies (but I don't want to create a repo per component).

    - -

    Is it a way to use a subfolder of a github repo as the path for a dependency in npm ? (that will not involve creating separate branches per component)

    - -

    Something like

    - -

    dropdown: git+https://git@github.com/me/mycomponents.git/components/dropdown

    -",HQ -"

    For the code line:

    - -
    let bytesDecrypted   = UnsafeMutablePointer<Int>()
    -
    - -

    I am getting the warning: -'init()' is deprecated: init() will be removed in Swift 3. Use nil instead

    - -

    What is the correct way to fix this warning?

    -",HQ -"

    In python, is there a difference between raise and raise e in an except block?

    - -

    dis is showing me different results, but I don't know what it means.

    - -

    What's the end behavior of both?

    - -
    import dis
    -def a():
    -    try:
    -        raise Exception()
    -    except Exception as e:
    -        raise
    -
    -
    -def b():
    -    try:
    -        raise Exception()
    -    except Exception as e:
    -        raise e
    -
    -dis.dis(a)
    -# OUT:   4           0 SETUP_EXCEPT            13 (to 16)
    -# OUT:   5           3 LOAD_GLOBAL              0 (Exception)
    -# OUT:               6 CALL_FUNCTION            0
    -# OUT:               9 RAISE_VARARGS            1
    -# OUT:              12 POP_BLOCK           
    -# OUT:              13 JUMP_FORWARD            22 (to 38)
    -# OUT:   6     >>   16 DUP_TOP             
    -# OUT:              17 LOAD_GLOBAL              0 (Exception)
    -# OUT:              20 COMPARE_OP              10 (exception match)
    -# OUT:              23 POP_JUMP_IF_FALSE       37
    -# OUT:              26 POP_TOP             
    -# OUT:              27 STORE_FAST               0 (e)
    -# OUT:              30 POP_TOP             
    -# OUT:   7          31 RAISE_VARARGS            0
    -# OUT:              34 JUMP_FORWARD             1 (to 38)
    -# OUT:         >>   37 END_FINALLY         
    -# OUT:         >>   38 LOAD_CONST               0 (None)
    -# OUT:              41 RETURN_VALUE        
    -dis.dis(b)
    -# OUT:   4           0 SETUP_EXCEPT            13 (to 16)
    -# OUT:   5           3 LOAD_GLOBAL              0 (Exception)
    -# OUT:               6 CALL_FUNCTION            0
    -# OUT:               9 RAISE_VARARGS            1
    -# OUT:              12 POP_BLOCK           
    -# OUT:              13 JUMP_FORWARD            25 (to 41)
    -# OUT:   6     >>   16 DUP_TOP             
    -# OUT:              17 LOAD_GLOBAL              0 (Exception)
    -# OUT:              20 COMPARE_OP              10 (exception match)
    -# OUT:              23 POP_JUMP_IF_FALSE       40
    -# OUT:              26 POP_TOP             
    -# OUT:              27 STORE_FAST               0 (e)
    -# OUT:              30 POP_TOP             
    -# OUT:   7          31 LOAD_FAST                0 (e)
    -# OUT:              34 RAISE_VARARGS            1
    -# OUT:              37 JUMP_FORWARD             1 (to 41)
    -# OUT:         >>   40 END_FINALLY         
    -# OUT:         >>   41 LOAD_CONST               0 (None)
    -# OUT:              44 RETURN_VALUE        
    -
    -",HQ -"

    I'm looking for a good solution to get the signed url from amazon s3.

    - -

    I have a version working with it, but not using laravel:

    - -
    private function getUrl ()
    -{
    -        $distribution = $_SERVER[""AWS_CDN_URL""];
    -
    -        $cf = Amazon::getCFClient();
    -
    -        $url = $cf->getSignedUrl(array(
    -            'url'     => $distribution . self::AWS_PATH.rawurlencode($this->fileName),
    -            'expires' => time() + (session_cache_expire() * 60)));
    -
    -        return $url;
    -}
    -
    - -

    I don't know if this is the best way to do with laravel, considering it has a entire file system to work...

    - -

    But if don't have another way, how do I get the client? Debugging I've found an instance of it inside the Filesystem object, but it is protected...

    -",HQ -"

    I am trying to declare two properties as optionals in a custom class - a String and an Int.

    - -

    I'm doing this in MyClass:

    - -
    var myString: String?
    -var myInt: Int?
    -
    - -

    I can decode them ok as follows:

    - -
    required init?(coder aDecoder: NSCoder) {
    -  myString = aDecoder.decodeObjectForKey(""MyString"") as? String
    -  myInt = aDecoder.decodeIntegerForKey(""MyInt"")
    -}
    -
    - -

    But encoding them gives an error on the Int line:

    - -
    func encodeWithCoder(aCoder: NSCoder) {
    -  aCoder.encodeInteger(myInt, forKey: ""MyInt"")
    -  aCoder.encodeObject(myString, forKey: ""MyString"")
    -}
    -
    - -

    The error only disappears when XCode prompts me to unwrap the Int as follows:

    - -
      aCoder.encodeInteger(myInt!, forKey: ""MyInt"")
    -
    - -

    But that obviously results in a crash. So my question is, how can I get the Int to be treated as an optional like the String is? What am I missing?

    -",HQ -"

    I have a Gradle-based project primarily with Java code and a small subproject with Scala (a Gatling-based performance test).

    - -

    I recently upgraded Gradle wrapper to v2.12, which is currently the latest version. -And today I just updated IntelliJ Idea from v15 to v2016.1.

    - -

    When I try to refresh the project from the Gradle files in Idea, I get this error.

    - -
    Error:Cause: org.gradle.api.tasks.scala.ScalaCompileOptions.getForce()Ljava/lang/String;
    -
    - -

    I noticed when searching on Google, that the method getForce() (returning a String) apparently has been replaced by isForce() (returning a boolean).

    - -

    If i downgrade Gradle wrapper to v2.11 the problem disappears. -Is there anything else I can do to fix the problem?

    -",HQ -"

    I'm using wercker for running specs of my rails app. I have problem with setting up redis on wercker. In my rails app I have redis.rb which looks like this:

    - -
    if Figaro.env.rediscloud_url
    -  uri = URI.parse(Figaro.env.rediscloud_url)
    -  REDIS = Redis.new(host: uri.host, port: uri.port, password: uri.password)
    -elsif ENV['WERCKER_REDIS_HOST'] && ENV['WERCKER_REDIS_PORT']
    -  REDIS = Redis.new(host: ENV['WERCKER_REDIS_HOST'], port: ENV['WERCKER_REDIS_PORT'])
    -else
    -  REDIS = Redis.new
    -end
    -
    - -

    In wercker I set WERCKER_REDIS_HOST enviromental variable to: 127.0.0.1 and WERCKER_REDIS_PORT to 6379

    - -

    When I start my specs it returns:

    - -
     Redis::CannotConnectError:
    -Error connecting to Redis on 127.0.0.1:6379 (Errno::ECONNREFUSED)
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:332:in `rescue in establish_connection'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:318:in `establish_connection'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:94:in `block in connect'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:280:in `with_reconnect'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:93:in `connect'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:351:in `ensure_connected'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:208:in `block in process'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:293:in `logging'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:207:in `process'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:178:in `call_pipelined'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:150:in `block in call_pipeline'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:280:in `with_reconnect'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/client.rb:148:in `call_pipeline'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis.rb:2245:in `block in multi'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis.rb:57:in `block in synchronize'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis.rb:57:in `synchronize'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis.rb:2237:in `multi'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/sidekiq-4.1.0/lib/sidekiq/client.rb:171:in `block in raw_push'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/connection_pool-2.2.0/lib/connection_pool.rb:64:in `block (2 levels) in with'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/connection_pool-2.2.0/lib/connection_pool.rb:63:in `handle_interrupt'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/connection_pool-2.2.0/lib/connection_pool.rb:63:in `block in with'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/connection_pool-2.2.0/lib/connection_pool.rb:60:in `handle_interrupt'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/connection_pool-2.2.0/lib/connection_pool.rb:60:in `with'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/sidekiq-4.1.0/lib/sidekiq/client.rb:170:in `raw_push'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/sidekiq-4.1.0/lib/sidekiq/client.rb:67:in `push'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/sidekiq-4.1.0/lib/sidekiq/worker.rb:115:in `client_push'
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/sidekiq-4.1.0/lib/sidekiq/extensions/generic_proxy.rb:19:in `method_missing'
    -# ./app/models/user.rb:26:in `send_reset_password_instructions'
    -# ./spec/models/user_spec.rb:43:in `block (3 levels) in <top (required)>'
    -# ------------------
    -# --- Caused by: ---
    -# IO::EINPROGRESSWaitWritable:
    -# Operation now in progress - connect(2) would block
    -# /pipeline/cache/bundle-install/ruby/2.3.0/gems/redis-3.2.2/lib/redis/connection/ruby.rb:122:in `connect_addrinfo'
    -
    - -

    How can I fix that?

    -",HQ -"

    I have a Kotlin project with Gradle that has two children. Whenever I try to open it in IDEA, one of the children is shown twice in the tree.

    - -

    - -

    In the tree, you can see two projects at top level, grpc and grp. The issue is that grpc (from top level) is the same project as the grpc that's a children of grp.

    - -

    Here are my Gradle build files:

    - -

    The parent gradle.build:

    - -
    buildscript {
    -    ext.kotlin_version = '1.0.1'
    -    repositories {
    -        jcenter()
    -        mavenCentral()
    -    }
    -    dependencies {
    -        classpath ""org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version""
    -    }
    -}
    -
    -allprojects {
    -    repositories {
    -        jcenter()
    -        mavenCentral()
    -    }
    -} 
    -
    - -

    The gradle.settings file:

    - -
    include ':grpstd', ':grpc'
    -
    - -

    The grpc gradle.build:

    - -
    apply plugin: 'antlr'
    -apply plugin: 'application'
    -apply plugin: 'kotlin'
    -
    -mainClassName = 'sron.grpc.MainKt'
    -
    -compileKotlin.dependsOn generateGrammarSource
    -
    -generateGrammarSource {
    -    arguments += ['-package', 'sron.grpc.compiler.internal']
    -}
    -
    -dependencies {
    -    antlr 'org.antlr:antlr4:4.5.2-1'
    -
    -    compile ""org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version""
    -    compile 'commons-cli:commons-cli:1.3.1'
    -    compile 'org.ow2.asm:asm:5.0.4'
    -    compile project(':grpstd')
    -
    -    testCompile 'junit:junit:4.12'
    -    testCompile ""org.jetbrains.kotlin:kotlin-test:$kotlin_version""
    -}
    -
    - -

    The grpstd gradle.build:

    - -
    apply plugin: 'kotlin'
    -
    -dependencies {
    -    compile ""org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version""
    -
    -    testCompile 'junit:junit:4.12'
    -    testCompile ""org.jetbrains.kotlin:kotlin-test:$kotlin_version""
    -}
    -
    - -

    Why is that project being shown twice? How can I prevent it?

    -",HQ -"

    I'm new to Ember and I can't find anywhere a solution to my problem. I have read the questions here in stack and in other ember forums, but none of them seems to work for me.

    - -

    I'm trying to create a simple signup form. I should note that for the backend I use django. -Here is my code:

    - -

    Server Response:

    - -
    [{""username"":""user1"",""password"":""123"",""email"":""user1@example.com""},        
    -{""username"":""user2"",""password"":""456"",""email"":""user2@example.com""}]
    -
    - -

    Ember Model:

    - -
    import DS from 'ember-data';
    -
    -export default DS.Model.extend({
    -    username: DS.attr(),
    -    password: DS.attr(), 
    -    email: DS.attr()
    -});
    -
    - -

    Ember Adapter: - import DS from 'ember-data';

    - -
    export default DS.RESTAdapter.extend({
    -    host: '/api',
    -    contentType: 'application/json',
    -    dataType: 'json',
    -
    -    headers: {
    -        username: 'XXXX',
    -        password: 'XXXX'
    -   } 
    -});
    -
    - -

    Ember Serializer:

    - -
    import DS from 'ember-data';
    -
    -export default DS.JSONSerializer.extend({
    -    primaryKey: '_id'
    -});
    -
    - -

    Ember Route: - import Ember from 'ember';

    - -
    export default Ember.Route.extend({
    -    model() {
    -        return this.store.findAll('account');
    -    }
    -});
    -
    - -

    Ember Controller:

    - -
    import Ember from 'ember';
    -
    -export default Ember.Controller.extend({
    -
    -    actions: {
    -
    -    signup(){
    -        console.log('My username is: ', this.get('username'));
    -        console.log('My password is: ', this.get('password'));
    -        console.log('My email is: ', this.get('email'));
    -
    -        var account = this.store.createRecord('account', {
    -                username: this.get('username'),
    -                password: this.get('password'),
    -                email: this.get('email')
    -        });
    -
    -        account.save();
    -
    -    }
    -    }
    -});
    -
    - -

    With this implementation I get the aforementioned error. Any help would be appreciated. Thank you in advance.

    -",HQ -"

    I'm building a series of linked classes whose instances I want to be able to marshall to XML so I can save them to a file and read them in again later.

    - -

    At present I'm using the following code as a test case:

    - -
    import javax.xml.bind.annotation.*;
    -
    -import javax.xml.bind.JAXBContext;
    -import javax.xml.bind.JAXBException;
    -import javax.xml.bind.Marshaller;
    -
    -import java.time.LocalDate;
    -
    -public class LocalDateExample
    -{
    -  @XmlRootElement
    -  private static class WrapperTest {
    -    public LocalDate startDate;
    -  }
    -
    -  public static void main(String[] args) throws JAXBException
    -  {
    -    WrapperTest wt = new WrapperTest();
    -    LocalDate ld = LocalDate.of(2016, 3, 1);
    -    wt.startDate = ld;
    -    marshall(wt);
    -  }
    -
    -  public static void marshall(Object jaxbObject) throws JAXBException
    -  {
    -    JAXBContext context = JAXBContext.newInstance(jaxbObject.getClass());
    -    Marshaller marshaller = context.createMarshaller();
    -    marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
    -    marshaller.marshal(jaxbObject, System.out);
    -  }
    -}
    -
    - -

    The XML output is:

    - -
    <?xml version=""1.0"" encoding=""UTF-8"" standalone=""yes""?>
    -<wrapperTest>
    -    <startDate/>
    -</wrapperTest>
    -
    - -

    Is there a reason why the startDate element is empty? I would like it to contain the string representation of the date (i.e. toString()). Do I need to write some code of my own in order to do this?

    - -

    The output of java -version is:

    - -
    openjdk version ""1.8.0_66-internal""
    -OpenJDK Runtime Environment (build 1.8.0_66-internal-b17)
    -OpenJDK 64-Bit Server VM (build 25.66-b17, mixed mode)
    -
    -",HQ -"

    I have the following code (""codes"" is an array variable):

    - -
    Arrays.asList(codes)
    -        .stream()
    -        .filter(code -> code.hasCountries())
    -        .sorted()
    -        .toArray()
    -        );
    -
    - -

    The compiler gives me the following error:

    - -
    -

    Syntax error on token "")"", ElidedSemicolonAndRightBrace expected

    -
    - -

    What's wrong here?

    -",HQ -"

    I am writing a program, which requires me to generate a very large json file. I know the traditional way is to dump a dictionary list using json.dump(), but the list just got too big that even the total memory + swap space cannot hold it before it is dumped. Is there anyway to stream it into a json file, i.e., write the data into the json file incrementally?

    -",HQ -"

    I have inherited a TeamCity server and I am reviewing the configuration. To make it a little easier, I would like to rename a build agent from a long random name to something a little more easily identifiable.

    - -

    However, I cannot find any options to change the name in the Agent Summary page.

    - -

    Has anyone got a way to change the build agent name?

    -",HQ -"I have two classes, `Class1` and `Class2` which are under namespace `myNameSpace` - -I want to create instance of `Class2` in class` and I am getting error in implementing file `Class 'myNameSpace\Class2' not found in.. `. Code given below: - - -**Class1.php** - - namespace myNameSpace { - - use myNameSpace\Class2; - - class Class1 - { - public function myMethod() - { - $obj = new Class2(); - } - -} - -**call.php** - - namespace myNameSpace { - include 'Class1.php'; - error_reporting(E_ALL); - ini_set('display_errors',1); - - use myNameSpace\Class1; - $o = new Class1(); - $o->myMethod(); - - } -",LQ -"

    We have been moving our apis from python to node. We have used task queues with our Python app engine apis. With node.js now supported on app engine, do you suggest we use task queues or cloud pub/sub for tasks? What would the pros / cons be for each including reliability, portability, etc.

    -",HQ -"

    The documentation in the N Developer Preview for their network security configuration offers these instructions:

    - -
    -

    Certificate pinning is done by providing a set of certificates by hash of the public key (SubjectPublicKeyInfo of the X.509 certificate). A certificate chain is then only valid if the certificate chain contains at least one of the pinned public keys.

    -
    - -

    The XML that they show is broken (missing a closing tag), but otherwise suggests that the hash is SHA256 and encoded base64:

    - -
    <?xml version=""1.0"" encoding=""utf-8""?>
    -<network-security-config>
    -    <domain-config>
    -        <domain includeSubdomains=""true"">example.com</domain>
    -        <pin-set expiration=""2018-01-01"">
    -            <pin digest=""SHA-256"">7HIpactkIAq2Y49orFOOQKurWxmmSFZhBCoQYcRhJ3Y=</pin>
    -            <!-- backup pin -->
    -            <pin digest=""SHA-256"">fwza0LRMXouZHRC8Ei+4PyuldPDcf3UKgO/04cDM1oE=</pin>
    -    </domain-config>
    -</network-security-config>
    -
    - -

    How do we create such a hash?

    - -

    I tried the approach in this gist, but openssl x509 -inform der -pubkey -noout is not liking my CRT file. I cannot readily determine if the problem is in the CRT file, the instructions, my version of openssl, or something else.

    - -

    Does anyone have a known good recipe for creating this hash?

    -",HQ -"

    I must be really misunderstanding something with the GenericRelation field from Django's content types framework.

    - -

    To create a minimal self contained example, I will use the polls example app from the tutorial. Add a generic foreign key field into the Choice model, and make a new Thing model:

    - -
    class Choice(models.Model):
    -    ...
    -    content_type = models.ForeignKey(ContentType)
    -    object_id = models.PositiveIntegerField()
    -    thing = GenericForeignKey('content_type', 'object_id')
    -
    -class Thing(models.Model):
    -    choices = GenericRelation(Choice, related_query_name='things')
    -
    - -

    With a clean db, synced up tables, and create a few instances:

    - -
    >>> poll = Poll.objects.create(question='the question', pk=123)
    ->>> thing = Thing.objects.create(pk=456)
    ->>> choice = Choice.objects.create(choice_text='the choice', pk=789, poll=poll, thing=thing)
    ->>> choice.thing.pk
    -456
    ->>> thing.choices.get().pk
    -789
    -
    - -

    So far so good - the relation works in both directions from an instance. But from a queryset, the reverse relation is very weird:

    - -
    >>> Choice.objects.values_list('things', flat=1)
    -[456]
    ->>> Thing.objects.values_list('choices', flat=1)
    -[456]
    -
    - -

    Why the inverse relation gives me again the id from the thing? I expected instead the primary key of the choice, equivalent to the following result:

    - -
    >>> Thing.objects.values_list('choices__pk', flat=1)
    -[789]
    -
    - -

    Those ORM queries generate SQL like this:

    - -
    >>> print Thing.objects.values_list('choices__pk', flat=1).query
    -SELECT ""polls_choice"".""id"" FROM ""polls_thing"" LEFT OUTER JOIN ""polls_choice"" ON ( ""polls_thing"".""id"" = ""polls_choice"".""object_id"" AND (""polls_choice"".""content_type_id"" = 10))
    ->>> print Thing.objects.values_list('choices', flat=1).query
    -SELECT ""polls_choice"".""object_id"" FROM ""polls_thing"" LEFT OUTER JOIN ""polls_choice"" ON ( ""polls_thing"".""id"" = ""polls_choice"".""object_id"" AND (""polls_choice"".""content_type_id"" = 10))
    -
    - -

    The Django docs are generally excellent, but I can't understand why the second query or find any documentation of that behaviour - it seems to return data from the wrong table completely?

    -",HQ -"I have pairRDD like -(1, JOHN SMITH) -(2, JACK SMITH) -And I would like to split them to: -(1, JOHN) -(1, SMITH) -(2, JACK) -(2, SMITH) -I tried flatMapValues, but not quite right in the details",LQ -"I have the following code. - - #include - using namespace std; - typedef unsigned char byte; - - typedef struct { - unsigned int a; - unsigned int b; - } Struct_A; - - void* malloc_(size_t s, byte* heap, int *next) { - int old = *next; - *next = *next + s; - return heap + old; - } - - void f(Struct_A *sa, byte* heap, int *next) { - sa = (Struct_A*) malloc_(8, heap, next); - sa->a = 10; - sa->b = 20; - } - - int main() { - byte *heap = new byte[1000]; - int next; - next = 0; - - Struct_A *sa; - sa = (Struct_A*) malloc_(8, heap, &next); - sa->a = 100; - sa->b = 200; - - cout << sa->a << endl; - - - Struct_A *sb; - f(sb, heap, &next); - cout<< sb->a <I'm using assets in Symfony 2.7.10 and I want to generate an image url in the controller.

    - -

    In the symfony config.yml file I have added the following setting:

    - -
    framework:
    -    assets:
    -          version: '311nk2'
    -          version_format: '%%s?v=%%s'
    -          base_path: /bundles/myBundleName
    -
    - -

    In twig the generating of an url works ok, so with the following twig code:

    - -
    {{ asset('images/logo.png') }}
    -
    - -

    It generates:

    - -
    /bundles/myBundleName/images/logo.png?v=311nk2
    -
    - -

    Now I want to generate the same url in a controller, how is this possible?

    -",HQ -"

    Here is my workflow.

    - -

    I have moduled typescript code. Imports like the following: import { Logger } from './../data/logger';

    - -

    Then I bundle it using webpack (precisely - webpack-stream) with ts-loader. I run webpack using gulp.

    - -

    So I have the following workflow: -gulp --> webpack (ts-loader) --> bundled *.js with source-maps. I also use the browsersync to run simple server and auto update the page.

    - -

    I can debug this code from the browser, but I can't from vscode (using Chrome Debugging for VS Code, or even from vs2015.

    - -

    What could cause the problem ?

    -",HQ -"

    I am partitioning a DataFrame as follows:

    - -
    df.write.partitionBy(""type"", ""category"").parquet(config.outpath)
    -
    - -

    The code gives the expected results (i.e. data partitioned by type & category). However, the ""type"" and ""category"" columns are removed from the data / schema. Is there a way to prevent this behaviour?

    -",HQ -"

    I can't seem to find any way to put the cursor into 'overwrite' mode - as in when you press the insert key and newly typed characters overwrite the existing characters inline. I haven't found any reference anywhere online to the omission or inclusion of such a feature in vscode, but it seems to be a fairly commonly used feature. Does this exist?

    -",HQ -"

    I have gone through the page https://docs.python.org/3/library/unittest.mock-examples.html and i see that they have listed an example on how to mock generators

    - -

    I have a code where i call a generator to give me a set of values that i save as a dictionary. I want to mock the calls to this generator in my unit test.

    - -

    I have written the following code and it does not work.

    - -

    Where am i going wrong?

    - -
    In [7]: items = [(1,'a'),(2,'a'),(3,'a')]
    -
    -In [18]: def f():
    -    print ""here""
    -    for i in [1,2,3]:
    -        yield i,'a'
    -
    -In [8]: def call_f():
    -   ...:     my_dict = dict(f())
    -   ...:     print my_dict[1]
    -   ...: 
    -
    -In [9]: call_f()
    -""here""
    -a
    -
    -In [10]: import mock
    -
    -
    -In [18]: def test_call_f():
    -    with mock.patch('__main__.f') as mock_f:
    -        mock_f.iter.return_value = items
    -        call_f()
    -   ....: 
    -
    -In [19]: test_call_f()
    ----------------------------------------------------------------------------
    -KeyError                                  Traceback (most recent call last)
    -<ipython-input-19-33ca65a4f3eb> in <module>()
    -----> 1 test_call_f()
    -
    -<ipython-input-18-92ff5f1363c8> in test_call_f()
    -      2     with mock.patch('__main__.f') as mock_f:
    -      3         mock_f.iter.return_value = items
    -----> 4         call_f()
    -
    -<ipython-input-8-a5cff08ebf69> in call_f()
    -      1 def call_f():
    -      2     my_dict = dict(f())
    -----> 3     print my_dict[1]
    -
    -KeyError: 1
    -
    -",HQ -"

    According to https://www.instagram.com/developer/endpoints/tags/, we used to get the min_tag_id in the pagination part of the https://api.instagram.com/v1/tags/tag-name/media/recent?access_token=ACCESS-TOKEN response which we then used in the request to poll for newer posts.

    - -

    As of this morning, we saw that Instagram changed the form of the pagination response. It now looks something like:

    - -
    ""pagination"": {
    -""next_max_tag_id"": ""AQBy529IMOAlOvp6EI5zrYZRZbUbNW2oGQjgdvfVi5I_7wTIKzqE2nfsSBHvCkPmWOMKV7kmNcMPErenGJsbDtIk013aPZ_xo4vFYuXqtDGz3ZS0ZBrnTSjtuGjtnEOHiDJlAp8lI99AuwAgObnaf6tYhkoiDajEkg5E2zOFuDZFfQ"",
    -""next_url"": ""https://api.instagram.com/v1/tags/enplug/media/recent?access_token=1573931388.852f6fb.2ee7fb644c5341dd813bd3bbc4c687ec&max_tag_id=AQBy529IMOAlOvp6EI5zrYZRZbUbNW2oGQjgdvfVi5I_7wTIKzqE2nfsSBHvCkPmWOMKV7kmNcMPErenGJsbDtIk013aPZ_xo4vFYuXqtDGz3ZS0ZBrnTSjtuGjtnEOHiDJlAp8lI99AuwAgObnaf6tYhkoiDajEkg5E2zOFuDZFfQ"",
    -""deprecation_warning"": ""next_max_id and min_id are deprecated for this endpoint; use min_tag_id and max_tag_id instead"",
    -""next_max_id"": ""AQBy529IMOAlOvp6EI5zrYZRZbUbNW2oGQjgdvfVi5I_7wTIKzqE2nfsSBHvCkPmWOMKV7kmNcMPErenGJsbDtIk013aPZ_xo4vFYuXqtDGz3ZS0ZBrnTSjtuGjtnEOHiDJlAp8lI99AuwAgObnaf6tYhkoiDajEkg5E2zOFuDZFfQ""
    -}
    -
    - -

    Is min_tag_id now deprecated? The developer docs don't mention anything about this.

    -",HQ -"

    Hey I've got the following problem:

    - -

    I am building a little flask app, and usually i just stick with bootstrap and jinja templates to get what I want, but this time I needed a bit more customised version. In order to get a grip I started with a simple example of using custom js and flask to get the basic right. But lets go into detail:

    - -

    Assume I have a simple flask web app called app.py located in my_app/ which looks like this

    - -
    from flask import Flask, render_template
    -app = Flask(__name__)
    -
    -@app.route('/')
    -def index():
    -    return render_template('index.html')
    -
    -if __name__ == '__main__':
    -    app.run(port=8080, debug=True)
    -
    - -

    and the corresponding index.html, which is located in my_app/templates, is simply

    - -
    <!DOCTYPE html>
    -<html>
    -<body>
    -
    -<p>Clicking here will make me dissapear</p>
    -
    -<script src=""https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"">            </script>
    -<script>
    -$(document).ready(function() {
    -    $(""p"").click(function(event){
    -        $(this).hide();
    -    });
    -});
    -</script>
    -</body>
    -</html>
    -
    - -

    then I see the expected result, that is, i can click on the paragraph to make it disappear.

    - -

    BUT: I would like to put the javascript part into a main.js file under static/js/. like so:

    - -
    $(document).ready(function() {
    -    $(""p"").click(function(event){
    -        $(this).hide();
    -    });
    -});
    -
    - -

    and the index.html becomes:

    - -
    <!DOCTYPE html>
    -<html>
    -<body>
    -
    -<p>Clicking here will make me dissapear</p>
    -
    -<script src=""https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js""></script>
    -<script src='/js/main.js'></script>            
    -</body>
    -</html>
    -
    - -

    Unfortunately nothing will happen. I have tried other ways of referencing the script file as well but until now nothing works. I have the impression im missing something really simple. Thanks in advance!

    -",HQ -"

    According to the Go blog,

    - -
    -

    Maps are not safe for concurrent use: it's not defined what happens when you read and write to them simultaneously. If you need to read from and write to a map from concurrently executing goroutines, the accesses must be mediated by some kind of synchronization mechanism. - (source: https://blog.golang.org/go-maps-in-action)

    -
    - -

    Can anyone elaborate on this? Concurrent read operations seem permissible across routines, but concurrent read/write operations may generate a race condition if one attempts to read from and write to the same key.

    - -

    Can this last risk be reduced in some cases? For example:

    - -
      -
    • Function A generates k and sets m[k]=0. This is the only time A writes to map m. k is known to not be in m.
    • -
    • A passes k to function B running concurrently
    • -
    • A then reads m[k]. If m[k]==0, it waits, continuing only when m[k]!=0
    • -
    • B looks for k in the map. If it finds it, B sets m[k] to some positive integer. If it doesn't it waits until k is in m.
    • -
    - -

    This isn't code (obviously) but I think it shows the outlines of a case where even if A and B both try to access m there won't be a race condition, or if there is it won't matter because of the additional constraints.

    -",HQ -"

    Since today, somehow my ionic project is not longer able to build for some reason. I already tried to remove the platform and add it again, but it didn't work. I now almost spent three ours with upgrading, downgrading and reinstalling cordova and ionic but for some reason I always get the following error when I try to build the Android version:

    - -
    Failed to notify ProjectEvaluationListener.afterEvaluate(), but primary configuration failure takes precedence.
    -    java.lang.IllegalStateException: buildToolsVersion is not specified.
    -            at com.google.common.base.Preconditions.checkState(Preconditions.java:176)
    -            at com.android.build.gradle.BasePlugin.createAndroidTasks(BasePlugin.java:599)
    -            at com.android.build.gradle.BasePlugin$10$1.call(BasePlugin.java:566)
    -            at com.android.build.gradle.BasePlugin$10$1.call(BasePlugin.java:563)
    -            at com.android.builder.profile.ThreadRecorder$1.record(ThreadRecorder.java:55)
    -            at com.android.builder.profile.ThreadRecorder$1.record(ThreadRecorder.java:47)
    -            at com.android.build.gradle.BasePlugin$10.execute(BasePlugin.java:562)
    -            at com.android.build.gradle.BasePlugin$10.execute(BasePlugin.java:559)
    -            at org.gradle.listener.BroadcastDispatch$ActionInvocationHandler.dispatch(BroadcastDispatch.java:109)
    -            at org.gradle.listener.BroadcastDispatch$ActionInvocationHandler.dispatch(BroadcastDispatch.java:98)
    -            at org.gradle.listener.BroadcastDispatch.dispatch(BroadcastDispatch.java:83)
    -            at org.gradle.listener.BroadcastDispatch.dispatch(BroadcastDispatch.java:31)
    -            at org.gradle.messaging.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:93)
    -            at com.sun.proxy.$Proxy12.afterEvaluate(Unknown Source)
    -            at org.gradle.configuration.project.LifecycleProjectEvaluator.notifyAfterEvaluate(LifecycleProjectEvaluator.java:79)
    -            at org.gradle.configuration.project.LifecycleProjectEvaluator.evaluate(LifecycleProjectEvaluator.java:65)
    -            at org.gradle.api.internal.project.AbstractProject.evaluate(AbstractProject.java:504)
    -            at org.gradle.api.internal.project.AbstractProject.evaluate(AbstractProject.java:83)
    -            at org.gradle.execution.TaskPathProjectEvaluator.configureHierarchy(TaskPathProjectEvaluator.java:42)
    -            at org.gradle.configuration.DefaultBuildConfigurer.configure(DefaultBuildConfigurer.java:35)
    -            at org.gradle.initialization.DefaultGradleLauncher.doBuildStages(DefaultGradleLauncher.java:129)
    -            at org.gradle.initialization.DefaultGradleLauncher.doBuild(DefaultGradleLauncher.java:106)
    -            at org.gradle.initialization.DefaultGradleLauncher.run(DefaultGradleLauncher.java:86)
    -            at org.gradle.launcher.exec.InProcessBuildActionExecuter$DefaultBuildController.run(InProcessBuildActionExecuter.java:80)
    -            at org.gradle.launcher.cli.ExecuteBuildAction.run(ExecuteBuildAction.java:33)
    -            at org.gradle.launcher.cli.ExecuteBuildAction.run(ExecuteBuildAction.java:24)
    -            at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:36)
    -            at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:26)
    -            at org.gradle.launcher.daemon.server.exec.ExecuteBuild.doBuild(ExecuteBuild.java:47)
    -            at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:34)
    -            at org.gradle.launcher.daemon.server.exec.DaemonCommandExecution.proceed(DaemonCommandExecution.java:119)
    -            at org.gradle.launcher.daemon.server.exec.WatchForDisconnection.execute(WatchForDisconnection.java:35)
    -            at org.gradle.launcher.daemon.server.exec.DaemonCommandExecution.proceed(DaemonCommandExecution.java:119)
    -            at org.gradle.launcher.daemon.server.exec.ResetDeprecationLogger.execute(ResetDeprecationLogger.java:24)
    -            at org.gradle.launcher.daemon.server.exec.DaemonCommandExecution.proceed(DaemonCommandExecution.java:119)
    -            at org.gradle.launcher.daemon.server.exec.StartStopIfBuildAndStop.execute(StartStopIfBuildAndStop.java:33)
    -            at org.gradle.launcher.daemon.server.exec.DaemonCommandExecution.proceed(DaemonCommandExecution.java:119)
    -            at org.gradle.launcher.daemon.server.exec.ForwardClientInput$2.call(ForwardClientInput.java:71)
    -            at org.gradle.launcher.daemon.server.exec.ForwardClientInput$2.call(ForwardClientInput.java:69)
    -            at org.gradle.util.Swapper.swap(Swapper.java:38)
    -            at org.gradle.launcher.daemon.server.exec.ForwardClientInput.execute(ForwardClientInput.java:69)
    -            at org.gradle.launcher.daemon.server.exec.DaemonCommandExecution.proceed(DaemonCommandExecution.java:119)
    -            at org.gradle.launcher.daemon.server.exec.LogToClient.doBuild(LogToClient.java:60)
    -            at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:34)
    -            at org.gradle.launcher.daemon.server.exec.DaemonCommandExecution.proceed(DaemonCommandExecution.java:119)
    -            at org.gradle.launcher.daemon.server.exec.EstablishBuildEnvironment.doBuild(EstablishBuildEnvironment.java:70)
    -            at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:34)
    -            at org.gradle.launcher.daemon.server.exec.DaemonCommandExecution.proceed(DaemonCommandExecution.java:119)
    -            at org.gradle.launcher.daemon.server.exec.DaemonHygieneAction.execute(DaemonHygieneAction.java:39)
    -            at org.gradle.launcher.daemon.server.exec.DaemonCommandExecution.proceed(DaemonCommandExecution.java:119)
    -            at org.gradle.launcher.daemon.server.exec.StartBuildOrRespondWithBusy$1.run(StartBuildOrRespondWithBusy.java:46)
    -            at org.gradle.launcher.daemon.server.DaemonStateCoordinator$1.run(DaemonStateCoordinator.java:246)
    -            at org.gradle.internal.concurrent.DefaultExecutorFactory$StoppableExecutorImpl$1.run(DefaultExecutorFactory.java:64)
    -            at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    -            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    -            at java.lang.Thread.run(Thread.java:745)
    -
    -    FAILURE: Build failed with an exception.
    -
    - -

    I already tried to set the buildToolsVersion in the config.xml but without any success. Did anyone have the same problem before?

    -",HQ -"

    I'm trying to make some canned network respones. I have the json response for the actual request and I have Retrofit interfaces that serialize responses. I am beyond frustrated trying to set this up. What should I be doing here? It seems my options are, 1) Use a MockWebServer() 2) Use a RequestInterceptor().

    - -

    While trying to use either 1 or 2, I can't for the life of me instantiate an OkHttpClient() without it failing, basically this puts every thing I try to death immediately. I get an java.lang.AssertionError because OkHttpClient is throwing this when it can't find a TLS algorithm.

    - -
     if (builder.sslSocketFactory != null || !isTLS) {
    -      this.sslSocketFactory = builder.sslSocketFactory;
    -    } else {
    -      try {
    -        SSLContext sslContext = SSLContext.getInstance(""TLS"");
    -        sslContext.init(null, null, null);
    -        this.sslSocketFactory = sslContext.getSocketFactory();
    -      } catch (GeneralSecurityException e) {
    -        **throw new AssertionError(); // The system has no TLS. Just give up.**
    -      }
    -    }
    -
    - -

    I've tried to keep the ""javax.net.ssl"" class in the android.jar using unMock, but that didn't resolve the error.

    - -
    unMock {
    -    // URI to download the android-all.jar from. e.g. https://oss.sonatype.org/content/groups/public/org/robolectric/android-all/
    -    downloadFrom 'https://oss.sonatype.org/content/groups/public/org/robolectric/android-all/4.3_r2-robolectric-0/android-all-4.3_r2-robolectric-0.jar'
    -
    -    keep ""android.util.Log""
    -    keep ""javax.net.ssl""
    -}
    -
    - -

    So basically, I've come across various examples of how to mock network requests with retrofit 2, but I can't get past this hurdle, and I'm feeling pretty defeated. I haven't seen anyone else with this problem, and I'm baffled as to how everyone is easily instantiating new OkHttpClients in all their tests.

    - -

    Here are the relevant dependencies I am using.

    - -
        testCompile 'junit:junit:4.12'
    -    testCompile 'org.mockito:mockito-all:1.10.19'
    -    testCompile 'org.powermock:powermock-mockito-release-full:1.6.4'
    -    testCompile 'org.powermock:powermock-module-junit4:1.6.4'
    -    testCompile 'org.easymock:easymock:3.4'
    -    testCompile 'org.powermock:powermock-api-easymock:1.6.4'
    -    testCompile 'com.squareup.okhttp3:mockwebserver:3.2.0'
    -
    -    compile 'com.squareup.retrofit2:retrofit:2.0.0'
    -    compile 'com.squareup.retrofit2:converter-gson:2.0.0'
    -    compile 'com.squareup.okhttp3:logging-interceptor:3.0.1'
    -    compile 'com.google.code.gson:gson:2.4'
    -
    -",HQ -"So if anyone is knowledgeable on Animal Shelter Manager, I'm looking for some help. I'm trying to figure out what each line of code means.. the first is - -from animalcontrol.py - - def get_animalcontrol_query(dbo): - return ""SELECT ac.*, ac.ID AS ACID, s.SpeciesName, x.Sex AS SexName, "" \ - ""co.OwnerName AS CallerName, co.HomeTelephone, co.WorkTelephone, co.MobileTelephone, "" \ - ""o1.OwnerName AS OwnerName, o1.OwnerName AS OwnerName1, o2.OwnerName AS OwnerName2, o3.OwnerName AS OwnerName3, "" \ - ""o1.OwnerName AS SuspectName, o1.OwnerAddress AS SuspectAddress, o1.OwnerTown AS SuspectTown, o1.OwnerCounty AS SuspectCounty, o1.OwnerPostcode AS SuspectPostcode, "" \ - ""o1.HomeTelephone AS SuspectHomeTelephone, o1.WorkTelephone AS SuspectWorkTelephone, o1.MobileTelephone AS SuspectMobileTelephone, "" \ - ""vo.OwnerName AS VictimName, vo.OwnerAddress AS VictimAddress, vo.OwnerTown AS VictimTown, vo.OwnerCounty AS VictimCounty, vo.OwnerPostcode AS VictimPostcode,"" \ - ""vo.HomeTelephone AS VictimHomeTelephone, vo.WorkTelephone AS VictimWorkTelephone, vo.MobileTelephone AS VictimMobileTelephone, "" \ - ""ti.IncidentName, ci.CompletedName, pl.LocationName "" \ - ""FROM animalcontrol ac "" \ - ""LEFT OUTER JOIN species s ON s.ID = ac.SpeciesID "" \ - ""LEFT OUTER JOIN lksex x ON x.ID = ac.Sex "" \ - ""LEFT OUTER JOIN owner co ON co.ID = ac.CallerID "" \ - ""LEFT OUTER JOIN owner o1 ON o1.ID = ac.OwnerID "" \ - ""LEFT OUTER JOIN owner o2 ON o2.ID = ac.Owner2ID "" \ - ""LEFT OUTER JOIN owner o3 ON o3.ID = ac.Owner3ID "" \ - ""LEFT OUTER JOIN owner vo ON vo.ID = ac.VictimID "" \ - ""LEFT OUTER JOIN pickuplocation pl ON pl.ID = ac.PickupLocationID "" \ - ""LEFT OUTER JOIN incidenttype ti ON ti.ID = ac.IncidentTypeID "" \ - ""LEFT OUTER JOIN incidentcompleted ci ON ci.ID = ac.IncidentCompletedID"" - -What does `return ""SELECT ac.*, ac.ID AS ACID,` mean. - -and if I wanted to differ this code from what it is currently what would I have to change. ei ""ac."" or ""ACID"" - -I know I will have to change `def get_animalcontrol_query(dbo):`",LQ -"

    I'm building a mapping web application using Mapbox-GL. It has a lot of cool features. I've set up the buttons to switch base maps (ie. satellite, terrain, etc) following the example on the Mapbox website.

    - -

    The problem that I am having is that when I change the style it removes my polygons that are loaded as layers and reloads the map. I load in polygons from a Mongo database as layers based on user queries. I want to be able to change the base map and keep those layers.

    - -

    Is there a way to change the style without reloading the map, or at least not droping the layers?

    - -

    Here is my code for the switcher, its the same as the example but I added a condition for a custom style:

    - -
     var layerList = document.getElementById('menu');
    -    var inputs = layerList.getElementsByTagName('input');
    -
    -    function switchLayer(layer) {
    -        var layerId = layer.target.id;
    -        if (layerId === 'outdoors') {
    -            map.setStyle('/outdoors-v8.json');
    -        } else {
    -        map.setStyle('mapbox://styles/mapbox/' + layerId + '-v8');
    -        }
    -    }
    -
    -    for (var i = 0; i < inputs.length; i++) {
    -        inputs[i].onclick = switchLayer;
    -    }
    -
    -",HQ -"

    There is a new autocomplete in Xcode. Probably might be useful because it checks not only beginning of names etc. But I found that very often it doesn't find a class name or a const name at all etc. I need to type in entire name by myself. Over all I found it makes my life harder and coding more time consuming. Is there a way to switch to the old way it used to work?

    -",HQ -"I have an iOS info app. The main screen of the app consists of rows of icons. I want that after tap on certain icon card with information appears and background blurs. To close the card I need to swipe up or down. It is very similar to Instagram's imageviewer. -Please help me create that. - -P.S. This is my first project so please keep this in mind when you going to describe the method. Thank you. - -[It should look like this][1] - - - [1]: http://i.stack.imgur.com/P3UJv.jpg",LQ -"

    My python script (python 3.4.3) calls a bash script via subprocess:

    - -
    import subprocess as sp
    -res = sp.check_output(""bashscript"", shell=True)
    -
    - -

    The bashscript contains the following line:

    - -
    ssh -MNf somehost
    -
    - -

    which opens a shared master connection to some remote host to allow some subsequent operations.

    - -

    When executing the python script, it will prompt for password for the ssh line but then it blocks after the password is entered and never returns. When I ctrl-C to terminate the script, I see that the connection was properly established (so ssh line was successfully executed).

    - -

    I don't have this blocking problem when using check_call instead of check_output, but check_call does not retrieve stdout. I'd like to understand what exactly is causing the blocking behavior for check_output, probably related to some subtlety with ssh -MNf.

    -",HQ -"**How to change file_get_contents() to curl funtion** - -Error occured in this below lines like . -Fatal error: Uncaught exception 'Exception' with message 'Required option not passed: access_token ' in E:\xampp\htdocs\google\application\libraries\oauth2\Token\Access.php:44 Stack trace: #0 E:\xampp\htdocs\google\application\libraries\oauth2\Token.php(30): OAuth2_Token_Access->__construct(NULL) #1 E:\xampp\htdocs\google\application\libraries\oauth2\Provider.php(224): OAuth2_Token::factory('access', NULL) #2 E:\xampp\htdocs\google\application\libraries\oauth2\Provider\Google.php(61): OAuth2_Provider->access('4/tJi51U-xhCSYo...', Array) #3 E:\xampp\htdocs\google\application\controllers\auth_oa2.php(32): OAuth2_Provider_Google->access('4/tJi51U-xhCSYo...') #4 [internal function]: Auth_oa2->session('google') ... - - - $opts = array( - 'http' => array( - 'method' => 'POST', - 'header' => 'Content-type: application/x-www-form-urlencoded', - 'content' => http_build_query($params), - ) - ); - - $_default_opts = stream_context_get_params(stream_context_get_default()); - $context = stream_context_create(array_merge_recursive($_default_opts['options'], $opts)); - $response = file_get_contents($url, false, $context); - - $return = json_decode($response, true); -",LQ -"

    I have the following code:

    - -
    func setupShortcutItems(launchOptions: [NSObject: AnyObject]?) -> Bool {
    -    var shouldPerformAdditionalDelegateHandling: Bool = false
    -
    -    if (UIApplicationShortcutItem.respondsToSelector(""new"")) {
    -        self.configDynamicShortcutItems()
    -
    -        // If a shortcut was launched, display its information and take the appropriate action
    -        if let shortcutItem: UIApplicationShortcutItem = launchOptions?[UIApplicationLaunchOptionsShortcutItemKey] as? UIApplicationShortcutItem {
    -            // When the app launched at the first time, this block can not called.
    -            self.handleShortCutItem(shortcutItem)
    -
    -            // This will block ""performActionForShortcutItem:completionHandler"" from being called.
    -            shouldPerformAdditionalDelegateHandling = false
    -        } else {
    -            // normal app launch process without quick action
    -            self.launchWithoutQuickAction()
    -        }
    -    } else {
    -        // Less than iOS9 or later
    -        self.launchWithoutQuickAction()
    -    }
    -
    -    return shouldPerformAdditionalDelegateHandling
    -}
    -
    - -

    I get the following ""warning"" on UIApplicationShortcutItem.respondsToSelector(""new""), which says:

    - -
    -

    Use of string literal for Objective-c selectors is deprecated, use '#selector' instead

    -
    - -

    The warning replaces the code automatically with:

    - -

    UIApplicationShortcutItem.respondsToSelector(#selector(FBSDKAccessToken.new))

    - -

    However this doesn't compile because new() is unavailabe. -What am I supposed to use in this case?

    -",HQ -"//Client - - `enter code here` public class MyClient { - public static void main(String[] args) throws IOException, SocketException, ConnectException { - ServerSocket serverSocket = null; - Socket clientSocket = null; - BufferedReader in = null; - - System.out.println(""Welcome to the Daytime client.""); - try{ - clientSocket = new Socket(""localhost"", 4321); - while(true){ - in = new BufferedReader(new InputStreamReader(clientSocket.getInputStream())); - String s = in.readLine(); - System.out.println(""Here is the timestamp received from the server: ""+s); - System.out.println(""The program terminated with no error and no exception""); - in.close(); - clientSocket.close(); - clientSocket.close(); - } - }catch (ConnectException e){ - System.exit(0); - }catch (SocketException f){ - System.exit(0); - }catch (IOException e) { - System.out.println(""Error: "" + e); - System.exit(0); - } - } - } - -//SERVER - - import java.io.*; - import java.net.*; - import java.util.*; - - public class MyServer { - public static void main(String[] args) throws IOException { - ServerSocket serverSocket = null; - Socket clientSocket = null; - PrintWriter out = null; - - System.out.println(""Daytime server ready.""); - - try { - serverSocket = new ServerSocket(4321); - while(true){ - clientSocket = serverSocket.accept(); - System.out.println(""Request received.""); - out = new PrintWriter(clientSocket.getOutputStream(), true); - Date timestamp = new Date (); - out.println(timestamp.toString()); - } - } catch (IOException e) { - System.out.println(""Error: "" + e); - System.exit(0); - } - out.close(); - clientSocket.close(); - serverSocket.close(); - System.out.println(""3""); - - } - } - -",LQ -"

    It seems that there are too many Python linting packages and I am wonder which one should we use.

    - -

    I suspect installing two will provide a confusing experience, if not even triggering weird bugs.

    - - - -

    Here are few areas I want to clarify:

    - -
      -
    • is ok to use more than one?
    • -
    • wouldn't be better to ask authors to join efforts and focus on a single one?
      -What are the pros and cons for them?
    • -
    -",HQ -"

    Spring supports two different validation methods: Spring validation and JSR-303 bean validation. Both can be used by defining a Spring validator that delegates to other delegators including the bean validator. So far so good.

    - -

    But when annotating methods to actually request validation, it's another story. I can annotate like this

    - -
    @RequestMapping(value = ""/object"", method = RequestMethod.POST)
    -public @ResponseBody TestObject create(@Valid @RequestBody TestObject obj, BindingResult result) {
    -
    - -

    or like this

    - -
    @RequestMapping(value = ""/object"", method = RequestMethod.POST)
    -public @ResponseBody TestObject create(@Validated @RequestBody TestObject obj, BindingResult result) {
    -
    - -

    Here, @Valid is javax.validation.Valid, and @Validated is org.springframework.validation.annotation.Validated. The docs for the latter say

    - -
    -

    Variant of JSR-303's Valid, supporting the specification of validation - groups. Designed for convenient use with Spring's JSR-303 support but - not JSR-303 specific.

    -
    - -

    which doesn't help much because it doesn't tell exactly how it's different. If at all. Both seem to be working pretty fine for me.

    -",HQ -"val str = line.split("":"") - -println(line.split(':')(1)) - -When the index is one I get the java.lang.ArrayIndexOutOfBoundsException: 1 but when I put the index as 0 no issues at all. - -I am new to Scala btw..",LQ -"

    I have the following code:

    - -
    func registerNotification(name:String, selector:Selector)
    -{
    -    NSNotificationCenter.defaultCenter().addObserver(self, selector: selector, name: name, object: nil)
    -}
    -
    -func registerKeyboardNotifications()
    -{
    -    let isInPopover = navigationController?.popoverPresentationController != nil
    -    let ignore = isInPopover && DEVICE_IS_IPAD
    -    if !ignore {
    -        registerNotification(UIKeyboardWillShowNotification, selector: Selector(""keyboardWillShow:""))
    -        registerNotification(UIKeyboardWillHideNotification, selector: Selector(""keyboardWillHide:""))
    -    }
    -}
    -
    - -

    in an extension to UIViewController. This code is reused by many viewcontroller to register for keyboard notifications. However with Swift 2.2 it produces a warning. I like the new #selector syntax but not sure how to implement it in this case.

    - -

    I think the correct solution is to make a protocol and extend UIViewController only for instances that conform to that protocol. My code so far:

    - -
    @objc protocol KeyboardNotificationDelegate
    -{
    -    func keyboardWillShow(notification: NSNotification)
    -    func keyboardWillHide(notification: NSNotification)
    -}
    -
    -extension UIViewController where Self: KeyboardNotificationDelegate
    -{
    -    func registerKeyboardNotifications()
    -    {
    -        let isInPopover = navigationController?.popoverPresentationController != nil
    -        let ignore = isInPopover && DEVICE_IS_IPAD
    -        if !ignore {
    -            registerNotification(UIKeyboardWillShowNotification, selector: #selector(KeyboardNotificationDelegate.keyboardWillShow(_:)))
    -            registerNotification(UIKeyboardWillHideNotification, selector: #selector(KeyboardNotificationDelegate.keyboardWillHide(_:)))
    -        }
    -    }
    -}
    -
    - -

    However this get me the error

    - -
    trailing where clause for extension of non-generic type
    -
    - -

    on the extension row. Any ideas?

    -",HQ -"

    Im running some tests in circleci and some of the tests are taking longer then 10 min cause its ui tests that run on a headless browser that Im installing in my circle.yml

    - -

    How can I extend the time of the timeout?

    - -

    thanks

    -",HQ -"

    I want to install a specific version of Laravel Lumen (5.1 instead of the lastest one 5.2) on a new project.

    - -

    From the documentation :

    - -
    lumen new blog
    -
    - -

    or :

    - -
    composer create-project laravel/lumen --prefer-dist
    -
    - -

    Does not work : it install the lastest one.

    -",HQ -"

    The elasticbeanstalk-access_log log-file in our AWS EBS instances are full of 408 errors, like these:

    - -
    172.31.1.56 (-) - - [16/Mar/2016:10:16:31 +0000] ""-"" 408 - ""-"" ""-""
    -172.31.1.56 (-) - - [16/Mar/2016:10:16:31 +0000] ""-"" 408 - ""-"" ""-""
    -172.31.1.56 (-) - - [16/Mar/2016:10:16:31 +0000] ""-"" 408 - ""-"" ""-""
    -172.31.1.56 (-) - - [16/Mar/2016:10:16:31 +0000] ""-"" 408 - ""-"" ""-""
    -172.31.1.56 (-) - - [16/Mar/2016:10:16:31 +0000] ""-"" 408 - ""-"" ""-""
    -172.31.1.56 (-) - - [16/Mar/2016:10:16:59 +0000] ""-"" 408 - ""-"" ""-""
    -
    - -

    They appear randomly, sometimes there are a few minutes between them, sometimes there are 4-6 errors within a few seconds. These errors also happen on our non-public staging environment when there is no any real traffic on the server, so the source of these requests is probably one of AWS's own service.

    -",HQ -"

    I'm using the ggmap's geocode to find the latitude and longitude of different cities. It worked completely fine yesterday but I get an OVER QUERY LIMIT after only one request today.

    - -

    In fact if I just load the library and run geocode it throws the OVER QUERY LIMIT error:

    - -
    > library(ggmap)
    -> geocode(""Paris"")
    -Information from URL : http://maps.googleapis.com/maps/api/geocode/json?address=Paris&sensor=false
    -  lon lat
    -1  NA  NA
    -Warning message:
    -geocode failed with status OVER_QUERY_LIMIT, location = ""Paris"" 
    -
    - -

    I checked different topics on stackoverflow but nobody seems to have the same problem. -I tried to see if I was over the 2500 limit (very unlikely but I'm new to coding so maybe I did something wrong...) and geocodeQueryCheck() reads 2498 but then again it resets every time I run library(ggmap).

    - -

    It worked once fifteen minutes ago when I rebooted Rstudio but now it doesn't work anymore, I'm completely lost!

    - -

    Does anyone have any idea what might be the problem?

    - -

    PS: I'm new to stackoverflow so if you have any remark on anything please tell me!

    -",HQ -"

    I have a problem with UILabel subclass cutting off text in the bottom. Label is of proper height to fit the text, there is some space left in the bottom, but the text is still being cut off.

    - -

    - -

    The red stripes are border added to label's layer.

    - -

    I subclass the label to add edge insets.

    - -
    override func sizeThatFits(size: CGSize) -> CGSize {
    -    var size = super.sizeThatFits(size)
    -    size.width += insets.left + insets.right
    -    size.height += insets.top + insets.bottom
    -    return size
    -}
    -
    -override func drawTextInRect(rect: CGRect) {
    -    super.drawTextInRect(UIEdgeInsetsInsetRect(rect, insets))
    -}
    -
    - -

    However, in this particular case the insets are zero.

    -",HQ -"How can I use getline() function to read words form a line that I have stored in a string ? - -For example: - -`char ch[100],w[20]; -cin.getline(ch,100);` - - -Now can I use getline to count the number of words in ch. I dont want to use a delimeter to directly count words from ch. I want to read words from ch and store them in w. - -I have tried using ch in getline function as a parameter. - -Please help me.",LQ -"

    I've an observable like this

    - -
    Observable.zip(observable, extObs, new Func2<List<UserProfile>, ArrayList<Extension>, UserProfile>() {
    -        @Override
    -        public UserProfile call(List<UserProfile> userProfiles, ArrayList<Extension> extensions) {
    -
    -
    -            return userProfiles.get(0);
    -        }
    -    }).subscribeOn(Schedulers.io()).observeOn(AndroidSchedulers.mainThread()).unsubscribeOn(Schedulers.io()).subscribe(new Subscriber<UserProfile>() {
    -        @Override
    -        public void onCompleted() {
    -
    -        }
    -
    -        @Override
    -        public void onError(Throwable e) {
    -            e.printStackTrace();
    -        }
    -
    -        @Override
    -        public void onNext(UserProfile userProfile) {
    -            profileListener.onProfileSet(userProfile);
    -        }
    -    });
    -}
    -
    - -

    I need to pass the ArrayList in the methodprofileListener.onProfileSet(userProfile); as profileListener.onProfileSet(userProfile,extensions);

    - -

    Is it possible to do so in zip or is there any other methods of rxjava to solve such type of problems?

    -",HQ -"

    I want to use the Google Maps geometry library within a nodejs application.

    - -

    From what I can see this library is only available with the Google Maps Javascript api. Is there a way for me to do this?

    - -

    Colin Goldberg

    -",HQ -"

    - -

    - -

    I made an application with android.support.design.widget.TabLayout and when I am switching the app into landscape mode, the tab will not fit into the window. Please help, thanks in advance.

    -",HQ -"

    I'm trying to implement 3D Touch feature that presents a summary of information (like Peek). But I don't want that it pops. I just want to preview the information like contacts app does with contatcs:

    - -

    - -

    It only presents an UIView and doesn't deal with two levels of force (peek and pop).

    - -

    How can I do something like this?

    - -

    Ps.: I don't want to deal with long press gesture.

    -",HQ -"

    I'm having a hard time understanding the difference between ACTION_OPEN_DOCUMENT and ACTION_GET_CONTENT intents when they are used to open an openable document. If I am supporting Andriod before KitKat, which does not support ACTION_OPEN_DOCUMENT, should I just settle with ACTION_GET_CONTENT?

    - -

    The documentation says this:

    - -
    -

    ACTION_OPEN_DOCUMENT is not intended to be a replacement for - ACTION_GET_CONTENT. The one you should use depends on the needs of - your app:

    - -
      -
    • Use ACTION_GET_CONTENT if you want your app to simply read/import - data. With this approach, the app imports a copy of the data, such as - an image file.
    • -
    • Use ACTION_OPEN_DOCUMENT if you want your app to have - long term, persistent access to documents owned by a document - provider. An example would be a photo-editing app that lets users edit - images stored in a document provider.
    • -
    -
    - -

    Doesn't ACTION_GET_CONTENT also use document providers in KitKat? What would prevent me from having ""long term, persistent access"" and what exactly does that mean?

    - -

    Basically, what is the difference between the following two snippets?

    - -

    ACTION_GET_CONTENT

    - -
    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
    -intent.addCategory(Intent.CATEGORY_OPENABLE);
    -intent.setType(""*/*"");
    -
    - -

    ACTION_OPEN_DOCUMENT

    - -
    Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
    -intent.setType(""*/*"");
    -
    -",HQ -"

    TensorBoard seems to have a feature to display multiple different runs and toggle them.

    - -

    - -

    How can I make multiple runs show up here and how can assign a name to them to differentiate them?

    -",HQ -"I am trying to convert the vhdl code below to verilog, and it is not working properly. I have already done most of it, but I think I may have converted the VHDL keyword others incorrectly. Could anyone please help? - -## VHDL Code ## - entity debounce is - Port ( clk : in STD_LOGIC; - i : in STD_LOGIC; - o : out STD_LOGIC); - end debounce; - - architecture Behavioral of debounce is - signal c : unsigned(23 downto 0); - begin - process(clk) - begin - if rising_edge(clk) then - if i = '1' then - if c = x""FFFFFF"" then - o <= '1'; - else - o <= '0'; - end if; - c <= c+1; - else - c <= (others => '0'); --LINE IN QUESTION - o <= '0'; - end if; - end if; - end process; - end Behavioral; -## My Verilog Code ## - - module debounce(input clk, input i, output o); - reg unsigned [23:0] c; - reg out_temp; - always @(posedge clk)begin - if(i == 1)begin - if(c==24'hFFFFFF)begin - out_temp = 1'b1; - end - else begin - out_temp = 1'b0; - end - c = c+1'b1; - end - else begin - c = 1'b0; // LINE IN QUESTION - out_temp = 1'b0; - end - end - assign o = out_temp; - endmodule",LQ -"

    [!] Unable to satisfy the following requirements:

    - -
      -
    • Google/SignIn required by Podfile
    • -
    • Google/SignIn required by Podfile
    • -
    • Google/SignIn required by Podfile
    • -
    • Google/SignIn required by Podfile
    • -
    • Google/SignIn (= 1.3.2) required by Podfile.lock
    • -
    - -

    Specs satisfying the Google/SignIn dependency were found, but they required a higher minimum deployment target.

    - -

    Specs satisfying the Google/SignIn dependency were found, but they required a higher minimum deployment target.

    - -

    Specs satisfying the Google/SignIn dependency were found, but they required a higher minimum deployment target.

    - -

    Specs satisfying the Google/SignIn dependency were found, but they required a higher minimum deployment target.

    - -

    Specs satisfying the Google/SignIn (= 1.3.2) dependency were found, but they required a higher minimum deployment target.

    -",HQ -"Alright, so I got piece of code. - - var getStatusInfo = message.ToString(); - Console.Write(getStatusInfo); - Regex getStatus = new Regex(""[A-Za-z]""); - string getStatus2 = getStatus.Match(getStatusInfo).Value; - getStatus2 = getStatus2.Replace(""addstatus"", """"); - SuicideStatusMagic = getStatus2; - Bot.SteamFriends.SendChatMessage(OtherSID, type, ""Status added!: "" + SuicideStatusMagic); - -How it works is. You type to bot: addstatus swag, then it should show: Status added: Swag, but what it shows it status added: a - -What could be the issue?",LQ -"

    This is not a duplicate. My scenario is a bit different and I could not find a solution from similar posts here. -I installed Python 3.5. -I ran the pip install google command and verified the modules. Google was present. -I installed Anaconda 3.5 and tried to run z sample code. But I'm getting the import error. Please find the screen shot attached. -What am I missing? Do I have to link my Spyder to Python installation directory in some way? Why is Spyder unable to google module?

    - -

    My Python installation directory: C:\Users\XXX\AppData\Local\Programs\Python\Python35 -

    - -

    -",HQ -"

    I have several beans of the same class defined:

    - -
      @Bean
    -  public FieldDescriptor fullSpotField() {
    -     FieldDescriptor ans = new FieldDescriptor(""full_spot"", String.class);
    -     return ans;
    -  }
    -
    -  @Bean
    -  public FieldDescriptor annotationIdField() {
    -     FieldDescriptor ans = new FieldDescriptor(""annotationID"", Integer.class);
    -     return ans;
    -  }
    -
    - -

    consequently when I autowire them

    - -
       @Autowired
    -   public FieldDescriptor fullSpotField;
    -
    -   @Autowired
    -   public FieldDescriptor annotationIdField;
    -
    - -

    I get an exception

    - -
    NoUniqueBeanDefinitionException: No qualifying bean of type [...FieldDescriptor] is defined: expected single matching bean but found ...
    -
    - -

    How to autowire by name as it possible in XML config?

    -",HQ -"

    I'm trying to get enum type from raw value:

    - -
    enum TestEnum: String {
    -    case Name
    -    case Gender
    -    case Birth
    -
    -    var rawValue: String {
    -        switch self {
    -        case .Name: return ""Name""
    -        case .Gender: return ""Gender""
    -        case .Birth: return ""Birth Day""
    -        }
    -    }
    -}
    -
    -let name = TestEnum(rawValue: ""Name"")       //Name
    -let gender = TestEnum(rawValue: ""Gender"")   //Gender
    -
    - -

    But it seems that rawValue doesn't work for string with spaces:

    - -
    let birth = TestEnum(rawValue: ""Birth Day"") //nil
    -
    - -

    Any suggestions how to get it?

    -",HQ -"

    I'm trying to reduce the amount of garbage my web service generates, and I noticed that we're creating a new Json.NET JsonSerializer instance for each request. It is not the most lightweight object ever, so I'm wondering if I can just create a single instance and reuse it for all requests. Primarily this requires that it be threadsafe during serialization and deserialization.

    - -

    The documentation doesn't say whether it's threadsafe or not.

    - -

    Inspecting the code it appears that the serialization and deserialization methods are threadsafe, as long as you don't change any settings on the object at the same time. However, it's a complex class so I'm not 100% sure of my analysis.

    - -

    Has anyone tried reusing instances of JsonSerializer and had it work or not? Are there any known problems with reusing it?

    -",HQ -"

    My uWSGI logs are full of entries like this for every request:

    - -
    -

    localhost [pid: 4029|app: 0|req: 1/1] 127.0.0.1 () {48 vars in 906 - bytes} [Wed Mar 23 18:35:38 2016] GET / => generated 94847 bytes in - 1137 msecs (HTTP/1.1 200) 4 headers in 224 bytes (1 switches on core - 0)

    -
    - -

    I'm not sure if it's uWSGI spamming them or Django. How can I disable the request logging?

    -",HQ -"

    How do you hide the status bar for iOS or Android when developing with React Native? I've imported StatusBar, but I believe there is also StatusBarIOS and a StatusBar for Android.

    -",HQ -"

    I understand that UNMET PEER DEPENDENCY means I need to npm install one of my peerDependencies. I believe that extraneous means the package exists but is not listed in package.json (presumably because it's installed globally?).

    - -

    What does it mean to have the two of them together?

    - -

    And why am I seeing this error even though I see these packages in node_modules, at the correct versions?

    -",HQ -"

    TL;DR: I need to ""replay"" dead letter messages back into their original queues once I've fixed the consumer code that was originally causing the messages to be rejected.

    - -

    I have configured the Dead Letter Exchange (DLX) for RabbitMQ and am successfully routing rejected messages to a dead letter queue. But now I want to look at the messages in the dead letter queue and try to decide what to do with each of them. Some (many?) of these messages should be replayed (requeued) to their original queues (available in the ""x-death"" headers) once the offending consumer code has been fixed. But how do I actually go about doing this? Should I write a one-off program that reads messages from the dead letter queue and allows me to specify a target queue to send them to? And what about searching the dead letter queue? What if I know that a message (let's say which is encoded in JSON) has a certain attribute that I want to search for and replay? For example, I fix a defect which I know will allow message with PacketId: 1234 to successfully process now. I could also write a one-off program for this I suppose.

    - -

    I certainly can't be the first one to encounter these problems and I'm wondering if anyone else has already solved them. It seems like there should be some sort of Swiss Army Knife for this sort of thing. I did a pretty extensive search on Google and Stack Overflow but didn't really come up with much. The closest thing I could find were shovels but that doesn't really seem like the right tool for the job.

    -",HQ -"

    When I try to push new docker images to gcr.io using gcloud docker push, it frequently makes some progress before stalling out:

    - -
    $ gcloud docker push gcr.io/foo-bar-1225/baz-quux:2016-03-23
    -The push refers to a repository [gcr.io/foo-bar-1225/baz-quux]
    -762ab2ceaa70: Pushing [>                                              ]   556 kB/154.4 MB
    -2220ee6c7534: Pushing [===>                                           ]  4.82 MB/66.11 MB
    -f99917176817: Layer already exists
    -8c1b4a49167b: Layer already exists
    -5f70bf18a086: Layer already exists
    -1967867932fe: Layer already exists
    -6b4fab929601: Layer already exists
    -550f16cd8ed1: Layer already exists
    -44267ec3aa94: Layer already exists
    -bd750002938c: Layer already exists
    -917c0fc99b35: Layer already exists
    -
    - -

    The push stays in this state indefinitely (I've left it for an hour without a byte of progress). If I Ctrl-C kill this process and rerun it, it gets to the exact same point and again makes no progress.

    - -

    The only workaround I've found is to restart my computer and re-run ""Docker Quickstart Terminal"". Then the push succeeds.

    - -

    Is there a workaround for stalled pushes that doesn't require frequently rebooting my computer? (I'm on Mac OS X.)

    -",HQ -"

    I have been using git for a while but just recently started using packrat. I would like my repository to be self contained but at the same time I do not want to include CRAN packages as they are available. It seems once R is opened in a project with packrat it will try to use packages from project library; if they are not available then it will try to install from src in the project library; if they are not available it will look at libraries installed in that computer. If a library is not available in the computer; would it look at CRAN next?

    - -

    What files should I include in my git repo as a minimum (e.g., packrat.lock)?

    -",HQ -"

    Say you have this code in a module called Module1:

    - -
    Option Explicit
    -
    -Private Type TSomething
    -    Foo As Integer
    -    Bar As Integer
    -End Type
    -
    -Public Something As TSomething
    -
    - -

    In equivalent C# code if you made the Something field public, the code would no longer compile, because of inconsistent accessibility - the type of the field being less accessible than the field itself. Which makes sense.

    - -

    However in VBA you could have this code in Module2:

    - -
    Sub DoSomething()
    -    Module1.Something.Bar = 42
    -    Debug.Print Module1.Something.Bar
    -End Sub
    -
    - -

    And you get IntelliSense while typing it, and it compiles, and it runs, and it outputs 42.

    - -

    Why? How does it even work, from a COM standpoint? Is it part of the language specs?

    -",HQ -"

    I am using the Spyder editor for Python. -I need to change the indentation setting (e.g., let ""tab"" mean ""4 spaces"").

    - -

    How do I accomplish this?

    -",HQ -"

    I need to be able to add a search box to my multi-select fields using select2.

    - -

    For whatever reason, while search boxes appear as expected in single-select fields, the same select2() call on a multi-select field does not add a search box.

    - -
    var data = []; // Programatically-generated options array with > 5 options
    -var placeholder = ""select"";
    -$("".mySelect"").select2({
    -    data: data,
    -    placeholder: placeholder,
    -    allowClear: false,
    -    minimumResultsForSearch: 5});
    -
    - -

    Does select2 not support search boxes with multi-selects? Does anyone have a good similarly-functioning alternative?

    -",HQ -"

    The title explains itself, how to get 2 out of the object

    - -
    slice(0,2)
    -
    - -

    The documentation is somewhat confusing, or it is the wrong one

    - -

    https://docs.python.org/2/c-api/slice.html

    - -

    In particular I don't understand what is the meaning of the output of

    - -
    slice(0,2).indices(0)  # (0, 0, 1)
    -slice(0,2).indices(10 ** 10)  # (0, 2, 1)
    -
    - -

    One possible workaround is to slice a list with the slice object

    - -
    a = [1,2,3,4,5]
    -len(a[slice(0,2)])  # 2
    -
    - -

    But this will fail for an arbitrary large slice.

    - -

    Thanks, I couldn't find an answer In other posts.

    -",HQ -"

    I have multiple processes to write data to ES at the same time, also two processes may write the same key with different values at the same time, it caused the exception as following:

    - -
    ""error"" : ""VersionConflictEngineException[[website][2] [blog][1]:
    -             version conflict, current [2], provided [1]]"",
    -""status"" : 409
    -
    - -

    How could I fix the above problem please, since I have to keep multiple processes.

    -",HQ -"

    Is it possible to have life-cycle hooks for a service that is annotated with @Injectable()?

    - -

    I'd have expected the life-cycle hooks to be called on a service like this, but I was proven wrong, it seems to be working on @Component only. Is there a way to get informed in a service when dependency injection creates / destroys a service?

    - -
    import {Component, Injectable, OnInit, OnDestroy} from 'angular2/core';
    -
    -@Injectable()
    -export class SampleService implements OnInit, OnDestroy {
    -    ngOnInit() {
    -        console.log(""OnInit"")
    -    }
    -    ngOnDestroy() {
    -        console.log(""OnDestroy"")
    -    }
    -}
    -
    -@Component({
    -  selector: ""sample"",
    -  template: ""<div>Sample Component</div>"",
    -  providers: [ SampleService ]
    -})
    -export class SampleComponent {
    -  constructor() { private _sampleService: SampleService }
    -}
    -
    -",HQ -"

    I have a Nexus 6P API23 emulator downloaded on my Ubuntu 15.10 PC. When I try to launch it, it fails and a dialog box pops up and says:

    - -

    (AVD config: Nexus 6P API 23 x86 -- Hardware-GLES 2.0 Graphics)

    - -
    Cannot launch AVD in emulator.
    -Output:
    -libGL error: unable to load driver: nouveau_dri.so
    -libGL error: driver pointer missing
    -libGL error: failed to load driver: nouveau
    -libGL error: unable to load driver: swrast_dri.so
    -libGL error: failed to load driver: swrast
    -X Error of failed request:  GLXBadContext
    -  Major opcode of failed request:  155 (GLX)
    -  Minor opcode of failed request:  6 (X_GLXIsDirect)
    -  Serial number of failed request:  47
    -  Current serial number in output stream:  46
    -libGL error: unable to load driver: nouveau_dri.so
    -libGL error: driver pointer missing
    -libGL error: failed to load driver: nouveau
    -libGL error: unable to load driver: swrast_dri.so
    -libGL error: failed to load driver: swrast
    -X Error of failed request:  GLXBadContext
    -  Major opcode of failed request:  155 (GLX)
    -  Minor opcode of failed request:  6 (X_GLXIsDirect)
    -  Serial number of failed request:  47
    -  Current serial number in output stream:  46
    -libGL error: unable to load driver: nouveau_dri.so
    -libGL error: driver pointer missing
    -libGL error: failed to load driver: nouveau
    -libGL error: unable to load driver: swrast_dri.so
    -libGL error: failed to load driver: swrast
    -X Error of failed request:  BadValue (integer parameter out of range for operation)
    -  Major opcode of failed request:  155 (GLX)
    -  Minor opcode of failed request:  24 (X_GLXCreateNewContext)
    -  Value in failed request:  0x0
    -  Serial number of failed request:  33
    -  Current serial number in output stream:  34
    -QObject::~QObject: Timers cannot be stopped from another thread
    -
    - -

    I have tried other AVDs and they don't work.

    -",HQ -"

    I use code below to make a picture with camera. Instead of saving I would like to encode it to Base64 and after that pass it to another API as an input. I can't see method, how to modify code to take pictures in Base64 instead of regular files.

    - -
    public class CameraDemoActivity extends Activity {
    -    int TAKE_PHOTO_CODE = 0;
    -    public static int count = 0;
    -
    -    @Override
    -    public void onCreate(Bundle savedInstanceState)
    -    {
    -        super.onCreate(savedInstanceState);
    -        setContentView(R.layout.main);
    -
    -        final String dir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES) + ""/picFolder/"";
    -        File newdir = new File(dir);
    -        newdir.mkdirs();
    -
    -        Button capture = (Button) findViewById(R.id.btnCapture);
    -        capture.setOnClickListener(new View.OnClickListener() {
    -            public void onClick(View v) {
    -                count++;
    -                String file = dir+count+"".jpg"";
    -                File newfile = new File(file);
    -                try {
    -                    newfile.createNewFile();
    -                }
    -                catch (IOException e)
    -                {
    -                }
    -
    -                Uri outputFileUri = Uri.fromFile(newfile);
    -
    -                Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    -                cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
    -
    -                startActivityForResult(cameraIntent, TAKE_PHOTO_CODE);
    -            }
    -        });
    -    }
    -
    -    @Override
    -    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    -        super.onActivityResult(requestCode, resultCode, data);
    -
    -        if (requestCode == TAKE_PHOTO_CODE && resultCode == RESULT_OK) {
    -            Log.d(""CameraDemo"", ""Pic saved"");
    -        }
    -    }
    -}
    -
    - -

    I try to use code below to convert an image to Base64.

    - -
    public static String encodeToBase64(Bitmap image, Bitmap.CompressFormat compressFormat, int quality)
    -{
    -    ByteArrayOutputStream byteArrayOS = new ByteArrayOutputStream();
    -    image.compress(compressFormat, quality, byteArrayOS);
    -    return Base64.encodeToString(byteArrayOS.toByteArray(), Base64.DEFAULT);
    -}
    -
    - -

    Above described should be a much more direct and easier way than saving image and after that looking for image to encode it.

    -",HQ -"Alright, -Suppose you have **class A** and **class B**. **Class A** is the main class which builds a frame with a GUI. It contains all the GUI variables (such as buttons, labels, strings) along with whatever methods that you'll be using. **Class A** also creates a **class B** object: - - ClassB name = new ClassB(); - -Inside **class B** you will find a **for loop**. Now, once the for loop is finished looping, I want to call a method located in **class A.** Whenever I try calling a method located in **class A**, Eclipse insists making that method **static**. I'm trying to avoid making static methods. Is there any way around this problem? ",LQ -"

    I have a Profile component that is loaded by react-router (path=""profile/:username"") and the component itself looks like this:

    - -
    ...
    -import { fetchUser } from '../actions/user';
    -
    -class Profile extends Component {
    -  constructor(props) {
    -    super(props);
    -  }
    -  componentDidMount() {
    -    const { username } = this.props;
    -    this.fetchUser(username);
    -  }
    -  componentWillReceiveProps(nextProps) {
    -    const { username } = nextProps.params;
    -    this.fetchUser(username);
    -  }
    -  fetchUser(username) {
    -    const { dispatch } = this.props;
    -    dispatch(fetchUser(username));
    -  }
    -  render() {...}
    -}
    -
    -export default connect((state, ownProps) => {
    -  return {
    -    username: ownProps.params.username,
    -    isAuthenticated: state.auth.isAuthenticated
    -  };
    -})(Profile);
    -
    - -

    And the fetchUser action looks like this (redux-api-middleware):

    - -
    function fetchUser(id) {
    -  let token = localStorage.getItem('jwt');
    -  return {
    -    [CALL_API]: {
    -      endpoint: `http://localhost:3000/api/users/${id}`,
    -      method: 'GET',
    -      headers: { 'x-access-token': token },
    -      types: [FETCH_USER_REQUEST, FETCH_USER_SUCCESS, FETCH_USER_FAILURE]
    -    }
    -  }
    -}
    -
    - -

    The reason I added componentWillReceiveProps function is to react when the URL changes to another :username and to load that users profile info. At a first glance everything seems to work but then I noticed while debugging that componentWillReceiveProps function is called in a infinite loop and I don't know why. If I remove componentWillReceiveProps then the profile doesn't get updated with the new username but then I have no loops problem. Any ideas?

    -",HQ -"

    I have a CLion C++ project that has the following structure:

    - -
        project
    -       ---->my_includes
    -       |   ----> my_own.hpp
    -       ---->source
    -           ----> my_app
    -               ----> my_src.cpp
    -
    - -

    The first line of my_src.cpp is

    - -
    #include ""my_includes/my_own.hpp""
    -
    - -

    I use an external build system that requires this inclusion format. The problem is if I use a function in my source file defined in the included header, CLion says ""Cannot find my_own.hpp"" if I try to hover over the inclusion.

    - -

    I tried marking the include directory as containing Project Source or Headers but this didn't fix it. Any ideas?

    -",HQ -"

    I am trying to use the One Million Song Dataset, for this i had to install python tables, numpy, cython, hdf5, numexpr, and so.

    - -

    Yesterday i managed to install all i needed, and after having some troubles with hdf5, i downloaded the precompiled binary packages and saved them in my /bin folder, and the respective libraries in /lib , after that i tested this python script : http://labrosa.ee.columbia.edu/millionsong/sites/default/files/tutorial1.py.txt

    - -

    and it worked fine, to be clear the way i made it work was to first run the script and start installing the needed dependencies, but today i restarted my laptop and it didn't work, now it throws me this error on the console :

    - -
    python2.7 script.py 
    -
    - -

    returns :

    - -
    import numpy as np # get it at: http://numpy.scipy.org/
    -from . import random
    -from .mtrand import *
    -ImportError: /home/francisco/.local/lib/python2.7/site-packages/numpy/random/mtrand.so: undefined symbol: PyFPE_jbuf
    -
    - -

    seems to me that there is a missing variable in such file, my guess is that the script is looking for the numpy library in the wrong place, since i made so many failed installations maybe i broke something and it only worked out because it was loaded in the temporal memory of the computer.

    - -

    I tried installing Anaconda, and i created a new environment and installed the packaged with the anaconda package manager, and even thought i listed all packaged and it returns :

    - -
    # packages in environment at /home/francisco/anaconda2/envs/Music:
    -#
    -biopython                 1.66                np110py27_0  
    -cython                    0.23.4                    <pip>
    -hdf5                      1.8.15.1                      2  
    -mkl                       11.3.1                        0  
    -numexpr                   2.5                 np110py27_0  
    -numpy                     1.10.4                   py27_1  
    -openssl                   1.0.2g                        0  
    -pillow                    3.1.1                     <pip>
    -pip                       8.1.1                    py27_0  
    -pytables                  3.2.2               np110py27_1  
    -python                    2.7.11                        0  
    -python-ldap               2.4.25                    <pip>
    -readline                  6.2                           2  
    -reportlab                 3.3.0                     <pip>
    -requirements              0.1                       <pip>
    -setuptools                20.3                     py27_0  
    -sqlite                    3.9.2                         0  
    -tables                    3.2.2                     <pip>
    -tk                        8.5.18                        0  
    -wheel                     0.29.0                   py27_0  
    -zlib                      1.2.8                         0  
    -
    - -

    i still get the same error. I really need help and don't know what else to try. Thanks.

    -",HQ -"

    I enabled a sparse checkout

    - -
    git init
    -git remote add <url>
    -git config --global core.sparseCheckout true
    -echo ""assets"" >> .git/info/sparse-checkout
    -git pull origin master
    -
    - -

    Git checked out only the assets folder for me

    - -

    But now, I want to enable full branch checkout again (checkout folders/files), but it doesn't seem to work.

    - -

    1) first I disabled config

    - -
    git config --global core.sparseCheckout false
    -
    - -

    2) removed the entries in .git/info/sparse-checkout

    - -

    But git didn't checkout any of the other folders/files for me, it seems it is sticking to 'assets' folder.

    - -

    Could anyone tell me how can I reset/disable this sparse checkout without creating a new repo.?

    -",HQ -"

    I am working on a large code base, and see in many places this type of code:

    - -
    public static class RequestCustomData implements View.OnClickListener {
    -    WeakReference<MainActivity> mainActivity;
    -
    -    public RequestCustomData(MainActivity activity) {
    -        mainActivity = new WeakReference<>(activity);
    -    }
    -
    -    @Override
    -    public void onClick(View view) {
    -        MainActivity activity = mainActivity.get();
    -        activity.requestCustomData(true, null);
    -    }
    -}
    -
    - -

    I am a bit confused why this is used is so many places? I took a look at this document but it did not clarify well why this type of code is so heavily used on the app I am working on it

    - -

    https://community.oracle.com/blogs/enicholas/2006/05/04/understanding-weak-references

    - -

    Anyone can explain me if this is a common pattern? If so, why?

    -",HQ -"

    I have kafka producer for my java based web application to push messages to Kafka. As per the documentation I could see kafka producer is thread safe. Does it mean that I can have single instance of Kafka producer and use it by different threads ( web requests ) each will open and close the producer in my case. Will this create any issues ? Or Is better to initiate Producers per request ?

    -",HQ -" - - import time, random - from tkinter import * - - class Box( Frame ): - - def __init__( self ): # __init__ runs when Box() executes - Frame.__init__( self ) # Frame is the top level component - self.pack() - self.master.title( ""Canvas animation"" ) - self.master.geometry( ""400x400"" ) # size in pixels - label = Label(self, text="" Bubbles "") - label.grid(row=1, column=1) - # create Canvas component - self.myCanvas = Canvas( self ) - self.myCanvas.grid(row=2, column=1) - self.myCanvas.config(bg = 'cyan', height = 350, width = 350) - - self.balls = [] #list of balls belongs to the Box - - self.paint() - - self.animate() - - def paint( self ): - - #create a list of balls - for i in range(35): - - x1, y1 = random.randint(35,315), random.randint(35,315) - x2, y2 = x1 + 30 , y1 + 30 #size - - - ballObjectId = self.myCanvas.create_oval\ - ( x1, y1, x2, y2, fill = '') - self.balls.append([ballObjectId, x1, y1]) - - self.myCanvas.update() - print (""paint done"") - - def animate( self ): - #animate the list of balls - for i in range(1000): - for i in range(len(self.balls)): - - self.myCanvas.delete(self.balls[i][0]) #delete and redraw to move - self.balls[i][1] += random.randint(-2,2) #change coordinates - self.balls[i][2] += random.randint(-10,0) - x1, y1 = self.balls[i][1], self.balls[i][2] - x2, y2 = x1 + random.randint(30,31) , y1 + random.randint(30,31) - - self.balls[i][0]=(self.myCanvas.create_oval\ - ( x1, y1, x2, y2, fill = '')) - self.myCanvas.update() - - - def main(): - Box().mainloop() - - if __name__ == ""__main__"": - main() - -This is the code I have so far. The problem I can't seem to solve is I need the balls to move a different speeds and also have different sizes. The final step I need to do is have the balls go to the top and come back up from the bottom. So the final product should be balls of multiple sizes traveling at different speeds to the top of the canvas then appearing back at the bottom. Thanks for any help!",LQ -"

    I'm trying to run a specific Behat scenario from the command line, here's what I'm doing:

    - -
    $ bin/behat features/features/baseline.feature:3
    -
    - -

    However this isn't picking up the scenario.

    - -

    If I run

    - -
    bin/behat features/features/baseline.feature
    -
    - -

    I can get the entire feature file to run.

    - -

    Here's what the file looks like -- the scenario I'm trying to run is on line 3 in my text editor:

    - -
    Feature:
    -  @api
    -  Scenario: Clear cache
    -    Given the cache has been cleared
    -    When I am on the homepage
    -    Then I should get a ""200"" HTTP response
    -
    -  Scenario:
    -    Given I am not logged in
    -    When I am on the homepage
    -    Then I should see the text ""We love our users""
    -
    -",HQ -"

    After looking at the impressive performance comparison, I decided that I would give a try to graph-tool. So for comparison, I wrote codes to generate a random tree using both packages.

    - -

    The graph-tool code:

    - -
    import numpy as np
    -import graph_tool.all as gt
    -
    -# construct an initial graph with two nodes and one link
    -n = 5000
    -G = gt.Graph(directed = False)
    -G.add_edge(0, 1)
    -
    -for t in range(2, n):
    -    # connect the new vertex to one of the old vertices randomly
    -    G.add_edge(np.random.choice(range(t)), t)
    -
    - -

    The Networkx code:

    - -
    import networkx as nx
    -import numpy as np
    -
    -n = 5000
    -# initial graph
    -G = nx.Graph()
    -G.add_edge(0, 1)
    -
    -for t in range(2, n):
    -    G.add_edge(t, np.random.choice(range(t)))
    -
    - -

    The graph-tool takes around 14 seconds on my 4-core machine whereas networkx takes less than 2 seconds on the same machine! Am I missing something obvious?

    - -

    Thanks in advance.

    -",HQ -"please find attach image, i need general sql query i mean not hard coded. Thanks[table structure attach][1] - - - [1]: http://i.stack.imgur.com/vUsYV.png",LQ -"

    When saving a checkpoint, TensorFlow often saves a meta file: my_model.ckpt.meta. What is in that file, can we still restore a model even if we delete it and what kind of info did we lose if we restore a model without the meta file?

    -",HQ -"

    I have added a site on my IIS but when I try to get to the default page, I get the following error :

    - -
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 
    -
    -Parser Error Message: The CodeDom provider type ""Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"" could not be located.
    -
    -Source Error: 
    -
    -
    -Line 12:   <system.codedom>
    -Line 13:     <compilers>
    -Line 14:       <compiler language=""c#;cs;csharp"" extension="".cs"" type=""Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"" warningLevel=""4"" compilerOptions=""/langversion:6 /nowarn:1659;1699;1701"" />
    -Line 15:       <compiler language=""vb;vbs;visualbasic;vbscript"" extension="".vb"" type=""Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"" warningLevel=""4"" compilerOptions=""/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+"" />
    -Line 16:     </compilers> 
    -
    - -

    Do I need to install the ""Microsoft.CodeDom.Providers.DotNetCompilerPlatform"" package with nuget to make it works or is it something different ?

    -",HQ -"

    I created basic script in Windows.

    - -
    #!/bin/bash
    -
    -echo Hello
    -
    - -

    I am using Cmder, ConEmu derivative. I tried to change the priviliges with chmod, but they are the same. I don't know how can I execute this script. Normal Linux way, which is: ./hello.sh does not work, and typing just hello.sh makes Windows try to open it, which is bad, since I want it in console. How to execute this script in ConEmu/Cmder?

    -",HQ -"

    I'm trying to set a the sub property first that is defined in the Name interface but when do so I always get an error for example:

    - -
    interface Name{
    -    first: string,
    -    last:string,
    -}
    -
    -class Person{
    -
    -    private name:Name
    -
    -    public setName(firstName, lastName){
    -        this.name.first = firstName;
    -        this.name.last = lastName;
    -    }
    -
    -}
    -
    -
    -var person1  = new Person();
    -person1.setName('Tracy','Herrera');
    -
    - -

    When running it i get the error: Cannot set property 'first' of undefined

    - -

    Any one have an idea to work this out?

    -",HQ -"

    As a general rule, when storing image resources for use in an Android project, should they be placed in the res/drawable or the res/mipmap folder?

    - -

    Apologies for the simple question, I'm relatively new to Android development. The IDE I'm using is Android Studio 1.0.

    -",HQ -"

    I wonder if we user babel loader + all the presets, why do we need to include babel-polyfill anyway into our components? I just think that babel-loader should do all the job itself.

    - -

    Examples were taken here https://github.com/reactjs/redux/tree/master/examples

    - -

    What i am asking about is:

    - -
    import 'babel-polyfill';
    -import React from 'react';
    -import { render } from 'react-dom';
    -import App from './containers/App';
    -
    - -

    Here is package example:

    - -
    {
    -  ""name"": ""redux-shopping-cart-example"",
    -  ""version"": ""0.0.0"",
    -  ""description"": ""Redux shopping-cart example"",
    -  ""scripts"": {
    -    ""start"": ""node server.js"",
    -    ""test"": ""cross-env NODE_ENV=test mocha --recursive --compilers js:babel-register"",
    -    ""test:watch"": ""npm test -- --watch""
    -  },
    -  ""repository"": {
    -    ""type"": ""git"",
    -    ""url"": ""https://github.com/reactjs/redux.git""
    -  },
    -  ""license"": ""MIT"",
    -  ""bugs"": {
    -    ""url"": ""https://github.com/reactjs/redux/issues""
    -  },
    -  ""homepage"": ""http://redux.js.org"",
    -  ""dependencies"": {
    -    ""babel-polyfill"": ""^6.3.14"",
    -    ""react"": ""^0.14.7"",
    -    ""react-dom"": ""^0.14.7"",
    -    ""react-redux"": ""^4.2.1"",
    -    ""redux"": ""^3.2.1"",
    -    ""redux-thunk"": ""^1.0.3""
    -  },
    -  ""devDependencies"": {
    -    ""babel-core"": ""^6.3.15"",
    -    ""babel-loader"": ""^6.2.0"",
    -    ""babel-preset-es2015"": ""^6.3.13"",
    -    ""babel-preset-react"": ""^6.3.13"",
    -    ""babel-preset-react-hmre"": ""^1.1.1"",
    -    ""cross-env"": ""^1.0.7"",
    -    ""enzyme"": ""^2.0.0"",
    -    ""express"": ""^4.13.3"",
    -    ""json-loader"": ""^0.5.3"",
    -    ""react-addons-test-utils"": ""^0.14.7"",
    -    ""redux-logger"": ""^2.0.1"",
    -    ""mocha"": ""^2.2.5"",
    -    ""node-libs-browser"": ""^0.5.2"",
    -    ""webpack"": ""^1.9.11"",
    -    ""webpack-dev-middleware"": ""^1.2.0"",
    -    ""webpack-hot-middleware"": ""^2.9.1""
    -  }
    -}
    -
    - -

    Here is webpack config example taken from https://github.com/reactjs/redux/tree/master/examples

    - -
    var path = require('path')
    -var webpack = require('webpack')
    -
    -module.exports = {
    -  devtool: 'cheap-module-eval-source-map',
    -  entry: [
    -    'webpack-hot-middleware/client',
    -    './index'
    -  ],
    -  output: {
    -    path: path.join(__dirname, 'dist'),
    -    filename: 'bundle.js',
    -    publicPath: '/static/'
    -  },
    -  plugins: [
    -    new webpack.optimize.OccurenceOrderPlugin(),
    -    new webpack.HotModuleReplacementPlugin()
    -  ],
    -  module: {
    -    loaders: [
    -      {
    -        test: /\.js$/,
    -        loaders: [ 'babel?presets[]=react,presets[]=es2015,presets[]=react-hmre' ],
    -        exclude: /node_modules/,
    -        include: __dirname
    -      },
    -      {
    -        test: /\.json$/,
    -        loaders: [ 'json' ],
    -        exclude: /node_modules/,
    -        include: __dirname
    -      }
    -    ]
    -  }
    -}
    -
    -",HQ -"

    Say the current time is 09:34:00 (hh:mm:ss), and I have two other times in two variables:

    - -
    var beforeTime = '08:34:00',
    -    afterTime = '10:34:00';
    -
    - -

    How do I use Moment.JS to check whether the current time is between beforeTime and afterTime?

    - -

    I've seen isBetween(), and I've tried to use it like:

    - -
    moment().format('hh:mm:ss').isBetween('08:27:00', '10:27:00')
    -
    - -

    but that doesn't work because as soon as I format the first (current time) moment into a string, it's no longer a moment object. I've also tried using:

    - -
    moment('10:34:00', 'hh:mm:ss').isAfter(moment().format('hh:mm:ss')) && moment('08:34:00', 'hh:mm:ss').isBefore(moment().format('hh:mm:ss'))
    -
    - -

    but I get false, because again when I format the current time, it's no longer a moment.

    - -

    How do I get this to work?

    -",HQ -"I know when we declared a `char *c =""Hello"";` means that we cannot modify this string. But how come I was able to modify this array of string in C. - - char *p [] = {""Hello"",""World""}; - *p= ""Mode""; - - -Should not that give me an error for attempting to modify it.",LQ -"class String - def mgsub(key_value_pairs=[].freeze) - regexp_fragments = key_value_pairs.collect { |k,v| k } - gsub(Regexp.union(*regexp_fragments)) do |match| - key_value_pairs.detect{|k,v| k =~ match}**[1]** - end - end -end - -puts ""GO HOME!"".mgsub([[/.*GO/i, 'HoMe'], [/home/i, 'is where the heart is']]) -puts ""Here is number #123"".mgsub([[/[a-z]/i, '#'], [/#/, 'P']])",LQ -"

    I need to merge all elements of a listB into another list listA.

    - -

    If an element is already present (based on a custom equality-check) in listA I don't want to add it.

    - -

    I don't want to use Set, and I don't want to override equals() and hashCode().

    - -

    Reasons are, I don't want to prevent duplicates in listA per se, I only want to not merge from listB if there are already elements in listA which I consider being equal.

    - -

    I don't want to override equals() and hashCode() since that would mean I need to make sure, my implementation of equals() for the elements hold in every circumstance. It might however be, that elements from listB are not fully initialized, i.e. they might miss an object id, where that might be present in elements of listA.

    - -

    My current approach involves an interface and a Utility-Function:

    - -
    public interface HasEqualityFunction<T> {
    -
    -    public boolean hasEqualData(T other);
    -}
    -
    -public class AppleVariety implements HasEqualityFunction<AppleVariety> {
    -    private String manufacturerName;
    -    private String varietyName;
    -
    -    @Override
    -    public boolean hasEqualData(AppleVariety other) {
    -        return (this.manufacturerName.equals(other.getManufacturerName())
    -            && this.varietyName.equals(other.getVarietyName()));
    -    }
    -
    -    // ... getter-Methods here
    -}
    -
    -
    -public class CollectionUtils {
    -    public static <T extends HasEqualityFunction> void merge(
    -        List<T> listA,
    -        List<T> listB) {
    -        if (listB.isEmpty()) {
    -            return;
    -        }
    -        Predicate<T> exists
    -            = (T x) -> {
    -                return listA.stream().noneMatch(
    -                        x::hasEqualData);
    -            };
    -        listA.addAll(listB.stream()
    -            .filter(exists)
    -            .collect(Collectors.toList())
    -        );
    -    }
    -}
    -
    - -

    And then I'd use it like this:

    - -
    ...
    -List<AppleVariety> appleVarietiesFromOnePlace = ... init here with some elements
    -List<AppleVariety> appleVarietiesFromAnotherPlace = ... init here with some elements
    -CollectionUtils.merge(appleVarietiesFromOnePlace, appleVarietiesFromAnotherPlace);
    -...
    -
    - -

    to get my new list in listA with all elements merged from B.

    - -

    Is this a good approach? Is there a better/easier way to accomplish the same?

    -",HQ -"

    I am trying to build an ionic-android project and i have android sdk installed.

    - -

    - -

    The name of my project is myApp.I have successfully added android platform to myApp. But when i tries to build the project

    - -
    ~/myApp$ sudo ionic build android
    -
    - -

    result is

    - -
    Running command: /home/hari/myApp/hooks/after_prepare/010_add_platform_class.js /home/hari/myApp
    -  add to body class: platform-android
    -  ERROR building one of the platforms: Failed to find 'ANDROID_HOME'  environment variable. Try setting setting it manually.
    -  Failed to find 'android' command in your 'PATH'. Try update your 'PATH' to include path to valid SDK directory.
    -You may not have the required environment or OS to build this project
    -Error: Failed to find 'ANDROID_HOME' environment variable. Try setting setting it manually.
    -Failed to find 'android' command in your 'PATH'. Try update your 'PATH' to include path to valid SDK directory.
    -
    - -

    see the ANDROID_HOME and PATH variable

    - -
    echo $ANDROID_HOME
    -/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/hari/Android/Sdk
    -
    -echo $PATH
    -/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/hari/Android/Sdk/tools:/home/hari/Android/Sdk/platform-tools:/usr/local/bin:/opt/gradle/bin
    -
    - -

    I have seen almost the same kind of questions on stack overflow, but none works for me. Is there anything wrong with my android-sdk configuration? How can i build this project?

    -",HQ -"

    TeamCity agent's show a list of ""Environment Variables"" under Agent Parameters but I cannot get them to update. I've added environment variables to my agent operating system, but cannot get them to refresh. I've tried restarting the agent and disabling and re-enabling the agent.

    -",HQ -"

    I'm attempting to install xunit version 2.1.0.. However I'm getting the following exception:

    - -

    Install-Package : Exception 'System.AggregateException' thrown when trying to add source 'https://api.nuget.org/v3/index.json'. Please verify all your o -nline package sources are available. -At line:1 char:16 -+ Install-Package <<<< xunit -Version 2.1.0 - + CategoryInfo : NotSpecified: (:) [Install-Package], Exception - + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand

    - -

    Any ideas on whats going wrong? Sadly google is not giving me anything helpful..

    -",HQ -"

    I'm planning to add In-App purchases to my Productivity app. Enhanced features are purchase products (e.g., freemium). -I would like to have user access to purchased feature on both Android and iOS, if he has purchased on any one platform. Technically I plan to store purchase information on server and have it retrieved whenever user logs-in on either device, and unlock the feature if already purchased.

    - -

    Is this allowed in both iOS and Android?

    - -

    Apple App Store Review Guidelines on Section 11 have this explained.
    -Points ""11.1/11.2"" and ""11.14"" sounds conflicting (or I'm missing something.).

    - -

    On Android, I do not see this point mentioning in Policies.

    - -

    If you had any experiences (w.r.t sharing purchase info between devices) that I should take care additionally, any suggestions are welcome.

    -",HQ -"

    Going through this tutorial ""Create a pipeline with Copy Activity using Visual Studio"" - and recieving this error when i hit publish.

    - -

    -
    -
    Creating datafactory-Name:VSTutorialFactory,Tags:,Subscription:Pay-As-You-Go,ResourceGroup:MyAppGroup,Location:North Europe,
    -
    -24/03/2016 11:30:34- Error creating data factory:  
    -Microsoft.WindowsAzure.CloudException: MissingSubscriptionRegistration:  
    -The subscription is not registered to use namespace 'Microsoft.DataFactory'.
    -
    -
    -

    - -

    Error not mentioned anywhere on net and very little help/knowledge on azure generally on web.

    -",HQ -"

    I tried to:

    - -
    pid = spawn fn -> 1 + 2 end
    -IO.puts(pid)
    -IO.puts(IO.inspect(pid))
    -
    - -

    and both given a

    - -
    ** (Protocol.UndefinedError) protocol String.Chars not implemented for #PID<0.59.0>
    -
    - -

    There must be a way to get the ""#PID<0.59.0>"" representation of the pid, since the REPL prints that #PID<0.59.0>.

    -",HQ -" int i=0; - for(; iI have few commits on github that I want to change. So in my previous commit I've changed some file/folders and I need to revert changes only for some of them. What is the best solution to make it.

    -",HQ -"'import numpy as np - -import matplotlib.pyplot as plt - -x=[1,2,3] - -y=[399,499,100] - -LABELS = [""node0"", ""node1"", ""failed""] - -cr = ['g','r','b'] - -fig,ax = plt.subplots() - -ax.bar(x,y,align='center',color=cr, Label='txed, rxed, failed') - -plt.xticks(x, LABELS) - -plt.legend() - -plt.show() - -",LQ -"i want to develop an app, it needs to search similar pictures from back-end according to a uploaded picture. just like google's ""search by image"" function -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/h767p.jpg - -As far as i know, opencv can handle this kind of thing, -e.g Mean Shift, Contours Match . SUFT... and seems SUFT is the best one. -but now i'm worried about whether can use it in enterprise product or whether it is reliably enough? as i'm not just write a hello world program now and suppose the detection error rate is not too high! if anyone who ever use this in your project before, expect you could share your experience. i will appreciate it very much - -",LQ -"

    Recently migrated from VS2010 to 2015. Now when I pause a running app to work on it, I get this very annoying ""Break Mode"" page with ""The application is in break mode"". Well, no shoot Sherlock, I pressed pause. I know its in break mode. The page is annoying and takes me away from the code I was going to work on completely unnecessarily.

    - -

    I didn't get this annoying page in 2010. I may have some setting switched back then on 2010 but too long to remember.

    - -

    Is there a way to disable this silly break mode page in VS2015?

    -",HQ -"On bootstrap 3,I can't make the layout how I want to and I can't see why. - -My HTML : - -
    -
    -
    -
    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor

    -
    -
    -
    -
    -
    -
    -
    -

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor

    -
    -
    -
    - - -My CSS : - - #row1 { - opacity:0.3; - background-color: red; - } - - #row2 { - opacity:0.3; - background-color: yellow; - } - .intro-text { - text-align:center; - } - .round { - background:#bfd70e; - border-radius:50%; - width:160px; - height:160px; - border:2px solid #679403; - margin:0 auto; - } - @media(min-width:767px) { - .intro-text { - margin-top:60px; - } - #row2 { - margin-top:-15px; - } -} - -I want to keep the same structure as the first JS fiddle but gain some space by making the row 2 over the first one. So I tried a margin-top but it break all the structure, I don't know why. - - -This is JS fiddle without : - - #row2 { - margin-top:-15px; - } - - -[JS fiddle][1] - -This is JS fiddle with - - #row2 { - margin-top:-15px; - } - -[JS fiddle][2] - - -How do I fix that ? - - - - [1]: https://jsfiddle.net/7urbw4kq/ - [2]: https://jsfiddle.net/584wcaa5/",LQ -"

    I have an observer for UIContentSizeCategoryDidChangeNotification that gets triggerd when a user changes the font-size under settings -> accessibility.

    - -
       NSNotificationCenter.defaultCenter().addObserver(self, selector: ""preferredContentSizeChanged:"", name: UIContentSizeCategoryDidChangeNotification, object: nil)
    -
    - -

    I've never experienced any problems with this before, but now i am having problems with it on the iphone simulator iOS 9.3. It works however on a real device with iOS 9.3.

    - -

    The simulator returns

    - -
    bogus value for UIPreferredContentSizeCategoryName: (null)
    -
    - -

    Has anyone else experienced the same problem?

    -",HQ -"

    Is there a simple way to ignore a field when using moshi to serialize to a json string? I can only think about is a custom adapter - but I have the feeling that there is a better way

    -",HQ -"

    I would like to link directly to a search results page from a standard link. To give an example of what I'm hoping for, here is some pseudocode:

    - -
    <a href = ""https://www.google.com/search?keywords=My+Search+Parameters"">Click here to search Google</a>
    -
    - -

    Is there any way to do this? I would like to redirect my users directly to a search results page so they can see real results on the web.

    -",HQ -"i've looked through the posts but couldn't find the exact answer. This is the code i have. it only returns a value when i set s.CharAt(0) and then h will equl h. Bu t i wan't it to run automatically and w/o arrays. thank you - - String s = ""hellohe""; - int d = s.length(); - - for (int i =0; iI read the filenames in my S3 bucket by doing

    - -
    objs = boto3.client.list_objects(Bucket='my_bucket')
    -    while 'Contents' in objs.keys():
    -        objs_contents = objs['Contents']
    -        for i in range(len(objs_contents)):
    -            filename = objs_contents[i]['Key']
    -
    - -

    Now, I need to get the actual content of the file, similarly to a open(filename).readlines(). What is the best way?

    -",HQ -"I am trying to make a program that will use get char to read three integers and store it in an array but something is wrong in my code. I know this might be simple but I am a beginner so it kind of hard for me. Thanks. So please don't vote down my question. - - - - #include - - - - int main( ) - - { - - printf(""Please enter three digit number 100 to 999: ""); - - int numEntered[2]; - - numEntered = getchar(); - - for (int i = 0; i<3; i++){ - - printf(""%d"", numEntered[i]) - - } - - } -",LQ -"

    I have a nested for ... in loop in vue js. What I'm trying to to is to skip elements if the value of the element is null. Here is the html code:

    - -
    <ul>
    -    <li v-for=""item in items"" track-by=""id"">
    -        <ol>
    -            <li v-for=""child in item.children"" track-by=""id""></li>
    -        </ol>
    -    </li>
    -</ul>
    -
    - -

    null elements may be present in both item and item.children objects.

    - -

    For example:

    - -
    var data = {
    -   1: {
    -      id: 1,
    -      title: ""This should be rendered"",
    -      children: {
    -          100: {
    -              id: 100,
    -              subtitle: ""I am a child""
    -          },
    -          101: null
    -      }
    -   },
    -   2: null,
    -   3: {
    -       id: 3,
    -       title: ""Should should be rendered as well"",
    -       children: {}
    -   }
    -};
    -
    - -

    With this data data[1].children[101] should not be rendered and if data[1].children[100] becomes null later it should be omitted from the list.

    - -

    P.S. I know this is probably not the best way to represent data but I'm not responsible for that :)

    -",HQ -"

    I want to use a method reference based off another method reference. It's kind of hard to explain, so I'll give you an example:

    - -

    Person.java

    - -
    public class Person{
    -    Person sibling;
    -    int age;
    -
    -    public Person(int age){
    -        this.age = age;
    -    }
    -
    -    public void setSibling(Person p){
    -        this.sibling = p;
    -    }
    -
    -    public Person getSibling(){
    -        return sibling;
    -    }
    -
    -    public int getAge(){
    -        return age;
    -    }
    -}
    -
    - -

    Given a list of Persons, I want to use method references to get a list of their sibling's ages. I know this can be done like this:

    - -
    roster.stream().map(p -> p.getSibling().getAge()).collect(Collectors.toList());
    -
    - -

    But I'm wondering if it's possible to do it more like this:

    - -
    roster.stream().map(Person::getSibling::getAge).collect(Collectors.toList());
    -
    - -

    It's not terribly useful in this example, I just want to know what's possible.

    -",HQ -"

    I am trying to connect to a database that I have hosted at MLab. I am using the StrongLoop API. I've placed the config information for my hosted databases into my datasources.json and config.json files, but whenever I run the directory with npm start, I get throw new Error ('double colon in host identifier';) at api\node_modules\mongodb\lib\url_parser.js:45.

    - -

    I have also made sure to install the loopback-connecter-mongodb npm package.

    - -

    Here is a snippet of datasources.json (without the actual database details, of course):

    - -

    -
    -
    {
    -  ""db"": {
    -    ""name"": ""db"",
    -    ""connector"": ""mongodb"",
    -    ""host"": ""ds047355.mlab.com"",
    -    ""database"": ""dbtest"",
    -    ""username"": ""user"",
    -    ""password"": ""fakepassword"",
    -    ""port"": 47355
    -  }
    -}
    -
    -
    -

    - -

    Here is the config.json file:

    - -

    -
    -
    {
    -  ""restApiRoot"": ""/api"",
    -  ""host"": ""ds047355.mlab.com"",
    -  ""port"": 47355,
    -  ""remoting"": {
    -    ""context"": {
    -      ""enableHttpContext"": false
    -    },
    -    ""rest"": {
    -      ""normalizeHttpPath"": false,
    -      ""xml"": false
    -    },
    -    ""json"": {
    -      ""strict"": false,
    -      ""limit"": ""100kb""
    -    },
    -    ""urlencoded"": {
    -      ""extended"": true,
    -      ""limit"": ""100kb""
    -    },
    -    ""cors"": false,
    -    ""errorHandler"": {
    -      ""disableStackTrace"": false
    -    }
    -  },
    -  ""legacyExplorer"": false
    -}
    -
    -
    -

    - -

    Got any ideas?

    -",HQ -"I have a web form already connected to SQL Server, i can insert but i dont know how to do the validation to not Insert data if the table already has the same information. - -How can this process be done? - - - using (SqlConnection con = new SqlConnection(""Data Source=hans-pc;Initial Catalog=CntExp;Integrated Security=True"")) - { - SqlCommand cmd = new SqlCommand(""INSERT INTO PreExp1 (Expe, Usuario) values (@Expe, @Usuario)"", con); - cmd.Parameters.AddWithValue(""@Expe"", TextBox1.Text); - cmd.Parameters.AddWithValue(""@Usuario"", TextBox2.Text); - //cmd.Parameters.AddWithValue(""@Fecha"", Datenow()); - con.Open(); - int insertar = cmd.ExecuteNonQuery(); - Response.Write(""Inserted"" + insertar.ToString()); - } -",LQ -"I have list containing dictionaries like this -[{""abc"":""da123-tap"",""efg"":""xyzf"",""acd"":""123-brf""}, {""abc"":""ab234-tap"",""efg"":""yuvi"",""acd"":""345-brf""}] -I want all the values of ""abc"" in one list1, values of ""efg"" in list 2",LQ -"

    I found few answers on stack overflow but still cant resolve my problem. -I am running on Django but I dont think it is relevant for this error.

    - -

    I try to make work my date picker java script but I am getting the error

    - -

    1:27 Uncaught TypeError: $(...).datepicker is not a function(anonymous function) @ 1:27fire @ jquery-1.9.1.js:1037self.fireWith @ jquery-1.9.1.js:1148jQuery.extend.ready @ jquery-1.9.1.js:433completed @ jquery-1.9.1.js:103 -jquery-2.1.0.min.js:4 XHR finished loading: POST ""https://localhost:26143/skypectoc/v1/pnr/parse"".l.cors.a.crossDomain.send @ jquery-2.1.0.min.js:4o.extend.ajax @ jquery-2.1.0.min.js:4PNR.findNumbers @ pnr.js:43parseContent @ contentscript.js:385processMutatedElements @ contentscript.js:322

    - -

    This is all my scripts :

    - -
    <meta charset=""utf-8"">
    -<meta http-equiv=""X-UA-Compatible"" content=""IE=edge,chrome=1"" />
    -
    -
    -<script src=""http://code.jquery.com/jquery-1.9.1.js""></script>
    -<script src=""http://code.jquery.com/ui/1.11.0/jquery-ui.js""></script>
    -
    -<script type=""text/javascript"">
    -$(document).ready(function() {
    -    $('.dateinput').datepicker({ format: ""yyyy/mm/dd"" });
    -}); 
    -</script>
    -
    -      <!-- Bootstrap core JavaScript
    -================================================== -->
    -<!-- Placed at the end of the document so the pages load faster -->
    -<script src=""https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js""></script>
    -
    -<script>window.jQuery || document.write('<script src=""../../assets/js/vendor/jquery.min.js""><\/script>')</script>
    -<script src=""http://getbootstrap.com/dist/js/bootstrap.min.js""></script>
    -<!-- Just to make our placeholder images work. Don't actually copy the next line! -->
    -<script src=""http://getbootstrap.com/assets/js/vendor/holder.min.js""></script>
    -<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
    -<script src=""http://getbootstrap.com/assets/js/ie10-viewport-bug-workaround.js""></script>
    - <script type=""text/javascript"">
    -              $(document).ready(function() {
    -                  $(""#extra-content"").hide();
    -                  $(""#toggle-content"").click(function(){
    -                      $(""#extra-content"").toggle();
    -                  });
    -              });
    - </script>            
    -
    - -

    any feedback will be very appreciated

    -",HQ -"

    Observable.fromCallable() is great for converting a single function into an Observable. But how do you handle checked exceptions that might be thrown by the function?

    - -

    Most of the examples I've seen use lambdas and ""just work"". But how would you do this without lambdas? For example, see the quote below from this great article:

    - -
    Observable.fromCallable(() -> downloadFileFromNetwork());
    -
    - -
    -

    It's a one-liner now! It deals with checked exceptions, no more weird Observable.just() and Observable.error() for such easy thing as deferring code execution!

    -
    - -

    When I attempt to implement the above Observable without a lambda expression, based on other examples I've seen, and how Android Studio auto-completes, I get the following:

    - -
    Observable.fromCallable(new Func0<File>() {
    -    @Override
    -    public File call() {
    -        return downloadFileFromNetwork();
    -    }
    -}
    -
    - -

    But if downloadFileFromNetwork() throws a checked exception, I have to try-catch it and wrap it in a RuntimeException. There's got to be a better way! How does the above lambda support this?!?!

    -",HQ -"

    I'm curious why the Eloquent relationship for hasMany has a different signature than for belongsToMany. Specifically the custom join table name-- for a system where a given Comment belongs to many Roles, and a given Role would have many Comments, I want to store the relationship in a table called my_custom_join_table and have the keys set up as comment_key and role_key.

    - -
    return $this->belongsToMany('App\Role', 'my_custom_join_table', 'comment_key', 'role_key'); // works
    -
    - -

    But on the inverse, I can't define that custom table (at least the docs don't mention it):

    - -
    return $this->hasMany('App\Comment', 'comment_key', 'role_key');
    -
    - -

    If I have a Role object that hasMany Comments, but I use a non-standard table name to store that relationship, why can I use this non-standard table going one way but not the other?

    -",HQ -"Would like to know whether all arrays are same from list of arrays. - -Like == (Equalator) will be helpful to compare only 2 arrays but want know -is there any library method to know is all arrays are same. - -Share your ideas.",LQ -"

    When I make a post request the angular 2 http is not sending this request

    - -
    this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions())
    -
    - -

    the http post is not sent to the server but if I make the request like this

    - -
    this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions()).subscribe(r=>{});
    -
    - -

    Is this intended and if it is can someone explain me why ? Or it is a bug ?

    -",HQ -"

    Managing state with React only

    - -

    I understand that if you're creating an application using React only, you will end up managing all of your state within different React components you create.

    - -

    Managing state with React and Redux

    - -

    If you decide to use Redux in combination with React, you can then move all of the state from each of your React components into the overall Redux application state. Each component that requires a slice of the Redux application state can then hook into the state via React-Redux's connect function.

    - -

    Question

    - -

    Does this mean that you no longer need to write any React components that deal with React's state (i.e. this.setState) since React-Redux is connecting the React components with Redux state by passing data into the container component as props?

    -",HQ -"

    I can grab and read all the objects in my AWS S3 bucket via

    - -
    s3 = boto3.resource('s3')
    -    bucket = s3.Bucket('my-bucket')
    -    all_objs = bucket.objects.all()
    -    for obj in all_objs:
    -        pass
    -        #filter only the objects I need
    -
    - -

    and then

    - -
    obj.key
    -
    - -

    would give me the path within the bucket.

    - -

    Is there a way to filter beforehand for only those files respecting a certain starting path (a directory in the bucket) so that I'd avoid looping over all the objects and filtering later?

    -",HQ -"

    Django highly suggests not to use null=True for CharField and TextField string-based fields in order not to have two possible values for ""no data"" (assuming you're allowing empty strings with blank=True). This makes total sense to me and I do this in all my projects.

    - -

    Django 1.9 introduces JSONField, which uses the underlying Postgres jsonb data type. Does the suggestion above carry over to JSONField (i.e. blank=True should be used instead of null=True)? Or, should null=True be used instead? Or, should default=dict be used instead? Or, ..? Why?

    - -

    In other words, what is the convention for the new native JSONField, when you want to allow only one ""no data"" value? Please support your answer because I did a lot of research and couldn't find anything official. Thanks in advance.

    -",HQ -"

    I have a class. I need to do some http work inside of a timeout. The problem I am faceing is the http variable inside the timeout keeps saying it is undefined.

    - -
    export class MyClass {
    -
    -    http:Http:
    -
    -    constructor(private http:Http) {
    -        this.http = http;
    -    }
    -
    -    sendFriendRequest(){
    -
    -    this.http.post( ...//http variable is defined here
    -           setTimeout(function(){
    -               this.http.post(...  //http is not defined here
    -        }
    -   }
    -}
    -
    -",HQ -"This is a link generated from Google Alerts, and i would like to get the real url of the site with Java. I have checked for the response but no location header redirect. - -https://www.google.com/url?rct=j&sa=t&url=http://naija247news.com/2016/03/nigerian-bond-yields-rise-after-cbns-interest-rate-hike-aimed-at-luring-investors/&ct=ga&cd=CAIyGjA3ZmJiYzk0ZDM0N2U2MjU6Y29tOmVuOlVT&usg=AFQjCNGs7HsYSodEUnECfdAatG6KgY18DA",LQ -"

    A few days ago I read about wide-column stored type of NoSql and -exclusively Apache-Cassandra. -What I understand is that Cassandra consist of :

    - -

    A keyspace(like database in relational databases) and supporting many column families or tables (Same as table in relational databases) and unlimited rows.

    - -

    From Stackoverflow tags :

    - -
    -

    A wide column store is a type of key-value database. It uses tables, rows, and columns, but unlike a relational database, the names and format of the columns can vary from row to row in the same table.

    -
    - -

    In Cassandra all of the rows (in a table) should have a row key then each row key can have multiple columns. -I read about differences in implementation and storing data of Relational database and NoSql (Cassandra) .

    - -

    But I don't understand the difference between structure :

    - -

    Imagine a scenario which I have a table (or column family in Cassandra) :

    - -

    When I execute a query (Cql) like this :

    - -
    Select * from users;
    -
    - -

    It gives me the result as you can see :

    - -
    lastname | age  | city          | email               
    -----------+------+---------------+----------------------
    -      Doe |   36 | Beverly Hills |   janedoe@email.com       
    -    Jones |   35 |        Austin |     bob@example.com        
    -    Byrne |   24 |     San Diego |  robbyrne@email.com         
    -    Smith |   46 |    Sacramento |   null                      
    -  Jones2  | null |        Austin |     bob@example.com       
    -
    - -

    So I perform the above scenario in relational database (MsSql) with the blow query :

    - -
    select * from [users] 
    -
    - -

    And the result is :

    - -
    lastname    age      city              email                    
    -    Doe     36       Beverly Hills     janedoe@email.com          
    -    Jones   35       Austin            bob@example.com             
    -    Byrne   24       San Diego         robbyrne@email.com         
    -    Smith   46       Sacramento        NULL                 
    -   Jones2   NULL     Austin            bob@example.com              
    -
    - -

    I know that Cassandra supports dynamic column and I can perform this by using sth like :

    - -
    ALTER TABLE users ADD website varchar;
    -
    - -

    But it is available in relational model for example in mssql the above code can be implemented too. -Sth like :

    - -
    ALTER TABLE users 
    -ADD website varchar(MAX) 
    -
    - -

    What I see is that the first select and second select result is the same. -In Cassandra , they just give a row key (lastname) as a standalone objet but it is same as a unique field (like ID or a text) in mssql (and all relational databases) and I see the type of column in Cassandra is static (in my example varchar) unlike what it describes in Stackoverflow tag.

    - -

    So my questions is :

    - -
      -
    1. Is there any misunderstanding in my imagination about Cassandra?!

    2. -
    3. So what is different between two structure ?! I show you the result is same.

    4. -
    5. Is there any special scenarios (Json like) that cannot be implemented in relational databases but Cassandra supports ?( For example I know that nested column doesn't support in Cassandra.)

    6. -
    - -

    Thank you for reading.

    -",HQ -"

    I am using the following to save the numpy array x with a header:

    - -
    np.savetxt(""foo.csv"", x, delimiter="","", header=""ID,AMOUNT"", fmt=""%i"")
    -
    - -

    However, if I open ""foo.cv"", the file looks like:

    - -
    # ID,AMOUNT
    -21,100
    -52,120
    -63,29
    -:
    -
    - -

    There is an extra # character in the beginning of the header. Why is that and is there a way to get rid of it?

    -",HQ -"

    Does the Nano minimal text editor have a keyboard shortcut feature to jump to a specified line?

    - -

    Vim provides several analogs.

    -",HQ -"

    All assigned services only state the 16 bit UUID. How can I determine the 128 bit counterpart if I have to specify the service in that format?

    - -

    From Service Discovery Protocol Overview I know that 128 bit UUIDs are based on a so called ""BASE UUID"" which is also stated there:

    - -
    00000000-0000-1000-8000-00805F9B34FB
    -
    - -

    But how do I create a 128 bit UUID from the 16 bit counterpart? Probably some of the 0 digits have to be replaced, but which and how?

    -",HQ -"

    I want to prevent pull-down-to-refresh of mobile chrome(especially iOS chrome). My web application has vertical panning event with device-width and device-height viewport, but whenever panning down, mobile chrome refreshes itself because of browser's default function. Plus, on Safari browser, screen is rolling during panning event. I want to disable these moves.

    - -

    Of course, I tried event.preventDefault(); and touch-action: none; But it doesn't look work. Should I add eventListner and touch-action ""on body tag""? I expect useful answer with example.

    -",HQ -"

    In Redux I can easily subscribe to store changes with

    - -
    store.subscribe(() => my handler goes here)
    -
    - -

    But what if my store is full of different objects and in a particular place in my app I want to subscribe to changes made only in a specific object in the store?

    -",HQ -"
    TypeError: b'Pizza is a flatbread generally topped with tomato sauce and cheese and baked in an oven. It is commonly topped with a selection of meats, vegetables and condiments. The term was first recorded in the 10th century, in a Latin manuscript from Gaeta in Central Italy. The modern pizza was invented in Naples, Italy, and the dish and its variants have since become popular in many areas of the world.\nIn 2009, upon Italy\'s request, Neapolitan pizza was safeguarded in the European Union as a Traditional Speciality Guaranteed dish. The Associazione Verace Pizza Napoletana (the True Neapolitan Pizza Association) is a non-profit organization founded in 1984 with headquarters in Naples. It promotes and protects the ""true Neapolitan pizza"".\nPizza is sold fresh, frozen or in portions, and is a common fast food item in North America and the United Kingdom. Various types of ovens are used to cook them and many varieties exist. Several similar dishes are prepared from ingredients commonly used in pizza preparation, such as calzone and stromboli.' is not JSON serializable
    -
    - -

    I have a program that adds this into a JSON string, which works fine for most text strings - but not this one apparently. Can you tell why not, or how to fix it?

    -",HQ -"

    I'm using Xcode 7.3 but my project is in Swift 2.1. I don't want to update my codes right now. So how can I choose or download older version of Swift compiler? Many thanks in advance!

    -",HQ -"

    IE 11 does not support startsWith with strings. (Look here)

    - -

    How do you add a prototype so that it supports the method?

    -",HQ -"

    I have a simple Loader Service that hides and shows certain loaders. I'm working on something that will be used a lot with slow connections and I need to show/hide a loader between route changes.

    - -

    I can hide the loader when the new route is loaded with the following.

    - -
    this._Router.subscribe(() => {
    -    this._LoaderService.hide();
    -})
    -
    - -

    I'm trying to find a way that I can call my this._LoaderService.show() function immediately when any [routerLink] is clicked (at the start of the route change, not the end).

    - -

    I've had a look around and I tried https://angular.io/docs/ts/latest/api/router/Router-class.html but I can't seem to figure it out.

    - -

    Any help appreciated

    -",HQ -"

    Is it possible to get imports for the six module to work in pycharm? I realize the module does some playing with imports that confuses pycharm but was hoping there was some type of workaround.

    - -

    For example, I'd like the following to work properly in pycharm or intellij::

    - -
    from six.moves import BaseHTTPServer
    -
    -",HQ -"

    - -

    I had a question regarding this image in a tutorial I was following. So based on this image in a yarn based architecture does the execution of a spark application look something like this:

    - -

    First you have a driver which is running on a client node or some data node. In this driver (similar to a driver in java?) consists of your code (written in java, python, scala, etc.) that you submit to the Spark Context. Then that spark context represents the connection to HDFS and submits your request to the Resource manager in the Hadoop ecosystem. Then the resource manager communicates with the Name node to figure out which data nodes in the cluster contain the information the client node asked for. The spark context will also put a executor on the worker node that will run the tasks. Then the node manager will start the executor which will run the tasks given to it by the Spark Context and will return back the data the client asked for from the HDFS to the driver.

    - -

    Is the above interpretation correct?

    - -

    Also would a driver send out three executors to each data node to retrieve the data from the HDFS, since the data in HDFS is replicated 3 times on various data nodes?

    -",HQ -"

    I use docker inspect to get the image information. I find there are Config and ContainerConfig in the output, and most value are the same, except the CMD.

    - -

    In practice, the Config take effect. For I must add cmd in the run command. - -$ docker run -it debian bash -

    - -

    I wonder what is the difference of the two items?

    - -
    $ docker inspect debian
    -[
    -{
    -    ""Id"": ""7abab0fd74f97b6b398a1aca68735c5be153d49922952f67e8696a2225e1d8e1"",
    -    ......
    -    ""ContainerConfig"": {
    -        ""Hostname"": ""e5c68db50333"",
    -        ""Domainname"": """",
    -        ""User"": """",
    -        ""AttachStdin"": false,
    -        ""AttachStdout"": false,
    -        ""AttachStderr"": false,
    -        ""Tty"": false,
    -        ""OpenStdin"": false,
    -        ""StdinOnce"": false,
    -        ""Env"": null,
    -        ""Cmd"": [
    -            ""/bin/sh"",
    -            ""-c"",
    -            ""#(nop) CMD [\""/bin/bash\""]""
    -        ],
    -        ""Image"": ""d8bd0657b25f17eef81a3d52b53da5bda4de0cf5cca3dcafec277634ae4b38fb"",
    -        ""Volumes"": null,
    -        ""WorkingDir"": """",
    -        ""Entrypoint"": null,
    -        ""OnBuild"": null,
    -        ""Labels"": {}
    -    },
    -    ""Config"": {
    -        ""Hostname"": ""e5c68db50333"",
    -        ""Domainname"": """",
    -        ""User"": """",
    -        ""AttachStdin"": false,
    -        ""AttachStdout"": false,
    -        ""AttachStderr"": false,
    -        ""Tty"": false,
    -        ""OpenStdin"": false,
    -        ""StdinOnce"": false,
    -        ""Env"": null,
    -        ""Cmd"": [
    -            ""/bin/bash""
    -        ],
    -        ""Image"": ""d8bd0657b25f17eef81a3d52b53da5bda4de0cf5cca3dcafec277634ae4b38fb"",
    -        ""Volumes"": null,
    -        ""WorkingDir"": """",
    -        ""Entrypoint"": null,
    -        ""OnBuild"": null,
    -        ""Labels"": {}
    -    },
    -    ......
    -}
    -]
    -
    -",HQ -"

    I'm trying to install Realm for Swift via Cocoapods.

    - -

    First what I did was pod init into my project

    -Then I open podfile and changed it like this:

    - -
    target 'Taskio' do
    -use_frameworks!
    -pod 'RealmSwift'
    -
    -end
    -
    - -

    Then I closed podfile and execute command pod install

    - -

    Everything pass good. But now when i opened workspace I'm getting error while importing RealmSwift

    - -

    Cannot load underlying module for 'RealmSwift'

    - -

    -",HQ -"This my code after submitting a form i got a json object, i want to send this JSON object in an mail, but i am stuck - - - - - - $(document).ready(function() { - - - $(""#contact"").submit(function () { - var data = {}; - $.each($(this).serializeArray(), function (key, value) { - data[value.name] = value.value; - }); - data.interest = [data.interest1, data.interest2, data.interest3]; - delete data.interest1; - delete data.interest2; - delete data.interest3; - console.log(data); - $.ajax({ - type: ""POST"", - data: JSON.stringify(data), - dataType: 'json', - url: ""post.js"", - success: function (data) { - $(""#contact"").addClass('success'); - }, - error: function () { - $(""#contact"").addClass('error'); - } - }); - return false; - }); - }); - - - - -",LQ -"

    I'm writing a client for a rest API using the akka http library. The library seems very powerful, but it works very unstable for me. Quite often (not always) it throws the following exception when I try to consume an HttpResponse.entity:

    - -
    -

    EntityStreamException: Entity stream truncation

    -
    - -

    and after this it stops processing subsequent requests at all. Maybe it tries to deal with some back-pressure or actors just die, I don't know.

    - -

    It doesn't matter how I send a request, using the Request-Level Client-Side API:

    - -
    def pollSearchResult(searchId: String): FutureActionResult[String, SearchResult] = {
    -    val request = HttpRequest(GET, s""http://***/Search/$searchId"")
    -
    -    for {
    -      response <- Http().singleRequest(request)
    -      entity <- Unmarshal(response.entity).to[String]
    -      result = entity.decodeEither[SearchResult]
    -    } yield result
    -  }
    -
    - -

    or using the Connection-Level Client-Side API:

    - -
    val client = Http(actorSystem).outgoingConnection(""***"")
    -
    -def pollSearchResult(searchId: String): FutureActionResult[String, SearchResult] = {
    -    val request = HttpRequest(GET, s""Search/$searchId"")
    -
    -    for {
    -      response <- Source.single(request).via(client).runWith(Sink.head)
    -      entity <- Unmarshal(response.entity).to[String]
    -      result = entity.decodeEither[SearchResult]
    -      } yield result
    -    }
    -
    - -

    It doesn't metter whether I consume the entity using unmarshaller or manually using the getDataBytes, the result is the same - the above exception.

    - -

    The http status of the response is 200 OK, headers are ok, it is a ""Default"" entity (so, no chunking), content length is about 500-2000 Kb (increasing akka.http.parsing.max-content-length doesn't help, although the default value should be enough). The server is also ok - other http libraries on other platforms work with this API just fine.

    - -

    Is it a bug or I am doing something wrong? What is the best non blocking, asycnhonous http library for scala?

    -",HQ -"

    I'm trying to install uwsgi using pip install uwsgi in my Alpine docker image but unfortunately it keeps failing weird no real error message to me:

    - -
    Complete output from command /usr/bin/python -c ""import setuptools, tokenize;__file__='/tmp/pip-build-mEZegv/uwsgi/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))"" install --record /tmp/pip-c7XA_e-record/install-record.txt --single-version-externally-managed --compile:
    -    running install
    -    using profile: buildconf/default.ini
    -    detected include path: ['/usr/include/fortify', '/usr/include', '/usr/lib/gcc/x86_64-alpine-linux-musl/5.3.0/include']
    -    Patching ""bin_name"" to properly install_scripts dir
    -    detected CPU cores: 1
    -    configured CFLAGS: -O2 -I. -Wall -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fno-strict-aliasing -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -DUWSGI_HAS_IFADDRS -DUWSGI_ZLIB -DUWSGI_LOCK_USE_MUTEX -DUWSGI_EVENT_USE_EPOLL -DUWSGI_EVENT_TIMER_USE_TIMERFD -DUWSGI_EVENT_FILEMONITOR_USE_INOTIFY -DUWSGI_VERSION=""\""2.0.12\"""" -DUWSGI_VERSION_BASE=""2"" -DUWSGI_VERSION_MAJOR=""0"" -DUWSGI_VERSION_MINOR=""12"" -DUWSGI_VERSION_REVISION=""0"" -DUWSGI_VERSION_CUSTOM=""\""\"""" -DUWSGI_YAML -DUWSGI_PLUGIN_DIR=""\"".\"""" -DUWSGI_DECLARE_EMBEDDED_PLUGINS=""UDEP(python);UDEP(gevent);UDEP(ping);UDEP(cache);UDEP(nagios);UDEP(rrdtool);UDEP(carbon);UDEP(rpc);UDEP(corerouter);UDEP(fastrouter);UDEP(http);UDEP(ugreen);UDEP(signal);UDEP(syslog);UDEP(rsyslog);UDEP(logsocket);UDEP(router_uwsgi);UDEP(router_redirect);UDEP(router_basicauth);UDEP(zergpool);UDEP(redislog);UDEP(mongodblog);UDEP(router_rewrite);UDEP(router_http);UDEP(logfile);UDEP(router_cache);UDEP(rawrouter);UDEP(router_static);UDEP(sslrouter);UDEP(spooler);UDEP(cheaper_busyness);UDEP(symcall);UDEP(transformation_tofile);UDEP(transformation_gzip);UDEP(transformation_chunked);UDEP(transformation_offload);UDEP(router_memcached);UDEP(router_redis);UDEP(router_hash);UDEP(router_expires);UDEP(router_metrics);UDEP(transformation_template);UDEP(stats_pusher_socket);"" -DUWSGI_LOAD_EMBEDDED_PLUGINS=""ULEP(python);ULEP(gevent);ULEP(ping);ULEP(cache);ULEP(nagios);ULEP(rrdtool);ULEP(carbon);ULEP(rpc);ULEP(corerouter);ULEP(fastrouter);ULEP(http);ULEP(ugreen);ULEP(signal);ULEP(syslog);ULEP(rsyslog);ULEP(logsocket);ULEP(router_uwsgi);ULEP(router_redirect);ULEP(router_basicauth);ULEP(zergpool);ULEP(redislog);ULEP(mongodblog);ULEP(router_rewrite);ULEP(router_http);ULEP(logfile);ULEP(router_cache);ULEP(rawrouter);ULEP(router_static);ULEP(sslrouter);ULEP(spooler);ULEP(cheaper_busyness);ULEP(symcall);ULEP(transformation_tofile);ULEP(transformation_gzip);ULEP(transformation_chunked);ULEP(transformation_offload);ULEP(router_memcached);ULEP(router_redis);ULEP(router_hash);ULEP(router_expires);ULEP(router_metrics);ULEP(transformation_template);ULEP(stats_pusher_socket);""core/utils.c: In function 'uwsgi_as_root':
    -    core/utils.c:344:7: error: implicit declaration of function 'unshare' [-Werror=implicit-function-declaration]
    -       if (unshare(uwsgi.unshare)) {
    -           ^
    -    core/utils.c:564:5: error: implicit declaration of function 'sigfillset' [-Werror=implicit-function-declaration]
    -         sigfillset(&smask);
    -         ^
    -    core/utils.c:565:5: error: implicit declaration of function 'sigprocmask' [-Werror=implicit-function-declaration]
    -         sigprocmask(SIG_BLOCK, &smask, NULL);
    -         ^
    -    core/utils.c:565:17: error: 'SIG_BLOCK' undeclared (first use in this function)
    -         sigprocmask(SIG_BLOCK, &smask, NULL);
    -                     ^
    -    core/utils.c:565:17: note: each undeclared identifier is reported only once for each function it appears in
    -    core/utils.c:586:7: error: implicit declaration of function 'chroot' [-Werror=implicit-function-declaration]
    -       if (chroot(uwsgi.chroot)) {
    -           ^
    -    core/utils.c:791:5: error: unknown type name 'ushort'
    -         ushort *array;
    -         ^
    -    core/utils.c:833:8: error: implicit declaration of function 'setgroups' [-Werror=implicit-function-declaration]
    -        if (setgroups(0, NULL)) {
    -            ^
    -    core/utils.c:848:8: error: implicit declaration of function 'initgroups' [-Werror=implicit-function-declaration]
    -        if (initgroups(uidname, uwsgi.gid)) {
    -            ^
    -    core/utils.c: In function 'uwsgi_close_request':
    -    core/utils.c:1145:18: error: 'WAIT_ANY' undeclared (first use in this function)
    -       while (waitpid(WAIT_ANY, &waitpid_status, WNOHANG) > 0);
    -                      ^
    -    core/utils.c: In function 'uwsgi_resolve_ip':
    -    core/utils.c:1802:7: error: implicit declaration of function 'gethostbyname' [-Werror=implicit-function-declaration]
    -      he = gethostbyname(domain);
    -           ^
    -    core/utils.c:1802:5: error: assignment makes pointer from integer without a cast [-Werror=int-conversion]
    -      he = gethostbyname(domain);
    -         ^
    -    core/utils.c: In function 'uwsgi_unix_signal':
    -    core/utils.c:1936:19: error: storage size of 'sa' isn't known
    -      struct sigaction sa;
    -                       ^
    -    core/utils.c:1938:24: error: invalid application of 'sizeof' to incomplete type 'struct sigaction'
    -      memset(&sa, 0, sizeof(struct sigaction));
    -                            ^
    -    core/utils.c:1942:2: error: implicit declaration of function 'sigemptyset' [-Werror=implicit-function-declaration]
    -      sigemptyset(&sa.sa_mask);
    -      ^
    -    core/utils.c:1944:6: error: implicit declaration of function 'sigaction' [-Werror=implicit-function-declaration]
    -      if (sigaction(signum, &sa, NULL) < 0) {
    -          ^
    -    core/utils.c:1936:19: error: unused variable 'sa' [-Werror=unused-variable]
    -      struct sigaction sa;
    -                       ^
    -    In file included from core/utils.c:1:0:
    -    core/utils.c: In function 'uwsgi_list_has_num':
    -    ./uwsgi.h:140:47: error: implicit declaration of function 'strtok_r' [-Werror=implicit-function-declaration]
    -     #define uwsgi_foreach_token(x, y, z, w) for(z=strtok_r(x, y, &w);z;z = strtok_r(NULL, y, &w))
    -                                                   ^
    -    core/utils.c:1953:2: note: in expansion of macro 'uwsgi_foreach_token'
    -      uwsgi_foreach_token(list2, "","", p, ctx) {
    -      ^
    -    ./uwsgi.h:140:46: error: assignment makes pointer from integer without a cast [-Werror=int-conversion]
    -     #define uwsgi_foreach_token(x, y, z, w) for(z=strtok_r(x, y, &w);z;z = strtok_r(NULL, y, &w))
    -                                                  ^
    -    core/utils.c:1953:2: note: in expansion of macro 'uwsgi_foreach_token'
    -      uwsgi_foreach_token(list2, "","", p, ctx) {
    -      ^
    -    ./uwsgi.h:140:70: error: assignment makes pointer from integer without a cast [-Werror=int-conversion]
    -     #define uwsgi_foreach_token(x, y, z, w) for(z=strtok_r(x, y, &w);z;z = strtok_r(NULL, y, &w))
    -                                                                          ^
    -    core/utils.c:1953:2: note: in expansion of macro 'uwsgi_foreach_token'
    -      uwsgi_foreach_token(list2, "","", p, ctx) {
    -      ^
    -    core/utils.c: In function 'uwsgi_list_has_str':
    -    ./uwsgi.h:140:46: error: assignment makes pointer from integer without a cast [-Werror=int-conversion]
    -     #define uwsgi_foreach_token(x, y, z, w) for(z=strtok_r(x, y, &w);z;z = strtok_r(NULL, y, &w))
    -                                                  ^
    -    core/utils.c:1968:2: note: in expansion of macro 'uwsgi_foreach_token'
    -      uwsgi_foreach_token(list2, "" "", p, ctx) {
    -      ^
    -    ./uwsgi.h:140:70: error: assignment makes pointer from integer without a cast [-Werror=int-conversion]
    -     #define uwsgi_foreach_token(x, y, z, w) for(z=strtok_r(x, y, &w);z;z = strtok_r(NULL, y, &w))
    -                                                                          ^
    -    core/utils.c:1968:2: note: in expansion of macro 'uwsgi_foreach_token'
    -      uwsgi_foreach_token(list2, "" "", p, ctx) {
    -      ^
    -    core/utils.c:1969:8: error: implicit declaration of function 'strcasecmp' [-Werror=implicit-function-declaration]
    -       if (!strcasecmp(p, str)) {
    -            ^
    -    core/utils.c: In function 'uwsgi_sig_pause':
    -    core/utils.c:2361:2: error: implicit declaration of function 'sigsuspend' [-Werror=implicit-function-declaration]
    -      sigsuspend(&mask);
    -      ^
    -    core/utils.c: In function 'uwsgi_run_command_putenv_and_wait':
    -    core/utils.c:2453:7: error: implicit declaration of function 'putenv' [-Werror=implicit-function-declaration]
    -       if (putenv(envs[i])) {
    -           ^
    -    In file included from core/utils.c:1:0:
    -    core/utils.c: In function 'uwsgi_build_unshare':
    -    ./uwsgi.h:140:46: error: assignment makes pointer from integer without a cast [-Werror=int-conversion]
    -     #define uwsgi_foreach_token(x, y, z, w) for(z=strtok_r(x, y, &w);z;z = strtok_r(NULL, y, &w))
    -                                                  ^
    -    core/utils.c:2855:2: note: in expansion of macro 'uwsgi_foreach_token'
    -      uwsgi_foreach_token(list, "","", p, ctx) {
    -      ^
    -    ./uwsgi.h:140:70: error: assignment makes pointer from integer without a cast [-Werror=int-conversion]
    -     #define uwsgi_foreach_token(x, y, z, w) for(z=strtok_r(x, y, &w);z;z = strtok_r(NULL, y, &w))
    -                                                                          ^
    -    core/utils.c:2855:2: note: in expansion of macro 'uwsgi_foreach_token'
    -      uwsgi_foreach_token(list, "","", p, ctx) {
    -      ^
    -    core/utils.c: In function 'uwsgi_tmpfd':
    -    core/utils.c:3533:7: error: implicit declaration of function 'mkstemp' [-Werror=implicit-function-declaration]
    -      fd = mkstemp(template);
    -           ^
    -    core/utils.c: In function 'uwsgi_expand_path':
    -    core/utils.c:3615:7: error: implicit declaration of function 'realpath' [-Werror=implicit-function-declaration]
    -      if (!realpath(src, dst)) {
    -           ^
    -    core/utils.c: In function 'uwsgi_set_cpu_affinity':
    -    core/utils.c:3641:3: error: unknown type name 'cpu_set_t'
    -       cpu_set_t cpuset;
    -       ^
    -    core/utils.c:3646:3: error: implicit declaration of function 'CPU_ZERO' [-Werror=implicit-function-declaration]
    -       CPU_ZERO(&cpuset);
    -       ^
    -    core/utils.c:3651:4: error: implicit declaration of function 'CPU_SET' [-Werror=implicit-function-declaration]
    -        CPU_SET(base_cpu, &cpuset);
    -        ^
    -    core/utils.c:3662:7: error: implicit declaration of function 'sched_setaffinity' [-Werror=implicit-function-declaration]
    -       if (sched_setaffinity(0, sizeof(cpu_set_t), &cpuset)) {
    -           ^
    -    core/utils.c:3662:35: error: 'cpu_set_t' undeclared (first use in this function)
    -       if (sched_setaffinity(0, sizeof(cpu_set_t), &cpuset)) {
    -                                       ^
    -    core/utils.c: In function 'uwsgi_thread_run':
    -    core/utils.c:3782:2: error: implicit declaration of function 'pthread_sigmask' [-Werror=implicit-function-declaration]
    -      pthread_sigmask(SIG_BLOCK, &smask, NULL);
    -      ^
    -    core/utils.c:3782:18: error: 'SIG_BLOCK' undeclared (first use in this function)
    -      pthread_sigmask(SIG_BLOCK, &smask, NULL);
    -                      ^
    -    core/utils.c: In function 'uwsgi_envdir':
    -    core/utils.c:4349:8: error: implicit declaration of function 'unsetenv' [-Werror=implicit-function-declaration]
    -        if (unsetenv(de->d_name)) {
    -            ^
    -    core/utils.c:4380:7: error: implicit declaration of function 'setenv' [-Werror=implicit-function-declaration]
    -       if (setenv(de->d_name, content, 1)) {
    -           ^
    -    cc1: all warnings being treated as errors
    -
    -    *** uWSGI compiling server core ***
    -
    - -

    Any idea what could cause this? I'm installing the following dependencies beforehand:

    - -
    RUN apk --update add \
    -        bash \
    -        python \
    -        python-dev \
    -        py-pip \
    -        gcc \
    -        zlib-dev \
    -        git \
    -        linux-headers \
    -        build-base \
    -        musl \
    -        musl-dev \
    -        memcached \
    -        libmemcached-dev
    -
    -",HQ -"

    I am trying to open the blob byte streams in the new tab of the browser. It is works, but I am not sure how to set the file name so that each of the documents will have the unique name when downloaded. Now, the document was defaulted to 'document.pdf' when saved.

    - -
    var blob = new Blob([response.data], { type: ""application/pdf"" });
    -            if (blob) {
    -                var fileURL = window.URL.createObjectURL(blob);
    -                window.open(fileURL);
    -            }
    -
    -",HQ -"

    I have written following functions in continuous web job :

    - -
    public static void fun1([TimerTrigger(""24:00:00"", RunOnStartup = true, UseMonitor = true)] TimerInfo timerInfo, TextWriter log)
    -{//Code}
    -
    -public static void fun2([TimerTrigger(""00:01:00"", RunOnStartup = true, UseMonitor = true)] TimerInfo timerInfo, TextWriter log)
    -{//code}
    -
    - -

    where, fun1 is not getting called again (only once, after starting web job) -and fun2 is getting called with 1 min trigger after every process gets completed.

    - -

    can anyone please explain why? -Am I doing anything wrong?

    -",HQ -" - -**below is my $array1 and $array2. -And I want to add $array2 values in the first indexes of the $array1** - -$array1 = Array -( - [0] => Array - ( - [0] => 2 - [1] => 6 - [2] => 15 - [3] => 6 - - ) - - [1] => Array - ( - [0] => 5 - [1] => 8 - [2] => 6 - [3] => 12 - - ) - - [2] => Array - ( - [0] => 2 - [1] => 5 - [2] => 5 - [3] => 5 - - ) - -) - -**below is $array2. -i want to pick this array values and put this values to above $array1** - - - -$array2 = Array -( - [0] => Outlook - [1] => Temp - [2] => Humidity - - -) - - -**Aspect-ed output is below where added value i show in single quotes** - -$array1 = Array -( - [0] => Array - ( - [0] => 'Outlook' - [1] => 2 - [2] => 6 - [3] => 15 - [4] => 6 - - - ) - - [1] => Array - ( - - [0] => 'Temp' - [1] => 5 - [2] => 8 - [3] => 6 - [4] => 12 - - ) - - [2] => Array - ( - [0] => 'Humidity' - [1] => 2 - [2] => 5 - [3] => 5 - [4] => 5 - - ) - -)",LQ -"I've just got this problem in my controller ,and I don't understand what's going on. -It returns me undefined method `toggle!' for Like::ActiveRecord_AssociationRelation: Or for my create action every thing works but not with the update action. -This is a basic like controller to like and unlike an event,someone and so one. - - class LikesController < ApplicationController - - before_action :authenticate_user! - - def create - @project=Project.find(params[:project_id]) - @like= @project.likes.where(user:current_user).first_or_initialize( name:current_user.first_name) - @like.toggle(:heart) - @like.save - Notification.create(user:current_user, user_name: current_user.first_name, action:'like', recipient:@project.subject) - redirect_to project_path(@project) - end - - - - def update - @project=Project.find(params[:project_id]) - @like= @project.likes.where(user:current_user) - @like.toggle(:heart) - @like.save - Notification.create(user:current_user, user_name: current_user.first_name, action:'Unlike', recipient:@project.subject) - redirect_to project_path(@project) - end - end - - -",LQ -"The python module workday() has an inconvenient input format: -workday(date(year=2009,month=12,day=28),10,[date(year=2009,month=12,day=29)]) - -I would prefer to input the dates as 2009,12,28. - -My holiday.xlsx list is read in as entries with: datetime.datetime(2016, 5, 1, 0, 0). - -Thus I am trying to figure out how to align this format to work with the workday() - -Any advice would be well received.",LQ -"

    I add this library in my gradle file:

    - -
    compile 'com.appeaser.sublimepickerlibrary:sublimepickerlibrary:2.0.0'
    -
    - -

    I've already these dependencies:

    - -
    dependencies {
    -compile fileTree(dir: 'libs', include: ['*.jar'])
    -compile ""com.android.support:design:23.+""
    -compile 'com.android.support:support-v4:23.+'
    -compile 'com.android.support:support-v13:23.+'
    -compile 'com.android.support:appcompat-v7:23.+'
    -compile 'com.android.support:cardview-v7:23.+'
    -compile 'com.android.support:recyclerview-v7:23.+'
    -
    - -

    Since, I've added SublimePicker library, I add this error:

    - -

    Error:Could not find com.android.support:support-v4:23.2.1. -Required by: - Android:app:unspecified

    - -

    Could you help me guys ?

    -",HQ -"

    In the default _Layout.cshtml file, scripts are defined in ""environment""s like so:

    - -
    <environment names=""Development"">
    -     <script src=""~/lib/jquery/dist/jquery.js""></script>
    -     <script src=""~/lib/bootstrap/dist/js/bootstrap.js""></script>
    -     <script src=""~/js/site.js"" asp-append-version=""true""></script>
    -</environment>
    -<environment names=""Staging,Production"">
    -     <script src=""https://ajax.aspnetcdn.com/ajax/jquery/jquery-2.1.4.min.js""
    -                    asp-fallback-src=""~/lib/jquery/dist/jquery.min.js""
    -                    asp-fallback-test=""window.jQuery"">
    -     </script>
    -     <script src=""https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/bootstrap.min.js""
    -                    asp-fallback-src=""~/lib/bootstrap/dist/js/bootstrap.min.js""
    -                    asp-fallback-test=""window.jQuery && window.jQuery.fn && window.jQuery.fn.modal"">
    -     </script>
    -     <script src=""~/js/site.min.js"" asp-append-version=""true""></script>
    -</environment>
    -
    - -

    And below that is @RenderSection(""scripts"", required: false)

    - -

    I can't seem to implement a section (in this case ""scripts"") in any separate .cshtml file since it looks like they got rid of ""@section"" in Core

    - -

    I would like to add specific scripts for specific views. What is the new way to go about this? Do I just dump everything in _Layout now?

    -",HQ -"

    Consider this code:

    - -
    enum Type {
    -    case Foo(Int)
    -    case Bar(Int)
    -
    -    var isBar: Bool {
    -        if case .Bar = self {
    -            return true
    -        } else {
    -            return false
    -        }
    -    }
    -}
    -
    - -

    That's gross. I would like to write something like this instead:

    - -
    enum Type {
    -    case Foo(Int)
    -    case Bar(Int)
    -
    -    var isBar: Bool {
    -        return case .Bar = self
    -    }
    -}
    -
    - -

    But such a construct does not seem to exist in Swift, or I cannot find it.

    - -

    Since there's data associated with each case, I don't think it's possible to implement the ~= operator (or any other helper) in a way that's equivalent to the above expression. And in any case, if case statements exist for free for all enums, and don't need to be manually implemented.

    - -

    Thus my question: is there any more concise/declarative/clean/idiomatic way to implement isBar than what I have above? Or, more directly, is there any way to express if case statements as Swift expressions?

    -",HQ -"

    I have been given a trained neural network in torch and I need to rebuild it exactly in tensorflow. I believe I have correctly defined the network's architecture in tensorflow but I am having trouble transferring the weight and bias tensors. Using a third party package, I converted all the weight and bias tensors from the torch network to numpy arrays then wrote them to disk. I can load them back into my python program but I cannot figure out a way to assign them to the corresponding layers in my tensorflow network.

    - -

    For instance, I have a convolution layer defined in tensorflow as

    - -
    kernel_1 = tf.Variable(tf.truncated_normal([11,11,3,64], stddev=0.1))
    -conv_kernel_1 = tf.nn.conv2d(input, kernel_1, [1,4,4,1], padding='SAME')
    -biases_1 = tf.Variable(tf.zeros[64])
    -bias_layer_1 = tf.nn_add(conv_kernel_1, biases_1)
    -
    - -

    According to the tensorflow documentation, the tf.nn.conv2d operation uses the shape defined in the kernel_1 variable to construct the weight tensor. However, I cannot figure out how to access that weight tensor to set it to the weight array I have loaded from file.

    - -

    Is it possible to explicitly set the weight tensor? And if so, how?

    - -

    (The same question applies to bias tensor.)

    -",HQ -"

    I have an np.array with over 330,000 rows. I simply try to take the average of it and it returns NaN. Even if I try to filter out any potential NaN values in my array (there shouldn't be any anyways), average returns NaN. Am I doing something totally wacky?

    - -

    My code is here:

    - -
    average(ngma_heat_daily)
    -Out[70]: nan
    -
    -average(ngma_heat_daily[ngma_heat_daily != nan])
    -Out[71]: nan
    -
    -",HQ -"

    I'm setting up a basic angular app, and I'm trying to inject some css to my views. This is an example of one of my components:

    - -
    import { Component } from 'angular2/core';
    -import { ROUTER_PROVIDERS, ROUTER_DIRECTIVES, RouteConfig } from 'angular2/router';
    -
    -import { LandingComponent } from './landing.component';
    -import { PortfolioComponent } from './portfolio.component';
    -
    -@Component({
    -    selector: 'portfolio-app',
    -    templateUrl: '/app/views/template.html',
    -    styleUrls: ['../app/styles/template.css'],
    -    directives: [ROUTER_DIRECTIVES],
    -    providers: [ROUTER_PROVIDERS]
    -})
    -
    -@RouteConfig([
    -    { path: '/landing', name: 'Landing', component: LandingComponent, useAsDefault: true },
    -    { path: '/portfolio', name: 'Portfolio', component: PortfolioComponent }
    -])
    -
    -export class AppComponent { }
    -
    - -

    Now the .css file is requested from my server, and when I inspect the page source, I can see it was added to the head. But something weird is happening:

    - -
    <style>@media (min-width: 768px) {
    -
    -
    -    .outer[_ngcontent-mav-3] {
    -        display: table;
    -        position: absolute;
    -        height: 100%;
    -        width: 100%;
    -    }
    -    .mainContainer[_ngcontent-mav-3] {
    -        display: table-cell;
    -        vertical-align: middle;
    -    }
    -    .appContainer[_ngcontent-mav-3] {
    -        width: 95%;
    -        border-radius: 50%;
    -    }
    -    .heightElement[_ngcontent-mav-3] {
    -        height: 0;
    -        padding-bottom: 100%;
    -    }
    -}</style>
    -
    - -

    gets generated from this file:

    - -
    /* Small devices (tablets, 768px and up) */
    -
    -@media (min-width: 768px) {
    -    /* center the mainContainer */
    -
    -    .outer {
    -        display: table;
    -        position: absolute;
    -        height: 100%;
    -        width: 100%;
    -    }
    -    .mainContainer {
    -        display: table-cell;
    -        vertical-align: middle;
    -    }
    -    .appContainer {
    -        width: 95%;
    -        border-radius: 50%;
    -    }
    -    .heightElement {
    -        height: 0;
    -        padding-bottom: 100%;
    -    }
    -}
    -
    - -

    Can somebody please explain where the _ngcontent-mav tag comes from, what does it stand for and how to get rid of it?

    - -

    I think this is the reason why my style is not getting applied to my templates.

    - -

    If you need more info about the app structure, please checkout my gitRepo, or ask and I'll add the code to the question.

    - -

    Thanks for the help.

    -",HQ -"

    I am working on a logout feature in the application we are using ASP.NET Identity login. I can login successfully but when I logout and then try to login again I get the following message:

    - -
    The provided anti-forgery token was meant for a different claims-based user than the current user.
    -
    - -

    Here is my logout code:

    - -
     public ActionResult Logout()
    -        {
    -            SignInManager.Logout();
    -            return View(""Index""); 
    -        }
    -
    -**SignInManager.cs**
    - public void Logout()
    -        {
    -            AuthenticationManager.SignOut(); 
    -        }
    -
    - -

    After the user press the logout button he is taken to the login screen. The url still says ""http://localhost:8544/Login/Logout"". Since we are on the login screen maybe it should just say ""http://localhost:8544/Login"".

    -",HQ -"

    I spent some time trying to figure out why the hour ticks were shifted when scale_x_datetime was applied. I've tried to give the timezone when the Date/Time column was created. I used ggplot and scale_x_datetime() from the package scales. The hour ticks were wrong, which datapoint did not match the time in their Date/Time column.

    - -

    Here is some procedures to deal with my dataset.

    - -
      DF$DateTime<-as.POSIXct(DF$timestamp,format=""%m/%d/%y %H:%M"", tz=""America/Toronto"")
    -  DF$Date<-as.Date(DF$DateTime)
    -
    -  lims <- as.POSIXct(strptime(c(""2015-07-21 00:00"",""2015-07-23 00:00""), format = ""%Y-%m-%d %H:%M""), tz=""America/Toronto"")    
    -
    -  ggplot(DF) + geom_line(aes(x=DateTime, y=-Diff,group=Date)) + scale_x_datetime(limits =lims, breaks=date_breaks(""2 hour""), labels=date_format(""%m/%d %H:%M""))
    -
    - -

    Do I miss anything here?? Please help me to figure it out. -Many thanks!

    -",HQ -"

    Cannot understand... How to set some property of view only if variable field isn't null? -
    For example

    - -
    <?xml version=""1.0"" encoding=""utf-8""?>
    -<layout xmlns:android=""http://schemas.android.com/apk/res/android"">
    -
    -    <data>
    -        <variable
    -            name=""item""
    -            type=""com.test.app.Item"" />
    -    </data>
    -
    -    <RelativeLayout
    -        android:layout_width=""match_parent""
    -        android:layout_height=""60dp""
    -        android:orientation=""horizontal"">
    -
    -        <ImageView
    -            android:id=""@+id/icon""
    -            android:layout_width=""wrap_content""
    -            android:layout_height=""wrap_content""
    -            android:layout_alignParentLeft=""true""
    -            android:layout_alignParentStart=""true""
    -            android:layout_centerVertical=""true""
    -            android:layout_margin=""16dp""
    -            android:src=""@{item.getDrawable()}""/>
    -
    -        <LinearLayout
    -            android:layout_width=""match_parent""
    -            android:layout_height=""wrap_content""
    -            android:layout_centerVertical=""true""
    -            android:layout_marginEnd=""16dp""
    -            android:layout_marginLeft=""72dp""
    -            android:layout_marginRight=""16dp""
    -            android:layout_marginStart=""72dp""
    -            android:layout_toLeftOf=""@id/action""
    -            android:layout_toStartOf=""@id/action""
    -            android:orientation=""vertical"">
    -
    -            <TextView
    -                android:id=""@+id/text1""
    -                android:layout_width=""match_parent""
    -                android:layout_height=""wrap_content""
    -                android:singleLine=""true""
    -                android:textColor=""@color/black_87""
    -                android:textSize=""16sp""
    -                android:text=""@{item.getTitle()}""/>
    -
    -            <TextView
    -                android:id=""@+id/text2""
    -                android:layout_width=""match_parent""
    -                android:layout_height=""wrap_content""
    -                android:autoLink=""web|email""
    -                android:linksClickable=""false""
    -                android:singleLine=""true""
    -                android:textColor=""@color/black_54""
    -                android:textSize=""14sp""
    -                android:text=""@{item.getSubtitle()}""/>
    -
    -
    -        </LinearLayout>
    -
    -    </RelativeLayout>
    -</layout>
    -
    - -

    Some field of Item can be null and I won't call methods of layout views unnecessarily. And I won't get NullPointerException. How can I set property only if it isn't null? -
    P.S. Sorry for English.

    -",HQ -"
        System.out.println((byte) (1.0/0));
    -    System.out.println((short) (1.0/0));
    -    System.out.println((int) (1.0/0));
    -    System.out.println((long) (1.0/0));
    -
    - -

    The result is:

    - -
        -1
    -    -1
    -    2147483647
    -    9223372036854775807
    -
    - -

    In binary format:

    - -
        1111 1111
    -    1111 1111 1111 1111
    -    0111 1111 1111 1111 1111 1111 1111 1111
    -    0111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111 1111
    -
    - -

    Why casting infinity to int and long integers keeps sign bit as ""0"", while sets sign bit to ""1"" for byte and short integers?

    -",HQ -"

    i tried the CakePHP 3.x ""Bookmaker Tutorial"" and i followed the instruction step by step. Unfortunately, at the end of the first chapter i get the attached error:

    - -
    Error: SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #8 of SELECT list
    -is not in GROUP BY clause and contains nonaggregated column 'wis.Tags.id' which is not
    -functionally dependent on columns in GROUP BY clause; this is incompatible with 
    -sql_mode=only_full_group_by
    -
    - -

    Furthermore, i get the information to check my ""BookmarksTags"" table but i do not have to creat one before. I little bit confused.

    - -
    Please try correcting the issue for the following table aliases:
    -
    -BookmarksTags
    -
    - -

    I already google my problem and i found information to update the ""my.cnf"" with a extra line. i already try but nothing happed. I also check the spelling and downloaded the ""bookmarker-tutorial"" from github but i still get this error above.

    - -

    I use MySQL 5.7.11 and PHP 5.6.14.

    -",HQ -"I have a project tree like this: - -main.rs: - - external crate lib; - mod a; - fn main() { - a::some_func(); - } - -a.rs: - - use lib; - fn some_func() { - lib::func(); - } - -this works ok. -but when i try to use a macro from 'lib', it gives me an error of macro undefined. - -I tried putting #[macro_use] in front of the 'external crate lib', then i get a lot of unresolved errors inside of the external crate. And i have already looked inside of the external crate, there is nothing wrong. Also, the fact that i can use functions from the library kinda proves (to me, im a rust noob) that the library is ok, and i'm doing something wrong.",LQ -"I need to develop a client and server program with using sockets. My program should get port number from the command line. I saw an example which says ""myprogram 2454 &"" -I wonder what that & means there. -Thanks",LQ -"

    Note: this is a programming challenge -


    -This challenge requires usage of std::set.

    - -

    Input

    - -
      -
    • A number n
    • -
    • n lines with each j and k
    • -
    - -

    Sample input:

    - -
    5
    -1 4
    -2 1
    -1 6
    -3 4
    -1 2
    -
    - -

    j is for the operation: 1 to insert k, 2 to delete k (if there is a k), 3 find k

    - -

    For j == 3, output Yes or No if k is in the std::set. -


    -I made different versions of the algorithm, but all are way too slow. I tried different std functions, but std::find seems the fastest one, but is still too slow. Implementing my own would be even worse, so maybe I missed a function from the library. I really have no idea how to optimize it further. Currently I have this:

    - -
    int main()
    -{
    -    std::set<int> set{};
    -    int Q = 0;
    -    std::cin >> Q;
    -
    -    int type = 0;
    -    int x = 0;
    -    for (int i = 0; i < Q; ++i)
    -    {
    -        std::cin >> type;
    -        std::cin >> x;
    -
    -        if (type == 1)
    -            set.insert(x);
    -        else if (type == 2)
    -            set.erase(x);
    -        else if (type == 3)
    -            std::cout << (std::find(std::begin(set), std::end(set), x) != std::end(set) ? ""Yes"" : ""No"") << '\n';
    -            //Condition may be std::find, std::count or std::binary_search
    -    }
    -
    -    return 0;
    -}
    -
    - -


    -The challenge requires it to run under 2 seconds. Here are the results of mine:

    - -
    Function              Time           % over
    -std::find          -> 7.410s         370.50%
    -std::count         -> 7.881s         394.05%
    -std::binary_search -> 14.050s        702.50%
    -
    - -

    As you can see my algorithm is 3x slower than the required algorithm. The bottlenecks are clearly those functions:

    - -
    Function               % of total time 
    -std::find          ->  77.61%
    -std::count         ->  80.80%
    -std::binary_search ->  87.59%
    -
    - -

    But currently I have no better idea than to use std::find or similar functions. Does someone have a way/idea to optimize my code further? Or are there some obvious bottlenecks that I'm missing?

    -",HQ -"My mission for this lonely Friday night is to write a C# swap algorithm - - public void Swap ( ref T a, ref T b ) - { - // ... - } - -that works on any class or data type `T` and is as efficient as possibe. Help critique the method I've built up so far. First of all, is it correct? How can I make it Skeet-certified? - - public void Swap ( ref T a, ref T b ) - { - // Not sure yet if T is a data or value type. - // Will handle swapping algorithm differently depending on each case. - Type type = T.GetTyle(); - if ( type.IsPrimitive() || type == typeof(Decimal) ) - { - // this means the we can XOR a and b, the fastest way of swapping them - a ^= b ^= a ^= b; - } - else if ( type.IsValueType() ) - { - // plain old swap in this case - T temp = a; - a = b; - b = temp; - } - else // is class type - { - // plain old swap??? - } - } - -Other questions: - - - What the overhead of the type checking cancel out any performance benefits of the XOR swap? - - Would the way this is handled be any different for a value type versus a class type if I wanted to optimize the performance of each case? - - Is there a better way to check whether two elements are XORable? - - Let's say I wanted a version of this method that takes value types, like - - public void Swap ( ref T a, ref T b ) where T : struct - { - // - } - -obviously I don't want to make copies of the entire structs in case they're very big. So I want to do the equivalent of what is in C++ - - template - void PointerSwap ( T * a, T * b ) - { - T * temp = a; - a = b; - b = temp; - } - -Now, I know that in C# you can get in the structs by ***boxing*** them into a class (reference type), but isn't there major overhead in doing that? Is there no way of simply using an integral type reference (so-called ""memory address"" in C++) as a parameter? - -C++ makes so much more sense than C# ... ",LQ -"

    I've been doing a school assignment on HTML and CSS. It was an easy assignment and I almost missed the due date when I was away for the weekend.

    - -

    I have done the assignment on my phone but to hand it in I have to put it on my GitHub page.

    - -

    Is there a way to put files from Android onto my GitHub page?

    -",HQ -"

    I am failing to pull from my private Docker Hub repository into my local Kubernetes setup running on Vagrant:

    - -
    -

    Container ""hellonode"" in pod ""hellonode-n1hox"" is waiting to start: image can't be - pulled

    - -

    Failed to pull image ""username/hellonode"": Error: image username/hellonode:latest not found

    -
    - -

    I have set up Kubernetes locally via Vagrant as described here and created a secret named ""dockerhub"" with kubectl create secret docker-registry dockerhub --docker-server=https://registry.hub.docker.com/ --docker-username=username --docker-password=... --docker-email=... which I supplied as the image pull secret.

    - -

    I am running Kubernetes 1.2.0.

    -",HQ -"

    Let say I have a list [1, 2, 3, 4]

    - -

    How can I get all elements from this list except last? So, I'll have [1, 2, 3]

    -",HQ -"I want to write a program that makes binary search in a file. I have a treeset adt that has strings int and i want to make research in file for each string this way : First i want to read the middle page of the file and do research in it . if the string is found then the position of the string is returned. if not then i have to read the page from the left or right half of the file depends on the alphabetical order of the strings. -My code for the class of the binary search is this : - - public class PageBinarySearch { - final int NOT_FOUND = -1; - final int BOUND_LIMIT = -1; - final int EVRTHG_OK = 0; - final int ON = 1; - final int OFF = 0; - private DataInputStream inFile; - private String[] readBuffer; //This buffer is used to read a specified page from - //the disk. - private String[] auxBuffer; //Auxiliary buffer is used for searching in the la- - //st page. This buffer has less than PAGE_SIZE ele- - //ments. - private int lastPage, leftElemNum, lastPageNo; - private int diskAccessMeter; //This variable is used to count disk accesses. - private int firstNum; - - - /********************************************************************************/ - //Constructor of the class - public PageBinarySearch(String filename, String key, int PageSize, int numPage, int numOfWords) throws IOException{ - System.out.println(); - System.out.println(""Binary Search on disk pages""); - System.out.println(""*************************************************""); - System.out.println(); - //Initializing the elements of the class. - readBuffer = new String[PageSize]; - lastPage = numPage*PageSize; - leftElemNum = numOfWords-(lastPage); - auxBuffer = new String[leftElemNum]; - lastPageNo = numPage; - diskAccessMeter = 0; - this.setFirstNum(filename); - basicPageBinarySearchMethod(filename, 0, lastPageNo, key,PageSize,numPage,numOfWords); - System.out.println(""Disk accesses:""+this.getDiskAccessMeter()); - } - - - /********************************************************************************/ - //Recursive binary search on disk pages. - public void basicPageBinarySearchMethod(String filename, int start, int end, - String key, int PageSize, int numPage, int numOfWords) throws IOException{ - inFile = new DataInputStream(new FileInputStream(filename)); - - int bound = boundHandler(start, key); - if (bound != EVRTHG_OK){return;} - - int midPage = start + (end-start)/2; - int midPageIndex = ((midPage) * (PageSize)); - int midPageEnd = midPageIndex + PageSize; - - //System.out.println(""----------------------------------------""); - System.out.println(""Page:""+(midPage+1)); - System.out.println("" Index:""+midPageIndex+"" End:""+midPageEnd); - - //Accessing midPage's index. - accessPageIndex(midPageIndex - 1); - - fillBasicBuffer(PageSize); - System.out.println(); - - if (key.compareTo(readBuffer[0])<0){ - //Case that the key is in the left part. - end = midPage - 1; - inFile.close(); //We close the stream because in the next recursion - //we want to access new midPage. - basicPageBinarySearchMethod(filename, start, end, key, PageSize, numPage, numOfWords); - } - else if (key.compareTo(readBuffer[255])>0){ - //Case that the key is in the left part. - start = midPage+1; - inFile.close(); - basicPageBinarySearchMethod(filename, start, end, key, PageSize, numPage, numOfWords); - } - else{ - //Case that: - //a) key is bigger than the integer, which is in the midPage- - //Index position of the file, and - //b) key is less than the integer, which is in the midPageEnd - //position of the file. - LookingOnPage(midPage, key); - } - - - } - - /********************************************************************************/ - public int boundHandler(int start, String key) throws IOException{ - if (start == this.getLastPageNo()){ - //In this case the program has to start searching in the last page, - //which has less than PAGE_SIZE elements. So we call the alternative - //function ""LookingOnLastPage"". - System.out.println(""Start == End""); - accessPageIndex(this.getLastPage()); - LookingOnLastPage(key); - return BOUND_LIMIT; - } - //if (key < this.getFirstNum()){ - - //System.out.println(""Key does not exist.""); - //return BOUND_LIMIT; - //} - - return EVRTHG_OK; - } - - /********************************************************************************/ - //This function is running a binary search in the specified disk page, which - //is saved in the readBuffer. - public void LookingOnPage(int pageNo, String key) throws IOException{ - int i, result; - System.out.println(""Looking for key:""+key+"" on page:""+(pageNo+1)); - result = myBinarySearch(key, readBuffer); - if (result != -1){ - System.out.println(""Key found on page:""+(pageNo+1)); - inFile.close(); - return; - } - else{ - System.out.println(""Key is not found""); - inFile.close(); - return; - } - } - - /********************************************************************************/ - //This function is running a binary search in the last disk page, which - //is saved in the auxBuffer. - public void LookingOnLastPage(String key) throws IOException{ - int i, result; - this.setDiskAccessMeter(this.getDiskAccessMeter()+1); - System.out.println(""Looking for key:""+key+"" on last page:"" - +(this.getLastPageNo()+1)); - for (i=0; i0) lo = mid + 1; - else return mid; - } - return NOT_FOUND; - } - - /********************************************************************************/ - public int getLastPage() { - return lastPage; - } - public void setLastPage(int lastPage) { - this.lastPage = lastPage; - } - - public int getLeftElemNum() { - return leftElemNum; - } - public void setLeftElemNum(int leftElemNum) { - this.leftElemNum = leftElemNum; - } - - public int getLastPageNo() { - return lastPageNo; - } - public void setLastPageNo(int lastPageNo) { - this.lastPageNo = lastPageNo; - } - - public int getDiskAccessMeter() { - return diskAccessMeter; - } - public void setDiskAccessMeter(int diskAccessMeter) { - this.diskAccessMeter = diskAccessMeter; - } - - - public int getFirstNum() { - return firstNum; - } - - - public void setFirstNum(String filename) throws IOException { - inFile = new DataInputStream(new FileInputStream(filename)); - this.firstNum = inFile.readInt(); - inFile.close(); - } - - } - -and my main is : - - public class MyMain { - - private static final int DataPageSize = 128; // Default Data Page size - - public static void main(String[] args) throws IOException { - TreeSet listOfWords = new TreeSet(new MyDictPageComp()); - LinkedList Eurethrio = new LinkedList(); - - File file = new File(""C:\\Kennedy.txt""); - BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file))); - //This will reference one line at a time... - String line = null; - int line_count=0; //Metavliti gia na metrame grammes .. - int byte_count; //Metavliti gia na metrame bytes... - int total_byte_count=0; //Metavliti gia synoliko arithmo bytes ... - int fromIndex; - - int middleP; - int kat = 0; - while( (line = br.readLine())!= null ){ - line_count++; - fromIndex=0; - String [] tokens = line.split("",\\s+|\\s*\\\""\\s*|\\s+|\\.\\s*|\\s*\\:\\s*""); - String line_rest=line; - for (int i=1; i <= tokens.length; i++) { - byte_count = line_rest.indexOf(tokens[i-1]); - fromIndex = fromIndex + byte_count + 1 + tokens[i-1].length(); - if (fromIndex < line.length()) - line_rest = line.substring(fromIndex); - listOfWords.add(new DictPage(tokens[i-1],kat)); - kat++; - Eurethrio.add(new Page(""Kennedy"",fromIndex)); - } - total_byte_count += fromIndex; - Eurethrio.add(new Page(""Kennedy"", total_byte_count)); - } - - //for(DictPage p : listOfWords){ - //System.out.println(p.getWord() + "" "" + p.getPage()); - //} - - //for (int i = 0;i nPag*DataPageSize){ - nPag++; - } - byte[] DataPage = new byte[nPag*DataPageSize]; - System.arraycopy( buf, 0, DataPage, 0, buf.length); // antigrafw buf sth selida - System.out.println(""TARRARA""+DataPage.length); - bos.close();//kleinw buf - - // write to the file - RandomAccessFile MyFile = new RandomAccessFile (""newbabis"", ""rw""); - MyFile.seek(0); - MyFile.write(DataPage); - } - System.out.println(""Number of Pages :""+nPag); - if (nPag%2 == 0){ - middleP = nPag/2; - } - else{ - middleP = (nPag+1)/2; - } - System.out.println(""Middle page is no:""+middleP); - - PageBinarySearch BinarySearch; - String key; - for(DictPage p : listOfWords){ - key = p.getWord(); - BinarySearch = new PageBinarySearch(""C:\\Kennedy.txt"", key , DataPageSize, nPag, numOfWords); - } - } - } - -My program is not working well and i can't find what I am doing wrong . ",LQ -"I want to pass the text box data to the next page(demo2) and i need to save all the data together in my db i tried using session the value i passed is sending to the next page but i want the textbox data to be passed... - -Help me out!! - -Below is my code - - - - - -**demo1.php** - - - - - - - - **demo1.php** - - - - - - - - - - -
    - - - - ""/> - - - - - - - - "">
    - - - - "">
    - - - - "">
    - - - - - - - - - - - - - - - - - **demo2.php** - - - - - - - -
    - - - - ""/> - - - - - - - "">
    - - - - "">
    - - - - "">
    - - - - "">
    - - - - "">
    - - - - "">
    - - - - "">
    - - - -
    - - - ",LQ -"

    When you look at the Dockerfile for a maven build it contains the line:

    - -
    VOLUME /root/.m2
    -
    - -

    Now this would be great if this is where my .m2 repository was on my mac - but it isn't - it's in

    - -
    /Users/myname/.m2
    -
    - -

    Now I could do:

    - -

    But then the linux implementation in Docker wouldn't know to look there. I want to map the linux location to the mac location, and have that as part of my vagrant init. Kind of like:

    - -
    ln /root/.m2 /Users/myname/.m2
    -
    - -

    My question is: How do I point a docker image to my .m2 directory for running maven in docker on a mac?

    -",HQ -"

    I want to use get_model() to avoid cyclic imports in my models, but I get name 'get_model' is not defined error. I read that get_model() was depreciated in 1.8 and apparently is not present in 1.9. What is the equivalent call? Or is there another way to avoid cyclic imports in two models.py files?

    -",HQ -"

    I have a problem with defining asynchrous validator in template driven form.

    - -

    Currently i have this input:

    - -
    <input type=""text"" ngControl=""email""  [(ngModel)]=""model.applicant.contact.email"" #email=""ngForm"" required asyncEmailValidator>
    -
    - -

    with validator selector asyncEmailValidator which is pointing to this class:

    - -
    import {provide} from ""angular2/core"";
    -import {Directive} from ""angular2/core"";
    -import {NG_VALIDATORS} from ""angular2/common"";
    -import {Validator} from ""angular2/common"";
    -import {Control} from ""angular2/common"";
    -import {AccountService} from ""../services/account.service"";
    -
    -@Directive({
    -selector: '[asyncEmailValidator]',
    -providers: [provide(NG_VALIDATORS, {useExisting: EmailValidator, multi: true}), AccountService]
    -})
    -
    -export class EmailValidator implements Validator {
    -//https://angular.io/docs/ts/latest/api/common/Validator-interface.html
    -
    -
    -constructor(private accountService:AccountService) {
    -}
    -
    -validate(c:Control):{[key: string]: any} {
    -    let EMAIL_REGEXP = /^[-a-z0-9~!$%^&*_=+}{\'?]+(\.[-a-z0-9~!$%^&*_=+}{\'?]+)*@([a-z0-9_][-a-z0-9_]*(\.[-a-z0-9_]+)*\.(aero|arpa|biz|com|coop|edu|gov|info|int|mil|museum|name|net|org|pro|travel|mobi|[a-z][a-z])|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(:[0-9]{1,5})?$/i;
    -
    -    if (!EMAIL_REGEXP.test(c.value)) {
    -        return {validateEmail: {valid: false}};
    -    }
    -
    -    return null;
    -
    -    /*return new Promise(resolve =>
    -        this.accountService.getUserNames(c.value).subscribe(res => {
    -            if (res == true) {
    -                resolve(null);
    -            }
    -            else {
    -                resolve({validateEmailTaken: {valid: false}});
    -            }
    -        }));*/
    -}
    -
    - -

    }

    - -

    Email regex part is working as expected and form is being validated successfuly if regex is matching. But after that I want to check if e-mail is not already in use, so im creating promise for my accountService. But this doesn't work at all and form is in failed state all the time.

    - -

    I've read about model driven forms and using FormBuilder as below:

    - -
    constructor(builder: FormBuilder) {
    -this.email = new Control('',
    -  Validators.compose([Validators.required, CustomValidators.emailFormat]), CustomValidators.duplicated
    -);
    -}
    -
    - -

    Which have async validators defined in third parameter of Control() But this is not my case because im using diffrent approach.

    - -

    So, my question is: is it possible to create async validator using template driven forms?

    -",HQ -" public void addToRequestQueue(Request req, String tag) { - req.setTag(TextUtils.isEmpty(tag) ? TAG : tag); - getRequestQueue().add(req); - } - -what is done in this second line i cant understand what is this (tag) ?TAG :tag ...I mean what is this code done ",LQ -"

    My project was working fine until I added the Facebook dependency. -I've started getting this error. -I've read many question, the problem seems to be related to MultiDex. -But none of the solutions worked for me

    - -
    Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
    -> com.android.build.api.transform.TransformException: 
    -com.android.ide.common.process.ProcessException:
    -org.gradle.process.internal.ExecException: Process 'command 
    -'/usr/lib/jvm/java-7-openjdk-amd64/bin/java'' finished with non-zero exit value 1
    -
    - -

    Even after I remove what I've added, it still show and also gradle seems to be taking a lot of time while building than usual

    - -

    Here is my build.gradle

    - -
    apply plugin: 'com.android.application'
    -
    -android {
    -    compileSdkVersion 23
    -    buildToolsVersion ""23.0.3""
    -
    -defaultConfig {
    -    applicationId ""net.ciblo.spectrodraft""
    -    minSdkVersion 15
    -    targetSdkVersion 23
    -    versionCode 1
    -    multiDexEnabled true
    -
    -}
    -buildTypes {
    -    release {
    -        minifyEnabled false
    -        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    -    }
    -}
    -}
    -
    -dependencies {
    -    compile fileTree(dir: 'libs', include: ['*.jar'])
    -    testCompile 'junit:junit:4.12'
    -
    -repositories {
    -    mavenCentral()
    -    maven { url ""https://oss.sonatype.org/content/repositories/snapshots/"" }
    -
    -}
    -compile 'com.facebook.android:facebook-android-sdk:[4,5)'
    -compile 'com.android.support:multidex:1.0.1'
    -compile 'com.android.support:appcompat-v7:23.2.1'
    -compile 'com.android.support:cardview-v7:23.2.1'
    -compile 'com.android.support:design:23.2.1'
    -compile 'com.daimajia.easing:library:1.0.1@aar'
    -compile 'com.daimajia.androidanimations:library:1.1.3@aar'
    -compile 'com.google.android.gms:play-services:8.4.0'
    -compile 'com.mcxiaoke.volley:library-aar:1.0.0'
    -compile 'com.pnikosis:materialish-progress:1.5'
    -compile 'com.nineoldandroids:library:2.4.+'
    -compile 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'
    -compile 'com.android.support:support-v4:23.2.1'
    -compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
    -
    -}
    -
    -",HQ -"I have a shell script which writes sqlplus errors to a log with the following output. I only want to capture @DB with errors and redirect to output to a error log. any tips? : - -@DB_1 - -ERROR-123 - -ORA-123 - -@DB_2 - -@DB_3 - -@DB_4 - -ERROR-2222 - -ORA-3333 - -thx.",LQ -"

    The Story:

    - -

    Currently, we are extending the recommended ESLint configuration:

    - -
    {
    -  ""extends"": ""eslint:recommended"",
    -  ...
    -  ""plugins"": [
    -    ""angular"",
    -    ""jasmine"",
    -    ""protractor""
    -  ],
    -  ""rules"": {
    -    ""no-multiple-empty-lines"": 2,
    -    ""no-trailing-spaces"": 2,
    -    ""jasmine/valid-expect"": 2
    -  }
    -}
    -
    - -

    And also using angular, jasmine and protractor ESLint plugins which also ship with their own recommended configurations (default rule strictness levels and default rule parameters).

    - -

    The Question:

    - -

    How can we use all the recommended configurations at the same time - the one that ESLint and all the used plugins ship with?

    - -
    - -

    Tried the following:

    - -
    {
    -  ""extends"": [
    -    ""eslint:recommended"",
    -    ""plugin:protractor/recommended"",
    -    ""plugin:jasmine/recommended"",
    -    ""plugin:angular/recommended""
    -  ],
    -  ...
    -}
    -
    - -

    but got the following error:

    - -
    -

    Cannot read property 'recommended' of undefined

    -
    -",HQ -"So I am practicing JavaScript in the Brackets Text Editor after learning a little bit of it on Codecademy. -I want to alter the text in the p tags to gain (upon clicking the text) the properties set by the attribution class. - -Here is the HTML: - -

    Hello

    - -CSS: - - .attribution{ - color:blue; - font-weight:bold; - } - -Javascript: - - var main = function() { - $('

    ').text('.attribution'); - }; - $(document).ready(main); - - -Thank You! - -",LQ -"

    The official PyCharm docs explain Exclude when it comes to refactoring: One can, say, rename something with refactoring (Shift+F6), causing the Find window to pop up with a Preview. Within, it shows files which will be updated as a result of the refactor. One can right-click on a file or folder in this Preview and choose Remove or Exclude. What's the difference?

    -",HQ -"i want to validate name, email,zip code on button click, but it's showing only last error msg, not specific to the filed, i m wirtting this code in javascript & jquery. anyone please help us . thanks",LQ -" I'm reading in an html file, trying to find HTML comments, both single and multi-line. I've stripped it down to just a few examples, and some other content just to have something there. - I've read a lot of the entries here, can't get a definitive answer to this... I'm reading in the html file in ""slurp"" mode, and doing a match of my pattern.. this code runs now and produce 1 (the first) match.. - - - #!C:\Perl\bin\perl.exe - BEGIN { unshift @INC, 'C:\rmhperl';} - use warnings;no warnings 'uninitialized'; - chdir 'c:\watts\html'; - open FILE, ""test.html"" or print 'error opening file ""test.html"" '; - my $text = do { local $/; }; - close(FILE); - if ($text =~ m/(?s)(\n)/sg) { - print ""1 = $1 2= $2\n""; - } - exit; - - in my html file, I've set up single and multi-line html comments... I can get the first OR the last to appear, but not EVERY one (at least in ""slurp"" mode)... - I'm told I should be able to accomplish this with one regex... so the objective is ""find ALL HTML comments, regardless of their being single/multi-line comments""... - so I built the regex to find both... it doesn't find the single-lines, and only finds 1 match... - I'm trying to find switches/way to tell regex to find EVERY match, whether it occurs on one line, or is a multi-line... I can do it either/or, but can't get them to work with one regex... - I can do non-slurp mode, and find the """" tag, but wanted to see if I can get it to work... - I've been reading about this, and trying to find relevant examples... can't see what I'm missing... Here's the HTML file snippet I have been using for the regex: - -#########################1st line of html file below ######################### - - - - - - - - - -
    -
    -
    -
    - -
    - - -
    -
    - - -
    -
    - -#########################last line of html file above##################### - - any help, or rtfm reference link appreciated... - - Mickey Holliday - - - - - -",LQ -"

    I trying to make a request GET to https://randomuser.me/api/

    - -
    import requests
    -import json
    -
    -
    -url = ""https://randomuser.me/api/""
    -data = requests.get(url).json
    -
    -print data
    -
    - -
    - -

    I kept getting

    - -
    # <bound method Response.json of <Response [200]>>
    -
    - -

    How do I see the json response ? Something like this

    - -
    {
    -    ""results"": [
    -        {
    -            ""user"": {
    -                ""gender"": ""female"",
    -                ""name"": {
    -                    ""title"": ""ms"",
    -                    ""first"": ""kerttu"",
    -                    ""last"": ""tervo""
    -                },
    -                ""location"": {
    -                    ""street"": ""9102 aleksanterinkatu"",
    -                    ""city"": ""eurajoki"",
    -                    ""state"": ""pirkanmaa"",
    -                    ""zip"": 67561
    -                },
    -                ""email"": ""kerttu.tervo@example.com"",
    -                ""username"": ""silvercat709"",
    -                ""password"": ""papa"",
    -                ""salt"": ""tOCPX2GL"",
    -                ""md5"": ""86c60371eeb94596916d66cee898c869"",
    -                ""sha1"": ""d06c4f2e43f8c0e53d88e538655f1152169ce575"",
    -                ""sha256"": ""5a6b011841b27b08c38d2091dfb3d7ca50f55192ca0fcf6929dae098316c9aae"",
    -                ""registered"": 1419602511,
    -                ""dob"": 1266822680,
    -                ""phone"": ""03-479-964"",
    -                ""cell"": ""047-950-61-69"",
    -                ""HETU"": ""220210A290R"",
    -                ""picture"": {
    -                    ""large"": ""https://randomuser.me/api/portraits/women/68.jpg"",
    -                    ""medium"": ""https://randomuser.me/api/portraits/med/women/68.jpg"",
    -                    ""thumbnail"": ""https://randomuser.me/api/portraits/thumb/women/68.jpg""
    -                }
    -            }
    -        }
    -    ],
    -    ""nationality"": ""FI"",
    -    ""seed"": ""7d24284202c2cfdb06"",
    -    ""version"": ""0.8""
    -}
    -
    -",HQ -"

    What is the best way to merge a dictionary in Julia?

    - -
    > dict1 = Dict(""a"" => 1, ""b"" => 2, ""c"" => 3)
    -> dict2 = Dict(""d"" => 4, ""e"" => 5, ""f"" => 6)
    -# merge both dicts
    -> dict3 = dict1 with dict2
    -> dict3
    -Dict{ASCIIString,Int64} with 6 entries:
    -  ""f"" => 6
    -  ""c"" => 3
    -  ""e"" => 5
    -  ""b"" => 2
    -  ""a"" => 1
    -  ""d"" => 4
    -
    -",HQ -"

    Files of the programming language Scheme are by convention either of the extension .scm or .ss.

    - -

    I'm interested in what the history of these extensions is, and also in the proper use, though it seems the universal attitude is that it's just whatever you prefer and it doesn't matter, but maybe I'm wrong about that.

    -",HQ -"CHECK THE IF ELSE STATEMENT ON after if(!empty){} section. - -
    - - - Username
    - Password
    -
    - - - -
    - - - -",LQ -"

    I have stumbled not once into a term ""non coherent"" and ""coherent"" memory in the

    - -

    tech papers related to graphics programming.I have been searching for a simple and clear explanation,but found mostly 'hardcore' papers of this type.I would be glad to receive layman's style answer on what coherent memory actually is on GPU architectures and how it is compared to other (probably not-coherent) memory types.

    -",HQ -"

    I would like to remove the grid lines from a Bokeh plot. What is the best way to do this?

    -",HQ -"

    With

    - -
    ""noImplicitAny"": true
    -
    - -

    TypeScript will give the error:

    - -

    Parameter 'x' implicitly has an 'any' type

    - -

    for

    - -
    .do(x => console.log(x));
    -
    - -

    and error

    - -

    ',' expected

    - -

    for:

    - -
    .do(x: any => console.log(x));
    -
    -",HQ -"

    I have the following directory structure:

    - -

    - -

    And my package.json looks like this:

    - -
    {
    -  ""name"": ""personal_site"",
    -  ""version"": ""1.0.0"",
    -  ""description"": ""My personal website."",
    -  ""main"": ""index.js"",
    -  ""scripts"": {
    -    ""test"": ""echo \""Error: no test specified\"" && exit 1"",
    -    ""node-sass"": ""node-sass --output-style compressed --include-path node_modules/bourbon/app/assets/stylesheets/ --include-path node_modules/bourbon-neat/app/assets/stylesheets/ 'src/scss/styles.scss' 'dist/css/bundle.min.css'"",
    -    ""html-minifier"": ""html-minifier --collapse-whitespace --remove-comments --remove-attribute-quotes -o 'dist/index.html' 'src/index.html'"",
    -    ""imagemin"": ""imagemin src/images dist/images"",
    -    ""serve"": ""http-server ./dist""
    -  },
    -  ""author"": ""Dean Gibson"",
    -  ""license"": ""ISC"",
    -  ""dependencies"": {
    -    ""bourbon"": ""^4.2.6"",
    -    ""bourbon-neat"": ""^1.7.4"",
    -    ""normalize-scss"": ""^4.0.3""
    -  },
    -  ""devDependencies"": {
    -    ""html-minifier"": ""^1.3.0"",
    -    ""http-server"": ""^0.9.0"",
    -    ""node-sass"": ""^3.4.2""
    -  }
    -}
    -
    - -

    So firstly, I have to run each of these scripts individually e.g. npm run node-sass or npm run html-minifier etc. What I'd ideally want is to run npm serve which will do the following:

    - -
      -
    1. run html-minifier
    2. -
    3. run node-sass
    4. -
    5. run run image-min
    6. -
    7. run http-server
    8. -
    9. Lastly, watch everything in my src folder and run -the respective scripts as files change e.g. node-sass etc..
    10. -
    - -

    How can I best tackle this problem?

    -",HQ -"

    I can't seem to get angular2 view to be updated on an array.push function, called upon from a setInterval async operation.

    - -

    the code is from this angular plunkr example of setInterval:

    - -

    What i'm trying to do is as follows:

    - -

    -
    -
    import {View, Component, bootstrap, Directive, ChangeDetectionStrategy, ChangeDetectorRef} from 'angular2/angular2'
    -
    -@Component({selector: 'cmp', changeDetection: ChangeDetectionStrategy.OnPush})
    -@View({template: `Number of ticks: {{numberOfTicks}}`})
    -class Cmp {
    -  numberOfTicks = [];
    -  
    -  constructor(private ref: ChangeDetectorRef) {
    -    setInterval(() => {
    -      this.numberOfTicks.push(3);
    -      this.ref.markForCheck();
    -    }, 1000);
    -  }
    -}
    -
    -@Component({
    -  selector: 'app',
    -  changeDetection: ChangeDetectionStrategy.OnPush
    -})
    -@View({
    -  template: `
    -    <cmp><cmp>
    -  `,
    -  directives: [Cmp]
    -})
    -class App {
    -}
    -
    -bootstrap(App);
    -
    <!DOCTYPE html>
    -<html>
    -
    -<head>
    -  <title>angular2 playground</title>
    -  <script src=""https://code.angularjs.org/tools/traceur-runtime.js""></script>
    -  <script src=""https://code.angularjs.org/tools/system.js""></script>
    -  <script src=""https://code.angularjs.org/tools/typescript.js""></script>
    -  <script data-require=""jasmine"" data-semver=""2.2.1"" src=""http://cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.1/jasmine.js""></script>
    -  <script data-require=""jasmine"" data-semver=""2.2.1"" src=""http://cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.1/jasmine-html.js""></script>
    -  <script data-require=""jasmine@*"" data-semver=""2.2.1"" src=""http://cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.1/boot.js""></script>
    -  
    -  <script src=""config.js""></script>
    -  <script src=""https://code.angularjs.org/2.0.0-alpha.37/angular2.min.js""></script>
    -  <script>
    -    System.import('app')
    -      .catch(console.error.bind(console));
    -  </script>
    -
    -</head>
    -
    -<body>
    -  <app></app>
    -</body>
    -
    -</html>
    -
    -
    -

    - -

    The above code will work properly if ""numberOfTicks"" is just a number, (as the plunker original example shows) but once I change it to an array and push data, it won't update.

    - -

    I can't seem to understand why is that.

    - -

    The following behaviour is similar to an issue I have when trying to update a graph in angular2 with new data points when using setInterval / setTimeout.

    - -

    Thanks for the help.

    -",HQ -"

    I want remove HTML tags (all) from a string on laravel blade ...

    - -

    code

    - -
    {!! \Illuminate\Support\Str::words($subject->body, 5,'...')  !!}
    -
    - -

    output (example)

    - -
    <p>hassen zouari</p>
    -
    - -

    I want that it be like this

    - -
    hassen zouari
    -
    -",HQ -"I've been tasked with a very simple password verification, but for the life of me, I cannot seem to get this right. Here is the task: - -> The user sends a numeric password of 6 characters through a form. In -> order to force secure passwords create a validation that the numbers -> cannot consecutively go up or down. - -Here is what I have: - - password = '246879' - new_password = password.split('').map { |s| s.to_i } - - new_password.each_with_index do |val, index| - - next_element = new_password[index + 1] - prev_element = new_password[index - 1] - - if new_password[index] + 1 == next_element - puts 'next bad' - break - elsif - new_password[index] - 1 == prev_element - puts 'prev bad' - break - end - end - -The password should fail on the 87 because 7 is one less than 8. Thank you for any help.",LQ -"

    I have got 200 response for login request, but 401 for any futher auth check requests, because deserializeUser never called. I dived into passport source and noticed that passport checks whether req._passport.session.user exists, and if no it doesn't call deserializeUser.

    - -

    I have searched through other questions on stackoverflow, it seems i have specific case.

    - -

    There is single local strategy auth type, i use Ajax request to make login requests, CORS settings configured, http://localhost:8080 - frontend, http://localhost:3000 backend)

    - -

    I use bodyParse, cookieParser, express session, passport initialize and passport sessions. Express session secure:false configured as i run auth requests through http.

    - -

    You can find my project here (backend package.json is good to go, so you can use it, it has no missing dependencies, as for frontend not sure), at least you can check the code there.

    - -

    Backend https://github.com/rantiev/template-api -Frontend https://github.com/rantiev/template-angular

    - -

    Express session configuration and CORS is here https://github.com/rantiev/template-api/blob/master/modules/appConfigure.js

    - -
    var path = require('path');
    -var bodyParser = require('body-parser');
    -var session = require('express-session');
    -var cookieParser = require('cookie-parser');
    -var MongoStore = require('connect-mongo')(session);
    -
    -module.exports = function (app, express, config, mongoose) {
    -
    -    app.use(cookieParser());
    -    app.use(bodyParser.urlencoded({
    -        extended: true
    -    }));
    -    app.use(bodyParser.json());
    -
    -    app.use(function (req, res, next) {
    -
    -        // Website you wish to allow to connect
    -        res.setHeader('Access-Control-Allow-Origin', 'http://localhost:8080');
    -
    -        // Request methods you wish to allow
    -        res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
    -
    -        // Request headers you wish to allow
    -        res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With, X-AUTHENTICATION, X-IP, Content-Type, Origin, Accept, Cookie');
    -
    -        // Set to true if you need the website to include cookies in the requests sent
    -        // to the API (e.g. in case you use sessions)
    -        res.setHeader('Access-Control-Allow-Credentials', true);
    -
    -        // Pass to next layer of middleware
    -        next();
    -    });
    -
    -    /*app.use(function (req, res, next) {
    -        console.log('coockie is:', req.cookies);
    -    });*/
    -
    -    app.use(session({
    -        saveUninitialized: false,
    -        resave: false,
    -        secret: config.sessionsSecretToken,
    -        cookie: {
    -            secure: false
    -        },
    -        store: new MongoStore({ mongooseConnection: mongoose.connection })
    -    }));
    -
    -    app.use(express.static(path.join(__dirname, '..' , 'public')));
    -
    -};
    -
    - -

    Passport configuration is here https://github.com/rantiev/template-api/blob/master/api/authentication/authenticationR.js

    - -
    var passport = require('passport');
    -var LocalStrategy = require('passport-local').Strategy;
    -var rememberMe = require('../../modules/rememberMe');
    -var createAccessToken = require('../../modules/createAccessToken');
    -
    -var bcrypt = require('bcrypt-nodejs');
    -
    -var UserM = require('../users/userM');
    -
    -module.exports = function (app, mainRouter, role) {
    -
    -    passport.use(new LocalStrategy({
    -        usernameField: 'email',
    -        passwordField: 'password'
    -    }, function (username, password, done) {
    -
    -        UserM.findOneQ({email: username})
    -            .then(function(user){
    -
    -                if (user && bcrypt.compareSync(password, user.password)) {
    -                    done(null, user);
    -                } else {
    -                    done(null, false);
    -                }
    -
    -            })
    -            .catch(function(err){
    -                done(err);
    -            });
    -
    -    }));
    -
    -    passport.serializeUser(function (user, done) {
    -
    -        console.log('serialize');
    -
    -        if (user) {
    -            createAccessToken(user, done);
    -        } else {
    -            done(null, false);
    -        }
    -    });
    -
    -    passport.deserializeUser(function (token, done) {
    -
    -        console.log('deserialize');
    -
    -        UserM.findOneQ({accessToken: token})
    -            .then(function(user){
    -
    -                if (user) {
    -                    done(null, user);
    -                } else {
    -                    done(null, false);
    -                }
    -
    -            })
    -            .catch(function(err){
    -                done(err);
    -            });
    -
    -    });
    -
    -    app.use(passport.initialize());
    -    app.use(passport.session());
    -
    -    mainRouter.post('/me', passport.authenticate('local'), function (req, res) {
    -        res.status(200).send();
    -    });
    -
    -    mainRouter.get('/logout', function (req, res) {
    -        req.logout();
    -        res.redirect('/');
    -    });
    -
    -    mainRouter.get('/me', function (req, res) {
    -
    -        if (!req.user) {
    -            res.status(401).send('Please Login!');
    -            return;
    -        }
    -
    -        var currentUser = {
    -            id: req.user._id,
    -            role: req.user.role
    -        };
    -
    -        res.status(200).json(currentUser);
    -    });
    -
    -};
    -
    -",HQ -"

    I just created a new SQL Server Database in Azure and then opened it in Visual Studio 2015 using the link in the Azure Portal. I had to add my IP to the firewall but otherwise the process went smoothly.

    - -

    However, when I am trying to interact with the database server via SQL Server Object Explorer it is painfully slow. Expanding any of the folders in my Database (e.g., Tables folder) takes 10 to 30 seconds. The database is brand new, so the only things it has are whatever Azure creates when it instantiates a new DB.

    - -

    This is the second Azure DB I have created and tried to view in Visual Studio and both have the same problem. With the first one I thought maybe I did something wrong during setup but this time I made sure to do everything by the book.

    - -

    Running actual queries against the DB from within Visual Studio (right click the DB, New Query ..., select * from INFORMATION_SCHEMA.TABLES;) is very fast, so it doesn't appear to be a problem with my connection to Azure.

    - -

    Why is it so painfully slow? What can I do to make it faster?

    - -

    I am using Visual Studio 2015 Update 1 (14.0.24720.00) on Windows 10 (fully patched) and during database creation I checked the box to use the latest version.

    -",HQ -"

    When using the Format Code command in Visual Studio Code, it is not honoring my indent settings (""editor.tabSize"": 2). It is using a tab size of 4 instead. Any ideas why this is happening?

    - -

    Thanks!

    -",HQ -"

    I'm try display a image on a component on React-native, but I don't know why this error happens...

    - -

    Example of code:

    - -
    render () {
    -    let { convenience } = this.props
    -    return (
    -      <View style={{flexDirection: 'row', height: 50}}>
    -        <Text style={{marginRight: 30}}>{convenience.name}</Text>
    -        <Image source={require('./icons___favorito_ativo.png')} />
    -      </View>
    -    )
    -}
    -
    - -

    Printscreen:

    - -

    -",HQ -"

    How to fit a locally weighted regression in python so that it can be used to predict on new data?

    - -

    There is statsmodels.nonparametric.smoothers_lowess.lowess, but it returns the estimates only for the original data set; so it seems to only do fit and predict together, rather than separately as I expected.

    - -

    scikit-learn always has a fit method that allows the object to be used later on new data with predict; but it doesn't implement lowess.

    -",HQ -"[enter image description here][1] - - - [1]: http://i.stack.imgur.com/lDQWf.png - -Plcaeholder not working with ANGULAR2. Please let me know if you require anything more?",LQ -"

    What I'm after is the ability to apply a tensorflow op to each element of a 2d tensor e.g.

    - -
    input = tf.Variable([[1.0, 2.0], [3.0, 4.0])
    -myCustomOp = ... # some kind of custom op that operates on 1D tensors
    -finalResult = tf.[thing I'm after](input, myCustomOp)
    -# when run final result should look like: [myCustomOp([1.0, 2.0]), myCustomOp([3.0, 4.0)]
    -
    - -

    Any ideas?

    -",HQ -"I know how to count the first elements in a list, - -[(zero? n) '()] -[else (cons (first list) (function (rest list)))] - -but how can I do something like this for the last n elements in a list **(without using list-ref)**?",LQ -"

    Take a look at this code snippet. -I am getting an error with the last line, because I am passing an 'index' instead of a resource. I thought it was a lint issue and tried to suppress it. -Then I noticed I am getting this error only when I building for release. It works fine when building for debug. I am totally clueless. Can anyone throw some light into what I am doing wrong.

    - -
    //Get paddingLeft, paddingRight
    -        int[] attrsArray = new int[]{
    -                android.R.attr.paddingLeft,  // 0
    -                android.R.attr.paddingRight, // 1
    -        };
    -        TypedArray ta = context.obtainStyledAttributes(attrs, attrsArray);
    -        if (ta == null) return;
    -        mPaddingLeft = ta.getDimensionPixelSize(0, 0);
    -        mPaddingRight = ta.getDimensionPixelSize(1/*error here*/, 0); 
    -
    -",HQ -"

    If I have an image like below, how can I add border all around the image such that the overall height and width of the final image increases but the height and width of the original image stays as-is in the middle.

    - -

    -",HQ -"I was wondering if someone could help me. I've got a simple Suppliers table that has the Email Addresses for my Suppliers. -I need to loop through the email addresses 'SuppEmail' in the Suppliers table in the SQL Database 'SpecCars' and send them all the email below. -I've been at it for a few days now, looking on-line and trying many different variations, but no matter what I do, it only sends one email -to the first entry 'frontdesk@jacksauto.com.au' in the table and that's it. If you could help, that would be fantastic. It's an ASP.NET C# Solution. - - // This is the Suppliers Table, it just has two record in there: - -.................................................. - -use SpecCars -Go - -CREATE table Suppliers( - SuppId INT IDENTITY(1,1) PRIMARY KEY, - SuppName NVARCHAR(60) NOT NULL, - SuppAddress NVARCHAR(150) NOT NULL, - SuppSuburb NVARCHAR(60) NOT NULL, - SuppState NVARCHAR(30) NOT NULL, - SuppPost NVARCHAR(10) NOT NULL, - SuppPhone NVARCHAR(10) NOT NULL, - SuppEmail NVARCHAR(100) NOT NULL, - SuppCode NVARCHAR(10) NOT NULL -) -Go - -Command(s) completed successfully. - - -Insert into Suppliers (SuppName, SuppAddress, SuppSuburb, SuppState, SuppPost, SuppPhone, SuppEmail, SuppCode) values ('Jacks Auto', '2 Jill Street', 'Belgrade', 'VIC', '3299', '9555 4457', 'frontdesk@jacksauto.com.au', 'JACBLA') -Insert into Suppliers (SuppName, SuppAddress, SuppSuburb, SuppState, SuppPost, SuppPhone, SuppEmail, SuppCode) values ('Ultimate Lights', '205 Browns Road', 'Tullamarine', 'VIC', '3011', '9877 2255', 'orders@ultimatlights.com.au', 'ULTTUL') - -(2 row(s) affected) - -.................................................. - - - //This is the code snippet : - - SqlDataReader sqlData; - SqlConnection connection = new SqlConnection(""Data Source=.;Initial Catalog=SpecCars;Integrated Security=True""); - - connection.Open(); - sqlData = new SqlCommand(""Select SuppEmail From Suppliers"", connection).ExecuteReader(); - - int count = sqlData.FieldCount; - while (sqlData.Read()) - { - for (int i = 0; i < count; i++) - { - string emailnew = sqlData[i].ToString(); - - MailMessage mailMessage = new MailMessage(); - - mailMessage.From = new MailAddress(""myemail.com""); - mailMessage.To.Add(""myemail.com""); - mailMessage.To.Add(emailnew); - //mailMessage.CC.Add(emailnew); - mailMessage.Subject = ""Assembly Line Stop""; - mailMessage.Priority = MailPriority.High; - - mailMessage.Body = ""Please be advised that the assembly line at Specialised Cars has STOPPED. You will be notified once the line has started again. Any Services between the LINE STOP and the LINE START will be carried out after 19:00 (7pm).""; - mailMessage.IsBodyHtml = true; - - SmtpClient smtpClient = new SmtpClient(""smtp-mail.myprovider.com"", 587); - smtpClient.EnableSsl = true; - smtpClient.Credentials = new System.Net.NetworkCredential(""myemail.com"", ""password""); - smtpClient.Send(mailMessage); - } - } - connection.Close(); - -.................................................. ",LQ -"I want to write small html/js code that when I open that file.html, 3 different websites open in 3 new tabs right away, can somebody help with the code? Im new in web development...thanks, much love",LQ -"

    I've just started exploring some concurrency features of Java 8. One thing confused me a bit is these two static methods:

    - -
    CompletableFuture<Void> runAsync(Runnable runnable) 
    -CompletableFuture<U> supplyAsync(Supplier<U> supplier)
    -
    - -

    Do anyone know why they choose to use interface Supplier? Isn't it more natural to use Callable, which is the analogy of Runnable that returns a value? Is that because Supplier doesn't throw an Exception that couldn't be handled?

    -",HQ -"this is my code - - - - - - int main() - { - char *pchar; - - short *pshort; - - int *pint; - - long *plong; - - float *pfloat; - - double *pdouble; - - pchar = pshort = pint = plong = pfloat = pdouble; - - printf(""sizeof *pchar is = %u\n"",sizeof(pchar)); - - printf(""sizeof *pshort is = %u\n"",sizeof(pshort)); - - printf(""sizeof *pint is = %u\n"",sizeof(pint)); - - printf(""sizeof *plong is = %u\n"",sizeof(plong)); - - printf(""sizeof *pfloat is = %u\n"",sizeof(pfloat)); - - printf(""sizeof *pdouble is = %u\n"",sizeof(pdouble)); - - - return 0; - } - -/// i want Each of these pointer variables will point to different data types, but they will occupy the same amount of space in memory. how can i do that -----------",LQ -"In my application I have 4 button. If user will click on a button, that will disappear and remaining 3 still display. -The problem is that I don't want a control (button) gap between button. -I want remaining 3 should rearrange itself. - -Which control I should use or how I can implement that. I am using MVVM in my application.",LQ -"I have NVIDIA GT9800 and CUDA-programm(sample). If I specify code generation as compute_20,sm_20 then the error ""invalid device function"" occured. With compute_11,sm_11 all correct. Why? ",LQ -"I have below json array structure.. How can i get the key and value of each of the `records` json object? - - { - ""records"": [{ - ""cfsub_2"": ""1"", - ""cf_7"": ""1/3/2016"", - ""cf_1"": ""Clinic San"", - ""cf_2"": ""Fever"", - ""cf_3"": ""56.60"", - ""cfe_8"": ""dsf4334"" - }, { - ""cfsub_2"": ""2"", - ""cf_7"": ""3/3/2016"", - ""cf_1"": ""Clinic Raju"", - ""cf_2"": ""braces"", - ""cf_3"": ""183.50"", - ""cfe_8"": ""fresr4"" - }] - }",LQ -"got code from Pierre Fourgeaud (internet) but i cant understand how it can be reversed? - -void reverse( string& word ) -{ - if ( word.size() <= 1 ) return; - - // Get the string without the first and the last char - string temp = word.substr( 1, word.size() - 2 ); - // Reverse it - reverse( temp ); - - // Recompose the string - word = word.substr( word.size() - 1 ) + temp + word[0]; -} - -thanks.",LQ -"I met a question with use Robot Framework Ride to test. -The test case structure as below: ----------------------------------- -if A>B: - print 1 - print 2 - print 3 -if C>D: - print 4 - print 5 ----------------------------------- -I didn't find a way to execute multiples case below one ""if"". I found one keyword ""Run Keyword if"",but it can only execute one statement. - -please tell me if you know how to resolve,thanks.... - -",LQ -"Is there any way to convert java8 `Map` to `ConcurrentMap` ? - -other then iterating manually all entities? -",LQ -"

    I have a class similar to the following:

    - -
    @Configuration
    -public class ApplicationConfiguration {
    -
    -    private <T> T createService(Class<T> serviceInterface) {
    -        // implementation omitted
    -    }
    -
    -    @Bean
    -    public FooService fooService() {
    -        return createService(FooService.class);
    -    }
    -
    -    @Bean
    -    public BarService barService() {
    -        return createService(BarService.class);
    -    }
    -
    -    ...
    -
    -}
    -
    - -

    The problem is that there are too many @Bean-annotated methods which differ only in their names, return types and arguments for the crateService method call. -I would like to make this class similar to the following:

    - -
    @Configuration
    -public class ApplicationConfiguration {
    -
    -    private static final Class<?>[] SERVICE_INTERFACES = {
    -            FooSerivce.class, BarService.class, ...};
    -
    -
    -    private <T> T createService(Class<T> serviceInterface) {
    -        // implementation omitted
    -    }
    -
    -    @Beans // whatever
    -    public Map<String, Object> serviceBeans() {
    -        Map<String, Object> result = ...
    -        for (Class<?> serviceInterface : SERVICE_INTERFACES) {
    -            result.put(/* calculated bean name */,
    -                    createService(serviceInterface));
    -        }
    -        return result;
    -    }
    -
    -}
    -
    - -

    Is it possible in Spring?

    -",HQ -"

    I see that the following is fine:

    - -
    const Tab = connect( mapState, mapDispatch )( Tabs );
    -export default Tab;
    -
    - -

    However, this is incorrect:

    - -
    export default const Tab = connect( mapState, mapDispatch )( Tabs );
    -
    - -

    Yet this is fine:

    - -
    export default Tab = connect( mapState, mapDispatch )( Tabs );
    -
    - -

    Can this be explained please why const is invalid with export default? Is it an unnecessary addition & anything declared as export default is presumed a const or such?

    -",HQ -"

    I want to be able to modify my array of objects using map in Swift of the fly, without looping through each element.

    - -

    Before here were able to do something like this (Described in more details here:

    - -
    gnomes = gnomes.map { (var gnome: Gnome) -> Gnome in
    -    gnome.age = 140
    -    return gnome
    -}
    -
    - -

    Thanks for Erica Sadun and others, new proposals have gone through and we're now getting rid of C-style loops and using var inside the loop.

    - -

    In my case I'm first getting a warning to remove the var in then an error my gnome is a constant (naturally)

    - -

    My question is : How do we alter arrays inside a map or the new styled loops for that matter to be fully prepared for Swift 3.0?

    -",HQ -"

    I'm trying to import

    - -
     import android.support.test.InstrumentationRegistry;
    -
    - -

    my build.gradle file

    - -
    androidTestCompile 'com.android.support.test:testing-support-lib:0.1'
    -androidTestCompile 'com.android.support.test:runner:0.2'
    -androidTestCompile 'com.android.support.test:rules:0.2'
    -androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
    -
    - -

    in default config:

    - -
    defaultConfig {
    -        testInstrumentationRunner ""android.support.test.runner.AndroidJUnitRunner""
    -    }
    -
    - -

    Is there a library I'm missing here? I'm trying to import InstrumentationRegistry but it doesn't recognise it!

    -",HQ -"

    I want to get query like this with sequelize ORM:

    - -
    SELECT ""A"".*,      
    -FROM ""A"" 
    -LEFT OUTER JOIN ""B"" ON ""A"".""bId"" = ""B"".""id""
    -LEFT OUTER JOIN ""C"" ON ""A"".""cId"" = ""C"".""id""
    -WHERE (""B"".""userId"" = '100'
    -       OR ""C"".""userId"" = '100')
    -
    - -

    The problem is that sequelise not letting me to reference ""B"" or ""C"" table in where clause. Following code

    - -
    A.findAll({
    -    include: [{
    -        model: B,
    -        where: {
    -            userId: 100
    -        },
    -        required: false
    -
    -    }, {
    -        model: C,
    -        where: {
    -            userId: 100
    -        },
    -        required: false
    -    }]
    -] 
    -
    - -

    gives me

    - -
    SELECT ""A"".*,      
    -FROM ""A"" 
    -LEFT OUTER JOIN ""B"" ON ""A"".""bId"" = ""B"".""id"" AND ""B"".""userId"" = 100
    -LEFT OUTER JOIN ""C"" ON ""A"".""cId"" = ""C"".""id"" AND ""C"".""userId"" = 100
    -
    - -

    which is completely different query, and result of

    - -
    A.findAll({
    -    where: {
    -        $or: [
    -            {'""B"".""userId""' : 100},
    -            {'""C"".""userId""' : 100}
    -        ]
    -    },
    -    include: [{
    -        model: B,
    -        required: false
    -
    -    }, {
    -        model: C,
    -        required: false
    -    }]
    -] 
    -
    - -

    is no even a valid query:

    - -
    SELECT ""A"".*,      
    -FROM ""A"" 
    -LEFT OUTER JOIN ""B"" ON ""A"".""bId"" = ""B"".""id""
    -LEFT OUTER JOIN ""C"" ON ""A"".""cId"" = ""C"".""id""
    -WHERE (""A"".""B.userId"" = '100'
    -       OR ""A"".""C.userId"" = '100')
    -
    - -

    Is first query even possible with sequelize, or I should just stick to raw queries?

    -",HQ -"I can not understand how Posix allows any thread to unlock (post) on a semaphore. Let's consider following example: - - // sem1 and sem2 are a Posix semaphore, - // properly initialized for single process use - // at this point, sem2 is locked, sem1 is unlocked - // x and y are global (non-atomic, non-volatile) integer variables - // thread 1 - is executing right now - - rc = sem_wait(&sem); // succeeded, semaphore is 0 now - x = 42; - y = 142; - sem_post(&sem2); - while (true); - - // thread 2. waits for sem2 to be unlocked by thread1 - sem_wait(&sem2); - sem_post(&sem1); - - // thread 3 - sem_wait(&sem1); // wakes up when sem1 is unlocked by thread2 - #ifdef __cplusplus - std::cout << ""x: "" << x << ; y: "" << y << ""\n""; - #else - printf(""x: %d; y: %d\n"", x, y); - #endif - -Now, according to everything I've read, this code is 100% kosher for passover. In thread 3, we are guaranteed to see `x` as 42, `y` as 142. We are proteced from any race. - -But this is what I can't understand. All those threads can potentially be executed on 3 different cores. And if the chip doesn't have internally strong memory ordering (ARM, PowerPC) or writes are not-atomic (x86 for unaligned data) how can thread2 on Core2 possibly request Core1 (busy with thread1) to properly release the data / complete writes / etc? As far as I know, there are no such commands! - -What I am missing here? - - -",LQ -"

    I have a file:

    - -
    12345a
    -123456b
    -1234567c
    -12345678d
    -123456789e
    -
    - -

    How do I delete the last character in each line.
    -And the file will be

    - -
    12345
    -123456
    -1234567
    -12345678
    -123456789
    -
    -",HQ -"

    When I try to use Invoke-WebRequest I'm getting some weird error:

    - -
    Invoke-WebRequest -Uri ""https://idp.safenames.com/""
    -
    -Invoke-WebRequest : The underlying connection was closed: An unexpected error occurred on a send.
    -
    - -

    I'm not sure what's causing it, as the website itself seems fine.

    - -

    Even with all the ""ignore ssl errors"" functions around stackoverflow, it's still not working, making me wonder if it's related to SSL at all.

    -",HQ -"I m solving a simple program and i am getting 2 outputs of the same data with a single cout statement...probably something went wrong with my loop , which i am not able to find where is the problem...also...if possible please answer acc. to my code and my logic or if not then atleast specify why my logic is wrong... - -My code:- -` - - #include - #include - #include - #include - #include - using namespace std; - - int main(){ - int n ; - cin >> n; - vector arr(n); - vector a(n); - for(int arr_i = 0;arr_i < n;arr_i++){ - cin >> arr[arr_i]; - a[arr_i]=1; - } - int i,least,flag,count=n; - do{ - cout<I have a numpy array like this:

    - -
    A = array([[1, 3, 2, 7],
    -           [2, 4, 1, 3],
    -           [6, 1, 2, 3]])
    -
    - -

    I would like to sort the rows of this matrix in descending order and get the arguments of the sorted matrix like this:

    - -
    As = array([[3, 1, 2, 0],
    -            [1, 3, 0, 2],
    -            [0, 3, 2, 1]])
    -
    - -

    I did the following:

    - -
    import numpy
    -A = numpy.array([[1, 3, 2, 7], [2, 4, 1, 3], [6, 1, 2, 3]])
    -As = numpy.argsort(A, axis=1)
    -
    - -

    But this gives me the sorting in ascending order. Also, after I spent some time looking for a solution in the internet, I expect that there must be an argument to argsort function from numpy that would reverse the order of sorting. But, apparently there is no such argument! Why!?

    - -

    There is an argument called order. I tried, by guessing, numpy.argsort(..., order=reverse) but it does not work.

    - -

    I looked for a solution in previous questions here and I found that I can do:

    - -
    import numpy
    -A = numpy.array([[1, 3, 2, 7], [2, 4, 1, 3], [6, 1, 2, 3]])
    -As = numpy.argsort(A, axis=1)
    -As = As[::-1]
    -
    - -

    For some reason, As = As[::-1] does not give me the desired output.

    - -

    Well, I guess it must be simple but I am missing something.

    - -

    How can I sort a numpy array in descending order?

    -",HQ -"

    I made an app with Table View and Segmented Control, and this is my first time. I'm using some code and some tutorials, but It's not working. When I run my app It's crashing and it's showing this Error in logs:

    - -
    -

    MyApplication[4928:336085] * Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key tableView.' - * First throw call stack: - ( - 0 CoreFoundation 0x000000010516fd85 __exceptionPreprocess + 165 - 1 libobjc.A.dylib 0x0000000105504deb objc_exception_throw + 48 - 2 CoreFoundation 0x000000010516f9c9 -[NSException raise] + 9 - 3 Foundation 0x000000010364e19b -[NSObject(NSKeyValueCoding) setValue:forKey:] + 288 - 4 UIKit 0x0000000103c37d0c -[UIViewController setValue:forKey:] + 88 - 5 UIKit 0x0000000103e6e7fb -[UIRuntimeOutletConnection connect] + 109 - 6 CoreFoundation 0x00000001050a9890 -[NSArray makeObjectsPerformSelector:] + 224 - 7 UIKit 0x0000000103e6d1de -[UINib instantiateWithOwner:options:] + 1864 - 8 UIKit 0x0000000103c3e8d6 -[UIViewController _loadViewFromNibNamed:bundle:] + 381 - 9 UIKit 0x0000000103c3f202 -[UIViewController loadView] + 178 - 10 UIKit 0x0000000103c3f560 -[UIViewController loadViewIfRequired] + 138 - 11 UIKit 0x0000000103c3fcd3 -[UIViewController view] + 27 - 12 UIKit 0x000000010440b024 -[_UIFullscreenPresentationController _setPresentedViewController:] + 87 - 13 UIKit 0x0000000103c0f5ca -[UIPresentationController initWithPresentedViewController:presentingViewController:] + 133 - 14 UIKit 0x0000000103c525bb -[UIViewController _presentViewController:withAnimationController:completion:] + 4002 - 15 UIKit 0x0000000103c5585c -[UIViewController _performCoordinatedPresentOrDismiss:animated:] + 489 - 16 UIKit 0x0000000103c5536b -[UIViewController presentViewController:animated:completion:] + 179 - 17 UIKit 0x00000001041feb8d __67-[UIStoryboardModalSegueTemplate newDefaultPerformHandlerForSegue:]_block_invoke + 243 - 18 UIKit 0x00000001041ec630 -[UIStoryboardSegueTemplate _performWithDestinationViewController:sender:] + 460 - 19 UIKit 0x00000001041ec433 -[UIStoryboardSegueTemplate _perform:] + 82 - 20 UIKit 0x00000001041ec6f7 -[UIStoryboardSegueTemplate perform:] + 156 - 21 UIKit 0x0000000103aa6a8d -[UIApplication sendAction:to:from:forEvent:] + 92 - 22 UIKit 0x0000000103c19e67 -[UIControl sendAction:to:forEvent:] + 67 - 23 UIKit 0x0000000103c1a143 -[UIControl _sendActionsForEvents:withEvent:] + 327 - 24 UIKit 0x0000000103c19263 -[UIControl touchesEnded:withEvent:] + 601 - 25 UIKit 0x0000000103b1999f -[UIWindow _sendTouchesForEvent:] + 835 - 26 UIKit 0x0000000103b1a6d4 -[UIWindow sendEvent:] + 865 - 27 UIKit 0x0000000103ac5dc6 -[UIApplication sendEvent:] + 263 - 28 UIKit 0x0000000103a9f553 _UIApplicationHandleEventQueue + 6660 - 29 CoreFoundation 0x0000000105095301 _CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION_ + 17 - 30 CoreFoundation 0x000000010508b22c __CFRunLoopDoSources0 + 556 - 31 CoreFoundation 0x000000010508a6e3 __CFRunLoopRun + 867 - 32 CoreFoundation 0x000000010508a0f8 CFRunLoopRunSpecific + 488 - 33 GraphicsServices 0x000000010726dad2 GSEventRunModal + 161 - 34 UIKit 0x0000000103aa4f09 UIApplicationMain + 171 - 35 Dhikr 0x0000000101f26282 main + 114 - 36 libdyld.dylib 0x00000001064c392d start + 1 - ) - libc++abi.dylib: terminating with uncaught exception of type NSException

    -
    - -

    The code that I used is:

    - -
    class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
    -
    -let foodList:[String] = [""Bread"", ""Meat"", ""Pizza"", ""Other""]
    -let drinkList:[String] = [""Water"", ""Soda"", ""Juice"", ""Other""]
    -
    -@IBOutlet weak var mySegmentedControl: UISegmentedControl!
    -@IBOutlet weak var myTableView: UITableView!
    -
    -override func viewDidLoad() {
    -    super.viewDidLoad()
    -    // Do any additional setup after loading the view.
    -}
    -
    -func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    -
    -    var returnValue = 0
    -
    -    switch(mySegmentedControl.selectedSegmentIndex) {
    -    case 0:
    -        returnValue = foodList.count
    -        break
    -    case 1:
    -        returnValue = drinkList.count
    -        break
    -    default:
    -        break
    -    }
    -
    -    return returnValue
    -}
    -
    -func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    -    let myCell = tableView.dequeueReusableCellWithIdentifier(""myCells"", forIndexPath: indexPath)
    -
    -    switch(mySegmentedControl.selectedSegmentIndex) {
    -    case 0:
    -        myCell.textLabel!.text = foodList[indexPath.row]
    -        break
    -    case 1:
    -        myCell.textLabel!.text = drinkList[indexPath.row]
    -        break
    -    default:
    -        break
    -    }
    -
    -    return myCell
    -}
    -
    -@IBAction func segmentedControlActionChanged(sender: AnyObject) {
    -    myTableView.reloadData()  
    -}
    -
    - -

    Here is main.Storyboard

    - -

    - -

    I checked the code many times, but it's not working. First I had to use only Table View, watching this tutorial (https://www.youtube.com/watch?v=ABVLSF3Vqdg) I thought it will work to use Segmented Control as in tutorial. But still doesn't work. Same code, same error. -Can someone help me ?

    -",HQ -"

    I created the following using ActionCable but not able to receive any data that is being broadcasted.

    - -

    Comments Channel:

    - -
    class CommentsChannel < ApplicationCable::Channel
    -  def subscribed
    -    comment = Comment.find(params[:id])
    -    stream_for comment
    -  end
    -end
    -
    - -

    JavaScript:

    - -
    var cable = Cable.createConsumer('ws://localhost:3000/cable');
    -
    -var subscription = cable.subscriptions.create({
    -  channel: ""CommentsChannel"",
    -  id: 1
    -},{
    -  received: function(data) {
    -    console.log(""Received data"")
    -  }
    -});
    -
    - -

    It connects fine and I can see the following in the logs:

    - -
    CommentsChannel is streaming from comments:Z2lkOi8vdHJhZGUtc2hvdy9FdmVudC8x
    -
    - -

    I then broadcast to that stream:

    - -
    ActionCable.server.broadcast ""comments:Z2lkOi8vdHJhZGUtc2hvdy9FdmVudC8x"", { test: '123' }
    -
    - -

    The issue is that the received function is never called. Am I doing something wrong?

    - -

    Note: I'm using the actioncable npm package to connect from a BackboneJS application.

    -",HQ -"

    I am trying to set proxy for a request I am making using HttpClientBuilder as follows:

    - -
            CredentialsProvider credsProvider = new BasicCredentialsProvider();
    -        UsernamePasswordCredentials usernamePasswordCredentials = new UsernamePasswordCredentials(proxyUser, proxyPassword);
    -        credsProvider.setCredentials(new AuthScope(proxyHost, proxyPort), usernamePasswordCredentials);
    -
    -        builder.useSystemProperties();
    -        builder.setProxy(new HttpHost(proxyHost, proxyPort));
    -        builder.setDefaultCredentialsProvider(credsProvider);
    -        builder.setProxyAuthenticationStrategy(new ProxyAuthenticationStrategy());
    -
    - -

    where builder is:

    - -
        HttpClientBuilder builder = HttpClientBuilder.create();
    -
    - -

    However, I get this exception when I execute this request:

    - -
    java.lang.RuntimeException: org.apache.http.conn.UnsupportedSchemeException: http protocol is not supported
    -Caused by: org.apache.http.conn.UnsupportedSchemeException: http protocol is not supported
    -        at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:108) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.conn.BasicHttpClientConnectionManager.connect(BasicHttpClientConnectionManager.java:338) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:388) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:236) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:184) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:88) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:110) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:184) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:107) ~[httpclient-4.5.1.jar:4.5.1]
    -        at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:55) ~[httpclient-4.5.1.jar:4.5.1]
    -
    - -

    (exception shortened for brevity)

    - -

    Since this is an HTTP proxy, I don't want to change the scheme to HTTPS, which anyways won't work. How do I get this working?

    -",HQ -"I want to make a button and when I click on it lunch a html page. How can I do it. -Here is the incomplete example:` -` - - -Thanks for all.",LQ -"

    Nginx supports allow and deny syntax to restrict IPs, e.g. allow 192.168.1.1;. But if traffic goes through a reverse proxy, the IP will refer to the proxy's IP. So how can it be configured to whitelist a specific origin IP and deny all other incoming requests?

    -",HQ -"

    I'm trying to link my iPhone simulator project and I'm getting the following error at link time:

    - -
    (null): error: cannot parse the debug map for ""/Users/admin/Library/Developer/Xcode/DerivedData/TrainTracks-agvvryrtufplkxecblncwedcelck/Build/Products/Debug-iphonesimulator/TrainTracks.app/TrainTracks"": Is a directory
    -
    - -

    Here's the linker output:

    - -
    GenerateDSYMFile /Users/admin/Library/Developer/Xcode/DerivedData/TrainTracks-agvvryrtufplkxecblncwedcelck/Build/Products/Debug-iphonesimulator/TrainTracks.app.dSYM /Users/admin/Library/Developer/Xcode/DerivedData/TrainTracks-agvvryrtufplkxecblncwedcelck/Build/Products/Debug-iphonesimulator/TrainTracks.app/TrainTracks
    -    cd /Work/TrainTracks/TrainTracks
    -    export PATH=""/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin""
    -    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/Library/Developer/Xcode/DerivedData/TrainTracks-agvvryrtufplkxecblncwedcelck/Build/Products/Debug-iphonesimulator/TrainTracks.app/TrainTracks -o /Users/admin/Library/Developer/Xcode/DerivedData/TrainTracks-agvvryrtufplkxecblncwedcelck/Build/Products/Debug-iphonesimulator/TrainTracks.app.dSYM
    -
    -error: cannot parse the debug map for ""/Users/admin/Library/Developer/Xcode/DerivedData/TrainTracks-agvvryrtufplkxecblncwedcelck/Build/Products/Debug-iphonesimulator/TrainTracks.app/TrainTracks"": Is a directory
    -
    - -

    What would cause this problem?

    - -

    I started off with a Game template (Xcode 7.2.1) and deleted the main story board and AppDelegate.* files since this is an SDL cross-platform project.

    -",HQ -"Write a computer program that prompts the user for a number, creates an array for that number of random integers, and then uses the bubble sort to order the array. The program should print out the array prior to the call to the sorting algorithm and afterwards. - -I have most of the buble sort working, it is just the implementation of the random integers and user input for the size of the array that I can't seem to figure out. - - - import java.util.*; - import java.lang.*; - import java.io.*; - import java.util.Random; - - class Test - { - public static void main (String[] args) throws java.lang.Exception - { - int n, c, d, swap; - Scanner in = new Scanner(System.in); - Random r = new Random(); - - System.out.println(""enter number of elements to sort""); - n = r.nextInt(); - - int array[] = new int[n]; - - for (c = 0; c < n; c++) - array[c] = r.nextInt(); - - for (c = 0; c < ( n - 1 ); c++) { - for (d = 0; d < n - c - 1; d++) { - if (array[d] > array[d+1]) { - swap = array[d]; - array[d] = array[d+1]; - array[d+1] = swap; - } - } - } - - System.out.println(""Sorted array :""); - - for (c = 0; c < n; c++) - System.out.println(array[c]); - } - }",LQ -"

    I've got the following html:

    - -
    <ul class=""menu"">
    -  <li><a>list item 1</a></li>
    -  <li><a>list item 2</a></li>
    -  ...
    -  <li><a>list item 5</a></li>
    -</ul>
    -
    - -

    I want to apply a border to all the <a> elements except the last one.

    - -

    I've been trying this:

    - -
    .menu a {   
    -  border-right: 1px dotted #ccc;
    -}
    -.menu a:last-of-type {
    -  border-right: none;
    -}
    -
    - -

    but I end up with a border on none of the elements, I guess because the <a> in each case is the last of type.

    - -

    How can I do this? I'd prefer to use only CSS if possible, and I'd like IE9 compatibility if possible.

    -",HQ -"myApp.controller(""myctrl"", function($scope) { - - $scope.fullname = [ - { fname: 'Mohil', age: '25', city: 'San Jose', zip:'95112' }, - { fname: 'Darshit', age: '25', city: 'San Jose', zip:'95112'}, - { fname: 'Suchita', age: '25', city: 'Santa Clara', zip:'95182'}",LQ -"Newb question here. I need to search through a list of files that all end in .feature and then look for certain words in each file (POST, GET, PUT, and DELETE) so I can later update each file. I have been able to isolate each .feature file but I can't seem to figure out yet how to find each file that has the above words. - - featureLocation = puts Dir.glob ""**/*.feature"" # show all feature files - puts featureLocation - -I used the above to show the feature files. - -I tried numerous ways to iterate through each file to find the words but no luck yet. Total newb here! - -Thanks",LQ -"I am trying to store the highest count to a variable. I seem to show the right counts when I loop through my array but the assignment to the high count variable always seems to be the count of the last item checked in the array. - def calculate_word_frequency(content, line_number) - looper = 0 - wordCounter = """" - #CREATE AN ARRAY FROM EACH LINE - myArray = content.split - #LOOP THROUGH ARRAY COUNTING INSTANCES OF WORDS - while looper < myArray.length - p myArray[looper] - wordCounter = myArray[looper] - puts myArray.count(wordCounter) - if highest_wf_count < myArray.count - highest_wf_count = myArray.count - end - looper +=1 - end - puts highest_wf_count - end - -Any help would be appreciated",LQ -"

    In python, I know how to remove items from a list.

    - -
    item_list = ['item', 5, 'foo', 3.14, True]
    -item_list.remove('item')
    -item_list.remove(5)
    -
    - -

    This above code removes the values 5 and 'item' from item_list. -But when there is a lot of stuff to remove, I have to write many lines of

    - -
    item_list.remove(""something_to_remove"")
    -
    - -

    If I know the index of what I am removing, I use:

    - -
    del item_list[x]
    -
    - -

    where x is the index of the item I want to remove.

    - -

    If I know the index of all of the numbers that I want to remove, I'll use some sort of loop to del the items at the indices.

    - -

    But what if I don't know the indices of the items I want to remove?

    - -

    I tried item_list.remove('item', 'foo'), but I got an error saying that remove only takes one argument.

    - -

    Is there a way to remove multiple items from a list in a single statement?

    - -

    P.S. I've used del and remove. Can someone explain the difference between these two, or are they the same?

    - -

    Thanks

    -",HQ -"

    In Java, one can use the escape sequence \0 to represent the Null character

    - -

    \0 and \0000 are not valid escape sequences in Kotlin, so I've been using a static java char and accessing that from Kotlin.

    - -
    public class StringUtils{
    -  public static char escapeChar = '\0';
    -}
    -
    - -

    Is there a Null character literal, or a better way of doing this in Kotlin?

    -",HQ -"

    I have a collection of files that I selected in the SelectManyFiles function and I want to run multiple private subs on each Drawing in the collection function. Here's my code:

    - -
    Sub Main()
    -
    -Dim Drawing As Object
    -Dim Drawings As Collection
    -Set Drawings = SelectManyFiles()
    -
    -For Each Drawing In Drawings
    -    'Call multiple private subs to run on each drawing
    -Next Drawing
    -End Sub
    -
    - -

    I think there's something wrong with the loop but not sure exactly! Any help is appreciated.

    -",HQ -"

    I have installed Kubernetes using contrib/ansible scripts. -When I run cluster-info:

    - -
    [osboxes@kube-master-def ~]$ kubectl cluster-info
    -Kubernetes master is running at http://localhost:8080
    -Elasticsearch is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/elasticsearch-logging
    -Heapster is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/heapster
    -Kibana is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/kibana-logging
    -KubeDNS is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/kube-dns
    -kubedash is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/kubedash
    -Grafana is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/monitoring-grafana
    -InfluxDB is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/monitoring-influxdb
    -
    - -

    The cluster is exposed on localhost with insecure port, and exposed on secure port 443 via ssl

    - -

    kube 18103 1 0 12:20 ? 00:02:57 /usr/bin/kube-controller-manager --logtostderr=true --v=0 --master=https://10.57.50.161:443 -- kubeconfig=/etc/kubernetes/controller-manager.kubeconfig --service-account-private-key-file=/etc/kubernetes/certs/server.key --root-ca-file=/etc/kubernetes/certs/ca.crt -kube 18217 1 0 12:20 ? 00:00:15 /usr/bin/kube-scheduler --logtostderr=true --v=0 --master=https://10.57.50.161:443 --kubeconfig=/etc/kubernetes/scheduler.kubeconfig -root 27094 1 0 12:21 ? 00:00:00 /bin/bash /usr/libexec/kubernetes/kube-addons.sh -kube 27300 1 1 12:21 ? 00:05:36 /usr/bin/kube-apiserver --logtostderr=true --v=0 --etcd-servers=http://10.57.50.161:2379 --insecure-bind-address=127.0.0.1 --secure-port=443 --allow-privileged=true --service-cluster-ip-range=10.254.0.0/16 --admission-control=NamespaceLifecycle,NamespaceExists,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota --tls-cert-file=/etc/kubernetes/certs/server.crt --tls-private-key-file=/etc/kubernetes/certs/server.key --client-ca-file=/etc/kubernetes/certs/ca.crt --token-auth-file=/etc/kubernetes/tokens/known_tokens.csv --service-account-key-file=/etc/kubernetes/certs/server.crt -

    - -

    I have copied the certificates from kube-master machine to my local machine, I have installed the ca root certificate. The chrome/safari browsers are accepting the ca root certificate. -When I'm trying to access the https://10.57.50.161/ui -I'm getting the 'Unauthorized'

    - -

    How can I access the kubernetes ui?

    -",HQ -"

    When you setup an Auto Scaling groups in AWS EC2 Min and Max bounds seem to make sense:

    - -
      -
    • The minimum number of instances to scale down to based on policies
    • -
    • The maximum number of instances to scale up to based on policies
    • -
    - -

    However, I've never been able to wrap my head around what the heck Desired is intended to affect.

    - -

    I've always just set Desired equal to Min, because generally, I want to pay Amazon the minimum tithe possible, and unless you need an instance to handle load it should be at the Min number of instances.

    - -

    I know if you use ElasticBeanstalk and set a Min to 1 and Max to 2 it sets a Desired to 2 (of course!)--you can't choose a value for Desired.

    - -

    What would be the use case for a different Desired number of instances and how does it differ? When you expect AWS to scale lower than your Desired if desired is larger than Min?

    -",HQ -"

    I have a pandas dataframe with several rows that are near duplicates of each other, except for one value. My goal is to merge or ""coalesce"" these rows into a single row, without summing the numerical values.

    - -

    Here is an example of what I'm working with:

    - -
    Name   Sid   Use_Case  Revenue
    -A      xx01  Voice     $10.00
    -A      xx01  SMS       $10.00
    -B      xx02  Voice     $5.00
    -C      xx03  Voice     $15.00
    -C      xx03  SMS       $15.00
    -C      xx03  Video     $15.00
    -
    - -

    And here is what I would like:

    - -
    Name   Sid   Use_Case            Revenue
    -A      xx01  Voice, SMS          $10.00
    -B      xx02  Voice               $5.00
    -C      xx03  Voice, SMS, Video   $15.00
    -
    - -

    The reason I don't want to sum the ""Revenue"" column is because my table is the result of doing a pivot over several time periods where ""Revenue"" simply ends up getting listed multiple times instead of having a different value per ""Use_Case"".

    - -

    What would be the best way to tackle this issue? I've looked into the groupby() function but I still don't understand it very well.

    -",HQ -"

    I have what seems like it should be a simple question, but I can't find an answer to it anywhere. Given the following code:

    - -
        using System.Net.Http;
    -    ...
    -    StringContent sc = New StringContent(""Hello!"");
    -    string myContent = ???;
    -
    - -

    What do I need to replace the ??? with in order to read the string value from sc, so that myContent = ""Hello!""?

    - -

    .ToString just returns System.String, as does .ReadAsStringAsync. How do I read out what I've written in?

    -",HQ -"

    I have created a ReportProject with Visual Studio data tools 2015. When I create a report.rdl file using the report wizard, the rdl file has schema for 2016. My reporting server is of version 12.0.4213.0.

    - -

    How can I create a report.rdl which is compatible with my reporting server. I tried changing the TargetServerVersion by right clicking the project -> properties and changing the targetserverversion to ""Sql server 2008 R2, 2012 or 2014"". But this doesn't work either.

    -",HQ -"how to remove the duplicated entry from this array code: - - Iterator iterHttp = httpSessions.iterator(); - while(iterHttp.hasNext()) - { - IHTTPStreamerSession httpSession = iterHttp.next(); - if (httpSession == null) - continue; - - ret.append(""""); - ret.append(""""+httpSession.getIpAddress()+""""); - ret.append(""""+httpSession.getTimeRunningSeconds()+""""); - - ret.append(""""); - } - -I need to generate only 1 entry for each < IpAddress >",LQ -"#I'm trying to sort a list of objects based on their Ids. - -When I create a funtion that compares the Id of to objects in a list, It gets the error: Severity Code Description Project File Line Suppression State -Error C3867 'BobControl::compareId': non-standard syntax; use '&' to create a pointer to member list.sort c:\users\wil\documents\visual studio 2015\projects\list.sort\list.sort\source.cpp 32 - -This code was used to test the issue. - - #include - #include - #include - using namespace std; - - - - class Bob { - public: - Bob::Bob(int id) { - _id = id; - } - int getId() const { return _id; } - - - private: - int _id = 0; - - }; - - - - //testing lists - class BobControl { - public: - - bool compareId(const Bob& first, const Bob& second) - { - return (first.getId() < second.getId()); - } - void testCompar() { - bobs.sort(compareId); - } - - void controlBobs() { - list::iterator lit; - bobs.push_back(Bob(0)); - bobs.push_back(Bob(1)); - bobs.push_back(Bob(5)); - bobs.push_back(Bob(3)); - - testCompar(); - - - for (lit = bobs.begin(); lit != bobs.end(); lit++) { - cout << (*lit).getId() << endl; - } - } - private: - list bobs; - - - }; - - - - - - - - - int main() { - - - - - BobControl bobc; - - bobc.controlBobs(); - - - - - system(""PAUSE""); - - - - return 0; - }",LQ -"

    I was trying to clone a project called IdentitySample but I wanted to rename it to RecreationalServicesTicketingSystem. I've followed a few guides as to how to rename everything but it seems the application is still picking up -IdentitySample.Controllers.HomeController . I've tried using the find function to look through codes to see if IdentitySample was still in our application but I've found none.

    - -

    Can give me a few pointers as too where I might have missed renaming the solution?

    - -
    -

    Multiple types were found that match the controller named 'Home'. This - can happen if the route that services this request - ('{controller}/{action}/{id}') does not specify namespaces to search - for a controller that matches the request. If this is the case, - register this route by calling an overload of the 'MapRoute' method - that takes a 'namespaces' parameter.

    - -

    The request for 'Home' has found the following matching controllers: - RecreationalServicesTicketingSystem.Controllers.HomeController - IdentitySample.Controllers.HomeController

    -
    - -

    - -

    HomeController.cs

    - -
    using System;
    -using System.Collections.Generic;
    -using System.Data;
    -using System.Data.Entity;
    -using System.Linq;
    -using System.Threading.Tasks;
    -using System.Net;
    -using System.Web;
    -using System.Web.Mvc;
    -using RecreationalServicesTicketingSystem.Models;
    -
    -namespace RecreationalServicesTicketingSystem.Controllers
    -{
    -    public class HomeController : Controller
    -    {
    -        public ActionResult Index()
    -        {
    -            return View();
    -        }
    -
    -        [Authorize]
    -        public ActionResult About()
    -        {
    -            ViewBag.Message = ""Your app description page."";
    -
    -            return View();
    -        }
    -
    -        public ActionResult Contact()
    -        {
    -            ViewBag.Message = ""Your contact page."";
    -
    -            return View();
    -        }
    -    }
    -}
    -
    - -

    View\Home\Index.cshtml

    - -
    @{
    -    ViewBag.Title = ""Home Page"";
    -}
    -
    -<div class=""jumbotron"">
    -    <h1>ASP.NET Identity</h1>
    -    <p class=""lead"">ASP.NET Identity is the membership system for ASP.NET apps. Following are the features of ASP.NET Identity in this sample application.</p>
    -    <p><a href=""http://www.asp.net/identity"" class=""btn btn-primary btn-large"">Learn more &raquo;</a></p>
    -</div>
    -
    -<div class=""row"">
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Initialize ASP.NET Identity</dt>
    -            <dd>
    -                You can initialize ASP.NET Identity when the application starts. Since ASP.NET Identity is Entity Framework based in this sample,
    -                you can create DatabaseInitializer which is configured to get called each time the app starts.
    -                <strong>Please look in App_Start\IdentityConfig.cs</strong>
    -                This code shows the following
    -                <ul>
    -                    <li>When should the Initializer run and when should the database be created</li>
    -                    <li>Create Admin user</li>
    -                    <li>Create Admin role</li>
    -                    <li>Add Admin user to Admin role</li>
    -                </ul>
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Add profile data for the user</dt>
    -            <dd>
    -                <a href=""http://blogs.msdn.com/b/webdev/archive/2013/10/16/customizing-profile-information-in-asp-net-identity-in-vs-2013-templates.aspx"">Please follow this tutorial.</a>
    -
    -                <ul>
    -                    <li>Add profile information in the Users Table</li>
    -                    <li>Look in Models\IdentityModels.cs for examples</li>
    -                </ul>
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Validation</dt>
    -            <dd>
    -                When you create a User using a username or password, the Identity system performs validation on the username and password, and the passwords are hashed before they are
    -                stored in the database. You can customize the validation by changing some of the properties of the validators such as Turn alphanumeric on/off, set minimum password length
    -                or you can write your own custom validators and register them with the UserManager.
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Register a user and login</dt>
    -            <dd>
    -                Click @Html.ActionLink(""Register"", ""Register"", ""Account"") and see the code in AccountController.cs and Register Action.
    -                Click @Html.ActionLink(""Log in"", ""Login"", ""Account"") and see the code in AccountController.cs and Login Action.
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Social Logins</dt>
    -            <dd>
    -                You can the support so that users can login using their Facebook, Google, Twitter, Microsoft Account and more.
    -            </dd>
    -            <dd>
    -                <ul>
    -                    <li>
    -                        <a href=""http://www.windowsazure.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/"">Add Social Logins</a>
    -                    </li>
    -                    <li>
    -                        <a href=""http://blogs.msdn.com/b/webdev/archive/2013/10/16/get-more-information-from-social-providers-used-in-the-vs-2013-project-templates.aspx"">Get more data about the user when they login suing Facebook</a>
    -                    </li>
    -                </ul>
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Basic User Management</dt>
    -            <dd>
    -                Do Create, Update, List and Delete Users.
    -                Assign a Role to a User.
    -                Only Users In Role Admin can access this page. This uses the [Authorize(Roles = ""Admin"")] on the UserAdmin controller.
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Basic Role Management</dt>
    -            <dd>
    -                Do Create, Update, List and Delete Roles.
    -                Only Users In Role Admin can access this page. This authorization is doen by using the [Authorize(Roles = ""Admin"")] on the RolesAdmin controller.
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Account Confirmation</dt>
    -            <dd>
    -                When you register a new account, you will be sent an email confirmation.
    -                You can use an email service such as <a href=""http://www.windowsazure.com/en-us/documentation/articles/sendgrid-dotnet-how-to-send-email/"">SendGrid</a> which integrate nicely with Windows Azure and requires no configuration or
    -                set up an SMTP server to send email.
    -                You can send email using the EmailService which is registered in App_Start\IdentityConfig.cs
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Two-Factor Authentication</dt>
    -            <dd>
    -                This sample shows how you can use Two-Factor authentication. This sample has a SMS and email service registered where you can send SMS or email for sending the security code.
    -                You can add more two-factor authentication factors such as QR codes and plug them into ASP.NET Identity.
    -                <ul>
    -                    <li>
    -                        You can use a SMS using <a href=""https://www.twilio.com/"">Twilio</a> or use any means of sending SMS. Please <a href=""https://www.twilio.com/docs/quickstart/csharp/sms/sending-via-rest"">read</a> for more details on using Twilio.
    -                        You can send SMS using the SmsService which is registered in App_Start\IdentityConfig.cs
    -                    </li>
    -                    <li>
    -                        You can use an email service such as <a href=""http://www.windowsazure.com/en-us/documentation/articles/sendgrid-dotnet-how-to-send-email/"">SendGrid</a> or
    -                        set up an SMTP server to send email.
    -                        You can send email using the EmailService which is registered in App_Start\IdentityConfig.cs
    -                    </li>
    -
    -                    <li>
    -                        When you login, you can add a phone number by clicking the Manage page.
    -                    </li>
    -                    <li>
    -                        Once you add a phone number and have the Phone service hooked to send a SMS, you will get a code through SMS to confirm your phone number.
    -                    </li>
    -                    <li>
    -                        In the Manage page, you can turn on Two-Factor authentication.
    -                    </li>
    -                    <li>
    -                        When you logout and login, after you enter the username and password, you will get an option of how to get the security code to use for two-factor authentication.
    -                    </li>
    -                    <li>
    -                        You can copy the code from your SMS or email and enter in the form to login.
    -                    </li>
    -                    <li>
    -                        The sample also shows how to protect against Brute force attacks against two-factor codes. When you enter a code incorrectly for 5 times then you will be
    -                        lockedout for 5 min before you can enter a new code. These settings can be configured in App_Start\IdentityConfig.cs by setting  DefaultAccountLockoutTimeSpan and MaxFailedAccessAttemptsBeforeLockout on the UserManager.
    -                    </li>
    -                    <li>
    -                        If the machine you are browsing this website is your own machine, you can choose to check the ""Remember Me"" option after you enter the code.
    -                        This option will remember you forever on this machine and will not ask you for the two-factor authentication, the next time when you login to the website.
    -                        You can change your ""Remember Me"" settings for two-factor authentication in the Manage page.
    -                    </li>
    -                </ul>
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Account Lockout</dt>
    -            <dd>
    -                Provide a way to Lockout out the user if the user enters their password or two-factor codes incorrectly.
    -                The number of invalid attempts and the timespan for the users are locked out can be configured.
    -                A developer can optionally turn off Account Lockout for certain user accounts should they need to.
    -            </dd>
    -            <ul>
    -                <li>Account LockOut settings can be configured in the UserManager in IdentityConfig.cs</li>
    -            </ul>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Security Token provider</dt>
    -            <dd>
    -                Support a way to regenerate the Security Token for the user in cases when the User changes there password or any other security related information such as removing an associated login(such as Facebook, Google, Microsoft Account etc).
    -                This is needed to ensure that any tokens generated with the old password are invalidated. In the sample project, if you change the users password then a new token is generated for the user and any previous tokens are invalidated.
    -                This feature provides an extra layer of security to your application since when you change your password, you will be logged out from everywhere (all other browsers) where you have logged into this application.
    -            </dd>
    -            <dd>
    -                <ul>
    -                    <li>The provider is registered when you add CookieAuthentication in StartupAuth to your application.</li>
    -                </ul>
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Password Reset</dt>
    -            <dd>
    -                Allows the user to reset their passwords if they have forgotten their password. In this sample users need to confirm their email before they can reset their passwords.
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Custom Storage providers</dt>
    -            <dd>
    -                You can extend ASP.NET Identity to write your own custom storage provider for storing the ASP.NET Identity system and user data
    -                in a persistance system of your choice such as MondoDb, RavenDb, Azure Table Storage etc.
    -            </dd>
    -            <dd>
    -                <ul>
    -                    <li>
    -                        <a href=""http://www.asp.net/identity/overview/extensibility/overview-of-custom-storage-providers-for-aspnet-identity"">
    -                            learn more on how to implement your own storage provider
    -                        </a>
    -                    </li>
    -                </ul>
    -            </dd>
    -        </dl>
    -    </div>
    -    <div class=""col-md-4"">
    -        <dl>
    -            <dt>Documentation</dt>
    -            <dd>
    -                <ul>
    -                    <li>
    -                        Tutorials: <a href=""www.asp.net/identity"">www.asp.net/identity</a>
    -                    </li>
    -                    <li>
    -                        StackOverflow: <a href=""http://stackoverflow.com/questions/tagged/asp.net-identity"">http://stackoverflow.com/questions/tagged/asp.net-identity</a>
    -                    </li>
    -                    <li>
    -                        Twitter: #identity #aspnet
    -                    </li>
    -                    <li>
    -                        <a href=""http://curah.microsoft.com/55636/aspnet-identity"">ASP.NET Identity on curah</a>
    -                    </li>
    -                    <li>
    -                        Have bugs or suggestions for ASP.NET Identity <a href=""http://aspnetidentity.codeplex.com/"">http://aspnetidentity.codeplex.com/</a>
    -                    </li>
    -                </ul>
    -            </dd>
    -        </dl>
    -    </div>
    -</div>
    -
    -",HQ -"I have multiple input text boxs all are by default read-only,So what i want is on-click on edit button remove read-only from all the text box. - -**Html :** - - - - - - - - -**Jquery :** - - $(document).ready(function(e){ - - $(document).on(""click"",""#edit"",function(e){ - // What should i do here..? - }); - }); - -",LQ -" -(@PaymentId int) -returns int -as -begin - - Declare @viewedCount int - - Select @viewedCount=Count(OtSrno) From OtTendersViewDetail - Where OTPaymentId=@PaymentId And OTPaymentId is not null - - return (@viewedCount) - -end",LQ -"Because of Problems with reading all lines of a UI5 common table and the getModel() method from table offers a model. -I thought I could use an JSONModel instead of my OModel the problem now is how to get the OModel too the Json Model. -Because JSON offers some Two Way Binding options which should be helpfull know what did I try. -I tried to read some Set and bind it to the JSONModel the problem is that i couldn't bind know the new Model two the View because it doesn't overs some set here is a snippet of my code hopefully this should be easyer too fix as the reading all table rows: - - oModel2.read(""/SEARCH_DLSet"" + filterString, null, null, false, function (oData, oResponse) { - oODataJSONModelDLSet.setData(oData); - }); - -I saw that the table row binding has found the correct length of the data that it should get but the column binding want work here is snippet of code of row binding and then the column - - /oData/results}""> - - - - - - - - -too my model doesn't show the model propertys in the debuger. -So where is my failuer and how can i fix the convert? -I could too over some screens if it is helpfull of debugging and few",LQ -"I want to create real time clock using Tkinter and time library. I have created a class but somehow i am not able to figure out my problem...can anyone help me out with this??? - -from tkinter import * - -import time - -root = Tk() - -class Clock: - def __init__(self): - self.time1 = '' - self.time2 = time.strftime('%H:%M:%S') - self.mFrame = Frame() - self.mFrame.pack(side=TOP,expand=YES,fill=X) - self.watch = Label (self.mFrame, text=self.time2, font=('times',12,'bold')) - self.watch.pack() - self.watch.after(200,self.time2) - -obj1 = Clock() -root.mainloop() - -This is my code....",LQ -"Login.php and logout.php page provided below. -How to create an session varible and once logout successful don't navigate before page. - - require( 'dbConfig.php'); - - session_start(); - $msg = """"; - if ($_SERVER['REQUEST_METHOD'] == 'POST') { - $name = $_POST[""userid""]; - - if ($name == '' ) { - $msg = ""You must enter all fields""; - } - else - { - $sql = ""SELECT * FROM user WHERE userid = '$name' ""; - $query = mysql_query($sql); - - if ($query === false) { - echo ""Could not successfully run query ($sql) from DB: "" . mysql_error(); - exit; - } - - if (mysql_num_rows($query) > 0) { - $_SESSION['userid'] = $name; - header('Location: teams.php'); - exit; - } - - $msg = ""Username do not match""; - } - } - ?> - - -After logout of the page navigating back pages.please disable solution.",LQ -"Hi guys i just want to know on how can u have a listener for this one like i know android have onRequestPermissionsResult but the thing is if i changed it from the application information and manually changed the permission from there thats where my problem lies because i dont have any callback do you guys have any idea for this one because i have a service running and if i changed the permission the activity is recreated and i need to know that the permission was disable manually then user enable it again in the application information - -http://i.stack.imgur.com/vxWKu.png ",LQ -"Need help in inserting dynamic fields and values into mysql db table in PHP. -sampe data -$data[]=array('client'=>$clientname, 'amount' => 12000,'balance'=>6000, 'term'=>6,'maturitydate'=>'2016-05-31') - -parameters passed to get the above data : branch = branchid, date =cutoffdate - -Here's the table structure where I need to insert the above data. - -Fields : branch - date - account_no - field - value -the first two fields values came from the parameters passed, account_no comes from the data after the querying the db using the passed param, for the field value should come from the array index and value is the index value. Been looking around the web for some possible solutions but I cannot find one. -Any help will be highly appreciated. thank you",LQ -"this combination program without result, can anyone help me ? - `#include - #include - using namespace std; - void comb(char *inp) - { - int i, j, k; - int len = strlen(inp); - - for (i = 0; i < len - 2; i++) - { - for (j = i + 1; j < len - 1; j++) - { - for (k = j + 1; k < len; k++) - printf(""%c%c%c\n"", inp[i], inp[j], inp[k]); - } - } - } - int main () - { - string str,z; - std::cout<<""enter your string""; - cin>>str; - z=comb(str); - return 0; - }` - - ",LQ -"Can anyone help to clean below JSON - -""1-Transaction Transfer Info Segment-F2"":{""Selling Store Number"":""01818"",""Transaction Date"":""2014-09-08"",""Transaction Time"":""05:45:49"",""Transaction Service Type"":""I"",""IP Time Id"":""118180546186""} - -I want to clean this json as below - -1-Transaction Transfer Info Segment-F2 =>1_Transaction_Transfer_Info_Segment_F2 -Selling Store Number => Selling_Store_Number,Transaction Service Type => Transaction_Servic_Type,IP Time Id => IP_Time_Id",LQ -"Write a program that reads 10 numbers from the keyboard and store them in memory. Then it prints the numbers in reverse order and print their sum. In addition to indicate a variable which takes as argument a letter of the alphabet and print the ascii number.Can you help ? - -.data -pin:.space 40 -.text -.globl main -main: addi $20, $0, 10 - addi $17, $0, 0 - addi $6, $0, 0 -loop: addi $2, $0, 5 - syscall - add $7, $0, $2 - sw $7, pin($6) - addi $17, $17, 1 - addi $6, $6, 4 - bne $20, $17, loop - addi $17, $0, 0 - addi $6, $0, 0 -loop1:lw $8,pin($6) - addi $2,$0,1 - add $4,$8,$0 - syscall - addi $17,$17,1 - addi $6,$6,4 - bne $17,$20,loop1 - j main",LQ -"**Summery :** - -I want to fetch all Play store search result, problems is that, Apps that show after scroll that are not show in PHP file_get_content(). - -**Detail:** - -I'm trying to make a php based play store scraper. - -I check all stackoverflow answers and githup example, but they all are old, and not working,, Because previously Play store use ""start"" parameter for more apps/Next page.. Now play store show more apps on scroll - - -So after so many research, i decide to make my own scraper, - -**What i am doing:** - -file_get_contents() : to fetch the query url from play store - - //i try with PHP: - $result = file_get_content( ""https://play.google.com/store/search?q=football"" ); - // its only return 20 apps result, i want to get 250 result,.. - -Play store shows only 20 apps on the query result, more apps are shown ONLY on scrolling. - - -I try to get google ajax URL from ""network tab"", But google use token parameter for next scroll page... - -**Question:** - -**How i get scroll content with PHP.** - -**How i get play store all search result.** - -**How i fetch page content with PHP that show with js.**",LQ -"I had problem with this particular code. The conditions are: - -~When `$rows['Machine#']` is not in array, push in `$machineArr` array and unset the `$totalTimeArr` array. - -~When `$rows['Machine#']` is in the array, push `$rows['TotalTime']` into `$totalTimeArr` array for addition. - -~`$graphArr[]` should be updated (for `array_sum($totalTimeArr)`) first before push into array. - -I now have problems regarding the third condition. It does not calculate first, instead it pushes the first data input. I have tried using `do while` loop, putting `$graphArr[] = '[""'.$rows['Machine#'].'"",'.array_sum($totalTimeArr).']';` outside the `if else` loop, but this seems to be the closest I can get to what its supposed to be. Other codes doesnt seem to have problems and work well. Appreciate your recommendations/suggestions/assistance. Thanks. Below is the code. - - - - - while ($rows = mysqli_fetch_array($conn)) - { - if(!(in_array($rows['Machine#'], $machineArr))) - { - unset($totalTimeArr); - $machineArr[] = $rows['Machine#']; - $totalTimeArr[] = $rows['TotalTime']; - $graphArr[] = '[""'.$rows['Machine#'].'"",'.array_sum($totalTimeArr).']'; - } - else if(in_array($rows['Machine#'], $machineArr)) - { - $totalTimeArr[] = $rows['TotalTime']; - } - }",LQ -"I have following array: -
    -
    -array(174) {
    -  [0]=>
    -  string(5) ""3.0.3""
    -  [1]=>
    -  string(5) ""3.0.2""
    -  [2]=>
    -  string(5) ""3.0.1""
    -  [3]=>
    -  string(5) ""3.0.0""
    -  [9]=>
    -  string(5) ""2.9.5""
    -  [10]=>
    -  string(5) ""2.9.4""
    -  [11]=>
    -  string(5) ""2.9.3""
    -  [12]=>
    -  string(5) ""2.9.2""
    -  [13]=>
    -  string(5) ""2.9.1""
    -  [14]=>
    -  string(5) ""2.9.0""
    -  [18]=>
    -  string(6) ""2.8.11""
    -  [19]=>
    -  string(6) ""2.8.10""
    -  [20]=>
    -  string(5) ""2.8.9""
    -}
    -
    -
    -I need to find the highest 3rd number for unique pair of first two numbers x.x. With this example the expected result must be 3.0.3, 2.9.5, 2.8.11. -",LQ -"The following is my code I wanted to add a class to a div when a certain condition is true. Tried jquery also but didn't worked. My code is as follows - - $('.addressStatus').each(function(index, value){ - var el = 0; - if($(this).data('status') == true){ - - el = $(this).data('param1'); - console.log(el); - var id = document.getElementById('statusID'+el); - id.classList.add('inactiveAddrsColor'); - // id.className += id.className ? ' inactiveAddrsColor' : 'inactiveAddrsColor'; - - //element.classList.add('inactiveAddrsColor'); - // $('statusID'+el).addClass('inactiveAddrsColor'); - } - });",LQ -"Please help me to find a Sql query/ procedure for below request. - -I am having column A which is having below values in each row - -COLUMN A -My toy is in ('111000','1112220') -My toy is this -My toy is in ('111000') -My toy is this -My toy is in ('111002') - -Now i need a query to display the column A with value containing only numbers, If the row is not having any number then it should be left as empty like below - -COLUMN A -111000|1112220 - -111000 - -111002 - -if it is a store procedure/ a query any thing is fine for me. Please help me on this",LQ -"`if($_SESSION['auth'] != 2 || $_SESSION['auth'] != 3){ - header(""location:../login/login.php""); -}` - -what am i doing wrong, ist keep sending me back, - -ist only when session is 1 or not set, it should send me back - -best regrads kevin",LQ -"I want to run the loop for three times to blink the led 3 times in arduino programme. How to run the loop for 3 times and exit from the loop.how to use return statement in loop? - - - int LedPin = 13; - int Loops = 1; - void setup() { - - pinMode(LedPin, OUTPUT); - } - - void loop() { - digitalWrite(13, LOW); - Loops = Loops + 1; - if ( Loops < 3 ) - - { - digitalWrite(13, HIGH); - delay(2000); - } - - else { - digitalWrite(13, LOW); - exit(0); - } - }",LQ -"So, I copied this frequency table from R in MS Word: - - I A I B II A II B III A III A III B IV - 128 73 61 59 1 166 86 463 - -How can I make it look nicer in a MS Word document? -No Latex please, it should be written in an MS document. -Thanks in advance!",LQ -"I have maybe a real simple problem, but i need to know how to do this. -My ambitions: - - - - - - var test_obj = { - 'test' : 't', - 'test2' : 't2' - } - /* - when i log a object it often gives me somthing like this: - [object Object] - - but if i want to take a look into the object, i want to see (for test_obj): - { 'test' : 't', 'test2' : 't2' } - - */ - - - -So how can I log an ibject that it shows me what is in it ? -",LQ -"shopping_list = [""banana"", ""orange"", ""apple""] - -stock = { - ""banana"": 6, - ""apple"": 0, - ""orange"": 32, - ""pear"": 15 -} - -prices = { - ""banana"": 4, - ""apple"": 2, - ""orange"": 1.5, - ""pear"": 3 -} -def compute_bill(food): - total = 0 - for item in food: - total += item - return total -for key in prices: - print compute_bill(key)",LQ -"On this code there's no way to do it polymorphic: - - data NumericExpr e = Var e | Const e | Times [e] | Div e e deriving (Show,Read) - - readCommand:: a -> b - readCommand entrada = Var 3 - - -it gives me a big error which I can't copy: -couldn't match expected type b with actual type NumericExpr e0 b is a rigid type variable bound by the type signature for readcommand :: a -> b -",LQ -"i need to insert rows from another query into a single row that is then inserted into another table. it works if there is only one row returned; however, if the row count is greater than 1 it fails. i can't figure out the for loop - indicated with the --** section. - - - declare @cn as int, @i as int - set @cn = 569 - declare @dM table(dM varchar(max)) - declare @rowNum table (rowNum int) - set @i = 0 - - insert @rowNum - exec ('select count(*) from table1 where c = ' + @cn) - --select rowNum from @rowNum as NumberRows --return 2 rows - - if (select rowNum from @rowNum as NumberRows) > 1 - begin - insert @dM - exec ('select d.d + '' '' + o.o + '' '' + d.v as rtM from table where c = ' + @countNumber) - --returns 2 rows as rtM so there will be two inserted rows - --going now okay - --going later okay - - --** - --while (@i <= (select count(*) from @rowNum)) --didn't work - --for each row returned in rtM in need to include as part of the overall insert - insert into table2 (cn, rtM, idate) - select - @cn - ,'Message is: ' + (select dM from @dM) + ' - the message.' - cz.idate + ' ' + qw.txt - from table3 as cz - inner join table4 as qw on cz.id = qw.id - where cz.cn = @cn - --set @i = @i + 1 - --** - end - else - begin - --there is only 1 row returned from rtM so there will be a single inserted row - insert @dM - exec ('select d.d + '' '' + o.o + '' '' + d.v as rtM from table where c = ' + @countNumber) - insert into table2 (cn, rtM, idate) - select - @cn - ,'Message is: ' + (select dM from @dM) + ' - the message.' - cz.idate + ' ' + qw.txt - from table3 as cz - inner join table4 as qw on cz.id = qw.id - where cz.cn = @cn - end -",LQ -"This one is confusing me? - -This is what I have so far : - -SELECT DISTINCT Appointment_date_time FROM Appointment -INNER JOIN Person ON -Appointment.Person_ID = Person.Person_ID -INNER JOIN Physician ON -Physician.Physician_ID = Person.Physician_ID -HAVING COUNT(*) < 1",LQ -"I want to create a pointer to array of pointers... but following code isn't working.. - - -int **p; - -p=new int[row_size]; - -for(i=0;i= 12;",LQ -"I have to insert in to 5 tables with multiple fields with single insert statement of mysql and how to do it in JDBC. -Iam unable to write in single statement, please provide me the syntax for inserting into multiple tables. -",LQ -"I compressed the ""abc"" word into ""01100111"" using haffman coding algorithm . I built the tree . According to tree a=01, b=100 , c=111 . how to decompress this word ?",LQ -"I'm trying to update the `rank` column in the `users` table in MySQL using PHP, but when i try to change the values and press the `update` button, **only the last one** of the table rows is actually being updated. [Here][1] is an image of what the PHP table looks like on the webpage. Here is the code: - - - - - query($UpdateQuery); - } - //$sql = ""SELECT * from users""; - //$myData = mysql_query($sql, $con); - $result = $MySQLi_CON->query(""SELECT * FROM users"") - or die(mysql_error()); - echo "" - - - - - - ""; - while($record = $result->fetch_array()){ - echo ""'; - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - } - echo ""
    IDUsernameEmailRank
    ' . $record['user_id'] . '' . $record['username'] . '' . $record['email'] . '' . '' . ''; - echo '' . '
    ""; - $con->close(); - - - - [1]: http://i.stack.imgur.com/T9ESy.png",LQ -" public class TestString { - public static void main(String[] args) { - String str = ""AaaaABBBBcc&^%adfsfdCCOOkk99876 _haHA""; - String[] upStr = str.split(""[a-z0-9&^% _]""); - System.out.println(""Printout uppercase""); - - for (String outUp : upStr){ - System.out.print(outUp); - } - System.out.println(""\n"" + upStr.length); -//the ""length"" is wrong, so, where is the value comes from? -//How could we get real length? - - System.out.println(""\n Printout lowercase""); - String[] lowStr = str.split(""[A-Z0-9&^% _]""); - for (String outLow : lowStr){ - System.out.print(outLow); - } - System.out.println(""\n"" + lowStr.length); - - System.out.println(""\n non-English""); - String[] nonEng = str.split(""[A-Za-z]""); - for (String outNonEng : nonEng){ - System.out.print(outNonEng); - } - System.out.println(""\n"" + nonEng.length); - - } - -} -so my question is: -1. The value of the length is incorrect, but where is is comes from? -2. How could I get correct length of String[]?",LQ -"we have a expression tree where leaf node contain 0 or 1 as value, and all the internal nodes contain ""&"" or ""||"" as operator.now we evaluate the tree the result will be either 0 or 1. -The question is minimum no of swap of internal node required to compliment the result of original expression tree. -we can flip any internal node e.g:if it is a ""&"" we can make it ""||"" and vice versa. - -To solve this I tried the following technique but I didn't succeeded in it: -my approach was that I would check the root whether it is a ""&"" or ""||"" operator and what was the result of evaluation tree 0 or 1.depending on that we go forward.",LQ -"i am getting some data from one url and try to display in my table view,In that i have three button name which is used to sort.Here is my `button action ` method: - - - - @IBAction func sortByAZBtnPress(sender: AnyObject) - { - } - @IBAction func sortByRatingBtnPress(sender: AnyObject) - { - } - @IBAction func sortByRecentBtnPress(sender: AnyObject) - { - } - -And here is my `bussinesstype.swift` model class - - import UIKit - - class BusinessData { - - var BusinessName: String? - var Address: String? - var Rating: Float? - var ContactNumber: String? - - init(json: NSDictionary) { - self.BusinessName = json[""business_name""] as? String - self.Address = json[""location""] as? String - self.Rating = json[""__v""] as? Float - self.ContactNumber = json[""phone_no""] as? String - } - } - - -Here is my `viewcontroller.swift` - - import UIKit - - - class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { - - var isTapped:Bool? // cell tap checking bool - - var selectedIndex:NSIndexPath? - - - @IBOutlet weak var RightMenu: UIView! - - - - - - - - @IBOutlet weak var tableView: UITableView! // UITable view declaration - - - - var arrDict = [BusinessData]() // array to store the value from json - - - - - - - override func viewDidLoad() { - - - super.viewDidLoad() - // Do any additional setup after loading the view, typically from a nib. - - self.jsonParsingFromURL() // call the json method - - - - - // nib for custom cell (table view) - let nib = UINib(nibName:""customCell"", bundle: nil) - tableView.registerNib(nib, forCellReuseIdentifier: ""cell"") - - indicator = UIActivityIndicatorView(frame: CGRectMake(0, 0, 90, 90)) - indicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyle.Gray - indicator.center = self.view.center - indicator.color = UIColor .redColor() - self.view.addSubview(indicator) - - - - } - override func viewWillAppear(animated: Bool) { - NSNotificationCenter.defaultCenter().addObserver(self, selector: ""searchMethod:"", name: ""search"", object: nil); - NSNotificationCenter.defaultCenter().addObserver(self, selector: ""endSearch"", name: ""endSearch"", object: nil); - } - - - - - // web services method - func jsonParsingFromURL () - { - let url:NSURL = NSURL(string: ""http://sample url/Fes?current_location=toronto&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyIkX18"")! - - if let JSONData = NSData(contentsOfURL: url) - { - if let json = (try? NSJSONSerialization.JSONObjectWithData(JSONData, options: [])) as? NSDictionary - { - if let reposArray = json[""data""] as? [NSDictionary] - { - - for item in reposArray - { - let itemObj = item as? Dictionary - - let b_type = itemObj![""business_type""]?.valueForKey(""type"") - - - if (b_type as? String == ""Taxis"") - { - - arrDict.append(BusinessData(json: item)) - - } - } - } - - } - } - - } - - - - - // number of rows - func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int - { - return 1 - } - - // height for each cell - func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat - { - return cellSpacingHeight - } - - - - // calling each cell based on tap and users ( premium / non premium ) - func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell - { - - - - let cell:customCell = self.tableView.dequeueReusableCellWithIdentifier(""cell"") as! customCell - - cell.vendorName.text = arrDict[indexPath.section].BusinessName - cell.vendorAddress.text = arrDict[indexPath.section].Address - cell.VendorRating.rating = arrDict[indexPath.section].Rating! - - return cell - } - - - - // MARK: - // MARK: Sort Method - - @IBAction func sortByRevBtnPress(sender: AnyObject) - { - - self.indicator.startAnimating() - self.indicator.hidden = false - RightMenu.hidden = true - - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (Int64)(1 * NSEC_PER_SEC)), dispatch_get_main_queue()){ - self.indicator.stopAnimating() - self.indicator.hidden = true - - - }; - self.tableView.reloadData() - - - } - - - @IBAction func sortByAZBtnPress(sender: AnyObject) - { - RightMenu.hidden = true - - } - - @IBAction func sortByRatingBtnPress(sender: AnyObject) - { - - RightMenu.hidden = true - - - - - } - - - @IBAction func sortByRecentBtnPress(sender: AnyObject) - { - - RightMenu.hidden = true - - } - - - - } - - -please help me out, how can i sort the value in my table view `business_name`",LQ -"I am not good at creating regular expression.can any one help me with that.I need to extract Date Time from Following string. This Date time format remain constant and not going change.Can any one help me with that - -Composed by super, mtzshm to super, mtzshm on 31-Mar-2016 02:24 with Normal priority and Message Type General Message - Composed by super, mtzshm to (Group)My Favorites on 31-Mar-2016 02:24 with Normal priority and Message Type General Message - Attached by super, mtzshm on 31-Mar-2016 02:24 - Patient: MTzPatient, 89107 - Chart: 31-Mar-2016 02:23 - Visit: 31-Mar-2016 17:22 - Displayed by super, mtzshm on 31-Mar-2016 02:24 - Displayed by super, mtzshm on 31-Mar-2016 03:14",LQ -"How can I save the data into a new table? - - - - - - SELECT - produse.DENUMIRE, - clase.CLASA, - furnizori.NUME_J, - furnizori.NUME_F, - stoc.CANTITATE, - produse.PRET, - produse.VALUTA, - stare.STARE - FROM clase - JOIN produse ON produse.ID_CLASA = clase.ID - JOIN furnizori ON produse.ID_FURNIZOR = furnizori.ID - JOIN stoc ON stoc.ID_PRODUS = produse.ID - JOIN stare ON stare.ID = stoc.ID_STARE; - - - -Thank you very much!",LQ -"I have a numeric up/down control, essentially a normal textbox with up down buttons next to it that stores its value as a double. I have been running into an issue when cycling up and down, when the value is (or should be) 0 or -.1, the text box displays ""1.38777878078145E-16"" and ""-0.0999999999999999"" respectively. - -I get that the floating point precision of double means that values get truncated and absolute precision for decimals longer than the doubles precision are lost. But seeing as how .1 does not have a long decimal or need high precision, shouldn't .1 - .1 = 0? - -Right now I am just catching the string in my double to string converter and handling it, but is there a better way to do this? - -No I cannot use decimal due to its overhead. - - [ValueConversion(typeof(Double), typeof(String))] - public class DoubleToStringValueConverter : IValueConverter - { - public object Convert(object value, - Type targetType, - object parameter, - System.Globalization.CultureInfo culture) - { - string res = ((double)value).ToString(culture); - if (res == ""1.38777878078145E-16"") res = ""0""; - if (res == ""-0.0999999999999999"") res = ""-1""; - return res; - } - - public object ConvertBack(object value, - Type targetType, - object parameter, - System.Globalization.CultureInfo culture) - { - string val = value as string; - double res = 0d; - double.TryParse(val, System.Globalization.NumberStyles.Float, culture, out res); - return res; - } - - }",LQ -"I am creating a website and am working on a hover animation for css. - - ... - -
    -
    - -
    -
    - ... - - - - -** outer_container takes up the width of the page ** - -inner_container is a child of outer_container and is aligned in the center of it vertically. - -The css animation displays a hidden element named 'blur' which is basically a background color block that takes up the width and height of the image. On hover ""blur"" appears on top of the tag inside of the inner_container div. - -Unfortunately the block element ""blur"" is placed over the top of the the image tag using ""position : relative / position : absolute"" causing it to interfere with the display : inline-block used to align the inner_container div with the outer_container div. - -I'm looking for a solution that would allow the hidden element to be displayed on top of the tag in the inner_container div without using position : relative / position : absolute so that I can still align the inner_container div inside of the outer_container div. - -The actual page code can be found here : -http://jsbin.com/zawiqarijo/1/edit?html,css,output - - -Thank you for your help ahead of time! -",LQ -"Lets say I am given a list as input: - - IList availableFruits = {orange, banana} - -I have a fruit entity that looks like this: - - public Fruit - { - public int ID { get; set; } - - public string name { get; set; } - } - -we define some fruits: - - var f1 = new Fruit { Id = 1, name = ""apple"" }; - var f2 = new Fruit { Id = 2, name = ""banana"" }; - var f3 = new Fruit { Id = 3, name = ""orange"" }; - var f4 = new Fruit { Id = 4, name = ""pineapple"" }; - -Finally, we have a menu where these fruits go: - - public class Menu - { - public int ID { get; set; } - - public ICollection fruits; - } - - var menus = new List - { - new Menu {ID = 0, fruits = new List { f1, f2 } }, - - new Menu {ID = 1, fruits = new List { f1, f3, f4 } }, - - new Menu {ID = 2, fruits = new List { f1, f4 } }, - - new Menu {ID = 3, fruits = new List { f2 } }, - }; - -I need a LINQ query that searches in the menus and returns all menus that contains 'ANY' of the fruits passed in the avaiableFruits list. Thus in this case it will return menus with ID's 0, 1 and 3. - - -Thanks in advance for you help. - -Fike",LQ -"I have created 2 div next to each other(Left and Right)the height depend on each other I just use display: table-cell for it. -But on the left div if any item has margin it is affect right div content, content going down while I increase the margin how to solve it ? -Thank you.",LQ -"Let's say I write some code to print out ""Hello World."" - -Could I use some sort of character to ignore the r in hello world so that the output is ""Hello Wold?"" - -I have a value that I am using. I have the following characters: -&, \, and *. - -I think one of these characters is causing me to have some of my values ignored. - -Normally I would just test this myself, but I am not able to do this at this time. - - -",LQ -" i need to check if test contains atleast 2 alphabets like SC then do something. - - var test='SC129h'; - if(test.containsalphabets atleast 2){ - alert('success'); - } - else{ - alert('condition not satisfied for alphabets'); - } - -please let me know how to check the if condition for any alphabets with length 2",LQ -"i'm trying this code in controller but doesn't work ... - Server myserver = new Server("".""); - - - DataTable servers = SqlDataSourceEnumerator.Instance.GetDataSources(); - - DatabaseCollection mydata = myserver.Databases; - foreach (Database db in myserver.Databases) - { - - }",LQ -" enter code here -import java.util.*; - -class MyComp implements Comparator{
    - public int compare(String aStr, String bStr) {
    - return bStr.compareTo(aStr);
    - } -}
    -public class CustomComparatorTest { - - public static void main(String[] args) { - - MyComp my = new MyComp(); - TreeSet ts = new TreeSet(my); - ts.add(""C""); - ts.add(""A""); - ts.add(""B""); - ts.add(""Y""); - ts.add(""T""); - ts.add(""W""); - - for(String element : ts) - { - System.out.println(element + "" ""); - } - System.out.println(); - } -} - -",LQ -"I have one xml file say like below, - - - - - - - - - - - - - - - - Yes - Yes - No - - - - - -i want powershell read xml files and gives total lines (TL = AL + DL + CL) calculating each xml atrifact tags and list defects only it is Major equals Yes - -Thanks, -sundarm",LQ -"I have an observation and I need to make a column from it. -I tried split, I tried transpose, but nothing... - - - - - - I have: - - - num first second third - 1 13 17 16 - 2 23 11 64 - - I need: - - - num var_n - 1 13 - 17 - 16 - 2 23 - 11 - 64 - - - - -Can you give me some advice, please",LQ -"I have a data in a following format: - -{{{0}},{{1}},{{2,3}},{{1,2},{3,4}},{{5,6},{7,8},{9,10}},.... -Is there any way of storing this in a jagged array? The data is large, and I would like to include it directly in the code. I searched internet and it says I can declare it in a following way: -{ new int[][] { new int[] {0} }, new int[][] { new int[] {1} }, new int[][] { new int[] {2,3} }, new int[][] {new int[] {1,2} ,new int[] {3,4} } , ... -but typing those new int[][] would be too time consuming and I am looking for a way that I can used the original data directly into the code. -Is there a way to do that? -Any suggestion would be appreciated!",LQ -"I'm trying to create a C++ CLI .Net wrapper for some native DLLs. -There is seven of these DLLs and more in the future so i need to load the dynamically. They all have the same set of functions. -LoadLibrary and GetProcAddress worked great in a native application to load these functions. - -Whenever i load a DLL, and call Initialize i get AccessViolationException. -Not really sure why. - - -It seems to Load the DLL fine and also the function ""TSRInit"" -If I pass in a path to the DLL i know is incorrect it tells me loading it failed. But doesnt say failed if I pass the correct path. - -Likewise, Loading ""TRInit"" seems to work. -If i pass in a function name that doesnt exist it also tells me. - -Im testing with a C# Console app with platform x86 selected. - - - - typedef long (WINAPI *TSRINIT)(long lType, HWND hParent, RECT *pRect); - - namespace Imagery - { - public ref class Recongizer - { - public: - Recongizer(String^ DllPath) { LoadRecongizer(DllPath); } - ~Recongizer() { UnloadLibrary(); } - bool LoadRecongizer(String^ DllPath) - { - HInstance = ::LoadLibrary(msclr::interop::marshal_as(DllPath).c_str()); - if (HInstance == nullptr) return false; - if (!LoadFunctions()) return false; - return true; - } - long Initalize(long lType) - { - if (HInstance == nullptr) return 0; - return TSInit(0, nullptr, nullptr); - } - private: - void UnloadLibrary() - { - if (HInstance != nullptr) ::FreeLibrary(HInstance); - } - bool LoadFunctions() - { - TSInit = (TSRINIT)::GetProcAddress(HInstance, ""TSRInit""); - if (TSInit == nullptr) - { - ErrorMessage = ""TSRInit could not be loaded.""; - return false; - } - return true; - } - property String^ ErrorMessage; - private: - HINSTANCE HInstance{ nullptr }; - TSRINIT TSInit{ nullptr }; - }; -} - -",LQ -"So when a UIButton is pressed I want a random 1 of 4 images to pop up but I want one of the images to pop up at a random time after the button has been pressed. I'm using Xcode and swift 2. Your help is greatly appreciated - -",LQ -"What is the difference bet ween these two? - - ParamLv[] PLArray = { Mebius, Force, Aegis, Magius }; - - for (int i = 0; i < PLArray.Length; i++) - { - PLArray[i] = new ParamLv(Data, SArray[i]); - } - -When I use object ""Force"" with the top one code, I got NullReferenceException, but it's normal when I use bottom one. - - Mebius = new ParamLv(Data, SArray[0]); - Force = new ParamLv(Data, SArray[1]); - Aegis = new ParamLv(Data, SArray[2]); - Magius = new ParamLv(Data, SArray[3]); - ",LQ -"I am using attributes string to add some text to my uilable, and I want to change this text when user press the uilabel - -here is my code - - let likes: UILabel = UILabel(frame: CGRectMake(5, CGFloat(totalHeight + 5), 50, 21)); - let likesString: NSAttributedString = NSAttributedString (string: String(selectedItem.noLikes)) - var myString: NSMutableAttributedString = NSMutableAttributedString(string: "" "") - myString.appendAttributedString(likesString) - likes.attributedText = myString - mainScrollView.addSubview(likes) - -what I want to change the value of `likesString` from `(selectedItem.noLikes)` to `(selectedItem.noLikes + 1)` - -can any one help me please ?",LQ -"[**What is the problem with this code? When I execute it control is waiting to read.**][1] - - - [1]: http://i.stack.imgur.com/ZZstQ.png",LQ -"I have a DataBase called LogInData, where I have information about Usernames, Password, Email address stored in a table called LOGIN. When you register you can't use an already existing username because I am using this code: - - - SqlConnection con = new SqlConnection(@""Data Source=(LocalDB)\v11.0;AttachDbFilename=C:\Users\Mike\Documents\LogInData.mdf;Integrated Security=True;Connect Timeout=30""); - SqlDataAdapter sda = new SqlDataAdapter(""Select Count(*) From LOGIN where Username = '"" + textBox1.Text + ""' and Email = '"" + textBox3.Text + ""'"", con); - con.Open(); - - DataTable dt = new DataTable(); - sda.Fill(dt); - - if (dt.Rows[0][0].ToString() == ""1"") - { - MessageBox.Show(""Username already existing.""); - } - -And my question is : How does this code exactly work? I know that the first line creates a connection to the database. But what about the second row with the SqlDataAdapter and the row with the if? - -Thanks a lot for the help !",LQ -"Here is my code, - -string constring = @""Data Source=MUZAFFAR_ALI801\SQLSERVER;Initial Catalog=imageform;Integrated Security=True;""; - SqlConnection condatabase = new SqlConnection(constring); - SqlCommand sc = new SqlCommand(@""SELECT id, Source, Channel, Category, Image, url, Keyword1, Keyword2, Keyword3 - FROM Uploads"", condatabase); - - try - { - - SqlDataAdapter sda = new SqlDataAdapter(); - sda.SelectCommand = sc; - DataTable dt = new DataTable(); - sda.Fill(dt); - BindingSource bSource = new BindingSource(); - - bSource.DataSource = dt; - dataGridView1.DataSource = bSource; - sda.Update(dt); - } - - catch (Exception ex) - { - MessageBox.Show(ex.Message); - } - -i have a database with image column i want to retrieve image in datagridview like i saved in SQL Database in numbers but i faced the error plz help me",LQ -"I try to get date with json format via jquery.I use this code : - - new Date(parseInt(data[i].DepartureDateTime.substr(6))) -and get me this date : - - Sun Apr 26 1970 02:58:20 GMT+0430 (Iran Standard Time) - -But I want get date such as `4/6/2016 12:45:00 PM`. -How to do this?",LQ -"I am using google places api to search nearby places around.As per that document there is no place_types to search Yoga places.How to find nearby places which are not the in the list.Thanks - -https://developers.google.com/places/supported_types",LQ -"I want to perform multiple word on particular column. The given search string may be in different order. For example , I want to search the book name ""Harry Potter Dream world ""from books table using like operator and regular expression. - -I know, using multiple like operator, we can perform operation using below query -""SELECT * FROM TABLE_1 WHERE bookname like 'Harry Potter' or like 'Heaven world'""; - -In this case, i want to perform this in a single query. Also i tried with FREETEXT options. That wont be useful when i use self-join. Kindly provide me any other alternatives to solve this. - -Also can you provide , how to use regular expression to search multiple word in MS SQL. I tried with multiple options. It won't work for me. - -Thanks in advance",LQ -"I'm new here and my English language is not very good. -I installed xamarin. Now I want test compiling with a blank app but it can't compile. It has an unknown error: -[http://cd8ba0b44a15c10065fd-24461f391e20b7336331d5789078af53.r23.cf1.rackcdn.com/xamarin.vanillaforums.com/FileUpload/a1/092e22f68d6fb1e587c7eac985617c.png][1] - [1]: http://i.stack.imgur.com/zzOeT.png",LQ -Whenever I click on text field UiView will move up. How to stop this.,LQ -"I am using Jquery ui,i have added links to the Javascript files(jquery ui.min,jquery-ui.css) in the (head) section, however when i apply jquery to the menu(#shMenu).It doesn't render.What are my doing wrong ? - - - - - - - - - - - - - - - - - -
    - -
    - - - -
    -

    Batman

    -
    - A young Bruce Wayne (Christian Bale) travels to the Far East, - where he's trained in the martial arts by Henri Ducard (Liam Neeson), - a member of the mysterious League of Shadows. When Ducard reveals the League's true purpose - -- the complete destruction of Gotham City -- Wayne returns to Gotham intent on cleaning up the city without resorting to murder. - With the help of Alfred (Michael Caine), his loyal butler, and Lucius Fox (Morgan Freeman), - a tech expert at Wayne Enterprises, Batman is born. -
    - - -

    Thor

    -
    - As the son of Odin (Anthony Hopkins), king of the Norse gods, - Thor (Chris Hemsworth) will soon inherit the throne of Asgard from his aging - father. However, on the day that he is to be crowned, Thor reacts with brutality when the gods' enemies, - the Frost Giants, enter the palace in violation of their treaty. As punishment, Odin banishes Thor to Earth. While Loki (Tom Hiddleston), - Thor's brother, plots mischief in Asgard, - Thor, now stripped of his powers, faces his greatest threat.. -
    - - -

    SpiderMan

    -
    - ""Spider-Man"" centers on student Peter Parker (Tobey Maguire) who, - after being bitten by a genetically-altered spider, gains superhuman - strength and the spider-like ability to cling to any surface. He vows - to use his abilities to fight crime, coming to understand the words of his - beloved Uncle Ben: - ""With great power comes great responsibility."" -
    - - -
    - -
    - -
    - A billionaire industrialist and genius inventor, Tony Stark (Robert Downey Jr.), - is conducting weapons tests overseas, but terrorists kidnap him to force him to build a devastating - weapon. Instead, he builds an armored suit and upends his captors. Returning to America, - Stark refines the suit and uses it to combat crime and terrorism. - -
    - -
    - Eric Bana (""Black Hawk Down"") stars as scientist Bruce Banner, - whose inner demons transform him in the aftermath of a catastrophic experiment; - Jennifer Connelly portrays Betty Ross, whose scientific genius unwittingly helps unleash the Hulk; - Nick Nolte plays Banner's brilliant father, who passes on a tragic legacy to his son; and Sam Elliott - portrays the commander of a top-secret military research center. - -
    - -
    - As the son of Odin (Anthony Hopkins), king of the Norse gods, - Thor (Chris Hemsworth) will soon inherit the throne of Asgard from his aging - father. However, on the day that he is to be crowned, Thor reacts with brutality when the gods' enemies, - the Frost Giants, enter the palace in violation of their treaty. As punishment, Odin banishes Thor to Earth. While Loki (Tom Hiddleston), - Thor's brother, plots mischief in Asgard, - Thor, now stripped of his powers, faces his greatest threat.. - -
    - -
    - ""Spider-Man"" centers on student Peter Parker (Tobey Maguire) who, - after being bitten by a genetically-altered spider, gains superhuman - strength and the spider-like ability to cling to any surface. He vows - to use his abilities to fight crime, coming to understand the words of his - beloved Uncle Ben: - ""With great power comes great responsibility."" -
    -

    - -
    -

    A random dialog box that contains important information

    -
    - - Open Dialog

    - - - - - -
    - - - - ",LQ -"I want to create a ListView in Fragment but something goes wrong. -In layout listmygroups.xml are three TextViews (trainermygroupslistwhen, trainermygroupslistwhere, trainermygroupslistname). -I try to open fragment with listview(TrainerMyGroups) from another fragment by: - - - getFragmentManager().beginTransaction().replace(R.id.MainContainer,new TrainerMyGroups()).addToBackStack(null).commit(); - -TrainerMyGroups.java: - - package com.hgyghyfghyu.apkana40; - - - import android.os.Bundle; - import android.support.v4.app.Fragment; - import android.view.LayoutInflater; - import android.view.View; - import android.view.ViewGroup; - import android.widget.ListView; - - - /** - * A simple {@link Fragment} subclass. - */ - public class TrainerMyGroups extends Fragment { - - - ListView listView; - TrainerGroupsAdapter adapter; - String when[]={""tak"",""ret"",""sd""}; - String where[]={""dsf"",""sdf"",""sdfsdf""}; - String name[]={""sdfsdf"",""xcvxcv"",""xcvxcv""}; - - public TrainerMyGroups() { - // Required empty public constructor - } - - - @Override - public View onCreateView(LayoutInflater inflater, ViewGroup container, - Bundle savedInstanceState) { - // Inflate the layout for this fragment - return inflater.inflate(R.layout.fragment_trainer_my_groups, container, false); - } - - @Override - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - listView = (ListView) getActivity().findViewById(R.id.trainermygroupslistview); - adapter = new TrainerGroupsAdapter(getContext(),R.layout.list_mygroups); - listView.setAdapter(adapter); - for(int i=0;i<3;i++){ - TrainerGroupsDataProvider dataprovider = new TrainerGroupsDataProvider(when[i],name[i],where[i]); - adapter.add(dataprovider); - - } - - } - } - -TrainerGroupsAdapter.java: - - package com.hgyghyfghyu.apkana40; - - import android.content.Context; - import android.view.LayoutInflater; - import android.view.View; - import android.view.ViewGroup; - import android.widget.ArrayAdapter; - import android.widget.TextView; - - import java.util.List; - import java.util.ArrayList; - - /** - * Created by dd on 2016-04-04. - */ - public class TrainerGroupsAdapter extends ArrayAdapter { - - List list = new ArrayList(); - - public TrainerGroupsAdapter(Context context, int resource) { - super(context, resource); - } - - static class Datahandler{ - TextView name; - TextView when; - TextView where; - } - - @Override - public void add(Object object) { - super.add(object); - list.add(object); - } - - @Override - public int getCount() { - return this.list.size(); - } - - @Override - public Object getItem(int position) { - return this.list.get(position); - } - - @Override - public View getView(int position, View convertView, ViewGroup parent) { - View row; - row=convertView; - Datahandler handler; - if(convertView==null){ - LayoutInflater inflater = (LayoutInflater) this.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE); - row= inflater.inflate(R.layout.list_mygroups,parent,false); - handler = new Datahandler(); - handler.name = (TextView) row.findViewById(R.id.trainermygroupslistname); - handler.where = (TextView) row.findViewById(R.id.trainermygroupslistwhere); - handler.when = (TextView) row.findViewById(R.id.trainermygroupslistwhen); - row.setTag(handler); - } - else { - handler = (Datahandler)row.getTag(); - } - - TrainerGroupsDataProvider dataProvider; - dataProvider = (TrainerGroupsDataProvider)this.getItem(position); - handler.name.setText(dataProvider.getName()); - handler.when.setText(dataProvider.getWhen()); - handler.where.setText(dataProvider.getWhere()); - return row; - } - - - } - -and there is error from AndroidMonitor - - FATAL EXCEPTION: main - Process: com.hgyghyfghyu.apkana40, PID: 27778 - java.lang.NullPointerException - at com.hgyghyfghyu.apkana40.TrainerMyGroups.onCreate(TrainerMyGroups.java:41) - at android.support.v4.app.Fragment.performCreate(Fragment.java:1951) - at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1029) - at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1252) - at android.support.v4.app.BackStackRecord.run(BackStackRecord.java:738) - at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1617) - at android.support.v4.app.FragmentManagerImpl$1.run(FragmentManager.java:517) - at android.os.Handler.handleCallback(Handler.java:733) - at android.os.Handler.dispatchMessage(Handler.java:95) - at android.os.Looper.loop(Looper.java:136) - at android.app.ActivityThread.main(ActivityThread.java:5045) - at java.lang.reflect.Method.invokeNative(Native Method) - at java.lang.reflect.Method.invoke(Method.java:515) - at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779) - at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595) - at dalvik.system.NativeStart.main(Native Method) - - - -line 41 from TrainerMyGroups is - - listView.setAdapter(adapter); - -I am not sure but probably this solution works only in Activity, not in Fragment, How can I change my code to make it workable?",LQ -"I have a data from server in a format like ""rgb(0,0,0)"", which should be used on some UI elements. - -Is there a way to parse it in something like UIColor(red: 0, green: 0, blue: 0, alpha: 1)? ",LQ -"anyone know how change background-color of ControlBar in
    - -
    -
      -
    • - - Put some information - - - - here to get access: - - - - - - - -
    • -
    -
    -
    - - - -
    - -
    -
    -
    -
    -

    Register Here

    -
    -
    - -
    -
    -
    - -
    -
    -
    -
    -
    -

    Sign up now

    -

    Fill in the form below to get instant access:

    -
    -
    - -
    -
    -
    - ""registrationform""); - echo form_open(""Register/reg"", $attributes);?> - -
    - - "" placeholder=""Full Name..."" class=""form-first-name form-control"" id=""name"" required> - -
    -
    - - "" placeholder=""Email..."" class=""form-email form-control"" id=""email"" required> - - -
    -
    - - - -
    -
    - - - -
    - - - - session->flashdata('msg'); ?> -
    -
    -
    -
    -
    - -
    - - - - - - - - - - - - - - - -here is controller named as Register: - - - - reg(); - - } - - function reg() - { - //set validation rules - $this->form_validation->set_rules('name', 'Full Name', 'trim|required|alpha|min_length[3]|max_length[30]|xss_clean'); - $this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email|is_unique[users.email]'); - $this->form_validation->set_rules('password', 'Password', 'trim|required|matches[cpassword]|md5'); - $this->form_validation->set_rules('cpassword', 'Confirm Password', 'trim|required'); - $this->load->view('Seller/login'); - //validate form input - if ($this->form_validation->run() == FALSE) - { - // fails - $this->load->view('sign_up'); - } - else - { - //insert the user registration details into database - $data = array( - 'name' => $this->input->post('name'), - 'email' => $this->input->post('email'), - 'password' => $this->input->post('password') - ); - - // insert form data into database - if ($this->Seller_model->insertUser($data)) - { - // send email - if ($this->Seller_model->sendEmail($this->input->post('email'))) - { - // successfully sent mail - $this->session->set_flashdata('msg','
    You are Successfully Registered! Please confirm the mail sent to your Email-ID!!!
    '); - redirect('Register/reg'); - } - else - { - // error - $this->session->set_flashdata('msg','
    Oops! Error. Please try again later!!!
    '); - redirect('Register/reg'); - } - } - else - { - // error - $this->session->set_flashdata('msg','
    Oops! Error. Please try again later!!!
    '); - redirect('Register/reg'); - } - } - } - - function verify($hash=NULL) - { - if ($this->Seller_model->verifyEmailID($hash)) - { - $this->session->set_flashdata('verify_msg','
    Your Email Address is successfully verified! Please login to access your account!
    '); - redirect('Register/reg'); - } - else - { - $this->session->set_flashdata('verify_msg','
    Sorry! There is error verifying your Email Address!
    '); - redirect('Register/reg'); - } - } - } - ?> - -here is model named Seller_model: - - - - db->insert('users', $data); - } - - //send verification email to user's email id - function sendEmail($to_email) - { - $from_email = 'team@abc.com'; //change this to yours - $subject = 'Verify Your Email Address'; - $message = 'Dear User,

    Please click on the below activation link to verify your email address.

    anywebsite/user/verify/' . md5($to_email) . '


    Thanks
    ` `Mydomain Team'; - - //configure email settings - $config['protocol'] = 'smtp'; - $config['smtp_host'] = 'ssl://smtp.mydomain.com'; //smtp host name - $config['smtp_port'] = '465'; //smtp port number - $config['smtp_user'] = $from_email; - $config['smtp_pass'] = '********'; //$from_email password - $config['mailtype'] = 'html'; - $config['charset'] = 'iso-8859-1'; - $config['wordwrap'] = TRUE; - $config['newline'] = ""\r\n""; //use double quotes - $this->email->initialize($config); - - //send mail - $this->email->from($from_email, 'Mydomain'); - $this->email->to($to_email); - $this->email->subject($subject); - $this->email->message($message); - return $this->email->send(); - } - - //activate user account - function verifyEmailID($key) - { - $data = array('status' => 1); - $this->db->where('md5(email)', $key); - return $this->db->update('user', $data); - } - }?> - -",LQ -"The idea of this code is to enter a height and form a diamond with asterisks(stars). - -eg. If the input for the height was 6, I'd want the code to produce: - - ************ - ***** ***** - **** **** - *** *** - ** ** - * * - ** ** - *** *** - **** **** - ***** ***** - ************ - -I've gotten the top half so far and am wondering if it is possible to 'flip' lines horizontally to get the bottom half. - - - height = int(input('Enter triangle height: ')) - star = height - while star >= 1: - a = int(star)*'*' - b = int(2*height-2*star)*' ' - c = (height-star)*'' - d = star*'*' - print(a, b,c,d,sep='') - star = star - 1 - star = height - while star >= 2: - a = int(star) - b = int(2*height-2*star) - c = int((height-star)) - d = int(star) - print(a*'*', b*' ',c*'',d*'*',sep='') - star = star - 1` - -",LQ -"While the following code works fine I was wondering if there a cleaner way to accomplish this with lambda expressions? - - var counter = 1; - foreach (var item in model) - { - item.ID = counter++; - }",LQ -"Using Ruby v2.2.1 with following code, i am getting Error - -- r56.rb:6:in `': undefined method `log_slow' for module `BigMath' (NameError) - from r56.rb:5:in `
    ' - -i have created log_slow alias and it is not working - - - - require 'bigdecimal' - require 'bigdecimal/math' - require 'bigdecimal/util' - - module BigMath - alias :log :log_slow - def log(x, prec) - if x <= 0 || prec <= 0 - raise ArgumentError, ""Zero or negative argument for log"" - end - return x if x.infinite? || x.nan? - sign, fraction, power, exponent = x.split - fraction = BigDecimal("".#{fraction}"") - power = power.to_s.to_d - log_slow(fraction, prec) + (log_slow(power, prec) * exponent) - end - end - - include BigMath - number = BigDecimal(""1234.5678"") - Math.log(number) - prec = 50 - puts BigMath.log_slow(number, prec).round(prec).to_s(""F"") - puts BigMath.log(number, prec).round(prec).to_s(""F"") - puts BigMath.log(number ** 1000, prec).round(prec).to_s(""F"") - - - -",LQ -"def cube(number): - return number*number*number -def by_three(number): - if number % 3==0: - cube(number) - return number - else: - return False",LQ -"Table A Transaction details -TTime (datetime), TableAValues, TableAValues, ... - -Table B Related table -ID, DateTimeStart (datetime), DateTimeEnd (datetime), TableBValues, TableBValues, ... - -I need a way to return a row of information which includes All TableAValues as well as all TableBValues where TTime Table A falls between DateTimeStart and DateTimeEnd of table B. -",LQ -"I'm trying to do a DFS search on a given graph using the following code: - - #include - #include - #include - #include - #include - #include - - typedef struct G{ - int vertex1; - int vertex2; - float num; - } graph; - - typedef struct adj{ - std::vector element; - }adj; - - void dfs (int v, bool marked[], adj*p){ - marked[v]=true; - std::vector::iterator i; - for (i=p[v].element.begin(); i!=p[v].element.end();i++){ - if (!marked[*i]){ - dfs(*i, marked, p); - } - } - } - void Search(adj*p, int*tvertex){ - bool *marked=new bool[*tvertex]; - for (int v=0; v<*tvertex; v++){ - marked[v]=false; - q.push(v); - } - for (int v=0; v<*tvertex;v++){ - if (marked[v]==false){ - dfs(v, marked,p); - while (!q.empty()){ - bfs(v, marked,p, q); - } - } - } - } - - void buildadj(graph*g, adj*p, int * tvertex, int *edge ){ - for (int e=0; e<*edge; e++){ - p[g[e].vertex1].element.push_back(g[e].vertex2); - p[g[e].vertex2].element.push_back(g[e].vertex1); - } - } - - void readInData(FILE *fp, graph*g, int *tvertex) { - char buffer[500]; - char *token; - const char delimiters[] = "" ""; - int i; - int n; - memset(buffer, 0, 499); - for(i = 0;!feof(fp);) { - i++; - if (i>=2){ - fscanf(fp, "" %[^\n]"", buffer); - token = strtok(buffer, delimiters); - n = (int) atoi(token); - g[i-2].vertex1 = n; - g[i-2].vertex2 = (int) atoi(strtok(NULL, delimiters)); - g[i-2].num = (float)atof(strtok(NULL, delimiters)); - } - } - } - void readstrct(FILE *fp,int*edge, int*tvertex){ - int i; - int a[2]; - while (EOF!=fscanf(fp, ""%d\n"", &a[i])) { - i++; - if(i>=2){ - break; - } - } - *tvertex=a[0]; - *edge=a[1]; - } - - void sendMessage() { - char message[200]; - sprintf(message, ""Needs to be in this format:\n./exe_name - NAME.txt\n""); - printf(""%s"", message); - } - int main(int argc, char * argv[]) { - FILE *fp; - int edge; - int tvertex; - if(argc < 2) { - printf(""File not given\n""); - sendMessage(); - return 0; - } - - fp=fopen(argv[1], ""r""); - if(fp == NULL) { - printf(""file not found\n""); - sendMessage(); - return 0; - } - readstrct(fp,&edge, &tvertex); - graph *g=new graph[edge]; - adj *p=new adj[tvertex]; - readInData(fp, g, &tvertex); - buildadj(g,p,&tvertex, &edge); - Search(p,&tvertex); - - -} - - -The input is of the following form: - - 13 - 13 - 0 5 2.1 - 4 3 2.3 - 0 1 3.2 - 9 12 4.2 - 6 4 5.1 - 5 4 2.2 - 0 2 0.2 - 11 12 0.22 - 9 10 0.22 - 0 6 0.22 - 7 8 0.22 - 9 11 0.22 - 5 3 0.22 -I intend to read the first two lines and returns the edges and vertex num in the 'readstruct' function. Line 3 and Line 15 are read in the readIndata function. The code is compling fine using g++. But gives segmentation fault when reading input. I tried to use gdb to debug and found that the code continues to read the file when it reaches line 15(or i=13) in readIndata function. - -Best",LQ -"

    I'm trying to write a function that modifies original map that is passed by pointer but Go does not allow it. Let's say I have a big map and don't want to copy it back and forth.

    - -

    The code that uses passing by value is working and is doing what I need but involves passing by value (playground):

    - -
    package main
    -
    -import ""fmt""
    -
    -type Currency string
    -
    -type Amount struct {
    -    Currency Currency
    -    Value float32
    -}
    -
    -type Balance map[Currency]float32
    -
    -func (b Balance) Add(amount Amount) Balance {
    -    current, ok := b[amount.Currency]
    -    if ok {
    -        b[amount.Currency] = current + amount.Value
    -    } else {
    -        b[amount.Currency] = amount.Value
    -    }
    -    return b
    -}
    -
    -func main() {
    -    b := Balance{Currency(""USD""): 100.0}
    -    b = b.Add(Amount{Currency: Currency(""USD""), Value: 5.0})
    -
    -    fmt.Println(""Balance: "", b)
    -}
    -
    - -

    But if I try to pass parameter as pointer like here (playground):

    - -
    func (b *Balance) Add(amount Amount) *Balance {
    -    current, ok := b[amount.Currency]
    -    if ok {
    -        b[amount.Currency] = current + amount.Value
    -    } else {
    -        b[amount.Currency] = amount.Value
    -    }
    -    return b
    -}
    -
    - -

    I'm getting compilation error:

    - -
    prog.go:15: invalid operation: b[amount.Currency] (type *Balance does not support indexing)
    -prog.go:17: invalid operation: b[amount.Currency] (type *Balance does not support indexing)
    -prog.go:19: invalid operation: b[amount.Currency] (type *Balance does not support indexing)
    -
    - -

    How should I deal with this?

    -",HQ -"

    How secure it is to make JWT as the activation url in email?

    - -

    For example: -Click link to activate your account -http://127.0.0.1:8000/account/activate/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ0b3B0YWwuY29tIiwiZXhwIjoxNDI2NDIwODAwLCJodHRwOi8vdG9wdGFsLmNvbS9qd3RfY2xhaW1zL2lzX2FkbWluIjp0cnVlLCJjb21wYW55IjoiVG9wdGFsIiwiYXdlc29tZSI6dHJ1ZX0.yRQYnWzskCZUxPwaQupWkiUzKELZ49eM7oWxAQK_ZXw

    -",HQ -"I have some SQL i would like to pull up some records with a certain criteria please help, thank you :) - -**SQL Statement:** - -`SELECT - b.*, - e.Lastname, - e.Firstname, - e.ID_SC, - e.Program, - r.BReasonDetails - FROM tblbadgetemporaryborrower b - INNER JOIN (SELECT e.*, p.Program FROM tblemployee e INNER JOIN tblemployeeprogram p ON p.ID_P = e.ID_P) e ON e.EmployeeID = b.EmployeeID - INNER JOIN tblbadgetemporaryborrowerreason r ON r.ID_BR = b.ID_BR - HAVING e.ID_SC = {$_GET['ID_SC']} ORDER BY b.EmployeeID ASC` - -**Here's what i have:** - -**Q:** How can i pull up the employee data with `Lost` reason only - -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/vN6x0.png",LQ -"

    I am creating an api using API Gateway and Lambda. Using the url designated in the API Gateway Stage editor everything works fine; however, when I try and move to a custom domain I am running into some issues.

    - -

    The first thing I tried was using a CNAME record in Route 53 straight from my domain onto the domain that I got from the API Gateway. That was returning some errors and I think it is the incorrect solution is that correct?

    - -

    Next I tried the Custom Domain Names feature in API Gateway. My understanding is this will roll up a CloudFront distribution that I can then map onto from Route 53. When I created the custom domain and added a Domain Mapping it provides me with a url to what I assume is a CloudFront distribution. The link is returning a 403 response and no distribution has been made in CloudFront. What is a good way of debugging this problem?

    -",HQ -"

    I have created a NSIndexPath object but when I print the value of its length property it will always show the value as 2.

    - -
     NSIndexPath *index = [NSIndexPath indexPathForItem:0 inSection:4];
    -
    - -
    -

    {length = 2, path = 4 - 0}

    -
    - -

    Why length is always 2?

    -",HQ -"

    The up arrow scrolls through command history, but it doesn't work after I launch bash shell.

    -",HQ -"

    I try and load tables via MySQL and get the following error?

    - -
    -

    MySQL said: Table 'cms' was not locked with LOCK TABLES

    -
    - -

    Why does the table need to be Locked? I haven't seen this before? is there any way to unlock? do you even want to?

    -",HQ -"

    Is key,value pair available in typescript? If yes how to do that. Can anyone provide sample example links.

    -",HQ -" - - - - - - -when I am using data binding library with tab layout that time Edit text hint not hide after typing.",LQ -"

    - -

    Hi!

    - -

    I am new in wpf application development. I just create a demo application and I see that the black box appearing in the top of my application. Can anyone tell me how can I remove this ?

    - -

    I am sorry, I don't even know the name of it.

    -",HQ -"

    I have created simple grammar file in IntelliJ but failing to see any effect of Antlr plugin. When I open file in ANTLR preview, it says

    - -
    start rule: <select from navigator or grammar>
    -
    - -

    - -

    What is start rule? How to select it from navigator? How to select it from grammar?

    -",HQ -"

    It not work, I search so many ways, How can I change length of value in laravel 5

    - -
    public function up()
    -{
    -    Schema::table('articles', function (Blueprint $table) {
    -        $table->string('name',50)->change();
    -    });
    -}
    -
    - -

    Thank you all for reading!

    -",HQ -"

    I am in the process of creating a Shiny dashboard application, where the dashboard body is supposed to show some maps. So far no problem to get the map expand over the entire width of the body, but it's somehow not willing to adjust to the full height. -

    - -

    The leaflet itself is already set to cover 100% of the height, but it doesn't do the trick. As soon as I use the height attribute for the leafletOutput the leaflet object will not show at all, and I am left with an empty box.

    - -

    The code can be found below:

    - -
    library(shinydashboard)
    -library(leaflet)
    -
    -ui <- dashboardPage(
    -  dashboardHeader(title = ""Basic dashboard""),
    -  dashboardSidebar(
    -    sidebarMenu(
    -      menuItem(
    -        ""Maps"", 
    -        tabName = ""maps"", 
    -        icon = icon(""globe""),
    -        menuSubItem(""Watersheds"", tabName = ""m_water"", icon = icon(""map"")),
    -        menuSubItem(""Population"", tabName = ""m_pop"", icon = icon(""map""))
    -      ),
    -      menuItem(
    -        ""Charts"", 
    -        tabName = ""charts"", 
    -        icon = icon(""bar-chart""),
    -        menuSubItem(""Watersheds"", tabName = ""c_water"", icon = icon(""area-chart"")),
    -        menuSubItem(""Population"", tabName = ""c_pop"", icon = icon(""area-chart""))
    -      )
    -    )
    -  ),
    -  dashboardBody(
    -    tabItems(
    -      tabItem(
    -        tabName = ""m_water"",
    -        box(
    -          title = ""Baltic catchment areas"",
    -          collapsible = TRUE,
    -          width = ""100%"",
    -          height = ""100%"",
    -          leafletOutput(""l_watershed"")
    -        )
    -      ),
    -      tabItem(
    -        tabName = ""m_pop"",
    -        # Map in Dashboard
    -        leafletOutput(""l_population"")
    -      ),
    -      tabItem(
    -        tabName = ""charts"",
    -        h2(""Second tab content"")
    -      )
    -    )
    -  )
    -)
    -
    -server <- function(input, output) {
    -  set.seed(122)
    -  histdata <- rnorm(500)
    -
    -  output$l_watershed <- renderLeaflet({
    -    leaflet(height = ""100%"") %>% addTiles() %>% setView(19.08, 60.25, zoom = 4) %>%addWMSTiles(
    -      ""http://62.236.121.188/arcgis/services/DataAndMaps/Background/MapServer/WMSServer?"",
    -      layers = ""11"",
    -      options = WMSTileOptions(
    -        format = ""image/png"",
    -        transparent = TRUE
    -      ),
    -      attribution = ""Catchment area provided by HELCOM""
    -    )
    -  })
    -
    -  output$l_population <- renderLeaflet({
    -    leaflet(height = ""100%"") %>% addTiles() %>% setView(19.08, 60.25, zoom = 4) %>%addWMSTiles(
    -      ""http://62.236.121.188/arcgis/services/DataAndMaps/Background/MapServer/WMSServer?"",
    -      layers = ""17"",
    -      options = WMSTileOptions(
    -        format = ""image/png"",
    -        transparent = TRUE
    -      ),
    -      attribution = ""Population data provided by HELCOM""
    -    )
    -  })
    -}
    -
    -shinyApp(ui, server)
    -
    -",HQ -"I have use this code for allow numeric only in textbox, but how make Caharkey only allow AlfaNumeric and other symbol like **-./** (dash,dot,slash) - -this my code for allow Numeric - - function NumericKey(evt){ - var charCode = (evt.which) ? evt.which : event.keyCode - if (charCode > 31 && (charCode < 48 || charCode > 57)) - return false; - return true; - } - -thankyou",LQ -"

    I have an endpoint that returns a JSON like:

    - -
    [
    -  {""id"" : 4, ""name"" : ""Name4""},
    -  {""id"" : 5, ""name"" : ""Name5""}
    -]
    -
    - -

    and a DTO class:

    - -
    public class FooDto {
    -    public int id;
    -    public String name;
    -}
    -
    - -

    Now, I'm testing the length of the returned json array this way:

    - -
    @Test
    -public void test() {
    -    FooDto[] foos = RestAssured.get(""/foos"").as(FooDto[].class);
    -    assertThat(foos.length, is(2));
    -}
    -
    - -

    But, is there any way to do it without cast to FooDto array? Something like this:

    - -
    @Test
    -public void test() {
    -    RestAssured.get(""/foos"").then().assertThat()
    -      .length(2);
    -}
    -
    -",HQ -"

    Can anyone help me in understanding these question : What is the advantage of using Alamofire over NSURLSession/ NSURLConnection?

    - -

    What are the differences between NSURLSession and NSURLConnection?

    -",HQ -"

    How HTTP/2 affects the implementation of a proxy server? Especially, for example, when a client sends an HTTP/2 request to a content server that only supports HTTP/1.x, should the proxy server tranform the HTTP/2 request to HTTP/1.x request before directing the client request to the content server? And upon receiving response from the content server, should the proxy server transform the response to the HTTP/2 format before sending it back to the client?

    -",HQ -"

    I know that there is no way in C++ to obtain the size of a dynamically created array, such as:

    - -
    int* a;
    -a = new int[n];
    -
    - -

    What I would like to know is: Why? Did people just forget this in the specification of C++, or is there a technical reason for this?

    - -

    Isn't the information stored somewhere? After all, the command

    - -
    delete[] a;
    -
    - -

    seems to know how much memory it has to release, so it seems to me that delete[] has some way of knowing the size of a.

    -",HQ -"*I'm using c++ builder (bcb6) - -I would like change the font of MessageBox. - -I searched over google and find that it's possible to use by WM_SETFONT. - -My question is how can I get the handle of the MessageBox? - - - HFONT hFont=CreateFont(18,0,0,0,FW_DONTCARE,FALSE,FALSE,FALSE,DEFAULT_CHARSET,OUT_OUTLINE_PRECIS, - CLIP_DEFAULT_PRECIS,ANTIALIASED_QUALITY, VARIABLE_PITCH,TEXT(""Courier New"")); - - MessageBox(NULL,message.c_str(),""Info"",MB_OK | MB_ICONINFORMATION); - SendMessage(??handle of the message box??, WM_SETFONT,(WPARAM) hFont, MAKELPARAM(TRUE, 0)); - -Any suggestions please? - -Your help is very appreciated. ",LQ -"

    I want to render the react components with a string as the input which i am receiving dynamically from another page. BUt i will have the references for the react components. -Here is the example

    - -
    Page1:
    ------------------------------
    -loadPage('<div><Header value=signin></Header></div>');
    -
    -Page2:
    ---------------------------------
    -var React =require('react');
    -var Header = require('./header');
    -
    -var home = React.createClass({
    -
    -loadPage:function(str){ 
    -
    -           this.setState({
    -             content : str 
    -           });
    -
    -  },
    -
    - render : function(){
    -
    -  return {this.state.content}
    - }
    -
    -});
    -
    - -

    In this example i am receiving Header component as string , and i have the reference of Header component in my receiving page . How can i substitute the string with the actual react component

    -",HQ -"

    I have few questions for Swift developers regarding the concept of abstract classes.

    - -
      -
    1. How do you define an abstract class in Swift? Is there any way to prevent a class from being instantiated, while providing an initializer for its subclasses to use?
    2. -
    3. How do you define abstract methods, while implementing others? When defining abstract methods, Apple generally points you to protocols (interfaces). But they only solve the first part of my question, since all of the methods they define are abstract. What do you do when you want to have both abstract and non-abstract methods in your class?
    4. -
    5. What about generics? You might have thought about using protocols together with extensions (categories). But then there is an issue with generics because protocols can't have generic types, only typealiases.
    6. -
    - -

    I have done my homework and I know about solving these issues using methods, such as fatalError() or preconditionFailure() in the superclass and then overriding them in a base class. But that seems like ugly object design to me.

    - -

    The reason I'm posting this is to find out whether there exists more general and universal solution.

    - -

    Thanks in advance, -Petr.

    -",HQ -"

    After looking so many posts about this problem, I don't understand why it don't work because it should be working. I will post all the information I have so far:

    - - - -

    I downloaded SQLSRV32.exe from microsoft. I extracted the dll files to C:\wamp\bin\php\php5.6.16\ext.

    - -

    In my php.ini given by wampserver:

    - -
      -
    • extension_dir = ""c:/wamp/bin/php/php5.6.16/ext/""

    • -
    • extension=php_sqlsrv_56_ts.dll

    • -
    • extension=php_pdo_sqlsrv_56_ts.dll

    • -
    - -

    I have php5ts.dll in my php5.6.16 folder, so I think I have thread safe which is why I am using ts.dll ones.

    - -

    If I'm in phpinfo() I should see a 'sqlsrv' section in there, but I don't see one, so I guess I did something wrong here somewhere?

    - -

    I even did restart on wampserver many times and run as an administrator. It still don't show up on phpinfo()... But I can see this in php extension at the Wampserver:

    - -

    Any ideas to what I did wrong or why it don't show up in phpinfo()?

    -",HQ -"

    in Angular 2 we have several way to create property bindings in templates. -I could do something like this:

    - -
    <li *ngFor=""#course of courses; #i = index"" id=""someselector-{{i}}"">{{course}}</li>
    -
    - -

    Is it possible to obtain the same result using the square brakets syntax?

    - -
    <li *ngFor=""#course of courses; #i = index"" [id]=""someselector-i"">{{course}}</li>
    -                                            ^^^^^^^
    -                                  how create string concatenation?
    -
    - -

    Thanks, -G.

    -",HQ -"I am writing a program that reads a question document (example below) and presents the question and answers in an appropriate way. But my question is how do i get my program to display one question and then wait for the answer before then displaying the next. The answers are displayed using the method Display*Questiontype*(?). eg DisplayMultipleChoice(Question,CAnswer,Ianswer1,Ianswer2,Ianswer3). - -Question Document; - -& Multiple choice question
    -~ Correct Answer
    -- Incorrect Answer
    -- Incorrect Answer
    -- Incorrect Answer
    - -? Textbox answer question
    -~Correct Answer
    - -$ Webpage Question
    -@ Webpage
    -",LQ -"

    current code:

    - -
    Retrofit retrofit = new Retrofit.Builder()
    -                  .baseUrl(Constant.BASEURL)
    -                  .addConverterFactory(GsonConverterFactory.create())
    -                  .build();
    -
    -APIService service = retrofit.create(APIService.class);
    -
    -Call<ResponseWrap> call = service.getNewsData();
    -
    -call.enqueue(new Callback<ResponseWrap>() {
    -
    -  @Override
    -  public void onResponse(Call<ResponseWrap> call1, Response<ResponseWrap> response) {
    -    if (response.isSuccess()) {
    -
    -        ResponseWrap finalRes = response.body();
    -        for(int i=0; i<finalRes.getResponse().getResults().size(); ++i){
    -            String title = finalRes.getResponse().getResults().get(i).getWebTitle();
    -            News n = new News(titleCategory, title, null);
    -            newsList.add(n);
    -        }
    -
    -        AdapterRecommendation adapter = new AdapterRecommendation(getApplicationContext(), newsList);
    -        listView.setAdapter(adapter);
    -
    -    }
    -    else{
    -        Toast.makeText(getApplicationContext(), ""onResponse  - something wrong"" + response.message(), Toast.LENGTH_LONG).show();
    -    }
    -  }
    -
    -  @Override
    -  public void onFailure(Call<ResponseWrap> call1, Throwable t) {
    -      Toast.makeText(getApplicationContext(), ""exception: "" + t.getMessage(), Toast.LENGTH_LONG).show();
    -  }
    -});
    -
    - -

    works fine.

    - -

    Now i want to make multiple calls (number of call will be decided at run time) and all calls gives data in same format. data from all calls needs to be add to newsList. Once data is available from all calls and added to newsList, call

    - -
    AdapterRecommendation adapter = new AdapterRecommendation(getApplicationContext(), newsList);
    -listView.setAdapter(adapter);
    -
    - -

    Can anyone help me what is the best way to get data from multiple calls and wait until all request is not over in retrofit 2.0.

    -",HQ -"

    I am using angular js and nodejs along with ES6. I want to import the moment.js in the angular js code. I did 'npm install moment --save'

    - -

    Now I am able to see moment.js file in moment folder which is inside node modules.

    - -

    and in my app.js file I have wriiten like this

    - -
    'import moment from 'moment';
    -
    - -

    But if search something with date range It is showing error in console. Can anybody help me how to do this..?

    -",HQ -"

    I want my ggplot2 theme to use a specific set of colors, but don't see how to avoid a separate line outside of the theme.

    - -

    I have this data:

    - -
    library(ggplot2)
    -mycars <- mtcars
    -mycars$cyl <- as.factor(mycars$cyl)
    -
    - -

    And here's a dummy theme I plot with:

    - -
    mytheme <- theme(panel.grid.major = element_line(size = 2))
    -
    -ggplot(mycars, aes(x = wt, y = mpg)) +
    -  geom_point(aes(color = cyl)) +
    -  mytheme
    -
    - -

    - -

    I want the point colors to default to my custom palette:

    - -
    mycolors <- c(""deeppink"", ""chartreuse"", ""midnightblue"")
    -
    - -

    Can I somehow add that to my ggplot2 theme so that I don't constantly repeat this extra line of code at the end:

    - -
    ggplot(mycars, aes(x = wt, y = mpg)) +
    -  geom_point(aes(color = cyl)) +
    -  mytheme +
    -  scale_color_manual(values = mycolors)
    -
    - -

    - -

    I tried:

    - -
    mytheme2 <- mytheme + scale_color_manual(values = mycolors)
    -
    - -

    But got:

    - -
    -

    Error: Don't know how to add scale_color_manual(values = mycolors) to - a theme object

    -
    -",HQ -"

    I have used following code :

    - -

    fileupload.html

    - -
    <html>
    -<head>
    -<title>File Uploading Form</title>
    -</head>
    -<body>
    -<h3>File Upload:</h3>
    -Select a file to upload: <br />
    -<form action=""http://127.0.0.1:8081/file_upload"" method=""POST"" enctype=""multipart/form-data"">
    -<input type=""file"" name=""file"" size=""50"" />
    -<br />
    -<input type=""submit"" value=""Upload File"" />
    -</form>
    -</body>
    -</html>
    -
    - -

    fileupload.js:

    - -
    var express = require('express');
    -var app = express();
    -var fs = require(""fs"");
    -
    -var bodyParser = require('body-parser');
    -var multer  = require('multer');
    -
    -//console.log(multer);
    -
    -app.use(express.static('public'));
    -app.use(bodyParser.urlencoded({ extended: false }));
    -app.use(multer({ dest: '/tmp/'}));
    -
    -app.get('/fileupload.html', function (req, res) {
    -   res.sendFile( __dirname + ""/"" + ""fileupload.html"" );
    -})
    -
    -app.post('/file_upload', function (req, res) {
    -
    -   console.log(req.files.file.name);
    -   console.log(req.files.file.path);
    -   console.log(req.files.file.type);
    -
    -   var file = __dirname + ""/"" + req.files.file.name;
    -   fs.readFile( req.files.file.path, function (err, data) {
    -        fs.writeFile(file, data, function (err) {
    -         if( err ){
    -              console.log( err );
    -         }else{
    -               response = {
    -                   message:'File uploaded successfully',
    -                   filename:req.files.file.name
    -              };
    -          }
    -          console.log( response );
    -          res.end( JSON.stringify( response ) );
    -       });
    -   });
    -})
    -
    -var server = app.listen(8081, function () {
    -  var host = server.address().address
    -  var port = server.address().port
    -
    -  console.log(""Example app listening at http://%s:%s"", host, port)
    -})
    -
    - -

    I have used these above code for file uploading But when excute using node fileupload.js in terminal i am getting type error TypeError('app.use() requires middleware functions');

    - -

    Can any one help to resolved this problem.

    -",HQ -"

    I saw several questions about generic return type, but none answers my question. -
    If there is no bound for any of the arguments, such as the following method in JayWay :

    - -
    public static <T> T read(String json, String jsonPath, Filter... filters) {
    -    return new JsonReader().parse(json).read(jsonPath, filters);
    -}
    -
    - -

    What is the point of using this as generic ?
    -I told the guys from my team that this method should be used as :

    - -
    JsonPath.<Boolean>read(currentRule, ""$.logged"")
    -
    - -

    instead of:

    - -
    (boolean) JsonPath.read(currentRule, ""$.logged"")
    -
    - -

    But I really can't tell the difference...

    -",HQ -"

    I currently have a native iOS GUI and a Qt-GUI. I'm trying to switch from one to another.

    - -

    To be clear: When i click on a button on the native GUI i want the Qt-GUI to show up and vice versa.

    - -

    I already found out which libraries i have to add to be able to use the Qt-Stuff. I created a QApplication in the AppDelegate.mm file:

    - -
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *) launchOptions {
    -    // receive int argc, and char** argv for the QApplication.
    -    _qApp = new QApplication(_argc, _argv);
    -}
    -
    - -

    Furthermore my Qt application looks (at the moment) like this:

    - -
    void createQtGUI() {
    -    QPushButton* btn = new QPushButton(""Some Button"");
    -    QLabel* lbl = new QLabel(""QTGui"");
    -    QVBoxLayout* layout = new QVBoxLayout();
    -    layout->addWidget(lbl);
    -    layout->addWidget(btn);
    -
    -    QWidget* window = new QWidget();
    -    window->setLayout(layout);
    -    window->show();
    -}
    -
    - -

    I'm calling the createQtGUI method in my ViewController.mm when pressing a button in the native iOS GUI. The code runs without throwing any error, but:

    - -

    The Qt-GUI is not shown. The application still shows the native gui without switching to the Qt-GUI.

    - -

    Has anybody got any idea how to fix that?

    -",HQ -"

    I've created an Android app in Android Studio, and it has created these styles by default:

    - -
    <style name=""AppTheme.NoActionBar"">
    -    <item name=""windowActionBar"">false</item>
    -    <item name=""windowNoTitle"">true</item>
    -</style>
    -
    - -

    However, in an activity, I try to set this as a theme:

    - -
    <FrameLayout xmlns:android=""http://schemas.android.com/apk/res/android""
    -   ...
    -android:theme=""@style/AppTheme.NoActionBar"">
    -
    - -

    But when I run the app I'm getting the action bar:

    - -

    - -

    Why am I getting an action bar? Am I doing something obviously wrong, or is Android Studio, Google's official IDE for it's own platform, trying to confuse/mislead its developers?

    - -

    Here is my activity code, there's nothing in it that can cause the action bar to appear by itself:

    - -
    public class WelcomeActivity extends AppCompatActivity {
    -    @Override
    -    public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
    -        super.onCreate(savedInstanceState, persistentState);
    -        setContentView(R.layout.activity_welcome);
    -    }
    -}
    -
    -",HQ -"

    I'm trying to decide if I should use multiprocessing or threading, and I've learned some interesting bits about the Global Interpreter Lock. In this nice blog post, it seems multithreading isn't suitable for busy tasks. However, I also learned that some functionality, such as I/O or numpy, is unaffected by the GIL.

    - -

    Can anyone explain why, and how I can find out if my (probably quite numpy-heavy) code is going to be suitable for multithreading?

    -",HQ -"I have a GeForce GTX 745 (CC 5.0). - -The deviceQuery command shows that the total number of registers available per block is 65536 (65536 * 4 / 1024 = 256KB) - -I wrote a kernel that uses an array of size 10K and the kernel is invoked as following. - -I tried two ways to allocated the array: - - // using registers - fun1() { - short *arr = new short[100*100]; // 100*100*sizeof(short)=256K / per thread - .... - delete[] arr; - } - fun1<<<4, 64>>>(); - - // using global memory - fun2(short *d_arr) { - ... - } - fun2<<<4, 64>>>(d_arr); - -I can get the correct result in both manner. -The first one which uses registers runs much faster. - -But when invoking the kernel using 6 blocks i got the wrong answer. - - fun1<<<6, 64>>>(); - -Now i'm wondering actually how many of registers can i use? And how is it related to the number of blocks ? -",LQ -"Hi I have encountered an OCPJP question that I cannot understand. Following is the question.. -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/UCdL9.png - -The answer provided is (B). Need a explanation on the answer. Thanks in advance.",LQ -"Having a problem creating a macro variable within an API call in R. I am trying to loop through a vector of zip codes and make an API call on that vector iteratively. Pretty unfamiliar with iterating through a R list that needs to be macro'd out. - -Familiar with sas macros where I'd - -Here is my code: - -#creating a dataframe of 10 sample California zip codes to iterate through from database -zip_iterations<-sqlQuery(ch,""Select distinct zip from zip_codes where state='CA' limit 10"",believeNRows=""F"") - - -#Calling the api to retrieve the JSON -json_file <- ""http://api.openweathermap.org/data/2.5/weather?zip=**'MACRO VECTOR TO ITERATE'** - -My goal is to go through the list of 10 zip codes in the dataframe by using a macro. - -Thanks - - ",LQ -"I have a table and I am attempting to make it so that when one or more checkboxes in the table are clicked, the entire checkbox column changes color. - -For better understanding, I want it to look like this before being clicked (which I already have now): - -[Before][1] - -And this is what I want it to look after one or more boxes are clicked: - -[After][2] - - -Here is the HTML I have for the grid: - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    # - User ID - - - - - - Notification Email - - - - - - Role - - - - - - Last Activity - - - - -
    {{ $index+1 }}{{ user.name }}{{ user.email }} - - {{ user.type }} - {{getLastDate(user.lastActivity) | date:'short'}} - - Edit - - - - Delete - - - - Reset - -
    - -Not sure where to go from here to make this change. - - [1]: http://i.stack.imgur.com/ZYk60.png - [2]: http://i.stack.imgur.com/AymdV.png",LQ -"Actally i am in pretty interesting problem when i run this method with n = 64, its gives me x = 64 but beside running the if statement it runs the else statement. the actal answer need to be 32 but it return 64. -/** - * Complete the method to find the largest power of 2 less than the given number - * Use a loop - */ - -public class MathUtil -{ - public int largestPowerOf2(int n) - { - //TODO: implement this method. - int i = 0; - while(n > 1) - { - n = n / 2; - i++; - } - System.out.printf(""i = %d\n"" , i); - int x = (int)Math.pow(2,i); - System.out.println(x); - if(x == n) - { - return (int)Math.pow(2,i - 1); - } - else - { - return (int)Math.pow(2, i); - } - } -}",LQ -"so I'm trying to make a calculator for my job. Basically it is suppose to calculate someones savings if they came with our firm. I have 3 working sections, but when I try to add another it doesn't work. I'll post a working section, and then the section that doesn't work. - -WORKING: - -
    -

    Visa

    -
    -
    - - -

    EMDR=

    -

    Monthly Savings=

    -

    Yearly Savings=

    -

    Five Year Savings=

    -
    - - document.getElementById(""vCalc"").onclick=function(){ - - var visaVol=document.getElementById(""vVol"").value; - var visaFees=document.getElementById(""vFees"").value; - var visaEMDR; - visaEMDR=visaFees/visaVol*100; - - var visaMonthly=visaFees-(visaVol*.0171); - var visaYearly=visaMonthly*12; - var visaFive=visaYearly*5; - - document.getElementById(""vMonthlySpan"").innerHTML="" ""+visaMonthly+""$""; - document.getElementById(""vYearlySpan"").innerHTML="" ""+visaYearly+""$""; - document.getElementById(""vFiveSpan"").innerHTML="" ""+visaFive+""$""; - document.getElementById(""vEMDRSPAN"").innerHTML="" ""+visaEMDR+""%""; - - } - - - -NOT WORKING (also stops other buttons from working too): - -
    -

    Other Charges

    -
    -
    - - -

    Monthly Savings=

    -

    Yearly Savings=

    -

    Five Year Savings=

    -
    - - document.getElementById(""ocCalc"").onclick=function(){ - - var otherFees=document.getElementById(""otherCharges"").value; - var ourFees=document.getElementById(""ourCharges"").value; - - var ocMonthlySav=otherFees-ourFees; - var ocYearlySav=ocMonthlySav*12; - var ocFiveSav=ocYearlySav*5; - - document.getElementById(""ocMonthlySpan"").innerHTML="" ""+ocMonthlySav+""$""; - document.getElementById(""ocYearlySpan"").innerHTML="" ""+ocYearlySav+""$""; - document.getElementById(""ocFiveSpan"").innerHTML="" ""+ocFiveSav+""$""; - - } - - - -I have NO idea what is happening.. any help would be greatly appreciated. -Edit: JavaScript is in the correct -tags, i just didn't put them in the post. ",LQ -" -The following code in a PHP script used to work. But now it does not work any more. I tried with the URL directly and it works well. I replaced the URL with something else it works too. I could not figure out what could go wrong. Any ideas? thanks. - - - -",LQ -"This may be a dumb question but I cannot figure it out for the life of me -Please excuse my confusing variable naming I would be ecstatic ef anyone could tell me why the error in the title is happening and/or any other mistakes any my code - - import json - import twitter - a = twitter.get_account(""@Suppert2"") - q = ""cxdffcfctftcvft"" - ac = twitter.search(a,q, count=1, parameters=None) - abg = str(ac) - print (abg) - ah = json.loads(abg) #here is where the error is accruing - print ah[""completed_in""] - -And when you print abg it comes out as: - -{u'search_metadata': {u'count': 1, u'completed_in': 0.048, u'max_id_str': u'718234026394443782', u'since_id_str': u'0', u'refresh_url': u'?since_id=718234026394443782&q=x597567654dfv&include_entities=1', u'since_id': 0, u'query': u'x597567654dfv', u'max_id': 718234026394443782L}, u'statuses': []} - -thank you for reading - -",LQ -"i wan to sum two arrays 1)num_array 2)num2_array using for loops... please help me -thank you - - - - - - var num_array,num2_array; - var i,j,sum=0; - - for(i=0;i<6;i++) - { - num_array[i] = get_integer(""NUMBER: "",""""); - - while(num_array[i] < 1 && num_array[i] > 500) - { - num_array[i] = get_integer(""Enter a number inn limit of 1 to 500"",0); - } - - - - - } - for(i=5;i>=0;i--) - { - num2_array[i] = num_array[i]; - show_message(num2_array[i]); - } - - - - - - - - - - - - ",LQ -"class _ListNode: - - def __init__(self, value, next_): - """""" - ------------------------------------------------------- - Initializes a list node. - Use: node = _ListNode(value, _next) - ------------------------------------------------------- - Preconditions: - _value - data value for node (?) - _next - another list node (_ListNode) - Postconditions: - Initializes a list node that contains a copy of value - and a link to the next node in the list. - ------------------------------------------------------- - """""" - self._value = copy.deepcopy(value) - self._next = next_ - return -class List: - - def __init__(self): - """""" - ------------------------------------------------------- - Initializes an empty list. - Use: l = List() - ------------------------------------------------------- - Postconditions: - Initializes an empty list. - ------------------------------------------------------- - """""" - self._front = None - self._count = 0 - return - def copy(self): - """""" - ------------------------------------------------------- - Duplicates the current list to a new list in the same order. - Use: new_list = l.copy() - ------------------------------------------------------- - Postconditions: - returns: - new_list - a copy of self (List) - ------------------------------------------------------- - - """""" -The requirement is to write the copy function. - -But when I finish this function as my opinion the new list only contains one item or None item. - -Does anyone could tell me how to finish this function? - -Really appreciate for your help.",LQ -" private void button2_Click(object sender, EventArgs e) - { - int i; - for (i = 243; i >= 850; i++) - { - this.Width = i; - - } - - - }",LQ -I have asp .net web site in where I created one message box show using dialog result class with yesnocancel buttons but i want only yes no buttons message box but with close button enabled to the top right of the message box without cancel button.With yesno message box it displays only yes no buttons with close button disabled at the top right of the message box.Could it be possible?,LQ -"Evening, I am looking for a way to get the program to continue on instead of exiting out after asking to press enter to continue. [1] I cannot use the list command because im calling function ""seatingChart"" in another function and having the list command sends me back into the menu. Any suggestions? - - void seatingChart() - { - for(row = 0; SEATROWS > row; ++row) // Placeholder for '#' - for (seat = 0; SEATS > seat; ++seat) // Placeholder for '#' - theater[row][seat] = '#'; // Applying '#' to the chart - - cout << ""\n\t\tSeats""; - cout << ""\n 123456789012345678901234567890"" << endl; //seat header - for (int row = 0; SEATROWS > row; ++row) { // Initializing 15 rows - cout << ""\nRow "" << setw(2) << row+1 << ""\t""; - for (int seat = 0; SEATS > seat; ++seat){ // Initializing 30 seats - cout << theater [row][seat];} //display seating chart - } - cout << ""\n\n\n\tLegend:\t* = Sold""; - cout << ""\n\t\t# = Available""; - - cout << ""\n\n\nPress the Enter key to continue.""; - cin.ignore(); - cin.get(); - } - - - [1]: http://i.stack.imgur.com/VpAzm.png",LQ -"This is a Firebird database. - -First Table - -Contacts -Company_ID - job_title - -Second Table - -Client_id - Co_name - -In contacts, I want to the job_title field to contain the co_name. - -client_id and company_id are the same. -Co_name correspond to company_id as well as client_id. - -this: -UPDATE Contacts -SET Contacts.Job_title = Clients.co_name -where company_id in -(select client_id from clients -JOIN Contacts c ON Client_id=company_id -where record_status='A') - -gives me an error as cannot find (clients.co_name) - -this other option: - - -UPDATE Contacts -JOIN Clients ON Clients.Client_id = Contacts.Client_id -SET Contacts.Job_title = Clients.Client_name - -gives me an error on JOIN - -Any other ideas please? - -Thank you all",LQ -"I have 2 array, which should be the shortest code to return array with less element ? - - If (count($a) $name, - 'age' => $age, - ); - - - Need to get the name only in result.I have done this . But showing Array. - - - foreach ($fields as $key => $value) { - echo $value; - }",LQ -"I write this code to output text file but it doesn't produce any file after running it. - - String text1=""hello word""; - - try { - - File file = new File(""f0f0f0f.txt""); - FileWriter fileWriter = new FileWriter(file); - fileWriter.write(text1); - fileWriter.flush(); - fileWriter.close(); - } catch (IOException e) { - e.printStackTrace(); - } - - }",LQ -"I have a 2d numpy array ans i.e - - ans=[8,5,9,2,4] - - - -i want to convert it into a 2d array like - - - ans= - {[1,8], - [2,5], - [3,9], - [4,2], - [5,4]} -the first column is in sequence - - [1,2,3......500,501..] -how to do this in python - - ",LQ -"I can't figure out what is wrong with my MargeSort function. This is my code: - - void Marge(int* A, int p, int q, int r) - { - int B[100], i = 0, j = 0, k = 0; - - i = p; - k = p; - j = q + 1; - - while (i <= q && j <= r) - { - if (A[i] <= A[j]) - { - B[k] = A[i]; - k++; - i++; - } - - else - { - B[k] = A[j]; - k++; - j++; - } - } - - while (i <= q) - { - B[k] = A[i]; - k++; - i++; - } - - while (j <= r) - { - B[k] = A[j]; - k++; - j++; - } - - for (i = p; i - -the method i used to check the visibility property works fine. - - public bool isloading() - { - string v; - - v= webBrowser1.Document.GetElementById(""loading"").Style; - if (v.Contains(""visible"")) { return true; } - if (v.Contains(""hidden"")) { return false; } - else - return false; - - } - - - -i m using it like this. the app freezes upon coming to this code. need help - - public void battleloop() - { - if (!isloading()) - { - universalclcikbutton(); - } - else - { - battleloop(); - } - } - - -i know it is calling a method within a method. anyone please give me alternatives ASAP!!!!!!!!!!!",LQ -"im having trouble integrating this css clouds animation into my -website. the overflow : hidden and scroll are causing my problems. -and I don't want the clouds scrolling outside of the blue box background area, but don't know how . please see http://www.filehostfree.com/cloudcsstest/cssanimation.html - -ive left a comment in the source code. please see ,highlights my issue. -any help is appreciated.thanks",LQ -" if (skin_var == 1) { - skin = ""%kraken""; - - skin_var = 2; - } - if (skin_var == 2) { - // this won't activate - skin = ""%mercury""; - - skin_var = 3; - } - if (skin_var == 3) { - skin = ""%shark""; - - skin_var = 4; - } - if (skin_var == 4) { - // this won't activate either - skin = ""%banana""; - - skin_var = 5; - } - if (skin_var == 5) { - skin = ""%nuclear""; - - skin_var = 6; - } - if (skin_var == 6) { - skin = ""%space_dog""; - - skin_var = 7; - } - if (skin_var == 7) { - skin = ""%t_rex"" - - skin_var = 8; - } - if (skin_var == 8) { - // gets stuck right here - skin = ""%spy"" - - skin_var = 1; - } - -That's my code above. As you can see by the comment lines, they always don't work or get stuck at some point. Any more effecient way to do this or how to fix it? ( i just want to change skin to something every second forever, and i have used setInterval(); but it only seems to do ""%kraken"" to ""%shark"" to ""%nuclear"" to ""%t_rex"" and then it cycles before i added ""%spy"" )",LQ -"tbl_employee -empid empname openingbal -2 jhon 400 -3 smith 500 - -tbl_transection1 -tid empid amount creditdebit date -1 2 100 1 2016-01-06 00:00:00.000 -2 2 200 1 2016-01-08 00:00:00.000 -3 2 100 2 2016-01-11 00:00:00.000 -4 2 700 1 2016-01-15 00:00:00.000 -5 3 100 1 2016-02-03 00:00:00.000 -6 3 200 2 2016-02-06 00:00:00.000 -7 3 400 1 2016-02-07 00:00:00.000 - - -tbl_transection2 -tid empid amount creditdebit date -1 2 100 1 2016-01-07 00:00:00.000 -2 2 200 1 2016-01-08 00:00:00.000 -3 2 100 2 2016-01-09 00:00:00.000 -4 2 700 1 2016-01-14 00:00:00.000 -5 3 100 1 2016-02-04 00:00:00.000 -6 3 200 2 2016-02-05 00:00:00.000 -7 3 400 1 2016-02-08 00:00:00.000 - - -here 1 stand for credit and 2 for debit - - -i want oput put like - -empid empname details debitamount creditamount balance Dr/Cr date -2 jhon opening Bal 400 Cr -2 jhon transection 1 100 500 Cr 2016-01-06 00:00:00.000 -2 jhon transection 2 100 600 Cr 2016-01-07 00:00:00.000 -2 jhon transection 1 200 800 Cr 2016-01-08 00:00:00.000 -2 jhon transection 2 200 1000 Cr 2016-01-08 00:00:00.000 -2 jhon transection 2 100 900 Dr 2016-01-09 00:00:00.000 -2 jhon transection 1 100 800 Dr 2016-01-11 00:00:00.000 -2 jhon transection 2 700 1500 Cr 2016-01-14 00:00:00.000 -2 jhon transection 1 700 2200 Cr 2016-01-15 00:00:00.000 -3 smith opening Bal 500 Cr -3 smith transection 1 100 600 Cr 2016-02-03 00:00:00.000 -3 smith transection 2 100 700 Cr 2016-02-04 00:00:00.000 -3 smith transection 2 200 500 Dr 2016-02-05 00:00:00.000 -3 smith transection 1 200 300 Dr 2016-02-06 00:00:00.000 -3 smith transection 1 400 700 Cr 2016-02-07 00:00:00.000 -3 smith transection 2 400 1100 Cr 2016-02-08 00:00:00.000 - - - - -",LQ -"I need to find the index of the biggest number in the list (bitonic list) - -i wrote func that find the number (and correct i think) -and then try to find the index using index method - -but i get Error -when i try to debug it, i can see why it's going wrong, but i dont know how to fix it - -Thanks! - - - - def find_maximum(n): - b = find_max_number(n) - return n.index(b) - - def find_max_number(n): - middle = len(n)//2 - if len(n) == 1 : - return (n[0]) - if len(n)>2: - if n[middle] > n[middle-1] and n[middle] > n[middle+1] : - return (n[middle]) - if (n[middle-1] < n[middle]): - return find_maximum(n[middle:]) - else : - return find_maximum(n[:middle])",LQ -"I am writing a program that allows the user to type in a ""stop word"" (https://en.wikipedia.org/wiki/Stop_words) and returns which language that stop word is contained within. The program is crashing, I almost said inexplicably, but I am no expert at C so I'm sure there is an explanation. I'm here because I cannot figure it out. - -I hate to post my entire code, but I really don't know where my problem lies, and I want to supply you with replicable code. Here is my code followed by an example stop word file. - -#StopWords.c - - #include - #include - #include - #include - #include - - typedef struct - { - char languageName[60]; - //FILE fp; - char stopwords[2000][60]; - int wordcount; - } LangData; - - typedef struct - { - int languageCount; - LangData languages[]; - } AllData; - - AllData *LoadData(char *); - - int main(int argc, char **argv) - { - AllData *Data; - Data = LoadData(argv[1]); - char word[60]; - - //Get word input from user - printf(""Enter a word to search: ""); - fgets(word, 60, stdin); - - //Search for word and print which languages it is found in. - int i = 0; - int k = 0; - int found = -1; - while(i < Data->languageCount) - { - while(k < Data->languages[i].wordcount) - { - if(strcmp(word, Data->languages[i].stopwords[k]) == 0) - { - found = 0; - printf(""Word found in %s"", Data->languages[i].languageName); - k++; - } - } - i++; - } - - if(found == -1) - printf(""Word not found""); - - return 0; - } - - AllData *LoadData(char *path) - { - //Initialize data structures and open path directory - int langCount = 0; - - DIR *d; - struct dirent *ep; - d = opendir(path); - - //Checks whether directory was able to be opened. - if(!d) - { - perror(""Invalid Directory""); - exit(-1); - } - - // - // Only executed if directory is valid. - // v v v v v v v v v v v v v v v v v v - - //Count the number of language files in the directory - while(readdir(d)) - langCount++; - - //Account for ""."" and "".."" - //langCount = langCount + 1; - langCount = langCount - 2; - - //Allocate space in AllData for languageCount - AllData *data = malloc(offsetof(AllData, languages) + - sizeof(LangData)*langCount); - data->languageCount = langCount; - - int i = 0; - int k = 0; - //Initialize Word Counts to zero for all languages - for(i = 0; i < langCount; i++) - { - data->languages[i].wordcount = 0; - } - - //Reset the directory in preparation for reading names - rewinddir(d); - - //Get name of language for each file - i = 0; - while((ep = readdir(d)) != NULL) - { - if (!strcmp(ep->d_name, ""."") || !strcmp(ep->d_name, "".."")) - { - //Filtering ""."" and "".."" - } - else - { - int size = strlen(ep->d_name); - strcpy(data->languages[i].languageName, ep->d_name); - data->languages[i].languageName[size - 4] = '\0'; - i++; - } - } - - //Reset the directory in preparation for reading data - rewinddir(d); - - //Copy all words into respective arrays. - char word[60]; - - i = 0; - k = 0; - int j = 0; - while((ep = readdir(d)) != NULL) - { - if (!strcmp(ep->d_name, ""."") || !strcmp(ep->d_name, "".."")) - { - //Filtering ""."" and "".."" - } - else - { - FILE *entry; - char fullpath[100]; - memset(fullpath, 0, sizeof fullpath); - strcpy(fullpath, path); - strcat(fullpath, ""\\""); - strcat(fullpath, ep->d_name); - entry = fopen(fullpath, ""r""); - while(fgets(word, 60, entry) != NULL) - { - j = 0; - while(word[j] != '\0') - { - data->languages[i].stopwords[k][j] = word[j]; - j++; - } - k++; - data->languages[i].wordcount++; - } - i++; - fclose(entry); - } - memset(ep, 0, sizeof *ep); - } - - return data; - } - -#english.txt - - consider - seven - without - know - very - via - you'll - can't - that - doesn't - getting - hereafter - whereas - somewhat - keeps - soon - their - better - awfully - non - ever - but - it's - got - within - hello - above - came - seems - appreciate - nd - particularly - especially - useful - when - never - need - be - here - yourselves - alone - we're - down - able - whose - going - perhaps - didn't - really - want - twice - there - yours - used - against - gotten - ltd - wonder - concerning - actually - only - were - anything - hadn't - thru - sometimes - various - first - it - overall - between - onto - won't - best - about - indicates - gets - over - saying - ought - according - hence - let - serious - everywhere - there's - nine - mean - has - ex - a - than - c's - necessary - following - around - tends - still - if - yes - these - uses - secondly - t's - am - changes - up - each - available - otherwise - seen - nobody - seeming - outside - apart - cause - off - thereafter - could - hereby - new - specify - get - fifth - sent - toward - during - sorry - another - i'll - hopefully - should - anyhow - keep - for - welcome - aren't - etc - thanks - vs - insofar - whole - happens - whereupon - isn't - seem - relatively - near - despite - plus - meanwhile - they'll - look - eg - greetings - whereafter - i'm - self - selves - almost - un - did - inner - oh - after - four - five - follows - com - nearly - some - say - like - later - further - being - somehow - beforehand - you - think - his - ones - aside - forth - its - however - novel - rather - name - does - again - both - nothing - what - right - formerly - accordingly - allows - theres - please - thats - will - towards - sub - they're - well - thereby - possible - entirely - a's - had - among - probably - c'mon - quite - th - let's - regarding - clearly - beside - until - besides - at - might - less - the - causes - where's - doing - howbeit - contains - respectively - and - thereupon - somewhere - ain't - same - wouldn't - haven't - took - whence - others - namely - any - before - certainly - willing - although - else - unlikely - use - those - throughout - she - so - along - merely - we'd - using - no - where - everybody - once - usually - asking - not - therein - least - it'd - someone - anyway - under - you're - maybe - particular - because - out - downwards - looks - rd - saw - appropriate - theirs - definitely - furthermore - whenever - qv - you've - wherever - next - knows - gone - instead - who's - do - somebody - comes - shouldn't - wants - more - as - inasmuch - seriously - come - an - known - are - nevertheless - inward - thoroughly - anybody - amongst - far - either - something - considering - described - them - most - moreover - last - regardless - regards - us - sup - per - herein - seeing - already - they - your - while - course - thank - by - tell - here's - becoming - having - he - mainly - help - okay - our - other - unfortunately - often - behind - everything - nor - ours - don't - see - obviously - whither - himself - reasonably - take - wasn't - thanx - therefore - now - enough - across - would - taken - two - then - or - which - placed - they've - one - specifying - former - it'll - have - sometime - believe - with - sure - shall - such - that's - they'd - from - every - co - how - was - ok - on - liked - truly - exactly - seemed - given - been - indicated - try - gives - latter - unless - corresponding - likely - anywhere - weren't - thorough - cant - except - anyone - currently - second - go - everyone - third - can - too - beyond - my - anyways - specified - we've - tries - wish - hasn't - noone - sensible - thus - became - said - elsewhere - to - brief - we - since - herself - him - whom - needs - i've - would - much - ask - you'd - goes - who - inc - hardly - cannot - done - this - thence - whereby - viz - neither - myself - presumably - themselves - immediate - whoever - uucp - value - whatever - appear - old - latterly - itself - lately - also - even - together - few - ourselves - went - yourself - six - provides - just - of - hereupon - nowhere - hi - contain - many - followed - her - wherein - he's - become - unto - though - indicate - may - is - allow - in - none - becomes - upon - afterwards - et - i - what's - normally - mostly - zero - we'll - example - edu - several - always - through - que - three - all - way - associated - containing - indeed - whether - i'd - couldn't - why - trying - own - lest - below - ignored - yet - kept - hither - re - little - looking - eight - me - must - ie - consequently - hers - away - certain - tried - says - different - into - -When I run the program (I am using Windows, sue me) this is the command I would type: - -StopWords C:\Users\Name\Desktop\Stop_Words_Directory - -The parameter is simply a path to the directory in which the language files (e.g. english.txt) are located. - -I apologize again for the mountain of code, but I am lost here and would be extremely grateful if someone can help.",LQ -"I am trying to write a numpy array to a text file. But it deos not work. My problem follows. - -I am trying to get the RGB pixel values of a picture using `matplotlib.image` and save the values obtained from my program to some file for future use. - -The values are returned in the form of an array, which I tried to write to a text file using the following code. But the file does not open. Nor does it show an error message. - - import matplotlib.pyplot as plt - import matplotlib.image as mpimg - import numpy as np - - img=mpimg.imread('kitten5.jpeg') - print(img) - - f=open('kitten.dat','w') - f.write(img) - f.close() - - imgplot=plt.imshow(img) - plt.show() - -Can someone help? It is not mandatory that the data has to be saved to a text file alone. Other suggestions are equally welcome. ",LQ -"In the following code, I want to push new elements to JSON array: - - var temp = []; - for(var i in resultDb){ - temp.push({'ID':resultDb[i].ID}); - temp.push({'Label':resultDb[i].Label}); - temp.push({'User':[{'Name':resultDb[i].Name , 'ScreenName':resultDb[i].ScreenName}]}); - temp.push({'TDate':resultDb[i].TDate}); - } - - for(var i in temp){ - console.log(temp[i].User.ScreenName); - } - -The result that I got is `Cannot read property 'ScreenName' of undefined`. The problem specifically is with `User` but the others are fine; they can be printed.",LQ -"override func viewDidAppear(animated: Bool) { - - if let vid = self.selectedVideo { - - self.titleLabel.text = vid.videoTitle - self.descriptionLabel.text = vid.videoDescription - - let width = self.view.frame.size.width - let height = width/320 * 180 - - let videoEmbedString = """" - - self.webView.loadHTMLString(videoEmbedString, baseURL: nil) - } - - -I have problems on the last line: -fatal error: unexpectedly found nil while unwrapping an Optional value -(lldb) ",LQ -"I am trying to get a path for my xml file. -i got one string with the `.exe` file- -`string exe_location = System.Reflection.Assembly.GetExecutingAssembly().Location;` -and another string to contain the resault- -`string xml_location = exe_location.Remove(exe_location.Length, -11);` -and when im running the code, the debugger suddenly says: ""_Count cannot be less than zero.\r\nParameter name: count_"" -im not sure how i managed to fail with this simple mission. any ideas? ",LQ -"Hi I need some help with my c++ phising code. I got it to work but not as what i intended. When I run the code it scans my text file i inputted and only output one of the words in the text file that match the array in my code and when i add other words to the text file that is in the array it gives me a error. - - - - #include - #include - #include - #include - - - #define SIZE 30 - using namespace std; - - - - const char *Phish[SIZE] ={""Amazon"",""official"",""bank"",""security"", - ""urgent"",""Alert"",""important"",""inform ation"", ""ebay"", ""password"", ""credit"", ""verify"", - ""confirm"", ""account"",""bill"", ""immediately"", ""address"", ""telephone"",""SSN"", ""charity"", - ""check"", ""secure"", ""personal"", ""confidential"", - ""ATM"", ""warning"",""fraud"",""Citibank"",""IRS"", ""paypal""}; - - int point[SIZE] = {2,2,1,1,1,1,2,2,3,3,3,1,1,1,1,1,2,2,3,2,1,1,1,1,2,2,2,2,2,1}; - int totalPoints[SIZE]; - - void outputResults(); - - int main(void) - { - FILE *cPtr; - char filename[100]; - char message[5000]; - char *temp[100]; - int i; - int counter=0; - int words=0; - char *tokenPtr; - - cout << ""Enter the name of the file to be read: \n""; - cin >> filename; - - if ( (cPtr = fopen(filename,""rb"")) == NULL) - { - cout <<""File cannot be opened.\n""; - } - else - { - fgets(message, 5000, cPtr); - tokenPtr = strtok(message, "" ""); - temp[0] = tokenPtr; - while (tokenPtr!=NULL) - { - for(i=0; i< SIZE; i++) - { - if(strncmp(temp[0], Phish[i], strlen(Phish[i]))==0) - { - totalPoints[i]++; - break; - } - - tokenPtr =strtok(NULL, "" ""); - temp[0] = tokenPtr; - words++; - - } - outputResults(); - - cout << ""\n""; - return 0; - - - } - } - } - void outputResults() - { - int i; - int count =0; - int a; - cout<Category -
    -
      -
    1. - Mac / Macbooks - (165) -
    2. -
    3. - iPhone - (459) -
    4. -
    5. - iPad - (221) -
    6. -
    7. - Watch - (129) -
    8. -
    9. - iPod - (85) -
    10. -
    11. - More - (69) -
    12. -
    -
    -i want to have xpath from this code till 'More' but there are other li and a tag too below this code, my code is selecting those li and a tags too. help me find the xpath of this expression",LQ -"are these different or do the produce the same result? - - struct command - { - char * const *argv; - }; - -nr 2 which also looks like a pointer to a pointer - - struct command - { - const char **argv; - }; - -Is there a difference or are both pointer to a pointer?",LQ -"Im having some trouble with visual studio as it says it wont compile. I cant figure out what the problem is it says something like it can't convert from void to bool even though they're is no 'bool'. Here is my code: - - using System; - - namespace ConsoleApplication14 - { - class Program - { - static void Main(string[] args) - { - Console.WriteLine(myFunction(14)); - } - - public static void myFunction(int x) - { - return x + 2; - } - } - -Please help me!! -",LQ -"what is the difference when we use 200 response code for a forbidden page with an error message saying 'access denied' instead of using 403 response code? - -are there any security implications of this -",LQ -"is there any way to call a php file inside an HTML document without using an input tag. I am trying to display some results of my database (as a table) using the form tag (file2.php) but I realised that the only way to display the results is to have an input tag inside the form tag. Is there any way to simply display the results in my html website without using inputs? - - My code is - --- - - - - - - - - - - My file2.php is - --- - - - SUBMISSION DATE/TIME - SYS - DIA - PULSE - WEIGHT - ""; - - while ($row = mysql_fetch_array($result)){ - echo """"; - echo """" . $row['SUBTIME'] . """"; - echo """" . $row['SYS'] . """"; - echo """" . $row['DIA'] . """"; - echo """" . $row['PULSE'] . """"; - echo """" . $row['WEIGHT'] . """"; - echo """"; - } - - if(!mysql_query($sql)){ - die('Error:' .mysql_error()); - } - - mysql_close(); - ?>",LQ -"I am trying to save and load a Javascript object of the `{'foo':123}` type in localStorage. I have hit a strange behaviour. - - localStorage .setItem ('names', null); - - alert (""names is:"" + localStorage .getItem ('names')); - - for (var n in localStorage .getItem ('names')) - { - alert (""#"" + n + ""#""); - } - -This gives the following alerts - - names is:null - #0# - #1# - #2# - #3# - -WTF?",LQ -"I have 14 columns (A-N) in a CVS file I am looking to to find how many patients(303 in total) have 0 signs for heart disease this would be in column 14(N) anything above 0 would be counted as ill patients and those with 0 are healthy. - -From what I have in my code so far is this ( i know I am more than likely doing this wrong so please correct me if I made a mistake) - - import csv - import math - with open(""train.csv"", ""r"") as f: - #HP is healthy patient IP is ill patients - for c in f.read()14: - chars.append(c) - num_chars = len(chars) - num_IP = 0; - num_HP = 0; - for c in chars: - if c = >0 - num_IP += 1 - if c = <=0 - num_HP += 1",LQ -"create or replace trigger fineCalc AFTER UPDATE ON book_issue for each row -when ((new.date_of_return-old.date_of_issue)>7) -declare -rcpt_no number; -s_id char(10); -begin -if :old.card_id in (select card_id from STUDENT_BOOK_ISSUE) -then -select max(receipt_no) into rcpt_no from fine; -select student_id into s_id from STUDENT_BOOK_ISSUE sbi where sbi.card_id=:old.card_id; - - insert into fine values( rcpt_no+1,((:NEW.date_of_return-:OLD.date_of_issue-7)*5),s_id); -end if; -end;",LQ -"My angular controller's function looks like: - - $scope.selectinteresteduser= function(Id){ - $scope.selecteduserid=Id; - } - $scope.sendMessageToEmployeer = function($scope.selecteduserid) { - - alert($scope.selecteduserid); - } - -I want to pass the value of $scope.selecteduserid to sendMessageToEmployer function. How to do it? I am blank :( - -Thanks in advance -",LQ -"i tried this but did not work - - -Redirect 301 /cgi-sys/suspendedpage.cgi/ http://www.domain.com/ - -is there a way to redirect it?",LQ -"I have vlc player in Ubuntu and I install visual basci 6 using wine . -now I want to add vlc player or any media plyaer to vb6 but i don't know how to do it -could you please help me to solve these problem - -",LQ -"I want to ask the user to input only intiger, which will be stored in a variable,, and when user inputs a string, then ask again to input a number, not string. -Thanks -",LQ -"this is a repost [get the group expression portion of a matching expression][1], which was erroneously, but undestandingly marked as duplicate. what i am trying to obtain is the portion of the regular expression, not the portion of the matching string. - -contents of previous post: - -given the var `expression = /(a.)|(b.)|(c.)/;`, to match the `var value = ""axx""`, i would like to be able to get the portion of `expression` that matched the `value`, in this case, `(a.)` - - - [1]: http://stackoverflow.com/questions/36574566/get-the-group-expression-portion-of-a-matching-expression",LQ -I have done the configuration on aws I'm able to access yourdomain.com(For example) but not able to access http://www.yourdomain.com and https://www.yourdomain.com.? can some one help me ASAP.,LQ -" import java.util.HashMap; -import java.util.IdentityHashMap; -import java.util.Map; - - -public class IdentityHashMapExample { - public static void main(String args[]){ - - // Created HashMap and IdentityHashMap objects - - - Map hashmapObject = new HashMap(); - - Map identityObject = new IdentityHashMap(); - - - - - - // Putting keys and values in HashMap and IdentityHashMap Object - - - hashmapObject.put(new String(""key"") ,""Google""); - - hashmapObject.put(new String(""key"") ,""Facebook""); - - - - identityObject.put(new String(""identityKey"") ,""Google""); - - identityObject.put(new String(""identityKey"") ,""Facebook""); - // Print HashMap and IdentityHashMap Size : After adding keys - - - System.out.println(""HashMap after adding key :""+ hashmapObject); - System.out.println(""Getting value from HashMap :""+ hashmapObject.get(""key"")); - - - System.out.println(""IdentityHashMap after adding key :""+ identityObject); - // why get(key) method return the null value in case of identityHash Map - System.out.println(""Getting value from IdentityHashMap :""+ identityObject.get(""identityKey"")); -} -}",LQ -"I found javascript I like to use in my wordpress website but it's doesn't work... Here is the link to the script: http://jsfiddle.net/j08691/fs6Mb - -Here is how I tried to write it: - - - - - - - - - - - -

    sony sensor 2.1mp

    - - - - - - - -What do I need to change in the script to make it work? - -My actual goal is to make the numbers bigger without writing in the text so any other ideas will be welcome...",LQ -"I have a variable pushing a word into an array. When I print this array onto a website the word starts with a comma in front! - - var bar = [""""]; - function myFunction2() { - bar.push('pubs'); - document.getElementById(""demo"").innerHTML = bar; //Prints on website - } -And the result printed on the website is: ,pubs - -Thanks for any help! -",LQ -"I need to save the user selected text to the db.I tried 3 different ways but all of them return null for the selected -value. value1 or value2 or value3 returns null. What I am doing to wrong here ? - -
    - @foreach (var reason in Model.CorrectionReasonsList) - { - - } -
    - var value = ''; - - var reasonsSelect = '""; - $(nTd).html(reasonsSelect); - - - var value1 = $('#reasonsList:selected').val(); - var value2 = $('#reasonsList:selected').find('option:selected').text(); - var value3 = $('#reasonsList:selected').text(); - -",LQ -"I am currently studying about REST interfaces for directory services, i have a great confusion on RESTful interfaces . when can we say that the design is completely RESTful or not?",LQ -this is the first time i deal with big data and use cluster. In order to distribute the bytes among the slaves nodes i read that it is easy to use the HDFS with apache spark. how to create HDFS? ,LQ -"I am trying parse Web Page. part of that page generated via AJAX, -WebClient.DownloadString i can get whole HTML except that code which is generated via AJAX? can you someone help me please? - -my code is: - - var client = new WebClient(); - client .Headers.Add(HttpRequestHeader.UserAgent, ""UserAgent,Mozilla/5.0 (Windows NT 5.1; rv:14.0) Gecko/20100101 Firefox/14.0.1""); - client.Headers.Add(HttpRequestHeader.Cookie, ""USER_PW= xxxxxxxxx; PHPSESSID= xxxxxxxxx""); - var html = client.DownloadString(""string.example.com""); - -i need list of vacancies... - -thank you so much",LQ -" i want to get two parameters[a,b] in [setpoints] function from the form and use it in paintcomponent to draw with.but the problem is that two variables is no accessible by the whole panel.it is only accessible by [setpoints] function - -Here is the code of the panel: - -public class shape extends javax.swing.JPanel { - - public int a; - public int b; - - public shape() { - initComponents(); - - } - public void setpoints(int x0,int y0) - { - this.a=x0; - this.b=y0; - - } - - @Override - protected void paintComponent(Graphics g) { - super.paintComponent(g); - - g.setColor(Color.blue); - g.drawLine(a, b, a,b); - - } -} - ",LQ -"I can use the command ""netsh interface ip show joins"" in cmd to show multicast group under each interface. But I really don't know how to add a group to a -interface, like adding a IP address 239.39.188.188 to ""Interface 8: VirtualBox Host-Only Network"". The simplest way would be appreciated. - - - - Interface 3: Ethernet - Scope References Last Address - ---------- ---------- ---- --------------------- - 0 0 Yes 224.0.0.1 - - Interface 1: Loopback Interface - Scope References Last Address - ---------- ---------- ---- --------------------- - 0 2 Yes 239.255.255.250 - - Interface 8: VirtualBox Host-Only Network - Scope References Last Address - ---------- ---------- ---- --------------------- - 0 0 Yes 224.0.0.1 - 0 1 Yes 224.0.0.251 - 239.39.188.188 // this is what I want to add - - -Btw, I tried with some methods, like opening UDP socket and setting IP_ADD_MEMBERSHIP (http://stackoverflow.com/questions/18503464/how-to-add-my-host-to-multicast-group). Also, I tried with a command on linux ""ip maddr [ add | del ] MULTIADDR dev STRING"" But all of them are failed.",LQ -"I'm writing a script which takes row from DB and iterate over the rows. - -In MySQL I would do: - - import MySQLdb - db_mysql=MySQLdb.Connect(user=...,passwd=...,db=..., host=...) - cur = db_mysql.cursor(MySQLdb.cursors.DictCursor) - cur.execute (""""""SELECT X,Y,Z FROM tab_a"""""") - for row in crs.fetchall () : - do things... - -But I don't know how to do it in PostgreSQL as PostgreSQL doesn't have `cursors`. -Basicly this question could be how to translate the above MySQL code to work with PostgreSQL. - -This is what I have so far. - - import pg - pos = pg.connect(dbname=...,user=...,passwd=...,host=..., port=...) - pos.query(""""""SELECT X,Y,Z FROM tab_a"""""") - -How do I iterate over this query results?",LQ -"I want to create table depending on user input value. But of max 7 column with first column as name of row, when user enters 9 value then it should create next table with two column. Then to those table i am giving value later in the prog from some computation. - -I tried this code but getting error - - vr={} - num=0 - for num in range(1,k): - print site_count - print 'num is',num - - vr[str(num)]=document.add_table(rows=13, cols=(7)) - print vr['1'] - - for num in range(1,k+1): - vr['num'].cell(1, 0).text='Subscribed BW' - vr['num'].cell(2, 0).text='Peak LAN' - vr['num'].cell(3, 0).text='Peak WAN-IN' - vr['num'].cell(4, 0).text='Peak WAN-OUT' - vr['num'].cell(5, 0).text='Recommended BW Capacity' - vr['num'].cell(7, 0).text='Peak Compression' - vr['num'].cell(9, 0).text='Optimized Traffic' - vr['num'].cell(10, 0).text='Optimized Traffic%' - vr['num'].cell(12, 0).text='Key Applications' - vr['num'].style ='TableGrid' - - **ERROR as:** vr['num'].cell(1, 0).text='Subscribed BW' -KeyError: 'num' - -Is there any other solution ",LQ -"For a school project i need to encrypt a random Java String, for the beginning ""test"", with the Caesar-Code (Every letter of the alphabet is replaced with the one that is 3 places ahead, a -> c, b -> d and so on). - -So my question is: -How can i make this happen using a jTextField (where the String to be encrypted is written) and a jButton to fire of the encyrption function ? - -for me it is more important to know how i can convert the String to Individual letters than the enycrption itself because i think thats not that hard to get so i can possibly do that by myself. - -Thx for help :) ",LQ -"I dont know how to write syntaq sql.. -for example -SELECT username FROM login WHERE username='select usr from employee where status='Activ'; - -those are bad/error. -how to write well ? -",LQ -"Basically in this website you can get credits and buy stuff with them. If you keep the credits in your bank, you get 0.12% added daily. -[Picture to understand this.][1] -I wanted to code a quick program to calculate this but I need help, here's my code. - - import java.util.Scanner; - - public class project { - public static void main(String[] args){ - Scanner input = new Scanner(System.in); - - System.out.println(""-------------------------""); - System.out.println(""| NextGenUpdate Credits |""); - System.out.println(""-------------------------""); - System.out.println(""Credits: ""); - double credits = input.nextDouble(); - System.out.println(""Days: ""); - int days = input.nextInt(); - - int total = //DON'T KNOW WHAT TO PUT HERE - - System.out.println(""You will have have "" + total + "" credits in "" + days + "" days.""); - - } - } - - [1]: http://i.stack.imgur.com/0NFEJ.png -",LQ -"getting a Json Object from a rest web service i get the data from the object and i want to show it in a tableview - -`class TableViewController1: UITableViewController { - var nomProduit = [""ok""] - var prixProduit = [""""] - var vt1 : String? - var vt2 : String? - - var i : Int! - var compteur1:Int! - var resultat1:NSArray? - var x : AnyObject? - - - override func viewDidLoad() { - - - super.viewDidLoad() - // \(detectionString) - let str:String = ""http://vps43623.ovh.net/yamoinscher/api/products/6194005492077"" - let url = NSURL(string: str)! - - let task = NSURLSession.sharedSession().dataTaskWithURL(url) { (data, response, error) -> Void in - - - - - if let urlContent = data { - - do { - - let jsonResult = try NSJSONSerialization.JSONObjectWithData(urlContent, options: NSJSONReadingOptions.MutableContainers) - - - self.resultat1 = jsonResult[""meme_categorie""] as? NSArray - - self.compteur1 = self.resultat1!.count - print(self.compteur1!) - //self.value = (compteur1 as? Int)! - - for self.i=0 ; self.i < self.compteur1! ; self.i = self.i+1 { - if let aStatus = self.resultat1![self.i] as? NSDictionary{ - self.vt1 = aStatus[""libelle_prod""]! as? String - self.nomProduit.append(self.vt1!) - self.vt2 = aStatus[""prix""]! as? String - self.prixProduit.append(self.vt2!) - //print(self.nomProduit[self.i]) - - - } - - } - - - } catch { - - print(""JSON serialization failed"") - - } - - - } - - - } - - task.resume() - - - }` - - -Then My problem is that this array stays nil `self.prixProduit.append(self.vt2!)` - -here is the rest of my code - -override func numberOfSectionsInTableView(tableView: UITableView) -> Int { - return 1 - } - - override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { - - return 17 - } - - - override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { - - let cell = tableView.dequeueReusableCellWithIdentifier(""cell1"", forIndexPath: indexPath) as! customCell1 - - // cell.PrixSim.text = nomProduit[indexPath.row] - - - print(self.nomProduit[0]) - - - - return cell - }",LQ -"

    I receive HPE_INVALID_HEADER_TOKEN on a certain page using request module. From what I've found on Google, this is caused by an incorrect / malformed server response, however the latter is not under my control. Can I configure request to ignore invalid headers or just give me the whole raw response for processing?

    -",HQ -"

    Let's say I've got the following code

    - -

    - <div class=""footer""> - <div>Foo</div> - </div> -

    - -

    How can I change .footer from a div element to a footer element?

    - -

    That is, if I have the cursor in div I'm looking for a keyboard shortcut that selects the opening and closing tags of an element. I believe I've used emmet to do this before in Sublime, but I can't seem to find similar functionality in Code. (Ideally this would work in JSX files too...)

    -",HQ -"

    I've got a bit of Javascript that I only want to include on certain pages in my Phoenix application.

    - -

    Right now I've got the Javascript inside a script tag in myapp/web/templates/post/form.html.eex.

    - -

    I understand that I can move the JavaScript to web/static/js/app.js ...but I don't want to include the Javascript on every page (it's only required on 2 specific pages).

    - -

    What's the best way to load this section of Javascript on certain pages in my application without duplication the code and violating the DRY principle?

    -",HQ -"

    Since the Map already shows the user location (with IsShowingUser) I just want to zoom to this location. Is this easily possible or do I need to get the location on every platform, since I don't find any GeoLocation object. Only the GeoCoder... -Is this not a common usecase to zoom to users position?

    -",HQ -"Is there a way in C++ to generate code (at compile time) which looks a bit like: - -T Func(T t){ -if (sizeof(t) == 2){ - return X(t); -} -Else if( size of(t) == 4){ - return Y(t); -} -} - -(Where T is either int32 or int16) - -So at run-time i can call: - -Func(_myInt) - -And the code will just compile down to either X(_myInt) or Y(_myInt). - -",LQ -"I need someone help me about Ruby on Rail: -I has been saw this function about: -get '/:key' do |key| - .and I want to know what it's use to. Thanks everyone",LQ -"When ever i run the bash script i encountered this problem. -./LRU.sh: line 121: syntax error near unexpected token `fi' i have no idea why. Kindly need your help.Below is my code. - - #!/bin/bash - - declare -i numOfPageRRef=0 - declare -i numOfFrames=$1 - declare -i a=0 - declare -i k=0 - declare -i c=0 - declare -i q - declare -i c1=0 - - - - OIFS=$IFS - IFS=',' - read line < Input2.csv - - for val in $line - do - pageRef[$numOfPageRRef]=$val - - ((numOfPageRRef++)) - done - #echo ${pageRef[@]} - - q[$k]=${pageRef[$k]} #chck here - echo ${q[$k]} - ((c++)) - ((k++)) - - - for((i=1;iI would like to know what the recommended way is to organize interface definitions in typescript. In my project I have many different classes. Each class can have a configuration interface. Currently I have gathered all of these interface definitions into one file Interfaces.ts and reference the file from various locations.

    - -

    Is there a better way?

    - -

    Example: https://github.com/blendsdk/blendjs/blob/devel/blend/src/common/Interfaces.ts

    -",HQ -"

    I just enabled instant run for my project. Building and uploading is faster but my app startup time has increased from a few hundreds of milliseconds to a few seconds.

    - -

    I'm generally happy with that compromise. I just wanted to know if I was the only one noticing this and if there can be any chance to optimize that too ?

    -",HQ -"

    I've seen people show diffs of their code from other forks to illustrate a point in github like on this pull request thread: https://github.com/osTicket/osTicket/pull/3035

    - -

    I think it would be really helpful to show the diff of the commit from the current branch. How do you do it?

    -",HQ -"

    Is there any Swagger UI alternatives ? I already know:

    - - -",HQ -"

    Is it possible to set the working directory when launching a container with Kubernetes ?

    -",HQ -"

    I'm trying to query the list of CITY names from table - STATION that do not start with vowels with results that cannot contain duplicates. -The table just has id, city, population

    - -

    This is the query that I've written

    - -
    SELECT DISTINCT CITY FROM STATION 
    -WHERE CITY RLIKE '[^bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ].*';
    -
    - -

    This gives a wrong answer. What am I doing wrong here?

    -",HQ -"

    I'd love to have a way of IntelliJ letting me fold for loops and if/else statements. But, I can't seem to find a way to do it automatically. I know you can use the //region and //endregion comments, or that you can do it manually with Ctrl+Shift+period, but is there a way to avoid all that and have it fold like methods or classes, without doing all that other stuff?

    -",HQ -"

    I already showed my bottom sheet layout with its peek height set to 100dp. But how can I limit my bottom sheet to expand to 500dp only? This is my sample layout:

    - -
    <android.support.design.widget.CoordinatorLayout
    -android:id=""@+id/coordinator""
    -xmlns:android=""http://schemas.android.com/apk/res/android""
    -xmlns:app=""http://schemas.android.com/apk/res-auto""
    -android:layout_width=""match_parent""
    -android:layout_height=""match_parent"">
    -
    -<fragment xmlns:android=""http://schemas.android.com/apk/res/android""
    -    xmlns:tools=""http://schemas.android.com/tools""
    -    android:id=""@+id/map""
    -    android:name=""com.google.android.gms.maps.SupportMapFragment""
    -    android:layout_width=""match_parent""
    -    android:layout_height=""match_parent""
    -    tools:context="".MapsActivity"" />
    -
    -<android.support.v4.widget.NestedScrollView
    -    android:id=""@+id/design_bottom_sheet""
    -    android:layout_width=""match_parent""
    -    android:layout_height=""match_parent""
    -    android:background=""#000000""
    -    app:behavior_hideable=""true""
    -    app:behavior_peekHeight=""100dp""
    -    app:layout_behavior=""android.support.design.widget.BottomSheetBehavior"">
    -
    -    <LinearLayout
    -        android:layout_width=""match_parent""
    -        android:layout_height=""wrap_content""
    -        android:orientation=""vertical"">
    -
    -        <TextView
    -            android:layout_width=""match_parent""
    -            android:layout_height=""100dp""
    -            android:layout_marginBottom=""5dp""
    -            android:background=""#e444ff"" />
    -
    -        <TextView
    -            android:layout_width=""match_parent""
    -            android:layout_height=""100dp""
    -            android:layout_marginBottom=""5dp""
    -            android:background=""#e444ff"" />
    -
    -        <TextView
    -            android:layout_width=""match_parent""
    -            android:layout_height=""100dp""
    -            android:layout_marginBottom=""5dp""
    -            android:background=""#e444ff"" />
    -
    -    </LinearLayout>
    -
    -</android.support.v4.widget.NestedScrollView>
    -
    -<android.support.design.widget.FloatingActionButton
    -    android:id=""@+id/fab""
    -    android:layout_margin=""@dimen/activity_horizontal_margin""
    -    app:layout_anchor=""@+id/design_bottom_sheet""
    -    app:layout_anchorGravity=""top|right|end""
    -    android:layout_width=""wrap_content""
    -    android:layout_height=""wrap_content"" />
    -
    -</android.support.design.widget.CoordinatorLayout>
    -
    - -

    In addition to my question, how can I disallow the user from dragging the bottom sheet up and down?

    -",HQ -"I have small problem but I need your help. I have successfully inserted pictures into the DB therefore, I am tried to access those images through datagridview. Whenever I clcik dgv row/cell I need the picture(s) to appear in the picture box. here is my code. - - - - SqlConnection con = new SqlConnection(ConnectionString); - SqlDataAdapter da = new SqlDataAdapter(""SELECT * FROM Candidates WHERE CandidateID = '"" + dataGridViewCandidate.SelectedRows[0].Cells[0].Value.ToString() + ""'"", con); - DataTable dt = new DataTable(); - da.Fill(dt); - //dataGridViewCandidate.DataSource = dt; - byte[] binaryimage = (byte[])dt.Rows[0][1]; - Bitmap image; - using (MemoryStream stream = new MemoryStream(binaryimage)) - { - image = new Bitmap(stream); - } - EmployeePhoto.Image = image; - -The error I am getting is below; - - Unable to cast object of type 'System.DateTime' to type 'System.Byte[]' - -Thank you for your help.",LQ -"

    I have a java.util.Date object, or a java.util.Calendar object. How do I convert that to the right type in java.time framework?

    - -

    I have heard that we should now be doing the bulk of our business logic with java.time types. When working with old code not yet updated for java.time I need to be able to convert back and forth. What types map to java.util.Date or java.util.Calendar?

    -",HQ -"

    I built an ionic App and initially the transitions were slow. So, I opted for ionic-native-transitions plugin . Now that the app transitions became smoother I'm trying to apply these transitions for my ionic modals. -Below is the function I use to set my modal in ionic.

    - -
    function LoadFilter(){
    -$ionicModal.fromTemplateUrl('templates/filter.html', {
    -  scope: $scope
    -}).then(function(modal) {
    -  $scope.modal = modal;
    -  $scope.modal.show();
    -});
    -
    -$scope.closeFilter = function() {
    -  $scope.modal.hide();
    -};
    -
    -$scope.showFilter = function() {
    -  $scope.modal.show();
    -};
    -
    - -

    Any idea how to apply transtions to modals?

    -",HQ -"

    Currently I am facing a memory issue problem in building iOS app. I checked for Memory leaks using Instruments. I found that there is one kind of leaks that keeps on showing up named swift_slowAlloc, which I don't have idea about. An snippet of the error is given below.

    - -

    - -

    Another reason I think could happen is due to loading of several UIImages in my app. Just to provide a background, I take various portions of an original image in my app and do some processing on them. However, I don't need to keep the images for further calculations. I used autoreleasepool to release the UIImage; but I doubt that it is working. An example is given below:

    - -
       @autoreleasepool {
    -
    -        UIImage *imageResized = MatToUIImage(resized28);
    -
    -        // MARK: Send resized28 to CNN and get the output. Fill the dict then
    -
    -        NSString *CNNScore;
    -        CNNScore = [myclass CNNfloat:imageResized W1:W1 W2:W2 Wf1:Wf1 Wf2:Wf2 B1:B1 B2:B2 Bf1:Bf1 Bf2:Bf2];
    -
    -        imageResized = nil;
    -        xtn = [NSNumber numberWithInteger:xt];
    -        xbn = [NSNumber numberWithInteger:xb];
    -        ytn = [NSNumber numberWithInteger:yt];
    -        ybn = [NSNumber numberWithInteger:yb];
    -
    -        symbol = [NSString stringWithFormat:@""%@"", CNNScore];
    -        symtype = [NSString stringWithFormat:@""%@"", [scoreDic objectForKey: symbol]];
    -
    -        numberInDict = [NSString stringWithFormat:@""%i"", n];
    -
    -
    -        inToMaroof = [NSArray arrayWithObjects: xtn, xbn, ytn, ybn, symbol,symtype, nil];
    -
    -        [toMaroof setObject: inToMaroof
    -                     forKey: numberInDict];
    -        }
    -    }
    -
    - -

    Can someone suggest anything on this issue?

    -",HQ -"Hi I am executing this code to create user in my database. - - CREATE LOGIN john WITH PASSWORD = 'john123'; - GO - - USE mytestdb; - GO - CREATE USER [john] FOR LOGIN [john] - GO - ALTER USER [john] WITH DEFAULT_SCHEMA=[dbo] - GO - ALTER ROLE [db_datareader] ADD MEMBER [john] - GO - ALTER ROLE [db_datawriter] ADD MEMBER [john] - GO - GRANT EXECUTE ON SCHEMA::[dbo] TO [john] - GO - - -but I want to delete this my created user. how can I delete this. - - -Thank you in advance.",LQ -"

    I have such script

    - -
    setTimeout(function() 
    -{
    -    console.log(""Timeout"");
    -}, 1000 * 60);
    -
    - -

    When I run it and change system time back for one hour, the timeout not fires. If I change time forward for one hour, timeout works correctly.

    - -

    Time is changed by external program which makes call like ioctl( rtcFd, RTC_SET_TIME, &newTime);

    - -

    How to fix this problem?

    - -

    We use Node.js v0.10.15 on OpenWRT Attitude Adjustment

    - -

    Thank you

    -",HQ -"

    I want to get X-Dem-Auth in a header request with swift to stock that in my app.

    - -

    See the response :

    - -
    headers {
    -    ""Content-Length"" = 95;
    -        ""Content-Type"" = ""application/json; charset=utf-8"";
    -        Date = ""Fri, 15 Apr 2016 08:01:58 GMT"";
    -        Server = ""Apache/2.4.18 (Unix)"";
    -        ""X-Dem-Auth"" = null;
    -        ""X-Powered-By"" = Express;
    -
    -",HQ -"

    I have the following django model that contains JSONField:

    - -
    class RatebookDataEntry(models.Model):
    -    data = JSONField(blank=True, default=[])
    -    last_update = models.DateTimeField(auto_now=True)
    -
    -    class Meta:
    -        verbose_name_plural = 'Ratebook data entries'
    -
    - -

    And data field contains this json:

    - -
    {
    -    ""annual_mileage"": 15000, 
    -    ""description"": ""LEON DIESEL SPORT COUPE"", 
    -    ""body_style"": ""Coupe"", 
    -    ""range_name"": ""LEON"", 
    -    ""co2_gkm_max"": 122, 
    -    ""manufacturer_name"": ""SEAT""
    -}
    -
    - -

    Can I sort queryset by one of the data fields? This query doesn't work.

    - -
    RatebookDataEntry.objects.all().order_by(""data__manufacturer_name"")
    -
    -",HQ -"

    Imagine we have following piece of code:

    - -
    class A
    -  def create_server
    -    options = {
    -      name: NameBuilder.new.build_name
    -    }
    -    do_some_operations(options)
    -  end
    -end
    -
    - -

    To test such methods, I've used to use allow_any_instance_of:

    - -
    it 'does operations' do
    -  allow_any_instance_of(NameBuilder).to receive(:build_name)
    -  # test body
    -end
    -
    - -

    But docs advise us not to use it because of several reasons. How then avoid allow_any_instance_of? I've came to only one solution:

    - -
    class A
    -  def create_server
    -    options = {
    -      name: builder.build_name
    -    }
    -    do_some_operations
    -  end
    -
    -  private
    -
    -  def builder
    -    NameBuilder.new
    -  end
    -end
    -
    - -

    But with such approach code quickly becomes full of almost useless methods (especially when you actively using composition of different objects in described class).

    -",HQ -"I am trying to retrieve multiple records from a django database to display in a table on a webpage. - -This is my code so far... - - - class AdminView(TemplateView): - template_name = 'admin.html' - print(""hello world"") - def get(self, request): - template = 'admin.html' - data = str(Quiz.objects.all()) - admin = AdminForm(request.GET) - context = {""admin"": admin} - context['data'] = data - return render(request, template, context) - -This is the webpage so far... - - {% if request.user.is_authenticated%} - {% if request.user.username == ""teacher"" %} - - - - {% load staticfiles %} - - Admin - - - - {% include 'navbar.html' %} - - Admin Test - - {{ data }} - - - - {% endif %} - {% endif %} - - {% if not request.user.is_authenticated %} -

    Login Required

    - {% endif %} - - -What do you think is wrong with this code? How can I get it to display str?",LQ -"Yesterday I worded on visual composer and it was working great. But today no visual composer element is showing. I have checked by deactivating / deleting all the 3rd party plugins but still no imporovement. - -Any help?? **http://www.hycubetech.co.uk/** I tried anything I could try.. but nothing I could get.. -Need some wonder",LQ -"

    I recently changed from the Enthought Canopy Python distribution to Anaconda, which includes the Spyder IDE.

    - -

    In Canopy's code editor, it was possible to comment and uncomment lines of code by pressing the ""Cntrl+/"" shortcut key sequence. In Spyder I was unable to find an equivalent shortcut key in the introductory tutorial.

    - -

    Is there a shortcut key for commenting and uncommenting code in Spyder?

    -",HQ -"

    I want to rotate UIImage in clockwise direction. But my current code do not perform function accurate some time it rotate and some time its skip rotation. I want my UIImage will continuously rotate clockwise on my action button. -Here is my current code:

    - -
    imageView.image = imageView.image!.imageRotatedByDegrees(angle, flip: false)
    -angle = angle + 90
    -if angle > 360{
    -    angle = 0
    -}
    -
    -",HQ -" let startDate=NSDate().dateByAddingTimeInterval(-60*60*24) - let endDate=NSDate().dateByAddingTimeInterval(60*60*24*3) - - lblStart.text = i.startDate - -I want the startdate show in a label. How can i convert it to a string. - -Swift 7.3",LQ -"

    I inserted between two tables fields A,B,C,D, believing I had created a Unique Index on A,B,C,D to prevent duplicates. However I somehow simply made a normal index on those. So duplicates got inserted. It is 20 million record table.

    - -

    If I change my existing index from normal to unique or simply a add a new unique index for A,B,C,D will the duplicates be removed or will adding fail since unique records exist? I'd test it yet it is 30 mil records and I neither wish to mess the table up or duplicate it.

    -",HQ -"I have been assigned a task to retrieve information from files that were processed from raw mass spectrophotometry data (file.mzML). -These files have just "".data"" as extension and when I open them, I cannot recognize the language and therefore I cannot load them into R and work on them. - -The files with the .data extension are contained in this folder: - - ftp://ftp.pride.ebi.ac.uk/pride/data/archive/2015/11/PXD000299/ - -Could someone take a look at any of the files.data and tell me the language is in (e.g. F010439)? - -Thank you very much!",LQ -"

    I'm trying to learn Typescript. While I don't think it's relevant, I'm using VSCode for this demo.

    - -

    I have a package.json that has these pieces in it:

    - -
    {
    -  ""devDependencies"": {
    -    ""gulp"": ""^3.9.1"",
    -    ""jspm"": ""^0.16.33"",
    -    ""typescript"": ""^1.8.10""
    -  },
    -  ""jspm"": {
    -    ""moment"": ""npm:moment@^2.12.0""
    -  }
    -}
    -
    - -

    Then I have a Typescript class main.js like this:

    - -
    import moment from 'moment';
    -export class Main {
    -}
    -
    - -

    My gulpfile.js looks like this:

    - -
    var gulp = require('gulp');
    -var typescript = require('gulp-tsb');
    -var compilerOptions = {
    -                        ""rootDir"": ""src/"",
    -                        ""sourceMap"": true,
    -                        ""target"": ""es5"",
    -                        ""module"": ""amd"",
    -                        ""declaration"": false,
    -                        ""noImplicitAny"": false,
    -                        ""noResolve"": true,
    -                        ""removeComments"": true,
    -                        ""noLib"": false,
    -                        ""emitDecoratorMetadata"": true,
    -                        ""experimentalDecorators"": true
    -                      };
    -var typescriptCompiler = typescript.create(compilerOptions);
    -gulp.task('build', function() {
    -  return gulp.src('/src')
    -    .pipe(typescriptCompiler())
    -    .pipe(gulp.dest('/dest'));
    -});
    -
    - -

    When I run gulp build, I get the message: ""../main.ts(1,25): Cannot file module 'moment'.""

    - -

    If I use import moment = require('moment'); then jspm will work and bring in the module when I run the application, but I'm still receiving the build error. -I also tried:

    - -
    npm install typings -g
    -typings install moment --ambient --save
    -
    - -

    Instead of making the problem better though, it got worse. Now I get the above error on build as well as the following: ""../typings/browser/ambient/moment/index.d.ts(9,21): Cannot find namespace 'moment'.""

    - -

    If I go to the file provided by typings and add at the bottom of the file:

    - -
    declare module ""moment"" { export = moment; }
    -
    - -

    I can get the second error to go away, but I still need the require statement to get moment to work in my main.ts file and am still getting the first build error.

    - -

    Do I need to create my own .d.ts file for moment or is there just some setup piece I'm missing?

    -",HQ -"

    How can I measure execution time of query in MongoDB ? -I found Mongo-hacker plugin but it looks like it measure time of query including time of displaying all results. -In PostgreSQL I use Explain Analyze SELECT ... , but i didn't found any information about time in mongo's db.collection.find({smth}).explain()

    -",HQ -"

    I wonder if it is possible to do as the title said.

    - -

    For example let's say we are working on a Angular2 project and we want to avoid set the template as an external url in order to have less http requests. Still we don't want to write all the HTML within the component because maybe it's big enough or we want designers to work in different files than devs.

    - -

    So here is a first solution:

    - -

    File template.html.ts -Transform a file to .ts to something like this:

    - -
    export const htmlTemplate = `
    -   <h1>My Html</h1>
    -`;
    -
    - -

    Then in my component I can import it like this:

    - -
    import { Component } from 'angular2/core';
    -import {RouteParams, RouterLink} from 'angular2/router';
    -import {htmlTemplate} from './template.html';
    -
    -@Component({
    -  selector: 'home',
    -  directives: [RouterLink],
    -  template:  htmlTemplate,
    -})
    -
    - -

    Actually this works perfectly but you are loosing the IDE HTML intelligence so this is bad for the designer/dev that creates the HTML templates.

    - -

    What I'm trying to achieve is to find a way to import .html files and not .ts.

    - -

    So is it possible to import an .html file as a string in TypeScript?

    -",HQ -"

    If I had a compiled Golang program that I wanted to install such that I could run it with a bash command from anywhere on my computer, how would I do that? For example, in nodejs

    - -
    npm install -g express
    -
    - -

    Installs express such that I can run the command

    - -
    express myapp
    -
    - -

    and express will generate a file directory for a node application called ""myapp"" in whatever my current directory is. Is there an equivalent command for go? I believe now with the ""go install"" command you have to be in the directory that contains the executable in order to run it

    - -

    Thanks in advance!

    -",HQ -"

    Can anybody please explain in step by step manner, how can we remove # from URL in Aurelia

    -",HQ -"

    In a custom Cordova plugin, how can I config a specific .framework file in plugin.xml such that it will be added to the ""Embedded Binaries"" section in Xcode? -If that's not currently possible directly in plugin.xml, I'm open to alternative suggestions.

    -",HQ -"

    I have an indexed list of users in the JS object (not array). It's part of the React state.

    - -
    {
    -    1: { id: 1, name: ""John"" }
    -    2: { id: 2, name: ""Jim"" }
    -    3: { id: 3, name: ""James"" }
    -}
    -
    - -

    What's the best practice to:

    - -
      -
    1. add a new user { id: 4, name: ""Jane"" } with id (4) as key
    2. -
    3. remove a user with id 2
    4. -
    5. change the name of user #2 to ""Peter""
    6. -
    - -

    Without any immutable helpers. I'm using Coffeescript and Underscore (so _.extend is ok...).

    - -

    Thanks.

    -",HQ -"

    I have followed the helloword tutorial on http://kubernetes.io/docs/hellonode/.

    - -

    When I run:

    - -
    kubectl run hello-node --image=gcr.io/PROJECT_ID/hello-node:v1 --port=8080
    -
    - -

    I get: -The connection to the server localhost:8080 was refused - did you specify the right host or port?

    - -

    Why do the command line tries to connect to localhost?

    -",HQ -"

    Is it possible to use RPM or YUM or any other package manager in Linux, specifically CentOS, to install a package either already downloaded or from repo to a custom location without admin/root access?

    - -

    I tried building from sources, using cmake, configure, make, make install etc, but, it ended up having so many dependencies one after other.

    - -

    Or are there any better alternatives?

    -",HQ -"

    Run Liclipse 2.5.3 on Mac OS. I renamed my project. I lost all my run configurations. When i recreate one, it says the file exists. However there are no run configurations present.

    - -

    Where are the run configs stored

    -",HQ -"

    I have to send UDP packets to a WiFi module (provided with own AP) with no internet connection but when I connect the mobile with the AP, Android redirects my packets on the mobile data interface because it has got internet connection.

    - -

    I've used the code below to do my job but it seems not working on Android M.

    - -
    @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    -private void setWifiInterfaceAsDefault() {
    -    ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
    -
    -    NetworkRequest.Builder builder = new NetworkRequest.Builder();
    -    NetworkRequest networkRequest= builder.addCapability(NetworkCapabilities.NET_CAPABILITY_NOT_RESTRICTED)
    -            .addTransportType(NetworkCapabilities.TRANSPORT_WIFI)
    -            .build();
    -
    -    connectivityManager.requestNetwork(networkRequest, new ConnectivityManager.NetworkCallback());
    -}
    -
    - -

    I've also added

    - -
    <uses-permission android:name=""android.permission.CHANGE_NETWORK_STATE"" />
    -<uses-permission android:name=""android.permission.WRITE_SETTINGS"" />
    -
    - -

    on my AndroidManifest.xml and I ensured myself that Settings.System.canWrite(this) returns true but still nothing.

    - -

    Thanks in advance.

    -",HQ -"

    I have created a window using

    - -
    pygame.display.set_mode((width, height), 
    -                        pygame.OPENGL | pygame.DOUBLEBUF | pygame.RESIZABLE)
    -
    - -

    Later on in the app I want to be able to ask that window its width and height so I can decide how to process the mouse position.

    - -

    How do I access the dimensions of that pygame window elsewhere in the program? (event processing loop)

    -",HQ -"

    Building a cordova app with xwalk and it's no longer working.

    - -

    ANDROID_HOME=C:\Program Files (x86)\Android\android-sdk -JAVA_HOME=C:\Program Files\Java\jdk1.8.0_77 -Reading build config file: f:\source\Cutter\Canvasser\build.json -null -embedded -org.xwalk:xwalk_core_library:15+

    - -

    FAILURE: Build failed with an exception.

    - - - -

    BUILD FAILED

    - -

    Total time: 4.251 secs

    - -
    -

    Connection to http://127.0.0.1:8888 refused

    -
    - -

    Can anyone help? I don't understand why it's a maven repository which can't be found.

    -",HQ -"

    We are using Spring Boot for the application. In ApplicationConfig.java I have the below code

    - -
     @Bean
    -    public LocaleResolver localeResolver() {
    -        return new SmartLocaleResolver();
    -    }
    -
    - -

    and the SmartLocaleResolver.java is below

    - -
    public class SmartLocaleResolver extends SessionLocaleResolver {
    -
    -    @Override
    -    public Locale resolveLocale(HttpServletRequest request) {
    -        final String acceptLanguage = request.getHeader(""Accept-Language"");
    -        if (acceptLanguage.contains("","")) {
    -            String[] aheader = acceptLanguage.split("",[ ]*"");    
    -            for (String locale : aheader) {    
    -                if (ApplicationConstants.LOCALE.contains(locale)) {
    -                    locale.trim();
    -                    return Locale.forLanguageTag(locale);
    -                }
    -            }
    -        } else if (!acceptLanguage.contains("","") && !acceptLanguage.isEmpty()) {
    -            if (ApplicationConstants.LOCALE.contains(acceptLanguage)) {
    -                return Locale.forLanguageTag(acceptLanguage);
    -            }
    -        }
    -        return request.getLocale();
    -    }
    -}
    -
    - -

    and I have in my constants class the below to compare the value from header Accept-Language.

    - -

    public static final List LOCALE = Collections - .unmodifiableList(Arrays.asList(""en"", ""es""));

    - -

    I know in actual scenario the header will be like -Accept-Language : fr,es;q=0.8,en-us;q=0.6 but for testing purpose i'm passing it as below.

    - -

    Accept-language : fr,es,en

    - -

    The code is not complete yet, but i'm just testing from postman to see if the code picks up ""es"" as the locale and gives me the localized result.

    - -

    I don't have messages_fr.properties file but I have messages_es.properties so I expect if the application sets the locale from the below code, it would pick Locale as 'es' and give the values I want in Spanish. What changes I need to make here for the code to work?

    -",HQ -"

    No matter how I structure my .gitignore I can't seem to ignore app/app.iml via Android Studio 2.0.0.

    - -

    So far, I've tried ignoring all *.iml files per the github's standard Android Studio .gitignore template, as well as targeting the file directly..

    - -
    app/app.iml
    -*.iml
    -
    - -

    Anybody run into a similar issue with this specific file or other *.iml files? How did you resolve it?

    -",HQ -"

    When using the FormsApplication base class with a brand new Xamarin.Forms app using Caliburn.Micro, I end up with an empty navigation bar at the top of my screen. I assume it's being created by Caliburn.Micro somehow, because an out-of-the-box Xamarin.Forms app doesn't have that.

    - -

    Is there any way I can use Caliburn.Micro with Xamarin.Forms without this navigation bar?

    -",HQ -"

    All of the service fabric examples depict single-solution service fabric examples. This seems to go counter to the philosophy of microservices, where you want complete dependency isolation between your services. While you can manually follow this pattern, the more common practice is to enforce it by making each service it's own repository and solution/project.

    - -

    How do you manage and deploy service fabric services, and enforce service contracts (ServiceInferfaces) using multiple solutions (in multiple Git repositories)?

    - -

    E.g.

    - -
    Service Fabric Solution
    -      App1 - Customers
    -         - Service1 [Carts] From Other Solution
    -         - Service2 [LocationInfo]From Other Solution
    -         - Service3 [REST WebAPI for Admin] From Other Solution
    -      App2 - Products
    -         - Service4 [Status]From Other Solution
    -         - Service5 [Firmware]From Other Solution
    -         - Service6 [Event Stream] From Other Solution
    -
    -External Solution
    -   - Service1
    -External Solution
    -   - Service2
    -External Solution
    -   - Service3
    -
    -External Solution
    -   - Service4
    -External Solution
    -   - Service5
    -External Solution
    -   - Service6
    -
    - -

    1) As a developer, I want to check out and build all the current versions of apps/services. I want to fire up my Service Fabric project that manages all the manifests, and deploy it to my local dev cluster. I want to enforce the same service interfaces between solutions. I don't understand how you'd do this, because the application is external to the services.

    - -

    2) As a DevOps team, I want to automate pulling down the apps, building them and deploying to Azure.

    - -

    How do we ""enforce"" isolation via separate solutions, but make it easy to pull them together and deploy into the cluster, while also making it easy to make pipelines to deploy each cluster configured uniquely for DEV, QA, and PROD environments.

    - -

    What is the workflow/process/project structure to enable this? Is it even possible?

    -",HQ -"im doing a huffman compression in c++ using opencv, i already have the codes for the tones of grey, but im confused about what to do with it, is there a way to replace the values in the image? do I have to create other mat? -ps. My huffman codes are strings, do i need to change them?",LQ -"I want to create a matching card game and I have an issue in showing the images that suppose to be hidden. When I click on a card, the path of the image will show instead of the actual image. - - here is all the codes I have wrote: - - - - - - - - - - - - - - - - - - -
    - - - -",LQ -"I have string 20150410 121416 in c++ - -output- 20150410 12:14:16 - -how can i insert a colon to the string.Can anyone please help me out.",LQ -"

    I want to play local videos in crosswalk webview. I'm getting the video path from an intent opening my activity, so it could be stored internally or on sd card.

    - -

    Using this url file:///storage/emulated/0/Download/movies/movie.mp4 i get Failed to load resource: net::ERR_ACCESS_DENIED.

    - -

    Using input file dialog with URL.createObjectURL(file); it works. But because i know the path, i dont want to select it again manually. Setting the value of input file is forbidden.

    - -

    Creating a url using the path is also not possible, because it needs file or blob.

    - -

    Because of possible big filesize its not possible to temporarily copy it to sd card.

    - -

    This gives me file not found error:

    - -
    @Override
    -    public WebResourceResponse shouldInterceptLoadRequest(XWalkView view,
    -                                                          String url) {
    -        if(url.contains(""file:///storage"")){
    -            try {
    -                return new WebResourceResponse(""video/*"", ""UTF-8"", new FileInputStream(url));
    -            } catch (FileNotFoundException e) {
    -                e.printStackTrace();
    -            }
    -        }
    -            return super.shouldInterceptLoadRequest(view, url);
    -    }
    -
    - -

    also i have defined <uses-permission android:name=""android.permission.READ_EXTERNAL_STORAGE"" />

    - -

    other questions on stackoverflow asking for accessing assets, so i created this new question

    -",HQ -"I wanting to print - - 1 - 23 - 456 - 78910 - -in C# Console application, Can any one help in doing it for me",LQ -"

    I was exploring the sources of ASP.NET core on GitHub to see what kind of tricks the ASP.NET team used to speed up the framework. I saw something that intrigued me. In the source code of the ServiceProvider, in the Dispose implementation, they enumerate a dictionary, and they put a comment to indicate a performance trick :

    - - - -
    private readonly Dictionary<IService, object> _resolvedServices = new Dictionary<IService, object>();
    -
    -// Code removed for brevity
    -
    -public void Dispose()    
    -{        
    -    // Code removed for brevity
    -
    -    // PERF: We've enumerating the dictionary so that we don't allocate to enumerate.
    -    // .Values allocates a KeyCollection on the heap, enumerating the dictionary allocates
    -    // a struct enumerator
    -    foreach (var entry in _resolvedServices)
    -    {
    -        (entry.Value as IDisposable)?.Dispose();
    -    }
    -
    -    _resolvedServices.Clear();        
    -}
    -
    - -

    What is the difference if the dictionary is enumerated like that ?

    - -

    - -
    foreach (var entry in _resolvedServices.Values)
    -{
    -    (entry as IDisposable)?.Dispose();
    -}
    -
    - -

    It has a performance impact ? Or it's because allocate a ValueCollection will consume more memory ?

    -",HQ -"

    Is it possible to modify style of ""Pay with Card"" Stripe button? I've tried modifying by,

    - -
      -
    • adding a new class defined in external style sheet
    • -
    • modifying its own class of stripe-button in external style sheet
    • -
    • and editing it inline with style=""""
    • -
    - -

    But I cannot get the button to change its style.

    - -

    It looks like it might be possible with the custom integration instead of the simple integration (source: https://stripe.com/docs/checkout#integration-simple), but I was hoping there was something simpler.

    - -

    Button with default style:

    - -

    - -

    Does anyone have experience with this?

    - -

    (I'm integrating into Ruby on Rails if that makes any difference.)

    -",HQ -"Was trying to make a sorting program of integers entered by user and wanted it to take as many integer user wants, without first asking how many int he wanna sort , but while taking input it just crashes , - **basically the problem is it is not storing values in array** - - - import java.util.Scanner; - class apple { - public static void main(String[] args){ - Scanner scan = new Scanner(System.in); - int j = 0; - int[] arr; - arr = new int[j]; - while (true) { - arr[j] = scan.nextInt(); - if (arr[j]=='\n'){break;} - j++; - arr = new int[j]; - } - for(j = 0 ;j < arr.length ;j++){ - System.out.print(arr[j] + "" ""); - } - - } - }",LQ -"why is my CountRecur method not working, ive tried to comb through it but no dice. I know its not all that well optimized, but ive tried everything and i thought i might give this a shot. - -//* assume that StrArr1 is already in alphabetical order, and that all the strings in it are words that may occur more than once, they're also all in low caps. the remove recur works fine, i tested it//* - - public void CountRecur() { - ArrayList StrArr2 = new ArrayList (); - StrArr2 = StrArr1; - this.RemoveRecur(StrArr2); - int count = 0; - int j = 0; - for (int i = 0; i <= StrArr2.size(); i++) { - if (count != 0) { - IntArr.add(count); - } - count = 0; - if (i < StrArr2.size()) { - while (j < StrArr1.size() && StrArr2.get(i).equals(StrArr1.get(j))) { - count++; - j++; - } - } - } - } - - public void RemoveRecur(ArrayList StrArr3) { - int i = 1; - while (i < StrArr3.size()) { - if (StrArr3.get(i).equals(StrArr3.get(i - 1))) { - StrArr3.remove(i - 1); - i = 0; - } - i++; - } - } - - ",LQ -" /* when I run this code there is no error in fact output generated is also correct but I want to know what is the logical error in this code? please can any one explain what is the logical error. */ - class abc - { - public static void main(String arg[]){ - int sum=0; - - //for-loop for numbers 50-250 - - for(int i=50;i<251;i++){ - - // condition to check if number should be divided by 3 and not divided by 9 - - if(i%3==0 & i%9!=0){ - - //individual number which are selected in loop - - System.out.println(i); - - //adding values of array so that total sum can be calculated - - sum=sum+i; - } - } - - //final display output for the code - - System.out.println(""the sum of intergers from 50 to 250 that are multiples of 3 and not divisible by 9 \n""+sum); - } - }",LQ -"I am asking about just put password not encryption using [SQLClipher][1] or SEE or AES but when I want to access file I need come password like 'VISHAL' or Nothing else - - - [1]: https://www.zetetic.net/sqlcipher/",LQ -"

    I am trying to upload files using aspnet core using ajax request . -In previous versions of .net i used to handle this using

    - -
     foreach (string fileName in Request.Files)
    -            {
    -                HttpPostedFileBase file = Request.Files[fileName];
    -                //Save file content goes here
    -
    -                fName = file.FileName;
    -     (...)
    -
    - -

    but now its showing error at request.files how can i get it to work ? i searched and found that httppostedfile has been changed to iformfile but how to handle request.files?

    -",HQ -"I got started with oracle apex 5 and lately finished apex installation, I want to start building first application.. I found in apex documentation that I should start with application builder but I didn't find it in my environment. -when I login to apex the environment appears as in this image.[enter image description here][1] - - - [1]: http://i.stack.imgur.com/kHFto.jpg",LQ -"

    I want to proxy /v1/* to http://myserver.com, and here is my script

    - -

    -
    -
     devServer: {
    -   historyApiFallBack: true,
    -   // progress: true,
    -   hot: true,
    -   inline: true,
    -   // https: true,
    -   port: 8081,
    -   contentBase: path.resolve(__dirname, 'public'),
    -   proxy: {
    -     '/v1/*': {
    -       target: 'http://api.in.uprintf.com',
    -       secure: false
    -         // changeOrigin: true
    -     }
    -   }
    - },
    -
    -
    -

    - -

    but it doesn't work, -

    -",HQ -"How do I use switch case in this code ?? -I have tried several times , But I really do not know how to make it without error . -I don't know anywhere i put it ?? - - #include - int x,y; - int sum(int a,int b) - { - int c; - c = a+b; - return (c); - } - int sub (int a ,int b) - { - int c; - c = a-b ; - return (c); - } - int multi ( int a, int b ) - { - int c ; - c = a*b; - return (c); - } - float div ( int a , int b) - { - float c; - c = a/b ; - return (c); - } - main() - { - cout<<""enter the value of x = ""; - cin>>x; - cout<<""enter the value of y = ""; - cin>>y; - cout<<""x + y = ""<< sum(x,y); - cout<<""\n x - y = ""<< sub(x,y); - cout<<""\n x * y = ""<< multi(x,y); - cout<<""\n x /y = ""<< div (x,y); - cin>>""\n""; - }",LQ -"//i want to parse this json in php ,,plz help - -//i don't know how to parse it.. - -stdClass Object ( [coord] => stdClass Object ( [lon] => 138.93 [lat] => 34.97 ) [weather] => Array ( [0] => stdClass Object ( [id] => 803 [main] => Clouds [description] => broken clouds [icon] => 04n ) ) [base] => stations [main] => stdClass Object ( [temp] => 290.738 [pressure] => 1026.59 [humidity] => 94 [temp_min] => 290.738 [temp_max] => 290.738 [sea_level] => 1035.92 [grnd_level] => 1026.59 ) [wind] => stdClass Object ( [speed] => 6.81 [deg] => 225.502 ) [clouds] => stdClass Object ( [all] => 56 ) [dt] => 1460799951 [sys] => stdClass Object ( [message] => 0.0131 [country] => JP [sunrise] => 1460751040 [sunset] => 1460798268 ) [id] => 1851632 [name] => Shuzenji [cod] => 200 ) -",LQ -"

    I have a MTLTexture containing 16bit unsigned integers (MTLPixelFormatR16Uint). The values range from about 7000 to 20000, with 0 being used as a 'nodata' value, which is why it is skipped in the code below. I'd like to find the minimum and maximum values so I can rescale these values between 0-255. Ultimately I'll be looking to base the minimum and maximum values on a histogram of the data (it has some outliers), but for now I'm stuck on simply extracting the min/max.

    - -

    I can read the data from the GPU to CPU and pull the min/max values out but would prefer to perform this task on the GPU.

    - -

    First attempt

    - -

    The command encoder is dispatched with 16x16 threads per thread group, the number of thread groups is based on the texture size (eg; width = textureWidth / 16, height = textureHeight / 16).

    - -
    typedef struct {
    -    atomic_uint min;
    -    atomic_uint max;
    -} BandMinMax;
    -
    -kernel void minMax(texture2d<ushort, access::read> band1 [[texture(0)]],
    -                   device BandMinMax &out [[buffer(0)]],
    -                   uint2 gid [[thread_position_in_grid]])
    -{
    -    ushort value = band1.read(gid).r;
    -
    -    if (value != 0) {
    -        uint currentMin = atomic_load_explicit(&out.min, memory_order_relaxed);
    -        uint currentMax = atomic_load_explicit(&out.max, memory_order_relaxed);
    -
    -        if (value > currentMax) {
    -            atomic_store_explicit(&out.max, value, memory_order_relaxed);
    -        }
    -        if (value < currentMin) {
    -            atomic_store_explicit(&out.min, value, memory_order_relaxed);
    -        }
    -    }
    -}
    -
    - -

    From this I get a minimum and maximum value, but for the same dataset the min and max will often return different values. Fairly certain this is the min and max from a single thread when there are multiple threads running.

    - -

    Second attempt

    - -

    Building on the previous attempt, this time I'm storing the individual min/max values from each thread, all 256 (16x16).

    - -
    kernel void minMax(texture2d<ushort, access::read> band1 [[texture(0)]],
    -                   device BandMinMax *out [[buffer(0)]],
    -                   uint2 gid [[thread_position_in_grid]],
    -                   uint tid [[ thread_index_in_threadgroup ]])
    -{
    -
    -    ushort value = band1.read(gid).r;
    -
    -    if (value != 0) {
    -        uint currentMin = atomic_load_explicit(&out[tid].min, memory_order_relaxed);
    -        uint currentMax = atomic_load_explicit(&out[tid].max, memory_order_relaxed);
    -
    -        if (value > currentMax) {
    -            atomic_store_explicit(&out[tid].max, value, memory_order_relaxed);
    -        }
    -        if (value < currentMin) {
    -            atomic_store_explicit(&out[tid].min, value, memory_order_relaxed);
    -        }
    -    }
    -}
    -
    - -

    This returns an array containing 256 sets of min/max values. From these I guess I could find the lowest of the minimum values, but this seems like a poor approach. Would appreciate a pointer in the right direction, thanks!

    -",HQ -"

    I am learning android dev and my question might be very simple. I am stuck at the below part and requesting your help

    - -

    Description

    - -

    I am using the android's default ""Navigation Drawer"" activity to implement a small project. I have created a fragment and when user selects an option from Navigation drawer, the fragment opens.

    - -

    Problem faced

    - -

    When the fragment opens, part of the fragment & action bar is clipped. Image below

    - -

    Code

    - -

    fragment layout

    - -
    <LinearLayout xmlns:android=""http://schemas.android.com/apk/res/android""
    -xmlns:tools=""http://schemas.android.com/tools""
    -android:layout_width=""match_parent""
    -android:layout_height=""match_parent""
    -android:fitsSystemWindows=""true""
    -android:clipToPadding=""false""
    -android:orientation=""vertical""
    -android:background=""#ffffff""
    -android:layout_weight=""120""
    -tools:context=""test.navigationdrawcheck.RateCalculator"">
    -
    -  <EditText
    -    android:layout_width=""wrap_content""
    -    android:layout_height=""5dp""
    -    android:inputType=""number""
    -    android:ems=""12""
    -    android:gravity=""center""
    -    android:layout_weight=""10""
    -    android:hint=""text 1""
    -    android:textColorHint=""@color/colorDivider""
    -    android:id=""@+id/editText""
    -    android:layout_gravity=""center_horizontal"" />
    -
    -<EditText
    -    android:layout_width=""wrap_content""
    -    android:layout_height=""5dp""
    -    android:inputType=""number""
    -    android:hint=""text 2""
    -    android:textColorHint=""@color/colorDivider""
    -    android:ems=""12""
    -    android:gravity=""center""
    -    android:layout_weight=""10""
    -    android:id=""@+id/editText1""
    -    android:layout_gravity=""center_horizontal"" />
    -
    -<EditText
    -    android:layout_width=""wrap_content""
    -    android:layout_height=""5dp""
    -    android:inputType=""number""
    -    android:hint=""text 3""
    -    android:textColorHint=""@color/colorDivider""
    -    android:ems=""12""
    -    android:gravity=""center""
    -    android:layout_weight=""10""
    -    android:id=""@+id/editText3""
    -    android:layout_gravity=""center_horizontal"" />
    -
    -<EditText
    -    android:layout_width=""wrap_content""
    -    android:layout_height=""5dp""
    -    android:inputType=""number""
    -    android:hint=""text 4""
    -    android:textColorHint=""@color/colorDivider""
    -    android:ems=""12""
    -    android:gravity=""center""
    -    android:layout_weight=""10""
    -    android:id=""@+id/editText4""
    -    android:layout_gravity=""center_horizontal"" />
    -
    -<TextView
    -    android:layout_width=""wrap_content""
    -    android:layout_height=""15dp""
    -    android:textAppearance=""?android:attr/textAppearanceMedium""
    -    android:text=""Total ""
    -    android:textColor=""@color/colorDivider""
    -    android:layout_weight=""10""
    -    android:textStyle=""bold""
    -    android:gravity=""center_vertical""
    -    android:id=""@+id/textView""
    -    android:layout_gravity=""center_horizontal""
    -    />
    -
    -<Button
    -    android:layout_width=""match_parent""
    -    android:layout_height=""10dp""
    -    android:inputType=""number""
    -    android:ems=""15""
    -    android:gravity=""center""
    -    android:layout_weight=""5""
    -    android:id=""@+id/editText6""
    -    android:text=""Submit""
    -    android:textSize=""20sp""
    -    android:textColor=""@color/colorWhite""
    -    android:background=""@color/colorPrimary""
    -    android:layout_gravity=""center_horizontal"" />
    -
    - -

    - -

    App Bar Code

    - -
    <?xml version=""1.0"" encoding=""utf-8""?>
    -<android.support.design.widget.CoordinatorLayout xmlns:android=""http://schemas.android.com/apk/res/android""
    -    xmlns:app=""http://schemas.android.com/apk/res-auto""
    -    xmlns:tools=""http://schemas.android.com/tools""
    -    android:layout_width=""match_parent""
    -    android:layout_height=""match_parent""
    -    android:fitsSystemWindows=""true""
    -    tools:context=""test.navigationdrawcheck.MainActivity"">
    -
    -    <android.support.design.widget.AppBarLayout
    -        android:layout_width=""match_parent""
    -        android:layout_height=""wrap_content""
    -        android:fitsSystemWindows=""true""
    -        android:theme=""@style/AppTheme.AppBarOverlay"">
    -
    -
    -        <android.support.v7.widget.Toolbar
    -            android:id=""@+id/toolbar""
    -            android:elevation=""4dp""
    -            android:layout_width=""match_parent""
    -            android:layout_height=""?attr/actionBarSize""
    -            android:background=""?attr/colorPrimary""
    -            android:fitsSystemWindows=""true""
    -            app:popupTheme=""@style/AppTheme.PopupOverlay""/>
    -
    -    </android.support.design.widget.AppBarLayout>
    -
    -    <FrameLayout
    -        android:id=""@+id/framecheck""
    -        android:layout_width=""match_parent""
    -        android:layout_height=""match_parent"">
    -
    -    </FrameLayout>
    -
    -    <android.support.design.widget.FloatingActionButton
    -        android:id=""@+id/fab""
    -        android:layout_width=""wrap_content""
    -        android:layout_height=""wrap_content""
    -        android:layout_gravity=""bottom|end""
    -        android:layout_margin=""@dimen/fab_margin""
    -        android:src=""@android:drawable/ic_dialog_email"" />
    -
    -</android.support.design.widget.CoordinatorLayout>
    -
    - -

    Actual output i am looking for

    - -

    Below is my actual fragment layout xml. When i merge it with Navigation drawer it should not be clipped and fragment items should be displayed correctly

    - -

    - -

    What I have tried so far

    - -

    I tried adding this android:windowActionBarOverlay=false in my styles.xml but no luck

    - -

    Requesting your suggestions

    -",HQ -"

    While pushing the docker image (after successful login) from my host I am getting ""unauthorized: authentication required"".

    - -

    Details below.

    - -
    -bash-4.2# docker login --username=asamba --email=anand.sambamoorthy@gmail.com
    -WARNING: login credentials saved in /root/.docker/config.json
    -*Login Succeeded*
    --bash-4.2#
    --bash-4.2# docker push asamba/docker-whale
    -
    -Do you really want to push to public registry? [y/n]: y
    -The push refers to a repository [docker.io/asamba/docker-whale] (len: 0)
    -faa2fa357a0e: Preparing
    -unauthorized: authentication required
    -
    - -
      -
    • Docker version: 1.9.1 (both client and server)
    • -
    • http://hub.docker.com has the repo created as well (asamba/docker-whale).
    • -
    - -

    The /var/log/messages shows 403, I dont know if this docker. See below.

    - -
    Apr 16 11:39:03 localhost journal: time=""2016-04-16T11:39:03.884872524Z"" level=info msg=""{Action=push, Username=asamba, LoginUID=1001, PID=2125}""
    -Apr 16 11:39:03 localhost journal: time=""2016-04-16T11:39:03.884988574Z"" level=error msg=""Handler for POST /v1.21/images/asamba/docker-whale/push returned error: Error: Status 403 trying to push repository asamba/docker-whale to official registry: needs to be forced""
    -Apr 16 11:39:03 localhost journal: time=""2016-04-16T11:39:03.885013241Z"" level=error msg=""HTTP Error"" err=""Error: Status 403 trying to push repository asamba/docker-whale to official registry: needs to be forced"" statusCode=403
    -Apr 16 11:39:05 localhost journal: time=""2016-04-16T11:39:05.420188969Z"" level=info msg=""{Action=push, Username=asamba, LoginUID=1001, PID=2125}""
    -Apr 16 11:39:06 localhost kernel: XFS (dm-4): Mounting V4 Filesystem
    -Apr 16 11:39:06 localhost kernel: XFS (dm-4): Ending clean mount
    -Apr 16 11:39:07 localhost kernel: XFS (dm-4): Unmounting Filesystem
    -
    - -

    Any help is appreciated, please let me know if you need further info. I did the push with -f as well. No luck!

    -",HQ -"

    Is it possible to mark gitlab ci jobs to start manually?

    - -

    I need it for deploying application but I want to decide if it's going to be deployed

    -",HQ -"

    If I do a docker volume ls, my list of volumes is like this:

    - -
    DRIVER              VOLUME NAME
    -local               305eda2bfd9618266093921031e6e341cf3811f2ad2b75dd7af5376d037a566a
    -local               226197f60c92df08a7a5643f5e94b37947c56bdd4b532d4ee10d4cf21b27b319
    -...
    -...
    -local               209efa69f1679224ab6b2e7dc0d9ec204e3628a1635fa3410c44a4af3056c301
    -
    - -

    and I want to remove all of my volumes at once. How can I do it?

    -",HQ -"I have two columns in this text file like this: - - William 2 - David 3 - Victor 5 - Jack 1 - Gavin 4 - -And I want it to be like this in a dict: - - d = {'William': 2,'David': 3,'Victor': 5,'Jack': 1,'Gavin': 4} - -Is anyone knows how to do this in python? -Please help me! Thank You!",LQ -"

    Ok it's my first day doing some Angular 2 using typescript and I am try to make a simple getter and setter service.

    - -
    import {Injectable} from ""angular2/core"";
    -
    -@Injectable()
    -export class TodoService {
    -
    -  private _todos:Array = [];
    -
    -  get todos():Array {
    -    return this._todos;
    -  }
    -
    -  set todos(value:Array) {
    -    this._todos = value;
    -  }
    -
    -}
    -
    - -

    Can anyone explain why the Typescript compiler is throwing the following error as I think it should be ok.

    - -
    ERROR in [default] /Users/testguy/WebstormProjects/angular2-seed/src/app/services/todo-service.ts:6:17 
    -Generic type 'Array<T>' requires 1 type argument(s).
    -
    -ERROR in [default] /Users/testguy/WebstormProjects/angular2-seed/src/app/services/todo-service.ts:8:14 
    -Generic type 'Array<T>' requires 1 type argument(s).
    -
    -ERROR in [default] /Users/testguy/WebstormProjects/angular2-seed/src/app/services/todo-service.ts:12:18 
    -Generic type 'Array<T>' requires 1 type argument(s).
    -
    -",HQ -"

    Given this url structure (over which I have no control), how can I retrieve the hash fragment using Angular2?

    - -

    http://your-redirect-uri#access_token=ACCESS-TOKEN

    - -

    My router does route to the correct component, but everything after oauth get scrapped and I can't find the hash fragment in request.params or location.path. Doomed??

    - -

    Router config:

    - -
    @RouteConfig([
    -{path: '/welcome', name: 'Welcome', component: WelcomeComponent, useAsDefault: true},
    -{path: '/landing/oauth', name: 'Landing', component: LandingComponent}  // this one
    -
    - -

    ])

    -",HQ -"

    I am migrating my Server from Tomcat-6 to Tomcat-9. My website is designed for the protocol of HTTP/1.1 . The server.xml file contains the Connector Protocol of org.apache.coyote.http11.Http11NioProtocol . The server starts up normally without generating any errors. However, when I try to access my website using localhost, I get the following error :-

    - -

    INFO [https-nio-8445-exec-3] org.apache.tomcat.util.http.parser.Cookie.logInvalidHeader A cookie header was received [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 21, 22, 23]; userId=53136] that contained an invalid cookie. That cookie will be ignored.Note: further occurrences of this error will be logged at DEBUG level.

    - -

    Can anyone please tell me the reason for this error? -What causes an invalid cookie? -Can this error be avoided if I use a different connector?

    -",HQ -"

    Is there any way I can see the log of a container that has exited?

    - -

    I can get the container id of the exited container using docker ps -a but I want to know what happened when it was running.

    -",HQ -"

    According to the docs, the latest node (Node 5+) should support the spread operator by default, like so:

    - -
    const newObj = {
    -        ...oldObj,
    -        newProperty: 1
    -      }
    -
    - -

    And I have node 5.10.1 installed (e.g. that's what 'node -v' tells me). But I am still getting this error:

    - -
    c:\[myprojectfolder]>node index.js
    -c:\[myprojectfolder]\index.js:21
    -            ...oldObj,
    -            ^^^
    -
    -SyntaxError: Unexpected token ...
    -    at exports.runInThisContext (vm.js:53:16)
    -    at Module._compile (module.js:387:25)
    -    at Object.Module._extensions..js (module.js:422:10)
    -    at Module.load (module.js:357:32)
    -    at Function.Module._load (module.js:314:12)
    -    at Function.Module.runMain (module.js:447:10)
    -    at startup (node.js:146:18)
    -    at node.js:404:3
    -
    - -

    What am I missing?

    -",HQ -"

    I have an input to tensorflow of shape [None, 9, 2] (where the None is batch).

    - -

    To perform further actions (e.g. matmul) on it I need to transform it to [None, 18] shape. How to do it?

    -",HQ -"

    I am trying to create a day-view with times on the left side, and a top header of people. Currently I can get the left OR the top header to stick, but not both.

    - -

    How do you get 2 sticky headers?

    - -

    - -

    My render looks like this:

    - -
      <ScrollView style={{height: 600}}>
    -    <ScrollView horizontal={true}>
    -      <View style={styles.column}>
    -        <View style={{ flex: 1, flexDirection: 'row', width}}>
    -          {header}
    -        </View>
    -
    -        <View style={styles.row}>
    -          <View style={[styles.container, { width, marginLeft: 40 }]}>
    -            {this.generateRows()}
    -          </View>
    -        </View>
    -
    -      </View>
    -    </ScrollView>
    -    <View style={{backgroundColor: 'white', position: 'absolute', top: 0, bottom: 0, left: 0, }}>
    -      <View style={{ flex: 1, flexDirection: 'row'}}>
    -        <View style={styles.row}>
    -          <Text></Text>
    -        </View>
    -      </View>
    -      <View style={{height: 1000, width: 40 }}>
    -        {this.generateRowLabels()}
    -      </View>
    -    </View>
    -  </ScrollView>
    -
    -",HQ -"

    I'm trying to get an image to display as the launch screen from my Launch Screen.storyboard file, however the image never displays. I have labels that show up fine, but the image doesn't appear.

    - -

    This is how the launch screen looks in the Launch Screen.storyboard file: -

    - -

    However when I run the app on the simulator (as well as on the physical device) this is what shows up:

    - -

    - -

    As you can see, the label ""Test"" shows up fine, however the image does not display. I'm really not sure why this is happening and nothing I try seems to work. If anyone has any ideas of how to fix this it would be greatly appreciated.

    -",HQ -"Is the thread in C++ a time slice or the execution of a function or both? - -A thread is executing a function which is a block of code inside an outer loop. If you send a signal (via a global variable) to break from the outer loop. The function returns, but what happens to the running thread assuming it is a time slice of execution?",LQ -"

    What is a good practice for handling iteration through an Immutable.js Map object? This works:

    - -
    {stocks.map((stock,key)=>{
    -    return ( <h3>{key}</h3> )
    -})}
    -
    - -

    but gives the warning in the console ""warning.js:45 Warning: Using Maps as children is not yet fully supported. It is an experimental feature that might be removed. Convert it to a sequence / iterable of keyed ReactElements instead.""

    - -

    This has been discussed before, and this link suggests some strategies https://github.com/facebook/immutable-js/issues/667 but they seem clunky to me. Like:

    - -
    posts.entrySeq().map(o => 
    -     <Post value={o[1]} key={o[0]} />
    -)
    -
    - -

    works but is clunky feeling. Is there a more natural way of doing this?

    -",HQ -"

    I'm posting data using javascript's fetch() .

    - -
        fetch('/string.php', {
    -      method: 'post',
    -      body: JSON.stringify({
    -        name: 'helloe world',
    -      })
    -    })
    -    .then(function(response) {
    -      if (response.status >= 200 && response.status < 300) {
    -        return response.text()
    -      }
    -      throw new Error(response.statusText)
    -    })
    -    .then(function(response) {
    -      console.log(response);
    -    })
    -
    - -

    string.php file contains:

    - -
    print_r($_POST);
    -
    - -

    Now my problem is the $_POST returns an empty array. I can fix this by appending the file with:

    - -
    $_POST = json_decode(file_get_contents('php://input'), true);
    -
    - -

    But that feels very hackish and isn't ideal. Is this the intended behaviour for PHP when retrieving post data from a JS fetch()?

    - -

    Is there anyway I may automatically put the contents within the $_POST?

    -",HQ -"I have a percent bar that need to change your width when a element appears. -I tried use .has but :contains is more correct I think. But does't work. Some idea how to do this work? - - - var animals = [ 'Lion', 'Cat', 'Tiger', 'Dog' ] - var box_animals = animals.valueOf; - - - - if (""box_animals:contains(Cat)""){ - $(""#ruler_bar"").css(""width"", 2% ); - } - if (""box_animals:contains(Lion)""){ - $(""#ruler_bar"").css(""width"", 50% ); - } - - - - -",LQ -"

    When I start matlab on my linux machine, I get the notice, ""MATLAB is selecting SOFTWARE OPENGL rendering."" Once it starts up, if I try opengl hardware I get the message that I can't switch at runtime. How do I enable hardware rendering as simply as possible?

    -",HQ -" - - - TaxDay - - -the
    id is taxDay if its relevant. -the body onLoad event handler are ""scrollColor(); countDown(); and taxmessage()"" - -The website suppose to display a message counting down to the tax day. I can't seem to get anything to display on the page. the scrollbar doesn't even show up with the color even though i put in the write code. Some advice please. Thank you.",LQ -"

    if i write such code in webstorm

    - -
    export class someOne {
    -  constructor(param) {
    -    this.test = param;
    -  }
    -
    -  useTest(){
    -    return this.test;
    -  }
    -}
    -
    -
    -console.log(new someOne(123).useTest());
    -
    - -

    and mouseover on ""this.test"" i see the warning: ""Element is not exported""

    - -

    - -

    what does it mean? -if i change the .test to .test1 the warning disappears

    -",HQ -"I am a newbee for ruby on rails. -When I compile, on the browser, it just keeps me same error on index.haml - -Haml::SyntaxError at / -Illegal nesting: nesting within plain text is illegal. - -[![enter image description here][1]][1] - -This is the code, - - %h1.text-center All images - .row - %ul.list-unstyled - @images.each do |image| - %li - %h2=image.title - - %p - %a.thumbnail{href: image.file, data:{ lightbox: ""gallery"", title: image.title } } - %img{src: image.file.url(:small), width: ""100%""} - - %p - %span(class='st_facebook_hcount' displayText='Facebook' st_url=""#{request.base_url}/images/#{image.id}"") - %span(class='st_twitter_hcount' displayText='Tweet' st_url=""#{request.base_url}/images/#{image.id}"") - - - [1]: http://i.stack.imgur.com/UeH0n.png - -Thank you in advance.",LQ -"Im trying to use the coordinates outside of did update locations function but i can not get it to work i try to declare the coordinates as a degree outside of the function but that does not work how can i get some guidance on this. - - var currentUserLatitude:CLLocationDegrees? - var currentUserLongitude:CLLocationDegrees? - - func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]){ - - //location info about the user - let location = locations.last - let center = CLLocationCoordinate2D(latitude: (location?.coordinate.latitude)!, longitude: (location?.coordinate.longitude)!) - let span = MKCoordinateSpan(latitudeDelta: 0.05, longitudeDelta: 0.05) - let region = MKCoordinateRegion(center: center, span:span) - self.mapView.setRegion(region, animated: true) - // i want to use these variables outside the function - var currentUserLatitude = location!.coordinate.latitude - var currentUserLongitude = location!.coordinate.longitude - - - - - - }",LQ -" webrequest.mq4 - -> //+------------------------------------------------------------------+ -> //| webrequest.mq4 //| Copyright 2013, apla //| - -> //+------------------------------------------------------------------+ -> #property copyright ""Copyright 2013, apla"" -> #property link ""-"" -> -> int start() { //---- -> -> //WebRequest string cookie = NULL; string headers = -> ""Content-Type: application/x-www-form-urlencoded""; int res; //url -> = localhost:8080 string url = ""localhost""; char post[], result[]; string signal = -> ""account=""+AccountNumber()+""&balance=""+AccountBalance()+""&equity=""+AccountEquity(); -> StringToCharArray(signal, post); Print(signal); int timeout = 50000; -> // 5 sec res = WebRequest(""POST"", url, cookie, NULL, timeout, post, -> ArraySize(post), result, headers); -> -> Print(""Status code: "" , res, "", error: "", GetLastError()); -> -> //---- return(0); } -> //+------------------------------------------------------------------+ - - - ---------------- - -I want to send the file from mt4 webrequest.mq4 to the node js this Site section that can be given up, however. - -MT4 >> Nodejs - -??? POST[] ??? (javascript nodes) -account, balance, equity -Which I do not know how to get the POST. - -write file.js - -> var http = require('http'); var fs = require('fs'); -> -> fs.writeFile(""file.txt"",??? POST[] ???, function(err,data) { -> if (err) throw err; -> console.log('The file was saved!'); -> -> http.createServer(function(req, res) { -> res.writeHead(200, {'Content-Type': 'text/plain'}); -> res.end('OK'); // Send the file data to the browser. }).listen(3000); console.log('Server running at -> http://localhost:8080/'); }); - - - - - -",LQ -"

    When setting webhooks, it's saying a Secure URL is required.

    -",HQ -"

    I have an andorid app and i am trying to implement linkedIn login in it. -LinkedIn SDK has been successfully integrated and i am getting user information as well along with the email address.

    - -

    Here is how my application works for google login :

    - -

    1) get access token on mobile

    - -

    2) send email address with access token to server

    - -

    3) fetch details of users with access token i received via webapi of google.

    - -

    4) if the response email matches with the email received from mobile device then check for account exists or not of that email address . If not create account and login other wise login.

    - -
    - -

    Problem with linkedIn :

    - -

    The access token i have received belongs to mobile sdk and i cannot use the same token to make REST API request. (as per documentation)

    - -
    -

    Mobile vs. server-side access tokens

    - -

    It is important to note that access tokens that are acquired via the - Mobile SDK are only useable with the Mobile SDK, and cannot be used to - make server-side REST API calls.

    - -

    Similarly, access tokens that you already have stored from your users - that authenticated using a server-side REST API call will not work - with the Mobile SDK.

    -
    - -

    So how to verify details in step 3) i mentioned above on my webserver ?

    - -
    - -

    Is It a disaster ? -I am sure there has to be a way to do what i am trying to do, as there are many applications which let their users login through linkedin on their mobile apps.

    - -

    Because if its not possible then anyone can easily change the email address the mobile app is sending to webserver after receiving from linkedin and i can login with any email address i want by doing that.

    -",HQ -"

    I create UIStackViews programmatically and add them to parent UIStackView, which is created in Storyboard. Child stack views are horizontal with 2 labels. I need to fix width of second UILabel and make the first UILabel fill the rest space.

    - -

    Now I have this:

    - -

    - -

    And I want this:

    - -

    - -

    My code for generating children stack views:

    - -
    @IBOutlet weak var parentStackView: UIStackView!
    -
    -func addStackViewsToParentStackView(params: [String: Float]) {
    -    for (name, value) in params {
    -        let parameterNameLabel = UILabel() // first label
    -        parameterNameLabel.text = name
    -        let parameterValueLabel = UILabel() // second label
    -        parameterValueLabel.text = value.description
    -        parameterValueLabel.frame.size.width = 80.0 // I've tried to fix width, but it does't help
    -
    -        let childStackView = UIStackView(arrangedSubviews: [parameterNameLabel, parameterValueLabel])
    -        childStackView.axis = .Horizontal
    -        childStackView.distribution = .FillProportionally
    -        childStackView.alignment = .Fill
    -        childStackView.spacing = 5
    -        childStackView.translatesAutoresizingMaskIntoConstraints = true
    -        parentStackView.addArrangedSubview(childStackView)
    -    }
    -}
    -
    - -

    Thanks for any help!

    -",HQ -"[enter image description here][1] - -[Why do i get the gap between the border and backgroound ][2] - - - [1]: http://i.stack.imgur.com/kZ0Z7.jpg - [2]: http://i.stack.imgur.com/iknj8.jpg",LQ -"

    I'd like to be able to print JAX-RS 2 JSON payload from request, regardless of actual implementation on my application server.

    - -

    I've tried suggested solutions on SO but all include binaries from actual implementation (like Jersey and similar), and I'm allowed only to use javaee-api v 7.0 in my application.

    - -

    I've tried implementing ClientRequestFilter and ClientResponseFilter on my Client but they don't contain serialized entities.

    - -

    Here's an example of client:

    - -
    WebTarget target = ClientBuilder.newClient().register(MyLoggingFilter.class).target(""http://localhost:8080/loggingtest/resources/accounts"");
    -Account acc = target.request().accept(MediaType.APPLICATION_JSON).get(account.Account.class);
    -
    - -

    And here's the implementation of MyLoggingFilter:

    - -
    @Provider
    -public class MyLoggingFilter implements ClientRequestFilter, ClientResponseFilter {
    -
    -    private static final Logger LOGGER = Logger.getLogger(MyLoggingFilter.class.getName());
    -
    -    @Override
    -    public void filter(ClientRequestContext requestContext) throws IOException {
    -
    -        LOGGER.log(Level.SEVERE, ""Request method: {0}"", requestContext.getMethod());
    -
    -    }
    -
    -    @Override
    -    public void filter(ClientRequestContext requestContext, ClientResponseContext responseContext) throws IOException {
    -        LOGGER.log(Level.SEVERE, ""Response status: {0}"", responseContext.getStatus());
    -    }        
    -}
    -
    -",HQ -"

    I would like to run spark-shell with a external package behind a corporate proxy. Unfortunately external packages passed via --packages option are not resolved.

    - -

    E.g., when running

    - -
    bin/spark-shell --packages datastax:spark-cassandra-connector:1.5.0-s_2.10
    -
    - -

    the cassandra connector package is not resolved (stuck at last line):

    - -
    Ivy Default Cache set to: /root/.ivy2/cache
    -The jars for the packages stored in: /root/.ivy2/jars
    -:: loading settings :: url = jar:file:/opt/spark/lib/spark-assembly-1.6.1-hadoop2.6.0.jar!/org/apache/ivy/core/settings/ivysettings.xml
    -datastax#spark-cassandra-connector added as a dependency
    -:: resolving dependencies :: org.apache.spark#spark-submit-parent;1.0
    -        confs: [default]
    -
    - -

    After some time the connection times out containing error messages like this:

    - -
    :::: ERRORS
    -        Server access error at url https://repo1.maven.org/maven2/datastax/spark-cassandra-connector/1.5.0-s_2.10/spark-cassandra-connector-1.5.0-s_2.10.pom (java.net.ConnectException: Connection timed out)
    -
    - -

    When i deactivate the VPN with the corporate proxy the package gets resolved and downloaded immediately.

    - -

    What i tried so far:

    - -

    Exposing proxies as environment variables:

    - -
    export http_proxy=<proxyHost>:<proxyPort>
    -export https_proxy=<proxyHost>:<proxyPort>
    -export JAVA_OPTS=""-Dhttp.proxyHost=<proxyHost> -Dhttp.proxyPort=<proxyPort>""
    -export ANT_OPTS=""-Dhttp.proxyHost=<proxyHost> -Dhttp.proxyPort=<proxyPort>""
    -
    - -

    Running spark-shell with extra java options:

    - -
    bin/spark-shell --conf ""spark.driver.extraJavaOptions=-Dhttp.proxyHost=<proxyHost> -Dhttp.proxyPort=<proxyPort>"" --conf ""spark.executor.extraJavaOptions=-Dhttp.proxyHost=<proxyHost> -Dhttp.proxyPort=<proxyPort>"" --packages datastax:spark-cassandra-connector:1.6.0-M1-s_2.10
    -
    - -

    Is there some other configuration possibility i am missing?

    -",HQ -"

    When configuring the Big-Query command line tool I was asked to set up a default project. However, now I have many projects and I can't happen to find how do I switch from one project to the other. Does someone know how to navigate the projects using the command line? Thanks in advance!

    - -

    G

    -",HQ -"

    I have the following array of objects:

    - -
    var array = [ {'a': '12', 'b':'10'}, {'a': '20', 'b':'22'} ];
    -
    - -

    How can I add a new property c = b - a to all objects of the array?

    -",HQ -"What dose this exception mean -this exception keeps pophing when i try to execute query throw JDBC - - java.lang.ArrayIndexOutOfBoundsException: 252 - at com.orientechnologies.common.serialization.types.OLongSerializer.deserializeLiteral(OLongSerializer.java:69) ~[orientdb-core-2.1.11.jar:2.1.11] - at com.orientechnologies.orient.core.serialization.serializer.record.binary.ORecordSerializerBinaryV0.readLong(ORecordSerializerBinaryV0.java:788) ~[orientdb-core-2.1.11.jar:2.1.11] - at com.orientechnologies.orient.core.serialization.serializer.record.binary.ORecordSerializerBinaryV0.readSingleValue(ORecordSerializerBinaryV0.java:307) ~[orientdb-core-2.1.11.jar:2.1.11] - at com.orientechnologies.orient.core.serialization.serializer.record.binary.ORecordSerializerBinaryV0.deserialize(ORecordSerializerBinaryV0.java:195) ~[orientdb-core-2.1.11.jar:2.1.11] - at com.orientechnologies.orient.core.serialization.serializer.record.binary.ORecordSerializerBinary.fromStream(ORecordSerializerBinary.java:74) ~[orientdb-core-2.1.11.jar:2.1.11] - at com.orientechnologies.orient.core.record.impl.ODocument.deserializeFields(ODocument.java:1817) ~[orientdb-core-2.1.11.jar:2.1.11] - at com.orientechnologies.orient.core.record.impl.ODocument.checkForFields(ODocument.java:2416) ~[orientdb-core-2.1.11.jar:2.1.11] - at com.orientechnologies.orient.core.record.impl.ODocument.fieldNames(ODocument.java:736) ~[orientdb-core-2.1.11.jar:2.1.11] - at com.orientechnologies.orient.jdbc.OrientJdbcResultSet.(OrientJdbcResultSet.java:59) ~[orientdb-jdbc-2.1.11.jar:2.1.11] - at com.orientechnologies.orient.jdbc.OrientJdbcPreparedStatement.executeQuery(OrientJdbcPreparedStatement.java:70) ~[orientdb-jdbc-2.1.11.jar:2.1.11] - at org.springframework.jdbc.core.JdbcTemplate$1.doInPreparedStatement(JdbcTemplate.java:688) ~[spring-jdbc-4.2.4.RELEASE.jar:4.2.4.RELEASE] - at ",LQ -"Hello i have 3 class (City, Neighborhood and Block) - -Here is class definiton of City class - - class City: - def __init__(self, id_city, name_city): - self.__id = id_city - self.__name = name_city - - Definition of the Neighborhood - - class Neighborhood(City):' - def __init__(self, id_neighborhood, name_neighborhood, number_block, *city_args, **kwargs): - City.__init__(self, *city_args, **kwargs) - self.__id = id_neighborhood - self.__name = name_neighborhood - self.__number = number_block - -Definition of the Block - - class Block(Neighborhood): - def __init__(self, id_block, number_block, number_flats, *neighborhood_args, **kwargs): - Neighborhood.__init__(*neighborhood_args, **kwargs) - self.__id = id_block - self.__number_b = number_block - self.__number_f = number_flats - -Now i declare a entities: - - city = City(5, ""New York"") - neighborhood = Neighborhood(1, ""Brooklyn"", 500, 5, ""New York"") - block = Block(11, 2, 20 1, ""Brooklyn"", 500, 5, ""New York"") - -And the error is this: - - AttributeError: 'int' object has no attribute '_City__id'",LQ -"

    I am trying to test some client-side code and for that I need to stub the value of window.location.href property using Mocha/Sinon.

    - -

    What I have tried so far (using this example):

    - -
    describe('Logger', () => {
    -    it('should compose a Log', () => {
    -        var stub = sinon.stub(window.location, 'href', 'http://www.foo.com');
    -    });
    -});
    -
    - -

    The runner displays the following error:

    - -
    -

    TypeError: Custom stub should be a function or a property descriptor

    -
    - -

    Changing the test code to:

    - -
    describe('Logger', () => {
    -    it('should compose a Log', () => {
    -        var stub = sinon.stub(window.location, 'href', {
    -            value: 'foo'
    -        });
    -    });
    -});
    -
    - -

    Which yields this error:

    - -
    -

    TypeError: Attempted to wrap string property href as function

    -
    - -

    Passing a function as third argument to sinon.stub doesn't work either.

    - -

    Is there a way to provide a fake window.location.href string, also avoiding redirection (since I'm testing in the browser)?

    -",HQ -"

    I'm pretty new to Elixir and functional programming-languages in general.

    - -

    In Elixir, I want to call one specific function on Modules, given the Module name as String.

    - -

    I've got the following (very bad) code working, which pretty much does what I want to:

    - -
    module_name = elem(elem(Code.eval_file(""module.ex"", __DIR__), 0), 1)
    -apply(module_name, :helloWorld, [])
    -
    - -

    This (at least as I understand it) compiles the (already compiled) module of module.ex in the current directory. I'm extracting the modules name (not as a String, don't know what data-type it actually is) out of the two tuples and run the method helloWorld on it.

    - -

    There are two problems with this code:

    - -
      -
    1. It prints a warning like redefining module Balance. I certainly don't want that to happen in production.

    2. -
    3. AFAIK this code compiles module.ex. But as module.ex is already compiled and loaded, it don't want that to happen.

    4. -
    - -

    I don't need to call methods on these modules by filename, the module-name would be ok too. But it does have to by dynamic, eg. entering ""Book"" at the command line should, after a check whether the module exists, call the function Book.helloWorld.

    - -

    Thanks.

    -",HQ -"i am currently doing an assignment for my computer science course, however i have ran into a road block preventing me advancing any further. i am trying to return the InfoCard interface and i am unsure as to how. - - public interface IInfoCardFactory - { - IInfoCard CreateNewInfoCard(string category); - IInfoCard CreateInfoCard(string initialDetails); - string[] CategoriesSupported { get; } - string GetDescription(string category); - } - - - public IInfoCard CreateNewInfoCard(string category) - { - - ...... - } - -",LQ -"

    Currently I'm using Android Studio 2.0 and installing my APK into my Samsung device (S6). However, when rebuilding my code and running it again I receive the following error:

    - -
    Error installing cold swap patches: com.android.tools.fd.client.InstantRunPushFailedException: Error creating folder with: run-as com.appcustomer mkdir -p /data/data/com.appcustomer/files/instant-run/inbox
    -Error while Installing restart patches
    -
    - -

    Does anyone have any idea what this issue is?

    -",HQ -"I'm new to the implementation of enum, but have an idea on how it's supposed to be used. - -I have the bellow Allergy program to record information about an allergy provided by user input. I want to add another option for the user to select the ""severity"" of the allergy. - -I want to create an enum to hold the values the user should choose from. Here is what I have so far, but I'm just ignorant when it comes to enum and just how exactly it should be implemented. Thanks in advance for any help!! - -Allergy.hpp: - - #ifndef Allergy_hpp - #define Allergy_hpp - - #include - #include - #include - using namespace std; - - - class Allergy { - public: - enum severity {mild, moderate, severe}; - - Allergy(); - Allergy(string, string, list ); - ~Allergy(); - - //getters - string getCategory() const; - string getName() const; - list getSymptom() const; - - - private: - - string newCategory; - string newName; - list newSymptom; - - - - }; - - #endif /* Allergy_hpp */ - -Allergy.cpp: - - include ""Allergy.hpp"" - - Allergy::Allergy(string name, string category, list symptom){ - newName = name; - newCategory = category; - newSymptom = symptom; - } - - Allergy::~Allergy(){ - - } - - //getters - string Allergy::getName() const{ - return newName; - } - - string Allergy::getCategory() const{ - return newCategory; - } - - - list Allergy::getSymptom() const{ - return newSymptom; - } - -main.cpp: - - #include - #include - #include ""Allergy.hpp"" - - using namespace std; - - - int main() { - string name; - string category; - int numSymptoms; - string symptHold; - list symptom; - - cout << ""Enter allergy name: ""; - getline(cin, name); - cout << ""Enter allergy category: ""; - getline(cin, category); - cout << ""Enter number of allergy symptoms: ""; - cin >> numSymptoms; - - for(int i = 0; i < numSymptoms; i++){ - cout << ""Enter symptom # "" << i+1 << "": ""; - cin >> symptHold; - symptom.push_back(symptHold); - } - - Allergy Allergy_1(name, category, symptom); - cout << endl << ""Allergy Name: "" << Allergy_1.getName() << endl << - ""Allergy Category: "" << Allergy_1.getCategory() << endl << - ""Allergy Symptoms: ""; - - for(auto& s : Allergy_1.getSymptom()){ - cout << s << "", ""; - } - - cout << endl; - return 0; - }",LQ -"

    I have such Python code:

    - -
    import numpy as np
    -import matplotlib.pyplot as plt
    -
    -def f(x):
    -    return np.int(x)
    -
    -x = np.arange(1, 15.1, 0.1)
    -plt.plot(x, f(x))
    -plt.show()
    -
    - -

    And such error:

    - -
    TypeError: only length-1 arrays can be converted to Python scalars
    -
    - -

    How can I fix it?

    -",HQ -"

    I have an Angular 2 application. A service is requests data from an api that returns the results like the following:

    - -
    {
    -    ""data"":[
    -        {""id"":1,""timestamp"":""2016-04-17T19:52:53.4510935+01:00"",""sourceDatabaseServer"":""127.0.0.1"",""sourceDatabaseName"":""Database1"",""targetDatabaseServer"":""192.168.99.101"",""targetDatabaseName"":""Database2""},
    -        {""id"":2,""timestamp"":""2016-04-17T19:52:53.4510935+01:00"",""sourceDatabaseServer"":""127.0.0.2"",""sourceDatabaseName"":""Database3"",""targetDatabaseServer"":""192.168.99.102"",""targetDatabaseName"":""Database4""},
    -        {""id"":3,""timestamp"":""2016-04-17T19:52:53.4510935+01:00"",""sourceDatabaseServer"":""127.0.0.3"",""sourceDatabaseName"":""Database5"",""targetDatabaseServer"":""192.168.99.103"",""targetDatabaseName"":""Database6""}
    -    ]
    -}
    -
    - -

    My Angular 2 service looks like this (I've cut the error handling for brevity as we're on the happy path here):

    - -
    getList() : Observable<SomeModel[]> {
    -    return this._http.get(this._getListUrl).map(this.extractData);
    -}
    -
    - private extractData(res: Response) {
    -    return res.json().data || {};
    -}
    -
    - -

    and my component like this:

    - -
    results: SomeModel[];
    -errorMessage: string;
    -ngOnInit() {
    -    this._someService.getList()
    -        .subscribe(
    -        results => this.results = results, 
    -        error => this.errorMessage = <any>error);
    -}
    -
    - -

    and my model like this:

    - -
    export class SomeModel {
    -
    -    constructor(
    -        public id: number,
    -        public timestamp: Date,
    -        public sourceDatabaseServer: string,
    -        public sourceDatabaseName: string,
    -        public targetDatabaseServer: string,
    -        public targetDatabaseName: string
    -    ) { }
    -}
    -
    - -

    Everything looked like it was working however when I tried to display timestamp using the DatePipe like so {{item.timestamp | date:'short'}} the application blows up with the following error message:

    - -
    Invalid argument '2016-04-17T19:40:38.2424240+01:00' for pipe 'DatePipe' in [{{result.timestamp | date:'short'}}
    -
    - -

    After some investigation I believe that timestamp is not actually being converted to the Date type but is instead just being set a string. I'm guessing this is becuase the Date type isn't known at the time Response.json() is called? or am I missing something else entirely? Is there a fix or work around for this?

    -",HQ -"I am trying to read textfiles from an folder and save the names to a vector of strings. This is my code by now. I can compile and run it, but it is not saving my files to the vector. - - - int main(){ - Data Dataset; - WIN32_FIND_DATA FindFileData; - HANDLE hFind; - // Find the first file in the directory. - hFind = FindFirstFile(LPCTSTR(""C:\\Users\\bla\\Desktop\\c++\\data\\*""), &FindFileData); - - if (hFind == INVALID_HANDLE_VALUE) { - cout<<""ERROR""<What exactly does the LogisticRegression.predict_proba function return?

    - -

    In my example I get a result like this:

    - -
    [[  4.65761066e-03   9.95342389e-01]
    - [  9.75851270e-01   2.41487300e-02]
    - [  9.99983374e-01   1.66258341e-05]]
    -
    - -

    From other calculations, using the sigmoid function, I know, that the second column are probabilities. The documentation says, that the first column are n_samples, but that can't be, because my samples are reviews, which are texts and not numbers. The documentation also says, that the second column are n_classes. That certainly can't be, since I only have two classes (namely +1 and -1) and the function is supposed to be about calculating probabilities of samples really being of a class, but not the classes themselves.

    - -

    What is the first column really and why it is there?

    -",HQ -" - - - - - -
    -
    -

    Why Choose Us

    -
    -
    -
      -
    • Customized
      Software

    • -
    • Workshop

    • -
    • Digital
      Advertising

    • -
    • E-learning -

    -
    -
    - - -when i remove the code - - #product ul li{ - position : realtive; - } - -then text is fully white but when it;s present in the code text is not white. - -And another problem when i ONLY remove - - *{ - z-index :1; - } -then also it works fine. -But i cannot understand why. -i need help please anyone solve my problem .",LQ -"

    The code below should rotate and align the text labels on the x-axis, but for some reason it don't:

    - -
    ggplot(res, aes(x=TOPIC,y=count), labs(x=NULL)) + 
    -  scale_y_continuous(limits=c(0,130),expand=c(0,0)) +
    -  scale_x_discrete("""",labels=c(""ANA""=""Anatomy"",""BEH""=""Behavior"",""BOUND""=""Boundaries"",
    -                           ""CC""=""Climate change"",""DIS""=""Disease"",""EVO""=""Evolution"",
    -                           ""POPSTAT""=""Pop status"",""POPABU""=""Pop abundance"",
    -                           ""POPTR""=""Pop trend"",""HARV""=""Harvest"",""HAB""=""Habitat"",
    -                           ""HABP""=""Habitat protection"",""POLL""=""Pollution"",
    -                           ""ZOO""=""Captivity"",""SHIP""=""Shipping"",""TOUR""=""Tourism"",
    -                           ""REPEC""=""Reprod ecology"",""PHYS""=""Physiology"",""TEK""=""TEK"",
    -                           ""HWC""=""HWC"",""PRED""=""Predator-prey"",""METH""=""Methods"",
    -                           ""POPGEN""=""Pop genetics"",""RESIMP""=""Research impact"",
    -                           ""ISSUE""=""Other"",""PROT""=""Protection"",""PA""=""Protected areas"",
    -                           ""PEFF""=""Protection efficiency"",""MINOR""=""Minor"")) + 
    -  theme(axis.text.x=element_text(angle=90,hjust=1)) +
    -  geom_bar(stat='identity') +
    -  theme_bw(base_size = 16) +
    -  ggtitle(""Peer-reviewed papers per topic"")
    -
    -",HQ -"

    Exactly how should python models be exported for use in c++?

    - -

    I'm trying to do something similar to this tutorial: -https://www.tensorflow.org/versions/r0.8/tutorials/image_recognition/index.html

    - -

    I'm trying to import my own TF model in the c++ API in stead of the inception one. I adjusted input size and the paths, but strange errors keep popping up. I spent all day reading stack overflow and other forums but to no avail.

    - -

    I've tried two methods for exporting the graph.

    - -

    Method 1: metagraph.

    - -
    ...loading inputs, setting up the model, etc....
    -
    -sess = tf.InteractiveSession()
    -sess.run(tf.initialize_all_variables())
    -
    -
    -for i in range(num_steps):  
    -  x_batch, y_batch = batch(50)  
    -  if i%10 == 0:
    -        train_accuracy = accuracy.eval(feed_dict={
    -        x:x_batch, y_: y_batch, keep_prob: 1.0})
    -        print(""step %d, training accuracy %g""%(i, train_accuracy))
    -  train_step.run(feed_dict={x: x_batch, y_: y_batch, keep_prob: 0.5})
    -
    -print(""test accuracy %g""%accuracy.eval(feed_dict={
    -    x: features_test, y_: labels_test, keep_prob: 1.0}))
    -
    -saver = tf.train.Saver(tf.all_variables())
    -checkpoint = 
    -   '/home/sander/tensorflow/tensorflow/examples/cat_face/data/model.ckpt'
    -    saver.save(sess, checkpoint)
    -
    -   tf.train.export_meta_graph(filename=
    -   '/home/sander/tensorflow/tensorflow/examples/cat_face/data/cat_graph.pb',  
    -    meta_info_def=None,
    -    graph_def=sess.graph_def,
    -    saver_def=saver.restore(sess, checkpoint),
    -    collection_list=None, as_text=False)
    -
    - -

    Method 1 yields the following error when trying to run the program:

    - -
    [libprotobuf ERROR 
    -google/protobuf/src/google/protobuf/wire_format_lite.cc:532] String field 
    -'tensorflow.NodeDef.op' contains invalid UTF-8 data when parsing a protocol 
    -buffer. Use the 'bytes' type if you intend to send raw bytes. 
    -E tensorflow/examples/cat_face/main.cc:281] Not found: Failed to load 
    -compute graph at 'tensorflow/examples/cat_face/data/cat_graph.pb'
    -
    - -

    I also tried another method of exporting the graph:

    - -

    Method 2: write_graph:

    - -
    tf.train.write_graph(sess.graph_def, 
    -'/home/sander/tensorflow/tensorflow/examples/cat_face/data/', 
    -'cat_graph.pb', as_text=False)
    -
    - -

    This version actually seems to load something, but I get an error about variables not being initialized:

    - -
    Running model failed: Failed precondition: Attempting to use uninitialized  
    -value weight1
    -[[Node: weight1/read = Identity[T=DT_FLOAT, _class=[""loc:@weight1""], 
    -_device=""/job:localhost/replica:0/task:0/cpu:0""](weight1)]]
    -
    -",HQ -"In the post http://stackoverflow.com/questions/19747384/how-to-create-new-column-in-dataframe-based-on-partial-string-matching-other-col there is the answer to this question, but I am not able to apply it to my data. - -The problem is that in the column ""Fertiliser"" (strings) the amount of different types of fertiliser. The third number refers to manure. I want to create a new column which only the amount of manure (so then I can do regression analysis against yield). - -`Fertiliser millet_biomass millet_yield - 1: 0-0-0 2659.608 710.6942 - 2: 0-0-100 2701.044 718.1154 - 3: 0-0-2700 3415.879 804.0360 - 4: 0-0-300 2781.639 730.5943 - 5: 0-0-900 2997.173 760.0136 - 6: 12-4-0 3703.255 772.1719 - 7: 12-4-100 3720.247 773.1759 - 8: 12-4-2700 3950.189 788.6133 - 9: 12-4-300 3751.400 775.1368 -10: 12-4-900 3826.693 780.2623 -11: 30-10-0 4180.323 798.2134 -12: 30-10-100 4184.229 798.4918 -13: 30-10-2700 4217.044 800.9312 -14: 30-10-300 4187.014 798.6570 -15: 30-10-900 4194.873 799.2085 -16: 6-2-0 3296.274 765.8496 -17: 6-2-100 3326.844 767.6693 -18: 6-2-2700 3772.058 785.4535 -19: 6-2-300 3381.152 760.7330 -20: 6-2-900 3517.515 768.3018 -21: 90-30-0 4542.924 831.2832 -22: 90-30-100 4543.036 831.3983 -23: 90-30-2700 4545.037 831.3227 -24: 90-30-300 4543.240 831.3921 -25: 90-30-900 4543.733 831.3727` - -Thus, there are five patterns patterns ""-0$"",""-100$"",""-300$"",""-900$"",""270$"", - -which need to be replaced by ""0"", ""100"",""300"",""900"",""2700"" - -I appreciate any help. - -",LQ -"

    While using the C/C++ driver of Cassandra, I at times see these kind of messages popping up in my console:

    - -
    1460937092.140 [WARN] (src/response.cpp:51:char*
    -      cass::Response::decode_warnings(char*, size_t)):
    -      Server-side warning: Aggregation query used without partition key
    -
    - -

    Wondering whether someone knows what that means. What should I be looking for in my code that could generate this error, or is it just something on the server side that I have no control over?

    -",HQ -"

    I'm using Visual Studio 2015 and attempting to compile code that has worked before I updated from VS 2013.

    - -

    'inet_addr': Use inet_pton() or InetPton() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS

    - -
    partner.sin_addr.s_addr = inet_addr(ip.c_str());
    -
    - -

    I attempted to use the functions mentioned but they were undefined. I attempted to define the macro in many different spots but nothing happened. Another thread said that I should include Ws2tcpip.h instead of WinSock2 & add Ws2_32.lib. I already have the library added, and when I used the include nothing happened. What is going on?!

    -",HQ -"

    I need to generate a random number between 1 and 50. Aparently the random filter needs a sequence. How can I create a list with numbers from 1 to 50 in Jinja?

    - -
    {{ [1,n,50]|random() }}
    -
    -",HQ -"

    I have installed docker on centos 7. by running following commands,

    - -
    curl -sSL https://get.docker.com/ | sh
    -systemctl enable docker && systemctl start docker
    -docker run hello-world
    -
    - -

    NOTE: helloworld runs correctly and no issues.

    - -

    however when i trying to run docker-compose (docker-compose.yml exists and valid) it gives me the error on Centos only (Windows version works fine for the docker-compose file)

    - -
    /usr/local/bin/docker-compose: line 1: {error:Not Found}: command not found
    -
    -",HQ -" #include - main() - { - char *p=""Hello world""; - int *q; - p++; - q=(int*)p; - q++; - printf(""\n %s\n%s"",p,q); - } -The output of this program is this: -ello world -world - -Can anybody explain how this program works",LQ -"So I have this array `a` with values such as `['___', 'abc', 'def']` - -How can I check if `a[0]` starts with `""___""` ? - -I have something like this `a[0].start_with?(""___"")`, but I get an error. - -I am running Ruby 2.1.8 - -Cheers! - -",LQ -"I am having two files - -File1: - - #include printf,scanf - #include strcpy,strcat,strlen - #include time - - File2.c: - -> int main -> { -> char str1[20] = ""BeginnersBook""; -> printf(""Length of string str1: %d"", strlen(str1)); -> return 0; -> } - - -My Question here is, we have to search for the functions of file1(field2) in file2, if exists then we should write the result to different file named as output, -it should contain only the filename and the appropriate header file should be there like -File2:headerfile1,headerfile2 -It is possible to do it with grep and awk. - - - - - -",LQ -"

    I am needing to open 2 Visual Studio instances, one will be opened for me to just look the code of the Project X /Branch 1. -Another, will be used to code in the Project X / Branch 2. -How to do that and don't loose changes in commit operation?

    -",HQ -"

    I have the foll. dataframe:

    - -

    df

    - -
       A   B
    -0  23  12
    -1  21  44
    -2  98  21
    -
    - -

    How do I remove the column names A and B from this dataframe? One way might be to write it into a csv file and then read it in specifying header=None. is there a way to do that without writing out to csv and re-reading?

    -",HQ -"

    I have a domain name which DNS is edited via Google Cloud DNS. And I have a Google Apps for Work Account with that domain name.

    - -

    I wanted to set up DKIM-authentication but when I try to save the corresponding TXT-Record I get the error that the Tag is invalid.

    - -

    I did the same before and it worked perfectly. I checked the old setup and I saw that the old DKIM-record was about half the length. The new one seems to be too long for a TXT-record in the Google Cloud Platform.

    - -

    Does anyone have a solution?

    -",HQ -"**Problem** - -I am working on app that has 30k digital items . I want to implement **InAppPurchases** for this . So as this is digital content and only once unlock-able/Purchase-able. - -**What i have already done.** - -I tried to do this via consumable for same price tier but apple rejected my app and forcing to use **non-consumable. - -**How to handle the following:** - -1 - Do i need to create 30k in App Purchases at iTunes ???? (I read somewhere there is a limit of 10k) - -2- Is there a way to reuse one in app purchase for type non-consumable. - -Thanks in advance.",LQ -"can anyone help how to push the data in xml view into the newly created json model,i have created the comboBox and retrieved the data from json model and also created the text area when i select the item in combo box and insert data into the text area and submit a button both the data should be pushed to newly created json model in sapweb ide ui5",LQ -"I run my own VPS in Amsterdam where I have a MySQL database that is being populated and maintained using ASP.NET. It's a Windows Server. - -I use this API for four of my existing Android apps (published and working) with a few thousand users who never had any issues connecting to the API through those apps. Recently I finished one of the apps on the iOS platform and it got rejected because Apple couldn't get it to load any content, or it would get stuck on loading without ever returning anything (after we implemented a loading progress animation). After a lot of messaging between me and Apple's review team, they ended up accepting my app to be passed through review even though they never got it to work (or so I believe, they just said they would re-review it and it suddenly got approved after 7 rejects). None of my friends, family or users ever experienced any issues like this on either Android or iOS. - -A good friend of mine who did most of the work on the API is also from the USA, which makes me doubt it's a location problem. - -I must note that pretty much 99.99% of my users are Dutch and all my projects are build for Dutch users. - -Does anyone have experience or ideas in this field? I'm about to publish an update for the already published app and I'm afraid they will reject it because of the same issue. - -The exact message I got at first was: -`Specifically, upon launch we found that the app failed to load any content.` -",LQ -"This is program memory 36.50 MB but I want be less than 32 MB -............................................................................................................................................................... - - - public static void CreateText(string text) - { - if (Convert.ToInt32(text.Length) <= 80) - { - int n; - string str = """"; - string count = """"; - char[] mas = text.ToCharArray(); - - for (int i = 0; i < Convert.ToInt32(mas.Length); i++) - { - if (int.TryParse(mas[i].ToString(), out n)) - { - count += mas[i].ToString(); - } - else - { - if (String.IsNullOrEmpty(count)) - { - str += mas[i].ToString(); - } - else - { - for (int j = 0; j < Convert.ToInt32(count); j++) - { - str += mas[i].ToString(); - } - count = """"; - } - } - - } - Console.WriteLine(str); - } - else - { - Console.WriteLine(""Error""); - } - } - - - - - } - -}",LQ -"So basically I have a dictionary called dict_info. Which consists different types of keys. However, I'd like to iterate through these dictionaries then filter out the ones that has ONLY letters and ONLY integers. However if they have both for instance 123456s, 123456q and 123456b. These three key has letters and integers on it. So I'd like to create a json file saving these three key-value. And I'd like to have a space inbetween digits and letters. Like 123456 s, 123456 q, and 123456 b. -So output in my json would something like with everything filtered out - - output: - - - { - 123456 q : check - 123456 b : check - 123456 s : check - } - - def check_if_works(): - dict_info = {} - dict_info['1234'] = ""check"" - dict_info['12456s'] = ""check"" - dict_info['12456q'] = ""check"" - dict_info['12456b'] = ""check"" - dict_info['123456'] = ""check"" - dict_info['asdftes'] = ""check"" - dict_info['asdftess'] = ""check"" - dict_info['asdftessd'] = ""check"" - arr = [] - for key,value in dict_info.iteritems(): - try: - check_if_digits_only = int(key) - check_if_letters_only = key.isalpha() - - - except: - - new_dict = {} - new_dict[key] = value - arr.append(new_dict) - print arr - with open('output.json','wb') as outfile: - json.dump(arr,outfile,indent=4) - - check_if_works()",LQ -"One of the interview question- -Assume that i have one arithmatic function which will add two long variable and the return type also long. If pass Long.MaxValue() as argument it wont give perfect result.what will be the solution for that.Code is below- - - -` public class ArithmaticExample { - - public static void main(String[] args) { - - System.out.println(ArithmaticExample.addLong(Long.MAX_VALUE, Long.MAX_VALUE)); - } - - public static long addLong(long a,long b){ - return a+b; - } - -} ` - -",LQ -"I have anything like that - -http://i.imgur.com/Hmjidup.png - -I want when I push on the right number call. I try with **tel//:** but don't work. Is possible? - -Thanks!",LQ -"http://stackoverflow.com/questions/15986216/how-can-i-add-a-large-faded-text-background-via-css/15986317#15986317 - -Query similar to above. i am printing the page using window.print() if so only one page background the text is printing. how can i print to all pages in my document",LQ -"i have this array and i would like to find the number of occurence of every value inside this array - - $theArray = array(1,1,2,3,3,3,3); -I would like to have this result - - 1=2; - 2=1; - 3=4 - - -Thanks - ",LQ -" -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { - - if ([segue.identifier isEqualToString:@""mnuSelected""]) - { - ViewController *v = segue.destinationViewController; - - if(self.searchDisplayController.active) { - NSIndexPath *indexPath = nil; - indexPath = [self.searchDisplayController.searchResultsTableView indexPathForSelectedRow]; - v.str = [self.result objectAtIndex:indexPath.row]; - NSIndexPath *rowSelected = nil; - rowSelected = [self.searchDisplayController.searchResultsTableView indexPathForSelectedRow]; - v.UserSelected = rowSelected.row; - - } - else { - NSIndexPath *indexPath = nil; - indexPath = [self.tableView indexPathForSelectedRow]; - v.str = [self.monthName objectAtIndex:indexPath.row]; - NSIndexPath *rowSelected = nil; - rowSelected = [self.tableView indexPathForSelectedRow]; - v.UserSelected = rowSelected.row; - - } - return; } - } - - -I have error in this line >> v.UserSelected = rowSelected.row; -this error >> implicit conversion of 'nsinteger' (aka 'long') to 'nsstring *' is disallowed with arc",LQ -"i got some recent news rss in xml format and change in to json format , it is needed for android application to display recent news. i have an following JSON array ... - - { - ""rss_news"": [ - { - ""title"": "" "", - ""rss_original_src"": ""recent_news1(google news)"", - ""rss_original_src_img"": """", - ""link"": """", - ""pubDate"": ""Tue, 19 Apr 2016 14:05:47 +0530"", - ""description"": """" - }, - { - ""title"": "" "", - ""rss_original_src"": ""recent_news2(yahoo news)"", - ""rss_original_src_img"": """", - ""link"": """", - ""pubDate"": ""Tue, 19 Apr 2016 16:05:47 +0530"", - ""description"": """" - }, - { - ""title"": "" "", - ""rss_original_src"": ""recent_news3"", - ""rss_original_src_img"": """", - ""link"": """", - ""pubDate"": ""Tue, 19 Apr 2016 11:05:47 +0530"", - ""description"": """" - }, - .... - ] - } - ---------- -Now i need ... PHP multi dimensional array short based on value(pubDate).. - -Thanks in advance.. - -",LQ -"[enter image description here][1] - - -i want to add a popup like this in my app in android after i scan a HR code[enter image description here][2]. - - - [1]: http://i.stack.imgur.com/gQjtJ.jpg - [2]: http://i.stack.imgur.com/T7IPC.jpg",LQ -"This is the html code. I want to select export csv of the last block. which is present in a drop down tringle mark whose xpath is - - "".//*[@id='table-view-views']/div/div[1]/ul/li[12]/a/span"" - -Highlighted mark having same **div** and **ul** tags but diffrent **li** tag. so I want to select last block element through csspath. - -Can anybody help. - -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/oFAZC.png",LQ -"im a beginner and also a diploma student... i have created database using localhost... im having problem viewing my database... please help me... i hope u can help me with a full code... this is the ERROR... - - Warning: mysqli_select_db() expects exactly 2 parameters, 1 given in C:\xampp\htdocs\SLR\View S110 PC01.php on line 10 - cannot select DB - -this is my code... - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ""; - } - } - mysqli_close(); - ?> - -
     Delete multiple rows in mysql
    #Software IDSoftware NameInstalled DateExpiry DateProduct Key
    "">
    -
    -
    ",LQ -"I can't find an object with the same look and feel like this one here: -[OSX list object][1] - - - [1]: http://i.stack.imgur.com/noXe5.jpg - -",LQ -"Below is the code that I have written in C++ and it is printing the wrong result for the 2nd and 3rd output line. I am not able to figure it out why it is happening. - -Below is the code which I have written and it is a completely functional code on visual studio. This code expects the one input file named urlMgr.txt whose content should be URLs. Below is the sample URLs which I am using it. - -/* -INPUT TO BE PASTED IN THE urlMgr.txt file so that program can fetch the input from this file. ANY HELP ON THIS WILL BE HIGHLY APPRECIATED. - -*/ -Code is also pasted below. - - #include - #include - #include - #include - #include - #include - #include - #include - #include - using namespace std; - - class urlInfo - { - public: - urlInfo(string &url):urlName(url),hitCount(1) - { - } - - int getHitCount() const - { - return hitCount; - } - - string getURL() - { - return urlName; - } - - string getURL() const - { - return urlName; - } - - void updateHitCount() - { - hitCount++; - } - - void setHitCount(int count) - { - hitCount = count; - } - - private: - string urlName; - int hitCount; - }; - - class urlInfoMaxHeap - { - public: - bool operator() (urlInfo *url1, urlInfo *url2) const - { - if(url2->getHitCount() > url1->getHitCount()) - return true; - else - return false; - } - }; - - - bool operator==(const urlInfo &ui1,const urlInfo& ui2) - { - //return (ui1.getURL().compare(ui2.getURL()) == 0) ? 1:0; - - return (ui1.getURL() == ui2.getURL()); - } - - namespace std - { - template <> struct hash - { - size_t operator()(urlInfo const & ui) - { - return hash()(ui.getURL()); - } - }; - } - - class urlMgr - { - public: - urlMgr(string &fileName) - { - ifstream rdStr; - string str; - rdStr.open(fileName.c_str(),ios::in); - if(rdStr.is_open()) - { - int len; - rdStr.seekg(0,ios::end); - len = rdStr.tellg(); - rdStr.seekg(0,ios::beg); - str.reserve(len+1); - char *buff = new char[len +1]; - memset(buff,0,len+1); - rdStr.read(buff,len); - rdStr.close(); - str.assign(buff); - delete [] buff; - } - stringstream ss(str); - string token; - - while(getline(ss,token,'\n')) - { - //cout<::iterator itr; - itr = urls.find(url); - if(itr == urls.end()) - { - urlInfo *u = new urlInfo(url); - urls[url] = u; - maxHeap.push_back(u); - } - else - { - itr->second->updateHitCount(); - urlInfo* u = itr->second; - vector::iterator vItr; - vItr = find(maxHeap.begin(),maxHeap.end(),u); - if(vItr!=maxHeap.end()) - { - maxHeap.erase(vItr); - maxHeap.push_back(u); - } - } - - make_heap(maxHeap.begin(),maxHeap.end(),urlInfoMaxHeap()); - } - - void releaseResources() - { - for_each(urls.begin(),urls.end(),[](pair p){ - urlInfo* u = p.second; - delete u; - }); - } - - void printHeap() - { - for_each(maxHeap.begin(),maxHeap.end(),[](urlInfo* u){ - cout<getHitCount()<<"" ""<getURL(); - }); - } - private: - unordered_map urls; - vector maxHeap; - }; - - - int main() - { - string fileName(""urlMgr.txt""); - urlMgr um(fileName); - um.printHeap(); - um.releaseResources(); - cout<j ;j++ ) { - if ((array[i] + array[j])==0) { - System.out.println(""The numbers "" + array[i] + "" and "" + array[j] + "" have a total sum equal to 0.""); - totalIsZero = true; - } - } - } - if (!totalIsZero) { - System.out.print(""None of the numbers have a total sum of 0 with each other. ""); - } - }` - -Here is a simple code I just wrote. Its task is to check if the sum between every two numbers in an array(consisting of five numbers) is equal to zero. The problem I have is that when there are two couples of numbers, both equal to 0, at the end of the program there is a message for one of the couples only, not for both, as I expected. How can I fix that, so the user can read that there are two couples of numbers equal to 0. Thanks in advance!",LQ -"04-20 00:40:11.688: E/AndroidRuntime(1623): FATAL EXCEPTION: AsyncTask #1 -04-20 00:40:11.688: E/AndroidRuntime(1623): Process: com.clip.android, PID: 1623 -04-20 00:40:11.688: E/AndroidRuntime(1623): java.lang.RuntimeException: An error occured while executing doInBackground() -04-20 00:40:11.688: E/AndroidRuntime(1623): at android.os.AsyncTask$3.done(AsyncTask.java:300) -04-20 00:40:11.688: E/AndroidRuntime(1623): at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:355) -04-20 00:40:11.688: E/AndroidRuntime(1623): at java.util.concurrent.FutureTask.setException(FutureTask.java:222) -04-20 00:40:11.688: E/AndroidRuntime(1623): at java.util.concurrent.FutureTask.run(FutureTask.java:242) -04-20 00:40:11.688: E/AndroidRuntime(1623): at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:231) -04-20 00:40:11.688: E/AndroidRuntime(1623): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112) -04-20 00:40:11.688: E/AndroidRuntime(1623): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587) -04-20 00:40:11.688: E/AndroidRuntime(1623): at java.lang.Thread.run(Thread.java:841) -04-20 00:40:11.688: E/AndroidRuntime(1623): Caused by: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare() -04-20 00:40:11.688: E/AndroidRuntime(1623): at android.os.Handler.(Handler.java:200) -04-20 00:40:11.688: E/AndroidRuntime(1623): at android.os.Handler.(Handler.java:114) -04-20 00:40:11.688: E/AndroidRuntime(1623): at android.widget.Toast$TN.(Toast.java:327) -04-20 00:40:11.688: E/AndroidRuntime(1623): at android.widget.Toast.(Toast.java:92) -04-20 00:40:11.688: E/AndroidRuntime(1623): at android.widget.Toast.makeText(Toast.java:241) -04-20 00:40:11.688: E/AndroidRuntime(1623): at com.clip.android.ClaimRegisterPage$AsyncCallWS.doInBackground(ClaimRegisterPage.java:124) -04-20 00:40:11.688: E/AndroidRuntime(1623): at com.clip.android.ClaimRegisterPage$AsyncCallWS.doInBackground(ClaimRegisterPage.java:1) -04-20 00:40:11.688: E/AndroidRuntime(1623): at android.os.AsyncTask$2.call(AsyncTask.java:288) -04-20 00:40:11.688: E/AndroidRuntime(1623): at java.util.concurrent.FutureTask.run(FutureTask.java:237) -04-20 00:40:11.688: E/AndroidRuntime(1623): ... 4 more -04-20 00:40:11.788: W/EGL_emulation(1623): eglSurfaceAttrib not implemented -04-20 00:40:12.238: E/WindowManager(1623): android.view.WindowLeaked: Activity com.clip.android.ClaimRegisterPage has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView{a56affd0 V.E..... R......D 0,0-571,339} that was originally added here -04-20 00:40:12.238: E/WindowManager(1623): at android.view.ViewRootImpl.(ViewRootImpl.java:346) -04-20 00:40:12.238: E/WindowManager(1623): at android.view.WindowManagerGlobal.addView(WindowManagerGlobal.java:248) -04-20 00:40:12.238: E/WindowManager(1623): at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:69) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.Dialog.show(Dialog.java:286) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.ProgressDialog.show(ProgressDialog.java:116) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.ProgressDialog.show(ProgressDialog.java:99) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.ProgressDialog.show(ProgressDialog.java:94) -04-20 00:40:12.238: E/WindowManager(1623): at com.clip.android.ClaimRegisterPage$AsyncCallWS.onPreExecute(ClaimRegisterPage.java:133) -04-20 00:40:12.238: E/WindowManager(1623): at android.os.AsyncTask.executeOnExecutor(AsyncTask.java:587) -04-20 00:40:12.238: E/WindowManager(1623): at android.os.AsyncTask.execute(AsyncTask.java:535) -04-20 00:40:12.238: E/WindowManager(1623): at com.clip.android.ClaimRegisterPage.onCreate(ClaimRegisterPage.java:93) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.Activity.performCreate(Activity.java:5231) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2148) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2233) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.ActivityThread.access$800(ActivityThread.java:135) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196) -04-20 00:40:12.238: E/WindowManager(1623): at android.os.Handler.dispatchMessage(Handler.java:102) -04-20 00:40:12.238: E/WindowManager(1623): at android.os.Looper.loop(Looper.java:136) -04-20 00:40:12.238: E/WindowManager(1623): at android.app.ActivityThread.main(ActivityThread.java:5001) -04-20 00:40:12.238: E/WindowManager(1623): at java.lang.reflect.Method.invokeNative(Native Method) -04-20 00:40:12.238: E/WindowManager(1623): at java.lang.reflect.Method.invoke(Method.java:515) -04-20 00:40:12.238: E/WindowManager(1623): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785) -04-20 00:40:12.238: E/WindowManager(1623): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601) -04-20 00:40:12.238: E/WindowManager(1623): at dalvik.system.NativeStart.main(Native Method) - -",LQ -"#include - -using namespace std; - -void insertion_sort ( int c[]) ; -int main () { - - int ch [] = { 314,463,25,46,24,554,99} ; - - insertion_sort( ch[] ); - - cout< - - double pwra (double, double); - - int main() - { - double number, power, xx; - printf(""Enter Number: ""); - scanf(""%lf"", &number); - printf(""Enter Number: ""); - scanf(""%lf"", &power); - xx=pwra (number,power); - printf(""Result: %lf"", xx); - - return 0; - } - - double pwra (double num, double pwr) - { - int count; - int result = 1; - for(count=1;count<=pwr;count++) - { - result = result*num; - } - return result; - }",LQ -"Below two table I have with sample data. Table A contains dollar rate(into Indian rupee) as per year and Table B contains amount per year and I want to convert -dollar into rupee as per year. - - - Table A - Rate Year - 47 2001 - 49 2003 - 55 2004 - - Table B - Amt Year - 25$ 2001 - 34$ 2002 - -Question : for first record(year 2001) we have entry in both tables so we can do this easily by using below query - - sel A.Rate*B.Amt from A,B - where B.year=A.year - -But for second record(i.e year 2002) we do not have entry in table A (which is rate table) so for these kind cases I want to use rate value from previous year (i.e : 47 rupee from year 2001)",LQ -" var data=[{ - - ""name"": ""cA"", - ""leaf"": false, - ""largeIconId"": null, - ""label"": ""cA"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [{ - ""name"": ""cA-A"", - ""leaf"": false, - ""largeIconId"": null, - ""label"": ""cA-A"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [{ - ""name"": ""cA-A-A"", - ""leaf"": false, - ""largeIconId"": null, - ""label"": ""cA-A-A"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [{ - ""name"": ""cA-A-A-A"", - ""leaf"": false, - ""largeIconId"": null, - ""label"": ""cA-A-A-A"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [{ - ""name"": ""cA-A-A-A-A"", - ""leaf"": true, - ""largeIconId"": null, - ""label"": ""cA-A-A-A-A"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [] - }] - }] - }] - }, { - ""name"": ""cA-B"", - ""leaf"": true, - ""largeIconId"": null, - ""label"": ""cA-B"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [] - }, { - ""name"": ""cA-C"", - ""leaf"": true, - ""largeIconId"": null, - ""label"": ""cA-C"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [] - }] -}, { - ""name"": ""A"", - ""leaf"": false, - ""largeIconId"": null, - ""label"": ""A"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [{ - ""name"": ""A-Level1"", - ""leaf"": false, - ""largeIconId"": null, - ""label"": ""A-Level1"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [{ - ""name"": ""A-Level2"", - ""leaf"": true, - ""largeIconId"": null, - ""label"": ""A-Level2"", - ""hideAllSearchFilters"": false, - ""guidePage"": null, - ""expanded"": false, - ""defaultSearchCategory"": false, - ""childCategories"": [] - }] - }] -}]; -",LQ -"In the C++/CLI, I have defined some instance in the class as follow. - - public ref class A - { - public: - int test(){return 0;} - }; - - public ref Class B - { - public: - static A^ a_Instance = gcnew A(); - - }; - -And in the C# side, I have create a B instance in order try to use the function in a_Instance as follow. - - private B b_instance = new B(); - -The question is, if it is possible for me to get the instance create in the managed C++ class and use the function in it? -Thanks all. -",LQ -"Need to create employee record based on branch - -I have a scenario, where if branch combo box value is selected xyz branch then - -ID starts with XYZ-0001 - -if combo box value is selected abc branch then - -ID starts with ABC-0001 and then so on - -Please suggest any idea on how to create this format.",LQ -"I have one table that a two column and want to insert this two column data in another table means e.g. -Table 1 Column1 Column2 - A B -table1 column1 and column2 value insert into second table as row wise -means result should be below -Table2 column3 - A - B",LQ -"I am searching a security function like this: -The user can put his paypal address and an amount of money(which he gained in my app) in my application, and I will recieve it with an http request on my server. Now this is really insecure, anyone with the http requesturl can send me payout data for himself. So what I need is something like a code generator that only my app can create this sort of code, and my php script checks if the code doesnt fit, it wont accept the request. I thougt about java encryption, to encrypt the amount of money. but anybody with the skills to generate a java encrypter can also create an url to send a whitedraw request I think? - -I saw an app with this function, its called plus500 there you can whitedraw your money to a(your) paypal account, but I'm not that pro finding out how they do this feature securely.",LQ -"Get city information from wikipedia, and show it on an Android APP. - -However, every time i try to transform the data to json, throws an exception - - -https://en.wikipedia.org/w/api.php?action=query&prop=revisions&titles=Threadless&rvprop=content&format=json&rvsection=0 - - JSONArray jsondata = new JSONArray(sb.toString()); - -",LQ -I just wanna know how to let users for **maximum two times a day** on my application. That means that the app will block the users if they are going to enter for a third time in a day.,LQ -hey I hope you all will fine. I want to make auto_incriment key in ms sql which starts to 0 (zero) on every day start. can anyone tell me that query. thanx in advance ,LQ -"i have an array string such a: - - [{""633"" : [{""8768"" : ""hello"",""8769"" : ""world""}],""634"" : [{""8782"" : ""on"",""8783"" : ""No""}]}] - -i am trying to deserialize/parse this string into an array. - -Here is what I have done so far: - - var arrString = ""[{\""633\"" : [{\""8768\"" : \""hello\"",\""8769\"" : \""world\""}],\""634\"" : [{\""8782\"" : \""on\"",\""8783\"" : \""No\""}]}]"" - - var attendeeArray = JsonConvert.DeserializeObject>>(arrString); //error - - -this gives me the error: *Additional information: Unexpected character encountered while parsing value: [. Path '[0].633', line 1, position 11.* - -i'm wondering if its because I'm calling int, string. when it should be something like int, array (int, string)???",LQ -"i am new in angular.suppose i am showing employee info through **ng-repeat** in tabular format. suppose employee info has one property called **isDeveloper**. if **isDeveloper value is 1** then i will show right symbol in row and **if isDeveloper is 0** then i will show cross symbol in row. how to do it. - -the trick is not coming to my head.do i need to achieve it by custom filter or custom directive ? please share the idea with bit of code sample if possible. thanks -",LQ -"I am currently working on a interactive timeline page generated all in js, but this loop is making the page not work - - - - - - if (i = 0) { - console.log('magic'); - } else if (i = 1) { - console.log('magic'); - } else if (i = 2 ) { - console.log('magic'); - } else if (i = 3) { - console.log('magic'); - } else if (i = 4) { - console.log('magic'); - } else if (i = 5) { - console.log('magic'); - } else if (i = 6) { - console.log('magic'); - } else if (i = 7) { - console.log('magic'); - } else { - console.log('magic'); - } - - - -",LQ -"I have the following program, the programs purpose is to display how many times each value in the list vector occurred. - -if the tuple 2:3 occurs 3 times in the array, then the program displays this to the user. - -**Expected output** - - - 0:8 occurred 1 time %x - - 2:3 occurred 3 time %x - - 1:5 occurred 1 time %x - - 9:5 occurred 2 time %x - -**Actual Output:** - - - 2:3 occurred 3 time %42 - - 8:9 occurred 1 time %14 - - 9:5 occurred 3 time %42 - -Any idea what I'm doing incorrectly? Here's a complete and verifiable working version of the code I'm using - -Any assistance is greatly appreciated. - - - - #include - #include - #include - - using namespace std; - int counter = 0; - double percentage; - int val = 0; - vector> list = { make_tuple(2, 3), make_tuple(0, 8), make_tuple(2, 3), make_tuple(8, 9), make_tuple(9, 5), make_tuple(9, 5), make_tuple(2, 3) }; - - - int binarysearch(vector> list, int low, int high, tuple number) - { - int index = low; - int mid = 0; - // loop till the condition is true - while (low <= high) { - // divide the array for search - mid = (low + high) / 2; - - if (list.at(mid) > number) { - high = mid - 1; - - } - else { - low = mid + 1; - } - - }return (high - index + 1); - - } - - int main() - { - - while (counter <= list.size() - 1) { - - val = binarysearch(list, counter, list.size() - 1, list.at(counter)); - percentage = val * 100 / list.size(); - cout << ""Value: "" << get<0>(list.at(counter)) << "":"" << get<1>(list.at(counter)) << "" Occurs: "" << val << "" Time(s)"" << "" %"" << percentage << endl; - counter += val; - } - - - - return 0; - }",LQ -" public void insert(int v){ - Node t = root; - int compareResu`enter code here`lt ; - compareResult = 0 ; - if((t.getData()).equals(v))return ; - if(t == null){ - Node n = - -Heading -------- - - new Node<>(v, t, null, null); - - } - else - while(t!=null){ - - compareResult = v.compareTo(t.getData()); - if( compareResult >0){ - if(t.getRight()!=null){ - t = t.getRight() ; - } - else{ - Node n = t.getRight(); - break ; - } - } - - else{ - compareResult = v.compareTo(t.getData()); - if(compareResult < 0){ - if(t.getLeft()!=null){ - t = t.getLeft() ; - } - else{ - Node n = t.getLeft() ; - break ; - } - } - } - }",LQ -" my view.php - 'update-form']) . - 'id.'""> - Update'. - Html::endForm(); - ?> - $model->id], [ - 'class' => 'btn btn-danger', - 'data' => [ - 'confirm' => 'Are you sure you want to delete this item?', - 'method' => 'post', - ], - ]) ?> -my controller is - public function actionView($id) - { - $model = $this->findModel($id); - return $this->render('view', [ - 'model' => $model - ]); - } - - -How to modify this for getting my view page without id value in the url. - -Thanks in advance.",LQ -"I need some help with wildcard search with % operator at both ends. The no of records are nearly 7 million. -Is there any option to setup an index for this. I already created an index of index type CTXSYS which works well for single % operator at one end. -Please help.",LQ -"i can not access the global variable which store some ajax response data, when I console log the object itself, it give me all the details, but when i console log the arrays in that object, it returns me []. i have set the ajax request to be synchronous. -Please take a look this http://codepen.io/stanleyyylau/pen/reKrdG - - -//let's append content - console.log(resultObject); - - console.log(resultObject.logo); - for(var ii=0; ii TASK_ClickthroughBuild(string server, int frame, int click) - - { - - if (server == ""value"") - { - CreativeCode.Inlines.Add(openScript + newLine); - CreativeCode.Inlines.Add(""var "" + click + "" = '%%CLICK_URL_ESC%%%%DEST_URL%%';"" + newLine); - CreativeCode.Inlines.Add(""var "" + frame + "" = document.getElementById('"" + frame + ""');"" + newLine); - CreativeCode.Inlines.Add(frame + "".href = "" + click + "";"" + newLine); - CreativeCode.Inlines.Add(closeScript); - PASSBACKframeINT = frame; - } - return PASSBACKframeINT; - } - -The above function returns an integer value and writes code to a textblock. - -This is the second function. - -private async Task clickElementBuild() - { - - CreativeCode.Inlines.Add("""" + newLine); - CreativeCode.Inlines.Add(""
    "" + newLine); - - } - -The second function, the code needs to write the textblock code ABOVE the first function, but depends on the returned value of first function to write properly. - -So I need to write this in an Asynchronous format. Can I have pointers or a better way of doing this? - -Thanks - - - - - - -",LQ -"How convert this pattern - - Some_Word>[\n\t\r].*?[\n\t\r].*?[\n\t\r].*?BK<\/symbol> - -to be **less** recognize his? - -P.S. I checked [here][1] that patter with the text and it work correctly: - - before bla bla - ssssssssssssssssssss> - dddddddddddddddddddd> - ccccccccccccccccccccc BK - after bla bla> - -Help me please. - -Thanks for advance! - - - [1]: https://regex101.com/",LQ -"I try to make some some with various variables and it should give 200 on final response But It Give me -200 What Is Wrong With My Code Why It give -200 i want it to give me 200 on final some -My App Send An Ajax call With a variable $Points but for security i have made a some with more two variables -for example if the user have 200 points the app it will add the ntruck=412020 and truck=20201 -so on final it send to the php script the value 432221+200=432421 -wen the script is load it take from total 432421-ntruck-truck so it will stay only the value of the points 200 -This Is my code: - - - - - - - - - -But Wen I Make An Echo It Give me minus -200 where i have failed ",LQ -"Why does the code below return -1 instead of arr.length-1? If the find function is looking for 24 it should return 5, but returns -1. It should only return -1 if n is not found in arr. Thanks for your help. - - -public class linearArraySearch { - - public static void main(String[] args) { - int[] numbers = new int[]{ 12, 42, 56, 7, 99, 24, 6, 1, 5 }; - System.out.println( find(numbers, 24) ); - } - - public static int find( int[] arr, int n ){ - if( arr[arr.length-1] == n ){ - return arr.length-1; - }else if( arr.length > 1 && arr[arr.length-1] != n ){ - int[] temp = new int[arr.length-1]; - for( int i = 0; i < temp.length; i++ ){ - temp[i] = arr[i]; - } - find( temp, n ); - } - return -1; - } -}",LQ -"Hi if you check the site im building http://pripper.github.io/obk/index.html -So can you see that the nav bar is changing size on difrent pages and I dont know why it does it. plz some1 help me out.",LQ -"Is there any way to convert char* to int? - -Got string(string1) of characters received from UART - -this string looks like: {3600,32,300} - - char t1_s[32],t2_s[32],t3_s[32]; - - static char string1[15]; - - strcpy(t3_s, strtok(string1 , "","")); - strcpy(t2_s, strtok(NULL , "","")); - strcpy(t1_s, strtok(NULL , "","")); - - t1= t1_s - '0'; - t2= t2_s - '0'; - t3= t3_s - '0'; - -and compiller get warning - -#515-D a value of type ""char *"" cannot be assigned to an entity of type ""int"" main.c - -Need to get values t1_s,t2_s,t3_s to integer. - -",LQ -"i have a textfile with some rows of text - -i want to put the text into a 2D vector because i -need to be able to call each character seperatly [x][y] - -this is what i got: - - int main() { - // Variable declarations - fstream file; - int i=0; - vector > maze(1,vector(1)); - - ifstream myReadFile; - myReadFile.open(""input.txt""); - - while (!myReadFile.eof()) { - - - for (int j=0; maze[i][j] != ""\0""; j++){ - myReadFile >> maze[i][j]; - } - i++; - - } - - file.close(); - for (int i = 0; i < maze.size(); i++) - { - for (int j = 0; j < maze[i].size(); j++) - { - cout << maze[i][j]; - } - } - return 0; - } - -",LQ -" i want to display this modal popup after php condition check. - -
    -
    -
    -
    - -

    Subscribe our Newsletter

    -
    -
    -

    Subscribe to our mailing list to get the latest updates straight in your inbox.

    -
    -
    - -
    -
    - -
    - -
    -
    -
    -
    -
    - - in this php code used for display the popup.but it cannot display. - - $('#myModal65').modal('show');""; - } - ?> - - ",LQ -" NullPointerException this error happens when i try to set `location2.setLatitude(latitudeclick);` -I test the app and i receive when i click the value out of latitudeclick - - - - - - - - @Override - public void onResult(PlaceBuffer places) { - if (places.getCount() == 1) { - localizacao = (places.get(0).getLatLng()); - Double latitudeclick = localizacao.latitude; - Double longitudeclick = localizacao.longitude; - Location location2 = null; - location2.setLatitude(latitudeclick); - location2.setLatitude(longitudeclick); - - - - }",LQ -"I am unable to Connect to PHP with mongodb. I have already done the all of process but unknown error is occur again and again. -Fatel error: Mongo Class not Found. -If anyone face this problem and solved it, so please tell me about this and how to fix this problem.",LQ -" # I have this situation : - **Models:-** - class Publisher(models.Model): - name = models.CharField(max_length=30) - address = models.CharField(max_length=50) - city = models.CharField(max_length=60) - state_province = models.CharField(max_length=30) - country = models.CharField(max_length=50) - website = models.URLField() - date = models.DateTimeField() - - - class Meta: - ordering = [""-name""] - - def __unicode__(self): # __unicode__ on Python 2 - return self.name - - class Author(models.Model): - publisher = models.ForeignKey(Publisher) - salutation = models.CharField(max_length=10) - name = models.CharField(max_length=200) - email = models.EmailField() - headshot = models.ImageField(upload_to='author_headshots') - - - def __str__(self): - return self.name - - - class Book(models.Model): - title = models.CharField(max_length=100) - authors = models.ManyToManyField('Author') - publisher = models.ForeignKey(Publisher, on_delete=models.CASCADE) - publication_date = models.DateField() - - def __str__(self): - return self.title - - def get_authors(self): - return ""\n"".join([a.name for a in self.authors.all()]) - -# i want to show authors field in template with Publishers - -**Template**: - - {% for a in obj.pk|get_author %} - {{ a.name }}
    - {{ a.headshot }} - {% endfor %} - -**Custom Template Tags:** - - def get_author(pk): - try: - publisher = Publisher.objects.get(pk=pk) - print type(publisher) - author = Author.objects.filter(Publisher=publisher) - print author - except: - author = [] - return author - - register.filter('get_author', get_author) - - ",LQ -"My work is converting Linux command into CMake execute_process(COMMAND ...), and there are some differences between them, so i need to understand each Linux command. But this m4 command really beat me. The m4 command as below: - - - - m4 -Isource/analyzer/ -P < source/analyzer/aParser.m4y > source/analyzer/aParser.by - -What does this command mean? -",LQ -"I have a url - - market://details?id=com.balancehero.truebalance&referrer=utm_source%3Dapp%26utm_medium%3Dlink%26utm_term%3D%26utm_content%3D%26utm_campaign%3Dmgm%26campid%3D2FC42T27%26m%3D1%26trackingid%3D000146132647632302db63d958690001 - -How can i get this value from above url 000146132647632302db63d958690001 - -Can i use preg_match function or something else. - - ",LQ -"SET @sql = NULL; - SELECT - GROUP_CONCAT(DISTINCT - CONCAT( - 'max(CASE WHEN ca.date = ''', - date_format(date, '%Y-%m-%d'), - ''' THEN coalesce(p.status, ''P'') END) AS `', - date_format(date, '%Y-%m-%d'), '`' - ) - ) INTO @sql - FROM calendar - where date>='2013-06-01' - and date <= '2013-06-05'; - - SET @sql - = CONCAT('SELECT ca.studentname, - ca.rollno, - ca.class, ', @sql, ' - from - ( - select c.date, a.studentname, a.rollno, a.class - from calendar c - cross join tbl_admission a - ) ca - left join tbl_absentees p - on ca.rollno = p.rollno - and ca.date = p.date - where ca.date>=''2013-06-01'' - and ca.date <= ''2013-06-05'' - group by ca.studentname, ca.rollno, ca.class - order by ca.rollno'); - - PREPARE stmt FROM @sql; - EXECUTE stmt; - DEALLOCATE PREPARE stmt;",LQ -"I am trying to generate a Put / Call Ratio calculation program for my own purpose.Here is the code: problem is I am stuck in some places. -1.I need to generate a summation of all strikes volume * all strikes prices -2. and final one is generating the ratio. - -So far I tried a lot and ended up having buggy program.However I am providing the code for now for further so that I can complete the rest of the part get the OutPut properly.(nse DO not provide PCR as CBO does provide a solution) - - from nsepy import get_history - from datetime import date - import pandas as pd - import requests - from io import BytesIO - import certifi - from scipy import stats - from dateutil.relativedelta import relativedelta - import numpy as np - #import matplotlib.pyplot as plt - import datetime - import numpy as np - import matplotlib.colors as colors - import matplotlib.finance as finance - import matplotlib.dates as mdates - import matplotlib.ticker as mticker - import matplotlib.mlab as mlab - import matplotlib.pyplot as plt - import matplotlib.font_manager as font_manager - import talib as ta - from talib import MA_Type - import statsmodels as sm - - - - nf_calls=[] - nf_puts=[] - wPCR=[] - - #nf_calls[['VolumeCalls']]=np.nan - #nf_puts[['VolumeCalls']]=np.nan - i=min_avalable_strikes=4850 - max_avalable_strike=9400 - while i in range(min_avalable_strikes,max_avalable_strike): - nf_opt_CE = get_history(symbol=""NIFTY"", - start=date(2016,4,1), - end=date(2016,4,22), - index=True, - option_type=""CE"", - strike_price=i, - expiry_date=date(2016,4,28)) - - #print(nf_opt_CE.head()) - #if nf_opt_CE['Number of Contracts'].values >0 : - '''if nf_opt_CE.empty : - nf_opt_CE.append(0) - ''' - - nf_opt_PE = get_history(symbol=""NIFTY"", - start=date(2016,1,1), - end=date(2016,4,18), - index=True, - option_type=""PE"", - strike_price=i, - expiry_date=date(2016,4,28)) - print(nf_opt_PE.head()) - #print(nf_opt_PE.head()) - #print(i) - #if nf_opt_PE['Number of Contracts'].values>0 : - '''if nf_opt_CE.empty : - nf_opt_PE.append(0) - ''' - - i=i+50 - - - #print(wPCR) - - '''def PCRForSym(): - return NULL - ''' - - - - - nf_opt_PE['NewCols']=nf_opt_PE['Number of Contracts']* nf_opt_PE['Close'] - - nf_opt_CE['NewCols']= nf_opt_CE['Number of Contracts']*nf_opt_CE['Close'] - - - - #wPCR=nf_puts - - print(nf_opt_PE.head()) - -",LQ -"I am writing various operator overloads for a binary tree function that I am creating, the specifications require an overload for - - binary_tree& binary_tree::operator=(const binary_tree &other) - { - - return binary_tree(); - } - -the test for the operator working is as follows, - - int main(int argc, char **argv) - { - tree = new binary_tree(vector{11, 5, 3, 7}); - binary_tree temp = *tree; - temp.insert(12); - str = temp.inorder(); - if (str != string(""3 5 7 11 12"") && temp.inorder() != tree->inorder()) - cerr << ""test failed (assignment operator)"" << endl; - else - cout << ""test passed (assignment operator)"" << endl; - } - -Obviously the point of this test is to create a new tree temp, which has the values of the original, but I can't seem to get it to work so that when .insert(12) is called, it doesn't alter the original tree. The operator has to work based on the test given in main, unedited. - -I have tried various things inside the = operator but none of them seem to have any effect. I have methods that can copy values from one tree to another, but none that seem to work with the given test. - -Thanks for any help",LQ -"I have an JSON Body of an http post that has to be split into 80 character double quoted strings - but - whenever I use unpack to read the first 80 characters, the string pointer in the source string (which is not CR/LF delimited at the end of each line yet) never changes - e.g. the loop below keeps reading the same string over and over: - - @row =unpack 'A80', $body; - foreach $line (@row) - { - @row =unpack 'A80', $body; - print '""'.$line.'""' ; - } - - -",LQ -"I'm new to Javascript! - -if (fname == null || fname == """") { - -Getting uncaught syntax error:unexpected token if in line 13. It says ""SyntaxError: missing variable name"" in Javascript lint - - - - - - -function validateregistration() - -{ - -var emailRegex = /^[A-Za-z0-9._]*\@[A-Za-z]*\.[A-Za-z]{2,5}$/; - - - - var fname = document.form.user_firstname.value, - lname = document.form.user_lastname.value, - uname = document.form.username.value, - femail = document.form.email.value, - freemail = document.form.verify_email.value, - fpassword = document.form.password.value, - - - if (fname == null || fname == """") { - document.form.user_firstname.focus(); - document.getElementById(""errorBox"") - .innerHTML = ""enter the first name""; - return false; - } - if (lname == null || lname == """") { - document.form.user_lastname.focus(); - document.getElementById(""errorBox"") - .innerHTML = ""enter the last name""; - return false; - } - - if (femail == null || femail == """") { - document.form.email.focus(); - document.getElementById(""errorBox"") - .innerHTML = ""enter the email""; - return false; - } else if (!emailRegex.test(femail)) { - document.form.Email.focus(); - document.getElementById(""errorBox"") - .innerHTML = ""enter the valid email""; - return false; - } - - if (freemail == null || freemail == """") { - document.form.verify_email.focus(); - document.getElementById(""errorBox"") - .innerHTML = ""Re-enter the email""; - return false; - } else if (!emailRegex.test(freemail)) { - document.form.enterEmail.focus(); - document.getElementById(""errorBox"") - .innerHTML = ""Re-enter the valid email""; - return false; - } - - - if (fpassword == null || fpassword == """") { - document.form.password.focus(); - document.getElementById(""errorBox"") - .innerHTML = ""enter the password""; - return false; - } - - - - -}",LQ -"My website won't display images on http://teretana.mk/. When I open the debugging console in Chrome I get 2 errors which I do not understand at all(can be seen here http://i.imgur.com/2tLcsl3.jpg). I hope someone will be able to resolve this issue I've had all day. And hopefully this will fix the images, it's also really weird if you go in a post like this one http://teretana.mk/2016/04/22/td_d_slug_20/ you can actually drag the blank image in Chrome(maybe in other browsers too) and the actual image will display.",LQ -"I want to replace all string values in below json string to empty string, true to false, and 1 to 0 in square brackets using JavaScipt. - -Addition informatio: json string is placed in a string type variable. - -NOTE: properties are dynamic. Meaning sometimes I could have MobilePhone and there will be a case that this property will be missing. So referencing the property name is not an option. - -My JSON string: - - {""MobilePhone"":true,""ToDeleteIndex"":1,""BusinessPhone"":true,""ApplicantType"":""HOLDER"",""Title"":""Mr"",""FirstName"":""Andrew"",""RemoveApplicant"":[1,null]} - -Expected results: - - {""MobilePhone"":false,""ToDeleteIndex"":1,""BusinessPhone"":false,""ApplicantType"":"""",""Title"":"""",""FirstName"":"""",""RemoveApplicant"":[0,null]}",LQ -So basically I want to ask the user for a date and time of departure then ask the user for time of arrival to compare and get duration. I was wondering what kind of method of input would be good for this input. I was thinking either a multi drop down box or some kind of scrolling bar type deal. Can any one give me and suggestion on a good input method and what it is called? Thank you ,LQ -"I have a cpp file and its header file. I need to include this cpp header file in a c code and use the functions in it. - -When the cpp.h file is compiled through main.c, compilation fails because of the cpp linkage. -On using the macro __cplusplus stream and string are not resolved, is there some way to compile the cpp.h file through and execute. - -I have given a outline of my code only. -Kindly help me out in this. Thanks - -**cpp header file cpp.h** - - struct s1 - { - string a; - string b; - }; - typedef struct s1 s2; - class c1 - { - public: - void fun1(s2 &s3); - private: - fun2(std::string &x,const char *y); - }; - -**cpp file cpp.cpp** - - c1::fun1(s2 &s3) - { - fstream file; - - } - - c1::fun2(std::string &x,const char *y) - { - - } - - -**c file main.c** - - #include ""cpp.h"" - void main() - { - c1 c2; - s1 structobj; - c2.fun1(&structobj); - printf(""\n value of a in struct %s"",structobj.a); - - } - ",LQ -"I have recently started to use VBA Excel for financial modeling purposes and already found that it can optimize my work process. - -Right now I try to develop a macro that will help me to automatically format all the cells in the workbook, and I have no idea how to write such macro. - -What I want to do is the following - I have 3 types of numbers: - - 1. Hard Numbers - 2. Numbers that are internal links - they are values from other sheets of the workbook. - 3. Numbers that are external links - they are values from other workbooks. - -Is it possible to write a macro that will format cells depending on type of number (mentioned-above)? - -Thanks - - ",LQ -"I'm learning C++ and I got this time program question.So what this program has got to do is to get time from user and should display time also it must work like a clock. For example when the user gives 20:13:10 it must work on it like after 60 seconds if the user asks for time it must give 20:14:10, how do I make it count in the background while it asks for user for time, I've made a basic program and can you help how do I make it the way it is asked for? - - program is down there: - //om! god is great, greatest - #include - #include - - using namespace std; - class Time{ - int hour, minute, second; - public: - void SetTime(int hour1=0, int minute1=0, int second1=0){ - hour = hour1; - minute=minute1; - second=second1; - cout<<""set time working""; - } - void display(){ - cout<<""hour | minute | second""<>hour1; - cin>>minute1; - cin>>second1; - time.SetTime(hour1,minute1,second1); - cout<<""\n The current time?""; - time.display(); - return 0; - }",LQ -"I am transferring my code from Python/C interfaced using ctypes to Python/C++ interfaced using Cython. The new interface will give me an easier to maintain code, because I can exploit all the C++ features and need relatively few lines of interface-code. - -The interfaced code works perfectly with small arrays. However it encounters a *segmentation fault* when using large arrays. I have been wrapping my head around this problem, but have not gotten any closer to a solution. I have included a minimal example in which the segmentation fault occurs. Please note that it consistently occurs on Linux and Mac, and also valgrind did not give insights. Also note that the exact same example in pure C++ does work without problems. - -The example contains a Sparse matrix class (of the compressed row format) in C++. An interface is created in Cython. As a result the class can be used from Python. - -# C++ side - -``sparse.h`` - - #ifndef SPARSE_H - #define SPARSE_H - - #include - #include - - using namespace std; - - class Sparse { - - public: - double* data; - int* row_ptr; - int* col_ind; - int* shape; - int nnz; - - Sparse(); - ~Sparse(); - Sparse(int* shape, int nnz, double* data, int* row_ptr, int* col_ind); - void view(void); - - }; - - #endif - -``sparse.cpp`` - - - #include ""sparse.h"" - - // ============================================================================= - - Sparse::Sparse() - { - data = NULL; - row_ptr = NULL; - col_ind = NULL; - shape = NULL; - nnz = 0 ; - } - - // ============================================================================= - - Sparse::~Sparse() {} - - // ============================================================================= - - Sparse::Sparse(int* Shape, int NNZ, double* Data, int* Row_ptr, int* Col_ind) - { - - shape = Shape ; - nnz = NNZ ; - data = Data ; - row_ptr = Row_ptr; - col_ind = Col_ind; - - } - - // ============================================================================= - - void Sparse::view(void) - { - - if ( row_ptr==NULL || col_ind==NULL || data==NULL || shape==NULL ) { - cout << ""NULL-pointer found"" << endl; - return; - } - - int i,j; - - for ( i=0 ; i shape.data if shape is not None else NULL, - data.shape[0], - data .data if data is not None else NULL, - row_ptr.data if row_ptr is not None else NULL, - col_ind.data if col_ind is not None else NULL, - ) - - # ---------------------------------------------------------------------------- - - def __dealloc__(self): - del self.ptr - - # ---------------------------------------------------------------------------- - - def view(self): - self.ptr.view() - - # ---------------------------------------------------------------------------- - -``setup.py`` - - from distutils.core import setup, Extension - from Cython.Build import cythonize - - setup(ext_modules = cythonize(Extension( - ""csparse"", - sources=[""csparse.pyx"", ""sparse.cpp""], - language=""c++"", - ))) - -# Python side - - - import numpy as np - import csparse - - N = 5000 - - matrix = csparse.PySparse( - shape = np.array([N,N],dtype='int32'), - data = np.random.rand(N*N), - row_ptr = np.arange(0,N*N+1,N ,dtype='int32'), - col_ind = np.tile(np.arange(0,N,dtype='int32'),N), - ) - - matrix.view() # --> segmentation fault - -",LQ -"found a code that will check internet connectivity [here][1] - - - [1]: http://stackoverflow.com/questions/6493517/detect-if-android-device-has-internet-connection/25816086#25816086 -but I do not have any idea how to implement or call this class or method as I am still studying android programming using android studio. - -Please see my code below and kindly let me know how to arrange it in a way that it will fire on application launch plus including the toast message stating that it is connected or not.. - - package com.example.enan.checkinternetconnection; - - - public class MainActivity extends AppCompatActivity { - - private static final String TAG = """"; - private static final String LOG_TAG = """"; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_main); - Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); - setSupportActionBar(toolbar); - } - - public boolean hasActiveInternetConnection(Context context) { - if (isNetworkAvailable(context)) { - try { - HttpURLConnection urlc = (HttpURLConnection) (new URL(""http://www.google.com"").openConnection()); - urlc.setRequestProperty(""User-Agent"", ""Test""); - urlc.setRequestProperty(""Connection"", ""close""); - urlc.setConnectTimeout(1500); - urlc.connect(); - return (urlc.getResponseCode() == 200); - } catch (IOException e) { - Log.e(LOG_TAG, ""Error checking internet connection"", e); - } - } else { - Log.d(LOG_TAG, ""No network available!""); - } - return false; - } - - public boolean isNetworkAvailable(Context context) { - ConnectivityManager connectivityManager - = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); - NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo(); - return activeNetworkInfo != null; - } - } -",LQ -"WITH IMPORT_CTE -AS ((select A.* -FROM IMPORT_REGISTRY_ERROR_LOG_1 A -INNER JOIN (select distinct POD_ID,CONFLICTED_POD_ID,ERROR_CODE - FROM IMPORT_REGISTRY_ERROR_LOG_1 - GROUP BY POD_ID,CONFLICTED_POD_ID,ERROR_CODE - HAVING COUNT(*) > 1) B -on A.POD_ID = B.POD_ID AND A.CONFLICTED_POD_ID = B.CONFLICTED_POD_ID AND A.ERROR_CODE = B.ERROR_CODE ) order by a.pod_id desc) -select t1.* -from IMPORT_CTE t1 -where t1.insert_date =(select max(t2.insert_date) - from IMPORT_CTE t2 - where t2.POD_ID =t1.POD_ID) - - -WITH IMPORT_CTE1 -AS ((select A.* -FROM IMPORT_REGISTRY_ERROR_LOG_1 A -INNER JOIN (select distinct POD_ID,CONFLICTED_POD_ID,ERROR_CODE - FROM IMPORT_REGISTRY_ERROR_LOG_1 - GROUP BY POD_ID,CONFLICTED_POD_ID,ERROR_CODE - HAVING COUNT(*) > 1) B -on A.POD_ID = B.POD_ID AND A.CONFLICTED_POD_ID = B.CONFLICTED_POD_ID AND A.ERROR_CODE = B.ERROR_CODE ) order by a.pod_id desc) -select t1.insert_date -from IMPORT_CTE1 t1 -where t1.insert_date =(select min(t2.insert_date) - from IMPORT_CTE1 t2 - where t2.POD_ID =t1.POD_ID) - ",LQ -"i have a method - - getlisting(string url,int ID) -i am passing this parameter ID to another function in another class - - Controller __cc = new Controller(); - int Status = 1; - __cc.UpdatePaging(ID, Status); -i am passing this to update function and want to assign a default value of zero to ID and 1 to status and then return it and make changes in database, - - - public void UpdatePaging(int ID,int Status) - { - - if (ID != null) - { - - - ID = 0; - } - else - { - ID = 0; - } - - SqlCommand cmd = new SqlCommand(""UPDATE Paging SET Status='1' WHERE ID = @ID"", obj.openConnection()); - cmd.CommandType = System.Data.CommandType.Text; - cmd.Parameters.AddWithValue(""@Status"", SqlDbType.Int).Value = 1; - cmd.Parameters.AddWithValue(""@ID"", SqlDbType.Int).Value = ID; - cmd.ExecuteNonQuery(); - - - } -but i can't do it, is there something wrong with my code? or tell me how to assign a 0 value to int and update it in Database, whenever i get any value from getlisting method it should be assigned zero and update in DB any help?",LQ -" this is my PHP file, but i am getting fatal error : undefined function mysql_connect, i have searched it and it looks like i have to use PDO instead of mysql_connect on PHP 7 , and i dont know how so i need help please, i want this code as PDO, thanks for your time - - ",LQ -"I need the query to produce this: -person_idlast_name first_name region_id region name year month amount_sold - 1 barnum phineas 1 maricopa 2016 1 800000 - 1 barnum phineas 1 maricopa 2016 2 850000 - 1 barnum phineas 1 maricopa 2016 3 990000 - 2 loman willy 2 pima 2016 1 425000 - 2 loman willy 2 pima 2016 2 440000 - 2 loman willy 2 pima 2016 3 450000 - 2 loman willy 3 pinal 2016 1 200000 - 2 loman willy 3 pinal 2016 2 210000 - 2 loman willy 3 pinal 2016 3 220000 - 2 loman willy 4 santa cruz 2016 1 50000 - 2 loman willy 4 santa cruz 2016 2 52000 - 2 loman willy 4 santa cruz 2016 3 55000 - 3 kay mary 5 cochise 2016 1 40000 - 3 kay mary 5 cochise 2016 2 41000 - 3 kay mary 5 cochise 2016 3 42000 - 3 kay mary 6 gila 2016 1 3000 - 3 kay mary 6 gila 2016 2 31000 - 3 kay mary 6 gila 2016 3 32000 - 3 kay mary 7 graham 2016 1 20000 - 3 kay mary 7 graham 2016 2 21000 - 3 kay mary 7 graham 2016 3 22000 - 4 lillian vernon NULL NULL NULL NULL NULL checksum 4,994,000 - -I have this code written: -select person_id, last_name, first_name, - -sales_region.Region_id, name AS 'Region Name', - -year, month, amount_sold -from sales - -join sales_people - -on person_id = person_id - -join sales_region - -on sales_region.region_id = sales_region.region_id -group by month asc, region_id, person_id - -order by person_id, region_id, month asc -; - -i do not get a check sum and the last persons items do not come in null. -",LQ -"I am supposed to calculate the double of three numbers and get its average. -I am required to use the following two methods, no changing them: -getNumbers(); which only gets the user inputs. no returns, no arguments. -getAverage(); which calculate the average of the three double numbers. returns the average, and has no argument. - -My question is everytime I run it on CMD, it shows that method does not work and will not print an output. For me to enter three numbers, and get its average at the end. -If someone can give me advice as to what I am doing wrong, it will be greatly appreciated. - - - import java.util.Scanner; - public class ComputeAverage{ - double firstNum; - double secondNum; - double thirdNum; - double sum; - double average; - - public void getNumbers(){ - Scanner keyboard = new Scanner(System.in); - System.out.println(""Enter your first number: ""); - double firstNum = keyboard.nextDouble(); - System.out.println(""Enter your second number: ""); - double secondNum = keyboard.nextDouble(); - System.out.println(""Enter your third number: ""); - double thirdNum = keyboard.nextDouble(); - Test.println(""The average is: "" + average); - } - public double getAverage(double firstNum, double secondNum, double thirdNum){ - double average = firstNum + secondNum + thirdNum / 3; - return average; - - } - }",LQ -"I coded as below to print all the permutaions of three number :1,2,3. - -But the output is:
    -1,1,1
    -1,1,2
    -1,1,3
    -1,2,1
    -1,2,2
    -1,2,3
    -the code is as follows: - - #include - #include - void perm(int); - int a[10],l=2; - int main() - {int k; - k=0; - perm(k); - getch(); - return 0;} - void perm(int k) - { - int i; - for(a[k]=1;a[k]<=3;a[k]++) - { - if(k==2) - { - for(i=0;i<3;i++) - { - printf(""%d "",a[i]); - } - printf(""\n""); - } - else - { - k++; - perm(k); - - } - } - } -Pl. give the correct code:)",LQ -"my Html code: - - - -
    - -

    REQUEST A DEMO

    - -
    - -

    First Name *

    - - - -

    Last Name *

    - - - -

    Email *

    - - - -

    Phone *

    - - - -

    Company Name *

    - - - -

    Company Website *

    - - - -

    Country *

    - - - -
    Schedule a Demo!
    - -
    - - -
    - -My Javascript code: - - -",LQ -"My code is running well ... -but there is one thing i cant solt it ,,, -when i over my mouse on the pic its start well ,,, but when i over again it's became more faster and faster ,,, this is my code :) - - - - - - - - - - -",LQ -"i am working on a personnal web project with php. i want to collect some type of information from website and store them in a table of my database. these informations are related to products and services in sale on these website. these informations are presented differently on the websites i want to use. how can somebody give me clues about how to perform it ? -Thanks.",LQ -"I am trying to program a card game, but am stuck on one step. - -I have four card objects c1, c2, c3, c4 of random values and suits. - -Structured : Card(int Suit, int Value); - -I'm trying to find the highest Value card of the SAME suit as c1, in other words. The person who put down the highest card that has the same suit as card c1, i.e. Spades, Hearts, Clubs, Diamonds, wins the pile of those four cards. The person that put down the c1 card can still win the pile if they have the highest value card since it has the same suit as the original (it being the original). - -I have methods already coded for returning the suit and value of the cards - i.e. getSuit() & getValue(). - -Is there an easy way to do this? I can only imagine lots of nested if conditions to attain this.",LQ -"I would like to knw when i put pictureBox1.Dispose (), the picturebox becomes invisible. Is there any ways which I could allow the picturebox stays with is being Dispose",LQ -"I'm new on asp.net mvc. I created a basic controller and I tried to open it using url. But rendering is not finished and my controller didn't display in several minutes. I did not change anything from default asp.net 5 mvc project also my controller's index method return only hello world string. I don't is there any problem on iis or VS. Any idea about that problem? - -Thanks for help.",LQ -"I am converting an existing vb application to .net, in the existing code i found the condition below.How can I write this condition in C# ? Thanks in Advance - - if CLng(Right(request(""yr""),4))=CLng(Year(Date())) then - //I am confused only in Year(Date()) how can I replace these functions in C# - -",LQ -"i want create new variable in class by function: - - CLASS book{ - - public function set($name){ - newvar($name); - } - } - - function newvar($str){ - ***???? - /// what is code for here*** - } - --------------------------- -example: - $x = new BOOK(); - $x->set('title'); - - $x->title = 'jack'; - echo 'book title is: ' . $x->title; - - echo '
    -----------------------------
    '; - - $x->set('writer'); - $x->writer = 'tom'; - echo 'book writer is: ' . $x->writer; - - -result: - - book title is jack; - ---------------------------------- - book writer is tom;",LQ -"I have some Boolean variables and I want merge those (Calculation) - -I used `implode()` but always return true! - - - -How to do it !",LQ -" - - int i, j, k = 0; - for (i = n/2; i <= n; i++) { - for (j = 2; j <= n; j = j * 2) { - k = k + n/2; - } - } -Here the outer loop runs exactly n/2 times and then in the inner loop runs for the input 2,4,6,8.... upto n(if even) else runs upto n-1(if n is odd)",LQ -"` -select NATIONALPLAYERS.FIRSTNAME||' '|| NATIONALPLAYERS.LASTNAME as PlayerName,NATIONALPLAYERS.EXPERIENCEID, experience -from NATIONALPLAYERS -INNER JOIN (select experienceid, MAX( experiences.nationalgames + experiences.internationalgames ) as experience -from experiences -group by experiences.EXPERIENCEID)plexperience - on plexperience.experienceid = NATIONALPLAYERS.experienceid;` - -> It displays all the records from ""PlayerName"", ""ExperienceID"" and ""Experience"" even though i asked only for the maximum value of experience.",LQ -"Here is my data, 900000 obs of 9 variables in R. -I've tried apply function but unable to give parameters in apply function. -Data looks like this, please help. - - ID A1 A2 A3 A4 A5 B1 B2 B3 B4 - 1 10 12 11 13 15 50 55 56 57 - 2 20 22 23 21 20 60 76 78 71 - 3 10 12 13 15 14 50 55 52 53 - ... - 90000 11 12 13 15 12 21 22 23 24 - -I need to perform 900000 times two sample student t test from those 9 variables divide into 2 groups (group A and B). -Can anyone post a code here?Thanks. -",LQ -"html code : - - Please enter health complaint. - health complaint should have at least 3 characters. - health complaint should not exceed 120 characters. - - -",LQ -" static final String DATE_FORMAT = ""yyyy-MM-dd""; - static final String TIME_FORMAT = ""HH:mm:ss""; - private static final int ADD_MINUTES = 2; - static final String FromDate = ""2016-01-01 00:00:00""; - - public static void main(String[] args) throws Exception { - - DateFormat df = new SimpleDateFormat(DATE_FORMAT); - DateFormat d_f = new SimpleDateFormat(DATE_FORMAT); - DateFormat tf = new SimpleDateFormat(TIME_FORMAT); - Calendar cal = Calendar.getInstance(); - cal.setTime(df.parse(FromDate)); - - cal.add(Calendar.MINUTE, ADD_MINUTES); - record.append(""\t""); - record.append(d_f.format(cal.getTime())); - record.append(""\t""); - record.append(tf.format(cal.getTime())); - record.append(""\t""); - records.add(record.toString()); - } -Here i want to add date and time seperately i mean in different tab, used \t still i am not getting the required output. - -",LQ -"I am using broadcast receiver in my app to read Otp sent from server,I did not mentioned any permission in menifest.xml . but it does not read OTP .I don't know where is the problem kindly rectify it please.please help me. - - public BroadcastReceiver br = new BroadcastReceiver() { - @Override - public void onReceive(Context context, Intent intent) { - final Bundle bundle = intent.getExtras(); - try { - if (bundle != null) { - Object[] pdusObj = (Object[]) bundle.get(""pdus""); - assert pdusObj != null; - for (Object aPdusObj : pdusObj) { - @SuppressWarnings(""deprecation"") SmsMessage currentMessage = SmsMessage.createFromPdu((byte[]) aPdusObj); - String phoneNumber = currentMessage.getDisplayOriginatingAddress(); - String message = currentMessage.getDisplayMessageBody(); - - Log.e(s_szTAG, ""Received SMS: "" + message + "", Sender: "" + phoneNumber); - - // checking sms sender address.... - if (phoneNumber.toLowerCase().contains(""+919971599909"".toLowerCase())) { - // verification code from sms - m_szOtpCode = getVerificationCode(message); - assert m_szOtpCode != null; - String input = m_szOtpCode.trim(); - - Log.e(s_szTAG, ""OTP received: "" + m_szOtpCode); - COTPVerificationDataStorage.getInstance().setM_szOtp(input);// getting otp from SMS and set to otpverificationstorage class - - } else { - return; - } - - } - } - } catch (Exception e) { - Log.e(s_szTAG, ""Exception: "" + e.getMessage()); - } - } - - @SuppressWarnings(""JavaDoc"") - private String getVerificationCode(String message) { - String code; - int index = message.indexOf("":""); - - if (index != -1) { - int start = index + 2; - int length = 6; - code = message.substring(start, start + length); - return code; - } - COTPVerificationDataStorage.getInstance().setM_szOtp(m_szOtpCode); - return null; - } - }; - private IntentFilter inf; - - @Nullable - @Override - public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { - m_Main = inflater.inflate(R.layout.otp_auto_verified, container, false); - - inf = new IntentFilter(); - inf.addAction(""android.provider.Telephony.SMS_RECEIVED""); - - - getUserDetails();// getuser deatails.... - init();// initialize controls... - return m_Main; - - } - - -",LQ -"I want creat more button and picture horizontal or vertical - -to be this picture - -[enter image description here][1] - - - [1]: http://i.stack.imgur.com/ouNm1.png - -pleas help me",LQ -"How to Scroll an element inside a Div. There are multiple div and each div content an element - -Like - - -< div class=""parent"" >

    -< div class=""parent"" >

    -< div class=""parent"" >

    -< div class=""parent"" >

    - - - -and the are generate dynamically (infinite scroll) - -where
    is self scrolling div - - -how to put element in visible part of div when page load AND/OR more data load on ajax call - - - - -",LQ -"I want regular expression for below code can anyone help greatly appreciated - -abc-def-smdp-01 - -Here i want to match all hypen and smdp i want ignore abc and def and 01 can anyone help - -like this --smdp-",LQ -"Lets say i have object like this: - - var a = { - b: { - c: 1, - d: 2 - } - } - -And i have saved this object in Parse. There are 100 objects, but with different c and d values. Can i do search searching only objects which contains d:2. Or the only way is to query all objects and then use for loop which will search for d:2? - -Dont read this! -Writting this line just to get posted, because system does not allow to post me question, dont know why - -Thank you",LQ -"import random - - computerguess=random.randint(0,200) -while True: - userguess=int(input(""enter your number:"")) - if userguesscomputerguess: - print(""guess lower"") - else: - print(""hey!!!! CONGO MAN YOU GOT THE RIGHT NUMBER "") - break -",LQ -"Unable to simultaneously satisfy constraints. - Probably at least one of the constraints in the following list is one you don't want. - Try this: - (1) look at each constraint and try to figure out which you don't expect; - (2) find the code that added the unwanted constraint or constraints and fix it. -( - """", - """", - """", - """", - """", - """" -) - -Will attempt to recover by breaking constraint -",LQ -"I am working on some image processing in my app. Taking live video and adding an image onto of it to use it as an overlay. Unfortunately this is taking massive amounts of CPU to do which is causing other parts of the program to slow down and not work as intended. Essentially I want to make the below code use the GPU instead of the CPU. Thanks for your time. - - - - (UIImage *)processUsingCoreGraphics:(UIImage*)input { - - CGRect imageRect = {CGPointZero,input.size}; - NSInteger inputWidth = CGRectGetWidth(imageRect); - NSInteger inputHeight = CGRectGetHeight(imageRect); - - // 1) Calculate the location of Ghosty - UIImage * ghostImage = [UIImage imageNamed:@""myImage""]; - CGFloat ghostImageAspectRatio = ghostImage.size.width / ghostImage.size.height; - - NSInteger targetGhostWidth = inputWidth * 2;//0.25; - CGSize ghostSize = CGSizeMake(targetGhostWidth, targetGhostWidth / ghostImageAspectRatio); - //CGPoint ghostOrigin = _currentPositionForNotification;//CGPointMake(inputWidth * 0.5, inputHeight * 0.2);//CGPointMake(inputWidth * 0.5, inputHeight * 0.2); - - CGRect ghostRect = {_currentPositionForNotification, CGSizeMake(1000, 100)}; - - // 2) Draw your image into the context. - UIGraphicsBeginImageContext(input.size); - CGContextRef context = UIGraphicsGetCurrentContext(); - - CGAffineTransform flip = CGAffineTransformMakeScale(1.0, -1.0); - CGAffineTransform flipThenShift = CGAffineTransformTranslate(flip,0,-inputHeight); - CGContextConcatCTM(context, flipThenShift); - - CGContextDrawImage(context, imageRect, [input CGImage]); - - CGContextSetBlendMode(context, kCGBlendModeSourceAtop); - //CGContextSetAlpha(context,0.5); - CGRect transformedGhostRect = CGRectApplyAffineTransform(ghostRect, flipThenShift); - CGContextDrawImage(context, transformedGhostRect, [ghostImage CGImage]); - - // 3) Retrieve your processed image - UIImage * imageWithGhost = UIGraphicsGetImageFromCurrentImageContext(); - UIGraphicsEndImageContext(); - //CGContextRelease(context); - //CFRelease(imageRef); - return imageWithGhost;",LQ -"I'm trying to read all information from the JSON string. I'm also trying to read it with the help of AJAX. The purpose is to fill an innerHTML with the information, but nothing happends. - -What is wrong with the code and how can it be solved? - - function getResults() { - - var obj = [ - { ""number"": ""Bob"", ""position"": ""forward"", ""shoots"": ""left"" }, - { ""number"": ""John"", ""position"": ""forward"", ""shoots"": ""right"" } - ]; - - - var xhttp = new XMLHttpRequest(); - xhttp.onreadystatechange = function () { - if (xhttp.readyState == 4 && xhttp.status == 200) { - var return_data = request.responseText; - document.getElementById(""sportresults"").innerHTML = return_data; - } - }; - xhttp.open(""GET"", obj, true); - xhttp.send(); - }",LQ -"I am trying to achieve below -Me (customer) press a button to speak to agent (from mobile app - Xamarin) - - Then login tries to connect to (gets top 5 agents list from database / JSON - top 5 agents will vary every time based on time) - - Agent 1 - rings agent 1 mobile phone as normal call, if No answer after 25 seconds - Agent 2 - ring for 25 secs - Agent 3 - ring, connected - -Once call finished log date time of call - -I am happy to use any VOIP provider or any other solutions. -",LQ -"Create an Employee class. Items to include as data members are employee number, name, date of hire, job description, department, and monthly salary. The class is often used to display an alphabetical listing of all employees. Include appropriate constructors and properties. Override the ToString ( ) method to return all data members. Create a second class to test your Employee class."" - -I've created an Employee class with the proper variables, properties, and constructors, but am having trouble ""testing"" it through a second class. The code I have written runs without errors, but doesn't display anything (presumably the goal of the testing). Where am I going wrong in the calling section? - - using System; - using System.Collections.Generic; - using System.Linq; - using System.Text; - using System.Threading.Tasks; - - namespace EmployeeProgram - { - public class EmployeeProgram - { - private int employeeNumber; - private string name; - private string hiredate; - private int monthlySalary; - private string description; - private string department; - - public employee(int employeeNumber, string name, string dateOfHire, int monthlySalary, string description, string department) - { - - this.employeeNumber = 456; - this.name = ""Joyce""; - this.hiredate = ""12/15/14""; - this.monthlySalary = 3200; - this.description = ""Manager""; - this.department = ""Accounting""; - } - - public int EmployeeNumber - { - get - { - return employeeNumber; - } - set - { - employeeNumber = value; - } - } - - public string Name - { - get - { - return name; - } - set - { - name = value; - } - } - - public string Hiredate - { - get - { - return hiredate; - } - set - { - hiredate = value; - } - } - - public int MonthlySalary - { - get - { - return monthlySalary; - } - set - { - monthlySalary = value; - } - } - public string Department - { - get - { - return department; - } - set - { - department = value; - } - } - public string Description - { - get - { - return description; - } - set - { - description = value; - } - } - - public override string ToString() - { - return ""Employee ID: "" + employeeNumber + - ""Employee Name: "" + name + - ""Employee Hire Date: "" + hiredate + - ""Employee Monthly Salary: "" + monthlySalary + - ""Employee Description: "" + description + - ""Employee Department: "" + department; - } - - public void Print() - { - Console.WriteLine(this.ToString()); - } -} - - -",LQ -"I want the following code to insert the cars id in customer_payment table but it only select 477 id. I don't know why. As it can be seen in image bellow only product_id 477 is inserted not any other if I select 500 it still inserts 477. Please help me on this help will be appreciated. Thank you - -[enter image description here][1] - - - include 'admin/db.php'; - - if(isset($_GET['payment_here'])){ - - //select product id from cart - $select_cart = ""select * from cart""; - $runcart = mysqli_query($conn, $select_cart); - $cartwhile=mysqli_fetch_assoc($runcart); - - $carssid = $cartwhile['P_ID']; - $cusid = $cartwhile['C_ID']; - - //select id from cars - $scars = ""select * from cars where id=$carssid""; - $scarsrun = mysqli_query($conn, $scars); - $showcars = mysqli_fetch_assoc($scarsrun); - $carsdealer = $showcars['dealer']; - - - //select customer id from customer table - //$selectcust = ""select * from customer_register where id=$cusid""; - //insert data into customer payment table - echo $insertpay = ""insert into customer_payment - (Product_id, customer_id, dealer) - values ( $carssid,"" . $_SESSION['customer_id'] . "", '$carsdealer')""; - $run_inserts = mysqli_query($conn, $insertpay); - /* - if($run_inserts){ - echo """"; - } - */ - } - ?> - - - [1]: http://i.stack.imgur.com/gQccg.jpg",LQ -"Hi I am trying to send a custom list of objects from Client to server. I am getting a class cast exception. I am using Android studio emulator for my client and running my Server on Eclipse. I even wrote a test code to check to see if it works in eclipse and it does. But for some reason does not work on android. I am new to android - - import java.io.Serializable; - import java.util.Arrays; - - - public class Document implements Serializable { - private static final long serialVersionUID = 1L; - String id; - String name; - String address; - String[] category; - float lattitude; - float longitude; - String city; - double stars; - double overallRating; - // String attributes[]; - Review[] reviews; - - public Document(String id, String name, String address, String[] category, float longitude, float lattitude, - String city, double stars, double overallRating, Review[] review) { - super(); - this.id = id; - this.name = name; - this.address = address; - this.category = category; - this.longitude = longitude; - this.lattitude = lattitude; - this.city = city; - this.stars = stars; - this.overallRating = overallRating; - this.reviews = review; - } - - @Override - public String toString() { - return ""Document [id="" + id + "", name="" + name + "", address="" + address + "", category="" - + Arrays.toString(category) + "", lattitude="" + lattitude + "", longitude="" + longitude + "", city="" + city - + "", stars="" + stars + ""]""; - } - - } - - - - - import java.io.Serializable; - - public class Review implements Serializable { - - private static final long serialVersionUID = -1595783420656910821L; - double stars; - String review; - - public Review(double stars, String review) { - this.stars = stars; - this.review = review; - } - - } - - - - - - -//Part of the server - - import java.io.BufferedReader; - import java.io.IOException; - import java.io.InputStreamReader; - import java.io.ObjectOutputStream; - import java.io.OutputStreamWriter; - import java.io.PrintWriter; - import java.net.Socket; - import java.util.List; - - public class CommunicatewithMobileDevice implements Runnable { - Socket conn; - private InvertedIndexA invertedIndex; - private BufferedReader br; - private ObjectOutputStream oos; - private PrintWriter pw; - - public CommunicatewithMobileDevice(Socket sock, InvertedIndexA invertedIndex) { - conn = sock; - this.invertedIndex = invertedIndex; - try { - br = new BufferedReader(new InputStreamReader(conn.getInputStream())); - pw = new PrintWriter(new OutputStreamWriter(sock.getOutputStream()), true); - } catch (IOException e) { - e.printStackTrace(); - } - } - - public void run() { - - try { - - String ip = br.readLine(); - - String input[] = br.readLine().split("" ""); - System.out.println(ip + "" "" + input[0] + "" "" + input[1]); - List docs = invertedIndex.search(ip, Float.valueOf(input[0]), Float.valueOf(input[1])); - System.out.println(docs.size()); - oos = new ObjectOutputStream(this.conn.getOutputStream()); - oos.writeObject(docs); - - - oos.flush(); - } catch (IOException e) { - e.printStackTrace(); - } - } - - } - -//A singleton or a server - - import java.io.IOException; - import java.net.ServerSocket; - import java.net.Socket; - - - public class Singleton implements Runnable { - private ServerSocket conn; - private static InvertedIndexA invertedIndex = new InvertedIndexA(Helper.loadCategories()); - private boolean isStopped = false; - - private Singleton() { - } - - public static InvertedIndexA getInstance() { - return invertedIndex; - } - - public static void main(String args[]) { - new Thread(new Singleton()).start(); - } - - public void acceptsClients() { - try { - synchronized (this) { - conn = new ServerSocket(1503); - } - while (!isStopped()) { - Socket sock = conn.accept(); - //System.out.println(""Conn accepted""); - new Thread(new CommunicatewithMobileDevice(sock, invertedIndex)).start(); - } - } catch (IOException e) { - e.printStackTrace(); - } - - } - - private synchronized boolean isStopped() { - return this.isStopped; - } - - public synchronized void stop() { - this.isStopped = true; - try { - this.conn.close(); - } catch (IOException e) { - throw new RuntimeException(""Error closing server"", e); - } - } - - @Override - public void run() { - acceptsClients(); - } - } - -//The android client or a part of it - - import android.Manifest; - import android.content.pm.PackageManager; - import android.os.AsyncTask; - import android.os.Bundle; - import android.support.design.widget.FloatingActionButton; - import android.support.design.widget.Snackbar; - import android.support.v4.app.ActivityCompat; - import android.support.v7.app.AppCompatActivity; - import android.support.v7.widget.Toolbar; - import android.util.Log; - import android.view.View; - - import java.io.BufferedReader; - import java.io.IOException; - import java.io.InputStreamReader; - import java.io.ObjectInputStream; - import java.io.PrintWriter; - import java.net.Socket; - import java.util.ArrayList; - import java.util.List; - - import android.widget.ListView; - import android.widget.TextView; - import android.content.Context; - - public class ListOfResults extends AppCompatActivity { - - CommunicateWithServer comm; - GPSTracker gps; - String message = """"; - List docs; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_list_of_results); - comm = new CommunicateWithServer(); - Bundle bundle = getIntent().getExtras(); - message = bundle.getString(""message""); - //new Communicate().execute(); - new Thread(runnable).start(); - } - - Runnable runnable = new Runnable() { - @Override - public void run() { - try { - Socket sock = new Socket(""129.21.114.74"", 1503); - PrintWriter pw = new PrintWriter(sock.getOutputStream(), true); - pw.println(message); - double latitude = 0; - double longitude = 0; - pw.println(new String(Double.valueOf(latitude) + "" "" + Double.valueOf(longitude))); - ObjectInputStream ois = new ObjectInputStream(sock.getInputStream()); - docs = (List) ois.readObject(); - BufferedReader br = new BufferedReader(new InputStreamReader(sock.getInputStream())); - //Log.e(""print the val"",br.readLine()); - //System.out.println(docs.size()); - Log.e(""size"", Integer.toString(docs.size())); - - - } catch (IOException | ClassNotFoundException e) { - // TODO Auto-generated catch block - System.out.println(""yeassass""); - } - } - }; - - public void populate(String result) { - Log.e(""here"", ""here""); - DocumentAdapter documentAdapter = new DocumentAdapter(this, docs); - ListView listView = (ListView) findViewById(R.id.listView1); - listView.setAdapter(documentAdapter); - } - } - -//This was a test program i wrote to test the server code. Works fine here - - - import java.io.IOException; - import java.io.ObjectInputStream; - import java.io.PrintWriter; - import java.net.Socket; - import java.util.List; - - public class Test implements Runnable { - - public Test() { - // TODO Auto-generated constructor stub - } - - public static void main(String args[]) { - Test test = new Test(); - new Thread(test).start(); - } - - public void run() { - testOp(); - } - - private void testOp() { - try { - Socket sock = new Socket(""localhost"", 1503); - PrintWriter pw = new PrintWriter(sock.getOutputStream(), true); - String location = Helper.getLocation(); - location = location.substring(location.lastIndexOf("") "") + 2); - String split[] = location.split("",""); - pw.println(""Chinese""); - pw.println(new String(split[0] + "" "" + split[1])); - ObjectInputStream ois = new ObjectInputStream(sock.getInputStream()); - List docs = (List) ois.readObject(); - System.out.println(docs); - } catch (IOException | ClassNotFoundException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - } - } - - - - - - - - - - -",LQ -"I am trying to convert a string which is ""20151107"" to a date format like this ""2015-11-07"". - -Here's my code : - - public static DateTime CustomDateFormat(this string resultdate) - { - DateTime dt = DateTime.ParseExact(resultdate, ""yyyyMMdd"", CultureInfo.InvariantCulture); - return dt; - } - -However this returns something like this ""11/07/2015 00:00:00.00"" - -Any idea ? Thanks.",LQ -"path1 : /home/users/term/R1.0/test/mw & path2 : /home/users/term/R1.2/test/mw -I would like to compare the above two directory paths and output the path which has highest version. -output = /home/users/term/R1.2/test/mw - -what is the best way to achieve it. - -",LQ -"THIS IS MY SELECT VIEW, - HOW CAN I GET NON REPEATING VALUES? - -[duplicated entry][1] -*I need only one line in my view. - - SELECT - A.TOTAL_PRESENT, - A.""LIMIT"", - A.COST_CENTER, - A.ID, - A.PLANT, - A.BUDGET_YEAR, - A.""VERSION"", - B.BUDGET_YEAR, - B.""VERSION"", - B.PLANT, - B.CHARGE_CC, - B.YEAR_DATE_USD - FROM - CMS.SUM_REPANDMAINT A, - CMS.V_SUM_REPANDMAINT B - WHERE - (A.BUDGET_YEAR = B.BUDGET_YEAR(+)) AND - (A.""VERSION"" = B.""VERSION""(+)) AND - (A.PLANT = B.PLANT(+)) AND - (A.COST_CENTER = B.CHARGE_CC(+)) AND - (B.USERNAME = '[usr_name]') - - - [1]: http://i.stack.imgur.com/9ezbS.png",LQ -"In Ubuntu 16.04LTS, -I typed next lines. -iptables -F -iptables -X -iptables -A INPUT -m mac --mac-source 1C:**:2C:**:72:**:78 -j ACCEPT - -and the result of ""iptables -L -nvx"" is -[the result of it][1] - - - [1]: http://i.stack.imgur.com/DeZ48.jpg - -but when I access to port 80 for accessing web-page with the PC(1C:**:2C:**:72:**:78), I cannot connect to the web-server. - -When I try to the web-server with ""iptables -P INPUT ACCESS"", it works well. - -Could anyone give me any solution or advicies for this? - -Thank you for reading. - -Have a good daay.",LQ -"I am trying to create a calendar and have been following a tutorial on YouTube 'calendar ruby on rails' first video. once I inputted the code i had an error -'uninitialized constant CalenderHelper::Struck' <----- that is the error message - -the code is; - -module CalenderHelper - def calender(date = Date.today, &block) - Calender.new(self, date, block).table - end - - **class Calender < Struck.new(:view, :date, :callback)** - HEADER = %w[Sunday Monday Tuesday Wednesday Thursday Friday Saturday] - START_DAY = :sunday - - delegate :content_tag, to: :view - - def table - content_tag :table, class: ""calender"" do - header + week_rows - end - end - - def header - content_tag :tr do - HEADER.map { |day| content_tag :th, day }.join.html_safe - end - end - - def week_rows - week.map do |week| - content_tag :tr do - week.map { |day| day_cell(day) }.join.html_safe - end - end.join.html_safe - end - - def day_cell(day) - content_tag :td, view.capture(day, &callback), class: day_classes(day) - end - - def day_classes(day) - classes = [] - classes << ""today"" if day == Date.today - classes << ""notmonth"" if day.month != date.month - classes.empty? ? nil : classes.join("" "") - end - - def weeks - first = date.beginning_of_month.beginning_of_week(START_DAY) - last = date.end_of_month.end_of_week(START_DAY) - (first..last).to_a.in_groups_of(7) - end - end -end - -line with the error is marker with starts on each side",LQ -"When iphone app is enter in background mode then ios automatically terminate app after 180 second. If we require to continuously data sync between iphone app to iwatch app. In this situation what can we do? - -How to continuously data sync enable between iphone and iwatch when iphone app is in background and time was expired. - -Lets see answer for more details.",LQ -"In the following golang program, I am creating mySlice1 with 6 elements in it. -mySlice2 is initialized with 3 elements. - -From mySlice1 I am taking 1st two elements into mySlice2. -Also using copy function of slice, 3 elements of mySlice1 are overwritten to mySlice2. - - package main - - import ""fmt"" - - func main() { - - mySlice1 := []int{1, 3, 5, 7, 9, 11} - mySlice2 := make([]int,3) - mySlice2 = mySlice1[0:2] - copy(mySlice2,mySlice1) - fmt.Printf(""%T\t%T\n"", mySlice1,mySlice2) - fmt.Println(mySlice1,mySlice2) - } - -But while printing mySlice2 I am getting two elements only. - - $ go run main.go - []int []int - [1 3 5 7 9 11] [1 3] - - -Why does mySlice2 is not getting overwritten while using copy function ? - -Thank you",LQ -"i am new user of GWT toolkit. and i was running my application in chrome browser. but it was asking me to download the plugin to run GWT applications. then i gone through the link but it was showing me this problem....NOT COMPATIBLE -[enter image description here][1] - - - [1]: http://i.stack.imgur.com/bOyTG.jpg - - - - -Please provide help. ",LQ -"In android once we get the current location's latitude and longitude then after how we can able to get the list of my places which are all marked in Google My Maps within the 10kms radius of current location , i.e if my current location latitude and longitudes are 23.00 & 72.50 respectively so on base of that how can i get the list of my places marked in Google My Maps nearby this location address within the 10 kms radius?",LQ -"have been using php for some time now and i can only upload just one image to my database and with directory path.. -bt now m trying to upload many files in a form bt its just saving one file out of four images i try to upload.. ur helps will be much apprecited... - - - - - - $mypic = $_FILES['upload']['name']; - $temp = $_FILES['upload']['tmp_name']; - $type = $_FILES['upload']['type']; - $id = $_POST['name']; - - if(($type==""image/jpeg"")||($type==""image/jpg"")||($type==""image/bmp"")) - { - $directory = ""profiles/$id/images""; - mkdir($directory, 0777,true); - - move_uploaded_file($temp,""{$directory}/$mypic""); - - - -
    -
    -
    -
    -
    -
    -
    - - - -",LQ -"I have dictionary which have multiple key and those multiple key have multiple list so i want to copy specific value for a specific key - -dict1={ '1' : [1,2,3] , '2' : [4,5,6] , '3' :[7,8,9]} - -output: - -if key == 1 then print 3 - -if key == 2 then print 6 - -if key == 3 then print 9 -",LQ -"I have an array that contains multiple dictionaries.I want to iterate through every dictionary in the array in order to get only the ""File_name"" .Once i get the ""file_name"", i will add those values in another array of type [[String:Anyobject]] that i will hold the images .How can i proceed ? -Here is my code - - - - import UIKit - import Alamofire - import SwiftyJSON - import MapKit - import CoreLocation - - class DetailsViewController: UIViewController , MKMapViewDelegate , CLLocationManagerDelegate { - @IBOutlet weak var Price: UILabel! - - @IBOutlet weak var Floor: UILabel! - @IBOutlet weak var scrollerpage: UIScrollView! - @IBOutlet weak var mapview: MKMapView! - @IBOutlet weak var bath: UILabel! - @IBOutlet weak var bed_number: UILabel! - - - @IBOutlet var PhotoDetailsView: UIImageView! - @IBOutlet var label1: UILabel! - @IBOutlet var label2: UILabel! - @IBOutlet var label3: UILabel! - @IBOutlet var label4: UILabel! - @IBOutlet var label5: UILabel! - @IBOutlet var label6: UILabel! - @IBOutlet var label7: UILabel! - @IBOutlet var label8: UILabel! - @IBOutlet var label9: UILabel! - @IBOutlet var label10: UILabel! - @IBOutlet var label11: UILabel! - @IBOutlet var label12: UILabel! - @IBOutlet var label13: UILabel! - @IBOutlet var label14: UILabel! - @IBOutlet var label15: UILabel! - @IBOutlet var label16: UILabel! - @IBOutlet var label17: UILabel! - - - - - - @IBOutlet var descritpionlabel: UILabel! - - - var CondoIndivi2 = [[String:AnyObject]]() - var imageArray = [[String:AnyObject]]() - var test = [[String :AnyObject]]() - let adress : String = """" - - - - override func viewDidLoad() { - super.viewDidLoad() - - // Do any additional setup after loading the view. - - scrollerpage.contentSize.height = 15000 - - - - test = [ - [ - ""id"": 744736, - ""pic_count"": 6, - ""mls_unique_id"": 342947084, - ""list_price"": 1480000, - ""property_type"": ""RE2"", - ""city"": ""Miami"", - ""bedrooms"": 3, - ""bath"": 3, - ""status"": ""A"", - ""entry_date"": ""2016-02-11 00:11:52"", - ""mls_number"": ""A10032455"", - ""street_number"": 1060, - ""street_directional"": """", - ""street_name"": ""Brickell"", - ""city_id"": 65, - ""zipcode"": 33131, - ""address"": ""1060 Brickell # 4505"", - ""primary_listing_pid"": 3039955, - ""secondary_listing_pid"": """", - ""municipal_code"": 31, - ""township_number"": 22, - ""section_number"": 11, - ""subdivision_number"": """", - ""area"": 41, - ""parcel_number"": 1250, - ""year_built"": 2009, - ""virtual_tour_link"": """", - ""half_bath"": 1, - ""living_area"": 1933, - ""garage_spaces"": 1, - ""waterfront"": ""Y"", - ""total_area"": """", - ""pool"": """", - ""maintenance_fee"": 1662, - ""pets_allowed"": ""Yes"", - ""unit_number"": 4505, - ""lot_area"": """", - ""listing_broker_code"": ""ZZON01"", - ""listing_broker_office"": ""Zona"", - ""latitude"": 25.764026271539, - ""longitude"": -80.191569328308, - ""original_list_price"": 1780000, - ""main_photo_url"": ""http://s3.amazonaws.com/sefpic/large/342947084-1.jpg"", - ""sale_price"": 0, - ""days_on_market"": 73, - ""close_date"": """", - ""selling_broker_code"": """", - ""expiration_date"": """", - ""condo_id"": 444, - ""complex"": ""Avenue 1060 Brickell"", - ""subdivision"": """", - ""community_name"": """", - ""lot_dimensions"": """", - ""hoa_fees"": """", - ""taxes"": 32337, - ""tax_year"": 2015, - ""rental_type"": """", - ""rental_occupancy"": ""Tenant Occupied"", - ""rental_furnished"": ""U"", - ""commercial_type"": """", - ""commercial_lease_sale"": """", - ""commercial_style"": """", - ""commercial_building"": """", - ""commercial_building_alt"": """", - ""county_id"": ""DADE"", - ""selling_public_id"": """", - ""second_selling_public_id"": """", - ""agent_name"": ""Eduardo Diez"", - ""broker_office_phone"": ""305-397-8192"", - ""agent_phone"": ""305-753-1113"", - ""second_agent_phone"": """", - ""second_agent_name"": """", ""parking_restrictions"": """", - ""condo_waterfront_view"": [ - ""No Fixed Bridges"" - ], - ""foreclosure"": """", - ""short_status"": """", - ""home_design"": """", - ""home_view"": ""Ocean View,Water View"", - ""short_sale"": ""N"", - ""reo"": ""N"", - ""internet_address_ok"": """", - ""modified_date"": ""2016-02-11 00:44:48"", - ""image_modified_date"": ""2016-02-11 00:23:16"", - ""directions"": """", - ""property_style"": ""Condo 5+ Stories"", - ""building_amenities"": [ - ""Elevator"", - ""Exercise Room"" - ], - ""equipment"": [ - ""Automatic Garage Door Opener"", - ""Circuit Breaker"", - ""Dishwasher"", - ""Dryer"", - ""ELEVATOR"", - ""Fire Alarm"", - ""Microwave"", - ""Refrigerator"", - ""Self Cleaning Oven"", - ""Smoke Detector"" - ], - ""exterior_features"": [ - ""High Impact Doors"", - ""Open Balcony"", - ""Other"" - ], - ""interior_features"": [ - ""Closets Cabinetry"", - ""Cooking Island"", - ""Handicap Equipped"", - ""Other Interior Features"", - ""Split Bedroom"", - ""Vaulted Ceilings"" - ], - ""construction_type"": [ - ""Concrete Block Construction"" - ], - ""floors"": """", - ""roof_type"": """", - ""home_heating"": """", - ""pet_restriction"": ""Restrictions Or Possible Restrictions"", - ""home_cooling"": [ - ""Central Cooling"", - ""Electric Cooling"", - ""Other"" - ], - ""home_design_2"": """", ""bedroom_2_size"": """", - ""bedroom_3_size"": """", - ""bedroom_4_size"": """", - ""bedroom_master_size"": """", - ""kitchen_size"": """", - ""living_room_size"": """", - ""rental_includes"": """", - ""description"": ""Unique duplex apartment on brickell avenue. Amazing views. Building with all amenities. Walking distance to restaurants, bars, markets, convenient stores."", - ""rooms"": """", - ""sewer"": """", - ""water"": """", - ""subdv"": """", - ""dinner"": """", - ""floor_location"": ""45th"", - ""property_type_db"": ""RE2"", - ""pets_icon"": ""Yes"", - ""furnished_icon"": """", - ""price_sqft"": 765.64924987067, - ""price_sq_meters"": 8241.6496218586, - ""living_area_meters"": 179.5757, - ""price_change_days"": 23, - ""price_change_type"": -1, - ""price_change_diff"": 300000, - ""price_change_percent"": 20.27, - ""price_change_arrow"": ""down"", - ""days_on_market_str"": ""2 months"", - ""days_on_market_unix"": 1455167512, - ""listing_images"": [ - [ - ""file_name"": ""http://s3.amazonaws.com/sefpic/large/342947084-1.jpg"", - ""comments"": """", - ""photo_id"": 1 - ], - [ - ""file_name"": ""http://s3.amazonaws.com/sefpic/large/342947084-2.jpg"", - ""comments"": """", - ""photo_id"": 2 - ], - [ - ""file_name"": ""http://s3.amazonaws.com/sefpic/large/342947084-3.jpg"", - ""comments"": """", - ""photo_id"": 3 - ], - [ - ""file_name"": ""http://s3.amazonaws.com/sefpic/large/342947084-4.jpg"", - ""comments"": """", - ""photo_id"": 4 - ], - [ - ""file_name"": ""http://s3.amazonaws.com/sefpic/large/342947084-5.jpg"", - ""comments"": """", - ""photo_id"": 5 - ], - [ - ""file_name"": ""http://s3.amazonaws.com/sefpic/large/342947084-6.jpg"", - ""comments"": """", - ""photo_id"": 6 - ] - ], - ""permalink_url"": ""/property-view/1060-brickell---4505/miami/342947084/"" - ] - ] - - - - - - let longtitude_map = test[0][""longitude""] as! Double - let latitude_map = test[0][""latitude""] as! Double - let adress = test[0][""address""] as! String - - - if let image = test[0][""listing_images""]{ - - - // image will be an array of dictionary holding the file names - [![this is how image looks like][1]][1] - - - //loop through image and get only the filename so that i can add it in var imageArray = [[String:AnyObject]]() - - - } - - - let latDelta:CLLocationDegrees = 0.05 - - let lonDelta:CLLocationDegrees = 0.05 - - let span:MKCoordinateSpan = MKCoordinateSpanMake(latDelta, lonDelta) - - let location:CLLocationCoordinate2D = CLLocationCoordinate2DMake(latitude_map, longtitude_map) - - let region:MKCoordinateRegion = MKCoordinateRegionMake(location, span) - - mapview.setRegion(region, animated: false) - - - - - - let annotation = MKPointAnnotation() - - annotation.coordinate = location - - annotation.title = adress - - - mapview.addAnnotation(annotation) - - let uilpgr = UILongPressGestureRecognizer(target: self, action: Selector(""action:"")) - - uilpgr.minimumPressDuration = 2 - - mapview.addGestureRecognizer(uilpgr) - - - - - - - - - - - - } - - - - - - - - - override func didReceiveMemoryWarning() { - super.didReceiveMemoryWarning() - // Dispose of any resources that can be recreated. - } - - - } - - - [1]: http://i.stack.imgur.com/1wpHH.png",LQ -"I have a php code the add delete new row to the html table. Once column has text field and second column has a drop down. Its value is coming from mysql database. -First row is coming correctly. But the value in second record dropdown list is misssing. -please help - -code is: - - - - - - - - - - -
    ""> - - - '; - // print $count rows - - - for ($i=1; $i<=$count; $i++) { - echo ' '; - echo ' '; - } - ?> - - - - - - - - - ""> - -
    - - ",LQ -" - def insertionSort(a): - for i in range(1, len(a)): #outloop covering the range - value = a[i] #value = to list, which will compare items to the left - i = i - 1 #i goes lower than index to comapre futher to the left - while i >= 0 : #keep comparing till its at the begining of the list - if value < a[i]: #if value is less than i - a[i+1] = a[i] # shift number in right i to slot i + 1 - a[i] = value # shift value that was left into slot i - i = i - 1 - else: - break - - - - infile = open(""file1.txt"", ""r"") - a=[] - for aline in infile: - a = aline.split() - - insertionSort(a) - - print(a) - -this is what it is in the file -7686850495948548545 - - -how do i get the insertionSort function to work on file? - - ",LQ -"I want to get files iteratied thru a directory but only from last two months, -so I got: - -...directory di code here ... - -DateTime from_date = DateTime.Now.AddMonths(-2); - -DateTime to_date = Datetime.Now; - -... - -foreach (var filename in di.EnumerateFiles(""*.SS*"").Where(filename.ToString()=>filename.ToString().LastWriteTime >= from_date && filename.ToString().LastWriteTime <= to_date)) - -{ - -...code here.. - -} - - -Well, it doesn't like that foreach loop for some reason. Is there a correct way of doing this?",LQ -"try { - - con = DriverManager.getConnection(url, username, password); - String qry = ""SELECT * FOME users WHERE id=?""; - pst = con.prepareStatement(qry); - pst.setString(1, txtSearch.getText()); - rs = pst.executeQuery(); - - tblEmployee.setModel(DbUtils.resultSetToTableModel(rs)); - - } catch (Exception e) { - e.printStackTrace(); //Show what is the catched error - - } - -rs = pst.executeQuery(); is not work and get like this error - -com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'FOME users WHERE id='df'' at line 1 - ",LQ -"Below code not working in IE. Console shows syntax error. Whats wrong with this? - - var text = '{""products"":[' + - '{""name"":""IB-400"",""mail"":""9000@mail.pl""},' + - '{""name"":""IB-500"",""mail"":""8000@mail.pl""}]}'; - var textObj = JSON.parse(text) - var mail = textObj.products.find(itm => itm.name == c).mail - $( "".komunikat"" ).replaceWith( '

    Contact

    Lorem ipsum ' + mail +'. Lorem ipsum.

    ' );",LQ -"I'm working on a simple_form with devise, and I'm having a problem with the form submissions. If a user don't give email id and password while sign in then I have to display error message to user like ""Email can't be blank"" but it won't show any error messages it will remain on same sign in page with no errors. What can i do? I am using devise version ""3.5.6"" and simple_form version ""3.2.1"".",LQ -"number function in javascript can be used to multiply,divide,find remainder but cannot be used for subtraction and addition. - var theNumber = Number ( prompt ("" Pick a number "" , """") ) ; - alert ("" difference "" + - theNumber - theNumber ) ; - // -> difference NaN - why not 0? - var theNumber = Number ( prompt ("" Pick a number "" , """") ) ; - alert ("" sum "" + - theNumber + theNumber ) ; - // ->3 - // ->33 -why is concatenation occurring? why not 6? -please help! -",LQ -"Hello how can i tell if one radion buton is checked do something in swith? this is part of my code: - -this is in my class Person.cs - - - - public enum TypeTimer { Unlimited, Countdown, Limited} - -This is my switch where i will put the funciotns - - public Person(TypeTimer s1) - { - switch (s1) - { - case TypeTimer.Unlimited: - (code here) - break; - - case TypeTimer.Countdown: - (code here) - break; - case TypeTimer.Limited: - (code here) - break; - default: - break; - } - } - -Here how do i tell if checked == true is equal to enum limited or unlimited or countdown? - -this is in Form.cs - - private void button1_Click(object sender, EventArgs e) - { - if (rbtnNormalTimer.Checked == true) - { - - } - else if(rbtnCountDown.Checked == true) - { - - } - else if(rbtnLimited.Checked == true) - { - - } - } - -CAn someone please help me? -",LQ -"I'm trying to Node.js and MySql but im receiving this error : -:Error: Connection lost: The server closed the connection. my code here. - - var mysql = require('mysql'); - var config ={ - connectionLimit : 100, - waitForConnections : true, - queueLimit :0, - debug : true, - wait_timeout : 28800, - connect_timeout :10, - host : ""localhost"", - user : "" root "", - password : "" root "", - database : ""mydb"" - }; - var table = 'mytable'; - var connection; - function handleConnection(){ - connection = mysql.createConnection(config); - connection.connect(function(err){ - console.log(""connected""); - }); - connection.query('select * from' + table, - function(err,result,fields){ - if (!err){ - console.log(""result :"" + result); - } else{ - console.log(""error1 :"" +err); - } - }); - } -Thanks in advance.",LQ -"REGEX notepad ++; ""Http: //www.abc.jpg"", ""http: //www.xyz.jpg"", ""http: //www.123.gif"" extension of Internet addresses to separate the links !?",LQ -"I want to write a query that get total number of records(booking) using COUNT(*) function, i have a column in DB ""Type"" and in the next column i want to show type of record e.g output of query be like - -Total Booking -> 10 - -Booking Type -> 3 wedding, 4 Birthday Party, 3 family Event (this will be in single cell next to total Booking) - -someone please help me.. Thanks",LQ -"I am dealing with JQuery code as follows: - - function formSubmit(){ - $('#myform').attr('action', ""./myFilter.action""); - $('#myform').submit(); - } - -The form: - - - - -Noticing that myFilter.action is called before myAction. But I don't understand how or why that is happening. Can someone explain? - -Thanks -",LQ -"I have a directory full of SAS label files. - -The label files have space, single qoute, space, single qoute in each file. -Looks like, VAR1 = ' 'SOME LABEL' ' - -I want a bash script that will replace these single qoutes with double quotes so that I end up with, VAR1 = ""SOME LABEL"" - -Please help - -",LQ -"> hab <- read.csv('cov.csv') -> names(hab[4:6]) -> hab1 <- as.data.frame(scale(hab[4:6])) - -For eg. -> x <- matrix(1:10, ncol = 2) -> x - - 1 6 - 2 7 - 3 8 - 4 9 - 5 10 - -I applied scale argument to this matrix -> y <- scale(x) -> y - -This gets changed to --1.2649111 -1.2649111 --0.6324555 -0.6324555 - 0.0000000 0.0000000 - 0.6324555 0.6324555 - 1.2649111 1.2649111",LQ -"I have a requirement where i can create 3 shifts per day. The shift timings are - -1) 06:00 - 14:00 -2) 14:01 - 22:00 -3) 22:01 - 05:59. - -How can i check that shift timings are not overlapped. Your suggestions are appreciated. Please note that in the third case from hour is greater that to hour.",LQ -" I need to pass the array value from code behind asp.net C#. - - - - - - - - Since the data changes dynamically I need to pass the value.",LQ -"I have just started HTML and JavaScript and got stuck here.I am trying to validate form in case of empty field and print the corresponding output using for loop .Below is the jsp page and javascript code. - - - - - - < script > - var err = new Array(); - var i = 0, - flag = 0; - - function validateForm() { - var x = document.forms[""RegistrationController""][""firstname""].value; - if (x == null || x == """") { - err[i++] = ""First name cannot be empty""; - flag = 1; - } - var a = document.forms[""RegistrationController""][""dob""].value; - if (a == null || a == """") { - err[i++] = ""Date of birth cannot be empty""; - flag = 1; - } - var b = document.forms[""RegistrationController""][""address_line_1""].value; - if (b == null || b == """") { - err[i++] = ""Address cannot be empty""; - flag = 1; - } - var c = document.forms[""RegistrationController""][""city""].value; - if (c == null || c == """") { - err[i++] = ""city cannot be empty""; - flag = 1; - } - var d = document.forms[""RegistrationController""][""pincode""].value; - if (d == null || d == """") { - err[i++] = ""pincode cannot be empty""; - flag = 1; - } - var e = document.forms[""RegistrationController""][""mobile_no""].value; - if (e == null || e == """") { - err[i++] = ""mobile no cannot be empty""; - - flag = 1; - } - var f = document.forms[""RegistrationController""][""email""].value; - if (f == null || f == """") { - err[i++] = ""email cannot be empty""; - flag = 1; - } - if (flag == 1) { - var string = """"; - for (j = 0; j < err.length; j++) { - document.getElementById(""error"").innerHTML = err[i]; - return false; - } - } - - } < /script> - - - - - - - - - Registration - - - -
    -

    Registration Form

    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    First name - -
    Last name - -
    Date of Birth - -
    Address Line 1 - -
    Address Line 2 - -
    state - -
    city - -
    pincode - -
    Mobile no - -
    email - -
    gender - Male - Female
    - -
    -
    - - - - - - - -",LQ -"Before to say my problem, i installed my **gitlab**(omnibus settting) and gitlab is connected external **nginx** server. And than now i am setting jenkins. - -While i am making new jenkins item, when i select ""Git"" in ""Source code management"" i receive following message in the picture.[git selecting screen][1] - -So i checked ""error.log"" in my external nginx. And then i found following error code. - -**`[error] 20979#0: OCSP_basic_verify() failed (SSL: error:27069076:OCSP routines:OCSP_basic_verify:signer certificate not found) while requesting certificate status, responder: ocsp.int-x1.letsencrypt.org`** - -I also searched it on google and anywhere i know, but i still don't know how to solve this problem. - -thank you advance for your help. - - - - - - - [1]: http://i.stack.imgur.com/JGU72.png",LQ -"first java file - - public class Swordsman extends Beginner { - public String attFunc; - public String attSkill; - private String nickname; - private int power; - private int result; - public void setnickname(String nickname){ - this.nickname=nickname; - } - public void setpower(int power){ - this.power=power; - } - public Swordsman(int p,String nm){ - setnickname(nm); - setpower(p); - /*nickname=nm; - *power=p; - */ - } - public String nickname(){ - return nickname; - } - public int power(){ - return power; - } - public int result(){ - if(power>=bpower){ - result=1; - }else if(power - $(function() { - $('#cu:w').on('change', function() { - $(this).hide(); - }); - }); - - -
    - Check Here - -

    This is the text.

    -
    -
    - -Demo: -http://jsfiddle.net/cEAnM/227/ -",LQ -"I've write a simple php script file that must execute in CLI and it needs 2 arguments. - - /usr/local/bin/php myscipt.php arg1 arg2 -it works well, but IF I put something like - - /usr/local/bin/php myscipt.php ar""g1 arg2 -or - - /usr/local/bin/php myscipt.php ar""g1 ar'g2 - -it do no treat argument like I want. -please is there any way to solve this. -I've tried all possible functions : strstr, strpos, ... and even loops. -Thanks",LQ -"I have tried the angular2 5 Min quickstart from https://angular.io/docs/ts/latest/quickstart.html. All Files were created by copy & past because i am lazy and because of possible faults. I preferred the typescript version. At the end, i must compile and start with ""nmp start"". i do this as admin. my os is windows 10. -After start i get some errors. this is the npm-debug.log: - - 0 info it worked if it ends with ok - 1 verbose cli [ 'C:\\Program Files\\nodejs\\\\node.exe', - 1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', - 1 verbose cli 'start' ] - 2 info using npm@2.9.1 - 3 info using node@v0.12.3 - 4 verbose node symlink C:\Program Files\nodejs\\node.exe - 5 verbose run-script [ 'prestart', 'start', 'poststart' ] - 6 info prestart angular2-quickstart@1.0.0 - 7 info start angular2-quickstart@1.0.0 - 8 verbose unsafe-perm in lifecycle true - 9 info angular2-quickstart@1.0.0 Failed to exec start script - 10 verbose stack Error: angular2-quickstart@1.0.0 start: `tsc && concurrently ""npm run tsc:w"" ""npm run lite"" ` - 10 verbose stack Exit status 2 - 10 verbose stack at EventEmitter. (C:\Program Files\nodejs\node_modules\npm\lib\utils\lifecycle.js:213:16) - 10 verbose stack at EventEmitter.emit (events.js:110:17) - 10 verbose stack at ChildProcess. (C:\Program Files\nodejs\node_modules\npm\lib\utils\spawn.js:24:14) - 10 verbose stack at ChildProcess.emit (events.js:110:17) - 10 verbose stack at maybeClose (child_process.js:1015:16) - 10 verbose stack at Process.ChildProcess._handle.onexit (child_process.js:1087:5) - 11 verbose pkgid angular2-quickstart@1.0.0 - 12 verbose cwd C:\web\angular2-quickstart - 13 error Windows_NT 6.3.9600 - 14 error argv ""C:\\Program Files\\nodejs\\\\node.exe"" ""C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js"" ""start"" - 15 error node v0.12.3 - 16 error npm v2.9.1 - 17 error code ELIFECYCLE - 18 error angular2-quickstart@1.0.0 start: `tsc && concurrently ""npm run tsc:w"" ""npm run lite"" ` - 18 error Exit status 2 - 19 error Failed at the angular2-quickstart@1.0.0 start script 'tsc && concurrently ""npm run tsc:w"" ""npm run lite"" '. - 19 error This is most likely a problem with the angular2-quickstart package, - 19 error not with npm itself. - 19 error Tell the author that this fails on your system: - 19 error tsc && concurrently ""npm run tsc:w"" ""npm run lite"" - 19 error You can get their info via: - 19 error npm owner ls angular2-quickstart - 19 error There is likely additional logging output above. - 20 verbose exit [ 1, true ] - -Can anybody helps me that the quickstart app starts? -I also tried to start the index.html in Firefox ( because the .ts files are all translate in .js files ) but nothing happens. ",LQ -"I installed Xamarin Studio on my mac. After installation complete (everything seems correct) Xamarin studio does not start :S I click xamarin application and nothing happens. - -My opration system version is El Capitan 10.11.5 Beta - -What is that problem? - -Thanks",LQ -"I looked at other examples, but I don't know enough about SQL to adapt it to my needs. I have a table that looks like this: - - ID Month NAME COUNT First LAST TOTAL - 1 JAN2013 fred 4 - 2 MAR2013 fred 5 - 3 APR2014 fred 1 - 4 JAN2013 Tom 6 - 5 MAR2014 Tom 1 - 6 APR2014 Tom 1 - - - -This could be in separate queries, but I need 'First' to equal the first month that a particular name is used, so every row with fred would have JAN2013 in the first field for example. I need the 'Last"" column to equal the month of the last record of each name, and finally i need the 'total' column to be the sum of all the counts for each name, so in each row that had fred the total would be 10 in this sample data. This is over my head. Can one of you assist? -",LQ -"I'm creating login form and i would like to give back button as center and red button at right side. - - - -
    -
    -
    -
      -
    • -
    -
    - - - -
    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
      -
    • -
    - -
    -
    -
    -
    -
    -` [HERE IS A PICTURE] - - - [HERE IS A PICTURE]: http://i.stack.imgur.com/aQelz.png - ",LQ -"

    I would like to add a column filled with a character N in a DataFrame in SparkR. I would do it like that with non-SparkR code :

    - -
    df$new_column <- ""N""
    -
    - -

    But with SparkR, I get the following error :

    - -
    Error: class(value) == ""Column"" || is.null(value) is not TRUE
    -
    - -

    I've tried insane things to manage it, I was able to create a column using another (existing) one with df <- withColumn(df, ""new_column"", df$existing_column), but this simple thing, nope...

    - -

    Any help ?

    - -

    Thanks.

    -",HQ -"

    I have two lists:

    - -
      -
    1. strainInfo, which contains a dictionary element called 'replicateID'
    2. -
    3. selectedStrainInfo, which contains a dictionary element called 'replicateID'
    4. -
    - -

    I'm looking to check if the replicateID of each of my strains is in a list of selected strains, in python it would be something like this:

    - -
    for strain in strainInfo:
    -    if strain.replicateID in [selectedStrain.replicateID for selectedStrain in selectedStrainInfo]
    -        print('This strain is selected')
    -
    - -

    I'm getting the correct functionality in django, but I'm wondering if there's a way to simplify using a list comprehension:

    - -
    {% for row in strainInfo %}
    -    {% for selectedStrain in selectedStrainsInfo %}
    -       {% if row.replicateID == selectedStrain.replicateID %} 
    -           checked 
    -       {% endif %}
    -    {% endfor %}
    -{% endfor %}
    -
    -",HQ -"

    Could you tell me how to check what indexes are created for some table in postgresql ?

    -",HQ -"

    I am new using maven and frontend-maven-plugin. I understand that we can add this code to pom.xml to run grunt for example:

    - -
             <plugin>
    -            <groupId>com.github.eirslett</groupId>
    -            <artifactId>frontend-maven-plugin</artifactId>
    -            <!-- NB! Set <version> to the latest released version of    frontend-maven-plugin, like in README.md -->
    -            <version>@project.version@</version>
    -
    -            <executions>
    -
    -                <execution>
    -                    <id>install node and npm</id>
    -                    <goals>
    -                        <goal>install-node-and-npm</goal>
    -                    </goals>
    -                    <configuration>
    -                        <nodeVersion>v5.3.0</nodeVersion>
    -                        <npmVersion>3.3.12</npmVersion>
    -                    </configuration>
    -                </execution>
    -
    -                <execution>
    -                    <id>npm install</id>
    -                    <goals>
    -                        <goal>npm</goal>
    -                    </goals>
    -                    <!-- Optional configuration which provides for running any npm command -->
    -                    <configuration>
    -                        <arguments>install</arguments>
    -                    </configuration>
    -                </execution>
    -
    -                <execution>
    -                    <id>npm run build</id>
    -                    <goals>
    -                        <goal>npm</goal>
    -                    </goals>
    -                    <configuration>
    -                        <arguments>run build</arguments>
    -                    </configuration>
    -                </execution>
    -
    -                <execution>
    -                    <id>grunt build</id>
    -                    <goals>
    -                        <goal>grunt</goal>
    -                    </goals>
    -                    <configuration>
    -                        <arguments>--no-color</arguments>
    -                    </configuration>
    -                </execution>
    -            </executions>
    -        </plugin>
    -
    - -

    I actually installed node and npm on my server -for example: node is installed under /opt/app/trss/nodejs, npm under /opt/app/trss/nodejs/npm how can this pom.xml use the node,npm installed on my server? Thanks

    -",HQ -" int[] array = { 10, 5, 10, 2, 2, 3, 4, 5, 5, 6, 7, 8, 9, 11, 12, 12 }; - for (int i = 0; i < array.Length; i++) - { - int count = 0; - for (int j = 0; j < array.Length; j++) - { - - if (array[i] == array[j]) - { - count = count + 1; - } - } - Console.WriteLine(array[i] + "" repeats "" + count + "" times""); - } - Console.ReadKey(); - -[Output][1] - - - [1]: http://i.stack.imgur.com/vH1wi.jpg -I don't want to use LINQ! -My question is, how to print results only once. For example: -10 repeats 2 times - -5 repeats 3 times - - -2 repeats 2 times -... - -Thanks. - -",LQ -"

    I have just installed font-awesome via bower:

    - -
    bower install font-awesome --save
    -
    - -

    And it appears to not add the CSS at the bower build. -How can I install it?

    -",HQ -"So this is my entire code and what it does not do, but should definitely do is first bounce off when colliding with the paddles and second if it does not do so then once the game enters in gameover mode once a key is pressed it should restart the game. Now I've tried several things and nothing seems to work. - -Can someone please find a solution and try to explain what I did wrong? - - // variables for the ball - int ball_width = 15, ball_height = 15; - int ballX = width/2, ballY = height/2; - // - // variables for the paddles - int paddle_width = 20, paddle_height = 150; - int paddle1 = 60, paddle2; - // - // direction variables - int directionX = 15, directionY = 15; - // - // variables for the score - int scorecounter = 0; - // - //game states - boolean playing = false, gameover = false, finalscore = false, score = true; - - void setup () { - - size (1900, 1300); // the field game is going to be 1900x1300 px big - rectMode (CENTER); - paddle2 = width - 60; - } - - - - void draw () { - - background (0); // black background - - playing (); - gameover (); - finalscore(); - - } - - // - void playing () { - - if (keyPressed) { - playing = true; - } - - if (!playing) { // playing = false - - fill(255); - textSize(80); - textAlign(CENTER); - text(""Press Space to Play"", width/2, height/4); - - fill (255); - ellipse (width/2, height/2, ball_width, ball_height); // this is the starting point of the ball - fill (255, 10, 20); - rect(paddle1, (height/2), paddle_width, paddle_height); // red pong - fill (60, 255, 0); - rect(paddle2, (height/2), paddle_width, paddle_height); // green pong - } - - if (playing) { // playing = true - - score(); - - ballX = ballX + directionX; - ballY = ballY + directionY; - - fill (255); - ellipse (ballX, ballY, ball_width, ball_height); - - fill ( 255, 10, 20 ); - rect(paddle1, mouseY, paddle_width, paddle_height); // red pong - fill ( 60, 255, 0 ); - rect(paddle2, mouseY, paddle_width, paddle_height); // green pong - - if ( ballY > height ) { - directionY = -directionY; - } // if the ball reaches the lower wall it will bounce off - if ( ballY < 0 ) { - directionY = -directionY; - } // if the ball reaches the upper wall it will bounce off - - if ( ballX > width || ballX < 0 ) { - gameover = true; } - } - - if (ballX == paddle1 && ballY <= paddle_height) { - directionX = -directionX; - directionY = -directionY; - } - if (ballX == paddle2 && ballY <= paddle_height) { - directionX = -directionX; - directionY = -directionY; - } - } - - void gameover () { - - if (gameover) { - background (0); - } - - finalscore (); - score = false; - - if (keyPressed) { - playing = true; - } - } - - void score () { - - if (playing) { - - fill(255); - textSize(45); - textAlign(CENTER); - text ( scorecounter, width/2, height/4); - - if (ballX == paddle1 && ballY <= paddle_height) { - scorecounter = scorecounter + 10; - } - if (ballX == paddle2 && ballX <= paddle_height) { - scorecounter = scorecounter + 10; - } - } - - if (!playing) { - score = false; - } - } - - void finalscore () { - - if (gameover) { - - score = false; - - fill(255); - textSize(45); - textAlign(CENTER); - text(""Game Over. Press a key to play again."", width/2, height/4); - fill(255); - textSize(80); - textAlign(CENTER); - text(""You scored "" + scorecounter + "" points"", width/2, (height/4) * 3); - - - if (keyPressed) { - playing = playing; - } - } - } - - - -",LQ -"

    In the official Firebase Integration Guide (Android) and Firebase Integration Guide (iOS), they have provided individual integration guidelines.

    - -

    Could you please tell me an ionic way I can integrate Firebase Analytics into ionic apps?

    - -

    I need to do this as AdMob made the Firebase Analytics as its recommendation analytics solution for mobile apps.

    - -

    Thank you in advance.

    -",HQ -"

    How to get the last row with value in the new Google Sheets API v4 ?

    - -

    i use this to get a range from a sheet:

    - -
    mService.spreadsheets().values().get(""ID_SHEET"", ""Sheet1!A2:B50"").execute();
    -
    - -

    how to detect the last row with value in the sheet ?

    -",HQ -"I'm new to MATLAB but after some studies and practice I was able to get going and there is this particular model I'm trying to analyze and plot using MATLAB. - -Unfortunatley I got stuck on K2 as it brought up this error ""***??? In an assignment A(I) = B, the number of elements in B and - I must be the same.***"" -I ran the debugger and I found out that J4 alone was a vector while other variables were all scalar. - -Please guys how can I resolve this error to have my plot? - -Here is the code that I ran. - - h1 = 1*10^-6; - h2 = (10:10:1500)*10^-6; - a = 62.5*10^-6; - b = a+h1; - c = b+h2; - alpha_1 = 0.55*10^-6; - alpha_2 = 17.2*10^-6; - alpha_3 = 14.2*10^-6; - zeta = 6.3*10^-6; - P11 = 0.121; - P12 = 0.27; - neff = 1.456; - U1 = 0.17; - U2 = 0.32; - U3 = 0.31; - E1 = 0.74*10^11; - E2 = 1.08*10^11; - E3 = 1.96*10^11; - n = 1; - while(n<=150) - J1(n) = E2*(b^2-a^2)*(1-U1)-E1*a^2*(1-U2)-E1*b^2*(1+U2); - J2(n) = 2*E1*b^2; - J3(n) = E1*E2*(b^2-a^2)*(alpha_2 - alpha_1); - J4(n) = 2*E3*(c(n)^2-b^2)*a^2; - J5(n) = E2*(b^2-a^2)*(1-U3)*b^2+E2*(b^2-a^2)*(1+U3)*c(n)^2-E3*(c(n)^2-b^2)*(1+U2)*a^2-E3*(c(n)^2-b^2)*(1-U2)*b^2; - J6(n) = E2*E3*(c(n)^2 - b^2)*(b^2-a^2)*(alpha_2-alpha_3); - - K1(n) = ((alpha_3-alpha_1)*E3*(c(n)^2-b^2)+(alpha_2-alpha_1)*E2*(b^2-a^2))/(E1*a^2+E2*(b^2-a^2)+E3*(c(n)^2-b^2)); - K2(n) = (J2*J6-J3*J5)/(J2*J4-J1*J5); - - Sr(n) = (neff^2/2)*(P11+P12)*(((1-U1)*K2/E1)-U1*K1); - Sz(n) = (1+P12)*(K1-(2*U2*K2/E1)); - St(n) = alpha_1+zeta; - Km(n) = St+Sz+Sr; - - n=n+1; - end - plot(h2,Km)",LQ -"

    I have taken over a Ubuntu 14.04 server. It has a user called ""deployer"" (used with capistrano), and as such, it needs sudo privileges. With this setup, I can log into the server and do stuff like:

    - -
    workstation> ssh deployer@myserver
    -myserver>  sudo apt-get install git
    -myserver> exit
    -workstation>
    -
    - -

    I am trying to figure out how to use Ansible (version 2.0.2.0 and python 2.7.3) to create a user called ""deployer"" and be able to log into the server with that id and then so sudo-ish things like ""apt-get install"". My playbook looks like this:

    - -
    ---
    -- hosts: example
    -  become: yes
    -  tasks:
    -  - name: Update apt cache
    -    apt:
    -      update_cache: yes
    -      cache_valid_time: 3600
    -
    -  - group: name=sudo state=present
    -
    -  - name: Add deployer user and add it to sudo
    -    user: name=deployer
    -          state=present
    -          createhome=yes
    -    become: yes
    -    become_method: ""sudo""
    -
    -  - name: Set up authorized keys for the deployer user
    -    authorized_key: user=deployer key=""{{item}}""
    -    with_file:
    -      - /home/jaygodse/.ssh/id_rsa.pub
    -
    - -

    After running this playbook, I am able to ssh into the machine as ""deployer"", (e.g. ssh deployer@myserver) but if I run a sudo command, it always asks me for my sudo password.

    - -

    I understand that the ""deployer"" user ultimately has to find its way into the visudo users file, but I cannot figure out which magical Ansible incantations to invoke so that I can ssh into the machine as deployer and then run a sudo command (e.g. sudo apt-get install git"") without being prompted for a sudo password.

    - -

    I have searched high and low, and I can't seem to find an Ansible playbook fragment which puts the user ""deployer"" into the sudo group without requiring a password. How is this done?

    -",HQ -"**I want to install Theano on my windows 8.1 x64 machine. I already have anaconda (latest 64 bit) with python 2.7.x version.** - -**I have two options of installing:** - - # Option 1 : from pip - pip install Theano - -**And** - - # Option 2 : Bleeding edge from git - pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git - -**Can someone let me know the major differences between two and which one is suggested to install?**",LQ -"

    I'm looking for a test framework like Ruby's RSpec to do test driven development in Python. The advantage of a framework like RSpec is that it offers a DSL that lends itself well to TDD. First you describe the test in english, and then you write the test, and when it fails you get a message saying what test failed with your nice description of what the test is trying to do.

    - -

    So far I've looked at PyTest and Nose. PyTest seems closer to ruby's MiniTest than RSpec. Instead of offering a DSL with language to make it read like specifications, it focuses on assertions. Nose seems like a wrapper on PyTest that doesn't add its own DSL.

    - -

    Is there another option I'm missing? Or am I just misusing PyTest and Nose? Has the Python community settled on some totally different way of doing this and I should stop trying to make it like Ruby? It doesn't seem, based on the number of stars on GitHub, that the community has really anointed either of these options as the preferred testing framework.

    -",HQ -"

    I have the following code in Spark-Python to get the list of names from the schema of a DataFrame, which works fine, but how can I get the list of the data types?

    - -
    columnNames = df.schema.names
    -
    - -

    For example, something like:

    - -
    columnTypes = df.schema.types
    -
    - -

    Is there any way to get a separate list of the data types contained in a DataFrame schema?

    -",HQ -"

    I have this class making use of enums. Parsing to Firebase json used to work just fine - using Jackson. -While migrating to firebase-database:9.0.0 I get the following:

    - -
    -

    com.google.firebase.database.DatabaseException: No properties to serialize found on class .... MyClass$Kind

    -
    - -

    where Kind is the enum declared type. The class:

    - -
    public class MyClass {
    -
    -    public enum Kind {W,V,U};
    -
    -    private Double value;
    -    private Kind kind;
    -
    -    /* Dummy Constructor */
    -    public MyClass() {}
    -
    -    public Double getValue() {
    -        return value;
    -    }
    -
    -    public void setValue(Double value) {
    -        this.value = value;
    -    }
    -
    -    public Kind getKind() {
    -        return kind;
    -    }
    -
    -    public void setKind(Kind kind) {
    -        this.kind = kind;
    -    }
    -}
    -
    - -

    I suspect Firebase no longer uses Jackson when serializing setValue(new MyClass()).

    - -

    Is there a way to get enum types serialized? Or some means to be explicit with respect to the serializer method?

    -",HQ -"Hoping for some help on this topic. I've found related things but nothing that encompassed my whole problem. - -I have two tables that hold image paths. The counts of approved images should equal the count of published images but I have evidence that they do not. One table has to have a join to group by the same criteria as the other table. I only want to return rows where the two counts don't match up. I've included the two queries I have that would return the data individually. Even if I tried to use Excel as a crutch, the amount of rows this query would return is in the millions. - -Query 1 -select product_id, count(*) -from published p -join published_set ps on ps.id = p.media_set_id -group by ps.product_id - -Query 2 -select product_id, count(*) -from media -where status in 'APPROVED' -group by pro_sku - -I did use Excel to pull one category of products that I suspected was the worst and got 8,000 mismatches out of 12,000 products. I want to compare this to other areas of the website, which I believe have little to no mismatches. My suspicion is a system is inserting data into the table incorrectly in a specific category. ",LQ -"ok I have been building voice applications for awhile, and I want to try something different. I want to open programs without manually putting in the programs into code. - - Process.Start(""notepad.exe""); - -I am wandering how you would execute a program using the registry, for example: - - string appPath = Path.GetDirectoryName(Application.ExecutablePath); - -now the reason why I want to do this, is, I don't know what programs the client will have on the computer system.. I have tried researching and everything I find is like how I have been programming. - -So is there a way to pull the program executable and execute the program. - -Full Example: - - if (speech == "" "") - { - Start.Process(Application.ExecutablePath); - } - - -or is there anyway to accomplish this.. Please only people who know how to code should respond.. Please don't tell me exactly what I have posted.. Read the question, before answering. - - ",LQ -"

    I'm currently making use of a node.js plugin called s3-upload-stream to stream very large files to Amazon S3. It uses the multipart API and for the most part it works very well.

    - -

    However, this module is showing its age and I've already had to make modifications to it (the author has deprecated it as well). Today I ran into another issue with Amazon, and I would really like to take the author's recommendation and start using the official aws-sdk to accomplish my uploads.

    - -

    BUT.

    - -

    The official SDK does not seem to support piping to s3.upload(). The nature of s3.upload is that you have to pass the readable stream as an argument to the S3 constructor.

    - -

    I have roughly 120+ user code modules that do various file processing, and they are agnostic to the final destination of their output. The engine hands them a pipeable writeable output stream, and they pipe to it. I cannot hand them an AWS.S3 object and ask them to call upload() on it without adding code to all the modules. The reason I used s3-upload-stream was because it supported piping.

    - -

    Is there a way to make aws-sdk s3.upload() something I can pipe the stream to?

    -",HQ -"

    I am setting up a simple vagrant box with chef solo as the provisioner. Everything was going fine until i tried running it on my laptop. The machine comes up fine but when it provisions it spits out some errors.

    - -

    I'm relatively fresh to chef and i'm not quite sure what i'm looking at. -Any help is immensely appreciated.

    - -

    Error

    - -
    ==> default: [2016-05-20T00:27:27+00:00] INFO: GET /organizations/chef/nodes/vagrant-ebebf4d0
    -==> default: [2016-05-20T00:27:27+00:00] INFO: #<ChefZero::RestErrorResponse: 404: Object not found: chefzero://localhost:8889/nodes/vagrant-ebebf4d0>
    -
    - -

    Full Stack Trace

    - -
        default: /tmp/vagrant-chef/fc2e73022d67a62fdf8d4974c11d0294/cookbooks => C:/Projects/new-vagrant/provision/cookbooks
    -==> default: Running provisioner: chef_solo...
    -    default: Installing Chef (latest)...
    -==> default: Generating chef JSON and uploading...
    -==> default: Running chef-solo...
    -==> default: stdin: is not a tty
    -==> default: [2016-05-20T00:27:25+00:00] INFO: Started chef-zero at chefzero://localhost:8889 with repository at /tmp/vagrant-chef/fc2e73022d67a62fdf8d4974c11d0294
    -==> default:   One version per cookbook
    -==> default: [2016-05-20T00:27:25+00:00] INFO: Forking chef instance to converge...
    -==> default: Starting Chef Client, version 12.11.1
    -==> default: [2016-05-20T00:27:25+00:00] INFO: *** Chef 12.11.1 ***
    -==> default: [2016-05-20T00:27:25+00:00] INFO: Platform: x86_64-linux
    -==> default: [2016-05-20T00:27:25+00:00] INFO: Chef-client pid: 2613
    -==> default: [2016-05-20T00:27:27+00:00] INFO: GET /organizations/chef/nodes/vagrant-ebebf4d0
    -==> default: [2016-05-20T00:27:27+00:00] INFO: #<ChefZero::RestErrorResponse: 404: Object not found: chefzero://localhost:8889/nodes/vagrant-ebebf4d0>
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/rest_base.rb:91:in `rescue in get_data'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/rest_base.rb:83:in `get_data'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/endpoints/rest_object_endpoint.rb:18:in `get'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/rest_base.rb:62:in `call'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/rest_router.rb:24:in `call'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/server.rb:664:in `block in app'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/server.rb:336:in `call'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/server.rb:336:in `handle_socketless_request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/socketless_server_map.rb:87:in `request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/socketless_server_map.rb:33:in `request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http/socketless_chef_zero_client.rb:154:in `request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:305:in `block in send_http_request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:336:in `block in retrying_http_errors'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:334:in `loop'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:334:in `retrying_http_errors'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:299:in `send_http_request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:144:in `request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:111:in `get'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/node.rb:604:in `load'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/node.rb:588:in `find_or_create'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/policy_builder/dynamic.rb:72:in `load_node'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/client.rb:465:in `load_node'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/client.rb:267:in `run'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:285:in `block in fork_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:273:in `fork'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:273:in `fork_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:238:in `block in run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/local_mode.rb:44:in `with_server_connectivity'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:226:in `run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:456:in `sleep_then_run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:443:in `block in interval_run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:442:in `loop'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:442:in `interval_run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:426:in `run_application'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:58:in `run'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/solo.rb:216:in `run'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/bin/chef-solo:25:in `<top (required)>'
    -==> default: /usr/bin/chef-solo:52:in `load'
    -==> default: /usr/bin/chef-solo:52:in `<main>'
    -==> default: [2016-05-20T00:27:27+00:00] INFO: HTTP Request Returned 404 Not Found: Object not found: chefzero://localhost:8889/nodes/vagrant-ebebf4d0
    -==> default: [2016-05-20T00:27:27+00:00] INFO: POST /organizations/chef/nodes
    -==> default: --- POST BODY ---
    -==> default: {""name"":""vagrant-ebebf4d0"",""chef_environment"":""_default"",""json_class"":""Chef::Node"",""automatic"":{},""normal"":{},""chef_type"":""node"",""default"":{},""override"":{},""run_list"":[]}
    -==> default: --- END POST BODY ---
    -==> default: [2016-05-20T00:27:27+00:00] INFO: #<ChefZero::RestErrorResponse: 404: Parent not found: chefzero://localhost:8889/nodes>
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/rest_base.rb:187:in `rescue in create_data'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/rest_base.rb:181:in `create_data'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/endpoints/rest_list_endpoint.rb:31:in `post'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/endpoints/nodes_endpoint.rb:24:in `post'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/rest_base.rb:62:in `call'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/rest_router.rb:24:in `call'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/server.rb:664:in `block in app'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/server.rb:336:in `call'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/server.rb:336:in `handle_socketless_request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/socketless_server_map.rb:87:in `request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-zero-4.6.2/lib/chef_zero/socketless_server_map.rb:33:in `request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http/socketless_chef_zero_client.rb:154:in `request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:305:in `block in send_http_request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:336:in `block in retrying_http_errors'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:334:in `loop'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:334:in `retrying_http_errors'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:299:in `send_http_request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:144:in `request'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/http.rb:127:in `post'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/node.rb:639:in `create'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/node.rb:592:in `rescue in find_or_create'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/node.rb:588:in `find_or_create'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/policy_builder/dynamic.rb:72:in `load_node'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/client.rb:465:in `load_node'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/client.rb:267:in `run'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:285:in `block in fork_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:273:in `fork'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:273:in `fork_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:238:in `block in run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/local_mode.rb:44:in `with_server_connectivity'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:226:in `run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:456:in `sleep_then_run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:443:in `block in interval_run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:442:in `loop'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:442:in `interval_run_chef_client'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/client.rb:426:in `run_application'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application.rb:58:in `run'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/lib/chef/application/solo.rb:216:in `run'
    -==> default: /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.11.1/bin/chef-solo:25:in `<top (required)>'
    -==> default: /usr/bin/chef-solo:52:in `load'
    -==> default: /usr/bin/chef-solo:52:in `<main>'
    -==> default: [2016-05-20T00:27:27+00:00] INFO: HTTP Request Returned 404 Not Found: Parent not found: chefzero://localhost:8889/nodes
    -==> default: ================================================================================
    -==> default: Chef encountered an error attempting to load the node data for ""vagrant-ebebf4d0""
    -==> default: ================================================================================
    -==> default: Resource Not Found:
    -==> default: -------------------
    -==> default: The server returned a HTTP 404. This usually indicates that your chef_server_url is incorrect.
    -==> default: Relevant Config Settings:
    -==> default: -------------------------
    -==> default: chef_server_url ""chefzero://localhost:8889""
    -==> default: Platform:
    -==> default: ---------
    -==> default: x86_64-linux
    -==> default: Running handlers:
    -==> default: [2016-05-20T00:27:27+00:00] ERROR: Running exception handlers
    -==> default: Running handlers complete
    -==> default: [2016-05-20T00:27:27+00:00] ERROR: Exception handlers complete
    -==> default: Chef Client failed. 0 resources updated in 02 seconds
    -==> default: [2016-05-20T00:27:27+00:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out
    -==> default: [2016-05-20T00:27:27+00:00] FATAL: Please provide the contents of the stacktrace.out file if you file a bug report
    -==> default: [2016-05-20T00:27:27+00:00] ERROR: 404 ""Not Found""
    -==> default: [2016-05-20T00:27:29+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)
    -Chef never successfully completed! Any errors should be visible in the
    -output above. Please fix your recipes so that they properly complete.
    -
    -",HQ -"

    Is there any ""behind the scenes"" difference from setting an element's innerHTML vs setting the dangerouslySetInnerHTML property on an element? Assume I'm properly sanitizing things for the sake of simplicity.

    - -

    Example:

    - -
    var test = React.createClass({
    -  render: function(){
    -    return (
    -      <div contentEditable='true' dangerouslySetInnerHTML={{ __html: ""Hello"" }}></div>
    -    );
    -  }
    -});
    -
    - -

    vs

    - -
    var test = React.createClass({
    -  componentDidUpdate: function(prevProp, prevState){
    -    this.refs.test.innerHTML = ""Hello"";
    -  },
    -  render: function(){
    -    return (
    -      <div contentEditable='true' ref='test'></div>
    -    );
    -  }
    -});
    -
    - - - -

    I'm doing something a bit more complicated than the above example, but the overall idea is the same

    -",HQ -"
    association_table = Table(""association_table"",
    -                          Base.metadata,
    -                          Column(""show_id"", Integer(), ForeignKey(""show_times.id""), primary_key=True),
    -                          Column(""theater_id"", Integer(), ForeignKey(""theaters.id"")))
    -
    -association_table2 = Table(""association_table2"",
    -                           Base.metadata,
    -                           Column(""show_id"", Integer(), ForeignKey(""show_times.id""), primary_key=True),
    -                           Column(""movie_id"", Integer(), ForeignKey(""movies.id"")))
    -
    -
    -
    -class Movie(Base):
    -    __tablename__ = ""movies""
    -    id = Column(Integer, primary_key=True)
    -    title = Column(String(), unique=True)
    -    plot = Column(String())
    -    duration = Column(String())
    -    rating = Column(String())
    -    trailer = Column(String())
    -    imdb = Column(String())
    -    poster = Column(String())
    -    summary = Column(String())
    -
    -class Theater(Base):
    -    __tablename__ = ""theaters""
    -    id = Column(Integer, primary_key=True)
    -    zip_code = Column(String())
    -    city = Column(String())
    -    state = Column(String())
    -    address = Column(String())
    -    phone_number = Column(String())
    -
    -
    -class Showtime(Base):
    -    __tablename__ = ""show_times""
    -    id = Column(Integer, primary_key=True)
    -    date = Column(Date())
    -    theaterz = relationship(""Theater"", secondary=association_table)
    -    moviez = relationship(""Movie"", secondary=association_table2)
    -    showtimes = Column(String())
    -
    - -

    supposing we have movie objects:

    - -
    movie_1 = Movie(title=""Cap Murica"",
    -              plot=""Cap punches his way to freedom"",
    -              duration=""2 hours"")
    -
    -movie_2 = Movie(title=""Cap Murica 22222"",
    -              plot=""Cap punches his way to freedom again"",
    -              duration=""2 hours"")
    -
    - -

    and a theater object:

    - -
    theater = Theater(name=""Regal Cinemas"",
    -                  zip_code=""00000"",
    -                  city=""Houston"",
    -                  state=""TX"")
    -
    - -

    how do we bulk save this into the show_times Model?

    - -

    I've tried doing this:

    - -
    movies = [movie_1, movie_2] # these movie objects are from the code snippet above
    -
    -show_times = Showtime(date=""5/19/2016"",
    -                      theaterz=[theater],
    -                      moviez=movies)
    -session.add(show_times)
    -session.commit()
    -
    - -

    hurray the above works. but when i do it in bulk like this:

    - -
    showtime_lists = [show_time1, show_time2, showtime3] # these are basically just the same show time objects as above
    -
    -session.bulk_save_objects(showtime_lists)
    -session.commit()
    -
    - -

    it doesn't fail but the data also doesn't get persisted to the database.

    - -

    I mean is there an alternative to adding each show_time to the session individually? A bulk insert would be better but I don't get why the data doesn't get persisted if done that way.

    -",HQ -"

    in the new Firebase 3.0, i am trying to get my head around when to use Firebase Cloud messaging and when to use Firebase Notifications.

    -",HQ -" FileUpload1.SaveAs(Server .MapPath (""resume\\""+FileUpload1.FileName + "" "")); - StatusLabel.Text = ""Upload status: File uploaded;",LQ -"Log In - -now to find Log In I written the code : - -WebDriverWait wait = new WebDriverWait(driver, 60); -wait.until(ExpectedConditions.visibilityOfElementLocated(By.linkText(""Log In""))); - WebElement logIN = driver.findElement(By.linkText(""Log In"")); - logIN.click(); - -according to me the code that I have written is correct but still I m getting error like : -no such element: Unable to locate element: {""method"":""link text"",""selector"":""Log In""} - (Session info: chrome=48.0.2564.116) - (Driver info: chromedriver=2.21.371459 (36d3d07f660ff2bc1bf28a75d1cdabed0983e7c4),platform=Windows NT 6.1 SP1 x86_64) (WARNING: The server did not provide any stack",LQ -"I have emails like sales@joebloggs.com -I am looking to select out everything after the @ and before the . -Result should = joebloggs -",LQ -"

    Is there a way to pass Windows Authentication with postman?

    - -

    I have added this in header but still 401 Unauthorized.

    - -
    Authorization: NTLM TkFcYWRtaW46dGVzdA==
    -
    - -

    As suggested by this link. I've encrypted as Unicode (UTF-16, little-endian) but of no use.

    - -

    Any Ideas?

    -",HQ -"

    I do get the warning xcodeproj was renamed toproject. Please use that from now on. when running pod install with Cocoapods 1.0.

    - -

    Also, [NSBundle bundleWithIdentifier:@""org.cocoapods.xyz""] returns nil.

    - -

    With version 0.39.0 I don't get the warning and [NSBundle bundleWithIdentifier:@""org.cocoapods.xyz""] returns a valid bundle.

    - -

    Does anyone know a solution for this?

    -",HQ -"Hi programmers i am new to programming language! Trying to convert the below code (objective c ) to swift plz help me by doing so or help me with a new code to play MULTIPLE SOUNDS *** --(IBAction)pushButton { - - NSString *path = [[NSBundle mainBundle] pathForResouce:@""ring"" ofType:@""mp3""]; - if(theAudio) [theAudio release]; - theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL]; - theAudio.delegate = self; - [theAudio play]; - -} - --(IBAction)pushButton1 { - - NSString *path = [[NSBundle mainBundle] pathForResouce:@""amaze"" ofType:@""mp3""]; - if(theAudio) [theAudio release]; - theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL]; - theAudio.delegate = self; - [theAudio play]; - - -} - -",LQ -"

    Suppose I have

    - -
     List<KeyValuePair<int, string>> d
    -
    - -

    I know the string but I want to find its integer. -How do I find the keyvaluepair inside this List?

    -",HQ -"I splited the file to String lines and put them in array indexes. - -String fileString = readfromfile(fileEvents); - -String[] fileLines = fileString.split(""\n""); - -assuming this is the first index in fileLines: -14 57 9 2 www.buytickets.com - -this is the constructor: - -Orders (int EventID, int SoldtoCustomerID, int SoldtoEmployeesID, int NumberOfTickets, String URL) - -the vector instance: -Vector myOrders = new Vector(); - -how do I transfer this line to first index in the vecotr so it would be like this: -(14,57,9,2,www.buytickets.com) - -thank you :) -",LQ -"

    I have the following 3 classes:

    - -

    ComponantA

    - -
    package mytest.spring.test.spring;
    -
    -import org.apache.log4j.Logger;
    -import org.springframework.scheduling.annotation.Scheduled;
    -import org.springframework.stereotype.Component;
    -
    -@Component
    -public class ComponentA {
    -
    -    Logger log = Logger.getLogger(ComponentB.class);
    -
    -    @Scheduled(fixedRate=2000)
    -    public void sayHello() {
    -        for(int i=1 ; i<=5 ; i++) {
    -            try {
    -                Thread.sleep(1000);
    -            } catch (InterruptedException e) {
    -                // TODO Auto-generated catch block
    -                e.printStackTrace();
    -            }
    -            log.info(""Hello from ComponentA "" + i);
    -        }
    -    }
    -}
    -
    - -

    ComponentB

    - -
    package mytest.spring.test.spring;
    -
    -import org.apache.log4j.Logger;
    -import org.springframework.scheduling.annotation.Scheduled;
    -import org.springframework.stereotype.Component;
    -
    -@Component
    -public class ComponentB {
    -
    -    Logger log = Logger.getLogger(ComponentB.class);
    -
    -    @Scheduled(fixedRate=2000)
    -    public void sayHello() {
    -        for(int i=1 ; i<=3 ; i++) {
    -            try {
    -                Thread.sleep(2000);
    -            } catch (InterruptedException e) {
    -                // TODO Auto-generated catch block
    -                e.printStackTrace();
    -            }
    -            log.info(""Hello from ComponentB "" + i);
    -        }
    -    }
    -}
    -
    - -

    MyApplication

    - -
    package mytest.spring.test.spring;
    -
    -import org.springframework.boot.SpringApplication;
    -import org.springframework.boot.autoconfigure.SpringBootApplication;
    -import org.springframework.scheduling.annotation.EnableScheduling;
    -
    -@SpringBootApplication
    -@EnableScheduling
    -public class MyApplication {
    -
    -    public static void main(String[] args) {
    -        SpringApplication.run(MyApplication.class, args);
    -    }
    -}
    -
    - -

    When I execute it, I'm getting the following output:

    - -
    Hello from ComponentA 1
    -Hello from ComponentA 2
    -Hello from ComponentA 3
    -Hello from ComponentA 4
    -Hello from ComponentA 5
    -Hello from ComponentB 1
    -Hello from ComponentB 2
    -Hello from ComponentB 3
    -Hello from ComponentA 1
    -Hello from ComponentA 2
    -Hello from ComponentA 3
    -Hello from ComponentA 4
    -Hello from ComponentA 5
    -Hello from ComponentB 1
    -Hello from ComponentB 2
    -Hello from ComponentB 3
    -...
    -
    - -

    I need the 2 Scheduled methods to run in parallel, which is clearly not the cae according to the output I'm getting. I read that it should be possible to provide the @Schedule annotation with a custom TaskExecutor, with which it should be possible to define how many thread we want ...

    - -

    Am I right ? I can't find how to provide this information.

    -",HQ -"

    I've developed a program in Windows with Java(FX) using Intellij Idea and that worked just fine, I then exported the artifact (jar) and there was no problem running it on Windows (both with the console and double clicking it).

    - -

    I've then copied it to my Ubuntu VM, but there it says

    - -
    Error: Could not find or load main class sample.Main
    -
    - -

    This is the Manifest:

    - -
    Manifest-Version: 1.0
    -Main-Class: sample.Main
    -
    - -

    The JAR file structure looks like this:

    - -
    test.jar
    ---- META-INF
    ---- --- MANIFEST.MF
    ---- org
    ---- --- json
    ---- --- --- // json library
    ---- sample
    ---- --- Contacts.class
    ---- --- Controller.class
    ---- --- Main.class
    ---- --- sample.fxml
    -
    -",HQ -" hotel_pricesURL = string_builder.ToString(); - RootobjectOne robjectOne = JsonConvert.DeserializeObject(hotel_pricesURL); - List one_star_list = new List(); - var check = robjectOne.onestar; - - foreach(var items in check) - { - - } -Hi ! I am getting an Error Stating {""Unable to cast object of type 'OneStar' to type 'System.Collections.IEnumerator'.""} , could any one please guide to solve the conflict, i do really appreciate -",LQ -"

    I have been getting this issue.. followed the upgrade guide for new firebase sdk...saved the google services json file in app directory.. still the same error as you but for the database...

    - -
    Caused by: java.lang.IllegalStateException: FirebaseApp with name [DEFAULT] doesn't exist.
    -
    -",HQ -":) - -I'm trying create one simple thing, so let me try explain, where say ""table here"" is supposed appear one table with 4 columns and 6 lines of course, with content inside of cells. - -Unfortunately I don't know how make this in java script. - -code that I already have below: - -_______________________________ - -
    -

    -  

    -

    - Please insert the part ID in the field - below:

    -

    - Part ID

    -

    -

    - - -

    - - - - - -________________________________ - -I hope that you can help me! :) - -",LQ -"

    Without any changes in my code, suddenly i get this error when I try to run my app:

    - -
    -
      -
    • What went wrong: - Execution failed for task ':app:packageDebug'. - com.android.builder.packaging.PackagerException: java.io.IOException: Failed to read zip file 'C:\Users\Eliran\AndroidStudioProjects\Forum\app\build\outputs\apk\app-debug.apk'.
    • -
    -
    - -

    I have no idea why its trying to read the apk as zip file.

    - -
      -
    • If I restart Android Studio, I can run the app once and then It happens again.
    • -
    -",HQ -"

    I upgraded Firebase yesterday and now am having a very unusual problem. When I run the simulator, I get a swift compile error ""Segmentation fault: 11"" The are hundreds of lines of code describing the error, but they are absolutely no help. From the error, the only thing I see that might be giving clues is at the bottom. It says:

    - -
      1. While loading members for 'ProfileTableViewController' at <invalid loc>
    -  2. While deserializing decl #101 (PATTERN_BINDING_DECL)
    -  3. While deserializing decl #2 (VAR_DECL)
    -
    - -

    Oddly, the errors I just typed above are not consistent. The view controller mentioned rotates between the three view controllers where I am using Firebase.

    - -

    To try to solve the problem, I commented out all of the code in the ProfileTableViewController class, but I still got an error referencing that view controller. The only code running in the view controller was:

    - -
      import UIKit
    -  import Firebase
    -  import FirebaseDatabase
    -
    - -

    (I'm also using FirebaseAuth in other view controllers).

    - -

    What does work to fix the problem is to hit ""clean"", restart xcode, clean again on launch and then run the program. Everything will work fine unless I make any changes to the code in the program. Even if all I do is add a comment, the error will reappear.

    - -

    I don't want to have to close xcode and restart every time I write a couple lines of code, and I am worried that I will run into problems when uploading to the app store.

    - -

    I am using XCode 7.3.1 and my deployment target is 9.3

    - -

    Any insight you can give is greatly appreciated! Thank you!

    -",HQ -"

    I have some route/model binding set up in my project for one of my models, and that works just fine. I'm able to use my binding in my route path and accept an instance of my model as a parameter to the relevant method in my controller.

    - -

    Now I'm trying to do some work with this model, so I have created a method in my controller that accepts a Form Request so I can carry out some validation.

    - -
    public function edit(EditBrandRequest $request, Brand $brand)
    -{
    -    // ...
    -
    - -

    Each different instance of my model can be validated differently, so I need to be able to use an instance of the model in order to build a custom set of validation rules.

    - -

    Is there a way of getting the instance of the model, that is injected into the controller from the Form Request?

    - -

    I have tried type-hinting the model instance in the Form Request's constructor

    - -
    class EditBrandRequest extends Request
    -{
    -    public function __construct(Brand $brand)
    -    {
    -        dd($brand);
    -    }
    -
    - -

    I have also tried type-hinting the model instance in the Form Request's rules() method.

    - -
    class EditBrandRequest extends Request
    -{
    -    // ...
    -
    -    public function rules(Brand $brand)
    -    {
    -        dd($brand);
    -
    - -

    In both instances I am provided an empty/new instance of the model, rather than the instance I am expecting.

    - -

    Of course, I could always get around this by not bothering with Form Requests and just generate the rules in the controller and validate manually - but I would rather do it the Laravel way if it's possible.

    - -

    Thanks

    -",HQ -"i am currently trying to get arguments from the command line to my main function in c. my program is as follows. - - #include - #include - - #define BANK1 (0X00100) - #define BANK2 (0x11010) - . - . - #define BANKN (0xNNNNN) - int write_to_bank(int bank, int value); - - int main(int argc, char **argv) - { - int a,v; - a=strtol(argv[2],NULL,0); - v=strtol(argv[3],NULL,0); - write_to_bank(a,v); - - } - - int write_to_bank(int bank, int value){ - // some relevant code - } - -if i pass the arguments as follows the integers are correctly parsed to the function - - ./main 0x00100 0x20 - -but when i try to pass the arguments to my main function in the following way i am not actually parsing the right bank value - - ./main BANK1 0x30 - -Is there any way i could pass the definition as an argument to my main functuion where c automatically translates the definition to the corresponding value and parses to the function argument. - --A.R",LQ -"

    We wanted to try out the new analytics capabilities provided by firebase, and followed all the steps in the getting started guide.

    - -

    We 've run the app, logged a lot of events and its been a few hours; yet there is no data on the dashboard - We just see a banner saying ""Your analytics data will appear here soon""

    - -

    How much time does it take to get our first reports, events, etc.?

    -",HQ -"

    I am trying to install Cisco VPN Client on Ubuntu, but I am facing problems. -So How can I install it on Ubuntu 16.04 LTS ?

    -",HQ -"

    I have a component which defines an imageUrl property and in my template I use this property to set the url of an image. -I tried this using interpolation and using property binding, both work, but I cannot find any differences between the two, or when to use the one over the other. Does anyone know the difference?

    - -
    <img [src]='imageUrl' >
    -
    -<img src= {{ imageUrl }} >
    -
    -",HQ -"

    I need to add border to the image in GitHub README.md file. This is how image should be embeded:

    - -
    ![GitHub Logo](/images/logo.png)
    -
    - -

    I have tried to wrap image with the table:

    - -
    |--------------------------------|
    -|![GitHub Logo](/images/logo.png)|
    -
    - -

    but it is not possible to create table without header.

    - -

    I have also tried to include image as html tag:

    - -
    <img src=""/images/logo.png"" style=""border: 1px solid black"" />
    -
    - -

    but without success. Is there any way how to do this?

    -",HQ -"

    I'd like to ask you how can I instead of $this->load->view('some_view.php') at the end of controller code, return user to page from where he invoked controller method? Simple return statement is not working.

    - -

    ie.

    - -
    public function someMethod($IDCustomer) {
    -
    -     $this->Some_modal->persist($IDCustomer);   
    -     // how to return to previous page instead of line after?
    -     // i've used $this->load->view('someView.php');
    -}
    -
    -",HQ -"

    What is the default method of variable initialization used when tf.get_variable() is called without any specification for the initializer? The Docs just says 'None'.

    -",HQ -"

    As soon as I add a tsconfig.json file to my Visual Studio 2015 web solution I get the above error.

    - -

    Also this stops the compiler from re-generating js files even when I set ""compileOnSave"": true.

    - -

    When I double click the error it takes me into the Microsoft.Typescript.Targets file which contains a lot of issues such as Unknown Item Group ""TypeScriptCompile"". In the error list these appear as warnings but they are there whether I have a tsconfig.json file or not.

    - -

    Is there any way of solving it or getting more information on what the problem is?

    -",HQ -"

    With the new update, FCM is now going to be used.

    - -

    I tried the sample app from git and it's working all fine. I can send notifications from the console.

    - -

    But I want to send the notification from the server after a certain event is triggered. I followed the same approach like in GCM but it's not working.

    - -
    05-20 20:40:58.941 30132-30919/com.google.firebase.quickstart.fcm E/AndroidRuntime: FATAL EXCEPTION: pool-1-thread-1
    -                                                                                    Process: com.google.firebase.quickstart.fcm, PID: 30132
    -                                                                                    java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String com.google.firebase.messaging.RemoteMessage$Notification.getBody()' on a null object reference
    -                                                                                        at com.google.firebase.quickstart.fcm.MyFirebaseMessagingService.onMessageReceived(MyFirebaseMessagingService.java:53)
    -                                                                                        at com.google.firebase.messaging.FirebaseMessagingService.zzo(Unknown Source)
    -                                                                                        at com.google.firebase.messaging.FirebaseMessagingService.zzn(Unknown Source)
    -                                                                                        at com.google.firebase.messaging.FirebaseMessagingService.zzm(Unknown Source)
    -                                                                                        at com.google.firebase.iid.zzb$2.run(Unknown Source)
    -                                                                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
    -                                                                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
    -                                                                                        at java.lang.Thread.run(Thread.java:818)
    -05-20 20:40:59.118 30132-30279/com.google.firebase.quickstart.fcm E/Surface: getSlotFromBufferLocked: unknown buffer: 0xb9e83390
    -
    - -

    Am following this PHP Script to send the notification. -If I try to execute the script, I get the following result.

    - -
    {""multicast_id"":4679427854122301046,""success"":1,""failure"":0,""canonical_ids"":0,""results"":[{""message_id"":""0:1463757518309261%31bd1c96f9fd7ecd""}]}
    -
    - -

    NOTE : I went through their docs and modified the code is gist to have only body and title. Even then it's not working.

    -",HQ -"

    I know that interpolation is syntactic sugar for string.Format(), but does it have any special behavior/recognition of when it is being used with a string formatting method?

    - -

    If I have a method:

    - -
    void Print(string format, params object[] parameters)
    -
    - -

    And the following call to it using interpolation:

    - -
    Print($""{foo} {bar}"");
    -
    - -

    Which of the following calls lines is most equivalent to the compiled result of string interpolation?

    - -
    Print(string.Format(""{0} {1}"", new[] { foo, bar }));
    -Print(""{0} {1}"", new[] { foo, bar });
    -
    - -

    Reasoning behind the question: Logging frameworks such as NLog typically defer string formatting until they have determined that a log message will actually be written. In general I prefer the string interpolation syntax, but I need to know if it may incur an extra performance penalty.

    -",HQ -"

    I am trying to vectorize the following function with clang according to this clang reference. It takes a vector of byte array and applies a mask according to this RFC.

    - -
    static void apply_mask(vector<uint8_t> &payload, uint8_t (&masking_key)[4]) {
    -  #pragma clang loop vectorize(enable) interleave(enable)
    -  for (size_t i = 0; i < payload.size(); i++) {
    -    payload[i] = payload[i] ^ masking_key[i % 4];
    -  }
    -}
    -
    - -

    The following flags are passed to clang:

    - -
    -O3
    --Rpass=loop-vectorize
    --Rpass-analysis=loop-vectorize
    -
    - -

    However, the vectorization fails with the following error:

    - -
    WebSocket.cpp:5:
    -WebSocket.h:14:
    -In file included from boost/asio/io_service.hpp:767:
    -In file included from boost/asio/impl/io_service.hpp:19:
    -In file included from boost/asio/detail/service_registry.hpp:143:
    -In file included from boost/asio/detail/impl/service_registry.ipp:19:
    -c++/v1/vector:1498:18: remark: loop not vectorized: could not determine number
    -      of loop iterations [-Rpass-analysis]
    -    return this->__begin_[__n];
    -                 ^
    -c++/v1/vector:1498:18: error: loop not vectorized: failed explicitly specified
    -      loop vectorization [-Werror,-Wpass-failed]
    -
    - -

    How do I vectorize this for loop?

    -",HQ -"

    Using Kubernetes 1.2.4, why does my below Deployment definition (redis.yaml) cause the following error?

    - -
    $ kubectl apply -f redis.yaml
    -error validating ""redis.yaml"": error validating data: found invalid field name for v1beta1.LabelSelector; if you choose to ignore these errors, turn validation off with --validate=false
    -
    - -

    redis.yaml:

    - -
    apiVersion: extensions/v1beta1
    -kind: Deployment
    -metadata:
    -  name: redis
    -spec:
    -  replicas: 3
    -  selector:
    -    name: redis
    -  template:
    -    metadata:
    -      labels:
    -        name: redis
    -    spec:
    -      containers:
    -      - name: redis
    -        image: kubernetes/redis:v1
    -        ports:
    -        - containerPort: 6379
    -        resources:
    -          limits:
    -            cpu: ""0.1""
    -        volumeMounts:
    -        - mountPath: /redis-master-data
    -          name: data
    -      volumes:
    -        - name: data
    -          emptyDir: {}
    -
    -",HQ -"

    Can anyone tell what is wrong within this code .I have installed all necessary modules .When i run this script then it tells app.configure is not a function . If i am missing any thing , please suggest me .

    - -
    var express = require('express')
    -, app = express()
    -, server = require('http').createServer(app)
    -, io = require(""socket.io"").listen(server)
    -, npid = require(""npid"")
    -, uuid = require('node-uuid')
    -, Room = require('./room.js')
    -, _ = require('underscore')._;
    -
    -app.configure(function() {
    -app.set('port', process.env.OPENSHIFT_NODEJS_PORT || 3000);
    -app.set('ipaddr', process.env.OPENSHIFT_NODEJS_IP || ""127.0.0.1"");
    -app.use(express.bodyParser());
    -app.use(express.methodOverride());
    -app.use(express.static(__dirname + '/public'));
    -app.use('/components', express.static(__dirname + '/components'));
    -app.use('/js', express.static(__dirname + '/js'));
    -app.use('/icons', express.static(__dirname + '/icons'));
    -app.set('views', __dirname + '/views');
    -app.engine('html', require('ejs').renderFile);
    -
    -/* Store process-id (as priviledged user) */
    -try {
    -    npid.create('/var/run/advanced-chat.pid', true);
    -} catch (err) {
    -    console.log(err);
    -    //process.exit(1);
    -}
    -
    -});
    -
    -",HQ -"

    I have a series within a DataFrame that I read in initially as an object, and then need to convert it to a date in the form of yyyy-mm-dd where dd is the end of the month.

    - -

    As an example, I have DataFrame df with a column Date as an object:

    - -
    ...      Date    ...
    -...     200104   ...
    -...     200508   ...
    -
    - -

    What I want when this is all said and done is a date object:

    - -
    ...      Date    ...
    -...  2001-04-30  ...
    -...  2005-08-31  ...
    -
    - -

    such that df['Date'].item() returns

    - -
    datetime.date(2001, 04, 30)
    -
    - -

    I've used the following code to get almost there, but all my dates are at the beginning of the month, not the end. Please advise.

    - -
    df['Date'] = pd.to_datetime(df['Date'], format=""%Y%m"").dt.date
    -
    - -

    Note: I've already imported Pandas ad pd, and datetime as dt

    -",HQ -"

    Can the Typescript compiler ignore the cannot find module 'x' error on import expressions such as:

    - -
    //How to tell the compiler that this module does exists
    -import sql = require('sql');
    -
    - -

    There are multiple npm libraries such as node sql that doesn't have existing typings

    - -

    Is there a way to tell the compiler to ignore this error other than creating a new definition file with the declare module x ... ?

    -",HQ -"Can anyone explain to me why this works the way it does. The output comes out to ""Print This"". But how does the base class call bar(), when there is no implementation - - - - abstract class Base - { - protected virtual void foo() - { - bar(); - } - - protected abstract void bar(); - } - - class Sub:Program - { - - protected override void foo() - { - base.foo(); - } - protected override void bar() - { - Console.WriteLine(""Print This""); - } - - static void Main(string[] args) - { - Sub obj = new Sub(); - - obj.foo(); - } - } - -",LQ -"

    Is there any difference between I create two slaves, or one slave with two executors on the same Windows server?

    -",HQ -"

    I am getting an error net::ERR_INSECURE_RESPONSE in the Chrome console when fetching some data from my API

    - -

    This error usually occurs as a result of an unsigned certificate; however, it is not an issue with this because I have a valid and signed certificate.

    - -

    The error doesn't happen often at all and it goes away if I restart my Chrome browser. It also doesn't occur in any other browser at all (tested on Safari, Mozilla, Opera)

    - -

    Any idea why this is happening? Is this just a browser bug?

    -",HQ -"

    We noticed our site is not rendered as expected on PS4 browser, is there a way to debug it or get a console?

    - -

    I know that the PS4 browser is WebKit based so I wonder is there similar debug tools like chrome or safari have?

    -",HQ -"

    This seems like it would be very straight forward but I can't seem to figure out how to map angles between -Pi and Pi to the range 0 to 2Pi. I tried using np.select but it freezes my program for some reason. I need the angles in this range since they will be used as training data for a neural net which can not output negative numbers.

    - -
    audio = wav.read('/home/chase/Desktop/ge.wav')[1].astype(np.float32)
    -audio = np.mean(audio, 1)
    -audio /= np.max(np.abs(audio))
    -audio = np.array([np.fft.rfft(audio[i:i + FRAME_SIZE]) for i in range(0, len(audio) - len(audio) % FRAME_SIZE, FRAME_SIZE)])
    -audio /= FRAME_SIZE
    -audio_mag = np.abs(audio)
    -audio_phase = np.angle(audio)
    -
    -#this line freezes the program
    -audio_phase = np.select(audio_phase < 0 , 2 * np.pi + audio_phase, audio_phase)
    -
    - -

    I need the audio

    -",HQ -"

    I just signed up with Firebase and I created a new project. Firebase asked me for my app domain and a SHA1 debug key. I input these details and it generated a google-services.json file for me to add in the root of my app module.

    - -

    My question is, should this .json file be added to a public (open source) repo. Is it something that should be secret, like an API key?

    -",HQ -"how to remove empty objects from json iOS - -**{""customer_latitude"":"""",""customer_longtitude"":""""}** - - -i get an empty lat and long value from json,but this lat and long point show into sea in map view.i want to remove that empty value",LQ -"

    We know that Rails 5 added ApplicationRecord as an abstract class which was inherited by our models (ActiveRecord).

    - -

    But basically, I think every technical requirement we do with ApplicationRecord, we can also do with ActiveRecord::Base. For instance:

    - -
    module MyFeatures
    -  def do_something
    -    puts ""Doing something""
    -  end
    -end
    -
    -class ApplicationRecord < ActiveRecord::Base
    -  include MyFeatures
    -  self.abstract_class = true
    -end
    -
    - -

    So now every model will be attached the behaviors of MyFeatures. But we can also achieve this in Rails 4:

    - -
    ActiveRecord::Base.include(MyFeatures)
    -
    - -

    So what is the benefit of using ApplicationRecord, do you think it is necessary to add ApplicationRecord?

    -",HQ -"MySQL Error Number. 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near... - -after the research then tried this method ; changed TYPE=InnoDB to ENGINE=InnoDB then using query to create, the error still exist. - - - [1]: http://i.stack.imgur.com/rQQjy.png",LQ -"Can someone look at the error below, i have tried around 10 articles on google, - - - -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/JhMvl.png",LQ -"

    I am getting ""this in app purchase has already been bought it will be restored for free"" but the delegate updatedTransactions is not being called and nothing happens, the IAP doesn't execute.

    - -

    I have implemented Restore Purchase which is working fine but how do i prevent a user from making purchase for a non-consumable item again?And why is the delegate updatedTransactions(SKPaymentTransactionState.Restored) not being called?

    - -

    Even making purchase after deleting and reinstalling the app shows this pop up.

    - -

    Here is my code.Please let me know if i am doing anything wrong.Thanks

    - -
    func makePaymentForProduct(product:SKProduct){
    -    let payment = SKPayment.init(product: product)
    -    SKPaymentQueue.defaultQueue().addPayment(payment)
    -    SKPaymentQueue.defaultQueue().addTransactionObserver(self)
    -}
    -
    -func restorePurchases(){
    -    SKPaymentQueue.defaultQueue().restoreCompletedTransactions()
    -    SKPaymentQueue.defaultQueue().addTransactionObserver(self)
    -}
    -
    -
    -//MARK: SKProductsRequestDelegate
    -
    -func productsRequest(request: SKProductsRequest, didReceiveResponse response: SKProductsResponse) {
    -    self.delegate?.didGetProducts(response.products)
    -}
    -
    -func request(request: SKRequest, didFailWithError error: NSError) {
    -    self.delegate?.purchaseFailed(error.localizedDescription)
    -}
    -
    -//MARK: SKPaymentTransactionObserver
    -
    -func paymentQueue(queue: SKPaymentQueue, updatedTransactions transactions: [SKPaymentTransaction]) {
    -
    -    for (_, transaction) in transactions.enumerate() {
    -        switch (transaction.transactionState) {
    -        case SKPaymentTransactionState.Purchased:
    -            self.completeTransaction(transaction)
    -            break
    -        case SKPaymentTransactionState.Restored:
    -            self.restoreTransaction(transaction)
    -            break
    -        case SKPaymentTransactionState.Failed:
    -            self.failedTransaction(transaction)
    -            break
    -        default:
    -            break
    -        }
    -    }
    -}
    -
    -func completeTransaction(transaction:SKPaymentTransaction){
    -    self.delegate?.purchaseSuccessful()
    -    SKPaymentQueue.defaultQueue().finishTransaction(transaction)
    -}
    -
    -func restoreTransaction(transaction:SKPaymentTransaction){
    -    self.delegate?.purchaseSuccessful()
    -    SKPaymentQueue.defaultQueue().finishTransaction(transaction)
    -}
    -
    -func failedTransaction(transaction:SKPaymentTransaction){
    -    self.delegate?.purchaseFailed("""")
    -    SKPaymentQueue.defaultQueue().finishTransaction(transaction)
    -}
    -
    -
    -//Restore Purchase
    -
    -func paymentQueueRestoreCompletedTransactionsFinished(queue: SKPaymentQueue) {
    -    self.delegate?.purchaseRestored()
    -}
    -
    -func paymentQueue(queue: SKPaymentQueue, restoreCompletedTransactionsFailedWithError error: NSError) {
    -    self.delegate?.purchaseFailed(error.localizedDescription)
    -}
    -
    -",HQ -"

    What's the difference between BPMN (Business Process Model & Notation) and BPEL (Business Process Expression Language) and Where do we use BPMN and where do we use BPEL and which one is better?

    -",HQ -"example var string=(Firstname==test1) AND (Lastname==test2) OR (state=Tamilnadu) OR (country=india) - -i required output like {AND,OR,OR}",LQ -"

    I have a dataframe:

    - -
                 High    Low  Close
    -Date                           
    -2009-02-11  30.20  29.41  29.87
    -2009-02-12  30.28  29.32  30.24
    -2009-02-13  30.45  29.96  30.10
    -2009-02-17  29.35  28.74  28.90
    -2009-02-18  29.35  28.56  28.92
    -
    - -

    and a boolean series:

    - -
         bools
    -1    True
    -2    False
    -3    False
    -4    True
    -5    False
    -
    - -

    how could I select from the dataframe using the boolean array to obtain result like:

    - -
                 High   
    -Date                           
    -2009-02-11  30.20  
    -2009-02-17  29.35  
    -
    -",HQ -"

    I have encountered that in the guide:

    - -
    viewValidation : Model -> Html msg
    -viewValidation model =
    -  let
    -    (color, message) =
    -      if model.password == model.passwordAgain then
    -        (""green"", ""OK"")
    -      else
    -        (""red"", ""Passwords do not match!"")
    -  in
    -    div [ style [(""color"", color)] ] [ text message ]
    -
    - -

    So this is a function, which takes the Model. -Html msg usually looks to me like we are calling the function Html with the argument msg.

    - -

    msg doesn't seem to play any role in any other part of the viewValidation function, though. So what does it mean and what is it for in this case?

    -",HQ -"

    I'm going to upgrade react-native but before I do, I need to know which version I'm upgrading from to see if there are any special notes about upgrading from my version.

    - -

    How do I find the version of react-native I have installed on my Mac?

    -",HQ -"I am trying to compile this simple program: -[enter image description here][1] - -But every time I try to do it using Xcode or terminal they give me the following warnings and the following errors: -[enter image description here][2] - - -Thanks ! Hope you guys can help me! - - - [1]: http://i.stack.imgur.com/LYYLi.png - [2]: http://i.stack.imgur.com/gpQh0.png - ",LQ -"

    In the new Console in a Firebase Project, in Project Setting session in the Database tab there is the label Databases.

    - -

    However I didn't find any action to create more than 1 database inside the same Firebase Project.

    - -

    Is it possible to create more databases inside the same Firebase Project?

    - -

    -",HQ -"
    var URIController = {
    -    get href() {
    -        return url.location.href;
    -    }
    -}
    -
    - -

    I have above object structure. But URIController.href property depends on another object, url.

    - -

    If the url is defined globally, URIController.href works. But I want to pass url object to href getter manually.

    - -
    var URIController = {
    -    get href(url) {
    -        return url.location.href;
    -    }
    -}
    -
    - -

    Changed the getter to accept url parameter but

    - -
    URIController.href(url)
    -
    - -

    throws error because href is not a function.

    - -

    Is it possible to pass arguments to getter in javascript?

    -",HQ -"

    I use this image: dperson/samba

    - -

    The image is defining it's own entrypoint and I do not want to override it.

    - -

    I need to pass arguments to the entrypoint, easy with docker only:

    - -
    docker run ... dperson/samba arg1 arg2 arg3
    -
    - -

    But how to do it with docker_compose.yml ?

    - -

    Right now I use as a workaround:

    - -
    command: samba.sh arg1 arg2 arg3
    -
    - -

    But it is not satisfying as I force the redefinition of the entrypoint.

    -",HQ -"

    I know about NAT traversal and about STUN, TURN and ICE and its use. I want to know whether these are implemented in peer to peer file sharing application like bittorrent. Whether trackers facilitate peers behind NATs to communicate with each other by helping in creating direct connection using STUN or relay through TURN. In the case of Distributed Hash Table(DHT) how one peer would communicate with other peer behind NAT ?

    -",HQ -"

    The best example I've got is that I want to sort Names based on their Score.

    - -
    vector <string> Names {""Karl"", ""Martin"", ""Paul"", ""Jennie""};
    -vector <int> Score{45, 5, 14, 24};
    -
    - -

    So if I sort the score to {5, 14, 24, 45}, the names should also be sorted based on their score.

    -",HQ -"

    I got several .sql files of countries, states and cities of the world from github. How can I run them with Laravel's seed files to populate those tables in my database?

    -",HQ -"

    I am trying to follow the firebase Node tutorial: -https://www.firebase.com/docs/web/quickstart.html

    - -

    My node.js app is crashing with a ""TypeError: Firebase is not a function"" error. My index.js file:

    - -
    var Firebase = require(""firebase"");
    -var firebaseRef = new Firebase(""https://word-word-number.firebaseio.com/"");
    -
    - -

    Line two is where the crash happens.

    - -

    In my package.json I have:

    - -
    ""firebase"": ""^3.0.2"",
    -
    - -

    and

    - -
    ""node"": ""5.11.0""
    -
    -",HQ -"

    I would like to connect to a websocket via asyncio and websockets, with a format as shown below. How would I be able to accomplish this?

    - -
    from websockets import connect
    -
    -
    -class EchoWebsocket:
    -
    -    def __init__(self):
    -        self.websocket = self._connect()
    -
    -    def _connect(self):
    -        return connect(""wss://echo.websocket.org"")
    -
    -    def send(self, message):
    -        self.websocket.send(message)
    -
    -    def receive(self):
    -        return self.websocket.recv()
    -
    -echo = EchoWebsocket()
    -echo.send(""Hello!"")
    -print(echo.receive())  # ""Hello!""
    -
    -",HQ -"

    I'm trying the new FirebaseUI for Web (https://github.com/firebase/FirebaseUI-Web). But when I tried to login with Email, it redirects me to an AccountChooser website.

    - -

    Is there anyway that I can turn off that AccountChooser?

    - -

    Thanks

    -",HQ -"

    I'm trying to implement a dropdown which you can click outside to close. The dropdown is part of a custom date input and is encapsulated inside the input's shadow DOM.

    - -

    I want to write something like:

    - -
    window.addEventListener('mousedown', function (evt) {
    -  if (!componentNode.contains(evt.target)) {
    -    closeDropdown();
    -  }
    -});
    -
    - -

    however, the event is retargeted, so evt.target is always the outside the element. There are multiple shadow boundaries that the event will cross before reaching the window, so there seems to be no way of actually knowing if the user clicked inside my component or not.

    - -

    Note: I'm not using polymer anywhere -- I need an answer which applies to generic shadow DOM, not a polymer specific hack.

    -",HQ -"

    As of version ^3.0.0, I'm having a difficult time removing the auth state change listener.

    - -

    To start the listener per the documentation:

    - -
    firebase.auth().onAuthStateChanged(function (user) {
    -    // handle it
    -});
    -
    - -

    However, I cannot find anywhere in the documentation that refers to a remove auth state change listener. There is peculiar function on the Firebase.Auth class called removeAuthTokenListener. Unfortunately it's not documented (firebase docs reference).

    - -

    Via your browser's web console.

    - -
    var auth = firebase.auth();
    -auth.removeAuthTokenListener;
    -
    - -

    prints a function definition that takes one parameter. I tried to do the following:

    - -
    this.authListener = firebase.auth().onAuthStateChanged(function (user) {...});
    -firebase.auth().removeAuthTokenListener(this.authListener);
    -
    - -

    but that didn't do anything.

    -",HQ -"Can somebdy explain me the function of this code this code use to change colored picture into black and with picture - - - Begin - Indeks := 3 * Kolom; - R := PDataBaris[Indeks]; - G := PDataBaris[Indeks+1]; - B := PDataBaris[Indeks+2]; - - Intensitas := Round(0.2989 * R + 0.5870 * G + 0.1141* B); - - if Intensitas < 128 then - begin - - p:=p+1; - Intensitas := 0 - - end; - - if Intensitas > 128 then - - - begin - h:=h+1; - Intensitas := 255 - end; - PDataBaris[Indeks] := Intensitas; - PDataBaris[Indeks+1] := Intensitas; - PDataBaris[Indeks+2] := Intensitas; - End; - end; -",LQ -"

    Let us suppose that we have one class which looks like the following:

    - -
    public class Entity
    -{
    -    public IList<string> SomeListOfValues { get; set; }
    -
    -    // Other code
    -}
    -
    - -

    Now, suppose we want to persist this using EF Core Code First and that we are using a RDMBS like SQL Server.

    - -

    One possible approach is obviously to create a wraper class Wraper which wraps the string:

    - -
    public class Wraper
    -{
    -    public int Id { get; set; }
    -
    -    public string Value { get; set; }
    -}
    -
    - -

    And to refactor the class so that it now depends on a list of Wraper objects. In that case EF would generate a table for Entity, a table for Wraper and stablish a ""one-to-many"" relation: for each entity there is a bunch of wrapers.

    - -

    Although this works, I don't quite like the approach because we are changing a very simple model because of persistence concerns. Indeed, thinking just about the domain model, and the code, without the persistence, the Wraper class is quite meaningless there.

    - -

    Is there any other way persist one entity with a list of strings to a RDBMS using EF Core Code First other than creating a wraper class? Of course, in the end the same thing must be done: another table must be created to hold the strings and a ""one-to-many"" relationship must be in place. I just want to do this with EF Core without needing to code the wraper class in the domain model.

    -",HQ -"

    I'm using django 1.9.6. I recently deleted my migrations and ran migrate --run-syncdb and makemigrations my_app. Today I added a new field to one of my models:

    - -

    models.py:

    - -
    value = models.PositiveSmallIntegerField(null=True)
    -
    - -

    I tried to migrate the changes, but makemigrations doesn't detect the change. It's just the development version, so I can resync (I don't have to preserve the data), but running --run-syncdb again doesn't detect it either.

    - -

    Why isn't this migrating?

    -",HQ -"

    I'd love to know how I can use Firebase Analytics (FA) and Google Analytics (GA) simultaneously as FA doesn't provide real-time data and my apps already integrated with GA since the beginning. I'd like to continue using GA since all my analytic data started there when I first launched my apps. Meanwhile, I'd like to have my apps have FA integrated to get more info.

    - -

    I followed Using Firebase Analytics and Google Analytics together and setup Google Tag Manager. It doesn't seem to be working for me. I do see FA dashboard being updated but nothing is showing up in GA.

    - -

    Any help is greatly appreciated!

    -",HQ -"Why if I multiply a int num = 2,147,483,647 by the same int num is returning 1 as result ? notes that i am in the limit of the int possible value. - -I already try to catch the exception but still give the result as 1 ",LQ -"I'm working with an edge list in STATA, of the type: - -var1 var2 - a 1 - a 2 - a 3 - b 1 - b 2 - 1 a - 2 b - -I want to remove non-unique pairs such as 1a and 2b (which are same as a1 and b2 for me). How can I go about this? ",LQ -"php but it is not correct and what can i do? insert is working. Everything is working but not update. I dont know why, i think i had made everything correct. if you can help me it would be great. Thank you! - -i cannot make update on PHP (Mysqli) - ""; - - ?> - - - query($showrecs); - - if(isset($_POST['update'])){ - $Updatee = ""UPDATE register SET English='"".$_POST['English'].""', Georgian='"".$_POST['Georgian'].""' WHERE ID='$id'""; - - $res=mysqli_query($conn, $Updatee); - if($res==1){ - echo ""წარმატებით განხორციელდა რედაქტირება.""; - echo ""
    ""; - echo ""ჩანაწერების ნახვა""; - } - if($res==0){ - echo ""არაფერიც არ მოხდა""; - } - exit(); - - } - - elseif ($result->num_rows > 0) { - // - while($row = $result->fetch_assoc()) { - echo ""
    ""; - echo """"; - echo """" . """". """"; - echo """" . """". "" ""; - echo """" . """". "" ""; - echo """" . """" . "" ""; - - echo ""
    ""; - ?> - - - ""; - echo ""
    ""; - } - } else { - echo ""Error;""; - } - - $conn->close(); - - ?>",LQ -"

    I have a scss file with font import implemented this way:

    - -
    @import url(https://fonts.googleapis.com/css?family=PT+Sans+Caption:400,700&subset=latin-ext,cyrillic); 
    -
    - -

    I understand that using CDN gives advantages in caching for user but this is internal site and it could be used on server without access to the wide web. And I'm not sure that user machine will have access to the Internet too. So I want to serve fronts with other pages static files.

    - -

    Is there a way in SCSS to import fonts from the some directory on server? Something like:

    - -
    @import dir(/path/to/fonts/file)
    -
    - -

    Or SCSS has not this feature?

    -",HQ -"

    I have a set of strings set1, and all the strings in set1 have a two specific substrings which I don't need and want to remove.
    -Sample Input: -set1={'Apple.good','Orange.good','Pear.bad','Pear.good','Banana.bad','Potato.bad'}
    -So basically I want the .good and .bad substrings removed from all the strings.
    What I tried:

    - -
    for x in set1:
    -    x.replace('.good','')
    -    x.replace('.bad','')
    -
    - -

    But this doesn't seem to work at all. There is absolutely no change in the output and it is the same as the input. I tried using for x in list(set1) instead of the original one but that doesn't change anything.

    -",HQ -"i am new to makefile concept -so to try out if i am able to run and compile c files using word ""make""in command prompt i made main.c (which contains main function) ,ttt.c (which contain a function void ttt(int)) , mandar.h (headerfile to include void ttt(int) function in main.c) -when i run this program in cmd using ""gcc main.c ttt.c -o main && main"",program gets compiled and run properly(so there shouldn't be any error in code) - -now in the same directory i made a file Makefile.txt as follow -[image of makefile][1] - - -now when i type ""make ""in cmd following message is shown -[image of cmd message][2] - -i typed everything exactly the same way as in ""head first c "" book -did i miss something -this is my first time to ask a question so suggestion regarding improvement of questions are also welcomed - - - [1]: http://i.stack.imgur.com/ymHPw.png - [2]: http://i.stack.imgur.com/rVwLt.png",LQ -"

    I am writting an app with an instant messenger function. Users would write text or share images in the IM function. The text data and file name of images are stored in the sqlite file while the images are stored in the device.

    - -

    Since my server will not keep the data, the user would not get the chat record when he / she switches to a new device. With reference to whatsapp, they allow the users to back up the chat records and images to Google Drive on a regular basis and get the data back from the drive as shown in the picture below.

    - -

    -When I go to my own google drive, I would find ""Whatsapp"" is connected to my google drive as shown below.

    - -

    -I am new to the Google Drive API in Android and I would like to backup my sqlite database and images in the same way as Whatsapp does. I know there are few questions related to the back-up of sqlite database to Google Drive but it seems that it only contains part of the codes and this makes the beginner quite difficult to understand.

    - -

    Will there be any sample projects on github, questions on stackoverflow or tutorials that would allow me learn how to back up sqlite database and images programmatically in Android step by step?

    - -

    In additions, I am surprised to see only whatsapp is connected to my Google Drive but no more other apps, so I don't know if third-party developers would have the same access to Google Drive and complete the backup in the same way as Whatsapp.

    -",HQ -"\\GPS coordinates obtain - @Override - public void onLocationChanged(Location location) { - - - location.getLatitude(); - location.getLongitude(); - location.getAltitude(); - location.getAccuracy(); - double la,lo,al,aq; - location.setLatitude(la= location.getLatitude()); - location.setLatitude(lo=location.getLongitude()); - location.setLatitude(al=location.getAltitude()); - location.setLatitude(aq = location.getAccuracy()); - - textView.append(""\n""+la); -\\plotting ""la"" value in scatter chart - ScatterChart scatterChart =(ScatterChart) findViewById(R.id.chart); - List values = new ArrayList<>(); - float longi = (float) la; - - - values.add(new ChartData(4f, 6f)); - values.add(new ChartData(10f, 10f)); - - - scatterChart.setData(values); - scatterChart.setGesture(true); - scatterChart.setDescription(""Location"");",LQ -"

    I'm running docker build and it's taking an awfully long time to run. Infact, it doesn't complete and I have to CTRL + C to quit.

    - -

    Last night things were working fine. When I returned to the computer and tried to rebuild it started acting strange.

    - -

    Here's my command:

    - -
    docker build -t mywebsite/backend .
    -
    - -

    When I ran it I noticed this:

    - -
    Sending build context to Docker daemon 213.8 MB
    -Step 1 : FROM ubuntu:14.04
    -
    - -

    I have no idea why the file size was 213.8. The only directory that is large is node_modules and that contains .dockerignore so it shouldn't be touching that directory.

    - -

    After that ran I had an error, so I fixed it and reran:

    - -
    docker build -t mywebsite/backend .
    -
    - -

    This time it just hung. And continues to do so.

    - -

    Here is my Dockerfile

    - -
    FROM ubuntu:14.04
    -
    -# Set env. variables
    -ENV DEBIAN_FRONTEND noninteractive
    -
    -# Application
    -ENV APP_PORT 3000
    -
    -# Amazon
    -ENV AMAZON_BUCKET mybucket
    -ENV AMAZON_ACCESS_KEY_ID mykey
    -ENV AMAZON_SECRET_ACCESS_KEY mytoken
    -
    -# Set working directory
    -WORKDIR ~/vms
    -
    -# Install NodeJS
    -RUN apt-get update; apt-get install -y curl;
    -RUN curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
    -RUN apt-get install -y nodejs
    -
    -# Install node dependencies
    -ADD package.json package.json
    -RUN npm install --production
    -
    -# Copy files to the container
    -ADD src src
    -
    -EXPOSE 3000
    -
    -# Start application
    -RUN npm start
    -
    - -

    The directory I am in when I run the command is the one that contains the Dockerfile:

    - -
    - backend
    -  - node_modules
    -  - src
    -    - config
    -    - routes
    -    - views
    -    index.js
    -  Dockerfile
    -  package.json
    -
    - -

    I'm running docker on Ubuntu 14.04

    -",HQ -"

    I use

    - -
    sns.distplot 
    -
    - -

    to plot a univariate distribution of observations. Still, I need not only the chart, but also the data points. How do I get the data points from matplotlib Axes (returned by distplot)?

    -",HQ -"

    I am trying to setup emails with my own website. Let's say the domain name is abc.com.

    - -

    The nameserver in use is digital ocean and I also have a gmail account linked to the same (say using contact@abc.com).

    - -

    While setting up things with mailgun, I used mg.abc.com (as they said it would also let me email using the root domain). The verification step is done and I can send email using contact@mg.abc.com.

    - -

    However, trying to use the root domain (contact@abc.com) gives the following error:

    - -
    AnymailRequestsAPIError: Sending a message to me@gmail.com from contact@abc.com
    -ESP API response 404:
    -{
    -""message"": ""Domain not found: abc.com""
    -}
    -
    - -

    How do I resolve this issue?

    -",HQ -"

    I want to animate the appearance and disappearance of table rows.

    - -

    First of all I tried using a CSS transition, but it did nothing due to the change of the display property.

    - -

    So I used an animation, which works as expected.

    - -

    The problem is, the full height of the row is reserved when the animation begins. See the snippet below for an illustration of the problem: Row 3 is pushed down straight away, before the animation begins.

    - -

    How can I animate the height of the row progressively, so that it only takes as much space as needed?

    - -

    And as a bonus:

    - -
      -
    • it should not require a fixed height for rows
    • -
    • it should appear as a translation, rather than a scaling; it should look like it's sliding from the bottom of the row above it
    • -
    • it should be bidirectional (do the opposite when I hide it)
    • -
    - -

    -
    -
    $('button').on('click', function() {
    -  $('tr:nth-child(2)').toggleClass('active');
    -});
    -
    @keyframes anim {
    -  0% {
    -    transform: scaleY(0);
    -  }
    -  100% {
    -    transform: scaleY(1);
    -  }
    -}
    -tr {
    -  background: #eee;
    -  border-bottom: 1px solid #ddd;
    -  display: none;
    -  transform-origin: top;
    -}
    -tr.active {
    -  display: table-row;
    -  animation: anim 0.5s ease;
    -}
    -td {
    -  padding: 10px;
    -}
    -
    <script src=""https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js""></script>
    -<button type=""button"">Toggle</button>
    -<table>
    -  <tbody>
    -    <tr class=""active"">
    -      <td>Row 1</td>
    -      <td>...</td>
    -      <td>...</td>
    -    </tr>
    -    <tr>
    -      <td>Row 2</td>
    -      <td>...</td>
    -      <td>...</td>
    -    </tr>
    -    <tr class=""active"">
    -      <td>Row 3</td>
    -      <td>...</td>
    -      <td>...</td>
    -    </tr>
    -  </tbody>
    -</table>
    -
    -
    -

    -",HQ -"PLS I need split data from ethernet. Data is in this format: - - ZMXXX,angle*CHCK - -where angle is number. For example: `ZMXXX,900*5A` - -And I need separated ZMXXX,900 and 5A. -I write this function. - - void split_data(char analyze[]) - { - char *words[5]; uint8_t i=0; - words[i] = strtok(analyze,""*""); - - while(words[i]!=NULL) - { - words[++i] = strtok(NULL,""*""); - } - } - -And result is here: [PICTURE][1] - -And now, How I can get this data from variable: - - words[0] - words[1] - - - [1]: http://s32.postimg.org/jz4kilf3p/variable.png",LQ -"

    In Angular 1 all DOM manipulation should be done in directives to ensure proper testability, but what about Angular 2? How has this changed?

    - -

    I've been searching for good articles or any information at all about where to put DOM manipulation and how to think when doing it, but I come up empty every time.

    - -

    Take this component for example (this is really a directive but let's pretend that it's not):

    - -
    export class MyComponent {
    -
    -  constructor(private _elementRef: ElementRef) {
    -
    -    this.setHeight();
    -
    -    window.addEventListener('resize', (e) => {
    -      this.setHeight();
    -    });
    -  }
    -
    -  setHeight() {
    -    this._elementRef.nativeElement.style.height = this.getHeight() + 'px';
    -  }
    -
    -  getHeight() {
    -    return window.innerHeight;
    -  }
    -}
    -
    - -

    Does event binding belong in a constructor for example, or should this be put in the ngAfterViewInit function or somewhere else? Should you try to break out the DOM manipulation of a component into a directive?

    - -

    It's all just a blur at the moment so I'm not sure that I'm going about it correctly and I'm sure I'm not the only one.

    - -

    What are the rules for DOM manipulation in Angular2?

    -",HQ -"

    I try to understand how elm works with a custom example.

    - -
    durationOption duration =
    -  option [value (toString duration) ] [ text (toString duration)]
    -
    -view : Model -> Html Msg
    -view model =
    -  Html.div []
    -    [ h2 [] [ text ""Month selector""]
    -    , select []
    -      (List.map durationOption [1..12])    
    -    ]
    -
    - -

    It's an easy example to work with a select. I would like, each time I change the month value it multiplies to value by 10 for example. According to the documentation there is not events like onChange or onSelect, do I have to create mine with on ?

    -",HQ -"

    I spent ~4 hours investigation and still can't find out how to run published application ( dotnet publish )

    - -

    Now I can download sources to my remote machine, then call dotnet build and dotnet run - then my app runs as intended. But I want to publish just DLL's (or *.so ?) to my VPS without source files.

    - -

    What official docs says? To define command in project.json

    - -
    ""commands"": {
    -    ""web"": ""Microsoft.AspNet.Server.Kestrel --server.urls http://unix:/var/aspnet/HelloMVC/kestrel.sock"",
    -}
    -
    - -

    But it is obsolette, isn't it?

    - -

    What about default samples?

    - -

    In default VS2015 sample solution they use publish-iis, Full .NET framework and IIS server, but there is nothing about deployment on linux.

    - -
    postpublish"": [ ""dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"" ]
    -
    - -
    - -

    Here is my dotnet info

    - -
    .NET Command Line Tools (1.0.0-preview1-002702)
    -
    -Product Information:
    - Version:     1.0.0-preview1-002702
    - Commit Sha:  6cde21225e
    -
    -Runtime Environment:
    - OS Name:     Windows
    - OS Version:  10.0.10586
    - OS Platform: Windows
    - RID:         win10-x64
    -
    - -

    .NET Core RC2

    -",HQ -"I am very new withh python. I have a .txt file and want to convert it to a .csv file with the format i was told but could not manage to accomplish. a hand can be useful for it. i am going to explain it with screenshots. - -[I have a txt file with the name of bip.txt. and the data inside of it is:][1] - - -[and i want to convert it to csv like this csv file:][2] - - - [1]: http://i.stack.imgur.com/NNHH8.png - [2]: http://i.stack.imgur.com/jDKqF.png - -so far, what i could do is only writing all the data from text file with this code: - - read_files = glob.glob(""C:/Users/Emrehana1/Desktop/bip.txt"") - - with open(""C:/Users/Emrehana1/Desktop/Test_Result_Report.csv"", ""w"") as outfile: - for f in read_files: - with open(f, ""r"") as infile: - outfile.write(infile.read()) - -so is there a solution to convert it to a csv file in the format i desire? I hope i could have explained it clearly.",LQ -"

    I get these messages:

    - -
    16/05/22 13:33:53 ERROR YarnScheduler: Lost executor 61 on <host>: Executor heartbeat timed out after 134828 ms
    -16/05/22 13:33:53 WARN TaskSetManager: Lost task 25.0 in stage 12.0 (TID 2214, <host>): ExecutorLostFailure (executor 61 lost)
    -
    - -

    Will a replacement executor be spawned?

    -",HQ -"

    I am building a React/Redux app using the redux-thunk middleware to create and handle Ajax requests. I have a particular thunk that is fired pretty often, and I would like to cancel any previously started Ajax requests before firing a new one. Is this possible?

    -",HQ -"im trying to echo my php while loop inside a html echo -basically echo inside echo. can someone help me? is that possible? - -here is my entire code: - - - - - All Crew - - - - - - - - - - - - - - - - - - - - - - - - - while($record = mysqli_fetch_assoc($query_run)) { - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo """"; - echo ""
    ""; - -
    First Name: Middle Name: Last Name: Age: Birth Date: Birth Place: Gender: Martial Status: Nationality: Email Address: Address 1: Address 2: Course: School Graduated: Remarks: Date Added: Status:
    "".$record['first_name']."""".$record['middle_name']."""".$record['last_name']."""".$record['age']."""".$record['birth_date']."""".$record['birth_place']."""".$record['gender']."""".$record['martial_status']."""".$record['nationality']."""".$record['email_address']."""".$record['address_1']."""".$record['address_2']."""".$record['course']."""".$record['school_graduated']."""".$record['remarks']."""".$record['date_added']."""".$record['crew_status'].""
    - - - '; - - - - - } - - } - else { - header('Location: /practice1/index.php'); - } - - ?> - -this is what my codes look like. i hope someone can help me",LQ -"I'm trying to make a login menu. I've created a user/pass system that is changeable. But I want to sorta get out of the loop, to ask them to input their username/password again? - -",LQ -"

    Android Studio 2.2 Preview 1 has a new external ndk build feature, but from app/build.gradle snippet shown in official blog post it's not clear at all how to set additional ndk build parameters which Application.mk file usually contains

    - -

    I'm able to set Android.mk ndk build file via externalNativeBuild, but how could I set the required Application.mk variables?

    - -

    My Application.mk contains:

    - -
    NDK_TOOLCHAIN_VERSION := clang
    -APP_PLATFORM := android-16
    -APP_ABI := armeabi
    -APP_STL := c++_static
    -APP_CPPFLAGS += -std=c++11
    -
    -",HQ -"

    I want to read a String from database and replace the placeholder by converting it to a GString. Can I do this with Eval? Any other ideas?

    - -
    String stringFromDatabase = 'Hello ${name}!'
    -String name = 'world'
    -
    -assert 'Hello world!'== TODO
    -
    -",HQ -"

    I currently have a collection in Mongodb say ""Collection1"". -I have the following array of objects that need to be into inserted into MongoDB. I am using Mongoose API. For now, I am iterating through the array and inserting each of them into mongo. -This is ok for now, but will be a problem when the data is too big. -I need a way of inserting the data in bulk into MongoDB without repetition. -I am not sure how to do this. I could not find a bulk option in Mongoose.

    - -

    My code below

    - -
    myData = [Obj1,Obj2,Obj3.......]
    -
    -myData.forEach(function(ele){
    -      //console.log(ele)
    -     saveToMongo(ele);
    -    });
    -function saveToMongo(obj){
    -    (new Collection1(obj)).save(function (err, response) {
    -          if (err) {
    -             // console.log('Error while inserting: ' + obj.name + "" "" +err);
    -          } else {
    -            // console.log('Data successfully inserted');
    -          }
    -      });
    -
    -      return Collection1(obj);
    -  }
    -
    -",HQ -"

    I'm having a hard time resolving my Bad Request responses from a REST api when I'm creating a client using C#. I tested the REST api using Fiddler 2 and executing it there, but when I'm creating the same thing programmatically I get 400 response. Here is my Fiddler composer test:

    - -

    URL:

    - -
    https://<third-party-rest-client>/api/v2/job
    -
    - -

    Here are my Headers

    - -
    User-Agent: Fiddler
    -Content-Type: application/json
    -Accept: application/json
    -icSessionId: PomCSBCVU4VgXCJ5    
    -Content-Length: 123
    -
    - -

    And here is the body I'm sending a POST request with

    - -
    {
    -""@type"": ""job"",
    -""taskId"":""0000G20G000000000002"",
    -""taskName"":""TestReplication"",
    -""taskType"":""DRS"",
    -""callbackURL"":""""
    -}
    -
    - -

    This POST comes back with a 200 response and a response body, which is perfect, but when I try to simulate the same thing in C# with this code:

    - -
    public JobResponse RunJob(JobRequest jobRequest)
    -    {
    -        try
    -        {
    -            client = new HttpClient();
    -            client.BaseAddress = new Uri(loggedUser.serverUrl + ""/"");
    -            client.DefaultRequestHeaders.Clear();
    -            client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue(""application/json""));
    -            client.DefaultRequestHeaders.TryAddWithoutValidation(""icSessionId"", icSessionId);
    -
    -            string message = JsonConvert.SerializeObject(jobRequest);
    -            message = message.Insert(1, ""\""@type\"": \""job\"","");
    -            Console.WriteLine(message);
    -            var response = client.PostAsJsonAsync(""api/v2/job"", message).Result;
    -            if (response.IsSuccessStatusCode)
    -            {
    -                return response.Content.ReadAsAsync<JobResponse>().Result;
    -            }
    -            else
    -            {
    -                var result = response.Content.ReadAsStringAsync().Result;
    -                Console.WriteLine(result);
    -            }
    -        }
    -        catch (Exception ex)
    -        {
    -            Console.WriteLine(ex);
    -        }
    -        return null;
    -    }
    -
    - -

    This comes back as a 400. Does anybody have any ideas what's wrong with my code?

    -",HQ -"when ever i call one method I need to generate random Numbers.like `test 1` next time `test 2`like that. If i use below code it is generating different numbers. - -`NSInteger randomNumber = arc4random() % 16;`. - - But I need one after another please help me.",LQ -"I was using Python (Popen and subprocess modules) to open applications and automate some stuff. But, I do not know how to close using one line command/script. It should not take more than one line. - -e.g. I am using - ->>>import subprocess ->>>subprocess.Popen(['c:\\windows\\system32\\notepad.exe','C:\\file1.txt']) - -I want to close this file. What is the process? - -",LQ -"Im interested in finding the visitors ip similar to how www.ipchicken.com does it, can someone nice out there tell me how to do this and send me a simple code? -Have a great day, love from Sweden!",LQ -"Ok so when you click a link in my web app it just adds to the URL to the end. like so ""http://localhost:8080/http//:www.youtube.com"". I'm using visual studio .netto make web rest APIs. The web app lunches on IIS express 10. the home page URL is ""http://localhost:8080/index.html"".",LQ -I want to change price tier from basic to standard in Azure and app having in two different location,LQ -"How to transform the following code from php to javascript? - - $str = ''; - for ($i = 0; $i < 256; $i++) { - $str .= chr($i); - } - -I know String.fromCharCode() in javascript is similar to chr() in php, but it seems fromCharCode(n) is diffenent from chr(n) when n greater than 127. -",LQ -"That string - - \[\color{Blue}{4} \times 2 \times 5 \times \color{Blue}{25} = \underbrace{\color{Blue}{4} \times \color{Blue}{25}}_{100} \times 5 \times 2 = \underbrace{100 \times 5}_{500} \times 2 = 500 \times 2 = 1\ 000\] - -I want to match remove all string like `\color{*}` - -I think I am not very far... -https://regex101.com/r/gM1uW3/1 - -",LQ -"I was working on my PHP project yesterday and it was working fine, but today morning after the restart xamp is not starting Apache for some reason. Can someone suggest how can I work around it: - - Error: Apache shutdown unexpectedly. - 1:17:04 PM [Apache] This may be due to a blocked port, missing dependencies, - 1:17:04 PM [Apache] improper privileges, a crash, or a shutdown by another method. - 1:17:04 PM [Apache] Press the Logs button to view error logs and check - 1:17:04 PM [Apache] the Windows Event Viewer for more clues - 1:17:04 PM [Apache] If you need more help, copy and post this - 1:17:04 PM [Apache] entire log window on the forums -",LQ -"I want to get all results which these queries give with one query; - - 1- $query = mysql_query(""select * from table where view='1'""); - 2- $query = mysql_query(""select * from table where view='2'""); - 3- $query = mysql_query(""select * from table where view='3'""); - 4- $query = mysql_query(""select * from table where view='4'""); - . - . - . - 999999- $query = mysql_query(""select * from table where view='999999'""); - -How can I do that easily?",LQ -"i have 3 table and 2 relation, one table is many to many and another table is one to many relation, then i create a query in mysql and is ok but i`m not converting to dql or querybuilder in symfony, please help me. -sample query is - - select * FROM `resturant` LEFT JOIN `food`.`food` ON `resturant`.`id` = `food`.`resturant_id` WHERE `food`.`name` LIKE ""%pizza%"" GROUP BY `resturant`.`name`",LQ -"When I try to run the code it asks for the first input, but next it show a core dumped. - -And I have some doubts, how can I correct that fgets warnings? - -And please if this code can be optimized please tell me, I`m trying to make -efficient code :D - -Compile with these: - -g++ -O2 -Wall Proy2.cpp -o Proy2 - -Code: - - # include < cstdio > - - # include < iostream > - -using namespace std; - -int main(){ - - typedef struct PC{ - - char Brand[20]; - char Model[20]; - char Serial[20]; - char Processor[10]; - - }; - - PC PC1[5],*machine; - - unsigned int i; - - for(i = 0; i < 4; i++){ - - cout <<""Insert PC brand: ""; - fgets(machine->Brand, 20, stdin); fflush(stdin); - - cout <<""Insert PC model: ""; - fgets(machine->Model, 20, stdin); fflush(stdin); - - cout <<""Insert PC serial: ""; - fgets(machine->Serial, 20, stdin); fflush(stdin); - - cout <<""Insert PC processor: ""; - fgets(machine->Processor, 10, stdin); fflush(stdin); - - printf(""PC Brand : %s"", PC1[i].Brand); - printf(""PC Model : %s"", PC1[i].Model); - printf(""PC Serial : %s"", PC1[i].Serial); - printf(""PC Processor: %s"", PC1[i].Processor); - - PC1[i] = *machine; - - } - - return 0; -}",LQ -"[I am about to install cocoapods and AFNetworking I have got this error I always try everything of my PODFILE ( workspace ' path / to / AFService.xcworkspace ' -source ' https://github.com/CocoaPods/Specs.git ' -platform: ios, ' 8.0 ' - -target ' AFService ' do - -pod ' AFNetworking ' ' ~ > 3.0' - -end)][1] - - - [1]: http://i.stack.imgur.com/s6P6f.png",LQ -"""PUT /v1/users/me/change_password.json?api_key=pDY0VK7YFv9btw6pasXZ¤t_password=Qwerty123&password=Qwerty1234&password_confirmation=Qwerty1234 HTTP/1.1"" 200 - - -I need regular expression which replace password ,current_password and password_confirmation values with text Filtered. - -Required Output - -""PUT /v1/users/me/change_password.json?api_key=pDY0VK7YFv9btw6pasXZ¤t_password=[FILTERED]&password=[FILTERED]&password_confirmation=[FILTERED] HTTP/1.1"" 200 - - -",LQ -"please guide how to INSERT a row in a table if this row doesn't already exist in same table, in PL/SQL (oracle)? -I want something like this. - - insert into note (note_id, user_book_id, course_user_id, book_edition_id, book_id, role_type_id, page_id, book_page_number, xcoord, ycoord, - width, height, share_across_courses, date_created, date_updated, created_by, updated_by, description, share_with_students,text) - - select note_s.nextval, i_user_book_id, i_course_user_id, book_edition_id, book_id, n.role_type_id, page_id, book_page_number, xcoord, ycoord, width, height, share_across_courses, sysdate, sysdate, i_user_id, i_user_id, description, share_with_students,text - - from note n inner join course_user cu - on n.course_user_id = cu.course_user_id - where cu.course_id = 23846 - and where not exists (select note_s.nextval, i_user_book_id, i_course_user_id, book_edition_id, book_id, n.role_type_id, page_id, book_page_number, xcoord, ycoord, - width, height, share_across_courses, sysdate, sysdate, i_user_id, i_user_id, description, share_with_students,text - - from note n inner join course_user cu - on n.course_user_id = cu.course_user_id - where cu.course_id = 23846); - -That is, in note table if record is already present for a particular course_user_id then do nothing. Otherwise if no entry for that particular course_user_id then insert into note for that course_user_id. - - -But my code is not working. -Pls Note - Here, note_id is PRIMARY KEY in note table and - Course_user_id is PRIMARY KEY in course_user table.",LQ -" the c# code: - - using (c) - { - c.Open(); - using (SqlCommand command = new SqlCommand(""DELETE FROM [User] WHERE Username like @username"", c)) - { - command.Parameters.AddWithValue(""@username"", txtuser.Text); - command.ExecuteNonQuery(); - } - c.Close(); - } - Response.Redirect(""Manger Control.aspx"", true); - } -the eror: - -> An exception of type 'System.InvalidOperationException' occurred in -> System.Data.dll but was not handled in user code -> -> Additional information: The connection was not closed. The -> connection's current state is open.",LQ -"Problem is simple, for fields based on foreign key dropdowns generated some dropdowns, eventually those can become very big and it is difficult to select needed value for end user.(currently we use crispy forms for auto formating.) - -I subdivided the values to categories but I do not like this solution because it forces end user to maintain unnecessary business logic. - - -What is the besttechnique to address this issue in Django ?",LQ -"this makes me crazy. -I can't see the contents of the message. -The application exploits in the getcontent() method. -Please, tell me what's wrong with my code ?? -sorry my english. TIA - -here is the code - - @Override - protected Void doInBackground(Void... params) { - - try { - //create properties field - Properties properties = new Properties(); - - properties.put(""mail.pop3.host"", ""255.255.255.255""); - properties.put(""mail.pop3.port"", ""110""); - properties.put(""mail.pop3.starttls.enable"", ""false""); - Session emailSession = Session.getDefaultInstance(properties); - - //create the POP3 store object and connect with the pop server - Store store = emailSession.getStore(""pop3""); - - store.connect(""255.255.255.255"", ""popo@midominio.com"", ""ok""); - - //create the folder object and open it - Folder emailFolder = store.getFolder(""INBOX""); - emailFolder.open(Folder.READ_WRITE); - - Message[] messages = emailFolder.getMessages(); - - for (int i = 0, n = messages.length; i < n; i++) { - - Message message = messages[i]; - - - //here is the killer line - Multipart mp = (Multipart) message.getContent(); - - } - - emailFolder.close(false); - store.close(); - } catch (NoSuchProviderException e) { - } catch (MessagingException e) { - } catch (Exception e) { - } - - return null; - }",LQ -"Question : Concatenate values from multiple coloumns of 3 tables and display in one coloumn.HERE date field is datetime. -I have 3 tables: -table1 - -date amt1 ------------------ -1-1-2016 111 -2-2-2016 222 -3-4-2016 111 - -table2: -date amt2 ------------------ -1-1-2016 101 -2-2-2016 333 -2-3-2016 444 -3-3-2016 456 -1-4-2016 101 -3-4-2016 111 - -table3: -date amt3 ------------------ - -2-2-2016 001 -2-3-2016 002 -3-3-2016 003 -1-4-2016 555 -2-4-2016 666 -3-4-2016 777 - -Output Desired: -date amt1 amt2 amt3 ----------------------------------- -1-1-2016 111 101 NULL -2-2-2016 222 333 001 -2-3-2016 NULL 444 002 -3-3-2016 NULL 456 003 -1-4-2016 NULL 101 555 -2-4-2016 NULL NULL 666 -3-4-2016 111 111 777 ------------------------------------- -TOTAL 333 1546 2004",LQ -"I have a collection which I am looping using Parallel foreach. I would like to check each single item in the collection before I pass it on to the loop. I was trying to do something like this, but it gives an error. -Any thoughts or suggestions? - - Parallel.ForEach(testCollection, (perform a check on each item in the collection) => DoSomething with the checked item) - -Thanks.",LQ -"So, We have to do complete a task for my AP Computer Science class and I figured out the base of the code but I am stuck on a part. Here is the link to complete the assignment if you would like to try it out. - -LINK: http://codingbat.com/prob/p254067 - -Here is my code so far: - - - - public int numVworthy(String wordsList[]) { - int count = 0; - String w = ""w""; - String v = ""v""; - - for(int i = 0; i < wordsList.length; i++) { - if(wordsList[i].contains == v) { - if(wordsList[i -1].contains != w && wordsList[i + 1].contains != w) { - count++; - } - } - } - return count; - } - -Any help on what to do next is appreciated",LQ -"what does this operator do +=.It seems difficult to find this += operator online - -Though it seems to suggest it has something to do with delegates.Can someone explain a bit more. - -Anyway this below is the c# statement that i came across. - - this.LineSelected += new LineSelectionHandler(AdvancedReceiptViewModel_LineSelected); - - - -",LQ -"Guys i have just been told to create a link that opens three tabs and i cant figure it out. the javascript i created opens two tabs only. here is the code. - -",LQ -"i have a html like this - - - - -
    - -
    - - - -i have the following code to get the parent id - - $ParentId=$(""#checkboxArticle0"").parentNode.parentNode.parentNode.parentNode.id; - -but this code is not working fine can someone suggest me how to grab the id of the parent div which is ""article0"" - - -",LQ -"var gamedataRef = firebase.database().ref('gamedata'); - gamedataRef.on('child_added', function(data) { - $scope.abc = data.val().textgame;`enter code here` -}); -i hv to find this.",LQ -"I make a link that download the PDF file When click on the Link. - -Here is my .cshtml: - - - -

    Hello Shuainan

    - download - - - - - - - - - - -and the download function is : - - - -public void PdfDownload(string path, string fileName) -{ - - var myPDF = System.IO.File.ReadAllBytes(@""C:\Program Files\wkhtmltopdf\bin\myPDF.pdf""); - - Response.ContentType = ""Application/pdf""; - - Response.Headers.Add(""Content-Disposition"", ""attachment; filename=testPDF.pdf""); - Response.Body.Write(myPDF, 0, 2048); -} - -And the I cant LOAD the PDF file when finish the download , -PLS help me with that. -Ty for advance.",LQ -"Guys help please, I am completely confused. My task is to get home page view only after login/signup action. For exapmple, if we go to example.com we should get login page. And if we are not registrated before then pushing Login button (after entering any username and password because at the moment I have not done yet Signup button) have to move us at signup page. - -Here the code is - http://pastebin.com/e5LCJmgH - -And this is my login.html: - - {% load staticfiles %} - - {% if form.errors %} -

    Your username and password didn't match. Please try again.

    - {% endif %} - - {% if next %} - {% if user.is_authenticated %} -

    Your account doesn't have access to this page. To proceed, - please login with an account that has access.

    - {% else %} -

    Please login to see this page.

    - {% endif %} - {% endif %} - -
    - {% csrf_token %} - - - - - - - - - -
    {{ form.username.label_tag }}{{ form.username }}
    {{ form.password.label_tag }}{{ form.password }}
    - - - -
    - -Currently the error is shown (after hiting Login button) - ValueError at /login/ -The view evr.views.my_login didn't return an HttpResponse object. It returned None instead. - -But the point is not only about this error. I am just do not uderstand in general if my direction is right or not? - -Thanks! ",LQ -"[enter image description here][1] - - - [1]: http://i.stack.imgur.com/Bfv6L.png - -1) Hi in the above image A column is having sum values help me with any formula so that in A13 i need an updated highest value. - -2) Guys please help me i am running automated sequences so first it will update A12 with 90 then 90 should updated in A13 next again may A9 updates with 101 value so that A9 value should update in A13 so it should lookup in the latest cell and updated the value and should reflects in A13 cell help me even if it is macro but also be noticed i am running automated sequences i can't run macro manually so help me with code that runs automatically based on an cell input - - -thanks in advance. - -",LQ -"I am newbie to Json and Parsing. -I need to scrap this data, - http://jsonviewer.stack.hu/#http://91.134.133.185:5000/viaroute?loc=25.299919,55.376774&loc=25.298738,55.369181 - -and Extract only **total_time""** to a file. - Can anybody please help me out? -Thanks -",LQ -"[I want acode that when I press the button(delete empty line and count the lines) the programe weel delete every empty line in the textbox and count the line of textbox after deleting the empty lines ][1] - - - [1]: http://i.stack.imgur.com/KveaE.png",LQ -"

    Is it possible to, using the same code, create an .NET Core application that can be run as a windows service and as a deamon on linux?

    - -

    Do you have an example/proof of concept?

    -",HQ -"

    I am trying to run the geo fix command but I am unable to do so because I am greeted by the following message:

    - -

    Android Console: Authentication required -Android Console: type 'auth ' to authenticate -Android Console: you can find your in -'/Users/me/.emulator_console_auth_token'

    - -

    I am on a mac [new user] and I do not know how to access the .emulator_console_auth_token file to delete it.

    - -

    I have tried ~/Users to get to the users folder but it is returning no results. Additionally, the folder with my name does not contain that file. Please help.

    -",HQ -"

    I'm creating a website for a reading service for the blind and visually impaired and I'm using JavaScript (with jQuery) to print some stuff to some of the pages after the page has loaded.

    - -

    Will the screen reader read the content that is printed to the page with jquery after the page has been loaded?

    - -

    From this page - ""Generally, [screen readers] access the DOM (Document Object Model), and they use browser APIs (Application Programming Interfaces) to get the information they need.""

    - -

    and we know that jQuery is a DOM manipulation library.

    - -

    So the question becomes.. do screen readers take a copy of the whole DOM and then parse it and read it? Or do they read the DOM, the same one that jQuery works on?

    - -

    Here's an example of one of the pages that I use JavaScript on. It uses a function that determines what program we have playing over the air and then prints the name of the program and a link to listen to it.

    - -
    <div id=""now-playing-div""></div>
    -
    -<script>
    -
    -// invoke the audio-reader javascript library
    -$( document ).ready( function() {
    -  var callback = nowPlaying; // catalog, schedule, podcasts, archive or nowPlaying
    -  var selector = '#now-playing-div';
    -  makeAudioReaderPage(callback, selector);
    -});
    -
    -</script>
    -
    - -

    So as you can see, if the screen reader doesn't read what the javascript/jquery prints to the #now-playing-div then it will read nothing. Then, we started getting a few emails of confused listeners wondering what happened to the Now Playing link.

    - -

    So this morning I added this:

    - -
    <div id='no-js'>Please enable JavaScript to receive this content.</div>
    -
    -<script>
    -$( document ).ready( function() {
    -  $('#no-js').toggle();
    -});
    -
    -</script>
    -
    - -

    But if the problem isn't that JavaScript needs to be enabled (a recent survey shows that 99% of screen-reader users have JavaScript enabled) then the problem is not solved and is made even worse because now the screen reader user would think that JavaScript is not enabled.

    - -

    What to do??

    -",HQ -"

    I am seeing errors when starting spark-shell, using spark-1.6.0-bin-hadoop2.6. This is new behavior that just arose.

    - -

    The upshot of the failures displayed in the log messages below, is that sqlContext is not available (but sc is).

    - -

    Is there some kind of Derby lock that could be released? Another instance of Derby may have already booted the database /root/spark-1.6.0-bin-hadoop2.6/bin/metastore_db.

    - -
    <console>:16: error: not found: value sqlContext
    -         import sqlContext.implicits._
    -                ^
    -<console>:16: error: not found: value sqlContext
    -         import sqlContext.sql
    -
    -16/05/25 11:00:00 ERROR Schema: Failed initialising database.
    -Failed to start database 'metastore_db' with class loader org.apache.spark.sql.hive.client.IsolatedClientLoader$$anon$1@c2191a8, see the next exception for details.
    -org.datanucleus.exceptions.NucleusDataStoreException: Failed to start database 'metastore_db' with class loader org.apache.spark.sql.hive.client.IsolatedClientLoader$$anon$1@c2191a8, see the next exception for details.
    -
    -
    -16/05/25 11:06:02 WARN Hive: Failed to access metastore. This class should not accessed in runtime.
    -org.apache.hadoop.hive.ql.metadata.HiveException: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
    -
    -
    -16/05/25 11:06:02 ERROR Schema: Failed initialising database.
    -Failed to start database 'metastore_db' with class loader org.apache.spark.sql.hive.client.IsolatedClientLoader$$anon$1@372e972d, see the next exception for details.
    -org.datanucleus.exceptions.NucleusDataStoreException: Failed to start database 'metastore_db' with class loader org.apache.spark.sql.hive.client.IsolatedClientLoader$$anon$1@372e972d, see the next exception for details.
    -
    -Caused by: java.sql.SQLException: Failed to start database 'metastore_db' with class loader org.apache.spark.sql.hive.client.IsolatedClientLoader$$anon$1@c2191a8, see the next exception for details.
    -        at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(Unknown Source)
    -        at org.apache.derby.impl.jdbc.SQLExceptionFactory40.wrapArgsForTransportAcrossDRDA(Unknown Source)
    -        ... 134 more
    -Caused by: java.sql.SQLException: Another instance of Derby may have already booted the database /root/spark-1.6.0-bin-hadoop2.6/bin/metastore_db.
    -        at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(Unknown Source)
    -        at org.apache.derby.impl.jdbc.SQLExceptionFactory40.wrapArgsForTransportAcrossDRDA(Unknown Source)
    -        at org.apache.derby.impl.jdbc.SQLExceptionFactory40.getSQLException(Unknown Source)
    -        at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source)
    -        ... 131 more
    -Caused by: ERROR XSDB6: Another instance of Derby may have already booted the database /root/spark-1.6.0-bin-hadoop2.6/bin/metastore_db.
    -
    -",HQ -"

    I have the following code:

    - -
       class Program
    -{
    -    static void Main()
    -    {
    -        var connection = new SqlConnection(""myConnectionString"");
    -        connection.Open();
    -        connection.StateChange += HandleSqlConnectionDrop;
    -        Console.WriteLine(""Hi"");
    -        Console.ReadLine();
    -    }
    -
    -    private static void HandleSqlConnectionDrop(object connection, StateChangeEventArgs args)
    -    {
    -        Console.WriteLine(""DB change detected"");
    -    }
    -}
    -
    - -

    I start the above code while the SQL server instance is running. I then proceed to execute

    - -
    SHUTDOWN WITH NOWAIT;
    -
    - -

    on the sql server instance that the program is connected to. I then observer the SQL server service stopping. However, I never see the ""DB change detected"" message in the output. Why is this?

    - -

    Aside: I will see the StateChange handler get called if I then attempt to perform an operation on the SQL connection, but never before hand. Is there a way this behavior can be changed?

    -",HQ -"

    I'd like to calculate element-wise average of numpy ndarray.

    - -
    In [56]: a = np.array([10, 20, 30])
    -
    -In [57]: b = np.array([30, 20, 20])
    -
    -In [58]: c = np.array([50, 20, 40])
    -
    - -

    What I want:

    - -
    [30, 20, 30]
    -
    - -

    Is there any in-built function for this operation, other than vectorized sum and dividing?

    -",HQ -"I know normally, * and & signs. But our teacher gives us an example and she said ""Problem occurs here"" - - - - int *a1; - int *a2 = new int[100]; - a1=a2 //What does this line mean??? - delete []a2; - - k=a1[0]//she said error occurs here. - - -I couldn't understand what is a1 = a2 ? -and why does error occur? - -",LQ -"

    Is there a way that I can set what the containers name will be from inside the Dockerfile? Basically I want to always have the same name so I won't have to run ""$docker ps"" after building and running an image to get its name.

    -",HQ -"I have VB Script. - -In the Function - - Private Function generateXMLSchema(ZRouteName) As String - - Dim generatedXmlSchema As String =""tEST 250504"" - -Here Name Element is Static. - -I want to `ZRouteName` instead of Static Data. - - """"ZRouteName"""" - -I am getting Error.: Sysntax Error - -Please help to rectify this. - -Thanks In Advance -Prat",LQ -"

    Is it possible to change the text in the 'return' key on the keyboard to be either 'next' or 'done'? I have a login form with username and password. I want the return key to say 'next' when on the username field and then 'done' when on the password field but haven't seen anyway of doing this. -This is for a shared project, android and iOS.

    - -

    - -

    -",HQ -"

    I am really confused between the ambient and global dependencies. I understood the concept of global dependencies, which means that installing the dependencies globally. But coming to ambient dependencies, I did not understand what it is and now typings recently declared that ambient is now global. I am completely lost.

    - -

    Can someone please help me clear this confusion.

    -",HQ -"

    I've recently decided to learn Elixir. Coming from a C++/Java/JavaScript background I've been having a lot of trouble grasping the basics. This might sound stupid but how would return statements work in Elixir? I've looked around and it seems as though it's just the last line of a function i.e.

    - -
    def Hello do 
    -  ""Hello World!""
    -end
    -
    - -

    Would this function return ""Hello World!"", is there another way to do a return? Also, how would you return early? in JavaScript we could write something like this to find if an array has a certain value in it:

    - -
    function foo(a){
    -   for(var i = 0;i<a.length;i++){
    -      if(a[i] == ""22""){
    -         return true;
    -      }
    -   }
    -   return false;
    -}
    -
    - -

    How would that work in Elixir?

    -",HQ -"I think problem lies with my text file but i can't understand ??please help to solve out this. -Thanks in advance.. - -/* This is mocTest.txt file - - - */ - -/* -##Question## -Which is not a JDK component? - -##Ans1## -Java SE libraries - -##Ans2## -Java SE libraries2 - -##Ans3## -Java SE libraries3 - -##Ans4## -Java SE libraries4 - -*/ - - -/* Here is my java class file -* -* -* -* - -*/ - - -public class QuesSheet { - - String strQues; - String[] ansQues = new String[4]; - - public void testRead() { - - try { - Scanner scReader = new Scanner(new File(""mocTest.txt"")); - - while (scReader.hasNext()) { - if (scReader.nextLine().equals(""##Question##"")) { - strQues = scReader.nextLine(); - // System.out.println(str); - } else if (scReader.nextLine().equals(""##Ans1##"")) { - ansQues[0] = scReader.nextLine(); - } else if (scReader.nextLine().equals(""##Ans2##"")) { - ansQues[1] = scReader.nextLine(); - } else if (scReader.nextLine().equals(""##Ans3##"")) { - ansQues[2] = scReader.nextLine(); - } else if (scReader.nextLine().equals(""##Ans4##"")) { - ansQues[3] = scReader.nextLine(); - } - - } - - } catch (FileNotFoundException ex) { - Logger.getLogger(QuesSheet.class.getName()).log(Level.SEVERE, null, ex); - - }} - public static void main(String[] args) { - QuesSheet qs = new QuesSheet(); - qs.testRead(); - System.out.println(qs.ansQues[0]); - System.out.println(qs.ansQues[1]);//Why this is not working?? result show s null in both. - System.out.println(qs.ansQues[2]);//and also same to this?? - System.out.println(qs.ansQues[3]); - }}",LQ -"

    I'm trying to create a leaflet map with points sized by a variable. Is it possible to create a legend with different sized circles representing the different variable values? I found another post showing how to convert squares to circles in the legend, but am not sure how to change the size of different circles in the legend.

    - -

    For example, here's a dummy script which creates 10 points associated with 2 classes of a variable (5 and 10). I'd like a legend with two circles the same size as that specified with addCircleMarkers with a radius of 5 and 10. If anyone can modify to create what I want I would be extremely grateful! Thanks!

    - -
    library(shiny)
    -library(leaflet)
    -
    -#create data
    -Points<-data.frame(x=runif(10,20,21), y=runif(10,0,1), var=rep(c(5,10),5))
    -map = leaflet() %>% addTiles()
    -
    -# Set up shiny app
    -shinyApp(ui=bootstrapPage(
    -tags$style(type = ""text/css"", ""html, body {width:100%;height:100%}"",
    -"".leaflet .legend i{
    -border-radius: 50%;
    -width: 10px;
    -height: 10px;
    -margin-top: 4px;
    -}
    -""
    -),
    -leafletOutput(""myMap"", width = ""100%"", height = ""100%"")),
    -
    -server= function(input, output){
    -
    -output$myMap = renderLeaflet({map %>% 
    -    addCircleMarkers(Points$x,Points$y,radius=Points$var) %>%
    -    addLegend(colors=rep(""blue"",2), labels=c(5,10))
    -  })
    -})
    -
    -",HQ -"

    Using knexjs only (no bookshelf) I would like to do something like the following query:

    - -
    select * from table1 where column1 < column2
    -
    - -

    However, when I do this:

    - -
    .table(""table1"").select().where(""column1"", ""<"", ""column2"")
    -
    - -

    The SQL that knexjs generates is:

    - -
    select * from table1 where column1 < 'column2'
    -
    - -

    Which doesn't give the desired result b/c it's not comparing the value from the column, it's comparing the value of the string, 'column2'.

    - -

    Anyone know how to do what I'm wanting? Thanks!

    -",HQ -"

    I have this dataframe:

    - -
    x <- data.frame(
    -    name = rep(letters[1:4], each = 2),
    -    condition = rep(c(""A"", ""B""), times = 4),
    -    value = c(2,10,4,20,8,40,20,100)
    -) 
    -#   name condition value
    -# 1    a         A     2
    -# 2    a         B    10
    -# 3    b         A     4
    -# 4    b         B    20
    -# 5    c         A     8
    -# 6    c         B    40
    -# 7    d         A    20
    -# 8    d         B   100
    -
    - -

    I want to group by name and divide the value of rows with condition == ""B"" with those with condition == ""A"", to get this:

    - -
    data.frame(
    -    name = letters[1:4],
    -    value = c(5,5,5,5)
    -)
    -#   name value
    -# 1    a     5
    -# 2    b     5
    -# 3    c     5
    -# 4    d     5
    -
    - -

    I know something like this can get me pretty close:

    - -
    x$value[which(x$condition == ""B"")]/x$value[which(x$condition == ""A"")]
    -
    - -

    but I was wondering if there was an easy way to do this with dplyr (My dataframe is a toy example and I got to it by chaining multiple group_by and summarise calls).

    -",HQ -"

    Coming from react, I am learning to understand Elm.

    - -

    In the Todomvc example code, there is the following code snippet:

    - -
    -- How we update our Model on a given Msg?
    -update : Msg -> Model -> ( Model, Cmd Msg )
    -update msg model =
    -  case msg of
    -    NoOp ->
    -      model ! []        <-- What is this?
    -
    - -

    What I (think I) understand, is that the update function takes in a msg of type Msg and a model of type Model, and returns a tuple of containing a Model and a Cmd Msg.

    - -

    But how should I read the return statement?

    - -
    model ! []
    -
    - -

    What does this statement mean? return a ""model [something] empty list""?
    -Did I miss something in the docs where this is explained? (Googling ""elm !"" did not get me far :)

    -",HQ -"

    My Client project using some basic HTML and CSS. But they like the Glyphicons on the Website menus. So i just tried to include Glyphicons with the Bootstrap CSS, it does, but the other css got affected after including the Bootstrap CSS.

    - -

    So the question may be silly, I just want to include Glyphicons in client website menu links without bootstrap css.

    - -

    Is that possible first? I know Glyphicons free will be available with Bootstrap Package.

    - -

    And other things is that my client do not want me to include Bootstrap CSS since it is affecting page structure.

    - -

    So is it possible to include Glyphicons without Bootstrap css or my own custom css?

    - -

    Any help would be appreciated!

    -",HQ -"
    if not request.user.is_authenticated:
    -    return None
    -
    -try:
    -    return ClientProfile.objects.get(user=request.user)
    -except ClientProfile.DoesNotExist:
    -    return None
    -
    - -

    This code should return None, if I'm not logged in and trying to call it. But as I see from stacktrace, it crashes with error ""'AnonymousUser' object is not iterable"" on this line:

    - -
    return ClientProfile.objects.get(user=request.user)
    -
    - -

    I'm browsing the following page in private mode, so I'm 100% not authenticated.

    - -

    How to fix this issue?

    -",HQ -"

    Overview

    - -

    I've got an ASP.NET Core RC2 .NET framework web project, and I'd like to add a project reference to my regular C# class library contained within the same solution.

    - -

    Steps to repro:

    - -

    Using Visual Studio 2015 Update 2

    - -

    File -> New Project -> ASP.NET Core Web Application (.NET Framework)

    - -

    Right click solution -> New Project -> Class Library

    - -

    I'm not making any of these:

    - -
      -
    • Class Library (.NET Core)
    • -
    • Class Library (Portable for iOS, Android, and Windows)
    • -
    • Class Library (Portable)
    • -
    - -

    Add the following to dependencies in project.json:

    - -
    ""ClassLibrary1"": {
    -  ""version"": ""*"",
    -  ""target"": ""project""
    -}
    -
    - -

    Issue

    - -

    Why can I not add ""target"":""project"" to my dependencies when specifying a project dependency?

    - -

    - -

    Expectation

    - -

    I expect this ASP.NET Core RC2 web application (.NET Framework) to be able to reference a regular class library as a project reference.

    - -

    This works

    - -
    ""ClassLibrary1"": ""*""
    -
    - -

    This does not work

    - -
    ""ClassLibrary1"": {
    -  ""version"": ""*"",
    -  ""target"": ""project""
    -}
    -
    - -

    My Question

    - -

    How do I add a project reference to my regular class library from an ASP.NET Core RC2 web project?

    - -

    Additional Information

    - -

    If I run dotnet restore I get a better error message on why this can not be resolved.

    - -
    dotnet : 
    -At line:1 char:1
    -+ dotnet restore
    -+ ~~~~~~~~~~~~~~
    -    + CategoryInfo          : NotSpecified: (:String) [], RemoteException
    -    + FullyQualifiedErrorId : NativeCommandError
    -
    -Errors in C:\users\joshs\documents\visual studio 2015\Projects\WebApplication4\src\WebApplication4\project.json
    -
    -    Unable to resolve 'ClassLibrary1' for '.NETFramework,Version=v4.6.1'.
    -
    - -

    I doubled checked the class library targets .NET Framework 4.6.1

    - -

    - -

    I've already taken a look at cannot add reference to .net core Class library asp.net core rc2, but that's for a .NET Core class library.

    - -

    I also looked at Reference a Full Framework Library Project from ASP.NET Core MVC Web Application (RC2)?, but that's because the user was trying to create a web project not targeting .NET Framework. My project.json contains:

    - -
      ""frameworks"": {
    -    ""net461"": { }
    -  },
    -
    - -

    If I right click my web project and 'Add reference' and then proceed to pick my class library, it puts the project dependency in a different part of the project.json, but it still gives me the same error message.

    - -
    ""frameworks"": {
    -  ""net461"": {
    -    ""dependencies"": {
    -      ""ClassLibrary1"": {
    -        ""target"": ""project""
    -      }
    -    }
    -  }
    -},
    -
    -",HQ -"

    I'm using webpack to keep my JavaScript code organized in modules but I'm running into a problem trying to load the Facebook JS SDK. I've tried using the externals option of webpack but since the library is loaded asynchronously I don't think it will provide the answer I am looking for.

    - -

    There was an issue for webpack that addressed this problem. However, I don't think it works any longer. https://github.com/webpack/webpack/issues/367

    - -

    What would be a good approach to this problem? Should I just load the SDK synchronously?

    -",HQ -"

    I am using the Google Maps Android API v2 where I display my Device location as a GoogleMap Marker on a Map. -I have a listener (LocationServices.FusedLocationApi.requestLocationUpdates...) attach to the Map in order to handle every GPS location change. -Every time I receive a new location I update the Marker (my position) as well as the Camera on the Map and pretty much it shows like I am moving as I drive.

    - -

    However... I need some help in order to have the MAP rotate and/or display on the same direction that I am moving to. I mean, while I drive I need to rotate the MAP where I can see on my map-left-side what I have on my real-life-left-side, and so the same with the right. Since the MAP direction is static, the Marker (Me) is moving on it but most of the time the direction does not match my car real-time direction.

    - -

    What should I do with the Map in order to accomplish this visual effect?

    -",HQ -"i am trying to add edittext with inputtype = textCapWords but it is not working for me . -ihave also tried textcapsentences but it is also not working. - - -",LQ -"

    In my MainActivityin my log, I can see the token using FirebaseInstanceId.getInstance().getToken() and it display the generated token. But it seems like in my MyFirebaseInstanceIDService where it is extends to FirebaseInstanceIdService, the onTokenRefresh() is not called, where in this function it was said that the token is initially generated here. I needed to call sendRegistrationToServer() that's why I'm trying to know why it doesn't go in the onTokenRefresh().

    - -

    Here is my code

    - -
    public class MyFirebaseInstanceIDService  extends FirebaseInstanceIdService {
    -
    -
    -@Override
    -public void onTokenRefresh() {
    -    // Get updated InstanceID token.
    -    String refreshedToken = FirebaseInstanceId.getInstance().getToken();
    -    Log.d(TAG, ""Refreshed token: "" + refreshedToken);
    -
    -        sendRegistrationToServer(refreshedToken);
    -    }
    -}
    -
    -",HQ -"Fastest way to grep list 1000 reocrds in another million of records in a file in linux . - -Let's say these are my sample records : - -1,,EE1,1000,WAT,EEE,20160222T02:00:15+0400,20181231T23:59:59+0400,,vEEE,,47126469f184fee9a80664d952d7fea7,50278774602,95223904,140495221530736,21001,,,,,,,,,,,,,,,C - -0,,EE1,1000,WAT,EEE,20160222T02:00:15+0400,20181231T23:59:59+0400,20160222T02:00:15+0400,,vEEE,47126469f184fee9a80664d952d7fea7,50278774602,,,21001,,,,,,,,,,,,,,,H - -1,,EE1,1000,WAT,EEE,20160222T02:00:15+0400,20181231T23:59:59+0400,20160521T11:07:25+0400,,vEEE,47126469f184fee9a80664d952d7fea7,50278774602,0095223904,140495221530736,21001,,,,,,,,,,,,,,,H - - -If i grep 50278774602 the values will come in three rows. I have developed one script using for loop on the same , i have a list to such numbers in a file and i am searching the value in the big file (millions of row) and i need only the last occurrence of such row containing my grep pattern , it works perfectly with for loop but my concern is its taking huge time . - -My script : - -for i in `cat /home/admin/pnd_tmp`; do grep $i /test/done/TEST_RT* | tail -1 > /home/admin/pnd_fin | awk -F "","" '{if ( $1 == ""4"" ) print $13 }' > /home/admin/pnd_tmp_fin; done - - - - -Can anyone write me a simple script to find in a quickest time . ",LQ -"

    My Jenkins instance interface broken. I suspect recent plugin update as the cause. However I cannot remember which plugins get updated recently. I need to know so I can rollback plugin version to the previous one.

    - -

    How to find this information?

    - -

    Some possible way:

    - -
      -
    • Jenkins log
    • -
    • Retrieving plugins info via Groovy console
    • -
    -",HQ -"

    What is the difference between loaders and plugins in webpack?

    - -

    The documentation for plugins just says:

    - -
    -

    Use plugins to add functionality typically related to bundles in webpack.

    -
    - -

    I know that babel uses a loader for jsx/es2015 transforms, but it looks like other common tasks (copy-webpack-plugin, for example) use plugins instead.

    -",HQ -"

    Code

    - -
    client.createPet(pet, (err, {name, breed, age}) => {
    -  if (err) {
    -    return t.error(err, 'no error')
    -  }
    -  t.equal(pet, {name, breed, age}, 'should be equivalent')
    -})
    -
    - -

    Error

    - -
    client.createPet(pet, (err, {name, breed, age}) => {
    -                        ^
    -
    -TypeError: Cannot match against 'undefined' or 'null'.
    -
    - -

    Why am I getting this error? My knowledge of ES6 led me to presume that this error should only arise if the array or object being destructured or its children is undefined or null.

    - -

    I wasn't aware that function parameters are used as a match. And if they are then why is it only an error if I try to destructure one of them? (that isn't undefined or null).

    -",HQ -"This is a sample string ""hi #myname, you got #amount"", -I want to find all words using java regx, -that starts with ""#"" and ends with space or ""."" -example ""#myname"",""#amount"" -I use Java.",LQ -"I am trying to create GCM Push Notification. -I followed the same steps described in below link: -http://javapapers.com/android/google-cloud-messaging-gcm-for-android-and-push-notifications/ - -After installing google-play-services using sdk manager, google-play-services folder is created but inside it there is no folder of lib. And I got the error of 'googlecloudmessaging cannot be resolved to a type'. How to resolve it? Plzz help me... - -Thanks",LQ -"

    I've been struggling to get my content vertical aligned but really don't fix it. I tried the adaptiveHeight parameter but it really didn't do what I wanted.

    - -

    Fiddle: http://jsfiddle.net/fmo50w7n/400

    - -

    This is what the code looks like -HTML:

    - -
    <section class=""slider"">
    -    <div style=""width:500px;height:200px"">slide1</div>
    -    <div style=""width:500px;height:300px;"">slide2</div>
    -    <div style=""width:500px;height:100px;"">slide3</div>
    -</section>
    -
    - -

    CSS:

    - -
    $c1: #3a8999;
    -$c2: #e84a69;
    -
    -.slider {
    -    width: auto;
    -    margin: 30px 50px 50px;
    -}
    -
    -.slick-slide {
    -    background: $c1;
    -    color: white;
    -    padding: 40px 0;
    -    font-size: 30px;
    -    font-family: ""Arial"", ""Helvetica"";
    -    text-align: center;
    -}
    -
    -.slick-prev:before, 
    -.slick-next:before {
    -    color: black;    
    -}
    -
    -.slick-dots {
    -    bottom: -30px;
    -}
    -
    -
    -.slick-slide:nth-child(odd) {
    -     background: $c2;
    -}
    -
    - -

    JS:

    - -
    $("".slider"").slick({
    -    autoplay: true,
    -    dots: true,
    -    variableWidth:true,
    -    responsive: [{ 
    -        breakpoint: 500,
    -        settings: {
    -            dots: false,
    -            arrows: false,
    -            infinite: false,
    -            slidesToShow: 2,
    -            slidesToScroll: 2
    -        } 
    -    }]
    -});
    -
    -",HQ -"

    After a check demanding the user to switch on internet services and I try to click on a button my app crashes with the error message

    - -
    java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
    -
    - -

    On this line it crashes, I have tried doing this but not resolved absolutely

    - -
    if(alert.getContext() != null){
    -            alert.show();
    -        }
    -
    - -

    This is the complete code

    - -
    else if (id == R.id.xyz) {
    -
    -            //startActivity(borrowIntent);
    -            AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);
    -            alert.setTitle(""xyz"");
    -            input.setFilters(new InputFilter[] {
    -                    // Maximum 2 characters.
    -                    new InputFilter.LengthFilter(6),
    -                    // Digits only.
    -                    DigitsKeyListener.getInstance(), 
    -                });
    -            // Digits only & use numeric soft-keyboard.
    -            input.setKeyListener(DigitsKeyListener.getInstance());
    -            input.setHint(""xyz"");
    -            alert.setView(input);
    -            alert.setPositiveButton(""Borrow"", new DialogInterface.OnClickListener() {
    -            public void onClick(DialogInterface dialog, int whichButton) {
    -                if(input.getText().length() == 0)
    -                {
    -                    input.setError(""xyz is required !"");
    -                }
    -                else
    -                {
    -
    -                   if(isNetworkAvailable())
    -                      {
    -                         xyz( input.getText().toString());
    -
    -                      }else{
    -
    -                            //setContentView(R.layout.main);
    -
    -                            AlertDialog.Builder builder = new AlertDialog.Builder(
    -                                    MainActivity.this);
    -                              builder.setCancelable(false);
    -                              builder.setTitle(""xyz"");
    -                              builder.setMessage(""Please enable wifi services"");
    -                              builder.setInverseBackgroundForced(true);
    -                              builder.setPositiveButton(""Ok"",
    -                                      new DialogInterface.OnClickListener() {
    -                                          @Override
    -                                          public void onClick(DialogInterface dialog,
    -                                                  int which) {
    -
    -                                              startActivityForResult(new Intent(android.provider.Settings.ACTION_SETTINGS), 0);
    -                                              dialog.dismiss();
    -
    -
    -                                          }
    -                                      });
    -                              AlertDialog alerts = builder.create();
    -                              alerts.show();
    -                           }//end of block
    -
    -                        }
    -              }
    -            });
    -            alert.setNegativeButton(""Cancel"", new DialogInterface.OnClickListener() {
    -              public void onClick(DialogInterface dialog, int whichButton) {
    -                // Canceled.
    -              }
    -            });
    -            if(alert.getContext() != null){
    -            alert.show(); //crashes at this line
    -            }
    -        }
    -
    - -

    Please what am I missing?

    -",HQ -"

    Is it possible to have a hashmap in Kotlin that takes different value types?

    - -

    I've tried this:

    - -
    val template = ""Hello {{world}} - {{count}} - {{tf}}""
    -
    -val context = HashMap<String, Object>()
    -context.put(""world"", ""John"")
    -context.put(""count"", 1)
    -context.put(""tf"", true)
    -
    - -

    ... but that gives me a type mismatch (apparantly ""John"", 1 and true are not Objects)

    - -

    In Java you can get around this by creating types new String(""John""), new Integer(1), Boolean.TRUE, I've tried the equivalent in Kotlin, but still getting the type mismatch error.

    - -
    context.put(""tf"", Boolean(true))
    -
    - -

    Any ideas?

    -",HQ -"THIS program is showing this errors asking interface in package concept...why is it so? can't i do package without using interfaces? i tried with that too..but still the same error is showing..what to do..pls help please click on this link fr the screenshot [errors regaring interface and enum][1] - - - [1]: http://i.stack.imgur.com/Jjq8W.jpg",LQ -"But to do that I need Google Maps v2 API key and to get that from the Google console I have to enter SHA1 of my app. -What the problem is I can't get the SHA1 of the app because I am developing it using AIDE. -I saw a solution on Google plus blog-it suggest to use zipSigner app to get it but I can't understand it as it isn't proofed. -So how can I get the SHA1 on AIDE? -Tanx for your help..... -",LQ -"

    My react component:

    - -
    import React, { PropTypes, Component } from 'react'
    -
    -
    -class Content extends Component {
    -    handleClick(e) {
    -        console.log(""Hellooww world"")
    -    }
    -    render() {
    -        return (
    -            <div className=""body-content"">
    -                <div className=""add-media"" onClick={this.handleClick.bind(this)}>
    -                    <i className=""plus icon""></i>
    -                    <input type=""file"" id=""file"" style={{display: ""none""}}/>
    -                </div>
    -            </div>
    -        )
    -    }
    -}
    -
    -export default Content
    -
    - -

    Here when I click a div with icon I want to open a <input> file which shows me option to select photos. After selecting the photos I want to get the value which photo is selected. How can I do this in react ??

    -",HQ -I am building an android app in which I consider mobile number as his unique id just like whatsapp. So can anyone please tell me how to get users number directly into my database when he install this android app.,LQ -"

    With Chrome disabling Flash by default very soon I need to start looking into flash/rtmp html5 replacement solutions.

    - -

    Currently with Flash + RTMP I have a live video stream with < 1-2 second delay.

    - -

    I've experimented with MPEG-DASH which seems to be the new industry standard for streaming but that came up short with 5 second delay being the best I could squeeze from it.

    - -

    For context, I am trying to allow user's to control physical objects they can see on the stream, so anything above a couple of seconds of delay leads to a frustrating experience.

    - -

    Are there any other techniques, or is there really no low latency html5 solutions for live streaming yet?

    -",HQ -"How to get the even number count from an integer input. - -> var intInput = 10; -Now i want the even count. In this case = 2+4+6+8+10 = 30 - -> var evenCount = 0; - if (i % 2==0) - { - evenCount = evenCount + i; - } - -How to achieve this?",LQ -"

    I am connecting to remote server using ""mRemoteNG"" and want to open remote server files in my local sublime text editor. During my research, I found this relevant blog https://wrgms.com/editing-files-remotely-via-ssh-on-sublimetext-3/ and followed the instructions but it is not working for me. -Does, anybody know how can I open remote files in my Sublime?

    -",HQ -"

    In XAML, <Grid x:Name=""MainGrid3"">, Here I want to pass MainGrid3 as a parameter of IValueConverter. How can I do this?

    -",HQ -"

    In React Native, when using the WebView component, it starts to load the external content at the moment when the component will be rendered.

    - -

    To increase performance in the application, I have tried to pre-fetch the external HTML so that it is ready when the component will be rendered. It seems like it is only an actual call to the render method will cause the loading to start and this is only controlled by what is rendered on the screen. I suppose React Native has no concept of shadow DOM that could be used to call the render method a head of time. -Trying to manipulate the lifecycle methods does also not work and is probably not a correct way of doing it either?

    - -

    I have also tried to do a fetch() of the external HTML-content, with the right user-agent in the header, and pass the responseText to the WebComponent. This sometimes works for some sites of sources, but for others i run into ACAP (Automated Content Access Protocol) issues, to this is not the preferred solution.

    - -

    Is there a way to pre-fetch external HTML content to a WebView component so that it displays faster?

    -",HQ -"Could someone explain my the differences between methods using lambda expresions and without using it ? -On the example : - - Function function; - - public void methodCounting() { - this.function = x -> x = x + 2; - } - - public void methodCounting(double x) { - x = x + 2; - return x; - } - -What do we gain ? ",LQ -"

    I have a lot of scripts that use ADB to debug Android applications via Wi-Fi with emulators. The problem appears when I charge my Android phone via USB from my computer: ADB sees it and sends commands to my phone instead of emulator. -Is there a way to disconnect ADB from phone that charges via USB? I know I can send commands to emulators only via -e switch, as well as send them to specific device via -s switch. However, it is not OK for me, because I have to rewrite a lot of scripts to add more arguments if I want to implement this device selection feature. I don't need workarounds, I just curious does Google force ADB to debug any phone connected via USB that has USB debugging enabled in settings, or it is possible to remove specific USB connected phone from devices list on ADB side? -When I run adb disconnect, USB device remains connected.

    -",HQ -"

    I am trying to position a div with buttons at the bottom of a parent div that has a padding.

    - -

    - -

    The expected result is having the button resting on top of the padding (green area).

    - -

    -
    -
    .btn-default,
    -.btn-default:hover,
    -.btn-default:focus {
    -  color: #333;
    -  text-shadow: none;
    -  /* Prevent inheritence from `body` */
    -  background-color: #fff;
    -  border: 1px solid #fff;
    -}
    -a,
    -a:focus,
    -a:hover {
    -  color: #fff;
    -}
    -body {
    -  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url(""../img/blank.jpg"");
    -  background-attachment: fixed;
    -  background-size: cover;
    -  background-repeat: no-repeat;
    -  background-position: center top;
    -}
    -html,
    -body {
    -  height: 100%;
    -}
    -body {
    -  color: #fff;
    -  text-align: left;
    -  text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
    -}
    -#mcontainer {
    -  position: relative;
    -  float: left;
    -  padding: 10%;
    -  width: 100%;
    -  height: 100%;
    -}
    -#header h1 {
    -  margin: 0px;
    -}
    -#header {
    -  height: auto;
    -}
    -#footer .link-item a {
    -  display: table-cell;
    -  padding: 10px 10px;
    -  border: 2px solid white;
    -}
    -#footer {
    -  position: absolute;
    -  top: auto;
    -  bottom: 0%;
    -  height: auto;
    -}
    -#footer .link-item:first-child {
    -  border-spacing: 0px 10px;
    -  margin: 10px 10px 10px 0px;
    -}
    -#footer .link-item {
    -  border-spacing: 0px 10px;
    -  margin: 10px 10px;
    -}
    -
    <!DOCTYPE html>
    -<html lang=""en"">
    -
    -<body>
    -  <div id=""mcontainer"">
    -
    -    <div id=""header"">
    -      <h1>Text</h1>
    -    </div>
    -
    -    <div id=""footer"">
    -      <span class=""link-item""><a href=""www.google.com"" target=""new"">Button</a> </span>
    -      <span class=""link-item""><a href=""www.google.com"" target=""new"">Button</a> </span>
    -      <span class=""link-item""><a href=""www.google.com"" target=""new"">Button</a> </span>
    -      <span class=""link-item""><a href=""www.google.com"" target=""new"">Button</a> </span>
    -      <span class=""link-item""><a href=""www.google.com"" target=""new"">Button</a> </span>
    -    </div>
    -
    -  </div>
    -</body>
    -
    -</html>
    -
    -
    -

    - -

    Any help would be appreciated.

    -",HQ -"

    I currently have a C# host that mirrors the screen and mouse on a website, the connection works totally fine, and when the mouse changes on the host, it changes the CSS almost immediatly. This way I can mirror the mouse too.

    - -

    So here is the problem:

    - -

    The mouse only updates when I move the mouse on the client website.

    - -

    Speed and performance is very important here, a quick fix would be to refresh the canvas, or move the page/mouse a little bit, but I'd rather have a more sophisticated approach.

    -",HQ -"

    I am getting this error since I installed Zizaco\Entrust on my Authentication Routes.

    - -
    BadMethodCallException: This cache store does not support tagging.
    -
    - -

    I had few known issues and I had to change some config options and that is the reason I am getting this error.

    - -

    What does this error relate to so that I can find the problem and fix it instead of finding the code I modified?

    - -

    Thanks

    -",HQ -"

    I don't quite understand what I am supposed to do when a migration fails using Flyway in a Spring Boot project.

    - -

    I activated Flyway by simply adding the Flyway dependency in my pom.xml. And everything works fine. My database scripts are migrated when I launch the Spring Boot app.

    - -

    But I had an error in one of my scripts and my last migration failed. Now when I try to migrate, there is a ""Migration checksum mismatch"". Normally, I would run mvn flyway:repair, but since I am using Spring Boot, I am not supposed to use the Flyway Maven plug-in. So what am I supposed to do?

    -",HQ -"I cant get nsuserdefaults to save a bool value, its really simple and people do it but it just simply will not save, tried everything i know, most recent attempt being this: - if (_EndHide == YES) { - NSDictionary *aProperties=[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES]forKey:@""EndHide""]; - - BOOL boolValue; - if([aProperties valueForKey:@""EndHide""]) boolValue =[[aProperties valueForKey:@""EndHide""] boolValue]; } - else if (_EndHide == NO) { - NSDictionary *aProperties=[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:NO]forKey:@""EndHide""]; - - BOOL boolValue; - if([aProperties valueForKey:@""EndHide""]) boolValue =[[aProperties valueForKey:@""EndHide""] boolValue]; - } -what happens is, i am making ios app a game for iphone, and when you dodged these well objects for period of time, you end the game and unlock a button on the start menu named endless, after the story, now i need this button to be constantly unlocked, i managed to unlock it through a scene its all working but it just wont stay unlocked, does any one have any advice to help me with this? here is the endless button configuration and bool configuration: - @property(nonatomic, getter=isActive) bool EndHide; - - @property(nonatomic) IBOutlet UIButton *endless; - -thats all the code for the buttons and bools, anyway to keep it unlocked? -i know its simple but it wont work maybe a deep bug i tried it on another more updated version of xcode but still to no avail, the issue is persistent and a real problem, i even tried switch saving that didnt work aswell..",LQ -"

    I am currently reading in a file using the package readr. The idea is to use read_delim to read in row for row to find the maximum columns in my unstructured data file. The code outputs that there are parsing problems. I know of these and will deal with column type after import. Is there a way to turn off the problems() as the usual options(warn) is not working

    - -
    i=1
    -max_col <- 0
    -options(warn = -1)
    -while(i != ""stop"")
    -{
    -  n_col<- ncol(read_delim(""file.txt"", n_max = 1, skip = i, delim=""\t""))
    -  if(n_col > max_col) {
    -    max_col <- n_col
    -    print(max_col)
    -  }
    -  i <- i+1
    -  if(n_col==0) i<-""stop""
    -}
    -options(warn = 0) 
    -
    - -

    The output to console that I am trying to suppress is the following:

    - -
    .See problems(...) for more details.
    -Warning: 11 parsing failures.
    -row      col   expected  actual
    -  1 1####4 valid date 1###8
    -
    -",HQ -"

    I have multiple flavors of my app. How should I set this up server side? My package names are:

    - -

    com.example.app (production) -com.example.app.staging (staging) -com.example.app.fake (fake)

    - -

    Should this be 3 separate projects in the firebase console?

    -",HQ -"

    My application uses Entity Framework 7 and the repository pattern.

    - -

    The GetById method on the repository supports eager loading of child entities:

    - -
        public virtual TEntity GetById(int id, params Expression<Func<TEntity, object>>[] paths)
    -    {
    -        var result = this.Set.Include(paths.First());
    -        foreach (var path in paths.Skip(1))
    -        {
    -            result = result.Include(path);
    -        }
    -        return result.FirstOrDefault(e => e.Id == id);
    -    }
    -
    - -

    Usage is as follows to retrieve a product (whose id is 2) along with the orders and the parts associated with that product:

    - -
    productRepository.GetById(2, p => p.Orders, p => p.Parts);
    -
    - -

    I want to enhance this method to support eager loading of entities nested deeper than one level. For example suppose an Order has its own collection of LineItem's.

    - -

    Prior to EF7 I believe the following would have been possible to also retrieve the LineItems associated with each order:

    - -
    productRepository.GetById(2, p => p.Orders.Select(o => o.LineItems), p => p.Parts);
    -
    - -

    However this doesn't appear to be supported in EF7. Instead there is a new ThenInclude method that retrieves additional levels of nested entities:

    - -

    https://github.com/aspnet/EntityFramework/wiki/Design-Meeting-Notes:-January-8,-2015

    - -

    I am unsure as to how to update my repository to support retrieval of multiple-levels of eager loaded entities using ThenInclude.

    -",HQ -"I don't seem to understand gsub or stringr. -Example: - - - - > a<- ""a book"" - - > gsub("" "", ""."", a) - - [1] ""a.book"" - -Okay. BUT: - - > a<-""a.book"" - - > gsub(""."", "" "", a) - - [1] "" "" - -I would of expected ->""a book"" - -I'm replacing the full stop with a space. - -Also: `srintr`: `str_replace(a, ""."", "" "")` returns: - -`"" .book""` - -and `str_replace_all(a, ""."", "" "")` returns - -`"" ""` - -I can use `stringi`: `stri_replace(a, "" "", fixed=""."")`: - -`""a book""` - -I'm just wondering why gsub (and str_replace) don't act as I'd have expected. They work when replacing a space with another character, but not the other way around. ",LQ -"

    I have a video tag () in my webpage, and a ""play/pause"" button that when the user clicks on it, the video starts/stops playing . How can I do so in react if I'm not allowed to use js in order to call ""getElementById"" and then to use play()/pause() build-in methods. -Any idea?

    -",HQ -"

    I have a Gradle-managed multi-project setup that relies on the new Java 8 -parameters compiler flag. I need 2 ways of including the compiler flag:

    - -
      -
    • To test classes only (the main project should compile without parameter names attached).
    • -
    • To all compiled sources.
    • -
    - -

    I've tried this:

    - -
      tasks.withType(JavaCompile) {
    -    options.compilerArgs << '-parameters'
    -    options.fork = true
    -    options.forkOptions.executable = 'javac'
    -  }
    -
    - -

    ...but it does not seem to be working properly.

    -",HQ -"

    kubectl get command has this flag -o to format the output.

    - -

    Is there a similar way to format the output of the kubectl describe command?

    - -

    For example:

    - -
    kubectl describe -o=""jsonpath={...}"" pods my-rc
    -
    - -

    would print a JSON format for the list of pods in my-rc replication controller. But -o is not accepted for the describe command.

    -",HQ -"

    Is terraform destroy needed before terraform apply? If not, what is a workflow you follow when updating existing infrastructure and how do you decide if destroy is needed?

    -",HQ -"

    The Folium documentation is incomplete at this time: https://folium.readthedocs.io/en/latest/

    - -

    According to the index of the incomplete docs Legends and Layers are, or will be supported. I've spent some time looking for examples on the web but have found nothing so far. If anyone has any idea how to create these things, or can point me to a document or tutorial I would be most grateful.

    -",HQ -"So, I am making this private modpack in Minecraft. It all is ready, but I need help with making a mod: It forces all players to be in gamemode 2 (adventure mode), or just make players unable to place/destroy blocks. I am not good in java, how can I make a mod like that? Any help is appreciated.",LQ -"

    I'd like to use Firebase for my web app that is for people with dementia in a care home. They do not have email or social network accounts so will need a simple username / password sign up / sign in.

    - -

    What is the easiest way to do this? From what I can see in the docs I'd have to use a custom auth flow but I do not have an existing auth server.

    - -

    If I do need ot do this what is the easiest way to provide the token? In Azure there is Functions and AWS has Lambda but I see nothing here is Firebase

    -",HQ -"

    I'm trying to rename multiple files in a directory using this Python script:

    - -
    import os
    -path = '/Users/myName/Desktop/directory'
    -files = os.listdir(path)
    -i = 1
    -
    -for file in files:
    -    os.rename(file, str(i)+'.jpg')
    -    i = i+1
    -
    - -

    When I run this script, I get the following error:

    - -
    Traceback (most recent call last):
    -  File ""rename.py"", line 7, in <module>
    -    os.rename(file, str(i)+'.jpg')
    -OSError: [Errno 2] No such file or directory
    -
    - -

    Why is that? How can I solve this issue?

    - -

    Thanks.

    -",HQ -"

    I have a library module that is used by two android applications and I want to add espresso tests to the Library module so that both apps can run common set of tests. Is there an example available where espresso tests are added in library module?

    -",HQ -"

    Using only the native JSON fuctions (no PHP, etc) in MySQL version 5.7.12 (section 13.16 in the manual) I am trying to write a query to generate a JSON document from relational tables that contains a sub object. Given the following example:

    - -
    CREATE TABLE `parent_table` (
    -   `id` int(11) NOT NULL,
    -   `desc` varchar(20) NOT NULL,
    -   PRIMARY KEY (`id`)
    -);
    -CREATE TABLE `child_table` (
    -   `id` int(11) NOT NULL,
    -   `parent_id` int(11) NOT NULL,
    -   `desc` varchar(20) NOT NULL,
    -   PRIMARY KEY (`id`,`parent_id`)
    -);
    -insert `parent_table` values (1,'parent row 1');
    -insert `child_table` values (1,1,'child row 1');
    -insert `child_table` values (2,1,'child row 2');
    -
    - -

    I am trying to generate a JSON document that looks like this:

    - -
    [{
    -    ""id"" : 1,
    -    ""desc"" : ""parent row 1"",
    -    ""child_objects"" : [{
    -            ""id"" : 1,
    -            ""parent_id"" : 1,
    -            ""desc"" : ""child row 1""
    -        }, {
    -            ""id"" : 2,
    -            ""parent_id"" : 1,
    -            ""desc"" : ""child row 2""
    -        }
    -    ]
    -}]
    -
    - -

    I am new to MySQL and suspect there is a SQL pattern for generating nested JSON objects from one to many relationships but I'm having trouble finding it.

    - -

    In Microsoft SQL (which I'm more familiar with) the following works:

    - -
    select 
    - [p].[id]
    -,[p].[desc]
    -,(select * from [dbo].[child_table] where [parent_id] = [p].[id] for json auto) AS [child_objects]
    -from [dbo].[parent_table] [p]
    -for json path
    -
    - -

    I attempted to write the equivalent in MySQL as follows:

    - -
    select json_object(
    - 'id',p.id 
    -,'desc',p.`desc`
    -,'child_objects',(select json_object('id',id,'parent_id',parent_id,'desc',`desc`) 
    -                  from child_table where parent_id = p.id)
    -)
    -from parent_table p;
    -
    -select json_object(
    -  'id',p.id 
    - ,'desc',p.`desc`
    - ,'child_objects',json_array((select json_object('id',id,'parent_id',parent_id,'desc',`desc`) 
    -                              from child_table where parent_id = p.id))
    - )
    - from parent_table p
    -
    - -

    Both attempts fail with the following error:

    - -
    Error Code: 1242. Subquery returns more than 1 row
    -
    -",HQ -"

    I would like to write unit tests for functions defined as private using defn-. How can I do this?

    -",HQ -"

    I'm creating a setup.py file for a project with some Cython extension modules.

    - -

    I've already gotten this to work:

    - -
    from setuptools import setup, Extension
    -from Cython.Build import cythonize
    -
    -setup(
    -    name=...,
    -    ...,
    -    ext_modules=cythonize([ ... ]),
    -)
    -
    - -

    This installs fine. However, this assumes Cython is installed. What if it's not installed? I understand this is what the setup_requires parameter is for:

    - -
    from setuptools import setup, Extension
    -from Cython.Build import cythonize
    -
    -setup(
    -    name=...,
    -    ...,
    -    setup_requires=['Cython'],
    -    ...,
    -    ext_modules=cythonize([ ... ]),
    -)
    -
    - -

    However, if Cython isn't already installed, this will of course fail:

    - -
    $ python setup.py install
    -Traceback (most recent call last):
    -  File ""setup.py"", line 2, in <module>
    -    from Cython.Build import cythonize
    -ImportError: No module named Cython.Build
    -
    - -

    What's the proper way to do this? I need to somehow import Cython only after the setup_requires step runs, but I need Cython in order to specify the ext_modules values.

    -",HQ -"I want to search for all cells in a column that are 0000000000. If a cell is equal to 000000000, I want to replace the cell with the value of the cell to the left (previous column, same row) help please! -",LQ -"

    I'm trying to access the user's email and name to setup and account when a user authenticates with Facebook. I've ready the documentations for react-native-fbsdk but I'm not seeing it anywhere.

    -",HQ -"

    I today deployed an instance of MediaWiki using the appcontainers/mediawiki docker image, and I now have a new problem for which I cannot find any clue. -After trying to attach to the mediawiki front container using:

    - -
    docker attach mediawiki_web_1
    -
    - -

    which answers Terminated on my configuration for a reason I ignore, trying also:

    - -
    docker exec -it mediawiki_web_1 bash
    -
    - -

    I do get something close to an error message:

    - -
    Error response from daemon: Container 81c07e4a69519c785b12ce4512a8ec76a10231ecfb30522e714b0ae53a0c9c68 is restarting, wait until the container is running
    -
    - -

    And there is my new problem, because this container never stop restarting. I can see that using docker ps -a which always returns a STATUS of Restarting (127) x seconds ago.

    - -

    The thing is, I am able to stop the container (I tested) but starting it again seems to bring it back into its restarting loop.

    - -

    Any idea what could be the issue here ? The whole thing was properly working until I tried to attach to it...

    - -

    I am sad :-(

    -",HQ -"

    There other question on SO with same problem, but the solutions didnt worked for me. -Here my spec.js

    - -
    describe('Protractor Demo App', function() {
    -  it('should have a title', function() {
    -    browser.driver.get('http://rent-front-static.s3-website-us-east-1.amazonaws.com/');
    -
    -    expect(browser.getTitle()).toEqual('How It Works');
    -  });
    -});
    -
    - -

    And here my conf.js

    - -
    exports.config = {
    -  framework: 'jasmine',
    -  rootElement: 'body',
    -  seleniumAddress: 'http://localhost:4444/wd/hub',
    -  specs: ['spec.js']
    -}
    -
    - -

    So when i try to run my test im getting the error

    - -
      Message:
    -    Failed: Error while waiting for Protractor to sync with the page: ""[ng:test] no injector found for element argument to getTestability\nhttp://errors.angularjs.org/1.5.0/ng/test""
    -  Stack:
    -    Error: Failed: Error while waiting for Protractor to sync with the page: ""[ng:test] no injector found for element argument to getTestability\nhttp://errors.angularjs.org/1.5.0/ng/test""
    -        at C:\Users\ShapeR\PycharmProjects\ratest\node_modules\jasminewd2\index.js:101:16
    -        at Promise.invokeCallback_ (C:\Users\ShapeR\PycharmProjects\ratest\node_modules\selenium-webdriver\lib\promise.js:1329:14)
    -        at TaskQueue.execute_ (C:\Users\ShapeR\PycharmProjects\ratest\node_modules\selenium-webdriver\lib\promise.js:2790:14)
    -        at TaskQueue.executeNext_ (C:\Users\ShapeR\PycharmProjects\ratest\node_modules\selenium-webdriver\lib\promise.js:2773:21)
    -
    -1 spec, 1 failure
    -
    - -

    I have a manual bootstrapping for body element and set the rootElement to body in config, but it didnt help. I even tried to remove manual boostraping and just add ng-app='rentapplicationApp' to body element, but it changes nothing, still same error.

    - -

    So what is wrong?

    -",HQ -"

    I'm trying to implement Google sign in for my website. The Sign-In button shows up correctly and signs-people in well initially. My problem occurs when I log out after having used the website and try to move to the Sign-In page (I'm using React, so it's all one page). I use the exact same function to render the Sign-In page but it gives me a ""cb=gapi.loaded_0:249 Uncaught TypeError: Cannot read property 'style' of null"". The error in gapi occurs here (at least I think):

    - -
     a.El;window.document.getElementById((c?""not_signed_in"":""connected""
    -
    - -

    This is how I initially add the Sign-In button to be rendered:

    - -
    elements.push(h('div.g-signin2',{'data-onsuccess': 'onSignIn'}))
    -        return h('div.page_content',elements)
    -
    - -

    which I later render with a ReactDOM.render call.

    - -

    Here's how I handle SignOut and SignIn:

    - -
    function signOut() {
    -    var auth2 = gapi.auth2.getAuthInstance();
    -    auth2.signOut().then(function () {
    -      // console.log('User signed out.');
    -      signedin = false;
    -      auth2 = null;
    -      renderPage()
    -    });
    -  }
    -
    -var google_idtoken;
    -var signedin = false;
    -
    -// set auth2 to null to indicate that google api hasn't been loaded yet
    -var auth2 = null;
    -
    -function onSignIn(googleUser) {
    -    auth2 = gapi.auth2.getAuthInstance({
    -        client_id: 'ClientID.apps.googleusercontent.com'
    -    });
    -    google_idtoken = googleUser.getAuthResponse().id_token;
    -    wrongemail = true;
    -  // if(auth2 != null && auth2.isSignedIn.get() == true){
    -
    -    if ((((auth2.currentUser.get()).getBasicProfile()).getEmail()).split(""@"").pop() == 'domain.com'){
    -        signedin = true
    -        wrongemail = false
    -    }
    -    updateSources()
    -    // renderPage()
    -}
    -
    -",HQ -" -// So the problem arises in the line ""String pls = printABCS(""A"", ""B"", ""c"", ""D"", ""E"", ""F,"", ""G"");"", and I have no idea why, I've tried for the past hour and nothing seems to be working. Is there any fix to why when I run the code, the result is ""Exception in thread ""main"" java.lang.Error: Unresolved compilation problem: - The method printABCS(Time3) in the type Time3 is not applicable for the arguments (String, String, String, String, String, String, String) - - at chapter11.Time3.main(Time3.java:16)"" -Thanks for taking your time to help. - - -public class Time3 { - String a, b, c, d, e, f, g; - public Time3(String a, String b, String c, String d, String e, String f, String g) { - this.a = a; - this.b = b; - this.c = c; - this.d = d; - this.e = e; - this.f = f; - this.g = g; - - } - public static void main(String[] args) { - String pls = printABCS(""A"", ""B"", ""c"", ""D"", ""E"", ""F,"", ""G""); - - } - public static String printABCS(Time3 p) { - return (p.a + p.b + p.c + p.d + p.e + p.f + p.g); - } - -} -",LQ -"I want to set vim with that. but I can't find the way. -thanks! -[enter image description here][1] - - - [1]: http://i.stack.imgur.com/U2t8R.png - - -",LQ -"

    I have enabled the virtualization in bios setup but when i try to launch the emulator i am getting the error ""your cpu doesn't support vt-x or svm""

    - -

    I have installed Intel haxm too.

    -",HQ -"

    I have a serializer like this:

    - -
    class PersonSerializer(serializers.ModelSerializer):
    -    gender = serializers.SerializerMethodField()
    -    bio = BioSerializer()
    -
    -    class Meta:
    -        model = Person
    -        fields = UserSerializer.Meta.fields + ('gender', 'bio',)
    -
    -    def get_gender(self, obj):
    -        return obj.get_gender_display()
    -
    - -

    I used this to display ""Male"" and ""Female""(insted of ""M"" of ""F"") while performing GET request.

    - -

    This works fine.

    - -

    But now I am writing an patch method for the model and SerializerMethodField() has read_only=True. So I am not getting value passed for gender field in serializer.validated_data(). How to overcome this issue?

    -",HQ -"

    I need to debug a command gulp start with VScode (I got some mapping error with babel during transpilation that I don't understand yet...). The VSCode debug default configuration aims to launch node app.js. How to modify it to trigger the gulp command?

    - -

    Here is the default configuration. If anyone has hint of how can I do that, I'll be in your debt :)

    - -
    {
    -    ""version"": ""0.2.0"",
    -    ""configurations"": [
    -        {
    -            ""name"": ""Lancer"",
    -            ""type"": ""node"",
    -            ""request"": ""launch"",
    -            ""program"": ""${workspaceRoot}/app.js"",
    -            ""stopOnEntry"": false,
    -            ""args"": [],
    -            ""cwd"": ""${workspaceRoot}"",
    -            ""preLaunchTask"": null,
    -            ""runtimeExecutable"": null,
    -            ""runtimeArgs"": [
    -                ""--nolazy""
    -            ],
    -            ""env"": {
    -                ""NODE_ENV"": ""development""
    -            },
    -            ""externalConsole"": false,
    -            ""sourceMaps"": false,
    -            ""outDir"": null
    -        },
    -        {
    -            ""name"": ""Attacher"",
    -            ""type"": ""node"",
    -            ""request"": ""attach"",
    -            ""port"": 5858,
    -            ""address"": ""localhost"",
    -            ""restart"": false,
    -            ""sourceMaps"": false,
    -            ""outDir"": null,
    -            ""localRoot"": ""${workspaceRoot}"",
    -            ""remoteRoot"": null
    -        }
    -    ]
    -}
    -
    -",HQ -"

    I am Very beginner to firebase and trying to get value from my database.

    - -

    but it showing me same error every time.

    - -
        W/SyncTree: Listen at /child failed: FirebaseError: Permission denied
    -
    - -

    My firebase rules

    - -
        {
    -  ""Condition"" : ""sunny"",
    -  ""child"" : 5
    -}
    -
    - -

    my Androidmanifest.xml

    - -
        <?xml version=""1.0"" encoding=""utf-8""?>
    -<manifest xmlns:android=""http://schemas.android.com/apk/res/android""
    -    package=""com.mohit.firebase"" >
    -
    -    <uses-permission android:name=""android.permission.INTERNET"" />
    -
    -    <application
    -        android:allowBackup=""true""
    -        android:icon=""@mipmap/ic_launcher""
    -        android:label=""@string/app_name""
    -        android:supportsRtl=""true""
    -        android:theme=""@style/AppTheme""
    -        >
    -        <activity android:name="".MainActivity"" >
    -            <intent-filter>
    -                <action android:name=""android.intent.action.MAIN"" />
    -
    -                <category android:name=""android.intent.category.LAUNCHER"" />
    -            </intent-filter>
    -        </activity>
    -    </application>
    -
    -</manifest>
    -
    - -

    My mainactivity.java -package com.mohit.firebase;

    - -
    import android.support.v7.app.AppCompatActivity;
    -import android.os.Bundle;
    -import android.util.Log;
    -import android.view.View;
    -import android.widget.Button;
    -import android.widget.TextView;
    -
    -import com.firebase.client.DataSnapshot;
    -import com.firebase.client.Firebase;
    -import com.firebase.client.FirebaseError;
    -import com.firebase.client.ValueEventListener;
    -
    -public class MainActivity extends AppCompatActivity {
    -
    -    TextView tv;
    -    Button bt1;
    -    Button bt2;
    -    Firebase mRootRef;
    -
    -    @Override
    -    protected void onCreate(Bundle savedInstanceState) {
    -        super.onCreate(savedInstanceState);
    -        setContentView(R.layout.activity_main);
    -
    -        tv = (TextView) findViewById(R.id.button);
    -        bt1 = (Button) findViewById(R.id.button);
    -        bt2 = (Button) findViewById(R.id.button2);
    -        Firebase.setAndroidContext(this);
    -        mRootRef = new Firebase(""https://superb-flag-126719.firebaseio.com/"");
    -        Log.d(""fb"",""Firebase Object: ""  + String.valueOf(mRootRef));
    -
    -    }
    -
    -    @Override
    -    protected void onStart() {
    -        super.onStart();
    -
    -        Firebase mchild = mRootRef.child(""child"");
    -        mchild.addValueEventListener(new ValueEventListener() {
    -            @Override
    -            public void onDataChange(DataSnapshot dataSnapshot) {
    -                String condition = (String) dataSnapshot.getValue();
    -                Log.d(""fb"",""String get: "" + condition);
    -                tv.setText(condition);
    -            }
    -
    -            @Override
    -            public void onCancelled(FirebaseError firebaseError) {
    -
    -            }
    -        });
    -    }
    -}
    -
    - -

    my BuildGraddle

    - -
        apply plugin: 'com.android.application'
    -
    -android {
    -    compileSdkVersion 23
    -    buildToolsVersion ""23.0.2""
    -
    -    defaultConfig {
    -        applicationId ""com.mohit.firebase""
    -        minSdkVersion 16
    -        targetSdkVersion 23
    -        versionCode 1
    -        versionName ""1.0""
    -    }
    -    buildTypes {
    -        release {
    -            minifyEnabled false
    -            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    -        }
    -    }
    -    packagingOptions {
    -        exclude 'META-INF/LICENSE'
    -        exclude 'META-INF/LICENSE-FIREBASE.txt'
    -        exclude 'META-INF/NOTICE'
    -    }
    -}
    -
    -
    -dependencies {
    -    compile fileTree(dir: 'libs', include: ['*.jar'])
    -    testCompile 'junit:junit:4.12'
    -    compile 'com.android.support:appcompat-v7:23.1.1'
    -    compile 'com.firebase:firebase-client-android:2.5.2+'
    -}
    -
    - -

    i checked my firebase url. It's Perfectly Correct.

    -",HQ -"

    I have an HTML form with a datalist and where the value is set with PHP, like

    - -
    <input list=""values"" value=""<?php echo $val; ?>"">
    - <datalist id=""values"">
    -  <option value=""orange"">
    -  <option value=""banana"">
    - </datalist>
    -
    - -

    I want the user to see the options in the datalist, as well as the current value from the PHP. However, the ""autocomplete"" action causes values from the list that don't match (or start with) the current value to be hidden from the list, say if $val='apple'. Is there any way to avoid that, or is this behaviour fixed by the browser?

    -",HQ -"

    I need to download dSYM file from iTunes Connect.

    - -

    I can see ""Include symbols"" is Yes, but there is no link to download the dSYM file.

    - -

    Any idea why the option is not there?

    -",HQ -"

    I have a JObject like this:

    - -
    {
    -  ""@STARTDATE"": ""'2016-02-17 00:00:00.000'"",
    -  ""@ENDDATE"": ""'2016-02-18 23:59:00.000'""
    -}
    -
    - -

    I want to get @STARTDATE and @ENDDATE value from JObject.

    - -
    - -

    This is a sample code that I've tried to do the task:

    - -
    JObject json = JObject.Parse(""{\""@STARTDATE\"": \""'2016-02-17 00:00:00.000'\"",\""@ENDDATE\"": \""'2016-02-18 23:59:00.000'\""}"");
    -var key = ""@STARTDATE"";
    -
    -var value = GetJArrayValue(json, key);
    -
    -private string GetJArrayValue(JObject yourJArray, JToken key)
    -{
    -    string value = """";
    -    foreach (JToken item in yourJArray.Children())
    -    {
    -        var itemProperties = item.Children<JProperty>();
    -        //If the property name is equal to key, we get the value
    -        var myElement = itemProperties.FirstOrDefault(x => x.Name == key.ToString());
    -        value = myElement.Value.ToString(); //It run into an exception here because myElement is null
    -        break;
    -    }
    -    return value;
    -}
    -
    - -

    Note: The code above cannot get the value by key from JObject.

    - -
    - -

    Could you help me to find a way to get the value by key from JObject?

    -",HQ -"

    OpenCV in Python provides the following code:

    - -
    regions, hierarchy = cv2.findContours(binary_image, cv2.RETR_LIST, cv2.CHAIN_APPROX_SIMPLE)
    -
    -
    -for region in regions:
    -    x, y, w, h = cv2.boundingRect(region)
    -
    -    cv2.rectangle(image, (x, y), (x + w, y + h), (0, 255, 0), 1)
    -
    - -

    This gives some contours within contour. How to remove them in Python?

    -",HQ -"

    How to select current word (the one where the caret is) in Visual Studio Code (the text editor, not Visual Studio)? In Visual Studio old bindings it was the ctrl+w shortcut but it was changed to close tab action.

    -",HQ -"

    Since the presentation of Firebase Crash Reporting, one of the most prominent questions has been wether moving from Crashlytics or not.

    - -

    What are the pros and cons when comparing the two crash reporting services?

    -",HQ -"why progress bar appear before that i click on button to create PDF? -I hope that you can help me! - -I want that progress bar appear during creation PDF file... - -THANKS IN ADVANCED EVERYBODY! - - @Override - public View onCreateView(LayoutInflater inflater, ViewGroup container, - Bundle savedInstanceState) { - // Inflate the layout for this fragment - - View rootView = inflater.inflate(R.layout.fragment_two, container, false); - pdfProgress = (ProgressBar)rootView.findViewById(R.id.progressbar); - - - - Button mButton = (Button) rootView.findViewById(R.id.newbutton); - mButton.setOnClickListener(new View.OnClickListener() { - public void onClick(View v) { - - //sendemail(); - pdfProgress.setVisibility(View.VISIBLE); - createPDF(); - pdfProgress.setVisibility(View.GONE); - viewPDF(); - - - - } - }); - - TextView titolo3 = (TextView)rootView.findViewById(R.id.result); - TextView titolo2 = (TextView)rootView.findViewById(R.id.result2); - TextView titolo4 = (TextView)rootView.findViewById(R.id.resultpizze);",LQ -"

    Jasmin comes with many functions for checking the expected values for validating specifications and tests.

    - -

    Is there besides

    - -
    getJasmineRequireObj().toContain = function() { ... };
    -
    - -

    somthing like a

    - -
    getJasmineRequireObj().toNotContain = function() { ... };
    -
    - -

    ?

    - -
    -

    If not, how to add an extension or plugin to deliver this feature also - to our community of developers?

    -
    -",HQ -"

    I created a global style sheet using sass and put it in the public/style/styles.scss. I only specify a background color.

    - -

    In the index, I added a link to it: <link rel=""stylesheet"" href=""style/styles.css"">

    - -

    The background color does not work on the body tag. Upon inspecting the body tag I can see that the background-color was applied but overruled by scaffolding.less:31

    - -

    What I am doing wrong?

    - -

    Thanks in advance

    -",HQ -" from ipaddress import * - from socket import * - x = str(IPv4Address('125.67.8.0')) - s = socket() - s.bind((x,456)) -Traceback (most recent call last): - File """", line 1, in -OSError: [Errno 99] Cannot assign requested address - -even after calling the ipaddress constructor to construct a new ip address, why can't i not bind, i ran the program on superuser mode, what is wrong with my method? ",LQ -"

    I am trying to make REST call from a react component and render the returned JSON data into the DOM

    - -

    Here is my component

    - -
    import React from 'react';
    -
    -export default class ItemLister extends React.Component {
    -    constructor() {
    -        super();
    -        this.state = { items: [] };
    -    }
    -
    -    componentDidMount() {
    -        fetch(`http://api/call`) 
    -            .then(result=> {
    -                this.setState({items:result.json()});
    -            });
    -    }
    -
    -    render() {        
    -        return(
    -           WHAT SHOULD THIS RETURN?
    -        );
    -    }
    -
    - -

    In order to bind the returned json in a DOM?

    -",HQ -"

    Where is the delete/remove button???

    - -

    Attached is a screenshot of what I want to do.

    - -

    -",HQ -"I have a question about method witch iterates object's property (JS). -I have two objects. First Object is main. Second Object is clone. And how can I replace value of each property of clone to main Object. There are a lot of nesting. I don't have time to write for, for in , forEach cycles, because there are a lot of nesting. -Such method exists? ",LQ -"

    I have a script which creates and signs a keystore file for an android app.

    - -

    It is working perfectly fine but i would rather have it run without human intervention

    - -

    what i have to create the keystore:

    - -
    keytool -genkey -v -keystore my-release-key.keystore
    --alias alias_name -keyalg RSA -keysize 2048 -validity 10000
    -
    - -

    This then prompts me to enter the following values manually using the terminal: keystore password, full name , organisation unit, organisation name, city , state, county code, key password.

    - -

    what i have to sign the app:

    - -
    jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1
    --keystore my-release-key.keystore my_application.apk alias_name
    -
    - -

    This then prompts me to enter passphrase for keystore.

    - -

    Is there anyway i can pass these values in as parameters so the full script runs without anyother interaction needed?

    - -

    PS: i'm using ubuntu 14.04 LTS.

    - -

    Thanks For your time :)

    -",HQ -"

    Is there a way to get the current tag ( or null if there is none ) for a job in a Jenkinsfile? The background is that I only want to build some artifacts ( android APKs ) when this commit has a tag. -I tried:

    - -
    env.TAG_NAME
    -
    - -

    and

    - -
    binding.variables.get(""TAG_NAME"")
    -
    - -

    both are always null - even though this ( https://issues.jenkins-ci.org/browse/JENKINS-34520 ) indicates otherwise

    -",HQ -"

    I'm tring to create a jobService. Here is what onStartJob() looks like.

    - -
    @Override
    -public boolean onStartJob(JobParameters params) {
    -    Log.d(TAG, ""onStartJob"");
    -    Log.d(TAG, ""Params= "" + params.getJobId());
    -    param = params;
    -    jobFinished(params, false);
    -    //startAsync();
    -    return true;
    -}
    -
    -
    -@Override
    -public boolean onStopJob(JobParameters params) {
    -     Log.d(TAG, ""onStopJob"");
    -    return false;
    -}
    -
    - -

    Here is the code that is supposed to start the job.

    - -
    public void startJobScheduler(){
    -    Log.d(TAG, ""inside startJobScheduler"");
    -    Activity activity = this.cordova.getActivity();
    -    Context context = activity.getApplicationContext();
    -
    -
    -     mJobScheduler = (JobScheduler)context.getSystemService(Context.JOB_SCHEDULER_SERVICE );
    -     JobInfo.Builder job = new JobInfo.Builder(111, new ComponentName(context, JobSchedulerService.class));
    -
    -     job.setPeriodic(60000);
    -     Log.d(TAG, ""before mJobScheduler.schedule(job.build())"");
    -     if( mJobScheduler.schedule( job.build() ) <= 0 ) {
    -         Log.d(TAG, ""job schedule failed"");
    -     }
    -    Log.d(TAG, ""333"");
    -}
    -
    - -

    I can not get it to stop. It just keeps firing every 1-5 mins. I put jobFinished(params, false) in onStartJob() and commented out the task to try to kill it off right after it starts, but it just keeps firing. It seems jobFinished() fires something, as onDestroy() is called and my service gets destroyed, but then another job comes in with the same ID and starts it all back up.

    - -

    I have BIND_JOB_SERVICE in the manifest like every example shows.

    - -

    Any ideas on why jobFinished(params, false) doesn't seem to kill the setPeriodic(60000)?

    -",HQ -"In a paging system a virtual address consists of 24 bits in which 16 bits are displacement and 8 bits for page number. -Calculate (a) Page size (b) Maximum number of pages (c) Maximum virtual address space",LQ -"[What procedure should be followed to identify the **annular region**(pinkish orange color) having a white background. Also how to **amplify the intensity** values in the annular region to further work on them. ***Click on the link below***][1] - - - http://i.stack.imgur.com/2wJpd.jpg",LQ -"

    I would like to achieve something that renders like this depending on the screen size:

    - -
    +---------------------------+
    -|  A  |       B       |  C  |
    -+---------------------------+
    -
    -+---------------+
    -|   A   |   C   |
    -|       B       |
    -+---------------+
    -
    - -

    if all size are fixed, i can manage using the flex order property -but the size of my C container is not fixed and so I can't use a static media query.

    - -

    Is there a way to achieve this?

    - -

    Edit: -I managed a good enough approximation: In a media query selecting all screens that might need wrapping, I change the order of the B container to something big, and at the same time, I set its min-width to 100% which forces the wrap.

    -",HQ -"

    Considering the document { ""userName"": ""user1"" } stored in the User collection, and the following User class:

    - -
    public class User
    -{
    -        public string Id { get; set; }
    -        public string UserName { get; set; }
    -}
    -
    - -

    With the following JSON.net settings:

    - -
    JsonConvert.DefaultSettings = () =>
    -{
    -    return new JsonSerializerSettings
    -    {
    -       ContractResolver = new CamelCasePropertyNamesContractResolver(),
    -    };
    -};
    -
    - -

    When I query with Linq as such:

    - -
    var t = _client.CreateDocumentQuery<User>(_collection.SelfLink)
    -            .Where(u => u.UserName == ""user1"").AsDocumentQuery().ExecuteNextAsync();
    -
    -t.Wait();
    -
    -var users = t.Result;
    -var user = users.FirstOrDefault();
    -
    - -

    user is null. Changing the Document to have a pascal casing or the POCO to use a camel casing solves the issue. Of course I do not want any of those as I want my JSON objects and C# objects to be ""standarized"".

    - -

    How can I tell the DocumentDB SDK to map my object's property names using camel casing, similar as JSON.net?

    -",HQ -"

    I am building an application in Node using Hapi.JS.

    - -

    I have a class for an authentication plugin that is giving me all sorts of problems. When I attempt to reference this from within a method on the class, I get an error saying that this is undefined. Why is this happening?

    - -

    An excerpt:

    - -
    class OAuth {
    -
    -  constructor () {}
    -
    -  register (server, err, next) {
    -    this.server = server;
    -    this.registerRoutes();
    -  }
    -
    -  registerRoutes () {
    -    console.log(this.server.route);
    -    this.server.route([
    -      {
    -          method: 'POST',
    -          path: '/oauth/token',
    -          config: {
    -              auth: false,
    -              handler: function(request,reply){
    -                console.log(""test"");
    -                reply(""test"");
    -              }
    -            }
    -      },
    -      {
    -        method: 'GET',
    -        path: '/test',
    -        config: {
    -          auth: false,
    -          handler: function(request,reply){
    -            console.log(""test"");
    -            reply(""test"");
    -          }
    -        }
    -      }
    -    ]);
    -  }
    -}
    -module.exports = new OAuth();
    -
    - -

    Elsewhere this is being called like:

    - -
    const oauth = require('./oauth');
    -oauth.register(server);
    -
    - -

    Every time the register function is called, I receive this error:

    - -
    TypeError: Cannot set property 'server' of undefined
    -
    - -

    Why on earth is my instance not working?

    -",HQ -"

    Im new to Angular2 and I was wondering if there is any way to show an activity indicator for every HTTP request and hide views until completed?

    -",HQ -"MySQL ERROR: Access denied for user 'www-data'@'localhost' (using password: NO) -And this is my set.php - - - -I search All time answer but with not success ;/ (sorry for my english)",LQ -"

    overriding method signatures in extensions seems to produce unpredictable results in certain cases. The following example demonstrates two different results with a similar pattern.

    - -
    class A: UIViewController {
    -    func doThing() {
    -        print(""dothing super class"")
    -    }
    -
    -    override func viewDidLoad() {
    -        print(""viewdidload superclass"")
    -        super.viewDidLoad()
    -    }
    -}
    -
    -class B: A { }
    -
    -extension B {
    -    override func doThing() {
    -        print(""dothing sub class"")
    -        super.doThing()
    -    }
    -
    -    override func viewDidLoad() {
    -        print(""viewdidload subclass"")
    -        super.viewDidLoad()
    -    }
    -}
    -
    -let a: A = B()
    -a.doThing()
    -
    -let vc: UIViewController = B()
    -vc.viewDidLoad()
    -
    - -

    This prints :

    - -
    dothing super class
    -viewdidload subclass
    -viewdidload superclass
    -
    - -

    You can see this skips the B's implementation of doThing when it is cast as A, however includes both implementations of viewDidLoad when cast as UIViewController. Is this the expected behavior? If so, what is the reason for this?

    - -

    ENV: Xcode 7.3, Playground

    -",HQ -"I need to do a phonebook, and so far I've done this: - - - #include - #include - typedef struct - { - char Name[10]; - char Address[10]; - long Phone_number; - }Phonebook; - void main() - { - int Counter, Number = 0; - long Number_of_residents; - Phonebook *Information = (Phonebook*)malloc(sizeof(Phonebook)); - scanf(""%ld"", &Number_of_residents); - for (Counter = 0; Counter < Number_of_residents; Counter++) - { - Information = (Phonebook*)realloc(Information, sizeof(Phonebook)*(Counter + 1)); - gets(Information[Number].Name); - Number++; - gets(Information[Number].Address); - Number++; - scanf(""%ld"", &Information[Number].Phone_number); - Number++; - } - } - -Problem is, when I type in ""Address"" it stops working. - -What did I do wrong here? - -Thank you. - -",LQ -"

    I have this large dataframe I've imported into pandas and I want to chop it down via a filter. Here is my basic sample code:

    - -
    import pandas as pd
    -import numpy as np
    -from pandas import Series, DataFrame
    -
    -df = DataFrame({'A':[12345,0,3005,0,0,16455,16454,10694,3005],'B':[0,0,0,1,2,4,3,5,6]})
    -
    -df2= df[df[""A""].map(lambda x: x > 0) & (df[""B""] > 0)]
    -
    - -

    Basically this displays bottom 4 results which is semi-correct. But I need to display everything BUT these results. So essentially, I'm looking for a way to use this filter but in a ""not"" version if that's possible. So if column A is greater than 0 AND column B is greater than 0 then we want to disqualify these values from the dataframe. Thanks

    -",HQ -"

    I'm developing a website with Spring and Hibernate (the website is about stock trading).

    - -

    At about 12 AM everyday, I need to cancel all orders. Currently my solution is using a scheduled task that runs every hour:

    - -
     <task:scheduled ref=""ordersController"" method=""timeoutCancelAllOrders"" fixed-delay=""60*60*1000"" />
    -
    - -

    Then in the method timeoutCancelAllOrders, I get the current time and check, if it's between 11PM and 12AM then do the task

    - -

    The way I see it, task schedule starts when I start the Server ( I'm using Tomcat in Eclipse), but when I deploy it on an online hosting ( I'm using Openshift), I have no idea when is the starting time of task schedule.

    - -

    My question is:

    - -

    1: How to do it more automatic ? Is there anything like myTask.startAt(12AM) ?

    - -

    2: I'm living in Vietnam but the server (Openshift) is located in US, so here's how I do the check :

    - -
            Date currentTime = new Date();
    -    DateFormat vnTime = new SimpleDateFormat(""hh:mm:ss MM/dd/yyyy "");
    -    vnTime.setTimeZone(TimeZone.getTimeZone(""Asia/Ho_Chi_Minh""));
    -
    -    String vietnamCurrentTime = vnTime.format(currentTime);
    -    String currentHourInVietnam = vietnamCurrentTime.substring(0, 2);
    -    System.out.println(currentHourInVietnam);
    -
    -    if(currentHourInVietnam.equals(""00"")){
    -        // DO MY TASK HERE
    -    }
    -
    - -

    That looks stupid. How can I improve my code ?

    -",HQ -"My friends are counting on me to make a good rpg game, I'm almost done, but this problem occurs ----> For some reason when I click 'Register' page refreshes..? I copied this register code by the way.. so that could be the problem? please help ! :( - -input type='hidden' name='referer' value=''> -input type=""submit"" name=""submit"" value=""Register"" class=""button""/> - -this is the code, please..anyone - -",LQ -"

    I used to think that rdd.take(1) and rdd.first() are exactly the same. However I began to wonder if this is really true after my colleague pointed me to Spark's officiation documentation on RDD:

    - -
    -

    first(): Return the first element in this RDD.

    - -

    take(num): Take the first num elements of the RDD. - It works by first scanning one partition, and use the results from that partition to estimate the number of additional partitions needed to satisfy the limit.

    -
    - -

    My questions are:

    - -
      -
    1. Is the underlying implementation of first() the same as take(1)?
    2. -
    3. Suppose rdd1 and rdd2 are constructed from the same csv, can I safely assume that rdd1.take(1) and rdd2.first() will always return the same result, i.e., the first row of the csv? What if rdd1 and rdd2 are partitioned differently?
    4. -
    -",HQ -"

    Following this: https://facebook.github.io/react-native/docs/getting-started.html , -I've created an empty project and am trying to run it by doing: -sudo react-native run-android -This is what is produced:

    - -
    Starting JS server...
    -Building and installing the app on the device (cd android && ./gradlew installDebug...
    -Downloading https://services.gradle.org/distributions/gradle-2.4-all.zip
    -
    -Exception in thread ""main"" javax.net.ssl.SSLHandshakeException: 
    -
    -sun.security.validator.ValidatorException: PKIX path building failed: 
    -
    -sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    -
    - -

    (I can post the rest of the error if that would be useful). Does anyone have any advice?

    -",HQ -"

    I read the two way binding operator in sample code of RxSwift.

    - -
    func <-> <T>(property: ControlProperty<T>, variable: Variable<T>) -> Disposable {
    -    let bindToUIDisposable = variable.asObservable()
    -        .bindTo(property)
    -    let bindToVariable = property
    -        .subscribe(onNext: { n in
    -            variable.value = n
    -        }, onCompleted:  {
    -            bindToUIDisposable.dispose()
    -        })
    -
    -    return StableCompositeDisposable.create(bindToUIDisposable, bindToVariable)
    -}
    -
    - -

    When property changed, it will notify variable, and set the variable's value, while the variable's value is set, it will notify the property. I think it will lead to endless loop...

    -",HQ -"

    I have the following expression: -log = np.sum(np.nan_to_num(-y*np.log(a+ 1e-7)-(1-y)*np.log(1-a+ 1e-7)))

    - -

    it is giving me the following warning:

    - -
    RuntimeWarning: invalid value encountered in log
    -  log = np.sum(np.nan_to_num(-y*np.log(a+ 1e-7)-(1-y)*np.log(1-a+ 1e-7)))
    -
    - -

    I don't understand what might be the invalid value or why am I getting it. Any and every help is appreciated.

    - -

    NOTE: This is a cross-entropy cost function where I added 1e-7 to avoid having zeros inside log. y & a are numpy arrays and numpy is imported as np.

    -",HQ -"I need to get one number from the edit text and multiplicate for a standard number and then sum with a number of another edit text this also multiplicate for a standard number. Then i have to show the value when i click a button. All in Java with android studio - -the calculation is: -(editextnumber*standardnumber)+(editextnumber*standardnumber)",LQ -"

    I'm trying to use a cgo library on Windows, namely github.com/mattn/go-sqlite3

    - -

    I use Cygwin64 and installed with all ""Development"" packages, so gcc is availabe.

    - -

    But running go get github.com/mattn/go-sqlite3 results in:

    - -
    /usr/lib/gcc/x86_64-pc-cygwin/5.3.0/../../../../x86_64-pc-cygwin/bin/ld: cannot find -lmingwex
    -/usr/lib/gcc/x86_64-pc-cygwin/5.3.0/../../../../x86_64-pc-cygwin/bin/ld: cannot find -lmingw32
    -
    - -

    If I search for ""mingwex"" and ""mingw32"" in the Cygwin installer, I get no results. Am I looking for the wrong names or are they not available on 64 bit systems?

    - -

    Or is there a better way to use the library on Windows?

    - -
    - -

    Note that the README states that

    - -
    -

    However, if you install go-sqlite3 with go install - github.com/mattn/go-sqlite3, you don't need gcc to build your app - anymore

    -
    - -

    but I get the same error message if I use go install.

    - -
    $ go version
    -go version go1.6.2 windows/amd64
    -
    -",HQ -"The problem I met is that I need to run one link (I cannot be specific that link exactly, this link is doing request and looks like http://link.com/?name=name&password=password& and etc) - -And I need to run this link 100 times in a row. I can not do this manually using browser - this tooks much time. - -Is there any option to run (just run, like you put link in browser and press enter) this link 100 times in a row using Perl scripting? - -I have not met before with the Perl and therefore asking the help directly. As I google before some information and make a little script, but seems like I missing something in my knowledge: - - #!/usr/bin/perl -w - - use LWP::Simple; - my $uri = 'http://my link here'; - my $content = get $uri; - -Could you please advice to me how I can finish this script?",LQ -"When i tried to code a simple php code, i had a problem that the result had showed some things which weren't expected such as ""***' . ""\n""; echo'*** "". Where is my code wrong? -Here is my code: - - - - Putting Data in the DB - - - Thank you. The data has been entered. \n""; - echo'

    Back to registration

    ' . ""\n""; - echo'

    View the student lists

    ' .""\n""; - } - - - Putting Data in the DB - - - Thank you. The data has been entered. \n""; - echo'

    Back to registration

    ' . ""\n""; - echo'

    View the student lists

    ' .""\n""; - } - -Result is here: - -> Thank you. The data has been entered. \n""; echo' Back to registration -> -> ' . ""\n""; echo' View the student lists -> -> ' .""\n""; } Thank you. The data has been entered. \n""; echo' Back to -> registration -> -> ' . ""\n""; echo' View the student lists -> -> ' .""\n""; }",LQ -"

    I'm trying to invoke a lambda function from node.

    - -
    var aws = require('aws-sdk');
    -var lambda = new aws.Lambda({
    -    accessKeyId: 'id',
    -    secretAccessKey: 'key',
    -    region: 'us-west-2'
    -});
    -
    -lambda.invoke({
    -    FunctionName: 'test1',
    -    Payload: JSON.stringify({
    -        key1: 'Arjun',
    -        key2: 'kom',
    -        key3: 'ath'
    -    })
    -}, function(err, data) {
    -    if (err) console.log(err, err.stack);
    -    else     console.log(data);
    -});
    -
    - -

    The keys are for an IAM user. The user has AWSLambdaExecute and AWSLambdaBasicExecutionRole policies attached.

    - -

    I get a permission error: -AccessDeniedException: User: arn:aws:iam::1221321312:user/cli is not authorized to perform: lambda:InvokeFunction on resource: arn:aws:lambda:us-west-2:1221321312:function:test1

    - -

    I read the docs and several blogs, but I'm unable to authorise this user to invoke the lambda function. How do get this user to invoke lambda?

    - -

    Thanks.

    -",HQ -"I am trying to build a TCPIP communication between a server and a client in visual studio , the client will accept a string from the keyboard, and he will send the string to the server only if it is numbers not alphabet I tried the below code but it seems there is something wrong - -while (rc == SOCKET_ERROR); //try as long till there is connection (no Socket Error) - - printf(""conected with %s..\n\n"", address); - - - do - { - - printf(""Please insert the Blood pressure values for further Diagnostic\n ""); - gets(data); - char i; - for (i = data[0]; i <= MAX; i++) - { - - char n = data[i]; - if ((strlen(data) > MAX) || (strlen(data) == 0)) - { - - printf(""argument not allowed!\n\n""); - memset(data, '\0', strlen(data)); - continue; - - } - if ((n >= 'a' && n <= 'z') ||( n >= 'A' && n <= 'Z')) - - { - - printf(""you have to enter a number !\n\n""); - memset(data, '\0', strlen(data)); - continue; - //next iteration - - } - }",LQ -"

    Is there any method to check if view exists?

    - -

    Like PHP file_exists, but using internal laravel method for convenience

    - -

    i want to code like this:

    - -
    if(__ifViewExist__($view)){
    -    return view($view)->render();
    -}
    -return ""Page tidak ditemukan"";
    -
    -",HQ -"So the logic goes like this: -Suppose the link list consists of (6,7,8) as data and I pass insert(1,5),so the list will be as (5,6,7,8). -Similarly on insert(3,2) link list is (6,7,2,8). - -I tried compiling the below code but it gives me an error stating-Undefined reference to main by '-start'.I tried debugging,even searching for answers but found no help.Kindly suggest a solution.Any further suggestions and bug fixes shall be welcomed. -(I have used codepad for compiling) - - - - -#include -using namespace std; -class Link_no -{ - struct node - { - int data; - node *next; - }; - - void insert(int n,int d,node *head) - { - node *temp=new node(); - temp->data=d; - temp->next=NULL; - node *temp1; - - if(n==1) - { - temp->next=head; - head=temp; - return; - } - else - temp1=head; - { - for(int i=0;inext; - } - temp->next=temp1; - temp1=temp; - } - } - void print(node *start) - { - node *temp=start; - while(temp!=NULL) - { - cout<data<next; - } - } - int main() - { - node *head=NULL; - Link_no o1; - o1.insert(1,5,head); - o1.insert(2,7,head); - o1.insert(1,9,head); - o1.print(head); - return 0; - } -} -",LQ -"the output for this code is : - ->9 - -and i'm not sure what does it change in the function add1 -and also what does this &n mean and what it do when we assign the **i** to **&n** - - #include - using namespace std; - - int add1(int &n){ - - n++; - - return n; - } - - int main(){ - int m = 0; - - for (int i = 0; i < 5; i++){ - m += add1(i); - - - } - cout << m ; - - cout << ""\n\n""; - - - return 0; - } -",LQ -"The C# code: - - SqlConnection c; - string str = ""Data Source =(LocalDB)\\MSSQLLocalDB;""; - str += ""AttachDbFilename=|DataDirectory|\\DinoData.mdf;""; - str += ""Integrated Security= True""; - c = new SqlConnection(str); - if (Session[""Conect""] != null) - { - if ((bool)Session[""Conect""]) - { - logdiv.Visible = false; - Usernamec.InnerHtml = (string)Session[""CurentUserid""]; - Connected.Visible = true; - SqlCommand exp = new SqlCommand(""SELECT xp FROM[User] Where Username = @username"", c); - exp.Parameters.AddWithValue(""@username"", (string)Session[""CurentUserid""]); - c.Open(); - Session[""exp""] = exp.ExecuteReader(); - c.Close(); - int b = (int)Session[""exp""] / 2; - string a = b + ""px""; - xp.Style.Add(""width"", ((string)Session[""exp""])+""%""); - } - else - { - - - Connected.Visible = false; - logdiv.Visible = true; - } - } - -The Error: - -> An exception of type 'System.InvalidCastException' occurred in -> App_Web_ump4h2pq.dll but was not handled in user code -> -> Additional information: Specified cast is not valid.",LQ -"I am bit confused at one situation. I have a table called slam-book in which I have a column named favorite games. Now User enters their data like - - ""cricket, foot ball, hockey, basket ball"" - -Now I want to separate this result and want to give link to it like, - - Cricket, Foot Ball, Hockey, Basket Ball - -So, I can list all users with specific interest, Please help me to get such result. I want that code which can give me results like #2 code.",LQ -"guys i'm scraching my head for hours over this problem. As, i'm basically trying to fetch values from a loop inside a function to pass it to another foreach loop to get the desired results.And it is not working as i intend to. pl,point me in the right direction. -here is the code: - - function ff($s) { - - $project=""""; - foreach ($s as $i=> $r ){ - - $r[""friend_one""] == $_SESSION['uname'] ? $friends[]= $r[""friend_two""] : $friends[] = $r[""friend_one""]; - - $friend=$friends[$i]; - $totalids=$project->totalids($_SESSION['uname'],$friend); - } - return $totalids; - } - $totalid= ff($f); - print_r($totalid); - - - - foreach ($totalid as $v){ - - $id=$v['user_id']; - //other logic to get desired results - }",LQ -" import bottle, pymongo - from pymongo import MongoClient - client = pymongo.MongoClient(some URI) - db = client['database'] - dbcoll = db['collection'] - @bottle.route('/hello') - def grab_record(name): - bottle.response.headers['Access-Control-Allow-Origin'] = '*' - return dbcoll.find_one({'_id':False}) - bottle.run(host='localhost', port=8080, debug=True) - -On opening http://localhost:8080/hello, this is the error I get -[![enter image description here][1]][1] - - - [1]: http://i.stack.imgur.com/QbyC0.png - -Both bottle.py and this file are on my Desktop! What should I do? This is urgent!",LQ -"I have a text file of a few thousand entries built like that: - -""11111111111: text text text text text :: word11111111: text text text text :: word111111111:"" - -Where ""11111111"" is a big number, and ""text text text text"" can be anything including emojis, and ""word"" is one of 8 words, and the second 111111111 is another number, but different. - -I tried, but just couldn't match it. -I don't know how to treat the emojis, and another problem is the spaces are not consistent, sometimes is a white space, somtime tab, and so on. - -Thanks!",LQ -"I want to pass a ShowRoomId Value in The Query Below. -The Employees Table Contain ShowRoomId Field -How I can Do It. - -My SQL Query - - SELECT * FROM Employees A -OUTER APPLY (SELECT TOP 1 * - FROM EmployeeBasics B - WHERE (A.EmployeeID = B.EmployeeID) - ORDER BY B.BasicUpdateDate DESC) AS B -OUTER APPLY ( - SELECT C.EmployeeId , count(*) AS TotalAbsent - FROM EmployeeAbsents C - WHERE C.AbsentDate BETWEEN '2016-05-01' AND '2016-05-30' AND A.EmployeeID = C.EmployeeID - GROUP BY C.EmployeeId - ) AS C -OUTER APPLY ( - SELECT EmployeeId, - SUM(CASE WHEN TransctionTypeId = 1 THEN Amount ELSE 0 END) AS Payment, - SUM(CASE WHEN TransctionTypeId = 2 THEN Amount ELSE 0 END) AS RecoverSalary, - SUM(CASE WHEN TransctionTypeId = 3 THEN Amount ELSE 0 END) AS RecoverCash - FROM dbo.EmployeeAdvances D - WHERE A.EmployeeID = D.EmployeeID - GROUP BY EmployeeId - ) AS D",LQ -"I install twisted with pip, but it miss the _win32stdio.py and _pollingfile.py. -So I copy it into my dir. But I don't why? ",LQ -"Here is the result of: var_dump($response): - -""is_claimed"": false, ""rating"": 4.5, ""mobile_url"": ""http://m.yelp.com/biz/filbert-steps-san-francisco?utm_campaign=yelp_api\u0026utm_medium=api_v2_business\u0026utm_source=NUQkLT4j4VnC6ZR7LI-VWA"", ""rating_img_url"": ""https://s3-media2.fl.yelpcdn.com/assets/2/www/img/99493c12711e/ico/stars/v1/stars_4_half.png"", ""review_count"": 208",LQ -"I have the following data frames: - - df_1 <- data.frame(f1= c(1,3,4,5,7,8), f2 = c(2,3,4,1,4,5)) - df_2 <- data.frame(f1= c(0.1,0.3,0.04,0.015,0.7,0.8), f2 = c(0.02,0.13,0.4,1.4,0.04,0.5)) - -so they look like - - > df_1 - f1 f2 - 1 1 2 - 2 3 3 - 3 4 4 - 4 5 1 - 5 7 4 - 6 8 5 - > df_2 - f1 f2 - 1 0.100 0.02 - 2 0.300 0.13 - 3 0.040 0.40 - 4 0.015 1.40 - 5 0.700 0.04 - 6 0.800 0.50 - -The replacement I wish to perform is: - -If one figure in df2 is higher than 0.05, I wish to replace the figure in df1 at the corresponding position with NA. The resulting data frame df1 should look like - - f1 f2 - 1 NA 2 - 2 NA NA - 3 4 NA - 4 5 NA - 5 NA 4 - 6 NA NA -I have tried to solve it using a for loop but it will take a long time when applied to my actual large table. I know there could be a quicker way using data.table but I don't actually know how. Can someone help me with this? - -Many thanks! - -Bill",LQ -"I'm having trouble with placing an image in the correct spot in my css. - -I have links in the left side of the page and would like an image to the top right of the nav bar. - -Unsure on how that's done.",LQ -"I want to send a SOAP massage using SOAP client. I have a WSDL file for an example. I can use the WSDL file using SOAP UI. - -But my requirement is: whenever I am sending a SOAP massage to a particular device or somewhere else a massage ID should be generated to me for each and every massage. - -How can I write that SOAP Request using PHP. - -Any example/links much appreciated as I am very new to this.",LQ -"Simple question and lets be straightforward. -I have this string. - -('string1', 'string2', 'string3'); - -I want to extract data ONLY the string1, string2, string3 using C. Anyone have an idea? - -Have tried something like this -`scanf(""%s"", &data1); - printf(""%s"", data1); - if(d=='`'){ - scanf(""%s"", &sampah); - printf(""%s"", sampah); - if(d=='`'){ - scanf(""%s"", &data2); - printf(""%s"", data2); - if(d=='`'){ - scanf(""%s"", &sampah); - printf(""%s"", sampah); - if(d=='`'){ - scanf(""%s"", &data3); - printf(""%s"", data3); - if(d=='`'){ - scanf(""%s"", &sampah); - printf(""%s"", sampah); - if(d=='`'){ - scanf(""%s"", &data4); - printf(""%s"", data4); - } - } - } - } - } - }` - - -yes its stupid but this is just because I don't know what to do. -Please help :(",LQ -"If yes, then how? -It is urgent. - -Although I am able to send mail from localhost,but not able to send mails from my application deployed on HEROKU.. -",LQ -"I need one help.I need to sort table data selecting two date using Angular.js.I am explaining my code below. - - -
    -
    - - -
    -
    -
    -
    - - -
    -
    - - - {{$index+1}} - {{d.rest_name}} - {{d.Android}} - {{d.IOS}} - {{d.resultant_counter}} - {{d.date}} - - - -Here i have two datepicker field .When user will select `From date` and `To date` the record will fetch in between these two date including these dates also.Here i have also `d.date` which contains value like this `2016-05-21 15:15:44` from DB.as per this value i need to sort the table data.Please help me.",LQ -"see below `XAML`: - - - - - - - - - - - - - - -***Source of `DataGrid`*** - - private ObservableCollection GetDynamicOrders2() - { - var retVal = new ObservableCollection(); - for (int i = 0; i < 50; i++) - { - dynamic eo = new ExpandoObject(); - eo.Name = new CellContent(""Order"" + i); - eo.IsTrend = new CellContent(i % 2 == 0); - retVal.Add(eo); - } - return retVal; - } - - -***Class*** - - - public sealed class CellContent : INotifyPropertyChanged - { - private object _value; - public object Value - { - get { return _value; } - set - { - _value = value; - OnPropertyChanged(""Value""); - } - } - - public CellContent(object value) - { - Value = value; - } - - public event PropertyChangedEventHandler PropertyChanged; - private void OnPropertyChanged(string propertyName) - { - var handler = PropertyChanged; - if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName)); - } - } - -To remove `.Value` from every binding I `override` `ToString()` method. - - public override string ToString() - { - return Value.ToString(); - } - -and Binding is changed as: - - - - -***But It's behaving differently for `DataTrigger` and `Column` Binding. Can someone explain why and How? Why is `DataTrigger` not working after the change?***",LQ -"

    I'm having troubles trying to migrate to new firebase console. -I'm doing exactly what is on this link: https://firebase.google.com/support/guides/firebase-web#import_your_project_to_the_firebase_console_numbered

    - -

    And this is what happened in the step 2: -Firebase login failed -The Firebase CLI login request was rejected or an error occurred. Please run firebase login again or contact support if you continue to have difficulty logging in.

    - -

    Any ideas? Thanks since now.

    -",HQ -"

    I'm planning on storing a bunch of records in a file, where each record is then signed with libsodium. However, I would like future versions of my program to be able to check signatures the current version has made, and ideally vice-versa.

    - -

    For the current version of Sodium, signatures are made using the Ed25519 algorithm. I imagine that the default primitive can change in new versions of Sodium (otherwise libsodium wouldn't expose a way to choose a particular one, I think).

    - -

    Should I...

    - -
      -
    1. Always use the default primitive (i.e. crypto_sign)
    2. -
    3. Use a specific primitive (i.e. crypto_sign_ed25519)
    4. -
    5. Do (1), but store the value of sodium_library_version_major() in the file (either in a dedicated 'sodium version' field or a general 'file format revision' field) and quit if the currently running version is lower
    6. -
    7. Do (3), but also store crypto_sign_primitive()
    8. -
    9. Do (4), but also store crypto_sign_bytes() and friends
    10. -
    - -

    ...or should I do something else entirely?

    - -

    My program will be written in C.

    -",HQ -"

    This is my web page

    - -
    <!DOCTYPE html>
    -<html>
    -    <head>
    -        <meta charset=""utf-8"">
    -        <meta http-equiv=""X-UA-Compatible"" content=""IE=edge"">
    -        <meta name=""viewport"" content=""width=device-width, initial-scale=1"">
    -        <title>Calcolo Diliuzioni</title>
    -
    -    </head>
    -    <body>
    -
    -        <h1>My app</h1>
    -
    -        <!-- Libreria per gestire l'autenticazione con google -->
    -        <script src=""https://apis.google.com/js/platform.js"" async defer></script>
    -
    -        <!-- Firebae config -->
    -        <script src=""https://www.gstatic.com/firebasejs/live/3.0/firebase.js""></script>
    -        <script>
    -        // Initialize Firebase
    -        var config = {
    -        apiKey: """",
    -        authDomain: """",
    -        databaseURL: """",
    -        storageBucket: """",
    -        };
    -        firebase.initializeApp(config);
    -        </script>
    -
    -        <script type=""text/javascript"">
    -            var user = firebase.auth().currentUser;
    -            if (user) {
    -                console.log(user);
    -            } else {
    -                console.log(user);
    -            }
    -        </script>
    -    </body>
    -</html>
    -
    - -

    Let's assume I have an already logged user. When I load the page in the console I got null. While I'm expecting to have the current user's object.

    - -

    If I run the same code in the browser console

    - -
    var user = firebase.auth().currentUser;
    -if (user) {
    -    console.log(user);
    -} else {
    -    console.log(user);
    -}
    -
    - -

    I'm able to get the current user's object.

    - -

    I think that the firebase.initializeApp(config); has some async behavior. What's the right way to work around it? Should I use a promise or something on the firebase.initializeApp(config); function? A sort of callback..

    -",HQ -"

    I have a small CSS issue with Safari on iPhone device. My search input is blue and when user focuses on it, caret is almost invisible:

    - -

    - -

    In all desktop browsers, it has right color (white), even on desktop Safari. Any idea how to fix this and change caret color on iOS device?

    - -

    Input styles:

    - -
    input {
    -  background-color: $stateBlue;
    -  height: $navbarItemHeight;
    -  padding: 0 10px;
    -  vertical-align: bottom;
    -  color: $white;
    -  border-radius: $borderRadius;
    -  font-size: 1.1666666667em; // 16px
    -  -moz-appearance:none;
    -  -webkit-appearance:none;
    -
    -  &::-webkit-input-placeholder {
    -    text-shadow: none;
    -    -webkit-text-fill-color: initial;
    -  }
    -}
    -
    -",HQ -"

    I am making a reusable Django app without a project. This is the directory structure:

    - -
    /
    -/myapp/
    -/myapp/models.py
    -/myapp/migrations/
    -/myapp/migrations/__init__.py
    -
    - -

    When I run django-admin makemigrations I get the following error:

    - -
    django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
    -
    - -

    Obviously, this is because I don't have a settings module configured, because this is a reusable app. However, I would still like to ship migrations with my app. How can I make them?

    -",HQ -"

    I am developing an WPF application with EF 6 database first approach, I am have 1 project in my solutions, if i run my project this error always appear.

    - -

    The context is being used in Code First mode with code that was generated from an EDMX file for either Database First or Model First development. This will not work correctly. To fix this problem do not remove the line of code that throws this exception. If you wish to use Database First or Model First, then make sure that the Entity Framework connection string is included in the app.config or web.config of the start-up project. If you are creating your own DbConnection, then make sure that it is an EntityConnection and not some other type of DbConnection, and that you pass it to one of the base DbContext constructors that take a DbConnection. To learn more about Code First, Database First, and Model First see the Entity Framework documentation here: http://go.microsoft.com/fwlink/?LinkId=394715

    -",HQ -"

    I'm trying to figure out why webpack requires this empty extension.

    - -

    Inside resolve.extensions there's always this kind of configuration:

    - -
    extensions: ['', '.js', '.jsx']
    -
    - -

    Why can't it be just this:

    - -
    extensions: ['.js', '.jsx']
    -
    -",HQ -"

    I tried the following settings, but all it did was make things progressively worse.

    - -
    ""spell_check"": false,
    -""dictionary"": """",
    -""spelling_selector"": """",
    -
    - -

    I don't understand the default value of spelling_selector, but maybe that's the key?

    -",HQ -"

    I would like to know if there is any difference between OpenCV types CV_32F and CV_32FC1? -I already know that 32F stands for a ""32bits floating point"" and C1 for ""single channel"", but further explanations would be appreciated.

    - -

    If yes, how are they different / which one should I use in which specific cases? As you might know that openCV types can get very tricky...

    - -

    Thank you all in advance for your help!

    -",HQ -"

    I know this has been an issue for a while and I found a lot of discussion about it, however I didn't get which would be finally a way to get it done: pipe both, stdout and stderr. In bash, this would be simply:

    - -
    cmd 2>&1 | cmd2
    -
    -",HQ -"I put an image on a cell and all margins were separated from the image, the thing is that I united the borders again with display: block; but the top margin is , and I want to move the photo up to touch with the title and this with the top margin but as a limit and not allowed to rise me more , I need urgent help the project must be delivered in a few days in class . There is the photo [image][1] - - - [1]: http://i.stack.imgur.com/U3XK9.png",LQ -"I'm writing a program that allows users to add a question that has 4 answers, right answer, date, author and level of complexity, also the program has functions for reading all the questions and deleting a question. When I choose the option add a question and i insert all of the characteristics the message box for the error appears it also doesn't allow me to delete or see the `. -questions. i need help - - - void edit() - { - - char filename[2]; - int y; - int q,ft,s,t, fr,d,a,l,tr,n,da; - FILE *f, *f1; - - f=fopen(""pff.txt"",""r""); - if (f==NULL) - { - perror (""Error!""); - } - - - fscanf(f,""%d"",&y); - - - printf("" "" ); - gets(question.name); - n=sizeof(question.name); - - printf(""Name : ""); - gets(question.name); - q=sizeof(question.name); - - printf(""Answer 1: ""); - gets(question.first); - ft=sizeof(question.first); - - printf(""Answer 2: ""); - gets(question.second); - s=sizeof(question.second); - - printf(""Answer 3: ""); - gets(question.third); - t=sizeof(question.third); - - printf(""Answer 4: ""); - gets(question.fourth); - fr=sizeof(question.fourth); - - printf(""Right answer (1-4): ""); - scanf(""%d"",&question.tr); - - printf("" ""); - gets(question.date); - da=sizeof(question.date); - - printf(""Date: ""); - gets(question.date); - d=sizeof(question.date); - - printf("" Author: ""); - gets(question.author); - t=sizeof(question.author); - - printf(""Level (0-2): ""); - scanf(""%d"",&question.level); - fclose (f); - - sprintf(filename, ""%d.bin"", y+1); - puts (filename); f=fopen(filename,""wb""); - - - - fwrite(&q,sizeof(int),1,f); - fwrite(question.name,sizeof(question.name),1,f); - fwrite(&ft,sizeof(int),1,f); - fwrite(question.first,sizeof(question.first),1,f); - fwrite(&s,sizeof(int),1,f); - fwrite(question.second,sizeof(question.second),1,f); - fwrite(&t,sizeof(int),1,f); - fwrite(question.third,sizeof(question.third),1,f); - fwrite(&fr,sizeof(int),1,f); - fwrite(question.fourth,sizeof(question.fourth),1,f); - fwrite (&question.tr, sizeof (int),1,f); - fwrite(&d,sizeof(int),1,f); - fwrite(question.date, sizeof(question.date),1,f); - fwrite(&a,sizeof(int),1,f); - fwrite(question.author,sizeof(question.author),1,f); - fwrite(question.level,sizeof(int),1,f); - - fclose(f); - - f=fopen(""pff.txt"",""w""); - fprintf(f,""%d"",y+1); - fclose(f); - - - } -",LQ -"

    I always use filter_var($var, FILTER, FLAG); when I get data from $_GET, $_POST and so on, but now this data is a JSON string but I didn't find any filter to sanitize JSON. Anyone know how to implement this filter?

    - -

    PHP filter_var(): http://php.net/manual/en/function.filter-var.php

    - -

    PHP FILTER CONST: http://php.net/manual/en/filter.filters.sanitize.php

    -",HQ -"

    I'm trying to list objects in an Amazon s3 bucket in python using boto3.

    - -

    It seems boto3 has 2 functions for listing the objects in a bucket: list_objects() and list_objects_v2().

    - -

    What is the difference between the 2 and what is the benefit of using one over the other?

    -",HQ -"

    I want to run a node script as a cronjob which uses Gmail's API to poll a gmail account I own.

    - -

    I am following these quickstart instructions:

    - -

    - -

    I'm stuck on the first step. When requesting credentials for a cron script it tells me that ""User data cannot be accessed from a platform without a UI because it requires user interaction for sign-in"":

    - -

    - -

    The docs are confusing in general, and mention ""service accounts,"" ""OAuth,"" and other things -- I cannot tell which apply to my use-case and which don't. I've used many SaaS APIs, and the typical workflow is to login to your account, get an API key and secret, and use those in your script to access the API. It seems this is not the paradigm used by the Gmail API, so I'd appreciate any guidance or links to clearer instructions.

    -",HQ -"I am trying to generate a list of possible moves for a checkers-like game. For example, at the start of the game the board would look like [[1,1,1], [0,0,0], [2,2,2]]. My function would take the color (one for white, or two for black) and move the pieces either one space forward, or one space diagonal to capture another piece. So the first possible list of moves with white going first would be [[0,1,1], [1,0,0], [2,2,2], [1,0,1], [0,1,0, [2,2,2] etc. etc. - -So far I have: - - def generateMoves(color, board): - - newboard = [] - subboard = [] - board = [[1, 1, 1], [0, 0, 0], [2, 2, 2]] - x = 0 - - for i in board: - while x < len(board): - subboard.append(board[x]) - newboard.append(subboard) - x += 1 - return newboard - -but I can't figure out what modifications I need to make to it to calculate the new list of possible moves. ",LQ -"This is a question from a past paper that I am having issues with, the question and output is displayed below but I don't understand how this is achieved. Can someone please explain. - - int main (){ - int a[5] = { 1 }, b[] = { 3, -1, 2, 0, 4 }; - for (int i = 0; i<5; i++) - { if (!(a[i] = b[i])) // note: = not == - break; - cout << a[i] << endl; } - } - -Output: - - 3 - -1 - 2",LQ -"

    I'm debugging a JSON endpoint and need to view internal server errors. However, my app/storage/logs dir is empty and it seems there are no other directories dedicated to logs in the project. I've tried googling the subject to no avail.

    - -

    How can I enable logging, if it's not already enabled and view the logs?

    -",HQ -"

    What is the way of extracting last word in a String in Swift? So if I have ""Lorem ipsum dolor sit amet"", return ""amet"". What is the most efficient way of doing this?

    -",HQ -"

    sumBy(selector) returns Int

    - -

    sumByDouble(selector) returns Double

    - -

    Why doesn't sumBy return Long? Is there a workaround for this?

    -",HQ -"I want to count column first: as total number of instances of each column , -second ,count total number of instances based on condition -I am using this -Select group_name, Definition_Range ,count([group_name]) as Number_of_Clients from [Computer Status] where Definition_Range =' 0-10 Days' group by group_name,(select count([group_name]) as Total_Clients from [Computer Status] group by group_name)",LQ -"

    I know that there are various CTA cards that Facebook bot can use as seen here.

    - -

    What I really need is a datepicker card that can be sent to the user where they can choose a date and send it back. Is this possible using Facebook bots?

    -",HQ -"I have found the same in here . But in my case, I got very large data and i can do like the answer given. So anyone can help me to change classfrom data.frame to spatial polygon?",LQ -"I have a string a=""1,2,3,4.2300"" I need to replace the last two zeros which follows after '.' for an example, it has to replace the values this way. - - If ""1,2,3,4.2300"" then - 1,2,3,4.23 - If ""1,2,3,4.20300"" then - 1,2,3,4.203 - -How could I do this in Ruby? I tried with converting into Float but it terminates the string when I encounter a ','. Can I write any regular expression for this? ",LQ -"I would create an ajax code that load a php page every x seconds and it obtain a specific php var in the loaded page and assign the value of the obtained var to a javascript var, sorry for my bad english.",LQ -"I am trying to write a test in Cucumber using Ruby. I have an array: - - contacts = Array.new(arg1, arg2, arg3, arg4) - -And I want to create a loop that will take that array and fill in a field with that array. Kind of like: - - while contacts.index[0] < contacts.index[3] - fill_in('field', with: contacts) - ... - contacts +=1 - end - - -I can't seem to get this to work, it tells me I've got the wrong number of arguments - - ArgumentError: wrong number of arguments (4 for 0..2) - - -Is there something blindingly obvious I'm missing? - -Thanks",LQ -"I see all connection session by query statement: - - Select * From master.dbo.sysprocesses - - -And i try to clear by statement: - - Delete From master.dbo.sysprocesses - -or - - Truncate table master.dbo.sysprocesses -or update but not allow. - -[How to clear master.dbo.sysprocesses][1] - -Please help me know how to clear or update -***master.dbo.sysprocesses*** ? - -Thank you very much! - - - [1]: http://i.stack.imgur.com/q1AmQ.png",LQ -"

    In our app we met with one special case - if our App.specialFlag == true, we need stop any request from our code. And we think, that the best approach in this situation is include special Interceptor which will stop any our requests, something like this:

    - -
    if (App.specialFlag) {
    -    // Somehow stop request
    -} else {
    -    return chain.proceed(chain.request());
    -}
    -
    - -

    Also, we should note, that we use RxJavaCallAdapterFactory for wrapping responses into Observables.

    - -

    But we don't see any methods for stopping request in OkHttp Interceptors.

    - -

    We came up with two ways to solve our issue:

    - -

    a) Create special ApiService.class for wrapping every request in our API like this:

    - -
    public Observable<User> getUserDetails() {
    -    if (App.specialFlag) {
    -        return Observable.just(null);
    -    }
    -    return api.getUserDetails();
    -}
    -
    - -

    But we think that it is ugly and cumbersome solution.

    - -

    b) Throw a RuntimeException in Interceptor, then catch it in every place we use our API.

    - -

    The second solution is also not good, because we need to include a lot of onErrorResumeNext operators in our chains.

    - -

    May be someone knows, how to handle our situation in more 'clever' way?..

    - -

    Thanks in advance!

    -",HQ -"

    I see on iTunes Connect in AppAnalytics/SalesAndTrends sections only app units (that means the difference of app installs from previous week/month). -Where can I see the total app installs number? -Thanks

    -",HQ -"I am looking for a way to create a new document containing all the text with a specific format from my document. - -See below for what I wrote so far, but I'm stuck at two points: - -- how do I stop my loop when end of document is reached? -- how do I add intelligence to my code to avoid a static loop, and rather do a ""scan all my document""? - ----- - - Option Explicit - - Sub Macro1() - - Dim objWord As Application - Dim objDoc As Document - Dim objSelection As Selection - - Dim mArray() As String - Dim i As Long - Dim doc As Word.Document - - For i = 1 To 100 - ReDim Preserve mArray(i) - With Selection.Find - .ClearFormatting - .Font.Color = wdColorBlue - .Text = """" - .Replacement.Text = """" - .Forward = True - .Wrap = wdFindStop - .Format = True - .Execute - End With - - mArray(i) = Selection.Text - - Next - - Set objWord = CreateObject(""Word.Application"") - Set objDoc = objWord.Documents.Add - objWord.Visible = True - Set objSelection = objWord.Selection - - For i = 1 To 100 - objSelection.TypeText (mArray(i)) - Next - - End Sub - -Any help appreciated.",LQ -"

    What are those events called in Angular 2 when radio button is selected or unselected.

    - -

    Something like

    - -
    <input type=""radio"" (select)=""selected()"" (unselect)=""unselected()"" />
    -
    - -

    So when I click one radio button in a group, it will fire selected() for the new selection and unselected() for the previous selection.

    -",HQ -"

    Here is my code that I use to make the datetime timezone aware. I tried to use the recommended approach from the Django docs.

    - -
    tradeDay = day.trade_date + timedelta(hours=6)
    -td1 = pytz.timezone(""Europe/London"").localize(tradeDay, is_dst=None)
    -tradeDay = td1.astimezone(pytz.utc)
    -
    - -

    I get the tz_info error. How can I datetime a tz_info attribute?

    - -
    -

    USE_TZ = True in settings.py

    -
    -",HQ -"Is this way of overriding `clone` correct? I am getting a runtime error every time. Also can anybody suggest a way to write copy constructor in this class. - - public class Pair { - final StringBuffer x; - final StringBuffer y; - - public Pair(StringBuffer x, StringBuffer y) { - this.x = x; - this.y = y; - } - - public StringBuffer getX(){ - return x; - } - public StringBuffer getY(){ - return y; - } - - public Pair clone(){ - Pair p = new Pair(new StringBuffer(), new StringBuffer()); - try{ - p = (Pair)super.clone(); - } - catch (CloneNotSupportedException e) - { - throw new Error(); - } - return p; - } - -}",LQ -"

    I'd like to setup deployment based on branches using Travis-CI and Github.

    - -

    I.e. - if we made build from develop - then exec /deploy.rb with DEV env hostname, if master - then ./deploy.rb with PROD hostname and so on.

    - -

    Only one idea I found - is to check $TRAVIS_BRANC variable and then execute script, like:

    - -
    language: php
    -install:
    -  - true
    -script:
    -  - test $TRAVIS_BRANCH = ""develop"" && ./ci/deploy.rb envdev.tld 
    -  - test $TRAVIS_BRANCH = ""master"" && ./ci/deploy.rb envprod.tld
    -
    - -

    But this solution looks a bit weird as for me. Any other possibilities to realize that?

    - -

    Any tips/links appreciated.

    -",HQ -"

    I have OAuth2 authorization server which provides user information:

    - -
    public class User implements Serializable, UserDetails {
    -    private Long userID;
    -    private String username;
    -    private String password;
    -    private String fullName;
    -    private String email;
    -    private String avatar;
    -    private boolean enabled;
    -    // etc
    -}
    -
    -@RestController
    -@RequestMapping(""/api"")
    -public class APIController {
    -
    -    @RequestMapping(""/me"")
    -    public User me(@AuthenticationPrincipal User activeUser) {
    -        return activeUser;
    -    }
    -}
    -
    - -

    Also I've implemented OAuth2 client as separate Spring Boot application.

    - -
    @Configuration
    -@EnableOAuth2Sso
    -public class OAuth2ClientConfig extends WebSecurityConfigurerAdapter {
    -
    -    @Override
    -    public void configure(HttpSecurity http) throws Exception {
    -        http.logout()
    -            .and()
    -            .antMatcher(""/**"").authorizeRequests()
    -            .antMatchers(""/login"").permitAll()
    -            .anyRequest().authenticated();
    -    }
    -}
    -
    - -

    application.yml

    - -
    security:
    -  user:
    -    password: none
    -  oauth2:
    -    client:
    -      clientId:     acme
    -      clientSecret: acmepassword
    -      accessTokenUri:       http://localhost:9080/sso/oauth/token
    -      userAuthorizationUri: http://localhost:9080/sso/oauth/authorize
    -    resource:
    -      userInfoUri:    http://localhost:9080/sso/api/me
    -
    - -

    User authenticates successfully:

    - -
    @Controller
    -public class MainController {
    -
    -    @RequestMapping(value = ""/"")
    -    public String index(Principal principal) {
    -        System.out.println(principal);
    -        // org.springframework.security.oauth2.provider.OAuth2Authentication@c2e723e8: Principal: superadmin; Credentials: [PROTECTED]; Authenticated: true; Details: remoteAddress=<ADDRESS>, sessionId=<SESSION>, tokenType=bearertokenValue=<TOKEN>; Granted Authorities: {userRoleID=1, authority=ROLE_SUPERUSER}
    -        OAuth2Authentication auth = (OAuth2Authentication) principal;
    -        System.out.println(auth.getUserAuthentication().getDetails());
    -        // {userID=1, username=superadmin, password=***, fullName=SuperUser, email=superadmin@example.org, avatar=null, enabled=true ...
    -        return ""index"";
    -    }
    -}
    -
    - -

    But I can't understand how to use provided OAuth2Authentication object in my application. It almost useless.

    - -

    When I'm trying to use any Thymeleaf security tag

    - -
    <span sec:authentication=""principal.fullName"">Username</span>
    -<span sec:authentication=""principal.authorities"">Authorities</span>
    -<span sec:authentication=""principal.userAuthentication.details.fullName"">Usernames</span>
    -
    - -

    .. the following exception occurs:

    - -
    Error retrieving value for property ""property name here"" of authentication object of class org.springframework.security.oauth2.provider.OAuth2Authentication
    -
    - -

    Standard Spring Security methods isUserInRole() not working too:

    - -
    System.out.println(servletRequest.isUserInRole(""ROLE_SUPERUSER""));
    -// false
    -
    - -

    Should I implement custom Thymeleaf security dialect and hasRole() method? Or maybe simpler solution exists?

    -",HQ -"

    I want to extend sonar.sources, which by default is pom.xml,src/main/java, by src/main/resources in order to check XML files that are located there.

    - -

    This seemingly simple task turned out to be difficult since I have a multi-module maven project (> 100 modules, nested) with a lot of them don't have a src/main/resources folder and most of them not even a src folder (e.g. for packaging=pom). This leads to a build error if I set sonar.sources to pom.xml,src/main/java,src/main/resources or pom.xml,src/main:

    - -
    [ERROR] Failed to execute goal org.codehaus.mojo:sonar-maven-plugin:2.5:sonar (default-cli) on project xyz-parent: The directory 'C:\...\submodule\src\main\resources' does not exist for Maven module ... Please check the property sonar.sources -> [Help 1]
    -
    - -

    The sonar-maven-plugin itself uses ${project.build.sourceDirectory} to do it right in every module.

    - -

    I tried to use regular expressions to set sonar.sources to src/main by cutting off /java (or \java on Windows) via

    - -
    <plugin>
    -  <groupId>org.codehaus.mojo</groupId>
    -  <artifactId>build-helper-maven-plugin</artifactId>
    -  <version>1.7</version>
    -  <executions>
    -    <execution>
    -      <id>regex-property</id>
    -      <goals>
    -        <goal>regex-property</goal>
    -      </goals>
    -      <configuration>
    -        <name>sonar.sources</name>
    -        <value>${project.build.sourceDirectory}</value>
    -        <regex>[/\\]+java$</regex>
    -        <replacement></replacement>
    -        <failIfNoMatch>false</failIfNoMatch>
    -      </configuration>
    -    </execution>
    -  </executions>
    -</plugin>
    -
    - -

    But this does nothing and I have no idea to which lifecycle phase I should bind it to have it executed.

    - -

    Or is there a way to avoid the error due to missing directory in sonar.sources? According to current sonar-maven source missing directories are only ignored if the POM has pom packaging but not for ear or jar modules without resources.

    - -

    Or should I ensure src/main exists before sonar start? What hook may I use for that?

    -",HQ -"

    This is mostly a lack of understanding of oauth2 and probably not specific to electron, however I'm trying to wrap my head around how someone would handle an oauth2 redirect url from a desktop platform, like electron?

    - -

    Assuming there is no webservice setup as part of the app, how would a desktop application prompt a user for credentials against a third party oauth2 service, and then authenticate them correctly?

    -",HQ -"

    I am using the Python logging library and want to choose the folder where the log files will be written.

    - -

    For the moment, I made an instance of TimedRotatingFileHandler with the entry parameter filename=""myLogFile.log"" . This way myLogFile.log is created on the same folder than my python script. I want to create it into another folder.

    - -

    How could I create myLogFile.log into , let's say, the Desktop folder?

    - -

    Thanks, -Matias

    -",HQ -"i don't understand why when i try to print values in ""archivio[]"" with ""stampa"" function,this program prints ""studente"",""matricola"",""nome"",""cognome"" correctly, but doesn't print values from ""stampaEsami"". - - #include - #include - #define MAXSTUDENTI 20 - #define MAXSTRINGA 100 - #define MAXESAMI 25 - - /* run this program using the console pauser or add your own getch, system(""pause"") or input loop */ - - typedef char Stringa[MAXSTRINGA]; - - typedef enum { uno, due, tre, FC - } AnnoCorso; - - typedef struct { - Stringa nomeEsame; - int voto; - } Esame; - - typedef struct { - Esame listaEsami[MAXESAMI]; - int numeroEsami; - }ListaEsame; - - typedef struct { - int matricola; - Stringa nome; - Stringa cognome; - AnnoCorso anno; - ListaEsame esami; - } Studente; - - void init(Studente[], int); - void acquisisciEsami(Studente, int); - void stampa(Studente[], int); - void stampaEsami(ListaEsame); - - void init(Studente archivio[], int n){ - - int i; - int nEsami; - - for(i = 0; i < n; i++){ - printf(""Studente n. %d\n"", i+1); - printf(""Inserire matricola: ""); - scanf(""%d"", &archivio[i].matricola); - printf(""Inserire nome: ""); - scanf(""%s"", &archivio[i].nome); - printf(""Inserire cognome: ""); - scanf(""%s"", &archivio[i].cognome); - printf(""Inserire il numero di esami svolti: ""); - scanf(""%d"", &archivio[i].esami.numeroEsami); - nEsami = archivio[i].esami.numeroEsami; - if(nEsami != 0) { - acquisisciEsami(archivio[i], nEsami); - } - - } - - } - - void acquisisciEsami(Studente studente, int n){ - - int i; - - for(i = 0; i < n; i++) { - printf(""Inserire nome esame:""); - scanf(""%s"", studente.esami.listaEsami[i].nomeEsame); - printf(""Inserire voto esame:""); - scanf(""%d"", &studente.esami.listaEsami[i].voto); - } - - } - - void stampa(Studente archivio[], int n){ - - printf(""\nGli studenti presenti in archivio sono:\n""); - - int i; - - for(i = 0; i < n; i++){ - printf(""Studente n. %d:\n"", i+1); - printf(""Matricola: %d\n"", archivio[i].matricola); - printf(""Nome: %s\n"", archivio[i].nome); - printf(""Cognome: %s\n"", archivio[i].cognome); - stampaEsami(archivio[i].esami); - } - } - - void stampaEsami(ListaEsame esami){ - - int i = 0; - int n = esami.numeroEsami; - - for(i = 0; i < n; i++){ - printf(""Nome esame: %s\n"", esami.listaEsami[i].nomeEsame ); - printf(""Voto esame: %d\n"", esami.listaEsami[i].voto); - } - } - - int main(int argc, char *argv[]) { - - Studente studenti[MAXSTUDENTI] ; - int n; - - printf(""Inserire il numero di studenti da memorizzare in archivio:\n ""); - scanf(""%d"", &n); - init(studenti, n); - stampa(studenti, n); - - return 0; - }",LQ -"

    Django Oauth Toolkit docs don't describe the redirect uris, authorization grant type, or client type fields when registering your application.

    - -

    The tutorial says to set client type to confidential, grant type to password, and leave uris blank.

    - -

    What do the other options do?

    - -

    e.g. What is client type public vs confidential? What do the grant type password, credentials, authorization, implicit do? And what are the redirect uris for?

    - -

    I have found sparse information about them but no actual explanations as they pertain to django rest framework and django oauth toolkit.

    -",HQ -"

    I've got a simple example project using TypeScript: https://github.com/unindented/ts-webpack-example

    - -

    Running tsc -p . (with tsc version 1.8.10) throws the following:

    - -
    app/index.ts(1,21): error TS2307: Cannot find module 'components/counter'.
    -components/button/index.ts(2,22): error TS2307: Cannot find module 'shared/backbone_base_view'.
    -components/button/index.ts(3,25): error TS2307: Cannot find module 'shared/backbone_with_default_render'.
    -components/counter/index.ts(2,22): error TS2307: Cannot find module 'shared/backbone_base_view'.
    -components/counter/index.ts(3,25): error TS2307: Cannot find module 'shared/backbone_with_default_render'.
    -components/counter/index.ts(4,27): error TS2307: Cannot find module 'shared/backbone_with_subviews'.
    -components/counter/index.ts(5,20): error TS2307: Cannot find module 'components/button'.
    -
    - -

    It complains about all imports of local files, like the following:

    - -
    import Counter from 'components/counter';
    -
    - -

    If I change it to a relative path it works, but I don't want to, as it makes my life more difficult when moving files around:

    - -
    import Counter from '../components/counter';
    -
    - -

    The vscode codebase does not use relative paths, but everything works fine for them, so I must be missing something in my project: https://github.com/Microsoft/vscode/blob/0e81224179fbb8f6fda18ca7362d8500a263cfef/src/vs/languages/typescript/common/typescript.ts#L7-L14

    - -

    You can check out my GitHub repo, but in case it helps here's the tsconfig.json file I'm using:

    - -
    {
    -  ""compilerOptions"": {
    -    ""target"": ""es5"",
    -    ""module"": ""commonjs"",
    -    ""noImplicitAny"": false,
    -    ""removeComments"": false,
    -    ""preserveConstEnums"": true,
    -    ""sourceMap"": true,
    -    ""outDir"": ""dist""
    -  },
    -  ""exclude"": [
    -    ""dist"",
    -    ""node_modules""
    -  ]
    -}
    -
    - -

    Funny thing is, building the project through webpack using ts-loader works fine, so I'm guessing it's just a configuration issue...

    -",HQ -"I don't want to click on a button or the form, I just want to know if user is pressing the left mouse button while the cursor is in the form. -I've tried this: - - private void PlayForm_KeyDown(object sender, KeyEventArgs e) - { - if(e.KeyCode == Keys.LButton) - { - ... - } - } -but it doesn't work. -I also tried `PlayForm_Click()` but it works only when the click is on the 'canvas' if there's something else on top it won't work -",LQ -"

    I am getting these errors while using Jack compiler, but I don't understand what is the problem:

    - -
    Error:Library reading phase: file '/Users/daniele.vitali/Development/android-studio/INTROCKAND/app/build/intermediates/packaged/debug/classes.zip' is an invalid library
    -com.android.jack.api.v01.CompilationException: Library reading phase: file '/Users/daniele.vitali/Development/android-studio/INTROCKAND/app/build/intermediates/packaged/debug/classes.zip' is an invalid library
    -    at com.android.jack.api.v01.impl.Api01ConfigImpl$Api01CompilationTaskImpl.run(Api01ConfigImpl.java:113)
    -    at com.android.builder.core.AndroidBuilder.convertByteCodeUsingJackApis(AndroidBuilder.java:1821)
    -    at com.android.builder.core.AndroidBuilder.convertByteCodeUsingJack(AndroidBuilder.java:1694)
    -    at com.android.build.gradle.internal.transforms.JackTransform.runJack(JackTransform.java:222)
    -    at com.android.build.gradle.internal.transforms.JackTransform.transform(JackTransform.java:196)
    -    at com.android.build.gradle.internal.pipeline.TransformTask$2.call(TransformTask.java:174)
    -    at com.android.build.gradle.internal.pipeline.TransformTask$2.call(TransformTask.java:170)
    -    at com.android.builder.profile.ThreadRecorder$1.record(ThreadRecorder.java:55)
    -    at com.android.builder.profile.ThreadRecorder$1.record(ThreadRecorder.java:47)
    -    at com.android.build.gradle.internal.pipeline.TransformTask.transform(TransformTask.java:169)
    -    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    -    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    -    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    -    at java.lang.reflect.Method.invoke(Method.java:498)
    -    at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.java:75)
    -    at org.gradle.api.internal.project.taskfactory.AnnotationProcessingTaskFactory$IncrementalTaskAction.doExecute(AnnotationProcessingTaskFactory.java:244)
    -    at org.gradle.api.internal.project.taskfactory.AnnotationProcessingTaskFactory$StandardTaskAction.execute(AnnotationProcessingTaskFactory.java:220)
    -    at org.gradle.api.internal.project.taskfactory.AnnotationProcessingTaskFactory$IncrementalTaskAction.execute(AnnotationProcessingTaskFactory.java:231)
    -    at org.gradle.api.internal.project.taskfactory.AnnotationProcessingTaskFactory$StandardTaskAction.execute(AnnotationProcessingTaskFactory.java:209)
    -    at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeAction(ExecuteActionsTaskExecuter.java:80)
    -    at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:61)
    -    at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:46)
    -    at org.gradle.api.internal.tasks.execution.PostExecutionAnalysisTaskExecuter.execute(PostExecutionAnalysisTaskExecuter.java:35)
    -    at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:64)
    -    at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:58)
    -    at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:52)
    -    at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:52)
    -    at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:53)
    -    at org.gradle.api.internal.tasks.execution.ExecuteAtMostOnceTaskExecuter.execute(ExecuteAtMostOnceTaskExecuter.java:43)
    -    at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker.execute(DefaultTaskGraphExecuter.java:203)
    -    at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker.execute(DefaultTaskGraphExecuter.java:185)
    -    at org.gradle.execution.taskgraph.AbstractTaskPlanExecutor$TaskExecutorWorker.processTask(AbstractTaskPlanExecutor.java:66)
    -    at org.gradle.execution.taskgraph.AbstractTaskPlanExecutor$TaskExecutorWorker.run(AbstractTaskPlanExecutor.java:50)
    -    at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor.process(DefaultTaskPlanExecutor.java:25)
    -    at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter.execute(DefaultTaskGraphExecuter.java:110)
    -    at org.gradle.execution.SelectedTaskExecutionAction.execute(SelectedTaskExecutionAction.java:37)
    -    at org.gradle.execution.DefaultBuildExecuter.execute(DefaultBuildExecuter.java:37)
    -    at org.gradle.execution.DefaultBuildExecuter.access$000(DefaultBuildExecuter.java:23)
    -    at org.gradle.execution.DefaultBuildExecuter$1.proceed(DefaultBuildExecuter.java:43)
    -    at org.gradle.execution.DryRunBuildExecutionAction.execute(DryRunBuildExecutionAction.java:32)
    -    at org.gradle.execution.DefaultBuildExecuter.execute(DefaultBuildExecuter.java:37)
    -    at org.gradle.execution.DefaultBuildExecuter.execute(DefaultBuildExecuter.java:30)
    -    at org.gradle.initialization.DefaultGradleLauncher$4.run(DefaultGradleLauncher.java:154)
    -    at org.gradle.internal.Factories$1.create(Factories.java:22)
    -    at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:90)
    -    at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:52)
    -    at org.gradle.initialization.DefaultGradleLauncher.doBuildStages(DefaultGradleLauncher.java:151)
    -    at org.gradle.initialization.DefaultGradleLauncher.access$200(DefaultGradleLauncher.java:32)
    -    at org.gradle.initialization.DefaultGradleLauncher$1.create(DefaultGradleLauncher.java:99)
    -    at org.gradle.initialization.DefaultGradleLauncher$1.create(DefaultGradleLauncher.java:93)
    -    at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:90)
    -    at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:62)
    -    at org.gradle.initialization.DefaultGradleLauncher.doBuild(DefaultGradleLauncher.java:93)
    -    at org.gradle.initialization.DefaultGradleLauncher.run(DefaultGradleLauncher.java:82)
    -    at org.gradle.launcher.exec.InProcessBuildActionExecuter$DefaultBuildController.run(InProcessBuildActionExecuter.java:94)
    -    at org.gradle.tooling.internal.provider.runner.BuildModelActionRunner.run(BuildModelActionRunner.java:46)
    -    at org.gradle.launcher.exec.ChainingBuildActionRunner.run(ChainingBuildActionRunner.java:35)
    -    at org.gradle.tooling.internal.provider.runner.SubscribableBuildActionRunner.run(SubscribableBuildActionRunner.java:58)
    -    at org.gradle.launcher.exec.ChainingBuildActionRunner.run(ChainingBuildActionRunner.java:35)
    -    at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:43)
    -    at org.gradle.launcher.exec.InProcessBuildActionExecuter.execute(InProcessBuildActionExecuter.java:28)
    -    at org.gradle.launcher.exec.ContinuousBuildActionExecuter.execute(ContinuousBuildActionExecuter.java:78)
    -    at org.gradle.launcher.exec.ContinuousBuildActionExecuter.execute(ContinuousBuildActionExecuter.java:48)
    -    at org.gradle.launcher.daemon.server.exec.ExecuteBuild.doBuild(ExecuteBuild.java:52)
    -    at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:36)
    -    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:120)
    -    at org.gradle.launcher.daemon.server.exec.WatchForDisconnection.execute(WatchForDisconnection.java:37)
    -    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:120)
    -    at org.gradle.launcher.daemon.server.exec.ResetDeprecationLogger.execute(ResetDeprecationLogger.java:26)
    -    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:120)
    -    at org.gradle.launcher.daemon.server.exec.RequestStopIfSingleUsedDaemon.execute(RequestStopIfSingleUsedDaemon.java:34)
    -    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:120)
    -    at org.gradle.launcher.daemon.server.exec.ForwardClientInput$2.call(ForwardClientInput.java:74)
    -    at org.gradle.launcher.daemon.server.exec.ForwardClientInput$2.call(ForwardClientInput.java:72)
    -    at org.gradle.util.Swapper.swap(Swapper.java:38)
    -    at org.gradle.launcher.daemon.server.exec.ForwardClientInput.execute(ForwardClientInput.java:72)
    -    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:120)
    -    at org.gradle.launcher.daemon.server.health.DaemonHealthTracker.execute(DaemonHealthTracker.java:47)
    -    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:120)
    -    at org.gradle.launcher.daemon.server.exec.LogToClient.doBuild(LogToClient.java:66)
    -    at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:36)
    -    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:120)
    -    at org.gradle.launcher.daemon.server.exec.EstablishBuildEnvironment.doBuild(EstablishBuildEnvironment.java:72)
    -    at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:36)
    -    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:120)
    -    at org.gradle.launcher.daemon.server.health.HintGCAfterBuild.execute(HintGCAfterBuild.java:41)
    -    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:120)
    -    at org.gradle.launcher.daemon.server.exec.StartBuildOrRespondWithBusy$1.run(StartBuildOrRespondWithBusy.java:50)
    -    at org.gradle.launcher.daemon.server.DaemonStateCoordinator$1.run(DaemonStateCoordinator.java:246)
    -    at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:54)
    -    at org.gradle.internal.concurrent.StoppableExecutorImpl$1.run(StoppableExecutorImpl.java:40)
    -    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    -    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    -    at java.lang.Thread.run(Thread.java:745)
    -Error:com.android.jack.JackAbortException: Library reading phase: file '/Users/daniele.vitali/Development/android-studio/INTROCKAND/app/build/intermediates/packaged/debug/classes.zip' is an invalid library
    -    at com.android.jack.incremental.IncrementalInputFilter.<init>(IncrementalInputFilter.java:201)
    -    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    -    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    -    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    -    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    -    at com.android.sched.util.config.ReflectFactory.create(ReflectFactory.java:90)
    -    at com.android.jack.Jack.buildSession(Jack.java:846)
    -    at com.android.jack.Jack.run(Jack.java:475)
    -    at com.android.jack.api.v01.impl.Api01ConfigImpl$Api01CompilationTaskImpl.run(Api01ConfigImpl.java:102)
    -    ... 93 more
    -Error:com.android.jack.library.LibraryReadingException: Library reading phase: file '/Users/daniele.vitali/Development/android-studio/INTROCKAND/app/build/intermediates/packaged/debug/classes.zip' is an invalid library
    -    at com.android.jack.incremental.IncrementalInputFilter.<init>(IncrementalInputFilter.java:199)
    -    ... 101 more
    -Error:com.android.jack.library.LibraryFormatException: file '/Users/daniele.vitali/Development/android-studio/INTROCKAND/app/build/intermediates/packaged/debug/classes.zip' is an invalid library
    -    ... 102 more
    -:app:transformJackWithJackForDebug FAILED
    -Error:Execution failed for task ':app:transformJackWithJackForDebug'.
    -> com.android.build.api.transform.TransformException: com.android.jack.api.v01.CompilationException: Library reading phase: file '/Users/daniele.vitali/Development/android-studio/INTROCKAND/app/build/intermediates/packaged/debug/classes.zip' is an invalid library
    -Information:BUILD FAILED
    -Information:Total time: 1 mins 53.934 secs
    -Information:5 errors
    -Information:0 warnings
    -Information:See complete output in console
    -
    - -

    I am using Android Studio 2.2 Preview 2 with the following dependencies:

    - -
    ext {
    -
    -    //Android config
    -    compileSdkVersion = 23
    -    buildToolsVersion = '24.0.0 rc4'
    -    minSdkVersion = 16
    -    targetSdkVersion = 23
    -
    -    //Libraries
    -    supportLibrariesVersion = '24.0.0-beta1'
    -    lombokVersion = '1.16.8'
    -    guavaVersion = '19.0'
    -    gsonVersion = '2.6.2'
    -    butterKnifeVersion = '8.0.1'
    -    rxAndroidVersion = '1.2.0'
    -    firebaseVersion = '9.0.1'
    -    frescoVersion = '0.10.0'
    -    jUnitVersion = '4.12'
    -    mockitoVersion = '2.0.54-beta'
    -    hamcrestVersion = '2.0.0.0'
    -    daggerVersion = '2.4'
    -    googlePlayServicesVersion = '9.0.1'
    -    circularImageViewVersion = '2.0.0'
    -    bottomBarVersion = '1.3.4'
    -}
    -
    - -

    I am using also Gradle plugin 2.2.0 alpha 2 and com.google.gms:google-services:3.0.0

    - -

    Any help is highly appreciated.

    -",HQ -"

    I use Debian sid (amd64), rolling updates as often as weekly. I downloaded recently the desktop version 0.99.902 of RStudio from their offical site and issued (as root, of course):

    - -

    dpkg -i rstudio-0.99.902-amd64.deb

    - -

    to no avail:

    - -

    dpkg: dependency problems prevent configuration of rstudio: - rstudio depends on libgstreamer0.10-0; however: - Package libgstreamer0.10-0 is not installed. - rstudio depends on libgstreamer-plugins-base0.10-0; however: - Package libgstreamer-plugins-base0.10-0 is not installed.

    - -

    Newer versions (1.0-0) of these 2 packages are installed on the system, but those older ones (0.10-0) are not available anymore on the official Debian repos.

    - -

    What should be done to have RStudio installed and fully operational under -Debian sid? I have, of course, installed R debs, from official Debian -repositories, without any issues...

    - -

    Thanks for any help!

    -",HQ -"

    Hello I have an app i'm working on in Xamarin.Forms that gets contact info from a web service and then displays that info in labels however I want to make the label that lists the phone number to make a call when clicked. How do I go about doing this?

    - -

    Heres in my XAML:

    - -
    <?xml version=""1.0"" encoding=""utf-8"" ?>
    -<ContentPage xmlns=""http://xamarin.com/schemas/2014/forms""
    -             xmlns:x=""http://schemas.microsoft.com/winfx/2009/xaml""
    -             x:Class=""ReadyMo.ContactInfo"">
    -  <ContentPage.Content>
    -     <Frame Padding=""0,0,0,8"" BackgroundColor=""#d2d5d7"">
    -            <Frame.Content>
    -              <Frame Padding=""15,15,15,15""   OutlineColor=""Gray"" BackgroundColor=""White"">
    -                <Frame.Content>
    -        <ScrollView Orientation=""Vertical"" VerticalOptions=""FillAndExpand"">
    -           <StackLayout Padding=""20,0,0,0""  Orientation=""Horizontal"" HorizontalOptions=""CenterAndExpand"">
    -            <StackLayout Orientation=""Vertical"" VerticalOptions=""FillAndExpand"">
    -              <Label Text=""Emergency Coordinators""  HorizontalOptions=""Center"" FontFamily=""OpenSans-Light""
    -                                       FontSize=""20""
    -                                       TextColor=""#69add1"">
    -              </Label>
    -              <Label x:Name=""CountyName""   HorizontalOptions=""Center"" FontFamily=""OpenSans-Light""
    -                                   FontSize=""16""
    -                                   TextColor=""#69add1"">
    -              </Label>
    -              <Label x:Name=""FirstName"" HorizontalOptions=""Center"">
    -              </Label>
    -              <Label x:Name =""LastName"" HorizontalOptions=""Center"">
    -              </Label>
    -              <Label x:Name=""County"" HorizontalOptions=""Center"">
    -              </Label>
    -              <Label x:Name =""Adress"" HorizontalOptions=""Center"">
    -              </Label>
    -                <Label x:Name =""City"" HorizontalOptions=""Center"">
    -              </Label>
    -
    -//This is the label that displays the phone number!
    -              <Label x:Name=""Number""  HorizontalOptions=""Center"">
    -              </Label>           
    -            </StackLayout>
    -          </StackLayout>
    -        </ScrollView>
    -       </Frame.Content>
    -      </Frame>
    -     </Frame.Content>
    -    </Frame>
    -  </ContentPage.Content>
    -</ContentPage>
    -
    - -

    heres my code behind:

    - -
    using Newtonsoft.Json;
    -using ReadyMo.Data;
    -using System;
    -using System.Collections.Generic;
    -using System.Collections.ObjectModel;
    -using System.Linq;
    -using System.Net.Http;
    -using System.Text;
    -using System.Threading.Tasks;
    -
    -using Xamarin.Forms;
    -
    -namespace ReadyMo
    -{
    -    public partial class ContactInfo : ContentPage
    -    {
    -        private County item;
    -
    -        public ContactInfo()
    -        {
    -            InitializeComponent();
    -            var contactpagetext = ContactManager.GetContactString(item.id);
    -
    -        }
    -
    -        public ContactInfo(County item)
    -        {
    -            InitializeComponent();
    -            this.item = item;
    -
    -            //var contactpagetext = ContactManager.GetContactString(item.id).Result;
    -            //Emergency Coordinators Code
    -            ContactInfoModel TheContactInfo = ContactManager.CurrentContactInfo;
    -            CountyName.Text = TheContactInfo.name;
    -            FirstName.Text = TheContactInfo.First_Name;
    -            LastName.Text = TheContactInfo.Last_Name;
    -            Adress.Text = TheContactInfo.Address1;
    -            City.Text = TheContactInfo.Address2;
    -            Number.Text = TheContactInfo.BusinessPhone;
    -
    -
    -
    -
    -
    -        }
    -    }
    -}
    -
    - -

    Thanks in advance!

    -",HQ -"

    I am trying to use dumb-init to run a script that tests a jetty servlet in my docker container, but whenever I try to call dumb-init it fails with the message:

    - -
    local-test | [dumb-init] /var/lib/jetty/testrun.bash: No such file or directory
    -
    - -

    But if I use bash instead of dumb-init it happily runs. The file exists and has the correct permissions. I even stripped out the execution and just left the bang and an echo statement and it fails the same way. The script looks like:

    - -
    #!/bin/dumb-init /bin/bash
    -echo ""Tests Running!""
    -
    - -

    Any thoughts?

    -",HQ -"person 1 input data with data array like this : - -{""type"":""1"",""name"":""John"", ""phone"":""898171""} - -person 2 not set the phone, like this : - -{""type"":""1"",""name"":""Lisa""} // only write 2 array... - - - -I have source code in my controller like this : - -$data = json_decode(file_get_contents('php://input'), true); - -if(!$data['phone']->iSEmpty){ - echo ""you haven't set the phone number!"" -} - -but is not working.. error when second person input data.. ""Undefined index: phone"" - -Sorry for my bad english btw...",LQ -"

    I need to customise the look of a back button in a Swift project.

    - -

    Here's what I have: -

    - -

    Here's what I want: -

    - -

    I've tried creating my own UIBarButtonItem but I can't figure out how to get the image to be beside the text, rather than as a background or a replacement for the text.

    - -
    let backButton = UIBarButtonItem(title: ""Custom"", style: .Plain, target: self, action: nil    )
    -//backButton.image = UIImage(named: ""imageName"") //Replaces title
    -backButton.setBackgroundImage(UIImage(named: ""imageName""), forState: .Normal, barMetrics: .Default) // Stretches image
    -navigationItem.setLeftBarButtonItem(backButton, animated: false)
    -
    -",HQ -"

    I'm wondering whether there are best practices on how to inject credentials into a Docker container during a docker build. -In my Dockerfile I need to fetch resources webservers which require basic authentication and I'm thinking about a proper way on how to bring the credentials into the container without hardcoding them.

    - -

    What about a .netrc file and using it with curl --netrc ...? But what about security? I do no like the idea of having credentials being saved in a source repository together with my Dockerfile.

    - -

    Is there for example any way to inject credentials using parameters or environment variables?

    - -

    Any ideas?

    -",HQ -"I have a very interesting question. - - String[] values = new String[3]; - values = line.Split(';'); - Console.Write(""Val:"" + values[0] + "", "" + values[1] + "", "" + values[2]); - -Could someone tell me why I get an ""IndexOutOfRangeException"" when it is in range? - -EDIT: -The line has 3 sectors, for example ""1:2:3"". The console writes out the Val: ... but in the output i still get an IndexOutOfRangeException.",LQ -"

    I'd like to put a degree symbol on the x axis but the result has an extra space that I can't seem to get rid of. The text should read 'Temperature (*C)', not 'Temperature ( *C)'. I've tried two different solutions but can't seem to get rid of the space.

    - -
    ggdat<-data.frame(x=rnorm(100),y=rnorm(100))
    -
    -#neither of these approaches work
    -xlab <- expression(paste('Temperature (',~degree,'C)',sep=''))
    -xlab <- expression('Temperature ('*~degree*C*')')
    -
    -ggplot(data=ggdat,aes(x=x,y=y)) +
    -  geom_point() +
    -  labs(x=xlab)
    -
    - -

    - -

    Any help is appreciated!

    - -

    Ben

    -",HQ -"

    This link has a tidy little example of how to use python's OpenCV library, cv2 to stream data from a camera into your python shell. I'm looking to do some experiments and would like to use the following YouTube video feed: https://www.youtube.com/watch?v=oCUqsPLvYBQ.

    - -

    I've tried adapting the example as follows:

    - -
    import numpy as np
    -import cv2
    -
    -cap = cv2.VideoCapture('https://www.youtube.com/watch?v=oCUqsPLvYBQ')
    -
    -while(True):
    -    # Capture frame-by-frame
    -    ret, frame = cap.read()
    -
    -    # Display the resulting frame
    -    cv2.imshow('frame',frame)
    -    if cv2.waitKey(1) & 0xFF == ord('q'):
    -        break
    -
    - -

    Which produces the error:

    - -
    WARNING: Couldn't read movie file https://www.youtube.com/watch?v=oCUqsPLvYBQ
    -OpenCV Error: Assertion failed (size.width>0 && size.height>0) in imshow, file /tmp/opencv20160107-29960-t5glvv/opencv-2.4.12/modules/highgui/src/window.cpp, line 261
    -
    - -

    Is there a simple fix that would allow me to stream this video feed into my python shell via cv2? Not absolutely committed to cv2, either, if there are other libraries out there that will accomplish the same purpose.

    -",HQ -"

    I understand that you can create a pod with Deployment/Job using kubectl run. But is it possible to create one with a volume attached to it? I tried running this command:

    - -
    kubectl run -i --rm --tty ubuntu --overrides='{ ""apiVersion"":""batch/v1"", ""spec"": {""containers"": {""image"": ""ubuntu:14.04"", ""volumeMounts"": {""mountPath"": ""/home/store"", ""name"":""store""}}, ""volumes"":{""name"":""store"", ""emptyDir"":{}}}}' --image=ubuntu:14.04 --restart=Never -- bash
    -
    - -

    But the volume does not appear in the interactive bash.

    - -

    Is there a better way to create a pod with volume that you can attach to?

    -",HQ -"

    I have been reading other posts to try to get down to the bottom of this issue... but I need some clarification.

    - -

    I am able to get all of my domain requests to hit my Amazon S3 bucket perfectly when entering www.FOO.com/MyDirectory

    - -

    If I enter FOO.com/MyDirectory without the www it will fail.

    - -

    What is the proper method to make url requests without the www route correctly to the same Amazon S3 bucket?

    - -

    Any tips would help greatly. Thanks

    -",HQ -"

    I am trying to connect to my RDS instance from a lambda. I wrote the lambda locally and tested locally, and everything worked peachy. I deploy to lambda, and suddenly it doesn't work. Below is the code I'm running, and if it helps, I'm invoking the lambda via a kinesis stream.

    - -
    'use strict';
    -
    -exports.handler = (event, context, handlerCallback) => {
    -    console.log('Recieved request for kinesis events!');
    -    console.log(event);
    -    console.log(context);
    -
    -    const connectionDetails = {
    -        host:     RDS_HOST,
    -        port:     5432,
    -        database: RDS_DATABASE,
    -        user:     RDS_USER,
    -        password: RDS_PASSWORD
    -    };
    -
    -    const db = require('pg-promise')({promiseLib: require('bluebird')})(connectionDetails);
    -
    -    db
    -            .tx(function () {
    -                console.log('Beginning query');
    -
    -                return this.query(""SELECT 'foobar'"")
    -                           .then(console.log)
    -                           .catch(console.log)
    -                           .finally(console.log);
    -            })
    -            .finally(() => handlerCallback());
    -};
    -
    - -

    Here is the logs from cloud watch if it helps:

    - -
    START RequestId: *********-****-****-****-********* Version: $LATEST 
    -2016-05-31T20:58:25.086Z    *********-****-****-****-*********  Recieved request for kinesis events! 
    -2016-05-31T20:58:25.087Z    *********-****-****-****-*********  { Records:  [ { kinesis: [Object], eventSource: 'aws:kinesis', eventVersion: '1.0', eventID: 'shardId-000000000000:**********************************', eventName: 'aws:kinesis:record', invokeIdentityArn: 'arn:aws:iam::******************:role/lambda_kinesis_role', awsRegion: 'us-east-1', eventSourceARN: 'arn:aws:kinesis:us-east-1:****************:stream/route-registry' } ] } 
    -2016-05-31T20:58:25.283Z    *********-****-****-****-*********  { callbackWaitsForEmptyEventLoop: [Getter/Setter], done: [Function], succeed: [Function], fail: [Function], logGroupName: '/aws/lambda/apiGatewayRouteRegistry-development', logStreamName: '2016/05/31/[$LATEST]******************', functionName: 'apiGatewayRouteRegistry-development', memoryLimitInMB: '128', functionVersion: '$LATEST', getRemainingTimeInMillis: [Function], invokeid: '*********-****-****-****-*********', awsRequestId: '*********-****-****-****-*********', invokedFunctionArn: 'arn:aws:lambda:us-east-1:*************:function:apiGatewayRouteRegistry-development' } 
    -END RequestId: *********-****-****-****-********* 
    -REPORT RequestId: *********-****-****-****-*********    Duration: 20003.70 ms   Billed Duration: 20000 ms Memory Size: 128 MB   Max Memory Used: 22 MB   
    -2016-05-31T20:58:45.088Z *********-****-****-****-********* Task timed out after 20.00 seconds
    -
    -",HQ -"

    I am having an issue with Travis CI - the commits that I push all fail with the same error:

    - -
    -

    0.06s$ curl -sSL ""http://llvm.org/apt/llvm-snapshot.gpg.key"" | sudo -E apt-key add - - gpg: no valid OpenPGP data found. - The command ""curl -sSL ""http://llvm.org/apt/llvm-snapshot.gpg.key"" | sudo -E apt-key add -"" failed and exited with 2 during . - Your build has been stopped.

    -
    - -

    I tried to rebuild a previous commit that built successfully and the same error occurs. Any suggestions as to how to troubleshoot the issue?

    -",HQ -"

    I have a plot look like this:

    - -

    - -

    Obviously, the left and right side is a waste of space, so I set

    - -
    plt.axis('tight')
    -
    - -

    But this gives me plot like this:

    - -

    - -

    The xlim looks right now, but the ylim is too tight for the plot.

    - -

    I'm wondering, if I can only set axis(tight) only to x axis in my case?

    - -

    So the plot may look something like this:

    - -

    - -

    It's certainly possible that I can do this manually by

    - -
    plt.gca().set_xlim(left=-10, right=360)
    -
    - -

    But I'm afraid this is not a very elegant solution.

    -",HQ -"

    Recently, I've been trying to find the closest word to an embedding. The two most notable ways of doing this is by cosine distance or euclidean distance.

    - -

    I'm trying to find how to efficiently compute the cosine distance for a tensor of shape [batch_size x embedding_size]

    - -

    One approach is to unpack the tensor and the compute the cosine distance

    - -
      #embedding is shape [vocab_size x embedding size]
    -  array_list = tf.unpack(batch_array)
    -  word_class_list = tf.unpack(embedding)
    -  index_list_of_closest_word = []
    -  for eacharray in array_list:
    -    list_of_distances = []
    -    for eachwordclass in word_class_list:
    -      list_of_distances.append(cosine_distance(eacharray, eachwordclass))
    -    index_list_of_closest_word.append(tf.argmax(tf.pack(list_of_distances)))
    -
    - -

    However, this approach is terribly inefficient. Is there perhaps a more efficient manner to do this? I know word2vec does this pretty fast and tensorflow, with the power of a gpu, should be able to do these batch calculations in parallel.

    - -

    Thanks!

    -",HQ -"

    I saw that in android vision api (the sample is here: https://github.com/googlesamples/android-vision) camera (camera1) is now deprecated and the recommend is to use camera2.

    - -

    Do you guys have any idea how to re-write CameraSource to use camera2 on android vision?

    - -

    Thanks in advance,

    -",HQ -"

    I've been using ""kubectl run"" with assorted flags to run Jobs interactively, but have recently outgrown what I can do with those flags, and have graduated to using YAML config files to describe my jobs.

    - -

    However, I can't find an equivalent to the ""-i"" and ""--tty"" flags, to attach to the Job I'm creating.

    - -

    Is there an equivalent YAML spec for:

    - -
    kubectl run myjob \
    -            -i \
    -            --tty \
    -            --image=grc.io/myproj/myimg:mytag \
    -            --restart=Never \
    -            --rm \
    -            -- \
    -            my_command
    -
    - -

    Or is this maybe not the right approach?

    -",HQ -"> I have a string like ""2016-04-13"" i need to change it date format like -> 13 April, 2016 how can i do this in javascript - - new Date(dateString); - new Date(year, month[, day[, hour[, minutes[, seconds[, milliseconds]]]]]); - -",LQ -"I am new to Java. I have programming experience on other programming languages , especially in PowerBuilder -I am writing a Java application with many forms and reports -I want to have a menu common for all jforms and reports ( any window on my application ). -I thought I could create a basic mainframe with the menu on it and the open any other window inside this main frame. I can't figure this out , only with InternalFrames but this is not what I want. -I made my JmenuBar , I put it on JPanel and then I put Jpanel on a maximized JFrame i called ""mainframe"". Any window from JmenuBar opens in front of ""mainframe"" Jframe. When I click on ""mainframe"" any open window goes back of cource , focus is on the ""mainframe"". -I wrote a mouselistener for Jpanel which brings any open window toFront except ""mainframe"" of cource. That seems to make the job but I have to write the same listener for the JMenuBar and this has the disavantage of windows ""flashing"" any time they are coming toFront. -My truly question is : -What is the way you work with JmenuBars? -Do I have to put JmenuBar to any JForm I create? -How can I have a mainframe ( maybe maximized) with the JMenuBar on it always on back and any other window opens inFront of this frame? - -What I realy need is a main frame with menu for my application and everything happens inside this frame. - -Thanks a lot - -Kostas -",LQ -"I need help creating a table the can track a 2% yearly price increase over the years 2010-2016.[My create statement is as follows][1] - - [1]: http://i.stack.imgur.com/M5hCu.png - -I have 24 products and the starting price in my Products table that need insert into my new table. In theory I should have 192 records. I need help populating the year column so that it can cycle though 2010-2016 for each product. I also need help referencing the pervious year price for the next years calculation. ",LQ -"Array -( - [0] => Array - ( - [ht_amenity_id] => 1 - [ht_amenity_name] => Central Air Conditioning - [ht_category] => 1 - [ht_cat_name] => General - ) - - [1] => Array - ( - [ht_amenity_id] => 2 - [ht_amenity_name] => Facilities for disabled guests - [ht_category] => 1 - [ht_cat_name] => General - ) - - [2] => Array - ( - [ht_amenity_id] => 3 - [ht_amenity_name] => Climate control - [ht_category] => 2 - [ht_cat_name] => Services - ) -) - - - -this my output .how to merge the array - - -I want like this - -Array -( - [0] => Array - ( - [ht_amenity_id][0] => 1 - [ht_amenity_id][1] => 2 - [ht_amenity_name][0] => Central Air Conditioning - [ht_amenity_name][1] => Facilities for disabled guests - [ht_category] => 1 - [ht_cat_name] => General - ) - [1] => Array - ( - [ht_amenity_id] => 3 - [ht_amenity_name] => Climate control - [ht_category] => 2 - [ht_cat_name] => Services - ) - -)",LQ -"i have a table with name and address columns. i need to create two new columns that will hold modified values from these two columns, with special characters cleansed. please help with the queries",LQ -"when i create a consol program in qt creator i cant run it from my system terminal . -"""" i am using manjaro linux . -And i cant create a gui programs because of this error : -home/ramigamal/Programs/qt/Tools/QtCreator/lib/qtcreator/plugins/QtProject/libClangCodeModel.so: Cannot load library /home/ramigamal/Programs/qt/Tools/QtCreator/lib/qtcreator/plugins/QtProject/libClangCodeModel.so: (libtinfo.so.5: cannot open shared object file: No such file or directory)[enter image description here][1] - - - [1]: http://i.stack.imgur.com/N6MCv.png",LQ -"BackgroumdTask returns null.Why? It should return the string specified in try block. - - -@Override - protected String doInBackground(Void...Voids) - { - - - try { - - URL url = new URL(json_url); - HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection(); - InputStream ip = httpURLConnection.getInputStream(); - BufferedReader bufferedreader = new BufferedReader(new InputStreamReader(ip)); - - StringBuilder sb = new StringBuilder(); - while ((json_string = bufferedreader.readLine())!= null) - { - sb.append(json_string + ""\n""); - } - bufferedreader.close(); - ip.close(); - httpURLConnection.disconnect(); - return sb.toString().trim(); - - } - catch (MalformedURLException e) - { - e.printStackTrace(); - } - catch (IOException e) - { - e.printStackTrace(); - - } - - - - return null; - }",LQ -"Please help me. I have no idea how to fix the indentation error in line 12. - -def cube(number): - - number=n - cube(n)=n**3 - return cube(n) - -def by_three(number): - - number=n - - if n%3==0: - cube(number) - return cube(number) - - - else: - return False - ",LQ -"I have create 2 migration file wich on file has a foreign key, when migrate , laravel show this error about -Mysql foreign key constraint error when migrate in Laravel -",LQ -"Input String -Arab World,ARB,""Adolescent fertility rate (births per 1,000 women ages 15-19)"",SP.ADO.TFRT,1960,133.56090740552298 - -Output String -Arab World,ARB,Adolescent fertility rate (births per 1,000 women ages 15-19),SP.ADO.TFRT,1960,133.56090740552298 - - -Input String -Arab World,ARB,""International migrant stock, total"",SM.POP.TOTL,1960,3324685.0 - -Output String -Arab World,ARB,International migrant stock total,SM.POP.TOTL,1960,3324685.0 -",LQ -"My question is simple -- with 2 seperate SHA1 implemntations am I garunteed to get the sames output for the same input, or is there space for interpretation in the implementation?",LQ -"I'm working on a launcher app that basically launches other installed apps on the device with an explicit intent and I have a edge case scenario: - -An Activity (Act) creates an intent of an application (App) and starts it by calling startActivity(intent). - -App get launched, my Activity going to ""stop"" state. - -After a while I want to get back to my application so I click on ""back"" hard button that closes App and bring my Application to foreground (resume state). -This is the wanted behaviour. - -Here is the edge case: -If I click on the ""recent applications"" hard button (square icon) while on App is launched, history stuck is lost, and when I return to App, and click on ""back"" hard button - App exists to the Launcher screen and onResume of my application is being called. - -I searched the web for a solution for couple of hours now, maybe I'll find a solution here. - -Thanks - - -",LQ -"how to iterate array in json - - - - - $(document).ready(function(){ - $('#wardno').change(function(){ //any select change on the dropdown with id country trigger this code - $(""#wardname > option"").remove(); //first of all clear select items - var ward_id = $('#wardno').val(); - // here we are taking country id of the selected one. - $.ajax({ - type: ""POST"", - cache: false, - url:""get_wardname/""+ward_id, //here we are calling our user controller and get_cities method with the country_id - success: function(cities) //we're calling the response json array 'cities' - { - - try{ - - $.each(cities,function(id,city) //here we're doing a foeach loop round each city with id as the key and city as the value - - { - - - - var opt = $('